From 11e7a5d3d111a01ee31210a7da21da7523ebce54 Mon Sep 17 00:00:00 2001 From: bsantan <70932395+bsantan@users.noreply.github.com> Date: Wed, 29 May 2024 09:12:52 -0600 Subject: [PATCH 01/20] evaluate abstracts and full text --- .gitignore | 1 + evaluation.py | 4 +- evaluation_plots_all.py | 12 +-- test_script.sh | 8 +- ...hways_literature_comparison_evaluations.py | 78 ++++++++++--------- 5 files changed, 56 insertions(+), 47 deletions(-) diff --git a/.gitignore b/.gitignore index dcbede62..50c23268 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ __pycache__/ wikipathways_graphs/annotated_diagram wikipathways_graphs/literature_comparison +!wikipathways_graphs/literature_comparison/Evaluation_Files/concept_idf_annotated.csv wikipathways_graphs/pkl wikipathways_graphs/WP* !wikipathways_graphs/PFOCR_url_list.txt diff --git a/evaluation.py b/evaluation.py index 48604bfc..4af5b0e7 100644 --- a/evaluation.py +++ b/evaluation.py @@ -300,7 +300,7 @@ def output_num_paths_pairs(output_dir,num_paths_df,subgraph_algorithm): num_paths_df.to_csv(output_folder+'/num_paths_'+subgraph_algorithm+'.csv',sep=',',index=False) logging.info('Create number of paths file: %s',output_folder+'/num_paths_'+subgraph_algorithm+'.csv') -def output_literature_comparison_df(output_dir,all_subgraphs_cosine_sim): +def output_literature_comparison_df(output_dir,all_subgraphs_cosine_sim,search_type): output_folder = output_dir+'/Evaluation_Files' #Check for existence of output directory @@ -309,7 +309,7 @@ def output_literature_comparison_df(output_dir,all_subgraphs_cosine_sim): all_subgraphs_cosine_sim_df = pd.DataFrame.from_dict(all_subgraphs_cosine_sim, orient='columns') - all_subgraphs_cosine_sim_df.to_csv(output_folder+'/literature_comparison_evaluation.csv',sep=',',index=False) + all_subgraphs_cosine_sim_df.to_csv(output_folder+'/literature_comparison_evaluation_' + search_type + '.csv',sep=',',index=False) logging.info('Create literature comparison evaluation file: %s',output_folder+'/literature_comparison_evaluation.csv') return all_subgraphs_cosine_sim_df diff --git a/evaluation_plots_all.py b/evaluation_plots_all.py index eb328557..763d693e 100644 --- a/evaluation_plots_all.py +++ b/evaluation_plots_all.py @@ -148,7 +148,7 @@ def visualize_literature_comparison_heatmap(term_averages_cosine_sim_df,all_wiki #Generates boxplot of each -def visualize_literature_comparison_boxplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir): +def visualize_literature_comparison_boxplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir,search_type): output_folder = all_wikipathways_dir+'/literature_comparison/Evaluation_Files' @@ -156,7 +156,7 @@ def visualize_literature_comparison_boxplot_all_pathways(all_subgraphs_zscore_df all_subgraphs_same_pathway = all_subgraphs_zscore_df.loc[all_subgraphs_zscore_df.Compared_Pathway == "Same_Pathway"] - plt_file = output_folder + '/Literature_Comparison_all_pathways_boxplot.png' + plt_file = output_folder + '/Literature_Comparison_all_pathways_boxplot_' + search_type + '.png' sns.swarmplot(data=all_subgraphs_same_pathway, x="Pathway_ID", y="avg_zscore_per_pathway",hue='Algorithm',palette="flare",dodge=True, legend=False, marker="x", linewidth=1,size=10) sns.swarmplot(data=all_subgraphs_other_pathways, x="Pathway_ID", y="avg_zscore_per_pathway",hue="Algorithm", dodge=True, legend=False) sns.boxplot(data=all_subgraphs_other_pathways, x='Pathway_ID', y = 'avg_zscore_per_pathway',hue='Algorithm').set_title("Z-Score of Cosine Similarity to All Pathway Abstracts") @@ -165,14 +165,14 @@ def visualize_literature_comparison_boxplot_all_pathways(all_subgraphs_zscore_df plt.close() logging.info('Created png: %s',plt_file) -def visualize_literature_comparison_scatterplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir): +def visualize_literature_comparison_scatterplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir,search_type): pathways = all_subgraphs_zscore_df.Pathway_ID.unique() for pathway in pathways: df = all_subgraphs_zscore_df.loc[all_subgraphs_zscore_df['Pathway_ID'] == pathway] - plt_file = all_wikipathways_dir + '/' + pathway + '_output/Evaluation_Files/Literature_Comparison_all_pathways_scatterplot.png' + plt_file = all_wikipathways_dir + '/' + pathway + '_output/Evaluation_Files/Literature_Comparison_all_pathways_scatterplot_' + search_type + '.png' sns_plot = sns.swarmplot(data=df, x='Algorithm', y = 'avg_zscore_per_pathway',hue='Compared_Pathway') sns.lineplot(x="Algorithm", dashes=False, y="avg_zscore_per_pathway", hue="Compared_Pathway", style="Compared_Pathway", data=df,legend=False).set_title("Z-Score of Cosine Similarity to All Pathway Abstracts for" + pathway) sns.move_legend(sns_plot,"upper left", bbox_to_anchor=(1, 1)) @@ -181,11 +181,11 @@ def visualize_literature_comparison_scatterplot_all_pathways(all_subgraphs_zscor plt.close() logging.info('Created png: %s',plt_file) -def visualize_literature_comparison_heatmap_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir): +def visualize_literature_comparison_heatmap_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir,search_type): output_folder = all_wikipathways_dir+'/literature_comparison/Evaluation_Files' - plt_file = output_folder + '/Literature_Comparison_all_pathways_heatmap.png' + plt_file = output_folder + '/Literature_Comparison_all_pathways_heatmap_' + search_type + '.png' df_matrix = all_subgraphs_zscore_df.pivot_table(index='Pathway_ID',columns='Algorithm',values='avg_zscore_per_pathway') sns.heatmap(df_matrix, fmt="g", cmap='viridis').set_title("Z-Score of Subgraphs to All Other Pathways") plt.savefig(plt_file,bbox_inches="tight") diff --git a/test_script.sh b/test_script.sh index 0ae1782d..91d0ce48 100755 --- a/test_script.sh +++ b/test_script.sh @@ -25,7 +25,7 @@ #python wikipathways_converter.py --knowledge-graph pkl --input-type annotated_diagram --pfocr-urls-file True --enable-skipping True #Command to test wikipathways pipeline by ID with smaller graph -python call_all_pathways_wrapper.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4533']" --enable-skipping True +#python call_all_pathways_wrapper.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4533']" --enable-skipping True #Command to visualize wikipathways output #python visualize_in_cytoscape.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4533']" --enable-skipping True @@ -33,4 +33,8 @@ python call_all_pathways_wrapper.py --knowledge-graph pkl --input-type annotated #Command to test the wikipathways converter step for the ablation study #python wikipathways_converter_ablations.py --knowledge-graph pkl --input-type annotated_diagram --pfocr-urls-file True --enable-skipping True #Update call_all_pathways_wrapper.py input and output directories to include _ablation -#Update wikipathways_graph_evaluations.py, wikipathways_literature_comparison_evaluations.py, with ablation=true \ No newline at end of file +#Update wikipathways_graph_evaluations.py, wikipathways_literature_comparison_evaluations.py, with ablation=true + +#Literature evaluation +python wikipathways_literature_comparison_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True #'WP4532', 'WP4535' 'WP4829', 'WP5283', +#python wikipathways_idf_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4532', 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True \ No newline at end of file diff --git a/wikipathways_literature_comparison_evaluations.py b/wikipathways_literature_comparison_evaluations.py index 547cc2c7..9b0dd584 100644 --- a/wikipathways_literature_comparison_evaluations.py +++ b/wikipathways_literature_comparison_evaluations.py @@ -46,16 +46,18 @@ def main(): all_wikipathways_dir = all_wikipathways_dir + '_ablations' #Gets literature comparison terms for many pathways - all_pathways_comparisons = {} - for w in ALL_WIKIPATHWAYS: + all_pathways_comparisons = {key: {} for key in LITERATURE_SEARCH_TYPES} + for w in wikipathways: for search_type in LITERATURE_SEARCH_TYPES: #w_comparison_file = all_wikipathways_dir + "/literature_comparison/" + w + "_literature_comparison_Input_Nodes_.csv" - w_comparison_file = os.getcwd() + "/" + WIKIPATHWAYS_SUBFOLDER + "/literature_comparison/" + w + "_literature_comparison_Input_Nodes_.csv" - w_comparison_df = pd.read_csv(w_comparison_file, sep = "|") - #Remove duplicates and unassigned IDs from literature comparison files - w_comparison_df = w_comparison_df.loc[w_comparison_df['term_id'] != 'none'] - w_comparison_df.drop_duplicates(subset=['term_id'], inplace=True) - all_pathways_comparisons[w] = w_comparison_df + w_comparison_file = os.getcwd() + "/" + WIKIPATHWAYS_SUBFOLDER + "/literature_comparison/" + search_type + "/" + w + "_literature_comparison_Input_Nodes_.csv" + if os.path.exists(w_comparison_file): + w_comparison_df = pd.read_csv(w_comparison_file, sep = "|") + #Remove duplicates and unassigned IDs from literature comparison files + w_comparison_df = w_comparison_df.loc[w_comparison_df['term_id'] != 'none'] + w_comparison_df.drop_duplicates(subset=['term_id'], inplace=True) + all_pathways_comparisons[search_type][w] = w_comparison_df + '''#Gets set of all terms from all abstracts all_pathways_terms = [] @@ -78,52 +80,54 @@ def main(): #Dict of all embeddings to reuse if they exist embeddings = defaultdict(list) - for wikipathway in tqdm(wikipathways): - if ablation == 'true': + for search_type in LITERATURE_SEARCH_TYPES: + for wikipathway in tqdm(wikipathways): - wikipathway = wikipathway + '_ablation_0' + if ablation == 'true': - output_dir = all_wikipathways_dir + '/' + wikipathway + '_output' + wikipathway = wikipathway + '_ablation_0' - #print("Mapping between user inputs and KG nodes.......") - - #Gets literature comparison terms for this pathway specifically - #comparison_terms_df = interactive_search_wrapper(g, labels_file, output_dir, 'literature_comparison', kg_type, enable_skipping, input_dir, wikipathway) + output_dir = all_wikipathways_dir + '/' + wikipathway + '_output' + + #print("Mapping between user inputs and KG nodes.......") + + #Gets literature comparison terms for this pathway specifically + #comparison_terms_df = interactive_search_wrapper(g, labels_file, output_dir, 'literature_comparison', kg_type, enable_skipping, input_dir, wikipathway) - s = pd.read_csv(output_dir + '/_annotated_diagram_Input_Nodes_.csv',sep='|') + s = pd.read_csv(output_dir + '/_annotated_diagram_Input_Nodes_.csv',sep='|') - if cosine_similarity == 'true': + if cosine_similarity == 'true': - subgraph_df = pd.read_csv(output_dir + '/CosineSimilarity/Subgraph.csv',sep='|') + subgraph_df = pd.read_csv(output_dir + '/CosineSimilarity/Subgraph.csv',sep='|') - all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons,kg_type,embeddings,'CosineSimilarity',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') + all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons,kg_type,embeddings,'CosineSimilarity',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') - if pdp == 'true': + if pdp == 'true': - subgraph_df = pd.read_csv(output_dir + '/PDP/Subgraph.csv',sep='|') + subgraph_df = pd.read_csv(output_dir + '/PDP/Subgraph.csv',sep='|') - all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons,kg_type,embeddings,'PDP',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') + all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons,kg_type,embeddings,'PDP',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') - #Get original wikipathways edgelist - wikipathways_subgraph_df = get_wikipathways_subgraph(s) - all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,wikipathways_subgraph_df,g,all_pathways_comparisons,kg_type,embeddings,'Original',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') + #Get original wikipathways edgelist + wikipathways_subgraph_df = get_wikipathways_subgraph(s) + all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,wikipathways_subgraph_df,g,all_pathways_comparisons[search_type],kg_type,embeddings,'Original',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') - all_subgraphs_cosine_sim_df = output_literature_comparison_df(all_wikipathways_dir+'/literature_comparison',all_subgraphs_cosine_sim) + all_subgraphs_cosine_sim_df = output_literature_comparison_df(all_wikipathways_dir+'/literature_comparison',all_subgraphs_cosine_sim,search_type) - ###Add idf term to these columns here - #all_subgraphs_cosine_sim_df + ###Add idf term to these columns here + #all_subgraphs_cosine_sim_df - #!For Testing - ##all_subgraphs_cosine_sim_df = pd.read_csv('/Users/brooksantangelo/Documents/HunterLab/Cartoomics/git/Cartoomics/wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation.csv',sep=',') - ##all_wikipathways_dir = os.getcwd() + "/" + WIKIPATHWAYS_SUBFOLDER + #!For Testing + ##all_subgraphs_cosine_sim_df = pd.read_csv('/Users/brooksantangelo/Documents/HunterLab/Cartoomics/git/Cartoomics/wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation.csv',sep=',') + ##all_wikipathways_dir = os.getcwd() + "/" + WIKIPATHWAYS_SUBFOLDER - #Get relative cosine similarity to other pathways - all_subgraphs_zscore_df = compare_literature_terms_across_pathways(all_subgraphs_cosine_sim_df) + #Get relative cosine similarity to other pathways + all_subgraphs_zscore_df = compare_literature_terms_across_pathways(all_subgraphs_cosine_sim_df) - visualize_literature_comparison_boxplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir) - visualize_literature_comparison_scatterplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir) - visualize_literature_comparison_heatmap_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir) + visualize_literature_comparison_boxplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir,search_type) + visualize_literature_comparison_scatterplot_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir,search_type) + visualize_literature_comparison_heatmap_all_pathways(all_subgraphs_zscore_df,all_wikipathways_dir,search_type) if __name__ == '__main__': From 3cab92de3ac4137e0fd2e3e23e4564173dbc04f0 Mon Sep 17 00:00:00 2001 From: bsantan <70932395+bsantan@users.noreply.github.com> Date: Wed, 29 May 2024 09:18:33 -0600 Subject: [PATCH 02/20] concept_idf_annotated file --- .gitignore | 4 +- .../concept_idf_annotated.csv | 100903 +++++++++++++++ 2 files changed, 100906 insertions(+), 1 deletion(-) create mode 100644 wikipathways_graphs/literature_comparison/Evaluation_Files/concept_idf_annotated.csv diff --git a/.gitignore b/.gitignore index 50c23268..4438ec37 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,9 @@ __pycache__/ wikipathways_graphs/annotated_diagram -wikipathways_graphs/literature_comparison +wikipathways_graphs/literature_comparison/* +!wikipathways_graphs/literature_comparison/Evaluation_Files/ +wikipathways_graphs/literature_comparison/Evaluation_Files/* !wikipathways_graphs/literature_comparison/Evaluation_Files/concept_idf_annotated.csv wikipathways_graphs/pkl wikipathways_graphs/WP* diff --git a/wikipathways_graphs/literature_comparison/Evaluation_Files/concept_idf_annotated.csv b/wikipathways_graphs/literature_comparison/Evaluation_Files/concept_idf_annotated.csv new file mode 100644 index 00000000..d65ce04a --- /dev/null +++ b/wikipathways_graphs/literature_comparison/Evaluation_Files/concept_idf_annotated.csv @@ -0,0 +1,100903 @@ +idf,curie,uri,label +0.613938,UBERON:0001062,http://purl.obolibrary.org/obo/UBERON_0001062,anatomical entity +0.6280245,UBERON:0000465,http://purl.obolibrary.org/obo/UBERON_0000465,material anatomical entity +0.7205915,UBERON:0000061,http://purl.obolibrary.org/obo/UBERON_0000061,anatomical structure +0.7437752,UBERON:0010000,http://purl.obolibrary.org/obo/UBERON_0010000,multicellular anatomical structure +0.8054156,GO:0008150,http://purl.obolibrary.org/obo/GO_0008150,biological_process +0.9403108,MONDO:0000001,http://purl.obolibrary.org/obo/MONDO_0000001,disease or disorder +1.0570842,CL:0000000,http://purl.obolibrary.org/obo/CL_0000000,cell +1.1205866,PR:000000001,http://purl.obolibrary.org/obo/PR_000000001,protein +1.1442802,MONDO:0021199,http://purl.obolibrary.org/obo/MONDO_0021199,disease by anatomical system +1.2170864,CHEBI:50906,http://purl.obolibrary.org/obo/CHEBI_50906,role +1.2521057,GO:0005575,http://purl.obolibrary.org/obo/GO_0005575,cellular_component +1.333738,SO:0000110,http://purl.obolibrary.org/obo/SO_0000110,sequence_feature +1.3531826,NCBITaxon:1,http://purl.obolibrary.org/obo/NCBITaxon_1,root +1.3782023,PR:000018263,http://purl.obolibrary.org/obo/PR_000018263,amino acid chain +1.3904969,UBERON:0000062,http://purl.obolibrary.org/obo/UBERON_0000062,organ +1.411004,NCBITaxon:131567,http://purl.obolibrary.org/obo/NCBITaxon_131567,cellular organisms +1.4194281,NCBITaxon:2759,http://purl.obolibrary.org/obo/NCBITaxon_2759,Eukaryota +1.431774,NCBITaxon:33154,http://purl.obolibrary.org/obo/NCBITaxon_33154,Opisthokonta +1.4597486,NCBITaxon:33208,http://purl.obolibrary.org/obo/NCBITaxon_33208,Metazoa +1.4603723,NCBITaxon:6072,http://purl.obolibrary.org/obo/NCBITaxon_6072,Eumetazoa +1.4604333,NCBITaxon:33213,http://purl.obolibrary.org/obo/NCBITaxon_33213,Bilateria +1.4708216,SO:0000001,http://purl.obolibrary.org/obo/SO_0000001,region +1.4723636,NCBITaxon:7742,http://purl.obolibrary.org/obo/NCBITaxon_7742,Vertebrata +1.4758939,NCBITaxon:33511,http://purl.obolibrary.org/obo/NCBITaxon_33511,Deuterostomia +1.4763384,NCBITaxon:7711,http://purl.obolibrary.org/obo/NCBITaxon_7711,Chordata +1.4765513,NCBITaxon:89593,http://purl.obolibrary.org/obo/NCBITaxon_89593,Craniata +1.4800633,NCBITaxon:7776,http://purl.obolibrary.org/obo/NCBITaxon_7776,Gnathostomata +1.4801975,NCBITaxon:117571,http://purl.obolibrary.org/obo/NCBITaxon_117571,Euteleostomi +1.4802093,NCBITaxon:117570,http://purl.obolibrary.org/obo/NCBITaxon_117570,Teleostomi +1.4836813,NCBITaxon:8287,http://purl.obolibrary.org/obo/NCBITaxon_8287,Sarcopterygii +1.4836829,NCBITaxon:1338369,http://purl.obolibrary.org/obo/NCBITaxon_1338369,Dipnotetrapodomorpha +1.5013572,NCBITaxon:32523,http://purl.obolibrary.org/obo/NCBITaxon_32523,Tetrapoda +1.5066455,NCBITaxon:32524,http://purl.obolibrary.org/obo/NCBITaxon_32524,Amniota +1.5139113,NCBITaxon:40674,http://purl.obolibrary.org/obo/NCBITaxon_40674,Mammalia +1.5275977,GO:0003674,http://purl.obolibrary.org/obo/GO_0003674,molecular_function +1.530761,NCBITaxon:9347,http://purl.obolibrary.org/obo/NCBITaxon_9347,Eutheria +1.5309377,NCBITaxon:32525,http://purl.obolibrary.org/obo/NCBITaxon_32525,Theria +1.531177,NCBITaxon:1437010,http://purl.obolibrary.org/obo/NCBITaxon_1437010,Boreoeutheria +1.5521804,SO:0001411,http://purl.obolibrary.org/obo/SO_0001411,biological_region +1.5697269,NCBITaxon:314146,http://purl.obolibrary.org/obo/NCBITaxon_314146,Euarchontoglires +1.5776319,GO:0044699,http://purl.obolibrary.org/obo/GO_0044699,single-organism process +1.6320353,GO:0005623,http://purl.obolibrary.org/obo/GO_0005623,cell +1.7020119,MONDO:0005070,http://purl.obolibrary.org/obo/MONDO_0005070,neoplasm +1.7230681,MONDO:0024505,http://purl.obolibrary.org/obo/MONDO_0024505,disorder by anatomical region +1.7468614,CHEBI:24432,http://purl.obolibrary.org/obo/CHEBI_24432,biological role +1.8356801,GO:0050896,http://purl.obolibrary.org/obo/GO_0050896,response to stimulus +1.8526656,UBERON:0000479,http://purl.obolibrary.org/obo/UBERON_0000479,tissue +1.8678634,SO:0000400,http://purl.obolibrary.org/obo/SO_0000400,sequence_attribute +1.8738934,GO:0009987,http://purl.obolibrary.org/obo/GO_0009987,cellular process +1.8827286,UBERON:0004120,http://purl.obolibrary.org/obo/UBERON_0004120,mesoderm-derived structure +1.8957319,CL:0000003,http://purl.obolibrary.org/obo/CL_0000003,native cell +1.9067024,MONDO:0045024,http://purl.obolibrary.org/obo/MONDO_0045024,cancer or benign tumor +1.9244777,MONDO:0023370,http://purl.obolibrary.org/obo/MONDO_0023370,neoplastic disease or syndrome +1.9476352,CL:0000255,http://purl.obolibrary.org/obo/CL_0000255,eukaryotic cell +1.9514786,CL:0000548,http://purl.obolibrary.org/obo/CL_0000548,animal cell +1.9781947,UBERON:0000468,http://purl.obolibrary.org/obo/UBERON_0000468,multicellular organism +2.0116789,CL:0002371,http://purl.obolibrary.org/obo/CL_0002371,somatic cell +2.0304354,MONDO:0004992,http://purl.obolibrary.org/obo/MONDO_0004992,cancer +2.0362417,GO:0003824,http://purl.obolibrary.org/obo/GO_0003824,catalytic activity +2.0586591,GO:0110165,http://purl.obolibrary.org/obo/GO_0110165,cellular anatomical entity +2.088831,GO:0008152,http://purl.obolibrary.org/obo/GO_0008152,metabolic process +2.1174422,GO:0005488,http://purl.obolibrary.org/obo/GO_0005488,binding +2.146723,UBERON:0004121,http://purl.obolibrary.org/obo/UBERON_0004121,ectoderm-derived structure +2.1547958,UBERON:0000463,http://purl.obolibrary.org/obo/UBERON_0000463,organism substance +2.1589995,NCBITaxon:9443,http://purl.obolibrary.org/obo/NCBITaxon_9443,Primates +2.163027,SO:0000704,http://purl.obolibrary.org/obo/SO_0000704,gene +2.1670038,NCBITaxon:376913,http://purl.obolibrary.org/obo/NCBITaxon_376913,Haplorrhini +2.1670041,NCBITaxon:314293,http://purl.obolibrary.org/obo/NCBITaxon_314293,Simiiformes +2.1670075,NCBITaxon:9526,http://purl.obolibrary.org/obo/NCBITaxon_9526,Catarrhini +2.1679743,NCBITaxon:9604,http://purl.obolibrary.org/obo/NCBITaxon_9604,Hominidae +2.167994,NCBITaxon:314295,http://purl.obolibrary.org/obo/NCBITaxon_314295,Hominoidea +2.1680012,NCBITaxon:207598,http://purl.obolibrary.org/obo/NCBITaxon_207598,Homininae +2.1683647,NCBITaxon:9605,http://purl.obolibrary.org/obo/NCBITaxon_9605,Homo +2.1687189,NCBITaxon:9606,http://purl.obolibrary.org/obo/NCBITaxon_9606,Homo sapiens +2.1728116,HP:0000001,http://purl.obolibrary.org/obo/HP_0000001,All +2.1729162,HP:0000118,http://purl.obolibrary.org/obo/HP_0000118,Phenotypic abnormality +2.1986328,NCBITaxon:314147,http://purl.obolibrary.org/obo/NCBITaxon_314147,Glires +2.2189842,UBERON:0010314,http://purl.obolibrary.org/obo/UBERON_0010314,structure with developmental contribution from neural crest +2.2221028,GO:0044464,http://purl.obolibrary.org/obo/GO_0044464,cell part +2.2237814,UBERON:0006314,http://purl.obolibrary.org/obo/UBERON_0006314,bodily fluid +2.2321077,UBERON:0005177,http://purl.obolibrary.org/obo/UBERON_0005177,trunk region element +2.2672143,NCBITaxon:9989,http://purl.obolibrary.org/obo/NCBITaxon_9989,Rodentia +2.2735694,CHEBI:51086,http://purl.obolibrary.org/obo/CHEBI_51086,chemical role +2.2889716,NCBITaxon:1963758,http://purl.obolibrary.org/obo/NCBITaxon_1963758,Myomorpha +2.2889746,NCBITaxon:337687,http://purl.obolibrary.org/obo/NCBITaxon_337687,Muroidea +2.2890387,NCBITaxon:33553,http://purl.obolibrary.org/obo/NCBITaxon_33553,Sciurognathi +2.2892955,NCBITaxon:10066,http://purl.obolibrary.org/obo/NCBITaxon_10066,Muridae +2.2893451,NCBITaxon:39107,http://purl.obolibrary.org/obo/NCBITaxon_39107,Murinae +2.3027659,GO:0044763,http://purl.obolibrary.org/obo/GO_0044763,single-organism cellular process +2.328766,UBERON:0000179,http://purl.obolibrary.org/obo/UBERON_0000179,haemolymphatic fluid +2.3705125,CHEBI:33232,http://purl.obolibrary.org/obo/CHEBI_33232,application +2.3744791,MONDO:0005071,http://purl.obolibrary.org/obo/MONDO_0005071,nervous system disorder +2.3780784,CHEBI:24431,http://purl.obolibrary.org/obo/CHEBI_24431,chemical entity +2.3828737,UBERON:0004119,http://purl.obolibrary.org/obo/UBERON_0004119,endoderm-derived structure +2.3890272,CHEBI:59999,http://purl.obolibrary.org/obo/CHEBI_59999,chemical substance +2.4164645,SO:0000733,http://purl.obolibrary.org/obo/SO_0000733,feature_attribute +2.4236394,UBERON:0000064,http://purl.obolibrary.org/obo/UBERON_0000064,organ part +2.4266818,MONDO:0003847,http://purl.obolibrary.org/obo/MONDO_0003847,Mendelian disease +2.5072122,SO:0000443,http://purl.obolibrary.org/obo/SO_0000443,polymer_attribute +2.55907,GO:0044424,http://purl.obolibrary.org/obo/GO_0044424,intracellular part +2.5730428,UBERON:0004111,http://purl.obolibrary.org/obo/UBERON_0004111,anatomical conduit +2.5932365,GO:0032502,http://purl.obolibrary.org/obo/GO_0032502,developmental process +2.6007619,GO:0098772,http://purl.obolibrary.org/obo/GO_0098772,molecular function regulator +2.6135827,MONDO:0004335,http://purl.obolibrary.org/obo/MONDO_0004335,digestive system disease +2.6390064,CL:0000988,http://purl.obolibrary.org/obo/CL_0000988,hematopoietic cell +2.656162,MONDO:0021194,http://purl.obolibrary.org/obo/MONDO_0021194,disease by subcellular system affected +2.6569105,UBERON:0000055,http://purl.obolibrary.org/obo/UBERON_0000055,vessel +2.6831531,UBERON:0000475,http://purl.obolibrary.org/obo/UBERON_0000475,organism subdivision +2.6982483,MONDO:0005151,http://purl.obolibrary.org/obo/MONDO_0005151,endocrine system disease +2.7049789,UBERON:0000178,http://purl.obolibrary.org/obo/UBERON_0000178,blood +2.7269422,GO:0007610,http://purl.obolibrary.org/obo/GO_0007610,behavior +2.7283368,GO:0071704,http://purl.obolibrary.org/obo/GO_0071704,organic substance metabolic process +2.7334256,GO:0065007,http://purl.obolibrary.org/obo/GO_0065007,biological regulation +2.7369609,MONDO:0000651,http://purl.obolibrary.org/obo/MONDO_0000651,thoracic disease +2.7454765,HP:0002664,http://purl.obolibrary.org/obo/HP_0002664,Neoplasm +2.7465758,GO:0032991,http://purl.obolibrary.org/obo/GO_0032991,macromolecular complex +2.7595544,SO:0000348,http://purl.obolibrary.org/obo/SO_0000348,nucleic_acid +2.7692561,MONDO:0021166,http://purl.obolibrary.org/obo/MONDO_0021166,inflammatory disease +2.7834987,MONDO:0002602,http://purl.obolibrary.org/obo/MONDO_0002602,central nervous system disease +2.7849984,GO:0005515,http://purl.obolibrary.org/obo/GO_0005515,protein binding +2.7982279,GO:0005102,http://purl.obolibrary.org/obo/GO_0005102,signaling receptor binding +2.7999962,GO:0032501,http://purl.obolibrary.org/obo/GO_0032501,multicellular organismal process +2.8005975,MONDO:0044965,http://purl.obolibrary.org/obo/MONDO_0044965,abdominal and pelvic region disorder +2.8011108,NCBITaxon:10088,http://purl.obolibrary.org/obo/NCBITaxon_10088,Mus +2.8057728,GO:0030545,http://purl.obolibrary.org/obo/GO_0030545,signaling receptor regulator activity +2.8072962,MONDO:0005046,http://purl.obolibrary.org/obo/MONDO_0005046,immune system disease +2.8219487,UBERON:0000477,http://purl.obolibrary.org/obo/UBERON_0000477,anatomical cluster +2.8236728,GO:0044767,http://purl.obolibrary.org/obo/GO_0044767,single-organism developmental process +2.8304843,GO:0040007,http://purl.obolibrary.org/obo/GO_0040007,growth +2.8414023,CL:0000219,http://purl.obolibrary.org/obo/CL_0000219,motile cell +2.8508921,GO:0043226,http://purl.obolibrary.org/obo/GO_0043226,organelle +2.8623708,CL:0000738,http://purl.obolibrary.org/obo/CL_0000738,leukocyte +2.8626035,CHEBI:60004,http://purl.obolibrary.org/obo/CHEBI_60004,mixture +2.867866,MONDO:0002081,http://purl.obolibrary.org/obo/MONDO_0002081,musculoskeletal system disease +2.8691596,GO:0044237,http://purl.obolibrary.org/obo/GO_0044237,cellular metabolic process +2.8736898,UBERON:0003103,http://purl.obolibrary.org/obo/UBERON_0003103,compound organ +2.8844337,MONDO:0004995,http://purl.obolibrary.org/obo/MONDO_0004995,cardiovascular disease +2.885555,NCBITaxon:10114,http://purl.obolibrary.org/obo/NCBITaxon_10114,Rattus +2.8874001,CHEBI:52217,http://purl.obolibrary.org/obo/CHEBI_52217,pharmaceutical +2.8884088,UBERON:0005181,http://purl.obolibrary.org/obo/UBERON_0005181,thoracic segment organ +2.8906615,CHEBI:23888,http://purl.obolibrary.org/obo/CHEBI_23888,drug +2.8971159,CL:0002242,http://purl.obolibrary.org/obo/CL_0002242,nucleate cell +2.9152812,SO:0000831,http://purl.obolibrary.org/obo/SO_0000831,gene_member_region +2.9275417,GO:0043170,http://purl.obolibrary.org/obo/GO_0043170,macromolecule metabolic process +2.9351244,SO:0001237,http://purl.obolibrary.org/obo/SO_0001237,amino_acid +2.9369344,GO:0030546,http://purl.obolibrary.org/obo/GO_0030546,signaling receptor activator activity +2.9402789,DRUGBANK:DB00118,http://purl.obolibrary.org/obo/DRUGBANK_DB00118,none +2.941893,UBERON:0005173,http://purl.obolibrary.org/obo/UBERON_0005173,abdominal segment element +2.9458869,GO:0043229,http://purl.obolibrary.org/obo/GO_0043229,intracellular organelle +2.946191,GO:0048018,http://purl.obolibrary.org/obo/GO_0048018,receptor ligand activity +2.9527505,GO:0004872,http://purl.obolibrary.org/obo/GO_0004872,none +2.9576666,UBERON:0015212,http://purl.obolibrary.org/obo/UBERON_0015212,lateral structure +2.9657233,UBERON:0002530,http://purl.obolibrary.org/obo/UBERON_0002530,gland +2.9668319,GO:0044238,http://purl.obolibrary.org/obo/GO_0044238,primary metabolic process +2.967881,UBERON:0005172,http://purl.obolibrary.org/obo/UBERON_0005172,abdomen element +2.9701117,GO:0050789,http://purl.obolibrary.org/obo/GO_0050789,regulation of biological process +2.9780196,GO:0016265,http://purl.obolibrary.org/obo/GO_0016265,none +2.9803771,GO:0043234,http://purl.obolibrary.org/obo/GO_0043234,protein complex +2.9824248,PR:000036194,http://purl.obolibrary.org/obo/PR_000036194,eukaryotic protein +2.9865482,SO:0000352,http://purl.obolibrary.org/obo/SO_0000352,DNA +2.9942701,MONDO:0021195,http://purl.obolibrary.org/obo/MONDO_0021195,disease by cellular process disrupted +3.0023284,MONDO:0005626,http://purl.obolibrary.org/obo/MONDO_0005626,epithelial neoplasm +3.0154094,GO:0009058,http://purl.obolibrary.org/obo/GO_0009058,biosynthetic process +3.0323849,MONDO:0100336,http://purl.obolibrary.org/obo/MONDO_0100336,infectious disease or post-infectious disorder +3.0349554,GO:0051179,http://purl.obolibrary.org/obo/GO_0051179,localization +3.0456718,UBERON:0013765,http://purl.obolibrary.org/obo/UBERON_0013765,digestive system element +3.0512748,GO:0060089,http://purl.obolibrary.org/obo/GO_0060089,molecular transducer activity +3.0524495,MONDO:0005560,http://purl.obolibrary.org/obo/MONDO_0005560,brain disease +3.0555318,MONDO:0004993,http://purl.obolibrary.org/obo/MONDO_0004993,carcinoma +3.0688599,GO:0016740,http://purl.obolibrary.org/obo/GO_0016740,transferase activity +3.0839023,MONDO:0003900,http://purl.obolibrary.org/obo/MONDO_0003900,connective tissue disease +3.0867056,UBERON:0000467,http://purl.obolibrary.org/obo/UBERON_0000467,anatomical system +3.0941992,UBERON:0001981,http://purl.obolibrary.org/obo/UBERON_0001981,blood vessel +3.095836,CHEBI:35223,http://purl.obolibrary.org/obo/CHEBI_35223,catalyst +3.0958494,SO:0001185,http://purl.obolibrary.org/obo/SO_0001185,enzymatic +3.0981058,UBERON:0002384,http://purl.obolibrary.org/obo/UBERON_0002384,connective tissue +3.1080195,MONDO:0005550,http://purl.obolibrary.org/obo/MONDO_0005550,infectious disease +3.1517466,GO:0003008,http://purl.obolibrary.org/obo/GO_0003008,system process +3.1520433,GO:0006807,http://purl.obolibrary.org/obo/GO_0006807,nitrogen compound metabolic process +3.1635579,UBERON:0002368,http://purl.obolibrary.org/obo/UBERON_0002368,endocrine gland +3.1731036,GO:0006950,http://purl.obolibrary.org/obo/GO_0006950,response to stress +3.1758909,MONDO:0005172,http://purl.obolibrary.org/obo/MONDO_0005172,skeletal system disease +3.176337,CHEBI:46662,http://purl.obolibrary.org/obo/CHEBI_46662,mineral +3.1785154,GO:0044421,http://purl.obolibrary.org/obo/GO_0044421,none +3.1797662,SO:0001409,http://purl.obolibrary.org/obo/SO_0001409,biomaterial_region +3.1825106,CHEBI:23367,http://purl.obolibrary.org/obo/CHEBI_23367,molecular entity +3.1931871,MONDO:0002254,http://purl.obolibrary.org/obo/MONDO_0002254,syndromic disease +3.1948982,CHEBI:52210,http://purl.obolibrary.org/obo/CHEBI_52210,pharmacological role +3.1950155,MONDO:0005570,http://purl.obolibrary.org/obo/MONDO_0005570,hematologic disease +3.2018667,SO:0000673,http://purl.obolibrary.org/obo/SO_0000673,transcript +3.202069,UBERON:0003101,http://purl.obolibrary.org/obo/UBERON_0003101,male organism +3.2117506,MONDO:0005066,http://purl.obolibrary.org/obo/MONDO_0005066,metabolic disease +3.218288,MONDO:0021147,http://purl.obolibrary.org/obo/MONDO_0021147,disorder of development or morphogenesis +3.2284927,CL:0000842,http://purl.obolibrary.org/obo/CL_0000842,mononuclear cell +3.2317252,MONDO:0002118,http://purl.obolibrary.org/obo/MONDO_0002118,urinary system disease +3.2356682,CHEBI:35222,http://purl.obolibrary.org/obo/CHEBI_35222,inhibitor +3.2388732,SO:0001260,http://purl.obolibrary.org/obo/SO_0001260,sequence_collection +3.2398812,GO:0051234,http://purl.obolibrary.org/obo/GO_0051234,establishment of localization +3.2507299,UBERON:0001637,http://purl.obolibrary.org/obo/UBERON_0001637,artery +3.2555437,UBERON:0001977,http://purl.obolibrary.org/obo/UBERON_0001977,blood serum +3.262764,GO:0016020,http://purl.obolibrary.org/obo/GO_0016020,membrane +3.2685871,CL:0000226,http://purl.obolibrary.org/obo/CL_0000226,single nucleate cell +3.2707481,CL:0000542,http://purl.obolibrary.org/obo/CL_0000542,lymphocyte +3.274482,MONDO:0021059,http://purl.obolibrary.org/obo/MONDO_0021059,head or neck disease/disorder +3.2768532,CHEBI:33259,http://purl.obolibrary.org/obo/CHEBI_33259,elemental molecular entity +3.2803498,CL:0000763,http://purl.obolibrary.org/obo/CL_0000763,myeloid cell +3.2830432,UBERON:0005162,http://purl.obolibrary.org/obo/UBERON_0005162,multi cell part structure +3.283333,CHEBI:24835,http://purl.obolibrary.org/obo/CHEBI_24835,inorganic molecular entity +3.28404,GO:0050877,http://purl.obolibrary.org/obo/GO_0050877,nervous system process +3.2919601,GO:0044260,http://purl.obolibrary.org/obo/GO_0044260,cellular macromolecule metabolic process +3.2943323,GO:0006952,http://purl.obolibrary.org/obo/GO_0006952,defense response +3.2960993,CL:0002087,http://purl.obolibrary.org/obo/CL_0002087,nongranular leukocyte +3.2979363,UBERON:0013702,http://purl.obolibrary.org/obo/UBERON_0013702,body proper +3.3023217,MONDO:0005240,http://purl.obolibrary.org/obo/MONDO_0005240,kidney disease +3.3130927,UBERON:0002075,http://purl.obolibrary.org/obo/UBERON_0002075,viscus +3.3138401,SO:0000695,http://purl.obolibrary.org/obo/SO_0000695,reagent +3.3141545,UBERON:0000955,http://purl.obolibrary.org/obo/UBERON_0000955,brain +3.3228834,GO:0006954,http://purl.obolibrary.org/obo/GO_0006954,inflammatory response +3.3259495,UBERON:0003509,http://purl.obolibrary.org/obo/UBERON_0003509,arterial blood vessel +3.3259663,GO:0043227,http://purl.obolibrary.org/obo/GO_0043227,membrane-bounded organelle +3.3298013,MONDO:0005381,http://purl.obolibrary.org/obo/MONDO_0005381,bone disease +3.3313135,GO:0016772,http://purl.obolibrary.org/obo/GO_0016772,"transferase activity, transferring phosphorus-containing groups" +3.3314892,GO:0042571,http://purl.obolibrary.org/obo/GO_0042571,"immunoglobulin complex, circulating" +3.3435064,GO:0034641,http://purl.obolibrary.org/obo/GO_0034641,cellular nitrogen compound metabolic process +3.3534982,SO:0002072,http://purl.obolibrary.org/obo/SO_0002072,sequence_comparison +3.3572328,GO:0044444,http://purl.obolibrary.org/obo/GO_0044444,cytoplasmic part +3.3578721,SO:0001059,http://purl.obolibrary.org/obo/SO_0001059,sequence_alteration +3.360582,GO:0019814,http://purl.obolibrary.org/obo/GO_0019814,immunoglobulin complex +3.3629691,MONDO:0002025,http://purl.obolibrary.org/obo/MONDO_0002025,psychiatric disorder +3.3629891,UBERON:0002365,http://purl.obolibrary.org/obo/UBERON_0002365,exocrine gland +3.3843552,MONDO:0019117,http://purl.obolibrary.org/obo/MONDO_0019117,genetic nervous system disorder +3.3906341,GO:1901576,http://purl.obolibrary.org/obo/GO_1901576,organic substance biosynthetic process +3.3955652,CHEBI:48705,http://purl.obolibrary.org/obo/CHEBI_48705,agonist +3.4008274,MONDO:0005042,http://purl.obolibrary.org/obo/MONDO_0005042,head disease +3.431577,CHEBI:52206,http://purl.obolibrary.org/obo/CHEBI_52206,biochemical role +3.4329375,GO:0043231,http://purl.obolibrary.org/obo/GO_0043231,intracellular membrane-bounded organelle +3.4369478,MOP:0000543,http://purl.obolibrary.org/obo/MOP_0000543,none +3.4386945,CL:0000211,http://purl.obolibrary.org/obo/CL_0000211,electrically active cell +3.4387458,CL:0000393,http://purl.obolibrary.org/obo/CL_0000393,electrically responsive cell +3.4435668,CHEBI:33579,http://purl.obolibrary.org/obo/CHEBI_33579,main group molecular entity +3.4437037,MONDO:0005385,http://purl.obolibrary.org/obo/MONDO_0005385,vascular disease +3.4446152,GO:0050794,http://purl.obolibrary.org/obo/GO_0050794,regulation of cellular process +3.4463115,GO:0044249,http://purl.obolibrary.org/obo/GO_0044249,cellular biosynthetic process +3.4497565,UBERON:0015228,http://purl.obolibrary.org/obo/UBERON_0015228,circulatory organ +3.4509507,UBERON:0000948,http://purl.obolibrary.org/obo/UBERON_0000948,heart +3.4509507,UBERON:0007100,http://purl.obolibrary.org/obo/UBERON_0007100,primary circulatory organ +3.4638361,UBERON:0006925,http://purl.obolibrary.org/obo/UBERON_0006925,digestive gland +3.4647454,UBERON:0002107,http://purl.obolibrary.org/obo/UBERON_0002107,liver +3.4815987,GO:0044707,http://purl.obolibrary.org/obo/GO_0044707,single-multicellular organism process +3.4840956,GO:1901360,http://purl.obolibrary.org/obo/GO_1901360,organic cyclic compound metabolic process +3.4875913,MONDO:0002051,http://purl.obolibrary.org/obo/MONDO_0002051,integumentary system disease +3.4911163,SO:0000233,http://purl.obolibrary.org/obo/SO_0000233,mature_transcript +3.5040983,MONDO:0005087,http://purl.obolibrary.org/obo/MONDO_0005087,respiratory system disease +3.5055381,GO:0009059,http://purl.obolibrary.org/obo/GO_0009059,macromolecule biosynthetic process +3.5066579,DRUGBANK:DB09145,http://purl.obolibrary.org/obo/DRUGBANK_DB09145,none +3.5069915,CHEBI:75958,http://purl.obolibrary.org/obo/CHEBI_75958,solution +3.5110235,GO:0007165,http://purl.obolibrary.org/obo/GO_0007165,signal transduction +3.5124704,CL:0000540,http://purl.obolibrary.org/obo/CL_0000540,neuron +3.5280049,GO:0006725,http://purl.obolibrary.org/obo/GO_0006725,cellular aromatic compound metabolic process +3.528294,GO:0048856,http://purl.obolibrary.org/obo/GO_0048856,anatomical structure development +3.5326516,UBERON:0002385,http://purl.obolibrary.org/obo/UBERON_0002385,muscle tissue +3.5339165,CL:0002319,http://purl.obolibrary.org/obo/CL_0002319,neural cell +3.5339862,UBERON:0004765,http://purl.obolibrary.org/obo/UBERON_0004765,skeletal element +3.536753,GO:0046483,http://purl.obolibrary.org/obo/GO_0046483,heterocycle metabolic process +3.5416126,UBERON:0005090,http://purl.obolibrary.org/obo/UBERON_0005090,muscle structure +3.5474881,GO:0007568,http://purl.obolibrary.org/obo/GO_0007568,aging +3.5480598,MONDO:0021145,http://purl.obolibrary.org/obo/MONDO_0021145,disease of genitourinary system +3.5514939,MONDO:0005267,http://purl.obolibrary.org/obo/MONDO_0005267,heart disease +3.555261,GO:0034645,http://purl.obolibrary.org/obo/GO_0034645,cellular macromolecule biosynthetic process +3.561939,GO:0006139,http://purl.obolibrary.org/obo/GO_0006139,nucleobase-containing compound metabolic process +3.5650522,GO:0044271,http://purl.obolibrary.org/obo/GO_0044271,cellular nitrogen compound biosynthetic process +3.5688017,CHEBI:24621,http://purl.obolibrary.org/obo/CHEBI_24621,hormone +3.5732935,GO:0007154,http://purl.obolibrary.org/obo/GO_0007154,cell communication +3.5770107,GO:0023052,http://purl.obolibrary.org/obo/GO_0023052,signaling +3.5785113,GO:0006810,http://purl.obolibrary.org/obo/GO_0006810,transport +3.5804105,UBERON:0000481,http://purl.obolibrary.org/obo/UBERON_0000481,multi-tissue structure +3.5825983,CL:0000066,http://purl.obolibrary.org/obo/CL_0000066,epithelial cell +3.5832185,MONDO:0005093,http://purl.obolibrary.org/obo/MONDO_0005093,skin disease +3.5939376,MONDO:0005039,http://purl.obolibrary.org/obo/MONDO_0005039,reproductive system disease +3.6050261,GO:0090304,http://purl.obolibrary.org/obo/GO_0090304,nucleic acid metabolic process +3.6250743,UBERON:0005178,http://purl.obolibrary.org/obo/UBERON_0005178,thoracic cavity element +3.6331344,UBERON:0001474,http://purl.obolibrary.org/obo/UBERON_0001474,bone element +3.6372374,SO:0001235,http://purl.obolibrary.org/obo/SO_0001235,replicon +3.6375303,CHEBI:33675,http://purl.obolibrary.org/obo/CHEBI_33675,p-block molecular entity +3.6434014,UBERON:0001021,http://purl.obolibrary.org/obo/UBERON_0001021,nerve +3.6450815,SO:0000696,http://purl.obolibrary.org/obo/SO_0000696,oligo +3.6465849,UBERON:0003100,http://purl.obolibrary.org/obo/UBERON_0003100,female organism +3.6479676,UBERON:0000122,http://purl.obolibrary.org/obo/UBERON_0000122,neuron projection bundle +3.6610408,MONDO:0021197,http://purl.obolibrary.org/obo/MONDO_0021197,disease by cellular component affected +3.668847,UBERON:0002048,http://purl.obolibrary.org/obo/UBERON_0002048,lung +3.6698392,GO:0004871,http://purl.obolibrary.org/obo/GO_0004871,none +3.6710723,UBERON:0034944,http://purl.obolibrary.org/obo/UBERON_0034944,zone of organ +3.6716341,MONDO:0005154,http://purl.obolibrary.org/obo/MONDO_0005154,liver disease +3.6752711,GO:0016787,http://purl.obolibrary.org/obo/GO_0016787,hydrolase activity +3.6763535,UBERON:0000171,http://purl.obolibrary.org/obo/UBERON_0000171,respiration organ +3.6771391,GO:0006259,http://purl.obolibrary.org/obo/GO_0006259,DNA metabolic process +3.677211,MONDO:0021223,http://purl.obolibrary.org/obo/MONDO_0021223,digestive system neoplasm +3.6776564,UBERON:0000489,http://purl.obolibrary.org/obo/UBERON_0000489,cavitated compound organ +3.6827797,CHEBI:33280,http://purl.obolibrary.org/obo/CHEBI_33280,molecular messenger +3.6838892,CL:0000404,http://purl.obolibrary.org/obo/CL_0000404,electrically signaling cell +3.6983127,GO:0016301,http://purl.obolibrary.org/obo/GO_0016301,kinase activity +3.6993678,MONDO:0044987,http://purl.obolibrary.org/obo/MONDO_0044987,face disease +3.7070796,NCBITaxon:10090,http://purl.obolibrary.org/obo/NCBITaxon_10090,Mus musculus +3.7076991,NCBITaxon:862507,http://purl.obolibrary.org/obo/NCBITaxon_862507,Mus +3.7148105,MONDO:0002515,http://purl.obolibrary.org/obo/MONDO_0002515,hepatobiliary disease +3.721425,CHEBI:59132,http://purl.obolibrary.org/obo/CHEBI_59132,antigen +3.7351751,MONDO:0000605,http://purl.obolibrary.org/obo/MONDO_0000605,hypersensitivity reaction disease +3.7354963,MONDO:0024458,http://purl.obolibrary.org/obo/MONDO_0024458,disease of visual system +3.7449139,MONDO:0000839,http://purl.obolibrary.org/obo/MONDO_0000839,congenital abnormality +3.7460194,GO:0008219,http://purl.obolibrary.org/obo/GO_0008219,cell death +3.7620154,GO:1902578,http://purl.obolibrary.org/obo/GO_1902578,single-organism localization +3.7632744,GO:0044765,http://purl.obolibrary.org/obo/GO_0044765,single-organism transport +3.7666543,MONDO:0100321,http://purl.obolibrary.org/obo/MONDO_0100321,viral disease or post-viral disorder +3.7700325,MOP:0000568,http://purl.obolibrary.org/obo/MOP_0000568,none +3.7721862,GO:1901362,http://purl.obolibrary.org/obo/GO_1901362,organic cyclic compound biosynthetic process +3.7757475,CHEBI:63248,http://purl.obolibrary.org/obo/CHEBI_63248,oxidising agent +3.7764356,MONDO:0000270,http://purl.obolibrary.org/obo/MONDO_0000270,lower respiratory tract disease +3.7764583,MONDO:0005328,http://purl.obolibrary.org/obo/MONDO_0005328,eye disease +3.7788685,MONDO:0002022,http://purl.obolibrary.org/obo/MONDO_0002022,disease of orbital region +3.7799875,CL:0011115,http://purl.obolibrary.org/obo/CL_0011115,precursor cell +3.7847393,CL:0000081,http://purl.obolibrary.org/obo/CL_0000081,blood cell +3.7887802,MONDO:0021350,http://purl.obolibrary.org/obo/MONDO_0021350,neoplasm of thorax +3.7935798,MONDO:0005084,http://purl.obolibrary.org/obo/MONDO_0005084,mental disorder +3.7956422,MONDO:0002516,http://purl.obolibrary.org/obo/MONDO_0002516,digestive system cancer +3.7997701,GO:0043228,http://purl.obolibrary.org/obo/GO_0043228,non-membrane-bounded organelle +3.7998901,GO:0038023,http://purl.obolibrary.org/obo/GO_0038023,signaling receptor activity +3.8012578,GO:0043232,http://purl.obolibrary.org/obo/GO_0043232,intracellular non-membrane-bounded organelle +3.8037091,UBERON:0002049,http://purl.obolibrary.org/obo/UBERON_0002049,vasculature +3.8056095,GO:0019438,http://purl.obolibrary.org/obo/GO_0019438,aromatic compound biosynthetic process +3.8064763,UBERON:0007798,http://purl.obolibrary.org/obo/UBERON_0007798,vascular system +3.8093957,GO:0018130,http://purl.obolibrary.org/obo/GO_0018130,heterocycle biosynthetic process +3.8165606,MONDO:0019755,http://purl.obolibrary.org/obo/MONDO_0019755,developmental defect during embryogenesis +3.8198868,MONDO:0007179,http://purl.obolibrary.org/obo/MONDO_0007179,autoimmune disease +3.8213117,SO:0005836,http://purl.obolibrary.org/obo/SO_0005836,regulatory_region +3.8236919,GO:0071840,http://purl.obolibrary.org/obo/GO_0071840,cellular component organization or biogenesis +3.8237732,UBERON:0011823,http://purl.obolibrary.org/obo/UBERON_0011823,dense connective tissue +3.8244058,GO:0034654,http://purl.obolibrary.org/obo/GO_0034654,nucleobase-containing compound biosynthetic process +3.8247173,GO:0005179,http://purl.obolibrary.org/obo/GO_0005179,hormone activity +3.8292025,GO:0016043,http://purl.obolibrary.org/obo/GO_0016043,cellular component organization +3.8298865,GO:0065009,http://purl.obolibrary.org/obo/GO_0065009,regulation of molecular function +3.8319312,PR:000029045,http://purl.obolibrary.org/obo/PR_000029045,none +3.8400436,UBERON:0000014,http://purl.obolibrary.org/obo/UBERON_0000014,zone of skin +3.8400678,SO:0001026,http://purl.obolibrary.org/obo/SO_0001026,genome +3.841766,SO:0000234,http://purl.obolibrary.org/obo/SO_0000234,mRNA +3.8417903,MONDO:0003274,http://purl.obolibrary.org/obo/MONDO_0003274,thoracic cancer +3.8448533,UBERON:0001013,http://purl.obolibrary.org/obo/UBERON_0001013,adipose tissue +3.845773,UBERON:0007023,http://purl.obolibrary.org/obo/UBERON_0007023,adult organism +3.8467808,SO:0001407,http://purl.obolibrary.org/obo/SO_0001407,peptidyl +3.8536393,CL:0000766,http://purl.obolibrary.org/obo/CL_0000766,myeloid leukocyte +3.8553526,UBERON:0004755,http://purl.obolibrary.org/obo/UBERON_0004755,skeletal tissue +3.859844,NCBITaxon:10239,http://purl.obolibrary.org/obo/NCBITaxon_10239,Viruses +3.8611542,UBERON:0000077,http://purl.obolibrary.org/obo/UBERON_0000077,mixed endoderm/mesoderm-derived structure +3.8624207,SO:0001507,http://purl.obolibrary.org/obo/SO_0001507,variant_collection +3.8660501,CL:0000084,http://purl.obolibrary.org/obo/CL_0000084,T cell +3.8669813,UBERON:0002097,http://purl.obolibrary.org/obo/UBERON_0002097,skin of body +3.8678988,UBERON:0005156,http://purl.obolibrary.org/obo/UBERON_0005156,reproductive structure +3.8744995,UBERON:0011821,http://purl.obolibrary.org/obo/UBERON_0011821,irregular connective tissue +3.875852,GO:0071897,http://purl.obolibrary.org/obo/GO_0071897,DNA biosynthetic process +3.8784097,MONDO:0002334,http://purl.obolibrary.org/obo/MONDO_0002334,hematopoietic and lymphoid system neoplasm +3.882556,SO:0001679,http://purl.obolibrary.org/obo/SO_0001679,none +3.8826674,GO:0050890,http://purl.obolibrary.org/obo/GO_0050890,cognition +3.8831154,SO:0001055,http://purl.obolibrary.org/obo/SO_0001055,transcriptional_cis_regulatory_region +3.8940712,UBERON:0011822,http://purl.obolibrary.org/obo/UBERON_0011822,dense irregular connective tissue +3.9038801,GO:0051704,http://purl.obolibrary.org/obo/GO_0051704,multi-organism process +3.9075147,GO:0006260,http://purl.obolibrary.org/obo/GO_0006260,DNA replication +3.9200275,MONDO:0044881,http://purl.obolibrary.org/obo/MONDO_0044881,hematopoietic and lymphoid cell neoplasm +3.924368,SO:0000856,http://purl.obolibrary.org/obo/SO_0000856,conserved +3.9281131,UBERON:0000073,http://purl.obolibrary.org/obo/UBERON_0000073,regional part of nervous system +3.9284983,GO:0044708,http://purl.obolibrary.org/obo/GO_0044708,none +3.9440068,CHEBI:24870,http://purl.obolibrary.org/obo/CHEBI_24870,ion +3.9470231,MONDO:0005275,http://purl.obolibrary.org/obo/MONDO_0005275,lung disease +3.9486774,CL:0000151,http://purl.obolibrary.org/obo/CL_0000151,secretory cell +3.9515953,GO:0007600,http://purl.obolibrary.org/obo/GO_0007600,sensory perception +3.9528126,UBERON:0002481,http://purl.obolibrary.org/obo/UBERON_0002481,bone tissue +3.953388,CHEBI:36914,http://purl.obolibrary.org/obo/CHEBI_36914,inorganic ion +3.9545917,CHEBI:33238,http://purl.obolibrary.org/obo/CHEBI_33238,monoatomic entity +3.9546731,CHEBI:24867,http://purl.obolibrary.org/obo/CHEBI_24867,monoatomic ion +3.957323,UBERON:0002616,http://purl.obolibrary.org/obo/UBERON_0002616,regional part of brain +3.9590238,UBERON:0004573,http://purl.obolibrary.org/obo/UBERON_0004573,systemic artery +3.9598754,UBERON:0007021,http://purl.obolibrary.org/obo/UBERON_0007021,sexually immature organism +3.9602526,UBERON:0013522,http://purl.obolibrary.org/obo/UBERON_0013522,subdivision of tube +3.9603776,UBERON:0004923,http://purl.obolibrary.org/obo/UBERON_0004923,organ component layer +3.9639888,GO:0044710,http://purl.obolibrary.org/obo/GO_0044710,single-organism metabolic process +3.9695198,MONDO:0006181,http://purl.obolibrary.org/obo/MONDO_0006181,digestive system carcinoma +3.9730653,UBERON:0010313,http://purl.obolibrary.org/obo/UBERON_0010313,neural crest-derived structure +3.9745442,GO:0006278,http://purl.obolibrary.org/obo/GO_0006278,RNA-dependent DNA biosynthetic process +3.9745534,GO:0001171,http://purl.obolibrary.org/obo/GO_0001171,reverse transcription +3.9766996,SO:0000356,http://purl.obolibrary.org/obo/SO_0000356,RNA +3.9793229,UBERON:0000483,http://purl.obolibrary.org/obo/UBERON_0000483,epithelium +3.9793345,GO:0007611,http://purl.obolibrary.org/obo/GO_0007611,learning or memory +3.9798373,MONDO:0002356,http://purl.obolibrary.org/obo/MONDO_0002356,pancreas disease +3.9810826,SO:0001236,http://purl.obolibrary.org/obo/SO_0001236,base +3.9953806,UBERON:0011216,http://purl.obolibrary.org/obo/UBERON_0011216,organ system subdivision +3.998195,DRUGBANK:DB09140,http://purl.obolibrary.org/obo/DRUGBANK_DB09140,none +3.9982941,CHEBI:60027,http://purl.obolibrary.org/obo/CHEBI_60027,polymer +4.000989,UBERON:0002113,http://purl.obolibrary.org/obo/UBERON_0002113,kidney +4.0026117,GO:0140640,http://purl.obolibrary.org/obo/GO_0140640,"catalytic activity, acting on a nucleic acid" +4.0086401,GO:1901564,http://purl.obolibrary.org/obo/GO_1901564,organonitrogen compound metabolic process +4.0109923,CHEBI:37527,http://purl.obolibrary.org/obo/CHEBI_37527,acid +4.0111956,GO:0016070,http://purl.obolibrary.org/obo/GO_0016070,RNA metabolic process +4.017625,GO:0005694,http://purl.obolibrary.org/obo/GO_0005694,chromosome +4.0244256,SO:0001645,http://purl.obolibrary.org/obo/SO_0001645,genetic_marker +4.0267521,GO:0010467,http://purl.obolibrary.org/obo/GO_0010467,gene expression +4.0313483,DRUGBANK:DB09341,http://purl.obolibrary.org/obo/DRUGBANK_DB09341,none +4.0324714,GO:0016491,http://purl.obolibrary.org/obo/GO_0016491,oxidoreductase activity +4.053703,CHEBI:52211,http://purl.obolibrary.org/obo/CHEBI_52211,physiological role +4.0589993,CL:0000325,http://purl.obolibrary.org/obo/CL_0000325,stuff accumulating cell +4.0601865,CHEBI:47867,http://purl.obolibrary.org/obo/CHEBI_47867,indicator +4.0716945,MONDO:0002082,http://purl.obolibrary.org/obo/MONDO_0002082,endocrine gland neoplasm +4.0736781,MONDO:0005020,http://purl.obolibrary.org/obo/MONDO_0005020,intestinal disease +4.0739657,GO:0032774,http://purl.obolibrary.org/obo/GO_0032774,RNA biosynthetic process +4.0753213,GO:0004888,http://purl.obolibrary.org/obo/GO_0004888,transmembrane signaling receptor activity +4.0758339,GO:0016032,http://purl.obolibrary.org/obo/GO_0016032,viral process +4.0800366,MONDO:0002908,http://purl.obolibrary.org/obo/MONDO_0002908,glucose metabolism disease +4.0858971,GO:0046903,http://purl.obolibrary.org/obo/GO_0046903,secretion +4.0859564,GO:0022607,http://purl.obolibrary.org/obo/GO_0022607,cellular component assembly +4.0867865,GO:0044422,http://purl.obolibrary.org/obo/GO_0044422,organelle part +4.0930216,MONDO:0005559,http://purl.obolibrary.org/obo/MONDO_0005559,neurodegenerative disease +4.0965496,GO:0044446,http://purl.obolibrary.org/obo/GO_0044446,intracellular organelle part +4.097618,GO:0048519,http://purl.obolibrary.org/obo/GO_0048519,negative regulation of biological process +4.1036352,MONDO:0005108,http://purl.obolibrary.org/obo/MONDO_0005108,viral infectious disease +4.1071141,GO:0140096,http://purl.obolibrary.org/obo/GO_0140096,"catalytic activity, acting on a protein" +4.1113369,CHEBI:25213,http://purl.obolibrary.org/obo/CHEBI_25213,metal cation +4.1128526,MONDO:0044979,http://purl.obolibrary.org/obo/MONDO_0044979,disease by cell type +4.114551,MONDO:0019044,http://purl.obolibrary.org/obo/MONDO_0019044,tumor of hematopoietic and lymphoid tissues +4.1161698,CHEBI:36916,http://purl.obolibrary.org/obo/CHEBI_36916,cation +4.1171344,CHEBI:36915,http://purl.obolibrary.org/obo/CHEBI_36915,inorganic cation +4.1172222,CHEBI:23906,http://purl.obolibrary.org/obo/CHEBI_23906,monoatomic cation +4.1211196,GO:0097659,http://purl.obolibrary.org/obo/GO_0097659,nucleic acid-templated transcription +4.122923,GO:0030234,http://purl.obolibrary.org/obo/GO_0030234,enzyme regulator activity +4.1233643,GO:0005622,http://purl.obolibrary.org/obo/GO_0005622,intracellular anatomical structure +4.1307537,GO:0140097,http://purl.obolibrary.org/obo/GO_0140097,"catalytic activity, acting on DNA" +4.1331795,GO:0019083,http://purl.obolibrary.org/obo/GO_0019083,viral transcription +4.1352808,GO:0019538,http://purl.obolibrary.org/obo/GO_0019538,protein metabolic process +4.1397959,CL:0002320,http://purl.obolibrary.org/obo/CL_0002320,connective tissue cell +4.1418703,SO:1000002,http://purl.obolibrary.org/obo/SO_1000002,substitution +4.1470808,MONDO:0002406,http://purl.obolibrary.org/obo/MONDO_0002406,dermatitis +4.1478207,MONDO:0005015,http://purl.obolibrary.org/obo/MONDO_0005015,diabetes mellitus +4.1493433,MONDO:0004970,http://purl.obolibrary.org/obo/MONDO_0004970,adenocarcinoma +4.1554131,HP:0000707,http://purl.obolibrary.org/obo/HP_0000707,Abnormality of the nervous system +4.1711096,UBERON:0015757,http://purl.obolibrary.org/obo/UBERON_0015757,heterogeneous tissue +4.1732614,UBERON:0034769,http://purl.obolibrary.org/obo/UBERON_0034769,lymphomyeloid tissue +4.1760379,UBERON:0000310,http://purl.obolibrary.org/obo/UBERON_0000310,breast +4.1773642,UBERON:0034929,http://purl.obolibrary.org/obo/UBERON_0034929,external soft tissue zone +4.1801238,MONDO:0001933,http://purl.obolibrary.org/obo/MONDO_0001933,endocrine pancreas disease +4.1872134,GO:0048869,http://purl.obolibrary.org/obo/GO_0048869,cellular developmental process +4.1891029,MONDO:0024276,http://purl.obolibrary.org/obo/MONDO_0024276,glandular cell neoplasm +4.2005735,GO:0016779,http://purl.obolibrary.org/obo/GO_0016779,nucleotidyltransferase activity +4.2014206,SO:0001410,http://purl.obolibrary.org/obo/SO_0001410,experimental_feature +4.2016433,MONDO:0019052,http://purl.obolibrary.org/obo/MONDO_0019052,inborn errors of metabolism +4.2036241,GO:0006928,http://purl.obolibrary.org/obo/GO_0006928,movement of cell or subcellular component +4.203656,MONDO:0023603,http://purl.obolibrary.org/obo/MONDO_0023603,hereditary disorder of connective tissue +4.2112333,MONDO:0021581,http://purl.obolibrary.org/obo/MONDO_0021581,connective tissue neoplasm +4.2265504,CL:0000145,http://purl.obolibrary.org/obo/CL_0000145,professional antigen presenting cell +4.2321003,CHEBI:33304,http://purl.obolibrary.org/obo/CHEBI_33304,chalcogen molecular entity +4.2333359,CHEBI:25806,http://purl.obolibrary.org/obo/CHEBI_25806,oxygen molecular entity +4.2462596,NCBITaxon:2559587,http://purl.obolibrary.org/obo/NCBITaxon_2559587,Riboviria +4.2510932,MONDO:0006054,http://purl.obolibrary.org/obo/MONDO_0006054,reproductive system neoplasm +4.2512878,MONDO:0025370,http://purl.obolibrary.org/obo/MONDO_0025370,urogenital neoplasm +4.253074,SO:0000409,http://purl.obolibrary.org/obo/SO_0000409,binding_site +4.2569373,CHEBI:48706,http://purl.obolibrary.org/obo/CHEBI_48706,antagonist +4.2579744,GO:0048518,http://purl.obolibrary.org/obo/GO_0048518,positive regulation of biological process +4.2615741,GO:0030154,http://purl.obolibrary.org/obo/GO_0030154,cell differentiation +4.2616171,MONDO:0007254,http://purl.obolibrary.org/obo/MONDO_0007254,breast cancer +4.2618844,UBERON:0011676,http://purl.obolibrary.org/obo/UBERON_0011676,subdivision of organism along main body axis +4.2625206,GO:0034061,http://purl.obolibrary.org/obo/GO_0034061,DNA polymerase activity +4.2633388,MONDO:0005059,http://purl.obolibrary.org/obo/MONDO_0005059,leukemia +4.2634096,UBERON:0000025,http://purl.obolibrary.org/obo/UBERON_0000025,tube +4.2637789,UBERON:0004921,http://purl.obolibrary.org/obo/UBERON_0004921,subdivision of digestive tract +4.2715639,MONDO:0000473,http://purl.obolibrary.org/obo/MONDO_0000473,arterial disorder +4.2719642,GO:0022414,http://purl.obolibrary.org/obo/GO_0022414,reproductive process +4.2721287,SO:0001483,http://purl.obolibrary.org/obo/SO_0001483,SNV +4.2721753,CL:0000034,http://purl.obolibrary.org/obo/CL_0000034,stem cell +4.2760852,CHEBI:33290,http://purl.obolibrary.org/obo/CHEBI_33290,food +4.2802232,DRUGBANK:DB01373,http://purl.obolibrary.org/obo/DRUGBANK_DB01373,none +4.2867004,CL:0000163,http://purl.obolibrary.org/obo/CL_0000163,endocrine cell +4.2874661,GO:0005634,http://purl.obolibrary.org/obo/GO_0005634,nucleus +4.2905412,GO:0044093,http://purl.obolibrary.org/obo/GO_0044093,positive regulation of molecular function +4.290636,MONDO:0019722,http://purl.obolibrary.org/obo/MONDO_0019722,glomerular disease +4.2938509,MONDO:0002320,http://purl.obolibrary.org/obo/MONDO_0002320,congenital nervous system disorder +4.2939017,GO:0005125,http://purl.obolibrary.org/obo/GO_0005125,cytokine activity +4.294619,HP:0012638,http://purl.obolibrary.org/obo/HP_0012638,Abnormal nervous system physiology +4.2960201,CHEBI:33262,http://purl.obolibrary.org/obo/CHEBI_33262,elemental oxygen +4.2986625,GO:0016773,http://purl.obolibrary.org/obo/GO_0016773,"phosphotransferase activity, alcohol group as acceptor" +4.3036638,SO:0000151,http://purl.obolibrary.org/obo/SO_0000151,clone +4.305498,MONDO:0021079,http://purl.obolibrary.org/obo/MONDO_0021079,childhood neoplasm +4.3084263,DRUGBANK:DB00898,http://purl.obolibrary.org/obo/DRUGBANK_DB00898,none +4.3126781,MONDO:0100329,http://purl.obolibrary.org/obo/MONDO_0100329,primary viral infectious disease +4.3141889,SO:0000340,http://purl.obolibrary.org/obo/SO_0000340,chromosome +4.3154816,GO:0016209,http://purl.obolibrary.org/obo/GO_0016209,antioxidant activity +4.3163151,MONDO:0021100,http://purl.obolibrary.org/obo/MONDO_0021100,breast neoplasm +4.3181012,GO:0016788,http://purl.obolibrary.org/obo/GO_0016788,"hydrolase activity, acting on ester bonds" +4.3232303,PR:000045358,http://purl.obolibrary.org/obo/PR_000045358,insulin family protein +4.3246133,PR:000009054,http://purl.obolibrary.org/obo/PR_000009054,insulin gene translation product +4.325402,MONDO:0005618,http://purl.obolibrary.org/obo/MONDO_0005618,anxiety disorder +4.3294177,GO:0006796,http://purl.obolibrary.org/obo/GO_0006796,phosphate-containing compound metabolic process +4.3307269,GO:0006793,http://purl.obolibrary.org/obo/GO_0006793,phosphorus metabolic process +4.3336806,MONDO:0002657,http://purl.obolibrary.org/obo/MONDO_0002657,breast disease +4.3383464,GO:0002376,http://purl.obolibrary.org/obo/GO_0002376,immune system process +4.3403983,MONDO:0000637,http://purl.obolibrary.org/obo/MONDO_0000637,musculoskeletal system cancer +4.3405878,NCBITaxon:314145,http://purl.obolibrary.org/obo/NCBITaxon_314145,Laurasiatheria +4.3420182,CL:0000235,http://purl.obolibrary.org/obo/CL_0000235,macrophage +4.3431974,UBERON:0000020,http://purl.obolibrary.org/obo/UBERON_0000020,sense organ +4.3433707,CL:0000473,http://purl.obolibrary.org/obo/CL_0000473,defensive cell +4.3470644,MONDO:0005062,http://purl.obolibrary.org/obo/MONDO_0005062,lymphoma +4.3475664,GO:0008283,http://purl.obolibrary.org/obo/GO_0008283,cell proliferation +4.3486081,CL:0000234,http://purl.obolibrary.org/obo/CL_0000234,phagocyte +4.3488292,MONDO:0005218,http://purl.obolibrary.org/obo/MONDO_0005218,muscular disease +4.3508558,GO:0004672,http://purl.obolibrary.org/obo/GO_0004672,protein kinase activity +4.3511917,MONDO:0002149,http://purl.obolibrary.org/obo/MONDO_0002149,reproductive system cancer +4.3535025,MONDO:0005137,http://purl.obolibrary.org/obo/MONDO_0005137,nutritional disorder +4.3631189,MONDO:0019060,http://purl.obolibrary.org/obo/MONDO_0019060,bone neoplasm +4.3677639,GO:0140098,http://purl.obolibrary.org/obo/GO_0140098,"catalytic activity, acting on RNA" +4.3693809,MONDO:0002263,http://purl.obolibrary.org/obo/MONDO_0002263,female reproductive system disease +4.3717925,SO:0001060,http://purl.obolibrary.org/obo/SO_0001060,sequence_variant +4.3730691,GO:0008083,http://purl.obolibrary.org/obo/GO_0008083,growth factor activity +4.3768951,GO:0016310,http://purl.obolibrary.org/obo/GO_0016310,phosphorylation +4.3771295,UBERON:0011215,http://purl.obolibrary.org/obo/UBERON_0011215,central nervous system cell part cluster +4.3792937,MONDO:0019056,http://purl.obolibrary.org/obo/MONDO_0019056,neuromuscular disease +4.3797119,DRUGBANK:DB06154,http://purl.obolibrary.org/obo/DRUGBANK_DB06154,none +4.3838203,CL:0011026,http://purl.obolibrary.org/obo/CL_0011026,progenitor cell +4.3847058,GO:0030547,http://purl.obolibrary.org/obo/GO_0030547,signaling receptor inhibitor activity +4.3891104,GO:0048019,http://purl.obolibrary.org/obo/GO_0048019,receptor antagonist activity +4.389407,PR:000000033,http://purl.obolibrary.org/obo/PR_000000033,"tumor necrosis factor, TNF-like" +4.3903744,SO:0000817,http://purl.obolibrary.org/obo/SO_0000817,wild_type +4.3948988,SO:0000694,http://purl.obolibrary.org/obo/SO_0000694,SNP +4.3956712,MONDO:0002176,http://purl.obolibrary.org/obo/MONDO_0002176,connective tissue cancer +4.3978901,SO:0000753,http://purl.obolibrary.org/obo/SO_0000753,clone_insert +4.3998246,MONDO:0003939,http://purl.obolibrary.org/obo/MONDO_0003939,muscle tissue disease +4.4049415,GO:0034062,http://purl.obolibrary.org/obo/GO_0034062,5'-3' RNA polymerase activity +4.4065381,GO:0070265,http://purl.obolibrary.org/obo/GO_0070265,necrotic cell death +4.4147172,CHEBI:50406,http://purl.obolibrary.org/obo/CHEBI_50406,probe +4.4202494,GO:0097747,http://purl.obolibrary.org/obo/GO_0097747,RNA polymerase activity +4.4254793,MONDO:0005575,http://purl.obolibrary.org/obo/MONDO_0005575,colorectal cancer +4.4321529,UBERON:0001016,http://purl.obolibrary.org/obo/UBERON_0001016,nervous system +4.4419347,GO:0044092,http://purl.obolibrary.org/obo/GO_0044092,negative regulation of molecular function +4.4454283,MONDO:0003225,http://purl.obolibrary.org/obo/MONDO_0003225,bone marrow disease +4.4521402,SO:0000667,http://purl.obolibrary.org/obo/SO_0000667,insertion +4.4542311,UBERON:0005057,http://purl.obolibrary.org/obo/UBERON_0005057,immune organ +4.4584747,GO:0007612,http://purl.obolibrary.org/obo/GO_0007612,learning +4.4647705,UBERON:0014892,http://purl.obolibrary.org/obo/UBERON_0014892,skeletal muscle organ +4.4690289,UBERON:0005423,http://purl.obolibrary.org/obo/UBERON_0005423,developing anatomical structure +4.4722583,SO:0001537,http://purl.obolibrary.org/obo/SO_0001537,structural_variant +4.4736852,UBERON:0001630,http://purl.obolibrary.org/obo/UBERON_0001630,muscle organ +4.4869078,SO:0000051,http://purl.obolibrary.org/obo/SO_0000051,probe +4.4874082,MONDO:0011122,http://purl.obolibrary.org/obo/MONDO_0011122,obesity disorder +4.4892965,SO:0000839,http://purl.obolibrary.org/obo/SO_0000839,polypeptide_region +4.4896514,NCBITaxon:91561,http://purl.obolibrary.org/obo/NCBITaxon_91561,Cetartiodactyla +4.4899602,MONDO:0021178,http://purl.obolibrary.org/obo/MONDO_0021178,injury +4.4913777,SO:0001878,http://purl.obolibrary.org/obo/SO_0001878,feature_variant +4.4920312,MONDO:0002129,http://purl.obolibrary.org/obo/MONDO_0002129,bone cancer +4.494153,GO:0005739,http://purl.obolibrary.org/obo/GO_0005739,mitochondrion +4.4997501,MONDO:0024634,http://purl.obolibrary.org/obo/MONDO_0024634,large intestine disease +4.5005534,SO:0000655,http://purl.obolibrary.org/obo/SO_0000655,ncRNA +4.501779,MONDO:0020012,http://purl.obolibrary.org/obo/MONDO_0020012,systemic or rheumatic disease +4.5019079,MONDO:0021669,http://purl.obolibrary.org/obo/MONDO_0021669,post-infectious disorder +4.5057551,SO:0000833,http://purl.obolibrary.org/obo/SO_0000833,transcript_region +4.5134784,SO:0000330,http://purl.obolibrary.org/obo/SO_0000330,conserved_region +4.5136721,DRUGBANK:DB00117,http://purl.obolibrary.org/obo/DRUGBANK_DB00117,none +4.5185176,MONDO:0005374,http://purl.obolibrary.org/obo/MONDO_0005374,bone marrow neoplasm +4.5195667,UBERON:0003714,http://purl.obolibrary.org/obo/UBERON_0003714,neural tissue +4.5207403,MONDO:0003916,http://purl.obolibrary.org/obo/MONDO_0003916,overnutrition +4.5256363,MONDO:0021248,http://purl.obolibrary.org/obo/MONDO_0021248,nervous system neoplasm +4.5301022,MONDO:0021674,http://purl.obolibrary.org/obo/MONDO_0021674,post-viral disorder +4.5349072,CHEBI:52214,http://purl.obolibrary.org/obo/CHEBI_52214,ligand +4.5352908,SO:0000853,http://purl.obolibrary.org/obo/SO_0000853,homologous_region +4.5392161,CL:0000457,http://purl.obolibrary.org/obo/CL_0000457,biogenic amine secreting cell +4.5434379,MONDO:0003620,http://purl.obolibrary.org/obo/MONDO_0003620,peripheral nervous system disease +4.544864,MONDO:0020683,http://purl.obolibrary.org/obo/MONDO_0020683,acute disease +4.5466353,GO:0006955,http://purl.obolibrary.org/obo/GO_0006955,immune response +4.5486757,GO:0065008,http://purl.obolibrary.org/obo/GO_0065008,regulation of biological quality +4.5492449,GO:0044267,http://purl.obolibrary.org/obo/GO_0044267,cellular protein metabolic process +4.5493186,MONDO:0002280,http://purl.obolibrary.org/obo/MONDO_0002280,anemia +4.5515985,CHEBI:38867,http://purl.obolibrary.org/obo/CHEBI_38867,anaesthetic +4.5530035,SO:0000842,http://purl.obolibrary.org/obo/SO_0000842,gene_component_region +4.5561533,MONDO:0006517,http://purl.obolibrary.org/obo/MONDO_0006517,childhood malignant neoplasm +4.5614957,MONDO:0003150,http://purl.obolibrary.org/obo/MONDO_0003150,male reproductive system disease +4.5616243,UBERON:0000033,http://purl.obolibrary.org/obo/UBERON_0000033,head +4.5664459,DRUGBANK:DB10632,http://purl.obolibrary.org/obo/DRUGBANK_DB10632,none +4.5665001,MONDO:0005578,http://purl.obolibrary.org/obo/MONDO_0005578,arthritic joint disease +4.5665376,NCBITaxon:9895,http://purl.obolibrary.org/obo/NCBITaxon_9895,Bovidae +4.5768835,UBERON:0000466,http://purl.obolibrary.org/obo/UBERON_0000466,immaterial anatomical entity +4.5778734,MONDO:0015757,http://purl.obolibrary.org/obo/MONDO_0015757,lymphoid hemopathy +4.5796282,SO:0000167,http://purl.obolibrary.org/obo/SO_0000167,promoter +4.5801518,NCBITaxon:9845,http://purl.obolibrary.org/obo/NCBITaxon_9845,Ruminantia +4.5801772,NCBITaxon:35500,http://purl.obolibrary.org/obo/NCBITaxon_35500,Pecora +4.5818302,SO:0001027,http://purl.obolibrary.org/obo/SO_0001027,genotype +4.5828716,MONDO:0005157,http://purl.obolibrary.org/obo/MONDO_0005157,lymphoid neoplasm +4.5829479,NCBITaxon:9979,http://purl.obolibrary.org/obo/NCBITaxon_9979,Leporidae +4.5830834,NCBITaxon:9975,http://purl.obolibrary.org/obo/NCBITaxon_9975,Lagomorpha +4.5833588,NCBITaxon:9984,http://purl.obolibrary.org/obo/NCBITaxon_9984,none +4.5833588,NCBITaxon:9986,http://purl.obolibrary.org/obo/NCBITaxon_9986,Oryctolagus cuniculus +4.5843849,UBERON:0034925,http://purl.obolibrary.org/obo/UBERON_0034925,anatomical collection +4.5853016,MONDO:0006816,http://purl.obolibrary.org/obo/MONDO_0006816,arthropathy +4.5861214,SO:0001761,http://purl.obolibrary.org/obo/SO_0001761,variant_quality +4.587529,MONDO:0021069,http://purl.obolibrary.org/obo/MONDO_0021069,malignant endocrine neoplasm +4.5906829,MONDO:0005503,http://purl.obolibrary.org/obo/MONDO_0005503,developmental disorder of mental health +4.5916182,PR:000030035,http://purl.obolibrary.org/obo/PR_000030035,G-protein coupled receptor +4.5920841,MONDO:0002614,http://purl.obolibrary.org/obo/MONDO_0002614,bone inflammation disease +4.5934872,MONDO:0024255,http://purl.obolibrary.org/obo/MONDO_0024255,genetic skin disease +4.5984783,UBERON:0003513,http://purl.obolibrary.org/obo/UBERON_0003513,trunk blood vessel +4.5994338,MONDO:0000429,http://purl.obolibrary.org/obo/MONDO_0000429,autosomal genetic disease +4.59952,SO:0001763,http://purl.obolibrary.org/obo/SO_0001763,variant_frequency +4.6010932,MONDO:0002251,http://purl.obolibrary.org/obo/MONDO_0002251,hepatitis +4.6062135,MONDO:0000621,http://purl.obolibrary.org/obo/MONDO_0000621,immune system cancer +4.6112337,GO:0007613,http://purl.obolibrary.org/obo/GO_0007613,memory +4.6119137,GO:0005576,http://purl.obolibrary.org/obo/GO_0005576,extracellular region +4.6122583,GO:0008047,http://purl.obolibrary.org/obo/GO_0008047,enzyme activator activity +4.6128037,UBERON:0000464,http://purl.obolibrary.org/obo/UBERON_0000464,anatomical space +4.6136158,SO:0001023,http://purl.obolibrary.org/obo/SO_0001023,allele +4.6141357,GO:0005737,http://purl.obolibrary.org/obo/GO_0005737,cytoplasm +4.6198419,MONDO:0024417,http://purl.obolibrary.org/obo/MONDO_0024417,perceptual disorders +4.6266688,SO:0000440,http://purl.obolibrary.org/obo/SO_0000440,vector_replicon +4.6297979,DRUGBANK:DB09337,http://purl.obolibrary.org/obo/DRUGBANK_DB09337,none +4.6336318,SO:0001766,http://purl.obolibrary.org/obo/SO_0001766,polymorphic_variant +4.6351793,DRUGBANK:DB04540,http://purl.obolibrary.org/obo/DRUGBANK_DB04540,none +4.6354248,CHEBI:59163,http://purl.obolibrary.org/obo/CHEBI_59163,biomarker +4.6369438,DRUGBANK:DB09278,http://purl.obolibrary.org/obo/DRUGBANK_DB09278,none +4.6370287,SO:0002007,http://purl.obolibrary.org/obo/SO_0002007,MNV +4.6372523,SO:0001013,http://purl.obolibrary.org/obo/SO_0001013,MNP +4.6500397,NCBITaxon:147537,http://purl.obolibrary.org/obo/NCBITaxon_147537,Saccharomycotina +4.6512635,DRUGBANK:DB00134,http://purl.obolibrary.org/obo/DRUGBANK_DB00134,none +4.651572,GO:0097159,http://purl.obolibrary.org/obo/GO_0097159,organic cyclic compound binding +4.651572,GO:1901363,http://purl.obolibrary.org/obo/GO_1901363,heterocyclic compound binding +4.6523435,MONDO:0020641,http://purl.obolibrary.org/obo/MONDO_0020641,respiratory tract neoplasm +4.6530157,SO:0000141,http://purl.obolibrary.org/obo/SO_0000141,terminator +4.6566571,CL:0000057,http://purl.obolibrary.org/obo/CL_0000057,fibroblast +4.6618049,GO:0003676,http://purl.obolibrary.org/obo/GO_0003676,nucleic acid binding +4.6620432,GO:0097617,http://purl.obolibrary.org/obo/GO_0097617,none +4.6624605,SO:0000159,http://purl.obolibrary.org/obo/SO_0000159,deletion +4.6663391,HP:0001507,http://purl.obolibrary.org/obo/HP_0001507,Growth abnormality +4.6664588,MONDO:0021118,http://purl.obolibrary.org/obo/MONDO_0021118,intestinal neoplasm +4.6665509,MONDO:0005113,http://purl.obolibrary.org/obo/MONDO_0005113,bacterial infectious disease +4.6671728,GO:0044703,http://purl.obolibrary.org/obo/GO_0044703,multi-organism reproductive process +4.6713149,CHEBI:35209,http://purl.obolibrary.org/obo/CHEBI_35209,label +4.6717777,MONDO:0005554,http://purl.obolibrary.org/obo/MONDO_0005554,rheumatic disorder +4.6722825,CHEBI:33302,http://purl.obolibrary.org/obo/CHEBI_33302,pnictogen molecular entity +4.6723056,UBERON:0000970,http://purl.obolibrary.org/obo/UBERON_0000970,eye +4.6746568,UBERON:0001017,http://purl.obolibrary.org/obo/UBERON_0001017,central nervous system +4.675084,CHEBI:51143,http://purl.obolibrary.org/obo/CHEBI_51143,nitrogen molecular entity +4.6768087,MONDO:0000376,http://purl.obolibrary.org/obo/MONDO_0000376,respiratory system cancer +4.6769064,UBERON:0000063,http://purl.obolibrary.org/obo/UBERON_0000063,organ subunit +4.6851768,UBERON:0003834,http://purl.obolibrary.org/obo/UBERON_0003834,thoracic segment blood vessel +4.6896818,MONDO:0015938,http://purl.obolibrary.org/obo/MONDO_0015938,systemic disease +4.6913469,NCBITaxon:4751,http://purl.obolibrary.org/obo/NCBITaxon_4751,Fungi +4.6946144,UBERON:0005985,http://purl.obolibrary.org/obo/UBERON_0005985,coronary vessel +4.7026941,MONDO:0043424,http://purl.obolibrary.org/obo/MONDO_0043424,digestive system infectious disease +4.7029472,GO:0005215,http://purl.obolibrary.org/obo/GO_0005215,transporter activity +4.7093196,GO:0097458,http://purl.obolibrary.org/obo/GO_0097458,none +4.7100504,CL:0000458,http://purl.obolibrary.org/obo/CL_0000458,serotonin secreting cell +4.7163716,GO:0071702,http://purl.obolibrary.org/obo/GO_0071702,organic substance transport +4.7180187,UBERON:0003498,http://purl.obolibrary.org/obo/UBERON_0003498,heart blood vessel +4.7237711,UBERON:0000174,http://purl.obolibrary.org/obo/UBERON_0000174,excreta +4.7268676,GO:0022857,http://purl.obolibrary.org/obo/GO_0022857,transmembrane transporter activity +4.7404159,UBERON:0001088,http://purl.obolibrary.org/obo/UBERON_0001088,urine +4.7450279,CL:0000225,http://purl.obolibrary.org/obo/CL_0000225,anucleate cell +4.7454763,UBERON:0012429,http://purl.obolibrary.org/obo/UBERON_0012429,hematopoietic tissue +4.7470174,MONDO:0021138,http://purl.obolibrary.org/obo/MONDO_0021138,bone marrow cancer +4.753904,MONDO:0008903,http://purl.obolibrary.org/obo/MONDO_0008903,lung cancer +4.7540849,GO:1901566,http://purl.obolibrary.org/obo/GO_1901566,organonitrogen compound biosynthetic process +4.7548895,GO:0042995,http://purl.obolibrary.org/obo/GO_0042995,cell projection +4.7553423,NCBITaxon:451864,http://purl.obolibrary.org/obo/NCBITaxon_451864,Dikarya +4.7566568,GO:0004930,http://purl.obolibrary.org/obo/GO_0004930,G protein-coupled receptor activity +4.7571508,MONDO:0005497,http://purl.obolibrary.org/obo/MONDO_0005497,bone development disease +4.7581496,UBERON:0002371,http://purl.obolibrary.org/obo/UBERON_0002371,bone marrow +4.7587504,CL:0000233,http://purl.obolibrary.org/obo/CL_0000233,platelet +4.7588969,DRUGBANK:DB12938,http://purl.obolibrary.org/obo/DRUGBANK_DB12938,none +4.7607421,MONDO:0024331,http://purl.obolibrary.org/obo/MONDO_0024331,colorectal carcinoma +4.7664867,MONDO:0005335,http://purl.obolibrary.org/obo/MONDO_0005335,colorectal neoplasm +4.7684481,UBERON:0001621,http://purl.obolibrary.org/obo/UBERON_0001621,coronary artery +4.7688765,CL:0002078,http://purl.obolibrary.org/obo/CL_0002078,meso-epithelial cell +4.769928,SO:0000857,http://purl.obolibrary.org/obo/SO_0000857,homologous +4.7700148,GO:0044764,http://purl.obolibrary.org/obo/GO_0044764,multi-organism cellular process +4.7754381,GO:0120025,http://purl.obolibrary.org/obo/GO_0120025,plasma membrane bounded cell projection +4.7765891,CL:0000764,http://purl.obolibrary.org/obo/CL_0000764,erythroid lineage cell +4.7800137,MONDO:0002039,http://purl.obolibrary.org/obo/MONDO_0002039,cognitive disorder +4.7809478,HP:0004323,http://purl.obolibrary.org/obo/HP_0004323,Abnormality of body weight +4.7833673,NCBITaxon:4890,http://purl.obolibrary.org/obo/NCBITaxon_4890,Ascomycota +4.7835122,DRUGBANK:DB09393,http://purl.obolibrary.org/obo/DRUGBANK_DB09393,none +4.790859,PR:000029055,http://purl.obolibrary.org/obo/PR_000029055,none +4.7992326,GO:0005886,http://purl.obolibrary.org/obo/GO_0005886,plasma membrane +4.8003797,MONDO:0005089,http://purl.obolibrary.org/obo/MONDO_0005089,sarcoma +4.8011328,HP:0001626,http://purl.obolibrary.org/obo/HP_0001626,Abnormality of the cardiovascular system +4.8014279,MONDO:0005814,http://purl.obolibrary.org/obo/MONDO_0005814,intestinal cancer +4.804611,DRUGBANK:DB00135,http://purl.obolibrary.org/obo/DRUGBANK_DB00135,none +4.8049389,SO:0000324,http://purl.obolibrary.org/obo/SO_0000324,tag +4.8087806,MONDO:0021117,http://purl.obolibrary.org/obo/MONDO_0021117,lung neoplasm +4.8095561,GO:0015267,http://purl.obolibrary.org/obo/GO_0015267,channel activity +4.8141841,CL:0000945,http://purl.obolibrary.org/obo/CL_0000945,lymphocyte of B lineage +4.8154446,NCBITaxon:716545,http://purl.obolibrary.org/obo/NCBITaxon_716545,saccharomyceta +4.8198315,MONDO:0005395,http://purl.obolibrary.org/obo/MONDO_0005395,movement disorder +4.8208681,UBERON:0034922,http://purl.obolibrary.org/obo/UBERON_0034922,cell cluster +4.8214809,PR:000001094,http://purl.obolibrary.org/obo/PR_000001094,rhodopsin-like G-protein coupled receptor +4.8232246,MONDO:0021094,http://purl.obolibrary.org/obo/MONDO_0021094,immunodeficiency disease +4.8299967,HP:0001513,http://purl.obolibrary.org/obo/HP_0001513,Obesity +4.8299967,HP:0004324,http://purl.obolibrary.org/obo/HP_0004324,Increased body weight +4.8332559,MONDO:0021148,http://purl.obolibrary.org/obo/MONDO_0021148,female reproductive system neoplasm +4.8340723,MONDO:0005492,http://purl.obolibrary.org/obo/MONDO_0005492,urticaria +4.8379131,MONDO:0000490,http://purl.obolibrary.org/obo/MONDO_0000490,glomerulosclerosis +4.8393353,UBERON:0010371,http://purl.obolibrary.org/obo/UBERON_0010371,ecto-epithelium +4.8424603,MONDO:0002259,http://purl.obolibrary.org/obo/MONDO_0002259,gonadal disease +4.8450169,CL:0000232,http://purl.obolibrary.org/obo/CL_0000232,erythrocyte +4.8470118,UBERON:0000922,http://purl.obolibrary.org/obo/UBERON_0000922,embryo +4.8498456,CL:0000329,http://purl.obolibrary.org/obo/CL_0000329,oxygen accumulating cell +4.8541419,MONDO:0005027,http://purl.obolibrary.org/obo/MONDO_0005027,epilepsy +4.8566617,UBERON:0001744,http://purl.obolibrary.org/obo/UBERON_0001744,lymphoid tissue +4.8576481,CL:0000236,http://purl.obolibrary.org/obo/CL_0000236,B cell +4.8593722,MONDO:0024237,http://purl.obolibrary.org/obo/MONDO_0024237,inherited neurodegenerative disorder +4.861687,MONDO:0021635,http://purl.obolibrary.org/obo/MONDO_0021635,neurocristopathy +4.8618549,MONDO:0015327,http://purl.obolibrary.org/obo/MONDO_0015327,developmental anomaly of metabolic origin +4.8618661,PR:000003262,http://purl.obolibrary.org/obo/PR_000003262,collagen alpha chain +4.8666364,CL:0000215,http://purl.obolibrary.org/obo/CL_0000215,barrier cell +4.8674974,CL:0000213,http://purl.obolibrary.org/obo/CL_0000213,lining cell +4.8721363,MONDO:0004805,http://purl.obolibrary.org/obo/MONDO_0004805,leukocyte disease +4.8730417,UBERON:0000456,http://purl.obolibrary.org/obo/UBERON_0000456,secretion of exocrine gland +4.8731493,CL:0000115,http://purl.obolibrary.org/obo/CL_0000115,endothelial cell +4.8732229,NCBITaxon:439488,http://purl.obolibrary.org/obo/NCBITaxon_439488,ssRNA viruses +4.881736,NCBITaxon:27592,http://purl.obolibrary.org/obo/NCBITaxon_27592,Bovinae +4.8819016,NCBITaxon:9903,http://purl.obolibrary.org/obo/NCBITaxon_9903,Bos +4.8820558,NCBITaxon:9913,http://purl.obolibrary.org/obo/NCBITaxon_9913,Bos taurus +4.882553,MOP:0000779,http://purl.obolibrary.org/obo/MOP_0000779,none +4.8827302,DRUGBANK:DB11017,http://purl.obolibrary.org/obo/DRUGBANK_DB11017,none +4.8829245,MOP:0000566,http://purl.obolibrary.org/obo/MOP_0000566,none +4.8832276,CL:0000183,http://purl.obolibrary.org/obo/CL_0000183,contractile cell +4.8836796,UBERON:0003133,http://purl.obolibrary.org/obo/UBERON_0003133,reproductive organ +4.8845039,MOP:0000800,http://purl.obolibrary.org/obo/MOP_0000800,none +4.8845268,MOP:0000458,http://purl.obolibrary.org/obo/MOP_0000458,none +4.8854436,CHEBI:3815,http://purl.obolibrary.org/obo/CHEBI_3815,Collagen +4.8895908,DRUGBANK:DB00171,http://purl.obolibrary.org/obo/DRUGBANK_DB00171,none +4.889775,GO:0004674,http://purl.obolibrary.org/obo/GO_0004674,protein serine/threonine kinase activity +4.8902645,MONDO:0019496,http://purl.obolibrary.org/obo/MONDO_0019496,neuroendocrine neoplasm +4.8907139,GO:0051649,http://purl.obolibrary.org/obo/GO_0051649,establishment of localization in cell +4.8908695,MONDO:0005363,http://purl.obolibrary.org/obo/MONDO_0005363,focal segmental glomerulosclerosis +4.8912903,DRUGBANK:DB14523,http://purl.obolibrary.org/obo/DRUGBANK_DB14523,none +4.8936513,GO:0043603,http://purl.obolibrary.org/obo/GO_0043603,cellular amide metabolic process +4.8937785,SO:0001564,http://purl.obolibrary.org/obo/SO_0001564,gene_variant +4.8949583,UBERON:0009856,http://purl.obolibrary.org/obo/UBERON_0009856,sac +4.8955604,NCBITaxon:2732396,http://purl.obolibrary.org/obo/NCBITaxon_2732396,Orthornavirae +4.8956356,UBERON:0000991,http://purl.obolibrary.org/obo/UBERON_0000991,gonad +4.895792,PR:000000019,http://purl.obolibrary.org/obo/PR_000000019,mitogen-activated protein kinase +4.8963888,UBERON:0002101,http://purl.obolibrary.org/obo/UBERON_0002101,limb +4.8984308,UBERON:0010363,http://purl.obolibrary.org/obo/UBERON_0010363,endochondral element +4.901129,CL:0000187,http://purl.obolibrary.org/obo/CL_0000187,muscle cell +4.9065531,MONDO:0005170,http://purl.obolibrary.org/obo/MONDO_0005170,myeloid neoplasm +4.909931,MONDO:0005283,http://purl.obolibrary.org/obo/MONDO_0005283,retinal disease +4.9105774,GO:0051606,http://purl.obolibrary.org/obo/GO_0051606,detection of stimulus +4.9144232,GO:0022803,http://purl.obolibrary.org/obo/GO_0022803,passive transmembrane transporter activity +4.9163428,NCBITaxon:35268,http://purl.obolibrary.org/obo/NCBITaxon_35268,none +4.9166325,NCBITaxon:2732397,http://purl.obolibrary.org/obo/NCBITaxon_2732397,Pararnavirae +4.9166325,NCBITaxon:2732409,http://purl.obolibrary.org/obo/NCBITaxon_2732409,Artverviricota +4.9166325,NCBITaxon:2732514,http://purl.obolibrary.org/obo/NCBITaxon_2732514,Revtraviricetes +4.9203889,MONDO:0001627,http://purl.obolibrary.org/obo/MONDO_0001627,dementia +4.9205967,MONDO:0005244,http://purl.obolibrary.org/obo/MONDO_0005244,peripheral neuropathy +4.921351,UBERON:0002513,http://purl.obolibrary.org/obo/UBERON_0002513,endochondral bone +4.9222546,CHEBI:22586,http://purl.obolibrary.org/obo/CHEBI_22586,antioxidant +4.9240463,DRUGBANK:DB10415,http://purl.obolibrary.org/obo/DRUGBANK_DB10415,none +4.9254712,MONDO:0024572,http://purl.obolibrary.org/obo/MONDO_0024572,immunodeficiency-related disorder +4.9254891,MONDO:0024571,http://purl.obolibrary.org/obo/MONDO_0024571,AIDS-related disorder +4.926271,MONDO:0005798,http://purl.obolibrary.org/obo/MONDO_0005798,HIV-associated nephropathy +4.9273703,GO:0043604,http://purl.obolibrary.org/obo/GO_0043604,amide biosynthetic process +4.9283212,GO:0006518,http://purl.obolibrary.org/obo/GO_0006518,peptide metabolic process +4.9285965,MONDO:0005586,http://purl.obolibrary.org/obo/MONDO_0005586,head and neck neoplasm +4.9287042,GO:0030312,http://purl.obolibrary.org/obo/GO_0030312,external encapsulating structure +4.9316956,MONDO:0001416,http://purl.obolibrary.org/obo/MONDO_0001416,female reproductive organ cancer +4.9326446,UBERON:0034921,http://purl.obolibrary.org/obo/UBERON_0034921,multi organ part structure +4.9348464,MONDO:0004994,http://purl.obolibrary.org/obo/MONDO_0004994,cardiomyopathy +4.9373489,NCBITaxon:4894,http://purl.obolibrary.org/obo/NCBITaxon_4894,none +4.9383154,GO:0009292,http://purl.obolibrary.org/obo/GO_0009292,genetic transfer +4.9399484,PR:000000134,http://purl.obolibrary.org/obo/PR_000000134,tumor necrosis factor alpha +4.9404207,CL:0000586,http://purl.obolibrary.org/obo/CL_0000586,germ cell +4.9419905,UBERON:0000026,http://purl.obolibrary.org/obo/UBERON_0000026,appendage +4.9425487,GO:0043043,http://purl.obolibrary.org/obo/GO_0043043,peptide biosynthetic process +4.9466599,GO:0031982,http://purl.obolibrary.org/obo/GO_0031982,vesicle +4.9474341,GO:0043005,http://purl.obolibrary.org/obo/GO_0043005,neuron projection +4.9514062,SO:0000104,http://purl.obolibrary.org/obo/SO_0000104,polypeptide +4.9526438,HP:0011025,http://purl.obolibrary.org/obo/HP_0011025,Abnormal cardiovascular system physiology +4.9536498,NCBITaxon:451866,http://purl.obolibrary.org/obo/NCBITaxon_451866,Taphrinomycotina +4.9539935,NCBITaxon:147554,http://purl.obolibrary.org/obo/NCBITaxon_147554,none +4.9540979,NCBITaxon:34346,http://purl.obolibrary.org/obo/NCBITaxon_34346,none +4.9566737,GO:0044281,http://purl.obolibrary.org/obo/GO_0044281,small molecule metabolic process +4.958707,GO:0044427,http://purl.obolibrary.org/obo/GO_0044427,chromosomal part +4.9595709,GO:0006412,http://purl.obolibrary.org/obo/GO_0006412,translation +4.9609733,DRUGBANK:DB09152,http://purl.obolibrary.org/obo/DRUGBANK_DB09152,none +4.9635173,NCBITaxon:5204,http://purl.obolibrary.org/obo/NCBITaxon_5204,Basidiomycota +4.9639078,GO:0004497,http://purl.obolibrary.org/obo/GO_0004497,monooxygenase activity +4.9645342,NCBITaxon:5302,http://purl.obolibrary.org/obo/NCBITaxon_5302,Agaricomycotina +4.9668323,DRUGBANK:DB01592,http://purl.obolibrary.org/obo/DRUGBANK_DB01592,none +4.9710198,UBERON:0004708,http://purl.obolibrary.org/obo/UBERON_0004708,paired limb/fin +4.972776,NCBITaxon:147538,http://purl.obolibrary.org/obo/NCBITaxon_147538,Pezizomycotina +4.9728949,NCBITaxon:716546,http://purl.obolibrary.org/obo/NCBITaxon_716546,leotiomyceta +4.9752687,CL:0000039,http://purl.obolibrary.org/obo/CL_0000039,germ line cell +4.979221,UBERON:0004177,http://purl.obolibrary.org/obo/UBERON_0004177,hemopoietic organ +4.9823612,SO:0001446,http://purl.obolibrary.org/obo/SO_0001446,tyrosine +4.9860627,CHEBI:50112,http://purl.obolibrary.org/obo/CHEBI_50112,sex hormone +4.9898097,DRUGBANK:DB15127,http://purl.obolibrary.org/obo/DRUGBANK_DB15127,none +4.9969744,NCBITaxon:147545,http://purl.obolibrary.org/obo/NCBITaxon_147545,Eurotiomycetes +4.9978656,GO:0001071,http://purl.obolibrary.org/obo/GO_0001071,none +4.9985008,NCBITaxon:29000,http://purl.obolibrary.org/obo/NCBITaxon_29000,none +4.9985907,NCBITaxon:155616,http://purl.obolibrary.org/obo/NCBITaxon_155616,Tremellomycetes +4.9986292,NCBITaxon:1851469,http://purl.obolibrary.org/obo/NCBITaxon_1851469,Trichosporonales +4.9986292,NCBITaxon:1851470,http://purl.obolibrary.org/obo/NCBITaxon_1851470,none +4.9986292,NCBITaxon:203525,http://purl.obolibrary.org/obo/NCBITaxon_203525,none +4.9986292,NCBITaxon:204043,http://purl.obolibrary.org/obo/NCBITaxon_204043,none +4.9986292,NCBITaxon:34418,http://purl.obolibrary.org/obo/NCBITaxon_34418,none +4.9986292,NCBITaxon:432005,http://purl.obolibrary.org/obo/NCBITaxon_432005,none +4.998719,NCBITaxon:451870,http://purl.obolibrary.org/obo/NCBITaxon_451870,Chaetothyriomycetidae +4.9987383,NCBITaxon:1851472,http://purl.obolibrary.org/obo/NCBITaxon_1851472,none +4.9987383,NCBITaxon:2605300,http://purl.obolibrary.org/obo/NCBITaxon_2605300,none +4.9987768,NCBITaxon:106841,http://purl.obolibrary.org/obo/NCBITaxon_106841,none +4.9987768,NCBITaxon:34476,http://purl.obolibrary.org/obo/NCBITaxon_34476,none +4.9987768,NCBITaxon:5234,http://purl.obolibrary.org/obo/NCBITaxon_5234,Tremellales +4.9988025,NCBITaxon:34395,http://purl.obolibrary.org/obo/NCBITaxon_34395,Chaetothyriales +4.9988282,NCBITaxon:165790,http://purl.obolibrary.org/obo/NCBITaxon_165790,none +4.9988282,NCBITaxon:432006,http://purl.obolibrary.org/obo/NCBITaxon_432006,none +4.9988282,NCBITaxon:7898,http://purl.obolibrary.org/obo/NCBITaxon_7898,Actinopterygii +4.9988475,NCBITaxon:160695,http://purl.obolibrary.org/obo/NCBITaxon_160695,none +4.9988475,NCBITaxon:164432,http://purl.obolibrary.org/obo/NCBITaxon_164432,none +4.9988475,NCBITaxon:211102,http://purl.obolibrary.org/obo/NCBITaxon_211102,none +4.9988475,NCBITaxon:246185,http://purl.obolibrary.org/obo/NCBITaxon_246185,none +4.9988475,NCBITaxon:271377,http://purl.obolibrary.org/obo/NCBITaxon_271377,none +4.9988475,NCBITaxon:38240,http://purl.obolibrary.org/obo/NCBITaxon_38240,none +5.0068991,MONDO:0002691,http://purl.obolibrary.org/obo/MONDO_0002691,liver cancer +5.0108161,GO:0012501,http://purl.obolibrary.org/obo/GO_0012501,programmed cell death +5.0153098,PR:000029060,http://purl.obolibrary.org/obo/PR_000029060,none +5.0219897,GO:0040011,http://purl.obolibrary.org/obo/GO_0040011,locomotion +5.0230943,CHEBI:33674,http://purl.obolibrary.org/obo/CHEBI_33674,s-block molecular entity +5.0237457,MONDO:0002514,http://purl.obolibrary.org/obo/MONDO_0002514,hepatobiliary neoplasm +5.0278154,GO:0004857,http://purl.obolibrary.org/obo/GO_0004857,enzyme inhibitor activity +5.0278682,MONDO:0005156,http://purl.obolibrary.org/obo/MONDO_0005156,encephalomyelitis +5.0281988,GO:0032940,http://purl.obolibrary.org/obo/GO_0032940,secretion by cell +5.0301843,UBERON:0002050,http://purl.obolibrary.org/obo/UBERON_0002050,embryonic structure +5.0341938,MONDO:0004721,http://purl.obolibrary.org/obo/MONDO_0004721,liver neoplasm +5.0345397,CL:0000094,http://purl.obolibrary.org/obo/CL_0000094,granulocyte +5.0359047,UBERON:0002046,http://purl.obolibrary.org/obo/UBERON_0002046,thyroid gland +5.0364646,MONDO:0044334,http://purl.obolibrary.org/obo/MONDO_0044334,connective and soft tissue neoplasm +5.0386269,CHEBI:23924,http://purl.obolibrary.org/obo/CHEBI_23924,enzyme inhibitor +5.0494959,HP:0001939,http://purl.obolibrary.org/obo/HP_0001939,Abnormality of metabolism/homeostasis +5.0500836,SO:0000756,http://purl.obolibrary.org/obo/SO_0000756,cDNA +5.052506,UBERON:0002421,http://purl.obolibrary.org/obo/UBERON_0002421,hippocampal formation +5.0530413,GO:0009294,http://purl.obolibrary.org/obo/GO_0009294,DNA mediated transformation +5.0544182,CHEBI:33267,http://purl.obolibrary.org/obo/CHEBI_33267,elemental nitrogen +5.0556475,CHEBI:33465,http://purl.obolibrary.org/obo/CHEBI_33465,elemental pnictogen +5.0642403,UBERON:0001954,http://purl.obolibrary.org/obo/UBERON_0001954,Ammon's horn +5.0649465,UBERON:0003914,http://purl.obolibrary.org/obo/UBERON_0003914,epithelial tube +5.0701388,MONDO:0018908,http://purl.obolibrary.org/obo/MONDO_0018908,non-Hodgkin lymphoma +5.0724582,GO:0044445,http://purl.obolibrary.org/obo/GO_0044445,none +5.0729697,GO:0140677,http://purl.obolibrary.org/obo/GO_0140677,molecular function activator activity +5.0746168,MONDO:0001071,http://purl.obolibrary.org/obo/MONDO_0001071,intellectual disability +5.075885,MONDO:0000508,http://purl.obolibrary.org/obo/MONDO_0000508,syndromic intellectual disability +5.0772243,PR:000025875,http://purl.obolibrary.org/obo/PR_000025875,serpin +5.0788227,SO:0000834,http://purl.obolibrary.org/obo/SO_0000834,mature_transcript_region +5.079101,UBERON:0017672,http://purl.obolibrary.org/obo/UBERON_0017672,abdominal viscera +5.0793376,SO:0000836,http://purl.obolibrary.org/obo/SO_0000836,mRNA_region +5.0815808,MONDO:0015756,http://purl.obolibrary.org/obo/MONDO_0015756,myeloid hemopathy +5.082118,DRUGBANK:DB04945,http://purl.obolibrary.org/obo/DRUGBANK_DB04945,none +5.0829557,MONDO:0000589,http://purl.obolibrary.org/obo/MONDO_0000589,autoimmune disease of musculoskeletal system +5.0849761,MONDO:0024582,http://purl.obolibrary.org/obo/MONDO_0024582,male reproductive system neoplasm +5.0867692,UBERON:0001135,http://purl.obolibrary.org/obo/UBERON_0001135,smooth muscle tissue +5.0876038,MONDO:0005010,http://purl.obolibrary.org/obo/MONDO_0005010,coronary artery disease +5.0882566,MONDO:0005336,http://purl.obolibrary.org/obo/MONDO_0005336,myopathy +5.0899009,MONDO:0003105,http://purl.obolibrary.org/obo/MONDO_0003105,prostate disease +5.0935998,GO:0009986,http://purl.obolibrary.org/obo/GO_0009986,cell surface +5.0960805,MONDO:0043218,http://purl.obolibrary.org/obo/MONDO_0043218,neurovascular disease +5.0981631,DRUGBANK:DB00133,http://purl.obolibrary.org/obo/DRUGBANK_DB00133,none +5.0987802,UBERON:0002020,http://purl.obolibrary.org/obo/UBERON_0002020,gray matter +5.0994119,SO:0000905,http://purl.obolibrary.org/obo/SO_0000905,status +5.0996604,UBERON:0002529,http://purl.obolibrary.org/obo/UBERON_0002529,limb segment +5.1001008,GO:0005833,http://purl.obolibrary.org/obo/GO_0005833,hemoglobin complex +5.100179,CHEBI:33504,http://purl.obolibrary.org/obo/CHEBI_33504,alkali metal cation +5.1004988,CHEBI:33296,http://purl.obolibrary.org/obo/CHEBI_33296,alkali metal molecular entity +5.1006623,UBERON:0010758,http://purl.obolibrary.org/obo/UBERON_0010758,subdivision of organism along appendicular axis +5.1006907,UBERON:0010538,http://purl.obolibrary.org/obo/UBERON_0010538,paired limb/fin segment +5.1012596,PR:000029061,http://purl.obolibrary.org/obo/PR_000029061,none +5.1012667,CHEBI:26712,http://purl.obolibrary.org/obo/CHEBI_26712,sodium molecular entity +5.1036167,CHEBI:37246,http://purl.obolibrary.org/obo/CHEBI_37246,elemental sodium +5.1039519,DRUGBANK:DB14154,http://purl.obolibrary.org/obo/DRUGBANK_DB14154,none +5.1041088,UBERON:0002036,http://purl.obolibrary.org/obo/UBERON_0002036,striated muscle tissue +5.1042515,NCBITaxon:7777,http://purl.obolibrary.org/obo/NCBITaxon_7777,Chondrichthyes +5.1045369,CHEBI:60242,http://purl.obolibrary.org/obo/CHEBI_60242,monovalent inorganic cation +5.1047867,CHEBI:25414,http://purl.obolibrary.org/obo/CHEBI_25414,monoatomic monocation +5.1055508,CHEBI:29101,http://purl.obolibrary.org/obo/CHEBI_29101,sodium(1+) +5.1060938,MONDO:0018531,http://purl.obolibrary.org/obo/MONDO_0018531,carcinoma of liver and intrahepatic biliary tract +5.1095233,UBERON:0005174,http://purl.obolibrary.org/obo/UBERON_0005174,dorsal region element +5.1160568,SO:0002247,http://purl.obolibrary.org/obo/SO_0002247,sncRNA +5.1169307,DRUGBANK:DB14972,http://purl.obolibrary.org/obo/DRUGBANK_DB14972,none +5.1194121,DRUGBANK:DB00435,http://purl.obolibrary.org/obo/DRUGBANK_DB00435,none +5.1238912,MONDO:0044974,http://purl.obolibrary.org/obo/MONDO_0044974,disease of supramolecular complex +5.124044,MONDO:0024477,http://purl.obolibrary.org/obo/MONDO_0024477,liver and intrahepatic bile duct neoplasm +5.1289753,CHEBI:25212,http://purl.obolibrary.org/obo/CHEBI_25212,metabolite +5.1316774,MONDO:0006424,http://purl.obolibrary.org/obo/MONDO_0006424,soft tissue neoplasm +5.1361677,MONDO:0002409,http://purl.obolibrary.org/obo/MONDO_0002409,auditory system disease +5.1364845,SO:0000902,http://purl.obolibrary.org/obo/SO_0000902,transgene +5.1382692,SO:0000804,http://purl.obolibrary.org/obo/SO_0000804,engineered_region +5.1387786,UBERON:0013768,http://purl.obolibrary.org/obo/UBERON_0013768,great vessel of heart +5.1391922,MONDO:0005836,http://purl.obolibrary.org/obo/MONDO_0005836,male reproductive organ cancer +5.1392587,NCBITaxon:32561,http://purl.obolibrary.org/obo/NCBITaxon_32561,Sauria +5.1392587,NCBITaxon:8457,http://purl.obolibrary.org/obo/NCBITaxon_8457,Sauropsida +5.1400866,MONDO:0008315,http://purl.obolibrary.org/obo/MONDO_0008315,prostate cancer +5.1405156,CL:0008001,http://purl.obolibrary.org/obo/CL_0008001,hematopoietic precursor cell +5.1409521,MONDO:0015356,http://purl.obolibrary.org/obo/MONDO_0015356,hereditary neoplastic syndrome +5.1434865,NCBITaxon:35237,http://purl.obolibrary.org/obo/NCBITaxon_35237,none +5.1449195,GO:0022892,http://purl.obolibrary.org/obo/GO_0022892,none +5.1491116,MONDO:0006130,http://purl.obolibrary.org/obo/MONDO_0006130,central nervous system neoplasm +5.1520932,GO:0006915,http://purl.obolibrary.org/obo/GO_0006915,apoptotic process +5.1527071,DRUGBANK:DB00125,http://purl.obolibrary.org/obo/DRUGBANK_DB00125,none +5.1541984,SO:0000993,http://purl.obolibrary.org/obo/SO_0000993,consensus +5.1544234,GO:0032259,http://purl.obolibrary.org/obo/GO_0032259,methylation +5.1559399,NCBITaxon:2169561,http://purl.obolibrary.org/obo/NCBITaxon_2169561,Ortervirales +5.1578123,UBERON:0008784,http://purl.obolibrary.org/obo/UBERON_0008784,lower limb segment +5.1602012,UBERON:0006598,http://purl.obolibrary.org/obo/UBERON_0006598,presumptive structure +5.1605558,MONDO:0001106,http://purl.obolibrary.org/obo/MONDO_0001106,kidney failure +5.1637914,MONDO:0021259,http://purl.obolibrary.org/obo/MONDO_0021259,prostate neoplasm +5.1661111,MONDO:0004355,http://purl.obolibrary.org/obo/MONDO_0004355,childhood leukemia +5.1668703,GO:0022891,http://purl.obolibrary.org/obo/GO_0022891,none +5.1671666,SO:0001576,http://purl.obolibrary.org/obo/SO_0001576,transcript_variant +5.1703703,NCBITaxon:11632,http://purl.obolibrary.org/obo/NCBITaxon_11632,Retroviridae +5.1714837,MONDO:0000591,http://purl.obolibrary.org/obo/MONDO_0000591,intrinsic cardiomyopathy +5.1744487,MONDO:0003409,http://purl.obolibrary.org/obo/MONDO_0003409,colonic disease +5.1769621,UBERON:0004288,http://purl.obolibrary.org/obo/UBERON_0004288,skeleton +5.1781213,MONDO:0005627,http://purl.obolibrary.org/obo/MONDO_0005627,head and neck cancer +5.1812217,NCBITaxon:327045,http://purl.obolibrary.org/obo/NCBITaxon_327045,Orthoretrovirinae +5.1813064,GO:0042578,http://purl.obolibrary.org/obo/GO_0042578,phosphoric ester hydrolase activity +5.1834123,GO:1990777,http://purl.obolibrary.org/obo/GO_1990777,lipoprotein particle +5.1851126,MONDO:0011918,http://purl.obolibrary.org/obo/MONDO_0011918,anxiety +5.1884598,DRUGBANK:DB11067,http://purl.obolibrary.org/obo/DRUGBANK_DB11067,none +5.1920285,GO:0004601,http://purl.obolibrary.org/obo/GO_0004601,peroxidase activity +5.1924258,MONDO:0021193,http://purl.obolibrary.org/obo/MONDO_0021193,neuroepithelial neoplasm +5.1982085,GO:0044425,http://purl.obolibrary.org/obo/GO_0044425,membrane part +5.1988043,GO:0015075,http://purl.obolibrary.org/obo/GO_0015075,ion transmembrane transporter activity +5.2000676,MONDO:0005300,http://purl.obolibrary.org/obo/MONDO_0005300,chronic kidney disease +5.2014112,MONDO:0005252,http://purl.obolibrary.org/obo/MONDO_0005252,heart failure +5.2018437,GO:0007155,http://purl.obolibrary.org/obo/GO_0007155,cell adhesion +5.2059738,CL:0000125,http://purl.obolibrary.org/obo/CL_0000125,glial cell +5.2093283,UBERON:0002553,http://purl.obolibrary.org/obo/UBERON_0002553,anatomical cavity +5.209899,HP:0001635,http://purl.obolibrary.org/obo/HP_0001635,Congestive heart failure +5.2101528,HP:0012337,http://purl.obolibrary.org/obo/HP_0012337,Abnormal homeostasis +5.2105177,MONDO:0006011,http://purl.obolibrary.org/obo/MONDO_0006011,viral hepatitis +5.211788,GO:0016791,http://purl.obolibrary.org/obo/GO_0016791,phosphatase activity +5.2134974,GO:0006629,http://purl.obolibrary.org/obo/GO_0006629,lipid metabolic process +5.2140307,UBERON:0000029,http://purl.obolibrary.org/obo/UBERON_0000029,lymph node +5.2145166,GO:0005975,http://purl.obolibrary.org/obo/GO_0005975,carbohydrate metabolic process +5.2176441,MONDO:0100120,http://purl.obolibrary.org/obo/MONDO_0100120,vector-borne disease +5.2218401,UBERON:0002240,http://purl.obolibrary.org/obo/UBERON_0002240,spinal cord +5.2249585,CHEBI:35225,http://purl.obolibrary.org/obo/CHEBI_35225,buffer +5.2251356,GO:0015318,http://purl.obolibrary.org/obo/GO_0015318,inorganic molecular entity transmembrane transporter activity +5.2278525,MONDO:0024355,http://purl.obolibrary.org/obo/MONDO_0024355,respiratory tract infectious disease +5.2289429,GO:0022610,http://purl.obolibrary.org/obo/GO_0022610,biological adhesion +5.2323998,GO:0016684,http://purl.obolibrary.org/obo/GO_0016684,"oxidoreductase activity, acting on peroxide as acceptor" +5.2344049,UBERON:0034768,http://purl.obolibrary.org/obo/UBERON_0034768,morphological feature +5.2357954,UBERON:0003528,http://purl.obolibrary.org/obo/UBERON_0003528,brain gray matter +5.2375709,GO:0044706,http://purl.obolibrary.org/obo/GO_0044706,multi-multicellular organism process +5.2394557,GO:0000988,http://purl.obolibrary.org/obo/GO_0000988,none +5.2398152,DRUGBANK:DB00143,http://purl.obolibrary.org/obo/DRUGBANK_DB00143,none +5.2414669,GO:0140352,http://purl.obolibrary.org/obo/GO_0140352,export from cell +5.2427279,UBERON:0000476,http://purl.obolibrary.org/obo/UBERON_0000476,acellular anatomical structure +5.2459533,MONDO:0005249,http://purl.obolibrary.org/obo/MONDO_0005249,pneumonia +5.2465701,CL:0000723,http://purl.obolibrary.org/obo/CL_0000723,somatic stem cell +5.247253,PR:000001946,http://purl.obolibrary.org/obo/PR_000001946,tumor necrosis factor ligand superfamily member 10/11 +5.2495604,SO:0000155,http://purl.obolibrary.org/obo/SO_0000155,plasmid +5.2496346,MONDO:0021084,http://purl.obolibrary.org/obo/MONDO_0021084,vision disorder +5.2545559,CL:0000095,http://purl.obolibrary.org/obo/CL_0000095,neuron associated cell +5.2557173,MONDO:0043905,http://purl.obolibrary.org/obo/MONDO_0043905,pneumonitis +5.2568718,GO:0016705,http://purl.obolibrary.org/obo/GO_0016705,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen" +5.2573373,GO:0031012,http://purl.obolibrary.org/obo/GO_0031012,extracellular matrix +5.2588434,UBERON:0002106,http://purl.obolibrary.org/obo/UBERON_0002106,spleen +5.2593931,MONDO:0002654,http://purl.obolibrary.org/obo/MONDO_0002654,uterine disease +5.2598181,MONDO:0021066,http://purl.obolibrary.org/obo/MONDO_0021066,urinary system neoplasm +5.2623051,MONDO:0000831,http://purl.obolibrary.org/obo/MONDO_0000831,thrombotic disease +5.2625474,UBERON:0004905,http://purl.obolibrary.org/obo/UBERON_0004905,articulation +5.2633585,UBERON:0000982,http://purl.obolibrary.org/obo/UBERON_0000982,skeletal joint +5.2660388,MONDO:0021681,http://purl.obolibrary.org/obo/MONDO_0021681,sexually transmitted disease +5.2668863,GO:0031099,http://purl.obolibrary.org/obo/GO_0031099,regeneration +5.2673061,MONDO:0018532,http://purl.obolibrary.org/obo/MONDO_0018532,adenocarcinoma of liver and intrahepatic biliary tract +5.2673312,MONDO:0005265,http://purl.obolibrary.org/obo/MONDO_0005265,inflammatory bowel disease +5.2673732,MONDO:0008383,http://purl.obolibrary.org/obo/MONDO_0008383,rheumatoid arthritis +5.2711344,MONDO:0010643,http://purl.obolibrary.org/obo/MONDO_0010643,acute leukemia +5.2731174,NCBITaxon:35278,http://purl.obolibrary.org/obo/NCBITaxon_35278,unclassified ssRNA positive-strand viruses +5.2760103,MONDO:0018078,http://purl.obolibrary.org/obo/MONDO_0018078,soft tissue sarcoma +5.2767476,NCBITaxon:1476529,http://purl.obolibrary.org/obo/NCBITaxon_1476529,Cyclostomata +5.2771376,GO:0071705,http://purl.obolibrary.org/obo/GO_0071705,nitrogen compound transport +5.2785804,DRUGBANK:DB10543,http://purl.obolibrary.org/obo/DRUGBANK_DB10543,none +5.2786653,NCBITaxon:117569,http://purl.obolibrary.org/obo/NCBITaxon_117569,Hyperoartia +5.2791751,NCBITaxon:7878,http://purl.obolibrary.org/obo/NCBITaxon_7878,Dipnomorpha +5.2795321,NCBITaxon:117565,http://purl.obolibrary.org/obo/NCBITaxon_117565,Hyperotreti +5.2795831,NCBITaxon:118072,http://purl.obolibrary.org/obo/NCBITaxon_118072,Coelacanthimorpha +5.2808166,MONDO:0005105,http://purl.obolibrary.org/obo/MONDO_0005105,melanoma +5.2844066,DRUGBANK:DB00988,http://purl.obolibrary.org/obo/DRUGBANK_DB00988,none +5.287838,PR:000029032,http://purl.obolibrary.org/obo/PR_000029032,none +5.289262,MONDO:0024637,http://purl.obolibrary.org/obo/MONDO_0024637,malignant soft tissue neoplasm +5.2931668,UBERON:0000075,http://purl.obolibrary.org/obo/UBERON_0000075,subdivision of skeletal system +5.2966891,SO:0000851,http://purl.obolibrary.org/obo/SO_0000851,CDS_region +5.2967583,DRUGBANK:DB08839,http://purl.obolibrary.org/obo/DRUGBANK_DB08839,none +5.2976495,PR:000001950,http://purl.obolibrary.org/obo/PR_000001950,tumor necrosis factor ligand superfamily member 5 +5.2987148,PR:000006886,http://purl.obolibrary.org/obo/PR_000006886,ectodysplasin-A +5.2992869,MONDO:0020076,http://purl.obolibrary.org/obo/MONDO_0020076,myeloproliferative neoplasm +5.2994864,DRUGBANK:DB14511,http://purl.obolibrary.org/obo/DRUGBANK_DB14511,none +5.2997206,MONDO:0005148,http://purl.obolibrary.org/obo/MONDO_0005148,type 2 diabetes mellitus +5.3011008,PR:000018264,http://purl.obolibrary.org/obo/PR_000018264,proteolytic cleavage product +5.3021958,PR:000001947,http://purl.obolibrary.org/obo/PR_000001947,tumor necrosis factor ligand superfamily member 13 +5.3039714,PR:000001948,http://purl.obolibrary.org/obo/PR_000001948,tumor necrosis factor ligand superfamily member 13B +5.3040498,PR:000001309,http://purl.obolibrary.org/obo/PR_000001309,CD70 molecule +5.3043548,PR:000016487,http://purl.obolibrary.org/obo/PR_000016487,tumor necrosis factor ligand superfamily member 12 +5.3045116,PR:000001949,http://purl.obolibrary.org/obo/PR_000001949,tumor necrosis factor ligand superfamily member 4 +5.3048691,PR:000016489,http://purl.obolibrary.org/obo/PR_000016489,tumor necrosis factor ligand superfamily member 9 +5.3049911,PR:000001404,http://purl.obolibrary.org/obo/PR_000001404,tumor necrosis factor ligand superfamily member 8 +5.3052005,PR:000016488,http://purl.obolibrary.org/obo/PR_000016488,tumor necrosis factor ligand superfamily member 18 +5.3071649,MONDO:0004298,http://purl.obolibrary.org/obo/MONDO_0004298,stomach disease +5.3085641,PR:000029050,http://purl.obolibrary.org/obo/PR_000029050,none +5.3134067,SO:0000806,http://purl.obolibrary.org/obo/SO_0000806,fusion +5.3144977,MONDO:0005365,http://purl.obolibrary.org/obo/MONDO_0005365,hearing loss disorder +5.3148235,HP:0001250,http://purl.obolibrary.org/obo/HP_0001250,Seizure +5.315969,NCBITaxon:33317,http://purl.obolibrary.org/obo/NCBITaxon_33317,Protostomia +5.316701,GO:0032994,http://purl.obolibrary.org/obo/GO_0032994,protein-lipid complex +5.3173542,PR:000001393,http://purl.obolibrary.org/obo/PR_000001393,interleukin-6 +5.3193338,PR:000029189,http://purl.obolibrary.org/obo/PR_000029189,AKT kinase +5.3216985,MONDO:0003240,http://purl.obolibrary.org/obo/MONDO_0003240,thyroid gland disease +5.3217783,MONDO:0005096,http://purl.obolibrary.org/obo/MONDO_0005096,squamous cell carcinoma +5.3221331,UBERON:0003937,http://purl.obolibrary.org/obo/UBERON_0003937,sex gland +5.3226833,UBERON:0001851,http://purl.obolibrary.org/obo/UBERON_0001851,cortex +5.3241133,MONDO:0005165,http://purl.obolibrary.org/obo/MONDO_0005165,benign neoplasm +5.3265518,NCBITaxon:11646,http://purl.obolibrary.org/obo/NCBITaxon_11646,Lentivirus +5.3282194,NCBITaxon:1206794,http://purl.obolibrary.org/obo/NCBITaxon_1206794,Ecdysozoa +5.328264,GO:0044723,http://purl.obolibrary.org/obo/GO_0044723,none +5.3309005,MONDO:0008170,http://purl.obolibrary.org/obo/MONDO_0008170,ovarian cancer +5.3353492,MONDO:0006025,http://purl.obolibrary.org/obo/MONDO_0006025,autosomal recessive disease +5.3372117,MONDO:0019042,http://purl.obolibrary.org/obo/MONDO_0019042,multiple congenital anomalies/dysmorphic syndrome +5.337572,UBERON:0019264,http://purl.obolibrary.org/obo/UBERON_0019264,gray matter of forebrain +5.3377252,GO:0007049,http://purl.obolibrary.org/obo/GO_0007049,cell cycle +5.3391498,MONDO:0024623,http://purl.obolibrary.org/obo/MONDO_0024623,otorhinolaryngologic disease +5.3410465,MONDO:0043005,http://purl.obolibrary.org/obo/MONDO_0043005,genetic multiple congenital anomalies/dysmorphic syndrome +5.3417519,UBERON:0000344,http://purl.obolibrary.org/obo/UBERON_0000344,mucosa +5.3420958,UBERON:0000490,http://purl.obolibrary.org/obo/UBERON_0000490,unilaminar epithelium +5.3441341,UBERON:0011300,http://purl.obolibrary.org/obo/UBERON_0011300,gray matter of telencephalon +5.344996,CHEBI:50114,http://purl.obolibrary.org/obo/CHEBI_50114,estrogen +5.3476497,DRUGBANK:DB14500,http://purl.obolibrary.org/obo/DRUGBANK_DB14500,none +5.3480593,NCBITaxon:11652,http://purl.obolibrary.org/obo/NCBITaxon_11652,Primate lentivirus group +5.3498818,GO:0016049,http://purl.obolibrary.org/obo/GO_0016049,cell growth +5.350776,MONDO:0007256,http://purl.obolibrary.org/obo/MONDO_0007256,hepatocellular carcinoma +5.3512052,GO:0007565,http://purl.obolibrary.org/obo/GO_0007565,female pregnancy +5.3512234,SO:0100021,http://purl.obolibrary.org/obo/SO_0100021,polypeptide_conserved_region +5.3524663,SO:0001067,http://purl.obolibrary.org/obo/SO_0001067,polypeptide_motif +5.3527864,SO:0100001,http://purl.obolibrary.org/obo/SO_0100001,biochemical_region_of_peptide +5.3540403,MONDO:0021945,http://purl.obolibrary.org/obo/MONDO_0021945,hearing disorder +5.3547366,MONDO:0001531,http://purl.obolibrary.org/obo/MONDO_0001531,blood coagulation disease +5.3560022,GO:0016462,http://purl.obolibrary.org/obo/GO_0016462,pyrophosphatase activity +5.3568652,UBERON:0001134,http://purl.obolibrary.org/obo/UBERON_0001134,skeletal muscle tissue +5.3569938,GO:0016817,http://purl.obolibrary.org/obo/GO_0016817,"hydrolase activity, acting on acid anhydrides" +5.3569938,GO:0016818,http://purl.obolibrary.org/obo/GO_0016818,"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides" +5.3598823,UBERON:0003104,http://purl.obolibrary.org/obo/UBERON_0003104,mesenchyme +5.3600113,GO:0009056,http://purl.obolibrary.org/obo/GO_0009056,catabolic process +5.360214,NCBITaxon:8782,http://purl.obolibrary.org/obo/NCBITaxon_8782,Aves +5.3602601,DRUGBANK:DB02527,http://purl.obolibrary.org/obo/DRUGBANK_DB02527,none +5.3615511,MONDO:0002427,http://purl.obolibrary.org/obo/MONDO_0002427,cerebellar disease +5.3633614,MONDO:0021063,http://purl.obolibrary.org/obo/MONDO_0021063,malignant colon neoplasm +5.3675394,MONDO:0006858,http://purl.obolibrary.org/obo/MONDO_0006858,mouth disease +5.3703468,MONDO:0020120,http://purl.obolibrary.org/obo/MONDO_0020120,skeletal muscle disease +5.3719586,NCBITaxon:11676,http://purl.obolibrary.org/obo/NCBITaxon_11676,Human immunodeficiency virus 1 +5.3732462,MONDO:0003778,http://purl.obolibrary.org/obo/MONDO_0003778,primary immunodeficiency disease +5.3733769,GO:0005829,http://purl.obolibrary.org/obo/GO_0005829,cytosol +5.3749749,CL:0000576,http://purl.obolibrary.org/obo/CL_0000576,monocyte +5.3769783,MONDO:0002532,http://purl.obolibrary.org/obo/MONDO_0002532,squamous cell neoplasm +5.3783287,MONDO:0005311,http://purl.obolibrary.org/obo/MONDO_0005311,atherosclerosis +5.3785164,DRUGBANK:DB00151,http://purl.obolibrary.org/obo/DRUGBANK_DB00151,none +5.380621,MONDO:0009453,http://purl.obolibrary.org/obo/MONDO_0009453,immune deficiency disease +5.3810443,PR:000000008,http://purl.obolibrary.org/obo/PR_000000008,TGF-beta-like cystine-knot cytokine +5.3815902,UBERON:0000478,http://purl.obolibrary.org/obo/UBERON_0000478,extraembryonic structure +5.3836447,GO:0019207,http://purl.obolibrary.org/obo/GO_0019207,kinase regulator activity +5.3840976,UBERON:0005399,http://purl.obolibrary.org/obo/UBERON_0005399,male reproductive gland +5.3845602,UBERON:0010147,http://purl.obolibrary.org/obo/UBERON_0010147,male accessory sex gland +5.3866018,UBERON:0003920,http://purl.obolibrary.org/obo/UBERON_0003920,venous blood vessel +5.3883254,GO:0017111,http://purl.obolibrary.org/obo/GO_0017111,nucleoside-triphosphatase activity +5.3897956,NCBITaxon:693660,http://purl.obolibrary.org/obo/NCBITaxon_693660,unclassified Primate lentivirus group +5.3904887,UBERON:0002367,http://purl.obolibrary.org/obo/UBERON_0002367,prostate gland +5.3904982,SO:0000370,http://purl.obolibrary.org/obo/SO_0000370,small_regulatory_ncRNA +5.3916197,MONDO:0002277,http://purl.obolibrary.org/obo/MONDO_0002277,arteriosclerosis disorder +5.3917719,NCBITaxon:1329799,http://purl.obolibrary.org/obo/NCBITaxon_1329799,Archelosauria +5.391905,NCBITaxon:8492,http://purl.obolibrary.org/obo/NCBITaxon_8492,Archosauria +5.392257,NCBITaxon:436486,http://purl.obolibrary.org/obo/NCBITaxon_436486,Dinosauria +5.392257,NCBITaxon:436489,http://purl.obolibrary.org/obo/NCBITaxon_436489,Saurischia +5.392257,NCBITaxon:436491,http://purl.obolibrary.org/obo/NCBITaxon_436491,Theropoda +5.3922761,NCBITaxon:436492,http://purl.obolibrary.org/obo/NCBITaxon_436492,Coelurosauria +5.3929805,MONDO:0006295,http://purl.obolibrary.org/obo/MONDO_0006295,malignant urinary system neoplasm +5.3930281,NCBITaxon:11709,http://purl.obolibrary.org/obo/NCBITaxon_11709,Human immunodeficiency virus 2 +5.3933233,NCBITaxon:12721,http://purl.obolibrary.org/obo/NCBITaxon_12721,Human immunodeficiency virus +5.3948772,MONDO:0005109,http://purl.obolibrary.org/obo/MONDO_0005109,HIV infectious disease +5.395383,MONDO:0005135,http://purl.obolibrary.org/obo/MONDO_0005135,parasitic infectious disease +5.4009538,UBERON:0007499,http://purl.obolibrary.org/obo/UBERON_0007499,epithelial sac +5.4015491,UBERON:0002405,http://purl.obolibrary.org/obo/UBERON_0002405,immune system +5.4022312,DRUGBANK:DB02891,http://purl.obolibrary.org/obo/DRUGBANK_DB02891,none +5.4046272,GO:0044711,http://purl.obolibrary.org/obo/GO_0044711,single-organism biosynthetic process +5.4084786,SO:0001146,http://purl.obolibrary.org/obo/SO_0001146,polypeptide_variation_site +5.409359,GO:0000785,http://purl.obolibrary.org/obo/GO_0000785,chromatin +5.4103468,DRUGBANK:DB11846,http://purl.obolibrary.org/obo/DRUGBANK_DB11846,none +5.4105116,CHEBI:22695,http://purl.obolibrary.org/obo/CHEBI_22695,base +5.41217,CL:0002077,http://purl.obolibrary.org/obo/CL_0002077,ecto-epithelial cell +5.4125196,MONDO:0021143,http://purl.obolibrary.org/obo/MONDO_0021143,melanocytic neoplasm +5.4126944,SO:0001867,http://purl.obolibrary.org/obo/SO_0001867,candidate_gene +5.4145316,DRUGBANK:DB00815,http://purl.obolibrary.org/obo/DRUGBANK_DB00815,none +5.4166647,UBERON:0003672,http://purl.obolibrary.org/obo/UBERON_0003672,dentition +5.4188219,MONDO:0005138,http://purl.obolibrary.org/obo/MONDO_0005138,lung carcinoma +5.4234055,GO:0050953,http://purl.obolibrary.org/obo/GO_0050953,sensory perception of light stimulus +5.4245252,MONDO:0004095,http://purl.obolibrary.org/obo/MONDO_0004095,B-cell neoplasm +5.4258627,GO:0007588,http://purl.obolibrary.org/obo/GO_0007588,excretion +5.4272117,UBERON:0036150,http://purl.obolibrary.org/obo/UBERON_0036150,skin appendage follicle +5.4281582,UBERON:0002073,http://purl.obolibrary.org/obo/UBERON_0002073,hair follicle +5.4291351,MONDO:0004580,http://purl.obolibrary.org/obo/MONDO_0004580,retinal degeneration +5.4294807,GO:0007601,http://purl.obolibrary.org/obo/GO_0007601,visual perception +5.4297178,SO:0000657,http://purl.obolibrary.org/obo/SO_0000657,repeat_region +5.4322301,GO:0048513,http://purl.obolibrary.org/obo/GO_0048513,animal organ development +5.434064,GO:0043412,http://purl.obolibrary.org/obo/GO_0043412,macromolecule modification +5.4355136,MOP:0000364,http://purl.obolibrary.org/obo/MOP_0000364,none +5.4372042,GO:0005216,http://purl.obolibrary.org/obo/GO_0005216,ion channel activity +5.4383992,UBERON:0001048,http://purl.obolibrary.org/obo/UBERON_0001048,primordium +5.4413132,UBERON:0001305,http://purl.obolibrary.org/obo/UBERON_0001305,ovarian follicle +5.4424031,GO:0022838,http://purl.obolibrary.org/obo/GO_0022838,none +5.4442257,MONDO:0000437,http://purl.obolibrary.org/obo/MONDO_0000437,cerebellar ataxia +5.4453087,GO:0042221,http://purl.obolibrary.org/obo/GO_0042221,response to chemical +5.4483838,DRUGBANK:DB15056,http://purl.obolibrary.org/obo/DRUGBANK_DB15056,none +5.4492095,UBERON:0003102,http://purl.obolibrary.org/obo/UBERON_0003102,surface structure +5.4503887,DRUGBANK:DB11842,http://purl.obolibrary.org/obo/DRUGBANK_DB11842,none +5.4513877,GO:0016192,http://purl.obolibrary.org/obo/GO_0016192,vesicle-mediated transport +5.4523977,GO:0030424,http://purl.obolibrary.org/obo/GO_0030424,axon +5.4530648,SO:0000252,http://purl.obolibrary.org/obo/SO_0000252,rRNA +5.4553122,MONDO:0005558,http://purl.obolibrary.org/obo/MONDO_0005558,ovarian disease +5.4563668,MONDO:0022034,http://purl.obolibrary.org/obo/MONDO_0022034,lentivirus infection +5.458825,MONDO:0021682,http://purl.obolibrary.org/obo/MONDO_0021682,viral sexually transmitted disease +5.4591506,MONDO:0100308,http://purl.obolibrary.org/obo/MONDO_0100308,atactic disorder +5.4633203,MONDO:0021353,http://purl.obolibrary.org/obo/MONDO_0021353,tumor of uterus +5.4633918,MONDO:0100070,http://purl.obolibrary.org/obo/MONDO_0100070,neuroendocrine disease +5.4660313,UBERON:0000170,http://purl.obolibrary.org/obo/UBERON_0000170,pair of lungs +5.4674049,MOP:0000410,http://purl.obolibrary.org/obo/MOP_0000410,none +5.4674254,MOP:0000369,http://purl.obolibrary.org/obo/MOP_0000369,none +5.4676819,CL:0000243,http://purl.obolibrary.org/obo/CL_0000243,glial cell (sensu Vertebrata) +5.4695512,PR:000037069,http://purl.obolibrary.org/obo/PR_000037069,glycoprotein +5.4695512,UBERON:0000444,http://purl.obolibrary.org/obo/UBERON_0000444,lymphoid follicle +5.469911,MONDO:0019724,http://purl.obolibrary.org/obo/MONDO_0019724,secondary glomerular disease +5.4701476,MONDO:0005047,http://purl.obolibrary.org/obo/MONDO_0005047,infertility disorder +5.4710017,MONDO:0001358,http://purl.obolibrary.org/obo/MONDO_0001358,bronchial disease +5.4712076,CHEBI:78295,http://purl.obolibrary.org/obo/CHEBI_78295,food component +5.4715887,UBERON:0012275,http://purl.obolibrary.org/obo/UBERON_0012275,meso-epithelium +5.4718875,GO:0019222,http://purl.obolibrary.org/obo/GO_0019222,regulation of metabolic process +5.4755522,NCBITaxon:7215,http://purl.obolibrary.org/obo/NCBITaxon_7215,"Drosophila " +5.4768251,CL:0002419,http://purl.obolibrary.org/obo/CL_0002419,mature T cell +5.4775087,UBERON:0005085,http://purl.obolibrary.org/obo/UBERON_0005085,ectodermal placode +5.4793342,UBERON:0005396,http://purl.obolibrary.org/obo/UBERON_0005396,carotid artery segment +5.4812461,MONDO:0019058,http://purl.obolibrary.org/obo/MONDO_0019058,neurometabolic disease +5.4840897,MONDO:0044347,http://purl.obolibrary.org/obo/MONDO_0044347,erythrocyte disease +5.4844965,CHEBI:33893,http://purl.obolibrary.org/obo/CHEBI_33893,reagent +5.48458,UBERON:0002217,http://purl.obolibrary.org/obo/UBERON_0002217,synovial joint +5.485008,UBERON:0003496,http://purl.obolibrary.org/obo/UBERON_0003496,head blood vessel +5.4858435,MONDO:0000426,http://purl.obolibrary.org/obo/MONDO_0000426,autosomal dominant disease +5.4872656,SO:0000147,http://purl.obolibrary.org/obo/SO_0000147,exon +5.4880717,DRUGBANK:DB00123,http://purl.obolibrary.org/obo/DRUGBANK_DB00123,none +5.4881031,MONDO:0002977,http://purl.obolibrary.org/obo/MONDO_0002977,autoimmune disease of the nervous system +5.4890775,UBERON:0002418,http://purl.obolibrary.org/obo/UBERON_0002418,cartilage tissue +5.4892138,MONDO:0003381,http://purl.obolibrary.org/obo/MONDO_0003381,pituitary gland disease +5.4903782,NCBITaxon:33554,http://purl.obolibrary.org/obo/NCBITaxon_33554,Carnivora +5.4918383,NCBITaxon:379584,http://purl.obolibrary.org/obo/NCBITaxon_379584,Caniformia +5.4920696,CL:0000117,http://purl.obolibrary.org/obo/CL_0000117,CNS neuron (sensu Vertebrata) +5.4923009,NCBITaxon:88770,http://purl.obolibrary.org/obo/NCBITaxon_88770,Panarthropoda +5.492322,NCBITaxon:6656,http://purl.obolibrary.org/obo/NCBITaxon_6656,Arthropoda +5.4939007,NCBITaxon:6960,http://purl.obolibrary.org/obo/NCBITaxon_6960,Hexapoda +5.4941009,NCBITaxon:197563,http://purl.obolibrary.org/obo/NCBITaxon_197563,Mandibulata +5.4941325,NCBITaxon:197562,http://purl.obolibrary.org/obo/NCBITaxon_197562,Pancrustacea +5.494143,UBERON:0010740,http://purl.obolibrary.org/obo/UBERON_0010740,bone of appendage girdle complex +5.4967172,UBERON:0006914,http://purl.obolibrary.org/obo/UBERON_0006914,squamous epithelium +5.4968228,UBERON:0002495,http://purl.obolibrary.org/obo/UBERON_0002495,long bone +5.4977952,CL:0000076,http://purl.obolibrary.org/obo/CL_0000076,squamous epithelial cell +5.5010787,UBERON:0011814,http://purl.obolibrary.org/obo/UBERON_0011814,non-neurogenic ectodermal placode +5.5017473,MONDO:0002715,http://purl.obolibrary.org/obo/MONDO_0002715,uterine cancer +5.5020022,MONDO:0044137,http://purl.obolibrary.org/obo/MONDO_0044137,vitreous body disorder +5.5031603,GO:0033036,http://purl.obolibrary.org/obo/GO_0033036,macromolecule localization +5.503809,UBERON:0005087,http://purl.obolibrary.org/obo/UBERON_0005087,tooth placode +5.5042879,UBERON:0008969,http://purl.obolibrary.org/obo/UBERON_0008969,dental follicle +5.5044582,MONDO:0005872,http://purl.obolibrary.org/obo/MONDO_0005872,nervous system cancer +5.5044901,CL:0000181,http://purl.obolibrary.org/obo/CL_0000181,none +5.5053102,MONDO:0020238,http://purl.obolibrary.org/obo/MONDO_0020238,inherited vitreous-retinal disease +5.5057578,UBERON:0005305,http://purl.obolibrary.org/obo/UBERON_0005305,thyroid follicle +5.5071338,MONDO:0004867,http://purl.obolibrary.org/obo/MONDO_0004867,upper respiratory tract disease +5.5077423,UBERON:0009842,http://purl.obolibrary.org/obo/UBERON_0009842,glandular acinus +5.507956,DRUGBANK:DB01593,http://purl.obolibrary.org/obo/DRUGBANK_DB01593,none +5.5084582,DRUGBANK:DB10710,http://purl.obolibrary.org/obo/DRUGBANK_DB10710,none +5.508843,UBERON:0011782,http://purl.obolibrary.org/obo/UBERON_0011782,feather follicle +5.5095811,GO:0008104,http://purl.obolibrary.org/obo/GO_0008104,protein localization +5.5099021,MONDO:0000314,http://purl.obolibrary.org/obo/MONDO_0000314,primary bacterial infectious disease +5.510234,MONDO:0001673,http://purl.obolibrary.org/obo/MONDO_0001673,diarrheal disease +5.510416,UBERON:0003905,http://purl.obolibrary.org/obo/UBERON_0003905,bursal follicle +5.511123,UBERON:0004179,http://purl.obolibrary.org/obo/UBERON_0004179,prostate glandular acinus +5.5145045,SO:0001148,http://purl.obolibrary.org/obo/SO_0001148,mutated_variant_site +5.5151498,SO:0001447,http://purl.obolibrary.org/obo/SO_0001447,cysteine +5.5159033,CL:0000412,http://purl.obolibrary.org/obo/CL_0000412,polyploid cell +5.5167651,GO:0007618,http://purl.obolibrary.org/obo/GO_0007618,mating +5.5184801,MONDO:0021042,http://purl.obolibrary.org/obo/MONDO_0021042,glioma +5.5203171,GO:0044702,http://purl.obolibrary.org/obo/GO_0044702,none +5.5208688,SO:0001451,http://purl.obolibrary.org/obo/SO_0001451,arginine +5.5216808,NCBITaxon:50557,http://purl.obolibrary.org/obo/NCBITaxon_50557,Insecta +5.5216808,NCBITaxon:7496,http://purl.obolibrary.org/obo/NCBITaxon_7496,Pterygota +5.5216808,NCBITaxon:85512,http://purl.obolibrary.org/obo/NCBITaxon_85512,Dicondylia +5.5223633,NCBITaxon:33340,http://purl.obolibrary.org/obo/NCBITaxon_33340,Neoptera +5.5232958,UBERON:0001638,http://purl.obolibrary.org/obo/UBERON_0001638,vein +5.5239903,CL:0001034,http://purl.obolibrary.org/obo/CL_0001034,cell in vitro +5.5261854,MONDO:0018230,http://purl.obolibrary.org/obo/MONDO_0018230,primary bone dysplasia +5.5261963,CL:0000417,http://purl.obolibrary.org/obo/CL_0000417,endopolyploid cell +5.5263269,CL:0000182,http://purl.obolibrary.org/obo/CL_0000182,hepatocyte +5.5270235,CL:0002031,http://purl.obolibrary.org/obo/CL_0002031,hematopoietic lineage restricted progenitor cell +5.5290944,DRUGBANK:DB14547,http://purl.obolibrary.org/obo/DRUGBANK_DB14547,none +5.5302298,NCBITaxon:33392,http://purl.obolibrary.org/obo/NCBITaxon_33392,Endopterygota +5.5303172,DRUGBANK:DB00145,http://purl.obolibrary.org/obo/DRUGBANK_DB00145,none +5.5351683,SO:0001444,http://purl.obolibrary.org/obo/SO_0001444,serine +5.5352891,CHEBI:37958,http://purl.obolibrary.org/obo/CHEBI_37958,dye +5.5370252,MONDO:0009831,http://purl.obolibrary.org/obo/MONDO_0009831,malignant pancreatic neoplasm +5.5372232,GO:0016798,http://purl.obolibrary.org/obo/GO_0016798,"hydrolase activity, acting on glycosyl bonds" +5.5373332,GO:0050817,http://purl.obolibrary.org/obo/GO_0050817,coagulation +5.5385551,HP:0011446,http://purl.obolibrary.org/obo/HP_0011446,Abnormality of higher mental function +5.5392382,GO:0010817,http://purl.obolibrary.org/obo/GO_0010817,regulation of hormone levels +5.5420749,DRUGBANK:DB09130,http://purl.obolibrary.org/obo/DRUGBANK_DB09130,none +5.5425392,PR:000044676,http://purl.obolibrary.org/obo/PR_000044676,channel protein +5.5443212,NCBITaxon:2732406,http://purl.obolibrary.org/obo/NCBITaxon_2732406,Kitrinoviricota +5.5452412,GO:0005057,http://purl.obolibrary.org/obo/GO_0005057,none +5.5454408,SO:0001628,http://purl.obolibrary.org/obo/SO_0001628,intergenic_variant +5.5455184,SO:0000441,http://purl.obolibrary.org/obo/SO_0000441,ss_oligo +5.5459067,NCBITaxon:7147,http://purl.obolibrary.org/obo/NCBITaxon_7147,Diptera +5.5462507,SO:0000112,http://purl.obolibrary.org/obo/SO_0000112,primer +5.5465394,UBERON:0002428,http://purl.obolibrary.org/obo/UBERON_0002428,limb bone +5.5479838,MONDO:0019118,http://purl.obolibrary.org/obo/MONDO_0019118,inherited retinal dystrophy +5.5490517,UBERON:0015061,http://purl.obolibrary.org/obo/UBERON_0015061,limb endochondral element +5.549408,UBERON:0004375,http://purl.obolibrary.org/obo/UBERON_0004375,bone of free limb or fin +5.5538159,PR:000029968,http://purl.obolibrary.org/obo/PR_000029968,somatotropin hormone family member +5.5541403,MONDO:0020022,http://purl.obolibrary.org/obo/MONDO_0020022,central nervous system malformation +5.5552821,UBERON:0000470,http://purl.obolibrary.org/obo/UBERON_0000470,none +5.5563579,GO:0044430,http://purl.obolibrary.org/obo/GO_0044430,none +5.5566158,MONDO:0000425,http://purl.obolibrary.org/obo/MONDO_0000425,X-linked disease +5.5571767,MONDO:0020606,http://purl.obolibrary.org/obo/MONDO_0020606,sex-linked disease +5.5626679,GO:0001653,http://purl.obolibrary.org/obo/GO_0001653,peptide receptor activity +5.5636839,GO:0008324,http://purl.obolibrary.org/obo/GO_0008324,cation transmembrane transporter activity +5.5637065,DRUGBANK:DB00149,http://purl.obolibrary.org/obo/DRUGBANK_DB00149,none +5.564068,GO:0022890,http://purl.obolibrary.org/obo/GO_0022890,inorganic cation transmembrane transporter activity +5.5680987,HP:0000478,http://purl.obolibrary.org/obo/HP_0000478,Abnormality of the eye +5.5705863,MONDO:0002428,http://purl.obolibrary.org/obo/MONDO_0002428,protozoa infectious disease +5.5708365,GO:0004707,http://purl.obolibrary.org/obo/GO_0004707,MAP kinase activity +5.5711096,CHEBI:33284,http://purl.obolibrary.org/obo/CHEBI_33284,nutrient +5.5736161,CHEBI:24471,http://purl.obolibrary.org/obo/CHEBI_24471,halogen molecular entity +5.5737758,MONDO:0001056,http://purl.obolibrary.org/obo/MONDO_0001056,gastric cancer +5.5743579,GO:0050954,http://purl.obolibrary.org/obo/GO_0050954,sensory perception of mechanical stimulus +5.5752716,UBERON:0007779,http://purl.obolibrary.org/obo/UBERON_0007779,transudate +5.5765636,MONDO:0020676,http://purl.obolibrary.org/obo/MONDO_0020676,disease of central nervous system or retinal vasculature +5.5772961,DRUGBANK:DB00368,http://purl.obolibrary.org/obo/DRUGBANK_DB00368,none +5.5793936,GO:0030054,http://purl.obolibrary.org/obo/GO_0030054,cell junction +5.5800937,GO:0004702,http://purl.obolibrary.org/obo/GO_0004702,none +5.581944,UBERON:0001982,http://purl.obolibrary.org/obo/UBERON_0001982,capillary +5.583717,SO:0000983,http://purl.obolibrary.org/obo/SO_0000983,strand_attribute +5.5849623,MONDO:0004949,http://purl.obolibrary.org/obo/MONDO_0004949,neoplasm of mature B-cells +5.5856779,GO:0007605,http://purl.obolibrary.org/obo/GO_0007605,sensory perception of sound +5.5862438,GO:0005773,http://purl.obolibrary.org/obo/GO_0005773,vacuole +5.5869372,GO:0045184,http://purl.obolibrary.org/obo/GO_0045184,establishment of protein localization +5.587527,GO:0006996,http://purl.obolibrary.org/obo/GO_0006996,organelle organization +5.5901214,CHEBI:33431,http://purl.obolibrary.org/obo/CHEBI_33431,elemental chlorine +5.5904346,CHEBI:23117,http://purl.obolibrary.org/obo/CHEBI_23117,chlorine molecular entity +5.5910497,GO:0023061,http://purl.obolibrary.org/obo/GO_0023061,signal release +5.5911193,PR:000000103,http://purl.obolibrary.org/obo/PR_000000103,mitogen-activated protein kinase 1 +5.5917812,UBERON:0003134,http://purl.obolibrary.org/obo/UBERON_0003134,female reproductive organ +5.5918277,UBERON:0004529,http://purl.obolibrary.org/obo/UBERON_0004529,anatomical projection +5.5942121,GO:0015031,http://purl.obolibrary.org/obo/GO_0015031,protein transport +5.5948644,UBERON:0000117,http://purl.obolibrary.org/obo/UBERON_0000117,respiratory tube +5.5951558,UBERON:0010523,http://purl.obolibrary.org/obo/UBERON_0010523,microcirculatory vessel +5.5957504,UBERON:0000992,http://purl.obolibrary.org/obo/UBERON_0000992,female gonad +5.596077,MONDO:0015939,http://purl.obolibrary.org/obo/MONDO_0015939,systemic autoimmune disease +5.5964504,CHEBI:33434,http://purl.obolibrary.org/obo/CHEBI_33434,elemental halogen +5.5969407,CL:0000499,http://purl.obolibrary.org/obo/CL_0000499,stromal cell +5.5993725,CL:0000048,http://purl.obolibrary.org/obo/CL_0000048,multi fate stem cell +5.59963,GO:0098657,http://purl.obolibrary.org/obo/GO_0098657,import into cell +5.6017397,UBERON:0004151,http://purl.obolibrary.org/obo/UBERON_0004151,cardiac chamber +5.6024909,GO:0003707,http://purl.obolibrary.org/obo/GO_0003707,steroid hormone receptor activity +5.6047714,GO:0004553,http://purl.obolibrary.org/obo/GO_0004553,"hydrolase activity, hydrolyzing O-glycosyl compounds" +5.6063614,MONDO:0018874,http://purl.obolibrary.org/obo/MONDO_0018874,acute myeloid leukemia +5.6065854,GO:0098796,http://purl.obolibrary.org/obo/GO_0098796,membrane protein complex +5.6069392,GO:0030849,http://purl.obolibrary.org/obo/GO_0030849,autosome +5.6083555,SO:0001435,http://purl.obolibrary.org/obo/SO_0001435,alanine +5.6085445,CHEBI:60911,http://purl.obolibrary.org/obo/CHEBI_60911,racemate +5.6098566,CHEBI:64909,http://purl.obolibrary.org/obo/CHEBI_64909,poison +5.6112889,CHEBI:27026,http://purl.obolibrary.org/obo/CHEBI_27026,toxin +5.6123199,MONDO:0044969,http://purl.obolibrary.org/obo/MONDO_0044969,disease of membrane bound organelle +5.6127706,SO:0000814,http://purl.obolibrary.org/obo/SO_0000814,rescue +5.6150985,NCBITaxon:7203,http://purl.obolibrary.org/obo/NCBITaxon_7203,Brachycera +5.6152888,NCBITaxon:43733,http://purl.obolibrary.org/obo/NCBITaxon_43733,Muscomorpha +5.6153483,NCBITaxon:480118,http://purl.obolibrary.org/obo/NCBITaxon_480118,Eremoneura +5.6153839,NCBITaxon:480117,http://purl.obolibrary.org/obo/NCBITaxon_480117,Cyclorrhapha +5.6155267,NCBITaxon:43738,http://purl.obolibrary.org/obo/NCBITaxon_43738,Schizophora +5.6171339,PR:000003035,http://purl.obolibrary.org/obo/PR_000003035,cellular tumor antigen p53 +5.6178968,UBERON:0001091,http://purl.obolibrary.org/obo/UBERON_0001091,calcareous tooth +5.6202725,MONDO:0004975,http://purl.obolibrary.org/obo/MONDO_0004975,Alzheimer disease +5.6211214,MONDO:0004972,http://purl.obolibrary.org/obo/MONDO_0004972,adenoma +5.6230493,MONDO:0015368,http://purl.obolibrary.org/obo/MONDO_0015368,neuro-ophthalmological disease +5.623313,NCBITaxon:43741,http://purl.obolibrary.org/obo/NCBITaxon_43741,Acalyptratae +5.6249088,MONDO:0004643,http://purl.obolibrary.org/obo/MONDO_0004643,myeloid leukemia +5.6250169,CHEBI:33582,http://purl.obolibrary.org/obo/CHEBI_33582,carbon group molecular entity +5.6253291,MONDO:0000653,http://purl.obolibrary.org/obo/MONDO_0000653,integumentary system cancer +5.6254012,CHEBI:50860,http://purl.obolibrary.org/obo/CHEBI_50860,organic molecular entity +5.6264109,MONDO:0005574,http://purl.obolibrary.org/obo/MONDO_0005574,tauopathy +5.6265071,MONDO:0005053,http://purl.obolibrary.org/obo/MONDO_0005053,ischemic disease +5.6281201,NCBITaxon:7214,http://purl.obolibrary.org/obo/NCBITaxon_7214,Drosophilidae +5.6282526,NCBITaxon:43746,http://purl.obolibrary.org/obo/NCBITaxon_43746,Ephydroidea +5.628349,NCBITaxon:43845,http://purl.obolibrary.org/obo/NCBITaxon_43845,Drosophilinae +5.628361,NCBITaxon:46877,http://purl.obolibrary.org/obo/NCBITaxon_46877,Drosophilini +5.6285538,NCBITaxon:186285,http://purl.obolibrary.org/obo/NCBITaxon_186285,none +5.6285538,NCBITaxon:46879,http://purl.obolibrary.org/obo/NCBITaxon_46879,none +5.629024,MONDO:0021085,http://purl.obolibrary.org/obo/MONDO_0021085,gastric neoplasm +5.6291084,GO:0004518,http://purl.obolibrary.org/obo/GO_0004518,nuclease activity +5.6317769,NCBITaxon:2,http://purl.obolibrary.org/obo/NCBITaxon_2,Bacteria +5.6346343,MONDO:0004979,http://purl.obolibrary.org/obo/MONDO_0004979,asthma +5.6359326,PR:000001812,http://purl.obolibrary.org/obo/PR_000001812,EGF receptor type tyrosine-protein kinase +5.6363819,UBERON:0001264,http://purl.obolibrary.org/obo/UBERON_0001264,pancreas +5.6376338,GO:0001775,http://purl.obolibrary.org/obo/GO_0001775,cell activation +5.6389847,GO:0048870,http://purl.obolibrary.org/obo/GO_0048870,cell motility +5.639996,UBERON:0010742,http://purl.obolibrary.org/obo/UBERON_0010742,bone of pelvic complex +5.6417774,PR:000003847,http://purl.obolibrary.org/obo/PR_000003847,angiotensinogen +5.6420339,MONDO:0005155,http://purl.obolibrary.org/obo/MONDO_0005155,cirrhosis of liver +5.6427915,MONDO:0004989,http://purl.obolibrary.org/obo/MONDO_0004989,breast carcinoma +5.6448228,PR:000049983,http://purl.obolibrary.org/obo/PR_000049983,ion channel protein +5.6448963,GO:0060255,http://purl.obolibrary.org/obo/GO_0060255,regulation of macromolecule metabolic process +5.6448963,UBERON:0007844,http://purl.obolibrary.org/obo/UBERON_0007844,cartilage element +5.6450066,GO:1990904,http://purl.obolibrary.org/obo/GO_1990904,ribonucleoprotein complex +5.6459014,NCBITaxon:2731341,http://purl.obolibrary.org/obo/NCBITaxon_2731341,Duplodnaviria +5.6459014,NCBITaxon:2731360,http://purl.obolibrary.org/obo/NCBITaxon_2731360,Heunggongvirae +5.6469565,NCBITaxon:548681,http://purl.obolibrary.org/obo/NCBITaxon_548681,Herpesvirales +5.6471407,NCBITaxon:2731361,http://purl.obolibrary.org/obo/NCBITaxon_2731361,Peploviricota +5.6471407,NCBITaxon:2731363,http://purl.obolibrary.org/obo/NCBITaxon_2731363,Herviviricetes +5.6478531,NCBITaxon:10292,http://purl.obolibrary.org/obo/NCBITaxon_10292,Herpesviridae +5.6490948,GO:0140375,http://purl.obolibrary.org/obo/GO_0140375,immune receptor activity +5.6494885,MONDO:0007263,http://purl.obolibrary.org/obo/MONDO_0007263,cardiac rhythm disease +5.6516939,MONDO:0021068,http://purl.obolibrary.org/obo/MONDO_0021068,ovarian neoplasm +5.6530762,UBERON:0000974,http://purl.obolibrary.org/obo/UBERON_0000974,neck +5.6561316,GO:0008528,http://purl.obolibrary.org/obo/GO_0008528,G protein-coupled peptide receptor activity +5.6578551,HP:0000969,http://purl.obolibrary.org/obo/HP_0000969,Edema +5.6611617,PR:Q42578,http://purl.obolibrary.org/obo/PR_Q42578,none +5.6619215,PR:000000046,http://purl.obolibrary.org/obo/PR_000000046,TGF-beta +5.6642419,MONDO:0018234,http://purl.obolibrary.org/obo/MONDO_0018234,dysostosis +5.6643793,MONDO:0019054,http://purl.obolibrary.org/obo/MONDO_0019054,congenital limb malformation +5.6649666,MONDO:0005136,http://purl.obolibrary.org/obo/MONDO_0005136,malaria +5.666042,GO:0051716,http://purl.obolibrary.org/obo/GO_0051716,cellular response to stimulus +5.6666804,CL:0000775,http://purl.obolibrary.org/obo/CL_0000775,neutrophil +5.6697525,MONDO:0017341,http://purl.obolibrary.org/obo/MONDO_0017341,virus associated tumor +5.6700037,CHEBI:22563,http://purl.obolibrary.org/obo/CHEBI_22563,anion +5.6701922,CHEBI:53000,http://purl.obolibrary.org/obo/CHEBI_53000,epitope +5.6701922,SO:0001018,http://purl.obolibrary.org/obo/SO_0001018,epitope +5.6714494,GO:0034358,http://purl.obolibrary.org/obo/GO_0034358,plasma lipoprotein particle +5.6724689,PR:000041244,http://purl.obolibrary.org/obo/PR_000041244,none +5.6732626,MONDO:0018454,http://purl.obolibrary.org/obo/MONDO_0018454,dysostosis of genetic origin +5.6759885,UBERON:0000160,http://purl.obolibrary.org/obo/UBERON_0000160,intestine +5.6765953,HP:0011032,http://purl.obolibrary.org/obo/HP_0011032,Abnormality of fluid regulation +5.6766711,MONDO:0100309,http://purl.obolibrary.org/obo/MONDO_0100309,hereditary ataxia +5.6784685,UBERON:0034713,http://purl.obolibrary.org/obo/UBERON_0034713,cranial neuron projection bundle +5.6797996,MONDO:0002531,http://purl.obolibrary.org/obo/MONDO_0002531,skin neoplasm +5.6803833,GO:0030529,http://purl.obolibrary.org/obo/GO_0030529,none +5.6816534,GO:0006091,http://purl.obolibrary.org/obo/GO_0006091,generation of precursor metabolites and energy +5.6830142,MONDO:0005344,http://purl.obolibrary.org/obo/MONDO_0005344,hepatitis B virus infection +5.68402,UBERON:0000060,http://purl.obolibrary.org/obo/UBERON_0000060,anatomical wall +5.6868266,MOP:0000029,http://purl.obolibrary.org/obo/MOP_0000029,none +5.6905382,UBERON:0003606,http://purl.obolibrary.org/obo/UBERON_0003606,limb long bone +5.6912822,MONDO:0100310,http://purl.obolibrary.org/obo/MONDO_0100310,hereditary cerebellar ataxia +5.6917828,MONDO:0002269,http://purl.obolibrary.org/obo/MONDO_0002269,gastroenteritis +5.6925405,DRUGBANK:DB00396,http://purl.obolibrary.org/obo/DRUGBANK_DB00396,none +5.6931317,MONDO:0015144,http://purl.obolibrary.org/obo/MONDO_0015144,brain inflammatory disease +5.6948816,DRUGBANK:DB03128,http://purl.obolibrary.org/obo/DRUGBANK_DB03128,none +5.6954871,MONDO:0024239,http://purl.obolibrary.org/obo/MONDO_0024239,congenital anomaly of cardiovascular system +5.6969314,GO:0009914,http://purl.obolibrary.org/obo/GO_0009914,hormone transport +5.69905,UBERON:0003464,http://purl.obolibrary.org/obo/UBERON_0003464,hindlimb bone +5.6994769,UBERON:0003913,http://purl.obolibrary.org/obo/UBERON_0003913,tooth-like structure +5.7000981,UBERON:0015022,http://purl.obolibrary.org/obo/UBERON_0015022,hindlimb endochondral element +5.702418,GO:0006811,http://purl.obolibrary.org/obo/GO_0006811,ion transport +5.7026776,UBERON:0002108,http://purl.obolibrary.org/obo/UBERON_0002108,small intestine +5.703067,MONDO:0015925,http://purl.obolibrary.org/obo/MONDO_0015925,interstitial lung disease +5.7052247,GO:0046879,http://purl.obolibrary.org/obo/GO_0046879,hormone secretion +5.7071393,SO:0001443,http://purl.obolibrary.org/obo/SO_0001443,glycine +5.7075305,GO:0033554,http://purl.obolibrary.org/obo/GO_0033554,cellular response to stress +5.7075566,DRUGBANK:DB15006,http://purl.obolibrary.org/obo/DRUGBANK_DB15006,none +5.7088748,CL:0002032,http://purl.obolibrary.org/obo/CL_0002032,hematopoietic oligopotent progenitor cell +5.7090707,CL:0000015,http://purl.obolibrary.org/obo/CL_0000015,male germ cell +5.7115425,CHEBI:24834,http://purl.obolibrary.org/obo/CHEBI_24834,inorganic anion +5.712132,GO:0009306,http://purl.obolibrary.org/obo/GO_0009306,protein secretion +5.7121582,UBERON:0000487,http://purl.obolibrary.org/obo/UBERON_0000487,simple squamous epithelium +5.712866,SO:0000835,http://purl.obolibrary.org/obo/SO_0000835,primary_transcript_region +5.7154918,CHEBI:79389,http://purl.obolibrary.org/obo/CHEBI_79389,monovalent inorganic anion +5.7160573,CHEBI:16042,http://purl.obolibrary.org/obo/CHEBI_16042,halide anion +5.71686,CHEBI:36830,http://purl.obolibrary.org/obo/CHEBI_36830,monoanion +5.716939,MONDO:0005043,http://purl.obolibrary.org/obo/MONDO_0005043,hyperplasia +5.7169916,CHEBI:23905,http://purl.obolibrary.org/obo/CHEBI_23905,monoatomic anion +5.7169916,CHEBI:33429,http://purl.obolibrary.org/obo/CHEBI_33429,monoatomic monoanion +5.7176897,PR:000001004,http://purl.obolibrary.org/obo/PR_000001004,CD4 molecule +5.7190477,UBERON:0001986,http://purl.obolibrary.org/obo/UBERON_0001986,endothelium +5.7199716,CL:0000838,http://purl.obolibrary.org/obo/CL_0000838,lymphoid lineage restricted progenitor cell +5.7212137,MONDO:0000569,http://purl.obolibrary.org/obo/MONDO_0000569,autoimmune disease of endocrine system +5.7214517,UBERON:0000058,http://purl.obolibrary.org/obo/UBERON_0000058,duct +5.7214914,GO:0030425,http://purl.obolibrary.org/obo/GO_0030425,dendrite +5.7215708,GO:0010033,http://purl.obolibrary.org/obo/GO_0010033,response to organic substance +5.723252,MONDO:0005086,http://purl.obolibrary.org/obo/MONDO_0005086,renal cell carcinoma +5.7254006,CHEBI:60746,http://purl.obolibrary.org/obo/CHEBI_60746,acrylic polymer +5.7255732,CHEBI:17996,http://purl.obolibrary.org/obo/CHEBI_17996,chloride +5.7255732,CHEBI:33432,http://purl.obolibrary.org/obo/CHEBI_33432,monoatomic chlorine +5.7255732,CHEBI:33433,http://purl.obolibrary.org/obo/CHEBI_33433,monoatomic halogen +5.7274075,CL:0000837,http://purl.obolibrary.org/obo/CL_0000837,hematopoietic multipotent progenitor cell +5.7288454,UBERON:0000158,http://purl.obolibrary.org/obo/UBERON_0000158,membranous layer +5.7317808,DRUGBANK:DB03904,http://purl.obolibrary.org/obo/DRUGBANK_DB03904,none +5.7319545,GO:0022402,http://purl.obolibrary.org/obo/GO_0022402,cell cycle process +5.7321416,UBERON:0003661,http://purl.obolibrary.org/obo/UBERON_0003661,limb muscle +5.7335729,CHEBI:46787,http://purl.obolibrary.org/obo/CHEBI_46787,solvent +5.7342559,GO:0048646,http://purl.obolibrary.org/obo/GO_0048646,anatomical structure formation involved in morphogenesis +5.734564,GO:0016887,http://purl.obolibrary.org/obo/GO_0016887,ATP hydrolysis activity +5.7347516,GO:0009605,http://purl.obolibrary.org/obo/GO_0009605,response to external stimulus +5.7347784,GO:0044459,http://purl.obolibrary.org/obo/GO_0044459,plasma membrane part +5.7350599,CL:0000051,http://purl.obolibrary.org/obo/CL_0000051,common lymphoid progenitor +5.735194,CL:0000936,http://purl.obolibrary.org/obo/CL_0000936,early lymphoid progenitor +5.7361867,MONDO:0021163,http://purl.obolibrary.org/obo/MONDO_0021163,kidney neoplasm +5.7390226,MONDO:0019303,http://purl.obolibrary.org/obo/MONDO_0019303,premature aging syndrome +5.7394534,MONDO:0005401,http://purl.obolibrary.org/obo/MONDO_0005401,colonic neoplasm +5.7395207,CL:0001035,http://purl.obolibrary.org/obo/CL_0001035,bone cell +5.7409222,MONDO:0005453,http://purl.obolibrary.org/obo/MONDO_0005453,congenital heart disease +5.741138,MONDO:0024643,http://purl.obolibrary.org/obo/MONDO_0024643,myocardial disorder +5.7412189,GO:0005840,http://purl.obolibrary.org/obo/GO_0005840,ribosome +5.745003,MONDO:0044980,http://purl.obolibrary.org/obo/MONDO_0044980,disease of signal transduction +5.7469818,CHEBI:33285,http://purl.obolibrary.org/obo/CHEBI_33285,heteroorganic entity +5.7484618,DRUGBANK:DB00624,http://purl.obolibrary.org/obo/DRUGBANK_DB00624,none +5.7486112,CHEBI:60258,http://purl.obolibrary.org/obo/CHEBI_60258,EC 3.4.* (hydrolases acting on peptide bond) inhibitor +5.7496309,MONDO:0037940,http://purl.obolibrary.org/obo/MONDO_0037940,inherited auditory system disease +5.7531603,DRUGBANK:DB01109,http://purl.obolibrary.org/obo/DRUGBANK_DB01109,none +5.754171,UBERON:0000957,http://purl.obolibrary.org/obo/UBERON_0000957,lamina +5.7553743,GO:0006897,http://purl.obolibrary.org/obo/GO_0006897,endocytosis +5.7558122,MONDO:0021211,http://purl.obolibrary.org/obo/MONDO_0021211,brain neoplasm +5.7575246,CL:0000075,http://purl.obolibrary.org/obo/CL_0000075,columnar/cuboidal epithelial cell +5.7589652,GO:0055114,http://purl.obolibrary.org/obo/GO_0055114,none +5.7608619,CL:0000413,http://purl.obolibrary.org/obo/CL_0000413,haploid cell +5.7630929,MONDO:0003664,http://purl.obolibrary.org/obo/MONDO_0003664,hemolytic anemia +5.7631756,MONDO:0002038,http://purl.obolibrary.org/obo/MONDO_0002038,head and neck carcinoma +5.7650112,DRUGBANK:DB00160,http://purl.obolibrary.org/obo/DRUGBANK_DB00160,none +5.766947,GO:0016477,http://purl.obolibrary.org/obo/GO_0016477,cell migration +5.7670439,PR:000029063,http://purl.obolibrary.org/obo/PR_000029063,none +5.7709272,UBERON:0011779,http://purl.obolibrary.org/obo/UBERON_0011779,nerve of head region +5.7715249,DRUGBANK:DB14546,http://purl.obolibrary.org/obo/DRUGBANK_DB14546,none +5.7730277,UBERON:0002012,http://purl.obolibrary.org/obo/UBERON_0002012,pulmonary artery +5.7734594,MONDO:0021040,http://purl.obolibrary.org/obo/MONDO_0021040,pancreatic neoplasm +5.7738775,GO:0010468,http://purl.obolibrary.org/obo/GO_0010468,regulation of gene expression +5.7769762,UBERON:0005388,http://purl.obolibrary.org/obo/UBERON_0005388,photoreceptor array +5.777158,UBERON:0000966,http://purl.obolibrary.org/obo/UBERON_0000966,retina +5.7783192,DRUGBANK:DB00945,http://purl.obolibrary.org/obo/DRUGBANK_DB00945,none +5.7810387,MONDO:0100284,http://purl.obolibrary.org/obo/MONDO_0100284,X-linked intellectual disability +5.7812774,MONDO:0020119,http://purl.obolibrary.org/obo/MONDO_0020119,X-linked syndromic intellectual disability +5.7814178,MONDO:0004139,http://purl.obolibrary.org/obo/MONDO_0004139,normocytic anemia +5.7816285,GO:0042592,http://purl.obolibrary.org/obo/GO_0042592,homeostatic process +5.7820499,UBERON:0005389,http://purl.obolibrary.org/obo/UBERON_0005389,transparent eye structure +5.7820921,UBERON:0000207,http://purl.obolibrary.org/obo/UBERON_0000207,compound eye corneal lens +5.7820921,UBERON:0000965,http://purl.obolibrary.org/obo/UBERON_0000965,lens of camera-type eye +5.7825699,MONDO:0037821,http://purl.obolibrary.org/obo/MONDO_0037821,porphyrin metabolism disease +5.7827246,PR:000005826,http://purl.obolibrary.org/obo/PR_000005826,"oxygen-dependent coproporphyrinogen-III oxidase, mitochondrial" +5.7845683,DRUGBANK:DB00741,http://purl.obolibrary.org/obo/DRUGBANK_DB00741,none +5.7853574,CL:0000300,http://purl.obolibrary.org/obo/CL_0000300,gamete +5.78674,UBERON:0005401,http://purl.obolibrary.org/obo/UBERON_0005401,cerebral hemisphere gray matter +5.7870365,NCBITaxon:11050,http://purl.obolibrary.org/obo/NCBITaxon_11050,Flaviviridae +5.7876721,DRUGBANK:DB00150,http://purl.obolibrary.org/obo/DRUGBANK_DB00150,none +5.7879972,NCBITaxon:2732462,http://purl.obolibrary.org/obo/NCBITaxon_2732462,Flasuviricetes +5.7879972,NCBITaxon:2732545,http://purl.obolibrary.org/obo/NCBITaxon_2732545,Amarillovirales +5.7880961,GO:0031974,http://purl.obolibrary.org/obo/GO_0031974,membrane-enclosed lumen +5.7885062,DRUGBANK:DB00783,http://purl.obolibrary.org/obo/DRUGBANK_DB00783,none +5.7929283,MONDO:0002367,http://purl.obolibrary.org/obo/MONDO_0002367,kidney cancer +5.7935251,SO:0000705,http://purl.obolibrary.org/obo/SO_0000705,tandem_repeat +5.794919,DRUGBANK:DB00640,http://purl.obolibrary.org/obo/DRUGBANK_DB00640,none +5.7956879,UBERON:0005913,http://purl.obolibrary.org/obo/UBERON_0005913,zone of bone organ +5.7964716,MONDO:0015514,http://purl.obolibrary.org/obo/MONDO_0015514,genetic endocrine growth disease +5.798498,MONDO:0019589,http://purl.obolibrary.org/obo/MONDO_0019589,syndromic genetic deafness +5.7993983,SO:0001631,http://purl.obolibrary.org/obo/SO_0001631,upstream_gene_variant +5.7994269,SO:0001635,http://purl.obolibrary.org/obo/SO_0001635,5KB_upstream_variant +5.8000705,MONDO:0005233,http://purl.obolibrary.org/obo/MONDO_0005233,non-small cell lung carcinoma +5.8017744,GO:0007606,http://purl.obolibrary.org/obo/GO_0007606,sensory perception of chemical stimulus +5.8018747,DRUGBANK:DB00156,http://purl.obolibrary.org/obo/DRUGBANK_DB00156,none +5.8022475,UBERON:0010039,http://purl.obolibrary.org/obo/UBERON_0010039,food storage organ +5.8022761,UBERON:0000945,http://purl.obolibrary.org/obo/UBERON_0000945,stomach +5.8031799,UBERON:0002185,http://purl.obolibrary.org/obo/UBERON_0002185,bronchus +5.8036536,UBERON:0003608,http://purl.obolibrary.org/obo/UBERON_0003608,hindlimb long bone +5.8041706,MONDO:0005786,http://purl.obolibrary.org/obo/MONDO_0005786,Hepadnaviridae infectious disease +5.8046591,MONDO:0019737,http://purl.obolibrary.org/obo/MONDO_0019737,thrombotic microangiopathy +5.8068606,CHEBI:36357,http://purl.obolibrary.org/obo/CHEBI_36357,polyatomic entity +5.8071199,MONDO:0001187,http://purl.obolibrary.org/obo/MONDO_0001187,urinary bladder cancer +5.8071775,SO:0001655,http://purl.obolibrary.org/obo/SO_0001655,nucleotide_binding_site +5.8072928,SO:0001791,http://purl.obolibrary.org/obo/SO_0001791,exon_variant +5.8080568,GO:0098609,http://purl.obolibrary.org/obo/GO_0098609,cell-cell adhesion +5.8102079,GO:0006508,http://purl.obolibrary.org/obo/GO_0006508,proteolysis +5.8104392,CL:0000192,http://purl.obolibrary.org/obo/CL_0000192,smooth muscle cell +5.8113793,MONDO:0005564,http://purl.obolibrary.org/obo/MONDO_0005564,embryonal neoplasm +5.8113793,SO:0001968,http://purl.obolibrary.org/obo/SO_0001968,coding_transcript_variant +5.8121609,MONDO:0037939,http://purl.obolibrary.org/obo/MONDO_0037939,porphyria +5.8126679,HP:0033127,http://purl.obolibrary.org/obo/HP_0033127,Abnormality of the musculoskeletal system +5.8129142,MONDO:0002545,http://purl.obolibrary.org/obo/MONDO_0002545,spinal cord disease +5.8167474,MONDO:0020121,http://purl.obolibrary.org/obo/MONDO_0020121,muscular dystrophy +5.8173149,CL:0000864,http://purl.obolibrary.org/obo/CL_0000864,tissue-resident macrophage +5.8199383,MONDO:0002520,http://purl.obolibrary.org/obo/MONDO_0002520,hepatic porphyria +5.8214426,GO:0009653,http://purl.obolibrary.org/obo/GO_0009653,anatomical structure morphogenesis +5.8232566,MONDO:0002616,http://purl.obolibrary.org/obo/MONDO_0002616,mesenchymal cell neoplasm +5.8236374,MONDO:0015945,http://purl.obolibrary.org/obo/MONDO_0015945,polymalformative genetic syndrome with increased risk of developing cancer +5.8263803,MONDO:0006999,http://purl.obolibrary.org/obo/MONDO_0006999,tooth disease +5.8266448,GO:0052689,http://purl.obolibrary.org/obo/GO_0052689,carboxylic ester hydrolase activity +5.8286007,CHEBI:52290,http://purl.obolibrary.org/obo/CHEBI_52290,mitogen +5.8289099,CL:0000021,http://purl.obolibrary.org/obo/CL_0000021,female germ cell +5.8298233,GO:0003964,http://purl.obolibrary.org/obo/GO_0003964,RNA-directed DNA polymerase activity +5.8306047,GO:0006974,http://purl.obolibrary.org/obo/GO_0006974,cellular response to DNA damage stimulus +5.830767,MONDO:0020127,http://purl.obolibrary.org/obo/MONDO_0020127,genetic peripheral neuropathy +5.832598,MONDO:0005372,http://purl.obolibrary.org/obo/MONDO_0005372,male infertility +5.8327754,CL:0000451,http://purl.obolibrary.org/obo/CL_0000451,dendritic cell +5.8337219,UBERON:0009569,http://purl.obolibrary.org/obo/UBERON_0009569,subdivision of trunk +5.8345805,GO:0004896,http://purl.obolibrary.org/obo/GO_0004896,cytokine receptor activity +5.8354546,MONDO:0006026,http://purl.obolibrary.org/obo/MONDO_0006026,urinary bladder disease +5.8368043,MONDO:0005495,http://purl.obolibrary.org/obo/MONDO_0005495,adrenal gland disease +5.8370567,UBERON:0007914,http://purl.obolibrary.org/obo/UBERON_0007914,bone of craniocervical region +5.8374873,MONDO:0002974,http://purl.obolibrary.org/obo/MONDO_0002974,cervical cancer +5.8394944,MONDO:0003660,http://purl.obolibrary.org/obo/MONDO_0003660,adult lymphoma +5.8408495,CL:0000019,http://purl.obolibrary.org/obo/CL_0000019,sperm +5.8409539,MONDO:0044986,http://purl.obolibrary.org/obo/MONDO_0044986,lymphoid system disease +5.8416397,PR:000025796,http://purl.obolibrary.org/obo/PR_000025796,integrin alpha +5.8422812,SO:0000646,http://purl.obolibrary.org/obo/SO_0000646,siRNA +5.8424006,CL:0000408,http://purl.obolibrary.org/obo/CL_0000408,male gamete +5.8431471,SO:0001429,http://purl.obolibrary.org/obo/SO_0001429,DNA_binding_site +5.8434758,PR:000017284,http://purl.obolibrary.org/obo/PR_000017284,vascular endothelial growth factor A +5.8441932,CL:0000911,http://purl.obolibrary.org/obo/CL_0000911,effector T cell +5.8442231,UBERON:0004709,http://purl.obolibrary.org/obo/UBERON_0004709,pelvic appendage +5.8443128,UBERON:0002103,http://purl.obolibrary.org/obo/UBERON_0002103,hindlimb +5.8443428,NCBITaxon:1224,http://purl.obolibrary.org/obo/NCBITaxon_1224,Proteobacteria +5.8457944,DRUGBANK:DB15230,http://purl.obolibrary.org/obo/DRUGBANK_DB15230,none +5.8470532,DRUGBANK:DB10519,http://purl.obolibrary.org/obo/DRUGBANK_DB10519,none +5.8476381,MONDO:0700007,http://purl.obolibrary.org/obo/MONDO_0700007,idiopathic disease +5.8478632,DRUGBANK:DB14865,http://purl.obolibrary.org/obo/DRUGBANK_DB14865,none +5.8482385,MONDO:0003659,http://purl.obolibrary.org/obo/MONDO_0003659,pediatric lymphoma +5.8485838,GO:0006082,http://purl.obolibrary.org/obo/GO_0006082,organic acid metabolic process +5.8494552,UBERON:0018260,http://purl.obolibrary.org/obo/UBERON_0018260,layer of muscle tissue +5.8502221,DRUGBANK:DB00120,http://purl.obolibrary.org/obo/DRUGBANK_DB00120,none +5.8505531,NCBITaxon:8825,http://purl.obolibrary.org/obo/NCBITaxon_8825,Neognathae +5.8519686,CL:0000055,http://purl.obolibrary.org/obo/CL_0000055,non-terminally differentiated cell +5.8532955,GO:0036211,http://purl.obolibrary.org/obo/GO_0036211,protein modification process +5.854156,MONDO:0100137,http://purl.obolibrary.org/obo/MONDO_0100137,telomere syndrome +5.8559698,CL:0000023,http://purl.obolibrary.org/obo/CL_0000023,oocyte +5.856772,SO:0000240,http://purl.obolibrary.org/obo/SO_0000240,chromosome_variation +5.8568174,PR:000029033,http://purl.obolibrary.org/obo/PR_000029033,none +5.8575142,GO:0043436,http://purl.obolibrary.org/obo/GO_0043436,oxoacid metabolic process +5.8577415,MONDO:0005041,http://purl.obolibrary.org/obo/MONDO_0005041,glaucoma +5.8583328,UBERON:0001359,http://purl.obolibrary.org/obo/UBERON_0001359,cerebrospinal fluid +5.8585451,NCBITaxon:1549675,http://purl.obolibrary.org/obo/NCBITaxon_1549675,Galloanserae +5.858621,NCBITaxon:8976,http://purl.obolibrary.org/obo/NCBITaxon_8976,Galliformes +5.8588941,NCBITaxon:9005,http://purl.obolibrary.org/obo/NCBITaxon_9005,Phasianidae +5.8592127,GO:0005783,http://purl.obolibrary.org/obo/GO_0005783,endoplasmic reticulum +5.8594708,MOP:0000162,http://purl.obolibrary.org/obo/MOP_0000162,none +5.8612791,UBERON:0002349,http://purl.obolibrary.org/obo/UBERON_0002349,myocardium +5.8624358,NCBITaxon:9030,http://purl.obolibrary.org/obo/NCBITaxon_9030,Gallus +5.862588,NCBITaxon:9072,http://purl.obolibrary.org/obo/NCBITaxon_9072,Phasianinae +5.8635785,NCBITaxon:9031,http://purl.obolibrary.org/obo/NCBITaxon_9031,Gallus gallus +5.8647683,UBERON:0003519,http://purl.obolibrary.org/obo/UBERON_0003519,thoracic cavity blood vessel +5.8659442,SO:1000183,http://purl.obolibrary.org/obo/SO_1000183,chromosome_structure_variation +5.8664639,CL:0000126,http://purl.obolibrary.org/obo/CL_0000126,macroglial cell +5.8674888,UBERON:0005983,http://purl.obolibrary.org/obo/UBERON_0005983,heart layer +5.8696491,UBERON:0002186,http://purl.obolibrary.org/obo/UBERON_0002186,bronchiole +5.8696951,GO:0044428,http://purl.obolibrary.org/obo/GO_0044428,nuclear part +5.8706926,SO:0000360,http://purl.obolibrary.org/obo/SO_0000360,codon +5.8713069,GO:0019752,http://purl.obolibrary.org/obo/GO_0019752,carboxylic acid metabolic process +5.8719062,GO:0004035,http://purl.obolibrary.org/obo/GO_0004035,alkaline phosphatase activity +5.8719062,PR:000023540,http://purl.obolibrary.org/obo/PR_000023540,alkaline phosphatase +5.8722291,DRUGBANK:DB05768,http://purl.obolibrary.org/obo/DRUGBANK_DB05768,none +5.8723675,PR:000017285,http://purl.obolibrary.org/obo/PR_000017285,vascular endothelial growth factor C +5.8725059,NCBITaxon:4892,http://purl.obolibrary.org/obo/NCBITaxon_4892,Saccharomycetales +5.8726136,NCBITaxon:4891,http://purl.obolibrary.org/obo/NCBITaxon_4891,Saccharomycetes +5.8729521,UBERON:0022303,http://purl.obolibrary.org/obo/UBERON_0022303,nervous system cell part layer +5.8752476,NCBITaxon:1236,http://purl.obolibrary.org/obo/NCBITaxon_1236,Gammaproteobacteria +5.8753093,NCBITaxon:9608,http://purl.obolibrary.org/obo/NCBITaxon_9608,Canidae +5.8790181,GO:0005764,http://purl.obolibrary.org/obo/GO_0005764,lysosome +5.8801179,MONDO:0015759,http://purl.obolibrary.org/obo/MONDO_0015759,B-cell non-Hodgkin lymphoma +5.8803815,MONDO:0005833,http://purl.obolibrary.org/obo/MONDO_0005833,lymphatic system disease +5.8811414,MONDO:0020010,http://purl.obolibrary.org/obo/MONDO_0020010,infectious disease of the nervous system +5.88125,CHEBI:35224,http://purl.obolibrary.org/obo/CHEBI_35224,effector +5.8852925,MONDO:0021230,http://purl.obolibrary.org/obo/MONDO_0021230,uterine cervix neoplasm +5.8864304,UBERON:0005893,http://purl.obolibrary.org/obo/UBERON_0005893,leg bone +5.8878196,MONDO:0005292,http://purl.obolibrary.org/obo/MONDO_0005292,colitis +5.8879758,MONDO:0002032,http://purl.obolibrary.org/obo/MONDO_0002032,colon carcinoma +5.8895391,CHEBI:60766,http://purl.obolibrary.org/obo/CHEBI_60766,polyacrylamide polymer +5.8906036,MONDO:0002256,http://purl.obolibrary.org/obo/MONDO_0002256,cervix disease +5.8911049,SO:0100002,http://purl.obolibrary.org/obo/SO_0100002,molecular_contact_region +5.8911519,PR:000007520,http://purl.obolibrary.org/obo/PR_000007520,vascular endothelial growth factor D +5.891246,DRUGBANK:DB00142,http://purl.obolibrary.org/obo/DRUGBANK_DB00142,none +5.8921868,SO:0100020,http://purl.obolibrary.org/obo/SO_0100020,polypeptide_DNA_contact +5.8925476,CHEBI:35352,http://purl.obolibrary.org/obo/CHEBI_35352,organonitrogen compound +5.8925633,GO:0005261,http://purl.obolibrary.org/obo/GO_0005261,cation channel activity +5.8929243,GO:0006464,http://purl.obolibrary.org/obo/GO_0006464,cellular protein modification process +5.8939138,MONDO:0001166,http://purl.obolibrary.org/obo/MONDO_0001166,nephritis +5.894071,MONDO:0020145,http://purl.obolibrary.org/obo/MONDO_0020145,developmental defect of the eye +5.8947942,MONDO:0017143,http://purl.obolibrary.org/obo/MONDO_0017143,genetic infertility +5.8949043,PR:000003096,http://purl.obolibrary.org/obo/PR_000003096,vascular endothelial growth factor B +5.8954078,GO:0034362,http://purl.obolibrary.org/obo/GO_0034362,low-density lipoprotein particle +5.8958486,UBERON:0002298,http://purl.obolibrary.org/obo/UBERON_0002298,brainstem +5.8958801,UBERON:0010001,http://purl.obolibrary.org/obo/UBERON_0010001,cell cluster organ +5.8959903,GO:0099080,http://purl.obolibrary.org/obo/GO_0099080,supramolecular complex +5.8962265,UBERON:0006539,http://purl.obolibrary.org/obo/UBERON_0006539,mammary gland fluid/secretion +5.8964786,DRUGBANK:DB10529,http://purl.obolibrary.org/obo/DRUGBANK_DB10529,none +5.8965416,GO:0098602,http://purl.obolibrary.org/obo/GO_0098602,single organism cell adhesion +5.8965573,GO:0016337,http://purl.obolibrary.org/obo/GO_0016337,single organismal cell-cell adhesion +5.8980553,UBERON:0001913,http://purl.obolibrary.org/obo/UBERON_0001913,milk +5.898292,UBERON:0005291,http://purl.obolibrary.org/obo/UBERON_0005291,embryonic tissue +5.8990815,MONDO:0024479,http://purl.obolibrary.org/obo/MONDO_0024479,epithelial tumor of colon +5.9005199,GO:0000323,http://purl.obolibrary.org/obo/GO_0000323,lytic vacuole +5.9009788,MONDO:0002898,http://purl.obolibrary.org/obo/MONDO_0002898,skin cancer +5.9015803,MONDO:0015220,http://purl.obolibrary.org/obo/MONDO_0015220,syndrome with a central nervous system malformation as major feature +5.9028797,DRUGBANK:DB10447,http://purl.obolibrary.org/obo/DRUGBANK_DB10447,none +5.902959,GO:0016746,http://purl.obolibrary.org/obo/GO_0016746,acyltransferase activity +5.9034824,NCBITaxon:4893,http://purl.obolibrary.org/obo/NCBITaxon_4893,Saccharomycetaceae +5.9041807,GO:0099081,http://purl.obolibrary.org/obo/GO_0099081,supramolecular polymer +5.9041807,GO:0099512,http://purl.obolibrary.org/obo/GO_0099512,supramolecular fiber +5.9064855,GO:1902494,http://purl.obolibrary.org/obo/GO_1902494,catalytic complex +5.9068675,GO:0050878,http://purl.obolibrary.org/obo/GO_0050878,regulation of body fluid levels +5.9069948,MONDO:0002049,http://purl.obolibrary.org/obo/MONDO_0002049,thrombocytopenia +5.9073451,MONDO:0002229,http://purl.obolibrary.org/obo/MONDO_0002229,ovarian epithelial tumor +5.9087955,NCBITaxon:543,http://purl.obolibrary.org/obo/NCBITaxon_543,Enterobacteriaceae +5.9088274,NCBITaxon:91347,http://purl.obolibrary.org/obo/NCBITaxon_91347,Enterobacterales +5.9108392,HP:0025031,http://purl.obolibrary.org/obo/HP_0025031,Abnormality of the digestive system +5.9117506,MONDO:0019040,http://purl.obolibrary.org/obo/MONDO_0019040,chromosomal anomaly +5.9121667,UBERON:0003457,http://purl.obolibrary.org/obo/UBERON_0003457,head bone +5.9142173,MONDO:0005140,http://purl.obolibrary.org/obo/MONDO_0005140,ovarian carcinoma +5.9145862,DRUGBANK:DB00131,http://purl.obolibrary.org/obo/DRUGBANK_DB00131,none +5.9146022,GO:0006281,http://purl.obolibrary.org/obo/GO_0006281,DNA repair +5.9148268,MONDO:0015823,http://purl.obolibrary.org/obo/MONDO_0015823,primary immunodeficiency due to a defect in adaptive immunity +5.914875,CL:0008007,http://purl.obolibrary.org/obo/CL_0008007,visceral muscle cell +5.9151318,CL:0008000,http://purl.obolibrary.org/obo/CL_0008000,non-striated muscle cell +5.9154047,UBERON:0002548,http://purl.obolibrary.org/obo/UBERON_0002548,larva +5.9158704,GO:0046873,http://purl.obolibrary.org/obo/GO_0046873,metal ion transmembrane transporter activity +5.9167543,GO:0031090,http://purl.obolibrary.org/obo/GO_0031090,organelle membrane +5.9168025,PR:000005897,http://purl.obolibrary.org/obo/PR_000005897,C-reactive protein +5.9177838,NCBITaxon:4930,http://purl.obolibrary.org/obo/NCBITaxon_4930,none +5.9177998,MONDO:0005129,http://purl.obolibrary.org/obo/MONDO_0005129,cataract +5.9188465,MONDO:0005217,http://purl.obolibrary.org/obo/MONDO_0005217,familial cardiomyopathy +5.9191366,CL:0002076,http://purl.obolibrary.org/obo/CL_0002076,endo-epithelial cell +5.9202008,MONDO:0000462,http://purl.obolibrary.org/obo/MONDO_0000462,eye adnexa disease +5.920233,DRUGBANK:DB11133,http://purl.obolibrary.org/obo/DRUGBANK_DB11133,none +5.9209109,MONDO:0018364,http://purl.obolibrary.org/obo/MONDO_0018364,malignant epithelial tumor of ovary +5.9212177,NCBITaxon:4932,http://purl.obolibrary.org/obo/NCBITaxon_4932,none +5.9213953,GO:0016829,http://purl.obolibrary.org/obo/GO_0016829,lyase activity +5.9237401,NCBITaxon:562,http://purl.obolibrary.org/obo/NCBITaxon_562,Escherichia coli +5.9255389,MONDO:0024757,http://purl.obolibrary.org/obo/MONDO_0024757,cardiovascular neoplasm +5.9272271,UBERON:0000045,http://purl.obolibrary.org/obo/UBERON_0000045,ganglion +5.9273408,GO:0019210,http://purl.obolibrary.org/obo/GO_0019210,kinase inhibitor activity +5.9275683,NCBITaxon:561,http://purl.obolibrary.org/obo/NCBITaxon_561,Escherichia +5.9276008,MONDO:0024644,http://purl.obolibrary.org/obo/MONDO_0024644,myocardial ischemia +5.9314602,PR:000002190,http://purl.obolibrary.org/obo/PR_000002190,RAC-alpha serine/threonine-protein kinase +5.9361538,MONDO:0005402,http://purl.obolibrary.org/obo/MONDO_0005402,lymphoid leukemia +5.9375152,UBERON:0010890,http://purl.obolibrary.org/obo/UBERON_0010890,pelvic complex muscle +5.9380078,GO:0044429,http://purl.obolibrary.org/obo/GO_0044429,none +5.9388786,DRUGBANK:DB00062,http://purl.obolibrary.org/obo/DRUGBANK_DB00062,none +5.9390923,SO:0000830,http://purl.obolibrary.org/obo/SO_0000830,chromosome_part +5.939487,GO:0099513,http://purl.obolibrary.org/obo/GO_0099513,polymeric cytoskeletal fiber +5.9398982,MONDO:0015104,http://purl.obolibrary.org/obo/MONDO_0015104,porphyria cutanea tarda +5.9402603,MONDO:0019800,http://purl.obolibrary.org/obo/MONDO_0019800,chronic hepatic porphyria +5.9416603,DRUGBANK:DB02772,http://purl.obolibrary.org/obo/DRUGBANK_DB02772,none +5.9419241,NCBITaxon:35301,http://purl.obolibrary.org/obo/NCBITaxon_35301,none +5.9436898,MONDO:0004670,http://purl.obolibrary.org/obo/MONDO_0004670,lupus erythematosus +5.9441028,MONDO:0002635,http://purl.obolibrary.org/obo/MONDO_0002635,periodontal disease +5.9445655,UBERON:0002316,http://purl.obolibrary.org/obo/UBERON_0002316,white matter +5.9447474,DRUGBANK:DB11132,http://purl.obolibrary.org/obo/DRUGBANK_DB11132,none +5.9466175,PR:000001379,http://purl.obolibrary.org/obo/PR_000001379,interleukin-2 +5.9479933,MONDO:0005021,http://purl.obolibrary.org/obo/MONDO_0005021,dilated cardiomyopathy +5.9505843,GO:0044848,http://purl.obolibrary.org/obo/GO_0044848,biological phase +5.9509336,UBERON:0013754,http://purl.obolibrary.org/obo/UBERON_0013754,integumentary system layer +5.9515493,MONDO:0019799,http://purl.obolibrary.org/obo/MONDO_0019799,hepatoerythropoietic porphyria +5.9541496,DRUGBANK:DB00515,http://purl.obolibrary.org/obo/DRUGBANK_DB00515,none +5.9551348,MONDO:0002245,http://purl.obolibrary.org/obo/MONDO_0002245,blood platelet disease +5.9554523,MONDO:0015667,http://purl.obolibrary.org/obo/MONDO_0015667,acute myeloid leukemia by FAB classification +5.9556696,GO:0044419,http://purl.obolibrary.org/obo/GO_0044419,biological process involved in interspecies interaction between organisms +5.9590182,MONDO:0001176,http://purl.obolibrary.org/obo/MONDO_0001176,lens disease +5.9598572,UBERON:0000947,http://purl.obolibrary.org/obo/UBERON_0000947,aorta +5.9602265,DRUGBANK:DB00091,http://purl.obolibrary.org/obo/DRUGBANK_DB00091,none +5.9618566,GO:0044248,http://purl.obolibrary.org/obo/GO_0044248,cellular catabolic process +5.9649899,MONDO:0015218,http://purl.obolibrary.org/obo/MONDO_0015218,syndromic developmental defect of the eye +5.9661548,MONDO:0024296,http://purl.obolibrary.org/obo/MONDO_0024296,vascular neoplasm +5.967118,GO:0008483,http://purl.obolibrary.org/obo/GO_0008483,transaminase activity +5.96793,GO:0070085,http://purl.obolibrary.org/obo/GO_0070085,glycosylation +5.9687764,UBERON:0003663,http://purl.obolibrary.org/obo/UBERON_0003663,hindlimb muscle +5.9694032,UBERON:0003657,http://purl.obolibrary.org/obo/UBERON_0003657,limb joint +5.9697083,CHEBI:50047,http://purl.obolibrary.org/obo/CHEBI_50047,organic amino compound +5.96981,CHEBI:35195,http://purl.obolibrary.org/obo/CHEBI_35195,surfactant +5.9723903,SO:0000005,http://purl.obolibrary.org/obo/SO_0000005,satellite_DNA +5.9725943,UBERON:0001970,http://purl.obolibrary.org/obo/UBERON_0001970,bile +5.9749772,GO:0031410,http://purl.obolibrary.org/obo/GO_0031410,cytoplasmic vesicle +5.9756761,HP:0000119,http://purl.obolibrary.org/obo/HP_0000119,Abnormality of the genitourinary system +5.9767852,UBERON:0003978,http://purl.obolibrary.org/obo/UBERON_0003978,valve +5.9769047,HP:0000708,http://purl.obolibrary.org/obo/HP_0000708,Behavioral abnormality +5.9776563,MONDO:0020665,http://purl.obolibrary.org/obo/MONDO_0020665,high grade malignant neoplasm +5.9780152,PR:000003918,http://purl.obolibrary.org/obo/PR_000003918,albumin +5.9783229,PR:000001091,http://purl.obolibrary.org/obo/PR_000001091,interleukin-1 +5.9785794,GO:0097708,http://purl.obolibrary.org/obo/GO_0097708,intracellular vesicle +5.9800342,GO:0016769,http://purl.obolibrary.org/obo/GO_0016769,"transferase activity, transferring nitrogenous groups" +5.9800856,UBERON:0014795,http://purl.obolibrary.org/obo/UBERON_0014795,pelvic appendage muscle +5.9808909,GO:0007275,http://purl.obolibrary.org/obo/GO_0007275,multicellular organism development +5.9812681,HP:0000598,http://purl.obolibrary.org/obo/HP_0000598,Abnormality of the ear +5.9816455,UBERON:0002067,http://purl.obolibrary.org/obo/UBERON_0002067,dermis +5.9843253,UBERON:0003462,http://purl.obolibrary.org/obo/UBERON_0003462,facial bone +5.9848243,MONDO:0002146,http://purl.obolibrary.org/obo/MONDO_0002146,hypogonadism +5.9849275,GO:0022403,http://purl.obolibrary.org/obo/GO_0022403,cell cycle phase +5.9852546,GO:0043235,http://purl.obolibrary.org/obo/GO_0043235,receptor complex +5.9865985,GO:0044463,http://purl.obolibrary.org/obo/GO_0044463,none +5.988514,MONDO:0000568,http://purl.obolibrary.org/obo/MONDO_0000568,autoimmune disease of central nervous system +5.9888422,CL:0002159,http://purl.obolibrary.org/obo/CL_0002159,general ecto-epithelial cell +5.9894645,CL:0000150,http://purl.obolibrary.org/obo/CL_0000150,glandular epithelial cell +5.9902428,DRUGBANK:DB14151,http://purl.obolibrary.org/obo/DRUGBANK_DB14151,none +5.9907101,GO:0004519,http://purl.obolibrary.org/obo/GO_0004519,endonuclease activity +5.9909352,MONDO:0019254,http://purl.obolibrary.org/obo/MONDO_0019254,inborn disorder of purine or pyrimidine metabolism +5.9918533,PR:000002186,http://purl.obolibrary.org/obo/PR_000002186,Bcl-2-like apoptosis inhibitor +5.9920267,MONDO:0021108,http://purl.obolibrary.org/obo/MONDO_0021108,meningitis +5.9933276,UBERON:0001008,http://purl.obolibrary.org/obo/UBERON_0001008,renal system +5.9935012,GO:0034109,http://purl.obolibrary.org/obo/GO_0034109,homotypic cell-cell adhesion +5.9948562,MONDO:0002108,http://purl.obolibrary.org/obo/MONDO_0002108,thyroid cancer +5.9972928,CHEBI:63046,http://purl.obolibrary.org/obo/CHEBI_63046,emulsifier +5.9979378,MONDO:0024882,http://purl.obolibrary.org/obo/MONDO_0024882,secondary neoplasm +5.9979552,CHEBI:76759,http://purl.obolibrary.org/obo/CHEBI_76759,EC 3.* (hydrolase) inhibitor +5.9985483,DRUGBANK:DB06633,http://purl.obolibrary.org/obo/DRUGBANK_DB06633,none +5.9992813,MONDO:0011057,http://purl.obolibrary.org/obo/MONDO_0011057,cerebrovascular disorder +5.9995084,UBERON:0011139,http://purl.obolibrary.org/obo/UBERON_0011139,synovial limb joint +6.0001373,GO:0048468,http://purl.obolibrary.org/obo/GO_0048468,cell development +6.0007316,UBERON:0002082,http://purl.obolibrary.org/obo/UBERON_0002082,cardiac ventricle +6.0012738,MONDO:0024619,http://purl.obolibrary.org/obo/MONDO_0024619,central nervous system infectious disorder +6.0020964,MONDO:0020128,http://purl.obolibrary.org/obo/MONDO_0020128,motor neuron disease +6.002114,DRUGBANK:DB11094,http://purl.obolibrary.org/obo/DRUGBANK_DB11094,none +6.002219,SO:0000188,http://purl.obolibrary.org/obo/SO_0000188,intron +6.0040244,MONDO:0006519,http://purl.obolibrary.org/obo/MONDO_0006519,rectal cancer +6.0049897,MONDO:0037829,http://purl.obolibrary.org/obo/MONDO_0037829,purine metabolism disease +6.0053059,GO:0045202,http://purl.obolibrary.org/obo/GO_0045202,synapse +6.0053761,GO:0022008,http://purl.obolibrary.org/obo/GO_0022008,neurogenesis +6.0054816,DRUGBANK:DB00126,http://purl.obolibrary.org/obo/DRUGBANK_DB00126,none +6.0056748,MONDO:0002562,http://purl.obolibrary.org/obo/MONDO_0002562,demyelinating disease +6.0057451,MONDO:0019236,http://purl.obolibrary.org/obo/MONDO_0019236,inborn disorder of purine metabolism +6.0068001,GO:0051726,http://purl.obolibrary.org/obo/GO_0051726,regulation of cell cycle +6.0081909,GO:0009790,http://purl.obolibrary.org/obo/GO_0009790,embryo development +6.0095483,MONDO:0005192,http://purl.obolibrary.org/obo/MONDO_0005192,exocrine pancreatic carcinoma +6.0098129,UBERON:0000946,http://purl.obolibrary.org/obo/UBERON_0000946,cardial valve +6.0099012,MONDO:0020590,http://purl.obolibrary.org/obo/MONDO_0020590,mycobacterial infectious disease +6.0101482,UBERON:0003928,http://purl.obolibrary.org/obo/UBERON_0003928,digestive system duct +6.0103601,MONDO:0017342,http://purl.obolibrary.org/obo/MONDO_0017342,Epstein-Barr virus-related tumor +6.011579,MONDO:0005301,http://purl.obolibrary.org/obo/MONDO_0005301,multiple sclerosis +6.0119326,PR:000002307,http://purl.obolibrary.org/obo/PR_000002307,apoptosis regulator Bcl-2 +6.0130119,MONDO:0000602,http://purl.obolibrary.org/obo/MONDO_0000602,autoimmune disease of blood +6.0132066,DRUGBANK:DB12880,http://purl.obolibrary.org/obo/DRUGBANK_DB12880,none +6.0132951,NCBITaxon:3193,http://purl.obolibrary.org/obo/NCBITaxon_3193,Embryophyta +6.0138088,UBERON:0003129,http://purl.obolibrary.org/obo/UBERON_0003129,skull +6.0143936,MONDO:0000592,http://purl.obolibrary.org/obo/MONDO_0000592,specific developmental disorder +6.0149432,GO:1902589,http://purl.obolibrary.org/obo/GO_1902589,none +6.0150674,MONDO:0021058,http://purl.obolibrary.org/obo/MONDO_0021058,neoplastic syndrome +6.0154755,MONDO:0005206,http://purl.obolibrary.org/obo/MONDO_0005206,renal carcinoma +6.0162743,MONDO:0018076,http://purl.obolibrary.org/obo/MONDO_0018076,tuberculosis +6.0169672,GO:0070851,http://purl.obolibrary.org/obo/GO_0070851,growth factor receptor binding +6.017625,GO:0005154,http://purl.obolibrary.org/obo/GO_0005154,epidermal growth factor receptor binding +6.017625,PR:000006933,http://purl.obolibrary.org/obo/PR_000006933,epidermal growth factor receptor +6.0193871,DRUGBANK:DB00052,http://purl.obolibrary.org/obo/DRUGBANK_DB00052,none +6.0194228,MONDO:0015127,http://purl.obolibrary.org/obo/MONDO_0015127,pituitary deficiency +6.0252835,MONDO:0003004,http://purl.obolibrary.org/obo/MONDO_0003004,macular degeneration +6.0288201,UBERON:0000119,http://purl.obolibrary.org/obo/UBERON_0000119,cell layer +6.0300437,MONDO:0021196,http://purl.obolibrary.org/obo/MONDO_0021196,disease by molecular activity disrupted +6.0311787,MONDO:0006704,http://purl.obolibrary.org/obo/MONDO_0006704,CNS demyelinating autoimmune disease +6.031341,MONDO:0015656,http://purl.obolibrary.org/obo/MONDO_0015656,metabolic disease with epilepsy +6.0316115,MONDO:0018882,http://purl.obolibrary.org/obo/MONDO_0018882,vasculitis +6.0325677,CL:0002494,http://purl.obolibrary.org/obo/CL_0002494,cardiocyte +6.0328205,DRUGBANK:DB12965,http://purl.obolibrary.org/obo/DRUGBANK_DB12965,none +6.0328386,HP:0025032,http://purl.obolibrary.org/obo/HP_0025032,Abnormality of digestive system physiology +6.0343745,CL:0000127,http://purl.obolibrary.org/obo/CL_0000127,astrocyte +6.0345554,DRUGBANK:DB03843,http://purl.obolibrary.org/obo/DRUGBANK_DB03843,none +6.0350801,MONDO:0021074,http://purl.obolibrary.org/obo/MONDO_0021074,precancerous condition +6.0351163,UBERON:0002415,http://purl.obolibrary.org/obo/UBERON_0002415,tail +6.0351887,MONDO:0015860,http://purl.obolibrary.org/obo/MONDO_0015860,anomaly of puberty or/and menstrual cycle +6.0351887,MONDO:0016072,http://purl.obolibrary.org/obo/MONDO_0016072,anomaly of puberty or/and menstrual cycle of genetic origin +6.035605,SO:0001450,http://purl.obolibrary.org/obo/SO_0001450,lysine +6.0367101,UBERON:0003135,http://purl.obolibrary.org/obo/UBERON_0003135,male reproductive organ +6.0380887,PR:000007968,http://purl.obolibrary.org/obo/PR_000007968,somatotropin +6.0384336,CL:0000362,http://purl.obolibrary.org/obo/CL_0000362,epidermal cell +6.0419078,DRUGBANK:DB01367,http://purl.obolibrary.org/obo/DRUGBANK_DB01367,none +6.0420171,UBERON:0000473,http://purl.obolibrary.org/obo/UBERON_0000473,testis +6.0430016,DRUGBANK:DB00128,http://purl.obolibrary.org/obo/DRUGBANK_DB00128,none +6.043768,DRUGBANK:DB05381,http://purl.obolibrary.org/obo/DRUGBANK_DB05381,none +6.0442976,PR:000001861,http://purl.obolibrary.org/obo/PR_000001861,integrin beta +6.0444802,SO:0001627,http://purl.obolibrary.org/obo/SO_0001627,intron_variant +6.0465283,DRUGBANK:DB02530,http://purl.obolibrary.org/obo/DRUGBANK_DB02530,none +6.0490393,GO:0045321,http://purl.obolibrary.org/obo/GO_0045321,leukocyte activation +6.0495533,MONDO:0005516,http://purl.obolibrary.org/obo/MONDO_0005516,osteochondrodysplasia +6.0501226,MONDO:0002714,http://purl.obolibrary.org/obo/MONDO_0002714,central nervous system cancer +6.0526979,PR:000001335,http://purl.obolibrary.org/obo/PR_000001335,"class 2 cytokine, IL-10 type" +6.0532322,PR:000005061,http://purl.obolibrary.org/obo/PR_000005061,catalase +6.053398,GO:0098797,http://purl.obolibrary.org/obo/GO_0098797,plasma membrane protein complex +6.0552798,PR:000045382,http://purl.obolibrary.org/obo/PR_000045382,none +6.0572392,GO:0004096,http://purl.obolibrary.org/obo/GO_0004096,catalase activity +6.0591838,MONDO:0018177,http://purl.obolibrary.org/obo/MONDO_0018177,glioblastoma +6.059295,HP:0012372,http://purl.obolibrary.org/obo/HP_0012372,Abnormal eye morphology +6.0613737,CL:0000737,http://purl.obolibrary.org/obo/CL_0000737,striated muscle cell +6.0638851,MONDO:0002525,http://purl.obolibrary.org/obo/MONDO_0002525,inherited lipid metabolism disorder +6.0655068,SO:0001024,http://purl.obolibrary.org/obo/SO_0001024,haplotype +6.0658613,DRUGBANK:DB01221,http://purl.obolibrary.org/obo/DRUGBANK_DB01221,none +6.0663467,SO:0000316,http://purl.obolibrary.org/obo/SO_0000316,CDS +6.0674302,GO:0042886,http://purl.obolibrary.org/obo/GO_0042886,amide transport +6.0679724,MONDO:0004967,http://purl.obolibrary.org/obo/MONDO_0004967,acute lymphoblastic leukemia +6.0681782,PR:000036816,http://purl.obolibrary.org/obo/PR_000036816,none +6.0681782,PR:000036817,http://purl.obolibrary.org/obo/PR_000036817,none +6.0681782,PR:000036818,http://purl.obolibrary.org/obo/PR_000036818,none +6.0688893,UBERON:0006003,http://purl.obolibrary.org/obo/UBERON_0006003,integumentary adnexa +6.0695259,UBERON:0001898,http://purl.obolibrary.org/obo/UBERON_0001898,hypothalamus +6.070163,MONDO:0036976,http://purl.obolibrary.org/obo/MONDO_0036976,benign epithelial neoplasm +6.0710068,CHEBI:37845,http://purl.obolibrary.org/obo/CHEBI_37845,growth hormone +6.0710068,GO:0070186,http://purl.obolibrary.org/obo/GO_0070186,growth hormone activity +6.0727529,GO:0019199,http://purl.obolibrary.org/obo/GO_0019199,transmembrane receptor protein kinase activity +6.0754626,PR:000027795,http://purl.obolibrary.org/obo/PR_000027795,trypsin +6.0758206,MONDO:0021124,http://purl.obolibrary.org/obo/MONDO_0021124,female infertility +6.0758206,UBERON:0001785,http://purl.obolibrary.org/obo/UBERON_0001785,cranial nerve +6.0761977,PR:O73682,http://purl.obolibrary.org/obo/PR_O73682,none +6.077594,SO:1000035,http://purl.obolibrary.org/obo/SO_1000035,duplication +6.0778584,NCBITaxon:9721,http://purl.obolibrary.org/obo/NCBITaxon_9721,Cetacea +6.078104,NCBITaxon:2653789,http://purl.obolibrary.org/obo/NCBITaxon_2653789,Whippomorpha +6.07886,NCBITaxon:9702,http://purl.obolibrary.org/obo/NCBITaxon_9702,none +6.0792004,NCBITaxon:9709,http://purl.obolibrary.org/obo/NCBITaxon_9709,Phocidae +6.0794274,CL:0000746,http://purl.obolibrary.org/obo/CL_0000746,cardiac muscle cell +6.0795598,DRUGBANK:DB01234,http://purl.obolibrary.org/obo/DRUGBANK_DB01234,none +6.0800708,GO:0005618,http://purl.obolibrary.org/obo/GO_0005618,cell wall +6.0811124,HP:0011458,http://purl.obolibrary.org/obo/HP_0011458,Abdominal symptom +6.0818138,NCBITaxon:2497569,http://purl.obolibrary.org/obo/NCBITaxon_2497569,Negarnaviricota +6.0829712,PR:000015527,http://purl.obolibrary.org/obo/PR_000015527,spindlin-1 +6.083389,MONDO:0019189,http://purl.obolibrary.org/obo/MONDO_0019189,inborn disorder of amino acid and other organic acid metabolism +6.0844531,HP:0000079,http://purl.obolibrary.org/obo/HP_0000079,Abnormality of the urinary system +6.0891222,GO:0044255,http://purl.obolibrary.org/obo/GO_0044255,cellular lipid metabolic process +6.0898865,CHEBI:25367,http://purl.obolibrary.org/obo/CHEBI_25367,molecule +6.0913787,UBERON:0002394,http://purl.obolibrary.org/obo/UBERON_0002394,bile duct +6.0938899,PR:000008322,http://purl.obolibrary.org/obo/PR_000008322,general transcription factor II-I +6.094197,UBERON:0013755,http://purl.obolibrary.org/obo/UBERON_0013755,arterial blood +6.0948115,DRUGBANK:DB01509,http://purl.obolibrary.org/obo/DRUGBANK_DB01509,none +6.0953688,MONDO:0017133,http://purl.obolibrary.org/obo/MONDO_0017133,genetic systemic or rheumatologic disease +6.0957533,GO:0004713,http://purl.obolibrary.org/obo/GO_0004713,protein tyrosine kinase activity +6.0961957,NCBITaxon:33090,http://purl.obolibrary.org/obo/NCBITaxon_33090,Viridiplantae +6.0971965,NCBITaxon:35493,http://purl.obolibrary.org/obo/NCBITaxon_35493,Streptophyta +6.0972928,NCBITaxon:131221,http://purl.obolibrary.org/obo/NCBITaxon_131221,Streptophytina +6.0980249,GO:1901700,http://purl.obolibrary.org/obo/GO_1901700,response to oxygen-containing compound +6.0981598,MONDO:0100033,http://purl.obolibrary.org/obo/MONDO_0100033,metabolic epilepsy +6.098989,GO:0015833,http://purl.obolibrary.org/obo/GO_0015833,peptide transport +6.1030097,MONDO:0019046,http://purl.obolibrary.org/obo/MONDO_0019046,leukodystrophy +6.1039786,SO:0001580,http://purl.obolibrary.org/obo/SO_0001580,coding_sequence_variant +6.1053755,DRUGBANK:DB04485,http://purl.obolibrary.org/obo/DRUGBANK_DB04485,none +6.1062301,GO:0009892,http://purl.obolibrary.org/obo/GO_0009892,negative regulation of metabolic process +6.1118811,DRUGBANK:DB10579,http://purl.obolibrary.org/obo/DRUGBANK_DB10579,none +6.1127218,MONDO:0007743,http://purl.obolibrary.org/obo/MONDO_0007743,attention deficit-hyperactivity disorder +6.1128391,MONDO:0003538,http://purl.obolibrary.org/obo/MONDO_0003538,precursor lymphoblastic lymphoma/leukemia +6.1149343,MONDO:0045022,http://purl.obolibrary.org/obo/MONDO_0045022,disorder of organic acid metabolism +6.1158756,SO:0000984,http://purl.obolibrary.org/obo/SO_0000984,single +6.1166214,PR:000010173,http://purl.obolibrary.org/obo/PR_000010173,microtubule-associated protein tau +6.1178002,CL:0000710,http://purl.obolibrary.org/obo/CL_0000710,neurecto-epithelial cell +6.1199648,MONDO:0000688,http://purl.obolibrary.org/obo/MONDO_0000688,inherited organic acidemia +6.1207729,GO:0005874,http://purl.obolibrary.org/obo/GO_0005874,microtubule +6.1236358,PR:000001471,http://purl.obolibrary.org/obo/PR_000001471,interleukin-10 +6.124427,HP:0002011,http://purl.obolibrary.org/obo/HP_0002011,Morphological central nervous system abnormality +6.1244864,HP:0012639,http://purl.obolibrary.org/obo/HP_0012639,Abnormal nervous system morphology +6.1248427,SO:1000037,http://purl.obolibrary.org/obo/SO_1000037,chromosomal_duplication +6.1249812,GO:0010605,http://purl.obolibrary.org/obo/GO_0010605,negative regulation of macromolecule metabolic process +6.1249812,HP:0031704,http://purl.obolibrary.org/obo/HP_0031704,Abnormal ear physiology +6.1254367,DRUGBANK:DB01992,http://purl.obolibrary.org/obo/DRUGBANK_DB01992,none +6.1258132,MONDO:0024883,http://purl.obolibrary.org/obo/MONDO_0024883,metastatic neoplasm +6.1265466,MONDO:0021076,http://purl.obolibrary.org/obo/MONDO_0021076,pancreatic exocrine neoplasm +6.1266854,MONDO:0015331,http://purl.obolibrary.org/obo/MONDO_0015331,malformation syndrome with skin/mucosae involvement +6.1269036,PR:P54644,http://purl.obolibrary.org/obo/PR_P54644,none +6.1272012,DRUGBANK:DB14049,http://purl.obolibrary.org/obo/DRUGBANK_DB14049,none +6.1295455,MONDO:0000833,http://purl.obolibrary.org/obo/MONDO_0000833,bone remodeling disease +6.1296847,MONDO:0003749,http://purl.obolibrary.org/obo/MONDO_0003749,esophageal disease +6.1309188,UBERON:0035553,http://purl.obolibrary.org/obo/UBERON_0035553,left cardiac chamber +6.1311977,GO:0019209,http://purl.obolibrary.org/obo/GO_0019209,kinase activator activity +6.1320547,HP:0010935,http://purl.obolibrary.org/obo/HP_0010935,Abnormality of the upper urinary tract +6.1324536,GO:0009888,http://purl.obolibrary.org/obo/GO_0009888,tissue development +6.132693,MONDO:0016106,http://purl.obolibrary.org/obo/MONDO_0016106,progressive muscular dystrophy +6.1333317,GO:0016458,http://purl.obolibrary.org/obo/GO_0016458,none +6.1336112,MONDO:0000510,http://purl.obolibrary.org/obo/MONDO_0000510,synucleinopathy +6.1341106,MONDO:0004987,http://purl.obolibrary.org/obo/MONDO_0004987,urinary bladder neoplasm +6.1357504,DRUGBANK:DB00668,http://purl.obolibrary.org/obo/DRUGBANK_DB00668,none +6.1357904,CHEBI:72695,http://purl.obolibrary.org/obo/CHEBI_72695,organic molecule +6.136952,MONDO:0005079,http://purl.obolibrary.org/obo/MONDO_0005079,polyp +6.1373127,MONDO:0044991,http://purl.obolibrary.org/obo/MONDO_0044991,upper digestive tract disease +6.137834,GO:0098802,http://purl.obolibrary.org/obo/GO_0098802,plasma membrane signaling receptor complex +6.1388172,MONDO:0020768,http://purl.obolibrary.org/obo/MONDO_0020768,X-linked deafness +6.1396607,UBERON:0000995,http://purl.obolibrary.org/obo/UBERON_0000995,uterus +6.1398014,UBERON:0013515,http://purl.obolibrary.org/obo/UBERON_0013515,subdivision of oviduct +6.1405653,DRUGBANK:DB11237,http://purl.obolibrary.org/obo/DRUGBANK_DB11237,none +6.1410078,MONDO:0005168,http://purl.obolibrary.org/obo/MONDO_0005168,neoplasm of immature B and T cells +6.1417525,MONDO:0002116,http://purl.obolibrary.org/obo/MONDO_0002116,malignant exocrine pancreas neoplasm +6.142538,MONDO:0020108,http://purl.obolibrary.org/obo/MONDO_0020108,autoimmune hemolytic anemia +6.14401,UBERON:0002037,http://purl.obolibrary.org/obo/UBERON_0002037,cerebellum +6.1446358,GO:0002790,http://purl.obolibrary.org/obo/GO_0002790,peptide secretion +6.1460705,MONDO:0020242,http://purl.obolibrary.org/obo/MONDO_0020242,genetic macular dystrophy +6.1463536,SO:0001683,http://purl.obolibrary.org/obo/SO_0001683,sequence_motif +6.1467785,GO:0008227,http://purl.obolibrary.org/obo/GO_0008227,G protein-coupled amine receptor activity +6.1470618,GO:0045289,http://purl.obolibrary.org/obo/GO_0045289,luciferin monooxygenase activity +6.147406,SO:0000991,http://purl.obolibrary.org/obo/SO_0000991,genomic_DNA +6.1476895,GO:0046649,http://purl.obolibrary.org/obo/GO_0046649,lymphocyte activation +6.1484594,DRUGBANK:DB00132,http://purl.obolibrary.org/obo/DRUGBANK_DB00132,none +6.1497372,GO:0010629,http://purl.obolibrary.org/obo/GO_0010629,negative regulation of gene expression +6.1501026,GO:0004697,http://purl.obolibrary.org/obo/GO_0004697,protein kinase C activity +6.15059,PR:000007204,http://purl.obolibrary.org/obo/PR_000007204,estrogen receptor +6.1507119,MONDO:0024654,http://purl.obolibrary.org/obo/MONDO_0024654,skull disorder +6.1512605,DRUGBANK:DB09287,http://purl.obolibrary.org/obo/DRUGBANK_DB09287,none +6.1516875,UBERON:0001155,http://purl.obolibrary.org/obo/UBERON_0001155,colon +6.1517078,MONDO:0016612,http://purl.obolibrary.org/obo/MONDO_0016612,X-linked cerebellar ataxia +6.1524809,GO:0000003,http://purl.obolibrary.org/obo/GO_0000003,reproduction +6.1526641,GO:0018995,http://purl.obolibrary.org/obo/GO_0018995,host cellular component +6.1528065,MONDO:0003996,http://purl.obolibrary.org/obo/MONDO_0003996,basal ganglia disease +6.1534786,MONDO:0005002,http://purl.obolibrary.org/obo/MONDO_0005002,chronic obstructive pulmonary disease +6.1551913,NCBITaxon:11103,http://purl.obolibrary.org/obo/NCBITaxon_11103,Hepacivirus C +6.155477,DRUGBANK:DB14158,http://purl.obolibrary.org/obo/DRUGBANK_DB14158,none +6.1556403,MONDO:0002567,http://purl.obolibrary.org/obo/MONDO_0002567,tracheal disease +6.1561304,DRUGBANK:DB05382,http://purl.obolibrary.org/obo/DRUGBANK_DB05382,none +6.1562325,UBERON:0001987,http://purl.obolibrary.org/obo/UBERON_0001987,placenta +6.1572135,SO:0001437,http://purl.obolibrary.org/obo/SO_0001437,leucine +6.1590555,SO:0001452,http://purl.obolibrary.org/obo/SO_0001452,histidine +6.1603059,MONDO:0021095,http://purl.obolibrary.org/obo/MONDO_0021095,parkinsonian disorder +6.162277,MONDO:0010533,http://purl.obolibrary.org/obo/MONDO_0010533,Arts syndrome +6.1624003,SO:0001818,http://purl.obolibrary.org/obo/SO_0001818,protein_altering_variant +6.1631199,GO:0009566,http://purl.obolibrary.org/obo/GO_0009566,fertilization +6.1637783,MONDO:0002462,http://purl.obolibrary.org/obo/MONDO_0002462,glomerulonephritis +6.1650347,MONDO:0007915,http://purl.obolibrary.org/obo/MONDO_0007915,systemic lupus erythematosus +6.1652614,MONDO:0000226,http://purl.obolibrary.org/obo/MONDO_0000226,mineral metabolism disease +6.1654882,GO:0016721,http://purl.obolibrary.org/obo/GO_0016721,"oxidoreductase activity, acting on superoxide radicals as acceptor" +6.1659212,PR:000002196,http://purl.obolibrary.org/obo/PR_000002196,caspase-3-like protease +6.166437,UBERON:0012254,http://purl.obolibrary.org/obo/UBERON_0012254,abdominal aorta artery +6.1673455,GO:0004784,http://purl.obolibrary.org/obo/GO_0004784,superoxide dismutase activity +6.167738,GO:0030284,http://purl.obolibrary.org/obo/GO_0030284,estrogen receptor activity +6.1686063,NCBITaxon:11102,http://purl.obolibrary.org/obo/NCBITaxon_11102,Hepacivirus +6.1687511,GO:0005856,http://purl.obolibrary.org/obo/GO_0005856,cytoskeleton +6.1700344,PR:000024990,http://purl.obolibrary.org/obo/PR_000024990,type II interferon +6.1713608,CL:0000527,http://purl.obolibrary.org/obo/CL_0000527,efferent neuron +6.1732083,UBERON:0001465,http://purl.obolibrary.org/obo/UBERON_0001465,knee +6.1733953,UBERON:0016526,http://purl.obolibrary.org/obo/UBERON_0016526,lobe of cerebral hemisphere +6.1742269,UBERON:0005058,http://purl.obolibrary.org/obo/UBERON_0005058,hemolymphoid system gland +6.1749551,UBERON:0002370,http://purl.obolibrary.org/obo/UBERON_0002370,thymus +6.176997,MONDO:0015075,http://purl.obolibrary.org/obo/MONDO_0015075,thyroid gland carcinoma +6.1779151,PR:000029043,http://purl.obolibrary.org/obo/PR_000029043,none +6.1780194,HP:0000077,http://purl.obolibrary.org/obo/HP_0000077,Abnormality of the kidney +6.1795447,GO:0030072,http://purl.obolibrary.org/obo/GO_0030072,peptide hormone secretion +6.179712,MONDO:0015074,http://purl.obolibrary.org/obo/MONDO_0015074,thyroid tumor +6.1807163,UBERON:0000021,http://purl.obolibrary.org/obo/UBERON_0000021,cutaneous appendage +6.1809675,MONDO:0019268,http://purl.obolibrary.org/obo/MONDO_0019268,epidermal disease +6.1811979,DRUGBANK:DB00295,http://purl.obolibrary.org/obo/DRUGBANK_DB00295,none +6.1822876,MONDO:0016139,http://purl.obolibrary.org/obo/MONDO_0016139,qualitative or quantitative protein defects in neuromuscular diseases +6.1834204,UBERON:0013703,http://purl.obolibrary.org/obo/UBERON_0013703,integumentary projection +6.1834414,MONDO:0015161,http://purl.obolibrary.org/obo/MONDO_0015161,multiple congenital anomalies/dysmorphic syndrome without intellectual disability +6.1834834,PR:000001128,http://purl.obolibrary.org/obo/PR_000001128,chemokine receptor +6.1835674,MONDO:0043008,http://purl.obolibrary.org/obo/MONDO_0043008,genetic multiple congenital anomalies/dysmorphic syndrome without intellectual disability +6.1847648,UBERON:0005055,http://purl.obolibrary.org/obo/UBERON_0005055,zone of long bone +6.1855428,MONDO:0015909,http://purl.obolibrary.org/obo/MONDO_0015909,aplastic anemia +6.1877961,MONDO:0019824,http://purl.obolibrary.org/obo/MONDO_0019824,non-acquired pituitary hormone deficiency +6.189083,MONDO:0021080,http://purl.obolibrary.org/obo/MONDO_0021080,blood vessel neoplasm +6.1891252,GO:0016709,http://purl.obolibrary.org/obo/GO_0016709,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of one atom of oxygen" +6.1906675,PR:000002312,http://purl.obolibrary.org/obo/PR_000002312,caspase-3 +6.1909424,CL:0002139,http://purl.obolibrary.org/obo/CL_0002139,endothelial cell of vascular tree +6.1915347,MONDO:0005213,http://purl.obolibrary.org/obo/MONDO_0005213,uterine carcinoma +6.1924027,UBERON:0001690,http://purl.obolibrary.org/obo/UBERON_0001690,ear +6.1924875,GO:0035592,http://purl.obolibrary.org/obo/GO_0035592,establishment of protein localization to extracellular region +6.1924875,GO:0071692,http://purl.obolibrary.org/obo/GO_0071692,protein localization to extracellular region +6.1933775,SO:0001089,http://purl.obolibrary.org/obo/SO_0001089,post_translationally_modified_region +6.1938016,MONDO:0002267,http://purl.obolibrary.org/obo/MONDO_0002267,obstructive lung disease +6.1938864,DRUGBANK:DB10563,http://purl.obolibrary.org/obo/DRUGBANK_DB10563,none +6.1948839,GO:0008305,http://purl.obolibrary.org/obo/GO_0008305,integrin complex +6.1952449,MONDO:0005258,http://purl.obolibrary.org/obo/MONDO_0005258,autism spectrum disorder +6.1956486,MONDO:0018881,http://purl.obolibrary.org/obo/MONDO_0018881,myelodysplastic syndrome +6.1960099,GO:0098636,http://purl.obolibrary.org/obo/GO_0098636,protein complex involved in cell adhesion +6.1961161,GO:0044420,http://purl.obolibrary.org/obo/GO_0044420,none +6.1973074,HP:0002086,http://purl.obolibrary.org/obo/HP_0002086,Abnormality of the respiratory system +6.1973499,MONDO:0005178,http://purl.obolibrary.org/obo/MONDO_0005178,osteoarthritis +6.1975628,MONDO:0018555,http://purl.obolibrary.org/obo/MONDO_0018555,hypogonadotropic hypogonadism +6.1987771,GO:0004714,http://purl.obolibrary.org/obo/GO_0004714,transmembrane receptor protein tyrosine kinase activity +6.1988197,GO:0048589,http://purl.obolibrary.org/obo/GO_0048589,developmental growth +6.1989263,MONDO:0003182,http://purl.obolibrary.org/obo/MONDO_0003182,anterior horn disease +6.1992035,PR:000029945,http://purl.obolibrary.org/obo/PR_000029945,glutathione S-transferase +6.1994807,DRUGBANK:DB11091,http://purl.obolibrary.org/obo/DRUGBANK_DB11091,none +6.2020437,SO:0001442,http://purl.obolibrary.org/obo/SO_0001442,methionine +6.2031777,UBERON:0005764,http://purl.obolibrary.org/obo/UBERON_0005764,acellular membrane +6.2046775,GO:0060384,http://purl.obolibrary.org/obo/GO_0060384,innervation +6.205321,MONDO:0005271,http://purl.obolibrary.org/obo/MONDO_0005271,allergic disease +6.2056214,MONDO:0005763,http://purl.obolibrary.org/obo/MONDO_0005763,Flaviviridae infectious disease +6.2062655,PR:000050025,http://purl.obolibrary.org/obo/PR_000050025,angiotensinogenase +6.2073398,MONDO:0003569,http://purl.obolibrary.org/obo/MONDO_0003569,cranial nerve neuropathy +6.2074688,MONDO:0004868,http://purl.obolibrary.org/obo/MONDO_0004868,biliary tract disease +6.2094705,MONDO:0021054,http://purl.obolibrary.org/obo/MONDO_0021054,bone sarcoma +6.2098368,CL:0002321,http://purl.obolibrary.org/obo/CL_0002321,embryonic cell (metazoa) +6.2103111,PR:000013883,http://purl.obolibrary.org/obo/PR_000013883,renin +6.2103974,SO:0001263,http://purl.obolibrary.org/obo/SO_0001263,ncRNA_gene +6.2105483,UBERON:0018707,http://purl.obolibrary.org/obo/UBERON_0018707,bladder organ +6.2111093,MONDO:0005147,http://purl.obolibrary.org/obo/MONDO_0005147,type 1 diabetes mellitus +6.2129669,GO:0044217,http://purl.obolibrary.org/obo/GO_0044217,other organism part +6.2141567,UBERON:0003408,http://purl.obolibrary.org/obo/UBERON_0003408,gland of gut +6.2145464,GO:0004935,http://purl.obolibrary.org/obo/GO_0004935,adrenergic receptor activity +6.2147413,GO:0008610,http://purl.obolibrary.org/obo/GO_0008610,lipid biosynthetic process +6.2150229,GO:0016757,http://purl.obolibrary.org/obo/GO_0016757,glycosyltransferase activity +6.2156514,CHEBI:33595,http://purl.obolibrary.org/obo/CHEBI_33595,cyclic compound +6.216801,CHEBI:33832,http://purl.obolibrary.org/obo/CHEBI_33832,organic cyclic compound +6.2179954,MONDO:0003780,http://purl.obolibrary.org/obo/MONDO_0003780,T-cell immunodeficiency +6.2180388,MONDO:0005180,http://purl.obolibrary.org/obo/MONDO_0005180,Parkinson disease +6.2215871,HP:0000364,http://purl.obolibrary.org/obo/HP_0000364,Hearing abnormality +6.2220452,GO:0016810,http://purl.obolibrary.org/obo/GO_0016810,"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds" +6.2223725,GO:1901575,http://purl.obolibrary.org/obo/GO_1901575,organic substance catabolic process +6.2232022,UBERON:0006716,http://purl.obolibrary.org/obo/UBERON_0006716,mesopodium region +6.2245792,MONDO:0021156,http://purl.obolibrary.org/obo/MONDO_0021156,hypophysitis +6.2246667,UBERON:0001037,http://purl.obolibrary.org/obo/UBERON_0001037,strand of hair +6.2248199,DRUGBANK:DB00531,http://purl.obolibrary.org/obo/DRUGBANK_DB00531,none +6.2274267,SO:0000143,http://purl.obolibrary.org/obo/SO_0000143,assembly_component +6.2278436,MONDO:0011962,http://purl.obolibrary.org/obo/MONDO_0011962,endometrial cancer +6.2302384,MONDO:0016708,http://purl.obolibrary.org/obo/MONDO_0016708,embryonal tumor of neuroepithelial tissue +6.2310306,GO:0004104,http://purl.obolibrary.org/obo/GO_0004104,cholinesterase activity +6.2316031,HP:0011442,http://purl.obolibrary.org/obo/HP_0011442,Abnormal central motor function +6.2318234,GO:0140535,http://purl.obolibrary.org/obo/GO_0140535,intracellular protein-containing complex +6.2327712,MONDO:0100038,http://purl.obolibrary.org/obo/MONDO_0100038,complex neurodevelopmental disorder +6.2331021,UBERON:0008202,http://purl.obolibrary.org/obo/UBERON_0008202,bone of hip region +6.235001,UBERON:0001044,http://purl.obolibrary.org/obo/UBERON_0001044,saliva-secreting gland +6.2394312,DRUGBANK:DB14513,http://purl.obolibrary.org/obo/DRUGBANK_DB14513,none +6.2404974,CL:0000136,http://purl.obolibrary.org/obo/CL_0000136,fat cell +6.2412533,UBERON:0001383,http://purl.obolibrary.org/obo/UBERON_0001383,muscle of leg +6.2412755,CHEBI:35942,http://purl.obolibrary.org/obo/CHEBI_35942,neurotransmitter agent +6.2418762,HP:0012531,http://purl.obolibrary.org/obo/HP_0012531,Pain +6.2437919,PR:000001808,http://purl.obolibrary.org/obo/PR_000001808,C/C-C motif small inducible chemokine +6.2440595,MONDO:0004955,http://purl.obolibrary.org/obo/MONDO_0004955,metabolic syndrome +6.2445503,HP:0025142,http://purl.obolibrary.org/obo/HP_0025142,Constitutional symptom +6.2458677,DRUGBANK:DB12182,http://purl.obolibrary.org/obo/DRUGBANK_DB12182,none +6.2486869,MONDO:0019243,http://purl.obolibrary.org/obo/MONDO_0019243,inborn disorder of energy metabolism +6.2539213,MONDO:0020049,http://purl.obolibrary.org/obo/MONDO_0020049,autosomal anomaly +6.2547325,CL:0000037,http://purl.obolibrary.org/obo/CL_0000037,hematopoietic stem cell +6.254755,DRUGBANK:DB01285,http://purl.obolibrary.org/obo/DRUGBANK_DB01285,none +6.2582553,DRUGBANK:DB13598,http://purl.obolibrary.org/obo/DRUGBANK_DB13598,none +6.2591832,CHEBI:71300,http://purl.obolibrary.org/obo/CHEBI_71300,EC 2.* (transferase) inhibitor +6.2607695,MONDO:0019063,http://purl.obolibrary.org/obo/MONDO_0019063,vascular anomaly +6.2613139,MONDO:0015770,http://purl.obolibrary.org/obo/MONDO_0015770,congenital hypogonadotropic hypogonadism +6.2621538,CHEBI:76668,http://purl.obolibrary.org/obo/CHEBI_76668,EC 2.7.* (P-containing group transferase) inhibitor +6.2629717,GO:0004517,http://purl.obolibrary.org/obo/GO_0004517,nitric-oxide synthase activity +6.2635629,GO:0007608,http://purl.obolibrary.org/obo/GO_0007608,sensory perception of smell +6.2651105,CHEBI:37699,http://purl.obolibrary.org/obo/CHEBI_37699,protein kinase inhibitor +6.26527,PR:000036929,http://purl.obolibrary.org/obo/PR_000036929,tandem-copy polyubiquitin +6.2657485,MONDO:0005549,http://purl.obolibrary.org/obo/MONDO_0005549,renal cell adenocarcinoma +6.2657713,DRUGBANK:DB11300,http://purl.obolibrary.org/obo/DRUGBANK_DB11300,none +6.2672539,UBERON:0010210,http://purl.obolibrary.org/obo/UBERON_0010210,blood clot +6.2681674,MONDO:0015547,http://purl.obolibrary.org/obo/MONDO_0015547,genetic dementia +6.2682359,SO:0000985,http://purl.obolibrary.org/obo/SO_0000985,double +6.2687616,PR:000000104,http://purl.obolibrary.org/obo/PR_000000104,mitogen-activated protein kinase 3 +6.2691274,UBERON:0005769,http://purl.obolibrary.org/obo/UBERON_0005769,basement membrane of epithelium +6.2697222,HP:0004328,http://purl.obolibrary.org/obo/HP_0004328,Abnormal anterior eye segment morphology +6.2699739,SO:0000717,http://purl.obolibrary.org/obo/SO_0000717,reading_frame +6.271119,DRUGBANK:DB00161,http://purl.obolibrary.org/obo/DRUGBANK_DB00161,none +6.2721048,UBERON:0004454,http://purl.obolibrary.org/obo/UBERON_0004454,tarsal region +6.2726555,MONDO:0005371,http://purl.obolibrary.org/obo/MONDO_0005371,mood disorder +6.2731835,DRUGBANK:DB09462,http://purl.obolibrary.org/obo/DRUGBANK_DB09462,none +6.2748151,CL:0000311,http://purl.obolibrary.org/obo/CL_0000311,keratin accumulating cell +6.2749301,GO:0015077,http://purl.obolibrary.org/obo/GO_0015077,none +6.2759427,DRUGBANK:DB09222,http://purl.obolibrary.org/obo/DRUGBANK_DB09222,none +6.2761039,GO:0044306,http://purl.obolibrary.org/obo/GO_0044306,neuron projection terminus +6.2773483,MONDO:0012268,http://purl.obolibrary.org/obo/MONDO_0012268,AIDS +6.2783172,CL:0000312,http://purl.obolibrary.org/obo/CL_0000312,keratinocyte +6.2805816,DRUGBANK:DB00158,http://purl.obolibrary.org/obo/DRUGBANK_DB00158,none +6.2806279,NCBITaxon:2731342,http://purl.obolibrary.org/obo/NCBITaxon_2731342,Monodnaviria +6.2807898,NCBITaxon:2732092,http://purl.obolibrary.org/obo/NCBITaxon_2732092,Shotokuvirae +6.2817852,MONDO:0016333,http://purl.obolibrary.org/obo/MONDO_0016333,familial dilated cardiomyopathy +6.2838719,MONDO:0021636,http://purl.obolibrary.org/obo/MONDO_0021636,astrocytic tumor +6.2842665,UBERON:0004237,http://purl.obolibrary.org/obo/UBERON_0004237,blood vessel smooth muscle +6.2842897,MONDO:0005509,http://purl.obolibrary.org/obo/MONDO_0005509,histiocytoma +6.2847774,SO:0001439,http://purl.obolibrary.org/obo/SO_0001439,proline +6.2848006,GO:0044283,http://purl.obolibrary.org/obo/GO_0044283,small molecule biosynthetic process +6.2869867,MONDO:0000594,http://purl.obolibrary.org/obo/MONDO_0000594,pervasive developmental disorder +6.2871962,CL:0000079,http://purl.obolibrary.org/obo/CL_0000079,stratified epithelial cell +6.2871962,PR:000044628,http://purl.obolibrary.org/obo/PR_000044628,voltage-gated ion channel protein +6.2883146,CL:0000623,http://purl.obolibrary.org/obo/CL_0000623,natural killer cell +6.2887576,CL:0000240,http://purl.obolibrary.org/obo/CL_0000240,stratified squamous epithelial cell +6.290485,CL:0000237,http://purl.obolibrary.org/obo/CL_0000237,keratinizing barrier epithelial cell +6.2911627,DRUGBANK:DB09157,http://purl.obolibrary.org/obo/DRUGBANK_DB09157,none +6.2916538,GO:0005996,http://purl.obolibrary.org/obo/GO_0005996,monosaccharide metabolic process +6.2923792,GO:0001503,http://purl.obolibrary.org/obo/GO_0001503,ossification +6.2924962,MONDO:0015159,http://purl.obolibrary.org/obo/MONDO_0015159,multiple congenital anomalies/dysmorphic syndrome-intellectual disability +6.2929411,MONDO:0004986,http://purl.obolibrary.org/obo/MONDO_0004986,urinary bladder carcinoma +6.2933159,SO:0000735,http://purl.obolibrary.org/obo/SO_0000735,sequence_location +6.2940659,UBERON:0003826,http://purl.obolibrary.org/obo/UBERON_0003826,upper leg bone +6.2941128,UBERON:0000981,http://purl.obolibrary.org/obo/UBERON_0000981,femur +6.2941128,UBERON:0015052,http://purl.obolibrary.org/obo/UBERON_0015052,femur endochondral element +6.294277,UBERON:0016548,http://purl.obolibrary.org/obo/UBERON_0016548,central nervous system gray matter layer +6.2946288,UBERON:0005623,http://purl.obolibrary.org/obo/UBERON_0005623,semi-lunar valve +6.2956381,UBERON:0001774,http://purl.obolibrary.org/obo/UBERON_0001774,skeletal muscle of trunk +6.2965779,UBERON:0004449,http://purl.obolibrary.org/obo/UBERON_0004449,cerebral artery +6.2966014,GO:0051641,http://purl.obolibrary.org/obo/GO_0051641,cellular localization +6.2977068,HP:0000365,http://purl.obolibrary.org/obo/HP_0000365,Hearing impairment +6.2995204,GO:0044216,http://purl.obolibrary.org/obo/GO_0044216,none +6.2998977,GO:0043657,http://purl.obolibrary.org/obo/GO_0043657,host cell +6.3007706,UBERON:0001444,http://purl.obolibrary.org/obo/UBERON_0001444,subdivision of head +6.3012665,CL:0001065,http://purl.obolibrary.org/obo/CL_0001065,innate lymphoid cell +6.3020225,CL:0001067,http://purl.obolibrary.org/obo/CL_0001067,group 1 innate lymphoid cell +6.3026608,UBERON:0006077,http://purl.obolibrary.org/obo/UBERON_0006077,subdivision of vertebral column +6.3026844,NCBITaxon:9611,http://purl.obolibrary.org/obo/NCBITaxon_9611,Canis +6.3028973,NCBITaxon:9612,http://purl.obolibrary.org/obo/NCBITaxon_9612,Canis lupus +6.3030866,NCBITaxon:9615,http://purl.obolibrary.org/obo/NCBITaxon_9615,Canis lupus familiaris +6.3034415,GO:0030594,http://purl.obolibrary.org/obo/GO_0030594,neurotransmitter receptor activity +6.303986,NCBITaxon:8292,http://purl.obolibrary.org/obo/NCBITaxon_8292,Amphibia +6.3068792,GO:0061134,http://purl.obolibrary.org/obo/GO_0061134,peptidase regulator activity +6.3076632,PR:000009182,http://purl.obolibrary.org/obo/PR_000009182,insulin-like growth factor I +6.3098046,PR:000016954,http://purl.obolibrary.org/obo/PR_000016954,ubiquitin-60S ribosomal protein L40 +6.3099952,GO:0019318,http://purl.obolibrary.org/obo/GO_0019318,hexose metabolic process +6.310019,PR:000016963,http://purl.obolibrary.org/obo/PR_000016963,polyubiquitin-C +6.3109724,MONDO:0002142,http://purl.obolibrary.org/obo/MONDO_0002142,undifferentiated pleomorphic sarcoma +6.3110678,PR:000014271,http://purl.obolibrary.org/obo/PR_000014271,ubiquitin-40S ribosomal protein S27a +6.3114733,PR:000030443,http://purl.obolibrary.org/obo/PR_000030443,polyubiquitin-B +6.3119028,HP:0000924,http://purl.obolibrary.org/obo/HP_0000924,Abnormality of the skeletal system +6.3119744,SO:0000714,http://purl.obolibrary.org/obo/SO_0000714,nucleotide_motif +6.3128819,MONDO:0009807,http://purl.obolibrary.org/obo/MONDO_0009807,osteosarcoma +6.3143883,HP:0000517,http://purl.obolibrary.org/obo/HP_0000517,Abnormality of the lens +6.31446,HP:0000518,http://purl.obolibrary.org/obo/HP_0000518,Cataract +6.315777,PR:000021998,http://purl.obolibrary.org/obo/PR_000021998,neurotrophin +6.3158729,PR:000035728,http://purl.obolibrary.org/obo/PR_000035728,ubiquitin +6.3183682,GO:0006006,http://purl.obolibrary.org/obo/GO_0006006,glucose metabolic process +6.3195461,UBERON:0006134,http://purl.obolibrary.org/obo/UBERON_0006134,nerve fiber +6.3205808,GO:0016747,http://purl.obolibrary.org/obo/GO_0016747,"acyltransferase activity, transferring groups other than amino-acyl groups" +6.3210143,GO:0009607,http://purl.obolibrary.org/obo/GO_0009607,response to biotic stimulus +6.3210143,MONDO:0002494,http://purl.obolibrary.org/obo/MONDO_0002494,substance-related disorder +6.3238123,GO:0032787,http://purl.obolibrary.org/obo/GO_0032787,monocarboxylic acid metabolic process +6.3246339,GO:0015980,http://purl.obolibrary.org/obo/GO_0015980,energy derivation by oxidation of organic compounds +6.3252384,DRUGBANK:DB02338,http://purl.obolibrary.org/obo/DRUGBANK_DB02338,none +6.3253594,PR:000036821,http://purl.obolibrary.org/obo/PR_000036821,none +6.3266424,MONDO:0016450,http://purl.obolibrary.org/obo/MONDO_0016450,"autoimmune hemolytic anemia, cold type" +6.3272482,PR:000001391,http://purl.obolibrary.org/obo/PR_000001391,interleukin-4 +6.3304527,DRUGBANK:DB12982,http://purl.obolibrary.org/obo/DRUGBANK_DB12982,none +6.3305499,MONDO:0000942,http://purl.obolibrary.org/obo/MONDO_0000942,corneal disease +6.3312797,GO:0016765,http://purl.obolibrary.org/obo/GO_0016765,"transferase activity, transferring alkyl or aryl (other than methyl) groups" +6.3316692,UBERON:0000956,http://purl.obolibrary.org/obo/UBERON_0000956,cerebral cortex +6.3324242,UBERON:0002435,http://purl.obolibrary.org/obo/UBERON_0002435,striatum +6.3327897,NCBITaxon:2732415,http://purl.obolibrary.org/obo/NCBITaxon_2732415,Cossaviricota +6.333326,GO:0048583,http://purl.obolibrary.org/obo/GO_0048583,regulation of response to stimulus +6.3339846,GO:0048523,http://purl.obolibrary.org/obo/GO_0048523,negative regulation of cellular process +6.3340823,SO:0001650,http://purl.obolibrary.org/obo/SO_0001650,inframe_variant +6.3348146,SO:0000713,http://purl.obolibrary.org/obo/SO_0000713,DNA_motif +6.3349368,SO:0001992,http://purl.obolibrary.org/obo/SO_0001992,nonsynonymous_variant +6.3355231,HP:0012443,http://purl.obolibrary.org/obo/HP_0012443,Abnormality of brain morphology +6.3358898,DRUGBANK:DB00544,http://purl.obolibrary.org/obo/DRUGBANK_DB00544,none +6.3359387,UBERON:0004786,http://purl.obolibrary.org/obo/UBERON_0004786,gastrointestinal system mucosa +6.3370395,MONDO:0005044,http://purl.obolibrary.org/obo/MONDO_0005044,hypertensive disorder +6.337064,MONDO:0004946,http://purl.obolibrary.org/obo/MONDO_0004946,hypoglycemia +6.3373333,MONDO:0001593,http://purl.obolibrary.org/obo/MONDO_0001593,rectal disease +6.3376026,MONDO:0005040,http://purl.obolibrary.org/obo/MONDO_0005040,germ cell tumor +6.338166,CL:0002092,http://purl.obolibrary.org/obo/CL_0002092,bone marrow cell +6.3383866,DRUGBANK:DB00563,http://purl.obolibrary.org/obo/DRUGBANK_DB00563,none +6.3385337,PR:000003425,http://purl.obolibrary.org/obo/PR_000003425,Hsp70 family chaperone +6.3391221,MONDO:0019460,http://purl.obolibrary.org/obo/MONDO_0019460,acute leukemia of ambiguous lineage +6.339392,UBERON:0003893,http://purl.obolibrary.org/obo/UBERON_0003893,capsule +6.3402019,MONDO:0002909,http://purl.obolibrary.org/obo/MONDO_0002909,hyperglycemia +6.3411354,NCBITaxon:11157,http://purl.obolibrary.org/obo/NCBITaxon_11157,Mononegavirales +6.3416516,CHEBI:5686,http://purl.obolibrary.org/obo/CHEBI_5686,heterocyclic compound +6.3418238,CHEBI:24532,http://purl.obolibrary.org/obo/CHEBI_24532,organic heterocyclic compound +6.3445574,DRUGBANK:DB11118,http://purl.obolibrary.org/obo/DRUGBANK_DB11118,none +6.3446561,GO:0009719,http://purl.obolibrary.org/obo/GO_0009719,response to endogenous stimulus +6.347076,SO:0000203,http://purl.obolibrary.org/obo/SO_0000203,UTR +6.3471749,CL:0000062,http://purl.obolibrary.org/obo/CL_0000062,osteoblast +6.3471996,GO:0004536,http://purl.obolibrary.org/obo/GO_0004536,deoxyribonuclease activity +6.3488081,MONDO:0004980,http://purl.obolibrary.org/obo/MONDO_0004980,atopic eczema +6.3488329,MONDO:0011118,http://purl.obolibrary.org/obo/MONDO_0011118,bilineal acute myeloid leukemia +6.3502704,GO:0006812,http://purl.obolibrary.org/obo/GO_0006812,cation transport +6.3503696,SO:0000002,http://purl.obolibrary.org/obo/SO_0000002,sequence_secondary_structure +6.3506921,GO:0043207,http://purl.obolibrary.org/obo/GO_0043207,response to external biotic stimulus +6.3508162,UBERON:0010047,http://purl.obolibrary.org/obo/UBERON_0010047,oral gland +6.3517348,UBERON:0012360,http://purl.obolibrary.org/obo/UBERON_0012360,bone of jaw +6.3523559,HP:0011277,http://purl.obolibrary.org/obo/HP_0011277,Abnormality of the urinary system physiology +6.354969,UBERON:0001132,http://purl.obolibrary.org/obo/UBERON_0001132,parathyroid gland +6.3553927,CL:0000578,http://purl.obolibrary.org/obo/CL_0000578,experimentally modified cell in vitro +6.3553927,SO:0001637,http://purl.obolibrary.org/obo/SO_0001637,rRNA_gene +6.3558665,GO:0004520,http://purl.obolibrary.org/obo/GO_0004520,endodeoxyribonuclease activity +6.3606667,CHEBI:23357,http://purl.obolibrary.org/obo/CHEBI_23357,cofactor +6.3621967,SO:0001659,http://purl.obolibrary.org/obo/SO_0001659,promoter_element +6.3639049,MONDO:0004959,http://purl.obolibrary.org/obo/MONDO_0004959,plasma cell neoplasm +6.3644582,DRUGBANK:DB00997,http://purl.obolibrary.org/obo/DRUGBANK_DB00997,none +6.3652887,CL:0002274,http://purl.obolibrary.org/obo/CL_0002274,histamine secreting cell +6.3653894,MONDO:0005201,http://purl.obolibrary.org/obo/MONDO_0005201,restrictive cardiomyopathy +6.3655153,SO:0000028,http://purl.obolibrary.org/obo/SO_0000028,base_pair +6.3668005,GO:0030414,http://purl.obolibrary.org/obo/GO_0030414,peptidase inhibitor activity +6.367633,HP:0012373,http://purl.obolibrary.org/obo/HP_0012373,Abnormal eye physiology +6.3685671,SO:0000236,http://purl.obolibrary.org/obo/SO_0000236,ORF +6.371679,CL:0000154,http://purl.obolibrary.org/obo/CL_0000154,protein secreting cell +6.3719324,MONDO:0020278,http://purl.obolibrary.org/obo/MONDO_0020278,metabolic disease associated with ocular features +6.3722112,SO:0000736,http://purl.obolibrary.org/obo/SO_0000736,organelle_sequence +6.3730736,MONDO:0019692,http://purl.obolibrary.org/obo/MONDO_0019692,multiple epiphyseal dysplasia and pseudoachondroplasia +6.3731243,CL:0000327,http://purl.obolibrary.org/obo/CL_0000327,extracellular matrix secreting cell +6.3741653,MONDO:0016648,http://purl.obolibrary.org/obo/MONDO_0016648,multiple epiphyseal dysplasia +6.375131,MONDO:0001406,http://purl.obolibrary.org/obo/MONDO_0001406,peripheral nervous system neoplasm +6.3756651,DRUGBANK:DB00693,http://purl.obolibrary.org/obo/DRUGBANK_DB00693,none +6.3766578,UBERON:0002084,http://purl.obolibrary.org/obo/UBERON_0002084,heart left ventricle +6.3771163,DRUGBANK:DB00066,http://purl.obolibrary.org/obo/DRUGBANK_DB00066,none +6.3773966,CHEBI:52208,http://purl.obolibrary.org/obo/CHEBI_52208,biophysical role +6.3782379,MONDO:0005045,http://purl.obolibrary.org/obo/MONDO_0005045,hypertrophic cardiomyopathy +6.3783399,CHEBI:38632,http://purl.obolibrary.org/obo/CHEBI_38632,membrane transport modulator +6.3801782,GO:0051239,http://purl.obolibrary.org/obo/GO_0051239,regulation of multicellular organismal process +6.3805872,GO:0003006,http://purl.obolibrary.org/obo/GO_0003006,developmental process involved in reproduction +6.3806894,DRUGBANK:DB14031,http://purl.obolibrary.org/obo/DRUGBANK_DB14031,none +6.381073,GO:0060589,http://purl.obolibrary.org/obo/GO_0060589,nucleoside-triphosphatase regulator activity +6.3812009,CHEBI:67079,http://purl.obolibrary.org/obo/CHEBI_67079,anti-inflammatory agent +6.3812777,HP:0012211,http://purl.obolibrary.org/obo/HP_0012211,Abnormal renal physiology +6.3815591,CL:0009002,http://purl.obolibrary.org/obo/CL_0009002,inflammatory cell +6.3816871,GO:0019637,http://purl.obolibrary.org/obo/GO_0019637,organophosphate metabolic process +6.3820967,CL:0000010,http://purl.obolibrary.org/obo/CL_0000010,cultured cell +6.382404,CL:0000097,http://purl.obolibrary.org/obo/CL_0000097,mast cell +6.3826089,UBERON:0016529,http://purl.obolibrary.org/obo/UBERON_0016529,cortex of cerebral lobe +6.3829932,GO:0009057,http://purl.obolibrary.org/obo/GO_0009057,macromolecule catabolic process +6.3862789,GO:1901615,http://purl.obolibrary.org/obo/GO_1901615,organic hydroxy compound metabolic process +6.3864589,DRUGBANK:DB05829,http://purl.obolibrary.org/obo/DRUGBANK_DB05829,none +6.3871792,NCBITaxon:10404,http://purl.obolibrary.org/obo/NCBITaxon_10404,Hepadnaviridae +6.387797,NCBITaxon:2732515,http://purl.obolibrary.org/obo/NCBITaxon_2732515,Blubervirales +6.3892917,CL:0000526,http://purl.obolibrary.org/obo/CL_0000526,afferent neuron +6.3910211,SO:0000276,http://purl.obolibrary.org/obo/SO_0000276,miRNA +6.3933229,GO:0016716,http://purl.obolibrary.org/obo/GO_0016716,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, another compound as one donor, and incorporation of one atom of oxygen" +6.3937632,GO:0010608,http://purl.obolibrary.org/obo/GO_0010608,posttranscriptional regulation of gene expression +6.393815,UBERON:0003840,http://purl.obolibrary.org/obo/UBERON_0003840,hindlimb joint +6.3942555,PR:000016877,http://purl.obolibrary.org/obo/PR_000016877,tyrosinase +6.3943592,GO:0004503,http://purl.obolibrary.org/obo/GO_0004503,tyrosinase activity +6.3949555,MONDO:0000931,http://purl.obolibrary.org/obo/MONDO_0000931,endometrial disease +6.3952927,MONDO:0002492,http://purl.obolibrary.org/obo/MONDO_0002492,acute kidney failure +6.3953187,UBERON:0007245,http://purl.obolibrary.org/obo/UBERON_0007245,nuclear complex of neuraxis +6.3968506,DRUGBANK:DB03088,http://purl.obolibrary.org/obo/DRUGBANK_DB03088,none +6.3969026,HP:0012759,http://purl.obolibrary.org/obo/HP_0012759,Neurodevelopmental abnormality +6.3975785,CL:0002251,http://purl.obolibrary.org/obo/CL_0002251,epithelial cell of alimentary canal +6.3978906,SO:0001441,http://purl.obolibrary.org/obo/SO_0001441,phenylalanine +6.398489,NCBITaxon:10405,http://purl.obolibrary.org/obo/NCBITaxon_10405,Orthohepadnavirus +6.3986192,MONDO:0005462,http://purl.obolibrary.org/obo/MONDO_0005462,primitive neuroectodermal tumor +6.3994004,GO:0035556,http://purl.obolibrary.org/obo/GO_0035556,intracellular signal transduction +6.4027144,MONDO:0007576,http://purl.obolibrary.org/obo/MONDO_0007576,esophageal cancer +6.4028451,HP:0000083,http://purl.obolibrary.org/obo/HP_0000083,Renal insufficiency +6.4040221,UBERON:0000916,http://purl.obolibrary.org/obo/UBERON_0000916,abdomen +6.40486,MONDO:0019053,http://purl.obolibrary.org/obo/MONDO_0019053,peroxisomal disease +6.4059083,NCBITaxon:10407,http://purl.obolibrary.org/obo/NCBITaxon_10407,Hepatitis B virus +6.4059083,NCBITaxon:32443,http://purl.obolibrary.org/obo/NCBITaxon_32443,Teleostei +6.4060131,DRUGBANK:DB12257,http://purl.obolibrary.org/obo/DRUGBANK_DB12257,none +6.4061967,NCBITaxon:186623,http://purl.obolibrary.org/obo/NCBITaxon_186623,Actinopteri +6.4061967,NCBITaxon:41665,http://purl.obolibrary.org/obo/NCBITaxon_41665,Neopterygii +6.4064066,MONDO:0016334,http://purl.obolibrary.org/obo/MONDO_0016334,neuromuscular disease with dilated cardiomyopathy +6.4064328,GO:0022900,http://purl.obolibrary.org/obo/GO_0022900,electron transport chain +6.4064853,MONDO:0019747,http://purl.obolibrary.org/obo/MONDO_0019747,hematological disorder with renal involvement +6.4091387,MONDO:0018922,http://purl.obolibrary.org/obo/MONDO_0018922,cold agglutinin disease +6.409507,CL:0012001,http://purl.obolibrary.org/obo/CL_0012001,neuron of the forebrain +6.4100335,MONDO:0004375,http://purl.obolibrary.org/obo/MONDO_0004375,end stage renal failure +6.4110082,UBERON:0002137,http://purl.obolibrary.org/obo/UBERON_0002137,aortic valve +6.412274,MONDO:0024575,http://purl.obolibrary.org/obo/MONDO_0024575,pregnancy disorder +6.4124324,GO:0007599,http://purl.obolibrary.org/obo/GO_0007599,hemostasis +6.4135415,SO:1000008,http://purl.obolibrary.org/obo/SO_1000008,point_mutation +6.4144138,UBERON:0000200,http://purl.obolibrary.org/obo/UBERON_0000200,gyrus +6.4145196,MONDO:0006600,http://purl.obolibrary.org/obo/MONDO_0006600,pigmentation disease +6.4150487,MONDO:0000636,http://purl.obolibrary.org/obo/MONDO_0000636,musculoskeletal system benign neoplasm +6.4152339,NCBITaxon:58023,http://purl.obolibrary.org/obo/NCBITaxon_58023,Tracheophyta +6.4154722,NCBITaxon:78536,http://purl.obolibrary.org/obo/NCBITaxon_78536,Euphyllophyta +6.4157369,DRUGBANK:DB12765,http://purl.obolibrary.org/obo/DRUGBANK_DB12765,none +6.4159753,NCBITaxon:8353,http://purl.obolibrary.org/obo/NCBITaxon_8353,Xenopus +6.4162137,MONDO:0700003,http://purl.obolibrary.org/obo/MONDO_0700003,obstetric disorder +6.4162667,NCBITaxon:58024,http://purl.obolibrary.org/obo/NCBITaxon_58024,Spermatophyta +6.4166907,MONDO:0016899,http://purl.obolibrary.org/obo/MONDO_0016899,Duchenne and Becker muscular dystrophy +6.4167967,GO:0008233,http://purl.obolibrary.org/obo/GO_0008233,peptidase activity +6.4192916,MONDO:0000590,http://purl.obolibrary.org/obo/MONDO_0000590,autoimmune disease of peripheral nervous system +6.4197966,MONDO:0016147,http://purl.obolibrary.org/obo/MONDO_0016147,qualitative or quantitative defects of dystrophin +6.4197966,UBERON:3010752,http://purl.obolibrary.org/obo/UBERON_3010752,none +6.4199562,NCBITaxon:3398,http://purl.obolibrary.org/obo/NCBITaxon_3398,Magnoliopsida +6.4216329,DRUGBANK:DB00184,http://purl.obolibrary.org/obo/DRUGBANK_DB00184,none +6.4229123,NCBITaxon:1437183,http://purl.obolibrary.org/obo/NCBITaxon_1437183,Mesangiospermae +6.4229923,SO:0001448,http://purl.obolibrary.org/obo/SO_0001448,glutamine +6.423099,UBERON:0006058,http://purl.obolibrary.org/obo/UBERON_0006058,multi-limb segment region +6.4241132,MONDO:0002561,http://purl.obolibrary.org/obo/MONDO_0002561,lysosomal storage disease +6.4242467,GO:0004364,http://purl.obolibrary.org/obo/GO_0004364,glutathione transferase activity +6.4243268,PR:000001395,http://purl.obolibrary.org/obo/PR_000001395,interleukin-8 +6.4251017,UBERON:0010316,http://purl.obolibrary.org/obo/UBERON_0010316,germ layer / neural crest +6.4251551,GO:0006909,http://purl.obolibrary.org/obo/GO_0006909,phagocytosis +6.4269477,UBERON:0002100,http://purl.obolibrary.org/obo/UBERON_0002100,trunk +6.4271888,SO:0000727,http://purl.obolibrary.org/obo/SO_0000727,cis_regulatory_module +6.4272691,DRUGBANK:DB15834,http://purl.obolibrary.org/obo/DRUGBANK_DB15834,none +6.427671,UBERON:0000978,http://purl.obolibrary.org/obo/UBERON_0000978,leg +6.4280731,UBERON:0005800,http://purl.obolibrary.org/obo/UBERON_0005800,section of aorta +6.428663,PR:000008220,http://purl.obolibrary.org/obo/PR_000008220,GRB2-related adapter protein 2 +6.429844,GO:0031988,http://purl.obolibrary.org/obo/GO_0031988,membrane-bounded vesicle +6.430032,PR:000001096,http://purl.obolibrary.org/obo/PR_000001096,Toll-like receptor +6.4305694,MONDO:0015470,http://purl.obolibrary.org/obo/MONDO_0015470,familial isolated dilated cardiomyopathy +6.430892,NCBITaxon:41666,http://purl.obolibrary.org/obo/NCBITaxon_41666,Batrachia +6.4309995,DRUGBANK:DB00172,http://purl.obolibrary.org/obo/DRUGBANK_DB00172,none +6.4313491,MONDO:0010542,http://purl.obolibrary.org/obo/MONDO_0010542,dilated cardiomyopathy 3B +6.4320218,NCBITaxon:8342,http://purl.obolibrary.org/obo/NCBITaxon_8342,Anura +6.4338267,PR:000000182,http://purl.obolibrary.org/obo/PR_000000182,TGF-beta 1 +6.4340154,PR:Q9LDA4,http://purl.obolibrary.org/obo/PR_Q9LDA4,none +6.4340964,DRUGBANK:DB00148,http://purl.obolibrary.org/obo/DRUGBANK_DB00148,none +6.4341503,DRUGBANK:DB14128,http://purl.obolibrary.org/obo/DRUGBANK_DB14128,none +6.4343391,MONDO:0002165,http://purl.obolibrary.org/obo/MONDO_0002165,rectal neoplasm +6.4348518,SO:0001029,http://purl.obolibrary.org/obo/SO_0001029,direction_attribute +6.4349058,NCBITaxon:9963,http://purl.obolibrary.org/obo/NCBITaxon_9963,Caprinae +6.4353918,GO:0043414,http://purl.obolibrary.org/obo/GO_0043414,macromolecule methylation +6.4357159,DRUGBANK:DB15150,http://purl.obolibrary.org/obo/DRUGBANK_DB15150,none +6.4363645,GO:0001525,http://purl.obolibrary.org/obo/GO_0001525,angiogenesis +6.4375275,SO:0000737,http://purl.obolibrary.org/obo/SO_0000737,mitochondrial_sequence +6.439234,GO:0140678,http://purl.obolibrary.org/obo/GO_0140678,molecular function inhibitor activity +6.4404818,PR:000004523,http://purl.obolibrary.org/obo/PR_000004523,vasopressin-neurophysin 2-copeptin +6.4414051,MONDO:0003382,http://purl.obolibrary.org/obo/MONDO_0003382,eyelid disease +6.4414323,SO:0001445,http://purl.obolibrary.org/obo/SO_0001445,threonine +6.4436082,SO:0000165,http://purl.obolibrary.org/obo/SO_0000165,enhancer +6.4437444,CL:0000101,http://purl.obolibrary.org/obo/CL_0000101,sensory neuron +6.4439895,CL:0000630,http://purl.obolibrary.org/obo/CL_0000630,supportive cell +6.4449979,NCBITaxon:71240,http://purl.obolibrary.org/obo/NCBITaxon_71240,eudicotyledons +6.4458708,GO:0031966,http://purl.obolibrary.org/obo/GO_0031966,mitochondrial membrane +6.446881,NCBITaxon:91827,http://purl.obolibrary.org/obo/NCBITaxon_91827,Gunneridae +6.4469083,NCBITaxon:1437201,http://purl.obolibrary.org/obo/NCBITaxon_1437201,Pentapetalae +6.4477556,DRUGBANK:DB14085,http://purl.obolibrary.org/obo/DRUGBANK_DB14085,none +6.4477829,NCBITaxon:10293,http://purl.obolibrary.org/obo/NCBITaxon_10293,Alphaherpesvirinae +6.4481931,GO:0040029,http://purl.obolibrary.org/obo/GO_0040029,"regulation of gene expression, epigenetic" +6.4505209,UBERON:0007376,http://purl.obolibrary.org/obo/UBERON_0007376,outer epithelium +6.4530465,GO:0062023,http://purl.obolibrary.org/obo/GO_0062023,collagen-containing extracellular matrix +6.4547797,PR:000001327,http://purl.obolibrary.org/obo/PR_000001327,cadherin +6.4550826,GO:0048666,http://purl.obolibrary.org/obo/GO_0048666,neuron development +6.4559093,MONDO:0016180,http://purl.obolibrary.org/obo/MONDO_0016180,hematological disease associated with an acquired peripheral neuropathy +6.4562953,UBERON:0003440,http://purl.obolibrary.org/obo/UBERON_0003440,limb nerve +6.4578131,DRUGBANK:DB00974,http://purl.obolibrary.org/obo/DRUGBANK_DB00974,none +6.4580893,DRUGBANK:DB03057,http://purl.obolibrary.org/obo/DRUGBANK_DB03057,none +6.4586144,GO:0048699,http://purl.obolibrary.org/obo/GO_0048699,generation of neurons +6.458642,PR:000029191,http://purl.obolibrary.org/obo/PR_000029191,cyclin-related protein +6.4598313,GO:0016441,http://purl.obolibrary.org/obo/GO_0016441,posttranscriptional gene silencing +6.4603572,DRUGBANK:DB14160,http://purl.obolibrary.org/obo/DRUGBANK_DB14160,none +6.4609942,PR:000013429,http://purl.obolibrary.org/obo/PR_000013429,parathyroid hormone +6.4611051,GO:0009628,http://purl.obolibrary.org/obo/GO_0009628,response to abiotic stimulus +6.4615485,GO:0016298,http://purl.obolibrary.org/obo/GO_0016298,lipase activity +6.4631854,SO:0001032,http://purl.obolibrary.org/obo/SO_0001032,mitochondrial_DNA +6.4636576,UBERON:0001032,http://purl.obolibrary.org/obo/UBERON_0001032,sensory system +6.4661888,GO:0003700,http://purl.obolibrary.org/obo/GO_0003700,DNA-binding transcription factor activity +6.4668017,MONDO:0021205,http://purl.obolibrary.org/obo/MONDO_0021205,disease of ear +6.4668853,MONDO:0024481,http://purl.obolibrary.org/obo/MONDO_0024481,skin appendage disease +6.4670246,DRUGBANK:DB15753,http://purl.obolibrary.org/obo/DRUGBANK_DB15753,none +6.467164,UBERON:0006555,http://purl.obolibrary.org/obo/UBERON_0006555,excretory tube +6.4672477,GO:0005604,http://purl.obolibrary.org/obo/GO_0005604,basement membrane +6.4686985,GO:0000981,http://purl.obolibrary.org/obo/GO_0000981,"DNA-binding transcription factor activity, RNA polymerase II-specific" +6.4687264,GO:0004879,http://purl.obolibrary.org/obo/GO_0004879,nuclear receptor activity +6.4687264,GO:0098531,http://purl.obolibrary.org/obo/GO_0098531,ligand-activated transcription factor activity +6.4704031,PR:000002082,http://purl.obolibrary.org/obo/PR_000002082,receptor tyrosine-protein kinase erbB-2 +6.4711305,MONDO:0005101,http://purl.obolibrary.org/obo/MONDO_0005101,ulcerative colitis +6.4715224,MONDO:0021355,http://purl.obolibrary.org/obo/MONDO_0021355,neoplasm of esophagus +6.4718025,DRUGBANK:DB00907,http://purl.obolibrary.org/obo/DRUGBANK_DB00907,none +6.4725589,HP:0100543,http://purl.obolibrary.org/obo/HP_0100543,Cognitive impairment +6.472615,CL:2000029,http://purl.obolibrary.org/obo/CL_2000029,central nervous system neuron +6.4730916,MONDO:0002661,http://purl.obolibrary.org/obo/MONDO_0002661,uveal disease +6.4748318,MONDO:0019356,http://purl.obolibrary.org/obo/MONDO_0019356,urogenital tract malformation +6.4757593,DRUGBANK:DB00040,http://purl.obolibrary.org/obo/DRUGBANK_DB00040,none +6.4760124,NCBITaxon:2497570,http://purl.obolibrary.org/obo/NCBITaxon_2497570,Haploviricotina +6.4760686,GO:0035004,http://purl.obolibrary.org/obo/GO_0035004,phosphatidylinositol 3-kinase activity +6.476153,PR:000004168,http://purl.obolibrary.org/obo/PR_000004168,amyloid-beta A4 protein +6.4773352,NCBITaxon:2497574,http://purl.obolibrary.org/obo/NCBITaxon_2497574,Monjiviricetes +6.4778422,GO:0016741,http://purl.obolibrary.org/obo/GO_0016741,"transferase activity, transferring one-carbon groups" +6.4783777,GO:0005577,http://purl.obolibrary.org/obo/GO_0005577,fibrinogen complex +6.4786597,MONDO:0005152,http://purl.obolibrary.org/obo/MONDO_0005152,hypopituitarism +6.4794214,MONDO:0003634,http://purl.obolibrary.org/obo/MONDO_0003634,proteinuria +6.4796754,HP:0001249,http://purl.obolibrary.org/obo/HP_0001249,Intellectual disability +6.4800424,DRUGBANK:DB02375,http://purl.obolibrary.org/obo/DRUGBANK_DB02375,none +6.4815402,SO:0000253,http://purl.obolibrary.org/obo/SO_0000253,tRNA +6.4817665,GO:0048285,http://purl.obolibrary.org/obo/GO_0048285,organelle fission +6.4818797,GO:0016874,http://purl.obolibrary.org/obo/GO_0016874,ligase activity +6.4822192,MONDO:0002887,http://purl.obolibrary.org/obo/MONDO_0002887,bile duct disease +6.482927,MONDO:0100342,http://purl.obolibrary.org/obo/MONDO_0100342,malignant glioma +6.4831819,MONDO:0021190,http://purl.obolibrary.org/obo/MONDO_0021190,DNA repair disease +6.4836636,NCBITaxon:71275,http://purl.obolibrary.org/obo/NCBITaxon_71275,rosids +6.4840888,MONDO:0044937,http://purl.obolibrary.org/obo/MONDO_0044937,rectal carcinoma +6.4841172,UBERON:0000120,http://purl.obolibrary.org/obo/UBERON_0000120,blood brain barrier +6.4851668,MONDO:0042983,http://purl.obolibrary.org/obo/MONDO_0042983,neurocutaneous syndrome +6.4866439,DRUGBANK:DB00122,http://purl.obolibrary.org/obo/DRUGBANK_DB00122,none +6.4868429,UBERON:0000043,http://purl.obolibrary.org/obo/UBERON_0000043,tendon +6.4885218,HP:0000729,http://purl.obolibrary.org/obo/HP_0000729,Autistic behavior +6.4896046,GO:0016023,http://purl.obolibrary.org/obo/GO_0016023,"cytoplasmic, membrane-bounded vesicle" +6.4899753,DRUGBANK:DB04557,http://purl.obolibrary.org/obo/DRUGBANK_DB04557,none +6.49066,HP:0004370,http://purl.obolibrary.org/obo/HP_0004370,Abnormality of temperature regulation +6.4908884,MONDO:0018398,http://purl.obolibrary.org/obo/MONDO_0018398,female infertility due to a congenital hypogonadotropic hypogonadism +6.4918308,SO:0001454,http://purl.obolibrary.org/obo/SO_0001454,glutamic_acid +6.4923167,MONDO:0021154,http://purl.obolibrary.org/obo/MONDO_0021154,dermis disease +6.4925169,CHEBI:38101,http://purl.obolibrary.org/obo/CHEBI_38101,organonitrogen heterocyclic compound +6.4932606,CHEBI:37670,http://purl.obolibrary.org/obo/CHEBI_37670,protease inhibitor +6.4946064,DRUGBANK:DB00009,http://purl.obolibrary.org/obo/DRUGBANK_DB00009,none +6.4946637,MONDO:0002120,http://purl.obolibrary.org/obo/MONDO_0002120,neuroendocrine carcinoma +6.494807,UBERON:0007846,http://purl.obolibrary.org/obo/UBERON_0007846,dense regular connective tissue +6.4950936,GO:0051707,http://purl.obolibrary.org/obo/GO_0051707,response to other organism +6.4950936,UBERON:0007845,http://purl.obolibrary.org/obo/UBERON_0007845,regular connective tissue +6.4951796,CL:0002609,http://purl.obolibrary.org/obo/CL_0002609,neuron of cerebral cortex +6.4952369,MONDO:0019288,http://purl.obolibrary.org/obo/MONDO_0019288,skin pigmentation disease +6.4953803,NCBITaxon:1489341,http://purl.obolibrary.org/obo/NCBITaxon_1489341,Osteoglossocephalai +6.4954377,DRUGBANK:DB00328,http://purl.obolibrary.org/obo/DRUGBANK_DB00328,none +6.4957818,NCBITaxon:186625,http://purl.obolibrary.org/obo/NCBITaxon_186625,Clupeocephala +6.4977632,GO:0006304,http://purl.obolibrary.org/obo/GO_0006304,DNA modification +6.4984245,GO:0031047,http://purl.obolibrary.org/obo/GO_0031047,gene silencing by RNA +6.4997773,CL:0010012,http://purl.obolibrary.org/obo/CL_0010012,cerebral cortex neuron +6.5000654,MONDO:0009693,http://purl.obolibrary.org/obo/MONDO_0009693,plasma cell myeloma +6.5010454,HP:0011842,http://purl.obolibrary.org/obo/HP_0011842,Abnormality of skeletal morphology +6.5015935,MONDO:0006316,http://purl.obolibrary.org/obo/MONDO_0006316,neuroblastic tumor +6.502344,MONDO:0037871,http://purl.obolibrary.org/obo/MONDO_0037871,amino acid metabolism disease +6.5026616,CHEBI:50113,http://purl.obolibrary.org/obo/CHEBI_50113,androgen +6.5033262,DRUGBANK:DB03166,http://purl.obolibrary.org/obo/DRUGBANK_DB03166,none +6.5034418,MONDO:0020249,http://purl.obolibrary.org/obo/MONDO_0020249,hereditary optic neuropathy +6.5035864,MONDO:0004736,http://purl.obolibrary.org/obo/MONDO_0004736,inherited amino acid metabolic disorder +6.5048014,GO:0007159,http://purl.obolibrary.org/obo/GO_0007159,leukocyte cell-cell adhesion +6.5052647,CL:0000912,http://purl.obolibrary.org/obo/CL_0000912,helper T cell +6.5059889,GO:0071742,http://purl.obolibrary.org/obo/GO_0071742,IgE immunoglobulin complex +6.5070908,CHEBI:35472,http://purl.obolibrary.org/obo/CHEBI_35472,anti-inflammatory drug +6.5071199,GO:0015850,http://purl.obolibrary.org/obo/GO_0015850,organic hydroxy compound transport +6.5113066,MONDO:0024476,http://purl.obolibrary.org/obo/MONDO_0024476,epithelial neoplasm of rectum +6.5118312,PR:000001933,http://purl.obolibrary.org/obo/PR_000001933,signal transducer and transcription activator STAT +6.5124728,GO:0071746,http://purl.obolibrary.org/obo/GO_0071746,"IgA immunoglobulin complex, circulating" +6.5138739,HP:0001945,http://purl.obolibrary.org/obo/HP_0001945,Fever +6.5170922,MONDO:0019512,http://purl.obolibrary.org/obo/MONDO_0019512,congenital heart malformation +6.5182064,UBERON:0004768,http://purl.obolibrary.org/obo/UBERON_0004768,bone of lower jaw +6.5185879,DRUGBANK:DB00130,http://purl.obolibrary.org/obo/DRUGBANK_DB00130,none +6.5190576,MONDO:0003785,http://purl.obolibrary.org/obo/MONDO_0003785,leukopenia +6.5194394,GO:0071745,http://purl.obolibrary.org/obo/GO_0071745,IgA immunoglobulin complex +6.5206738,GO:0006306,http://purl.obolibrary.org/obo/GO_0006306,DNA methylation +6.5217037,MONDO:0017368,http://purl.obolibrary.org/obo/MONDO_0017368,systemic disease with skin involvement +6.5229705,UBERON:2001805,http://purl.obolibrary.org/obo/UBERON_2001805,articular bone +6.5230294,NCBITaxon:91836,http://purl.obolibrary.org/obo/NCBITaxon_91836,none +6.5231473,GO:0060348,http://purl.obolibrary.org/obo/GO_0060348,bone development +6.5251837,GO:0044728,http://purl.obolibrary.org/obo/GO_0044728,DNA methylation or demethylation +6.5253315,GO:0006305,http://purl.obolibrary.org/obo/GO_0006305,DNA alkylation +6.5264549,GO:0035194,http://purl.obolibrary.org/obo/GO_0035194,post-transcriptional gene silencing by RNA +6.5266028,GO:0000280,http://purl.obolibrary.org/obo/GO_0000280,nuclear division +6.526662,MONDO:0004884,http://purl.obolibrary.org/obo/MONDO_0004884,eye degenerative disease +6.5270467,SO:0000357,http://purl.obolibrary.org/obo/SO_0000357,flanked +6.5282906,DRUGBANK:DB01370,http://purl.obolibrary.org/obo/DRUGBANK_DB01370,none +6.5284684,MONDO:0005072,http://purl.obolibrary.org/obo/MONDO_0005072,neuroblastoma +6.5288834,DRUGBANK:DB00163,http://purl.obolibrary.org/obo/DRUGBANK_DB00163,none +6.5290021,GO:1901135,http://purl.obolibrary.org/obo/GO_1901135,carbohydrate derivative metabolic process +6.5294173,GO:0016246,http://purl.obolibrary.org/obo/GO_0016246,RNA interference +6.5306642,HP:0000717,http://purl.obolibrary.org/obo/HP_0000717,Autism +6.5321505,NCBITaxon:8352,http://purl.obolibrary.org/obo/NCBITaxon_8352,Pipidae +6.5321803,NCBITaxon:30319,http://purl.obolibrary.org/obo/NCBITaxon_30319,Pipoidea +6.5322695,NCBITaxon:8360,http://purl.obolibrary.org/obo/NCBITaxon_8360,Xenopodinae +6.5337583,GO:0015758,http://purl.obolibrary.org/obo/GO_0015758,none +6.5340563,GO:0006935,http://purl.obolibrary.org/obo/GO_0006935,chemotaxis +6.5344439,CHEBI:25693,http://purl.obolibrary.org/obo/CHEBI_25693,organic heteromonocyclic compound +6.5344439,CHEBI:33661,http://purl.obolibrary.org/obo/CHEBI_33661,monocyclic compound +6.5344439,CHEBI:33670,http://purl.obolibrary.org/obo/CHEBI_33670,heteromonocyclic compound +6.5350404,UBERON:0001043,http://purl.obolibrary.org/obo/UBERON_0001043,esophagus +6.535309,CHEBI:35211,http://purl.obolibrary.org/obo/CHEBI_35211,radioactive label +6.5359359,GO:0008168,http://purl.obolibrary.org/obo/GO_0008168,methyltransferase activity +6.5361748,NCBITaxon:3699,http://purl.obolibrary.org/obo/NCBITaxon_3699,none +6.5364138,NCBITaxon:3700,http://purl.obolibrary.org/obo/NCBITaxon_3700,none +6.5379985,GO:0071743,http://purl.obolibrary.org/obo/GO_0071743,"IgE immunoglobulin complex, circulating" +6.5380883,SO:0000401,http://purl.obolibrary.org/obo/SO_0000401,gene_attribute +6.5390464,GO:0008643,http://purl.obolibrary.org/obo/GO_0008643,carbohydrate transport +6.5412956,UBERON:0003831,http://purl.obolibrary.org/obo/UBERON_0003831,respiratory system muscle +6.5427377,UBERON:0005631,http://purl.obolibrary.org/obo/UBERON_0005631,extraembryonic membrane +6.5440615,GO:0051705,http://purl.obolibrary.org/obo/GO_0051705,none +6.5443626,MONDO:0017343,http://purl.obolibrary.org/obo/MONDO_0017343,Epstein-Barr virus-associated malignant lymphoproliferative disorder +6.5451459,MONDO:0001941,http://purl.obolibrary.org/obo/MONDO_0001941,blindness (disorder) +6.545387,CL:0000167,http://purl.obolibrary.org/obo/CL_0000167,peptide hormone secreting cell +6.5454172,CHEBI:60311,http://purl.obolibrary.org/obo/CHEBI_60311,thyroid hormone +6.5455378,UBERON:0003037,http://purl.obolibrary.org/obo/UBERON_0003037,septum +6.5472578,UBERON:0003891,http://purl.obolibrary.org/obo/UBERON_0003891,stroma +6.5478318,GO:0055085,http://purl.obolibrary.org/obo/GO_0055085,transmembrane transport +6.5485271,MONDO:0005420,http://purl.obolibrary.org/obo/MONDO_0005420,hypothyroidism +6.5489203,UBERON:0000451,http://purl.obolibrary.org/obo/UBERON_0000451,prefrontal cortex +6.549677,HP:0002017,http://purl.obolibrary.org/obo/HP_0002017,Nausea and vomiting +6.5502524,SO:0000289,http://purl.obolibrary.org/obo/SO_0000289,microsatellite +6.5504038,DRUGBANK:DB00917,http://purl.obolibrary.org/obo/DRUGBANK_DB00917,none +6.550525,HP:0012252,http://purl.obolibrary.org/obo/HP_0012252,Abnormal respiratory system morphology +6.5507675,PR:000007891,http://purl.obolibrary.org/obo/PR_000007891,pro-glucagon +6.5514951,NCBITaxon:186634,http://purl.obolibrary.org/obo/NCBITaxon_186634,Otomorpha +6.5514951,NCBITaxon:32519,http://purl.obolibrary.org/obo/NCBITaxon_32519,Ostariophysi +6.5531039,MONDO:0005231,http://purl.obolibrary.org/obo/MONDO_0005231,hepatitis C virus infection +6.5534382,MONDO:0005083,http://purl.obolibrary.org/obo/MONDO_0005083,psoriasis +6.553499,NCBITaxon:186626,http://purl.obolibrary.org/obo/NCBITaxon_186626,Otophysi +6.5553241,MONDO:0005485,http://purl.obolibrary.org/obo/MONDO_0005485,psychotic disorder +6.5555373,MONDO:0044999,http://purl.obolibrary.org/obo/MONDO_0044999,scalp disease +6.5558723,MONDO:0023644,http://purl.obolibrary.org/obo/MONDO_0023644,lip and oral cavity carcinoma +6.5594429,NCBITaxon:32341,http://purl.obolibrary.org/obo/NCBITaxon_32341,Sophophora +6.5601157,NCBITaxon:186627,http://purl.obolibrary.org/obo/NCBITaxon_186627,Cypriniphysae +6.5601157,NCBITaxon:7952,http://purl.obolibrary.org/obo/NCBITaxon_7952,Cypriniformes +6.5601463,NCBITaxon:30727,http://purl.obolibrary.org/obo/NCBITaxon_30727,Cyprinoidei +6.5601463,NCBITaxon:7953,http://purl.obolibrary.org/obo/NCBITaxon_7953,Cyprinidae +6.5603299,MONDO:0009332,http://purl.obolibrary.org/obo/MONDO_0009332,congenital hematological disorder +6.5614321,MONDO:0000649,http://purl.obolibrary.org/obo/MONDO_0000649,sensory system cancer +6.5624129,GO:0016614,http://purl.obolibrary.org/obo/GO_0016614,"oxidoreductase activity, acting on CH-OH group of donors" +6.5630877,DRUGBANK:DB04630,http://purl.obolibrary.org/obo/DRUGBANK_DB04630,none +6.5640394,GO:0051301,http://purl.obolibrary.org/obo/GO_0051301,cell division +6.5651764,UBERON:0004256,http://purl.obolibrary.org/obo/UBERON_0004256,hindlimb zeugopod muscle +6.5662532,HP:0002088,http://purl.obolibrary.org/obo/HP_0002088,Abnormal lung morphology +6.566869,DRUGBANK:DB02377,http://purl.obolibrary.org/obo/DRUGBANK_DB02377,none +6.5671771,NCBITaxon:2743709,http://purl.obolibrary.org/obo/NCBITaxon_2743709,Danionidae +6.5672079,NCBITaxon:7954,http://purl.obolibrary.org/obo/NCBITaxon_7954,Danio +6.5672387,NCBITaxon:2743711,http://purl.obolibrary.org/obo/NCBITaxon_2743711,Danioninae +6.5672695,NCBITaxon:151340,http://purl.obolibrary.org/obo/NCBITaxon_151340,Papillomaviridae +6.5676701,NCBITaxon:7955,http://purl.obolibrary.org/obo/NCBITaxon_7955,Danio rerio +6.5677626,MONDO:0001223,http://purl.obolibrary.org/obo/MONDO_0001223,parathyroid gland disease +6.5682251,PR:000009758,http://purl.obolibrary.org/obo/PR_000009758,leptin +6.5684102,CL:0000153,http://purl.obolibrary.org/obo/CL_0000153,glycosaminoglycan secreting cell +6.5685028,CL:0000447,http://purl.obolibrary.org/obo/CL_0000447,carbohydrate secreting cell +6.568873,HP:0003011,http://purl.obolibrary.org/obo/HP_0003011,Abnormality of the musculature +6.571407,DRUGBANK:DB10575,http://purl.obolibrary.org/obo/DRUGBANK_DB10575,none +6.5714998,PR:000013428,http://purl.obolibrary.org/obo/PR_000013428,prostaglandin G/H synthase 2 +6.5720569,DRUGBANK:DB09126,http://purl.obolibrary.org/obo/DRUGBANK_DB09126,none +6.575251,UBERON:0001443,http://purl.obolibrary.org/obo/UBERON_0001443,chest +6.5761521,NCBITaxon:2732421,http://purl.obolibrary.org/obo/NCBITaxon_2732421,Papovaviricetes +6.5768363,CHEBI:50996,http://purl.obolibrary.org/obo/CHEBI_50996,tertiary amino compound +6.5771474,NCBITaxon:2732533,http://purl.obolibrary.org/obo/NCBITaxon_2732533,Zurhausenvirales +6.5778323,MONDO:0000837,http://purl.obolibrary.org/obo/MONDO_0000837,bone resorption disease +6.5790475,DRUGBANK:DB00603,http://purl.obolibrary.org/obo/DRUGBANK_DB00603,none +6.5790475,GO:1903047,http://purl.obolibrary.org/obo/GO_1903047,mitotic cell cycle process +6.5797024,DRUGBANK:DB05098,http://purl.obolibrary.org/obo/DRUGBANK_DB05098,none +6.5799832,CL:0000138,http://purl.obolibrary.org/obo/CL_0000138,chondrocyte +6.5800769,CHEBI:26421,http://purl.obolibrary.org/obo/CHEBI_26421,pyridines +6.5801705,MONDO:0018762,http://purl.obolibrary.org/obo/MONDO_0018762,non-acquired combined pituitary hormone deficiency +6.5802017,GO:0070161,http://purl.obolibrary.org/obo/GO_0070161,anchoring junction +6.5805139,MONDO:0016345,http://purl.obolibrary.org/obo/MONDO_0016345,non-familial restrictive cardiomyopathy +6.5805763,GO:0022904,http://purl.obolibrary.org/obo/GO_0022904,respiratory electron transport chain +6.5813885,MONDO:0005052,http://purl.obolibrary.org/obo/MONDO_0005052,irritable bowel syndrome +6.5827645,GO:1901698,http://purl.obolibrary.org/obo/GO_1901698,response to nitrogen compound +6.5850516,MONDO:0025511,http://purl.obolibrary.org/obo/MONDO_0025511,inherited neuroendocrine tumor +6.5852712,CL:0000129,http://purl.obolibrary.org/obo/CL_0000129,microglial cell +6.5864326,MONDO:0016756,http://purl.obolibrary.org/obo/MONDO_0016756,inherited nervous system cancer-predisposing syndrome +6.5869353,CHEBI:62488,http://purl.obolibrary.org/obo/CHEBI_62488,signalling molecule +6.5870296,GO:0042330,http://purl.obolibrary.org/obo/GO_0042330,taxis +6.587061,PR:P0CY06,http://purl.obolibrary.org/obo/PR_P0CY06,none +6.5870925,CHEBI:60029,http://purl.obolibrary.org/obo/CHEBI_60029,homopolymer +6.5881302,GO:0045333,http://purl.obolibrary.org/obo/GO_0045333,cellular respiration +6.589421,MONDO:0002243,http://purl.obolibrary.org/obo/MONDO_0002243,hemorrhagic disease +6.5902404,DRUGBANK:DB00571,http://purl.obolibrary.org/obo/DRUGBANK_DB00571,none +6.591597,NCBITaxon:32346,http://purl.obolibrary.org/obo/NCBITaxon_32346,melanogaster group +6.5925446,MONDO:0044970,http://purl.obolibrary.org/obo/MONDO_0044970,mitochondrial disease +6.5933666,MONDO:0019065,http://purl.obolibrary.org/obo/MONDO_0019065,amyloidosis +6.5950443,CHEBI:22315,http://purl.obolibrary.org/obo/CHEBI_22315,alkaloid +6.595076,GO:0045786,http://purl.obolibrary.org/obo/GO_0045786,negative regulation of cell cycle +6.5966613,MONDO:0021181,http://purl.obolibrary.org/obo/MONDO_0021181,inherited blood coagulation disorder +6.5970739,MONDO:0016680,http://purl.obolibrary.org/obo/MONDO_0016680,high grade astrocytic tumor +6.5977408,GO:0006631,http://purl.obolibrary.org/obo/GO_0006631,fatty acid metabolic process +6.5978996,DRUGBANK:DB00877,http://purl.obolibrary.org/obo/DRUGBANK_DB00877,none +6.5996167,GO:0015749,http://purl.obolibrary.org/obo/GO_0015749,monosaccharide transmembrane transport +6.5998395,CHEBI:38260,http://purl.obolibrary.org/obo/CHEBI_38260,pyrrolidines +6.6000306,DRUGBANK:DB09255,http://purl.obolibrary.org/obo/DRUGBANK_DB09255,none +6.6013368,GO:0008645,http://purl.obolibrary.org/obo/GO_0008645,hexose transmembrane transport +6.6020065,MONDO:0004982,http://purl.obolibrary.org/obo/MONDO_0004982,pancreatitis +6.6021022,GO:0043687,http://purl.obolibrary.org/obo/GO_0043687,post-translational protein modification +6.6022299,GO:0140657,http://purl.obolibrary.org/obo/GO_0140657,ATP-dependent activity +6.6037307,CHEBI:26416,http://purl.obolibrary.org/obo/CHEBI_26416,pyridine alkaloid +6.6048498,CHEBI:60809,http://purl.obolibrary.org/obo/CHEBI_60809,adjuvant +6.6054259,CHEBI:46775,http://purl.obolibrary.org/obo/CHEBI_46775,N-alkylpyrrolidine +6.6055219,CHEBI:18723,http://purl.obolibrary.org/obo/CHEBI_18723,nicotine +6.6055219,CHEBI:26456,http://purl.obolibrary.org/obo/CHEBI_26456,pyrrolidine alkaloid +6.6063867,GO:0036268,http://purl.obolibrary.org/obo/GO_0036268,swimming +6.6069636,NCBITaxon:9787,http://purl.obolibrary.org/obo/NCBITaxon_9787,Perissodactyla +6.6075088,GO:0006820,http://purl.obolibrary.org/obo/GO_0006820,anion transport +6.6077975,UBERON:0000345,http://purl.obolibrary.org/obo/UBERON_0000345,myelin +6.6088891,GO:0008066,http://purl.obolibrary.org/obo/GO_0008066,glutamate receptor activity +6.6092104,DRUGBANK:DB00755,http://purl.obolibrary.org/obo/DRUGBANK_DB00755,none +6.609371,UBERON:0004710,http://purl.obolibrary.org/obo/UBERON_0004710,pectoral appendage +6.6096282,NCBITaxon:32351,http://purl.obolibrary.org/obo/NCBITaxon_32351,melanogaster subgroup +6.6096925,UBERON:0002102,http://purl.obolibrary.org/obo/UBERON_0002102,forelimb +6.6108505,GO:0005262,http://purl.obolibrary.org/obo/GO_0005262,calcium channel activity +6.6125577,GO:0070661,http://purl.obolibrary.org/obo/GO_0070661,leukocyte proliferation +6.612977,SO:0001720,http://purl.obolibrary.org/obo/SO_0001720,epigenetically_modified_region +6.6134609,GO:1901565,http://purl.obolibrary.org/obo/GO_1901565,organonitrogen compound catabolic process +6.6138482,GO:0038024,http://purl.obolibrary.org/obo/GO_0038024,cargo receptor activity +6.6140742,CL:0000100,http://purl.obolibrary.org/obo/CL_0000100,motor neuron +6.6140742,MONDO:0019827,http://purl.obolibrary.org/obo/MONDO_0019827,disease associated with non-acquired combined pituitary hormone deficiency +6.6157547,GO:0001816,http://purl.obolibrary.org/obo/GO_0001816,cytokine production +6.6158193,DRUGBANK:DB00067,http://purl.obolibrary.org/obo/DRUGBANK_DB00067,none +6.6166931,MONDO:0015135,http://purl.obolibrary.org/obo/MONDO_0015135,primary immunodeficiency due to a genetic defect in innate immunity +6.6173084,MONDO:0017841,http://purl.obolibrary.org/obo/MONDO_0017841,autoimmune disease with skin involvement +6.6186049,UBERON:0004681,http://purl.obolibrary.org/obo/UBERON_0004681,vestibular system +6.6189618,PR:P08317,http://purl.obolibrary.org/obo/PR_P08317,none +6.6193513,NCBITaxon:8504,http://purl.obolibrary.org/obo/NCBITaxon_8504,Lepidosauria +6.6197733,GO:0042579,http://purl.obolibrary.org/obo/GO_0042579,microbody +6.6202606,SO:0000855,http://purl.obolibrary.org/obo/SO_0000855,orthologous_region +6.620683,GO:0060590,http://purl.obolibrary.org/obo/GO_0060590,ATPase regulator activity +6.6207155,NCBITaxon:1329961,http://purl.obolibrary.org/obo/NCBITaxon_1329961,Bifurcata +6.6207155,NCBITaxon:8509,http://purl.obolibrary.org/obo/NCBITaxon_8509,Squamata +6.6211056,NCBITaxon:1329950,http://purl.obolibrary.org/obo/NCBITaxon_1329950,Unidentata +6.6211382,GO:1905368,http://purl.obolibrary.org/obo/GO_1905368,peptidase complex +6.6213008,NCBITaxon:1329912,http://purl.obolibrary.org/obo/NCBITaxon_1329912,Episquamata +6.6215935,NCBITaxon:1329911,http://purl.obolibrary.org/obo/NCBITaxon_1329911,Toxicofera +6.6218538,DRUGBANK:DB01603,http://purl.obolibrary.org/obo/DRUGBANK_DB01603,none +6.623417,GO:0043933,http://purl.obolibrary.org/obo/GO_0043933,protein-containing complex subunit organization +6.623417,UBERON:0019304,http://purl.obolibrary.org/obo/UBERON_0019304,sensory organ epithelium +6.6238082,GO:0072509,http://purl.obolibrary.org/obo/GO_0072509,none +6.6239386,DRUGBANK:DB00174,http://purl.obolibrary.org/obo/DRUGBANK_DB00174,none +6.6250153,GO:0000502,http://purl.obolibrary.org/obo/GO_0000502,proteasome complex +6.6250153,GO:0015085,http://purl.obolibrary.org/obo/GO_0015085,calcium ion transmembrane transporter activity +6.6254725,GO:1905369,http://purl.obolibrary.org/obo/GO_1905369,endopeptidase complex +6.6255704,MONDO:0021251,http://purl.obolibrary.org/obo/MONDO_0021251,endometrium neoplasm +6.6257011,DRUGBANK:DB00162,http://purl.obolibrary.org/obo/DRUGBANK_DB00162,none +6.6260605,MONDO:0018609,http://purl.obolibrary.org/obo/MONDO_0018609,syndromic hereditary optic neuropathy +6.6266489,MONDO:0003441,http://purl.obolibrary.org/obo/MONDO_0003441,dystonic disorder +6.6271722,MONDO:0002078,http://purl.obolibrary.org/obo/MONDO_0002078,heart septal defect +6.6272049,SO:0001453,http://purl.obolibrary.org/obo/SO_0001453,aspartic_acid +6.6277285,CL:0000104,http://purl.obolibrary.org/obo/CL_0000104,multipolar neuron +6.6281214,MONDO:0044976,http://purl.obolibrary.org/obo/MONDO_0044976,disease of catalytic activity +6.62976,NCBITaxon:9850,http://purl.obolibrary.org/obo/NCBITaxon_9850,Cervidae +6.6298256,NCBITaxon:311790,http://purl.obolibrary.org/obo/NCBITaxon_311790,Afrotheria +6.6298912,NCBITaxon:9774,http://purl.obolibrary.org/obo/NCBITaxon_9774,none +6.6300225,NCBITaxon:9834,http://purl.obolibrary.org/obo/NCBITaxon_9834,Tylopoda +6.6300225,NCBITaxon:9835,http://purl.obolibrary.org/obo/NCBITaxon_9835,Camelidae +6.6300553,NCBITaxon:8548,http://purl.obolibrary.org/obo/NCBITaxon_8548,none +6.6300881,NCBITaxon:1329920,http://purl.obolibrary.org/obo/NCBITaxon_1329920,none +6.6300881,NCBITaxon:1330544,http://purl.obolibrary.org/obo/NCBITaxon_1330544,none +6.6300881,NCBITaxon:8555,http://purl.obolibrary.org/obo/NCBITaxon_8555,none +6.6301209,NCBITaxon:2653790,http://purl.obolibrary.org/obo/NCBITaxon_2653790,none +6.6301209,NCBITaxon:30539,http://purl.obolibrary.org/obo/NCBITaxon_30539,none +6.6301209,NCBITaxon:8556,http://purl.obolibrary.org/obo/NCBITaxon_8556,none +6.6301209,NCBITaxon:9779,http://purl.obolibrary.org/obo/NCBITaxon_9779,Proboscidea +6.6301209,NCBITaxon:9799,http://purl.obolibrary.org/obo/NCBITaxon_9799,none +6.6301209,NCBITaxon:9836,http://purl.obolibrary.org/obo/NCBITaxon_9836,Camelus +6.6301209,NCBITaxon:9892,http://purl.obolibrary.org/obo/NCBITaxon_9892,Giraffidae +6.6301537,GO:0005911,http://purl.obolibrary.org/obo/GO_0005911,cell-cell junction +6.6301537,NCBITaxon:161929,http://purl.obolibrary.org/obo/NCBITaxon_161929,none +6.6301537,NCBITaxon:161931,http://purl.obolibrary.org/obo/NCBITaxon_161931,none +6.6301537,NCBITaxon:34885,http://purl.obolibrary.org/obo/NCBITaxon_34885,none +6.6301537,NCBITaxon:34887,http://purl.obolibrary.org/obo/NCBITaxon_34887,none +6.6301537,NCBITaxon:61221,http://purl.obolibrary.org/obo/NCBITaxon_61221,none +6.6301537,NCBITaxon:9703,http://purl.obolibrary.org/obo/NCBITaxon_9703,none +6.6301537,NCBITaxon:9705,http://purl.obolibrary.org/obo/NCBITaxon_9705,none +6.6301537,NCBITaxon:9714,http://purl.obolibrary.org/obo/NCBITaxon_9714,none +6.6301537,NCBITaxon:9803,http://purl.obolibrary.org/obo/NCBITaxon_9803,none +6.6301537,NCBITaxon:9831,http://purl.obolibrary.org/obo/NCBITaxon_9831,none +6.6301537,NCBITaxon:9843,http://purl.obolibrary.org/obo/NCBITaxon_9843,none +6.6308758,GO:0016853,http://purl.obolibrary.org/obo/GO_0016853,isomerase activity +6.6309087,MONDO:0017432,http://purl.obolibrary.org/obo/MONDO_0017432,syndrome with limb reduction defects +6.6312371,HP:0001251,http://purl.obolibrary.org/obo/HP_0001251,Ataxia +6.6328809,GO:0007067,http://purl.obolibrary.org/obo/GO_0007067,none +6.6336379,GO:0042110,http://purl.obolibrary.org/obo/GO_0042110,T cell activation +6.6340331,PR:000002199,http://purl.obolibrary.org/obo/PR_000002199,cytochrome c protein +6.634099,DRUGBANK:DB00759,http://purl.obolibrary.org/obo/DRUGBANK_DB00759,none +6.6344944,DRUGBANK:DB08844,http://purl.obolibrary.org/obo/DRUGBANK_DB08844,none +6.6344944,NCBITaxon:7227,http://purl.obolibrary.org/obo/NCBITaxon_7227,Drosophila melanogaster +6.6347581,UBERON:0000167,http://purl.obolibrary.org/obo/UBERON_0000167,oral cavity +6.634857,NCBITaxon:10374,http://purl.obolibrary.org/obo/NCBITaxon_10374,Gammaherpesvirinae +6.6356485,PR:P22270,http://purl.obolibrary.org/obo/PR_P22270,none +6.6360775,GO:0019867,http://purl.obolibrary.org/obo/GO_0019867,outer membrane +6.6367709,MONDO:0037792,http://purl.obolibrary.org/obo/MONDO_0037792,carbohydrate metabolism disease +6.6371013,GO:0005777,http://purl.obolibrary.org/obo/GO_0005777,peroxisome +6.6378284,MONDO:0017026,http://purl.obolibrary.org/obo/MONDO_0017026,interstitial lung disease specific to adulthood +6.6379276,MONDO:0005294,http://purl.obolibrary.org/obo/MONDO_0005294,peripheral vascular disease +6.6383576,MONDO:0005380,http://purl.obolibrary.org/obo/MONDO_0005380,osteonecrosis +6.6388209,GO:0046651,http://purl.obolibrary.org/obo/GO_0046651,lymphocyte proliferation +6.638854,MONDO:0018247,http://purl.obolibrary.org/obo/MONDO_0018247,CADDS +6.6393837,MONDO:0020018,http://purl.obolibrary.org/obo/MONDO_0020018,cranial malformation +6.6401457,DRUGBANK:DB10572,http://purl.obolibrary.org/obo/DRUGBANK_DB10572,none +6.6405435,GO:0030163,http://purl.obolibrary.org/obo/GO_0030163,protein catabolic process +6.6409083,PR:000025635,http://purl.obolibrary.org/obo/PR_000025635,none +6.6426012,MONDO:0019214,http://purl.obolibrary.org/obo/MONDO_0019214,inborn carbohydrate metabolic disorder +6.6428338,GO:0098542,http://purl.obolibrary.org/obo/GO_0098542,defense response to other organism +6.6431662,DRUGBANK:DB00451,http://purl.obolibrary.org/obo/DRUGBANK_DB00451,none +6.6434654,GO:0030073,http://purl.obolibrary.org/obo/GO_0030073,insulin secretion +6.6440642,GO:0055086,http://purl.obolibrary.org/obo/GO_0055086,nucleobase-containing small molecule metabolic process +6.6447298,MONDO:0004069,http://purl.obolibrary.org/obo/MONDO_0004069,inborn mitochondrial metabolism disorder +6.6454293,MONDO:0015469,http://purl.obolibrary.org/obo/MONDO_0015469,craniosynostosis +6.6460958,UBERON:0002420,http://purl.obolibrary.org/obo/UBERON_0002420,basal ganglion +6.6461625,NCBITaxon:333774,http://purl.obolibrary.org/obo/NCBITaxon_333774,unclassified Papillomaviridae +6.6461959,GO:0016775,http://purl.obolibrary.org/obo/GO_0016775,"phosphotransferase activity, nitrogenous group as acceptor" +6.6461959,NCBITaxon:173087,http://purl.obolibrary.org/obo/NCBITaxon_173087,Human papillomavirus types +6.6462625,HP:0011443,http://purl.obolibrary.org/obo/HP_0011443,Abnormality of coordination +6.6468963,UBERON:0001349,http://purl.obolibrary.org/obo/UBERON_0001349,externally connecting tube lumen +6.6482653,GO:0048511,http://purl.obolibrary.org/obo/GO_0048511,rhythmic process +6.6485995,MONDO:0017027,http://purl.obolibrary.org/obo/MONDO_0017027,primary interstitial lung disease specific to adulthood +6.6490675,GO:0022804,http://purl.obolibrary.org/obo/GO_0022804,active transmembrane transporter activity +6.6511764,PR:000004978,http://purl.obolibrary.org/obo/PR_000004978,calmodulin +6.6519139,GO:0032943,http://purl.obolibrary.org/obo/GO_0032943,mononuclear cell proliferation +6.6525512,PR:000005931,http://purl.obolibrary.org/obo/PR_000005931,granulocyte-macrophage colony-stimulating factor +6.652719,MONDO:0017594,http://purl.obolibrary.org/obo/MONDO_0017594,indolent B-cell non-Hodgkin lymphoma +6.6534241,CL:0000071,http://purl.obolibrary.org/obo/CL_0000071,blood vessel endothelial cell +6.6536592,GO:0010243,http://purl.obolibrary.org/obo/GO_0010243,response to organonitrogen compound +6.65376,DRUGBANK:DB06757,http://purl.obolibrary.org/obo/DRUGBANK_DB06757,none +6.6560808,GO:0008202,http://purl.obolibrary.org/obo/GO_0008202,steroid metabolic process +6.6562829,UBERON:0000923,http://purl.obolibrary.org/obo/UBERON_0000923,germ layer +6.6574962,UBERON:0001876,http://purl.obolibrary.org/obo/UBERON_0001876,amygdala +6.6575973,MONDO:0019956,http://purl.obolibrary.org/obo/MONDO_0019956,encephalitis +6.6578334,UBERON:0000471,http://purl.obolibrary.org/obo/UBERON_0000471,compound organ component +6.6579009,DRUGBANK:DB15721,http://purl.obolibrary.org/obo/DRUGBANK_DB15721,none +6.6582046,DRUGBANK:DB10568,http://purl.obolibrary.org/obo/DRUGBANK_DB10568,none +6.6599609,CL:0000910,http://purl.obolibrary.org/obo/CL_0000910,cytotoxic T cell +6.6630081,GO:0044265,http://purl.obolibrary.org/obo/GO_0044265,cellular macromolecule catabolic process +6.663449,MONDO:0001411,http://purl.obolibrary.org/obo/MONDO_0001411,synostosis +6.6635847,GO:0070486,http://purl.obolibrary.org/obo/GO_0070486,leukocyte aggregation +6.6641956,MONDO:0019743,http://purl.obolibrary.org/obo/MONDO_0019743,nephropathy secondary to a storage or other metabolic disease +6.6641956,UBERON:0001456,http://purl.obolibrary.org/obo/UBERON_0001456,face +6.664671,PR:000001119,http://purl.obolibrary.org/obo/PR_000001119,animal opsin +6.6650786,DRUGBANK:DB10429,http://purl.obolibrary.org/obo/DRUGBANK_DB10429,none +6.6652146,DRUGBANK:DB14574,http://purl.obolibrary.org/obo/DRUGBANK_DB14574,none +6.6658264,MONDO:0021113,http://purl.obolibrary.org/obo/MONDO_0021113,respiratory failure +6.6663026,SO:0000412,http://purl.obolibrary.org/obo/SO_0000412,restriction_fragment +6.6665748,DRUGBANK:DB03255,http://purl.obolibrary.org/obo/DRUGBANK_DB03255,none +6.6678006,GO:0098589,http://purl.obolibrary.org/obo/GO_0098589,none +6.6684482,GO:0070489,http://purl.obolibrary.org/obo/GO_0070489,T cell aggregation +6.6684823,GO:0071593,http://purl.obolibrary.org/obo/GO_0071593,lymphocyte aggregation +6.6694715,MONDO:0021220,http://purl.obolibrary.org/obo/MONDO_0021220,eye neoplasm +6.6697446,UBERON:0003830,http://purl.obolibrary.org/obo/UBERON_0003830,thoracic segment muscle +6.6698812,UBERON:0012274,http://purl.obolibrary.org/obo/UBERON_0012274,columnar epithelium +6.6704618,UBERON:0008001,http://purl.obolibrary.org/obo/UBERON_0008001,irregular bone +6.6709401,DRUGBANK:DB00167,http://purl.obolibrary.org/obo/DRUGBANK_DB00167,none +6.6724794,UBERON:0001627,http://purl.obolibrary.org/obo/UBERON_0001627,middle cerebral artery +6.675874,NCBITaxon:10566,http://purl.obolibrary.org/obo/NCBITaxon_10566,Human papillomavirus +6.6759427,UBERON:0000125,http://purl.obolibrary.org/obo/UBERON_0000125,neural nucleus +6.6768019,CL:0000878,http://purl.obolibrary.org/obo/CL_0000878,central nervous system macrophage +6.6768706,UBERON:0000941,http://purl.obolibrary.org/obo/UBERON_0000941,cranial nerve II +6.6775929,DRUGBANK:DB00761,http://purl.obolibrary.org/obo/DRUGBANK_DB00761,none +6.6777994,NCBITaxon:11158,http://purl.obolibrary.org/obo/NCBITaxon_11158,Paramyxoviridae +6.6779026,UBERON:0035014,http://purl.obolibrary.org/obo/UBERON_0035014,functional part of brain +6.6780403,UBERON:0001871,http://purl.obolibrary.org/obo/UBERON_0001871,temporal lobe +6.678419,UBERON:0004904,http://purl.obolibrary.org/obo/UBERON_0004904,neuron projection bundle connecting eye with brain +6.6791079,MONDO:0022578,http://purl.obolibrary.org/obo/MONDO_0022578,childhood bladder carcinoma +6.6808669,CL:0000946,http://purl.obolibrary.org/obo/CL_0000946,antibody secreting cell +6.681903,HP:0000234,http://purl.obolibrary.org/obo/HP_0000234,Abnormality of the head +6.6820067,HP:0000152,http://purl.obolibrary.org/obo/HP_0000152,Abnormality of head or neck +6.6836323,GO:0009117,http://purl.obolibrary.org/obo/GO_0009117,nucleotide metabolic process +6.6849139,MONDO:0019277,http://purl.obolibrary.org/obo/MONDO_0019277,epidermal appendage anomaly +6.6851565,DRUGBANK:DB10516,http://purl.obolibrary.org/obo/DRUGBANK_DB10516,none +6.6851565,GO:0022836,http://purl.obolibrary.org/obo/GO_0022836,gated channel activity +6.6859889,DRUGBANK:DB01064,http://purl.obolibrary.org/obo/DRUGBANK_DB01064,none +6.6870651,GO:0006753,http://purl.obolibrary.org/obo/GO_0006753,nucleoside phosphate metabolic process +6.6880381,GO:0001894,http://purl.obolibrary.org/obo/GO_0001894,tissue homeostasis +6.688212,UBERON:0002308,http://purl.obolibrary.org/obo/UBERON_0002308,nucleus of brain +6.6884554,GO:0060249,http://purl.obolibrary.org/obo/GO_0060249,anatomical structure homeostasis +6.6890817,MONDO:0006873,http://purl.obolibrary.org/obo/MONDO_0006873,nutritional deficiency disease +6.6894298,MONDO:0005302,http://purl.obolibrary.org/obo/MONDO_0005302,"attention deficit hyperactivity disorder, inattentive type" +6.6912419,MONDO:0013099,http://purl.obolibrary.org/obo/MONDO_0013099,"combined pituitary hormone deficiencies, genetic form" +6.6912768,MONDO:0015789,http://purl.obolibrary.org/obo/MONDO_0015789,non-acquired combined pituitary hormone deficiencies without extra-pituitary malformations +6.6913117,CL:0000174,http://purl.obolibrary.org/obo/CL_0000174,steroid hormone secreting cell +6.6913466,PR:000006928,http://purl.obolibrary.org/obo/PR_000006928,pro-epidermal growth factor +6.6917303,NCBITaxon:6231,http://purl.obolibrary.org/obo/NCBITaxon_6231,Nematoda +6.6918001,UBERON:0010959,http://purl.obolibrary.org/obo/UBERON_0010959,craniocervical muscle +6.6926381,MONDO:0021227,http://purl.obolibrary.org/obo/MONDO_0021227,adrenal gland neoplasm +6.6927778,UBERON:0002081,http://purl.obolibrary.org/obo/UBERON_0002081,cardiac atrium +6.6942461,GO:0080134,http://purl.obolibrary.org/obo/GO_0080134,regulation of response to stress +6.694596,SO:0001583,http://purl.obolibrary.org/obo/SO_0001583,missense_variant +6.6952611,MONDO:0005247,http://purl.obolibrary.org/obo/MONDO_0005247,bacterial urinary tract infection +6.6957866,PR:000035019,http://purl.obolibrary.org/obo/PR_000035019,none +6.698699,DRUGBANK:DB14741,http://purl.obolibrary.org/obo/DRUGBANK_DB14741,none +6.6991208,MONDO:0001292,http://purl.obolibrary.org/obo/MONDO_0001292,autonomic nervous system disease +6.7001056,UBERON:0004251,http://purl.obolibrary.org/obo/UBERON_0004251,hindlimb zeugopod bone +6.7004576,HP:0002715,http://purl.obolibrary.org/obo/HP_0002715,Abnormality of the immune system +6.7021135,GO:0015666,http://purl.obolibrary.org/obo/GO_0015666,restriction endodeoxyribonuclease activity +6.7022545,DRUGBANK:DB02315,http://purl.obolibrary.org/obo/DRUGBANK_DB02315,none +6.7027837,PR:000002038,http://purl.obolibrary.org/obo/PR_000002038,eotaxin-like cytokine +6.7032072,MONDO:0017014,http://purl.obolibrary.org/obo/MONDO_0017014,interstitial lung disease specific to childhood +6.7048323,NCBITaxon:10376,http://purl.obolibrary.org/obo/NCBITaxon_10376,Human gammaherpesvirus 4 +6.704903,NCBITaxon:10375,http://purl.obolibrary.org/obo/NCBITaxon_10375,Lymphocryptovirus +6.7060705,DRUGBANK:DB09099,http://purl.obolibrary.org/obo/DRUGBANK_DB09099,none +6.7062121,DRUGBANK:DB12529,http://purl.obolibrary.org/obo/DRUGBANK_DB12529,none +6.7067079,NCBITaxon:10294,http://purl.obolibrary.org/obo/NCBITaxon_10294,Simplexvirus +6.7074876,MONDO:0044971,http://purl.obolibrary.org/obo/MONDO_0044971,disease of macromolecular complex +6.7076648,GO:0051320,http://purl.obolibrary.org/obo/GO_0051320,S phase +6.7091196,UBERON:0023879,http://purl.obolibrary.org/obo/UBERON_0023879,neural system +6.7091907,NCBITaxon:10298,http://purl.obolibrary.org/obo/NCBITaxon_10298,Human alphaherpesvirus 1 +6.7102921,UBERON:0000958,http://purl.obolibrary.org/obo/UBERON_0000958,medulla of organ +6.7107544,MONDO:0021096,http://purl.obolibrary.org/obo/MONDO_0021096,papillary epithelial neoplasm +6.7122849,SO:0000193,http://purl.obolibrary.org/obo/SO_0000193,RFLP_fragment +6.7128194,GO:0021700,http://purl.obolibrary.org/obo/GO_0021700,developmental maturation +6.7134968,DRUGBANK:DB00428,http://purl.obolibrary.org/obo/DRUGBANK_DB00428,none +6.7139962,DRUGBANK:DB11735,http://purl.obolibrary.org/obo/DRUGBANK_DB11735,none +6.714139,UBERON:0015004,http://purl.obolibrary.org/obo/UBERON_0015004,tibia endochondral element +6.7142103,UBERON:0000979,http://purl.obolibrary.org/obo/UBERON_0000979,tibia +6.7147815,CHEBI:33281,http://purl.obolibrary.org/obo/CHEBI_33281,antimicrobial agent +6.714853,CHEBI:60034,http://purl.obolibrary.org/obo/CHEBI_60034,polyethylene polymer +6.714853,MONDO:0002028,http://purl.obolibrary.org/obo/MONDO_0002028,personality disorder +6.7149958,CHEBI:60031,http://purl.obolibrary.org/obo/CHEBI_60031,poly(alkylene) polymer +6.7152816,MONDO:0024635,http://purl.obolibrary.org/obo/MONDO_0024635,small intestine disease +6.716211,PR:000001003,http://purl.obolibrary.org/obo/PR_000001003,CD34 molecule +6.7167475,GO:0004602,http://purl.obolibrary.org/obo/GO_0004602,glutathione peroxidase activity +6.7171412,MONDO:0015620,http://purl.obolibrary.org/obo/MONDO_0015620,syndromic urogenital tract malformation +6.717356,CL:0000667,http://purl.obolibrary.org/obo/CL_0000667,collagen secreting cell +6.7180723,DRUGBANK:DB00173,http://purl.obolibrary.org/obo/DRUGBANK_DB00173,none +6.7197218,PR:000000105,http://purl.obolibrary.org/obo/PR_000000105,nodal protein +6.7200807,PR:000002193,http://purl.obolibrary.org/obo/PR_000002193,apoptosis regulator BAX +6.7202961,GO:0051276,http://purl.obolibrary.org/obo/GO_0051276,chromosome organization +6.7209068,UBERON:0000211,http://purl.obolibrary.org/obo/UBERON_0000211,ligament +6.7214458,GO:0050909,http://purl.obolibrary.org/obo/GO_0050909,sensory perception of taste +6.722381,MONDO:0015310,http://purl.obolibrary.org/obo/MONDO_0015310,syndromic optic nerve hypoplasia +6.7224529,MONDO:0008428,http://purl.obolibrary.org/obo/MONDO_0008428,septooptic dysplasia +6.7226689,UBERON:0000485,http://purl.obolibrary.org/obo/UBERON_0000485,simple columnar epithelium +6.7231729,GO:0070527,http://purl.obolibrary.org/obo/GO_0070527,platelet aggregation +6.7234971,DRUGBANK:DB13178,http://purl.obolibrary.org/obo/DRUGBANK_DB13178,none +6.7235331,MONDO:0004985,http://purl.obolibrary.org/obo/MONDO_0004985,bipolar disorder +6.725372,UBERON:0000353,http://purl.obolibrary.org/obo/UBERON_0000353,parenchyma +6.7254081,PR:000001322,http://purl.obolibrary.org/obo/PR_000001322,angiotensin-converting enzyme +6.7258052,HP:0011675,http://purl.obolibrary.org/obo/HP_0011675,Arrhythmia +6.7267083,PR:Q5A1D3,http://purl.obolibrary.org/obo/PR_Q5A1D3,none +6.727142,MONDO:0004976,http://purl.obolibrary.org/obo/MONDO_0004976,amyotrophic lateral sclerosis +6.7272505,DRUGBANK:DB13706,http://purl.obolibrary.org/obo/DRUGBANK_DB13706,none +6.7272866,UBERON:0003297,http://purl.obolibrary.org/obo/UBERON_0003297,gland of integumental system +6.7275398,MONDO:0021678,http://purl.obolibrary.org/obo/MONDO_0021678,gram-negative bacterial infections +6.7279016,PR:000013058,http://purl.obolibrary.org/obo/PR_000013058,peroxisome proliferator-activated receptor gamma +6.7289876,PR:P34708,http://purl.obolibrary.org/obo/PR_P34708,none +6.7290238,GO:0007050,http://purl.obolibrary.org/obo/GO_0007050,none +6.7290601,UBERON:0002412,http://purl.obolibrary.org/obo/UBERON_0002412,vertebra +6.7294224,CL:0000786,http://purl.obolibrary.org/obo/CL_0000786,plasma cell +6.7294586,PR:000001245,http://purl.obolibrary.org/obo/PR_000001245,rhodopsin +6.729821,DRUGBANK:DB00572,http://purl.obolibrary.org/obo/DRUGBANK_DB00572,none +6.7301474,GO:0016407,http://purl.obolibrary.org/obo/GO_0016407,acetyltransferase activity +6.7309092,MONDO:0010311,http://purl.obolibrary.org/obo/MONDO_0010311,Becker muscular dystrophy +6.7329072,PR:000012867,http://purl.obolibrary.org/obo/PR_000012867,plasminogen +6.7331254,GO:0000803,http://purl.obolibrary.org/obo/GO_0000803,sex chromosome +6.7339623,MONDO:0019029,http://purl.obolibrary.org/obo/MONDO_0019029,segmental odontomaxillary dysplasia +6.7339987,MONDO:0044745,http://purl.obolibrary.org/obo/MONDO_0044745,nervous system injury +6.7340715,UBERON:0001005,http://purl.obolibrary.org/obo/UBERON_0001005,respiratory airway +6.7357476,MONDO:0000390,http://purl.obolibrary.org/obo/MONDO_0000390,vitelliform macular dystrophy +6.735857,PR:000012421,http://purl.obolibrary.org/obo/PR_000012421,proliferating cell nuclear antigen +6.7361853,MONDO:0004425,http://purl.obolibrary.org/obo/MONDO_0004425,hyperthyroidism +6.7361853,PR:000016261,http://purl.obolibrary.org/obo/PR_000016261,serotransferrin +6.7385595,MONDO:0009061,http://purl.obolibrary.org/obo/MONDO_0009061,cystic fibrosis +6.7392912,UBERON:0019319,http://purl.obolibrary.org/obo/UBERON_0019319,exocrine gland of integumental system +6.7395108,MONDO:0000629,http://purl.obolibrary.org/obo/MONDO_0000629,cardiovascular organ benign neoplasm +6.7411227,DRUGBANK:DB00833,http://purl.obolibrary.org/obo/DRUGBANK_DB00833,none +6.7413793,DRUGBANK:DB06151,http://purl.obolibrary.org/obo/DRUGBANK_DB06151,none +6.741416,UBERON:0005179,http://purl.obolibrary.org/obo/UBERON_0005179,pelvic region element +6.7428106,GO:0005768,http://purl.obolibrary.org/obo/GO_0005768,endosome +6.7434351,MONDO:0004950,http://purl.obolibrary.org/obo/MONDO_0004950,gastric carcinoma +6.7434719,DRUGBANK:DB08818,http://purl.obolibrary.org/obo/DRUGBANK_DB08818,none +6.7452374,PR:000013246,http://purl.obolibrary.org/obo/PR_000013246,prolactin +6.7453111,MONDO:0023369,http://purl.obolibrary.org/obo/MONDO_0023369,disease of facial skeleton +6.7466374,PR:000029971,http://purl.obolibrary.org/obo/PR_000029971,creatine kinase +6.7483716,GO:0070011,http://purl.obolibrary.org/obo/GO_0070011,none +6.7486301,GO:0044297,http://purl.obolibrary.org/obo/GO_0044297,cell body +6.7489257,MONDO:0007931,http://purl.obolibrary.org/obo/MONDO_0007931,vitelliform macular dystrophy 2 +6.7492953,MONDO:0021187,http://purl.obolibrary.org/obo/MONDO_0021187,hyperlipidemia +6.7500348,UBERON:0000065,http://purl.obolibrary.org/obo/UBERON_0000065,respiratory tract +6.7502568,UBERON:0001133,http://purl.obolibrary.org/obo/UBERON_0001133,cardiac muscle tissue +6.7526647,GO:0004111,http://purl.obolibrary.org/obo/GO_0004111,creatine kinase activity +6.7527389,GO:0098754,http://purl.obolibrary.org/obo/GO_0098754,detoxification +6.7545209,MONDO:0021179,http://purl.obolibrary.org/obo/MONDO_0021179,proteostasis deficiencies +6.7548926,DRUGBANK:DB12754,http://purl.obolibrary.org/obo/DRUGBANK_DB12754,none +6.7554131,HP:0030956,http://purl.obolibrary.org/obo/HP_0030956,Abnormality of cardiovascular system electrophysiology +6.7558967,MONDO:0005076,http://purl.obolibrary.org/obo/MONDO_0005076,periodontitis +6.7560083,DRUGBANK:DB01229,http://purl.obolibrary.org/obo/DRUGBANK_DB01229,none +6.756455,MONDO:0003276,http://purl.obolibrary.org/obo/MONDO_0003276,middle ear disease +6.7585048,GO:0015079,http://purl.obolibrary.org/obo/GO_0015079,potassium ion transmembrane transporter activity +6.758654,CL:0000598,http://purl.obolibrary.org/obo/CL_0000598,pyramidal neuron +6.7591018,UBERON:0005911,http://purl.obolibrary.org/obo/UBERON_0005911,endo-epithelium +6.7595872,SO:0001031,http://purl.obolibrary.org/obo/SO_0001031,reverse +6.7602597,CL:1000497,http://purl.obolibrary.org/obo/CL_1000497,kidney cell +6.7608952,MONDO:0015338,http://purl.obolibrary.org/obo/MONDO_0015338,syndromic craniosynostosis +6.7611944,GO:0019887,http://purl.obolibrary.org/obo/GO_0019887,protein kinase regulator activity +6.7623173,DRUGBANK:DB00201,http://purl.obolibrary.org/obo/DRUGBANK_DB00201,none +6.7644541,UBERON:0001723,http://purl.obolibrary.org/obo/UBERON_0001723,tongue +6.7645667,UBERON:0035554,http://purl.obolibrary.org/obo/UBERON_0035554,right cardiac chamber +6.7659189,PR:000028799,http://purl.obolibrary.org/obo/PR_000028799,tubulin +6.7663324,MONDO:0005090,http://purl.obolibrary.org/obo/MONDO_0005090,schizophrenia +6.7663324,MONDO:0040677,http://purl.obolibrary.org/obo/MONDO_0040677,invasive carcinoma +6.7688924,GO:0050663,http://purl.obolibrary.org/obo/GO_0050663,none +6.7696466,MOP:0000781,http://purl.obolibrary.org/obo/MOP_0000781,none +6.7704014,DRUGBANK:DB11347,http://purl.obolibrary.org/obo/DRUGBANK_DB11347,none +6.7705524,GO:0006887,http://purl.obolibrary.org/obo/GO_0006887,exocytosis +6.7707035,PR:000025365,http://purl.obolibrary.org/obo/PR_000025365,cytochrome c oxidase subunit 2 +6.7710056,DRUGBANK:DB00157,http://purl.obolibrary.org/obo/DRUGBANK_DB00157,none +6.7717236,DRUGBANK:DB10549,http://purl.obolibrary.org/obo/DRUGBANK_DB10549,none +6.7723286,GO:0045087,http://purl.obolibrary.org/obo/GO_0045087,innate immune response +6.7723286,UBERON:0004458,http://purl.obolibrary.org/obo/UBERON_0004458,none +6.7725935,MONDO:0004996,http://purl.obolibrary.org/obo/MONDO_0004996,childhood acute myeloid leukemia +6.7728583,PR:000003626,http://purl.obolibrary.org/obo/PR_000003626,acetylcholinesterase +6.7730476,CL:0002322,http://purl.obolibrary.org/obo/CL_0002322,embryonic stem cell +6.7737671,MONDO:0021354,http://purl.obolibrary.org/obo/MONDO_0021354,tumor of adipose tissue +6.7746766,GO:0099503,http://purl.obolibrary.org/obo/GO_0099503,secretory vesicle +6.7748662,DRUGBANK:DB14009,http://purl.obolibrary.org/obo/DRUGBANK_DB14009,none +6.7748662,MONDO:0017128,http://purl.obolibrary.org/obo/MONDO_0017128,inherited digestive tract tumor +6.7760804,MONDO:0024327,http://purl.obolibrary.org/obo/MONDO_0024327,chronic renal failure syndrome +6.7766501,MONDO:0020592,http://purl.obolibrary.org/obo/MONDO_0020592,disease of pharynx +6.7776383,MONDO:0005552,http://purl.obolibrary.org/obo/MONDO_0005552,ocular vascular disease +6.7781708,MONDO:0020142,http://purl.obolibrary.org/obo/MONDO_0020142,metabolic disease with dementia +6.7792367,DRUGBANK:DB11627,http://purl.obolibrary.org/obo/DRUGBANK_DB11627,none +6.7800369,NCBITaxon:2732408,http://purl.obolibrary.org/obo/NCBITaxon_2732408,Pisuviricota +6.7801132,GO:0016835,http://purl.obolibrary.org/obo/GO_0016835,carbon-oxygen lyase activity +6.7801894,PR:000000034,http://purl.obolibrary.org/obo/PR_000000034,BMP +6.7806089,MONDO:0015447,http://purl.obolibrary.org/obo/MONDO_0015447,differentiated thyroid carcinoma +6.7807233,CL:0000164,http://purl.obolibrary.org/obo/CL_0000164,enteroendocrine cell +6.7830146,MONDO:0021026,http://purl.obolibrary.org/obo/MONDO_0021026,genetic epidermal appendage anomaly +6.7835117,UBERON:0000964,http://purl.obolibrary.org/obo/UBERON_0000964,cornea +6.7836265,UBERON:0001560,http://purl.obolibrary.org/obo/UBERON_0001560,neck of organ +6.7842388,PR:000044631,http://purl.obolibrary.org/obo/PR_000044631,adrenoceptor protein +6.784277,GO:0015399,http://purl.obolibrary.org/obo/GO_0015399,primary active transmembrane transporter activity +6.7866532,GO:0003990,http://purl.obolibrary.org/obo/GO_0003990,acetylcholinesterase activity +6.7876898,MONDO:0019293,http://purl.obolibrary.org/obo/MONDO_0019293,skin vascular disease +6.7903437,UBERON:0001103,http://purl.obolibrary.org/obo/UBERON_0001103,diaphragm +6.790883,DRUGBANK:DB11135,http://purl.obolibrary.org/obo/DRUGBANK_DB11135,none +6.7914998,PR:000015665,http://purl.obolibrary.org/obo/PR_000015665,somatostatin +6.7923484,MONDO:0020320,http://purl.obolibrary.org/obo/MONDO_0020320,acute myeloblastic leukemia with maturation +6.7935068,GO:0032101,http://purl.obolibrary.org/obo/GO_0032101,regulation of response to external stimulus +6.7944732,UBERON:0000072,http://purl.obolibrary.org/obo/UBERON_0000072,proximo-distal subdivision of respiratory tract +6.7961762,MONDO:0020283,http://purl.obolibrary.org/obo/MONDO_0020283,uveitis +6.7962537,HP:0000505,http://purl.obolibrary.org/obo/HP_0000505,Visual impairment +6.7966412,DRUGBANK:DB00121,http://purl.obolibrary.org/obo/DRUGBANK_DB00121,none +6.7972227,DRUGBANK:DB00255,http://purl.obolibrary.org/obo/DRUGBANK_DB00255,none +6.7984256,MONDO:0043839,http://purl.obolibrary.org/obo/MONDO_0043839,ulcer disease +6.7984644,CHEBI:61614,http://purl.obolibrary.org/obo/CHEBI_61614,vinyl polymer +6.7989693,GO:0022853,http://purl.obolibrary.org/obo/GO_0022853,active ion transmembrane transporter activity +6.7995522,MONDO:0015710,http://purl.obolibrary.org/obo/MONDO_0015710,immune dysregulation disease with immunodeficiency +6.7997077,MONDO:0020158,http://purl.obolibrary.org/obo/MONDO_0020158,eyelids malposition disorder +6.7998243,MONDO:0021634,http://purl.obolibrary.org/obo/MONDO_0021634,epithelial skin neoplasm +6.8000187,MONDO:0005159,http://purl.obolibrary.org/obo/MONDO_0005159,prostate carcinoma +6.8008746,DRUGBANK:DB00016,http://purl.obolibrary.org/obo/DRUGBANK_DB00016,none +6.8031736,CL:0000359,http://purl.obolibrary.org/obo/CL_0000359,vascular associated smooth muscle cell +6.8031736,MONDO:0019289,http://purl.obolibrary.org/obo/MONDO_0019289,hyperpigmentation of the skin +6.8035248,MONDO:0005298,http://purl.obolibrary.org/obo/MONDO_0005298,osteoporosis +6.8040322,GO:0044403,http://purl.obolibrary.org/obo/GO_0044403,biological process involved in symbiotic interaction +6.8041103,GO:0005126,http://purl.obolibrary.org/obo/GO_0005126,cytokine receptor binding +6.8057907,UBERON:0010913,http://purl.obolibrary.org/obo/UBERON_0010913,vertebral element +6.8068082,UBERON:0015063,http://purl.obolibrary.org/obo/UBERON_0015063,autopod endochondral element +6.8080227,MONDO:0044348,http://purl.obolibrary.org/obo/MONDO_0044348,hemoglobinopathy +6.8080619,GO:0015925,http://purl.obolibrary.org/obo/GO_0015925,galactosidase activity +6.8081795,UBERON:0011250,http://purl.obolibrary.org/obo/UBERON_0011250,autopod bone +6.8088854,DRUGBANK:DB00446,http://purl.obolibrary.org/obo/DRUGBANK_DB00446,none +6.8090424,MONDO:0015760,http://purl.obolibrary.org/obo/MONDO_0015760,T-cell non-Hodgkin lymphoma +6.8096704,UBERON:0015005,http://purl.obolibrary.org/obo/UBERON_0015005,none +6.8105739,GO:0015711,http://purl.obolibrary.org/obo/GO_0015711,organic anion transport +6.8111243,MONDO:0019269,http://purl.obolibrary.org/obo/MONDO_0019269,ichthyosis +6.8113996,GO:0072521,http://purl.obolibrary.org/obo/GO_0072521,purine-containing compound metabolic process +6.8125409,DRUGBANK:DB00635,http://purl.obolibrary.org/obo/DRUGBANK_DB00635,none +6.8139595,GO:0001671,http://purl.obolibrary.org/obo/GO_0001671,ATPase activator activity +6.8140384,SO:0001632,http://purl.obolibrary.org/obo/SO_0001632,downstream_gene_variant +6.8140384,SO:0001633,http://purl.obolibrary.org/obo/SO_0001633,5KB_downstream_variant +6.8141172,GO:0006066,http://purl.obolibrary.org/obo/GO_0006066,alcohol metabolic process +6.8144328,DRUGBANK:DB04652,http://purl.obolibrary.org/obo/DRUGBANK_DB04652,none +6.8154196,MONDO:0002100,http://purl.obolibrary.org/obo/MONDO_0002100,cardiovascular cancer +6.8173961,MONDO:0002447,http://purl.obolibrary.org/obo/MONDO_0002447,endometrial carcinoma +6.8188216,PR:000007581,http://purl.obolibrary.org/obo/PR_000007581,fibronectin +6.8189405,UBERON:0010009,http://purl.obolibrary.org/obo/UBERON_0010009,aggregate regional part of brain +6.8189405,UBERON:0034923,http://purl.obolibrary.org/obo/UBERON_0034923,disconnected anatomical group +6.820924,GO:0019208,http://purl.obolibrary.org/obo/GO_0019208,phosphatase regulator activity +6.8210034,PR:000002997,http://purl.obolibrary.org/obo/PR_000002997,proto-oncogene SRC-like tyrosine-protein kinase +6.8212815,MONDO:0015512,http://purl.obolibrary.org/obo/MONDO_0015512,genetic hypertension +6.8217185,DRUGBANK:DB11311,http://purl.obolibrary.org/obo/DRUGBANK_DB11311,none +6.8224341,DRUGBANK:DB00512,http://purl.obolibrary.org/obo/DRUGBANK_DB00512,none +6.8228319,GO:0048878,http://purl.obolibrary.org/obo/GO_0048878,chemical homeostasis +6.8229115,UBERON:0001052,http://purl.obolibrary.org/obo/UBERON_0001052,rectum +6.8243847,PR:000002122,http://purl.obolibrary.org/obo/PR_000002122,C-C motif chemokine 2 +6.825541,PR:000024142,http://purl.obolibrary.org/obo/PR_000024142,none +6.8266985,MONDO:0002236,http://purl.obolibrary.org/obo/MONDO_0002236,ocular cancer +6.8273777,PR:P10637,http://purl.obolibrary.org/obo/PR_P10637,none +6.8273777,PR:P19332,http://purl.obolibrary.org/obo/PR_P19332,none +6.8274577,DRUGBANK:DB01048,http://purl.obolibrary.org/obo/DRUGBANK_DB01048,none +6.8281774,CL:0000035,http://purl.obolibrary.org/obo/CL_0000035,single fate stem cell +6.8288175,GO:0042246,http://purl.obolibrary.org/obo/GO_0042246,tissue regeneration +6.8296985,PR:000003270,http://purl.obolibrary.org/obo/PR_000003270,CDK2-related kinase +6.8325467,GO:1901657,http://purl.obolibrary.org/obo/GO_1901657,glycosyl compound metabolic process +6.8335918,MONDO:0015923,http://purl.obolibrary.org/obo/MONDO_0015923,acquired peripheral neuropathy +6.8356852,GO:0016500,http://purl.obolibrary.org/obo/GO_0016500,protein-hormone receptor activity +6.8375003,MONDO:0021351,http://purl.obolibrary.org/obo/MONDO_0021351,neoplasm of neck +6.8378637,GO:0140513,http://purl.obolibrary.org/obo/GO_0140513,nuclear protein-containing complex +6.8378637,MONDO:0001014,http://purl.obolibrary.org/obo/MONDO_0001014,chronic leukemia +6.8381869,DRUGBANK:DB04173,http://purl.obolibrary.org/obo/DRUGBANK_DB04173,none +6.8381869,GO:0010927,http://purl.obolibrary.org/obo/GO_0010927,cellular component assembly involved in morphogenesis +6.8382273,PR:000001971,http://purl.obolibrary.org/obo/PR_000001971,vascular endothelial growth factor receptor +6.8383485,MONDO:0020063,http://purl.obolibrary.org/obo/MONDO_0020063,malformation syndrome with hamartosis +6.8389548,DRUGBANK:DB11242,http://purl.obolibrary.org/obo/DRUGBANK_DB11242,none +6.839157,MONDO:0019245,http://purl.obolibrary.org/obo/MONDO_0019245,lysosomal lipid storage disorder +6.8396019,GO:0048609,http://purl.obolibrary.org/obo/GO_0048609,multicellular organismal reproductive process +6.8397233,DRUGBANK:DB01045,http://purl.obolibrary.org/obo/DRUGBANK_DB01045,none +6.8400471,PR:000007299,http://purl.obolibrary.org/obo/PR_000007299,prothrombin +6.8402899,MONDO:0020253,http://purl.obolibrary.org/obo/MONDO_0020253,syndrome with a symptomatic strabismus +6.8414242,DRUGBANK:DB00644,http://purl.obolibrary.org/obo/DRUGBANK_DB00644,none +6.8415458,MONDO:0017595,http://purl.obolibrary.org/obo/MONDO_0017595,aggressive B-cell non-Hodgkin lymphoma +6.8418296,CL:0002563,http://purl.obolibrary.org/obo/CL_0002563,intestinal epithelial cell +6.8425192,CL:0000036,http://purl.obolibrary.org/obo/CL_0000036,epithelial fate stem cell +6.8426003,MONDO:0017434,http://purl.obolibrary.org/obo/MONDO_0017434,"syndrome with limb duplication, polydactyly, syndactyly, and/or hyperphalangy" +6.842925,PR:000036195,http://purl.obolibrary.org/obo/PR_000036195,bacterial protein +6.8433716,HP:0000504,http://purl.obolibrary.org/obo/HP_0000504,Abnormality of vision +6.8438591,MONDO:0005379,http://purl.obolibrary.org/obo/MONDO_0005379,neurotic disorder +6.843981,GO:0006163,http://purl.obolibrary.org/obo/GO_0006163,purine nucleotide metabolic process +6.8441435,MONDO:0000577,http://purl.obolibrary.org/obo/MONDO_0000577,congenital anemia +6.8449567,CHEBI:38637,http://purl.obolibrary.org/obo/CHEBI_38637,tyrosine kinase inhibitor +6.8462184,PR:000001136,http://purl.obolibrary.org/obo/PR_000001136,interleukin-1 beta +6.8471963,UBERON:0010011,http://purl.obolibrary.org/obo/UBERON_0010011,collection of basal ganglia +6.8480936,SO:0000628,http://purl.obolibrary.org/obo/SO_0000628,chromosomal_structural_element +6.8507493,MONDO:0021246,http://purl.obolibrary.org/obo/MONDO_0021246,pharynx neoplasm +6.8509539,UBERON:0012453,http://purl.obolibrary.org/obo/UBERON_0012453,nerve ending +6.851486,MONDO:0005009,http://purl.obolibrary.org/obo/MONDO_0005009,congestive heart failure +6.8516088,DRUGBANK:DB11588,http://purl.obolibrary.org/obo/DRUGBANK_DB11588,none +6.8523461,GO:0019693,http://purl.obolibrary.org/obo/GO_0019693,ribose phosphate metabolic process +6.853166,GO:0009259,http://purl.obolibrary.org/obo/GO_0009259,ribonucleotide metabolic process +6.8533301,CL:0000092,http://purl.obolibrary.org/obo/CL_0000092,osteoclast +6.8533301,PR:000000027,http://purl.obolibrary.org/obo/PR_000000027,smad protein +6.8545613,MONDO:0000654,http://purl.obolibrary.org/obo/MONDO_0000654,benign connective and soft tissue neoplasm +6.8548489,GO:0016616,http://purl.obolibrary.org/obo/GO_0016616,"oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor" +6.8554652,MONDO:0005260,http://purl.obolibrary.org/obo/MONDO_0005260,autism +6.8555886,MONDO:0002656,http://purl.obolibrary.org/obo/MONDO_0002656,skin carcinoma +6.857605,SO:0000067,http://purl.obolibrary.org/obo/SO_0000067,gene_to_gene_feature +6.857605,SO:0000068,http://purl.obolibrary.org/obo/SO_0000068,overlapping +6.8577286,DRUGBANK:DB13260,http://purl.obolibrary.org/obo/DRUGBANK_DB13260,none +6.8577698,GO:1903034,http://purl.obolibrary.org/obo/GO_1903034,regulation of response to wounding +6.8580994,MONDO:0001713,http://purl.obolibrary.org/obo/MONDO_0001713,inherited aplastic anemia +6.8588003,SO:0000077,http://purl.obolibrary.org/obo/SO_0000077,antisense +6.8588415,MONDO:0020579,http://purl.obolibrary.org/obo/MONDO_0020579,mucositis +6.8588415,UBERON:0000912,http://purl.obolibrary.org/obo/UBERON_0000912,mucus +6.8601209,GO:0009150,http://purl.obolibrary.org/obo/GO_0009150,purine ribonucleotide metabolic process +6.860534,GO:0098687,http://purl.obolibrary.org/obo/GO_0098687,chromosomal region +6.8610712,MONDO:0005131,http://purl.obolibrary.org/obo/MONDO_0005131,cervical carcinoma +6.8614846,SO:0000317,http://purl.obolibrary.org/obo/SO_0000317,cDNA_clone +6.8624362,GO:0016811,http://purl.obolibrary.org/obo/GO_0016811,"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides" +6.8625604,DRUGBANK:DB00260,http://purl.obolibrary.org/obo/DRUGBANK_DB00260,none +6.8638031,GO:0005902,http://purl.obolibrary.org/obo/GO_0005902,microvillus +6.863886,GO:0098858,http://purl.obolibrary.org/obo/GO_0098858,actin-based cell projection +6.8658362,MONDO:0002503,http://purl.obolibrary.org/obo/MONDO_0002503,adult astrocytic tumour +6.8665009,UBERON:0009034,http://purl.obolibrary.org/obo/UBERON_0009034,none +6.8672909,GO:0009116,http://purl.obolibrary.org/obo/GO_0009116,nucleoside metabolic process +6.8687477,GO:0006869,http://purl.obolibrary.org/obo/GO_0006869,lipid transport +6.8702901,GO:0014070,http://purl.obolibrary.org/obo/GO_0014070,response to organic cyclic compound +6.8710831,HP:0002013,http://purl.obolibrary.org/obo/HP_0002013,Vomiting +6.8722947,NCBITaxon:33550,http://purl.obolibrary.org/obo/NCBITaxon_33550,Hystricomorpha +6.8723783,UBERON:0006074,http://purl.obolibrary.org/obo/UBERON_0006074,lumbar region of vertebral column +6.8729637,CL:0000646,http://purl.obolibrary.org/obo/CL_0000646,basal cell +6.8733821,MONDO:0017015,http://purl.obolibrary.org/obo/MONDO_0017015,primary interstitial lung disease specific to childhood +6.8738007,DRUGBANK:DB03754,http://purl.obolibrary.org/obo/DRUGBANK_DB03754,none +6.8738844,MONDO:0000812,http://purl.obolibrary.org/obo/MONDO_0000812,vertebral column disease +6.8739682,GO:0006914,http://purl.obolibrary.org/obo/GO_0006914,autophagy +6.8745126,MONDO:0700057,http://purl.obolibrary.org/obo/MONDO_0700057,neurological pain disorder +6.8746802,NCBITaxon:337677,http://purl.obolibrary.org/obo/NCBITaxon_337677,Cricetidae +6.8756864,MONDO:0002095,http://purl.obolibrary.org/obo/MONDO_0002095,vascular cancer +6.8763997,GO:0016758,http://purl.obolibrary.org/obo/GO_0016758,hexosyltransferase activity +6.8768195,GO:0007631,http://purl.obolibrary.org/obo/GO_0007631,feeding behavior +6.8768615,MONDO:0021698,http://purl.obolibrary.org/obo/MONDO_0021698,alcohol-related disorders +6.8772396,PR:Q42580,http://purl.obolibrary.org/obo/PR_Q42580,none +6.8774496,UBERON:0001184,http://purl.obolibrary.org/obo/UBERON_0001184,renal artery +6.8781642,DRUGBANK:DB00860,http://purl.obolibrary.org/obo/DRUGBANK_DB00860,none +6.8786268,DRUGBANK:DB11203,http://purl.obolibrary.org/obo/DRUGBANK_DB11203,none +6.8795528,GO:0042107,http://purl.obolibrary.org/obo/GO_0042107,none +6.8798476,DRUGBANK:DB10509,http://purl.obolibrary.org/obo/DRUGBANK_DB10509,none +6.880311,HP:0010978,http://purl.obolibrary.org/obo/HP_0010978,Abnormality of immune system physiology +6.8804374,MONDO:0016218,http://purl.obolibrary.org/obo/MONDO_0016218,Guillain-Barre syndrome +6.8810698,MONDO:0005441,http://purl.obolibrary.org/obo/MONDO_0005441,otitis media +6.8811119,GO:0046907,http://purl.obolibrary.org/obo/GO_0046907,intracellular transport +6.8814916,GO:0042089,http://purl.obolibrary.org/obo/GO_0042089,none +6.881998,MONDO:0018538,http://purl.obolibrary.org/obo/MONDO_0018538,inherited digestive cancer-predisposing syndrome +6.8825891,DRUGBANK:DB01093,http://purl.obolibrary.org/obo/DRUGBANK_DB01093,none +6.8826736,GO:0009119,http://purl.obolibrary.org/obo/GO_0009119,ribonucleoside metabolic process +6.8828848,GO:0048585,http://purl.obolibrary.org/obo/GO_0048585,negative regulation of response to stimulus +6.8833073,UBERON:0013756,http://purl.obolibrary.org/obo/UBERON_0013756,venous blood +6.8834764,GO:0003924,http://purl.obolibrary.org/obo/GO_0003924,GTPase activity +6.8839838,GO:0044456,http://purl.obolibrary.org/obo/GO_0044456,synapse part +6.8842376,GO:0006413,http://purl.obolibrary.org/obo/GO_0006413,translational initiation +6.8844915,DRUGBANK:DB00537,http://purl.obolibrary.org/obo/DRUGBANK_DB00537,none +6.8846607,MONDO:0019721,http://purl.obolibrary.org/obo/MONDO_0019721,syndromic renal or urinary tract malformation +6.884957,UBERON:0001532,http://purl.obolibrary.org/obo/UBERON_0001532,internal carotid artery +6.8858465,DRUGBANK:DB00316,http://purl.obolibrary.org/obo/DRUGBANK_DB00316,none +6.8859736,MONDO:0021310,http://purl.obolibrary.org/obo/MONDO_0021310,malignant tumor of neck +6.8868639,PR:000003426,http://purl.obolibrary.org/obo/PR_000003426,HSPA protein +6.8874155,GO:0061919,http://purl.obolibrary.org/obo/GO_0061919,process utilizing autophagic mechanism +6.8878824,UBERON:0007625,http://purl.obolibrary.org/obo/UBERON_0007625,pigment epithelium of eye +6.8880523,GO:0042278,http://purl.obolibrary.org/obo/GO_0042278,purine nucleoside metabolic process +6.8880948,SO:0000006,http://purl.obolibrary.org/obo/SO_0000006,PCR_product +6.8880948,UBERON:0015808,http://purl.obolibrary.org/obo/UBERON_0015808,eye epithelium +6.8882647,MONDO:0044873,http://purl.obolibrary.org/obo/MONDO_0044873,childhood myelodysplastic syndrome +6.888987,MONDO:0015160,http://purl.obolibrary.org/obo/MONDO_0015160,multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome +6.888987,MONDO:0043007,http://purl.obolibrary.org/obo/MONDO_0043007,genetic multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome +6.8890295,UBERON:0002355,http://purl.obolibrary.org/obo/UBERON_0002355,pelvic region of trunk +6.8900077,GO:0046128,http://purl.obolibrary.org/obo/GO_0046128,purine ribonucleoside metabolic process +6.8900928,MONDO:0044975,http://purl.obolibrary.org/obo/MONDO_0044975,disease of transporter activity +6.8903056,MONDO:0019391,http://purl.obolibrary.org/obo/MONDO_0019391,Fanconi anemia +6.8903481,PR:000000017,http://purl.obolibrary.org/obo/PR_000000017,interferon gamma +6.8903907,DRUGBANK:DB09110,http://purl.obolibrary.org/obo/DRUGBANK_DB09110,none +6.8910294,GO:0015672,http://purl.obolibrary.org/obo/GO_0015672,monovalent inorganic cation transport +6.8913276,MONDO:0043510,http://purl.obolibrary.org/obo/MONDO_0043510,brain injury +6.8916685,MONDO:0021637,http://purl.obolibrary.org/obo/MONDO_0021637,low grade glioma +6.8920095,CL:0000197,http://purl.obolibrary.org/obo/CL_0000197,sensory receptor cell +6.8927346,UBERON:0003124,http://purl.obolibrary.org/obo/UBERON_0003124,chorion +6.8934174,SO:0000858,http://purl.obolibrary.org/obo/SO_0000858,orthologous +6.8936736,DRUGBANK:DB15073,http://purl.obolibrary.org/obo/DRUGBANK_DB15073,none +6.8948701,GO:0060986,http://purl.obolibrary.org/obo/GO_0060986,endocrine hormone secretion +6.8951695,GO:0034364,http://purl.obolibrary.org/obo/GO_0034364,high-density lipoprotein particle +6.895854,PR:000001357,http://purl.obolibrary.org/obo/PR_000001357,intercellular adhesion molecule 1/3 +6.8961108,DRUGBANK:DB12907,http://purl.obolibrary.org/obo/DRUGBANK_DB12907,none +6.8963249,GO:0008374,http://purl.obolibrary.org/obo/GO_0008374,O-acyltransferase activity +6.8963249,GO:0031323,http://purl.obolibrary.org/obo/GO_0031323,regulation of cellular metabolic process +6.8972674,MONDO:0018102,http://purl.obolibrary.org/obo/MONDO_0018102,corneal dystrophy +6.8972674,PR:000008288,http://purl.obolibrary.org/obo/PR_000008288,glycogen synthase kinase-3 beta +6.8977818,UBERON:0034728,http://purl.obolibrary.org/obo/UBERON_0034728,autonomic nerve +6.8979105,MONDO:0004647,http://purl.obolibrary.org/obo/MONDO_0004647,in situ carcinoma +6.8987257,MONDO:0015650,http://purl.obolibrary.org/obo/MONDO_0015650,epilepsy syndrome +6.8992838,UBERON:0001485,http://purl.obolibrary.org/obo/UBERON_0001485,knee joint +6.8998852,GO:0042552,http://purl.obolibrary.org/obo/GO_0042552,myelination +6.8999282,CL:0000789,http://purl.obolibrary.org/obo/CL_0000789,alpha-beta T cell +6.9012613,UBERON:0002211,http://purl.obolibrary.org/obo/UBERON_0002211,nerve root +6.9021223,CL:0000815,http://purl.obolibrary.org/obo/CL_0000815,regulatory T cell +6.9024669,GO:0043473,http://purl.obolibrary.org/obo/GO_0043473,pigmentation +6.9030271,MONDO:0004988,http://purl.obolibrary.org/obo/MONDO_0004988,breast adenocarcinoma +6.9038034,GO:0007272,http://purl.obolibrary.org/obo/GO_0007272,ensheathment of neurons +6.9038034,GO:0008366,http://purl.obolibrary.org/obo/GO_0008366,axon ensheathment +6.9038896,UBERON:0002369,http://purl.obolibrary.org/obo/UBERON_0002369,adrenal gland +6.9040622,GO:0016836,http://purl.obolibrary.org/obo/GO_0016836,hydro-lyase activity +6.9047961,UBERON:0003947,http://purl.obolibrary.org/obo/UBERON_0003947,brain ventricle/choroid plexus +6.9048393,MONDO:0004320,http://purl.obolibrary.org/obo/MONDO_0004320,adult infiltrating astrocytic neoplasm +6.9048393,MONDO:0020690,http://purl.obolibrary.org/obo/MONDO_0020690,adult glioblastoma +6.905012,PR:000013056,http://purl.obolibrary.org/obo/PR_000013056,peroxisome proliferator-activated receptor alpha +6.9054873,GO:0032288,http://purl.obolibrary.org/obo/GO_0032288,myelin assembly +6.9055305,NCBITaxon:10140,http://purl.obolibrary.org/obo/NCBITaxon_10140,none +6.9057466,NCBITaxon:10139,http://purl.obolibrary.org/obo/NCBITaxon_10139,none +6.9063951,CL:0000147,http://purl.obolibrary.org/obo/CL_0000147,pigment cell +6.9066114,UBERON:0002110,http://purl.obolibrary.org/obo/UBERON_0002110,gall bladder +6.9086035,MONDO:0019050,http://purl.obolibrary.org/obo/MONDO_0019050,inherited hemoglobinopathy +6.9091238,MONDO:0016642,http://purl.obolibrary.org/obo/MONDO_0016642,meningioma +6.9102521,MONDO:0015947,http://purl.obolibrary.org/obo/MONDO_0015947,inherited ichthyosis +6.9104257,MONDO:0005517,http://purl.obolibrary.org/obo/MONDO_0005517,pharynx cancer +6.9107732,DRUGBANK:DB00798,http://purl.obolibrary.org/obo/DRUGBANK_DB00798,none +6.9109905,UBERON:0001255,http://purl.obolibrary.org/obo/UBERON_0001255,urinary bladder +6.9113816,UBERON:0001018,http://purl.obolibrary.org/obo/UBERON_0001018,axon tract +6.9114685,MONDO:0006500,http://purl.obolibrary.org/obo/MONDO_0006500,hemangioma +6.9117294,MONDO:0002041,http://purl.obolibrary.org/obo/MONDO_0002041,fungal infectious disease +6.9136881,DRUGBANK:DB11008,http://purl.obolibrary.org/obo/DRUGBANK_DB11008,none +6.9145599,UBERON:0001994,http://purl.obolibrary.org/obo/UBERON_0001994,hyaline cartilage tissue +6.9147343,SO:0001070,http://purl.obolibrary.org/obo/SO_0001070,polypeptide_structural_region +6.916131,GO:0032102,http://purl.obolibrary.org/obo/GO_0032102,negative regulation of response to external stimulus +6.916131,SO:0001598,http://purl.obolibrary.org/obo/SO_0001598,translational_product_structure_variant +6.916131,SO:0001603,http://purl.obolibrary.org/obo/SO_0001603,polypeptide_sequence_variant +6.9166989,UBERON:0004086,http://purl.obolibrary.org/obo/UBERON_0004086,brain ventricle +6.91683,MONDO:0021043,http://purl.obolibrary.org/obo/MONDO_0021043,mixed neoplasm +6.9170049,DRUGBANK:DB00281,http://purl.obolibrary.org/obo/DRUGBANK_DB00281,none +6.917967,MONDO:0024653,http://purl.obolibrary.org/obo/MONDO_0024653,skull neoplasm +6.9205958,GO:0019211,http://purl.obolibrary.org/obo/GO_0019211,phosphatase activator activity +6.9214737,MONDO:0021345,http://purl.obolibrary.org/obo/MONDO_0021345,carcinoma of pharynx +6.9216932,DRUGBANK:DB01065,http://purl.obolibrary.org/obo/DRUGBANK_DB01065,none +6.9217811,DRUGBANK:DB15994,http://purl.obolibrary.org/obo/DRUGBANK_DB15994,none +6.921825,GO:0001664,http://purl.obolibrary.org/obo/GO_0001664,G protein-coupled receptor binding +6.921825,GO:0008009,http://purl.obolibrary.org/obo/GO_0008009,chemokine activity +6.921825,GO:0042379,http://purl.obolibrary.org/obo/GO_0042379,chemokine receptor binding +6.9223962,UBERON:0000486,http://purl.obolibrary.org/obo/UBERON_0000486,multilaminar epithelium +6.9224401,NCBITaxon:2732506,http://purl.obolibrary.org/obo/NCBITaxon_2732506,Pisoniviricetes +6.9238036,GO:0009123,http://purl.obolibrary.org/obo/GO_0009123,nucleoside monophosphate metabolic process +6.9240237,PR:000044657,http://purl.obolibrary.org/obo/PR_000044657,transient receptor potential channel protein +6.9249045,UBERON:0006858,http://purl.obolibrary.org/obo/UBERON_0006858,adrenal/interrenal gland +6.9249926,NCBITaxon:1963757,http://purl.obolibrary.org/obo/NCBITaxon_1963757,Castorimorpha +6.926139,MONDO:0024286,http://purl.obolibrary.org/obo/MONDO_0024286,benign blood vessel neoplasm +6.9261831,HP:0011793,http://purl.obolibrary.org/obo/HP_0011793,Neoplasm by anatomical site +6.9264037,GO:0009161,http://purl.obolibrary.org/obo/GO_0009161,ribonucleoside monophosphate metabolic process +6.9265802,GO:1903035,http://purl.obolibrary.org/obo/GO_1903035,negative regulation of response to wounding +6.9278167,MONDO:0001609,http://purl.obolibrary.org/obo/MONDO_0001609,agranulocytosis +6.9282587,GO:0009126,http://purl.obolibrary.org/obo/GO_0009126,purine nucleoside monophosphate metabolic process +6.9286567,MONDO:0004796,http://purl.obolibrary.org/obo/MONDO_0004796,infectious meningitis +6.9288336,GO:0009167,http://purl.obolibrary.org/obo/GO_0009167,purine ribonucleoside monophosphate metabolic process +6.9307818,GO:0044455,http://purl.obolibrary.org/obo/GO_0044455,none +6.9310034,UBERON:0003504,http://purl.obolibrary.org/obo/UBERON_0003504,respiratory system blood vessel +6.9311364,DRUGBANK:DB04398,http://purl.obolibrary.org/obo/DRUGBANK_DB04398,none +6.931713,NCBITaxon:379583,http://purl.obolibrary.org/obo/NCBITaxon_379583,Feliformia +6.9327338,GO:0080090,http://purl.obolibrary.org/obo/GO_0080090,regulation of primary metabolic process +6.9343337,PR:000001467,http://purl.obolibrary.org/obo/PR_000001467,intercellular adhesion molecule 1 +6.9346006,UBERON:0005358,http://purl.obolibrary.org/obo/UBERON_0005358,ventricle of nervous system +6.9351792,MONDO:0002135,http://purl.obolibrary.org/obo/MONDO_0002135,optic nerve disease +6.9352237,MONDO:0016677,http://purl.obolibrary.org/obo/MONDO_0016677,toxic or drug-related embryofetopathy +6.9354463,NCBITaxon:55153,http://purl.obolibrary.org/obo/NCBITaxon_55153,Sciuridae +6.935758,NCBITaxon:9397,http://purl.obolibrary.org/obo/NCBITaxon_9397,Chiroptera +6.9360253,NCBITaxon:10045,http://purl.obolibrary.org/obo/NCBITaxon_10045,none +6.937006,NCBITaxon:7778,http://purl.obolibrary.org/obo/NCBITaxon_7778,Elasmobranchii +6.9371398,NCBITaxon:9362,http://purl.obolibrary.org/obo/NCBITaxon_9362,Eulipotyphla +6.9376752,NCBITaxon:119203,http://purl.obolibrary.org/obo/NCBITaxon_119203,Selachii +6.9378983,NCBITaxon:9722,http://purl.obolibrary.org/obo/NCBITaxon_9722,Odontoceti +6.9381215,NCBITaxon:9655,http://purl.obolibrary.org/obo/NCBITaxon_9655,none +6.9381662,NCBITaxon:9348,http://purl.obolibrary.org/obo/NCBITaxon_9348,Xenarthra +6.9381662,NCBITaxon:9647,http://purl.obolibrary.org/obo/NCBITaxon_9647,none +6.9382555,NCBITaxon:10026,http://purl.obolibrary.org/obo/NCBITaxon_10026,Cricetinae +6.9382555,NCBITaxon:9363,http://purl.obolibrary.org/obo/NCBITaxon_9363,Erinaceidae +6.9382555,NCBITaxon:948950,http://purl.obolibrary.org/obo/NCBITaxon_948950,none +6.9383448,NCBITaxon:30649,http://purl.obolibrary.org/obo/NCBITaxon_30649,none +6.9383448,NCBITaxon:9697,http://purl.obolibrary.org/obo/NCBITaxon_9697,Herpestidae +6.9383894,NCBITaxon:10135,http://purl.obolibrary.org/obo/NCBITaxon_10135,none +6.9383894,NCBITaxon:169417,http://purl.obolibrary.org/obo/NCBITaxon_169417,none +6.9383894,NCBITaxon:197539,http://purl.obolibrary.org/obo/NCBITaxon_197539,none +6.9383894,NCBITaxon:29066,http://purl.obolibrary.org/obo/NCBITaxon_29066,none +6.9383894,NCBITaxon:29132,http://purl.obolibrary.org/obo/NCBITaxon_29132,Castoridae +6.9383894,NCBITaxon:743423,http://purl.obolibrary.org/obo/NCBITaxon_743423,none +6.9383894,NCBITaxon:9373,http://purl.obolibrary.org/obo/NCBITaxon_9373,Talpidae +6.9383894,NCBITaxon:948951,http://purl.obolibrary.org/obo/NCBITaxon_948951,Cingulata +6.9383894,NCBITaxon:948953,http://purl.obolibrary.org/obo/NCBITaxon_948953,none +6.9383894,NCBITaxon:9650,http://purl.obolibrary.org/obo/NCBITaxon_9650,none +6.9383894,NCBITaxon:9676,http://purl.obolibrary.org/obo/NCBITaxon_9676,none +6.9383894,NCBITaxon:9723,http://purl.obolibrary.org/obo/NCBITaxon_9723,none +6.9383894,NCBITaxon:9726,http://purl.obolibrary.org/obo/NCBITaxon_9726,none +6.9386128,HP:0002027,http://purl.obolibrary.org/obo/HP_0002027,Abdominal pain +6.9391936,GO:0098588,http://purl.obolibrary.org/obo/GO_0098588,bounding membrane of organelle +6.9412069,GO:0015464,http://purl.obolibrary.org/obo/GO_0015464,acetylcholine receptor activity +6.9416549,PR:000050022,http://purl.obolibrary.org/obo/PR_000050022,cyclin-D +6.9418341,MONDO:0024257,http://purl.obolibrary.org/obo/MONDO_0024257,hereditary motor neuron disease +6.9422375,GO:0032989,http://purl.obolibrary.org/obo/GO_0032989,cellular component morphogenesis +6.9429999,MONDO:0019292,http://purl.obolibrary.org/obo/MONDO_0019292,dermis elastic tissue disorder +6.9438527,UBERON:0004535,http://purl.obolibrary.org/obo/UBERON_0004535,cardiovascular system +6.9447062,DRUGBANK:DB00682,http://purl.obolibrary.org/obo/DRUGBANK_DB00682,none +6.9454256,MONDO:0001475,http://purl.obolibrary.org/obo/MONDO_0001475,neutropenia +6.9483532,PR:000013420,http://purl.obolibrary.org/obo/PR_000013420,glutathione-requiring prostaglandin D synthase +6.9485336,DRUGBANK:DB01183,http://purl.obolibrary.org/obo/DRUGBANK_DB01183,none +6.9489849,PR:000010491,http://purl.obolibrary.org/obo/PR_000010491,matrix metalloproteinase-9 +6.9497976,MONDO:0005146,http://purl.obolibrary.org/obo/MONDO_0005146,post-traumatic stress disorder +6.9503398,MONDO:0100081,http://purl.obolibrary.org/obo/MONDO_0100081,sleep disorder +6.9505206,GO:0044257,http://purl.obolibrary.org/obo/GO_0044257,cellular protein catabolic process +6.9505658,MONDO:0017019,http://purl.obolibrary.org/obo/MONDO_0017019,interstitial lung disease specific to infancy +6.9509275,MONDO:0015153,http://purl.obolibrary.org/obo/MONDO_0015153,autosomal monosomy +6.9512441,MONDO:0019796,http://purl.obolibrary.org/obo/MONDO_0019796,acrocephalosyndactyly +6.9521493,MONDO:0001208,http://purl.obolibrary.org/obo/MONDO_0001208,acute respiratory failure +6.9525568,DRUGBANK:DB00345,http://purl.obolibrary.org/obo/DRUGBANK_DB00345,none +6.9528287,MONDO:0020054,http://purl.obolibrary.org/obo/MONDO_0020054,partial autosomal monosomy +6.9535085,GO:0098960,http://purl.obolibrary.org/obo/GO_0098960,postsynaptic neurotransmitter receptor activity +6.954325,GO:0071103,http://purl.obolibrary.org/obo/GO_0071103,DNA conformation change +6.9551421,GO:0030164,http://purl.obolibrary.org/obo/GO_0030164,protein denaturation +6.9561417,SO:0001527,http://purl.obolibrary.org/obo/SO_0001527,peptide_localization_signal +6.9581894,UBERON:0001515,http://purl.obolibrary.org/obo/UBERON_0001515,thoracic aorta +6.958645,MONDO:0015126,http://purl.obolibrary.org/obo/MONDO_0015126,polyendocrinopathy +6.9587362,NCBITaxon:10310,http://purl.obolibrary.org/obo/NCBITaxon_10310,Human alphaherpesvirus 2 +6.9592376,GO:0030099,http://purl.obolibrary.org/obo/GO_0030099,myeloid cell differentiation +6.9592832,GO:0045453,http://purl.obolibrary.org/obo/GO_0045453,bone resorption +6.9595113,MONDO:0011996,http://purl.obolibrary.org/obo/MONDO_0011996,"chronic myelogenous leukemia, BCR-ABL1 positive" +6.9597393,MONDO:0015129,http://purl.obolibrary.org/obo/MONDO_0015129,chronic primary adrenal insufficiency +6.9610633,DRUGBANK:DB10573,http://purl.obolibrary.org/obo/DRUGBANK_DB10573,none +6.961109,CHEBI:32952,http://purl.obolibrary.org/obo/CHEBI_32952,amine +6.9614288,MONDO:0010150,http://purl.obolibrary.org/obo/MONDO_0010150,head and neck squamous cell carcinoma +6.9616573,SO:0001436,http://purl.obolibrary.org/obo/SO_0001436,valine +6.9618859,UBERON:0008114,http://purl.obolibrary.org/obo/UBERON_0008114,joint of girdle +6.9628923,HP:0002118,http://purl.obolibrary.org/obo/HP_0002118,Abnormal cerebral ventricle morphology +6.9651374,UBERON:0013140,http://purl.obolibrary.org/obo/UBERON_0013140,systemic vein +6.965275,PR:000005121,http://purl.obolibrary.org/obo/PR_000005121,G1/S-specific cyclin-D1 +6.9658715,DRUGBANK:DB05394,http://purl.obolibrary.org/obo/DRUGBANK_DB05394,none +6.966836,PR:000001121,http://purl.obolibrary.org/obo/PR_000001121,beta adrenergic receptor +6.9674335,MONDO:0002816,http://purl.obolibrary.org/obo/MONDO_0002816,adrenal cortex disease +6.9677093,MONDO:0016321,http://purl.obolibrary.org/obo/MONDO_0016321,pulmonary interstitial glycogenosis +6.9703341,GO:0000902,http://purl.obolibrary.org/obo/GO_0000902,cell morphogenesis +6.9703341,PR:000013057,http://purl.obolibrary.org/obo/PR_000013057,peroxisome proliferator-activated receptor delta +6.9710721,DRUGBANK:DB00415,http://purl.obolibrary.org/obo/DRUGBANK_DB00415,none +6.9715798,MONDO:0000147,http://purl.obolibrary.org/obo/MONDO_0000147,polyposis +6.9719954,MONDO:0005397,http://purl.obolibrary.org/obo/MONDO_0005397,goiter +6.972827,MONDO:0005150,http://purl.obolibrary.org/obo/MONDO_0005150,age-related macular degeneration +6.9742147,GO:0051241,http://purl.obolibrary.org/obo/GO_0051241,negative regulation of multicellular organismal process +6.9746777,HP:0030680,http://purl.obolibrary.org/obo/HP_0030680,Abnormality of cardiovascular system morphology +6.974724,GO:0009141,http://purl.obolibrary.org/obo/GO_0009141,nucleoside triphosphate metabolic process +6.9751872,MONDO:0019340,http://purl.obolibrary.org/obo/MONDO_0019340,scleroderma +6.9757897,DRUGBANK:DB01235,http://purl.obolibrary.org/obo/DRUGBANK_DB01235,none +6.9759288,PR:000027234,http://purl.obolibrary.org/obo/PR_000027234,proto-oncogene tyrosine-protein kinase Src +6.976439,MONDO:0021061,http://purl.obolibrary.org/obo/MONDO_0021061,neurofibromatosis +6.9764854,GO:0009199,http://purl.obolibrary.org/obo/GO_0009199,ribonucleoside triphosphate metabolic process +6.9765782,MONDO:0000612,http://purl.obolibrary.org/obo/MONDO_0000612,lymphatic system cancer +6.9770423,DRUGBANK:DB14131,http://purl.obolibrary.org/obo/DRUGBANK_DB14131,none +6.9778317,MONDO:0000603,http://purl.obolibrary.org/obo/MONDO_0000603,autoimmune disease of cardiovascular system +6.9780175,MONDO:0019715,http://purl.obolibrary.org/obo/MONDO_0019715,syndrome with synostosis or other joint formation defect +6.9782963,CL:0000893,http://purl.obolibrary.org/obo/CL_0000893,thymocyte +6.9790868,GO:0009144,http://purl.obolibrary.org/obo/GO_0009144,purine nucleoside triphosphate metabolic process +6.9792728,GO:0009205,http://purl.obolibrary.org/obo/GO_0009205,purine ribonucleoside triphosphate metabolic process +6.9796451,UBERON:0010891,http://purl.obolibrary.org/obo/UBERON_0010891,pectoral complex muscle +6.9817882,DRUGBANK:DB00675,http://purl.obolibrary.org/obo/DRUGBANK_DB00675,none +6.9820214,DRUGBANK:DB00661,http://purl.obolibrary.org/obo/DRUGBANK_DB00661,none +6.9826281,GO:0004939,http://purl.obolibrary.org/obo/GO_0004939,beta-adrenergic receptor activity +6.9826748,GO:0046034,http://purl.obolibrary.org/obo/GO_0046034,ATP metabolic process +6.9836088,CL:0000791,http://purl.obolibrary.org/obo/CL_0000791,mature alpha-beta T cell +6.9837957,MONDO:0024318,http://purl.obolibrary.org/obo/MONDO_0024318,viral infection of central nervous system +6.9840762,CL:0002420,http://purl.obolibrary.org/obo/CL_0002420,immature T cell +6.9863225,UBERON:0001242,http://purl.obolibrary.org/obo/UBERON_0001242,intestinal mucosa +6.9870255,UBERON:0025534,http://purl.obolibrary.org/obo/UBERON_0025534,sensorimotor system +6.9880106,MONDO:0044992,http://purl.obolibrary.org/obo/MONDO_0044992,mouth mucosa disease +6.9881514,HP:0001574,http://purl.obolibrary.org/obo/HP_0001574,Abnormality of the integument +6.9890436,GO:0004985,http://purl.obolibrary.org/obo/GO_0004985,G protein-coupled opioid receptor activity +6.9891846,MONDO:0018383,http://purl.obolibrary.org/obo/MONDO_0018383,osteonecrosis of genetic origin +6.9897485,DRUGBANK:DB11136,http://purl.obolibrary.org/obo/DRUGBANK_DB11136,none +6.9897956,GO:0050818,http://purl.obolibrary.org/obo/GO_0050818,regulation of coagulation +6.9906422,PR:P0CY08,http://purl.obolibrary.org/obo/PR_P0CY08,none +6.9921019,PR:000001447,http://purl.obolibrary.org/obo/PR_000001447,cadherin-1 +6.9922433,GO:0032392,http://purl.obolibrary.org/obo/GO_0032392,DNA geometric change +6.9923376,GO:0032508,http://purl.obolibrary.org/obo/GO_0032508,DNA duplex unwinding +6.9925261,UBERON:0001711,http://purl.obolibrary.org/obo/UBERON_0001711,eyelid +6.9929505,DRUGBANK:DB12768,http://purl.obolibrary.org/obo/DRUGBANK_DB12768,none +6.9939414,MONDO:0000402,http://purl.obolibrary.org/obo/MONDO_0000402,small cell carcinoma +6.9940359,GO:0016651,http://purl.obolibrary.org/obo/GO_0016651,"oxidoreductase activity, acting on NAD(P)H" +6.9945081,DRUGBANK:DB00107,http://purl.obolibrary.org/obo/DRUGBANK_DB00107,none +6.9946498,UBERON:0000440,http://purl.obolibrary.org/obo/UBERON_0000440,trabecula +6.9947443,CHEBI:35441,http://purl.obolibrary.org/obo/CHEBI_35441,antiinfective agent +6.9947916,GO:0007267,http://purl.obolibrary.org/obo/GO_0007267,cell-cell signaling +6.995737,GO:1900046,http://purl.obolibrary.org/obo/GO_1900046,regulation of hemostasis +6.9974411,UBERON:0001781,http://purl.obolibrary.org/obo/UBERON_0001781,layer of retina +6.9978675,GO:0061041,http://purl.obolibrary.org/obo/GO_0061041,regulation of wound healing +6.9983416,MONDO:0017131,http://purl.obolibrary.org/obo/MONDO_0017131,genetic cardiac anomaly +6.998721,PR:000002089,http://purl.obolibrary.org/obo/PR_000002089,signal transducer and activator of transcription 3 +6.9993379,MONDO:0005060,http://purl.obolibrary.org/obo/MONDO_0005060,liposarcoma +7.0000501,MONDO:0006290,http://purl.obolibrary.org/obo/MONDO_0006290,malignant germ cell tumor +7.0005728,MONDO:0001741,http://purl.obolibrary.org/obo/MONDO_0001741,hyperparathyroidism +7.0017616,GO:0030193,http://purl.obolibrary.org/obo/GO_0030193,regulation of blood coagulation +7.0029041,SO:0002309,http://purl.obolibrary.org/obo/SO_0002309,core_promoter_element +7.0032853,GO:0015849,http://purl.obolibrary.org/obo/GO_0015849,organic acid transport +7.0033329,MONDO:0016537,http://purl.obolibrary.org/obo/MONDO_0016537,lymphoproliferative syndrome +7.0046205,CHEBI:24869,http://purl.obolibrary.org/obo/CHEBI_24869,ionophore +7.0050978,PR:000036193,http://purl.obolibrary.org/obo/PR_000036193,amyloid beta peptide +7.0053365,GO:0007623,http://purl.obolibrary.org/obo/GO_0007623,circadian rhythm +7.0055753,NCBITaxon:11051,http://purl.obolibrary.org/obo/NCBITaxon_11051,Flavivirus +7.0064354,MONDO:0006256,http://purl.obolibrary.org/obo/MONDO_0006256,invasive breast carcinoma +7.0064354,MONDO:0015131,http://purl.obolibrary.org/obo/MONDO_0015131,congenital combined immunodeficiency +7.006531,PR:000050012,http://purl.obolibrary.org/obo/PR_000050012,annexin A +7.0071048,UBERON:0002080,http://purl.obolibrary.org/obo/UBERON_0002080,heart right ventricle +7.0076312,PR:000004122,http://purl.obolibrary.org/obo/PR_000004122,adenomatous polyposis coli protein +7.0078226,MONDO:0100338,http://purl.obolibrary.org/obo/MONDO_0100338,urinary tract infection +7.0083014,GO:0009725,http://purl.obolibrary.org/obo/GO_0009725,response to hormone +7.0088284,CHEBI:35338,http://purl.obolibrary.org/obo/CHEBI_35338,amphetamines +7.010123,MONDO:0001343,http://purl.obolibrary.org/obo/MONDO_0001343,impaired renal function disease +7.0105549,PR:P20432,http://purl.obolibrary.org/obo/PR_P20432,none +7.0118037,PR:000019036,http://purl.obolibrary.org/obo/PR_000019036,amyloid-beta precursor protein proteolytic cleavage product +7.0125249,DRUGBANK:DB00233,http://purl.obolibrary.org/obo/DRUGBANK_DB00233,none +7.0132466,UBERON:0001911,http://purl.obolibrary.org/obo/UBERON_0001911,mammary gland +7.0141615,GO:0016830,http://purl.obolibrary.org/obo/GO_0016830,carbon-carbon lyase activity +7.0148844,MONDO:0020001,http://purl.obolibrary.org/obo/MONDO_0020001,respiratory or thoracic malformation +7.0157525,MONDO:0006566,http://purl.obolibrary.org/obo/MONDO_0006566,keratosis +7.0165731,MONDO:0019086,http://purl.obolibrary.org/obo/MONDO_0019086,carcinoma of esophagus +7.0182647,DRUGBANK:DB13761,http://purl.obolibrary.org/obo/DRUGBANK_DB13761,none +7.0187969,UBERON:0001870,http://purl.obolibrary.org/obo/UBERON_0001870,frontal cortex +7.0191842,SO:0001606,http://purl.obolibrary.org/obo/SO_0001606,amino_acid_substitution +7.0195716,DRUGBANK:DB10707,http://purl.obolibrary.org/obo/DRUGBANK_DB10707,none +7.0198138,DRUGBANK:DB11387,http://purl.obolibrary.org/obo/DRUGBANK_DB11387,none +7.0198622,MONDO:0045011,http://purl.obolibrary.org/obo/MONDO_0045011,keratinization disease +7.0199592,GO:0016053,http://purl.obolibrary.org/obo/GO_0016053,organic acid biosynthetic process +7.0204438,CHEBI:2679,http://purl.obolibrary.org/obo/CHEBI_2679,amphetamine +7.0226763,MONDO:0015128,http://purl.obolibrary.org/obo/MONDO_0015128,primary adrenal insufficiency +7.023989,GO:0050819,http://purl.obolibrary.org/obo/GO_0050819,negative regulation of coagulation +7.0247677,GO:0008238,http://purl.obolibrary.org/obo/GO_0008238,exopeptidase activity +7.0249624,GO:0061045,http://purl.obolibrary.org/obo/GO_0061045,negative regulation of wound healing +7.0250111,GO:1900047,http://purl.obolibrary.org/obo/GO_1900047,negative regulation of hemostasis +7.0250598,CL:0000624,http://purl.obolibrary.org/obo/CL_0000624,"CD4-positive, alpha-beta T cell" +7.0251573,GO:0030195,http://purl.obolibrary.org/obo/GO_0030195,negative regulation of blood coagulation +7.0256444,MONDO:0024294,http://purl.obolibrary.org/obo/MONDO_0024294,skin disease caused by infection +7.0262294,GO:0042730,http://purl.obolibrary.org/obo/GO_0042730,fibrinolysis +7.0262781,HP:0001510,http://purl.obolibrary.org/obo/HP_0001510,Growth delay +7.0272538,PR:000004716,http://purl.obolibrary.org/obo/PR_000004716,brain-derived neurotrophic factor +7.0277909,DRUGBANK:DB10674,http://purl.obolibrary.org/obo/DRUGBANK_DB10674,none +7.0281328,MONDO:0004948,http://purl.obolibrary.org/obo/MONDO_0004948,B-cell chronic lymphocytic leukemia +7.0283282,GO:0046394,http://purl.obolibrary.org/obo/GO_0046394,carboxylic acid biosynthetic process +7.0283282,NCBITaxon:9935,http://purl.obolibrary.org/obo/NCBITaxon_9935,Ovis +7.0286214,NCBITaxon:9940,http://purl.obolibrary.org/obo/NCBITaxon_9940,Ovis aries +7.0295994,MONDO:0019751,http://purl.obolibrary.org/obo/MONDO_0019751,autoinflammatory syndrome +7.0299419,PR:000003225,http://purl.obolibrary.org/obo/PR_000003225,none +7.0302846,PR:000007939,http://purl.obolibrary.org/obo/PR_000007939,glial fibrillary acidic protein +7.0306274,DRUGBANK:DB12537,http://purl.obolibrary.org/obo/DRUGBANK_DB12537,none +7.0308233,DRUGBANK:DB00313,http://purl.obolibrary.org/obo/DRUGBANK_DB00313,none +7.0309702,PR:000007141,http://purl.obolibrary.org/obo/PR_000007141,erythropoietin +7.0315093,GO:0032993,http://purl.obolibrary.org/obo/GO_0032993,protein-DNA complex +7.0326373,MONDO:0006664,http://purl.obolibrary.org/obo/MONDO_0006664,atrial septal defect +7.0331772,MONDO:0021017,http://purl.obolibrary.org/obo/MONDO_0021017,synaptopathy +7.0334228,PR:000027222,http://purl.obolibrary.org/obo/PR_000027222,CALCA gene translation product +7.0338649,MONDO:0021075,http://purl.obolibrary.org/obo/MONDO_0021075,neoplastic polyp +7.0341597,MONDO:0015509,http://purl.obolibrary.org/obo/MONDO_0015509,genetic biliary tract disease +7.0345038,MONDO:0020023,http://purl.obolibrary.org/obo/MONDO_0020023,respiratory or mediastinal malformation +7.0349464,GO:0046942,http://purl.obolibrary.org/obo/GO_0046942,carboxylic acid transport +7.0352415,GO:0000904,http://purl.obolibrary.org/obo/GO_0000904,cell morphogenesis involved in differentiation +7.0358813,MONDO:0020124,http://purl.obolibrary.org/obo/MONDO_0020124,neuromuscular junction disease +7.0360783,DRUGBANK:DB00305,http://purl.obolibrary.org/obo/DRUGBANK_DB00305,none +7.0362753,MONDO:0100241,http://purl.obolibrary.org/obo/MONDO_0100241,inherited thrombocytopenia +7.0363245,MONDO:0020294,http://purl.obolibrary.org/obo/MONDO_0020294,atrial defect and interatrial communication +7.0363738,DRUGBANK:DB14366,http://purl.obolibrary.org/obo/DRUGBANK_DB14366,none +7.036423,GO:0044700,http://purl.obolibrary.org/obo/GO_0044700,single organism signaling +7.0367186,UBERON:0009141,http://purl.obolibrary.org/obo/UBERON_0009141,craniocervical region vein +7.0370636,UBERON:0002060,http://purl.obolibrary.org/obo/UBERON_0002060,femoral artery +7.0380006,UBERON:0003350,http://purl.obolibrary.org/obo/UBERON_0003350,epithelium of mucosa +7.0385928,MONDO:0017207,http://purl.obolibrary.org/obo/MONDO_0017207,primary organ-specific lymphoma +7.0386421,DRUGBANK:DB06690,http://purl.obolibrary.org/obo/DRUGBANK_DB06690,none +7.0400748,GO:0061061,http://purl.obolibrary.org/obo/GO_0061061,muscle structure development +7.0405694,MONDO:0005394,http://purl.obolibrary.org/obo/MONDO_0005394,brain infarction +7.0406188,CL:0000006,http://purl.obolibrary.org/obo/CL_0000006,neuronal receptor cell +7.0415591,MONDO:0018262,http://purl.obolibrary.org/obo/MONDO_0018262,fetal anticonvulsant syndrome +7.0425003,GO:0030168,http://purl.obolibrary.org/obo/GO_0030168,platelet activation +7.0425498,NCBITaxon:980193,http://purl.obolibrary.org/obo/NCBITaxon_980193,none +7.0427977,NCBITaxon:3703,http://purl.obolibrary.org/obo/NCBITaxon_3703,none +7.0428968,NCBITaxon:3704,http://purl.obolibrary.org/obo/NCBITaxon_3704,none +7.0430952,DRUGBANK:DB00099,http://purl.obolibrary.org/obo/DRUGBANK_DB00099,none +7.0431944,MONDO:0015330,http://purl.obolibrary.org/obo/MONDO_0015330,overgrowth/obesity syndrome +7.0434424,GO:0060537,http://purl.obolibrary.org/obo/GO_0060537,muscle tissue development +7.0436904,MONDO:0016397,http://purl.obolibrary.org/obo/MONDO_0016397,lysosomal disease with epilepsy +7.0441867,MONDO:0020266,http://purl.obolibrary.org/obo/MONDO_0020266,genodermatosis with ocular features +7.045528,MONDO:0015244,http://purl.obolibrary.org/obo/MONDO_0015244,autosomal recessive cerebellar ataxia +7.0455777,MONDO:0010953,http://purl.obolibrary.org/obo/MONDO_0010953,Fanconi anemia complementation group E +7.0455777,UBERON:0001322,http://purl.obolibrary.org/obo/UBERON_0001322,sciatic nerve +7.0464231,PR:000005122,http://purl.obolibrary.org/obo/PR_000005122,G1/S-specific cyclin-D2 +7.0493629,HP:0032180,http://purl.obolibrary.org/obo/HP_0032180,Abnormal circulating metabolite concentration +7.0493629,PR:000043452,http://purl.obolibrary.org/obo/PR_000043452,core histone +7.0497123,MONDO:0021016,http://purl.obolibrary.org/obo/MONDO_0021016,channelopathy +7.049912,MONDO:0005100,http://purl.obolibrary.org/obo/MONDO_0005100,systemic sclerosis +7.0500118,MONDO:0030701,http://purl.obolibrary.org/obo/MONDO_0030701,autoimmune cardiomyopathy +7.0503614,UBERON:0001890,http://purl.obolibrary.org/obo/UBERON_0001890,forebrain +7.0525116,PR:000001155,http://purl.obolibrary.org/obo/PR_000001155,Toll-like receptor 4 +7.0530123,NCBITaxon:119089,http://purl.obolibrary.org/obo/NCBITaxon_119089,Chromadorea +7.0530123,UBERON:0035965,http://purl.obolibrary.org/obo/UBERON_0035965,wall of blood vessel +7.0532627,NCBITaxon:6236,http://purl.obolibrary.org/obo/NCBITaxon_6236,Rhabditida +7.0560218,CL:0001200,http://purl.obolibrary.org/obo/CL_0001200,"lymphocyte of B lineage, CD19-positive" +7.0560218,CL:0001201,http://purl.obolibrary.org/obo/CL_0001201,"B cell, CD19-positive" +7.0578821,DRUGBANK:DB04465,http://purl.obolibrary.org/obo/DRUGBANK_DB04465,none +7.060099,DRUGBANK:DB01082,http://purl.obolibrary.org/obo/DRUGBANK_DB01082,none +7.0602503,GO:0006396,http://purl.obolibrary.org/obo/GO_0006396,RNA processing +7.0610578,MONDO:0004892,http://purl.obolibrary.org/obo/MONDO_0004892,refractive error +7.0612093,MONDO:0002311,http://purl.obolibrary.org/obo/MONDO_0002311,retinal vascular disease +7.0627252,MONDO:0002242,http://purl.obolibrary.org/obo/MONDO_0002242,coagulation protein disease +7.0627758,PR:000005123,http://purl.obolibrary.org/obo/PR_000005123,G1/S-specific cyclin-D3 +7.0629781,MONDO:0024573,http://purl.obolibrary.org/obo/MONDO_0024573,familial hypertrophic cardiomyopathy +7.0636359,MONDO:0002679,http://purl.obolibrary.org/obo/MONDO_0002679,cerebral infarction +7.0636359,MONDO:0005011,http://purl.obolibrary.org/obo/MONDO_0005011,Crohn disease +7.0651049,DRUGBANK:DB12091,http://purl.obolibrary.org/obo/DRUGBANK_DB12091,none +7.0656627,HP:0002921,http://purl.obolibrary.org/obo/HP_0002921,Abnormality of the cerebrospinal fluid +7.0657134,HP:0000238,http://purl.obolibrary.org/obo/HP_0000238,Hydrocephalus +7.0664238,MONDO:0016982,http://purl.obolibrary.org/obo/MONDO_0016982,angiosarcoma +7.0675919,GO:0033267,http://purl.obolibrary.org/obo/GO_0033267,none +7.0697795,GO:0016831,http://purl.obolibrary.org/obo/GO_0016831,carboxy-lyase activity +7.070187,DRUGBANK:DB00199,http://purl.obolibrary.org/obo/DRUGBANK_DB00199,none +7.0726867,NCBITaxon:55879,http://purl.obolibrary.org/obo/NCBITaxon_55879,Rhabditoidea +7.0727378,GO:0002521,http://purl.obolibrary.org/obo/GO_0002521,leukocyte differentiation +7.0727889,NCBITaxon:6237,http://purl.obolibrary.org/obo/NCBITaxon_6237,Caenorhabditis +7.0731465,NCBITaxon:2301116,http://purl.obolibrary.org/obo/NCBITaxon_2301116,Rhabditina +7.073811,NCBITaxon:2301119,http://purl.obolibrary.org/obo/NCBITaxon_2301119,Rhabditomorpha +7.073811,NCBITaxon:6243,http://purl.obolibrary.org/obo/NCBITaxon_6243,Rhabditidae +7.0740668,NCBITaxon:55885,http://purl.obolibrary.org/obo/NCBITaxon_55885,Peloderinae +7.0745272,MONDO:0002145,http://purl.obolibrary.org/obo/MONDO_0002145,sex differentiation disease +7.0757561,MONDO:0019213,http://purl.obolibrary.org/obo/MONDO_0019213,cerebral organic aciduria +7.0765762,UBERON:0011134,http://purl.obolibrary.org/obo/UBERON_0011134,nonsynovial joint +7.0768839,CL:0000492,http://purl.obolibrary.org/obo/CL_0000492,CD4-positive helper T cell +7.0769352,NCBITaxon:6239,http://purl.obolibrary.org/obo/NCBITaxon_6239,Caenorhabditis elegans +7.0780643,DRUGBANK:DB03568,http://purl.obolibrary.org/obo/DRUGBANK_DB03568,none +7.0783725,MONDO:0002547,http://purl.obolibrary.org/obo/MONDO_0002547,nerve sheath neoplasm +7.0784238,UBERON:0002209,http://purl.obolibrary.org/obo/UBERON_0002209,fibrous joint +7.0794518,MONDO:0024622,http://purl.obolibrary.org/obo/MONDO_0024622,thyroid gland adenocarcinoma +7.0800691,DRUGBANK:DB04422,http://purl.obolibrary.org/obo/DRUGBANK_DB04422,none +7.0815109,MONDO:0002623,http://purl.obolibrary.org/obo/MONDO_0002623,pediatric osteosarcoma +7.0816655,PR:000004155,http://purl.obolibrary.org/obo/PR_000004155,apolipoprotein E +7.082181,MONDO:0002785,http://purl.obolibrary.org/obo/MONDO_0002785,skull base neoplasm +7.0839874,UBERON:0003703,http://purl.obolibrary.org/obo/UBERON_0003703,extrahepatic bile duct +7.0841941,DRUGBANK:DB03796,http://purl.obolibrary.org/obo/DRUGBANK_DB03796,none +7.0842974,GO:0070997,http://purl.obolibrary.org/obo/GO_0070997,neuron death +7.0862112,DRUGBANK:DB00818,http://purl.obolibrary.org/obo/DRUGBANK_DB00818,none +7.086263,UBERON:3010224,http://purl.obolibrary.org/obo/UBERON_3010224,none +7.0875064,UBERON:0000358,http://purl.obolibrary.org/obo/UBERON_0000358,blastocyst +7.0882324,UBERON:0001199,http://purl.obolibrary.org/obo/UBERON_0001199,mucosa of stomach +7.0884918,GO:0034219,http://purl.obolibrary.org/obo/GO_0034219,carbohydrate transmembrane transport +7.0889589,UBERON:0007794,http://purl.obolibrary.org/obo/UBERON_0007794,secretion of serous gland +7.0890109,PR:000004191,http://purl.obolibrary.org/obo/PR_000004191,androgen receptor +7.0891147,PR:000023742,http://purl.obolibrary.org/obo/PR_000023742,none +7.0898419,MONDO:0002175,http://purl.obolibrary.org/obo/MONDO_0002175,degeneration of macula and posterior pole +7.0906216,PR:000006897,http://purl.obolibrary.org/obo/PR_000006897,endothelin-1 +7.0907776,UBERON:3000961,http://purl.obolibrary.org/obo/UBERON_3000961,external integument structure +7.0908297,PR:000009232,http://purl.obolibrary.org/obo/PR_000009232,transcription factor AP-1 +7.091402,MONDO:0006496,http://purl.obolibrary.org/obo/MONDO_0006496,palsy +7.0932773,UBERON:0002483,http://purl.obolibrary.org/obo/UBERON_0002483,trabecular bone tissue +7.0939553,PR:Q24298,http://purl.obolibrary.org/obo/PR_Q24298,none +7.0950516,PR:000023628,http://purl.obolibrary.org/obo/PR_000023628,none +7.0954696,GO:0048762,http://purl.obolibrary.org/obo/GO_0048762,mesenchymal cell differentiation +7.0960445,PR:000000020,http://purl.obolibrary.org/obo/PR_000000020,Myc protein +7.0973001,PR:000001919,http://purl.obolibrary.org/obo/PR_000001919,programmed cell death protein 1 +7.0978238,MONDO:0006509,http://purl.obolibrary.org/obo/MONDO_0006509,papillary carcinoma +7.0982429,UBERON:0007702,http://purl.obolibrary.org/obo/UBERON_0007702,tract of brain +7.0982953,GO:0048534,http://purl.obolibrary.org/obo/GO_0048534,hematopoietic or lymphoid organ development +7.0985574,GO:0004882,http://purl.obolibrary.org/obo/GO_0004882,none +7.0987146,PR:000000084,http://purl.obolibrary.org/obo/PR_000000084,c-myc protein +7.0990817,MONDO:0006170,http://purl.obolibrary.org/obo/MONDO_0006170,conjunctival disorder +7.0995013,UBERON:0010996,http://purl.obolibrary.org/obo/UBERON_0010996,articular cartilage of joint +7.0996587,HP:0000271,http://purl.obolibrary.org/obo/HP_0000271,Abnormality of the face +7.1016547,UBERON:0034729,http://purl.obolibrary.org/obo/UBERON_0034729,sympathetic nerve +7.1023911,DRUGBANK:DB00058,http://purl.obolibrary.org/obo/DRUGBANK_DB00058,none +7.102549,UBERON:0009773,http://purl.obolibrary.org/obo/UBERON_0009773,renal tubule +7.103444,DRUGBANK:DB12481,http://purl.obolibrary.org/obo/DRUGBANK_DB12481,none +7.1076668,GO:0042623,http://purl.obolibrary.org/obo/GO_0042623,none +7.1078255,NCBITaxon:2732461,http://purl.obolibrary.org/obo/NCBITaxon_2732461,Alsuviricetes +7.1079842,MONDO:0004966,http://purl.obolibrary.org/obo/MONDO_0004966,gastritis +7.1096788,UBERON:0003441,http://purl.obolibrary.org/obo/UBERON_0003441,forelimb nerve +7.110209,GO:0006325,http://purl.obolibrary.org/obo/GO_0006325,chromatin organization +7.1109517,GO:0030097,http://purl.obolibrary.org/obo/GO_0030097,hemopoiesis +7.1123856,GO:0001837,http://purl.obolibrary.org/obo/GO_0001837,epithelial to mesenchymal transition +7.1136619,DRUGBANK:DB04532,http://purl.obolibrary.org/obo/DRUGBANK_DB04532,none +7.1138216,DRUGBANK:DB00951,http://purl.obolibrary.org/obo/DRUGBANK_DB00951,none +7.114354,DRUGBANK:DB00829,http://purl.obolibrary.org/obo/DRUGBANK_DB00829,none +7.1145137,DRUGBANK:DB00048,http://purl.obolibrary.org/obo/DRUGBANK_DB00048,none +7.1153662,GO:0005035,http://purl.obolibrary.org/obo/GO_0005035,death receptor activity +7.1168065,MONDO:0002473,http://purl.obolibrary.org/obo/MONDO_0002473,cystic kidney disease +7.1168599,MONDO:0019301,http://purl.obolibrary.org/obo/MONDO_0019301,metabolic disease with skin involvement +7.1177144,GO:0009405,http://purl.obolibrary.org/obo/GO_0009405,none +7.1189976,CHEBI:5291,http://purl.obolibrary.org/obo/CHEBI_5291,gelatin +7.1191581,UBERON:0000173,http://purl.obolibrary.org/obo/UBERON_0000173,amniotic fluid +7.1193186,SO:0002343,http://purl.obolibrary.org/obo/SO_0002343,cytosolic_rRNA +7.1197468,DRUGBANK:DB00773,http://purl.obolibrary.org/obo/DRUGBANK_DB00773,none +7.1217834,DRUGBANK:DB01115,http://purl.obolibrary.org/obo/DRUGBANK_DB01115,none +7.1219443,UBERON:0001756,http://purl.obolibrary.org/obo/UBERON_0001756,middle ear +7.1225347,NCBITaxon:10357,http://purl.obolibrary.org/obo/NCBITaxon_10357,Betaherpesvirinae +7.1226958,UBERON:0006072,http://purl.obolibrary.org/obo/UBERON_0006072,cervical region of vertebral column +7.1232867,CHEBI:35470,http://purl.obolibrary.org/obo/CHEBI_35470,central nervous system drug +7.1232867,UBERON:0003433,http://purl.obolibrary.org/obo/UBERON_0003433,arm nerve +7.1247384,PR:000001092,http://purl.obolibrary.org/obo/PR_000001092,interleukin-17 +7.1259767,PR:000004385,http://purl.obolibrary.org/obo/PR_000004385,L-asparaginase +7.1263539,DRUGBANK:DB00073,http://purl.obolibrary.org/obo/DRUGBANK_DB00073,none +7.1266234,GO:0022834,http://purl.obolibrary.org/obo/GO_0022834,ligand-gated channel activity +7.1266234,MONDO:0004952,http://purl.obolibrary.org/obo/MONDO_0004952,Hodgkins lymphoma +7.128674,DRUGBANK:DB02587,http://purl.obolibrary.org/obo/DRUGBANK_DB02587,none +7.1291063,MONDO:0004790,http://purl.obolibrary.org/obo/MONDO_0004790,fatty liver disease +7.1291063,PR:000010479,http://purl.obolibrary.org/obo/PR_000010479,72 kDa type IV collagenase +7.1305124,CL:0002608,http://purl.obolibrary.org/obo/CL_0002608,hippocampal neuron +7.1305665,MONDO:0001516,http://purl.obolibrary.org/obo/MONDO_0001516,spinal muscular atrophy +7.1306747,MONDO:0019287,http://purl.obolibrary.org/obo/MONDO_0019287,ectodermal dysplasia syndrome +7.131162,DRUGBANK:DB00279,http://purl.obolibrary.org/obo/DRUGBANK_DB00279,none +7.1315411,HP:0000951,http://purl.obolibrary.org/obo/HP_0000951,Abnormality of the skin +7.1315953,GO:0009293,http://purl.obolibrary.org/obo/GO_0009293,transduction +7.1319746,DRUGBANK:DB10562,http://purl.obolibrary.org/obo/DRUGBANK_DB10562,none +7.1327879,MONDO:0005542,http://purl.obolibrary.org/obo/MONDO_0005542,acute coronary syndrome +7.1333305,MONDO:0005354,http://purl.obolibrary.org/obo/MONDO_0005354,chronic hepatitis C virus infection +7.1343078,GO:0015844,http://purl.obolibrary.org/obo/GO_0015844,monoamine transport +7.1364287,PR:000025848,http://purl.obolibrary.org/obo/PR_000025848,type I interferon +7.1372457,GO:0004860,http://purl.obolibrary.org/obo/GO_0004860,protein kinase inhibitor activity +7.1376271,DRUGBANK:DB03017,http://purl.obolibrary.org/obo/DRUGBANK_DB03017,none +7.1376271,SO:0001622,http://purl.obolibrary.org/obo/SO_0001622,UTR_variant +7.1380633,MONDO:0005016,http://purl.obolibrary.org/obo/MONDO_0005016,diabetic kidney disease +7.1381723,UBERON:0012423,http://purl.obolibrary.org/obo/UBERON_0012423,layer of microvilli +7.1388815,GO:0015276,http://purl.obolibrary.org/obo/GO_0015276,ligand-gated ion channel activity +7.1395912,UBERON:0002470,http://purl.obolibrary.org/obo/UBERON_0002470,autopod region +7.1397004,GO:1901617,http://purl.obolibrary.org/obo/GO_1901617,organic hydroxy compound biosynthetic process +7.1400828,MONDO:0600002,http://purl.obolibrary.org/obo/MONDO_0600002,hemorrhagic fever +7.1406294,MONDO:0008708,http://purl.obolibrary.org/obo/MONDO_0008708,acrocallosal syndrome +7.1407387,UBERON:0003442,http://purl.obolibrary.org/obo/UBERON_0003442,hindlimb nerve +7.1429281,CHEBI:35842,http://purl.obolibrary.org/obo/CHEBI_35842,antirheumatic drug +7.1433117,MONDO:0005632,http://purl.obolibrary.org/obo/MONDO_0005632,acute chest syndrome +7.1439149,MONDO:0004938,http://purl.obolibrary.org/obo/MONDO_0004938,substance dependence +7.1439149,MONDO:0018087,http://purl.obolibrary.org/obo/MONDO_0018087,viral hemorrhagic fever +7.1440795,GO:0060090,http://purl.obolibrary.org/obo/GO_0060090,molecular adaptor activity +7.1441892,GO:0030674,http://purl.obolibrary.org/obo/GO_0030674,protein-macromolecule adaptor activity +7.1446282,PR:000003777,http://purl.obolibrary.org/obo/PR_000003777,adiponectin +7.1446831,MONDO:0005266,http://purl.obolibrary.org/obo/MONDO_0005266,diabetic retinopathy +7.1449027,UBERON:0003835,http://purl.obolibrary.org/obo/UBERON_0003835,abdominal segment blood vessel +7.1455068,CHEBI:39442,http://purl.obolibrary.org/obo/CHEBI_39442,fluorescent probe +7.1482023,GO:0031975,http://purl.obolibrary.org/obo/GO_0031975,envelope +7.148643,MONDO:0003081,http://purl.obolibrary.org/obo/MONDO_0003081,thalamic disease +7.1493597,MONDO:0005864,http://purl.obolibrary.org/obo/MONDO_0005864,muscle cancer +7.1522868,HP:0011805,http://purl.obolibrary.org/obo/HP_0011805,Abnormal skeletal muscle morphology +7.1525081,MONDO:0045012,http://purl.obolibrary.org/obo/MONDO_0045012,steroid metabolism disease +7.1531722,DRUGBANK:DB12510,http://purl.obolibrary.org/obo/DRUGBANK_DB12510,none +7.1533383,UBERON:0003929,http://purl.obolibrary.org/obo/UBERON_0003929,digestive tract epithelium +7.1537259,DRUGBANK:DB00331,http://purl.obolibrary.org/obo/DRUGBANK_DB00331,none +7.1538921,DRUGBANK:DB11558,http://purl.obolibrary.org/obo/DRUGBANK_DB11558,none +7.1541137,MONDO:0002813,http://purl.obolibrary.org/obo/MONDO_0002813,lipomatous cancer +7.15428,UBERON:0001137,http://purl.obolibrary.org/obo/UBERON_0001137,dorsum +7.1545571,DRUGBANK:DB00115,http://purl.obolibrary.org/obo/DRUGBANK_DB00115,none +7.1546125,UBERON:0002115,http://purl.obolibrary.org/obo/UBERON_0002115,jejunum +7.1549452,MONDO:0005794,http://purl.obolibrary.org/obo/MONDO_0005794,Herpesviridae infectious disease +7.1552226,GO:0098590,http://purl.obolibrary.org/obo/GO_0098590,plasma membrane region +7.1553335,DRUGBANK:DB00541,http://purl.obolibrary.org/obo/DRUGBANK_DB00541,none +7.1556109,DRUGBANK:DB00182,http://purl.obolibrary.org/obo/DRUGBANK_DB00182,none +7.1556664,PR:000014806,http://purl.obolibrary.org/obo/PR_000014806,small G protein signaling modulator 3 +7.1558329,DRUGBANK:DB01174,http://purl.obolibrary.org/obo/DRUGBANK_DB01174,none +7.155944,UBERON:0003431,http://purl.obolibrary.org/obo/UBERON_0003431,leg nerve +7.1561105,PR:000023165,http://purl.obolibrary.org/obo/PR_000023165,none +7.1564437,MONDO:0000167,http://purl.obolibrary.org/obo/MONDO_0000167,Huntington disease and related disorders +7.1564992,DRUGBANK:DB01240,http://purl.obolibrary.org/obo/DRUGBANK_DB01240,none +7.1572216,NCBITaxon:2497571,http://purl.obolibrary.org/obo/NCBITaxon_2497571,Polyploviricotina +7.1592246,HP:0011389,http://purl.obolibrary.org/obo/HP_0011389,Functional abnormality of the inner ear +7.1607852,UBERON:0003497,http://purl.obolibrary.org/obo/UBERON_0003497,abdomen blood vessel +7.1633545,HP:0100022,http://purl.obolibrary.org/obo/HP_0100022,Abnormality of movement +7.1635223,PR:000004974,http://purl.obolibrary.org/obo/PR_000004974,caldesmon +7.1636901,NCBITaxon:9922,http://purl.obolibrary.org/obo/NCBITaxon_9922,Capra +7.1653698,NCBITaxon:9925,http://purl.obolibrary.org/obo/NCBITaxon_9925,Capra hircus +7.1664912,MONDO:0004382,http://purl.obolibrary.org/obo/MONDO_0004382,laryngeal disease +7.1670524,SO:0000298,http://purl.obolibrary.org/obo/SO_0000298,recombination_feature +7.1675577,PR:000027804,http://purl.obolibrary.org/obo/PR_000027804,basic helix-loop-helix transcription factor HAND +7.1697504,MONDO:0024627,http://purl.obolibrary.org/obo/MONDO_0024627,phagocytic cell dysfunction +7.169863,GO:0006520,http://purl.obolibrary.org/obo/GO_0006520,cellular amino acid metabolic process +7.1719479,MONDO:0005468,http://purl.obolibrary.org/obo/MONDO_0005468,hypotensive disorder +7.1723992,PR:000025350,http://purl.obolibrary.org/obo/PR_000025350,HSPC protein +7.1739806,GO:0007166,http://purl.obolibrary.org/obo/GO_0007166,cell surface receptor signaling pathway +7.174942,GO:0042056,http://purl.obolibrary.org/obo/GO_0042056,chemoattractant activity +7.1750551,DRUGBANK:DB00159,http://purl.obolibrary.org/obo/DRUGBANK_DB00159,none +7.1756778,MONDO:0005392,http://purl.obolibrary.org/obo/MONDO_0005392,scoliosis +7.175791,CL:0002248,http://purl.obolibrary.org/obo/CL_0002248,pluripotent stem cell +7.1774912,GO:0042098,http://purl.obolibrary.org/obo/GO_0042098,T cell proliferation +7.1786831,GO:0016051,http://purl.obolibrary.org/obo/GO_0016051,carbohydrate biosynthetic process +7.1787398,MONDO:0015133,http://purl.obolibrary.org/obo/MONDO_0015133,quantitative and/or qualitative congenital phagocyte defect +7.1795353,MONDO:0005304,http://purl.obolibrary.org/obo/MONDO_0005304,biliary tract neoplasm +7.1799332,DRUGBANK:DB00813,http://purl.obolibrary.org/obo/DRUGBANK_DB00813,none +7.1805589,CL:0000128,http://purl.obolibrary.org/obo/CL_0000128,oligodendrocyte +7.1824382,PR:000007465,http://purl.obolibrary.org/obo/PR_000007465,protein FEV +7.1831224,DRUGBANK:DB14227,http://purl.obolibrary.org/obo/DRUGBANK_DB14227,none +7.1844924,PR:000008439,http://purl.obolibrary.org/obo/PR_000008439,heart- and neural crest derivatives-expressed protein 1 +7.1851209,PR:000001802,http://purl.obolibrary.org/obo/PR_000001802,C-C motif chemokine 27 +7.1852352,DRUGBANK:DB00388,http://purl.obolibrary.org/obo/DRUGBANK_DB00388,none +7.1863791,MONDO:0018751,http://purl.obolibrary.org/obo/MONDO_0018751,genetic otorhinolaryngologic disease +7.1870088,MONDO:0006032,http://purl.obolibrary.org/obo/MONDO_0006032,cystitis +7.1876389,DRUGBANK:DB00502,http://purl.obolibrary.org/obo/DRUGBANK_DB00502,none +7.1879255,DRUGBANK:DB12620,http://purl.obolibrary.org/obo/DRUGBANK_DB12620,none +7.1903357,GO:0009060,http://purl.obolibrary.org/obo/GO_0009060,aerobic respiration +7.1903357,MONDO:0002366,http://purl.obolibrary.org/obo/MONDO_0002366,autonomic nervous system neoplasm +7.1903931,MONDO:0006474,http://purl.obolibrary.org/obo/MONDO_0006474,transitional cell carcinoma +7.1909679,SO:0002031,http://purl.obolibrary.org/obo/SO_0002031,shRNA +7.1910829,UBERON:0000078,http://purl.obolibrary.org/obo/UBERON_0000078,mixed ectoderm/mesoderm/endoderm-derived structure +7.1912554,PR:000001313,http://purl.obolibrary.org/obo/PR_000001313,E/P-selectin +7.1922335,MONDO:0020280,http://purl.obolibrary.org/obo/MONDO_0020280,metabolic disease with cataract +7.192291,UBERON:0001969,http://purl.obolibrary.org/obo/UBERON_0001969,blood plasma +7.1927517,CL:0000148,http://purl.obolibrary.org/obo/CL_0000148,melanocyte +7.1928093,MONDO:0000448,http://purl.obolibrary.org/obo/MONDO_0000448,paraganglioma +7.1932125,MONDO:0002329,http://purl.obolibrary.org/obo/MONDO_0002329,testicular disease +7.194481,GO:0019233,http://purl.obolibrary.org/obo/GO_0019233,sensory perception of pain +7.1951736,UBERON:4200215,http://purl.obolibrary.org/obo/UBERON_4200215,suture +7.1952313,MONDO:0003060,http://purl.obolibrary.org/obo/MONDO_0003060,biliary tract cancer +7.1974277,MONDO:0005065,http://purl.obolibrary.org/obo/MONDO_0005065,mesothelioma +7.1982381,MONDO:0021167,http://purl.obolibrary.org/obo/MONDO_0021167,myositis +7.1983539,GO:0016755,http://purl.obolibrary.org/obo/GO_0016755,aminoacyltransferase activity +7.1985856,DRUGBANK:DB01481,http://purl.obolibrary.org/obo/DRUGBANK_DB01481,none +7.1990492,UBERON:0018664,http://purl.obolibrary.org/obo/UBERON_0018664,neck of bone element +7.1991651,DRUGBANK:DB00681,http://purl.obolibrary.org/obo/DRUGBANK_DB00681,none +7.1992231,MONDO:0005377,http://purl.obolibrary.org/obo/MONDO_0005377,nephrotic syndrome +7.1996869,CL:0002543,http://purl.obolibrary.org/obo/CL_0002543,vein endothelial cell +7.2003831,GO:0016913,http://purl.obolibrary.org/obo/GO_0016913,follicle-stimulating hormone activity +7.2007894,MONDO:0021254,http://purl.obolibrary.org/obo/MONDO_0021254,corpus uteri neoplasm +7.2010798,MONDO:0021545,http://purl.obolibrary.org/obo/MONDO_0021545,myomatous neoplasm +7.2016026,MONDO:0006003,http://purl.obolibrary.org/obo/MONDO_0006003,uterine corpus cancer +7.201835,DRUGBANK:DB00742,http://purl.obolibrary.org/obo/DRUGBANK_DB00742,none +7.2030563,MONDO:0002720,http://purl.obolibrary.org/obo/MONDO_0002720,sella turcica neoplasm +7.2032891,GO:1904659,http://purl.obolibrary.org/obo/GO_1904659,glucose transmembrane transport +7.2064954,DRUGBANK:DB15591,http://purl.obolibrary.org/obo/DRUGBANK_DB15591,none +7.207547,UBERON:0007119,http://purl.obolibrary.org/obo/UBERON_0007119,neck of femur +7.2083072,UBERON:0007106,http://purl.obolibrary.org/obo/UBERON_0007106,chorionic villus +7.2086582,DRUGBANK:DB11325,http://purl.obolibrary.org/obo/DRUGBANK_DB11325,none +7.2090679,HP:0009830,http://purl.obolibrary.org/obo/HP_0009830,Peripheral neuropathy +7.2099464,GO:0006694,http://purl.obolibrary.org/obo/GO_0006694,steroid biosynthetic process +7.210005,PR:000029641,http://purl.obolibrary.org/obo/PR_000029641,negative elongation factor C/D +7.2104739,CL:1001611,http://purl.obolibrary.org/obo/CL_1001611,cerebellar neuron +7.210767,UBERON:0005616,http://purl.obolibrary.org/obo/UBERON_0005616,mesenteric artery +7.2124103,MONDO:0005557,http://purl.obolibrary.org/obo/MONDO_0005557,calcium metabolic disease +7.2137622,GO:0004565,http://purl.obolibrary.org/obo/GO_0004565,beta-galactosidase activity +7.2140563,CHEBI:36962,http://purl.obolibrary.org/obo/CHEBI_36962,organochalcogen compound +7.214174,MONDO:0015651,http://purl.obolibrary.org/obo/MONDO_0015651,neurocutaneous syndrome with epilepsy +7.2144094,GO:0046323,http://purl.obolibrary.org/obo/GO_0046323,glucose import +7.2155283,DRUGBANK:DB12126,http://purl.obolibrary.org/obo/DRUGBANK_DB12126,none +7.2156461,DRUGBANK:DB00277,http://purl.obolibrary.org/obo/DRUGBANK_DB00277,none +7.2164714,MONDO:0001384,http://purl.obolibrary.org/obo/MONDO_0001384,myopia +7.2175336,GO:1901605,http://purl.obolibrary.org/obo/GO_1901605,alpha-amino acid metabolic process +7.2181241,DRUGBANK:DB03581,http://purl.obolibrary.org/obo/DRUGBANK_DB03581,none +7.2186559,MONDO:0003059,http://purl.obolibrary.org/obo/MONDO_0003059,bile duct cancer +7.2200163,UBERON:0003841,http://purl.obolibrary.org/obo/UBERON_0003841,autopod joint +7.2205491,DRUGBANK:DB03756,http://purl.obolibrary.org/obo/DRUGBANK_DB03756,none +7.2205491,UBERON:0001384,http://purl.obolibrary.org/obo/UBERON_0001384,primary motor cortex +7.2214377,MONDO:0002331,http://purl.obolibrary.org/obo/MONDO_0002331,nephrosis +7.2222086,GO:0016568,http://purl.obolibrary.org/obo/GO_0016568,none +7.2228612,CHEBI:37577,http://purl.obolibrary.org/obo/CHEBI_37577,heteroatomic molecular entity +7.2228612,MONDO:0016110,http://purl.obolibrary.org/obo/MONDO_0016110,non-dystrophic myopathy +7.2238114,NCBITaxon:11159,http://purl.obolibrary.org/obo/NCBITaxon_11159,none +7.2238708,PR:000015248,http://purl.obolibrary.org/obo/PR_000015248,antileukoproteinase +7.2242868,MONDO:0021662,http://purl.obolibrary.org/obo/MONDO_0021662,bile duct neoplasm +7.2243462,MONDO:0043885,http://purl.obolibrary.org/obo/MONDO_0043885,eye infectious disease +7.224584,CHEBI:36963,http://purl.obolibrary.org/obo/CHEBI_36963,organooxygen compound +7.2246434,MONDO:0016054,http://purl.obolibrary.org/obo/MONDO_0016054,cerebral malformation +7.2248813,MONDO:0015953,http://purl.obolibrary.org/obo/MONDO_0015953,genetic central nervous system and retinal vascular disease +7.2252977,PR:000025876,http://purl.obolibrary.org/obo/PR_000025876,none +7.2256548,GO:0098798,http://purl.obolibrary.org/obo/GO_0098798,mitochondrial protein-containing complex +7.2258334,CL:0000839,http://purl.obolibrary.org/obo/CL_0000839,myeloid lineage restricted progenitor cell +7.2258334,MONDO:0000315,http://purl.obolibrary.org/obo/MONDO_0000315,commensal bacterial infectious disease +7.2262502,PR:000022465,http://purl.obolibrary.org/obo/PR_000022465,none +7.2267267,MONDO:0005496,http://purl.obolibrary.org/obo/MONDO_0005496,bile duct carcinoma +7.2276209,PR:000002195,http://purl.obolibrary.org/obo/PR_000002195,caspase-1-like protease +7.2283368,UBERON:0001891,http://purl.obolibrary.org/obo/UBERON_0001891,midbrain +7.2290532,UBERON:0001213,http://purl.obolibrary.org/obo/UBERON_0001213,intestinal villus +7.2302484,UBERON:0003126,http://purl.obolibrary.org/obo/UBERON_0003126,trachea +7.2303082,UBERON:0012485,http://purl.obolibrary.org/obo/UBERON_0012485,cloacal villus +7.2303082,UBERON:0013153,http://purl.obolibrary.org/obo/UBERON_0013153,arachnoid villus +7.2313851,UBERON:0002387,http://purl.obolibrary.org/obo/UBERON_0002387,pes +7.2316246,DRUGBANK:DB12652,http://purl.obolibrary.org/obo/DRUGBANK_DB12652,none +7.2317444,MONDO:0043786,http://purl.obolibrary.org/obo/MONDO_0043786,serositis +7.2330027,PR:000010995,http://purl.obolibrary.org/obo/PR_000010995,RNA cytidine acetyltransferase +7.2333025,MONDO:0021348,http://purl.obolibrary.org/obo/MONDO_0021348,neoplasm of testis +7.2342626,MONDO:0005515,http://purl.obolibrary.org/obo/MONDO_0005515,oral cavity cancer +7.2349232,PR:000012510,http://purl.obolibrary.org/obo/PR_000012510,PDZ and LIM domain protein 3 +7.2349232,PR:000044733,http://purl.obolibrary.org/obo/PR_000044733,tripartite motif-containing protein +7.2349833,SO:1001187,http://purl.obolibrary.org/obo/SO_1001187,alternatively_spliced_transcript +7.2352237,PR:000022085,http://purl.obolibrary.org/obo/PR_000022085,none +7.2355843,UBERON:0011107,http://purl.obolibrary.org/obo/UBERON_0011107,synovial joint of pelvic girdle +7.2356444,PR:000004502,http://purl.obolibrary.org/obo/PR_000004502,attractin-like protein 1 +7.235945,GO:0015696,http://purl.obolibrary.org/obo/GO_0015696,ammonium transport +7.2363661,MONDO:0002050,http://purl.obolibrary.org/obo/MONDO_0002050,depressive disorder +7.2367873,MONDO:0015157,http://purl.obolibrary.org/obo/MONDO_0015157,human herpesvirus 8-related tumor +7.2373893,UBERON:0002268,http://purl.obolibrary.org/obo/UBERON_0002268,olfactory organ +7.2394994,MONDO:0020021,http://purl.obolibrary.org/obo/MONDO_0020021,diaphragmatic or abdominal wall malformation +7.2395597,CL:0000047,http://purl.obolibrary.org/obo/CL_0000047,neuronal stem cell +7.240405,GO:0003899,http://purl.obolibrary.org/obo/GO_0003899,DNA-directed 5'-3' RNA polymerase activity +7.2406467,CHEBI:35471,http://purl.obolibrary.org/obo/CHEBI_35471,psychotropic drug +7.2420373,DRUGBANK:DB01092,http://purl.obolibrary.org/obo/DRUGBANK_DB01092,none +7.2440965,GO:0016763,http://purl.obolibrary.org/obo/GO_0016763,pentosyltransferase activity +7.2441571,MONDO:0004849,http://purl.obolibrary.org/obo/MONDO_0004849,pulmonary emphysema +7.244885,PR:000001349,http://purl.obolibrary.org/obo/PR_000001349,fibroblast growth factor receptor +7.245067,MONDO:0001150,http://purl.obolibrary.org/obo/MONDO_0001150,hydrocephalus +7.2456134,GO:0099536,http://purl.obolibrary.org/obo/GO_0099536,synaptic signaling +7.2457955,UBERON:0001530,http://purl.obolibrary.org/obo/UBERON_0001530,common carotid artery plus branches +7.2462208,CL:0000785,http://purl.obolibrary.org/obo/CL_0000785,mature B cell +7.2474975,GO:0005009,http://purl.obolibrary.org/obo/GO_0005009,insulin-activated receptor activity +7.2474975,PR:000009064,http://purl.obolibrary.org/obo/PR_000009064,insulin receptor +7.2481669,SO:0000410,http://purl.obolibrary.org/obo/SO_0000410,protein_binding_site +7.2484713,DRUGBANK:DB13149,http://purl.obolibrary.org/obo/DRUGBANK_DB13149,none +7.2490195,CL:0000083,http://purl.obolibrary.org/obo/CL_0000083,epithelial cell of pancreas +7.2513985,GO:0033993,http://purl.obolibrary.org/obo/GO_0033993,response to lipid +7.2521316,GO:0019200,http://purl.obolibrary.org/obo/GO_0019200,carbohydrate kinase activity +7.2524373,DRUGBANK:DB01060,http://purl.obolibrary.org/obo/DRUGBANK_DB01060,none +7.2524984,MONDO:0003799,http://purl.obolibrary.org/obo/MONDO_0003799,conjunctivitis +7.2539056,HP:0001627,http://purl.obolibrary.org/obo/HP_0001627,Abnormal heart morphology +7.2550696,MONDO:0002312,http://purl.obolibrary.org/obo/MONDO_0002312,opportunistic mycosis +7.2558054,MONDO:0006670,http://purl.obolibrary.org/obo/MONDO_0006670,bacterial meningitis +7.2559281,NCBITaxon:1783272,http://purl.obolibrary.org/obo/NCBITaxon_1783272,Terrabacteria group +7.2566032,CHEBI:90710,http://purl.obolibrary.org/obo/CHEBI_90710,receptor modulator +7.2566646,MONDO:0020019,http://purl.obolibrary.org/obo/MONDO_0020019,digestive tract malformation +7.2580162,MONDO:0015905,http://purl.obolibrary.org/obo/MONDO_0015905,syndromic dyslipidemia +7.2582006,MONDO:0017611,http://purl.obolibrary.org/obo/MONDO_0017611,pituitary tumor +7.2583851,MONDO:0006502,http://purl.obolibrary.org/obo/MONDO_0006502,acute respiratory distress syndrome +7.2591849,DRUGBANK:DB14473,http://purl.obolibrary.org/obo/DRUGBANK_DB14473,none +7.2591849,GO:0015081,http://purl.obolibrary.org/obo/GO_0015081,sodium ion transmembrane transporter activity +7.259308,UBERON:0008979,http://purl.obolibrary.org/obo/UBERON_0008979,carcass +7.2593696,CHEBI:51061,http://purl.obolibrary.org/obo/CHEBI_51061,hormone receptor modulator +7.2598006,MONDO:0015659,http://purl.obolibrary.org/obo/MONDO_0015659,infectious disease with epilepsy +7.2601086,CHEBI:15339,http://purl.obolibrary.org/obo/CHEBI_15339,acceptor +7.2602934,SO:0001248,http://purl.obolibrary.org/obo/SO_0001248,assembly +7.2609715,DRUGBANK:DB10506,http://purl.obolibrary.org/obo/DRUGBANK_DB10506,none +7.2620202,MONDO:0021245,http://purl.obolibrary.org/obo/MONDO_0021245,oral cavity neoplasm +7.2623906,MONDO:0020279,http://purl.obolibrary.org/obo/MONDO_0020279,metabolic disease with corneal opacity +7.2627612,UBERON:3010194,http://purl.obolibrary.org/obo/UBERON_3010194,mediale +7.2628847,MONDO:0015610,http://purl.obolibrary.org/obo/MONDO_0015610,acquired aplastic anemia +7.2641829,GO:0004721,http://purl.obolibrary.org/obo/GO_0004721,phosphoprotein phosphatase activity +7.2646779,MONDO:0019255,http://purl.obolibrary.org/obo/MONDO_0019255,sphingolipidosis +7.2648017,MONDO:0022687,http://purl.obolibrary.org/obo/MONDO_0022687,cerebellar degeneration +7.2649255,DRUGBANK:DB11010,http://purl.obolibrary.org/obo/DRUGBANK_DB11010,none +7.2656686,UBERON:0004756,http://purl.obolibrary.org/obo/UBERON_0004756,dermal skeletal element +7.2661643,DRUGBANK:DB00608,http://purl.obolibrary.org/obo/DRUGBANK_DB00608,none +7.2667843,DRUGBANK:DB14242,http://purl.obolibrary.org/obo/DRUGBANK_DB14242,none +7.2670325,MONDO:0002150,http://purl.obolibrary.org/obo/MONDO_0002150,hypothalamic disease +7.2682118,GO:0006119,http://purl.obolibrary.org/obo/GO_0006119,oxidative phosphorylation +7.2682739,MONDO:0015540,http://purl.obolibrary.org/obo/MONDO_0015540,hemophagocytic syndrome +7.2684603,MONDO:0024881,http://purl.obolibrary.org/obo/MONDO_0024881,secondary malignant neoplasm +7.2688952,MONDO:0016749,http://purl.obolibrary.org/obo/MONDO_0016749,tumor of cranial and spinal nerves +7.2694547,MONDO:0000836,http://purl.obolibrary.org/obo/MONDO_0000836,disease of bone structure +7.2695791,PR:000040662,http://purl.obolibrary.org/obo/PR_000040662,cathepsin-like protease +7.2698279,GO:0019205,http://purl.obolibrary.org/obo/GO_0019205,nucleobase-containing compound kinase activity +7.2706992,MONDO:0008380,http://purl.obolibrary.org/obo/MONDO_0008380,retinoblastoma +7.2709483,PR:000008800,http://purl.obolibrary.org/obo/PR_000008800,heat shock protein HSP 90-beta +7.2709483,UBERON:0001098,http://purl.obolibrary.org/obo/UBERON_0001098,incisor tooth +7.2710729,MONDO:0003689,http://purl.obolibrary.org/obo/MONDO_0003689,familial hemolytic anemia +7.2716959,GO:0071695,http://purl.obolibrary.org/obo/GO_0071695,anatomical structure maturation +7.2721323,CL:0000077,http://purl.obolibrary.org/obo/CL_0000077,mesothelial cell +7.272257,HP:0002360,http://purl.obolibrary.org/obo/HP_0002360,Sleep disturbance +7.2723817,CHEBI:36043,http://purl.obolibrary.org/obo/CHEBI_36043,antimicrobial drug +7.2738797,MONDO:0015655,http://purl.obolibrary.org/obo/MONDO_0015655,cerebral malformation with epilepsy +7.2739421,GO:0004950,http://purl.obolibrary.org/obo/GO_0004950,chemokine receptor activity +7.2745045,UBERON:0000004,http://purl.obolibrary.org/obo/UBERON_0000004,nose +7.274817,UBERON:0008785,http://purl.obolibrary.org/obo/UBERON_0008785,upper limb segment +7.2751922,GO:0098800,http://purl.obolibrary.org/obo/GO_0098800,inner mitochondrial membrane protein complex +7.279517,MONDO:0017769,http://purl.obolibrary.org/obo/MONDO_0017769,acquired immunodeficiency +7.2797055,CL:0000064,http://purl.obolibrary.org/obo/CL_0000064,ciliated cell +7.2818438,DRUGBANK:DB00129,http://purl.obolibrary.org/obo/DRUGBANK_DB00129,none +7.2819068,GO:0006414,http://purl.obolibrary.org/obo/GO_0006414,translational elongation +7.2819698,MONDO:0002459,http://purl.obolibrary.org/obo/MONDO_0002459,type IV hypersensitivity disease +7.2824736,MONDO:0003937,http://purl.obolibrary.org/obo/MONDO_0003937,spondylitis +7.2832299,DRUGBANK:DB00325,http://purl.obolibrary.org/obo/DRUGBANK_DB00325,none +7.2834821,MONDO:0020244,http://purl.obolibrary.org/obo/MONDO_0020244,unclassified primitive or secondary maculopathy +7.284113,GO:0050918,http://purl.obolibrary.org/obo/GO_0050918,positive chemotaxis +7.2848074,CHEBI:61642,http://purl.obolibrary.org/obo/CHEBI_61642,polystyrene polymer +7.28506,GO:0099537,http://purl.obolibrary.org/obo/GO_0099537,trans-synaptic signaling +7.2861976,MONDO:0019705,http://purl.obolibrary.org/obo/MONDO_0019705,primary bone dysplasia with defective bone mineralization +7.2867668,UBERON:0004363,http://purl.obolibrary.org/obo/UBERON_0004363,pharyngeal arch artery +7.287653,GO:0007268,http://purl.obolibrary.org/obo/GO_0007268,chemical synaptic transmission +7.2880964,GO:0098916,http://purl.obolibrary.org/obo/GO_0098916,anterograde trans-synaptic signaling +7.2887302,UBERON:0003469,http://purl.obolibrary.org/obo/UBERON_0003469,respiratory system artery +7.2887302,UBERON:0003643,http://purl.obolibrary.org/obo/UBERON_0003643,respiratory system arterial blood vessel +7.2889838,UBERON:0015787,http://purl.obolibrary.org/obo/UBERON_0015787,upper respiratory conduit +7.2894278,CL:0002174,http://purl.obolibrary.org/obo/CL_0002174,follicular cell of ovary +7.289745,DRUGBANK:DB09153,http://purl.obolibrary.org/obo/DRUGBANK_DB09153,none +7.289745,UBERON:0004457,http://purl.obolibrary.org/obo/UBERON_0004457,none +7.2906974,CHEBI:17891,http://purl.obolibrary.org/obo/CHEBI_17891,donor +7.291905,DRUGBANK:DB02134,http://purl.obolibrary.org/obo/DRUGBANK_DB02134,none +7.2920958,CL:0000228,http://purl.obolibrary.org/obo/CL_0000228,multinucleate cell +7.2921594,MONDO:0020225,http://purl.obolibrary.org/obo/MONDO_0020225,syndromic cataract +7.2922866,PR:000014702,http://purl.obolibrary.org/obo/PR_000014702,plasminogen activator inhibitor 1 +7.2925412,MONDO:0021231,http://purl.obolibrary.org/obo/MONDO_0021231,retina neoplasm +7.2925412,NCBITaxon:262014,http://purl.obolibrary.org/obo/NCBITaxon_262014,Xenopus +7.2931141,CL:0002368,http://purl.obolibrary.org/obo/CL_0002368,respiratory epithelial cell +7.2938784,DRUGBANK:DB03366,http://purl.obolibrary.org/obo/DRUGBANK_DB03366,none +7.2946434,MONDO:0002782,http://purl.obolibrary.org/obo/MONDO_0002782,cranial nerve palsy +7.2951537,DRUGBANK:DB14104,http://purl.obolibrary.org/obo/DRUGBANK_DB14104,none +7.2966862,NCBITaxon:8355,http://purl.obolibrary.org/obo/NCBITaxon_8355,Xenopus laevis +7.298413,MONDO:0045002,http://purl.obolibrary.org/obo/MONDO_0045002,vertebral disease +7.2986051,MONDO:0005853,http://purl.obolibrary.org/obo/MONDO_0005853,malignant mixed neoplasm +7.2991815,UBERON:0000042,http://purl.obolibrary.org/obo/UBERON_0000042,serous membrane +7.3005918,DRUGBANK:DB00968,http://purl.obolibrary.org/obo/DRUGBANK_DB00968,none +7.3007201,SO:0000771,http://purl.obolibrary.org/obo/SO_0000771,QTL +7.3015545,PR:000050013,http://purl.obolibrary.org/obo/PR_000050013,BRCA protein +7.3030969,UBERON:0001885,http://purl.obolibrary.org/obo/UBERON_0001885,dentate gyrus of hippocampal formation +7.3034828,GO:0043492,http://purl.obolibrary.org/obo/GO_0043492,none +7.3038689,MONDO:0021071,http://purl.obolibrary.org/obo/MONDO_0021071,laryngeal neoplasm +7.3042552,MONDO:0010811,http://purl.obolibrary.org/obo/MONDO_0010811,benign prostatic hyperplasia +7.3046416,DRUGBANK:DB14245,http://purl.obolibrary.org/obo/DRUGBANK_DB14245,none +7.3059951,MONDO:0005061,http://purl.obolibrary.org/obo/MONDO_0005061,lung adenocarcinoma +7.3064467,GO:0004386,http://purl.obolibrary.org/obo/GO_0004386,helicase activity +7.3065113,GO:0002250,http://purl.obolibrary.org/obo/GO_0002250,adaptive immune response +7.3065758,DRUGBANK:DB11348,http://purl.obolibrary.org/obo/DRUGBANK_DB11348,none +7.3067694,NCBITaxon:1239,http://purl.obolibrary.org/obo/NCBITaxon_1239,Firmicutes +7.307286,MONDO:0004126,http://purl.obolibrary.org/obo/MONDO_0004126,thyroiditis +7.3074797,MONDO:0009692,http://purl.obolibrary.org/obo/MONDO_0009692,primary myelofibrosis +7.3083845,UBERON:0003697,http://purl.obolibrary.org/obo/UBERON_0003697,abdominal wall +7.3093547,MONDO:0019004,http://purl.obolibrary.org/obo/MONDO_0019004,kidney Wilms tumor +7.3107795,MONDO:0006058,http://purl.obolibrary.org/obo/MONDO_0006058,Wilms tumor +7.3114927,HP:0011121,http://purl.obolibrary.org/obo/HP_0011121,Abnormality of skin morphology +7.3120117,MONDO:0005590,http://purl.obolibrary.org/obo/MONDO_0005590,breast ductal adenocarcinoma +7.3121414,PR:000006611,http://purl.obolibrary.org/obo/PR_000006611,DNA nucleotidylexotransferase +7.3127257,PR:000030444,http://purl.obolibrary.org/obo/PR_000030444,osteocalcin +7.3127906,MONDO:0019741,http://purl.obolibrary.org/obo/MONDO_0019741,familial cystic renal disease +7.3137002,DRUGBANK:DB02857,http://purl.obolibrary.org/obo/DRUGBANK_DB02857,none +7.315001,MONDO:0004111,http://purl.obolibrary.org/obo/MONDO_0004111,refractory hematologic cancer +7.3153916,MONDO:0004821,http://purl.obolibrary.org/obo/MONDO_0004821,nasopharyngeal disease +7.3158474,MONDO:0018093,http://purl.obolibrary.org/obo/MONDO_0018093,arbovirus fever +7.3159126,DRUGBANK:DB00440,http://purl.obolibrary.org/obo/DRUGBANK_DB00440,none +7.3163035,GO:0001637,http://purl.obolibrary.org/obo/GO_0001637,G protein-coupled chemoattractant receptor activity +7.3166946,MONDO:0005246,http://purl.obolibrary.org/obo/MONDO_0005246,osteomyelitis +7.3173467,MONDO:0003072,http://purl.obolibrary.org/obo/MONDO_0003072,retinal cancer +7.317412,CHEBI:38808,http://purl.obolibrary.org/obo/CHEBI_38808,calcium channel modulator +7.318783,MONDO:0005375,http://purl.obolibrary.org/obo/MONDO_0005375,nasopharyngeal neoplasm +7.3190443,MONDO:0005281,http://purl.obolibrary.org/obo/MONDO_0005281,gallbladder disease +7.3191097,MONDO:0021385,http://purl.obolibrary.org/obo/MONDO_0021385,extrahepatic bile duct neoplasm +7.319175,MONDO:0021321,http://purl.obolibrary.org/obo/MONDO_0021321,malignant tumor of extrahepatic bile duct +7.3204175,MONDO:0005366,http://purl.obolibrary.org/obo/MONDO_0005366,chronic hepatitis B virus infection +7.3211376,CL:0000581,http://purl.obolibrary.org/obo/CL_0000581,peritoneal macrophage +7.3212686,DRUGBANK:DB00564,http://purl.obolibrary.org/obo/DRUGBANK_DB00564,none +7.3230384,UBERON:0001846,http://purl.obolibrary.org/obo/UBERON_0001846,internal ear +7.3239574,MONDO:0015657,http://purl.obolibrary.org/obo/MONDO_0015657,inflammatory and autoimmune disease with epilepsy +7.3242201,UBERON:0003463,http://purl.obolibrary.org/obo/UBERON_0003463,trunk bone +7.3252716,MONDO:0005139,http://purl.obolibrary.org/obo/MONDO_0005139,morbid obesity +7.3255346,MONDO:0003090,http://purl.obolibrary.org/obo/MONDO_0003090,extrahepatic bile duct carcinoma +7.3258636,DRUGBANK:DB13133,http://purl.obolibrary.org/obo/DRUGBANK_DB13133,none +7.3258636,GO:0000781,http://purl.obolibrary.org/obo/GO_0000781,"chromosome, telomeric region" +7.3258636,SO:0000624,http://purl.obolibrary.org/obo/SO_0000624,telomere +7.3265875,UBERON:0001193,http://purl.obolibrary.org/obo/UBERON_0001193,hepatic artery +7.3271144,MONDO:0005008,http://purl.obolibrary.org/obo/MONDO_0005008,colorectal adenocarcinoma +7.3273121,CL:1001603,http://purl.obolibrary.org/obo/CL_1001603,lung macrophage +7.3275098,MONDO:0005583,http://purl.obolibrary.org/obo/MONDO_0005583,non-human animal disease +7.3279052,CL:0000700,http://purl.obolibrary.org/obo/CL_0000700,dopaminergic neuron +7.3284328,MONDO:0015185,http://purl.obolibrary.org/obo/MONDO_0015185,intestinal polyposis syndrome +7.3286307,NCBITaxon:10358,http://purl.obolibrary.org/obo/NCBITaxon_10358,Cytomegalovirus +7.3286307,PR:000017298,http://purl.obolibrary.org/obo/PR_000017298,vimentin +7.3286967,SO:0001568,http://purl.obolibrary.org/obo/SO_0001568,splicing_variant +7.3289607,GO:0050900,http://purl.obolibrary.org/obo/GO_0050900,leukocyte migration +7.3289607,MONDO:0018373,http://purl.obolibrary.org/obo/MONDO_0018373,avascular necrosis +7.3300172,UBERON:0006767,http://purl.obolibrary.org/obo/UBERON_0006767,head of femur +7.3300832,MONDO:0005454,http://purl.obolibrary.org/obo/MONDO_0005454,lung neuroendocrine neoplasm +7.3300832,MONDO:0006047,http://purl.obolibrary.org/obo/MONDO_0006047,pancreatic adenocarcinoma +7.3302154,GO:0019787,http://purl.obolibrary.org/obo/GO_0019787,small conjugating protein ligase activity +7.3304798,DRUGBANK:DB04216,http://purl.obolibrary.org/obo/DRUGBANK_DB04216,none +7.3305459,SO:0001906,http://purl.obolibrary.org/obo/SO_0001906,feature_truncation +7.3315379,MONDO:0006799,http://purl.obolibrary.org/obo/MONDO_0006799,hypothalamic neoplasm +7.3317364,DRUGBANK:DB00312,http://purl.obolibrary.org/obo/DRUGBANK_DB00312,none +7.3324647,PR:000033987,http://purl.obolibrary.org/obo/PR_000033987,none +7.3335912,DRUGBANK:DB13518,http://purl.obolibrary.org/obo/DRUGBANK_DB13518,none +7.3340554,GO:0006959,http://purl.obolibrary.org/obo/GO_0006959,humoral immune response +7.3344535,GO:0015926,http://purl.obolibrary.org/obo/GO_0015926,glucosidase activity +7.3346526,MONDO:0004338,http://purl.obolibrary.org/obo/MONDO_0004338,retinal cell cancer +7.3346526,MONDO:0024341,http://purl.obolibrary.org/obo/MONDO_0024341,retinal cell neoplasm +7.335051,MONDO:0003546,http://purl.obolibrary.org/obo/MONDO_0003546,third cranial nerve disease +7.3351838,MONDO:0001309,http://purl.obolibrary.org/obo/MONDO_0001309,oculomotor nerve paralysis +7.3367124,MONDO:0005095,http://purl.obolibrary.org/obo/MONDO_0005095,spondyloarthropathy +7.3369785,UBERON:0009912,http://purl.obolibrary.org/obo/UBERON_0009912,anatomical lobe +7.3371115,GO:0022412,http://purl.obolibrary.org/obo/GO_0022412,cellular process involved in reproduction in multicellular organism +7.3379103,PR:000044671,http://purl.obolibrary.org/obo/PR_000044671,ligand-gated ion channel protein +7.3381101,DRUGBANK:DB00864,http://purl.obolibrary.org/obo/DRUGBANK_DB00864,none +7.3386431,GO:0004883,http://purl.obolibrary.org/obo/GO_0004883,glucocorticoid receptor activity +7.338843,MONDO:0020213,http://purl.obolibrary.org/obo/MONDO_0020213,stromal corneal dystrophy +7.3391097,GO:0044815,http://purl.obolibrary.org/obo/GO_0044815,DNA packaging complex +7.3397099,PR:000001380,http://purl.obolibrary.org/obo/PR_000001380,interleukin-2 receptor subunit alpha +7.3397766,GO:0005267,http://purl.obolibrary.org/obo/GO_0005267,potassium channel activity +7.33991,SO:0001587,http://purl.obolibrary.org/obo/SO_0001587,stop_gained +7.340177,GO:0015629,http://purl.obolibrary.org/obo/GO_0015629,actin cytoskeleton +7.3402437,MONDO:0044977,http://purl.obolibrary.org/obo/MONDO_0044977,disease of receptor activity +7.340711,MONDO:0006975,http://purl.obolibrary.org/obo/MONDO_0006975,smooth muscle tumor +7.3415127,MONDO:0020227,http://purl.obolibrary.org/obo/MONDO_0020227,systemic disease with cataract +7.3416464,DRUGBANK:DB00144,http://purl.obolibrary.org/obo/DRUGBANK_DB00144,none +7.3428502,UBERON:0003502,http://purl.obolibrary.org/obo/UBERON_0003502,neck blood vessel +7.3439215,HP:0011804,http://purl.obolibrary.org/obo/HP_0011804,Abnormal muscle physiology +7.3442566,GO:0060004,http://purl.obolibrary.org/obo/GO_0060004,reflex +7.3443906,PR:000035899,http://purl.obolibrary.org/obo/PR_000035899,GSK3-like glycogen synthase kinase +7.3451281,MONDO:0021315,http://purl.obolibrary.org/obo/MONDO_0021315,malignant tumor of nasopharynx +7.3454636,MONDO:0008487,http://purl.obolibrary.org/obo/MONDO_0008487,polycystic ovary syndrome +7.345732,SO:0001037,http://purl.obolibrary.org/obo/SO_0001037,mobile_genetic_element +7.3458662,GO:0005730,http://purl.obolibrary.org/obo/GO_0005730,nucleolus +7.3471424,MONDO:0002177,http://purl.obolibrary.org/obo/MONDO_0002177,hyperinsulinism +7.3472768,MONDO:0021656,http://purl.obolibrary.org/obo/MONDO_0021656,nongerminomatous germ cell tumor +7.3476129,MONDO:0017344,http://purl.obolibrary.org/obo/MONDO_0017344,Epstein-Barr virus-associated carcinoma +7.3477474,GO:0006865,http://purl.obolibrary.org/obo/GO_0006865,amino acid transport +7.3478819,UBERON:0001647,http://purl.obolibrary.org/obo/UBERON_0001647,facial nerve +7.3483529,PR:000050019,http://purl.obolibrary.org/obo/PR_000050019,glycogen synthase kinase 3 +7.3486894,DRUGBANK:DB09375,http://purl.obolibrary.org/obo/DRUGBANK_DB09375,none +7.3490933,GO:0000786,http://purl.obolibrary.org/obo/GO_0000786,nucleosome +7.3491607,MONDO:0021699,http://purl.obolibrary.org/obo/MONDO_0021699,alcohol-induced disorders +7.3502388,MONDO:0020050,http://purl.obolibrary.org/obo/MONDO_0020050,autosomal trisomy +7.3507108,GO:0016667,http://purl.obolibrary.org/obo/GO_0016667,"oxidoreductase activity, acting on a sulfur group of donors" +7.351318,DRUGBANK:DB00959,http://purl.obolibrary.org/obo/DRUGBANK_DB00959,none +7.3530067,SO:0000162,http://purl.obolibrary.org/obo/SO_0000162,splice_site +7.3532771,SO:0000315,http://purl.obolibrary.org/obo/SO_0000315,TSS +7.3539536,GO:0098805,http://purl.obolibrary.org/obo/GO_0098805,none +7.3565961,PR:000017495,http://purl.obolibrary.org/obo/PR_000017495,Xaa-Pro aminopeptidase 1 +7.356664,DRUGBANK:DB01022,http://purl.obolibrary.org/obo/DRUGBANK_DB01022,none +7.356664,MONDO:0002358,http://purl.obolibrary.org/obo/MONDO_0002358,laryngeal carcinoma +7.3570033,DRUGBANK:DB02261,http://purl.obolibrary.org/obo/DRUGBANK_DB02261,none +7.3573427,MONDO:0015459,http://purl.obolibrary.org/obo/MONDO_0015459,nasopharyngeal carcinoma +7.3573427,PR:000013044,http://purl.obolibrary.org/obo/PR_000013044,"POU domain, class 5, transcription factor 1" +7.3574106,GO:0007596,http://purl.obolibrary.org/obo/GO_0007596,blood coagulation +7.3576823,GO:0004842,http://purl.obolibrary.org/obo/GO_0004842,ubiquitin-protein ligase activity +7.3577502,GO:0019213,http://purl.obolibrary.org/obo/GO_0019213,deacetylase activity +7.3584977,UBERON:0001388,http://purl.obolibrary.org/obo/UBERON_0001388,gastrocnemius +7.3585657,UBERON:0002410,http://purl.obolibrary.org/obo/UBERON_0002410,autonomic nervous system +7.3586336,DRUGBANK:DB00916,http://purl.obolibrary.org/obo/DRUGBANK_DB00916,none +7.3587016,MONDO:0000984,http://purl.obolibrary.org/obo/MONDO_0000984,thalassemia +7.3593137,MONDO:0019938,http://purl.obolibrary.org/obo/MONDO_0019938,anorectal malformation +7.3598581,MONDO:0001676,http://purl.obolibrary.org/obo/MONDO_0001676,erythropoietic protoporphyria +7.3602666,DRUGBANK:DB09241,http://purl.obolibrary.org/obo/DRUGBANK_DB09241,none +7.3606072,PR:000013209,http://purl.obolibrary.org/obo/PR_000013209,salivary acidic proline-rich phosphoprotein +7.3608115,UBERON:0011171,http://purl.obolibrary.org/obo/UBERON_0011171,joint connecting upper and lower jaws +7.361016,UBERON:0003700,http://purl.obolibrary.org/obo/UBERON_0003700,temporomandibular joint +7.3613568,PR:000004078,http://purl.obolibrary.org/obo/PR_000004078,annexin A5 +7.3621069,SO:0000418,http://purl.obolibrary.org/obo/SO_0000418,signal_peptide +7.3621752,DRUGBANK:DB11109,http://purl.obolibrary.org/obo/DRUGBANK_DB11109,none +7.3625846,UBERON:0009663,http://purl.obolibrary.org/obo/UBERON_0009663,telencephalic nucleus +7.3627211,MONDO:0044807,http://purl.obolibrary.org/obo/MONDO_0044807,inherited dystonia +7.3630625,GO:1990524,http://purl.obolibrary.org/obo/GO_1990524,INA complex +7.3631991,CHEBI:38215,http://purl.obolibrary.org/obo/CHEBI_38215,calcium channel blocker +7.363404,UBERON:0001020,http://purl.obolibrary.org/obo/UBERON_0001020,nervous system commissure +7.3634723,DRUGBANK:DB00028,http://purl.obolibrary.org/obo/DRUGBANK_DB00028,none +7.3635406,MONDO:0001657,http://purl.obolibrary.org/obo/MONDO_0001657,brain cancer +7.3639506,HP:0100598,http://purl.obolibrary.org/obo/HP_0100598,Pulmonary edema +7.3642241,MONDO:0021568,http://purl.obolibrary.org/obo/MONDO_0021568,renal tubule disease +7.3646343,UBERON:0001389,http://purl.obolibrary.org/obo/UBERON_0001389,soleus muscle +7.3650448,MONDO:0019182,http://purl.obolibrary.org/obo/MONDO_0019182,monogenic obesity +7.3654554,UBERON:0005970,http://purl.obolibrary.org/obo/UBERON_0005970,brain commissure +7.3660032,MONDO:0044993,http://purl.obolibrary.org/obo/MONDO_0044993,sympathetic nervous system disease +7.3663457,NCBITaxon:2732544,http://purl.obolibrary.org/obo/NCBITaxon_2732544,Martellivirales +7.3671682,PR:000023551,http://purl.obolibrary.org/obo/PR_000023551,none +7.3673053,PR:000008813,http://purl.obolibrary.org/obo/PR_000008813,"stress-70 protein, mitochondrial" +7.3679913,MONDO:0005387,http://purl.obolibrary.org/obo/MONDO_0005387,primary ovarian failure +7.3680599,GO:0016125,http://purl.obolibrary.org/obo/GO_0016125,sterol metabolic process +7.3681286,HP:0000002,http://purl.obolibrary.org/obo/HP_0000002,Abnormality of body height +7.3681972,NCBITaxon:2732004,http://purl.obolibrary.org/obo/NCBITaxon_2732004,Varidnaviria +7.3681972,NCBITaxon:2732005,http://purl.obolibrary.org/obo/NCBITaxon_2732005,Bamfordvirae +7.3682658,UBERON:0000006,http://purl.obolibrary.org/obo/UBERON_0000006,islet of Langerhans +7.3684718,DRUGBANK:DB00112,http://purl.obolibrary.org/obo/DRUGBANK_DB00112,none +7.3686091,UBERON:0019294,http://purl.obolibrary.org/obo/UBERON_0019294,commissure of telencephalon +7.3688151,MONDO:0000358,http://purl.obolibrary.org/obo/MONDO_0000358,orofacial cleft +7.3698459,HP:0002597,http://purl.obolibrary.org/obo/HP_0002597,Abnormality of the vasculature +7.3699147,UBERON:0000415,http://purl.obolibrary.org/obo/UBERON_0000415,artery wall +7.3700522,DRUGBANK:DB01394,http://purl.obolibrary.org/obo/DRUGBANK_DB01394,none +7.3708777,DRUGBANK:DB00290,http://purl.obolibrary.org/obo/DRUGBANK_DB00290,none +7.3713596,MONDO:0005447,http://purl.obolibrary.org/obo/MONDO_0005447,testicular cancer +7.3715662,MONDO:0008433,http://purl.obolibrary.org/obo/MONDO_0008433,small cell lung carcinoma +7.3716351,PR:000011194,http://purl.obolibrary.org/obo/PR_000011194,beta-nerve growth factor +7.3730135,GO:0051318,http://purl.obolibrary.org/obo/GO_0051318,G1 phase +7.3731515,GO:0015405,http://purl.obolibrary.org/obo/GO_0015405,none +7.3732204,GO:0042626,http://purl.obolibrary.org/obo/GO_0042626,ATPase-coupled transmembrane transporter activity +7.3734274,NCBITaxon:464095,http://purl.obolibrary.org/obo/NCBITaxon_464095,Picornavirales +7.3735654,UBERON:0000411,http://purl.obolibrary.org/obo/UBERON_0000411,visual cortex +7.3740486,GO:0016413,http://purl.obolibrary.org/obo/GO_0016413,O-acetyltransferase activity +7.3741176,UBERON:0005899,http://purl.obolibrary.org/obo/UBERON_0005899,pes bone +7.3743248,GO:0046717,http://purl.obolibrary.org/obo/GO_0046717,acid secretion +7.3743248,PR:000025846,http://purl.obolibrary.org/obo/PR_000025846,fatty acid-binding protein +7.3743939,PR:P52160,http://purl.obolibrary.org/obo/PR_P52160,none +7.3754304,UBERON:0001174,http://purl.obolibrary.org/obo/UBERON_0001174,common bile duct +7.3761912,GO:0016820,http://purl.obolibrary.org/obo/GO_0016820,none +7.3766756,UBERON:0035809,http://purl.obolibrary.org/obo/UBERON_0035809,serous cavity +7.3768833,MONDO:0002211,http://purl.obolibrary.org/obo/MONDO_0002211,B cell deficiency +7.3770911,GO:0042625,http://purl.obolibrary.org/obo/GO_0042625,ATPase-coupled ion transmembrane transporter activity +7.3771603,GO:0015662,http://purl.obolibrary.org/obo/GO_0015662,P-type ion transporter activity +7.3772296,CL:0000120,http://purl.obolibrary.org/obo/CL_0000120,granule cell +7.3777838,MONDO:0020259,http://purl.obolibrary.org/obo/MONDO_0020259,myopathy with eye involvement +7.3779224,UBERON:0000010,http://purl.obolibrary.org/obo/UBERON_0000010,peripheral nervous system +7.379379,GO:0098793,http://purl.obolibrary.org/obo/GO_0098793,presynapse +7.3797261,DRUGBANK:DB00993,http://purl.obolibrary.org/obo/DRUGBANK_DB00993,none +7.3803512,HP:0000153,http://purl.obolibrary.org/obo/HP_0000153,Abnormality of the mouth +7.3807682,HP:0000163,http://purl.obolibrary.org/obo/HP_0000163,Abnormal oral cavity morphology +7.3807682,HP:0031816,http://purl.obolibrary.org/obo/HP_0031816,Abnormal oral morphology +7.3809767,MONDO:0018660,http://purl.obolibrary.org/obo/MONDO_0018660,hemophilia +7.3818113,GO:0030001,http://purl.obolibrary.org/obo/GO_0030001,metal ion transport +7.3824377,MONDO:0016387,http://purl.obolibrary.org/obo/MONDO_0016387,mitochondrial oxidative phosphorylation disorder +7.3826466,MONDO:0005623,http://purl.obolibrary.org/obo/MONDO_0005623,autoimmune thyroid disease +7.3828556,DRUGBANK:DB06782,http://purl.obolibrary.org/obo/DRUGBANK_DB06782,none +7.3829949,GO:0030228,http://purl.obolibrary.org/obo/GO_0030228,lipoprotein particle receptor activity +7.3831342,UBERON:0002473,http://purl.obolibrary.org/obo/UBERON_0002473,intercerebral commissure +7.3841798,GO:0140358,http://purl.obolibrary.org/obo/GO_0140358,P-type transmembrane transporter activity +7.3845984,DRUGBANK:DB00441,http://purl.obolibrary.org/obo/DRUGBANK_DB00441,none +7.3846682,DRUGBANK:DB14681,http://purl.obolibrary.org/obo/DRUGBANK_DB14681,none +7.3849473,GO:0016860,http://purl.obolibrary.org/obo/GO_0016860,intramolecular oxidoreductase activity +7.3850171,DRUGBANK:DB00013,http://purl.obolibrary.org/obo/DRUGBANK_DB00013,none +7.3860647,MONDO:0006856,http://purl.obolibrary.org/obo/MONDO_0006856,mesothelial neoplasm +7.3873933,DRUGBANK:DB11788,http://purl.obolibrary.org/obo/DRUGBANK_DB11788,none +7.3881632,GO:0006352,http://purl.obolibrary.org/obo/GO_0006352,"DNA-templated transcription, initiation" +7.3883033,UBERON:0003128,http://purl.obolibrary.org/obo/UBERON_0003128,cranium +7.3887235,MONDO:0024298,http://purl.obolibrary.org/obo/MONDO_0024298,vitamin deficiency disorder +7.3895647,MONDO:0021073,http://purl.obolibrary.org/obo/MONDO_0021073,paraneoplastic syndrome +7.3904065,MONDO:0015246,http://purl.obolibrary.org/obo/MONDO_0015246,syndromic anorectal malformation +7.3908978,PR:000027594,http://purl.obolibrary.org/obo/PR_000027594,histone H3 +7.3911085,DRUGBANK:DB00575,http://purl.obolibrary.org/obo/DRUGBANK_DB00575,none +7.39153,MONDO:0017641,http://purl.obolibrary.org/obo/MONDO_0017641,miscellaneous movement disorder due to neurodegenerative disease +7.3917408,GO:0072330,http://purl.obolibrary.org/obo/GO_0072330,monocarboxylic acid biosynthetic process +7.3918813,UBERON:0004549,http://purl.obolibrary.org/obo/UBERON_0004549,right eye +7.3931472,MONDO:0002917,http://purl.obolibrary.org/obo/MONDO_0002917,disease of pilosebaceous unit +7.3937104,DRUGBANK:DB08862,http://purl.obolibrary.org/obo/DRUGBANK_DB08862,none +7.394133,UBERON:0004493,http://purl.obolibrary.org/obo/UBERON_0004493,cardiac muscle tissue of myocardium +7.3943443,MONDO:0002352,http://purl.obolibrary.org/obo/MONDO_0002352,larynx cancer +7.3945557,MOP:0000093,http://purl.obolibrary.org/obo/MOP_0000093,none +7.3951196,GO:0005643,http://purl.obolibrary.org/obo/GO_0005643,nuclear pore +7.3951901,CL:0000134,http://purl.obolibrary.org/obo/CL_0000134,mesenchymal stem cell +7.3954723,UBERON:0001800,http://purl.obolibrary.org/obo/UBERON_0001800,sensory ganglion +7.3956133,UBERON:0001844,http://purl.obolibrary.org/obo/UBERON_0001844,cochlea +7.3960367,GO:0051171,http://purl.obolibrary.org/obo/GO_0051171,regulation of nitrogen compound metabolic process +7.3963897,CL:0000583,http://purl.obolibrary.org/obo/CL_0000583,alveolar macrophage +7.3966015,HP:0002795,http://purl.obolibrary.org/obo/HP_0002795,Abnormal respiratory system physiology +7.3980148,PR:000012296,http://purl.obolibrary.org/obo/PR_000012296,poly [ADP-ribose] polymerase 2 +7.3980855,MONDO:0020349,http://purl.obolibrary.org/obo/MONDO_0020349,acute motor axonal neuropathy +7.3982977,PR:000003809,http://purl.obolibrary.org/obo/PR_000003809,alpha-fetoprotein +7.3984392,UBERON:0012357,http://purl.obolibrary.org/obo/UBERON_0012357,digitopodium bone +7.3985807,MONDO:0044967,http://purl.obolibrary.org/obo/MONDO_0044967,limb disorder +7.3990761,DRUGBANK:DB01159,http://purl.obolibrary.org/obo/DRUGBANK_DB01159,none +7.3992885,MONDO:0018075,http://purl.obolibrary.org/obo/MONDO_0018075,neural tube defect +7.3993593,GO:0009314,http://purl.obolibrary.org/obo/GO_0009314,response to radiation +7.3993593,MONDO:0006590,http://purl.obolibrary.org/obo/MONDO_0006590,palmoplantar keratosis +7.399501,DRUGBANK:DB00970,http://purl.obolibrary.org/obo/DRUGBANK_DB00970,none +7.399501,UBERON:0005340,http://purl.obolibrary.org/obo/UBERON_0005340,dorsal telencephalic commissure +7.3997134,MONDO:0020125,http://purl.obolibrary.org/obo/MONDO_0020125,acquired neuromuscular junction disease +7.4001386,MONDO:0004251,http://purl.obolibrary.org/obo/MONDO_0004251,small intestine neoplasm +7.4002803,MONDO:0019200,http://purl.obolibrary.org/obo/MONDO_0019200,retinitis pigmentosa +7.4003512,PR:000014721,http://purl.obolibrary.org/obo/PR_000014721,histone-lysine N-methyltransferase SETD2 +7.4004221,UBERON:0004145,http://purl.obolibrary.org/obo/UBERON_0004145,outflow tract +7.4005638,MONDO:0002529,http://purl.obolibrary.org/obo/MONDO_0002529,skin squamous cell carcinoma +7.4007056,MONDO:0020598,http://purl.obolibrary.org/obo/MONDO_0020598,malabsorption syndrome +7.4007766,MONDO:0017262,http://purl.obolibrary.org/obo/MONDO_0017262,inherited non-syndromic ichthyosis +7.4009184,GO:0031941,http://purl.obolibrary.org/obo/GO_0031941,filamentous actin +7.4009893,MONDO:0017646,http://purl.obolibrary.org/obo/MONDO_0017646,neurodegenerative disease with chorea +7.401344,DRUGBANK:DB05232,http://purl.obolibrary.org/obo/DRUGBANK_DB05232,none +7.4016279,UBERON:0010131,http://purl.obolibrary.org/obo/UBERON_0010131,conducting tissue of heart +7.4027641,MONDO:0002429,http://purl.obolibrary.org/obo/MONDO_0002429,idiopathic interstitial pneumonia +7.4029062,MONDO:0017891,http://purl.obolibrary.org/obo/MONDO_0017891,inherited renal cancer-predisposing syndrome +7.4032616,MONDO:0007959,http://purl.obolibrary.org/obo/MONDO_0007959,medulloblastoma +7.4041861,MONDO:0005338,http://purl.obolibrary.org/obo/MONDO_0005338,open-angle glaucoma +7.4041861,MONDO:0019087,http://purl.obolibrary.org/obo/MONDO_0019087,cholangiocarcinoma +7.4043285,CL:0002191,http://purl.obolibrary.org/obo/CL_0002191,granulocytopoietic cell +7.4058953,PR:000016138,http://purl.obolibrary.org/obo/PR_000016138,TATA box-binding protein-like 1 +7.4059666,GO:0003720,http://purl.obolibrary.org/obo/GO_0003720,telomerase activity +7.4062517,MONDO:0018188,http://purl.obolibrary.org/obo/MONDO_0018188,genetic intestinal polyposis +7.406965,MONDO:0016565,http://purl.obolibrary.org/obo/MONDO_0016565,syndromic genetic obesity +7.4072505,MONDO:0006209,http://purl.obolibrary.org/obo/MONDO_0006209,fibroblastic neoplasm +7.4078216,UBERON:0002376,http://purl.obolibrary.org/obo/UBERON_0002376,cranial muscle +7.4080359,PR:000024844,http://purl.obolibrary.org/obo/PR_000024844,none +7.4083216,DRUGBANK:DB00811,http://purl.obolibrary.org/obo/DRUGBANK_DB00811,none +7.4088219,UBERON:0016879,http://purl.obolibrary.org/obo/UBERON_0016879,future central nervous system +7.4093224,PR:Q9LHA8,http://purl.obolibrary.org/obo/PR_Q9LHA8,none +7.4094655,DRUGBANK:DB14709,http://purl.obolibrary.org/obo/DRUGBANK_DB14709,none +7.4096085,HP:0001871,http://purl.obolibrary.org/obo/HP_0001871,Abnormality of blood and blood-forming tissues +7.4096801,MONDO:0018743,http://purl.obolibrary.org/obo/MONDO_0018743,immune-mediated acquired neuromuscular junction disease +7.4097516,UBERON:0004819,http://purl.obolibrary.org/obo/UBERON_0004819,kidney epithelium +7.4098232,DRUGBANK:DB01248,http://purl.obolibrary.org/obo/DRUGBANK_DB01248,none +7.4099663,UBERON:0001556,http://purl.obolibrary.org/obo/UBERON_0001556,lower urinary tract +7.4103958,UBERON:0004103,http://purl.obolibrary.org/obo/UBERON_0004103,alveolar ridge +7.4104674,SO:0001078,http://purl.obolibrary.org/obo/SO_0001078,polypeptide_secondary_structure +7.4106822,PR:P41797,http://purl.obolibrary.org/obo/PR_P41797,none +7.4117571,UBERON:0002336,http://purl.obolibrary.org/obo/UBERON_0002336,corpus callosum +7.4123308,SO:0001882,http://purl.obolibrary.org/obo/SO_0001882,feature_fusion +7.4126178,UBERON:0004247,http://purl.obolibrary.org/obo/UBERON_0004247,bone of dorsum +7.4130484,DRUGBANK:DB00958,http://purl.obolibrary.org/obo/DRUGBANK_DB00958,none +7.4142695,MOP:0000629,http://purl.obolibrary.org/obo/MOP_0000629,none +7.4157081,NCBITaxon:2732007,http://purl.obolibrary.org/obo/NCBITaxon_2732007,Nucleocytoviricota +7.4163561,GO:0017144,http://purl.obolibrary.org/obo/GO_0017144,drug metabolic process +7.4165722,SO:0001114,http://purl.obolibrary.org/obo/SO_0001114,peptide_helix +7.4166442,GO:0048469,http://purl.obolibrary.org/obo/GO_0048469,cell maturation +7.4172929,DRUGBANK:DB04327,http://purl.obolibrary.org/obo/DRUGBANK_DB04327,none +7.4174371,SO:0001654,http://purl.obolibrary.org/obo/SO_0001654,nucleotide_to_protein_binding_site +7.418014,DRUGBANK:DB12750,http://purl.obolibrary.org/obo/DRUGBANK_DB12750,none +7.4181583,SO:0000345,http://purl.obolibrary.org/obo/SO_0000345,EST +7.4185914,GO:1901137,http://purl.obolibrary.org/obo/GO_1901137,carbohydrate derivative biosynthetic process +7.4185914,MONDO:0003193,http://purl.obolibrary.org/obo/MONDO_0003193,bile duct adenocarcinoma +7.4196025,CL:0000068,http://purl.obolibrary.org/obo/CL_0000068,duct epithelial cell +7.419747,UBERON:0001829,http://purl.obolibrary.org/obo/UBERON_0001829,major salivary gland +7.4198916,PR:000004803,http://purl.obolibrary.org/obo/PR_000004803,breast cancer type 1 susceptibility protein +7.4201084,DRUGBANK:DB03575,http://purl.obolibrary.org/obo/DRUGBANK_DB03575,none +7.4216278,MONDO:0002665,http://purl.obolibrary.org/obo/MONDO_0002665,extrahepatic bile duct adenocarcinoma +7.4219899,CL:0002573,http://purl.obolibrary.org/obo/CL_0002573,Schwann cell +7.4223521,UBERON:0006984,http://purl.obolibrary.org/obo/UBERON_0006984,anatomical surface +7.4224971,HP:0012647,http://purl.obolibrary.org/obo/HP_0012647,Abnormal inflammatory response +7.4225695,HP:0012649,http://purl.obolibrary.org/obo/HP_0012649,Increased inflammatory response +7.422642,DRUGBANK:DB10551,http://purl.obolibrary.org/obo/DRUGBANK_DB10551,none +7.4241652,DRUGBANK:DB01452,http://purl.obolibrary.org/obo/DRUGBANK_DB01452,none +7.4242378,SO:0000235,http://purl.obolibrary.org/obo/SO_0000235,TF_binding_site +7.425182,PR:000001118,http://purl.obolibrary.org/obo/PR_000001118,angiotensin II receptor +7.4252547,PR:000025845,http://purl.obolibrary.org/obo/PR_000025845,ephrin receptor +7.4270731,GO:0016668,http://purl.obolibrary.org/obo/GO_0016668,"oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor" +7.4278742,HP:0003549,http://purl.obolibrary.org/obo/HP_0003549,Abnormality of connective tissue +7.4286031,MONDO:0004974,http://purl.obolibrary.org/obo/MONDO_0004974,adrenal gland pheochromocytoma +7.4294054,MONDO:0001566,http://purl.obolibrary.org/obo/MONDO_0001566,hypercalcemia disease +7.4295514,UBERON:0001439,http://purl.obolibrary.org/obo/UBERON_0001439,compact bone tissue +7.4302084,MONDO:0007739,http://purl.obolibrary.org/obo/MONDO_0007739,Huntington disease +7.4306467,GO:0004620,http://purl.obolibrary.org/obo/GO_0004620,phospholipase activity +7.430939,PR:000000030,http://purl.obolibrary.org/obo/PR_000000030,thrombospondin subgroup B +7.430939,UBERON:0001810,http://purl.obolibrary.org/obo/UBERON_0001810,nerve plexus +7.4310121,PR:000001005,http://purl.obolibrary.org/obo/PR_000001005,integrin alpha with A domain +7.4323286,DRUGBANK:DB00252,http://purl.obolibrary.org/obo/DRUGBANK_DB00252,none +7.4334269,GO:0019829,http://purl.obolibrary.org/obo/GO_0019829,ATPase-coupled cation transmembrane transporter activity +7.4334269,MONDO:0001142,http://purl.obolibrary.org/obo/MONDO_0001142,salivary gland disease +7.4349667,MONDO:0005480,http://purl.obolibrary.org/obo/MONDO_0005480,contact dermatitis +7.4349667,PR:000011170,http://purl.obolibrary.org/obo/PR_000011170,nuclear factor erythroid 2-related factor 2 +7.4355539,MONDO:0021237,http://purl.obolibrary.org/obo/MONDO_0021237,adrenal medulla neoplasm +7.4355539,UBERON:0009623,http://purl.obolibrary.org/obo/UBERON_0009623,spinal nerve root +7.4367293,MONDO:0016743,http://purl.obolibrary.org/obo/MONDO_0016743,tumor of meninges +7.4373176,MONDO:0021072,http://purl.obolibrary.org/obo/MONDO_0021072,sympathetic paraganglioma +7.4376118,GO:0061659,http://purl.obolibrary.org/obo/GO_0061659,ubiquitin-like protein ligase activity +7.4392317,GO:0016893,http://purl.obolibrary.org/obo/GO_0016893,"endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters" +7.4393791,DRUGBANK:DB04224,http://purl.obolibrary.org/obo/DRUGBANK_DB04224,none +7.4403377,SO:0000287,http://purl.obolibrary.org/obo/SO_0000287,fusion_gene +7.4404115,SO:0001565,http://purl.obolibrary.org/obo/SO_0001565,gene_fusion +7.4409281,UBERON:0010133,http://purl.obolibrary.org/obo/UBERON_0010133,neuroendocrine gland +7.4410757,CL:1001610,http://purl.obolibrary.org/obo/CL_1001610,bone marrow hematopoietic cell +7.4411495,MONDO:0015110,http://purl.obolibrary.org/obo/MONDO_0015110,genetic cardiac rhythm disease +7.4427752,UBERON:0006915,http://purl.obolibrary.org/obo/UBERON_0006915,stratified squamous epithelium +7.4429971,MONDO:0024636,http://purl.obolibrary.org/obo/MONDO_0024636,inflammation of heart layer +7.443293,GO:0002440,http://purl.obolibrary.org/obo/GO_0002440,production of molecular mediator of immune response +7.443441,SO:0000237,http://purl.obolibrary.org/obo/SO_0000237,transcript_attribute +7.4438111,SO:0000669,http://purl.obolibrary.org/obo/SO_0000669,sequence_rearrangement_feature +7.4438851,MONDO:0019079,http://purl.obolibrary.org/obo/MONDO_0019079,proximal spinal muscular atrophy +7.4452928,UBERON:0001179,http://purl.obolibrary.org/obo/UBERON_0001179,peritoneal cavity +7.4457377,MONDO:0002436,http://purl.obolibrary.org/obo/MONDO_0002436,nasal disorder +7.4461087,MONDO:0002512,http://purl.obolibrary.org/obo/MONDO_0002512,papillary adenocarcinoma +7.4462571,UBERON:0003544,http://purl.obolibrary.org/obo/UBERON_0003544,brain white matter +7.4477424,PR:000010228,http://purl.obolibrary.org/obo/PR_000010228,myelin basic protein +7.4481884,GO:0006452,http://purl.obolibrary.org/obo/GO_0006452,translational frameshifting +7.4483372,GO:0044262,http://purl.obolibrary.org/obo/GO_0044262,cellular carbohydrate metabolic process +7.4484859,MONDO:0004689,http://purl.obolibrary.org/obo/MONDO_0004689,inborn metal metabolism disorder +7.4489323,CL:0000669,http://purl.obolibrary.org/obo/CL_0000669,pericyte cell +7.4493044,PR:000000085,http://purl.obolibrary.org/obo/PR_000000085,cartilage oligomeric matrix protein +7.4493788,MONDO:0044874,http://purl.obolibrary.org/obo/MONDO_0044874,refractory cytopenia of childhood +7.4496022,DRUGBANK:DB02745,http://purl.obolibrary.org/obo/DRUGBANK_DB02745,none +7.450198,HP:0004372,http://purl.obolibrary.org/obo/HP_0004372,Reduced consciousness/confusion +7.450198,UBERON:0016525,http://purl.obolibrary.org/obo/UBERON_0016525,frontal lobe +7.4504216,GO:0006468,http://purl.obolibrary.org/obo/GO_0006468,protein phosphorylation +7.4506452,GO:0099094,http://purl.obolibrary.org/obo/GO_0099094,ligand-gated cation channel activity +7.4508688,CHEBI:35475,http://purl.obolibrary.org/obo/CHEBI_35475,non-steroidal anti-inflammatory drug +7.4518385,NCBITaxon:3701,http://purl.obolibrary.org/obo/NCBITaxon_3701,none +7.4522863,CL:0000168,http://purl.obolibrary.org/obo/CL_0000168,insulin secreting cell +7.4524357,SO:0000299,http://purl.obolibrary.org/obo/SO_0000299,specific_recombination_site +7.4531079,GO:0090407,http://purl.obolibrary.org/obo/GO_0090407,organophosphate biosynthetic process +7.4536311,CL:0008034,http://purl.obolibrary.org/obo/CL_0008034,mural cell +7.4546035,GO:0061630,http://purl.obolibrary.org/obo/GO_0061630,ubiquitin protein ligase activity +7.4553521,GO:0015078,http://purl.obolibrary.org/obo/GO_0015078,proton transmembrane transporter activity +7.4560263,UBERON:0005844,http://purl.obolibrary.org/obo/UBERON_0005844,spinal cord segment +7.4562512,SO:0000863,http://purl.obolibrary.org/obo/SO_0000863,mRNA_attribute +7.4564011,CHEBI:51121,http://purl.obolibrary.org/obo/CHEBI_51121,fluorescent dye +7.4564011,CL:0000501,http://purl.obolibrary.org/obo/CL_0000501,granulosa cell +7.457001,MONDO:0009688,http://purl.obolibrary.org/obo/MONDO_0009688,myasthenia gravis +7.4574512,UBERON:0015593,http://purl.obolibrary.org/obo/UBERON_0015593,frontal gyrus +7.4576013,MONDO:0018174,http://purl.obolibrary.org/obo/MONDO_0018174,hereditary glaucoma +7.4591036,MONDO:0000588,http://purl.obolibrary.org/obo/MONDO_0000588,autoimmune disease of gastrointestinal tract +7.4591788,PR:000007856,http://purl.obolibrary.org/obo/PR_000007856,gastrin +7.4600813,PR:000044655,http://purl.obolibrary.org/obo/PR_000044655,potassium channel protein +7.4601566,MONDO:0019272,http://purl.obolibrary.org/obo/MONDO_0019272,hereditary palmoplantar keratoderma +7.4601566,UBERON:0014778,http://purl.obolibrary.org/obo/UBERON_0014778,cell group +7.4602318,MONDO:0017757,http://purl.obolibrary.org/obo/MONDO_0017757,disorder of metabolite absorption and transport +7.4603823,GO:0003912,http://purl.obolibrary.org/obo/GO_0003912,DNA nucleotidylexotransferase activity +7.4609094,CL:0000558,http://purl.obolibrary.org/obo/CL_0000558,reticulocyte +7.4609847,DRUGBANK:DB14531,http://purl.obolibrary.org/obo/DRUGBANK_DB14531,none +7.4615873,MONDO:0004638,http://purl.obolibrary.org/obo/MONDO_0004638,lymphosarcoma +7.4617381,SO:0000865,http://purl.obolibrary.org/obo/SO_0000865,frameshift +7.462492,CL:0000680,http://purl.obolibrary.org/obo/CL_0000680,muscle precursor cell +7.4643795,MONDO:0020051,http://purl.obolibrary.org/obo/MONDO_0020051,total autosomal trisomy +7.4647574,DRUGBANK:DB14522,http://purl.obolibrary.org/obo/DRUGBANK_DB14522,none +7.464833,MONDO:0016752,http://purl.obolibrary.org/obo/MONDO_0016752,benign peripheral nerve sheath tumor +7.4651355,DRUGBANK:DB09421,http://purl.obolibrary.org/obo/DRUGBANK_DB09421,none +7.4653624,GO:0002377,http://purl.obolibrary.org/obo/GO_0002377,immunoglobulin production +7.465438,GO:0002378,http://purl.obolibrary.org/obo/GO_0002378,none +7.465665,DRUGBANK:DB00727,http://purl.obolibrary.org/obo/DRUGBANK_DB00727,none +7.4668764,GO:0019098,http://purl.obolibrary.org/obo/GO_0019098,reproductive behavior +7.4672552,MONDO:0011429,http://purl.obolibrary.org/obo/MONDO_0011429,juvenile idiopathic arthritis +7.46771,UBERON:0001090,http://purl.obolibrary.org/obo/UBERON_0001090,synovial fluid +7.4683168,GO:0030291,http://purl.obolibrary.org/obo/GO_0030291,protein serine/threonine kinase inhibitor activity +7.4685444,GO:0008509,http://purl.obolibrary.org/obo/GO_0008509,anion transmembrane transporter activity +7.4691517,MONDO:0005502,http://purl.obolibrary.org/obo/MONDO_0005502,dengue disease +7.4697593,DRUGBANK:DB00583,http://purl.obolibrary.org/obo/DRUGBANK_DB00583,none +7.4702913,DRUGBANK:DB06709,http://purl.obolibrary.org/obo/DRUGBANK_DB06709,none +7.4702913,MONDO:0002565,http://purl.obolibrary.org/obo/MONDO_0002565,myelitis +7.4703673,DRUGBANK:DB01015,http://purl.obolibrary.org/obo/DRUGBANK_DB01015,none +7.4713561,MONDO:0005299,http://purl.obolibrary.org/obo/MONDO_0005299,brain ischemia +7.4716605,GO:0016903,http://purl.obolibrary.org/obo/GO_0016903,"oxidoreductase activity, acting on the aldehyde or oxo group of donors" +7.4718128,UBERON:0004548,http://purl.obolibrary.org/obo/UBERON_0004548,left eye +7.4724982,GO:0000805,http://purl.obolibrary.org/obo/GO_0000805,X chromosome +7.4727268,GO:0140353,http://purl.obolibrary.org/obo/GO_0140353,lipid export from cell +7.4734891,PR:000004400,http://purl.obolibrary.org/obo/PR_000004400,cyclic AMP-dependent transcription factor ATF-4 +7.4739468,UBERON:0001948,http://purl.obolibrary.org/obo/UBERON_0001948,regional part of spinal cord +7.474023,MONDO:0037847,http://purl.obolibrary.org/obo/MONDO_0037847,vertebral joint disease +7.4750155,GO:0008306,http://purl.obolibrary.org/obo/GO_0008306,associative learning +7.4751682,GO:0030218,http://purl.obolibrary.org/obo/GO_0030218,erythrocyte differentiation +7.4752446,NCBITaxon:980083,http://purl.obolibrary.org/obo/NCBITaxon_980083,none +7.4753974,MONDO:0018536,http://purl.obolibrary.org/obo/MONDO_0018536,adenocarcinoma of gallbladder and extrahepatic biliary tract +7.4753974,MONDO:0018918,http://purl.obolibrary.org/obo/MONDO_0018918,carcinoma of gallbladder and extrahepatic biliary tract +7.4753974,PR:000001392,http://purl.obolibrary.org/obo/PR_000001392,interleukin-5 +7.4757031,UBERON:0003839,http://purl.obolibrary.org/obo/UBERON_0003839,forelimb joint +7.4759324,UBERON:0016435,http://purl.obolibrary.org/obo/UBERON_0016435,chest wall +7.4763912,MONDO:0015930,http://purl.obolibrary.org/obo/MONDO_0015930,respiratory malformation +7.4778454,UBERON:0004211,http://purl.obolibrary.org/obo/UBERON_0004211,nephron epithelium +7.4787649,CL:0000165,http://purl.obolibrary.org/obo/CL_0000165,neuroendocrine cell +7.4791483,GO:0009308,http://purl.obolibrary.org/obo/GO_0009308,amine metabolic process +7.4794551,CL:0000990,http://purl.obolibrary.org/obo/CL_0000990,conventional dendritic cell +7.4809907,NCBITaxon:2732525,http://purl.obolibrary.org/obo/NCBITaxon_2732525,Pokkesviricetes +7.4816055,CL:0000056,http://purl.obolibrary.org/obo/CL_0000056,myoblast +7.4821438,UBERON:0007601,http://purl.obolibrary.org/obo/UBERON_0007601,ciliated epithelium +7.4829134,PR:000005932,http://purl.obolibrary.org/obo/PR_000005932,granulocyte colony-stimulating factor +7.4831443,GO:0006310,http://purl.obolibrary.org/obo/GO_0006310,DNA recombination +7.4839917,CL:0000067,http://purl.obolibrary.org/obo/CL_0000067,ciliated epithelial cell +7.4846084,MONDO:0002869,http://purl.obolibrary.org/obo/MONDO_0002869,heart valve disease +7.4866154,MONDO:0015329,http://purl.obolibrary.org/obo/MONDO_0015329,malformation syndrome with short stature +7.4871564,UBERON:0004711,http://purl.obolibrary.org/obo/UBERON_0004711,jugular vein +7.4873883,GO:0005041,http://purl.obolibrary.org/obo/GO_0005041,low-density lipoprotein particle receptor activity +7.4873883,PR:000009744,http://purl.obolibrary.org/obo/PR_000009744,low-density lipoprotein receptor +7.4879298,GO:1902652,http://purl.obolibrary.org/obo/GO_1902652,secondary alcohol metabolic process +7.4879298,UBERON:0005292,http://purl.obolibrary.org/obo/UBERON_0005292,extraembryonic tissue +7.4881619,UBERON:0000013,http://purl.obolibrary.org/obo/UBERON_0000013,sympathetic nervous system +7.4884715,GO:0035929,http://purl.obolibrary.org/obo/GO_0035929,steroid hormone secretion +7.4890135,UBERON:0001516,http://purl.obolibrary.org/obo/UBERON_0001516,abdominal aorta +7.4892459,UBERON:0000926,http://purl.obolibrary.org/obo/UBERON_0000926,mesoderm +7.4895558,MONDO:0021357,http://purl.obolibrary.org/obo/MONDO_0021357,tumor of salivary gland +7.4912622,UBERON:0001486,http://purl.obolibrary.org/obo/UBERON_0001486,hip joint +7.4916504,MONDO:0005306,http://purl.obolibrary.org/obo/MONDO_0005306,ankylosing spondylitis +7.4918057,MONDO:0002305,http://purl.obolibrary.org/obo/MONDO_0002305,thrombophilia +7.4922719,MONDO:0016105,http://purl.obolibrary.org/obo/MONDO_0016105,acquired skeletal muscle disease +7.492816,MONDO:0044925,http://purl.obolibrary.org/obo/MONDO_0044925,oral cavity carcinoma +7.4938272,GO:0070647,http://purl.obolibrary.org/obo/GO_0070647,protein modification by small protein conjugation or removal +7.4938272,UBERON:0003296,http://purl.obolibrary.org/obo/UBERON_0003296,gland of diencephalon +7.493905,CHEBI:49020,http://purl.obolibrary.org/obo/CHEBI_49020,hormone antagonist +7.4940607,DRUGBANK:DB01211,http://purl.obolibrary.org/obo/DRUGBANK_DB01211,none +7.4942943,MONDO:0019296,http://purl.obolibrary.org/obo/MONDO_0019296,subcutaneous tissue disease +7.49445,SO:0001412,http://purl.obolibrary.org/obo/SO_0001412,topologically_defined_region +7.4949953,MONDO:0005525,http://purl.obolibrary.org/obo/MONDO_0005525,T-cell leukemia +7.495307,MONDO:0015974,http://purl.obolibrary.org/obo/MONDO_0015974,severe combined immunodeficiency +7.4957748,DRUGBANK:DB00333,http://purl.obolibrary.org/obo/DRUGBANK_DB00333,none +7.4960087,GO:0032446,http://purl.obolibrary.org/obo/GO_0032446,protein modification by small protein conjugation +7.4968671,MONDO:0002021,http://purl.obolibrary.org/obo/MONDO_0002021,gingival disease +7.4971013,DRUGBANK:DB11312,http://purl.obolibrary.org/obo/DRUGBANK_DB11312,none +7.4971794,UBERON:0001950,http://purl.obolibrary.org/obo/UBERON_0001950,neocortex +7.4974918,MONDO:0018905,http://purl.obolibrary.org/obo/MONDO_0018905,diffuse large B-cell lymphoma +7.4979606,MONDO:0043953,http://purl.obolibrary.org/obo/MONDO_0043953,burkholderia infectious disease +7.4980387,DRUGBANK:DB01914,http://purl.obolibrary.org/obo/DRUGBANK_DB01914,none +7.5002295,MONDO:0024503,http://purl.obolibrary.org/obo/MONDO_0024503,digestive system neuroendocrine neoplasm +7.5004645,DRUGBANK:DB08831,http://purl.obolibrary.org/obo/DRUGBANK_DB08831,none +7.5004645,GO:0008203,http://purl.obolibrary.org/obo/GO_0008203,cholesterol metabolic process +7.501013,PR:000001891,http://purl.obolibrary.org/obo/PR_000001891,ATP-dependent translocase ABCB1 +7.5028176,UBERON:0001377,http://purl.obolibrary.org/obo/UBERON_0001377,quadriceps femoris +7.5032103,DRUGBANK:DB06774,http://purl.obolibrary.org/obo/DRUGBANK_DB06774,none +7.5037604,GO:0042445,http://purl.obolibrary.org/obo/GO_0042445,hormone metabolic process +7.503839,GO:0016567,http://purl.obolibrary.org/obo/GO_0016567,protein ubiquitination +7.5039963,MONDO:0008608,http://purl.obolibrary.org/obo/MONDO_0008608,Down syndrome +7.5048615,CL:0000593,http://purl.obolibrary.org/obo/CL_0000593,androgen secreting cell +7.5049402,SO:0000986,http://purl.obolibrary.org/obo/SO_0000986,topology_attribute +7.5050976,SO:0000239,http://purl.obolibrary.org/obo/SO_0000239,flanking_region +7.5054912,DRUGBANK:DB11672,http://purl.obolibrary.org/obo/DRUGBANK_DB11672,none +7.5055699,GO:0043679,http://purl.obolibrary.org/obo/GO_0043679,axon terminus +7.5074616,SO:0001785,http://purl.obolibrary.org/obo/SO_0001785,structural_alteration +7.5091198,DRUGBANK:DB10501,http://purl.obolibrary.org/obo/DRUGBANK_DB10501,none +7.509436,UBERON:0013630,http://purl.obolibrary.org/obo/UBERON_0013630,short bone +7.509515,CHEBI:33839,http://purl.obolibrary.org/obo/CHEBI_33839,macromolecule +7.5095941,MONDO:0016230,http://purl.obolibrary.org/obo/MONDO_0016230,simple vascular malformation +7.5097522,PR:000003041,http://purl.obolibrary.org/obo/PR_000003041,serine/threonine-protein kinase mTOR +7.5098313,PR:000017364,http://purl.obolibrary.org/obo/PR_000017364,von Willebrand factor +7.5099104,UBERON:0001049,http://purl.obolibrary.org/obo/UBERON_0001049,neural tube +7.5116519,UBERON:0001231,http://purl.obolibrary.org/obo/UBERON_0001231,nephron tubule +7.5119688,UBERON:0002079,http://purl.obolibrary.org/obo/UBERON_0002079,left cardiac atrium +7.5122066,UBERON:0000059,http://purl.obolibrary.org/obo/UBERON_0000059,large intestine +7.5126823,DRUGBANK:DB00477,http://purl.obolibrary.org/obo/DRUGBANK_DB00477,none +7.512841,GO:0051604,http://purl.obolibrary.org/obo/GO_0051604,protein maturation +7.5129203,MONDO:0006322,http://purl.obolibrary.org/obo/MONDO_0006322,non-neoplastic bile duct disorder +7.513079,UBERON:0003876,http://purl.obolibrary.org/obo/UBERON_0003876,hippocampal field +7.5139521,DRUGBANK:DB11576,http://purl.obolibrary.org/obo/DRUGBANK_DB11576,none +7.5140315,CL:0008024,http://purl.obolibrary.org/obo/CL_0008024,pancreatic endocrine cell +7.5141903,UBERON:0003828,http://purl.obolibrary.org/obo/UBERON_0003828,abdominal segment bone +7.5145081,UBERON:0002224,http://purl.obolibrary.org/obo/UBERON_0002224,thoracic cavity +7.5152234,MONDO:0004634,http://purl.obolibrary.org/obo/MONDO_0004634,vein disease +7.5156211,GO:0033558,http://purl.obolibrary.org/obo/GO_0033558,protein deacetylase activity +7.5157006,GO:0003993,http://purl.obolibrary.org/obo/GO_0003993,acid phosphatase activity +7.5167353,MONDO:0016879,http://purl.obolibrary.org/obo/MONDO_0016879,partial deletion of chromosome 17 +7.5168946,CL:0000121,http://purl.obolibrary.org/obo/CL_0000121,Purkinje cell +7.5182494,NCBITaxon:11244,http://purl.obolibrary.org/obo/NCBITaxon_11244,Pneumoviridae +7.5190472,GO:0008556,http://purl.obolibrary.org/obo/GO_0008556,P-type potassium transmembrane transporter activity +7.5192867,UBERON:0000088,http://purl.obolibrary.org/obo/UBERON_0000088,trophoblast +7.5195262,PR:000008292,http://purl.obolibrary.org/obo/PR_000008292,"glutathione reductase, mitochondrial" +7.5200854,MONDO:0018838,http://purl.obolibrary.org/obo/MONDO_0018838,lissencephaly spectrum disorders +7.5206448,DRUGBANK:DB00695,http://purl.obolibrary.org/obo/DRUGBANK_DB00695,none +7.5207248,PR:000016868,http://purl.obolibrary.org/obo/PR_000016868,thioredoxin-like protein 1 +7.5209646,GO:0004407,http://purl.obolibrary.org/obo/GO_0004407,histone deacetylase activity +7.5209646,MONDO:0016895,http://purl.obolibrary.org/obo/MONDO_0016895,partial monosomy of the short arm of chromosome 17 +7.5212845,MONDO:0000627,http://purl.obolibrary.org/obo/MONDO_0000627,benign endocrine neoplasm +7.5225653,DRUGBANK:DB00152,http://purl.obolibrary.org/obo/DRUGBANK_DB00152,none +7.5228857,UBERON:0000056,http://purl.obolibrary.org/obo/UBERON_0000056,ureter +7.5232062,DRUGBANK:DB00254,http://purl.obolibrary.org/obo/DRUGBANK_DB00254,none +7.524008,GO:0030141,http://purl.obolibrary.org/obo/GO_0030141,secretory granule +7.5240883,HP:0002060,http://purl.obolibrary.org/obo/HP_0002060,Abnormal cerebral morphology +7.5240883,HP:0100547,http://purl.obolibrary.org/obo/HP_0100547,Abnormality of forebrain morphology +7.5246499,MONDO:0015951,http://purl.obolibrary.org/obo/MONDO_0015951,hereditary photodermatosis +7.5246499,PR:000001350,http://purl.obolibrary.org/obo/PR_000001350,forkhead box protein P3 +7.5247302,MONDO:0005036,http://purl.obolibrary.org/obo/MONDO_0005036,gastric adenocarcinoma +7.5248105,GO:0044106,http://purl.obolibrary.org/obo/GO_0044106,cellular amine metabolic process +7.5248105,MONDO:0015221,http://purl.obolibrary.org/obo/MONDO_0015221,non-syndromic respiratory or mediastinal malformation +7.524971,UBERON:0002544,http://purl.obolibrary.org/obo/UBERON_0002544,digit +7.5268998,MONDO:0005323,http://purl.obolibrary.org/obo/MONDO_0005323,bacterial sexually transmitted disease +7.5270607,PR:000004398,http://purl.obolibrary.org/obo/PR_000004398,cyclic AMP-dependent transcription factor ATF-2 +7.52851,UBERON:0001473,http://purl.obolibrary.org/obo/UBERON_0001473,lymphatic vessel +7.5286712,CL:0002620,http://purl.obolibrary.org/obo/CL_0002620,skin fibroblast +7.5287518,MONDO:0002601,http://purl.obolibrary.org/obo/MONDO_0002601,teratoma +7.5287518,MONDO:0015079,http://purl.obolibrary.org/obo/MONDO_0015079,multiple polyglandular tumor +7.5298,HP:0030972,http://purl.obolibrary.org/obo/HP_0030972,Abnormal systemic blood pressure +7.5303649,DRUGBANK:DB02166,http://purl.obolibrary.org/obo/DRUGBANK_DB02166,none +7.5315765,GO:0050793,http://purl.obolibrary.org/obo/GO_0050793,regulation of developmental process +7.5318998,MONDO:0017739,http://purl.obolibrary.org/obo/MONDO_0017739,disorder of lysosomal-related organelles +7.5324659,CHEBI:33694,http://purl.obolibrary.org/obo/CHEBI_33694,biomacromolecule +7.5324659,PR:000001889,http://purl.obolibrary.org/obo/PR_000001889,CD14 molecule +7.5326277,GO:0030133,http://purl.obolibrary.org/obo/GO_0030133,transport vesicle +7.5328705,DRUGBANK:DB08847,http://purl.obolibrary.org/obo/DRUGBANK_DB08847,none +7.5332752,GO:0002252,http://purl.obolibrary.org/obo/GO_0002252,immune effector process +7.5335991,GO:0007420,http://purl.obolibrary.org/obo/GO_0007420,brain development +7.5337611,DRUGBANK:DB00619,http://purl.obolibrary.org/obo/DRUGBANK_DB00619,none +7.5340041,GO:0071822,http://purl.obolibrary.org/obo/GO_0071822,none +7.5340851,DRUGBANK:DB01050,http://purl.obolibrary.org/obo/DRUGBANK_DB01050,none +7.5341661,GO:0004089,http://purl.obolibrary.org/obo/GO_0004089,carbonate dehydratase activity +7.5344903,UBERON:0000328,http://purl.obolibrary.org/obo/UBERON_0000328,gut wall +7.5346524,DRUGBANK:DB00297,http://purl.obolibrary.org/obo/DRUGBANK_DB00297,none +7.535139,DRUGBANK:DB02901,http://purl.obolibrary.org/obo/DRUGBANK_DB02901,none +7.5367625,PR:000000681,http://purl.obolibrary.org/obo/PR_000000681,transient receptor potential cation channel TRPV +7.5370062,GO:0019763,http://purl.obolibrary.org/obo/GO_0019763,immunoglobulin receptor activity +7.5377379,CHEBI:33655,http://purl.obolibrary.org/obo/CHEBI_33655,aromatic compound +7.5379819,GO:0002682,http://purl.obolibrary.org/obo/GO_0002682,regulation of immune system process +7.53847,HP:0011014,http://purl.obolibrary.org/obo/HP_0011014,Abnormal glucose homeostasis +7.5385514,PR:000050018,http://purl.obolibrary.org/obo/PR_000050018,GLI protein +7.538877,DRUGBANK:DB00683,http://purl.obolibrary.org/obo/DRUGBANK_DB00683,none +7.5390398,CHEBI:33659,http://purl.obolibrary.org/obo/CHEBI_33659,organic aromatic compound +7.5390398,MONDO:0005212,http://purl.obolibrary.org/obo/MONDO_0005212,rhabdomyosarcoma +7.53961,PR:000008644,http://purl.obolibrary.org/obo/PR_000008644,heme oxygenase 1 +7.5406697,DRUGBANK:DB03401,http://purl.obolibrary.org/obo/DRUGBANK_DB03401,none +7.5412408,GO:0046165,http://purl.obolibrary.org/obo/GO_0046165,alcohol biosynthetic process +7.5417305,UBERON:0001235,http://purl.obolibrary.org/obo/UBERON_0001235,adrenal cortex +7.5424656,CL:0000622,http://purl.obolibrary.org/obo/CL_0000622,acinar cell +7.5425473,UBERON:0001075,http://purl.obolibrary.org/obo/UBERON_0001075,bony vertebral centrum +7.5425473,UBERON:0016491,http://purl.obolibrary.org/obo/UBERON_0016491,vertebral centrum element +7.5434466,DRUGBANK:DB01956,http://purl.obolibrary.org/obo/DRUGBANK_DB01956,none +7.5441829,DRUGBANK:DB14007,http://purl.obolibrary.org/obo/DRUGBANK_DB14007,none +7.5444285,HP:0000407,http://purl.obolibrary.org/obo/HP_0000407,Sensorineural hearing impairment +7.5451656,MONDO:0015336,http://purl.obolibrary.org/obo/MONDO_0015336,malformation syndrome with odontal and/or periodontal component +7.5456572,UBERON:0004807,http://purl.obolibrary.org/obo/UBERON_0004807,respiratory system epithelium +7.5459032,GO:0006576,http://purl.obolibrary.org/obo/GO_0006576,cellular biogenic amine metabolic process +7.5462312,MONDO:0024880,http://purl.obolibrary.org/obo/MONDO_0024880,metastatic malignant neoplasm +7.5464772,MONDO:0024352,http://purl.obolibrary.org/obo/MONDO_0024352,viral respiratory tract infection +7.5470517,GO:0051703,http://purl.obolibrary.org/obo/GO_0051703,biological process involved in intraspecies interaction between organisms +7.5480371,MONDO:0005386,http://purl.obolibrary.org/obo/MONDO_0005386,peripheral arterial disease +7.5487769,MONDO:0016348,http://purl.obolibrary.org/obo/MONDO_0016348,non-genetic cardiac rhythm disease +7.5488591,MONDO:0017988,http://purl.obolibrary.org/obo/MONDO_0017988,multifocal atrial tachycardia +7.5495994,PR:000010213,http://purl.obolibrary.org/obo/PR_000010213,myoglobin +7.550011,CL:0000169,http://purl.obolibrary.org/obo/CL_0000169,type B pancreatic cell +7.5509169,GO:0033500,http://purl.obolibrary.org/obo/GO_0033500,carbohydrate homeostasis +7.5510818,MONDO:0000385,http://purl.obolibrary.org/obo/MONDO_0000385,benign digestive system neoplasm +7.5516588,DRUGBANK:DB00464,http://purl.obolibrary.org/obo/DRUGBANK_DB00464,none +7.5528139,UBERON:0001707,http://purl.obolibrary.org/obo/UBERON_0001707,nasal cavity +7.5530616,GO:1903131,http://purl.obolibrary.org/obo/GO_1903131,mononuclear cell differentiation +7.553392,MONDO:0020678,http://purl.obolibrary.org/obo/MONDO_0020678,sensorineural hearing loss disorder +7.554053,MONDO:0016224,http://purl.obolibrary.org/obo/MONDO_0016224,autosomal dominant proximal spinal muscular atrophy +7.5542184,GO:0070160,http://purl.obolibrary.org/obo/GO_0070160,tight junction +7.5542184,MONDO:0018190,http://purl.obolibrary.org/obo/MONDO_0018190,autosomal dominant childhood-onset proximal spinal muscular atrophy +7.554301,CL:0002518,http://purl.obolibrary.org/obo/CL_0002518,kidney epithelial cell +7.554301,HP:0009121,http://purl.obolibrary.org/obo/HP_0009121,Abnormal axial skeleton morphology +7.5545491,DRUGBANK:DB06379,http://purl.obolibrary.org/obo/DRUGBANK_DB06379,none +7.5552937,NCBITaxon:10240,http://purl.obolibrary.org/obo/NCBITaxon_10240,Poxviridae +7.5552937,NCBITaxon:10241,http://purl.obolibrary.org/obo/NCBITaxon_10241,Chordopoxvirinae +7.555542,NCBITaxon:2732527,http://purl.obolibrary.org/obo/NCBITaxon_2732527,Chitovirales +7.5556248,GO:0019075,http://purl.obolibrary.org/obo/GO_0019075,virus maturation +7.5560388,GO:0061689,http://purl.obolibrary.org/obo/GO_0061689,tricellular tight junction +7.5572819,GO:0005923,http://purl.obolibrary.org/obo/GO_0005923,bicellular tight junction +7.5574478,DRUGBANK:DB04827,http://purl.obolibrary.org/obo/DRUGBANK_DB04827,none +7.5579455,UBERON:0008193,http://purl.obolibrary.org/obo/UBERON_0008193,pneumatized bone +7.5581115,MONDO:0002921,http://purl.obolibrary.org/obo/MONDO_0002921,congenital structural myopathy +7.5587757,DRUGBANK:DB15263,http://purl.obolibrary.org/obo/DRUGBANK_DB15263,none +7.5587757,GO:0004690,http://purl.obolibrary.org/obo/GO_0004690,cyclic nucleotide-dependent protein kinase activity +7.5588588,UBERON:0005408,http://purl.obolibrary.org/obo/UBERON_0005408,circumventricular organ +7.5593572,PR:000044681,http://purl.obolibrary.org/obo/PR_000044681,none +7.5603549,UBERON:0001782,http://purl.obolibrary.org/obo/UBERON_0001782,pigmented layer of retina +7.5604381,PR:Q9FJR1,http://purl.obolibrary.org/obo/PR_Q9FJR1,none +7.5606877,PR:000004969,http://purl.obolibrary.org/obo/PR_000004969,calcitonin gene-related peptide 2 +7.5610206,GO:0050673,http://purl.obolibrary.org/obo/GO_0050673,epithelial cell proliferation +7.5616034,MONDO:0019091,http://purl.obolibrary.org/obo/MONDO_0019091,bronchopulmonary dysplasia +7.5616867,UBERON:0001015,http://purl.obolibrary.org/obo/UBERON_0001015,musculature +7.5625199,GO:0035176,http://purl.obolibrary.org/obo/GO_0035176,social behavior +7.5637711,GO:0042593,http://purl.obolibrary.org/obo/GO_0042593,glucose homeostasis +7.5638546,UBERON:0005881,http://purl.obolibrary.org/obo/UBERON_0005881,autopodial extension +7.5645226,PR:000024938,http://purl.obolibrary.org/obo/PR_000024938,interferon alpha +7.565191,PR:000015058,http://purl.obolibrary.org/obo/PR_000015058,"solute carrier family 2, facilitated glucose transporter member 1" +7.5654418,MONDO:0015962,http://purl.obolibrary.org/obo/MONDO_0015962,inherited renal tubular disease +7.5661946,MONDO:0005774,http://purl.obolibrary.org/obo/MONDO_0005774,glanders +7.5669479,PR:000025748,http://purl.obolibrary.org/obo/PR_000025748,Janus kinase +7.5677017,MONDO:0004652,http://purl.obolibrary.org/obo/MONDO_0004652,bacterial pneumonia +7.5682885,PR:000002198,http://purl.obolibrary.org/obo/PR_000002198,catenin beta-1 +7.5687916,MONDO:0005055,http://purl.obolibrary.org/obo/MONDO_0005055,Kaposi's sarcoma +7.5690433,MONDO:0019781,http://purl.obolibrary.org/obo/MONDO_0019781,astrocytoma (excluding glioblastoma) +7.5696308,MONDO:0010481,http://purl.obolibrary.org/obo/MONDO_0010481,angioedema +7.5698827,MONDO:0021060,http://purl.obolibrary.org/obo/MONDO_0021060,RASopathy +7.571732,GO:0007017,http://purl.obolibrary.org/obo/GO_0007017,microtubule-based process +7.5720685,MONDO:0002326,http://purl.obolibrary.org/obo/MONDO_0002326,alcohol-induced mental disorder +7.573079,CHEBI:33695,http://purl.obolibrary.org/obo/CHEBI_33695,information biomacromolecule +7.5733318,UBERON:0004852,http://purl.obolibrary.org/obo/UBERON_0004852,cardiovascular system endothelium +7.5735846,GO:0009889,http://purl.obolibrary.org/obo/GO_0009889,regulation of biosynthetic process +7.5738375,UBERON:0001825,http://purl.obolibrary.org/obo/UBERON_0001825,paranasal sinus +7.5740904,UBERON:0003514,http://purl.obolibrary.org/obo/UBERON_0003514,limb blood vessel +7.5740904,UBERON:0007301,http://purl.obolibrary.org/obo/UBERON_0007301,appendage blood vessel +7.5749341,PR:O42364,http://purl.obolibrary.org/obo/PR_O42364,none +7.5750185,CL:0009004,http://purl.obolibrary.org/obo/CL_0009004,retinal cell +7.5752718,PR:000001883,http://purl.obolibrary.org/obo/PR_000001883,lysosome-associated membrane protein +7.5756096,MONDO:0002848,http://purl.obolibrary.org/obo/MONDO_0002848,skeletal muscle neoplasm +7.5769618,SO:0000300,http://purl.obolibrary.org/obo/SO_0000300,recombination_feature_of_rearranged_gene +7.5769618,SO:0000301,http://purl.obolibrary.org/obo/SO_0000301,vertebrate_immune_system_gene_recombination_feature +7.5777233,GO:0002118,http://purl.obolibrary.org/obo/GO_0002118,aggressive behavior +7.5779772,UBERON:0007592,http://purl.obolibrary.org/obo/UBERON_0007592,ciliated columnar epithelium +7.5791632,MONDO:0016229,http://purl.obolibrary.org/obo/MONDO_0016229,genetic vascular anomaly +7.5794175,DRUGBANK:DB00753,http://purl.obolibrary.org/obo/DRUGBANK_DB00753,none +7.5795871,HP:0040064,http://purl.obolibrary.org/obo/HP_0040064,Abnormality of limbs +7.5798415,MONDO:0024338,http://purl.obolibrary.org/obo/MONDO_0024338,mucinous neoplasm +7.5799263,GO:0046958,http://purl.obolibrary.org/obo/GO_0046958,nonassociative learning +7.5802657,UBERON:0000924,http://purl.obolibrary.org/obo/UBERON_0000924,ectoderm +7.5810296,MONDO:0000595,http://purl.obolibrary.org/obo/MONDO_0000595,sexual and gender identity disorders +7.5828145,GO:0006575,http://purl.obolibrary.org/obo/GO_0006575,cellular modified amino acid metabolic process +7.5834102,UBERON:0002016,http://purl.obolibrary.org/obo/UBERON_0002016,pulmonary vein +7.5838359,MONDO:0017030,http://purl.obolibrary.org/obo/MONDO_0017030,interstitial lung disease in childhood and adulthood +7.5841766,MONDO:0016123,http://purl.obolibrary.org/obo/MONDO_0016123,muscular tumor +7.5843469,MONDO:0015225,http://purl.obolibrary.org/obo/MONDO_0015225,arthrogryposis syndrome +7.584773,CL:0000740,http://purl.obolibrary.org/obo/CL_0000740,retinal ganglion cell +7.585114,CL:0000099,http://purl.obolibrary.org/obo/CL_0000099,interneuron +7.5853699,PR:000005854,http://purl.obolibrary.org/obo/PR_000005854,cyclic AMP-responsive element-binding protein 1 +7.5862231,DRUGBANK:DB16187,http://purl.obolibrary.org/obo/DRUGBANK_DB16187,none +7.5863085,MONDO:0018215,http://purl.obolibrary.org/obo/MONDO_0018215,paraneoplastic neurologic syndrome +7.5867354,CL:0000453,http://purl.obolibrary.org/obo/CL_0000453,Langerhans cell +7.5870771,CHEBI:15022,http://purl.obolibrary.org/obo/CHEBI_15022,electron donor +7.587248,GO:0009055,http://purl.obolibrary.org/obo/GO_0009055,electron transfer activity +7.5875898,DRUGBANK:DB01643,http://purl.obolibrary.org/obo/DRUGBANK_DB01643,none +7.5877608,MONDO:0018374,http://purl.obolibrary.org/obo/MONDO_0018374,secondary avascular necrosis +7.5879318,GO:0004566,http://purl.obolibrary.org/obo/GO_0004566,beta-glucuronidase activity +7.5880173,NCBITaxon:29258,http://purl.obolibrary.org/obo/NCBITaxon_29258,none +7.5882739,GO:0004396,http://purl.obolibrary.org/obo/GO_0004396,hexokinase activity +7.5885305,NCBITaxon:11245,http://purl.obolibrary.org/obo/NCBITaxon_11245,none +7.5885305,UBERON:0003656,http://purl.obolibrary.org/obo/UBERON_0003656,mesopodium bone +7.589044,PR:000002112,http://purl.obolibrary.org/obo/PR_000002112,vascular endothelial growth factor receptor 2 +7.5892152,MONDO:0001824,http://purl.obolibrary.org/obo/MONDO_0001824,polyneuropathy +7.5896434,UBERON:0001496,http://purl.obolibrary.org/obo/UBERON_0001496,ascending aorta +7.5898147,DRUGBANK:DB02379,http://purl.obolibrary.org/obo/DRUGBANK_DB02379,none +7.5906718,PR:000001940,http://purl.obolibrary.org/obo/PR_000001940,tissue factor +7.5906718,UBERON:0004802,http://purl.obolibrary.org/obo/UBERON_0004802,respiratory tract epithelium +7.590929,PR:000005253,http://purl.obolibrary.org/obo/PR_000005253,cyclin-dependent kinase 2 +7.5911863,GO:0000792,http://purl.obolibrary.org/obo/GO_0000792,heterochromatin +7.5914437,MONDO:0043693,http://purl.obolibrary.org/obo/MONDO_0043693,alcoholic liver diseases +7.5915295,GO:0015453,http://purl.obolibrary.org/obo/GO_0015453,oxidoreduction-driven active transmembrane transporter activity +7.591787,UBERON:0015796,http://purl.obolibrary.org/obo/UBERON_0015796,liver blood vessel +7.5919587,GO:0019239,http://purl.obolibrary.org/obo/GO_0019239,deaminase activity +7.5923022,MONDO:0016217,http://purl.obolibrary.org/obo/MONDO_0016217,mal de Debarquement +7.5943654,UBERON:0001557,http://purl.obolibrary.org/obo/UBERON_0001557,upper respiratory tract +7.5944515,HP:0002977,http://purl.obolibrary.org/obo/HP_0002977,Aplasia/Hypoplasia involving the central nervous system +7.5944515,MONDO:0000947,http://purl.obolibrary.org/obo/MONDO_0000947,psychosexual disorder +7.5952264,DRUGBANK:DB00514,http://purl.obolibrary.org/obo/DRUGBANK_DB00514,none +7.5981592,MONDO:0020163,http://purl.obolibrary.org/obo/MONDO_0020163,canthal anomaly +7.5982456,SO:0000460,http://purl.obolibrary.org/obo/SO_0000460,vertebrate_immunoglobulin_T_cell_receptor_segment +7.6019674,PR:000015389,http://purl.obolibrary.org/obo/PR_000015389,sterol O-acyltransferase 1 +7.603877,DRUGBANK:DB00758,http://purl.obolibrary.org/obo/DRUGBANK_DB00758,none +7.6039639,MONDO:0000596,http://purl.obolibrary.org/obo/MONDO_0000596,paraphilic disorder +7.6045723,UBERON:0002458,http://purl.obolibrary.org/obo/UBERON_0002458,spinal artery +7.6047462,CL:0000152,http://purl.obolibrary.org/obo/CL_0000152,exocrine cell +7.605355,CL:0000159,http://purl.obolibrary.org/obo/CL_0000159,seromucus secreting cell +7.6062255,DRUGBANK:DB02709,http://purl.obolibrary.org/obo/DRUGBANK_DB02709,none +7.6065739,MONDO:0002847,http://purl.obolibrary.org/obo/MONDO_0002847,skeletal muscle cancer +7.6070967,UBERON:0000366,http://purl.obolibrary.org/obo/UBERON_0000366,flexor muscle +7.6071839,GO:0004177,http://purl.obolibrary.org/obo/GO_0004177,aminopeptidase activity +7.6074454,MONDO:0018898,http://purl.obolibrary.org/obo/MONDO_0018898,primary cutaneous lymphoma +7.6077071,PR:000011406,http://purl.obolibrary.org/obo/PR_000011406,glucocorticoid receptor +7.6078815,PR:000033662,http://purl.obolibrary.org/obo/PR_000033662,none +7.6088415,PR:000008287,http://purl.obolibrary.org/obo/PR_000008287,glycogen synthase kinase-3 alpha +7.6092781,MONDO:0015286,http://purl.obolibrary.org/obo/MONDO_0015286,congenital disorder of glycosylation +7.6099772,MONDO:0008375,http://purl.obolibrary.org/obo/MONDO_0008375,retinal detachment +7.6104144,UBERON:0004810,http://purl.obolibrary.org/obo/UBERON_0004810,nephron tubule epithelium +7.6106767,PR:Q02887,http://purl.obolibrary.org/obo/PR_Q02887,none +7.6107642,GO:0015036,http://purl.obolibrary.org/obo/GO_0015036,disulfide oxidoreductase activity +7.6108517,DRUGBANK:DB00472,http://purl.obolibrary.org/obo/DRUGBANK_DB00472,none +7.6112017,DRUGBANK:DB10544,http://purl.obolibrary.org/obo/DRUGBANK_DB10544,none +7.6114643,CL:0000319,http://purl.obolibrary.org/obo/CL_0000319,mucus secreting cell +7.611727,MONDO:0021057,http://purl.obolibrary.org/obo/MONDO_0021057,classic or attenuated familial adenomatous polyposis +7.611727,PR:000044679,http://purl.obolibrary.org/obo/PR_000044679,connexin protein +7.6119021,MONDO:0009532,http://purl.obolibrary.org/obo/MONDO_0009532,Miller-Dieker lissencephaly syndrome +7.6119021,MONDO:0015146,http://purl.obolibrary.org/obo/MONDO_0015146,classic lissencephaly +7.6120773,MONDO:0021055,http://purl.obolibrary.org/obo/MONDO_0021055,classic familial adenomatous polyposis +7.6127783,UBERON:0004695,http://purl.obolibrary.org/obo/UBERON_0004695,arterial system smooth muscle +7.613129,MONDO:0020122,http://purl.obolibrary.org/obo/MONDO_0020122,acquired idiopathic inflammatory myopathy +7.6133044,MONDO:0005341,http://purl.obolibrary.org/obo/MONDO_0005341,skin basal cell carcinoma +7.6135676,GO:0043491,http://purl.obolibrary.org/obo/GO_0043491,protein kinase B signaling +7.613743,NCBITaxon:2560076,http://purl.obolibrary.org/obo/NCBITaxon_2560076,Orthoparamyxovirinae +7.6141818,MONDO:0000411,http://purl.obolibrary.org/obo/MONDO_0000411,electroclinical syndrome +7.614533,MONDO:0000922,http://purl.obolibrary.org/obo/MONDO_0000922,pelvic inflammatory disease +7.6153236,NCBITaxon:11270,http://purl.obolibrary.org/obo/NCBITaxon_11270,Rhabdoviridae +7.6154115,SO:0001116,http://purl.obolibrary.org/obo/SO_0001116,right_handed_peptide_helix +7.6161149,MONDO:0004247,http://purl.obolibrary.org/obo/MONDO_0004247,peptic ulcer disease +7.6169068,PR:000007034,http://purl.obolibrary.org/obo/PR_000007034,elastin +7.6169948,DRUGBANK:DB00987,http://purl.obolibrary.org/obo/DRUGBANK_DB00987,none +7.6170828,UBERON:0006969,http://purl.obolibrary.org/obo/UBERON_0006969,cranial appendage +7.617435,SO:0000730,http://purl.obolibrary.org/obo/SO_0000730,gap +7.6180517,HP:0000202,http://purl.obolibrary.org/obo/HP_0000202,Oral cleft +7.6183161,PR:000000032,http://purl.obolibrary.org/obo/PR_000000032,transcription factor Sp +7.6183161,PR:000012605,http://purl.obolibrary.org/obo/PR_000012605,placenta growth factor +7.6183161,UBERON:0010365,http://purl.obolibrary.org/obo/UBERON_0010365,odontoid tissue +7.6188451,UBERON:0006967,http://purl.obolibrary.org/obo/UBERON_0006967,horn +7.6191979,MONDO:0000009,http://purl.obolibrary.org/obo/MONDO_0000009,"inherited bleeding disorder, platelet-type" +7.6207872,UBERON:0007685,http://purl.obolibrary.org/obo/UBERON_0007685,region of nephron tubule +7.6211407,MONDO:0024322,http://purl.obolibrary.org/obo/MONDO_0024322,disorder of glycosylation +7.6213175,UBERON:0010498,http://purl.obolibrary.org/obo/UBERON_0010498,pseudostratified columnar epithelium +7.6214059,GO:0019206,http://purl.obolibrary.org/obo/GO_0019206,nucleoside kinase activity +7.6215828,UBERON:0002261,http://purl.obolibrary.org/obo/UBERON_0002261,dorsal root of spinal cord +7.6216712,MONDO:0000386,http://purl.obolibrary.org/obo/MONDO_0000386,"digestive system neuroendocrine tumor, grade 1/2" +7.6218481,PR:000044678,http://purl.obolibrary.org/obo/PR_000044678,chloride channel protein +7.622025,GO:0004970,http://purl.obolibrary.org/obo/GO_0004970,ionotropic glutamate receptor activity +7.622202,PR:000001208,http://purl.obolibrary.org/obo/PR_000001208,C-X-C chemokine receptor type 4 +7.6228216,DRUGBANK:DB00382,http://purl.obolibrary.org/obo/DRUGBANK_DB00382,none +7.6231758,GO:1901652,http://purl.obolibrary.org/obo/GO_1901652,response to peptide +7.6232644,UBERON:0002264,http://purl.obolibrary.org/obo/UBERON_0002264,olfactory bulb +7.6235302,PR:000037070,http://purl.obolibrary.org/obo/PR_000037070,phosphoprotein +7.6243279,MONDO:0002610,http://purl.obolibrary.org/obo/MONDO_0002610,purpura +7.6244166,MONDO:0002519,http://purl.obolibrary.org/obo/MONDO_0002519,anus disease +7.6246827,CHEBI:76932,http://purl.obolibrary.org/obo/CHEBI_76932,pathway inhibitor +7.6248601,DRUGBANK:DB00851,http://purl.obolibrary.org/obo/DRUGBANK_DB00851,none +7.6263696,UBERON:0004277,http://purl.obolibrary.org/obo/UBERON_0004277,eye muscle +7.6266362,UBERON:0000488,http://purl.obolibrary.org/obo/UBERON_0000488,atypical epithelium +7.626814,GO:0019932,http://purl.obolibrary.org/obo/GO_0019932,second-messenger-mediated signaling +7.6272585,GO:0001055,http://purl.obolibrary.org/obo/GO_0001055,RNA polymerase II activity +7.6272585,MONDO:0019852,http://purl.obolibrary.org/obo/MONDO_0019852,inherited primary ovarian failure +7.6274364,MONDO:0015977,http://purl.obolibrary.org/obo/MONDO_0015977,agammaglobulinemia +7.6275254,CL:0000836,http://purl.obolibrary.org/obo/CL_0000836,promyelocyte +7.6275254,GO:0010564,http://purl.obolibrary.org/obo/GO_0010564,regulation of cell cycle process +7.6283263,MONDO:0020123,http://purl.obolibrary.org/obo/MONDO_0020123,metabolic myopathy +7.6300194,MONDO:0043768,http://purl.obolibrary.org/obo/MONDO_0043768,thrombocytopenic purpura +7.6301086,SO:0000318,http://purl.obolibrary.org/obo/SO_0000318,start_codon +7.6307331,DRUGBANK:DB03708,http://purl.obolibrary.org/obo/DRUGBANK_DB03708,none +7.631358,MONDO:0020591,http://purl.obolibrary.org/obo/MONDO_0020591,disease of peritoneum +7.6317153,PR:000005855,http://purl.obolibrary.org/obo/PR_000005855,cyclic AMP-responsive element-binding protein 3 +7.6327878,GO:0003012,http://purl.obolibrary.org/obo/GO_0003012,muscle system process +7.6332351,DRUGBANK:DB09419,http://purl.obolibrary.org/obo/DRUGBANK_DB09419,none +7.6335035,MONDO:0017034,http://purl.obolibrary.org/obo/MONDO_0017034,secondary interstitial lung disease in childhood and adulthood +7.6335035,UBERON:4000013,http://purl.obolibrary.org/obo/UBERON_4000013,mineralized skeletal tissue +7.6337721,GO:0006457,http://purl.obolibrary.org/obo/GO_0006457,protein folding +7.6339511,DRUGBANK:DB00196,http://purl.obolibrary.org/obo/DRUGBANK_DB00196,none +7.6339511,MONDO:0017656,http://purl.obolibrary.org/obo/MONDO_0017656,motor stereotypies +7.6347572,CL:0000177,http://purl.obolibrary.org/obo/CL_0000177,testosterone secreting cell +7.6350261,MONDO:0003757,http://purl.obolibrary.org/obo/MONDO_0003757,paraplegia +7.6351157,MONDO:0016401,http://purl.obolibrary.org/obo/MONDO_0016401,energy metabolism disorder with epilepsy +7.635564,DRUGBANK:DB11330,http://purl.obolibrary.org/obo/DRUGBANK_DB11330,none +7.6361022,GO:0006936,http://purl.obolibrary.org/obo/GO_0006936,muscle contraction +7.6362817,GO:0009975,http://purl.obolibrary.org/obo/GO_0009975,cyclase activity +7.6362817,UBERON:0010499,http://purl.obolibrary.org/obo/UBERON_0010499,pseudostratified ciliated columnar epithelium +7.6363714,MONDO:0021146,http://purl.obolibrary.org/obo/MONDO_0021146,headache disorder +7.6364612,UBERON:0001813,http://purl.obolibrary.org/obo/UBERON_0001813,spinal nerve plexus +7.6366407,DRUGBANK:DB00065,http://purl.obolibrary.org/obo/DRUGBANK_DB00065,none +7.6366407,PR:000005860,http://purl.obolibrary.org/obo/PR_000005860,cyclic AMP-responsive element-binding protein 5 +7.6371795,MONDO:0037254,http://purl.obolibrary.org/obo/MONDO_0037254,transitional cell neoplasm +7.6371795,PR:000005859,http://purl.obolibrary.org/obo/PR_000005859,cyclic AMP-responsive element-binding protein 3-like protein 4 +7.6372693,PR:Q96518,http://purl.obolibrary.org/obo/PR_Q96518,none +7.637449,DRUGBANK:DB04272,http://purl.obolibrary.org/obo/DRUGBANK_DB04272,none +7.6381681,GO:0010851,http://purl.obolibrary.org/obo/GO_0010851,cyclase regulator activity +7.6384378,HP:0004308,http://purl.obolibrary.org/obo/HP_0004308,Ventricular arrhythmia +7.6390676,PR:000029067,http://purl.obolibrary.org/obo/PR_000029067,Homo sapiens protein +7.6398778,GO:0045055,http://purl.obolibrary.org/obo/GO_0045055,regulated exocytosis +7.640058,NCBITaxon:11308,http://purl.obolibrary.org/obo/NCBITaxon_11308,Orthomyxoviridae +7.6401481,NCBITaxon:2497577,http://purl.obolibrary.org/obo/NCBITaxon_2497577,Insthoviricetes +7.6401481,NCBITaxon:2499411,http://purl.obolibrary.org/obo/NCBITaxon_2499411,Articulavirales +7.6402382,MONDO:0001220,http://purl.obolibrary.org/obo/MONDO_0001220,hypoparathyroidism +7.6402382,MONDO:0021583,http://purl.obolibrary.org/obo/MONDO_0021583,melanocytic skin neoplasm +7.6405986,DRUGBANK:DB00390,http://purl.obolibrary.org/obo/DRUGBANK_DB00390,none +7.6405986,UBERON:0007329,http://purl.obolibrary.org/obo/UBERON_0007329,pancreatic duct +7.6412297,UBERON:0001678,http://purl.obolibrary.org/obo/UBERON_0001678,temporal bone +7.6415003,HP:0011843,http://purl.obolibrary.org/obo/HP_0011843,Abnormality of musculoskeletal physiology +7.6432158,CL:0002625,http://purl.obolibrary.org/obo/CL_0002625,seminiferous tubule epithelial cell +7.6433966,SO:0000319,http://purl.obolibrary.org/obo/SO_0000319,stop_codon +7.6435774,NCBITaxon:12058,http://purl.obolibrary.org/obo/NCBITaxon_12058,Picornaviridae +7.6441199,HP:0011015,http://purl.obolibrary.org/obo/HP_0011015,Abnormal blood glucose concentration +7.6441199,MONDO:0000992,http://purl.obolibrary.org/obo/MONDO_0000992,heart conduction disease +7.6455681,DRUGBANK:DB00936,http://purl.obolibrary.org/obo/DRUGBANK_DB00936,none +7.6462024,MONDO:0043494,http://purl.obolibrary.org/obo/MONDO_0043494,arteritis +7.6464744,GO:0005031,http://purl.obolibrary.org/obo/GO_0005031,tumor necrosis factor-activated receptor activity +7.6466557,PR:F4KFT7,http://purl.obolibrary.org/obo/PR_F4KFT7,none +7.6470185,GO:0005976,http://purl.obolibrary.org/obo/GO_0005976,polysaccharide metabolic process +7.6474721,DRUGBANK:DB01296,http://purl.obolibrary.org/obo/DRUGBANK_DB01296,none +7.6475629,GO:0008554,http://purl.obolibrary.org/obo/GO_0008554,P-type sodium transporter activity +7.647926,GO:0005391,http://purl.obolibrary.org/obo/GO_0005391,P-type sodium:potassium-exchanging transporter activity +7.6483801,GO:0047134,http://purl.obolibrary.org/obo/GO_0047134,protein-disulfide reductase (NAD(P)) activity +7.6490161,UBERON:0004808,http://purl.obolibrary.org/obo/UBERON_0004808,gastrointestinal system epithelium +7.649107,PR:000016283,http://purl.obolibrary.org/obo/PR_000016283,thyroglobulin +7.6491979,DRUGBANK:DB00363,http://purl.obolibrary.org/obo/DRUGBANK_DB00363,none +7.6492888,MONDO:0020799,http://purl.obolibrary.org/obo/MONDO_0020799,basal cell neoplasm +7.6492888,MONDO:0020804,http://purl.obolibrary.org/obo/MONDO_0020804,basal cell carcinoma +7.6500164,GO:0035033,http://purl.obolibrary.org/obo/GO_0035033,histone deacetylase regulator activity +7.6501984,DRUGBANK:DB01197,http://purl.obolibrary.org/obo/DRUGBANK_DB01197,none +7.6501984,GO:0015035,http://purl.obolibrary.org/obo/GO_0015035,protein-disulfide reductase activity +7.6506535,MONDO:0001650,http://purl.obolibrary.org/obo/MONDO_0001650,acute cystitis +7.6515644,CHEBI:61115,http://purl.obolibrary.org/obo/CHEBI_61115,EC 3.5.1.98 (histone deacetylase) inhibitor +7.6516555,CHEBI:76764,http://purl.obolibrary.org/obo/CHEBI_76764,EC 3.5.* (hydrolases acting on non-peptide C-N bonds) inhibitor +7.6516555,CHEBI:76807,http://purl.obolibrary.org/obo/CHEBI_76807,EC 3.5.1.* (non-peptide linear amide C-N hydrolase) inhibitor +7.6518378,MONDO:0003406,http://purl.obolibrary.org/obo/MONDO_0003406,sleep-wake disorder +7.6520201,HP:0003808,http://purl.obolibrary.org/obo/HP_0003808,Abnormal muscle tone +7.652476,GO:0046811,http://purl.obolibrary.org/obo/GO_0046811,histone deacetylase inhibitor activity +7.6528409,MONDO:0019708,http://purl.obolibrary.org/obo/MONDO_0019708,primary bone dysplasia with disorganized development of skeletal components +7.6529322,CL:0000216,http://purl.obolibrary.org/obo/CL_0000216,Sertoli cell +7.6529322,CL:0000511,http://purl.obolibrary.org/obo/CL_0000511,androgen binding protein secreting cell +7.6542105,DRUGBANK:DB14141,http://purl.obolibrary.org/obo/DRUGBANK_DB14141,none +7.654576,SO:0001438,http://purl.obolibrary.org/obo/SO_0001438,isoleucine +7.6549417,GO:0016888,http://purl.obolibrary.org/obo/GO_0016888,"endodeoxyribonuclease activity, producing 5'-phosphomonoesters" +7.655216,DRUGBANK:DB07950,http://purl.obolibrary.org/obo/DRUGBANK_DB07950,none +7.6558564,GO:0019748,http://purl.obolibrary.org/obo/GO_0019748,secondary metabolic process +7.6563141,GO:0006633,http://purl.obolibrary.org/obo/GO_0006633,fatty acid biosynthetic process +7.6563141,UBERON:0001277,http://purl.obolibrary.org/obo/UBERON_0001277,intestinal epithelium +7.6565888,UBERON:0001482,http://purl.obolibrary.org/obo/UBERON_0001482,muscle of shoulder +7.6590646,GO:0030695,http://purl.obolibrary.org/obo/GO_0030695,GTPase regulator activity +7.6595238,GO:0070382,http://purl.obolibrary.org/obo/GO_0070382,exocytic vesicle +7.6595238,MONDO:0600023,http://purl.obolibrary.org/obo/MONDO_0600023,idiopathic inflammatory myopathy +7.6598913,GO:0006790,http://purl.obolibrary.org/obo/GO_0006790,sulfur compound metabolic process +7.6604427,PR:000022329,http://purl.obolibrary.org/obo/PR_000022329,none +7.6612705,MONDO:0002730,http://purl.obolibrary.org/obo/MONDO_0002730,childhood kidney neoplasm +7.6613625,UBERON:0003662,http://purl.obolibrary.org/obo/UBERON_0003662,forelimb muscle +7.662099,GO:0015037,http://purl.obolibrary.org/obo/GO_0015037,none +7.662099,GO:0015038,http://purl.obolibrary.org/obo/GO_0015038,glutathione disulfide oxidoreductase activity +7.6624674,DRUGBANK:DB11014,http://purl.obolibrary.org/obo/DRUGBANK_DB11014,none +7.6631125,DRUGBANK:DB00141,http://purl.obolibrary.org/obo/DRUGBANK_DB00141,none +7.6631125,MONDO:0010108,http://purl.obolibrary.org/obo/MONDO_0010108,testicular germ cell tumor +7.6631125,PR:000014841,http://purl.obolibrary.org/obo/PR_000014841,sonic hedgehog protein +7.6637579,SO:0000650,http://purl.obolibrary.org/obo/SO_0000650,cytosolic_SSU_rRNA +7.6638502,MONDO:0003085,http://purl.obolibrary.org/obo/MONDO_0003085,keratitis +7.6638502,MONDO:0016064,http://purl.obolibrary.org/obo/MONDO_0016064,cleft palate +7.664127,CHEBI:48578,http://purl.obolibrary.org/obo/CHEBI_48578,radical scavenger +7.6644962,MONDO:0001504,http://purl.obolibrary.org/obo/MONDO_0001504,fetishism +7.6645885,MONDO:0001162,http://purl.obolibrary.org/obo/MONDO_0001162,impulse control disorder +7.6645885,SO:0001030,http://purl.obolibrary.org/obo/SO_0001030,forward +7.6648655,UBERON:0009662,http://purl.obolibrary.org/obo/UBERON_0009662,hindbrain nucleus +7.6651425,MONDO:0006116,http://purl.obolibrary.org/obo/MONDO_0006116,breast carcinoma by gene expression profile +7.6651425,UBERON:0014794,http://purl.obolibrary.org/obo/UBERON_0014794,pectoral appendage muscle +7.6653273,GO:0042113,http://purl.obolibrary.org/obo/GO_0042113,B cell activation +7.6662516,CHEBI:5118,http://purl.obolibrary.org/obo/CHEBI_5118,fluoxetine +7.6670842,GO:0009416,http://purl.obolibrary.org/obo/GO_0009416,response to light stimulus +7.6674545,GO:0016675,http://purl.obolibrary.org/obo/GO_0016675,"oxidoreductase activity, acting on a heme group of donors" +7.6681954,GO:0015002,http://purl.obolibrary.org/obo/GO_0015002,none +7.6683807,GO:0004129,http://purl.obolibrary.org/obo/GO_0004129,cytochrome-c oxidase activity +7.6683807,GO:0016676,http://purl.obolibrary.org/obo/GO_0016676,none +7.6685661,GO:0022835,http://purl.obolibrary.org/obo/GO_0022835,transmitter-gated channel activity +7.669679,UBERON:0003881,http://purl.obolibrary.org/obo/UBERON_0003881,CA1 field of hippocampus +7.6698646,DRUGBANK:DB14472,http://purl.obolibrary.org/obo/DRUGBANK_DB14472,none +7.6699574,DRUGBANK:DB11639,http://purl.obolibrary.org/obo/DRUGBANK_DB11639,none +7.670143,HP:0100606,http://purl.obolibrary.org/obo/HP_0100606,Neoplasm of the respiratory system +7.6705144,GO:0005230,http://purl.obolibrary.org/obo/GO_0005230,extracellular ligand-gated ion channel activity +7.6707931,GO:0044712,http://purl.obolibrary.org/obo/GO_0044712,none +7.6707931,HP:0100526,http://purl.obolibrary.org/obo/HP_0100526,Neoplasm of the lung +7.6710718,PR:000005110,http://purl.obolibrary.org/obo/PR_000005110,cholecystokinin +7.6713506,GO:0022824,http://purl.obolibrary.org/obo/GO_0022824,transmitter-gated ion channel activity +7.6715365,MONDO:0004842,http://purl.obolibrary.org/obo/MONDO_0004842,stomatitis +7.6715365,PR:000005867,http://purl.obolibrary.org/obo/PR_000005867,corticoliberin +7.6716295,MONDO:0015132,http://purl.obolibrary.org/obo/MONDO_0015132,immunodeficiency predominantly affecting antibody production +7.6724665,GO:0051937,http://purl.obolibrary.org/obo/GO_0051937,catecholamine transport +7.6727457,DRUGBANK:DB01584,http://purl.obolibrary.org/obo/DRUGBANK_DB01584,none +7.6729319,UBERON:0010199,http://purl.obolibrary.org/obo/UBERON_0010199,bona-fide anatomical boundary +7.6734906,PR:000012910,http://purl.obolibrary.org/obo/PR_000012910,peripheral myelin protein 22 +7.6771299,DRUGBANK:DB01577,http://purl.obolibrary.org/obo/DRUGBANK_DB01577,none +7.6777845,GO:0043434,http://purl.obolibrary.org/obo/GO_0043434,response to peptide hormone +7.677878,MONDO:0004658,http://purl.obolibrary.org/obo/MONDO_0004658,breast carcinoma in situ +7.6780651,DRUGBANK:DB00206,http://purl.obolibrary.org/obo/DRUGBANK_DB00206,none +7.6780651,GO:0004362,http://purl.obolibrary.org/obo/GO_0004362,glutathione-disulfide reductase (NADPH) activity +7.679095,MONDO:0010679,http://purl.obolibrary.org/obo/MONDO_0010679,Duchenne muscular dystrophy +7.6803134,GO:0008021,http://purl.obolibrary.org/obo/GO_0008021,synaptic vesicle +7.6804072,GO:0030098,http://purl.obolibrary.org/obo/GO_0030098,lymphocyte differentiation +7.6815333,MONDO:0056803,http://purl.obolibrary.org/obo/MONDO_0056803,sulfur metabolism disease +7.681815,HP:0000929,http://purl.obolibrary.org/obo/HP_0000929,Abnormal skull morphology +7.6825667,CHEBI:22587,http://purl.obolibrary.org/obo/CHEBI_22587,antiviral agent +7.6836953,HP:0032263,http://purl.obolibrary.org/obo/HP_0032263,Increased blood pressure +7.6836953,MONDO:0018384,http://purl.obolibrary.org/obo/MONDO_0018384,avascular necrosis of genetic origin +7.6836953,SO:0001117,http://purl.obolibrary.org/obo/SO_0001117,alpha_helix +7.6837894,MONDO:0024337,http://purl.obolibrary.org/obo/MONDO_0024337,urothelial neoplasm +7.6837894,SO:0001217,http://purl.obolibrary.org/obo/SO_0001217,protein_coding_gene +7.6838835,HP:0031703,http://purl.obolibrary.org/obo/HP_0031703,Abnormal ear morphology +7.6839776,GO:0003950,http://purl.obolibrary.org/obo/GO_0003950,NAD+ ADP-ribosyltransferase activity +7.6845425,GO:1990523,http://purl.obolibrary.org/obo/GO_1990523,bone regeneration +7.6860505,DRUGBANK:DB00586,http://purl.obolibrary.org/obo/DRUGBANK_DB00586,none +7.6870886,NCBITaxon:10242,http://purl.obolibrary.org/obo/NCBITaxon_10242,Orthopoxvirus +7.6873719,GO:0071754,http://purl.obolibrary.org/obo/GO_0071754,"IgM immunoglobulin complex, circulating" +7.6874664,GO:0071753,http://purl.obolibrary.org/obo/GO_0071753,IgM immunoglobulin complex +7.6875608,MONDO:0042485,http://purl.obolibrary.org/obo/MONDO_0042485,infective arthritis +7.6876553,MONDO:0005451,http://purl.obolibrary.org/obo/MONDO_0005451,eating disorder +7.6876553,MONDO:0019297,http://purl.obolibrary.org/obo/MONDO_0019297,lymphedema +7.6877498,DRUGBANK:DB15540,http://purl.obolibrary.org/obo/DRUGBANK_DB15540,none +7.6877498,PR:000001843,http://purl.obolibrary.org/obo/PR_000001843,Thy-1 membrane glycoprotein +7.6880333,HP:0004322,http://purl.obolibrary.org/obo/HP_0004322,Short stature +7.6882223,CL:0000212,http://purl.obolibrary.org/obo/CL_0000212,absorptive cell +7.6882223,GO:0004530,http://purl.obolibrary.org/obo/GO_0004530,deoxyribonuclease I activity +7.6882223,PR:000006592,http://purl.obolibrary.org/obo/PR_000006592,deoxyribonuclease-1 +7.6883168,MONDO:0005701,http://purl.obolibrary.org/obo/MONDO_0005701,chlamydia trachomatis infectious disease +7.6884114,MONDO:0021038,http://purl.obolibrary.org/obo/MONDO_0021038,Ewing sarcoma/peripheral primitive neuroectodermal tumor +7.6888842,DRUGBANK:DB00169,http://purl.obolibrary.org/obo/DRUGBANK_DB00169,none +7.6893573,GO:0005021,http://purl.obolibrary.org/obo/GO_0005021,vascular endothelial growth factor-activated receptor activity +7.6901146,CL:0000161,http://purl.obolibrary.org/obo/CL_0000161,acid secreting cell +7.690304,MONDO:0004664,http://purl.obolibrary.org/obo/MONDO_0004664,helminthiasis +7.6908725,GO:0016997,http://purl.obolibrary.org/obo/GO_0016997,alpha-sialidase activity +7.6908725,PR:000028269,http://purl.obolibrary.org/obo/PR_000028269,none +7.6909673,NCBITaxon:2842407,http://purl.obolibrary.org/obo/NCBITaxon_2842407,Alpharhabdovirinae +7.6915362,MONDO:0044878,http://purl.obolibrary.org/obo/MONDO_0044878,adult germ cell tumor +7.6916311,MONDO:0017181,http://purl.obolibrary.org/obo/MONDO_0017181,hypnic headache +7.6918208,UBERON:0000180,http://purl.obolibrary.org/obo/UBERON_0000180,lateral lumbar region of abdomen +7.6924851,DRUGBANK:DB09142,http://purl.obolibrary.org/obo/DRUGBANK_DB09142,none +7.6929598,GO:0004911,http://purl.obolibrary.org/obo/GO_0004911,interleukin-2 receptor activity +7.6929598,UBERON:0011648,http://purl.obolibrary.org/obo/UBERON_0011648,jaw muscle +7.6931498,GO:1901987,http://purl.obolibrary.org/obo/GO_1901987,regulation of cell cycle phase transition +7.6936249,PR:000001307,http://purl.obolibrary.org/obo/PR_000001307,CD44 molecule +7.6937199,UBERON:0002323,http://purl.obolibrary.org/obo/UBERON_0002323,coelemic cavity lumen +7.6941002,NCBITaxon:3702,http://purl.obolibrary.org/obo/NCBITaxon_3702,none +7.6944806,SO:0000153,http://purl.obolibrary.org/obo/SO_0000153,BAC +7.6953371,GO:0000279,http://purl.obolibrary.org/obo/GO_0000279,M phase +7.6953371,UBERON:0001625,http://purl.obolibrary.org/obo/UBERON_0001625,right coronary artery +7.6957179,MONDO:0021639,http://purl.obolibrary.org/obo/MONDO_0021639,grade II glioma +7.6963848,GO:0030182,http://purl.obolibrary.org/obo/GO_0030182,neuron differentiation +7.6968614,GO:0061024,http://purl.obolibrary.org/obo/GO_0061024,membrane organization +7.6970522,SO:0001589,http://purl.obolibrary.org/obo/SO_0001589,frameshift_variant +7.6978154,PR:000001370,http://purl.obolibrary.org/obo/PR_000001370,interleukin-13 +7.6983882,MONDO:0005347,http://purl.obolibrary.org/obo/MONDO_0005347,hypertriglyceridemia +7.6985792,GO:0006898,http://purl.obolibrary.org/obo/GO_0006898,receptor-mediated endocytosis +7.6987702,CL:0000178,http://purl.obolibrary.org/obo/CL_0000178,Leydig cell +7.6989613,GO:0005615,http://purl.obolibrary.org/obo/GO_0005615,extracellular space +7.6989613,GO:0032879,http://purl.obolibrary.org/obo/GO_0032879,regulation of localization +7.6993435,MONDO:0002807,http://purl.obolibrary.org/obo/MONDO_0002807,bronchial neoplasm +7.6994391,PR:000015561,http://purl.obolibrary.org/obo/PR_000015561,osteopontin +7.6996303,MONDO:0036511,http://purl.obolibrary.org/obo/MONDO_0036511,childhood malignant kidney neoplasm +7.7000129,GO:0004308,http://purl.obolibrary.org/obo/GO_0004308,exo-alpha-sialidase activity +7.7000129,MONDO:0013730,http://purl.obolibrary.org/obo/MONDO_0013730,graft versus host disease +7.7003955,PR:000001550,http://purl.obolibrary.org/obo/PR_000001550,proteinase-activated receptor +7.7007783,UBERON:0001535,http://purl.obolibrary.org/obo/UBERON_0001535,vertebral artery +7.7009698,CHEBI:37962,http://purl.obolibrary.org/obo/CHEBI_37962,adrenergic agent +7.7009698,SO:0000700,http://purl.obolibrary.org/obo/SO_0000700,remark +7.7012571,UBERON:0019263,http://purl.obolibrary.org/obo/UBERON_0019263,gray matter of hindbrain +7.7025987,MONDO:0020776,http://purl.obolibrary.org/obo/MONDO_0020776,chlamydiaceae infections +7.7026946,MONDO:0003057,http://purl.obolibrary.org/obo/MONDO_0003057,pediatric meningioma +7.7026946,MONDO:0021697,http://purl.obolibrary.org/obo/MONDO_0021697,chlamydia infectious disease +7.7037501,GO:0000806,http://purl.obolibrary.org/obo/GO_0000806,Y chromosome +7.7041342,MONDO:0005075,http://purl.obolibrary.org/obo/MONDO_0005075,thyroid gland papillary carcinoma +7.7046145,CHEBI:38323,http://purl.obolibrary.org/obo/CHEBI_38323,cholinergic drug +7.7046145,MONDO:0005034,http://purl.obolibrary.org/obo/MONDO_0005034,thyroid gland follicular carcinoma +7.7054797,UBERON:0002342,http://purl.obolibrary.org/obo/UBERON_0002342,neural crest +7.7057683,UBERON:0004638,http://purl.obolibrary.org/obo/UBERON_0004638,blood vessel endothelium +7.7075014,PR:000001153,http://purl.obolibrary.org/obo/PR_000001153,Toll-like receptor 2 +7.7075977,MONDO:0005191,http://purl.obolibrary.org/obo/MONDO_0005191,metastatic melanoma +7.7078869,NCBITaxon:10319,http://purl.obolibrary.org/obo/NCBITaxon_10319,Varicellovirus +7.708562,DRUGBANK:DB13424,http://purl.obolibrary.org/obo/DRUGBANK_DB13424,none +7.7099135,DRUGBANK:DB09155,http://purl.obolibrary.org/obo/DRUGBANK_DB09155,none +7.7102999,UBERON:0003681,http://purl.obolibrary.org/obo/UBERON_0003681,masticatory muscle +7.7105899,MONDO:0000940,http://purl.obolibrary.org/obo/MONDO_0000940,trypanosomiasis +7.7112668,HP:0001276,http://purl.obolibrary.org/obo/HP_0001276,Hypertonia +7.7116538,DRUGBANK:DB00501,http://purl.obolibrary.org/obo/DRUGBANK_DB00501,none +7.7116538,MONDO:0005308,http://purl.obolibrary.org/obo/MONDO_0005308,ciliopathy +7.7123314,MONDO:0001444,http://purl.obolibrary.org/obo/MONDO_0001444,Chagas disease +7.7124282,PR:000008027,http://purl.obolibrary.org/obo/PR_000008027,zinc finger protein GLI2 +7.7126219,CHEBI:17654,http://purl.obolibrary.org/obo/CHEBI_17654,electron acceptor +7.7127188,UBERON:0003338,http://purl.obolibrary.org/obo/UBERON_0003338,ganglion of peripheral nervous system +7.713591,MONDO:0015898,http://purl.obolibrary.org/obo/MONDO_0015898,adrenogenital syndrome +7.7142699,GO:0005096,http://purl.obolibrary.org/obo/GO_0005096,GTPase activator activity +7.7149493,DRUGBANK:DB01053,http://purl.obolibrary.org/obo/DRUGBANK_DB01053,none +7.7151435,DRUGBANK:DB00457,http://purl.obolibrary.org/obo/DRUGBANK_DB00457,none +7.7157263,DRUGBANK:DB01645,http://purl.obolibrary.org/obo/DRUGBANK_DB01645,none +7.7158235,NCBITaxon:2133750,http://purl.obolibrary.org/obo/NCBITaxon_2133750,none +7.716115,DRUGBANK:DB11298,http://purl.obolibrary.org/obo/DRUGBANK_DB11298,none +7.716115,UBERON:0001558,http://purl.obolibrary.org/obo/UBERON_0001558,lower respiratory tract +7.7166011,GO:0008188,http://purl.obolibrary.org/obo/GO_0008188,neuropeptide receptor activity +7.7167957,MONDO:0003061,http://purl.obolibrary.org/obo/MONDO_0003061,benign muscle neoplasm +7.7167957,MONDO:0018202,http://purl.obolibrary.org/obo/MONDO_0018202,gonadal germ cell tumor +7.7168929,DRUGBANK:DB13198,http://purl.obolibrary.org/obo/DRUGBANK_DB13198,none +7.7183531,GO:0060187,http://purl.obolibrary.org/obo/GO_0060187,cell pole +7.7184506,MONDO:0001854,http://purl.obolibrary.org/obo/MONDO_0001854,lacrimal apparatus disease +7.7188404,MONDO:0015978,http://purl.obolibrary.org/obo/MONDO_0015978,functional neutrophil defect +7.7193278,PR:000000133,http://purl.obolibrary.org/obo/PR_000000133,transcription factor Sp1 +7.7195228,MONDO:0005003,http://purl.obolibrary.org/obo/MONDO_0005003,chronic pancreatitis +7.7197179,PR:Q24151,http://purl.obolibrary.org/obo/PR_Q24151,none +7.7198155,DRUGBANK:DB11659,http://purl.obolibrary.org/obo/DRUGBANK_DB11659,none +7.7202058,HP:0000174,http://purl.obolibrary.org/obo/HP_0000174,Abnormal palate morphology +7.720401,NCBITaxon:352162,http://purl.obolibrary.org/obo/NCBITaxon_352162,none +7.7206939,NCBITaxon:12814,http://purl.obolibrary.org/obo/NCBITaxon_12814,Respiratory syncytial virus +7.7207916,CHEBI:76720,http://purl.obolibrary.org/obo/CHEBI_76720,antisense oligonucleotide +7.7211823,MONDO:0005917,http://purl.obolibrary.org/obo/MONDO_0005917,placenta disease +7.7221597,UBERON:0002285,http://purl.obolibrary.org/obo/UBERON_0002285,telencephalic ventricle +7.7224531,GO:0004908,http://purl.obolibrary.org/obo/GO_0004908,interleukin-1 receptor activity +7.7225509,DRUGBANK:DB00495,http://purl.obolibrary.org/obo/DRUGBANK_DB00495,none +7.7234318,GO:0043230,http://purl.obolibrary.org/obo/GO_0043230,extracellular organelle +7.7235297,GO:0005929,http://purl.obolibrary.org/obo/GO_0005929,cilium +7.7243134,MONDO:0006668,http://purl.obolibrary.org/obo/MONDO_0006668,bacterial conjunctivitis +7.7246074,HP:0000822,http://purl.obolibrary.org/obo/HP_0000822,Hypertension +7.7249016,UBERON:0003821,http://purl.obolibrary.org/obo/UBERON_0003821,metapodium bone +7.7249996,GO:0022832,http://purl.obolibrary.org/obo/GO_0022832,voltage-gated channel activity +7.726079,GO:0051169,http://purl.obolibrary.org/obo/GO_0051169,nuclear transport +7.726079,MONDO:0009637,http://purl.obolibrary.org/obo/MONDO_0009637,inborn mitochondrial myopathy +7.7270612,MONDO:0002412,http://purl.obolibrary.org/obo/MONDO_0002412,glycogen storage disease +7.7270612,MONDO:0017754,http://purl.obolibrary.org/obo/MONDO_0017754,inborn disorder of porphyrin metabolism +7.7271595,MONDO:0005277,http://purl.obolibrary.org/obo/MONDO_0005277,migraine disorder +7.727356,MONDO:0002546,http://purl.obolibrary.org/obo/MONDO_0002546,schwannoma +7.7275527,PR:000008534,http://purl.obolibrary.org/obo/PR_000008534,hepatocyte growth factor +7.7278477,PR:000001810,http://purl.obolibrary.org/obo/PR_000001810,CSF-1/PDGF receptor-type tyrosine-protein kinase +7.7281427,DRUGBANK:DB06973,http://purl.obolibrary.org/obo/DRUGBANK_DB06973,none +7.7283395,GO:0016849,http://purl.obolibrary.org/obo/GO_0016849,phosphorus-oxygen lyase activity +7.7286347,GO:0004420,http://purl.obolibrary.org/obo/GO_0004420,hydroxymethylglutaryl-CoA reductase (NADPH) activity +7.7286347,GO:0042282,http://purl.obolibrary.org/obo/GO_0042282,none +7.7286347,PR:000008636,http://purl.obolibrary.org/obo/PR_000008636,3-hydroxy-3-methylglutaryl-coenzyme A reductase +7.729521,GO:0030258,http://purl.obolibrary.org/obo/GO_0030258,lipid modification +7.7307038,GO:0016814,http://purl.obolibrary.org/obo/GO_0016814,"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amidines" +7.7310984,DRUGBANK:DB14745,http://purl.obolibrary.org/obo/DRUGBANK_DB14745,none +7.7311971,GO:1990204,http://purl.obolibrary.org/obo/GO_1990204,oxidoreductase complex +7.7313945,MONDO:0019278,http://purl.obolibrary.org/obo/MONDO_0019278,hair anomaly +7.7317893,GO:0016714,http://purl.obolibrary.org/obo/GO_0016714,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced pteridine as one donor, and incorporation of one atom of oxygen" +7.7326783,MONDO:0016403,http://purl.obolibrary.org/obo/MONDO_0016403,mitochondrial disease with peripheral neuropathy +7.733766,HP:0100737,http://purl.obolibrary.org/obo/HP_0100737,Abnormal hard palate morphology +7.7338649,HP:0000175,http://purl.obolibrary.org/obo/HP_0000175,Cleft palate +7.7341618,GO:0004691,http://purl.obolibrary.org/obo/GO_0004691,cAMP-dependent protein kinase activity +7.7346568,DRUGBANK:DB00114,http://purl.obolibrary.org/obo/DRUGBANK_DB00114,none +7.7358457,DRUGBANK:DB13949,http://purl.obolibrary.org/obo/DRUGBANK_DB13949,none +7.7359449,GO:0051640,http://purl.obolibrary.org/obo/GO_0051640,organelle localization +7.7359449,MONDO:0002009,http://purl.obolibrary.org/obo/MONDO_0002009,major depressive disorder +7.7366391,MONDO:0020072,http://purl.obolibrary.org/obo/MONDO_0020072,childhood-onset epilepsy syndrome +7.7367384,GO:0044264,http://purl.obolibrary.org/obo/GO_0044264,cellular polysaccharide metabolic process +7.7372346,MONDO:0003218,http://purl.obolibrary.org/obo/MONDO_0003218,adenocarcinoma in situ +7.7373339,DRUGBANK:DB00140,http://purl.obolibrary.org/obo/DRUGBANK_DB00140,none +7.7386254,SO:0000699,http://purl.obolibrary.org/obo/SO_0000699,junction +7.7392221,DRUGBANK:DB12028,http://purl.obolibrary.org/obo/DRUGBANK_DB12028,none +7.7394211,GO:0005921,http://purl.obolibrary.org/obo/GO_0005921,gap junction +7.7398191,MONDO:0001104,http://purl.obolibrary.org/obo/MONDO_0001104,toxic diffuse goiter +7.7403169,PR:000022829,http://purl.obolibrary.org/obo/PR_000022829,none +7.7406157,MONDO:0024474,http://purl.obolibrary.org/obo/MONDO_0024474,intraepithelial neoplasia +7.7409146,GO:0046527,http://purl.obolibrary.org/obo/GO_0046527,glucosyltransferase activity +7.7411139,PR:P03882,http://purl.obolibrary.org/obo/PR_P03882,none +7.7414129,MONDO:0005815,http://purl.obolibrary.org/obo/MONDO_0005815,pancreatic neuroendocrine neoplasm +7.7418117,DRUGBANK:DB02579,http://purl.obolibrary.org/obo/DRUGBANK_DB02579,none +7.7420112,MONDO:0005364,http://purl.obolibrary.org/obo/MONDO_0005364,Graves disease +7.7420112,UBERON:0003833,http://purl.obolibrary.org/obo/UBERON_0003833,abdominal segment muscle +7.7423105,MONDO:0015216,http://purl.obolibrary.org/obo/MONDO_0015216,syndromic diaphragmatic or abdominal wall malformation +7.7434087,CHEBI:33608,http://purl.obolibrary.org/obo/CHEBI_33608,hydrogen molecular entity +7.7448081,GO:1903293,http://purl.obolibrary.org/obo/GO_1903293,phosphatase complex +7.7449082,PR:000008974,http://purl.obolibrary.org/obo/PR_000008974,Indian hedgehog protein +7.7455086,GO:0048732,http://purl.obolibrary.org/obo/GO_0048732,gland development +7.7459091,MONDO:0017814,http://purl.obolibrary.org/obo/MONDO_0017814,primary bone lymphoma +7.7489178,MONDO:0005012,http://purl.obolibrary.org/obo/MONDO_0005012,cutaneous melanoma +7.7491187,MONDO:0040679,http://purl.obolibrary.org/obo/MONDO_0040679,urothelial carcinoma +7.7494201,GO:0005794,http://purl.obolibrary.org/obo/GO_0005794,Golgi apparatus +7.750325,DRUGBANK:DB12111,http://purl.obolibrary.org/obo/DRUGBANK_DB12111,none +7.7505262,MONDO:0005132,http://purl.obolibrary.org/obo/MONDO_0005132,cytomegalovirus infection +7.7505262,PR:000000066,http://purl.obolibrary.org/obo/PR_000000066,TGF-beta receptor-regulated smad protein +7.7507274,UBERON:0018544,http://purl.obolibrary.org/obo/UBERON_0018544,trigeminal nerve muscle +7.750828,UBERON:0003516,http://purl.obolibrary.org/obo/UBERON_0003516,hindlimb blood vessel +7.7513313,PR:000013150,http://purl.obolibrary.org/obo/PR_000013150,calcineurin subunit B type 1 +7.7516334,PR:000013151,http://purl.obolibrary.org/obo/PR_000013151,calcineurin subunit B type 2 +7.7521371,PR:000003278,http://purl.obolibrary.org/obo/PR_000003278,serine/threonine-protein phosphatase 2B catalytic subunit alpha isoform +7.7522379,MONDO:0005790,http://purl.obolibrary.org/obo/MONDO_0005790,hepatitis A virus infection +7.7534479,DRUGBANK:DB00165,http://purl.obolibrary.org/obo/DRUGBANK_DB00165,none +7.7534479,DRUGBANK:DB04899,http://purl.obolibrary.org/obo/DRUGBANK_DB04899,none +7.7535488,UBERON:0000311,http://purl.obolibrary.org/obo/UBERON_0000311,extensor muscle +7.7539526,CL:0000080,http://purl.obolibrary.org/obo/CL_0000080,circulating cell +7.7551647,GO:0008287,http://purl.obolibrary.org/obo/GO_0008287,protein serine/threonine phosphatase complex +7.7554679,PR:000013148,http://purl.obolibrary.org/obo/PR_000013148,serine/threonine-protein phosphatase 2B catalytic subunit beta isoform +7.7557713,GO:1903561,http://purl.obolibrary.org/obo/GO_1903561,extracellular vesicle +7.7559736,UBERON:0000093,http://purl.obolibrary.org/obo/UBERON_0000093,sulcus +7.7562771,GO:0005776,http://purl.obolibrary.org/obo/GO_0005776,autophagosome +7.7563783,UBERON:0001769,http://purl.obolibrary.org/obo/UBERON_0001769,iris +7.7566819,GO:0005963,http://purl.obolibrary.org/obo/GO_0005963,magnesium-dependent protein serine/threonine phosphatase complex +7.7566819,PR:000013149,http://purl.obolibrary.org/obo/PR_000013149,serine/threonine-protein phosphatase 2B catalytic subunit gamma isoform +7.7568844,NCBITaxon:4896,http://purl.obolibrary.org/obo/NCBITaxon_4896,none +7.7569856,GO:0005955,http://purl.obolibrary.org/obo/GO_0005955,calcineurin complex +7.7571882,DRUGBANK:DB03147,http://purl.obolibrary.org/obo/DRUGBANK_DB03147,none +7.7572894,NCBITaxon:4895,http://purl.obolibrary.org/obo/NCBITaxon_4895,none +7.757492,DRUGBANK:DB00770,http://purl.obolibrary.org/obo/DRUGBANK_DB00770,none +7.757492,UBERON:0005440,http://purl.obolibrary.org/obo/UBERON_0005440,ductus arteriosus +7.7578973,UBERON:0001814,http://purl.obolibrary.org/obo/UBERON_0001814,brachial nerve plexus +7.7579987,DRUGBANK:DB00878,http://purl.obolibrary.org/obo/DRUGBANK_DB00878,none +7.7584042,GO:0035637,http://purl.obolibrary.org/obo/GO_0035637,multicellular organismal signaling +7.758607,PR:000014678,http://purl.obolibrary.org/obo/PR_000014678,alpha-1-antitrypsin +7.7592157,GO:0004712,http://purl.obolibrary.org/obo/GO_0004712,protein serine/threonine/tyrosine kinase activity +7.7592157,MONDO:0002036,http://purl.obolibrary.org/obo/MONDO_0002036,penile disease +7.7593172,GO:0004708,http://purl.obolibrary.org/obo/GO_0004708,MAP kinase kinase activity +7.7597233,GO:0004623,http://purl.obolibrary.org/obo/GO_0004623,phospholipase A2 activity +7.7597233,PR:000012798,http://purl.obolibrary.org/obo/PR_000012798,phospholipase A2 +7.7602311,MONDO:0001156,http://purl.obolibrary.org/obo/MONDO_0001156,borderline personality disorder +7.7604342,GO:0035265,http://purl.obolibrary.org/obo/GO_0035265,organ growth +7.7615525,DRUGBANK:DB00536,http://purl.obolibrary.org/obo/DRUGBANK_DB00536,none +7.7616543,GO:0019136,http://purl.obolibrary.org/obo/GO_0019136,deoxynucleoside kinase activity +7.7616543,GO:0019226,http://purl.obolibrary.org/obo/GO_0019226,transmission of nerve impulse +7.7624684,UBERON:0001805,http://purl.obolibrary.org/obo/UBERON_0001805,autonomic ganglion +7.7629776,DRUGBANK:DB01212,http://purl.obolibrary.org/obo/DRUGBANK_DB01212,none +7.7631814,DRUGBANK:DB00594,http://purl.obolibrary.org/obo/DRUGBANK_DB00594,none +7.7634871,MONDO:0005856,http://purl.obolibrary.org/obo/MONDO_0005856,Mononegavirales infectious disease +7.7637929,MOP:0000618,http://purl.obolibrary.org/obo/MOP_0000618,none +7.7639968,SO:0000577,http://purl.obolibrary.org/obo/SO_0000577,centromere +7.7644047,MOP:0000619,http://purl.obolibrary.org/obo/MOP_0000619,none +7.7654253,PR:000006459,http://purl.obolibrary.org/obo/PR_000006459,desert hedgehog protein +7.7654253,PR:000013890,http://purl.obolibrary.org/obo/PR_000013890,arginine-glutamic acid dipeptide repeats protein +7.7661404,CL:1000413,http://purl.obolibrary.org/obo/CL_1000413,endothelial cell of artery +7.7661404,GO:0000775,http://purl.obolibrary.org/obo/GO_0000775,"chromosome, centromeric region" +7.7665492,GO:0048871,http://purl.obolibrary.org/obo/GO_0048871,multicellular organismal homeostasis +7.7667537,GO:0044705,http://purl.obolibrary.org/obo/GO_0044705,none +7.7672651,MONDO:0006530,http://purl.obolibrary.org/obo/MONDO_0006530,cholesteatoma +7.7677767,DRUGBANK:DB01190,http://purl.obolibrary.org/obo/DRUGBANK_DB01190,none +7.7690057,HP:0004325,http://purl.obolibrary.org/obo/HP_0004325,Decreased body weight +7.7697233,DRUGBANK:DB00627,http://purl.obolibrary.org/obo/DRUGBANK_DB00627,none +7.7701336,MONDO:0001751,http://purl.obolibrary.org/obo/MONDO_0001751,cholestasis +7.7707494,MONDO:0018191,http://purl.obolibrary.org/obo/MONDO_0018191,tumor of testis and paratestis +7.7710574,PR:000016352,http://purl.obolibrary.org/obo/PR_000016352,metalloproteinase inhibitor 1 +7.7714683,PR:P51136,http://purl.obolibrary.org/obo/PR_P51136,none +7.7727018,UBERON:0003968,http://purl.obolibrary.org/obo/UBERON_0003968,peripheral lymph node +7.7727018,UBERON:0007842,http://purl.obolibrary.org/obo/UBERON_0007842,membrane bone +7.7729076,DRUGBANK:DB10537,http://purl.obolibrary.org/obo/DRUGBANK_DB10537,none +7.7730105,GO:0046364,http://purl.obolibrary.org/obo/GO_0046364,monosaccharide biosynthetic process +7.7731134,PR:000003583,http://purl.obolibrary.org/obo/PR_000003583,tyrosine-protein kinase ABL2 +7.773628,MONDO:0017265,http://purl.obolibrary.org/obo/MONDO_0017265,autosomal recessive congenital ichthyosis +7.7740399,DRUGBANK:DB14076,http://purl.obolibrary.org/obo/DRUGBANK_DB14076,none +7.7741429,DRUGBANK:DB10567,http://purl.obolibrary.org/obo/DRUGBANK_DB10567,none +7.7742459,UBERON:0001751,http://purl.obolibrary.org/obo/UBERON_0001751,dentine +7.7747611,UBERON:0000044,http://purl.obolibrary.org/obo/UBERON_0000044,dorsal root ganglion +7.7749673,SO:0000854,http://purl.obolibrary.org/obo/SO_0000854,paralogous_region +7.7755861,DRUGBANK:DB10546,http://purl.obolibrary.org/obo/DRUGBANK_DB10546,none +7.7757924,GO:0023051,http://purl.obolibrary.org/obo/GO_0023051,regulation of signaling +7.7763084,GO:0019866,http://purl.obolibrary.org/obo/GO_0019866,organelle inner membrane +7.7767214,HP:0007663,http://purl.obolibrary.org/obo/HP_0007663,Reduced visual acuity +7.776928,DRUGBANK:DB15228,http://purl.obolibrary.org/obo/DRUGBANK_DB15228,none +7.7771346,MONDO:0005808,http://purl.obolibrary.org/obo/MONDO_0005808,inclusion conjunctivitis +7.7777547,DRUGBANK:DB01598,http://purl.obolibrary.org/obo/DRUGBANK_DB01598,none +7.7779615,DRUGBANK:DB10533,http://purl.obolibrary.org/obo/DRUGBANK_DB10533,none +7.7780649,DRUGBANK:DB10633,http://purl.obolibrary.org/obo/DRUGBANK_DB10633,none +7.7783752,MONDO:0007374,http://purl.obolibrary.org/obo/MONDO_0007374,Schnyder corneal dystrophy +7.7784786,MONDO:0017266,http://purl.obolibrary.org/obo/MONDO_0017266,keratinopathic ichthyosis +7.7786855,MONDO:0001249,http://purl.obolibrary.org/obo/MONDO_0001249,trachoma +7.778789,UBERON:0002351,http://purl.obolibrary.org/obo/UBERON_0002351,sinoatrial node +7.7788925,GO:0051186,http://purl.obolibrary.org/obo/GO_0051186,none +7.7795137,GO:0016126,http://purl.obolibrary.org/obo/GO_0016126,sterol biosynthetic process +7.7809646,MONDO:0007239,http://purl.obolibrary.org/obo/MONDO_0007239,epidermolytic hyperkeratosis +7.7815871,CL:0000239,http://purl.obolibrary.org/obo/CL_0000239,brush border epithelial cell +7.7815871,DRUGBANK:DB01942,http://purl.obolibrary.org/obo/DRUGBANK_DB01942,none +7.78221,SO:0001440,http://purl.obolibrary.org/obo/SO_0001440,tryptophan +7.7828332,MONDO:0005203,http://purl.obolibrary.org/obo/MONDO_0005203,ischemia reperfusion injury +7.7833529,DRUGBANK:DB00526,http://purl.obolibrary.org/obo/DRUGBANK_DB00526,none +7.7833529,MONDO:0019126,http://purl.obolibrary.org/obo/MONDO_0019126,intractable diarrhea of infancy +7.7841849,MONDO:0056799,http://purl.obolibrary.org/obo/MONDO_0056799,synovium disease +7.7850176,DRUGBANK:DB00655,http://purl.obolibrary.org/obo/DRUGBANK_DB00655,none +7.7850176,MONDO:0006373,http://purl.obolibrary.org/obo/MONDO_0006373,pituitary gland adenoma +7.7854343,MONDO:0002771,http://purl.obolibrary.org/obo/MONDO_0002771,pulmonary fibrosis +7.7865809,UBERON:0001027,http://purl.obolibrary.org/obo/UBERON_0001027,sensory nerve +7.7872069,MONDO:0005004,http://purl.obolibrary.org/obo/MONDO_0005004,clear cell adenocarcinoma +7.7874156,MONDO:0000004,http://purl.obolibrary.org/obo/MONDO_0000004,adrenocortical insufficiency +7.7880421,HP:0002493,http://purl.obolibrary.org/obo/HP_0002493,Upper motor neuron dysfunction +7.7891917,MONDO:0001549,http://purl.obolibrary.org/obo/MONDO_0001549,hemolytic-uremic syndrome +7.7897147,UBERON:0010134,http://purl.obolibrary.org/obo/UBERON_0010134,secretory circumventricular organ +7.789924,PR:000013206,http://purl.obolibrary.org/obo/PR_000013206,bone marrow proteoglycan +7.7902379,MONDO:0017278,http://purl.obolibrary.org/obo/MONDO_0017278,autoimmune polyendocrinopathy +7.7908662,MONDO:0005812,http://purl.obolibrary.org/obo/MONDO_0005812,influenza +7.7914949,MONDO:0010837,http://purl.obolibrary.org/obo/MONDO_0010837,primary hyperparathyroidism +7.792124,CL:0000677,http://purl.obolibrary.org/obo/CL_0000677,gut absorptive cell +7.7922288,CL:0000584,http://purl.obolibrary.org/obo/CL_0000584,enterocyte +7.7923337,MONDO:0017662,http://purl.obolibrary.org/obo/MONDO_0017662,miscellaneous movement disorder due to genetic neurodegenerative disease +7.7924386,GO:0009165,http://purl.obolibrary.org/obo/GO_0009165,nucleotide biosynthetic process +7.7924386,GO:0019319,http://purl.obolibrary.org/obo/GO_0019319,hexose biosynthetic process +7.7925435,CHEBI:76812,http://purl.obolibrary.org/obo/CHEBI_76812,EC 2.7.11.* (protein-serine/threonine kinase) inhibitor +7.7925435,GO:0060560,http://purl.obolibrary.org/obo/GO_0060560,developmental growth involved in morphogenesis +7.7926485,PR:000006012,http://purl.obolibrary.org/obo/PR_000006012,catenin delta-1 +7.7929633,DRUGBANK:DB10553,http://purl.obolibrary.org/obo/DRUGBANK_DB10553,none +7.7931733,MONDO:0018975,http://purl.obolibrary.org/obo/MONDO_0018975,neurofibromatosis type 1 +7.7935933,CL:0002327,http://purl.obolibrary.org/obo/CL_0002327,mammary gland epithelial cell +7.794539,GO:0009008,http://purl.obolibrary.org/obo/GO_0009008,DNA-methyltransferase activity +7.7947493,GO:0010035,http://purl.obolibrary.org/obo/GO_0010035,response to inorganic substance +7.7948545,DRUGBANK:DB01151,http://purl.obolibrary.org/obo/DRUGBANK_DB01151,none +7.7949596,PR:000001065,http://purl.obolibrary.org/obo/PR_000001065,transient receptor potential cation channel TRPV1 +7.7955909,DRUGBANK:DB00155,http://purl.obolibrary.org/obo/DRUGBANK_DB00155,none +7.7963278,GO:1901293,http://purl.obolibrary.org/obo/GO_1901293,nucleoside phosphate biosynthetic process +7.7964332,NCBITaxon:10245,http://purl.obolibrary.org/obo/NCBITaxon_10245,Vaccinia virus +7.7965385,UBERON:0011825,http://purl.obolibrary.org/obo/UBERON_0011825,loose connective tissue +7.797487,MONDO:0001672,http://purl.obolibrary.org/obo/MONDO_0001672,bronchus cancer +7.7984364,DRUGBANK:DB16024,http://purl.obolibrary.org/obo/DRUGBANK_DB16024,none +7.798542,MONDO:0016578,http://purl.obolibrary.org/obo/MONDO_0016578,mitochondrial oxidative phosphorylation disorder due to nuclear DNA anomalies +7.7992811,NCBITaxon:11018,http://purl.obolibrary.org/obo/NCBITaxon_11018,Togaviridae +7.7994924,UBERON:0001148,http://purl.obolibrary.org/obo/UBERON_0001148,median nerve +7.800338,DRUGBANK:DB14145,http://purl.obolibrary.org/obo/DRUGBANK_DB14145,none +7.8004437,SO:0002045,http://purl.obolibrary.org/obo/SO_0002045,pheromone_response_element +7.8005495,PR:000022778,http://purl.obolibrary.org/obo/PR_000022778,none +7.8009726,UBERON:0000101,http://purl.obolibrary.org/obo/UBERON_0000101,lobe of lung +7.8010784,MONDO:0020078,http://purl.obolibrary.org/obo/MONDO_0020078,acute myeloid leukemia with recurrent genetic anomaly +7.8011843,MONDO:0021077,http://purl.obolibrary.org/obo/MONDO_0021077,cystic neoplasm +7.801396,MONDO:0024615,http://purl.obolibrary.org/obo/MONDO_0024615,T-cell and NK-cell neoplasm +7.8017136,GO:0031326,http://purl.obolibrary.org/obo/GO_0031326,regulation of cellular biosynthetic process +7.8017136,MONDO:0021204,http://purl.obolibrary.org/obo/MONDO_0021204,chronic otitis media +7.8021372,GO:0016410,http://purl.obolibrary.org/obo/GO_0016410,N-acyltransferase activity +7.8023491,MONDO:0004789,http://purl.obolibrary.org/obo/MONDO_0004789,cholangitis +7.8023491,MONDO:0005429,http://purl.obolibrary.org/obo/MONDO_0005429,prion disease +7.8024551,DRUGBANK:DB00299,http://purl.obolibrary.org/obo/DRUGBANK_DB00299,none +7.8024551,GO:0006338,http://purl.obolibrary.org/obo/GO_0006338,chromatin remodeling +7.802773,DRUGBANK:DB01536,http://purl.obolibrary.org/obo/DRUGBANK_DB01536,none +7.802773,MONDO:0019305,http://purl.obolibrary.org/obo/MONDO_0019305,immune deficiency with skin involvement +7.8030911,GO:0005244,http://purl.obolibrary.org/obo/GO_0005244,voltage-gated ion channel activity +7.8030911,PR:000016854,http://purl.obolibrary.org/obo/PR_000016854,"thioredoxin, mitochondrial" +7.8035153,DRUGBANK:DB03419,http://purl.obolibrary.org/obo/DRUGBANK_DB03419,none +7.8038336,GO:0006094,http://purl.obolibrary.org/obo/GO_0006094,gluconeogenesis +7.8039397,GO:0034097,http://purl.obolibrary.org/obo/GO_0034097,response to cytokine +7.8045766,GO:0065010,http://purl.obolibrary.org/obo/GO_0065010,extracellular membrane-bounded organelle +7.8048952,CHEBI:24651,http://purl.obolibrary.org/obo/CHEBI_24651,hydroxides +7.8051077,DRUGBANK:DB13961,http://purl.obolibrary.org/obo/DRUGBANK_DB13961,none +7.8056391,MONDO:0012883,http://purl.obolibrary.org/obo/MONDO_0012883,acute promyelocytic leukemia +7.807022,UBERON:0005337,http://purl.obolibrary.org/obo/UBERON_0005337,outflow tract of ventricle +7.8074479,UBERON:0006311,http://purl.obolibrary.org/obo/UBERON_0006311,chamber of eyeball +7.8077674,MONDO:0007763,http://purl.obolibrary.org/obo/MONDO_0007763,nonpapillary renal cell carcinoma +7.8080871,MONDO:0100022,http://purl.obolibrary.org/obo/MONDO_0100022,neonatal/infantile epilepsy syndrome +7.8083002,MONDO:0015880,http://purl.obolibrary.org/obo/MONDO_0015880,syndromic diaphragmatic or thoracic malformation +7.8087267,MONDO:0020040,http://purl.obolibrary.org/obo/MONDO_0020040,"46,XY disorder of sex development" +7.8088333,UBERON:0035307,http://purl.obolibrary.org/obo/UBERON_0035307,branch of vertebral artery +7.8091533,GO:0016538,http://purl.obolibrary.org/obo/GO_0016538,cyclin-dependent protein serine/threonine kinase regulator activity +7.80926,CHEBI:82665,http://purl.obolibrary.org/obo/CHEBI_82665,EC 2.7.11.22 (cyclin-dependent kinase) inhibitor +7.80926,DRUGBANK:DB03203,http://purl.obolibrary.org/obo/DRUGBANK_DB03203,none +7.80926,GO:0004861,http://purl.obolibrary.org/obo/GO_0004861,cyclin-dependent protein serine/threonine kinase inhibitor activity +7.8096868,PR:000014196,http://purl.obolibrary.org/obo/PR_000014196,60S ribosomal protein L17 +7.8097936,PR:000002318,http://purl.obolibrary.org/obo/PR_000002318,caspase-9 +7.8100071,GO:0005815,http://purl.obolibrary.org/obo/GO_0005815,microtubule organizing center +7.8102206,PR:000015485,http://purl.obolibrary.org/obo/PR_000015485,spermatogenesis-associated protein 2 +7.8110753,PR:P31414,http://purl.obolibrary.org/obo/PR_P31414,none +7.811396,PR:000050044,http://purl.obolibrary.org/obo/PR_000050044,NOTCH protein +7.811396,PR:Q9ZUY3,http://purl.obolibrary.org/obo/PR_Q9ZUY3,none +7.811396,UBERON:0000030,http://purl.obolibrary.org/obo/UBERON_0000030,lamina propria +7.811503,MONDO:0004608,http://purl.obolibrary.org/obo/MONDO_0004608,oropharynx cancer +7.8124658,PR:Q02242,http://purl.obolibrary.org/obo/PR_Q02242,none +7.8130011,PR:000004140,http://purl.obolibrary.org/obo/PR_000004140,apolipoprotein A-I +7.8135367,PR:000016853,http://purl.obolibrary.org/obo/PR_000016853,thioredoxin +7.8136438,DRUGBANK:DB11895,http://purl.obolibrary.org/obo/DRUGBANK_DB11895,none +7.8138582,MONDO:0020067,http://purl.obolibrary.org/obo/MONDO_0020067,infectious encephalitis +7.8139654,DRUGBANK:DB03462,http://purl.obolibrary.org/obo/DRUGBANK_DB03462,none +7.8139654,GO:0065003,http://purl.obolibrary.org/obo/GO_0065003,protein-containing complex assembly +7.8146087,DRUGBANK:DB14090,http://purl.obolibrary.org/obo/DRUGBANK_DB14090,none +7.814716,GO:0003708,http://purl.obolibrary.org/obo/GO_0003708,none +7.8150379,CL:0000188,http://purl.obolibrary.org/obo/CL_0000188,cell of skeletal muscle +7.8152525,CHEBI:36080,http://purl.obolibrary.org/obo/CHEBI_36080,protein +7.8162189,DRUGBANK:DB04665,http://purl.obolibrary.org/obo/DRUGBANK_DB04665,none +7.8165413,PR:000001095,http://purl.obolibrary.org/obo/PR_000001095,secretin-like G-protein coupled receptor +7.8165413,UBERON:0001348,http://purl.obolibrary.org/obo/UBERON_0001348,brown adipose tissue +7.8169713,CL:0002098,http://purl.obolibrary.org/obo/CL_0002098,regular cardiac myocyte +7.818047,GO:0004936,http://purl.obolibrary.org/obo/GO_0004936,alpha-adrenergic receptor activity +7.818693,DRUGBANK:DB09567,http://purl.obolibrary.org/obo/DRUGBANK_DB09567,none +7.8189084,MONDO:0005358,http://purl.obolibrary.org/obo/MONDO_0005358,Dengue hemorrhagic fever +7.8192316,DRUGBANK:DB00828,http://purl.obolibrary.org/obo/DRUGBANK_DB00828,none +7.8194472,DRUGBANK:DB14577,http://purl.obolibrary.org/obo/DRUGBANK_DB14577,none +7.8207414,SO:0002121,http://purl.obolibrary.org/obo/SO_0002121,vertebrate_immune_system_gene +7.8208493,DRUGBANK:DB00714,http://purl.obolibrary.org/obo/DRUGBANK_DB00714,none +7.8211732,PR:000004959,http://purl.obolibrary.org/obo/PR_000004959,CAD protein +7.8211732,UBERON:0002398,http://purl.obolibrary.org/obo/UBERON_0002398,manus +7.8219292,GO:0016712,http://purl.obolibrary.org/obo/GO_0016712,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen" +7.8221454,MONDO:0017761,http://purl.obolibrary.org/obo/MONDO_0017761,disorder of mineral absorption and transport +7.8224696,PR:000001289,http://purl.obolibrary.org/obo/PR_000001289,membrane-spanning 4-domains subfamily A member 1 +7.8226859,GO:0098857,http://purl.obolibrary.org/obo/GO_0098857,membrane microdomain +7.822794,SO:0000199,http://purl.obolibrary.org/obo/SO_0000199,translocation +7.8230103,GO:0034440,http://purl.obolibrary.org/obo/GO_0034440,lipid oxidation +7.8232267,GO:0044435,http://purl.obolibrary.org/obo/GO_0044435,none +7.8233349,UBERON:0012168,http://purl.obolibrary.org/obo/UBERON_0012168,umbilical cord blood +7.8236595,PR:000004580,http://purl.obolibrary.org/obo/PR_000004580,beta-2-microglobulin +7.8242009,PR:000001387,http://purl.obolibrary.org/obo/PR_000001387,interleukin-3 +7.8247425,GO:0002526,http://purl.obolibrary.org/obo/GO_0002526,acute inflammatory response +7.8252844,SO:0001700,http://purl.obolibrary.org/obo/SO_0001700,histone_modification +7.8271291,GO:2000026,http://purl.obolibrary.org/obo/GO_2000026,regulation of multicellular organismal development +7.8272377,MONDO:0017345,http://purl.obolibrary.org/obo/MONDO_0017345,Epstein-Barr virus-associated mesenchymal tumor +7.827455,DRUGBANK:DB01001,http://purl.obolibrary.org/obo/DRUGBANK_DB01001,none +7.8276723,UBERON:0003684,http://purl.obolibrary.org/obo/UBERON_0003684,abdominal cavity +7.8284333,CL:0002681,http://purl.obolibrary.org/obo/CL_0002681,kidney cortical cell +7.8290861,PR:000004676,http://purl.obolibrary.org/obo/PR_000004676,breast cancer anti-estrogen resistance protein 1 +7.8290861,SO:0001536,http://purl.obolibrary.org/obo/SO_0001536,functional_effect_variant +7.8294126,HP:0003119,http://purl.obolibrary.org/obo/HP_0003119,Abnormal circulating lipid concentration +7.830066,GO:0018958,http://purl.obolibrary.org/obo/GO_0018958,phenol-containing compound metabolic process +7.8301749,PR:000014405,http://purl.obolibrary.org/obo/PR_000014405,protein S100-A12 +7.8310469,DRUGBANK:DB03310,http://purl.obolibrary.org/obo/DRUGBANK_DB03310,none +7.831374,DRUGBANK:DB04076,http://purl.obolibrary.org/obo/DRUGBANK_DB04076,none +7.831374,PR:P22943,http://purl.obolibrary.org/obo/PR_P22943,none +7.8317013,PR:000008039,http://purl.obolibrary.org/obo/PR_000008039,GATA-type zinc finger protein 1 +7.8318104,DRUGBANK:DB00458,http://purl.obolibrary.org/obo/DRUGBANK_DB00458,none +7.8318104,PR:000013427,http://purl.obolibrary.org/obo/PR_000013427,prostaglandin G/H synthase 1 +7.8326838,CL:1000449,http://purl.obolibrary.org/obo/CL_1000449,epithelial cell of nephron +7.832793,SO:0000726,http://purl.obolibrary.org/obo/SO_0000726,repeat_unit +7.8329022,GO:0008757,http://purl.obolibrary.org/obo/GO_0008757,S-adenosylmethionine-dependent methyltransferase activity +7.83323,PR:000021997,http://purl.obolibrary.org/obo/PR_000021997,TRK receptor +7.8334486,UBERON:0010260,http://purl.obolibrary.org/obo/UBERON_0010260,umbilical blood vessel +7.8335579,DRUGBANK:DB11251,http://purl.obolibrary.org/obo/DRUGBANK_DB11251,none +7.8335579,UBERON:0010741,http://purl.obolibrary.org/obo/UBERON_0010741,bone of pectoral complex +7.8336672,DRUGBANK:DB01638,http://purl.obolibrary.org/obo/DRUGBANK_DB01638,none +7.8336672,SO:0001079,http://purl.obolibrary.org/obo/SO_0001079,polypeptide_structural_motif +7.8338859,CL:1000746,http://purl.obolibrary.org/obo/CL_1000746,glomerular cell +7.8348705,DRUGBANK:DB03323,http://purl.obolibrary.org/obo/DRUGBANK_DB03323,none +7.8358561,DRUGBANK:DB00692,http://purl.obolibrary.org/obo/DRUGBANK_DB00692,none +7.8361849,DRUGBANK:DB02701,http://purl.obolibrary.org/obo/DRUGBANK_DB02701,none +7.8371718,SO:0001449,http://purl.obolibrary.org/obo/SO_0001449,asparagine +7.8372815,GO:0008080,http://purl.obolibrary.org/obo/GO_0008080,N-acetyltransferase activity +7.8372815,GO:0008194,http://purl.obolibrary.org/obo/GO_0008194,UDP-glycosyltransferase activity +7.8376107,PR:000005929,http://purl.obolibrary.org/obo/PR_000005929,exportin-2 +7.8377205,GO:0016645,http://purl.obolibrary.org/obo/GO_0016645,"oxidoreductase activity, acting on the CH-NH group of donors" +7.838599,UBERON:0010211,http://purl.obolibrary.org/obo/UBERON_0010211,granulation tissue +7.8393684,MONDO:0001942,http://purl.obolibrary.org/obo/MONDO_0001942,generalized anxiety disorder +7.8395883,MONDO:0003346,http://purl.obolibrary.org/obo/MONDO_0003346,central nervous system vasculitis +7.8401383,UBERON:0001714,http://purl.obolibrary.org/obo/UBERON_0001714,cranial ganglion +7.841019,HP:0001257,http://purl.obolibrary.org/obo/HP_0001257,Spasticity +7.8412393,HP:0011729,http://purl.obolibrary.org/obo/HP_0011729,Abnormality of joint mobility +7.8413494,UBERON:0001771,http://purl.obolibrary.org/obo/UBERON_0001771,pupil +7.8420107,PR:000044672,http://purl.obolibrary.org/obo/PR_000044672,aquaporin protein +7.8423415,DRUGBANK:DB00570,http://purl.obolibrary.org/obo/DRUGBANK_DB00570,none +7.8430033,DRUGBANK:DB01016,http://purl.obolibrary.org/obo/DRUGBANK_DB01016,none +7.8430033,UBERON:0010172,http://purl.obolibrary.org/obo/UBERON_0010172,bulb of aorta +7.8437761,MONDO:0005406,http://purl.obolibrary.org/obo/MONDO_0005406,gestational diabetes +7.84466,HP:0001371,http://purl.obolibrary.org/obo/HP_0001371,Flexion contracture +7.84466,PR:000001044,http://purl.obolibrary.org/obo/PR_000001044,cystic fibrosis transmembrane conductance regulator +7.8453234,PR:000002197,http://purl.obolibrary.org/obo/PR_000002197,caspase-8-like protease +7.8453234,PR:000009197,http://purl.obolibrary.org/obo/PR_000009197,tyrosine-protein kinase JAK2 +7.8453234,PR:000024045,http://purl.obolibrary.org/obo/PR_000024045,none +7.8456553,DRUGBANK:DB09301,http://purl.obolibrary.org/obo/DRUGBANK_DB09301,none +7.8466516,UBERON:0001759,http://purl.obolibrary.org/obo/UBERON_0001759,vagus nerve +7.8467623,DRUGBANK:DB00422,http://purl.obolibrary.org/obo/DRUGBANK_DB00422,none +7.8468731,DRUGBANK:DB04335,http://purl.obolibrary.org/obo/DRUGBANK_DB04335,none +7.8470947,UBERON:0000387,http://purl.obolibrary.org/obo/UBERON_0000387,meniscus +7.8478706,PR:000016367,http://purl.obolibrary.org/obo/PR_000016367,"thymidine kinase, cytosolic" +7.8480924,HP:0100261,http://purl.obolibrary.org/obo/HP_0100261,Abnormal tendon morphology +7.8480924,NCBITaxon:11320,http://purl.obolibrary.org/obo/NCBITaxon_11320,Influenza A virus +7.8485362,UBERON:0008907,http://purl.obolibrary.org/obo/UBERON_0008907,dermal bone +7.8486471,MONDO:0018795,http://purl.obolibrary.org/obo/MONDO_0018795,syndromic constitutional thrombocytopenia +7.8489801,GO:0001505,http://purl.obolibrary.org/obo/GO_0001505,regulation of neurotransmitter levels +7.8492022,UBERON:0001766,http://purl.obolibrary.org/obo/UBERON_0001766,anterior chamber of eyeball +7.8494243,MONDO:0006918,http://purl.obolibrary.org/obo/MONDO_0006918,posterior uveitis +7.8495353,UBERON:0011818,http://purl.obolibrary.org/obo/UBERON_0011818,superficial fascia +7.8496464,NCBITaxon:197911,http://purl.obolibrary.org/obo/NCBITaxon_197911,Alphainfluenzavirus +7.8512028,GO:0003840,http://purl.obolibrary.org/obo/GO_0003840,none +7.8520933,DRUGBANK:DB00138,http://purl.obolibrary.org/obo/DRUGBANK_DB00138,none +7.8520933,DRUGBANK:DB02656,http://purl.obolibrary.org/obo/DRUGBANK_DB02656,none +7.853096,DRUGBANK:DB11137,http://purl.obolibrary.org/obo/DRUGBANK_DB11137,none +7.8536535,GO:0010646,http://purl.obolibrary.org/obo/GO_0010646,regulation of cell communication +7.8542114,MONDO:0020380,http://purl.obolibrary.org/obo/MONDO_0020380,autosomal dominant cerebellar ataxia +7.8546578,MONDO:0002363,http://purl.obolibrary.org/obo/MONDO_0002363,papilloma +7.8549928,DRUGBANK:DB09106,http://purl.obolibrary.org/obo/DRUGBANK_DB09106,none +7.8555514,DRUGBANK:DB06755,http://purl.obolibrary.org/obo/DRUGBANK_DB06755,none +7.8558867,UBERON:0001398,http://purl.obolibrary.org/obo/UBERON_0001398,brachial artery +7.8559985,PR:000016368,http://purl.obolibrary.org/obo/PR_000016368,"thymidine kinase 2, mitochondrial" +7.8561103,MONDO:0019290,http://purl.obolibrary.org/obo/MONDO_0019290,hypopigmentation of the skin +7.8566695,MONDO:0007008,http://purl.obolibrary.org/obo/MONDO_0007008,uremia +7.8566695,MONDO:0024468,http://purl.obolibrary.org/obo/MONDO_0024468,anterior pituitary gland disease +7.857229,GO:0005253,http://purl.obolibrary.org/obo/GO_0005253,anion channel activity +7.8573409,MONDO:0002232,http://purl.obolibrary.org/obo/MONDO_0002232,nasal cavity disease +7.8574529,CL:0000650,http://purl.obolibrary.org/obo/CL_0000650,mesangial cell +7.8576768,CHEBI:48560,http://purl.obolibrary.org/obo/CHEBI_48560,dopaminergic agent +7.8583489,CL:0002584,http://purl.obolibrary.org/obo/CL_0002584,renal cortical epithelial cell +7.8583489,DRUGBANK:DB01118,http://purl.obolibrary.org/obo/DRUGBANK_DB01118,none +7.8593579,PR:000010489,http://purl.obolibrary.org/obo/PR_000010489,matrilysin +7.8596945,NCBITaxon:10780,http://purl.obolibrary.org/obo/NCBITaxon_10780,Parvoviridae +7.8598067,NCBITaxon:2732422,http://purl.obolibrary.org/obo/NCBITaxon_2732422,Quintoviricetes +7.8598067,NCBITaxon:2732534,http://purl.obolibrary.org/obo/NCBITaxon_2732534,Piccovirales +7.8598067,UBERON:2001995,http://purl.obolibrary.org/obo/UBERON_2001995,papilla +7.8600312,NCBITaxon:40119,http://purl.obolibrary.org/obo/NCBITaxon_40119,Parvovirinae +7.8602557,NCBITaxon:153135,http://purl.obolibrary.org/obo/NCBITaxon_153135,Gammaretrovirus +7.8610419,DRUGBANK:DB10561,http://purl.obolibrary.org/obo/DRUGBANK_DB10561,none +7.8610419,UBERON:0001225,http://purl.obolibrary.org/obo/UBERON_0001225,cortex of kidney +7.861379,MONDO:0017035,http://purl.obolibrary.org/obo/MONDO_0017035,secondary interstitial lung disease in childhood and adulthood associated with a systemic disease +7.8614915,GO:0004797,http://purl.obolibrary.org/obo/GO_0004797,thymidine kinase activity +7.8614915,GO:0044042,http://purl.obolibrary.org/obo/GO_0044042,glucan metabolic process +7.8617163,MONDO:0002400,http://purl.obolibrary.org/obo/MONDO_0002400,synovitis +7.8620537,DRUGBANK:DB01005,http://purl.obolibrary.org/obo/DRUGBANK_DB01005,none +7.8629539,GO:0046959,http://purl.obolibrary.org/obo/GO_0046959,habituation +7.863179,DRUGBANK:DB00688,http://purl.obolibrary.org/obo/DRUGBANK_DB00688,none +7.8632916,MONDO:0006292,http://purl.obolibrary.org/obo/MONDO_0006292,malignant mesothelioma +7.8640802,PR:000002064,http://purl.obolibrary.org/obo/PR_000002064,macrosialin +7.8645311,GO:0006073,http://purl.obolibrary.org/obo/GO_0006073,cellular glucan metabolic process +7.8646439,UBERON:0019261,http://purl.obolibrary.org/obo/UBERON_0019261,white matter of forebrain +7.8650951,CHEBI:22986,http://purl.obolibrary.org/obo/CHEBI_22986,calcium ionophore +7.8655464,MONDO:0017146,http://purl.obolibrary.org/obo/MONDO_0017146,sickle cell disease and related diseases +7.8655464,PR:000017081,http://purl.obolibrary.org/obo/PR_000017081,uromodulin +7.8657722,DRUGBANK:DB00994,http://purl.obolibrary.org/obo/DRUGBANK_DB00994,none +7.8661109,MONDO:0018239,http://purl.obolibrary.org/obo/MONDO_0018239,aggrecan-related bone disorder +7.8662239,GO:0001101,http://purl.obolibrary.org/obo/GO_0001101,response to acid chemical +7.8662239,MONDO:0017178,http://purl.obolibrary.org/obo/MONDO_0017178,osteochondritis dissecans +7.8664498,DRUGBANK:DB01172,http://purl.obolibrary.org/obo/DRUGBANK_DB01172,none +7.8664498,UBERON:0002437,http://purl.obolibrary.org/obo/UBERON_0002437,cerebral hemisphere white matter +7.8665627,MONDO:0006793,http://purl.obolibrary.org/obo/MONDO_0006793,hyperpituitarism +7.8673539,MONDO:0000430,http://purl.obolibrary.org/obo/MONDO_0000430,mature T-cell and NK-cell non-Hodgkin lymphoma +7.8682589,MONDO:0017259,http://purl.obolibrary.org/obo/MONDO_0017259,systemic diseases with anterior uveitis +7.8683721,MONDO:0018201,http://purl.obolibrary.org/obo/MONDO_0018201,extragonadal germ cell tumor +7.8687117,GO:0019219,http://purl.obolibrary.org/obo/GO_0019219,regulation of nucleobase-containing compound metabolic process +7.8688249,GO:0016646,http://purl.obolibrary.org/obo/GO_0016646,"oxidoreductase activity, acting on the CH-NH group of donors, NAD or NADP as acceptor" +7.8691647,MONDO:0016402,http://purl.obolibrary.org/obo/MONDO_0016402,mitochondrial disease with epilepsy +7.8700713,UBERON:0001764,http://purl.obolibrary.org/obo/UBERON_0001764,maxillary sinus +7.8701847,PR:000001904,http://purl.obolibrary.org/obo/PR_000001904,platelet endothelial cell adhesion molecule +7.8706384,GO:0016482,http://purl.obolibrary.org/obo/GO_0016482,cytosolic transport +7.8709788,CL:0000160,http://purl.obolibrary.org/obo/CL_0000160,goblet cell +7.8710922,DRUGBANK:DB01356,http://purl.obolibrary.org/obo/DRUGBANK_DB01356,none +7.8712058,GO:0015103,http://purl.obolibrary.org/obo/GO_0015103,inorganic anion transmembrane transporter activity +7.8717734,GO:0006298,http://purl.obolibrary.org/obo/GO_0006298,mismatch repair +7.8721142,GO:1901568,http://purl.obolibrary.org/obo/GO_1901568,fatty acid derivative metabolic process +7.8722278,MONDO:0002595,http://purl.obolibrary.org/obo/MONDO_0002595,vaccinia +7.8731372,PR:000044633,http://purl.obolibrary.org/obo/PR_000044633,dopamine receptor +7.873706,CL:0002202,http://purl.obolibrary.org/obo/CL_0002202,epithelial cell of tracheobronchial tree +7.873706,CL:0002632,http://purl.obolibrary.org/obo/CL_0002632,epithelial cell of lower respiratory tract +7.8739336,GO:0008081,http://purl.obolibrary.org/obo/GO_0008081,phosphoric diester hydrolase activity +7.874389,DRUGBANK:DB00641,http://purl.obolibrary.org/obo/DRUGBANK_DB00641,none +7.8745029,UBERON:0010409,http://purl.obolibrary.org/obo/UBERON_0010409,ocular surface region +7.8747307,PR:000011515,http://purl.obolibrary.org/obo/PR_000011515,nuclear pore complex protein Nup214 +7.8748446,DRUGBANK:DB01708,http://purl.obolibrary.org/obo/DRUGBANK_DB01708,none +7.8753004,GO:0001595,http://purl.obolibrary.org/obo/GO_0001595,angiotensin receptor activity +7.8755284,MONDO:0001879,http://purl.obolibrary.org/obo/MONDO_0001879,anus cancer +7.8757564,MONDO:0012817,http://purl.obolibrary.org/obo/MONDO_0012817,Ewing sarcoma +7.8757564,UBERON:0008962,http://purl.obolibrary.org/obo/UBERON_0008962,forelimb bone +7.8759845,DRUGBANK:DB00709,http://purl.obolibrary.org/obo/DRUGBANK_DB00709,none +7.8759845,MONDO:0000631,http://purl.obolibrary.org/obo/MONDO_0000631,bone benign neoplasm +7.8759845,MONDO:0002913,http://purl.obolibrary.org/obo/MONDO_0002913,cerebellar neoplasm +7.8759845,PR:000036197,http://purl.obolibrary.org/obo/PR_000036197,viral protein +7.8760985,GO:0044434,http://purl.obolibrary.org/obo/GO_0044434,none +7.8764408,UBERON:0015021,http://purl.obolibrary.org/obo/UBERON_0015021,forelimb endochondral element +7.8765549,GO:0022600,http://purl.obolibrary.org/obo/GO_0022600,digestive system process +7.8768973,MONDO:0011382,http://purl.obolibrary.org/obo/MONDO_0011382,sickle cell anemia +7.877354,GO:0009615,http://purl.obolibrary.org/obo/GO_0009615,response to virus +7.877354,MONDO:0020138,http://purl.obolibrary.org/obo/MONDO_0020138,ataxia with dementia +7.877354,SO:0000651,http://purl.obolibrary.org/obo/SO_0000651,cytosolic_LSU_rRNA +7.8774682,CL:1000612,http://purl.obolibrary.org/obo/CL_1000612,kidney corpuscule cell +7.8774682,DRUGBANK:DB00470,http://purl.obolibrary.org/obo/DRUGBANK_DB00470,none +7.8775825,GO:0031253,http://purl.obolibrary.org/obo/GO_0031253,cell projection membrane +7.8789542,GO:0050776,http://purl.obolibrary.org/obo/GO_0050776,regulation of immune response +7.879183,DRUGBANK:DB06728,http://purl.obolibrary.org/obo/DRUGBANK_DB06728,none +7.879183,PR:000005612,http://purl.obolibrary.org/obo/PR_000005612,clathrin light chain A +7.8792974,HP:0000818,http://purl.obolibrary.org/obo/HP_0000818,Abnormality of the endocrine system +7.8800988,MONDO:0018296,http://purl.obolibrary.org/obo/MONDO_0018296,congenital disorder of glycosylation with developmental anomaly +7.8802133,DRUGBANK:DB00479,http://purl.obolibrary.org/obo/DRUGBANK_DB00479,none +7.8803278,DRUGBANK:DB00075,http://purl.obolibrary.org/obo/DRUGBANK_DB00075,none +7.8807861,PR:000006430,http://purl.obolibrary.org/obo/PR_000006430,DNA fragmentation factor subunit beta +7.8810153,MONDO:0037748,http://purl.obolibrary.org/obo/MONDO_0037748,hyperlipoproteinemia +7.8813593,UBERON:0011299,http://purl.obolibrary.org/obo/UBERON_0011299,white matter of telencephalon +7.881818,GO:0060756,http://purl.obolibrary.org/obo/GO_0060756,foraging behavior +7.8819328,PR:000005613,http://purl.obolibrary.org/obo/PR_000005613,clathrin light chain B +7.8825066,GO:0019395,http://purl.obolibrary.org/obo/GO_0019395,fatty acid oxidation +7.8826214,GO:0098743,http://purl.obolibrary.org/obo/GO_0098743,cell aggregation +7.8837702,DRUGBANK:DB02325,http://purl.obolibrary.org/obo/DRUGBANK_DB02325,none +7.88423,CHEBI:52726,http://purl.obolibrary.org/obo/CHEBI_52726,proteasome inhibitor +7.8844601,CL:0000349,http://purl.obolibrary.org/obo/CL_0000349,extraembryonic cell +7.8860717,PR:000025304,http://purl.obolibrary.org/obo/PR_000025304,interferon regulatory factor +7.8865326,PR:000005614,http://purl.obolibrary.org/obo/PR_000005614,clathrin heavy chain 2 +7.8866479,PR:000001970,http://purl.obolibrary.org/obo/PR_000001970,vascular cell adhesion protein 1 +7.8871091,PR:P48523,http://purl.obolibrary.org/obo/PR_P48523,none +7.8873397,MONDO:0001423,http://purl.obolibrary.org/obo/MONDO_0001423,drug-induced mental disorder +7.8873397,PR:Q43735,http://purl.obolibrary.org/obo/PR_Q43735,none +7.8875705,DRUGBANK:DB11598,http://purl.obolibrary.org/obo/DRUGBANK_DB11598,none +7.8875705,PR:000030907,http://purl.obolibrary.org/obo/PR_000030907,clathrin heavy chain 1 +7.8875705,UBERON:0004784,http://purl.obolibrary.org/obo/UBERON_0004784,heart ventricle wall +7.8875705,UBERON:0037144,http://purl.obolibrary.org/obo/UBERON_0037144,wall of heart +7.8876859,GO:0033559,http://purl.obolibrary.org/obo/GO_0033559,unsaturated fatty acid metabolic process +7.8879167,MONDO:0000745,http://purl.obolibrary.org/obo/MONDO_0000745,cardiac arrest +7.8879167,MONDO:0003266,http://purl.obolibrary.org/obo/MONDO_0003266,ependymal tumor +7.8879167,MONDO:0017310,http://purl.obolibrary.org/obo/MONDO_0017310,Marfan and Marfan-related disorder +7.8887249,UBERON:0000168,http://purl.obolibrary.org/obo/UBERON_0000168,proximal-distal subdivision of colon +7.8888405,MONDO:0005303,http://purl.obolibrary.org/obo/MONDO_0005303,drug dependence +7.8894183,UBERON:0001488,http://purl.obolibrary.org/obo/UBERON_0001488,ankle joint +7.8901121,MONDO:0005580,http://purl.obolibrary.org/obo/MONDO_0005580,esophageal squamous cell carcinoma +7.8904592,GO:0007614,http://purl.obolibrary.org/obo/GO_0007614,short-term memory +7.8904592,PR:000006271,http://purl.obolibrary.org/obo/PR_000006271,DAN domain family member 5 +7.8909221,GO:1903046,http://purl.obolibrary.org/obo/GO_1903046,meiotic cell cycle process +7.8911537,HP:0003111,http://purl.obolibrary.org/obo/HP_0003111,Abnormal blood ion concentration +7.8911537,MONDO:0005169,http://purl.obolibrary.org/obo/MONDO_0005169,neoplasm of mature T-cells or NK-cells +7.8926601,MONDO:0015333,http://purl.obolibrary.org/obo/MONDO_0015333,progeroid syndrome +7.8928921,MONDO:0016034,http://purl.obolibrary.org/obo/MONDO_0016034,cleft lip with or without cleft palate +7.8931241,GO:0030030,http://purl.obolibrary.org/obo/GO_0030030,cell projection organization +7.8931241,MONDO:0020045,http://purl.obolibrary.org/obo/MONDO_0020045,autosomal recessive cerebellar ataxia due to a DNA repair defect +7.8941689,MONDO:0007329,http://purl.obolibrary.org/obo/MONDO_0007329,"cirrhosis, familial" +7.894285,PR:000005274,http://purl.obolibrary.org/obo/PR_000005274,cyclin-dependent kinase inhibitor 1 +7.8945174,HP:0000618,http://purl.obolibrary.org/obo/HP_0000618,Blindness +7.8954473,PR:000021972,http://purl.obolibrary.org/obo/PR_000021972,none +7.8957962,PR:P12957,http://purl.obolibrary.org/obo/PR_P12957,none +7.8959126,MONDO:0044983,http://purl.obolibrary.org/obo/MONDO_0044983,benign lipomatous neoplasm +7.8959126,PR:000023452,http://purl.obolibrary.org/obo/PR_000023452,none +7.8960289,GO:0030295,http://purl.obolibrary.org/obo/GO_0030295,protein kinase activator activity +7.8962617,CHEBI:35210,http://purl.obolibrary.org/obo/CHEBI_35210,spin label +7.8962617,MONDO:0017370,http://purl.obolibrary.org/obo/MONDO_0017370,autoinflammatory syndrome with skin involvement +7.8962617,NCBITaxon:10359,http://purl.obolibrary.org/obo/NCBITaxon_10359,Human betaherpesvirus 5 +7.896378,PR:000037797,http://purl.obolibrary.org/obo/PR_000037797,paired box protein PAX +7.8968438,UBERON:0002494,http://purl.obolibrary.org/obo/UBERON_0002494,papillary muscle of heart +7.8975427,UBERON:0018255,http://purl.obolibrary.org/obo/UBERON_0018255,jejunal artery +7.8976593,GO:0004540,http://purl.obolibrary.org/obo/GO_0004540,ribonuclease activity +7.8976593,UBERON:0001004,http://purl.obolibrary.org/obo/UBERON_0001004,respiratory system +7.898009,DRUGBANK:DB00650,http://purl.obolibrary.org/obo/DRUGBANK_DB00650,none +7.899993,MONDO:0002507,http://purl.obolibrary.org/obo/MONDO_0002507,gingival overgrowth +7.9001098,PR:000001376,http://purl.obolibrary.org/obo/PR_000001376,interleukin-18 +7.9006942,MONDO:0001158,http://purl.obolibrary.org/obo/MONDO_0001158,obsessive-compulsive personality disorder +7.9011619,PR:000003271,http://purl.obolibrary.org/obo/PR_000003271,cyclin-dependent kinase 1 +7.9025664,UBERON:0001780,http://purl.obolibrary.org/obo/UBERON_0001780,spinal nerve +7.9026835,MONDO:0005264,http://purl.obolibrary.org/obo/MONDO_0005264,transient ischemic attack +7.903035,UBERON:0005438,http://purl.obolibrary.org/obo/UBERON_0005438,coronary sinus +7.9038556,GO:0004611,http://purl.obolibrary.org/obo/GO_0004611,phosphoenolpyruvate carboxykinase activity +7.9038556,UBERON:0006876,http://purl.obolibrary.org/obo/UBERON_0006876,vasculature of organ +7.9040902,DRUGBANK:DB00438,http://purl.obolibrary.org/obo/DRUGBANK_DB00438,none +7.9043248,DRUGBANK:DB01819,http://purl.obolibrary.org/obo/DRUGBANK_DB01819,none +7.9049116,MONDO:0019098,http://purl.obolibrary.org/obo/MONDO_0019098,autoimmune thrombocytopenia +7.9049116,UBERON:0007616,http://purl.obolibrary.org/obo/UBERON_0007616,layer of synovial tissue +7.9052639,MONDO:0020066,http://purl.obolibrary.org/obo/MONDO_0020066,Ehlers-Danlos syndrome +7.9063214,MONDO:0020270,http://purl.obolibrary.org/obo/MONDO_0020270,pigmentation disorder with eye involvement +7.907027,MONDO:0019256,http://purl.obolibrary.org/obo/MONDO_0019256,sterol metabolism disorder +7.9071447,UBERON:0001869,http://purl.obolibrary.org/obo/UBERON_0001869,cerebral hemisphere +7.9085576,MONDO:0007079,http://purl.obolibrary.org/obo/MONDO_0007079,alcohol dependence +7.9086754,GO:0006836,http://purl.obolibrary.org/obo/GO_0006836,neurotransmitter transport +7.9089112,UBERON:0001182,http://purl.obolibrary.org/obo/UBERON_0001182,superior mesenteric artery +7.9091469,MONDO:0020044,http://purl.obolibrary.org/obo/MONDO_0020044,autosomal recessive metabolic cerebellar ataxia +7.9100905,UBERON:0009835,http://purl.obolibrary.org/obo/UBERON_0009835,anterior cingulate cortex +7.9105627,GO:0070330,http://purl.obolibrary.org/obo/GO_0070330,aromatase activity +7.9118622,MONDO:0019235,http://purl.obolibrary.org/obo/MONDO_0019235,inborn disorder of phenylalanin or tyrosine metabolism +7.9124535,PR:000010688,http://purl.obolibrary.org/obo/PR_000010688,cytochrome c oxidase subunit 1 +7.9125718,MONDO:0005103,http://purl.obolibrary.org/obo/MONDO_0005103,well-differentiated liposarcoma +7.9128084,DRUGBANK:DB00734,http://purl.obolibrary.org/obo/DRUGBANK_DB00734,none +7.9135186,DRUGBANK:DB13242,http://purl.obolibrary.org/obo/DRUGBANK_DB13242,none +7.9138739,MONDO:0001711,http://purl.obolibrary.org/obo/MONDO_0001711,hepatic encephalopathy +7.9142294,CL:0000091,http://purl.obolibrary.org/obo/CL_0000091,Kupffer cell +7.9155337,GO:0031967,http://purl.obolibrary.org/obo/GO_0031967,organelle envelope +7.9161271,UBERON:0003916,http://purl.obolibrary.org/obo/UBERON_0003916,fat pad +7.9162459,MONDO:0016698,http://purl.obolibrary.org/obo/MONDO_0016698,ependymoma +7.9167209,DRUGBANK:DB00072,http://purl.obolibrary.org/obo/DRUGBANK_DB00072,none +7.9171962,DRUGBANK:DB00127,http://purl.obolibrary.org/obo/DRUGBANK_DB00127,none +7.9171962,MONDO:0006097,http://purl.obolibrary.org/obo/MONDO_0006097,atypical lipomatous tumor +7.9175528,CL:0000017,http://purl.obolibrary.org/obo/CL_0000017,spermatocyte +7.9177906,GO:0044236,http://purl.obolibrary.org/obo/GO_0044236,none +7.9192187,PR:000008799,http://purl.obolibrary.org/obo/PR_000008799,heat shock protein HSP 90-alpha +7.9201719,GO:0005743,http://purl.obolibrary.org/obo/GO_0005743,mitochondrial inner membrane +7.9213646,MONDO:0006504,http://purl.obolibrary.org/obo/MONDO_0006504,acquired metabolic disease +7.921484,DRUGBANK:DB00787,http://purl.obolibrary.org/obo/DRUGBANK_DB00787,none +7.921484,MONDO:0006640,http://purl.obolibrary.org/obo/MONDO_0006640,adrenal gland hyperfunction +7.9219615,PR:000044654,http://purl.obolibrary.org/obo/PR_000044654,voltage-gated potassium channel protein +7.9224393,GO:0052742,http://purl.obolibrary.org/obo/GO_0052742,phosphatidylinositol kinase activity +7.9225588,UBERON:0006331,http://purl.obolibrary.org/obo/UBERON_0006331,brainstem nucleus +7.9233956,GO:0016234,http://purl.obolibrary.org/obo/GO_0016234,inclusion body +7.9236348,MONDO:0020058,http://purl.obolibrary.org/obo/MONDO_0020058,gonosome anomaly +7.9243527,PR:000006066,http://purl.obolibrary.org/obo/PR_000006066,stromal cell-derived factor 1 +7.9247119,MONDO:0015588,http://purl.obolibrary.org/obo/MONDO_0015588,limbic encephalitis +7.9248317,MONDO:0020118,http://purl.obolibrary.org/obo/MONDO_0020118,dense granule disease +7.925191,SO:0001566,http://purl.obolibrary.org/obo/SO_0001566,regulatory_region_variant +7.9253108,DRUGBANK:DB02219,http://purl.obolibrary.org/obo/DRUGBANK_DB02219,none +7.9253108,MONDO:0005920,http://purl.obolibrary.org/obo/MONDO_0005920,Plasmodium falciparum malaria +7.92603,MONDO:0006486,http://purl.obolibrary.org/obo/MONDO_0006486,uveal melanoma +7.92603,MONDO:0006513,http://purl.obolibrary.org/obo/MONDO_0006513,estrogen-receptor negative breast cancer +7.9261499,UBERON:0002331,http://purl.obolibrary.org/obo/UBERON_0002331,umbilical cord +7.9262698,UBERON:0001447,http://purl.obolibrary.org/obo/UBERON_0001447,tarsal bone +7.9267497,UBERON:0002099,http://purl.obolibrary.org/obo/UBERON_0002099,cardiac septum +7.9269897,MONDO:0018479,http://purl.obolibrary.org/obo/MONDO_0018479,congenital adrenal hyperplasia +7.9278302,MONDO:0002866,http://purl.obolibrary.org/obo/MONDO_0002866,duodenal disease +7.9286713,MONDO:0001245,http://purl.obolibrary.org/obo/MONDO_0001245,microcytic anemia +7.9290321,DRUGBANK:DB09293,http://purl.obolibrary.org/obo/DRUGBANK_DB09293,none +7.9291523,DRUGBANK:DB02546,http://purl.obolibrary.org/obo/DRUGBANK_DB02546,none +7.9295133,UBERON:0001533,http://purl.obolibrary.org/obo/UBERON_0001533,subclavian artery +7.9296336,GO:1990182,http://purl.obolibrary.org/obo/GO_1990182,exosomal secretion +7.9296336,MONDO:0002279,http://purl.obolibrary.org/obo/MONDO_0002279,iron metabolism disease +7.9298743,PR:000000164,http://purl.obolibrary.org/obo/PR_000000164,BMP2 +7.9299947,PR:000013574,http://purl.obolibrary.org/obo/PR_000013574,sulfhydryl oxidase 1 +7.9304763,MONDO:0004971,http://purl.obolibrary.org/obo/MONDO_0004971,adenoid cystic carcinoma +7.9316814,CL:0000556,http://purl.obolibrary.org/obo/CL_0000556,megakaryocyte +7.931802,CHEBI:24433,http://purl.obolibrary.org/obo/CHEBI_24433,group +7.9319226,DRUGBANK:DB00762,http://purl.obolibrary.org/obo/DRUGBANK_DB00762,none +7.9326465,UBERON:0016884,http://purl.obolibrary.org/obo/UBERON_0016884,shoulder joint +7.932888,MONDO:0016511,http://purl.obolibrary.org/obo/MONDO_0016511,infectious embryofetopathy +7.933371,GO:0071141,http://purl.obolibrary.org/obo/GO_0071141,SMAD protein complex +7.9336126,DRUGBANK:DB00343,http://purl.obolibrary.org/obo/DRUGBANK_DB00343,none +7.934096,PR:000004804,http://purl.obolibrary.org/obo/PR_000004804,breast cancer type 2 susceptibility protein +7.9345796,DRUGBANK:DB00841,http://purl.obolibrary.org/obo/DRUGBANK_DB00841,none +7.9347005,MONDO:0005369,http://purl.obolibrary.org/obo/MONDO_0005369,carcinoid tumor +7.9348215,GO:0048584,http://purl.obolibrary.org/obo/GO_0048584,positive regulation of response to stimulus +7.9348215,MONDO:0020143,http://purl.obolibrary.org/obo/MONDO_0020143,cerebral lipidosis with dementia +7.9353055,DRUGBANK:DB01236,http://purl.obolibrary.org/obo/DRUGBANK_DB01236,none +7.936153,GO:0006690,http://purl.obolibrary.org/obo/GO_0006690,icosanoid metabolic process +7.9367588,CL:0002178,http://purl.obolibrary.org/obo/CL_0002178,epithelial cell of stomach +7.9367588,MONDO:0006617,http://purl.obolibrary.org/obo/MONDO_0006617,vesiculobullous skin disease +7.9371224,MONDO:0004699,http://purl.obolibrary.org/obo/MONDO_0004699,gastrointestinal lymphoma +7.9379715,PR:000005330,http://purl.obolibrary.org/obo/PR_000005330,centromere protein J +7.9380928,DRUGBANK:DB10425,http://purl.obolibrary.org/obo/DRUGBANK_DB10425,none +7.9382142,CL:0002659,http://purl.obolibrary.org/obo/CL_0002659,glandular cell of stomach +7.9382142,PR:000007489,http://purl.obolibrary.org/obo/PR_000007489,fibroblast growth factor 2 +7.9394287,UBERON:0001905,http://purl.obolibrary.org/obo/UBERON_0001905,pineal body +7.9395502,UBERON:0001601,http://purl.obolibrary.org/obo/UBERON_0001601,extra-ocular muscle +7.9402797,UBERON:0002456,http://purl.obolibrary.org/obo/UBERON_0002456,internal thoracic artery +7.9404013,MONDO:0004669,http://purl.obolibrary.org/obo/MONDO_0004669,salivary gland cancer +7.9407663,MONDO:0005334,http://purl.obolibrary.org/obo/MONDO_0005334,hereditary nephritis +7.940888,MONDO:0021638,http://purl.obolibrary.org/obo/MONDO_0021638,low grade astrocytic tumor +7.940888,PR:000037486,http://purl.obolibrary.org/obo/PR_000037486,none +7.9410097,GO:0051246,http://purl.obolibrary.org/obo/GO_0051246,regulation of protein metabolic process +7.9424714,GO:0004679,http://purl.obolibrary.org/obo/GO_0004679,AMP-activated protein kinase activity +7.9428371,GO:0006461,http://purl.obolibrary.org/obo/GO_0006461,none +7.943081,DRUGBANK:DB01786,http://purl.obolibrary.org/obo/DRUGBANK_DB01786,none +7.943203,MONDO:0015490,http://purl.obolibrary.org/obo/MONDO_0015490,predominantly small-vessel vasculitis +7.943569,UBERON:0015050,http://purl.obolibrary.org/obo/UBERON_0015050,tarsus endochondral element +7.9444235,SO:0001877,http://purl.obolibrary.org/obo/SO_0001877,lncRNA +7.9445457,MONDO:0000652,http://purl.obolibrary.org/obo/MONDO_0000652,integumentary system benign neoplasm +7.945401,MONDO:0016685,http://purl.obolibrary.org/obo/MONDO_0016685,low-grade astrocytoma +7.9455233,DRUGBANK:DB00468,http://purl.obolibrary.org/obo/DRUGBANK_DB00468,none +7.9457679,CL:0000082,http://purl.obolibrary.org/obo/CL_0000082,epithelial cell of lung +7.9457679,GO:0051049,http://purl.obolibrary.org/obo/GO_0051049,regulation of transport +7.9458902,HP:0000240,http://purl.obolibrary.org/obo/HP_0000240,Abnormality of skull size +7.9461348,MONDO:0005876,http://purl.obolibrary.org/obo/MONDO_0005876,Nidovirales infectious disease +7.9461348,MONDO:0016120,http://purl.obolibrary.org/obo/MONDO_0016120,myotonic syndrome +7.9465019,MONDO:0020642,http://purl.obolibrary.org/obo/MONDO_0020642,polycystic kidney disease +7.9467467,GO:0120254,http://purl.obolibrary.org/obo/GO_0120254,olefinic compound metabolic process +7.9472365,MONDO:0018389,http://purl.obolibrary.org/obo/MONDO_0018389,male infertility due to gonadal dysgenesis or sperm disorder +7.9477265,GO:0007616,http://purl.obolibrary.org/obo/GO_0007616,long-term memory +7.9477265,MONDO:0004953,http://purl.obolibrary.org/obo/MONDO_0004953,invasive ductal breast carcinoma +7.9485846,GO:0005635,http://purl.obolibrary.org/obo/GO_0005635,nuclear envelope +7.9488299,MONDO:0019954,http://purl.obolibrary.org/obo/MONDO_0019954,pancreatic neuroendocrine tumor +7.9494434,PR:000001024,http://purl.obolibrary.org/obo/PR_000001024,neural cell adhesion molecule 1 +7.950303,HP:0000370,http://purl.obolibrary.org/obo/HP_0000370,Abnormality of the middle ear +7.9506716,DRUGBANK:DB11562,http://purl.obolibrary.org/obo/DRUGBANK_DB11562,none +7.9511633,GO:0006644,http://purl.obolibrary.org/obo/GO_0006644,phospholipid metabolic process +7.9514093,GO:0022843,http://purl.obolibrary.org/obo/GO_0022843,voltage-gated cation channel activity +7.9519013,DRUGBANK:DB15236,http://purl.obolibrary.org/obo/DRUGBANK_DB15236,none +7.9526399,HP:0012210,http://purl.obolibrary.org/obo/HP_0012210,Abnormal renal morphology +7.9526399,MONDO:0005567,http://purl.obolibrary.org/obo/MONDO_0005567,substance withdrawal syndrome +7.952763,DRUGBANK:DB13191,http://purl.obolibrary.org/obo/DRUGBANK_DB13191,none +7.9528862,MONDO:0004782,http://purl.obolibrary.org/obo/MONDO_0004782,diabetes insipidus +7.953379,SO:0000010,http://purl.obolibrary.org/obo/SO_0000010,protein_coding +7.9537487,DRUGBANK:DB01167,http://purl.obolibrary.org/obo/DRUGBANK_DB01167,none +7.9554761,MONDO:0024431,http://purl.obolibrary.org/obo/MONDO_0024431,bilirubin metabolism disease +7.9555996,DRUGBANK:DB02010,http://purl.obolibrary.org/obo/DRUGBANK_DB02010,none +7.9557231,DRUGBANK:DB03566,http://purl.obolibrary.org/obo/DRUGBANK_DB03566,none +7.9557231,PR:000008737,http://purl.obolibrary.org/obo/PR_000008737,Hermansky-Pudlak syndrome 3 protein +7.9558466,MONDO:0016177,http://purl.obolibrary.org/obo/MONDO_0016177,systemic inflammatory disease associated with an acquired peripheral neuropathy +7.9565881,MONDO:0044335,http://purl.obolibrary.org/obo/MONDO_0044335,benign soft tissue neoplasm +7.9568354,UBERON:0008930,http://purl.obolibrary.org/obo/UBERON_0008930,somatosensory cortex +7.9570827,MONDO:0013209,http://purl.obolibrary.org/obo/MONDO_0013209,non-alcoholic fatty liver disease +7.9580727,DRUGBANK:DB00678,http://purl.obolibrary.org/obo/DRUGBANK_DB00678,none +7.958568,PR:Q90474,http://purl.obolibrary.org/obo/PR_Q90474,none +7.9589397,MONDO:0002724,http://purl.obolibrary.org/obo/MONDO_0002724,mast cell neoplasm +7.9590636,DRUGBANK:DB02967,http://purl.obolibrary.org/obo/DRUGBANK_DB02967,none +7.9595595,CL:0000322,http://purl.obolibrary.org/obo/CL_0000322,pneumocyte +7.9595595,MONDO:0021004,http://purl.obolibrary.org/obo/MONDO_0021004,brachydactyly +7.9601796,HP:0000572,http://purl.obolibrary.org/obo/HP_0000572,Visual loss +7.9601796,MONDO:0011849,http://purl.obolibrary.org/obo/MONDO_0011849,psoriatic arthritis +7.9601796,UBERON:0009854,http://purl.obolibrary.org/obo/UBERON_0009854,digestive tract diverticulum +7.9605519,MONDO:0001318,http://purl.obolibrary.org/obo/MONDO_0001318,functional gastric disease +7.9610485,HP:0007364,http://purl.obolibrary.org/obo/HP_0007364,Aplasia/Hypoplasia of the cerebrum +7.9614211,NCBITaxon:76804,http://purl.obolibrary.org/obo/NCBITaxon_76804,Nidovirales +7.9616696,UBERON:0001736,http://purl.obolibrary.org/obo/UBERON_0001736,submandibular gland +7.9620424,GO:0004806,http://purl.obolibrary.org/obo/GO_0004806,triglyceride lipase activity +7.9625397,DRUGBANK:DB14307,http://purl.obolibrary.org/obo/DRUGBANK_DB14307,none +7.9625397,MONDO:0005523,http://purl.obolibrary.org/obo/MONDO_0005523,steroid inherited metabolic disorder +7.9626641,DRUGBANK:DB00747,http://purl.obolibrary.org/obo/DRUGBANK_DB00747,none +7.9626641,DRUGBANK:DB10626,http://purl.obolibrary.org/obo/DRUGBANK_DB10626,none +7.9631617,GO:1902653,http://purl.obolibrary.org/obo/GO_1902653,secondary alcohol biosynthetic process +7.9636596,MONDO:0024288,http://purl.obolibrary.org/obo/MONDO_0024288,hyperbilirubinemia +7.9651548,GO:0005017,http://purl.obolibrary.org/obo/GO_0005017,platelet-derived growth factor-activated receptor activity +7.9652795,MONDO:0004907,http://purl.obolibrary.org/obo/MONDO_0004907,alopecia +7.9654042,UBERON:0001874,http://purl.obolibrary.org/obo/UBERON_0001874,putamen +7.9655289,MONDO:0000601,http://purl.obolibrary.org/obo/MONDO_0000601,autoimmune disease of urogenital tract +7.9662776,UBERON:0008200,http://purl.obolibrary.org/obo/UBERON_0008200,forehead +7.9665273,PR:000005308,http://purl.obolibrary.org/obo/PR_000005308,CCAAT/enhancer-binding protein beta +7.966777,MONDO:0019066,http://purl.obolibrary.org/obo/MONDO_0019066,syndrome with brachydactyly +7.9669019,MONDO:0006626,http://purl.obolibrary.org/obo/MONDO_0006626,diabetic neuropathy +7.9669019,MONDO:0017169,http://purl.obolibrary.org/obo/MONDO_0017169,multiple endocrine neoplasia +7.9672767,MONDO:0001519,http://purl.obolibrary.org/obo/MONDO_0001519,entropion +7.9672767,MONDO:0020703,http://purl.obolibrary.org/obo/MONDO_0020703,erythroid neoplasm +7.9674017,GO:0006766,http://purl.obolibrary.org/obo/GO_0006766,vitamin metabolic process +7.9676516,MONDO:0005001,http://purl.obolibrary.org/obo/MONDO_0005001,chronic gastritis +7.9681518,MONDO:0005494,http://purl.obolibrary.org/obo/MONDO_0005494,triple-negative breast carcinoma +7.9681518,MONDO:0019142,http://purl.obolibrary.org/obo/MONDO_0019142,inherited porphyria +7.9687773,PR:000001138,http://purl.obolibrary.org/obo/PR_000001138,interleukin-17A +7.9687773,PR:000022937,http://purl.obolibrary.org/obo/PR_000022937,none +7.9689024,PR:000007312,http://purl.obolibrary.org/obo/PR_000007312,"fatty acid-binding protein, adipocyte" +7.9690276,MONDO:0020159,http://purl.obolibrary.org/obo/MONDO_0020159,congenital entropion +7.9691528,PR:000014888,http://purl.obolibrary.org/obo/PR_000014888,NAD-dependent protein deacetylase sirtuin-1 +7.969278,PR:000010267,http://purl.obolibrary.org/obo/PR_000010267,E3 ubiquitin-protein ligase Mdm2 +7.9695284,MOP:0000030,http://purl.obolibrary.org/obo/MOP_0000030,none +7.9704054,MONDO:0015594,http://purl.obolibrary.org/obo/MONDO_0015594,non-paraneoplastic limbic encephalitis +7.9704054,MONDO:0015595,http://purl.obolibrary.org/obo/MONDO_0015595,posttransplant acute limbic encephalitis +7.9709069,PR:000001432,http://purl.obolibrary.org/obo/PR_000001432,P-selectin +7.9714087,PR:P54651,http://purl.obolibrary.org/obo/PR_P54651,none +7.9715342,DRUGBANK:DB13959,http://purl.obolibrary.org/obo/DRUGBANK_DB13959,none +7.9715342,PR:P02829,http://purl.obolibrary.org/obo/PR_P02829,none +7.9717852,GO:0002573,http://purl.obolibrary.org/obo/GO_0002573,myeloid leukocyte differentiation +7.9720362,DRUGBANK:DB00493,http://purl.obolibrary.org/obo/DRUGBANK_DB00493,none +7.9730411,PR:000022369,http://purl.obolibrary.org/obo/PR_000022369,none +7.9734182,HP:0002167,http://purl.obolibrary.org/obo/HP_0002167,Neurological speech impairment +7.9736697,SO:0001039,http://purl.obolibrary.org/obo/SO_0001039,integrated_mobile_genetic_element +7.9742987,DRUGBANK:DB01076,http://purl.obolibrary.org/obo/DRUGBANK_DB01076,none +7.9745504,MONDO:0004496,http://purl.obolibrary.org/obo/MONDO_0004496,myocarditis +7.9746763,MONDO:0018292,http://purl.obolibrary.org/obo/MONDO_0018292,congenital disorder of glycosylation-related bone disorder +7.9753059,DRUGBANK:DB00334,http://purl.obolibrary.org/obo/DRUGBANK_DB00334,none +7.9758098,DRUGBANK:DB01390,http://purl.obolibrary.org/obo/DRUGBANK_DB01390,none +7.9769447,GO:0009611,http://purl.obolibrary.org/obo/GO_0009611,response to wounding +7.9773233,MONDO:0030700,http://purl.obolibrary.org/obo/MONDO_0030700,autoimmune glomerulonephritis +7.9774495,PR:000013662,http://purl.obolibrary.org/obo/PR_000013662,Ras-related C3 botulinum toxin substrate 3 +7.977702,UBERON:0001489,http://purl.obolibrary.org/obo/UBERON_0001489,manus joint +7.9779545,CL:0002131,http://purl.obolibrary.org/obo/CL_0002131,regular ventricular cardiac myocyte +7.9779545,DRUGBANK:DB10345,http://purl.obolibrary.org/obo/DRUGBANK_DB10345,none +7.9779545,MONDO:0004981,http://purl.obolibrary.org/obo/MONDO_0004981,atrial fibrillation +7.9782072,GO:0006913,http://purl.obolibrary.org/obo/GO_0006913,nucleocytoplasmic transport +7.9798508,MONDO:0009025,http://purl.obolibrary.org/obo/MONDO_0009025,apparent mineralocorticoid excess +7.9801039,UBERON:0004252,http://purl.obolibrary.org/obo/UBERON_0004252,hindlimb stylopod muscle +7.9802304,DRUGBANK:DB00338,http://purl.obolibrary.org/obo/DRUGBANK_DB00338,none +7.9808635,GO:0016303,http://purl.obolibrary.org/obo/GO_0016303,1-phosphatidylinositol-3-kinase activity +7.9809902,MONDO:0018035,http://purl.obolibrary.org/obo/MONDO_0018035,syndrome with combined immunodeficiency +7.9816238,MONDO:0000412,http://purl.obolibrary.org/obo/MONDO_0000412,neonatal period electroclinical syndrome +7.9816238,MONDO:0005566,http://purl.obolibrary.org/obo/MONDO_0005566,neonatal abstinence syndrome +7.9822578,MONDO:0000616,http://purl.obolibrary.org/obo/MONDO_0000616,progesterone-receptor negative breast cancer +7.9823846,GO:0016627,http://purl.obolibrary.org/obo/GO_0016627,"oxidoreductase activity, acting on the CH-CH group of donors" +7.9823846,UBERON:0000009,http://purl.obolibrary.org/obo/UBERON_0000009,submucosa +7.9830191,NCBITaxon:12637,http://purl.obolibrary.org/obo/NCBITaxon_12637,Dengue virus +7.9830191,UBERON:0014395,http://purl.obolibrary.org/obo/UBERON_0014395,proximal mesopodial bone +7.9830191,UBERON:0017750,http://purl.obolibrary.org/obo/UBERON_0017750,proximal mesopodial endochondral element +7.983273,MONDO:0004680,http://purl.obolibrary.org/obo/MONDO_0004680,primary thrombocytopenia +7.983781,GO:0010556,http://purl.obolibrary.org/obo/GO_0010556,regulation of macromolecule biosynthetic process +7.9844164,GO:0005007,http://purl.obolibrary.org/obo/GO_0005007,fibroblast growth factor-activated receptor activity +7.9847978,MONDO:0015083,http://purl.obolibrary.org/obo/MONDO_0015083,nuclear oculomotor paralysis +7.9847978,MONDO:0024317,http://purl.obolibrary.org/obo/MONDO_0024317,chronic pain syndrome +7.9859429,GO:0042755,http://purl.obolibrary.org/obo/GO_0042755,eating behavior +7.9863249,DRUGBANK:DB10610,http://purl.obolibrary.org/obo/DRUGBANK_DB10610,none +7.9864523,GO:0097223,http://purl.obolibrary.org/obo/GO_0097223,none +7.9864523,MONDO:0000618,http://purl.obolibrary.org/obo/MONDO_0000618,Her2-receptor negative breast cancer +7.9865797,DRUGBANK:DB12337,http://purl.obolibrary.org/obo/DRUGBANK_DB12337,none +7.9873443,UBERON:0001153,http://purl.obolibrary.org/obo/UBERON_0001153,caecum +7.9874718,GO:0009991,http://purl.obolibrary.org/obo/GO_0009991,response to extracellular stimulus +7.9883647,DRUGBANK:DB03793,http://purl.obolibrary.org/obo/DRUGBANK_DB03793,none +7.9884923,CL:0000855,http://purl.obolibrary.org/obo/CL_0000855,sensory hair cell +7.98862,UBERON:0002542,http://purl.obolibrary.org/obo/UBERON_0002542,scale +7.9891307,DRUGBANK:DB04297,http://purl.obolibrary.org/obo/DRUGBANK_DB04297,none +7.9893861,MONDO:0017706,http://purl.obolibrary.org/obo/MONDO_0017706,disorder of carbohydrate absorption and transport +7.9893861,NCBITaxon:11052,http://purl.obolibrary.org/obo/NCBITaxon_11052,Dengue virus group +7.9897695,PR:000000029,http://purl.obolibrary.org/obo/PR_000000029,thrombospondin subgroup A +7.9907923,GO:1901659,http://purl.obolibrary.org/obo/GO_1901659,glycosyl compound biosynthetic process +7.9918163,CHEBI:61445,http://purl.obolibrary.org/obo/CHEBI_61445,poly(amide) polymer +7.9920724,GO:0045054,http://purl.obolibrary.org/obo/GO_0045054,constitutive secretory pathway +7.9922005,MONDO:0043209,http://purl.obolibrary.org/obo/MONDO_0043209,albinism +7.9924568,UBERON:0008230,http://purl.obolibrary.org/obo/UBERON_0008230,tibialis +7.9925849,CHEBI:25614,http://purl.obolibrary.org/obo/CHEBI_25614,nylons +7.9927131,GO:0097164,http://purl.obolibrary.org/obo/GO_0097164,ammonium ion metabolic process +7.9927131,PR:000002087,http://purl.obolibrary.org/obo/PR_000002087,signal transducer and activator of transcription 1 +7.9930977,MONDO:0005804,http://purl.obolibrary.org/obo/MONDO_0005804,hyperprolactinemia +7.9933541,PR:000010469,http://purl.obolibrary.org/obo/PR_000010469,interstitial collagenase +7.9934824,MONDO:0003113,http://purl.obolibrary.org/obo/MONDO_0003113,extragonadal germ cell cancer +7.9934824,MONDO:0004957,http://purl.obolibrary.org/obo/MONDO_0004957,mucinous adenocarcinoma +7.9943807,MONDO:0018134,http://purl.obolibrary.org/obo/MONDO_0018134,disorder of melanin metabolism +7.9943807,MONDO:0020275,http://purl.obolibrary.org/obo/MONDO_0020275,oculocutaneous or ocular albinism +7.9951513,UBERON:0001280,http://purl.obolibrary.org/obo/UBERON_0001280,liver parenchyma +7.9956654,CHEBI:36586,http://purl.obolibrary.org/obo/CHEBI_36586,carbonyl compound +7.995794,CHEBI:36587,http://purl.obolibrary.org/obo/CHEBI_36587,organic oxo compound +7.9960511,SO:0000286,http://purl.obolibrary.org/obo/SO_0000286,long_terminal_repeat +7.996823,PR:000002001,http://purl.obolibrary.org/obo/PR_000002001,receptor-type tyrosine-protein kinase FLT3 +7.9969517,MONDO:0002806,http://purl.obolibrary.org/obo/MONDO_0002806,bronchogenic carcinoma +7.9970805,PR:000013660,http://purl.obolibrary.org/obo/PR_000013660,Ras-related C3 botulinum toxin substrate 1 +7.997982,GO:0031100,http://purl.obolibrary.org/obo/GO_0031100,animal organ regeneration +7.997982,MONDO:0015758,http://purl.obolibrary.org/obo/MONDO_0015758,primary cutaneous T-cell lymphoma +7.9986265,UBERON:0001806,http://purl.obolibrary.org/obo/UBERON_0001806,sympathetic ganglion +7.9994003,DRUGBANK:DB00766,http://purl.obolibrary.org/obo/DRUGBANK_DB00766,none +7.9995294,CL:0002328,http://purl.obolibrary.org/obo/CL_0002328,bronchial epithelial cell +7.9995294,DRUGBANK:DB00638,http://purl.obolibrary.org/obo/DRUGBANK_DB00638,none +8.0001748,MONDO:0016998,http://purl.obolibrary.org/obo/MONDO_0016998,complex chromosomal rearrangement +8.0001748,NCBITaxon:35325,http://purl.obolibrary.org/obo/NCBITaxon_35325,dsRNA viruses +8.0004331,GO:0019230,http://purl.obolibrary.org/obo/GO_0019230,proprioception +8.0004331,PR:Q38912,http://purl.obolibrary.org/obo/PR_Q38912,none +8.0008207,UBERON:0005897,http://purl.obolibrary.org/obo/UBERON_0005897,manus bone +8.0012084,SO:0000250,http://purl.obolibrary.org/obo/SO_0000250,modified_RNA_base_feature +8.001467,MONDO:0008345,http://purl.obolibrary.org/obo/MONDO_0008345,idiopathic pulmonary fibrosis +8.0019843,PR:000050007,http://purl.obolibrary.org/obo/PR_000050007,E2F protein +8.0021137,MONDO:0016800,http://purl.obolibrary.org/obo/MONDO_0016800,mitochondrial membrane transport disorder +8.0025019,UBERON:0003897,http://purl.obolibrary.org/obo/UBERON_0003897,axial muscle +8.0026314,GO:0072522,http://purl.obolibrary.org/obo/GO_0072522,purine-containing compound biosynthetic process +8.0027608,PR:Q9ZR72,http://purl.obolibrary.org/obo/PR_Q9ZR72,none +8.0031493,PR:000001201,http://purl.obolibrary.org/obo/PR_000001201,C-C chemokine receptor type 5 +8.0034084,PR:Q03206,http://purl.obolibrary.org/obo/PR_Q03206,none +8.0035379,MONDO:0005556,http://purl.obolibrary.org/obo/MONDO_0005556,lupus nephritis +8.0044453,MONDO:0020164,http://purl.obolibrary.org/obo/MONDO_0020164,epicanthal fold +8.0044453,MONDO:0020165,http://purl.obolibrary.org/obo/MONDO_0020165,syndromic epicanthus +8.0047047,SO:1000044,http://purl.obolibrary.org/obo/SO_1000044,chromosomal_translocation +8.0049642,HP:0003202,http://purl.obolibrary.org/obo/HP_0003202,Skeletal muscle atrophy +8.0049642,HP:0030236,http://purl.obolibrary.org/obo/HP_0030236,Abnormality of muscle size +8.0050939,UBERON:0001040,http://purl.obolibrary.org/obo/UBERON_0001040,yolk sac +8.0052237,DRUGBANK:DB14740,http://purl.obolibrary.org/obo/DRUGBANK_DB14740,none +8.0053535,GO:0099643,http://purl.obolibrary.org/obo/GO_0099643,signal release from synapse +8.0054833,MONDO:0003019,http://purl.obolibrary.org/obo/MONDO_0003019,potassium deficiency disease +8.0058729,GO:0003810,http://purl.obolibrary.org/obo/GO_0003810,protein-glutamine gamma-glutamyltransferase activity +8.0061326,MONDO:0015929,http://purl.obolibrary.org/obo/MONDO_0015929,thoracic malformation +8.0061326,PR:000004960,http://purl.obolibrary.org/obo/PR_000004960,cell adhesion molecule 1 +8.0063925,DRUGBANK:DB02263,http://purl.obolibrary.org/obo/DRUGBANK_DB02263,none +8.0073025,DRUGBANK:DB10569,http://purl.obolibrary.org/obo/DRUGBANK_DB10569,none +8.0075626,GO:0097305,http://purl.obolibrary.org/obo/GO_0097305,response to alcohol +8.0076927,MONDO:0002268,http://purl.obolibrary.org/obo/MONDO_0002268,dyspepsia +8.0084736,PR:000050043,http://purl.obolibrary.org/obo/PR_000050043,lymphotoxin +8.0091249,MONDO:0015163,http://purl.obolibrary.org/obo/MONDO_0015163,primary glomerular disease +8.0092552,MONDO:0016801,http://purl.obolibrary.org/obo/MONDO_0016801,mitochondrial substrate carrier disorder +8.0096462,MONDO:0021360,http://purl.obolibrary.org/obo/MONDO_0021360,tumor of parathyroid gland +8.0104287,PR:000016801,http://purl.obolibrary.org/obo/PR_000016801,transthyretin +8.0104287,UBERON:0001347,http://purl.obolibrary.org/obo/UBERON_0001347,white adipose tissue +8.0110812,MONDO:0002488,http://purl.obolibrary.org/obo/MONDO_0002488,intraductal breast neoplasm +8.0110812,MONDO:0016022,http://purl.obolibrary.org/obo/MONDO_0016022,early myoclonic encephalopathy +8.0112118,MONDO:0006325,http://purl.obolibrary.org/obo/MONDO_0006325,ocular melanoma +8.0114729,MONDO:0004007,http://purl.obolibrary.org/obo/MONDO_0004007,breast intraductal proliferative lesion +8.0121261,GO:0042440,http://purl.obolibrary.org/obo/GO_0042440,pigment metabolic process +8.0121261,MONDO:0001357,http://purl.obolibrary.org/obo/MONDO_0001357,hypochromic anemia +8.0122568,MONDO:0019226,http://purl.obolibrary.org/obo/MONDO_0019226,glucose transport disorder +8.0127798,MONDO:0005593,http://purl.obolibrary.org/obo/MONDO_0005593,chronic periodontitis +8.0127798,MONDO:0045015,http://purl.obolibrary.org/obo/MONDO_0045015,carbohydrate transport disease +8.0134338,SO:1000031,http://purl.obolibrary.org/obo/SO_1000031,interchromosomal_mutation +8.0139574,DRUGBANK:DB11193,http://purl.obolibrary.org/obo/DRUGBANK_DB11193,none +8.0142193,GO:0004683,http://purl.obolibrary.org/obo/GO_0004683,calmodulin-dependent protein kinase activity +8.0144812,SO:0000859,http://purl.obolibrary.org/obo/SO_0000859,paralogous +8.0150053,CL:0000568,http://purl.obolibrary.org/obo/CL_0000568,amine precursor uptake and decarboxylation cell +8.0151364,PR:000001415,http://purl.obolibrary.org/obo/PR_000001415,E-selectin +8.0156609,PR:000044666,http://purl.obolibrary.org/obo/PR_000044666,ionotropic glutamate receptor protein +8.0164481,MONDO:0006510,http://purl.obolibrary.org/obo/MONDO_0006510,renal tubular transport disease +8.0169732,PR:000006685,http://purl.obolibrary.org/obo/PR_000006685,protein Dr1 +8.0174986,MONDO:0005383,http://purl.obolibrary.org/obo/MONDO_0005383,panic disorder +8.0180243,PR:000013192,http://purl.obolibrary.org/obo/PR_000013192,peroxiredoxin-2 +8.0184188,GO:1902582,http://purl.obolibrary.org/obo/GO_1902582,none +8.0197347,MONDO:0001572,http://purl.obolibrary.org/obo/MONDO_0001572,leiomyoma +8.0199981,MONDO:0004656,http://purl.obolibrary.org/obo/MONDO_0004656,rubella +8.0201299,CL:0000199,http://purl.obolibrary.org/obo/CL_0000199,mechanoreceptor cell +8.0201299,DRUGBANK:DB03345,http://purl.obolibrary.org/obo/DRUGBANK_DB03345,none +8.0210524,HP:0001298,http://purl.obolibrary.org/obo/HP_0001298,Encephalopathy +8.0210524,PR:000009978,http://purl.obolibrary.org/obo/PR_000009978,lactotransferrin +8.0213162,NCBITaxon:353212,http://purl.obolibrary.org/obo/NCBITaxon_353212,none +8.0213162,PR:000021999,http://purl.obolibrary.org/obo/PR_000021999,death receptor +8.0214481,MONDO:0020596,http://purl.obolibrary.org/obo/MONDO_0020596,mucin-producing carcinoma +8.02158,DRUGBANK:DB00975,http://purl.obolibrary.org/obo/DRUGBANK_DB00975,none +8.0218439,GO:0004998,http://purl.obolibrary.org/obo/GO_0004998,transferrin receptor activity +8.0218439,MONDO:0021440,http://purl.obolibrary.org/obo/MONDO_0021440,benign neoplasm of skin +8.0219758,GO:0032963,http://purl.obolibrary.org/obo/GO_0032963,collagen metabolic process +8.0225039,UBERON:0001143,http://purl.obolibrary.org/obo/UBERON_0001143,hepatic vein +8.022636,GO:0004102,http://purl.obolibrary.org/obo/GO_0004102,choline O-acetyltransferase activity +8.022636,PR:000005404,http://purl.obolibrary.org/obo/PR_000005404,choline O-acetyltransferase +8.022768,GO:0006164,http://purl.obolibrary.org/obo/GO_0006164,purine nucleotide biosynthetic process +8.0231644,DRUGBANK:DB00746,http://purl.obolibrary.org/obo/DRUGBANK_DB00746,none +8.0235608,UBERON:0010164,http://purl.obolibrary.org/obo/UBERON_0010164,collection of hairs +8.0239575,MONDO:0016225,http://purl.obolibrary.org/obo/MONDO_0016225,specific learning disability +8.0240897,CL:0000098,http://purl.obolibrary.org/obo/CL_0000098,sensory epithelial cell +8.0240897,MONDO:0017369,http://purl.obolibrary.org/obo/MONDO_0017369,autoinflammatory syndrome with immune deficiency +8.0244866,DRUGBANK:DB02133,http://purl.obolibrary.org/obo/DRUGBANK_DB02133,none +8.0247512,MONDO:0015222,http://purl.obolibrary.org/obo/MONDO_0015222,syndromic respiratory or mediastinal malformation +8.025016,DRUGBANK:DB00551,http://purl.obolibrary.org/obo/DRUGBANK_DB00551,none +8.0255456,CL:0000107,http://purl.obolibrary.org/obo/CL_0000107,autonomic neuron +8.0256781,MONDO:0021661,http://purl.obolibrary.org/obo/MONDO_0021661,coronary atherosclerosis +8.0271363,CL:0000813,http://purl.obolibrary.org/obo/CL_0000813,memory T cell +8.0271363,PR:000001290,http://purl.obolibrary.org/obo/PR_000001290,B7-related protein +8.0275344,GO:0044454,http://purl.obolibrary.org/obo/GO_0044454,none +8.0276671,DRUGBANK:DB01004,http://purl.obolibrary.org/obo/DRUGBANK_DB01004,none +8.0277998,MONDO:0000248,http://purl.obolibrary.org/obo/MONDO_0000248,dengue shock syndrome +8.0279326,SO:0000988,http://purl.obolibrary.org/obo/SO_0000988,circular +8.0281981,PR:000001555,http://purl.obolibrary.org/obo/PR_000001555,somatostatin receptor +8.0287295,MONDO:0002300,http://purl.obolibrary.org/obo/MONDO_0002300,dermis tumor +8.0295271,GO:0051128,http://purl.obolibrary.org/obo/GO_0051128,regulation of cellular component organization +8.029793,MONDO:0006106,http://purl.obolibrary.org/obo/MONDO_0006106,benign smooth muscle neoplasm +8.0301922,DRUGBANK:DB03766,http://purl.obolibrary.org/obo/DRUGBANK_DB03766,none +8.0305914,CL:0010003,http://purl.obolibrary.org/obo/CL_0010003,epithelial cell of alveolus of lung +8.0308577,MONDO:0015134,http://purl.obolibrary.org/obo/MONDO_0015134,constitutional neutropenia +8.0312573,MONDO:0019704,http://purl.obolibrary.org/obo/MONDO_0019704,primary bone dysplasia with decreased bone density +8.0313905,MONDO:0010371,http://purl.obolibrary.org/obo/MONDO_0010371,Aland island eye disease +8.0315237,PR:000030465,http://purl.obolibrary.org/obo/PR_000030465,C4b-binding protein alpha chain +8.0317902,MONDO:0020065,http://purl.obolibrary.org/obo/MONDO_0020065,combined dystonia +8.0317902,UBERON:0000409,http://purl.obolibrary.org/obo/UBERON_0000409,serous gland +8.0327236,MONDO:0016226,http://purl.obolibrary.org/obo/MONDO_0016226,specific language disorder +8.0332574,MONDO:0007243,http://purl.obolibrary.org/obo/MONDO_0007243,Burkitt lymphoma +8.033925,DRUGBANK:DB00207,http://purl.obolibrary.org/obo/DRUGBANK_DB00207,none +8.0340586,HP:0045005,http://purl.obolibrary.org/obo/HP_0045005,Neural tube defect +8.0340586,PR:000029192,http://purl.obolibrary.org/obo/PR_000029192,G2/mitotic-specific cyclin-B +8.0341922,GO:0070482,http://purl.obolibrary.org/obo/GO_0070482,response to oxygen levels +8.0341922,MONDO:0008558,http://purl.obolibrary.org/obo/MONDO_0008558,autoimmune thrombocytopenic purpura +8.0353953,DRUGBANK:DB01042,http://purl.obolibrary.org/obo/DRUGBANK_DB01042,none +8.0353953,DRUGBANK:DB14189,http://purl.obolibrary.org/obo/DRUGBANK_DB14189,none +8.0356629,GO:0009260,http://purl.obolibrary.org/obo/GO_0009260,ribonucleotide biosynthetic process +8.0356629,GO:0046390,http://purl.obolibrary.org/obo/GO_0046390,ribose phosphate biosynthetic process +8.0357967,GO:0016620,http://purl.obolibrary.org/obo/GO_0016620,"oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor" +8.0365999,MONDO:0002872,http://purl.obolibrary.org/obo/MONDO_0002872,trophoblastic neoplasm +8.0374037,GO:0004971,http://purl.obolibrary.org/obo/GO_0004971,AMPA glutamate receptor activity +8.0376718,MONDO:0002708,http://purl.obolibrary.org/obo/MONDO_0002708,retinitis +8.0376718,MONDO:0007950,http://purl.obolibrary.org/obo/MONDO_0007950,mastocytosis +8.03794,DRUGBANK:DB01041,http://purl.obolibrary.org/obo/DRUGBANK_DB01041,none +8.0380741,UBERON:0006853,http://purl.obolibrary.org/obo/UBERON_0006853,renal cortex tubule +8.0382082,CL:2000032,http://purl.obolibrary.org/obo/CL_2000032,peripheral nervous system neuron +8.0386107,CL:0000899,http://purl.obolibrary.org/obo/CL_0000899,T-helper 17 cell +8.0386107,PR:000001403,http://purl.obolibrary.org/obo/PR_000001403,tetraspanin +8.0388792,MONDO:0005388,http://purl.obolibrary.org/obo/MONDO_0005388,primary biliary cholangitis +8.0392819,MONDO:0020132,http://purl.obolibrary.org/obo/MONDO_0020132,cranial nerve and nuclear aplasia +8.0395505,MONDO:0015709,http://purl.obolibrary.org/obo/MONDO_0015709,immunodeficiency syndrome with autoimmunity +8.0395505,NCBITaxon:11071,http://purl.obolibrary.org/obo/NCBITaxon_11071,Japanese encephalitis virus group +8.0400879,GO:0061744,http://purl.obolibrary.org/obo/GO_0061744,motor behavior +8.0400879,MONDO:0037736,http://purl.obolibrary.org/obo/MONDO_0037736,infratentorial neoplasm +8.0404912,CL:0000166,http://purl.obolibrary.org/obo/CL_0000166,chromaffin cell +8.0407601,MONDO:0020674,http://purl.obolibrary.org/obo/MONDO_0020674,vascular insufficiency disorder +8.0417019,MONDO:0003510,http://purl.obolibrary.org/obo/MONDO_0003510,malignant testicular germ cell tumor +8.0426446,SO:0000336,http://purl.obolibrary.org/obo/SO_0000336,pseudogene +8.0433185,GO:0007269,http://purl.obolibrary.org/obo/GO_0007269,neurotransmitter secretion +8.0433185,MONDO:0005023,http://purl.obolibrary.org/obo/MONDO_0005023,ductal breast carcinoma in situ +8.043858,MONDO:0002405,http://purl.obolibrary.org/obo/MONDO_0002405,hepatic vascular disease +8.0445327,MONDO:0021027,http://purl.obolibrary.org/obo/MONDO_0021027,genetic hair anomaly +8.0456132,SO:0000732,http://purl.obolibrary.org/obo/SO_0000732,predicted +8.0460187,PR:000007840,http://purl.obolibrary.org/obo/PR_000007840,glyceraldehyde-3-phosphate dehydrogenase +8.0461539,SO:0000910,http://purl.obolibrary.org/obo/SO_0000910,orphan +8.0466949,CHEBI:35469,http://purl.obolibrary.org/obo/CHEBI_35469,antidepressant +8.0466949,PR:Q9LJX0,http://purl.obolibrary.org/obo/PR_Q9LJX0,none +8.0473715,GO:0044432,http://purl.obolibrary.org/obo/GO_0044432,none +8.0475069,PR:000003252,http://purl.obolibrary.org/obo/PR_000003252,antithrombin-III +8.0480486,MONDO:0007473,http://purl.obolibrary.org/obo/MONDO_0007473,Duane retraction syndrome +8.0481841,MONDO:0019127,http://purl.obolibrary.org/obo/MONDO_0019127,polymyositis +8.0494042,GO:0005977,http://purl.obolibrary.org/obo/GO_0005977,glycogen metabolic process +8.0498112,CHEBI:36044,http://purl.obolibrary.org/obo/CHEBI_36044,antiviral drug +8.0502184,GO:0042446,http://purl.obolibrary.org/obo/GO_0042446,hormone biosynthetic process +8.0503541,UBERON:0006312,http://purl.obolibrary.org/obo/UBERON_0006312,ocular refractive media +8.0506257,HP:0410043,http://purl.obolibrary.org/obo/HP_0410043,Abnormal neural tube morphology +8.0511691,GO:0035930,http://purl.obolibrary.org/obo/GO_0035930,corticosteroid hormone secretion +8.0511691,GO:2000112,http://purl.obolibrary.org/obo/GO_2000112,regulation of cellular macromolecule biosynthetic process +8.0517128,DRUGBANK:DB01520,http://purl.obolibrary.org/obo/DRUGBANK_DB01520,none +8.0525289,MONDO:0002271,http://purl.obolibrary.org/obo/MONDO_0002271,colon adenocarcinoma +8.0538906,GO:0009152,http://purl.obolibrary.org/obo/GO_0009152,purine ribonucleotide biosynthetic process +8.0542995,MONDO:0005411,http://purl.obolibrary.org/obo/MONDO_0005411,gallbladder cancer +8.0544358,GO:0005884,http://purl.obolibrary.org/obo/GO_0005884,actin filament +8.0547085,UBERON:0001796,http://purl.obolibrary.org/obo/UBERON_0001796,aqueous humor of eyeball +8.0549813,GO:0015979,http://purl.obolibrary.org/obo/GO_0015979,photosynthesis +8.0553906,PR:000011331,http://purl.obolibrary.org/obo/PR_000011331,neurogenic locus notch homolog protein 1 +8.0558,SO:0001660,http://purl.obolibrary.org/obo/SO_0001660,core_eukaryotic_promoter_element +8.0567561,UBERON:0013126,http://purl.obolibrary.org/obo/UBERON_0013126,vein of abdomen +8.0574396,MONDO:0019706,http://purl.obolibrary.org/obo/MONDO_0019706,lysosomal storage disease with skeletal involvement +8.0577131,MONDO:0005058,http://purl.obolibrary.org/obo/MONDO_0005058,leiomyosarcoma +8.0579867,PR:000014364,http://purl.obolibrary.org/obo/PR_000014364,runt-related transcription factor 2 +8.0585341,GO:0005791,http://purl.obolibrary.org/obo/GO_0005791,rough endoplasmic reticulum +8.058671,SO:0001080,http://purl.obolibrary.org/obo/SO_0001080,coiled_coil +8.058808,MONDO:0021679,http://purl.obolibrary.org/obo/MONDO_0021679,gram-positive bacterial infections +8.0590819,MONDO:0005184,http://purl.obolibrary.org/obo/MONDO_0005184,pancreatic ductal adenocarcinoma +8.0596299,DRUGBANK:DB00104,http://purl.obolibrary.org/obo/DRUGBANK_DB00104,none +8.0603153,GO:0044259,http://purl.obolibrary.org/obo/GO_0044259,none +8.061413,MONDO:0018912,http://purl.obolibrary.org/obo/MONDO_0018912,Cushing syndrome +8.0615503,MONDO:0003615,http://purl.obolibrary.org/obo/MONDO_0003615,nerve compression syndrome +8.0615503,PR:000002206,http://purl.obolibrary.org/obo/PR_000002206,mitogen-activated protein kinase 8 +8.0616876,PR:000028988,http://purl.obolibrary.org/obo/PR_000028988,sterol regulatory element-binding protein +8.061825,DRUGBANK:DB01026,http://purl.obolibrary.org/obo/DRUGBANK_DB01026,none +8.0619623,NCBITaxon:11019,http://purl.obolibrary.org/obo/NCBITaxon_11019,Alphavirus +8.0625119,CHEBI:51065,http://purl.obolibrary.org/obo/CHEBI_51065,dopamine agonist +8.0633369,MONDO:0020059,http://purl.obolibrary.org/obo/MONDO_0020059,gonosome number anomaly +8.0634745,MONDO:0016175,http://purl.obolibrary.org/obo/MONDO_0016175,cutis laxa +8.0651267,UBERON:0002429,http://purl.obolibrary.org/obo/UBERON_0002429,cervical lymph node +8.0652645,DRUGBANK:DB00188,http://purl.obolibrary.org/obo/DRUGBANK_DB00188,none +8.0658159,HP:0001877,http://purl.obolibrary.org/obo/HP_0001877,Abnormal erythrocyte morphology +8.0658159,MOP:0002162,http://purl.obolibrary.org/obo/MOP_0002162,none +8.0659538,GO:0045121,http://purl.obolibrary.org/obo/GO_0045121,membrane raft +8.0660917,MONDO:0002915,http://purl.obolibrary.org/obo/MONDO_0002915,childhood infratentorial neoplasm +8.0671958,GO:0009009,http://purl.obolibrary.org/obo/GO_0009009,site-specific recombinase activity +8.0676101,MONDO:0005357,http://purl.obolibrary.org/obo/MONDO_0005357,Creutzfeldt Jacob disease +8.0677483,GO:0042044,http://purl.obolibrary.org/obo/GO_0042044,fluid transport +8.0685776,DRUGBANK:DB12310,http://purl.obolibrary.org/obo/DRUGBANK_DB12310,none +8.0689925,DRUGBANK:DB00592,http://purl.obolibrary.org/obo/DRUGBANK_DB00592,none +8.0689925,SO:0000088,http://purl.obolibrary.org/obo/SO_0000088,mt_gene +8.0692692,UBERON:0004134,http://purl.obolibrary.org/obo/UBERON_0004134,proximal tubule +8.0703768,UBERON:0001633,http://purl.obolibrary.org/obo/UBERON_0001633,basilar artery +8.0706538,DRUGBANK:DB01392,http://purl.obolibrary.org/obo/DRUGBANK_DB01392,none +8.070931,MONDO:0017038,http://purl.obolibrary.org/obo/MONDO_0017038,secondary interstitial lung disease in childhood and adulthood associated with a systemic vasculitis +8.0710696,UBERON:0001140,http://purl.obolibrary.org/obo/UBERON_0001140,renal vein +8.0713469,DRUGBANK:DB00620,http://purl.obolibrary.org/obo/DRUGBANK_DB00620,none +8.0714856,MONDO:0002332,http://purl.obolibrary.org/obo/MONDO_0002332,splenic disease +8.0721792,MONDO:0020539,http://purl.obolibrary.org/obo/MONDO_0020539,extragonadal non-dysgerminomatous germ cell tumor +8.0721792,PR:P20263,http://purl.obolibrary.org/obo/PR_P20263,none +8.0727344,MONDO:0019263,http://purl.obolibrary.org/obo/MONDO_0019263,autosomal erythropoietic protoporphyria +8.0728733,DRUGBANK:DB02097,http://purl.obolibrary.org/obo/DRUGBANK_DB02097,none +8.07329,MONDO:0020257,http://purl.obolibrary.org/obo/MONDO_0020257,supranuclear oculomotor palsy +8.0734289,CL:0000546,http://purl.obolibrary.org/obo/CL_0000546,T-helper 2 cell +8.0734289,CL:0001051,http://purl.obolibrary.org/obo/CL_0001051,"CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell" +8.0741239,GO:0097009,http://purl.obolibrary.org/obo/GO_0097009,energy homeostasis +8.0741239,MONDO:0015137,http://purl.obolibrary.org/obo/MONDO_0015137,periodic fever syndrome +8.074402,MONDO:0003396,http://purl.obolibrary.org/obo/MONDO_0003396,epulis +8.0745411,DRUGBANK:DB13971,http://purl.obolibrary.org/obo/DRUGBANK_DB13971,none +8.0746802,HP:0001903,http://purl.obolibrary.org/obo/HP_0001903,Anemia +8.0746802,HP:0012780,http://purl.obolibrary.org/obo/HP_0012780,Neoplasm of the ear +8.0746802,MONDO:0021225,http://purl.obolibrary.org/obo/MONDO_0021225,uvea neoplasm +8.0746802,PR:000008373,http://purl.obolibrary.org/obo/PR_000008373,gap junction alpha-1 protein +8.0755153,DRUGBANK:DB10528,http://purl.obolibrary.org/obo/DRUGBANK_DB10528,none +8.0759331,PR:000012825,http://purl.obolibrary.org/obo/PR_000012825,tissue-type plasminogen activator +8.0760724,MONDO:0016044,http://purl.obolibrary.org/obo/MONDO_0016044,cleft lip/palate +8.0762117,GO:0007567,http://purl.obolibrary.org/obo/GO_0007567,parturition +8.0767692,DRUGBANK:DB00398,http://purl.obolibrary.org/obo/DRUGBANK_DB00398,none +8.0769086,MONDO:0016329,http://purl.obolibrary.org/obo/MONDO_0016329,familial syndrome associated with hypertrophic cardiomyopathy +8.0770481,MONDO:0000648,http://purl.obolibrary.org/obo/MONDO_0000648,nervous system benign neoplasm +8.0771875,PR:000015890,http://purl.obolibrary.org/obo/PR_000015890,synaptophysin +8.0783039,GO:0009163,http://purl.obolibrary.org/obo/GO_0009163,nucleoside biosynthetic process +8.0790023,MONDO:0015950,http://purl.obolibrary.org/obo/MONDO_0015950,inherited skin tumor +8.079142,UBERON:0016538,http://purl.obolibrary.org/obo/UBERON_0016538,temporal cortex +8.079841,GO:0006695,http://purl.obolibrary.org/obo/GO_0006695,cholesterol biosynthetic process +8.0802606,GO:0016861,http://purl.obolibrary.org/obo/GO_0016861,"intramolecular oxidoreductase activity, interconverting aldoses and ketoses" +8.0804005,MONDO:0015492,http://purl.obolibrary.org/obo/MONDO_0015492,Anti-neutrophil cytoplasmic antibody-associated vasculitis +8.0806804,HP:0001824,http://purl.obolibrary.org/obo/HP_0001824,Weight loss +8.0813804,DRUGBANK:DB00250,http://purl.obolibrary.org/obo/DRUGBANK_DB00250,none +8.0815205,PR:000009897,http://purl.obolibrary.org/obo/PR_000009897,lipoprotein lipase +8.0816606,GO:0004465,http://purl.obolibrary.org/obo/GO_0004465,lipoprotein lipase activity +8.0816606,MONDO:0002220,http://purl.obolibrary.org/obo/MONDO_0002220,tooth hard tissue disease +8.0816606,MONDO:0024676,http://purl.obolibrary.org/obo/MONDO_0024676,childhood kidney Wilms tumor +8.0818007,MONDO:0020073,http://purl.obolibrary.org/obo/MONDO_0020073,adolescent-onset epilepsy syndrome +8.0820809,MONDO:0021089,http://purl.obolibrary.org/obo/MONDO_0021089,peripheral nervous system cancer +8.0822211,PR:000001108,http://purl.obolibrary.org/obo/PR_000001108,D(2)-like dopamine receptor +8.0832028,GO:0001649,http://purl.obolibrary.org/obo/GO_0001649,osteoblast differentiation +8.0832028,MONDO:0001126,http://purl.obolibrary.org/obo/MONDO_0001126,gastric ulcer +8.0833431,PR:000004685,http://purl.obolibrary.org/obo/PR_000004685,cholinesterase +8.0836238,PR:000014548,http://purl.obolibrary.org/obo/PR_000014548,N-terminal kinase-like protein +8.084045,MONDO:0004037,http://purl.obolibrary.org/obo/MONDO_0004037,retinal edema +8.0844664,MONDO:0020288,http://purl.obolibrary.org/obo/MONDO_0020288,atrioventricular valve anomaly +8.0846069,GO:0036293,http://purl.obolibrary.org/obo/GO_0036293,response to decreased oxygen levels +8.084888,DRUGBANK:DB03619,http://purl.obolibrary.org/obo/DRUGBANK_DB03619,none +8.0851691,GO:0004180,http://purl.obolibrary.org/obo/GO_0004180,carboxypeptidase activity +8.086576,MONDO:0005130,http://purl.obolibrary.org/obo/MONDO_0005130,celiac disease +8.0868576,MONDO:0000726,http://purl.obolibrary.org/obo/MONDO_0000726,idiopathic scoliosis +8.0868576,MONDO:0015277,http://purl.obolibrary.org/obo/MONDO_0015277,medullary thyroid gland carcinoma +8.0869984,DRUGBANK:DB00136,http://purl.obolibrary.org/obo/DRUGBANK_DB00136,none +8.0869984,GO:0042455,http://purl.obolibrary.org/obo/GO_0042455,ribonucleoside biosynthetic process +8.0871393,PR:000039980,http://purl.obolibrary.org/obo/PR_000039980,SODC domain protein +8.0875619,MONDO:0020580,http://purl.obolibrary.org/obo/MONDO_0020580,germinomatous germ cell tumor +8.0877029,GO:0040008,http://purl.obolibrary.org/obo/GO_0040008,regulation of growth +8.0878438,GO:0004953,http://purl.obolibrary.org/obo/GO_0004953,icosanoid receptor activity +8.0884078,UBERON:0001352,http://purl.obolibrary.org/obo/UBERON_0001352,external acoustic meatus +8.0885489,GO:0004949,http://purl.obolibrary.org/obo/GO_0004949,cannabinoid receptor activity +8.0889722,GO:1901361,http://purl.obolibrary.org/obo/GO_1901361,organic cyclic compound catabolic process +8.0892545,UBERON:0007380,http://purl.obolibrary.org/obo/UBERON_0007380,dermal scale +8.0898193,HP:0000360,http://purl.obolibrary.org/obo/HP_0000360,Tinnitus +8.0898193,UBERON:0035642,http://purl.obolibrary.org/obo/UBERON_0035642,laryngeal nerve +8.0903844,NCBITaxon:10624,http://purl.obolibrary.org/obo/NCBITaxon_10624,none +8.0905257,DRUGBANK:DB11158,http://purl.obolibrary.org/obo/DRUGBANK_DB11158,none +8.0906671,MONDO:0100237,http://purl.obolibrary.org/obo/MONDO_0100237,inherited cutis laxa +8.0908085,GO:0043891,http://purl.obolibrary.org/obo/GO_0043891,glyceraldehyde-3-phosphate dehydrogenase (NAD(P)+) (phosphorylating) activity +8.0910913,CHEBI:33833,http://purl.obolibrary.org/obo/CHEBI_33833,heteroarene +8.0912327,DRUGBANK:DB13366,http://purl.obolibrary.org/obo/DRUGBANK_DB13366,none +8.0912327,GO:0004365,http://purl.obolibrary.org/obo/GO_0004365,glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity +8.0915156,MONDO:0015334,http://purl.obolibrary.org/obo/MONDO_0015334,branchial arch or oral-acral syndrome +8.0915156,UBERON:0001437,http://purl.obolibrary.org/obo/UBERON_0001437,epiphysis +8.0917986,SO:0001230,http://purl.obolibrary.org/obo/SO_0001230,inosine +8.0919402,CHEBI:3215,http://purl.obolibrary.org/obo/CHEBI_3215,bupivacaine +8.0919402,MONDO:0016999,http://purl.obolibrary.org/obo/MONDO_0016999,X chromosome number anomaly +8.0922233,GO:0032941,http://purl.obolibrary.org/obo/GO_0032941,secretion by tissue +8.0926481,SO:0002218,http://purl.obolibrary.org/obo/SO_0002218,functionally_abnormal +8.0930732,CL:0000351,http://purl.obolibrary.org/obo/CL_0000351,trophoblast cell +8.0933566,DRUGBANK:DB15274,http://purl.obolibrary.org/obo/DRUGBANK_DB15274,none +8.0933566,MONDO:0003009,http://purl.obolibrary.org/obo/MONDO_0003009,hyperaldosteronism +8.0939237,GO:0044448,http://purl.obolibrary.org/obo/GO_0044448,none +8.0942074,MONDO:0021253,http://purl.obolibrary.org/obo/MONDO_0021253,gallbladder neoplasm +8.0943493,MONDO:0005528,http://purl.obolibrary.org/obo/MONDO_0005528,inborn vitamin metabolic disorder +8.0944912,GO:0009542,http://purl.obolibrary.org/obo/GO_0009542,granum +8.095059,MONDO:0000521,http://purl.obolibrary.org/obo/MONDO_0000521,salivary gland carcinoma +8.095485,DRUGBANK:DB01200,http://purl.obolibrary.org/obo/DRUGBANK_DB01200,none +8.0959112,MONDO:0003751,http://purl.obolibrary.org/obo/MONDO_0003751,childhood germ cell tumor +8.0959112,NCBITaxon:151341,http://purl.obolibrary.org/obo/NCBITaxon_151341,Polyomaviridae +8.0959112,PR:000001886,http://purl.obolibrary.org/obo/PR_000001886,major prion protein +8.0960534,HP:0001943,http://purl.obolibrary.org/obo/HP_0001943,Hypoglycemia +8.0960534,MONDO:0019542,http://purl.obolibrary.org/obo/MONDO_0019542,acute liver failure +8.0960534,MONDO:0100192,http://purl.obolibrary.org/obo/MONDO_0100192,liver failure +8.096622,DRUGBANK:DB01917,http://purl.obolibrary.org/obo/DRUGBANK_DB01917,none +8.0970487,GO:0031965,http://purl.obolibrary.org/obo/GO_0031965,nuclear membrane +8.097618,UBERON:0001626,http://purl.obolibrary.org/obo/UBERON_0001626,left coronary artery +8.0993276,DRUGBANK:DB09061,http://purl.obolibrary.org/obo/DRUGBANK_DB09061,none +8.0994702,DRUGBANK:DB11065,http://purl.obolibrary.org/obo/DRUGBANK_DB11065,none +8.0994702,PR:000013195,http://purl.obolibrary.org/obo/PR_000013195,"peroxiredoxin-5, mitochondrial" +8.1001835,SO:0000419,http://purl.obolibrary.org/obo/SO_0000419,mature_protein_region +8.1001835,SO:0001064,http://purl.obolibrary.org/obo/SO_0001064,active_peptide +8.100469,GO:0001889,http://purl.obolibrary.org/obo/GO_0001889,liver development +8.1008974,GO:0001669,http://purl.obolibrary.org/obo/GO_0001669,acrosomal vesicle +8.101183,GO:0004743,http://purl.obolibrary.org/obo/GO_0004743,pyruvate kinase activity +8.1020406,MONDO:0005296,http://purl.obolibrary.org/obo/MONDO_0005296,sleep apnea syndrome +8.1020406,NCBITaxon:11229,http://purl.obolibrary.org/obo/NCBITaxon_11229,Morbillivirus +8.1020406,PR:000013433,http://purl.obolibrary.org/obo/PR_000013433,parathyroid hormone-related protein +8.1021835,NCBITaxon:10335,http://purl.obolibrary.org/obo/NCBITaxon_10335,Human alphaherpesvirus 3 +8.1024696,MONDO:0016326,http://purl.obolibrary.org/obo/MONDO_0016326,lysosomal disease with hypertrophic cardiomyopathy +8.1028988,HP:0011947,http://purl.obolibrary.org/obo/HP_0011947,Respiratory tract infection +8.1030419,MONDO:0017975,http://purl.obolibrary.org/obo/MONDO_0017975,sex chromosome disorder of sex development +8.103185,GO:0042451,http://purl.obolibrary.org/obo/GO_0042451,purine nucleoside biosynthetic process +8.103185,PR:000004418,http://purl.obolibrary.org/obo/PR_000004418,autophagy protein 5 +8.1037578,GO:0034330,http://purl.obolibrary.org/obo/GO_0034330,cell junction organization +8.1037578,GO:0046129,http://purl.obolibrary.org/obo/GO_0046129,purine ribonucleoside biosynthetic process +8.1040443,HP:0010929,http://purl.obolibrary.org/obo/HP_0010929,Abnormal blood cation concentration +8.1040443,MONDO:0003199,http://purl.obolibrary.org/obo/MONDO_0003199,anal carcinoma +8.1044742,GO:0015718,http://purl.obolibrary.org/obo/GO_0015718,monocarboxylic acid transport +8.1047609,UBERON:0001190,http://purl.obolibrary.org/obo/UBERON_0001190,ovarian artery +8.1049042,MONDO:0016399,http://purl.obolibrary.org/obo/MONDO_0016399,amino acid or protein metabolism disease with epilepsy +8.1050476,MONDO:0018506,http://purl.obolibrary.org/obo/MONDO_0018506,mesenchymal tumor of small intestine +8.1051911,HP:0002090,http://purl.obolibrary.org/obo/HP_0002090,Pneumonia +8.1056214,GO:0019722,http://purl.obolibrary.org/obo/GO_0019722,calcium-mediated signaling +8.1056214,GO:0061025,http://purl.obolibrary.org/obo/GO_0061025,membrane fusion +8.105765,UBERON:0016530,http://purl.obolibrary.org/obo/UBERON_0016530,parietal cortex +8.1059085,MONDO:0002924,http://purl.obolibrary.org/obo/MONDO_0002924,smooth muscle cancer +8.106052,DRUGBANK:DB01137,http://purl.obolibrary.org/obo/DRUGBANK_DB01137,none +8.106052,MONDO:0015168,http://purl.obolibrary.org/obo/MONDO_0015168,arthrogryposis multiplex congenita +8.1061956,MONDO:0001524,http://purl.obolibrary.org/obo/MONDO_0001524,globe disease +8.1063392,SO:0000014,http://purl.obolibrary.org/obo/SO_0000014,INR_motif +8.1069137,PR:000038372,http://purl.obolibrary.org/obo/PR_000038372,histone H1 +8.1069137,UBERON:0010192,http://purl.obolibrary.org/obo/UBERON_0010192,genital artery +8.1072011,GO:0032268,http://purl.obolibrary.org/obo/GO_0032268,regulation of cellular protein metabolic process +8.1073448,MONDO:0011719,http://purl.obolibrary.org/obo/MONDO_0011719,gastrointestinal stromal tumor +8.10792,CL:0000333,http://purl.obolibrary.org/obo/CL_0000333,migratory neural crest cell +8.1080638,CL:0011012,http://purl.obolibrary.org/obo/CL_0011012,neural crest cell +8.1093592,GO:0004016,http://purl.obolibrary.org/obo/GO_0004016,adenylate cyclase activity +8.1095033,DRUGBANK:DB10527,http://purl.obolibrary.org/obo/DRUGBANK_DB10527,none +8.1095033,GO:0006112,http://purl.obolibrary.org/obo/GO_0006112,energy reserve metabolic process +8.1097914,DRUGBANK:DB08059,http://purl.obolibrary.org/obo/DRUGBANK_DB08059,none +8.1102238,DRUGBANK:DB09394,http://purl.obolibrary.org/obo/DRUGBANK_DB09394,none +8.1102238,UBERON:0004518,http://purl.obolibrary.org/obo/UBERON_0004518,muscle of vertebral column +8.110368,GO:0004634,http://purl.obolibrary.org/obo/GO_0004634,phosphopyruvate hydratase activity +8.1106563,UBERON:0007635,http://purl.obolibrary.org/obo/UBERON_0007635,nucleus of medulla oblongata +8.1109448,NCBITaxon:1980410,http://purl.obolibrary.org/obo/NCBITaxon_1980410,Bunyavirales +8.1109448,NCBITaxon:2497576,http://purl.obolibrary.org/obo/NCBITaxon_2497576,Ellioviricetes +8.1110891,UBERON:0001232,http://purl.obolibrary.org/obo/UBERON_0001232,collecting duct of renal tubule +8.1118107,UBERON:0001499,http://purl.obolibrary.org/obo/UBERON_0001499,muscle of arm +8.1125329,UBERON:0001961,http://purl.obolibrary.org/obo/UBERON_0001961,mucosa-associated lymphoid tissue +8.1132556,GO:0005882,http://purl.obolibrary.org/obo/GO_0005882,intermediate filament +8.1132556,PR:000001135,http://purl.obolibrary.org/obo/PR_000001135,interleukin-1 alpha +8.1132556,UBERON:0002078,http://purl.obolibrary.org/obo/UBERON_0002078,right cardiac atrium +8.1134002,CHEBI:37957,http://purl.obolibrary.org/obo/CHEBI_37957,histaminergic drug +8.1134002,GO:0000150,http://purl.obolibrary.org/obo/GO_0000150,DNA strand exchange activity +8.1139788,MONDO:0000387,http://purl.obolibrary.org/obo/MONDO_0000387,hypochromic microcytic anemia +8.1141236,MONDO:0005923,http://purl.obolibrary.org/obo/MONDO_0005923,Pneumocystis infectious disease +8.1142683,MONDO:0019341,http://purl.obolibrary.org/obo/MONDO_0019341,tuberous sclerosis complex +8.114413,CL:0007004,http://purl.obolibrary.org/obo/CL_0007004,premigratory neural crest cell +8.1149922,MONDO:0002637,http://purl.obolibrary.org/obo/MONDO_0002637,histiocytosis +8.1151371,MONDO:0002297,http://purl.obolibrary.org/obo/MONDO_0002297,epidermal appendage tumor +8.1151371,MONDO:0003005,http://purl.obolibrary.org/obo/MONDO_0003005,macular retinal edema +8.1154269,PR:000007640,http://purl.obolibrary.org/obo/PR_000007640,forkhead box protein O1 +8.1155718,UBERON:0001097,http://purl.obolibrary.org/obo/UBERON_0001097,axillary lymph node +8.1160067,NCBITaxon:353210,http://purl.obolibrary.org/obo/NCBITaxon_353210,Replication competent viruses +8.1160067,UBERON:0013529,http://purl.obolibrary.org/obo/UBERON_0013529,Brodmann area +8.1160067,UBERON:0019248,http://purl.obolibrary.org/obo/UBERON_0019248,early embryo +8.1178933,DRUGBANK:DB00694,http://purl.obolibrary.org/obo/DRUGBANK_DB00694,none +8.1180386,GO:0044391,http://purl.obolibrary.org/obo/GO_0044391,ribosomal subunit +8.1181839,DRUGBANK:DB10977,http://purl.obolibrary.org/obo/DRUGBANK_DB10977,none +8.1183292,MONDO:0017767,http://purl.obolibrary.org/obo/MONDO_0017767,rheumatic fever +8.1186199,GO:0008239,http://purl.obolibrary.org/obo/GO_0008239,dipeptidyl-peptidase activity +8.1187653,PR:000015426,http://purl.obolibrary.org/obo/PR_000015426,transcription factor SOX-2 +8.119347,GO:0046148,http://purl.obolibrary.org/obo/GO_0046148,pigment biosynthetic process +8.119347,MONDO:0016340,http://purl.obolibrary.org/obo/MONDO_0016340,familial restrictive cardiomyopathy +8.1199291,PR:000013555,http://purl.obolibrary.org/obo/PR_000013555,none +8.1208028,GO:0019439,http://purl.obolibrary.org/obo/GO_0019439,aromatic compound catabolic process +8.1208028,PR:000001030,http://purl.obolibrary.org/obo/PR_000001030,erm protein +8.1209485,MONDO:0007665,http://purl.obolibrary.org/obo/MONDO_0007665,primary open angle glaucoma +8.1216773,GO:0001666,http://purl.obolibrary.org/obo/GO_0001666,response to hypoxia +8.1218232,UBERON:0002436,http://purl.obolibrary.org/obo/UBERON_0002436,primary visual cortex +8.121969,DRUGBANK:DB00335,http://purl.obolibrary.org/obo/DRUGBANK_DB00335,none +8.1221149,MONDO:0019703,http://purl.obolibrary.org/obo/MONDO_0019703,primary bone dysplasia with increased bone density +8.1224067,UBERON:0002414,http://purl.obolibrary.org/obo/UBERON_0002414,lumbar vertebra +8.1225526,UBERON:0009834,http://purl.obolibrary.org/obo/UBERON_0009834,dorsolateral prefrontal cortex +8.1226986,MONDO:0016107,http://purl.obolibrary.org/obo/MONDO_0016107,myotonic dystrophy +8.1232826,MONDO:0018121,http://purl.obolibrary.org/obo/MONDO_0018121,mitochondrial DNA maintenance syndrome +8.1237208,MONDO:0003046,http://purl.obolibrary.org/obo/MONDO_0003046,anus neoplasm +8.1237208,MONDO:0015817,http://purl.obolibrary.org/obo/MONDO_0015817,aggressive primary cutaneous T-cell lymphoma +8.1240131,MONDO:0021925,http://purl.obolibrary.org/obo/MONDO_0021925,tracheobronchitis +8.1241593,MONDO:0007667,http://purl.obolibrary.org/obo/MONDO_0007667,subependymoma +8.1241593,MONDO:0007947,http://purl.obolibrary.org/obo/MONDO_0007947,Marfan syndrome +8.1241593,MONDO:0016697,http://purl.obolibrary.org/obo/MONDO_0016697,low grade ependymoma +8.1243055,PR:000003551,http://purl.obolibrary.org/obo/PR_000003551,"ATP-binding cassette sub-family B member 6, mitochondrial" +8.1245979,GO:0007530,http://purl.obolibrary.org/obo/GO_0007530,sex determination +8.1247442,DRUGBANK:DB01085,http://purl.obolibrary.org/obo/DRUGBANK_DB01085,none +8.1259149,UBERON:0012069,http://purl.obolibrary.org/obo/UBERON_0012069,epithelium-associated lymphoid tissue +8.1288479,GO:0046700,http://purl.obolibrary.org/obo/GO_0046700,heterocycle catabolic process +8.1292886,MONDO:0002281,http://purl.obolibrary.org/obo/MONDO_0002281,macrocytic anemia +8.1294356,MONDO:0017762,http://purl.obolibrary.org/obo/MONDO_0017762,disorder of copper metabolism +8.1301706,MONDO:0002156,http://purl.obolibrary.org/obo/MONDO_0002156,fallopian tube disease +8.1309061,MONDO:0003578,http://purl.obolibrary.org/obo/MONDO_0003578,extragonadal nonseminomatous germ cell tumor +8.1310533,MONDO:0016693,http://purl.obolibrary.org/obo/MONDO_0016693,subependymal giant cell astrocytoma +8.1313477,MONDO:0001898,http://purl.obolibrary.org/obo/MONDO_0001898,optic choroid disease +8.131495,CL:0000172,http://purl.obolibrary.org/obo/CL_0000172,somatostatin secreting cell +8.131495,CL:0002374,http://purl.obolibrary.org/obo/CL_0002374,ear hair cell +8.1316422,MONDO:0005232,http://purl.obolibrary.org/obo/MONDO_0005232,large cell carcinoma +8.1320842,CL:0000502,http://purl.obolibrary.org/obo/CL_0000502,type D enteroendocrine cell +8.1323789,UBERON:0003512,http://purl.obolibrary.org/obo/UBERON_0003512,lung blood vessel +8.1325263,MONDO:0005561,http://purl.obolibrary.org/obo/MONDO_0005561,aortic disease +8.1326737,MONDO:0002037,http://purl.obolibrary.org/obo/MONDO_0002037,pleural disease +8.1334111,MONDO:0005766,http://purl.obolibrary.org/obo/MONDO_0005766,fungal lung infectious disease +8.1341491,DRUGBANK:DB00026,http://purl.obolibrary.org/obo/DRUGBANK_DB00026,none +8.1344444,CL:0000206,http://purl.obolibrary.org/obo/CL_0000206,chemoreceptor cell +8.1351831,CL:0000632,http://purl.obolibrary.org/obo/CL_0000632,hepatic stellate cell +8.1356266,MONDO:0017306,http://purl.obolibrary.org/obo/MONDO_0017306,disorder of phenylalanine metabolism +8.1357745,MONDO:0004038,http://purl.obolibrary.org/obo/MONDO_0004038,dental enamel hypoplasia +8.1360703,MONDO:0016179,http://purl.obolibrary.org/obo/MONDO_0016179,acquired amyloid peripheral neuropathy +8.1365142,NCBITaxon:10633,http://purl.obolibrary.org/obo/NCBITaxon_10633,none +8.1366622,GO:0015872,http://purl.obolibrary.org/obo/GO_0015872,dopamine transport +8.1368102,PR:000013551,http://purl.obolibrary.org/obo/PR_000013551,none +8.1369583,PR:000032963,http://purl.obolibrary.org/obo/PR_000032963,none +8.1374025,CHEBI:37886,http://purl.obolibrary.org/obo/CHEBI_37886,adrenergic agonist +8.1387366,MONDO:0009861,http://purl.obolibrary.org/obo/MONDO_0009861,phenylketonuria +8.1388849,GO:0050808,http://purl.obolibrary.org/obo/GO_0050808,synapse organization +8.1390333,DRUGBANK:DB00086,http://purl.obolibrary.org/obo/DRUGBANK_DB00086,none +8.1400724,GO:0044270,http://purl.obolibrary.org/obo/GO_0044270,cellular nitrogen compound catabolic process +8.1403695,DRUGBANK:DB00005,http://purl.obolibrary.org/obo/DRUGBANK_DB00005,none +8.1403695,HP:0000501,http://purl.obolibrary.org/obo/HP_0000501,Glaucoma +8.1411126,UBERON:0003586,http://purl.obolibrary.org/obo/UBERON_0003586,trunk connective tissue +8.1412613,UBERON:0011679,http://purl.obolibrary.org/obo/UBERON_0011679,proximal tarsal bone +8.1412613,UBERON:0015081,http://purl.obolibrary.org/obo/UBERON_0015081,proximal tarsal endochondral element +8.14141,GO:0006837,http://purl.obolibrary.org/obo/GO_0006837,serotonin transport +8.1415587,GO:0016885,http://purl.obolibrary.org/obo/GO_0016885,"ligase activity, forming carbon-carbon bonds" +8.1417075,DRUGBANK:DB00599,http://purl.obolibrary.org/obo/DRUGBANK_DB00599,none +8.142005,UBERON:0001448,http://purl.obolibrary.org/obo/UBERON_0001448,metatarsal bone +8.1424516,SO:0000294,http://purl.obolibrary.org/obo/SO_0000294,inverted_repeat +8.1426005,DRUGBANK:DB02365,http://purl.obolibrary.org/obo/DRUGBANK_DB02365,none +8.1430472,MONDO:0005571,http://purl.obolibrary.org/obo/MONDO_0005571,polycythemia +8.1431962,GO:0098630,http://purl.obolibrary.org/obo/GO_0098630,aggregation of unicellular organisms +8.1433452,DRUGBANK:DB08837,http://purl.obolibrary.org/obo/DRUGBANK_DB08837,none +8.1434942,MONDO:0001356,http://purl.obolibrary.org/obo/MONDO_0001356,iron deficiency anemia +8.1439414,MONDO:0017305,http://purl.obolibrary.org/obo/MONDO_0017305,syndromic oculocutaneous albinism +8.1440905,MONDO:0017666,http://purl.obolibrary.org/obo/MONDO_0017666,diffuse palmoplantar keratoderma +8.144538,MONDO:0019121,http://purl.obolibrary.org/obo/MONDO_0019121,pneumocystosis +8.1446872,UBERON:0003526,http://purl.obolibrary.org/obo/UBERON_0003526,respiratory system capillary +8.1446872,UBERON:0016405,http://purl.obolibrary.org/obo/UBERON_0016405,pulmonary capillary +8.1449857,GO:0043233,http://purl.obolibrary.org/obo/GO_0043233,organelle lumen +8.1451349,MONDO:0020240,http://purl.obolibrary.org/obo/MONDO_0020240,syndromic retinitis pigmentosa +8.1454335,UBERON:0005744,http://purl.obolibrary.org/obo/UBERON_0005744,bone foramen +8.1455829,GO:0048598,http://purl.obolibrary.org/obo/GO_0048598,embryonic morphogenesis +8.1455829,MONDO:0018949,http://purl.obolibrary.org/obo/MONDO_0018949,distal myopathy +8.1457322,GO:0007589,http://purl.obolibrary.org/obo/GO_0007589,body fluid secretion +8.1458816,DRUGBANK:DB09532,http://purl.obolibrary.org/obo/DRUGBANK_DB09532,none +8.1458816,GO:0005813,http://purl.obolibrary.org/obo/GO_0005813,centrosome +8.1458816,MONDO:0003263,http://purl.obolibrary.org/obo/MONDO_0003263,childhood cerebellar neoplasm +8.1458816,PR:000006852,http://purl.obolibrary.org/obo/PR_000006852,transcription factor E2F1 +8.1458816,UBERON:0002419,http://purl.obolibrary.org/obo/UBERON_0002419,skin gland +8.1463299,GO:0035148,http://purl.obolibrary.org/obo/GO_0035148,tube formation +8.1466288,UBERON:0001494,http://purl.obolibrary.org/obo/UBERON_0001494,ulnar nerve +8.1476758,MONDO:0017979,http://purl.obolibrary.org/obo/MONDO_0017979,autoimmune lymphoproliferative syndrome +8.1476758,MONDO:0036591,http://purl.obolibrary.org/obo/MONDO_0036591,adrenal cortex neoplasm +8.1478255,MONDO:0017263,http://purl.obolibrary.org/obo/MONDO_0017263,inherited ichthyosis syndromic form +8.1481249,GO:0009124,http://purl.obolibrary.org/obo/GO_0009124,nucleoside monophosphate biosynthetic process +8.1482746,MONDO:0005106,http://purl.obolibrary.org/obo/MONDO_0005106,lipoma +8.1485742,MONDO:0017361,http://purl.obolibrary.org/obo/MONDO_0017361,congenital rubella syndrome +8.1485742,PR:000006537,http://purl.obolibrary.org/obo/PR_000006537,dystrophin +8.148724,GO:0060229,http://purl.obolibrary.org/obo/GO_0060229,lipase activator activity +8.1493234,PR:000012826,http://purl.obolibrary.org/obo/PR_000012826,urokinase-type plasminogen activator +8.1499232,HP:0002793,http://purl.obolibrary.org/obo/HP_0002793,Abnormal pattern of respiration +8.1500732,DRUGBANK:DB00859,http://purl.obolibrary.org/obo/DRUGBANK_DB00859,none +8.1506735,PR:000050467,http://purl.obolibrary.org/obo/PR_000050467,hemoglobin subunit +8.1506735,SO:0000314,http://purl.obolibrary.org/obo/SO_0000314,direct_repeat +8.1508236,HP:0001289,http://purl.obolibrary.org/obo/HP_0001289,Confusion +8.1514243,DRUGBANK:DB00264,http://purl.obolibrary.org/obo/DRUGBANK_DB00264,none +8.1520253,GO:0034637,http://purl.obolibrary.org/obo/GO_0034637,cellular carbohydrate biosynthetic process +8.1520253,MONDO:0005342,http://purl.obolibrary.org/obo/MONDO_0005342,IgA glomerulonephritis +8.1526267,CL:0000530,http://purl.obolibrary.org/obo/CL_0000530,primary neuron +8.1527771,PR:000001022,http://purl.obolibrary.org/obo/PR_000001022,neural cell adhesion molecule +8.1529276,GO:0009156,http://purl.obolibrary.org/obo/GO_0009156,ribonucleoside monophosphate biosynthetic process +8.1529276,GO:0016215,http://purl.obolibrary.org/obo/GO_0016215,acyl-CoA desaturase activity +8.1532285,MONDO:0000586,http://purl.obolibrary.org/obo/MONDO_0000586,autoimmune disease of exocrine system +8.153379,GO:0016717,http://purl.obolibrary.org/obo/GO_0016717,"oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water" +8.153379,GO:0048771,http://purl.obolibrary.org/obo/GO_0048771,tissue remodeling +8.1538306,PR:P33532,http://purl.obolibrary.org/obo/PR_P33532,none +8.1542825,DRUGBANK:DB02757,http://purl.obolibrary.org/obo/DRUGBANK_DB02757,none +8.1556392,MONDO:0019222,http://purl.obolibrary.org/obo/MONDO_0019222,inborn disorder of methionine cycle and sulfur amino acid metabolism +8.1568468,CHEBI:37956,http://purl.obolibrary.org/obo/CHEBI_37956,histamine antagonist +8.1571489,UBERON:0015009,http://purl.obolibrary.org/obo/UBERON_0015009,lumbar vertebra endochondral element +8.1580558,SO:0001019,http://purl.obolibrary.org/obo/SO_0001019,copy_number_variation +8.1583583,HP:0002143,http://purl.obolibrary.org/obo/HP_0002143,Abnormality of the spinal cord +8.1585095,HP:0010301,http://purl.obolibrary.org/obo/HP_0010301,Spinal dysraphism +8.1589635,CL:0000545,http://purl.obolibrary.org/obo/CL_0000545,T-helper 1 cell +8.1595691,PR:000015399,http://purl.obolibrary.org/obo/PR_000015399,superoxide dismutase [Cu-Zn] +8.1601751,GO:0009127,http://purl.obolibrary.org/obo/GO_0009127,purine nucleoside monophosphate biosynthetic process +8.1601751,MONDO:0017953,http://purl.obolibrary.org/obo/MONDO_0017953,hereditary periodic fever syndrome +8.1603266,GO:0120036,http://purl.obolibrary.org/obo/GO_0120036,plasma membrane bounded cell projection organization +8.1604782,DRUGBANK:DB12961,http://purl.obolibrary.org/obo/DRUGBANK_DB12961,none +8.1606298,GO:0009168,http://purl.obolibrary.org/obo/GO_0009168,purine ribonucleoside monophosphate biosynthetic process +8.1607814,DRUGBANK:DB00181,http://purl.obolibrary.org/obo/DRUGBANK_DB00181,none +8.1607814,GO:0042710,http://purl.obolibrary.org/obo/GO_0042710,biofilm formation +8.1610847,GO:0008437,http://purl.obolibrary.org/obo/GO_0008437,thyrotropin-releasing hormone activity +8.1612364,MONDO:0007264,http://purl.obolibrary.org/obo/MONDO_0007264,sudden cardiac arrest +8.1612364,PR:000008725,http://purl.obolibrary.org/obo/PR_000008725,haptoglobin +8.1619952,MONDO:0015488,http://purl.obolibrary.org/obo/MONDO_0015488,predominantly large-vessel vasculitis +8.162147,CHEBI:60798,http://purl.obolibrary.org/obo/CHEBI_60798,excitatory amino acid antagonist +8.1624507,SO:0002342,http://purl.obolibrary.org/obo/SO_0002342,sncRNA_gene +8.1635145,GO:0004675,http://purl.obolibrary.org/obo/GO_0004675,transmembrane receptor protein serine/threonine kinase activity +8.1636665,PR:000000006,http://purl.obolibrary.org/obo/PR_000000006,TGF-beta superfamily receptor type-1 +8.1636665,PR:000008942,http://purl.obolibrary.org/obo/PR_000008942,insulin-like growth factor II +8.1639707,GO:0070013,http://purl.obolibrary.org/obo/GO_0070013,intracellular organelle lumen +8.1639707,MONDO:0015183,http://purl.obolibrary.org/obo/MONDO_0015183,short bowel syndrome +8.1647316,PR:000025797,http://purl.obolibrary.org/obo/PR_000025797,integrin alpha lacking A domain +8.1653407,GO:0048522,http://purl.obolibrary.org/obo/GO_0048522,positive regulation of cellular process +8.1656454,MONDO:0005351,http://purl.obolibrary.org/obo/MONDO_0005351,anorexia nervosa +8.1661026,HP:0040195,http://purl.obolibrary.org/obo/HP_0040195,Decreased head circumference +8.16656,UBERON:0000990,http://purl.obolibrary.org/obo/UBERON_0000990,reproductive system +8.1667125,HP:0000252,http://purl.obolibrary.org/obo/HP_0000252,Microcephaly +8.1668651,GO:0097421,http://purl.obolibrary.org/obo/GO_0097421,liver regeneration +8.1668651,UBERON:0001224,http://purl.obolibrary.org/obo/UBERON_0001224,renal pelvis +8.1677808,UBERON:0001262,http://purl.obolibrary.org/obo/UBERON_0001262,wall of intestine +8.1679335,GO:0030855,http://purl.obolibrary.org/obo/GO_0030855,epithelial cell differentiation +8.168239,DRUGBANK:DB03193,http://purl.obolibrary.org/obo/DRUGBANK_DB03193,none +8.1685446,SO:0000248,http://purl.obolibrary.org/obo/SO_0000248,sequence_length_alteration +8.1699208,DRUGBANK:DB00908,http://purl.obolibrary.org/obo/DRUGBANK_DB00908,none +8.1699208,MONDO:0004522,http://purl.obolibrary.org/obo/MONDO_0004522,peritonitis +8.17038,MONDO:0011184,http://purl.obolibrary.org/obo/MONDO_0011184,childhood apraxia of speech +8.1708394,GO:0031175,http://purl.obolibrary.org/obo/GO_0031175,neuron projection development +8.1709926,CL:0002246,http://purl.obolibrary.org/obo/CL_0002246,peripheral blood stem cell +8.1714522,CL:0002491,http://purl.obolibrary.org/obo/CL_0002491,auditory epithelial cell +8.1714522,MONDO:0021666,http://purl.obolibrary.org/obo/MONDO_0021666,ear infection +8.1717588,MONDO:0043731,http://purl.obolibrary.org/obo/MONDO_0043731,lytic metastatic bone lesion +8.172679,MONDO:0000761,http://purl.obolibrary.org/obo/MONDO_0000761,syndrome caused by partial chromosomal deletion +8.172679,PR:000000183,http://purl.obolibrary.org/obo/PR_000000183,TGF-beta 2 +8.1728325,MONDO:0021233,http://purl.obolibrary.org/obo/MONDO_0021233,ear neoplasm +8.173293,PR:000015921,http://purl.obolibrary.org/obo/PR_000015921,none +8.1743684,HP:0000107,http://purl.obolibrary.org/obo/HP_0000107,Renal cyst +8.1745221,GO:0009011,http://purl.obolibrary.org/obo/GO_0009011,starch synthase activity +8.1748296,MONDO:0002797,http://purl.obolibrary.org/obo/MONDO_0002797,childhood medulloblastoma +8.1751372,DRUGBANK:DB01165,http://purl.obolibrary.org/obo/DRUGBANK_DB01165,none +8.1751372,MONDO:0024645,http://purl.obolibrary.org/obo/MONDO_0024645,retroperitoneal neoplasm +8.1754449,UBERON:0007134,http://purl.obolibrary.org/obo/UBERON_0007134,trunk ganglion +8.1755988,GO:0038187,http://purl.obolibrary.org/obo/GO_0038187,pattern recognition receptor activity +8.1762145,DRUGBANK:DB00855,http://purl.obolibrary.org/obo/DRUGBANK_DB00855,none +8.1762145,MONDO:0020595,http://purl.obolibrary.org/obo/MONDO_0020595,disease of retroperitoneum +8.1765225,HP:0002197,http://purl.obolibrary.org/obo/HP_0002197,Generalized-onset seizure +8.1765225,MONDO:0016400,http://purl.obolibrary.org/obo/MONDO_0016400,metal transport or utilization disorder with epilepsy +8.1774472,MONDO:0017955,http://purl.obolibrary.org/obo/MONDO_0017955,granulomatous autoinflammatory syndrome +8.1777556,SO:0000204,http://purl.obolibrary.org/obo/SO_0000204,five_prime_UTR +8.1779098,DRUGBANK:DB00437,http://purl.obolibrary.org/obo/DRUGBANK_DB00437,none +8.1783727,PR:000016185,http://purl.obolibrary.org/obo/PR_000016185,transcription factor 7-like 1 +8.1786814,UBERON:0012359,http://purl.obolibrary.org/obo/UBERON_0012359,pedal digitopodium bone +8.1788358,MONDO:0004737,http://purl.obolibrary.org/obo/MONDO_0004737,homocystinuria +8.1789902,DRUGBANK:DB02285,http://purl.obolibrary.org/obo/DRUGBANK_DB02285,none +8.179608,PR:000005257,http://purl.obolibrary.org/obo/PR_000005257,cell division protein kinase 4 +8.1799171,DRUGBANK:DB04829,http://purl.obolibrary.org/obo/DRUGBANK_DB04829,none +8.1799171,PR:P0C7Q8,http://purl.obolibrary.org/obo/PR_P0C7Q8,none +8.1800717,UBERON:0011143,http://purl.obolibrary.org/obo/UBERON_0011143,upper urinary tract +8.1802262,UBERON:0002507,http://purl.obolibrary.org/obo/UBERON_0002507,abdominal lymph node +8.1803809,UBERON:0003524,http://purl.obolibrary.org/obo/UBERON_0003524,tail blood vessel +8.1803809,UBERON:0015036,http://purl.obolibrary.org/obo/UBERON_0015036,pedal digit metatarsal endochondral element +8.1809996,SO:0000154,http://purl.obolibrary.org/obo/SO_0000154,PAC +8.1811543,PR:000001006,http://purl.obolibrary.org/obo/PR_000001006,receptor-type tyrosine-protein phosphatase C +8.1811543,UBERON:0001236,http://purl.obolibrary.org/obo/UBERON_0001236,adrenal medulla +8.1823931,MONDO:0017270,http://purl.obolibrary.org/obo/MONDO_0017270,autosomal ichthyosis syndrome +8.1833232,MONDO:0015542,http://purl.obolibrary.org/obo/MONDO_0015542,secondary hemophagocytic lymphohistiocytosis +8.1833232,MONDO:0100257,http://purl.obolibrary.org/obo/MONDO_0100257,peroxisomal single enzyme/protein defect +8.1836334,MONDO:0002319,http://purl.obolibrary.org/obo/MONDO_0002319,phosphorus metabolism disease +8.1844094,DRUGBANK:DB00684,http://purl.obolibrary.org/obo/DRUGBANK_DB00684,none +8.1850306,MONDO:0003260,http://purl.obolibrary.org/obo/MONDO_0003260,adult cerebellar neoplasm +8.185186,DRUGBANK:DB01179,http://purl.obolibrary.org/obo/DRUGBANK_DB01179,none +8.185186,MONDO:0002794,http://purl.obolibrary.org/obo/MONDO_0002794,adult medulloblastoma +8.1853413,DRUGBANK:DB00321,http://purl.obolibrary.org/obo/DRUGBANK_DB00321,none +8.1861187,DRUGBANK:DB00704,http://purl.obolibrary.org/obo/DRUGBANK_DB00704,none +8.1862742,GO:0000271,http://purl.obolibrary.org/obo/GO_0000271,polysaccharide biosynthetic process +8.1864297,GO:0016071,http://purl.obolibrary.org/obo/GO_0016071,mRNA metabolic process +8.1864297,PR:000014836,http://purl.obolibrary.org/obo/PR_000014836,sex hormone-binding globulin +8.1870522,GO:0001696,http://purl.obolibrary.org/obo/GO_0001696,gastric acid secretion +8.1872079,DRUGBANK:DB02502,http://purl.obolibrary.org/obo/DRUGBANK_DB02502,none +8.1872079,GO:0031347,http://purl.obolibrary.org/obo/GO_0031347,regulation of defense response +8.1879866,MONDO:0003608,http://purl.obolibrary.org/obo/MONDO_0003608,optic atrophy +8.1884542,MONDO:0100115,http://purl.obolibrary.org/obo/MONDO_0100115,acute flaccid myelitis +8.188766,GO:0004768,http://purl.obolibrary.org/obo/GO_0004768,stearoyl-CoA 9-desaturase activity +8.188766,PR:000014497,http://purl.obolibrary.org/obo/PR_000014497,stearoyl-CoA desaturase +8.1900143,PR:000002317,http://purl.obolibrary.org/obo/PR_000002317,caspase-8 +8.1903266,DRUGBANK:DB00319,http://purl.obolibrary.org/obo/DRUGBANK_DB00319,none +8.1907952,CL:0000108,http://purl.obolibrary.org/obo/CL_0000108,cholinergic neuron +8.1907952,MONDO:0044742,http://purl.obolibrary.org/obo/MONDO_0044742,autosomal recessive epidermolytic ichthyosis +8.1922024,DRUGBANK:DB00853,http://purl.obolibrary.org/obo/DRUGBANK_DB00853,none +8.1922024,MONDO:0002659,http://purl.obolibrary.org/obo/MONDO_0002659,uveal cancer +8.1923589,GO:0004112,http://purl.obolibrary.org/obo/GO_0004112,cyclic-nucleotide phosphodiesterase activity +8.1925154,UBERON:0007771,http://purl.obolibrary.org/obo/UBERON_0007771,epidermis gland +8.192672,GO:0046849,http://purl.obolibrary.org/obo/GO_0046849,bone remodeling +8.1928285,CL:0000202,http://purl.obolibrary.org/obo/CL_0000202,auditory hair cell +8.1929851,GO:0034655,http://purl.obolibrary.org/obo/GO_0034655,nucleobase-containing compound catabolic process +8.193455,UBERON:0002377,http://purl.obolibrary.org/obo/UBERON_0002377,muscle of neck +8.1942386,SO:0000087,http://purl.obolibrary.org/obo/SO_0000087,nuclear_gene +8.1945522,DRUGBANK:DB11123,http://purl.obolibrary.org/obo/DRUGBANK_DB11123,none +8.1951798,GO:0016813,http://purl.obolibrary.org/obo/GO_0016813,"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines" +8.1953367,MONDO:0000771,http://purl.obolibrary.org/obo/MONDO_0000771,allergic respiratory disease +8.1956507,GO:0033057,http://purl.obolibrary.org/obo/GO_0033057,none +8.1967504,UBERON:0002286,http://purl.obolibrary.org/obo/UBERON_0002286,third ventricle +8.1969076,MONDO:0003781,http://purl.obolibrary.org/obo/MONDO_0003781,bronchitis +8.1969076,MONDO:0015194,http://purl.obolibrary.org/obo/MONDO_0015194,sideroblastic anemia +8.1969076,UBERON:0002493,http://purl.obolibrary.org/obo/UBERON_0002493,uterine artery +8.1980087,MONDO:0020074,http://purl.obolibrary.org/obo/MONDO_0020074,progressive myoclonus epilepsy +8.1983235,DRUGBANK:DB01404,http://purl.obolibrary.org/obo/DRUGBANK_DB01404,none +8.1983235,SO:0001082,http://purl.obolibrary.org/obo/SO_0001082,polypeptide_sequencing_information +8.1984809,MONDO:0000249,http://purl.obolibrary.org/obo/MONDO_0000249,secretory diarrhea +8.1986384,DRUGBANK:DB00721,http://purl.obolibrary.org/obo/DRUGBANK_DB00721,none +8.1997413,DRUGBANK:DB11309,http://purl.obolibrary.org/obo/DRUGBANK_DB11309,none +8.2000567,PR:000007749,http://purl.obolibrary.org/obo/PR_000007749,glucose-6-phosphate 1-dehydrogenase +8.2000567,PR:000050060,http://purl.obolibrary.org/obo/PR_000050060,glucose-6-phosphate dehydrogenase +8.2002144,DRUGBANK:DB03814,http://purl.obolibrary.org/obo/DRUGBANK_DB03814,none +8.2002144,DRUGBANK:DB09502,http://purl.obolibrary.org/obo/DRUGBANK_DB09502,none +8.2003722,HP:0001751,http://purl.obolibrary.org/obo/HP_0001751,Vestibular dysfunction +8.2005299,DRUGBANK:DB13453,http://purl.obolibrary.org/obo/DRUGBANK_DB13453,none +8.2005299,MONDO:0005164,http://purl.obolibrary.org/obo/MONDO_0005164,fibrosarcoma +8.2011612,DRUGBANK:DB13071,http://purl.obolibrary.org/obo/DRUGBANK_DB13071,none +8.2013191,DRUGBANK:DB09526,http://purl.obolibrary.org/obo/DRUGBANK_DB09526,none +8.202109,PR:000001941,http://purl.obolibrary.org/obo/PR_000001941,trans-acting T-cell-specific transcription factor GATA-3 +8.2024251,MONDO:0100087,http://purl.obolibrary.org/obo/MONDO_0100087,familial Alzheimer disease +8.2030576,CL:0000627,http://purl.obolibrary.org/obo/CL_0000627,transporting cell +8.2032158,CHEBI:64047,http://purl.obolibrary.org/obo/CHEBI_64047,food additive +8.2032158,UBERON:0002111,http://purl.obolibrary.org/obo/UBERON_0002111,artery smooth muscle tissue +8.2036905,MONDO:0017127,http://purl.obolibrary.org/obo/MONDO_0017127,inherited soft tissue tumor +8.2041654,DRUGBANK:DB01017,http://purl.obolibrary.org/obo/DRUGBANK_DB01017,none +8.2043238,GO:0034385,http://purl.obolibrary.org/obo/GO_0034385,triglyceride-rich plasma lipoprotein particle +8.2043238,GO:0046486,http://purl.obolibrary.org/obo/GO_0046486,glycerolipid metabolic process +8.204799,GO:0034361,http://purl.obolibrary.org/obo/GO_0034361,very-low-density lipoprotein particle +8.205116,UBERON:0002190,http://purl.obolibrary.org/obo/UBERON_0002190,subcutaneous adipose tissue +8.2057502,MONDO:0001300,http://purl.obolibrary.org/obo/MONDO_0001300,autonomic neuropathy +8.2067023,CHEBI:35718,http://purl.obolibrary.org/obo/CHEBI_35718,antifungal agent +8.2074964,MONDO:0021364,http://purl.obolibrary.org/obo/MONDO_0021364,neoplasm of oropharynx +8.2076553,GO:0004511,http://purl.obolibrary.org/obo/GO_0004511,tyrosine 3-monooxygenase activity +8.2082911,UBERON:0006530,http://purl.obolibrary.org/obo/UBERON_0006530,seminal fluid +8.2084501,PR:000003244,http://purl.obolibrary.org/obo/PR_000003244,RAF proto-oncogene serine/threonine-protein kinase +8.2089273,CHEBI:61120,http://purl.obolibrary.org/obo/CHEBI_61120,nucleobase-containing molecular entity +8.2097232,MONDO:0008449,http://purl.obolibrary.org/obo/MONDO_0008449,spina bifida +8.2097232,MONDO:0018940,http://purl.obolibrary.org/obo/MONDO_0018940,congenital myasthenic syndrome +8.2098825,UBERON:0006536,http://purl.obolibrary.org/obo/UBERON_0006536,male reproductive gland secretion +8.2098825,UBERON:0022293,http://purl.obolibrary.org/obo/UBERON_0022293,reproductive gland secretion +8.2103604,PR:000008630,http://purl.obolibrary.org/obo/PR_000008630,high mobility group protein B1 +8.2105197,MONDO:0005823,http://purl.obolibrary.org/obo/MONDO_0005823,legionellosis +8.2113168,GO:0004345,http://purl.obolibrary.org/obo/GO_0004345,glucose-6-phosphate dehydrogenase activity +8.2116359,NCBITaxon:153057,http://purl.obolibrary.org/obo/NCBITaxon_153057,none +8.2124339,DRUGBANK:DB00999,http://purl.obolibrary.org/obo/DRUGBANK_DB00999,none +8.2125936,MONDO:0005030,http://purl.obolibrary.org/obo/MONDO_0005030,fetal growth restriction +8.2125936,MONDO:0005941,http://purl.obolibrary.org/obo/MONDO_0005941,retroperitoneal cancer +8.2130728,GO:0007626,http://purl.obolibrary.org/obo/GO_0007626,locomotory behavior +8.2133924,MONDO:0044926,http://purl.obolibrary.org/obo/MONDO_0044926,oropharyngeal carcinoma +8.2133924,UBERON:0014398,http://purl.obolibrary.org/obo/UBERON_0014398,respiratory muscle +8.2143517,MONDO:0021065,http://purl.obolibrary.org/obo/MONDO_0021065,pleural neoplasm +8.2143517,MONDO:0100036,http://purl.obolibrary.org/obo/MONDO_0100036,variable age onset epilepsy +8.2149918,DRUGBANK:DB03995,http://purl.obolibrary.org/obo/DRUGBANK_DB03995,none +8.2151519,UBERON:2001951,http://purl.obolibrary.org/obo/UBERON_2001951,skin flap +8.2156324,MONDO:0016047,http://purl.obolibrary.org/obo/MONDO_0016047,endophthalmitis +8.2157925,DRUGBANK:DB15726,http://purl.obolibrary.org/obo/DRUGBANK_DB15726,none +8.2157925,MONDO:0005207,http://purl.obolibrary.org/obo/MONDO_0005207,choriocarcinoma +8.2157925,UBERON:0013685,http://purl.obolibrary.org/obo/UBERON_0013685,foramen of skull +8.217075,MONDO:0016398,http://purl.obolibrary.org/obo/MONDO_0016398,peroxisomal disease with epilepsy +8.2172354,UBERON:0003728,http://purl.obolibrary.org/obo/UBERON_0003728,mediastinum +8.2173959,UBERON:0005398,http://purl.obolibrary.org/obo/UBERON_0005398,female reproductive gland +8.2178774,UBERON:0001385,http://purl.obolibrary.org/obo/UBERON_0001385,tibialis anterior +8.2180379,MONDO:0021120,http://purl.obolibrary.org/obo/MONDO_0021120,functioning endocrine neoplasm +8.2181985,UBERON:4100003,http://purl.obolibrary.org/obo/UBERON_4100003,articular surface +8.2186804,GO:0060359,http://purl.obolibrary.org/obo/GO_0060359,response to ammonium ion +8.2191625,MONDO:0045008,http://purl.obolibrary.org/obo/MONDO_0045008,cholesterol metabolism disease +8.2193233,DRUGBANK:DB00921,http://purl.obolibrary.org/obo/DRUGBANK_DB00921,none +8.2194841,DRUGBANK:DB09321,http://purl.obolibrary.org/obo/DRUGBANK_DB09321,none +8.2198057,MONDO:0002615,http://purl.obolibrary.org/obo/MONDO_0002615,xanthomatosis +8.2198057,UBERON:0001645,http://purl.obolibrary.org/obo/UBERON_0001645,trigeminal nerve +8.2199666,PR:000000364,http://purl.obolibrary.org/obo/PR_000000364,smad2 +8.2206103,UBERON:0001361,http://purl.obolibrary.org/obo/UBERON_0001361,femoral vein +8.2207713,DRUGBANK:DB00584,http://purl.obolibrary.org/obo/DRUGBANK_DB00584,none +8.2207713,UBERON:0007116,http://purl.obolibrary.org/obo/UBERON_0007116,primary dentition +8.2215766,PR:Q8H103,http://purl.obolibrary.org/obo/PR_Q8H103,none +8.2217378,GO:0005819,http://purl.obolibrary.org/obo/GO_0005819,spindle +8.2225439,UBERON:0010304,http://purl.obolibrary.org/obo/UBERON_0010304,non-keratinized stratified squamous epithelium +8.2228665,DRUGBANK:DB00653,http://purl.obolibrary.org/obo/DRUGBANK_DB00653,none +8.2231893,DRUGBANK:DB00203,http://purl.obolibrary.org/obo/DRUGBANK_DB00203,none +8.2231893,DRUGBANK:DB06637,http://purl.obolibrary.org/obo/DRUGBANK_DB06637,none +8.2236736,MONDO:0018919,http://purl.obolibrary.org/obo/MONDO_0018919,McCune-Albright syndrome +8.2238351,HP:0007367,http://purl.obolibrary.org/obo/HP_0007367,Atrophy/Degeneration affecting the central nervous system +8.2241581,GO:0044033,http://purl.obolibrary.org/obo/GO_0044033,none +8.2244813,GO:0016917,http://purl.obolibrary.org/obo/GO_0016917,GABA receptor activity +8.2248045,MONDO:0016165,http://purl.obolibrary.org/obo/MONDO_0016165,genetic hypoparathyroidism +8.2249662,PR:000001318,http://purl.obolibrary.org/obo/PR_000001318,L-selectin +8.2254513,DRUGBANK:DB02256,http://purl.obolibrary.org/obo/DRUGBANK_DB02256,none +8.2254513,GO:0006289,http://purl.obolibrary.org/obo/GO_0006289,nucleotide-excision repair +8.2256131,DRUGBANK:DB09420,http://purl.obolibrary.org/obo/DRUGBANK_DB09420,none +8.2264224,GO:1990234,http://purl.obolibrary.org/obo/GO_1990234,transferase complex +8.2267463,PR:000014362,http://purl.obolibrary.org/obo/PR_000014362,runt-related transcription factor 1 +8.2272323,PR:000002205,http://purl.obolibrary.org/obo/PR_000002205,lymphotoxin-beta +8.2273944,DRUGBANK:DB01262,http://purl.obolibrary.org/obo/DRUGBANK_DB01262,none +8.2277186,UBERON:0003729,http://purl.obolibrary.org/obo/UBERON_0003729,mouth mucosa +8.2277186,UBERON:0004815,http://purl.obolibrary.org/obo/UBERON_0004815,lower respiratory tract epithelium +8.2282051,MONDO:0000491,http://purl.obolibrary.org/obo/MONDO_0000491,limb ischemia +8.2285295,MONDO:0021658,http://purl.obolibrary.org/obo/MONDO_0021658,vascular ectasia +8.2293411,CL:0002544,http://purl.obolibrary.org/obo/CL_0002544,aortic endothelial cell +8.2299909,MONDO:0017059,http://purl.obolibrary.org/obo/MONDO_0017059,neural tube closure defect +8.2304785,CHEBI:60643,http://purl.obolibrary.org/obo/CHEBI_60643,NMDA receptor antagonist +8.2306411,DRUGBANK:DB13700,http://purl.obolibrary.org/obo/DRUGBANK_DB13700,none +8.2306411,GO:0034754,http://purl.obolibrary.org/obo/GO_0034754,cellular hormone metabolic process +8.2306411,UBERON:0001393,http://purl.obolibrary.org/obo/UBERON_0001393,auditory cortex +8.2314544,HP:0002414,http://purl.obolibrary.org/obo/HP_0002414,Spina bifida +8.2329201,DRUGBANK:DB00566,http://purl.obolibrary.org/obo/DRUGBANK_DB00566,none +8.2329201,GO:0099589,http://purl.obolibrary.org/obo/GO_0099589,serotonin receptor activity +8.2334092,UBERON:0001754,http://purl.obolibrary.org/obo/UBERON_0001754,dental pulp +8.234388,GO:0007018,http://purl.obolibrary.org/obo/GO_0007018,microtubule-based movement +8.234388,MONDO:0019716,http://purl.obolibrary.org/obo/MONDO_0019716,overgrowth syndrome +8.2345512,DRUGBANK:DB00083,http://purl.obolibrary.org/obo/DRUGBANK_DB00083,none +8.2347144,PR:000002309,http://purl.obolibrary.org/obo/PR_000002309,caspase-1 +8.2348777,MONDO:0004747,http://purl.obolibrary.org/obo/MONDO_0004747,cleft lip +8.235041,PR:000005930,http://purl.obolibrary.org/obo/PR_000005930,macrophage colony-stimulating factor 1 +8.2355311,DRUGBANK:DB06692,http://purl.obolibrary.org/obo/DRUGBANK_DB06692,none +8.2358579,DRUGBANK:DB02962,http://purl.obolibrary.org/obo/DRUGBANK_DB02962,none +8.2361849,MONDO:0001336,http://purl.obolibrary.org/obo/MONDO_0001336,familial hyperlipidemia +8.2361849,MONDO:0043707,http://purl.obolibrary.org/obo/MONDO_0043707,mediastinal disease +8.2363484,HP:0003107,http://purl.obolibrary.org/obo/HP_0003107,Abnormal circulating cholesterol concentration +8.2363484,MONDO:0018155,http://purl.obolibrary.org/obo/MONDO_0018155,lateral sclerosis +8.236512,GO:0031667,http://purl.obolibrary.org/obo/GO_0031667,response to nutrient levels +8.2370028,MONDO:0005801,http://purl.obolibrary.org/obo/MONDO_0005801,human T-lymphotropic virus 1 infectious disease +8.2386405,MONDO:0020090,http://purl.obolibrary.org/obo/MONDO_0020090,male infertility due to gonadal dysgenesis +8.2388044,DRUGBANK:DB00847,http://purl.obolibrary.org/obo/DRUGBANK_DB00847,none +8.2394604,MONDO:0006515,http://purl.obolibrary.org/obo/MONDO_0006515,acute pancreatitis +8.2402809,GO:0008503,http://purl.obolibrary.org/obo/GO_0008503,benzodiazepine receptor activity +8.2404451,GO:0007167,http://purl.obolibrary.org/obo/GO_0007167,enzyme linked receptor protein signaling pathway +8.2407736,DRUGBANK:DB01576,http://purl.obolibrary.org/obo/DRUGBANK_DB01576,none +8.2407736,HP:0012444,http://purl.obolibrary.org/obo/HP_0012444,Brain atrophy +8.2407736,UBERON:0002946,http://purl.obolibrary.org/obo/UBERON_0002946,none +8.2417596,DRUGBANK:DB05804,http://purl.obolibrary.org/obo/DRUGBANK_DB05804,none +8.2417596,UBERON:0001207,http://purl.obolibrary.org/obo/UBERON_0001207,mucosa of large intestine +8.241924,PR:000014029,http://purl.obolibrary.org/obo/PR_000014029,GTP-binding protein Rit2 +8.2420885,DRUGBANK:DB00330,http://purl.obolibrary.org/obo/DRUGBANK_DB00330,none +8.2420885,UBERON:0005609,http://purl.obolibrary.org/obo/UBERON_0005609,iliac artery +8.242582,GO:0050790,http://purl.obolibrary.org/obo/GO_0050790,regulation of catalytic activity +8.242582,MONDO:0015914,http://purl.obolibrary.org/obo/MONDO_0015914,primary orthostatic hypotension +8.242582,MONDO:0017855,http://purl.obolibrary.org/obo/MONDO_0017855,T-B- severe combined immunodeficiency +8.2427466,HP:0000078,http://purl.obolibrary.org/obo/HP_0000078,Abnormality of the genital system +8.2427466,UBERON:0013757,http://purl.obolibrary.org/obo/UBERON_0013757,capillary blood +8.2429112,DRUGBANK:DB06724,http://purl.obolibrary.org/obo/DRUGBANK_DB06724,none +8.2429112,PR:000001863,http://purl.obolibrary.org/obo/PR_000001863,interferon regulatory factor 3-9 +8.2429112,PR:000007806,http://purl.obolibrary.org/obo/PR_000007806,galanin +8.2434052,PR:000028746,http://purl.obolibrary.org/obo/PR_000028746,"phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN" +8.2435699,MONDO:0016367,http://purl.obolibrary.org/obo/MONDO_0016367,dermatomyositis +8.2435699,MONDO:0023113,http://purl.obolibrary.org/obo/MONDO_0023113,familial colorectal cancer +8.2435699,MONDO:0036696,http://purl.obolibrary.org/obo/MONDO_0036696,spleen neoplasm +8.2443938,DRUGBANK:DB00977,http://purl.obolibrary.org/obo/DRUGBANK_DB00977,none +8.2448885,MONDO:0008977,http://purl.obolibrary.org/obo/MONDO_0008977,chondrosarcoma +8.2453834,MONDO:0019072,http://purl.obolibrary.org/obo/MONDO_0019072,intrahepatic cholestasis +8.246374,DRUGBANK:DB14086,http://purl.obolibrary.org/obo/DRUGBANK_DB14086,none +8.2467044,MONDO:0004184,http://purl.obolibrary.org/obo/MONDO_0004184,urethral disease +8.2468696,DRUGBANK:DB00051,http://purl.obolibrary.org/obo/DRUGBANK_DB00051,none +8.2468696,MONDO:0006499,http://purl.obolibrary.org/obo/MONDO_0006499,hamartoma +8.2468696,PR:Q9YHE8,http://purl.obolibrary.org/obo/PR_Q9YHE8,none +8.2472002,DRUGBANK:DB01750,http://purl.obolibrary.org/obo/DRUGBANK_DB01750,none +8.2475309,GO:0007010,http://purl.obolibrary.org/obo/GO_0007010,cytoskeleton organization +8.2476963,PR:000025349,http://purl.obolibrary.org/obo/PR_000025349,HSPB protein +8.2478617,GO:0034071,http://purl.obolibrary.org/obo/GO_0034071,aminoglycoside phosphotransferase activity +8.2478617,UBERON:0008946,http://purl.obolibrary.org/obo/UBERON_0008946,lung parenchyma +8.2480271,MONDO:0003062,http://purl.obolibrary.org/obo/MONDO_0003062,intestinal benign neoplasm +8.2483581,PR:000001023,http://purl.obolibrary.org/obo/PR_000001023,neural cell adhesion molecule NCAM +8.2483581,PR:000007841,http://purl.obolibrary.org/obo/PR_000007841,"glyceraldehyde-3-phosphate dehydrogenase, testis-specific" +8.2486892,GO:0060746,http://purl.obolibrary.org/obo/GO_0060746,parental behavior +8.2486892,UBERON:0002378,http://purl.obolibrary.org/obo/UBERON_0002378,muscle of abdomen +8.249683,GO:0007548,http://purl.obolibrary.org/obo/GO_0007548,sex differentiation +8.249683,PR:000036819,http://purl.obolibrary.org/obo/PR_000036819,none +8.2500146,MONDO:0007064,http://purl.obolibrary.org/obo/MONDO_0007064,adenosine deaminase deficiency +8.2500146,PR:000007597,http://purl.obolibrary.org/obo/PR_000007597,proto-oncogene c-Fos +8.2506779,UBERON:0000482,http://purl.obolibrary.org/obo/UBERON_0000482,basal lamina of epithelium +8.2510097,GO:0005605,http://purl.obolibrary.org/obo/GO_0005605,none +8.2511757,GO:0098868,http://purl.obolibrary.org/obo/GO_0098868,bone growth +8.2518398,MONDO:0003001,http://purl.obolibrary.org/obo/MONDO_0003001,seminoma +8.2520059,DRUGBANK:DB03823,http://purl.obolibrary.org/obo/DRUGBANK_DB03823,none +8.2523382,NCBITaxon:11571,http://purl.obolibrary.org/obo/NCBITaxon_11571,none +8.2525044,HP:0002813,http://purl.obolibrary.org/obo/HP_0002813,Abnormality of limb bone morphology +8.2530031,UBERON:0002606,http://purl.obolibrary.org/obo/UBERON_0002606,neuropil +8.2531694,UBERON:0001872,http://purl.obolibrary.org/obo/UBERON_0001872,parietal lobe +8.2535021,UBERON:0003481,http://purl.obolibrary.org/obo/UBERON_0003481,tail vein +8.2538348,MONDO:0000634,http://purl.obolibrary.org/obo/MONDO_0000634,thoracic benign neoplasm +8.2541677,HP:0002104,http://purl.obolibrary.org/obo/HP_0002104,Apnea +8.2541677,MONDO:0018630,http://purl.obolibrary.org/obo/MONDO_0018630,hereditary nonpolyposis colon cancer +8.2543342,GO:0033002,http://purl.obolibrary.org/obo/GO_0033002,muscle cell proliferation +8.2545007,MONDO:0017675,http://purl.obolibrary.org/obo/MONDO_0017675,punctate palmoplantar keratoderma +8.2546673,GO:0032274,http://purl.obolibrary.org/obo/GO_0032274,gonadotropin secretion +8.2548338,GO:0001556,http://purl.obolibrary.org/obo/GO_0001556,oocyte maturation +8.2550004,PR:000005847,http://purl.obolibrary.org/obo/PR_000005847,carnitine O-acetyltransferase +8.2551671,MONDO:0002155,http://purl.obolibrary.org/obo/MONDO_0002155,cholecystitis +8.2551671,MONDO:0006736,http://purl.obolibrary.org/obo/MONDO_0006736,dysplasia of cervix +8.2553337,DRUGBANK:DB11063,http://purl.obolibrary.org/obo/DRUGBANK_DB11063,none +8.2553337,MONDO:0005005,http://purl.obolibrary.org/obo/MONDO_0005005,clear cell renal carcinoma +8.2553337,NCBITaxon:11271,http://purl.obolibrary.org/obo/NCBITaxon_11271,none +8.2556671,MONDO:0001576,http://purl.obolibrary.org/obo/MONDO_0001576,telangiectasis +8.2558338,MONDO:0022394,http://purl.obolibrary.org/obo/MONDO_0022394,cervical intraepithelial neoplasia +8.2561674,GO:0010854,http://purl.obolibrary.org/obo/GO_0010854,adenylate cyclase regulator activity +8.2561674,MONDO:0005362,http://purl.obolibrary.org/obo/MONDO_0005362,erectile dysfunction +8.2563342,MONDO:0002134,http://purl.obolibrary.org/obo/MONDO_0002134,physiological sexual disorder +8.2573357,HP:0011844,http://purl.obolibrary.org/obo/HP_0011844,Abnormal appendicular skeleton morphology +8.2575027,MONDO:0001212,http://purl.obolibrary.org/obo/MONDO_0001212,non-suppurative otitis media +8.2590071,HP:0040068,http://purl.obolibrary.org/obo/HP_0040068,Abnormality of limb bone +8.2598439,MONDO:0003311,http://purl.obolibrary.org/obo/MONDO_0003311,endometrial stromal tumor +8.2598439,SO:0000101,http://purl.obolibrary.org/obo/SO_0000101,transposable_element +8.2598439,UBERON:0002726,http://purl.obolibrary.org/obo/UBERON_0002726,cervical spinal cord +8.2600113,MONDO:0020562,http://purl.obolibrary.org/obo/MONDO_0020562,pleomorphic liposarcoma +8.2606813,GO:0072175,http://purl.obolibrary.org/obo/GO_0072175,epithelial tube formation +8.2616872,GO:0019725,http://purl.obolibrary.org/obo/GO_0019725,cellular homeostasis +8.2618549,DRUGBANK:DB03994,http://purl.obolibrary.org/obo/DRUGBANK_DB03994,none +8.2618549,MONDO:0016518,http://purl.obolibrary.org/obo/MONDO_0016518,isolated punctate palmoplantar keratoderma +8.2620227,MONDO:0002182,http://purl.obolibrary.org/obo/MONDO_0002182,communication disorder +8.2621905,CL:0000891,http://purl.obolibrary.org/obo/CL_0000891,foam cell +8.2623583,MONDO:0020265,http://purl.obolibrary.org/obo/MONDO_0020265,mitochondrial disease with eye involvement +8.2625262,GO:0055088,http://purl.obolibrary.org/obo/GO_0055088,lipid homeostasis +8.262862,DRUGBANK:DB00273,http://purl.obolibrary.org/obo/DRUGBANK_DB00273,none +8.2630299,GO:0005183,http://purl.obolibrary.org/obo/GO_0005183,gonadotropin hormone-releasing hormone activity +8.2635339,MONDO:0017676,http://purl.obolibrary.org/obo/MONDO_0017676,marginal papular palmoplantar keratoderma +8.2635339,PR:000011271,http://purl.obolibrary.org/obo/PR_000011271,"NACHT, LRR and PYD domains-containing protein 3" +8.263702,MONDO:0019175,http://purl.obolibrary.org/obo/MONDO_0019175,primary lymphedema +8.2638701,CHEBI:39143,http://purl.obolibrary.org/obo/CHEBI_39143,Lewis acid +8.2642063,GO:0001838,http://purl.obolibrary.org/obo/GO_0001838,embryonic epithelial tube formation +8.2643745,MONDO:0019271,http://purl.obolibrary.org/obo/MONDO_0019271,acrokeratoderma +8.2647109,DRUGBANK:DB11228,http://purl.obolibrary.org/obo/DRUGBANK_DB11228,none +8.2655524,GO:0034329,http://purl.obolibrary.org/obo/GO_0034329,cell junction assembly +8.2658892,GO:0001841,http://purl.obolibrary.org/obo/GO_0001841,neural tube formation +8.2667318,PR:000001998,http://purl.obolibrary.org/obo/PR_000001998,C-C motif chemokine 3/4 +8.267069,UBERON:0034908,http://purl.obolibrary.org/obo/UBERON_0034908,scapular muscle +8.2677437,MONDO:0015545,http://purl.obolibrary.org/obo/MONDO_0015545,macrophage activation syndrome +8.2677437,MONDO:0019507,http://purl.obolibrary.org/obo/MONDO_0019507,amelogenesis imperfecta +8.2680813,MONDO:0009490,http://purl.obolibrary.org/obo/MONDO_0009490,Papillon-Lefevre disease +8.2680813,MONDO:0042488,http://purl.obolibrary.org/obo/MONDO_0042488,Cestode infectious disease +8.2682501,MONDO:0007047,http://purl.obolibrary.org/obo/MONDO_0007047,punctate palmoplantar keratoderma type III +8.2682501,PR:Q27487,http://purl.obolibrary.org/obo/PR_Q27487,none +8.268419,PR:000026474,http://purl.obolibrary.org/obo/PR_000026474,transcription factor PML +8.2685878,PR:000001355,http://purl.obolibrary.org/obo/PR_000001355,immunoglobulin gamma Fc receptor II/III/IV +8.2694326,MONDO:0016341,http://purl.obolibrary.org/obo/MONDO_0016341,lysosomal disease with restrictive cardiomyopathy +8.2696017,HP:0000508,http://purl.obolibrary.org/obo/HP_0000508,Ptosis +8.2697708,MONDO:0000824,http://purl.obolibrary.org/obo/MONDO_0000824,congenital diarrhea +8.2699399,CHEBI:76725,http://purl.obolibrary.org/obo/CHEBI_76725,EC 1.* (oxidoreductase) inhibitor +8.2706166,PR:000001012,http://purl.obolibrary.org/obo/PR_000001012,integrin alpha-M +8.2707858,GO:0097060,http://purl.obolibrary.org/obo/GO_0097060,synaptic membrane +8.2709551,DRUGBANK:DB16367,http://purl.obolibrary.org/obo/DRUGBANK_DB16367,none +8.2709551,NCBITaxon:2732405,http://purl.obolibrary.org/obo/NCBITaxon_2732405,Duplornaviricota +8.2712937,GO:0016879,http://purl.obolibrary.org/obo/GO_0016879,"ligase activity, forming carbon-nitrogen bonds" +8.2716325,MONDO:0001967,http://purl.obolibrary.org/obo/MONDO_0001967,gonadal dysgenesis +8.2724799,GO:0033643,http://purl.obolibrary.org/obo/GO_0033643,host cell part +8.272819,MONDO:0006964,http://purl.obolibrary.org/obo/MONDO_0006964,secondary hyperparathyroidism +8.2729887,MONDO:0006615,http://purl.obolibrary.org/obo/MONDO_0006615,sweat gland disease +8.273328,MONDO:0001700,http://purl.obolibrary.org/obo/MONDO_0001700,megaloblastic anemia +8.273328,MONDO:0019338,http://purl.obolibrary.org/obo/MONDO_0019338,sarcoidosis +8.2738372,MONDO:0017604,http://purl.obolibrary.org/obo/MONDO_0017604,marginal zone lymphoma +8.2743467,GO:0042493,http://purl.obolibrary.org/obo/GO_0042493,response to drug +8.2746864,MONDO:0006684,http://purl.obolibrary.org/obo/MONDO_0006684,brain edema +8.2757065,MONDO:0021444,http://purl.obolibrary.org/obo/MONDO_0021444,benign neoplasm of large intestine +8.2758766,MONDO:0008840,http://purl.obolibrary.org/obo/MONDO_0008840,ataxia telangiectasia +8.2758766,UBERON:0001773,http://purl.obolibrary.org/obo/UBERON_0001773,sclera +8.2763871,CL:0000137,http://purl.obolibrary.org/obo/CL_0000137,osteocyte +8.2763871,GO:0061564,http://purl.obolibrary.org/obo/GO_0061564,axon development +8.2763871,PR:000023576,http://purl.obolibrary.org/obo/PR_000023576,none +8.2774089,MONDO:0005617,http://purl.obolibrary.org/obo/MONDO_0005617,undifferentiated carcinoma +8.2774089,MONDO:0007186,http://purl.obolibrary.org/obo/MONDO_0007186,gastroesophageal reflux disease +8.2779202,PR:000015066,http://purl.obolibrary.org/obo/PR_000015066,"solute carrier family 2, facilitated glucose transporter member 4" +8.2782612,UBERON:0001884,http://purl.obolibrary.org/obo/UBERON_0001884,phrenic nerve +8.2782612,UBERON:0003443,http://purl.obolibrary.org/obo/UBERON_0003443,thoracic cavity nerve +8.2782612,UBERON:0003473,http://purl.obolibrary.org/obo/UBERON_0003473,thoracic cavity artery +8.2784318,DRUGBANK:DB10821,http://purl.obolibrary.org/obo/DRUGBANK_DB10821,none +8.2786023,DRUGBANK:DB00819,http://purl.obolibrary.org/obo/DRUGBANK_DB00819,none +8.2786023,UBERON:0010428,http://purl.obolibrary.org/obo/UBERON_0010428,flat bone +8.2789436,MONDO:0020290,http://purl.obolibrary.org/obo/MONDO_0020290,atrioventricular septal defect +8.279968,DRUGBANK:DB00863,http://purl.obolibrary.org/obo/DRUGBANK_DB00863,none +8.2801388,GO:0005044,http://purl.obolibrary.org/obo/GO_0005044,scavenger receptor activity +8.2801388,MONDO:0019313,http://purl.obolibrary.org/obo/MONDO_0019313,hereditary lymphedema +8.2801388,UBERON:0002749,http://purl.obolibrary.org/obo/UBERON_0002749,regional part of cerebellar cortex +8.2803097,MONDO:0005875,http://purl.obolibrary.org/obo/MONDO_0005875,Newcastle disease +8.2811645,MONDO:0001528,http://purl.obolibrary.org/obo/MONDO_0001528,vulva cancer +8.2815066,GO:0007369,http://purl.obolibrary.org/obo/GO_0007369,gastrulation +8.2815066,MONDO:0045032,http://purl.obolibrary.org/obo/MONDO_0045032,congenital secretory diarrhea +8.2816777,MONDO:0005197,http://purl.obolibrary.org/obo/MONDO_0005197,thymus neoplasm +8.2818488,UBERON:0002129,http://purl.obolibrary.org/obo/UBERON_0002129,cerebellar cortex +8.28202,MONDO:0005845,http://purl.obolibrary.org/obo/MONDO_0005845,meningoencephalitis +8.2821912,MONDO:0005966,http://purl.obolibrary.org/obo/MONDO_0005966,spleen cancer +8.2828762,DRUGBANK:DB03085,http://purl.obolibrary.org/obo/DRUGBANK_DB03085,none +8.2830476,SO:0000366,http://purl.obolibrary.org/obo/SO_0000366,insertion_site +8.2837332,MONDO:0015182,http://purl.obolibrary.org/obo/MONDO_0015182,congenital enteropathy involving intestinal mucosa development +8.2837332,NCBITaxon:327822,http://purl.obolibrary.org/obo/NCBITaxon_327822,none +8.2844193,DRUGBANK:DB13150,http://purl.obolibrary.org/obo/DRUGBANK_DB13150,none +8.2845909,PR:000003198,http://purl.obolibrary.org/obo/PR_000003198,caveolin-1 +8.2847625,NCBITaxon:11786,http://purl.obolibrary.org/obo/NCBITaxon_11786,none +8.2851059,UBERON:0001894,http://purl.obolibrary.org/obo/UBERON_0001894,diencephalon +8.2857929,NCBITaxon:11276,http://purl.obolibrary.org/obo/NCBITaxon_11276,none +8.2861366,PR:000005204,http://purl.obolibrary.org/obo/PR_000005204,cell division control protein 42 +8.2863085,MONDO:0017290,http://purl.obolibrary.org/obo/MONDO_0017290,familial intrahepatic cholestasis +8.2864805,DRUGBANK:DB01590,http://purl.obolibrary.org/obo/DRUGBANK_DB01590,none +8.2869964,GO:0031526,http://purl.obolibrary.org/obo/GO_0031526,brush border membrane +8.2869964,MONDO:0005025,http://purl.obolibrary.org/obo/MONDO_0005025,endocarditis +8.2873405,MONDO:0024263,http://purl.obolibrary.org/obo/MONDO_0024263,neonatal aspiration syndrome +8.2875126,HP:0002012,http://purl.obolibrary.org/obo/HP_0002012,Abnormality of the abdominal organs +8.2875126,PR:000007563,http://purl.obolibrary.org/obo/PR_000007563,vascular endothelial growth factor receptor 1 +8.2876848,GO:0004000,http://purl.obolibrary.org/obo/GO_0004000,adenosine deaminase activity +8.2876848,UBERON:0002168,http://purl.obolibrary.org/obo/UBERON_0002168,left lung +8.2878569,MONDO:0006851,http://purl.obolibrary.org/obo/MONDO_0006851,meconium aspiration syndrome +8.2883736,NCBITaxon:10880,http://purl.obolibrary.org/obo/NCBITaxon_10880,Reoviridae +8.2885459,GO:0008910,http://purl.obolibrary.org/obo/GO_0008910,kanamycin kinase activity +8.2888905,UBERON:0001586,http://purl.obolibrary.org/obo/UBERON_0001586,internal jugular vein +8.2890629,GO:0015893,http://purl.obolibrary.org/obo/GO_0015893,drug transport +8.2895802,DRUGBANK:DB14510,http://purl.obolibrary.org/obo/DRUGBANK_DB14510,none +8.2895802,GO:0002237,http://purl.obolibrary.org/obo/GO_0002237,response to molecule of bacterial origin +8.2897526,MONDO:0006745,http://purl.obolibrary.org/obo/MONDO_0006745,endometrioid stromal sarcoma +8.2906155,CHEBI:27780,http://purl.obolibrary.org/obo/CHEBI_27780,detergent +8.2913064,NCBITaxon:2732459,http://purl.obolibrary.org/obo/NCBITaxon_2732459,Resentoviricetes +8.2913064,NCBITaxon:2732541,http://purl.obolibrary.org/obo/NCBITaxon_2732541,Reovirales +8.2918248,DRUGBANK:DB15392,http://purl.obolibrary.org/obo/DRUGBANK_DB15392,none +8.2918248,GO:0012506,http://purl.obolibrary.org/obo/GO_0012506,vesicle membrane +8.2919977,CHEBI:25944,http://purl.obolibrary.org/obo/CHEBI_25944,pesticide +8.2928625,DRUGBANK:DB00030,http://purl.obolibrary.org/obo/DRUGBANK_DB00030,none +8.2932087,GO:0009142,http://purl.obolibrary.org/obo/GO_0009142,nucleoside triphosphate biosynthetic process +8.2933818,GO:0016661,http://purl.obolibrary.org/obo/GO_0016661,"oxidoreductase activity, acting on other nitrogenous compounds as donors" +8.2939013,DRUGBANK:DB12116,http://purl.obolibrary.org/obo/DRUGBANK_DB12116,none +8.2942478,UBERON:0004663,http://purl.obolibrary.org/obo/UBERON_0004663,aorta wall +8.2945944,GO:0048659,http://purl.obolibrary.org/obo/GO_0048659,smooth muscle cell proliferation +8.2951146,MONDO:0002289,http://purl.obolibrary.org/obo/MONDO_0002289,iris disease +8.2951146,MONDO:0008040,http://purl.obolibrary.org/obo/MONDO_0008040,transient myeloproliferative syndrome +8.295288,DRUGBANK:DB00996,http://purl.obolibrary.org/obo/DRUGBANK_DB00996,none +8.2954615,PR:000003171,http://purl.obolibrary.org/obo/PR_000003171,IGFBP-related protein +8.295635,GO:0000226,http://purl.obolibrary.org/obo/GO_0000226,microtubule cytoskeleton organization +8.295635,MONDO:0019520,http://purl.obolibrary.org/obo/MONDO_0019520,syndromic lymphedema +8.2959821,PR:P25858,http://purl.obolibrary.org/obo/PR_P25858,none +8.2961557,MONDO:0002278,http://purl.obolibrary.org/obo/MONDO_0002278,benign colon neoplasm +8.2970241,GO:0010856,http://purl.obolibrary.org/obo/GO_0010856,adenylate cyclase activator activity +8.2971979,CHEBI:38324,http://purl.obolibrary.org/obo/CHEBI_38324,cholinergic agonist +8.2973717,GO:0009201,http://purl.obolibrary.org/obo/GO_0009201,ribonucleoside triphosphate biosynthetic process +8.2977194,MONDO:0018612,http://purl.obolibrary.org/obo/MONDO_0018612,congenital hypothyroidism +8.2978933,UBERON:0001514,http://purl.obolibrary.org/obo/UBERON_0001514,descending aorta +8.2987633,CL:0000521,http://purl.obolibrary.org/obo/CL_0000521,fungal cell +8.2989374,DRUGBANK:DB01181,http://purl.obolibrary.org/obo/DRUGBANK_DB01181,none +8.2989374,DRUGBANK:DB14556,http://purl.obolibrary.org/obo/DRUGBANK_DB14556,none +8.2992856,PR:000012525,http://purl.obolibrary.org/obo/PR_000012525,pyridoxal phosphate phosphatase +8.2994598,GO:0005254,http://purl.obolibrary.org/obo/GO_0005254,chloride channel activity +8.2994598,MONDO:0000470,http://purl.obolibrary.org/obo/MONDO_0000470,endocardium disease +8.299634,MONDO:0005082,http://purl.obolibrary.org/obo/MONDO_0005082,prostate adenocarcinoma +8.3005054,DRUGBANK:DB06756,http://purl.obolibrary.org/obo/DRUGBANK_DB06756,none +8.3008542,DRUGBANK:DB00503,http://purl.obolibrary.org/obo/DRUGBANK_DB00503,none +8.3012032,DRUGBANK:DB00137,http://purl.obolibrary.org/obo/DRUGBANK_DB00137,none +8.3017268,HP:0001392,http://purl.obolibrary.org/obo/HP_0001392,Abnormality of the liver +8.3019014,DRUGBANK:DB00760,http://purl.obolibrary.org/obo/DRUGBANK_DB00760,none +8.302076,DRUGBANK:DB00002,http://purl.obolibrary.org/obo/DRUGBANK_DB00002,none +8.3022506,CL:0010001,http://purl.obolibrary.org/obo/CL_0010001,stromal cell of bone marrow +8.3022506,MONDO:0002817,http://purl.obolibrary.org/obo/MONDO_0002817,adrenal gland cancer +8.3022506,MONDO:0016108,http://purl.obolibrary.org/obo/MONDO_0016108,autosomal dominant distal myopathy +8.3022506,UBERON:0007774,http://purl.obolibrary.org/obo/UBERON_0007774,secondary dentition +8.3024253,CL:0000210,http://purl.obolibrary.org/obo/CL_0000210,photoreceptor cell +8.3024253,GO:0007276,http://purl.obolibrary.org/obo/GO_0007276,gamete generation +8.3026,CL:0000207,http://purl.obolibrary.org/obo/CL_0000207,olfactory receptor cell +8.3027748,MONDO:0006525,http://purl.obolibrary.org/obo/MONDO_0006525,allergic contact dermatitis +8.303649,GO:0032496,http://purl.obolibrary.org/obo/GO_0032496,response to lipopolysaccharide +8.303649,MONDO:0003393,http://purl.obolibrary.org/obo/MONDO_0003393,thymus gland disease +8.3038239,DRUGBANK:DB12862,http://purl.obolibrary.org/obo/DRUGBANK_DB12862,none +8.3038239,HP:0003124,http://purl.obolibrary.org/obo/HP_0003124,Hypercholesterolemia +8.3038239,PR:000029150,http://purl.obolibrary.org/obo/PR_000029150,none +8.3041739,PR:000003272,http://purl.obolibrary.org/obo/PR_000003272,insulin receptor-related receptor +8.304524,MONDO:0008824,http://purl.obolibrary.org/obo/MONDO_0008824,fetal akinesia deformation sequence +8.3046991,DRUGBANK:DB01454,http://purl.obolibrary.org/obo/DRUGBANK_DB01454,none +8.3046991,PR:Q9FX54,http://purl.obolibrary.org/obo/PR_Q9FX54,none +8.3055749,MONDO:0001085,http://purl.obolibrary.org/obo/MONDO_0001085,interstitial nephritis +8.3057502,DRUGBANK:DB00788,http://purl.obolibrary.org/obo/DRUGBANK_DB00788,none +8.3057502,DRUGBANK:DB11997,http://purl.obolibrary.org/obo/DRUGBANK_DB11997,none +8.3062762,GO:0009145,http://purl.obolibrary.org/obo/GO_0009145,purine nucleoside triphosphate biosynthetic process +8.3068025,GO:0009206,http://purl.obolibrary.org/obo/GO_0009206,purine ribonucleoside triphosphate biosynthetic process +8.306978,DRUGBANK:DB00482,http://purl.obolibrary.org/obo/DRUGBANK_DB00482,none +8.3078558,GO:0072511,http://purl.obolibrary.org/obo/GO_0072511,none +8.3078558,MONDO:0018187,http://purl.obolibrary.org/obo/MONDO_0018187,genetic syndromic Pierre Robin syndrome +8.3083829,GO:0016701,http://purl.obolibrary.org/obo/GO_0016701,"oxidoreductase activity, acting on single donors with incorporation of molecular oxygen" +8.3083829,UBERON:0010912,http://purl.obolibrary.org/obo/UBERON_0010912,subdivision of skeleton +8.3085587,GO:0033692,http://purl.obolibrary.org/obo/GO_0033692,cellular polysaccharide biosynthetic process +8.3085587,PR:000003507,http://purl.obolibrary.org/obo/PR_000003507,chimeric protein +8.3085587,PR:000010125,http://purl.obolibrary.org/obo/PR_000010125,dual specificity mitogen-activated protein kinase kinase 1 +8.3087345,DRUGBANK:DB00475,http://purl.obolibrary.org/obo/DRUGBANK_DB00475,none +8.3092621,PR:000001251,http://purl.obolibrary.org/obo/PR_000001251,angiotensin II receptor 1 +8.3092621,UBERON:0004538,http://purl.obolibrary.org/obo/UBERON_0004538,left kidney +8.3099659,UBERON:0001673,http://purl.obolibrary.org/obo/UBERON_0001673,central retinal vein +8.310142,DRUGBANK:DB07814,http://purl.obolibrary.org/obo/DRUGBANK_DB07814,none +8.310318,MONDO:0006247,http://purl.obolibrary.org/obo/MONDO_0006247,histiocytic and dendritic cell neoplasm +8.3113751,MONDO:0001734,http://purl.obolibrary.org/obo/MONDO_0001734,tuberous sclerosis +8.3124333,MONDO:0010602,http://purl.obolibrary.org/obo/MONDO_0010602,hemophilia A +8.3126098,DRUGBANK:DB10530,http://purl.obolibrary.org/obo/DRUGBANK_DB10530,none +8.3131394,CL:0000617,http://purl.obolibrary.org/obo/CL_0000617,GABAergic neuron +8.313316,PR:000001443,http://purl.obolibrary.org/obo/PR_000001443,cadherin-2 +8.3136693,DRUGBANK:DB01839,http://purl.obolibrary.org/obo/DRUGBANK_DB01839,none +8.313846,GO:0044550,http://purl.obolibrary.org/obo/GO_0044550,secondary metabolite biosynthetic process +8.3141995,UBERON:0001807,http://purl.obolibrary.org/obo/UBERON_0001807,paravertebral ganglion +8.3150837,GO:0009893,http://purl.obolibrary.org/obo/GO_0009893,positive regulation of metabolic process +8.3152607,DRUGBANK:DB01101,http://purl.obolibrary.org/obo/DRUGBANK_DB01101,none +8.3154376,MONDO:0005133,http://purl.obolibrary.org/obo/MONDO_0005133,endometriosis +8.3156147,MONDO:0019438,http://purl.obolibrary.org/obo/MONDO_0019438,AL amyloidosis +8.3161459,UBERON:0000094,http://purl.obolibrary.org/obo/UBERON_0000094,membrane organ +8.3173864,GO:0001667,http://purl.obolibrary.org/obo/GO_0001667,ameboidal-type cell migration +8.3173864,GO:0016570,http://purl.obolibrary.org/obo/GO_0016570,histone modification +8.3179186,SO:0000997,http://purl.obolibrary.org/obo/SO_0000997,gene_fragment +8.318096,UBERON:0001083,http://purl.obolibrary.org/obo/UBERON_0001083,myocardium of ventricle +8.3182735,GO:0015108,http://purl.obolibrary.org/obo/GO_0015108,chloride transmembrane transporter activity +8.3182735,UBERON:0003501,http://purl.obolibrary.org/obo/UBERON_0003501,retina blood vessel +8.318451,MONDO:0005885,http://purl.obolibrary.org/obo/MONDO_0005885,optic neuritis +8.3191614,MONDO:0016264,http://purl.obolibrary.org/obo/MONDO_0016264,autoimmune hepatitis +8.3195167,MONDO:0005149,http://purl.obolibrary.org/obo/MONDO_0005149,pulmonary hypertension +8.3196945,GO:0044437,http://purl.obolibrary.org/obo/GO_0044437,none +8.3212955,MONDO:0018906,http://purl.obolibrary.org/obo/MONDO_0018906,follicular lymphoma +8.3214735,PR:P46896,http://purl.obolibrary.org/obo/PR_P46896,none +8.3220079,UBERON:0007828,http://purl.obolibrary.org/obo/UBERON_0007828,girdle bone/zone +8.322186,DRUGBANK:DB11640,http://purl.obolibrary.org/obo/DRUGBANK_DB11640,none +8.3223642,HP:0004329,http://purl.obolibrary.org/obo/HP_0004329,Abnormal posterior eye segment morphology +8.322899,GO:0006754,http://purl.obolibrary.org/obo/GO_0006754,ATP biosynthetic process +8.3232557,GO:0030217,http://purl.obolibrary.org/obo/GO_0030217,T cell differentiation +8.3234341,MONDO:0002465,http://purl.obolibrary.org/obo/MONDO_0002465,bronchiolitis +8.3236126,GO:0015929,http://purl.obolibrary.org/obo/GO_0015929,hexosaminidase activity +8.323791,MONDO:0005439,http://purl.obolibrary.org/obo/MONDO_0005439,familial hypercholesterolemia +8.3245052,GO:0007416,http://purl.obolibrary.org/obo/GO_0007416,synapse assembly +8.3248625,MONDO:0018544,http://purl.obolibrary.org/obo/MONDO_0018544,adrenoleukodystrophy +8.3255774,UBERON:0001979,http://purl.obolibrary.org/obo/UBERON_0001979,venule +8.3257562,PR:000003273,http://purl.obolibrary.org/obo/PR_000003273,insulin-like growth factor 1 receptor +8.325935,GO:0048678,http://purl.obolibrary.org/obo/GO_0048678,response to axon injury +8.3262928,HP:0001098,http://purl.obolibrary.org/obo/HP_0001098,Abnormal fundus morphology +8.3270088,NCBITaxon:155619,http://purl.obolibrary.org/obo/NCBITaxon_155619,none +8.3271878,DRUGBANK:DB00582,http://purl.obolibrary.org/obo/DRUGBANK_DB00582,none +8.3271878,GO:0070838,http://purl.obolibrary.org/obo/GO_0070838,none +8.3277252,GO:0015669,http://purl.obolibrary.org/obo/GO_0015669,gas transport +8.3279044,UBERON:0007503,http://purl.obolibrary.org/obo/UBERON_0007503,epithelial vesicle +8.3280836,MONDO:0017749,http://purl.obolibrary.org/obo/MONDO_0017749,disorder of multiple glycosylation +8.3284422,MONDO:0021680,http://purl.obolibrary.org/obo/MONDO_0021680,streptococcal infection +8.3286215,GO:0003916,http://purl.obolibrary.org/obo/GO_0003916,DNA topoisomerase activity +8.3288009,GO:0015931,http://purl.obolibrary.org/obo/GO_0015931,nucleobase-containing compound transport +8.3288009,MONDO:0010200,http://purl.obolibrary.org/obo/MONDO_0010200,Wilson disease +8.3289803,NCBITaxon:10803,http://purl.obolibrary.org/obo/NCBITaxon_10803,none +8.3293391,GO:0048608,http://purl.obolibrary.org/obo/GO_0048608,reproductive structure development +8.3293391,PR:000006222,http://purl.obolibrary.org/obo/PR_000006222,none +8.3307759,DRUGBANK:DB01233,http://purl.obolibrary.org/obo/DRUGBANK_DB01233,none +8.331675,MONDO:0020228,http://purl.obolibrary.org/obo/MONDO_0020228,cataract associated with a metabolic disease +8.3318549,SO:0000478,http://purl.obolibrary.org/obo/SO_0000478,C_gene_segment +8.3323948,UBERON:0002329,http://purl.obolibrary.org/obo/UBERON_0002329,somite +8.3336557,UBERON:0034978,http://purl.obolibrary.org/obo/UBERON_0034978,paraganglion (generic) +8.3340162,MONDO:0000166,http://purl.obolibrary.org/obo/MONDO_0000166,"encephalopathy, acute, infection-induced" +8.3340162,MONDO:0011953,http://purl.obolibrary.org/obo/MONDO_0011953,familial acute necrotizing encephalopathy +8.3347377,UBERON:0036217,http://purl.obolibrary.org/obo/UBERON_0036217,coelomic fluid +8.3356404,DRUGBANK:DB09536,http://purl.obolibrary.org/obo/DRUGBANK_DB09536,none +8.335821,NCBITaxon:452333,http://purl.obolibrary.org/obo/NCBITaxon_452333,none +8.3361823,DRUGBANK:DB00317,http://purl.obolibrary.org/obo/DRUGBANK_DB00317,none +8.336363,MONDO:0006009,http://purl.obolibrary.org/obo/MONDO_0006009,viral encephalitis +8.3365438,CHEBI:32988,http://purl.obolibrary.org/obo/CHEBI_32988,amide +8.3365438,MONDO:0019218,http://purl.obolibrary.org/obo/MONDO_0019218,inborn disorder of bile acid synthesis +8.3369054,MONDO:0002933,http://purl.obolibrary.org/obo/MONDO_0002933,osteosclerosis +8.3378099,MONDO:0005028,http://purl.obolibrary.org/obo/MONDO_0005028,esophageal adenocarcinoma +8.3378099,MONDO:0015077,http://purl.obolibrary.org/obo/MONDO_0015077,adrenal/paraganglial tumor +8.337991,GO:0031102,http://purl.obolibrary.org/obo/GO_0031102,neuron projection regeneration +8.337991,SO:0001528,http://purl.obolibrary.org/obo/SO_0001528,nuclear_localization_signal +8.338172,MONDO:0020633,http://purl.obolibrary.org/obo/MONDO_0020633,anaplastic cancer +8.3383531,PR:000011141,http://purl.obolibrary.org/obo/PR_000011141,nestin +8.3387153,PR:000000680,http://purl.obolibrary.org/obo/PR_000000680,transient receptor potential cation channel TRPC +8.3387153,UBERON:0013118,http://purl.obolibrary.org/obo/UBERON_0013118,sulcus of brain +8.3390777,MONDO:0002604,http://purl.obolibrary.org/obo/MONDO_0002604,pericytic neoplasm +8.3396215,DRUGBANK:DB12458,http://purl.obolibrary.org/obo/DRUGBANK_DB12458,none +8.3403471,GO:0006351,http://purl.obolibrary.org/obo/GO_0006351,"transcription, DNA-templated" +8.3403471,MONDO:0015581,http://purl.obolibrary.org/obo/MONDO_0015581,bile acid synthesis defect with cholestasis and malabsorption +8.3414364,DRUGBANK:DB14532,http://purl.obolibrary.org/obo/DRUGBANK_DB14532,none +8.3419815,GO:0002684,http://purl.obolibrary.org/obo/GO_0002684,positive regulation of immune system process +8.3419815,PR:000001931,http://purl.obolibrary.org/obo/PR_000001931,sialoadhesin +8.3419815,UBERON:0002167,http://purl.obolibrary.org/obo/UBERON_0002167,right lung +8.3425269,MONDO:0015626,http://purl.obolibrary.org/obo/MONDO_0015626,Charcot-Marie-Tooth disease +8.3430726,GO:0031103,http://purl.obolibrary.org/obo/GO_0031103,axon regeneration +8.3432546,PR:000014493,http://purl.obolibrary.org/obo/PR_000014493,scavenger receptor class B member 1 +8.3434366,MONDO:0006955,http://purl.obolibrary.org/obo/MONDO_0006955,rheumatic heart disease +8.3434366,NCBITaxon:68889,http://purl.obolibrary.org/obo/NCBITaxon_68889,none +8.3434366,PR:O49596,http://purl.obolibrary.org/obo/PR_O49596,none +8.3434366,SO:0000987,http://purl.obolibrary.org/obo/SO_0000987,linear +8.3438007,MONDO:0020212,http://purl.obolibrary.org/obo/MONDO_0020212,superficial corneal dystrophy +8.3441649,NCBITaxon:80611,http://purl.obolibrary.org/obo/NCBITaxon_80611,none +8.3443471,GO:0005789,http://purl.obolibrary.org/obo/GO_0005789,endoplasmic reticulum membrane +8.3443471,NCBITaxon:80614,http://purl.obolibrary.org/obo/NCBITaxon_80614,none +8.3447115,PR:000014543,http://purl.obolibrary.org/obo/PR_000014543,secretin +8.3450761,UBERON:0002095,http://purl.obolibrary.org/obo/UBERON_0002095,mesentery +8.3456232,GO:0044451,http://purl.obolibrary.org/obo/GO_0044451,none +8.3458056,CHEBI:60598,http://purl.obolibrary.org/obo/CHEBI_60598,opioid agent +8.3458056,DRUGBANK:DB00202,http://purl.obolibrary.org/obo/DRUGBANK_DB00202,none +8.3458056,DRUGBANK:DB00421,http://purl.obolibrary.org/obo/DRUGBANK_DB00421,none +8.3458056,GO:0032964,http://purl.obolibrary.org/obo/GO_0032964,collagen biosynthetic process +8.3458056,UBERON:0011306,http://purl.obolibrary.org/obo/UBERON_0011306,deep part of temporalis +8.3459881,GO:0016569,http://purl.obolibrary.org/obo/GO_0016569,none +8.3459881,SO:0001419,http://purl.obolibrary.org/obo/SO_0001419,cis_splice_site +8.3461706,PR:000044430,http://purl.obolibrary.org/obo/PR_000044430,cyclin-E +8.3463531,MONDO:0024574,http://purl.obolibrary.org/obo/MONDO_0024574,von Willebrand disease (hereditary or acquired) +8.3470836,MONDO:0004681,http://purl.obolibrary.org/obo/MONDO_0004681,learning disability +8.3470836,PR:000001483,http://purl.obolibrary.org/obo/PR_000001483,low affinity immunoglobulin gamma Fc region receptor III +8.3472663,MONDO:0007275,http://purl.obolibrary.org/obo/MONDO_0007275,carpal tunnel syndrome +8.3476318,CL:0000771,http://purl.obolibrary.org/obo/CL_0000771,eosinophil +8.3479974,GO:0008171,http://purl.obolibrary.org/obo/GO_0008171,O-methyltransferase activity +8.3485461,MONDO:0002283,http://purl.obolibrary.org/obo/MONDO_0002283,neuroaxonal dystrophy +8.3489121,PR:000008949,http://purl.obolibrary.org/obo/PR_000008949,insulin-like growth factor-binding protein 3 +8.3489121,UBERON:0000414,http://purl.obolibrary.org/obo/UBERON_0000414,mucous gland +8.3492782,GO:0044436,http://purl.obolibrary.org/obo/GO_0044436,none +8.3492782,UBERON:0004908,http://purl.obolibrary.org/obo/UBERON_0004908,upper digestive tract +8.3498276,DRUGBANK:DB00602,http://purl.obolibrary.org/obo/DRUGBANK_DB00602,none +8.3503773,DRUGBANK:DB00238,http://purl.obolibrary.org/obo/DRUGBANK_DB00238,none +8.3507439,GO:0009743,http://purl.obolibrary.org/obo/GO_0009743,response to carbohydrate +8.3507439,MONDO:0021839,http://purl.obolibrary.org/obo/MONDO_0021839,spirochaetales infections +8.3507439,NCBITaxon:341670,http://purl.obolibrary.org/obo/NCBITaxon_341670,none +8.3509273,NCBITaxon:272636,http://purl.obolibrary.org/obo/NCBITaxon_272636,none +8.3511107,GO:0004994,http://purl.obolibrary.org/obo/GO_0004994,somatostatin receptor activity +8.3514776,MONDO:0015335,http://purl.obolibrary.org/obo/MONDO_0015335,orofacial clefting syndrome +8.3520282,UBERON:0000913,http://purl.obolibrary.org/obo/UBERON_0000913,interstitial fluid +8.3522118,PR:000008059,http://purl.obolibrary.org/obo/PR_000008059,glycine N-acyltransferase +8.3525791,GO:0000041,http://purl.obolibrary.org/obo/GO_0000041,transition metal ion transport +8.3531303,DRUGBANK:DB11059,http://purl.obolibrary.org/obo/DRUGBANK_DB11059,none +8.3531303,MONDO:0004471,http://purl.obolibrary.org/obo/MONDO_0004471,bacterial arthritis +8.353498,MONDO:0016330,http://purl.obolibrary.org/obo/MONDO_0016330,non-familial hypertrophic cardiomyopathy +8.353498,UBERON:0005910,http://purl.obolibrary.org/obo/UBERON_0005910,none +8.3542337,GO:0048863,http://purl.obolibrary.org/obo/GO_0048863,stem cell differentiation +8.3544177,GO:0070469,http://purl.obolibrary.org/obo/GO_0070469,respirasome +8.3546017,MONDO:0019571,http://purl.obolibrary.org/obo/MONDO_0019571,autosomal dominant cutis laxa +8.3547858,CL:0000031,http://purl.obolibrary.org/obo/CL_0000031,neuroblast (sensu Vertebrata) +8.3555224,PR:000016480,http://purl.obolibrary.org/obo/PR_000016480,tumor necrosis factor receptor superfamily member 11B +8.3557067,HP:0025015,http://purl.obolibrary.org/obo/HP_0025015,Abnormal vascular morphology +8.355891,HP:0033353,http://purl.obolibrary.org/obo/HP_0033353,Abnormal blood vessel morphology +8.3562596,MONDO:0008948,http://purl.obolibrary.org/obo/MONDO_0008948,cerebrotendinous xanthomatosis +8.3562596,MONDO:0016405,http://purl.obolibrary.org/obo/MONDO_0016405,sterol metabolism disorder with epilepsy +8.3562596,MONDO:0045016,http://purl.obolibrary.org/obo/MONDO_0045016,cholesterol catabolic process disease +8.3571819,UBERON:0034979,http://purl.obolibrary.org/obo/UBERON_0034979,nonchromaffin paraganglion +8.3573664,DRUGBANK:DB00530,http://purl.obolibrary.org/obo/DRUGBANK_DB00530,none +8.3573664,GO:0005746,http://purl.obolibrary.org/obo/GO_0005746,mitochondrial respirasome +8.3573664,UBERON:0000925,http://purl.obolibrary.org/obo/UBERON_0000925,endoderm +8.357551,GO:0016776,http://purl.obolibrary.org/obo/GO_0016776,"phosphotransferase activity, phosphate group as acceptor" +8.3577357,CHEBI:33256,http://purl.obolibrary.org/obo/CHEBI_33256,primary amide +8.3577357,UBERON:0001487,http://purl.obolibrary.org/obo/UBERON_0001487,pes joint +8.3592139,MONDO:0002187,http://purl.obolibrary.org/obo/MONDO_0002187,vulvar disease +8.3603239,NCBITaxon:689832,http://purl.obolibrary.org/obo/NCBITaxon_689832,Sedoreovirinae +8.3614353,PR:000005794,http://purl.obolibrary.org/obo/PR_000005794,ceruloplasmin +8.3619914,MONDO:0024330,http://purl.obolibrary.org/obo/MONDO_0024330,infectious otitis media +8.3625478,DRUGBANK:DB00803,http://purl.obolibrary.org/obo/DRUGBANK_DB00803,none +8.3625478,GO:0008252,http://purl.obolibrary.org/obo/GO_0008252,nucleotidase activity +8.3629189,MONDO:0021386,http://purl.obolibrary.org/obo/MONDO_0021386,neoplasm of mediastinum +8.3636616,GO:0070192,http://purl.obolibrary.org/obo/GO_0070192,chromosome organization involved in meiotic cell cycle +8.3638474,PR:000000365,http://purl.obolibrary.org/obo/PR_000000365,smad3 +8.3645907,DRUGBANK:DB05282,http://purl.obolibrary.org/obo/DRUGBANK_DB05282,none +8.3645907,GO:0034622,http://purl.obolibrary.org/obo/GO_0034622,cellular protein-containing complex assembly +8.3649626,MONDO:0001889,http://purl.obolibrary.org/obo/MONDO_0001889,ovarian dysfunction +8.3666378,MONDO:0100372,http://purl.obolibrary.org/obo/MONDO_0100372,disorder of peroxisomal transporter +8.3668241,UBERON:0001268,http://purl.obolibrary.org/obo/UBERON_0001268,peritoneal fluid +8.3675697,PR:000049989,http://purl.obolibrary.org/obo/PR_000049989,glucagon-like receptor +8.3677562,UBERON:0006538,http://purl.obolibrary.org/obo/UBERON_0006538,respiratory system fluid/secretion +8.3679427,UBERON:0003517,http://purl.obolibrary.org/obo/UBERON_0003517,kidney blood vessel +8.3681292,GO:0015918,http://purl.obolibrary.org/obo/GO_0015918,sterol transport +8.369436,GO:0005657,http://purl.obolibrary.org/obo/GO_0005657,replication fork +8.3696229,HP:0008609,http://purl.obolibrary.org/obo/HP_0008609,Morphological abnormality of the middle ear +8.3698097,PR:000005307,http://purl.obolibrary.org/obo/PR_000005307,CCAAT/enhancer-binding protein alpha +8.3699966,MONDO:0015691,http://purl.obolibrary.org/obo/MONDO_0015691,hypereosinophilic syndrome +8.3699966,MONDO:0019624,http://purl.obolibrary.org/obo/MONDO_0019624,acquired angioedema +8.3703705,GO:0051174,http://purl.obolibrary.org/obo/GO_0051174,regulation of phosphorus metabolic process +8.3705575,MONDO:0003619,http://purl.obolibrary.org/obo/MONDO_0003619,salpingitis +8.3711188,MONDO:0004956,http://purl.obolibrary.org/obo/MONDO_0004956,metastatic prostate carcinoma +8.3714931,UBERON:0002728,http://purl.obolibrary.org/obo/UBERON_0002728,entorhinal cortex +8.3716803,GO:0019220,http://purl.obolibrary.org/obo/GO_0019220,regulation of phosphate metabolic process +8.3716803,UBERON:0001775,http://purl.obolibrary.org/obo/UBERON_0001775,ciliary body +8.3722421,MONDO:0024878,http://purl.obolibrary.org/obo/MONDO_0024878,secondary carcinoma +8.3724295,MONDO:0003308,http://purl.obolibrary.org/obo/MONDO_0003308,pleural mesothelioma +8.3724295,UBERON:0001980,http://purl.obolibrary.org/obo/UBERON_0001980,arteriole +8.3729918,UBERON:0001991,http://purl.obolibrary.org/obo/UBERON_0001991,cervical ganglion +8.3731793,SO:0000407,http://purl.obolibrary.org/obo/SO_0000407,cytosolic_18S_rRNA +8.373742,PR:000011592,http://purl.obolibrary.org/obo/PR_000011592,oncomodulin-1 +8.373742,PR:000050058,http://purl.obolibrary.org/obo/PR_000050058,oncomodulin +8.3741173,GO:0003756,http://purl.obolibrary.org/obo/GO_0003756,protein disulfide isomerase activity +8.3741173,GO:0016864,http://purl.obolibrary.org/obo/GO_0016864,"intramolecular oxidoreductase activity, transposing S-S bonds" +8.3741173,PR:000012199,http://purl.obolibrary.org/obo/PR_000012199,protein disulfide-isomerase +8.3741173,PR:000029222,http://purl.obolibrary.org/obo/PR_000029222,none +8.374305,PR:Q55CL6,http://purl.obolibrary.org/obo/PR_Q55CL6,none +8.374305,PR:Q94A06,http://purl.obolibrary.org/obo/PR_Q94A06,none +8.3746805,PR:000013502,http://purl.obolibrary.org/obo/PR_000013502,parvalbumin alpha +8.3750561,GO:0009266,http://purl.obolibrary.org/obo/GO_0009266,response to temperature stimulus +8.3754319,GO:0097529,http://purl.obolibrary.org/obo/GO_0097529,myeloid leukocyte migration +8.3756199,GO:0035933,http://purl.obolibrary.org/obo/GO_0035933,glucocorticoid secretion +8.3759959,MONDO:0015924,http://purl.obolibrary.org/obo/MONDO_0015924,pulmonary arterial hypertension +8.376372,HP:0100799,http://purl.obolibrary.org/obo/HP_0100799,Neoplasm of the middle ear +8.3769365,GO:0006720,http://purl.obolibrary.org/obo/GO_0006720,isoprenoid metabolic process +8.3769365,PR:000002191,http://purl.obolibrary.org/obo/PR_000002191,TNF receptor-associated factor +8.3771248,DRUGBANK:DB00412,http://purl.obolibrary.org/obo/DRUGBANK_DB00412,none +8.3775014,UBERON:0005777,http://purl.obolibrary.org/obo/UBERON_0005777,glomerular basement membrane +8.3780665,DRUGBANK:DB13323,http://purl.obolibrary.org/obo/DRUGBANK_DB13323,none +8.3786319,CL:0000424,http://purl.obolibrary.org/obo/CL_0000424,excretory cell +8.3788205,UBERON:0001893,http://purl.obolibrary.org/obo/UBERON_0001893,telencephalon +8.3788205,UBERON:0004178,http://purl.obolibrary.org/obo/UBERON_0004178,aorta smooth muscle tissue +8.3790091,PR:P25819,http://purl.obolibrary.org/obo/PR_P25819,none +8.3790091,PR:P32796,http://purl.obolibrary.org/obo/PR_P32796,none +8.3795751,CHEBI:16684,http://purl.obolibrary.org/obo/CHEBI_16684,atropine +8.3795751,CL:1000510,http://purl.obolibrary.org/obo/CL_1000510,kidney glomerular epithelial cell +8.3795751,MONDO:0016575,http://purl.obolibrary.org/obo/MONDO_0016575,primary ciliary dyskinesia +8.3799526,DRUGBANK:DB00445,http://purl.obolibrary.org/obo/DRUGBANK_DB00445,none +8.3799526,UBERON:0002146,http://purl.obolibrary.org/obo/UBERON_0002146,pulmonary valve +8.3803302,GO:0004874,http://purl.obolibrary.org/obo/GO_0004874,none +8.3803302,MONDO:0015215,http://purl.obolibrary.org/obo/MONDO_0015215,non-syndromic diaphragmatic or abdominal wall malformation +8.3805191,CHEBI:52209,http://purl.obolibrary.org/obo/CHEBI_52209,aetiopathogenetic role +8.3805191,CL:1000450,http://purl.obolibrary.org/obo/CL_1000450,epithelial cell of glomerular capsule +8.381464,DRUGBANK:DB14326,http://purl.obolibrary.org/obo/DRUGBANK_DB14326,none +8.381464,PR:000008741,http://purl.obolibrary.org/obo/PR_000008741,heparanase +8.381464,PR:000024845,http://purl.obolibrary.org/obo/PR_000024845,alpha-2-macroglobulin +8.3816531,MONDO:0005718,http://purl.obolibrary.org/obo/MONDO_0005718,Coronaviridae infectious disease +8.3816531,MONDO:0020753,http://purl.obolibrary.org/obo/MONDO_0020753,Orthocoronavirinae infectious disease +8.3818422,GO:0016055,http://purl.obolibrary.org/obo/GO_0016055,Wnt signaling pathway +8.3820314,NCBITaxon:11082,http://purl.obolibrary.org/obo/NCBITaxon_11082,West Nile virus +8.3822206,GO:0004053,http://purl.obolibrary.org/obo/GO_0004053,arginase activity +8.3822206,GO:0005272,http://purl.obolibrary.org/obo/GO_0005272,sodium channel activity +8.3824098,DRUGBANK:DB08841,http://purl.obolibrary.org/obo/DRUGBANK_DB08841,none +8.3829777,MONDO:0002442,http://purl.obolibrary.org/obo/MONDO_0002442,long QT syndrome +8.3833565,GO:0051607,http://purl.obolibrary.org/obo/GO_0051607,defense response to virus +8.3837354,MONDO:0001735,http://purl.obolibrary.org/obo/MONDO_0001735,paranasal sinus disease +8.3837354,SO:0000351,http://purl.obolibrary.org/obo/SO_0000351,synthetic_sequence +8.383925,MONDO:0001433,http://purl.obolibrary.org/obo/MONDO_0001433,vaginal disease +8.383925,UBERON:0004814,http://purl.obolibrary.org/obo/UBERON_0004814,upper respiratory tract epithelium +8.3841145,DRUGBANK:DB10532,http://purl.obolibrary.org/obo/DRUGBANK_DB10532,none +8.3841145,MONDO:0015682,http://purl.obolibrary.org/obo/MONDO_0015682,primary peritoneal tumor +8.3841145,UBERON:0001896,http://purl.obolibrary.org/obo/UBERON_0001896,medulla oblongata +8.3843041,GO:0140546,http://purl.obolibrary.org/obo/GO_0140546,defense response to symbiont +8.3843041,MONDO:0018307,http://purl.obolibrary.org/obo/MONDO_0018307,neurodegeneration with brain iron accumulation +8.3843041,MONDO:0019402,http://purl.obolibrary.org/obo/MONDO_0019402,beta thalassemia +8.3844937,GO:0004568,http://purl.obolibrary.org/obo/GO_0004568,chitinase activity +8.3844937,GO:0072350,http://purl.obolibrary.org/obo/GO_0072350,tricarboxylic acid metabolic process +8.3846834,GO:0005774,http://purl.obolibrary.org/obo/GO_0005774,vacuolar membrane +8.3848731,GO:0008811,http://purl.obolibrary.org/obo/GO_0008811,chloramphenicol O-acetyltransferase activity +8.3848731,UBERON:0008826,http://purl.obolibrary.org/obo/UBERON_0008826,pulmonary surfactant +8.3850628,GO:0007129,http://purl.obolibrary.org/obo/GO_0007129,homologous chromosome pairing at meiosis +8.3850628,UBERON:0007830,http://purl.obolibrary.org/obo/UBERON_0007830,pelvic girdle bone/zone +8.3854424,UBERON:0004167,http://purl.obolibrary.org/obo/UBERON_0004167,orbitofrontal cortex +8.386202,PR:000004719,http://purl.obolibrary.org/obo/PR_000004719,beclin-1 +8.386582,DRUGBANK:DB04690,http://purl.obolibrary.org/obo/DRUGBANK_DB04690,none +8.386582,UBERON:0007379,http://purl.obolibrary.org/obo/UBERON_0007379,shelled egg +8.3867721,CHEBI:37622,http://purl.obolibrary.org/obo/CHEBI_37622,carboxamide +8.3867721,UBERON:0001629,http://purl.obolibrary.org/obo/UBERON_0001629,carotid body +8.3873425,UBERON:0034681,http://purl.obolibrary.org/obo/UBERON_0034681,vocal organ +8.3875327,UBERON:0011108,http://purl.obolibrary.org/obo/UBERON_0011108,synovial joint of pectoral girdle +8.3877229,GO:0051188,http://purl.obolibrary.org/obo/GO_0051188,none +8.3886747,GO:0006833,http://purl.obolibrary.org/obo/GO_0006833,water transport +8.3886747,UBERON:0000079,http://purl.obolibrary.org/obo/UBERON_0000079,male reproductive system +8.3892461,GO:0030301,http://purl.obolibrary.org/obo/GO_0030301,cholesterol transport +8.3892461,MONDO:0019223,http://purl.obolibrary.org/obo/MONDO_0019223,inborn disorder of fatty acid oxidation and ketone body metabolism +8.3892461,MONDO:0024664,http://purl.obolibrary.org/obo/MONDO_0024664,"hypertension, pregnancy-induced" +8.3894367,DRUGBANK:DB00601,http://purl.obolibrary.org/obo/DRUGBANK_DB00601,none +8.3896273,DRUGBANK:DB13132,http://purl.obolibrary.org/obo/DRUGBANK_DB13132,none +8.3896273,MONDO:0004743,http://purl.obolibrary.org/obo/MONDO_0004743,hyperhomocysteinemia +8.3898179,CL:0000123,http://purl.obolibrary.org/obo/CL_0000123,neuron associated cell (sensu Vertebrata) +8.3898179,MONDO:0006932,http://purl.obolibrary.org/obo/MONDO_0006932,pulmonary edema +8.3901993,DRUGBANK:DB00715,http://purl.obolibrary.org/obo/DRUGBANK_DB00715,none +8.3901993,PR:000006023,http://purl.obolibrary.org/obo/PR_000006023,cathepsin B +8.3909625,MONDO:0005473,http://purl.obolibrary.org/obo/MONDO_0005473,temporomandibular joint disorder +8.3911534,HP:0011792,http://purl.obolibrary.org/obo/HP_0011792,Neoplasm by histology +8.3913444,GO:0048545,http://purl.obolibrary.org/obo/GO_0048545,response to steroid hormone +8.3913444,HP:0009797,http://purl.obolibrary.org/obo/HP_0009797,Cholesteatoma +8.3913444,HP:0010566,http://purl.obolibrary.org/obo/HP_0010566,Hamartoma +8.3915353,MONDO:0006180,http://purl.obolibrary.org/obo/MONDO_0006180,digestive system adenoma +8.3917263,DRUGBANK:DB00779,http://purl.obolibrary.org/obo/DRUGBANK_DB00779,none +8.3917263,MONDO:0021184,http://purl.obolibrary.org/obo/MONDO_0021184,deltaretrovirus infections +8.3922996,CHEBI:55347,http://purl.obolibrary.org/obo/CHEBI_55347,vitamin K antagonist +8.393447,DRUGBANK:DB01698,http://purl.obolibrary.org/obo/DRUGBANK_DB01698,none +8.393447,SO:0002055,http://purl.obolibrary.org/obo/SO_0002055,null_mutation +8.3942127,GO:0010941,http://purl.obolibrary.org/obo/GO_0010941,regulation of cell death +8.3942127,PR:000010488,http://purl.obolibrary.org/obo/PR_000010488,stromelysin-1 +8.3942127,UBERON:0015488,http://purl.obolibrary.org/obo/UBERON_0015488,sural nerve +8.3945958,CL:0000647,http://purl.obolibrary.org/obo/CL_0000647,multinucleated giant cell +8.3947874,PR:000003165,http://purl.obolibrary.org/obo/PR_000003165,spectrin beta subunit +8.3953624,MONDO:0009635,http://purl.obolibrary.org/obo/MONDO_0009635,microvillus inclusion disease +8.3953624,UBERON:0004582,http://purl.obolibrary.org/obo/UBERON_0004582,venous system +8.3959377,DRUGBANK:DB03138,http://purl.obolibrary.org/obo/DRUGBANK_DB03138,none +8.3959377,UBERON:0001840,http://purl.obolibrary.org/obo/UBERON_0001840,semicircular canal +8.3970893,HP:0010535,http://purl.obolibrary.org/obo/HP_0010535,Sleep apnea +8.3974735,GO:0016421,http://purl.obolibrary.org/obo/GO_0016421,CoA carboxylase activity +8.3974735,UBERON:0000347,http://purl.obolibrary.org/obo/UBERON_0000347,entire myelin sheath +8.3978578,GO:0005912,http://purl.obolibrary.org/obo/GO_0005912,adherens junction +8.3984346,GO:0006101,http://purl.obolibrary.org/obo/GO_0006101,citrate metabolic process +8.3984346,MONDO:0016791,http://purl.obolibrary.org/obo/MONDO_0016791,mitochondrial oxidative phosphorylation disorder due to mitochondrial DNA anomalies +8.3990117,CL:0000306,http://purl.obolibrary.org/obo/CL_0000306,crystallin accumulating cell +8.3990117,MONDO:0037747,http://purl.obolibrary.org/obo/MONDO_0037747,spinal injury +8.3992041,GO:0008217,http://purl.obolibrary.org/obo/GO_0008217,regulation of blood pressure +8.3992041,MONDO:0003014,http://purl.obolibrary.org/obo/MONDO_0003014,rhinitis +8.3997816,CL:0002522,http://purl.obolibrary.org/obo/CL_0002522,renal filtration cell +8.4001668,PR:000006025,http://purl.obolibrary.org/obo/PR_000006025,cathepsin D +8.4003595,CL:0000682,http://purl.obolibrary.org/obo/CL_0000682,M cell of gut +8.4005522,GO:0005030,http://purl.obolibrary.org/obo/GO_0005030,neurotrophin receptor activity +8.4005522,MONDO:0019471,http://purl.obolibrary.org/obo/MONDO_0019471,adult T-cell leukemia/lymphoma +8.4013233,DRUGBANK:DB00633,http://purl.obolibrary.org/obo/DRUGBANK_DB00633,none +8.4013233,HP:0001000,http://purl.obolibrary.org/obo/HP_0001000,Abnormality of skin pigmentation +8.4013233,PR:000015322,http://purl.obolibrary.org/obo/PR_000015322,alpha-synuclein +8.4015162,UBERON:4200132,http://purl.obolibrary.org/obo/UBERON_4200132,tuber +8.4022881,UBERON:0001772,http://purl.obolibrary.org/obo/UBERON_0001772,corneal epithelium +8.4024812,GO:0035586,http://purl.obolibrary.org/obo/GO_0035586,none +8.4024812,GO:0050801,http://purl.obolibrary.org/obo/GO_0050801,ion homeostasis +8.4030606,GO:0004521,http://purl.obolibrary.org/obo/GO_0004521,endoribonuclease activity +8.4032539,MONDO:0000945,http://purl.obolibrary.org/obo/MONDO_0000945,venous insufficiency +8.4034471,GO:0004738,http://purl.obolibrary.org/obo/GO_0004738,pyruvate dehydrogenase activity +8.4040271,HP:0004305,http://purl.obolibrary.org/obo/HP_0004305,Involuntary movements +8.4044139,MONDO:0044684,http://purl.obolibrary.org/obo/MONDO_0044684,tuberculous meningitis +8.4049945,DRUGBANK:DB02282,http://purl.obolibrary.org/obo/DRUGBANK_DB02282,none +8.4053817,MONDO:0016191,http://purl.obolibrary.org/obo/MONDO_0016191,qualitative or quantitative defects of titin +8.4055754,PR:000016450,http://purl.obolibrary.org/obo/PR_000016450,transmembrane protease serine 11D +8.4059628,UBERON:0001324,http://purl.obolibrary.org/obo/UBERON_0001324,common fibular nerve +8.4059628,UBERON:0035652,http://purl.obolibrary.org/obo/UBERON_0035652,fibular nerve +8.4063504,GO:0008395,http://purl.obolibrary.org/obo/GO_0008395,steroid hydroxylase activity +8.4073201,CHEBI:33696,http://purl.obolibrary.org/obo/CHEBI_33696,nucleic acid +8.4073201,NCBITaxon:11234,http://purl.obolibrary.org/obo/NCBITaxon_11234,Measles morbillivirus +8.4080965,MONDO:0020281,http://purl.obolibrary.org/obo/MONDO_0020281,metabolic disease with pigmentary retinitis +8.4080965,PR:000008457,http://purl.obolibrary.org/obo/PR_000008457,beta-globin +8.4082907,MONDO:0002273,http://purl.obolibrary.org/obo/MONDO_0002273,plasma protein metabolism disease +8.4082907,MONDO:0010870,http://purl.obolibrary.org/obo/MONDO_0010870,tibial muscular dystrophy +8.4086792,MONDO:0005376,http://purl.obolibrary.org/obo/MONDO_0005376,membranous glomerulonephritis +8.4100401,UBERON:0003838,http://purl.obolibrary.org/obo/UBERON_0003838,abdominal segment connective tissue +8.4102347,SO:0001765,http://purl.obolibrary.org/obo/SO_0001765,rare_variant +8.4104293,DRUGBANK:DB00981,http://purl.obolibrary.org/obo/DRUGBANK_DB00981,none +8.4110133,GO:0051701,http://purl.obolibrary.org/obo/GO_0051701,biological process involved in interaction with host +8.4110133,PR:000001177,http://purl.obolibrary.org/obo/PR_000001177,D(2) dopamine receptor +8.4110133,PR:000003676,http://purl.obolibrary.org/obo/PR_000003676,"actin, cytoplasmic 1" +8.4112081,DRUGBANK:DB10550,http://purl.obolibrary.org/obo/DRUGBANK_DB10550,none +8.4114029,MONDO:0000827,http://purl.obolibrary.org/obo/MONDO_0000827,salmonellosis +8.4117926,DRUGBANK:DB15906,http://purl.obolibrary.org/obo/DRUGBANK_DB15906,none +8.4119875,MONDO:0008771,http://purl.obolibrary.org/obo/MONDO_0008771,amelogenesis imperfecta type 1G +8.4121825,MONDO:0045048,http://purl.obolibrary.org/obo/MONDO_0045048,toxemia of pregnancy +8.4121825,PR:000003090,http://purl.obolibrary.org/obo/PR_000003090,cyclin-dependent kinase inhibitor 1B +8.4129627,UBERON:0005956,http://purl.obolibrary.org/obo/UBERON_0005956,outflow part of left ventricle +8.4137435,MONDO:0002321,http://purl.obolibrary.org/obo/MONDO_0002321,sensory peripheral neuropathy +8.4137435,SO:0000182,http://purl.obolibrary.org/obo/SO_0000182,DNA_transposon +8.4139388,PR:000001115,http://purl.obolibrary.org/obo/PR_000001115,alpha-1 adrenergic receptor +8.4147203,MONDO:0021203,http://purl.obolibrary.org/obo/MONDO_0021203,serous otitis media +8.4155025,MONDO:0019215,http://purl.obolibrary.org/obo/MONDO_0019215,classic organic aciduria +8.4155025,MONDO:0024879,http://purl.obolibrary.org/obo/MONDO_0024879,metastatic carcinoma +8.4156981,MONDO:0021192,http://purl.obolibrary.org/obo/MONDO_0021192,odontogenic neoplasm +8.4158938,UBERON:0004727,http://purl.obolibrary.org/obo/UBERON_0004727,cochlear nerve +8.416481,DRUGBANK:DB01268,http://purl.obolibrary.org/obo/DRUGBANK_DB01268,none +8.4166769,MONDO:0017299,http://purl.obolibrary.org/obo/MONDO_0017299,acute annular outer retinopathy +8.4170686,GO:1905114,http://purl.obolibrary.org/obo/GO_1905114,cell surface receptor signaling pathway involved in cell-cell signaling +8.4174606,DRUGBANK:DB00982,http://purl.obolibrary.org/obo/DRUGBANK_DB00982,none +8.4178527,PR:000003197,http://purl.obolibrary.org/obo/PR_000003197,calcium/calmodulin-dependent protein kinase type II chain +8.4180487,PR:000001905,http://purl.obolibrary.org/obo/PR_000001905,platelet glycoprotein 4 +8.4182449,HP:0100326,http://purl.obolibrary.org/obo/HP_0100326,Immunologic hypersensitivity +8.4182449,MONDO:0100010,http://purl.obolibrary.org/obo/MONDO_0100010,tendinopathy +8.4184411,DRUGBANK:DB12431,http://purl.obolibrary.org/obo/DRUGBANK_DB12431,none +8.4186373,DRUGBANK:DB13854,http://purl.obolibrary.org/obo/DRUGBANK_DB13854,none +8.4190298,GO:0048731,http://purl.obolibrary.org/obo/GO_0048731,system development +8.4190298,PR:000001133,http://purl.obolibrary.org/obo/PR_000001133,endothelin receptor +8.4202084,MONDO:0015961,http://purl.obolibrary.org/obo/MONDO_0015961,genetic head and neck malformation +8.4204049,GO:0007059,http://purl.obolibrary.org/obo/GO_0007059,chromosome segregation +8.4204049,HP:0010927,http://purl.obolibrary.org/obo/HP_0010927,Abnormal blood inorganic cation concentration +8.4204049,MONDO:0008667,http://purl.obolibrary.org/obo/MONDO_0008667,von Hippel-Lindau disease +8.4213883,PR:000008810,http://purl.obolibrary.org/obo/PR_000008810,endoplasmic reticulum chaperone BiP +8.4213883,UBERON:0002558,http://purl.obolibrary.org/obo/UBERON_0002558,organ cavity +8.4217819,GO:0008443,http://purl.obolibrary.org/obo/GO_0008443,phosphofructokinase activity +8.4225696,GO:0009966,http://purl.obolibrary.org/obo/GO_0009966,regulation of signal transduction +8.4227667,PR:000012512,http://purl.obolibrary.org/obo/PR_000012512,PDZ and LIM domain protein 7 +8.4227667,UBERON:0004539,http://purl.obolibrary.org/obo/UBERON_0004539,right kidney +8.423358,DRUGBANK:DB10583,http://purl.obolibrary.org/obo/DRUGBANK_DB10583,none +8.4237524,MONDO:0044972,http://purl.obolibrary.org/obo/MONDO_0044972,eosinophil disease +8.4243443,PR:000001193,http://purl.obolibrary.org/obo/PR_000001193,beta-2 adrenergic receptor +8.4247391,CL:0000653,http://purl.obolibrary.org/obo/CL_0000653,glomerular visceral epithelial cell +8.4247391,CL:1000451,http://purl.obolibrary.org/obo/CL_1000451,none +8.4247391,MONDO:0037858,http://purl.obolibrary.org/obo/MONDO_0037858,inherited fatty acid metabolism disorder +8.4249365,CL:0000214,http://purl.obolibrary.org/obo/CL_0000214,synovial cell +8.4249365,MONDO:0020082,http://purl.obolibrary.org/obo/MONDO_0020082,dendritic cell tumor +8.425134,PR:P01831,http://purl.obolibrary.org/obo/PR_P01831,none +8.4259244,CHEBI:15986,http://purl.obolibrary.org/obo/CHEBI_15986,polynucleotide +8.4259244,GO:0006732,http://purl.obolibrary.org/obo/GO_0006732,none +8.4259244,GO:0050778,http://purl.obolibrary.org/obo/GO_0050778,positive regulation of immune response +8.4263198,DRUGBANK:DB04243,http://purl.obolibrary.org/obo/DRUGBANK_DB04243,none +8.4263198,UBERON:0004766,http://purl.obolibrary.org/obo/UBERON_0004766,cranial bone +8.4265175,MONDO:0019700,http://purl.obolibrary.org/obo/MONDO_0019700,primary bone dysplasia with multiple joint dislocations +8.4269132,NCBITaxon:11118,http://purl.obolibrary.org/obo/NCBITaxon_11118,Coronaviridae +8.4275069,GO:0008652,http://purl.obolibrary.org/obo/GO_0008652,cellular amino acid biosynthetic process +8.4275069,GO:0044431,http://purl.obolibrary.org/obo/GO_0044431,none +8.4277049,PR:P01830,http://purl.obolibrary.org/obo/PR_P01830,none +8.4277049,PR:P15808,http://purl.obolibrary.org/obo/PR_P15808,none +8.4286955,MONDO:0003363,http://purl.obolibrary.org/obo/MONDO_0003363,malignant dermis tumor +8.4286955,MONDO:0007803,http://purl.obolibrary.org/obo/MONDO_0007803,multiple system atrophy +8.4288938,CHEBI:68481,http://purl.obolibrary.org/obo/CHEBI_68481,mTOR inhibitor +8.4288938,PR:000002091,http://purl.obolibrary.org/obo/PR_000002091,signal transducer and activator of transcription 5a +8.4298855,MONDO:0042973,http://purl.obolibrary.org/obo/MONDO_0042973,familial osteosclerosis +8.430084,PR:000006064,http://purl.obolibrary.org/obo/PR_000006064,C-X-C motif chemokine 10 +8.4320709,PR:000014932,http://purl.obolibrary.org/obo/PR_000014932,solute carrier family 12 member 9 +8.4322698,UBERON:0004909,http://purl.obolibrary.org/obo/UBERON_0004909,epithelium of gonad +8.4324688,GO:0009064,http://purl.obolibrary.org/obo/GO_0009064,glutamine family amino acid metabolic process +8.4324688,MONDO:0019119,http://purl.obolibrary.org/obo/MONDO_0019119,muscular channelopathy +8.4324688,UBERON:0002204,http://purl.obolibrary.org/obo/UBERON_0002204,musculoskeletal system +8.4324688,UBERON:0003458,http://purl.obolibrary.org/obo/UBERON_0003458,neck bone +8.4324688,UBERON:0015860,http://purl.obolibrary.org/obo/UBERON_0015860,visceral abdominal lymph node +8.4326677,MONDO:0001149,http://purl.obolibrary.org/obo/MONDO_0001149,microcephaly +8.4330658,MONDO:0007147,http://purl.obolibrary.org/obo/MONDO_0007147,obstructive sleep apnea syndrome +8.4334641,DRUGBANK:DB08437,http://purl.obolibrary.org/obo/DRUGBANK_DB08437,none +8.4334641,MONDO:0015920,http://purl.obolibrary.org/obo/MONDO_0015920,syndromic neurometabolic disease with X-linked intellectual disability +8.4336633,PR:000009107,http://purl.obolibrary.org/obo/PR_000009107,insulin receptor substrate 1 +8.4340617,UBERON:0000038,http://purl.obolibrary.org/obo/UBERON_0000038,follicular fluid +8.4350587,MONDO:0017198,http://purl.obolibrary.org/obo/MONDO_0017198,osteopetrosis +8.4352582,HP:0002099,http://purl.obolibrary.org/obo/HP_0002099,Asthma +8.4358569,GO:0007005,http://purl.obolibrary.org/obo/GO_0007005,mitochondrion organization +8.4360566,PR:000015590,http://purl.obolibrary.org/obo/PR_000015590,"spectrin alpha chain, erythrocytic 1" +8.4362563,MONDO:0007381,http://purl.obolibrary.org/obo/MONDO_0007381,epithelial recurrent erosion dystrophy +8.4368556,GO:0045444,http://purl.obolibrary.org/obo/GO_0045444,fat cell differentiation +8.4370555,MONDO:0019437,http://purl.obolibrary.org/obo/MONDO_0019437,enthesitis-related juvenile idiopathic arthritis +8.4376553,GO:0022411,http://purl.obolibrary.org/obo/GO_0022411,cellular component disassembly +8.4376553,PR:000013059,http://purl.obolibrary.org/obo/PR_000013059,peroxisome proliferator-activated receptor gamma coactivator 1-alpha +8.4380554,MONDO:0007140,http://purl.obolibrary.org/obo/MONDO_0007140,antiphospholipid syndrome +8.4382555,CL:0000025,http://purl.obolibrary.org/obo/CL_0000025,egg cell +8.4382555,CL:0000675,http://purl.obolibrary.org/obo/CL_0000675,female gamete +8.4390563,PR:000015591,http://purl.obolibrary.org/obo/PR_000015591,"spectrin alpha chain, non-erythrocytic 1" +8.4392566,MONDO:0021209,http://purl.obolibrary.org/obo/MONDO_0021209,heart neoplasm +8.4394569,MONDO:0005352,http://purl.obolibrary.org/obo/MONDO_0005352,conduct disorder +8.4396573,DRUGBANK:DB04573,http://purl.obolibrary.org/obo/DRUGBANK_DB04573,none +8.4400582,MONDO:0021049,http://purl.obolibrary.org/obo/MONDO_0021049,vulvar neoplasm +8.4406598,GO:0030313,http://purl.obolibrary.org/obo/GO_0030313,cell envelope +8.4408604,CL:0000096,http://purl.obolibrary.org/obo/CL_0000096,mature neutrophil +8.4408604,GO:0004984,http://purl.obolibrary.org/obo/GO_0004984,olfactory receptor activity +8.4408604,MONDO:0000383,http://purl.obolibrary.org/obo/MONDO_0000383,benign reproductive system neoplasm +8.4414625,CL:0000007,http://purl.obolibrary.org/obo/CL_0000007,early embryonic cell (metazoa) +8.4416633,MONDO:0006533,http://purl.obolibrary.org/obo/MONDO_0006533,cholesteatoma of middle ear +8.442065,PR:000001373,http://purl.obolibrary.org/obo/PR_000001373,interleukin-15 +8.4424668,PR:000001011,http://purl.obolibrary.org/obo/PR_000001011,integrin alpha-L +8.4426678,DRUGBANK:DB12506,http://purl.obolibrary.org/obo/DRUGBANK_DB12506,none +8.4428688,MONDO:0002026,http://purl.obolibrary.org/obo/MONDO_0002026,candidiasis +8.4428688,MONDO:0021206,http://purl.obolibrary.org/obo/MONDO_0021206,chronic non-suppurative otitis media +8.4428688,UBERON:0002021,http://purl.obolibrary.org/obo/UBERON_0002021,occipital lobe +8.443271,SO:0002122,http://purl.obolibrary.org/obo/SO_0002122,immunoglobulin_gene +8.443271,UBERON:0002028,http://purl.obolibrary.org/obo/UBERON_0002028,hindbrain +8.4434722,DRUGBANK:DB01132,http://purl.obolibrary.org/obo/DRUGBANK_DB01132,none +8.4444785,NCBITaxon:693995,http://purl.obolibrary.org/obo/NCBITaxon_693995,Coronavirinae +8.4452843,CL:0000443,http://purl.obolibrary.org/obo/CL_0000443,calcitonin secreting cell +8.4452843,PR:000001962,http://purl.obolibrary.org/obo/PR_000001962,tumor necrosis factor receptor superfamily member 6 +8.4458891,DRUGBANK:DB14812,http://purl.obolibrary.org/obo/DRUGBANK_DB14812,none +8.4460908,MONDO:0018232,http://purl.obolibrary.org/obo/MONDO_0018232,primary bone dysplasia with micromelia +8.4464942,PR:000014494,http://purl.obolibrary.org/obo/PR_000014494,lysosome membrane protein 2 +8.446696,UBERON:0003267,http://purl.obolibrary.org/obo/UBERON_0003267,tooth of upper jaw +8.4468979,DRUGBANK:DB04660,http://purl.obolibrary.org/obo/DRUGBANK_DB04660,none +8.4468979,UBERON:0000000,http://purl.obolibrary.org/obo/UBERON_0000000,processual entity +8.4470997,PR:000002976,http://purl.obolibrary.org/obo/PR_000002976,Ly-6-like protein +8.4470997,UBERON:0003221,http://purl.obolibrary.org/obo/UBERON_0003221,phalanx +8.4477056,MONDO:0012105,http://purl.obolibrary.org/obo/MONDO_0012105,granulomatosis with polyangiitis +8.4481097,GO:0004175,http://purl.obolibrary.org/obo/GO_0004175,endopeptidase activity +8.4483119,DRUGBANK:DB01073,http://purl.obolibrary.org/obo/DRUGBANK_DB01073,none +8.448514,DRUGBANK:DB11151,http://purl.obolibrary.org/obo/DRUGBANK_DB11151,none +8.448514,UBERON:0015023,http://purl.obolibrary.org/obo/UBERON_0015023,phalanx endochondral element +8.4487162,GO:0008091,http://purl.obolibrary.org/obo/GO_0008091,spectrin +8.4489185,MONDO:0002070,http://purl.obolibrary.org/obo/MONDO_0002070,ventricular septal defect +8.4489185,MONDO:0017713,http://purl.obolibrary.org/obo/MONDO_0017713,disorder of fatty acid oxidation and ketogenesis +8.4495255,DRUGBANK:DB00555,http://purl.obolibrary.org/obo/DRUGBANK_DB00555,none +8.4499303,CL:0000570,http://purl.obolibrary.org/obo/CL_0000570,parafollicular cell +8.4499303,UBERON:0003567,http://purl.obolibrary.org/obo/UBERON_0003567,abdomen connective tissue +8.4505379,MONDO:0021392,http://purl.obolibrary.org/obo/MONDO_0021392,polyp of large intestine +8.4507405,CHEBI:64926,http://purl.obolibrary.org/obo/CHEBI_64926,serine protease inhibitor +8.4509432,GO:1901607,http://purl.obolibrary.org/obo/GO_1901607,alpha-amino acid biosynthetic process +8.4515514,CHEBI:18059,http://purl.obolibrary.org/obo/CHEBI_18059,lipid +8.4517542,CL:0000162,http://purl.obolibrary.org/obo/CL_0000162,parietal cell +8.45216,PR:000007785,http://purl.obolibrary.org/obo/PR_000007785,glutamate decarboxylase 1 +8.4523629,GO:0006099,http://purl.obolibrary.org/obo/GO_0006099,tricarboxylic acid cycle +8.4525659,CL:0000817,http://purl.obolibrary.org/obo/CL_0000817,precursor B cell +8.4527689,DRUGBANK:DB00399,http://purl.obolibrary.org/obo/DRUGBANK_DB00399,none +8.4527689,UBERON:0006956,http://purl.obolibrary.org/obo/UBERON_0006956,buccal mucosa +8.452972,GO:0061743,http://purl.obolibrary.org/obo/GO_0061743,motor learning +8.452972,MONDO:0005892,http://purl.obolibrary.org/obo/MONDO_0005892,otitis media with effusion +8.4531751,CHEBI:86327,http://purl.obolibrary.org/obo/CHEBI_86327,antifungal drug +8.4531751,UBERON:0003716,http://purl.obolibrary.org/obo/UBERON_0003716,recurrent laryngeal nerve +8.4537847,GO:0070925,http://purl.obolibrary.org/obo/GO_0070925,organelle assembly +8.454598,DRUGBANK:DB08960,http://purl.obolibrary.org/obo/DRUGBANK_DB08960,none +8.4550049,DRUGBANK:DB14249,http://purl.obolibrary.org/obo/DRUGBANK_DB14249,none +8.455412,CHEBI:35701,http://purl.obolibrary.org/obo/CHEBI_35701,ester +8.455412,CHEBI:76219,http://purl.obolibrary.org/obo/CHEBI_76219,fluorogen +8.455412,DRUGBANK:DB01222,http://purl.obolibrary.org/obo/DRUGBANK_DB01222,none +8.4558192,GO:0001676,http://purl.obolibrary.org/obo/GO_0001676,long-chain fatty acid metabolic process +8.4566342,PR:P19109,http://purl.obolibrary.org/obo/PR_P19109,none +8.4568381,MONDO:0020091,http://purl.obolibrary.org/obo/MONDO_0020091,male infertility due to obstructive azoospermia +8.4568381,PR:Q9FKA4,http://purl.obolibrary.org/obo/PR_Q9FKA4,none +8.4576539,MONDO:0015564,http://purl.obolibrary.org/obo/MONDO_0015564,Castleman disease +8.4584704,MONDO:0017827,http://purl.obolibrary.org/obo/MONDO_0017827,malignant peripheral nerve sheath tumor +8.4586746,PR:000009345,http://purl.obolibrary.org/obo/PR_000009345,kit ligand +8.4590832,DRUGBANK:DB00882,http://purl.obolibrary.org/obo/DRUGBANK_DB00882,none +8.4590832,GO:0099568,http://purl.obolibrary.org/obo/GO_0099568,cytoplasmic region +8.4590832,UBERON:0001310,http://purl.obolibrary.org/obo/UBERON_0001310,umbilical artery +8.4592876,DRUGBANK:DB09325,http://purl.obolibrary.org/obo/DRUGBANK_DB09325,none +8.4601054,DRUGBANK:DB01113,http://purl.obolibrary.org/obo/DRUGBANK_DB01113,none +8.46031,GO:0004954,http://purl.obolibrary.org/obo/GO_0004954,prostanoid receptor activity +8.4607192,NCBITaxon:2499399,http://purl.obolibrary.org/obo/NCBITaxon_2499399,Cornidovirineae +8.4609239,DRUGBANK:DB02789,http://purl.obolibrary.org/obo/DRUGBANK_DB02789,none +8.4609239,MONDO:0017145,http://purl.obolibrary.org/obo/MONDO_0017145,beta-thalassemia and related diseases +8.4613334,UBERON:0003706,http://purl.obolibrary.org/obo/UBERON_0003706,laryngeal vocal fold +8.4615382,NCBITaxon:2501931,http://purl.obolibrary.org/obo/NCBITaxon_2501931,Orthocoronavirinae +8.4625629,GO:0034357,http://purl.obolibrary.org/obo/GO_0034357,photosynthetic membrane +8.4631782,DRUGBANK:DB00781,http://purl.obolibrary.org/obo/DRUGBANK_DB00781,none +8.4633834,MONDO:0015264,http://purl.obolibrary.org/obo/MONDO_0015264,cryptogenic organizing pneumonia +8.4642046,MONDO:0003832,http://purl.obolibrary.org/obo/MONDO_0003832,complement deficiency +8.46441,DRUGBANK:DB10548,http://purl.obolibrary.org/obo/DRUGBANK_DB10548,none +8.4646155,PR:Q9ZV04,http://purl.obolibrary.org/obo/PR_Q9ZV04,none +8.465232,HP:0002321,http://purl.obolibrary.org/obo/HP_0002321,Vertigo +8.4660548,DRUGBANK:DB01204,http://purl.obolibrary.org/obo/DRUGBANK_DB01204,none +8.4662605,GO:0004725,http://purl.obolibrary.org/obo/GO_0004725,protein tyrosine phosphatase activity +8.4664664,MONDO:0015136,http://purl.obolibrary.org/obo/MONDO_0015136,immunodeficiency due to a genetic complement cascade protein anomaly +8.4666722,GO:0019203,http://purl.obolibrary.org/obo/GO_0019203,carbohydrate phosphatase activity +8.4672901,MONDO:0019249,http://purl.obolibrary.org/obo/MONDO_0019249,mucopolysaccharidosis +8.4681145,GO:0002253,http://purl.obolibrary.org/obo/GO_0002253,activation of immune response +8.4683207,SO:0000040,http://purl.obolibrary.org/obo/SO_0000040,genomic_clone +8.4687332,GO:0017082,http://purl.obolibrary.org/obo/GO_0017082,none +8.4693524,PR:000001317,http://purl.obolibrary.org/obo/PR_000001317,interleukin-7 +8.4695588,MONDO:0004323,http://purl.obolibrary.org/obo/MONDO_0004323,muscular atrophy +8.4701785,DRUGBANK:DB11815,http://purl.obolibrary.org/obo/DRUGBANK_DB11815,none +8.4705918,PR:000001160,http://purl.obolibrary.org/obo/PR_000001160,Toll-like receptor 9 +8.4707985,DRUGBANK:DB04528,http://purl.obolibrary.org/obo/DRUGBANK_DB04528,none +8.4716258,PR:000012963,http://purl.obolibrary.org/obo/PR_000012963,DNA polymerase delta catalytic subunit +8.4718327,DRUGBANK:DB14225,http://purl.obolibrary.org/obo/DRUGBANK_DB14225,none +8.4720397,PR:000025841,http://purl.obolibrary.org/obo/PR_000025841,single domain alpha-type carbonic anhydrase +8.4722467,PR:000010240,http://purl.obolibrary.org/obo/PR_000010240,induced myeloid leukemia cell differentiation protein Mcl-1 +8.4730752,PR:000007130,http://purl.obolibrary.org/obo/PR_000007130,ephrin type-B receptor 2 +8.4732825,GO:0017045,http://purl.obolibrary.org/obo/GO_0017045,corticotropin-releasing hormone activity +8.4734897,UBERON:0003607,http://purl.obolibrary.org/obo/UBERON_0003607,forelimb long bone +8.473697,GO:0030447,http://purl.obolibrary.org/obo/GO_0030447,filamentous growth +8.4739044,DRUGBANK:DB00055,http://purl.obolibrary.org/obo/DRUGBANK_DB00055,none +8.4741118,UBERON:0001620,http://purl.obolibrary.org/obo/UBERON_0001620,central retinal artery +8.4751495,DRUGBANK:DB11060,http://purl.obolibrary.org/obo/DRUGBANK_DB11060,none +8.4753571,DRUGBANK:DB10539,http://purl.obolibrary.org/obo/DRUGBANK_DB10539,none +8.4753571,GO:0017038,http://purl.obolibrary.org/obo/GO_0017038,protein import +8.4759804,MONDO:0002185,http://purl.obolibrary.org/obo/MONDO_0002185,hyperostosis +8.4759804,UBERON:0001728,http://purl.obolibrary.org/obo/UBERON_0001728,nasopharynx +8.4761882,DRUGBANK:DB14126,http://purl.obolibrary.org/obo/DRUGBANK_DB14126,none +8.4761882,DRUGBANK:DB14999,http://purl.obolibrary.org/obo/DRUGBANK_DB14999,none +8.4776443,GO:0051168,http://purl.obolibrary.org/obo/GO_0051168,nuclear export +8.4784773,GO:0002274,http://purl.obolibrary.org/obo/GO_0002274,myeloid leukocyte activation +8.478894,GO:0010604,http://purl.obolibrary.org/obo/GO_0010604,positive regulation of macromolecule metabolic process +8.4791025,CL:0002132,http://purl.obolibrary.org/obo/CL_0002132,stromal cell of ovary +8.4799367,CHEBI:33229,http://purl.obolibrary.org/obo/CHEBI_33229,vitamin (role) +8.4811893,MONDO:0006055,http://purl.obolibrary.org/obo/MONDO_0006055,sex cord-stromal tumor +8.4813982,CL:0000518,http://purl.obolibrary.org/obo/CL_0000518,phagocyte (sensu Vertebrata) +8.4820252,CL:0000113,http://purl.obolibrary.org/obo/CL_0000113,mononuclear phagocyte +8.4826526,UBERON:0002743,http://purl.obolibrary.org/obo/UBERON_0002743,basal forebrain +8.4828619,GO:0034284,http://purl.obolibrary.org/obo/GO_0034284,response to monosaccharide +8.4830711,GO:0050893,http://purl.obolibrary.org/obo/GO_0050893,sensory processing +8.4830711,UBERON:0001066,http://purl.obolibrary.org/obo/UBERON_0001066,intervertebral disk +8.4832805,DRUGBANK:DB10564,http://purl.obolibrary.org/obo/DRUGBANK_DB10564,none +8.4832805,GO:0006979,http://purl.obolibrary.org/obo/GO_0006979,response to oxidative stress +8.4834898,UBERON:0006658,http://purl.obolibrary.org/obo/UBERON_0006658,interphalangeal joint +8.4841182,UBERON:0001069,http://purl.obolibrary.org/obo/UBERON_0001069,head of pancreas +8.4845373,GO:0004941,http://purl.obolibrary.org/obo/GO_0004941,beta2-adrenergic receptor activity +8.4851663,MONDO:0015531,http://purl.obolibrary.org/obo/MONDO_0015531,non-Langerhans cell histiocytosis +8.4851663,MONDO:0019844,http://purl.obolibrary.org/obo/MONDO_0019844,pituitary hormone deficiency secondary to storage disease +8.485376,UBERON:0002094,http://purl.obolibrary.org/obo/UBERON_0002094,interventricular septum +8.4857957,DRUGBANK:DB00318,http://purl.obolibrary.org/obo/DRUGBANK_DB00318,none +8.4857957,MONDO:0019685,http://purl.obolibrary.org/obo/MONDO_0019685,FGFR3-related chondrodysplasia +8.4862155,PR:000008358,http://purl.obolibrary.org/obo/PR_000008358,beta-glucuronidase +8.4864254,UBERON:0006934,http://purl.obolibrary.org/obo/UBERON_0006934,sensory epithelium +8.4870556,UBERON:0003917,http://purl.obolibrary.org/obo/UBERON_0003917,arthropod fat body +8.4872658,GO:0009250,http://purl.obolibrary.org/obo/GO_0009250,glucan biosynthetic process +8.4878965,UBERON:0011135,http://purl.obolibrary.org/obo/UBERON_0011135,intervertebral cartilage +8.4883172,MONDO:0005081,http://purl.obolibrary.org/obo/MONDO_0005081,preeclampsia +8.4887381,UBERON:0001323,http://purl.obolibrary.org/obo/UBERON_0001323,tibial nerve +8.4887381,UBERON:0019306,http://purl.obolibrary.org/obo/UBERON_0019306,nose epithelium +8.4889486,GO:0006767,http://purl.obolibrary.org/obo/GO_0006767,water-soluble vitamin metabolic process +8.4889486,GO:0007411,http://purl.obolibrary.org/obo/GO_0007411,axon guidance +8.4889486,MONDO:0017287,http://purl.obolibrary.org/obo/MONDO_0017287,IgG4-related disease +8.4893697,DRUGBANK:DB00454,http://purl.obolibrary.org/obo/DRUGBANK_DB00454,none +8.489791,MONDO:0002169,http://purl.obolibrary.org/obo/MONDO_0002169,rectum adenocarcinoma +8.4900018,UBERON:0005384,http://purl.obolibrary.org/obo/UBERON_0005384,nasal cavity epithelium +8.4904233,GO:0009746,http://purl.obolibrary.org/obo/GO_0009746,response to hexose +8.4906342,GO:0097435,http://purl.obolibrary.org/obo/GO_0097435,supramolecular fiber organization +8.4906342,MONDO:0015895,http://purl.obolibrary.org/obo/MONDO_0015895,syndrome with hypoparathyroidism +8.4910561,MONDO:0021201,http://purl.obolibrary.org/obo/MONDO_0021201,skin infection +8.491267,CL:0000157,http://purl.obolibrary.org/obo/CL_0000157,surfactant secreting cell +8.491267,GO:0007169,http://purl.obolibrary.org/obo/GO_0007169,transmembrane receptor protein tyrosine kinase signaling pathway +8.491267,GO:0050308,http://purl.obolibrary.org/obo/GO_0050308,sugar-phosphatase activity +8.4916892,GO:0046930,http://purl.obolibrary.org/obo/GO_0046930,pore complex +8.4925339,DRUGBANK:DB11933,http://purl.obolibrary.org/obo/DRUGBANK_DB11933,none +8.493168,GO:0070459,http://purl.obolibrary.org/obo/GO_0070459,prolactin secretion +8.493168,MONDO:0018402,http://purl.obolibrary.org/obo/MONDO_0018402,female infertility due to gonadal dysgenesis +8.4933794,DRUGBANK:DB00381,http://purl.obolibrary.org/obo/DRUGBANK_DB00381,none +8.4933794,PR:Q43731,http://purl.obolibrary.org/obo/PR_Q43731,none +8.4942256,PR:000041205,http://purl.obolibrary.org/obo/PR_000041205,cyclin-A +8.4942256,PR:P24100,http://purl.obolibrary.org/obo/PR_P24100,none +8.4944373,PR:000011470,http://purl.obolibrary.org/obo/PR_000011470,BDNF/NT-3 growth factors receptor +8.494649,GO:0008094,http://purl.obolibrary.org/obo/GO_0008094,"ATP-dependent activity, acting on DNA" +8.494649,MONDO:0002814,http://purl.obolibrary.org/obo/MONDO_0002814,adrenal carcinoma +8.4961322,DRUGBANK:DB11582,http://purl.obolibrary.org/obo/DRUGBANK_DB11582,none +8.4969807,DRUGBANK:DB14219,http://purl.obolibrary.org/obo/DRUGBANK_DB14219,none +8.4969807,SO:0001830,http://purl.obolibrary.org/obo/SO_0001830,AFLP_fragment +8.497193,GO:0004937,http://purl.obolibrary.org/obo/GO_0004937,alpha1-adrenergic receptor activity +8.4976176,DRUGBANK:DB13172,http://purl.obolibrary.org/obo/DRUGBANK_DB13172,none +8.4980424,DRUGBANK:DB00193,http://purl.obolibrary.org/obo/DRUGBANK_DB00193,none +8.4980424,MONDO:0015541,http://purl.obolibrary.org/obo/MONDO_0015541,genetic hemophagocytic lymphohistiocytosis +8.4982549,GO:0009309,http://purl.obolibrary.org/obo/GO_0009309,amine biosynthetic process +8.49868,PR:P09616,http://purl.obolibrary.org/obo/PR_P09616,none +8.4997435,GO:0097485,http://purl.obolibrary.org/obo/GO_0097485,neuron projection guidance +8.4999563,UBERON:0002471,http://purl.obolibrary.org/obo/UBERON_0002471,zeugopod +8.5001692,MONDO:0019157,http://purl.obolibrary.org/obo/MONDO_0019157,acquired idiopathic sideroblastic anemia +8.5001692,MONDO:0021034,http://purl.obolibrary.org/obo/MONDO_0021034,genetic alopecia +8.5003821,DRUGBANK:DB00205,http://purl.obolibrary.org/obo/DRUGBANK_DB00205,none +8.5003821,GO:0016160,http://purl.obolibrary.org/obo/GO_0016160,amylase activity +8.5003821,MONDO:0019499,http://purl.obolibrary.org/obo/MONDO_0019499,Turner syndrome +8.5005951,DRUGBANK:DB01586,http://purl.obolibrary.org/obo/DRUGBANK_DB01586,none +8.5008081,MONDO:0015548,http://purl.obolibrary.org/obo/MONDO_0015548,Huntington disease-like syndrome +8.5008081,PR:000003450,http://purl.obolibrary.org/obo/PR_000003450,B-cell lymphoma 6 protein +8.5016606,UBERON:0000365,http://purl.obolibrary.org/obo/UBERON_0000365,urothelium +8.5018739,PR:000004372,http://purl.obolibrary.org/obo/PR_000004372,agouti-signaling protein +8.5020871,DRUGBANK:DB00215,http://purl.obolibrary.org/obo/DRUGBANK_DB00215,none +8.5023005,CHEBI:48873,http://purl.obolibrary.org/obo/CHEBI_48873,cholinergic antagonist +8.5025139,MONDO:0001881,http://purl.obolibrary.org/obo/MONDO_0001881,toxic shock syndrome +8.5027273,GO:0072686,http://purl.obolibrary.org/obo/GO_0072686,mitotic spindle +8.5029407,PR:000003136,http://purl.obolibrary.org/obo/PR_000003136,subtilisin/kexin-type proprotein convertase +8.5033678,GO:0031968,http://purl.obolibrary.org/obo/GO_0031968,organelle outer membrane +8.5040088,GO:0043623,http://purl.obolibrary.org/obo/GO_0043623,none +8.5040088,UBERON:0016482,http://purl.obolibrary.org/obo/UBERON_0016482,dental plaque +8.504864,MONDO:0005477,http://purl.obolibrary.org/obo/MONDO_0005477,ventricular tachycardia +8.5055059,DRUGBANK:DB00518,http://purl.obolibrary.org/obo/DRUGBANK_DB00518,none +8.50572,MONDO:0009216,http://purl.obolibrary.org/obo/MONDO_0009216,glycogen storage disease due to GLUT2 deficiency +8.5063625,DRUGBANK:DB00035,http://purl.obolibrary.org/obo/DRUGBANK_DB00035,none +8.5065767,PR:000001279,http://purl.obolibrary.org/obo/PR_000001279,ADAM 17 endopeptidase +8.506791,GO:0005024,http://purl.obolibrary.org/obo/GO_0005024,transforming growth factor beta-activated receptor activity +8.5070054,PR:000007928,http://purl.obolibrary.org/obo/PR_000007928,glial cell line-derived neurotrophic factor +8.5072197,UBERON:0002509,http://purl.obolibrary.org/obo/UBERON_0002509,mesenteric lymph node +8.5078632,GO:0042157,http://purl.obolibrary.org/obo/GO_0042157,lipoprotein metabolic process +8.508507,DRUGBANK:DB01627,http://purl.obolibrary.org/obo/DRUGBANK_DB01627,none +8.5087217,MONDO:0017954,http://purl.obolibrary.org/obo/MONDO_0017954,pyogenic autoinflammatory syndrome +8.5089365,MONDO:0025294,http://purl.obolibrary.org/obo/MONDO_0025294,tick-borne infectious disease +8.509581,DRUGBANK:DB00166,http://purl.obolibrary.org/obo/DRUGBANK_DB00166,none +8.509581,MONDO:0001060,http://purl.obolibrary.org/obo/MONDO_0001060,microinvasive gastric cancer +8.509796,GO:0042756,http://purl.obolibrary.org/obo/GO_0042756,drinking behavior +8.5110866,DRUGBANK:DB12007,http://purl.obolibrary.org/obo/DRUGBANK_DB12007,none +8.5110866,MONDO:0005546,http://purl.obolibrary.org/obo/MONDO_0005546,fibromyalgia +8.5117325,GO:0042325,http://purl.obolibrary.org/obo/GO_0042325,regulation of phosphorylation +8.5117325,MONDO:0001502,http://purl.obolibrary.org/obo/MONDO_0001502,retroperitoneum carcinoma +8.5119479,DRUGBANK:DB00352,http://purl.obolibrary.org/obo/DRUGBANK_DB00352,none +8.5119479,GO:0009749,http://purl.obolibrary.org/obo/GO_0009749,response to glucose +8.5123788,GO:0006953,http://purl.obolibrary.org/obo/GO_0006953,acute-phase response +8.5123788,GO:1901264,http://purl.obolibrary.org/obo/GO_1901264,carbohydrate derivative transport +8.5130256,PR:000003512,http://purl.obolibrary.org/obo/PR_000003512,APOBEC1 complementation factor +8.5132413,DRUGBANK:DB14758,http://purl.obolibrary.org/obo/DRUGBANK_DB14758,none +8.5136728,CL:0002372,http://purl.obolibrary.org/obo/CL_0002372,myotube +8.5141045,PR:000001283,http://purl.obolibrary.org/obo/PR_000001283,broad substrate specificity ATP-binding cassette transporter ABCG2 +8.5143204,GO:0042430,http://purl.obolibrary.org/obo/GO_0042430,indole-containing compound metabolic process +8.5151845,HP:0004363,http://purl.obolibrary.org/obo/HP_0004363,Abnormal circulating calcium concentration +8.5156168,PR:000000130,http://purl.obolibrary.org/obo/PR_000000130,thrombospondin-2 +8.5158331,GO:0006302,http://purl.obolibrary.org/obo/GO_0006302,double-strand break repair +8.5162657,GO:0042401,http://purl.obolibrary.org/obo/GO_0042401,cellular biogenic amine biosynthetic process +8.5166985,DRUGBANK:DB11412,http://purl.obolibrary.org/obo/DRUGBANK_DB11412,none +8.516915,PR:000005965,http://purl.obolibrary.org/obo/PR_000005965,cystatin-C +8.517348,PR:P19437,http://purl.obolibrary.org/obo/PR_P19437,none +8.5175647,GO:0005883,http://purl.obolibrary.org/obo/GO_0005883,neurofilament +8.5177813,PR:O00910,http://purl.obolibrary.org/obo/PR_O00910,none +8.5184316,HP:0001268,http://purl.obolibrary.org/obo/HP_0001268,Mental deterioration +8.5188653,GO:0120252,http://purl.obolibrary.org/obo/GO_0120252,hydrocarbon metabolic process +8.5190823,DRUGBANK:DB00899,http://purl.obolibrary.org/obo/DRUGBANK_DB00899,none +8.5190823,UBERON:0001404,http://purl.obolibrary.org/obo/UBERON_0001404,radial artery +8.5192993,CHEBI:39317,http://purl.obolibrary.org/obo/CHEBI_39317,growth regulator +8.5195163,MONDO:0020137,http://purl.obolibrary.org/obo/MONDO_0020137,frontotemporal degeneration with dementia +8.5197334,UBERON:0008397,http://purl.obolibrary.org/obo/UBERON_0008397,tracheobronchial epithelium +8.5201677,MONDO:0002171,http://purl.obolibrary.org/obo/MONDO_0002171,giant cell tumor +8.5206022,PR:000001890,http://purl.obolibrary.org/obo/PR_000001890,mucin-1 +8.5214718,PR:000016364,http://purl.obolibrary.org/obo/PR_000016364,tight junction protein ZO-1 +8.5219068,DRUGBANK:DB00391,http://purl.obolibrary.org/obo/DRUGBANK_DB00391,none +8.5219068,MONDO:0018715,http://purl.obolibrary.org/obo/MONDO_0018715,congenital hemangioma +8.5225598,MONDO:0018293,http://purl.obolibrary.org/obo/MONDO_0018293,congenital disorder of glycosylation with skin involvement +8.5229953,GO:0015695,http://purl.obolibrary.org/obo/GO_0015695,organic cation transport +8.5229953,GO:0016812,http://purl.obolibrary.org/obo/GO_0016812,"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides" +8.523867,GO:0015671,http://purl.obolibrary.org/obo/GO_0015671,oxygen transport +8.523867,MONDO:0001744,http://purl.obolibrary.org/obo/MONDO_0001744,angle-closure glaucoma +8.5245212,DRUGBANK:DB00456,http://purl.obolibrary.org/obo/DRUGBANK_DB00456,none +8.5249576,DRUGBANK:DB11457,http://purl.obolibrary.org/obo/DRUGBANK_DB11457,none +8.5251759,GO:0030964,http://purl.obolibrary.org/obo/GO_0030964,NADH dehydrogenase complex +8.5256126,PR:000004378,http://purl.obolibrary.org/obo/PR_000004378,aspartoacylase +8.5260494,MONDO:0018876,http://purl.obolibrary.org/obo/MONDO_0018876,mantle cell lymphoma +8.5262679,MONDO:0015452,http://purl.obolibrary.org/obo/MONDO_0015452,Coffin-Siris syndrome +8.5264865,PR:000001875,http://purl.obolibrary.org/obo/PR_000001875,leptin receptor +8.5271424,MONDO:0002381,http://purl.obolibrary.org/obo/MONDO_0002381,sweat gland neoplasm +8.5273612,HP:0002814,http://purl.obolibrary.org/obo/HP_0002814,Abnormality of the lower limb +8.52758,PR:000015611,http://purl.obolibrary.org/obo/PR_000015611,sterol regulatory element-binding protein 1 +8.5282367,DRUGBANK:DB10513,http://purl.obolibrary.org/obo/DRUGBANK_DB10513,none +8.5284556,UBERON:0001258,http://purl.obolibrary.org/obo/UBERON_0001258,neck of urinary bladder +8.5304287,MONDO:0018329,http://purl.obolibrary.org/obo/MONDO_0018329,persistent combined dystonia +8.5308677,DRUGBANK:DB00929,http://purl.obolibrary.org/obo/DRUGBANK_DB00929,none +8.5308677,PR:000014160,http://purl.obolibrary.org/obo/PR_000014160,ropporin-1-like protein +8.5310872,MONDO:0005440,http://purl.obolibrary.org/obo/MONDO_0005440,embryonal carcinoma +8.5310872,SO:0001272,http://purl.obolibrary.org/obo/SO_0001272,tRNA_gene +8.5313068,GO:0038021,http://purl.obolibrary.org/obo/GO_0038021,leptin receptor activity +8.5313068,PR:000001852,http://purl.obolibrary.org/obo/PR_000001852,cytotoxic T-lymphocyte protein 4 +8.5313068,UBERON:0002998,http://purl.obolibrary.org/obo/UBERON_0002998,inferior frontal gyrus +8.5317462,NCBITaxon:177875,http://purl.obolibrary.org/obo/NCBITaxon_177875,none +8.5321858,DRUGBANK:DB01327,http://purl.obolibrary.org/obo/DRUGBANK_DB01327,none +8.5330655,GO:0030183,http://purl.obolibrary.org/obo/GO_0030183,B cell differentiation +8.5330655,PR:000008824,http://purl.obolibrary.org/obo/PR_000008824,"60 kDa heat shock protein, mitochondrial" +8.5332855,DRUGBANK:DB10640,http://purl.obolibrary.org/obo/DRUGBANK_DB10640,none +8.5339459,DRUGBANK:DB00443,http://purl.obolibrary.org/obo/DRUGBANK_DB00443,none +8.5339459,MONDO:0021189,http://purl.obolibrary.org/obo/MONDO_0021189,intestinal motility disease +8.5346068,CL:0011103,http://purl.obolibrary.org/obo/CL_0011103,sympathetic neuron +8.5350476,GO:0043648,http://purl.obolibrary.org/obo/GO_0043648,dicarboxylic acid metabolic process +8.5357092,GO:0006270,http://purl.obolibrary.org/obo/GO_0006270,DNA replication initiation +8.5357092,MONDO:0008932,http://purl.obolibrary.org/obo/MONDO_0008932,premature centromere division +8.5359298,UBERON:0004769,http://purl.obolibrary.org/obo/UBERON_0004769,diaphysis +8.5370337,SO:0000139,http://purl.obolibrary.org/obo/SO_0000139,ribosome_entry_site +8.5374756,UBERON:0000086,http://purl.obolibrary.org/obo/UBERON_0000086,zona pellucida +8.5379177,GO:0005770,http://purl.obolibrary.org/obo/GO_0005770,late endosome +8.5379177,UBERON:0004785,http://purl.obolibrary.org/obo/UBERON_0004785,respiratory system mucosa +8.5381388,GO:0009712,http://purl.obolibrary.org/obo/GO_0009712,catechol-containing compound metabolic process +8.53836,PR:000007895,http://purl.obolibrary.org/obo/PR_000007895,hexokinase-4 +8.5390238,PR:000029950,http://purl.obolibrary.org/obo/PR_000029950,glutathione S-transferase pi +8.5392451,DRUGBANK:DB11512,http://purl.obolibrary.org/obo/DRUGBANK_DB11512,none +8.5392451,GO:0006584,http://purl.obolibrary.org/obo/GO_0006584,catecholamine metabolic process +8.5394665,GO:0016042,http://purl.obolibrary.org/obo/GO_0016042,lipid catabolic process +8.5394665,GO:0048144,http://purl.obolibrary.org/obo/GO_0048144,fibroblast proliferation +8.539688,DRUGBANK:DB00397,http://purl.obolibrary.org/obo/DRUGBANK_DB00397,none +8.539688,DRUGBANK:DB01033,http://purl.obolibrary.org/obo/DRUGBANK_DB01033,none +8.539688,MONDO:0016793,http://purl.obolibrary.org/obo/MONDO_0016793,mitochondrial oxidative phosphorylation disorder due to a point mutation of mitochondrial DNA +8.5399095,PR:000016353,http://purl.obolibrary.org/obo/PR_000016353,metalloproteinase inhibitor 2 +8.5405743,DRUGBANK:DB00595,http://purl.obolibrary.org/obo/DRUGBANK_DB00595,none +8.5414614,DRUGBANK:DB01008,http://purl.obolibrary.org/obo/DRUGBANK_DB01008,none +8.5414614,UBERON:0001467,http://purl.obolibrary.org/obo/UBERON_0001467,shoulder +8.5419053,DRUGBANK:DB00498,http://purl.obolibrary.org/obo/DRUGBANK_DB00498,none +8.5423493,GO:1901654,http://purl.obolibrary.org/obo/GO_1901654,response to ketone +8.5425714,DRUGBANK:DB01331,http://purl.obolibrary.org/obo/DRUGBANK_DB01331,none +8.5425714,PR:000029948,http://purl.obolibrary.org/obo/PR_000029948,glutathione S-transferase mu +8.5425714,SO:0000208,http://purl.obolibrary.org/obo/SO_0000208,terminal_inverted_repeat_element +8.5425714,UBERON:0003566,http://purl.obolibrary.org/obo/UBERON_0003566,head connective tissue +8.5427936,DRUGBANK:DB00499,http://purl.obolibrary.org/obo/DRUGBANK_DB00499,none +8.5434603,DRUGBANK:DB15954,http://purl.obolibrary.org/obo/DRUGBANK_DB15954,none +8.5436827,DRUGBANK:DB00848,http://purl.obolibrary.org/obo/DRUGBANK_DB00848,none +8.5436827,DRUGBANK:DB11231,http://purl.obolibrary.org/obo/DRUGBANK_DB11231,none +8.5436827,GO:0022602,http://purl.obolibrary.org/obo/GO_0022602,ovulation cycle process +8.5439051,MONDO:0004768,http://purl.obolibrary.org/obo/MONDO_0004768,keratoconjunctivitis +8.5439051,UBERON:0003406,http://purl.obolibrary.org/obo/UBERON_0003406,cartilage of respiratory system +8.5445726,SO:3000000,http://purl.obolibrary.org/obo/SO_3000000,gene_segment +8.5447952,GO:0071867,http://purl.obolibrary.org/obo/GO_0071867,response to monoamine +8.545686,DRUGBANK:DB01058,http://purl.obolibrary.org/obo/DRUGBANK_DB01058,none +8.545686,GO:0098803,http://purl.obolibrary.org/obo/GO_0098803,respiratory chain complex +8.545686,UBERON:0006615,http://purl.obolibrary.org/obo/UBERON_0006615,venous sinus +8.5459089,NCBITaxon:11286,http://purl.obolibrary.org/obo/NCBITaxon_11286,Lyssavirus +8.5461318,GO:0020027,http://purl.obolibrary.org/obo/GO_0020027,hemoglobin metabolic process +8.5465777,DRUGBANK:DB00919,http://purl.obolibrary.org/obo/DRUGBANK_DB00919,none +8.5468007,CL:0002629,http://purl.obolibrary.org/obo/CL_0002629,mature microglial cell +8.5468007,GO:0003989,http://purl.obolibrary.org/obo/GO_0003989,acetyl-CoA carboxylase activity +8.5468007,PR:000043453,http://purl.obolibrary.org/obo/PR_000043453,linker histone +8.5470238,PR:000011459,http://purl.obolibrary.org/obo/PR_000011459,neurotrophin-3 +8.547247,DRUGBANK:DB03404,http://purl.obolibrary.org/obo/DRUGBANK_DB03404,none +8.547247,MONDO:0003210,http://purl.obolibrary.org/obo/MONDO_0003210,intrahepatic cholangiocarcinoma +8.5479167,PR:000011469,http://purl.obolibrary.org/obo/PR_000011469,high affinity nerve growth factor receptor +8.5485868,MONDO:0005134,http://purl.obolibrary.org/obo/MONDO_0005134,experimental autoimmune encephalomyelitis +8.5485868,PR:000009773,http://purl.obolibrary.org/obo/PR_000009773,galectin-4 +8.5494811,MONDO:0000956,http://purl.obolibrary.org/obo/MONDO_0000956,small intestine cancer +8.5494811,MONDO:0010383,http://purl.obolibrary.org/obo/MONDO_0010383,fragile X syndrome +8.5497048,MONDO:0001697,http://purl.obolibrary.org/obo/MONDO_0001697,reading disorder +8.5497048,MONDO:0001822,http://purl.obolibrary.org/obo/MONDO_0001822,hypolipoproteinemia +8.5499285,MONDO:0005404,http://purl.obolibrary.org/obo/MONDO_0005404,myalgic encephalomeyelitis/chronic fatigue syndrome +8.5503761,HP:0011297,http://purl.obolibrary.org/obo/HP_0011297,Abnormal digit morphology +8.5503761,MONDO:0018634,http://purl.obolibrary.org/obo/MONDO_0018634,hereditary amyloidosis +8.5506,PR:000001938,http://purl.obolibrary.org/obo/PR_000001938,thrombomodulin-like receptor +8.551048,GO:0016653,http://purl.obolibrary.org/obo/GO_0016653,"oxidoreductase activity, acting on NAD(P)H, heme protein as acceptor" +8.551048,PR:000001898,http://purl.obolibrary.org/obo/PR_000001898,neprilysin +8.551272,MONDO:0005114,http://purl.obolibrary.org/obo/MONDO_0005114,pneumococcal infection +8.5521687,MONDO:0021511,http://purl.obolibrary.org/obo/MONDO_0021511,benign neoplasm of adrenal gland +8.552393,UBERON:3000645,http://purl.obolibrary.org/obo/UBERON_3000645,corpus +8.5526173,MONDO:0019952,http://purl.obolibrary.org/obo/MONDO_0019952,congenital myopathy +8.5526173,MONDO:0021667,http://purl.obolibrary.org/obo/MONDO_0021667,neuralgia +8.5530661,HP:0001336,http://purl.obolibrary.org/obo/HP_0001336,Myoclonus +8.5532906,UBERON:0035489,http://purl.obolibrary.org/obo/UBERON_0035489,branch of basilar artery +8.5537398,DRUGBANK:DB15361,http://purl.obolibrary.org/obo/DRUGBANK_DB15361,none +8.5537398,SO:0000644,http://purl.obolibrary.org/obo/SO_0000644,antisense_RNA +8.5537398,SO:1000028,http://purl.obolibrary.org/obo/SO_1000028,intrachromosomal_mutation +8.5555383,MONDO:0006022,http://purl.obolibrary.org/obo/MONDO_0006022,acidosis disorder +8.5555383,SO:0001038,http://purl.obolibrary.org/obo/SO_0001038,extrachromosomal_mobile_genetic_element +8.5564388,UBERON:0008846,http://purl.obolibrary.org/obo/UBERON_0008846,skeletal ligament +8.5566641,GO:0051052,http://purl.obolibrary.org/obo/GO_0051052,regulation of DNA metabolic process +8.5571147,GO:0042698,http://purl.obolibrary.org/obo/GO_0042698,ovulation cycle +8.5573401,NCBITaxon:675071,http://purl.obolibrary.org/obo/NCBITaxon_675071,none +8.5573401,UBERON:0001821,http://purl.obolibrary.org/obo/UBERON_0001821,sebaceous gland +8.5580166,DRUGBANK:DB14981,http://purl.obolibrary.org/obo/DRUGBANK_DB14981,none +8.5582422,GO:0005741,http://purl.obolibrary.org/obo/GO_0005741,mitochondrial outer membrane +8.5591452,DRUGBANK:DB11447,http://purl.obolibrary.org/obo/DRUGBANK_DB11447,none +8.5595969,MONDO:0018407,http://purl.obolibrary.org/obo/MONDO_0018407,male infertility due to obstructive azoospermia of genetic origin +8.5595969,UBERON:0004804,http://purl.obolibrary.org/obo/UBERON_0004804,oviduct epithelium +8.5598229,MONDO:0001487,http://purl.obolibrary.org/obo/MONDO_0001487,intrahepatic bile duct cancer +8.5605011,CHEBI:37961,http://purl.obolibrary.org/obo/CHEBI_37961,H2-receptor antagonist +8.5605011,DRUGBANK:DB00466,http://purl.obolibrary.org/obo/DRUGBANK_DB00466,none +8.5620854,MONDO:0005489,http://purl.obolibrary.org/obo/MONDO_0005489,dyslexia +8.5629918,UBERON:0005383,http://purl.obolibrary.org/obo/UBERON_0005383,caudate-putamen +8.563899,GO:0080190,http://purl.obolibrary.org/obo/GO_0080190,lateral growth +8.563899,PR:000010124,http://purl.obolibrary.org/obo/PR_000010124,microtubule-associated protein 2 +8.5659433,GO:1990351,http://purl.obolibrary.org/obo/GO_1990351,transporter complex +8.5659433,NCBITaxon:11292,http://purl.obolibrary.org/obo/NCBITaxon_11292,Rabies lyssavirus +8.5659433,PR:000000014,http://purl.obolibrary.org/obo/PR_000000014,cyclin-dependent kinase inhibitor +8.5663982,MONDO:0006573,http://purl.obolibrary.org/obo/MONDO_0006573,lipodystrophy +8.5668532,MONDO:0017020,http://purl.obolibrary.org/obo/MONDO_0017020,secondary interstitial lung disease specific to childhood associated with a systemic disease +8.5670808,PR:000000028,http://purl.obolibrary.org/obo/PR_000000028,small GTPase +8.567764,PR:000015435,http://purl.obolibrary.org/obo/PR_000015435,transcription factor SOX-9 +8.5679918,DRUGBANK:DB01059,http://purl.obolibrary.org/obo/DRUGBANK_DB01059,none +8.5684476,PR:000012289,http://purl.obolibrary.org/obo/PR_000012289,poly [ADP-ribose] polymerase 1 +8.5689036,MONDO:0015111,http://purl.obolibrary.org/obo/MONDO_0015111,gastroesophageal disease +8.5689036,PR:000002105,http://purl.obolibrary.org/obo/PR_000002105,thrombomodulin +8.5691316,DRUGBANK:DB08809,http://purl.obolibrary.org/obo/DRUGBANK_DB08809,none +8.5691316,GO:0000075,http://purl.obolibrary.org/obo/GO_0000075,cell cycle checkpoint signaling +8.5698162,DRUGBANK:DB07954,http://purl.obolibrary.org/obo/DRUGBANK_DB07954,none +8.5700445,DRUGBANK:DB12465,http://purl.obolibrary.org/obo/DRUGBANK_DB12465,none +8.5700445,PR:000004967,http://purl.obolibrary.org/obo/PR_000004967,calbindin +8.5702728,SO:0000755,http://purl.obolibrary.org/obo/SO_0000755,plasmid_vector +8.5705012,CHEBI:33250,http://purl.obolibrary.org/obo/CHEBI_33250,atom +8.5707296,MONDO:0017396,http://purl.obolibrary.org/obo/MONDO_0017396,toxic dermatosis +8.5709581,PR:000006853,http://purl.obolibrary.org/obo/PR_000006853,transcription factor E2F2 +8.5711867,DRUGBANK:DB00630,http://purl.obolibrary.org/obo/DRUGBANK_DB00630,none +8.5714153,PR:000023061,http://purl.obolibrary.org/obo/PR_000023061,none +8.5721014,SO:0001041,http://purl.obolibrary.org/obo/SO_0001041,viral_sequence +8.5723302,UBERON:0012344,http://purl.obolibrary.org/obo/UBERON_0012344,holocrine gland +8.572788,UBERON:0011824,http://purl.obolibrary.org/obo/UBERON_0011824,fibrous connective tissue +8.573475,DRUGBANK:DB10906,http://purl.obolibrary.org/obo/DRUGBANK_DB10906,none +8.5739333,HP:0003074,http://purl.obolibrary.org/obo/HP_0003074,Hyperglycemia +8.5741625,MONDO:0005775,http://purl.obolibrary.org/obo/MONDO_0005775,G6PD deficiency +8.5743918,MONDO:0005762,http://purl.obolibrary.org/obo/MONDO_0005762,Filoviridae infectious disease +8.5743918,PR:000002041,http://purl.obolibrary.org/obo/PR_000002041,integrin beta-2 +8.5746211,GO:0010948,http://purl.obolibrary.org/obo/GO_0010948,negative regulation of cell cycle process +8.57508,MONDO:0000870,http://purl.obolibrary.org/obo/MONDO_0000870,childhood acute lymphoblastic leukemia +8.57508,MONDO:0018923,http://purl.obolibrary.org/obo/MONDO_0018923,22q11.2 deletion syndrome +8.5762279,UBERON:0009911,http://purl.obolibrary.org/obo/UBERON_0009911,lobule +8.5769173,MONDO:0000607,http://purl.obolibrary.org/obo/MONDO_0000607,primary cutaneous T-cell non-Hodgkin lymphoma +8.5773772,PR:000013171,http://purl.obolibrary.org/obo/PR_000013171,proline-rich acidic protein 1 +8.5778373,MONDO:0002420,http://purl.obolibrary.org/obo/MONDO_0002420,tic disorder +8.5780674,PR:000009771,http://purl.obolibrary.org/obo/PR_000009771,galectin-3 +8.5785278,CL:0000601,http://purl.obolibrary.org/obo/CL_0000601,outer hair cell +8.5785278,GO:0001648,http://purl.obolibrary.org/obo/GO_0001648,proteinase activated receptor activity +8.5785278,MONDO:0004648,http://purl.obolibrary.org/obo/MONDO_0004648,vascular dementia +8.5785278,MONDO:0019950,http://purl.obolibrary.org/obo/MONDO_0019950,congenital muscular dystrophy +8.5789885,DRUGBANK:DB11421,http://purl.obolibrary.org/obo/DRUGBANK_DB11421,none +8.5799103,DRUGBANK:DB01224,http://purl.obolibrary.org/obo/DRUGBANK_DB01224,none +8.5812947,CHEBI:24833,http://purl.obolibrary.org/obo/CHEBI_24833,oxoacid +8.5812947,DRUGBANK:DB00713,http://purl.obolibrary.org/obo/DRUGBANK_DB00713,none +8.5817566,GO:0016877,http://purl.obolibrary.org/obo/GO_0016877,"ligase activity, forming carbon-sulfur bonds" +8.5817566,PR:Q80XD8,http://purl.obolibrary.org/obo/PR_Q80XD8,none +8.5822187,MONDO:0041261,http://purl.obolibrary.org/obo/MONDO_0041261,disorder of acid-base balance +8.5822187,SO:0100011,http://purl.obolibrary.org/obo/SO_0100011,cleaved_peptide_region +8.5824499,HP:0001010,http://purl.obolibrary.org/obo/HP_0001010,Hypopigmentation of the skin +8.5826811,MONDO:0007650,http://purl.obolibrary.org/obo/MONDO_0007650,MALT lymphoma +8.5833749,GO:0070727,http://purl.obolibrary.org/obo/GO_0070727,cellular macromolecule localization +8.5840693,DRUGBANK:DB11430,http://purl.obolibrary.org/obo/DRUGBANK_DB11430,none +8.5840693,MONDO:0016117,http://purl.obolibrary.org/obo/MONDO_0016117,muscular lipidosis +8.5843009,GO:0001764,http://purl.obolibrary.org/obo/GO_0001764,neuron migration +8.5843009,GO:1901988,http://purl.obolibrary.org/obo/GO_1901988,negative regulation of cell cycle phase transition +8.5843009,PR:000000165,http://purl.obolibrary.org/obo/PR_000000165,BMP4 +8.5845325,PR:000004145,http://purl.obolibrary.org/obo/PR_000004145,apolipoprotein B-100 +8.5847641,DRUGBANK:DB03403,http://purl.obolibrary.org/obo/DRUGBANK_DB03403,none +8.5852276,DRUGBANK:DB01606,http://purl.obolibrary.org/obo/DRUGBANK_DB01606,none +8.5854595,PR:000035365,http://purl.obolibrary.org/obo/PR_000035365,aurora kinase +8.5856914,NCBITaxon:11723,http://purl.obolibrary.org/obo/NCBITaxon_11723,Simian immunodeficiency virus +8.5866194,MONDO:0002122,http://purl.obolibrary.org/obo/MONDO_0002122,neuritis +8.5873161,UBERON:0016540,http://purl.obolibrary.org/obo/UBERON_0016540,occipital cortex +8.5875484,UBERON:0013769,http://purl.obolibrary.org/obo/UBERON_0013769,uterine lumen +8.5877807,DRUGBANK:DB11022,http://purl.obolibrary.org/obo/DRUGBANK_DB11022,none +8.5877807,UBERON:0001325,http://purl.obolibrary.org/obo/UBERON_0001325,muscle of pelvis +8.5884782,MONDO:0019810,http://purl.obolibrary.org/obo/MONDO_0019810,toxic epidermal necrolysis +8.5884782,SO:0000449,http://purl.obolibrary.org/obo/SO_0000449,random_sequence +8.5891761,DRUGBANK:DB11724,http://purl.obolibrary.org/obo/DRUGBANK_DB11724,none +8.5894088,CL:0002334,http://purl.obolibrary.org/obo/CL_0002334,preadipocyte +8.5894088,MONDO:0016327,http://purl.obolibrary.org/obo/MONDO_0016327,mitochondrial disease with hypertrophic cardiomyopathy +8.5896416,GO:0006284,http://purl.obolibrary.org/obo/GO_0006284,base-excision repair +8.5898745,MONDO:0005961,http://purl.obolibrary.org/obo/MONDO_0005961,sinusitis +8.5898745,PR:000006855,http://purl.obolibrary.org/obo/PR_000006855,transcription factor E2F4 +8.5905734,HP:0011354,http://purl.obolibrary.org/obo/HP_0011354,Generalized abnormality of skin +8.5905734,UBERON:0005953,http://purl.obolibrary.org/obo/UBERON_0005953,outflow part of right ventricle +8.5912728,NCBITaxon:12092,http://purl.obolibrary.org/obo/NCBITaxon_12092,Hepatovirus A +8.5912728,UBERON:0001386,http://purl.obolibrary.org/obo/UBERON_0001386,extensor digitorum longus +8.5917393,CHEBI:64709,http://purl.obolibrary.org/obo/CHEBI_64709,organic acid +8.5917393,GO:0034613,http://purl.obolibrary.org/obo/GO_0034613,cellular protein localization +8.5917393,HP:0001881,http://purl.obolibrary.org/obo/HP_0001881,Abnormal leukocyte morphology +8.5917393,HP:0010987,http://purl.obolibrary.org/obo/HP_0010987,Abnormal cellular immune system morphology +8.5917393,HP:0032251,http://purl.obolibrary.org/obo/HP_0032251,Abnormal immune system morphology +8.5919726,DRUGBANK:DB00806,http://purl.obolibrary.org/obo/DRUGBANK_DB00806,none +8.592206,CL:0000507,http://purl.obolibrary.org/obo/CL_0000507,endorphin secreting cell +8.592206,PR:000010725,http://purl.obolibrary.org/obo/PR_000010725,methylenetetrahydrofolate reductase +8.592673,CL:0000506,http://purl.obolibrary.org/obo/CL_0000506,enkephalin secreting cell +8.5929066,DRUGBANK:DB00928,http://purl.obolibrary.org/obo/DRUGBANK_DB00928,none +8.5929066,PR:000001281,http://purl.obolibrary.org/obo/PR_000001281,ADP-ribosyl cyclase +8.5933739,PR:000006854,http://purl.obolibrary.org/obo/PR_000006854,transcription factor E2F3 +8.5940752,GO:0004962,http://purl.obolibrary.org/obo/GO_0004962,endothelin receptor activity +8.5940752,NCBITaxon:260963,http://purl.obolibrary.org/obo/NCBITaxon_260963,Avulavirus +8.594777,DRUGBANK:DB06228,http://purl.obolibrary.org/obo/DRUGBANK_DB06228,none +8.5950111,GO:0007281,http://purl.obolibrary.org/obo/GO_0007281,germ cell development +8.5954794,PR:000029097,http://purl.obolibrary.org/obo/PR_000029097,CDKN2A gene translation product +8.5954794,UBERON:0001256,http://purl.obolibrary.org/obo/UBERON_0001256,wall of urinary bladder +8.5957136,DRUGBANK:DB09161,http://purl.obolibrary.org/obo/DRUGBANK_DB09161,none +8.5957136,MONDO:0007276,http://purl.obolibrary.org/obo/MONDO_0007276,cat-eye syndrome +8.5959479,HP:0001760,http://purl.obolibrary.org/obo/HP_0001760,Abnormal foot morphology +8.5959479,NCBITaxon:9527,http://purl.obolibrary.org/obo/NCBITaxon_9527,Cercopithecidae +8.5964166,NCBITaxon:11176,http://purl.obolibrary.org/obo/NCBITaxon_11176,Avian avulavirus 1 +8.5964166,UBERON:0000002,http://purl.obolibrary.org/obo/UBERON_0000002,uterine cervix +8.5975893,MONDO:0005737,http://purl.obolibrary.org/obo/MONDO_0005737,Ebola hemorrhagic fever +8.5980588,MONDO:0002676,http://purl.obolibrary.org/obo/MONDO_0002676,adult fibrosarcoma +8.5985285,DRUGBANK:DB01275,http://purl.obolibrary.org/obo/DRUGBANK_DB01275,none +8.5989984,NCBITaxon:12091,http://purl.obolibrary.org/obo/NCBITaxon_12091,Hepatovirus +8.5992335,PR:000006937,http://purl.obolibrary.org/obo/PR_000006937,early growth response protein 1 +8.5994686,DRUGBANK:DB15648,http://purl.obolibrary.org/obo/DRUGBANK_DB15648,none +8.5997037,PR:000001448,http://purl.obolibrary.org/obo/PR_000001448,fibroblast growth factor receptor 1 +8.5999389,DRUGBANK:DB01124,http://purl.obolibrary.org/obo/DRUGBANK_DB01124,none +8.5999389,GO:0051258,http://purl.obolibrary.org/obo/GO_0051258,protein polymerization +8.5999389,SO:0001062,http://purl.obolibrary.org/obo/SO_0001062,propeptide +8.6001742,DRUGBANK:DB13110,http://purl.obolibrary.org/obo/DRUGBANK_DB13110,none +8.6001742,PR:000016567,http://purl.obolibrary.org/obo/PR_000016567,tumor protein 63 +8.6004095,GO:0043067,http://purl.obolibrary.org/obo/GO_0043067,regulation of programmed cell death +8.6004095,PR:000013672,http://purl.obolibrary.org/obo/PR_000013672,DNA repair protein RAD51 homolog 1 +8.6008803,GO:0006643,http://purl.obolibrary.org/obo/GO_0006643,membrane lipid metabolic process +8.6008803,GO:0010853,http://purl.obolibrary.org/obo/GO_0010853,cyclase activator activity +8.6008803,GO:0051046,http://purl.obolibrary.org/obo/GO_0051046,regulation of secretion +8.6008803,MONDO:0005091,http://purl.obolibrary.org/obo/MONDO_0005091,severe acute respiratory syndrome +8.6011158,MONDO:0006665,http://purl.obolibrary.org/obo/MONDO_0006665,chronic atrophic gastritis +8.6013514,CHEBI:26155,http://purl.obolibrary.org/obo/CHEBI_26155,plant growth regulator +8.601587,MONDO:0006901,http://purl.obolibrary.org/obo/MONDO_0006901,peritoneal neoplasm +8.6018226,DRUGBANK:DB01104,http://purl.obolibrary.org/obo/DRUGBANK_DB01104,none +8.6018226,PR:000017035,http://purl.obolibrary.org/obo/PR_000017035,mitochondrial brown fat uncoupling protein 1 +8.6020583,DRUGBANK:DB00244,http://purl.obolibrary.org/obo/DRUGBANK_DB00244,none +8.6022941,DRUGBANK:DB00102,http://purl.obolibrary.org/obo/DRUGBANK_DB00102,none +8.6025299,SO:0000973,http://purl.obolibrary.org/obo/SO_0000973,insertion_sequence +8.6030017,GO:0097530,http://purl.obolibrary.org/obo/GO_0097530,granulocyte migration +8.6034738,CHEBI:33575,http://purl.obolibrary.org/obo/CHEBI_33575,carboxylic acid +8.6037099,DRUGBANK:DB15546,http://purl.obolibrary.org/obo/DRUGBANK_DB15546,none +8.6037099,GO:0004489,http://purl.obolibrary.org/obo/GO_0004489,methylenetetrahydrofolate reductase (NAD(P)H) activity +8.6037099,GO:0031325,http://purl.obolibrary.org/obo/GO_0031325,positive regulation of cellular metabolic process +8.6037099,GO:0033694,http://purl.obolibrary.org/obo/GO_0033694,"oxidoreductase activity, acting on the CH-NH group of donors, iron-sulfur protein as acceptor" +8.6037099,GO:0033738,http://purl.obolibrary.org/obo/GO_0033738,methylenetetrahydrofolate reductase (ferredoxin) activity +8.6037099,GO:0097285,http://purl.obolibrary.org/obo/GO_0097285,none +8.603946,PR:F4IEM5,http://purl.obolibrary.org/obo/PR_F4IEM5,none +8.6041822,MONDO:0005650,http://purl.obolibrary.org/obo/MONDO_0005650,Arenaviridae infectious disease +8.6041822,MONDO:0006938,http://purl.obolibrary.org/obo/MONDO_0006938,pyelitis +8.6044185,CHEBI:48001,http://purl.obolibrary.org/obo/CHEBI_48001,protein synthesis inhibitor +8.6044185,GO:0016715,http://purl.obolibrary.org/obo/GO_0016715,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen" +8.6046548,DRUGBANK:DB16177,http://purl.obolibrary.org/obo/DRUGBANK_DB16177,none +8.6051276,DRUGBANK:DB11360,http://purl.obolibrary.org/obo/DRUGBANK_DB11360,none +8.6056007,PR:000006101,http://purl.obolibrary.org/obo/PR_000006101,cytochrome P450 1A1 +8.6056007,UBERON:0001450,http://purl.obolibrary.org/obo/UBERON_0001450,calcaneus +8.6056007,UBERON:0015014,http://purl.obolibrary.org/obo/UBERON_0015014,calcaneum endochondral element +8.6058373,MONDO:0016546,http://purl.obolibrary.org/obo/MONDO_0016546,primary orthostatic tremor +8.6065474,HP:0000098,http://purl.obolibrary.org/obo/HP_0000098,Tall stature +8.6065474,HP:0000587,http://purl.obolibrary.org/obo/HP_0000587,Abnormality of the optic nerve +8.6065474,UBERON:0001419,http://purl.obolibrary.org/obo/UBERON_0001419,skin of limb +8.6072581,GO:0004500,http://purl.obolibrary.org/obo/GO_0004500,dopamine beta-monooxygenase activity +8.6074951,DRUGBANK:DB15318,http://purl.obolibrary.org/obo/DRUGBANK_DB15318,none +8.6079692,CHEBI:35605,http://purl.obolibrary.org/obo/CHEBI_35605,carbon oxoacid +8.6079692,DRUGBANK:DB01112,http://purl.obolibrary.org/obo/DRUGBANK_DB01112,none +8.6079692,GO:0032984,http://purl.obolibrary.org/obo/GO_0032984,macromolecular complex disassembly +8.6079692,MONDO:0003516,http://purl.obolibrary.org/obo/MONDO_0003516,adult teratoma +8.6082064,DRUGBANK:DB14570,http://purl.obolibrary.org/obo/DRUGBANK_DB14570,none +8.6084436,DRUGBANK:DB00900,http://purl.obolibrary.org/obo/DRUGBANK_DB00900,none +8.6089182,GO:0033013,http://purl.obolibrary.org/obo/GO_0033013,tetrapyrrole metabolic process +8.609393,CL:0000798,http://purl.obolibrary.org/obo/CL_0000798,gamma-delta T cell +8.609393,MONDO:0003175,http://purl.obolibrary.org/obo/MONDO_0003175,salivary gland adenoid cystic carcinoma +8.6098681,CL:0000365,http://purl.obolibrary.org/obo/CL_0000365,animal zygote +8.6098681,CL:0010017,http://purl.obolibrary.org/obo/CL_0010017,zygote +8.6103434,DRUGBANK:DB00218,http://purl.obolibrary.org/obo/DRUGBANK_DB00218,none +8.6105811,DRUGBANK:DB15261,http://purl.obolibrary.org/obo/DRUGBANK_DB15261,none +8.6105811,GO:0008253,http://purl.obolibrary.org/obo/GO_0008253,5'-nucleotidase activity +8.6110567,MONDO:0020325,http://purl.obolibrary.org/obo/MONDO_0020325,anaplastic large cell lymphoma +8.6115326,CHEBI:60550,http://purl.obolibrary.org/obo/CHEBI_60550,poly(ether) polymer +8.6115326,HP:0001548,http://purl.obolibrary.org/obo/HP_0001548,Overgrowth +8.6117706,CHEBI:61503,http://purl.obolibrary.org/obo/CHEBI_61503,poly(alkylene oxide) polymer +8.6120087,DRUGBANK:DB00609,http://purl.obolibrary.org/obo/DRUGBANK_DB00609,none +8.6120087,PR:000016506,http://purl.obolibrary.org/obo/PR_000016506,"troponin I, cardiac muscle" +8.6120087,UBERON:0006518,http://purl.obolibrary.org/obo/UBERON_0006518,right lung lobe +8.6122468,CHEBI:61536,http://purl.obolibrary.org/obo/CHEBI_61536,poly(oxymethylene) polymer +8.6122468,CHEBI:61538,http://purl.obolibrary.org/obo/CHEBI_61538,paraformaldehyde polymer +8.6122468,GO:0015020,http://purl.obolibrary.org/obo/GO_0015020,glucuronosyltransferase activity +8.6122468,MONDO:0005215,http://purl.obolibrary.org/obo/MONDO_0005215,vulvar carcinoma +8.6122468,MONDO:0018338,http://purl.obolibrary.org/obo/MONDO_0018338,activated PI3K-delta syndrome +8.612485,UBERON:0002450,http://purl.obolibrary.org/obo/UBERON_0002450,decidua +8.6127232,DRUGBANK:DB14038,http://purl.obolibrary.org/obo/DRUGBANK_DB14038,none +8.6131999,MONDO:0021632,http://purl.obolibrary.org/obo/MONDO_0021632,primary brain neoplasm +8.6134383,UBERON:0001067,http://purl.obolibrary.org/obo/UBERON_0001067,vertebral arch joint +8.6136767,MONDO:0019347,http://purl.obolibrary.org/obo/MONDO_0019347,peeling skin syndrome +8.6141538,GO:0042541,http://purl.obolibrary.org/obo/GO_0042541,hemoglobin biosynthetic process +8.6155865,GO:0048305,http://purl.obolibrary.org/obo/GO_0048305,none +8.6160645,CHEBI:48540,http://purl.obolibrary.org/obo/CHEBI_48540,beta-adrenergic drug +8.6165427,DRUGBANK:DB01024,http://purl.obolibrary.org/obo/DRUGBANK_DB01024,none +8.6165427,GO:0090599,http://purl.obolibrary.org/obo/GO_0090599,alpha-glucosidase activity +8.6167819,MONDO:0002486,http://purl.obolibrary.org/obo/MONDO_0002486,lobular neoplasia +8.6170212,PR:000016191,http://purl.obolibrary.org/obo/PR_000016191,trichoplein keratin filament-binding protein +8.6172605,DRUGBANK:DB00373,http://purl.obolibrary.org/obo/DRUGBANK_DB00373,none +8.6174999,DRUGBANK:DB02961,http://purl.obolibrary.org/obo/DRUGBANK_DB02961,none +8.6179788,GO:0003968,http://purl.obolibrary.org/obo/GO_0003968,RNA-directed 5'-3' RNA polymerase activity +8.6189374,MONDO:0008394,http://purl.obolibrary.org/obo/MONDO_0008394,Silver-Russell syndrome +8.6191772,NCBITaxon:314294,http://purl.obolibrary.org/obo/NCBITaxon_314294,Cercopithecoidea +8.6198968,MONDO:0006794,http://purl.obolibrary.org/obo/MONDO_0006794,hypersensitivity vasculitis +8.6201368,GO:0032868,http://purl.obolibrary.org/obo/GO_0032868,response to insulin +8.6203769,UBERON:0010188,http://purl.obolibrary.org/obo/UBERON_0010188,protuberance +8.620617,MONDO:0016104,http://purl.obolibrary.org/obo/MONDO_0016104,infectious disease with peripheral neuropathy +8.620617,MONDO:0016428,http://purl.obolibrary.org/obo/MONDO_0016428,multiple sclerosis variant +8.6208572,DRUGBANK:DB07392,http://purl.obolibrary.org/obo/DRUGBANK_DB07392,none +8.6213378,GO:0034212,http://purl.obolibrary.org/obo/GO_0034212,peptide N-acetyltransferase activity +8.6215781,UBERON:0000379,http://purl.obolibrary.org/obo/UBERON_0000379,tracheal mucosa +8.6218185,PR:000000122,http://purl.obolibrary.org/obo/PR_000000122,Rho-related small GTPase +8.622059,MONDO:0024270,http://purl.obolibrary.org/obo/MONDO_0024270,parasitic intestinal disease +8.6230215,PR:000003695,http://purl.obolibrary.org/obo/PR_000003695,actin-related protein 2 +8.6230215,PR:000030490,http://purl.obolibrary.org/obo/PR_000030490,mucin-22 +8.6232622,GO:0044272,http://purl.obolibrary.org/obo/GO_0044272,sulfur compound biosynthetic process +8.6237439,MONDO:0002922,http://purl.obolibrary.org/obo/MONDO_0002922,pyoderma +8.6237439,SO:0000341,http://purl.obolibrary.org/obo/SO_0000341,chromosome_band +8.6242258,DRUGBANK:DB01272,http://purl.obolibrary.org/obo/DRUGBANK_DB01272,none +8.6244669,MONDO:0006651,http://purl.obolibrary.org/obo/MONDO_0006651,anterior uveitis +8.6244669,UBERON:0036302,http://purl.obolibrary.org/obo/UBERON_0036302,vasculature of central nervous system plus retina +8.624708,GO:0061733,http://purl.obolibrary.org/obo/GO_0061733,peptide-lysine-N-acetyltransferase activity +8.6249492,PR:000010155,http://purl.obolibrary.org/obo/PR_000010155,mitogen-activated protein kinase 15 +8.6251904,MONDO:0042976,http://purl.obolibrary.org/obo/MONDO_0042976,vitamin B deficiency +8.6259144,DRUGBANK:DB00904,http://purl.obolibrary.org/obo/DRUGBANK_DB00904,none +8.6259144,MONDO:0022409,http://purl.obolibrary.org/obo/MONDO_0022409,nephropathy-associated ciliopathy +8.626639,DRUGBANK:DB00296,http://purl.obolibrary.org/obo/DRUGBANK_DB00296,none +8.626639,MONDO:0006939,http://purl.obolibrary.org/obo/MONDO_0006939,pyelonephritis +8.6271223,PR:000001154,http://purl.obolibrary.org/obo/PR_000001154,Toll-like receptor 3 +8.6273641,DRUGBANK:DB06704,http://purl.obolibrary.org/obo/DRUGBANK_DB06704,none +8.6276059,GO:0051338,http://purl.obolibrary.org/obo/GO_0051338,regulation of transferase activity +8.6276059,MONDO:0000628,http://purl.obolibrary.org/obo/MONDO_0000628,central nervous system organ benign neoplasm +8.6278477,CHEBI:37848,http://purl.obolibrary.org/obo/CHEBI_37848,plant hormone +8.6280897,MONDO:0001115,http://purl.obolibrary.org/obo/MONDO_0001115,familial polycythemia +8.6288158,PR:Q02496,http://purl.obolibrary.org/obo/PR_Q02496,none +8.6293002,MONDO:0045010,http://purl.obolibrary.org/obo/MONDO_0045010,glycoprotein metabolism disease +8.6293002,PR:000006857,http://purl.obolibrary.org/obo/PR_000006857,transcription factor E2F6 +8.6300272,SO:0000413,http://purl.obolibrary.org/obo/SO_0000413,sequence_difference +8.6302696,PR:000014434,http://purl.obolibrary.org/obo/PR_000014434,S-arrestin +8.6307547,DRUGBANK:DB01676,http://purl.obolibrary.org/obo/DRUGBANK_DB01676,none +8.6326974,CL:0002222,http://purl.obolibrary.org/obo/CL_0002222,vertebrate lens cell +8.6326974,DRUGBANK:DB03461,http://purl.obolibrary.org/obo/DRUGBANK_DB03461,none +8.6329405,GO:0030659,http://purl.obolibrary.org/obo/GO_0030659,cytoplasmic vesicle membrane +8.6329405,GO:0042651,http://purl.obolibrary.org/obo/GO_0042651,thylakoid membrane +8.6334269,GO:0006261,http://purl.obolibrary.org/obo/GO_0006261,DNA-dependent DNA replication +8.6334269,MONDO:0004928,http://purl.obolibrary.org/obo/MONDO_0004928,lymph node disease +8.6341569,CL:0019018,http://purl.obolibrary.org/obo/CL_0019018,blood vessel smooth muscle cell +8.6341569,GO:0016899,http://purl.obolibrary.org/obo/GO_0016899,"oxidoreductase activity, acting on the CH-OH group of donors, oxygen as acceptor" +8.6341569,MONDO:0000845,http://purl.obolibrary.org/obo/MONDO_0000845,fibrous dysplasia +8.6346439,PR:000008040,http://purl.obolibrary.org/obo/PR_000008040,glucagon-like peptide 1 receptor +8.6351311,MONDO:0700064,http://purl.obolibrary.org/obo/MONDO_0700064,aneuploidy +8.6363501,CHEBI:33247,http://purl.obolibrary.org/obo/CHEBI_33247,organic group +8.6368382,HP:0002329,http://purl.obolibrary.org/obo/HP_0002329,Drowsiness +8.6368382,PR:000013060,http://purl.obolibrary.org/obo/PR_000013060,peroxisome proliferator-activated receptor gamma coactivator 1-beta +8.6373265,MONDO:0017858,http://purl.obolibrary.org/obo/MONDO_0017858,acute erythroid leukemia +8.6375707,HP:0012795,http://purl.obolibrary.org/obo/HP_0012795,Abnormality of the optic disc +8.6375707,SO:0001247,http://purl.obolibrary.org/obo/SO_0001247,synthetic_oligo +8.637815,PR:000002201,http://purl.obolibrary.org/obo/PR_000002201,dynein light chain +8.6383038,GO:0004402,http://purl.obolibrary.org/obo/GO_0004402,histone acetyltransferase activity +8.6383038,GO:0016050,http://purl.obolibrary.org/obo/GO_0016050,vesicle organization +8.6387927,HP:0000648,http://purl.obolibrary.org/obo/HP_0000648,Optic atrophy +8.6390373,UBERON:0035398,http://purl.obolibrary.org/obo/UBERON_0035398,branch of external carotid artery +8.639282,DRUGBANK:DB00023,http://purl.obolibrary.org/obo/DRUGBANK_DB00023,none +8.639282,DRUGBANK:DB06767,http://purl.obolibrary.org/obo/DRUGBANK_DB06767,none +8.6395267,MONDO:0004958,http://purl.obolibrary.org/obo/MONDO_0004958,oral cavity squamous cell carcinoma +8.6395267,UBERON:0009979,http://purl.obolibrary.org/obo/UBERON_0009979,condyle +8.6400163,UBERON:0007688,http://purl.obolibrary.org/obo/UBERON_0007688,anlage +8.6402612,MONDO:0020232,http://purl.obolibrary.org/obo/MONDO_0020232,musculoskeletal disease with cataract +8.6402612,PR:000012879,http://purl.obolibrary.org/obo/PR_000012879,myelin proteolipid protein +8.6405061,CHEBI:37887,http://purl.obolibrary.org/obo/CHEBI_37887,adrenergic antagonist +8.6405061,MONDO:0006810,http://purl.obolibrary.org/obo/MONDO_0006810,intracranial hypertension +8.6405061,UBERON:0003499,http://purl.obolibrary.org/obo/UBERON_0003499,brain blood vessel +8.6407511,CL:0002539,http://purl.obolibrary.org/obo/CL_0002539,aortic smooth muscle cell +8.6409962,MONDO:0002123,http://purl.obolibrary.org/obo/MONDO_0002123,calcinosis +8.6412413,PR:Q9FL16,http://purl.obolibrary.org/obo/PR_Q9FL16,none +8.6414865,MONDO:0016729,http://purl.obolibrary.org/obo/MONDO_0016729,mixed neuronal-glial tumor +8.6417318,GO:0016774,http://purl.obolibrary.org/obo/GO_0016774,"phosphotransferase activity, carboxyl group as acceptor" +8.6422224,MONDO:0015919,http://purl.obolibrary.org/obo/MONDO_0015919,syndromic neurometabolic disease with non-X-linked intellectual disability +8.6422224,SO:0001767,http://purl.obolibrary.org/obo/SO_0001767,common_variant +8.6424679,PR:000006856,http://purl.obolibrary.org/obo/PR_000006856,transcription factor E2F5 +8.6427134,UBERON:0003915,http://purl.obolibrary.org/obo/UBERON_0003915,endothelial tube +8.6429589,GO:0016782,http://purl.obolibrary.org/obo/GO_0016782,"transferase activity, transferring sulphur-containing groups" +8.6432045,MONDO:0001786,http://purl.obolibrary.org/obo/MONDO_0001786,uterine inflammatory disease +8.6432045,MONDO:0005538,http://purl.obolibrary.org/obo/MONDO_0005538,proctitis +8.6439417,GO:0042127,http://purl.obolibrary.org/obo/GO_0042127,regulation of cell population proliferation +8.6441876,GO:0004886,http://purl.obolibrary.org/obo/GO_0004886,none +8.6441876,UBERON:0003527,http://purl.obolibrary.org/obo/UBERON_0003527,kidney capillary +8.6444335,DRUGBANK:DB02070,http://purl.obolibrary.org/obo/DRUGBANK_DB02070,none +8.6451716,DRUGBANK:DB07767,http://purl.obolibrary.org/obo/DRUGBANK_DB07767,none +8.6451716,PR:000010442,http://purl.obolibrary.org/obo/PR_000010442,DNA mismatch repair protein Mlh1 +8.6456639,GO:0031399,http://purl.obolibrary.org/obo/GO_0031399,regulation of protein modification process +8.6456639,UBERON:0012102,http://purl.obolibrary.org/obo/UBERON_0012102,buccal salivary gland +8.6464029,MONDO:0017758,http://purl.obolibrary.org/obo/MONDO_0017758,disorder of vitamin and non-protein cofactor absorption and transport +8.6464029,UBERON:0004795,http://purl.obolibrary.org/obo/UBERON_0004795,pancreas secretion +8.6468959,MONDO:0020101,http://purl.obolibrary.org/obo/MONDO_0020101,constitutional hemolytic anemia due to membrane defect +8.6468959,MONDO:0044710,http://purl.obolibrary.org/obo/MONDO_0044710,lip and oral cavity squamous cell carcinoma +8.6473891,DRUGBANK:DB03175,http://purl.obolibrary.org/obo/DRUGBANK_DB03175,none +8.6473891,GO:0019080,http://purl.obolibrary.org/obo/GO_0019080,viral gene expression +8.6476358,MONDO:0006294,http://purl.obolibrary.org/obo/MONDO_0006294,pleural cancer +8.6478826,GO:0030235,http://purl.obolibrary.org/obo/GO_0030235,nitric-oxide synthase regulator activity +8.6481294,CL:0008002,http://purl.obolibrary.org/obo/CL_0008002,skeletal muscle fiber +8.6483763,UBERON:0001632,http://purl.obolibrary.org/obo/UBERON_0001632,temporal artery +8.6486233,DRUGBANK:DB01844,http://purl.obolibrary.org/obo/DRUGBANK_DB01844,none +8.6486233,MONDO:0006662,http://purl.obolibrary.org/obo/MONDO_0006662,aseptic meningitis +8.6491173,CHEBI:78616,http://purl.obolibrary.org/obo/CHEBI_78616,carbohydrates and carbohydrate derivatives +8.6491173,MONDO:0018079,http://purl.obolibrary.org/obo/MONDO_0018079,thymic epithelial neoplasm +8.6496116,DRUGBANK:DB00367,http://purl.obolibrary.org/obo/DRUGBANK_DB00367,none +8.6498589,MONDO:0024990,http://purl.obolibrary.org/obo/MONDO_0024990,swine disease +8.6501062,MONDO:0016238,http://purl.obolibrary.org/obo/MONDO_0016238,solitary fibrous tumor +8.6501062,MONDO:0017276,http://purl.obolibrary.org/obo/MONDO_0017276,frontotemporal dementia +8.6508485,DRUGBANK:DB16146,http://purl.obolibrary.org/obo/DRUGBANK_DB16146,none +8.6510961,PR:000006858,http://purl.obolibrary.org/obo/PR_000006858,transcription factor E2F7 +8.6520869,UBERON:0001831,http://purl.obolibrary.org/obo/UBERON_0001831,parotid gland +8.6523348,MONDO:0044784,http://purl.obolibrary.org/obo/MONDO_0044784,myxoma +8.6525827,DRUGBANK:DB10621,http://purl.obolibrary.org/obo/DRUGBANK_DB10621,none +8.6533268,CHEBI:61369,http://purl.obolibrary.org/obo/CHEBI_61369,poly(methyl methacrylate) polymer +8.6538232,MONDO:0003037,http://purl.obolibrary.org/obo/MONDO_0003037,hypotrichosis +8.6543199,PR:000004801,http://purl.obolibrary.org/obo/PR_000004801,B-Raf proto-oncogene serine/threonine-protein kinase +8.6545683,HP:0001072,http://purl.obolibrary.org/obo/HP_0001072,Thickened skin +8.6548168,PR:000001958,http://purl.obolibrary.org/obo/PR_000001958,tumor necrosis factor receptor superfamily member 1A +8.6553139,PR:000001838,http://purl.obolibrary.org/obo/PR_000001838,T-cell surface glycoprotein CD1 +8.6553139,PR:000003177,http://purl.obolibrary.org/obo/PR_000003177,shc-transforming protein +8.6553139,PR:000012220,http://purl.obolibrary.org/obo/PR_000012220,protein-arginine deiminase type-2 +8.6553139,UBERON:0001173,http://purl.obolibrary.org/obo/UBERON_0001173,biliary tree +8.6555626,PR:000006859,http://purl.obolibrary.org/obo/PR_000006859,transcription factor E2F8 +8.6558113,GO:0099572,http://purl.obolibrary.org/obo/GO_0099572,postsynaptic specialization +8.6560601,GO:0036487,http://purl.obolibrary.org/obo/GO_0036487,nitric-oxide synthase inhibitor activity +8.6565578,DRUGBANK:DB01156,http://purl.obolibrary.org/obo/DRUGBANK_DB01156,none +8.6565578,GO:0010038,http://purl.obolibrary.org/obo/GO_0010038,response to metal ion +8.6565578,PR:000017360,http://purl.obolibrary.org/obo/PR_000017360,vitronectin +8.6570558,CHEBI:33282,http://purl.obolibrary.org/obo/CHEBI_33282,antibacterial agent +8.6570558,CL:0000242,http://purl.obolibrary.org/obo/CL_0000242,Merkel cell +8.6570558,MONDO:0001569,http://purl.obolibrary.org/obo/MONDO_0001569,acoustic neuroma +8.6573049,GO:0046189,http://purl.obolibrary.org/obo/GO_0046189,phenol-containing compound biosynthetic process +8.6575541,NCBITaxon:715989,http://purl.obolibrary.org/obo/NCBITaxon_715989,sordariomyceta +8.6580526,GO:0005372,http://purl.obolibrary.org/obo/GO_0005372,water transmembrane transporter activity +8.6580526,GO:0015250,http://purl.obolibrary.org/obo/GO_0015250,water channel activity +8.6583019,DRUGBANK:DB01225,http://purl.obolibrary.org/obo/DRUGBANK_DB01225,none +8.6585514,DRUGBANK:DB01003,http://purl.obolibrary.org/obo/DRUGBANK_DB01003,none +8.6585514,GO:0009887,http://purl.obolibrary.org/obo/GO_0009887,animal organ morphogenesis +8.6588008,DRUGBANK:DB00302,http://purl.obolibrary.org/obo/DRUGBANK_DB00302,none +8.6588008,SO:0000837,http://purl.obolibrary.org/obo/SO_0000837,UTR_region +8.6590504,MONDO:0019064,http://purl.obolibrary.org/obo/MONDO_0019064,hereditary spastic paraplegia +8.6593,UBERON:0002707,http://purl.obolibrary.org/obo/UBERON_0002707,corticospinal tract +8.6600491,CHEBI:25741,http://purl.obolibrary.org/obo/CHEBI_25741,oxide +8.6600491,HP:0011276,http://purl.obolibrary.org/obo/HP_0011276,Vascular skin abnormality +8.6605489,DRUGBANK:DB03247,http://purl.obolibrary.org/obo/DRUGBANK_DB03247,none +8.6605489,UBERON:0002374,http://purl.obolibrary.org/obo/UBERON_0002374,metacarpal bone +8.6607988,PR:000001497,http://purl.obolibrary.org/obo/PR_000001497,opioid receptor protein +8.6610489,PR:Q27368,http://purl.obolibrary.org/obo/PR_Q27368,none +8.6615491,MONDO:0000368,http://purl.obolibrary.org/obo/MONDO_0000368,extrapulmonary tuberculosis +8.6617993,GO:0043241,http://purl.obolibrary.org/obo/GO_0043241,protein complex disassembly +8.6623,GO:0007617,http://purl.obolibrary.org/obo/GO_0007617,mating behavior +8.6628008,PR:000008814,http://purl.obolibrary.org/obo/PR_000008814,heat shock protein beta-1 +8.6638033,PR:000006606,http://purl.obolibrary.org/obo/PR_000006606,DNA (cytosine-5)-methyltransferase 1 +8.6640541,NCBITaxon:147550,http://purl.obolibrary.org/obo/NCBITaxon_147550,Sordariomycetes +8.6640541,PR:000010396,http://purl.obolibrary.org/obo/PR_000010396,E3 ubiquitin-protein ligase MIB1 +8.6648069,MONDO:0021375,http://purl.obolibrary.org/obo/MONDO_0021375,tumor of duodenum +8.6650579,GO:0006721,http://purl.obolibrary.org/obo/GO_0006721,terpenoid metabolic process +8.6655601,MONDO:0001530,http://purl.obolibrary.org/obo/MONDO_0001530,secondary hyperparathyroidism of renal origin +8.6660627,MONDO:0020129,http://purl.obolibrary.org/obo/MONDO_0020129,acquired motor neuron disease +8.666314,DRUGBANK:DB12418,http://purl.obolibrary.org/obo/DRUGBANK_DB12418,none +8.66732,GO:0004887,http://purl.obolibrary.org/obo/GO_0004887,none +8.66732,PR:000002325,http://purl.obolibrary.org/obo/PR_000002325,"dynein light chain 1, cytoplasmic" +8.6680752,DRUGBANK:DB00646,http://purl.obolibrary.org/obo/DRUGBANK_DB00646,none +8.6683271,MONDO:0016122,http://purl.obolibrary.org/obo/MONDO_0016122,periodic paralysis +8.668579,CHEBI:25435,http://purl.obolibrary.org/obo/CHEBI_25435,mutagen +8.6693352,DRUGBANK:DB11283,http://purl.obolibrary.org/obo/DRUGBANK_DB11283,none +8.6693352,MONDO:0008685,http://purl.obolibrary.org/obo/MONDO_0008685,Wolff-Parkinson-white syndrome +8.6705967,GO:0004340,http://purl.obolibrary.org/obo/GO_0004340,glucokinase activity +8.671607,PR:000001427,http://purl.obolibrary.org/obo/PR_000001427,LPAR1/S1PR1-like lysophospholipid receptor +8.671607,SO:0000105,http://purl.obolibrary.org/obo/SO_0000105,chromosome_arm +8.6721126,CHEBI:50902,http://purl.obolibrary.org/obo/CHEBI_50902,genotoxin +8.6726184,PR:000009799,http://purl.obolibrary.org/obo/PR_000009799,leukemia inhibitory factor +8.6728714,MONDO:0002407,http://purl.obolibrary.org/obo/MONDO_0002407,capillary hemangioma +8.6728714,SO:0000163,http://purl.obolibrary.org/obo/SO_0000163,five_prime_cis_splice_site +8.6733776,DRUGBANK:DB00227,http://purl.obolibrary.org/obo/DRUGBANK_DB00227,none +8.6733776,DRUGBANK:DB10505,http://purl.obolibrary.org/obo/DRUGBANK_DB10505,none +8.6733776,GO:0000910,http://purl.obolibrary.org/obo/GO_0000910,cytokinesis +8.6736308,MONDO:0002031,http://purl.obolibrary.org/obo/MONDO_0002031,cecal disease +8.6741374,UBERON:4200230,http://purl.obolibrary.org/obo/UBERON_4200230,surface of bone +8.6743908,PR:000008300,http://purl.obolibrary.org/obo/PR_000008300,glutathione S-transferase mu 1 +8.6746442,MONDO:0001165,http://purl.obolibrary.org/obo/MONDO_0001165,tongue disease +8.6751513,GO:0004067,http://purl.obolibrary.org/obo/GO_0004067,asparaginase activity +8.6751513,MONDO:0018048,http://purl.obolibrary.org/obo/MONDO_0018048,heparin-induced thrombocytopenia +8.675405,GO:0001935,http://purl.obolibrary.org/obo/GO_0001935,endothelial cell proliferation +8.675405,MONDO:0005747,http://purl.obolibrary.org/obo/MONDO_0005747,enterovirus infectious disease +8.675405,MONDO:0005914,http://purl.obolibrary.org/obo/MONDO_0005914,Picornaviridae infectious disease +8.675405,UBERON:0006585,http://purl.obolibrary.org/obo/UBERON_0006585,vestibular organ +8.6756587,PR:000013080,http://purl.obolibrary.org/obo/PR_000013080,"peptidyl-prolyl cis-trans isomerase F, mitochondrial" +8.6764202,DRUGBANK:DB00183,http://purl.obolibrary.org/obo/DRUGBANK_DB00183,none +8.6771823,UBERON:0012358,http://purl.obolibrary.org/obo/UBERON_0012358,manual digitopodium bone +8.6774365,PR:000007932,http://purl.obolibrary.org/obo/PR_000007932,GTP-binding protein GEM +8.6774365,PR:000015312,http://purl.obolibrary.org/obo/PR_000015312,synaptosomal-associated protein 25 +8.6776907,UBERON:0000975,http://purl.obolibrary.org/obo/UBERON_0000975,sternum +8.6792174,CL:0000670,http://purl.obolibrary.org/obo/CL_0000670,primordial germ cell +8.6792174,PR:000010875,http://purl.obolibrary.org/obo/PR_000010875,myoblast determination protein 1 +8.6794721,CL:0000850,http://purl.obolibrary.org/obo/CL_0000850,serotonergic neuron +8.6794721,MONDO:0004891,http://purl.obolibrary.org/obo/MONDO_0004891,hyperopia +8.6794721,MONDO:0005029,http://purl.obolibrary.org/obo/MONDO_0005029,essential thrombocythemia +8.6794721,NCBITaxon:64320,http://purl.obolibrary.org/obo/NCBITaxon_64320,Zika virus +8.6797268,DRUGBANK:DB11080,http://purl.obolibrary.org/obo/DRUGBANK_DB11080,none +8.6797268,DRUGBANK:DB12983,http://purl.obolibrary.org/obo/DRUGBANK_DB12983,none +8.6797268,UBERON:0000007,http://purl.obolibrary.org/obo/UBERON_0000007,pituitary gland +8.6804915,MONDO:0003277,http://purl.obolibrary.org/obo/MONDO_0003277,malignant ear neoplasm +8.6804915,PR:000044779,http://purl.obolibrary.org/obo/PR_000044779,contactin +8.6807465,GO:0048232,http://purl.obolibrary.org/obo/GO_0048232,male gamete generation +8.6807465,MONDO:0009891,http://purl.obolibrary.org/obo/MONDO_0009891,acquired polycythemia vera +8.6810015,GO:0044085,http://purl.obolibrary.org/obo/GO_0044085,cellular component biogenesis +8.6810015,UBERON:0003439,http://purl.obolibrary.org/obo/UBERON_0003439,nerve of trunk region +8.6812567,GO:0007283,http://purl.obolibrary.org/obo/GO_0007283,spermatogenesis +8.6812567,NCBITaxon:297696,http://purl.obolibrary.org/obo/NCBITaxon_297696,none +8.6812567,UBERON:0001631,http://purl.obolibrary.org/obo/UBERON_0001631,thoracic duct +8.6815119,UBERON:0001204,http://purl.obolibrary.org/obo/UBERON_0001204,mucosa of small intestine +8.6817671,DRUGBANK:DB14098,http://purl.obolibrary.org/obo/DRUGBANK_DB14098,none +8.6820225,DRUGBANK:DB02736,http://purl.obolibrary.org/obo/DRUGBANK_DB02736,none +8.6820225,MONDO:0006733,http://purl.obolibrary.org/obo/MONDO_0006733,dry eye syndrome +8.6822779,MONDO:0005111,http://purl.obolibrary.org/obo/MONDO_0005111,Epstein-Barr virus infection +8.6830444,MONDO:0014290,http://purl.obolibrary.org/obo/MONDO_0014290,neurodegeneration with brain iron accumulation 6 +8.6833001,HP:0011024,http://purl.obolibrary.org/obo/HP_0011024,Abnormality of the gastrointestinal tract +8.6835558,PR:000008476,http://purl.obolibrary.org/obo/PR_000008476,orexin +8.6840675,GO:0071674,http://purl.obolibrary.org/obo/GO_0071674,mononuclear cell migration +8.6840675,PR:000000128,http://purl.obolibrary.org/obo/PR_000000128,smad4 +8.6843234,GO:0004146,http://purl.obolibrary.org/obo/GO_0004146,dihydrofolate reductase activity +8.6843234,MONDO:0017741,http://purl.obolibrary.org/obo/MONDO_0017741,disorder of protein O-glycosylation +8.6848354,MONDO:0000995,http://purl.obolibrary.org/obo/MONDO_0000995,familial periodic paralysis +8.6850915,MONDO:0002508,http://purl.obolibrary.org/obo/MONDO_0002508,gingivitis +8.6850915,MONDO:0015619,http://purl.obolibrary.org/obo/MONDO_0015619,non-syndromic urogenital tract malformation +8.6850915,PR:000005312,http://purl.obolibrary.org/obo/PR_000005312,CCAAT/enhancer-binding protein zeta +8.6861166,MONDO:0018716,http://purl.obolibrary.org/obo/MONDO_0018716,partially involuting congenital hemangioma +8.6863731,GO:0030316,http://purl.obolibrary.org/obo/GO_0030316,osteoclast differentiation +8.6866296,DRUGBANK:DB06813,http://purl.obolibrary.org/obo/DRUGBANK_DB06813,none +8.6866296,UBERON:0002391,http://purl.obolibrary.org/obo/UBERON_0002391,lymph +8.6871428,PR:000006427,http://purl.obolibrary.org/obo/PR_000006427,desmin +8.6873995,GO:0003958,http://purl.obolibrary.org/obo/GO_0003958,NADPH-hemoprotein reductase activity +8.6873995,MONDO:0003117,http://purl.obolibrary.org/obo/MONDO_0003117,somatoform disorder +8.6876563,PR:000001408,http://purl.obolibrary.org/obo/PR_000001408,ADP-ribosyl cyclase/cyclic ADP-ribose hydrolase 1 +8.6879131,MONDO:0004691,http://purl.obolibrary.org/obo/MONDO_0004691,autosomal dominant polycystic kidney disease +8.68817,UBERON:0004451,http://purl.obolibrary.org/obo/UBERON_0004451,trunk or cervical vertebra +8.688684,UBERON:0002413,http://purl.obolibrary.org/obo/UBERON_0002413,cervical vertebra +8.6891983,DRUGBANK:DB01099,http://purl.obolibrary.org/obo/DRUGBANK_DB01099,none +8.6894555,DRUGBANK:DB00249,http://purl.obolibrary.org/obo/DRUGBANK_DB00249,none +8.6897128,GO:0004114,http://purl.obolibrary.org/obo/GO_0004114,"3',5'-cyclic-nucleotide phosphodiesterase activity" +8.6902276,NCBITaxon:222544,http://purl.obolibrary.org/obo/NCBITaxon_222544,Sordariomycetidae +8.6917736,HP:0011138,http://purl.obolibrary.org/obo/HP_0011138,Abnormality of skin adnexa morphology +8.6917736,PR:000004075,http://purl.obolibrary.org/obo/PR_000004075,annexin A2 +8.6922895,MONDO:0002369,http://purl.obolibrary.org/obo/MONDO_0002369,cystadenoma +8.6922895,NCBITaxon:5140,http://purl.obolibrary.org/obo/NCBITaxon_5140,none +8.6922895,UBERON:0002512,http://purl.obolibrary.org/obo/UBERON_0002512,corpus luteum +8.6925475,NCBITaxon:5139,http://purl.obolibrary.org/obo/NCBITaxon_5139,none +8.6930638,PR:000012515,http://purl.obolibrary.org/obo/PR_000012515,3-phosphoinositide-dependent protein kinase 1 +8.6930638,UBERON:0001113,http://purl.obolibrary.org/obo/UBERON_0001113,lobe of liver +8.6935803,GO:0097190,http://purl.obolibrary.org/obo/GO_0097190,apoptotic signaling pathway +8.6935803,MONDO:0015454,http://purl.obolibrary.org/obo/MONDO_0015454,multiple carboxylase deficiency +8.6938387,DRUGBANK:DB11057,http://purl.obolibrary.org/obo/DRUGBANK_DB11057,none +8.6938387,NCBITaxon:5782,http://purl.obolibrary.org/obo/NCBITaxon_5782,none +8.6940971,DRUGBANK:DB13148,http://purl.obolibrary.org/obo/DRUGBANK_DB13148,none +8.6946142,PR:P18289,http://purl.obolibrary.org/obo/PR_P18289,none +8.6948728,DRUGBANK:DB13134,http://purl.obolibrary.org/obo/DRUGBANK_DB13134,none +8.6951315,MONDO:0000477,http://purl.obolibrary.org/obo/MONDO_0000477,focal dystonia +8.6951315,NCBITaxon:5148,http://purl.obolibrary.org/obo/NCBITaxon_5148,none +8.696426,DRUGBANK:DB00677,http://purl.obolibrary.org/obo/DRUGBANK_DB00677,none +8.6966851,DRUGBANK:DB00925,http://purl.obolibrary.org/obo/DRUGBANK_DB00925,none +8.6969443,PR:000001841,http://purl.obolibrary.org/obo/PR_000001841,T-cell-specific surface glycoprotein CD28 +8.6969443,PR:000050196,http://purl.obolibrary.org/obo/PR_000050196,none +8.6972035,PR:000012680,http://purl.obolibrary.org/obo/PR_000012680,elafin +8.6974628,DRUGBANK:DB00175,http://purl.obolibrary.org/obo/DRUGBANK_DB00175,none +8.6977222,CHEBI:35488,http://purl.obolibrary.org/obo/CHEBI_35488,central nervous system depressant +8.6979816,GO:0009581,http://purl.obolibrary.org/obo/GO_0009581,detection of external stimulus +8.6979816,GO:0009582,http://purl.obolibrary.org/obo/GO_0009582,detection of abiotic stimulus +8.6985007,GO:1901570,http://purl.obolibrary.org/obo/GO_1901570,fatty acid derivative biosynthetic process +8.6987603,DRUGBANK:DB15880,http://purl.obolibrary.org/obo/DRUGBANK_DB15880,none +8.6987603,MONDO:0006663,http://purl.obolibrary.org/obo/MONDO_0006663,perinatal asphyxia +8.69902,GO:0044802,http://purl.obolibrary.org/obo/GO_0044802,none +8.6997996,DRUGBANK:DB11448,http://purl.obolibrary.org/obo/DRUGBANK_DB11448,none +8.7003196,GO:0051325,http://purl.obolibrary.org/obo/GO_0051325,interphase +8.7005797,DRUGBANK:DB07776,http://purl.obolibrary.org/obo/DRUGBANK_DB07776,none +8.7008399,MONDO:0004180,http://purl.obolibrary.org/obo/MONDO_0004180,benign urinary system neoplasm +8.7008399,MONDO:0015188,http://purl.obolibrary.org/obo/MONDO_0015188,metabolic disease with intestinal involvement +8.7008399,UBERON:0015042,http://purl.obolibrary.org/obo/UBERON_0015042,manual digit metacarpus endochondral element +8.7011001,DRUGBANK:DB00625,http://purl.obolibrary.org/obo/DRUGBANK_DB00625,none +8.7021418,DRUGBANK:DB03671,http://purl.obolibrary.org/obo/DRUGBANK_DB03671,none +8.7024024,DRUGBANK:DB14726,http://purl.obolibrary.org/obo/DRUGBANK_DB14726,none +8.7024024,MONDO:0020698,http://purl.obolibrary.org/obo/MONDO_0020698,inborn error of biotin metabolism +8.702663,GO:0019201,http://purl.obolibrary.org/obo/GO_0019201,none +8.7029238,NCBITaxon:554915,http://purl.obolibrary.org/obo/NCBITaxon_554915,Amoebozoa +8.7031845,GO:0004875,http://purl.obolibrary.org/obo/GO_0004875,complement receptor activity +8.7034454,MONDO:0000461,http://purl.obolibrary.org/obo/MONDO_0000461,nutritional biotin deficiency +8.7034454,PR:000002979,http://purl.obolibrary.org/obo/PR_000002979,lymphocyte antigen 6A-2/6E-1 +8.7037063,GO:0050145,http://purl.obolibrary.org/obo/GO_0050145,nucleoside monophosphate kinase activity +8.7037063,MONDO:0020699,http://purl.obolibrary.org/obo/MONDO_0020699,biotin metabolic disease +8.7042284,PR:000003505,http://purl.obolibrary.org/obo/PR_000003505,leukocyte granule-associated proteinase +8.7044895,UBERON:0006862,http://purl.obolibrary.org/obo/UBERON_0006862,diaphysis of femur +8.7052733,UBERON:0000054,http://purl.obolibrary.org/obo/UBERON_0000054,macula +8.7055347,MONDO:0003220,http://purl.obolibrary.org/obo/MONDO_0003220,gallbladder carcinoma +8.7063193,MONDO:0018787,http://purl.obolibrary.org/obo/MONDO_0018787,genetic cerebral small vessel disease +8.706581,DRUGBANK:DB09422,http://purl.obolibrary.org/obo/DRUGBANK_DB09422,none +8.7068428,UBERON:0002201,http://purl.obolibrary.org/obo/UBERON_0002201,vasculature of trunk +8.7071046,DRUGBANK:DB01718,http://purl.obolibrary.org/obo/DRUGBANK_DB01718,none +8.7071046,DRUGBANK:DB04115,http://purl.obolibrary.org/obo/DRUGBANK_DB04115,none +8.7071046,HP:0001324,http://purl.obolibrary.org/obo/HP_0001324,Muscle weakness +8.7071046,PR:000016263,http://purl.obolibrary.org/obo/PR_000016263,transcription factor AP-2-alpha +8.7071046,UBERON:0001365,http://purl.obolibrary.org/obo/UBERON_0001365,sacro-iliac joint +8.7073665,DRUGBANK:DB12809,http://purl.obolibrary.org/obo/DRUGBANK_DB12809,none +8.7078904,PR:000013896,http://purl.obolibrary.org/obo/PR_000013896,resistin +8.7078904,UBERON:0000159,http://purl.obolibrary.org/obo/UBERON_0000159,anal canal +8.7081525,GO:0010631,http://purl.obolibrary.org/obo/GO_0010631,epithelial cell migration +8.7081525,PR:000009725,http://purl.obolibrary.org/obo/PR_000009725,neutrophil gelatinase-associated lipocalin +8.7084147,MONDO:0001721,http://purl.obolibrary.org/obo/MONDO_0001721,urethral intrinsic sphincter deficiency +8.7086769,DRUGBANK:DB01164,http://purl.obolibrary.org/obo/DRUGBANK_DB01164,none +8.7086769,PR:000010879,http://purl.obolibrary.org/obo/PR_000010879,myomesin-2 +8.7092016,MONDO:0018493,http://purl.obolibrary.org/obo/MONDO_0018493,malignant hyperthermia of anesthesia +8.7092016,NCBITaxon:5141,http://purl.obolibrary.org/obo/NCBITaxon_5141,none +8.709464,MONDO:0006644,http://purl.obolibrary.org/obo/MONDO_0006644,alcoholic liver cirrhosis +8.709464,NCBITaxon:2605435,http://purl.obolibrary.org/obo/NCBITaxon_2605435,Evosea +8.709464,PR:000006069,http://purl.obolibrary.org/obo/PR_000006069,C-X-C motif chemokine 2 +8.7105144,NCBITaxon:142796,http://purl.obolibrary.org/obo/NCBITaxon_142796,none +8.71104,DRUGBANK:DB03587,http://purl.obolibrary.org/obo/DRUGBANK_DB03587,none +8.71104,MONDO:0010664,http://purl.obolibrary.org/obo/MONDO_0010664,syndromic X-linked intellectual disability Snyder type +8.711303,GO:0017044,http://purl.obolibrary.org/obo/GO_0017044,melanocyte-stimulating hormone activity +8.7115659,DRUGBANK:DB00831,http://purl.obolibrary.org/obo/DRUGBANK_DB00831,none +8.711829,PR:000008812,http://purl.obolibrary.org/obo/PR_000008812,heat shock cognate 71 kDa protein +8.7120921,DRUGBANK:DB01381,http://purl.obolibrary.org/obo/DRUGBANK_DB01381,none +8.7120921,PR:000003222,http://purl.obolibrary.org/obo/PR_000003222,fragile X-related protein +8.7123553,DRUGBANK:DB10515,http://purl.obolibrary.org/obo/DRUGBANK_DB10515,none +8.7123553,NCBITaxon:2058185,http://purl.obolibrary.org/obo/NCBITaxon_2058185,none +8.7123553,NCBITaxon:2058949,http://purl.obolibrary.org/obo/NCBITaxon_2058949,none +8.7123553,NCBITaxon:33083,http://purl.obolibrary.org/obo/NCBITaxon_33083,none +8.7123553,PR:000008175,http://purl.obolibrary.org/obo/PR_000008175,glucose-6-phosphate isomerase +8.7128819,GO:0014069,http://purl.obolibrary.org/obo/GO_0014069,postsynaptic density +8.7131453,GO:0004347,http://purl.obolibrary.org/obo/GO_0004347,glucose-6-phosphate isomerase activity +8.7131453,NCBITaxon:12234,http://purl.obolibrary.org/obo/NCBITaxon_12234,none +8.7131453,PR:000023498,http://purl.obolibrary.org/obo/PR_000023498,phosphoenolpyruvate carboxykinase (ATP) +8.7134088,MONDO:0006895,http://purl.obolibrary.org/obo/MONDO_0006895,penile neoplasm +8.7139359,NCBITaxon:70861,http://purl.obolibrary.org/obo/NCBITaxon_70861,none +8.7139359,NCBITaxon:70862,http://purl.obolibrary.org/obo/NCBITaxon_70862,none +8.7141996,GO:0006401,http://purl.obolibrary.org/obo/GO_0006401,RNA catabolic process +8.7141996,GO:1902495,http://purl.obolibrary.org/obo/GO_1902495,transmembrane transporter complex +8.7144634,DRUGBANK:DB15015,http://purl.obolibrary.org/obo/DRUGBANK_DB15015,none +8.7144634,MONDO:0007661,http://purl.obolibrary.org/obo/MONDO_0007661,Tourette syndrome +8.7147272,DRUGBANK:DB00393,http://purl.obolibrary.org/obo/DRUGBANK_DB00393,none +8.7149911,GO:0008800,http://purl.obolibrary.org/obo/GO_0008800,beta-lactamase activity +8.7149911,PR:P22549,http://purl.obolibrary.org/obo/PR_P22549,none +8.715255,PR:000005309,http://purl.obolibrary.org/obo/PR_000005309,CCAAT/enhancer-binding protein delta +8.715255,SO:0000353,http://purl.obolibrary.org/obo/SO_0000353,sequence_assembly +8.7163115,MONDO:0001170,http://purl.obolibrary.org/obo/MONDO_0001170,hemiplegia +8.7165758,SO:0001249,http://purl.obolibrary.org/obo/SO_0001249,fragment_assembly +8.7176338,CHEBI:60605,http://purl.obolibrary.org/obo/CHEBI_60605,opioid receptor antagonist +8.7178984,PR:000003413,http://purl.obolibrary.org/obo/PR_000003413,HSPH protein +8.7181631,PR:000013803,http://purl.obolibrary.org/obo/PR_000013803,RNA-binding protein 45 +8.7181631,UBERON:0015007,http://purl.obolibrary.org/obo/UBERON_0015007,cervical vertebra endochondral element +8.7186928,PR:000008840,http://purl.obolibrary.org/obo/PR_000008840,huntingtin +8.7189577,DRUGBANK:DB00915,http://purl.obolibrary.org/obo/DRUGBANK_DB00915,none +8.719753,DRUGBANK:DB04038,http://purl.obolibrary.org/obo/DRUGBANK_DB04038,none +8.7210798,PR:000010337,http://purl.obolibrary.org/obo/PR_000010337,methionine aminopeptidase 2 +8.721611,GO:0120251,http://purl.obolibrary.org/obo/GO_0120251,hydrocarbon biosynthetic process +8.721611,MONDO:0015933,http://purl.obolibrary.org/obo/MONDO_0015933,non-syndromic urogenital tract malformation of male +8.721611,PR:000013448,http://purl.obolibrary.org/obo/PR_000013448,tyrosine-protein phosphatase non-receptor type 1 +8.7221425,CL:0000898,http://purl.obolibrary.org/obo/CL_0000898,naive T cell +8.7221425,DRUGBANK:DB00285,http://purl.obolibrary.org/obo/DRUGBANK_DB00285,none +8.7221425,MONDO:0018088,http://purl.obolibrary.org/obo/MONDO_0018088,familial Mediterranean fever +8.7224083,DRUGBANK:DB01364,http://purl.obolibrary.org/obo/DRUGBANK_DB01364,none +8.7237386,DRUGBANK:DB00480,http://purl.obolibrary.org/obo/DRUGBANK_DB00480,none +8.7237386,UBERON:0018552,http://purl.obolibrary.org/obo/UBERON_0018552,lateral incisor tooth +8.7242713,PR:000002123,http://purl.obolibrary.org/obo/PR_000002123,C-C motif chemokine 3 +8.7245377,PR:000023154,http://purl.obolibrary.org/obo/PR_000023154,none +8.7245377,UBERON:0011145,http://purl.obolibrary.org/obo/UBERON_0011145,adductor muscle +8.7248042,CL:0000787,http://purl.obolibrary.org/obo/CL_0000787,memory B cell +8.7250707,CL:1001607,http://purl.obolibrary.org/obo/CL_1001607,articular chondrocyte +8.7253374,DRUGBANK:DB15216,http://purl.obolibrary.org/obo/DRUGBANK_DB15216,none +8.7253374,UBERON:0004492,http://purl.obolibrary.org/obo/UBERON_0004492,cardiac muscle tissue of cardiac septum +8.7256041,UBERON:0002352,http://purl.obolibrary.org/obo/UBERON_0002352,atrioventricular node +8.7256041,UBERON:0004491,http://purl.obolibrary.org/obo/UBERON_0004491,cardiac muscle tissue of interatrial septum +8.7258708,MONDO:0005112,http://purl.obolibrary.org/obo/MONDO_0005112,malignant pleural mesothelioma +8.7261377,PR:000016471,http://purl.obolibrary.org/obo/PR_000016471,tenascin +8.7266716,UBERON:0002066,http://purl.obolibrary.org/obo/UBERON_0002066,umbilical vein +8.7272058,GO:0005654,http://purl.obolibrary.org/obo/GO_0005654,nucleoplasm +8.727473,DRUGBANK:DB07995,http://purl.obolibrary.org/obo/DRUGBANK_DB07995,none +8.7277402,CL:0000765,http://purl.obolibrary.org/obo/CL_0000765,erythroblast +8.7277402,MONDO:0005048,http://purl.obolibrary.org/obo/MONDO_0005048,pancreatic insulin-producing neuroendocrine tumor +8.72881,DRUGBANK:DB08855,http://purl.obolibrary.org/obo/DRUGBANK_DB08855,none +8.72881,PR:000001203,http://purl.obolibrary.org/obo/PR_000001203,C-C chemokine receptor type 7 +8.7290777,PR:000001661,http://purl.obolibrary.org/obo/PR_000001661,proteinase-activated receptor 1 +8.7293454,MONDO:0002572,http://purl.obolibrary.org/obo/MONDO_0002572,aspiration pneumonitis +8.7293454,UBERON:0001435,http://purl.obolibrary.org/obo/UBERON_0001435,carpal bone +8.7296131,GO:0004903,http://purl.obolibrary.org/obo/GO_0004903,growth hormone receptor activity +8.7296131,GO:0015698,http://purl.obolibrary.org/obo/GO_0015698,inorganic anion transport +8.7296131,PR:000007970,http://purl.obolibrary.org/obo/PR_000007970,growth hormone receptor +8.7296131,UBERON:0001597,http://purl.obolibrary.org/obo/UBERON_0001597,masseter muscle +8.729881,DRUGBANK:DB01864,http://purl.obolibrary.org/obo/DRUGBANK_DB01864,none +8.729881,DRUGBANK:DB12348,http://purl.obolibrary.org/obo/DRUGBANK_DB12348,none +8.729881,DRUGBANK:DB16164,http://purl.obolibrary.org/obo/DRUGBANK_DB16164,none +8.729881,MONDO:0023206,http://purl.obolibrary.org/obo/MONDO_0023206,functional pancreatic neuroendocrine tumor +8.7309531,DRUGBANK:DB09086,http://purl.obolibrary.org/obo/DRUGBANK_DB09086,none +8.7309531,DRUGBANK:DB12029,http://purl.obolibrary.org/obo/DRUGBANK_DB12029,none +8.7312213,MONDO:0018796,http://purl.obolibrary.org/obo/MONDO_0018796,isolated constitutional thrombocytopenia +8.7314896,MONDO:0005738,http://purl.obolibrary.org/obo/MONDO_0005738,echinococcosis +8.732832,CHEBI:33822,http://purl.obolibrary.org/obo/CHEBI_33822,organic hydroxy compound +8.732832,PR:000010229,http://purl.obolibrary.org/obo/PR_000010229,membrane-bound transcription factor site-1 protease +8.7347145,DRUGBANK:DB00339,http://purl.obolibrary.org/obo/DRUGBANK_DB00339,none +8.7347145,DRUGBANK:DB00888,http://purl.obolibrary.org/obo/DRUGBANK_DB00888,none +8.7347145,PR:000013035,http://purl.obolibrary.org/obo/PR_000013035,"POU domain, class 2, transcription factor 1" +8.7349837,PR:000010164,http://purl.obolibrary.org/obo/PR_000010164,target of rapamycin complex 2 subunit MAPKAP1 +8.7357918,DRUGBANK:DB15995,http://purl.obolibrary.org/obo/DRUGBANK_DB15995,none +8.7360613,GO:0071869,http://purl.obolibrary.org/obo/GO_0071869,response to catecholamine +8.7360613,PR:Q9FV71,http://purl.obolibrary.org/obo/PR_Q9FV71,none +8.7363309,MONDO:0005345,http://purl.obolibrary.org/obo/MONDO_0005345,hypospadias +8.7363309,PR:P00546,http://purl.obolibrary.org/obo/PR_P00546,none +8.7366005,DRUGBANK:DB04786,http://purl.obolibrary.org/obo/DRUGBANK_DB04786,none +8.7366005,GO:0000096,http://purl.obolibrary.org/obo/GO_0000096,sulfur amino acid metabolic process +8.7366005,PR:000006102,http://purl.obolibrary.org/obo/PR_000006102,cytochrome P450 1A2 +8.7368703,MONDO:0017966,http://purl.obolibrary.org/obo/MONDO_0017966,"46,XY disorder of gonadal development" +8.7376799,MONDO:0000408,http://purl.obolibrary.org/obo/MONDO_0000408,fetal alcohol spectrum disorder +8.7379499,PR:Q00342,http://purl.obolibrary.org/obo/PR_Q00342,none +8.73822,DRUGBANK:DB06534,http://purl.obolibrary.org/obo/DRUGBANK_DB06534,none +8.73822,MONDO:0002752,http://purl.obolibrary.org/obo/MONDO_0002752,ovarian adenocarcinoma +8.73822,PR:P43063,http://purl.obolibrary.org/obo/PR_P43063,none +8.7390307,GO:0008654,http://purl.obolibrary.org/obo/GO_0008654,phospholipid biosynthetic process +8.7390307,PR:Q92008,http://purl.obolibrary.org/obo/PR_Q92008,none +8.7395715,DRUGBANK:DB14954,http://purl.obolibrary.org/obo/DRUGBANK_DB14954,none +8.7403833,PR:000005310,http://purl.obolibrary.org/obo/PR_000005310,CCAAT/enhancer-binding protein epsilon +8.7409249,PR:000031781,http://purl.obolibrary.org/obo/PR_000031781,FXYD domain-containing ion transport regulator 6 +8.7411958,PR:000003020,http://purl.obolibrary.org/obo/PR_000003020,merlin +8.7414667,GO:0004069,http://purl.obolibrary.org/obo/GO_0004069,L-aspartate:2-oxoglutarate aminotransferase activity +8.7414667,MONDO:0024618,http://purl.obolibrary.org/obo/MONDO_0024618,poliovirus infection +8.7425513,MONDO:0020144,http://purl.obolibrary.org/obo/MONDO_0020144,cerebrovascular dementia +8.7425513,PR:000006100,http://purl.obolibrary.org/obo/PR_000006100,aromatase +8.7430941,DRUGBANK:DB00262,http://purl.obolibrary.org/obo/DRUGBANK_DB00262,none +8.7439087,GO:0016247,http://purl.obolibrary.org/obo/GO_0016247,channel regulator activity +8.7447241,GO:0007423,http://purl.obolibrary.org/obo/GO_0007423,sensory organ development +8.744996,MONDO:0016797,http://purl.obolibrary.org/obo/MONDO_0016797,multiple mitochondrial DNA deletion syndrome +8.745268,UBERON:0003715,http://purl.obolibrary.org/obo/UBERON_0003715,splanchnic nerve +8.7455401,PR:000003172,http://purl.obolibrary.org/obo/PR_000003172,CCN family member 2 +8.7458122,MONDO:0005522,http://purl.obolibrary.org/obo/MONDO_0005522,small intestine carcinoma +8.7458122,MONDO:0017373,http://purl.obolibrary.org/obo/MONDO_0017373,poliomyelitis +8.7458122,UBERON:0001490,http://purl.obolibrary.org/obo/UBERON_0001490,elbow joint +8.7460844,UBERON:0009980,http://purl.obolibrary.org/obo/UBERON_0009980,condyle of femur +8.7466291,GO:0008940,http://purl.obolibrary.org/obo/GO_0008940,nitrate reductase activity +8.7469015,DRUGBANK:DB14276,http://purl.obolibrary.org/obo/DRUGBANK_DB14276,none +8.7469015,MONDO:0044996,http://purl.obolibrary.org/obo/MONDO_0044996,cerebral cortex disease +8.7469015,UBERON:0001706,http://purl.obolibrary.org/obo/UBERON_0001706,nasal septum +8.747174,UBERON:0004700,http://purl.obolibrary.org/obo/UBERON_0004700,arterial system endothelium +8.7477193,NCBITaxon:11618,http://purl.obolibrary.org/obo/NCBITaxon_11618,none +8.747992,CL:0000381,http://purl.obolibrary.org/obo/CL_0000381,neurosecretory neuron +8.747992,MONDO:0017651,http://purl.obolibrary.org/obo/MONDO_0017651,primary myoclonus +8.747992,MONDO:0020311,http://purl.obolibrary.org/obo/MONDO_0020311,chronic myelomonocytic leukemia +8.7485377,GO:0070069,http://purl.obolibrary.org/obo/GO_0070069,cytochrome complex +8.7488107,PR:000015249,http://purl.obolibrary.org/obo/PR_000015249,SAFB-like transcription modulator +8.7490837,GO:0051252,http://purl.obolibrary.org/obo/GO_0051252,regulation of RNA metabolic process +8.7490837,UBERON:0016550,http://purl.obolibrary.org/obo/UBERON_0016550,spinal cord column +8.7493569,MONDO:0002013,http://purl.obolibrary.org/obo/MONDO_0002013,lymphangioma +8.7493569,PR:000004020,http://purl.obolibrary.org/obo/PR_000004020,angiogenin +8.7493569,UBERON:0001577,http://purl.obolibrary.org/obo/UBERON_0001577,facial muscle +8.7501766,DRUGBANK:DB01238,http://purl.obolibrary.org/obo/DRUGBANK_DB01238,none +8.7501766,GO:0016363,http://purl.obolibrary.org/obo/GO_0016363,nuclear matrix +8.7504501,DRUGBANK:DB02061,http://purl.obolibrary.org/obo/DRUGBANK_DB02061,none +8.7507235,GO:0006805,http://purl.obolibrary.org/obo/GO_0006805,xenobiotic metabolic process +8.7509971,GO:0051319,http://purl.obolibrary.org/obo/GO_0051319,G2 phase +8.7509971,MONDO:0019754,http://purl.obolibrary.org/obo/MONDO_0019754,multicentric Castleman disease +8.7512707,DRUGBANK:DB03336,http://purl.obolibrary.org/obo/DRUGBANK_DB03336,none +8.7512707,PR:000002106,http://purl.obolibrary.org/obo/PR_000002106,tumor necrosis factor ligand superfamily member 10 +8.7520921,CL:1001433,http://purl.obolibrary.org/obo/CL_1001433,epithelial cell of exocrine pancreas +8.752366,MONDO:0005488,http://purl.obolibrary.org/obo/MONDO_0005488,adolescent idiopathic scoliosis +8.75264,GO:0140101,http://purl.obolibrary.org/obo/GO_0140101,"catalytic activity, acting on a tRNA" +8.7534625,GO:0046456,http://purl.obolibrary.org/obo/GO_0046456,icosanoid biosynthetic process +8.7540112,MONDO:0016798,http://purl.obolibrary.org/obo/MONDO_0016798,ataxia neuropathy spectrum +8.7540112,UBERON:0000085,http://purl.obolibrary.org/obo/UBERON_0000085,morula +8.7545602,GO:0006816,http://purl.obolibrary.org/obo/GO_0006816,calcium ion transport +8.7548348,DRUGBANK:DB12822,http://purl.obolibrary.org/obo/DRUGBANK_DB12822,none +8.7551095,MONDO:0024677,http://purl.obolibrary.org/obo/MONDO_0024677,pancreatic insulinoma +8.7556591,NCBITaxon:186938,http://purl.obolibrary.org/obo/NCBITaxon_186938,Respirovirus +8.7570344,DRUGBANK:DB02515,http://purl.obolibrary.org/obo/DRUGBANK_DB02515,none +8.7570344,UBERON:0004347,http://purl.obolibrary.org/obo/UBERON_0004347,limb bud +8.7573097,MONDO:0003641,http://purl.obolibrary.org/obo/MONDO_0003641,central nervous system hematopoietic neoplasm +8.7575851,DRUGBANK:DB14516,http://purl.obolibrary.org/obo/DRUGBANK_DB14516,none +8.7581361,NCBITaxon:11617,http://purl.obolibrary.org/obo/NCBITaxon_11617,Arenaviridae +8.7581361,UBERON:0002018,http://purl.obolibrary.org/obo/UBERON_0002018,synovial membrane of synovial joint +8.7581361,UBERON:0011233,http://purl.obolibrary.org/obo/UBERON_0011233,synovial membrane of synovial tendon sheath +8.7584117,CHEBI:51060,http://purl.obolibrary.org/obo/CHEBI_51060,hormone agonist +8.7586873,DRUGBANK:DB00550,http://purl.obolibrary.org/obo/DRUGBANK_DB00550,none +8.7586873,MONDO:0011835,http://purl.obolibrary.org/obo/MONDO_0011835,"sensory ataxic neuropathy, dysarthria, and ophthalmoparesis" +8.7586873,PR:000003460,http://purl.obolibrary.org/obo/PR_000003460,V(D)J recombination-activating protein 2 +8.7589631,NCBITaxon:44689,http://purl.obolibrary.org/obo/NCBITaxon_44689,none +8.7595148,GO:0008426,http://purl.obolibrary.org/obo/GO_0008426,protein kinase C inhibitor activity +8.7597908,DRUGBANK:DB01270,http://purl.obolibrary.org/obo/DRUGBANK_DB01270,none +8.7600668,GO:0060429,http://purl.obolibrary.org/obo/GO_0060429,epithelium development +8.7600668,MONDO:0016809,http://purl.obolibrary.org/obo/MONDO_0016809,spinocerebellar ataxia with epilepsy +8.7606192,SO:0001505,http://purl.obolibrary.org/obo/SO_0001505,reference_genome +8.7611718,GO:0006814,http://purl.obolibrary.org/obo/GO_0006814,sodium ion transport +8.7611718,GO:0035822,http://purl.obolibrary.org/obo/GO_0035822,gene conversion +8.7611718,PR:000015643,http://purl.obolibrary.org/obo/PR_000015643,sex-determining region Y protein +8.7620013,MONDO:0006547,http://purl.obolibrary.org/obo/MONDO_0006547,exanthem +8.762278,NCBITaxon:291484,http://purl.obolibrary.org/obo/NCBITaxon_291484,Hepeviridae +8.7625547,GO:0008380,http://purl.obolibrary.org/obo/GO_0008380,RNA splicing +8.7625547,NCBITaxon:7041,http://purl.obolibrary.org/obo/NCBITaxon_7041,none +8.7628316,PR:O64511,http://purl.obolibrary.org/obo/PR_O64511,none +8.7631084,MONDO:0003134,http://purl.obolibrary.org/obo/MONDO_0003134,proliferative glomerulonephritis +8.7636625,PR:000024854,http://purl.obolibrary.org/obo/PR_000024854,none +8.7642168,NCBITaxon:12461,http://purl.obolibrary.org/obo/NCBITaxon_12461,none +8.7644941,GO:1990266,http://purl.obolibrary.org/obo/GO_1990266,neutrophil migration +8.7650489,GO:0019369,http://purl.obolibrary.org/obo/GO_0019369,arachidonic acid metabolic process +8.7650489,GO:0033365,http://purl.obolibrary.org/obo/GO_0033365,protein localization to organelle +8.7653264,DRUGBANK:DB12039,http://purl.obolibrary.org/obo/DRUGBANK_DB12039,none +8.7656039,PR:000002207,http://purl.obolibrary.org/obo/PR_000002207,occludin +8.7658816,SO:0001861,http://purl.obolibrary.org/obo/SO_0001861,sterol_regulatory_element +8.7661593,GO:0004312,http://purl.obolibrary.org/obo/GO_0004312,fatty acid synthase activity +8.7661593,GO:0004612,http://purl.obolibrary.org/obo/GO_0004612,phosphoenolpyruvate carboxykinase (ATP) activity +8.7661593,GO:0008378,http://purl.obolibrary.org/obo/GO_0008378,galactosyltransferase activity +8.7661593,GO:0019935,http://purl.obolibrary.org/obo/GO_0019935,cyclic-nucleotide-mediated signaling +8.7664372,NCBITaxon:2732507,http://purl.obolibrary.org/obo/NCBITaxon_2732507,Stelpaviricetes +8.766993,DRUGBANK:DB01862,http://purl.obolibrary.org/obo/DRUGBANK_DB01862,none +8.766993,GO:0009791,http://purl.obolibrary.org/obo/GO_0009791,post-embryonic development +8.7672711,MONDO:0019018,http://purl.obolibrary.org/obo/MONDO_0019018,Tako-tsubo cardiomyopathy +8.7672711,NCBITaxon:41084,http://purl.obolibrary.org/obo/NCBITaxon_41084,none +8.7672711,PR:000005499,http://purl.obolibrary.org/obo/PR_000005499,cold-inducible RNA-binding protein +8.7675492,UBERON:0001988,http://purl.obolibrary.org/obo/UBERON_0001988,feces +8.7678274,DRUGBANK:DB10694,http://purl.obolibrary.org/obo/DRUGBANK_DB10694,none +8.7678274,HP:0004297,http://purl.obolibrary.org/obo/HP_0004297,Abnormality of the biliary system +8.7681057,MONDO:0016755,http://purl.obolibrary.org/obo/MONDO_0016755,neurofibroma +8.768941,PR:000004184,http://purl.obolibrary.org/obo/PR_000004184,aquaporin-4 +8.7694982,GO:0034308,http://purl.obolibrary.org/obo/GO_0034308,primary alcohol metabolic process +8.769777,DRUGBANK:DB11960,http://purl.obolibrary.org/obo/DRUGBANK_DB11960,none +8.769777,PR:000002202,http://purl.obolibrary.org/obo/PR_000002202,gelsolin +8.7714511,DRUGBANK:DB01223,http://purl.obolibrary.org/obo/DRUGBANK_DB01223,none +8.7714511,GO:0004563,http://purl.obolibrary.org/obo/GO_0004563,beta-N-acetylhexosaminidase activity +8.7717304,DRUGBANK:DB14552,http://purl.obolibrary.org/obo/DRUGBANK_DB14552,none +8.7717304,GO:0035640,http://purl.obolibrary.org/obo/GO_0035640,exploration behavior +8.7717304,MONDO:0019707,http://purl.obolibrary.org/obo/MONDO_0019707,primary osteolysis +8.7720098,SO:0005855,http://purl.obolibrary.org/obo/SO_0005855,gene_group +8.7722892,SO:0001001,http://purl.obolibrary.org/obo/SO_0001001,cytosolic_23S_rRNA +8.7725687,PR:000023552,http://purl.obolibrary.org/obo/PR_000023552,none +8.7725687,SO:0000243,http://purl.obolibrary.org/obo/SO_0000243,internal_ribosome_entry_site +8.7725687,UBERON:0001070,http://purl.obolibrary.org/obo/UBERON_0001070,external carotid artery +8.7728483,PR:000026124,http://purl.obolibrary.org/obo/PR_000026124,PLP-dependent alpha-oxoamine synthase +8.7734078,MONDO:0021368,http://purl.obolibrary.org/obo/MONDO_0021368,neoplasm of major salivary gland +8.7734078,PR:000013344,http://purl.obolibrary.org/obo/PR_000013344,presenilin-1 +8.7739675,UBERON:0003450,http://purl.obolibrary.org/obo/UBERON_0003450,upper jaw incisor +8.7742475,DRUGBANK:DB10982,http://purl.obolibrary.org/obo/DRUGBANK_DB10982,none +8.7742475,GO:0035825,http://purl.obolibrary.org/obo/GO_0035825,homologous recombination +8.7748077,DRUGBANK:DB00186,http://purl.obolibrary.org/obo/DRUGBANK_DB00186,none +8.7748077,MONDO:0002341,http://purl.obolibrary.org/obo/MONDO_0002341,granulomatous angiitis +8.775088,HP:0001595,http://purl.obolibrary.org/obo/HP_0001595,Abnormal hair morphology +8.7753683,DRUGBANK:DB01611,http://purl.obolibrary.org/obo/DRUGBANK_DB01611,none +8.7762097,UBERON:2001626,http://purl.obolibrary.org/obo/UBERON_2001626,premaxillary tooth +8.7764903,CHEBI:70982,http://purl.obolibrary.org/obo/CHEBI_70982,reactive oxygen species generator +8.7764903,DRUGBANK:DB00406,http://purl.obolibrary.org/obo/DRUGBANK_DB00406,none +8.776771,DRUGBANK:DB01009,http://purl.obolibrary.org/obo/DRUGBANK_DB01009,none +8.776771,UBERON:0015049,http://purl.obolibrary.org/obo/UBERON_0015049,carpus endochondral element +8.7770518,GO:0004033,http://purl.obolibrary.org/obo/GO_0004033,aldo-keto reductase (NADP) activity +8.7770518,MONDO:0005744,http://purl.obolibrary.org/obo/MONDO_0005744,yolk sac tumor +8.7776136,UBERON:0004797,http://purl.obolibrary.org/obo/UBERON_0004797,blood vessel layer +8.7778946,MONDO:0005596,http://purl.obolibrary.org/obo/MONDO_0005596,cystadenocarcinoma +8.7778946,NCBITaxon:186677,http://purl.obolibrary.org/obo/NCBITaxon_186677,none +8.7784569,MONDO:0002513,http://purl.obolibrary.org/obo/MONDO_0002513,kidney benign neoplasm +8.7787381,MONDO:0008538,http://purl.obolibrary.org/obo/MONDO_0008538,temporal arteritis +8.7790195,GO:0030252,http://purl.obolibrary.org/obo/GO_0030252,growth hormone secretion +8.7793009,DRUGBANK:DB01140,http://purl.obolibrary.org/obo/DRUGBANK_DB01140,none +8.7793009,PR:000001817,http://purl.obolibrary.org/obo/PR_000001817,LDL receptor-related protein +8.7793009,PR:000001839,http://purl.obolibrary.org/obo/PR_000001839,T-cell surface glycoprotein CD5 +8.7804273,CL:0000784,http://purl.obolibrary.org/obo/CL_0000784,plasmacytoid dendritic cell +8.780991,MONDO:0020237,http://purl.obolibrary.org/obo/MONDO_0020237,lens shape anomaly +8.7821194,UBERON:0001019,http://purl.obolibrary.org/obo/UBERON_0001019,nerve fasciculus +8.7824017,GO:0015858,http://purl.obolibrary.org/obo/GO_0015858,nucleoside transport +8.7824017,NCBITaxon:41087,http://purl.obolibrary.org/obo/NCBITaxon_41087,none +8.7824017,PR:000005311,http://purl.obolibrary.org/obo/PR_000005311,CCAAT/enhancer-binding protein gamma +8.782684,DRUGBANK:DB01199,http://purl.obolibrary.org/obo/DRUGBANK_DB01199,none +8.782684,NCBITaxon:71193,http://purl.obolibrary.org/obo/NCBITaxon_71193,none +8.783249,DRUGBANK:DB02056,http://purl.obolibrary.org/obo/DRUGBANK_DB02056,none +8.783249,GO:0043400,http://purl.obolibrary.org/obo/GO_0043400,cortisol secretion +8.783249,MONDO:0005594,http://purl.obolibrary.org/obo/MONDO_0005594,severe cutaneous adverse reaction +8.783249,MONDO:0018042,http://purl.obolibrary.org/obo/MONDO_0018042,immunodeficiency syndrome with abnormal pigmentation +8.7835316,GO:0015278,http://purl.obolibrary.org/obo/GO_0015278,calcium-release channel activity +8.7835316,NCBITaxon:9528,http://purl.obolibrary.org/obo/NCBITaxon_9528,Cercopithecinae +8.7835316,PR:000001199,http://purl.obolibrary.org/obo/PR_000001199,C-C chemokine receptor type 2 +8.7838143,MONDO:0000494,http://purl.obolibrary.org/obo/MONDO_0000494,renal fibrosis +8.7838143,UBERON:0005403,http://purl.obolibrary.org/obo/UBERON_0005403,ventral striatum +8.784097,NCBITaxon:195229,http://purl.obolibrary.org/obo/NCBITaxon_195229,none +8.7843799,GO:0045595,http://purl.obolibrary.org/obo/GO_0045595,regulation of cell differentiation +8.7843799,NCBITaxon:333870,http://purl.obolibrary.org/obo/NCBITaxon_333870,none +8.7846628,MONDO:0018150,http://purl.obolibrary.org/obo/MONDO_0018150,Gaucher disease +8.7852289,MONDO:0014658,http://purl.obolibrary.org/obo/MONDO_0014658,severe achondroplasia-developmental delay-acanthosis nigricans syndrome +8.7855121,DRUGBANK:DB00622,http://purl.obolibrary.org/obo/DRUGBANK_DB00622,none +8.7855121,PR:000024939,http://purl.obolibrary.org/obo/PR_000024939,interferon beta +8.7857953,DRUGBANK:DB01032,http://purl.obolibrary.org/obo/DRUGBANK_DB01032,none +8.7860786,MONDO:0036870,http://purl.obolibrary.org/obo/MONDO_0036870,lymphatic vessel neoplasm +8.7863621,GO:0006749,http://purl.obolibrary.org/obo/GO_0006749,glutathione metabolic process +8.7863621,UBERON:0002005,http://purl.obolibrary.org/obo/UBERON_0002005,enteric nervous system +8.7866455,GO:0016052,http://purl.obolibrary.org/obo/GO_0016052,carbohydrate catabolic process +8.7866455,MONDO:0015145,http://purl.obolibrary.org/obo/MONDO_0015145,neurovascular malformation +8.7869291,DRUGBANK:DB15584,http://purl.obolibrary.org/obo/DRUGBANK_DB15584,none +8.7869291,MONDO:0010526,http://purl.obolibrary.org/obo/MONDO_0010526,Fabry disease +8.7872128,HP:0002300,http://purl.obolibrary.org/obo/HP_0002300,Mutism +8.7872128,UBERON:0008987,http://purl.obolibrary.org/obo/UBERON_0008987,renal parenchyma +8.7872128,UBERON:0015789,http://purl.obolibrary.org/obo/UBERON_0015789,cranial or facial muscle +8.7880642,MONDO:0017635,http://purl.obolibrary.org/obo/MONDO_0017635,parkinsonian syndrome due to neurodegenerative disease +8.7880642,PR:Q90Z00,http://purl.obolibrary.org/obo/PR_Q90Z00,none +8.7883482,GO:0016206,http://purl.obolibrary.org/obo/GO_0016206,catechol O-methyltransferase activity +8.7883482,GO:0016405,http://purl.obolibrary.org/obo/GO_0016405,CoA-ligase activity +8.7886322,DRUGBANK:DB14152,http://purl.obolibrary.org/obo/DRUGBANK_DB14152,none +8.7886322,UBERON:0001917,http://purl.obolibrary.org/obo/UBERON_0001917,endothelium of artery +8.7889163,DRUGBANK:DB10571,http://purl.obolibrary.org/obo/DRUGBANK_DB10571,none +8.7889163,SO:0000466,http://purl.obolibrary.org/obo/SO_0000466,V_gene_segment +8.7892005,DRUGBANK:DB00119,http://purl.obolibrary.org/obo/DRUGBANK_DB00119,none +8.7892005,GO:0009415,http://purl.obolibrary.org/obo/GO_0009415,response to water +8.7892005,GO:0010698,http://purl.obolibrary.org/obo/GO_0010698,acetyltransferase activator activity +8.7894848,NCBITaxon:9539,http://purl.obolibrary.org/obo/NCBITaxon_9539,Macaca +8.7894848,UBERON:0001887,http://purl.obolibrary.org/obo/UBERON_0001887,internal capsule of telencephalon +8.7906228,GO:0019953,http://purl.obolibrary.org/obo/GO_0019953,sexual reproduction +8.7911923,MONDO:0021312,http://purl.obolibrary.org/obo/MONDO_0021312,malignant tumor of adrenal cortex +8.7911923,UBERON:0008951,http://purl.obolibrary.org/obo/UBERON_0008951,left lung lobe +8.7914772,GO:0006826,http://purl.obolibrary.org/obo/GO_0006826,iron ion transport +8.7917621,MONDO:0005806,http://purl.obolibrary.org/obo/MONDO_0005806,hypopharynx cancer +8.7917621,UBERON:0002422,http://purl.obolibrary.org/obo/UBERON_0002422,fourth ventricle +8.7920471,GO:0006636,http://purl.obolibrary.org/obo/GO_0006636,unsaturated fatty acid biosynthetic process +8.7920471,MONDO:0018438,http://purl.obolibrary.org/obo/MONDO_0018438,eosinophilic gastrointestinal disease +8.7920471,UBERON:0004572,http://purl.obolibrary.org/obo/UBERON_0004572,arterial system +8.7926174,MONDO:0009020,http://purl.obolibrary.org/obo/MONDO_0009020,macular corneal dystrophy +8.793188,GO:0002263,http://purl.obolibrary.org/obo/GO_0002263,cell activation involved in immune response +8.793188,GO:0002366,http://purl.obolibrary.org/obo/GO_0002366,leukocyte activation involved in immune response +8.793188,GO:0016801,http://purl.obolibrary.org/obo/GO_0016801,"hydrolase activity, acting on ether bonds" +8.793188,SO:0000274,http://purl.obolibrary.org/obo/SO_0000274,snRNA +8.793188,UBERON:0007109,http://purl.obolibrary.org/obo/UBERON_0007109,meconium +8.7934734,DRUGBANK:DB01103,http://purl.obolibrary.org/obo/DRUGBANK_DB01103,none +8.793759,UBERON:0006531,http://purl.obolibrary.org/obo/UBERON_0006531,oculomotor muscle +8.794616,DRUGBANK:DB00431,http://purl.obolibrary.org/obo/DRUGBANK_DB00431,none +8.794616,DRUGBANK:DB15483,http://purl.obolibrary.org/obo/DRUGBANK_DB15483,none +8.7949018,GO:0050905,http://purl.obolibrary.org/obo/GO_0050905,neuromuscular process +8.7951877,MONDO:0021463,http://purl.obolibrary.org/obo/MONDO_0021463,benign neoplasm of parathyroid gland +8.7954737,MONDO:0002052,http://purl.obolibrary.org/obo/MONDO_0002052,lymphadenitis +8.7954737,NCBITaxon:11191,http://purl.obolibrary.org/obo/NCBITaxon_11191,none +8.796905,HP:0010783,http://purl.obolibrary.org/obo/HP_0010783,Erythema +8.796905,UBERON:0004254,http://purl.obolibrary.org/obo/UBERON_0004254,forelimb zeugopod muscle +8.7971915,MONDO:0006890,http://purl.obolibrary.org/obo/MONDO_0006890,parathyroid gland adenoma +8.797478,CHEBI:36047,http://purl.obolibrary.org/obo/CHEBI_36047,antibacterial drug +8.7983382,MONDO:0015790,http://purl.obolibrary.org/obo/MONDO_0015790,central diabetes insipidus +8.7989121,PR:000003537,http://purl.obolibrary.org/obo/PR_000003537,phospholipid-transporting ATPase ABCA1 +8.7994863,MONDO:0020664,http://purl.obolibrary.org/obo/MONDO_0020664,spindle cell neoplasm +8.7997736,GO:0004915,http://purl.obolibrary.org/obo/GO_0004915,interleukin-6 receptor activity +8.8000609,MONDO:0000265,http://purl.obolibrary.org/obo/MONDO_0000265,aspiration pneumonia +8.8006358,CL:0000175,http://purl.obolibrary.org/obo/CL_0000175,luteal cell +8.8006358,GO:0008422,http://purl.obolibrary.org/obo/GO_0008422,beta-glucosidase activity +8.801211,GO:0006778,http://purl.obolibrary.org/obo/GO_0006778,porphyrin-containing compound metabolic process +8.801211,MONDO:0000313,http://purl.obolibrary.org/obo/MONDO_0000313,hypophosphatemia +8.801211,PR:000003415,http://purl.obolibrary.org/obo/PR_000003415,none +8.8014987,DRUGBANK:DB14694,http://purl.obolibrary.org/obo/DRUGBANK_DB14694,none +8.8017865,HP:0100658,http://purl.obolibrary.org/obo/HP_0100658,Cellulitis +8.8020744,DRUGBANK:DB01068,http://purl.obolibrary.org/obo/DRUGBANK_DB01068,none +8.8020744,SO:0000156,http://purl.obolibrary.org/obo/SO_0000156,cosmid +8.8023624,GO:0099528,http://purl.obolibrary.org/obo/GO_0099528,G protein-coupled neurotransmitter receptor activity +8.8026505,MONDO:0020216,http://purl.obolibrary.org/obo/MONDO_0020216,secondary dysgenetic glaucoma +8.8029386,MONDO:0015658,http://purl.obolibrary.org/obo/MONDO_0015658,cerebral diseases of vascular origin with epilepsy +8.8032268,MONDO:0008501,http://purl.obolibrary.org/obo/MONDO_0008501,Sturge-Weber syndrome +8.804092,DRUGBANK:DB13984,http://purl.obolibrary.org/obo/DRUGBANK_DB13984,none +8.804092,PR:000000013,http://purl.obolibrary.org/obo/PR_000000013,cullin +8.804092,UBERON:0001500,http://purl.obolibrary.org/obo/UBERON_0001500,muscle of manus +8.804092,UBERON:0001985,http://purl.obolibrary.org/obo/UBERON_0001985,corneal endothelium +8.8043806,CL:0000185,http://purl.obolibrary.org/obo/CL_0000185,myoepithelial cell +8.8043806,MONDO:0004739,http://purl.obolibrary.org/obo/MONDO_0004739,urea cycle disorder +8.8049579,UBERON:0002539,http://purl.obolibrary.org/obo/UBERON_0002539,pharyngeal arch +8.8055356,NCBITaxon:39729,http://purl.obolibrary.org/obo/NCBITaxon_39729,none +8.8055356,PR:000009127,http://purl.obolibrary.org/obo/PR_000009127,integrin alpha-IIb +8.8058246,HP:0001080,http://purl.obolibrary.org/obo/HP_0001080,Biliary tract abnormality +8.8058246,NCBITaxon:2169595,http://purl.obolibrary.org/obo/NCBITaxon_2169595,none +8.806692,MONDO:0018666,http://purl.obolibrary.org/obo/MONDO_0018666,hepatoblastoma +8.8072707,GO:0007566,http://purl.obolibrary.org/obo/GO_0007566,embryo implantation +8.8072707,MONDO:0008224,http://purl.obolibrary.org/obo/MONDO_0008224,hyperkalemic periodic paralysis +8.8078498,GO:0099604,http://purl.obolibrary.org/obo/GO_0099604,ligand-gated calcium channel activity +8.8078498,HP:0002069,http://purl.obolibrary.org/obo/HP_0002069,Bilateral tonic-clonic seizure +8.8078498,NCBITaxon:2732550,http://purl.obolibrary.org/obo/NCBITaxon_2732550,none +8.8081394,GO:0005217,http://purl.obolibrary.org/obo/GO_0005217,intracellular ligand-gated ion channel activity +8.8084291,GO:0009894,http://purl.obolibrary.org/obo/GO_0009894,regulation of catabolic process +8.8084291,UBERON:0001167,http://purl.obolibrary.org/obo/UBERON_0001167,wall of stomach +8.808719,HP:0012440,http://purl.obolibrary.org/obo/HP_0012440,Abnormal biliary tract morphology +8.808719,MONDO:0017413,http://purl.obolibrary.org/obo/MONDO_0017413,Reunion island Larsen syndrome +8.808719,MONDO:0024314,http://purl.obolibrary.org/obo/MONDO_0024314,parasitemia +8.808719,UBERON:0034969,http://purl.obolibrary.org/obo/UBERON_0034969,epithelial layer of duct +8.8092988,MONDO:0018241,http://purl.obolibrary.org/obo/MONDO_0018241,primary short bowel syndrome +8.8095889,HP:0005912,http://purl.obolibrary.org/obo/HP_0005912,Biliary atresia +8.8098791,GO:0001932,http://purl.obolibrary.org/obo/GO_0001932,regulation of protein phosphorylation +8.8098791,PR:000008915,http://purl.obolibrary.org/obo/PR_000008915,interferon alpha-2 +8.8101693,GO:0006665,http://purl.obolibrary.org/obo/GO_0006665,sphingolipid metabolic process +8.8101693,MONDO:0006591,http://purl.obolibrary.org/obo/MONDO_0006591,panniculitis +8.8104596,GO:0016907,http://purl.obolibrary.org/obo/GO_0016907,G protein-coupled acetylcholine receptor activity +8.81075,MONDO:0018027,http://purl.obolibrary.org/obo/MONDO_0018027,duplication/inversion 15q11 +8.81075,PR:000003647,http://purl.obolibrary.org/obo/PR_000003647,lysosomal acid phosphatase +8.8110405,UBERON:0001492,http://purl.obolibrary.org/obo/UBERON_0001492,radial nerve +8.8116217,GO:0003995,http://purl.obolibrary.org/obo/GO_0003995,acyl-CoA dehydrogenase activity +8.8116217,GO:0006113,http://purl.obolibrary.org/obo/GO_0006113,fermentation +8.8116217,UBERON:0000104,http://purl.obolibrary.org/obo/UBERON_0000104,life cycle +8.8116217,UBERON:0002228,http://purl.obolibrary.org/obo/UBERON_0002228,rib +8.8122033,MONDO:0016361,http://purl.obolibrary.org/obo/MONDO_0016361,isolated hereditary giant platelet disorder +8.8133674,GO:0016703,http://purl.obolibrary.org/obo/GO_0016703,"oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)" +8.8133674,PR:000008478,http://purl.obolibrary.org/obo/PR_000008478,histone deacetylase 1 +8.8133674,PR:000014730,http://purl.obolibrary.org/obo/PR_000014730,splicing factor 1 +8.8136587,PR:000008735,http://purl.obolibrary.org/obo/PR_000008735,hypoxanthine-guanine phosphoribosyltransferase +8.81395,MONDO:0005824,http://purl.obolibrary.org/obo/MONDO_0005824,Legionnaires' disease +8.81395,MONDO:0019337,http://purl.obolibrary.org/obo/MONDO_0019337,autoimmune bullous skin disease +8.81395,MONDO:0021240,http://purl.obolibrary.org/obo/MONDO_0021240,tongue neoplasm +8.8142414,MONDO:0005899,http://purl.obolibrary.org/obo/MONDO_0005899,parotid disease +8.8142414,MONDO:0010107,http://purl.obolibrary.org/obo/MONDO_0010107,testicular regression syndrome +8.8145329,UBERON:0001624,http://purl.obolibrary.org/obo/UBERON_0001624,anterior cerebral artery +8.8145329,UBERON:0004357,http://purl.obolibrary.org/obo/UBERON_0004357,paired limb/fin bud +8.8148245,PR:000006063,http://purl.obolibrary.org/obo/PR_000006063,growth-regulated alpha protein +8.8151162,DRUGBANK:DB07352,http://purl.obolibrary.org/obo/DRUGBANK_DB07352,none +8.8151162,GO:0019216,http://purl.obolibrary.org/obo/GO_0019216,regulation of lipid metabolic process +8.8151162,PR:000003582,http://purl.obolibrary.org/obo/PR_000003582,tyrosine-protein kinase ABL1 +8.8159917,DRUGBANK:DB06777,http://purl.obolibrary.org/obo/DRUGBANK_DB06777,none +8.8162837,GO:0000790,http://purl.obolibrary.org/obo/GO_0000790,none +8.8162837,MONDO:0001409,http://purl.obolibrary.org/obo/MONDO_0001409,esophagitis +8.8162837,PR:000001407,http://purl.obolibrary.org/obo/PR_000001407,tumor-associated calcium signal transducer +8.8165758,DRUGBANK:DB01202,http://purl.obolibrary.org/obo/DRUGBANK_DB01202,none +8.8165758,MONDO:0008963,http://purl.obolibrary.org/obo/MONDO_0008963,Chediak-Higashi syndrome +8.816868,GO:0042100,http://purl.obolibrary.org/obo/GO_0042100,B cell proliferation +8.816868,MONDO:0018914,http://purl.obolibrary.org/obo/MONDO_0018914,hypotrichosis simplex +8.816868,PR:000003417,http://purl.obolibrary.org/obo/PR_000003417,none +8.816868,PR:000007278,http://purl.obolibrary.org/obo/PR_000007278,histone-lysine N-methyltransferase EZH2 +8.816868,UBERON:0003268,http://purl.obolibrary.org/obo/UBERON_0003268,tooth of lower jaw +8.8171603,PR:000000129,http://purl.obolibrary.org/obo/PR_000000129,thrombospondin-1 +8.8174526,MONDO:0004345,http://purl.obolibrary.org/obo/MONDO_0004345,childhood malignant schwannoma +8.8180376,GO:0007569,http://purl.obolibrary.org/obo/GO_0007569,cell aging +8.8180376,PR:000005292,http://purl.obolibrary.org/obo/PR_000005292,corneodesmosin +8.8186229,PR:000003554,http://purl.obolibrary.org/obo/PR_000003554,multidrug resistance-associated protein 1 +8.8186229,PR:000013290,http://purl.obolibrary.org/obo/PR_000013290,peripherin-2 +8.8189157,DRUGBANK:DB00795,http://purl.obolibrary.org/obo/DRUGBANK_DB00795,none +8.8192086,CL:0000149,http://purl.obolibrary.org/obo/CL_0000149,visual pigment cell +8.8192086,DRUGBANK:DB06149,http://purl.obolibrary.org/obo/DRUGBANK_DB06149,none +8.8192086,MONDO:0024313,http://purl.obolibrary.org/obo/MONDO_0024313,staphylococcal infection +8.8192086,PR:000010667,http://purl.obolibrary.org/obo/PR_000010667,DNA mismatch repair protein Msh3 +8.8195015,NCBITaxon:12242,http://purl.obolibrary.org/obo/NCBITaxon_12242,none +8.8200877,CL:0000122,http://purl.obolibrary.org/obo/CL_0000122,stellate neuron +8.8203809,DRUGBANK:DB11182,http://purl.obolibrary.org/obo/DRUGBANK_DB11182,none +8.8203809,GO:0043549,http://purl.obolibrary.org/obo/GO_0043549,regulation of kinase activity +8.8206742,MONDO:0005484,http://purl.obolibrary.org/obo/MONDO_0005484,colorectal adenoma +8.8209676,DRUGBANK:DB01400,http://purl.obolibrary.org/obo/DRUGBANK_DB01400,none +8.8212611,PR:000013898,http://purl.obolibrary.org/obo/PR_000013898,"all-trans-retinol 13,14-reductase" +8.8218483,GO:0019933,http://purl.obolibrary.org/obo/GO_0019933,cAMP-mediated signaling +8.8218483,UBERON:0003933,http://purl.obolibrary.org/obo/UBERON_0003933,cranial cartilage +8.822142,MONDO:0016275,http://purl.obolibrary.org/obo/MONDO_0016275,adenocarcinoma of cervix uteri +8.822142,NCBITaxon:12109,http://purl.obolibrary.org/obo/NCBITaxon_12109,none +8.822142,PR:Q945Q1,http://purl.obolibrary.org/obo/PR_Q945Q1,none +8.8233178,GO:0016730,http://purl.obolibrary.org/obo/GO_0016730,"oxidoreductase activity, acting on iron-sulfur proteins as donors" +8.8233178,UBERON:0015019,http://purl.obolibrary.org/obo/UBERON_0015019,rib endochondral element +8.8236119,GO:0044282,http://purl.obolibrary.org/obo/GO_0044282,small molecule catabolic process +8.8239062,NCBITaxon:12110,http://purl.obolibrary.org/obo/NCBITaxon_12110,Foot-and-mouth disease virus +8.8242005,SO:0001657,http://purl.obolibrary.org/obo/SO_0001657,ligand_binding_site +8.825084,DRUGBANK:DB07348,http://purl.obolibrary.org/obo/DRUGBANK_DB07348,none +8.8253787,GO:0044724,http://purl.obolibrary.org/obo/GO_0044724,none +8.8256735,MONDO:0000624,http://purl.obolibrary.org/obo/MONDO_0000624,benign female reproductive system neoplasm +8.8256735,MONDO:0011549,http://purl.obolibrary.org/obo/MONDO_0011549,hypotrichosis 1 +8.8259683,GO:0006650,http://purl.obolibrary.org/obo/GO_0006650,glycerophospholipid metabolic process +8.8259683,MONDO:0005461,http://purl.obolibrary.org/obo/MONDO_0005461,endometrium adenocarcinoma +8.8262633,DRUGBANK:DB01075,http://purl.obolibrary.org/obo/DRUGBANK_DB01075,none +8.8265583,PR:000029113,http://purl.obolibrary.org/obo/PR_000029113,glutathione S-transferase P +8.8277393,MONDO:0016335,http://purl.obolibrary.org/obo/MONDO_0016335,mitochondrial disease with dilated cardiomyopathy +8.8280347,GO:0031324,http://purl.obolibrary.org/obo/GO_0031324,negative regulation of cellular metabolic process +8.8280347,PR:000030038,http://purl.obolibrary.org/obo/PR_000030038,glutamate G-protein coupled receptor +8.8283303,NCBITaxon:11886,http://purl.obolibrary.org/obo/NCBITaxon_11886,none +8.8283303,UBERON:0008949,http://purl.obolibrary.org/obo/UBERON_0008949,lower lobe of lung +8.8286259,PR:000016238,http://purl.obolibrary.org/obo/PR_000016238,telomerase reverse transcriptase +8.8289217,GO:0072594,http://purl.obolibrary.org/obo/GO_0072594,establishment of protein localization to organelle +8.8292175,GO:0051458,http://purl.obolibrary.org/obo/GO_0051458,corticotropin secretion +8.8292175,UBERON:0001997,http://purl.obolibrary.org/obo/UBERON_0001997,olfactory epithelium +8.8295134,MONDO:0043797,http://purl.obolibrary.org/obo/MONDO_0043797,spinal cord injury +8.8298094,MONDO:0019632,http://purl.obolibrary.org/obo/MONDO_0019632,Lyme disease +8.8298094,UBERON:0002463,http://purl.obolibrary.org/obo/UBERON_0002463,muscle of posterior compartment of hindlimb stylopod +8.8306979,UBERON:0002247,http://purl.obolibrary.org/obo/UBERON_0002247,uterine horn +8.8315872,UBERON:0002250,http://purl.obolibrary.org/obo/UBERON_0002250,popliteal artery +8.8318838,GO:0051656,http://purl.obolibrary.org/obo/GO_0051656,establishment of organelle localization +8.8318838,PR:000026156,http://purl.obolibrary.org/obo/PR_000026156,metal-dependent decarboxylating R-hydroxyacid dehydrogenase +8.8318838,UBERON:0001691,http://purl.obolibrary.org/obo/UBERON_0001691,external ear +8.8321804,UBERON:0001675,http://purl.obolibrary.org/obo/UBERON_0001675,trigeminal ganglion +8.8327741,MONDO:0006639,http://purl.obolibrary.org/obo/MONDO_0006639,adrenal cortex carcinoma +8.8333681,GO:0042030,http://purl.obolibrary.org/obo/GO_0042030,ATPase inhibitor activity +8.8333681,UBERON:0036215,http://purl.obolibrary.org/obo/UBERON_0036215,anatomical surface region +8.8336652,DRUGBANK:DB10451,http://purl.obolibrary.org/obo/DRUGBANK_DB10451,none +8.8336652,GO:0060326,http://purl.obolibrary.org/obo/GO_0060326,cell chemotaxis +8.8336652,PR:A3RK74,http://purl.obolibrary.org/obo/PR_A3RK74,none +8.8339624,DRUGBANK:DB00361,http://purl.obolibrary.org/obo/DRUGBANK_DB00361,none +8.8339624,DRUGBANK:DB02659,http://purl.obolibrary.org/obo/DRUGBANK_DB02659,none +8.8339624,MONDO:0020020,http://purl.obolibrary.org/obo/MONDO_0020020,"visceral malformation of the liver, biliary tract, pancreas or spleen" +8.8342598,PR:000027897,http://purl.obolibrary.org/obo/PR_000027897,none +8.8348546,MONDO:0009264,http://purl.obolibrary.org/obo/MONDO_0009264,gastroschisis +8.8348546,SO:0001000,http://purl.obolibrary.org/obo/SO_0001000,cytosolic_16S_rRNA +8.8351522,MONDO:0017376,http://purl.obolibrary.org/obo/MONDO_0017376,reactive arthritis +8.8354499,CHEBI:33635,http://purl.obolibrary.org/obo/CHEBI_33635,polycyclic compound +8.8357476,MONDO:0003699,http://purl.obolibrary.org/obo/MONDO_0003699,phobic disorder +8.8360455,UBERON:0002085,http://purl.obolibrary.org/obo/UBERON_0002085,interatrial septum +8.8363434,DRUGBANK:DB10518,http://purl.obolibrary.org/obo/DRUGBANK_DB10518,none +8.8363434,GO:0005978,http://purl.obolibrary.org/obo/GO_0005978,glycogen biosynthetic process +8.8366414,PR:000000038,http://purl.obolibrary.org/obo/PR_000000038,BMP receptor-regulated smad protein +8.8369395,GO:0009755,http://purl.obolibrary.org/obo/GO_0009755,hormone-mediated signaling pathway +8.8369395,GO:0031109,http://purl.obolibrary.org/obo/GO_0031109,microtubule polymerization or depolymerization +8.8369395,MONDO:0019100,http://purl.obolibrary.org/obo/MONDO_0019100,neuromyelitis optica +8.8372377,DRUGBANK:DB14223,http://purl.obolibrary.org/obo/DRUGBANK_DB14223,none +8.837536,GO:0044433,http://purl.obolibrary.org/obo/GO_0044433,none +8.837536,UBERON:0003718,http://purl.obolibrary.org/obo/UBERON_0003718,muscle spindle +8.8378344,DRUGBANK:DB11460,http://purl.obolibrary.org/obo/DRUGBANK_DB11460,none +8.8378344,GO:0033555,http://purl.obolibrary.org/obo/GO_0033555,multicellular organismal response to stress +8.8384314,GO:0047077,http://purl.obolibrary.org/obo/GO_0047077,Photinus-luciferin 4-monooxygenase (ATP-hydrolyzing) activity +8.8384314,MONDO:0001325,http://purl.obolibrary.org/obo/MONDO_0001325,penile cancer +8.8384314,UBERON:0001130,http://purl.obolibrary.org/obo/UBERON_0001130,vertebral column +8.83873,UBERON:0005434,http://purl.obolibrary.org/obo/UBERON_0005434,cervical region +8.8390288,PR:000001901,http://purl.obolibrary.org/obo/PR_000001901,"nitric oxide synthase, inducible" +8.8390288,PR:000007746,http://purl.obolibrary.org/obo/PR_000007746,glucose-6-phosphatase catalytic subunit 1 +8.8393276,CL:0002586,http://purl.obolibrary.org/obo/CL_0002586,retinal pigment epithelial cell +8.8393276,GO:0004346,http://purl.obolibrary.org/obo/GO_0004346,glucose-6-phosphatase activity +8.8393276,GO:0050309,http://purl.obolibrary.org/obo/GO_0050309,sugar-terminal-phosphatase activity +8.8393276,UBERON:0018551,http://purl.obolibrary.org/obo/UBERON_0018551,central incisor tooth +8.8396265,DRUGBANK:DB15823,http://purl.obolibrary.org/obo/DRUGBANK_DB15823,none +8.8396265,MONDO:0016419,http://purl.obolibrary.org/obo/MONDO_0016419,hereditary breast carcinoma +8.8402246,DRUGBANK:DB00027,http://purl.obolibrary.org/obo/DRUGBANK_DB00027,none +8.8402246,PR:000006130,http://purl.obolibrary.org/obo/PR_000006130,cytochrome P450 3A4 +8.8402246,UBERON:0008948,http://purl.obolibrary.org/obo/UBERON_0008948,upper lobe of lung +8.840823,MONDO:0700065,http://purl.obolibrary.org/obo/MONDO_0700065,trisomy +8.840823,PR:000000682,http://purl.obolibrary.org/obo/PR_000000682,voltage-gated potassium channel alpha subunit with PAS domain +8.8414218,GO:0010562,http://purl.obolibrary.org/obo/GO_0010562,positive regulation of phosphorus metabolic process +8.8414218,GO:0045937,http://purl.obolibrary.org/obo/GO_0045937,positive regulation of phosphate metabolic process +8.8414218,UBERON:0002769,http://purl.obolibrary.org/obo/UBERON_0002769,superior temporal gyrus +8.8417214,UBERON:0001712,http://purl.obolibrary.org/obo/UBERON_0001712,upper eyelid +8.8423207,GO:0005245,http://purl.obolibrary.org/obo/GO_0005245,voltage-gated calcium channel activity +8.8426205,CHEBI:24866,http://purl.obolibrary.org/obo/CHEBI_24866,salt +8.8429204,GO:0008186,http://purl.obolibrary.org/obo/GO_0008186,"ATP-dependent activity, acting on RNA" +8.8429204,GO:0030135,http://purl.obolibrary.org/obo/GO_0030135,coated vesicle +8.8432204,DRUGBANK:DB01242,http://purl.obolibrary.org/obo/DRUGBANK_DB01242,none +8.8432204,GO:0006595,http://purl.obolibrary.org/obo/GO_0006595,polyamine metabolic process +8.8435205,GO:0009061,http://purl.obolibrary.org/obo/GO_0009061,anaerobic respiration +8.8438206,PR:000008405,http://purl.obolibrary.org/obo/PR_000008405,histone H1.0 +8.8441209,PR:000022930,http://purl.obolibrary.org/obo/PR_000022930,none +8.8441209,PR:000050199,http://purl.obolibrary.org/obo/PR_000050199,none +8.8444212,MONDO:0018935,http://purl.obolibrary.org/obo/MONDO_0018935,hairy cell leukemia +8.8444212,MONDO:0024611,http://purl.obolibrary.org/obo/MONDO_0024611,orbit neoplasm +8.8444212,PR:000011334,http://purl.obolibrary.org/obo/PR_000011334,neurogenic locus notch homolog protein 3 +8.8447217,PR:000008947,http://purl.obolibrary.org/obo/PR_000008947,insulin-like growth factor-binding protein 1 +8.8450222,DRUGBANK:DB00105,http://purl.obolibrary.org/obo/DRUGBANK_DB00105,none +8.8453228,MONDO:0017261,http://purl.obolibrary.org/obo/MONDO_0017261,systemic diseases with panuveitis +8.8456235,GO:0015804,http://purl.obolibrary.org/obo/GO_0015804,neutral amino acid transport +8.8456235,PR:000004320,http://purl.obolibrary.org/obo/PR_000004320,beta-arrestin-2 +8.8459243,MONDO:0020246,http://purl.obolibrary.org/obo/MONDO_0020246,inherited vitreoretinopathy +8.8459243,PR:000001401,http://purl.obolibrary.org/obo/PR_000001401,membrane cofactor protein +8.8462252,DRUGBANK:DB00170,http://purl.obolibrary.org/obo/DRUGBANK_DB00170,none +8.8462252,MONDO:0016761,http://purl.obolibrary.org/obo/MONDO_0016761,spondyloepiphyseal dysplasia +8.8465262,DRUGBANK:DB10643,http://purl.obolibrary.org/obo/DRUGBANK_DB10643,none +8.8465262,UBERON:0000017,http://purl.obolibrary.org/obo/UBERON_0000017,exocrine pancreas +8.8471284,CL:0000561,http://purl.obolibrary.org/obo/CL_0000561,amacrine cell +8.8471284,UBERON:0003587,http://purl.obolibrary.org/obo/UBERON_0003587,limb connective tissue +8.8474297,DRUGBANK:DB00812,http://purl.obolibrary.org/obo/DRUGBANK_DB00812,none +8.8474297,MONDO:0009410,http://purl.obolibrary.org/obo/MONDO_0009410,Addison disease +8.8474297,MONDO:0015130,http://purl.obolibrary.org/obo/MONDO_0015130,acquired chronic primary adrenal insufficiency +8.847731,GO:0016878,http://purl.obolibrary.org/obo/GO_0016878,acid-thiol ligase activity +8.8480324,DRUGBANK:DB01012,http://purl.obolibrary.org/obo/DRUGBANK_DB01012,none +8.848334,GO:0042327,http://purl.obolibrary.org/obo/GO_0042327,positive regulation of phosphorylation +8.8489373,DRUGBANK:DB00581,http://purl.obolibrary.org/obo/DRUGBANK_DB00581,none +8.8489373,DRUGBANK:DB01828,http://purl.obolibrary.org/obo/DRUGBANK_DB01828,none +8.8498429,MONDO:0000920,http://purl.obolibrary.org/obo/MONDO_0000920,duodenum cancer +8.850145,MONDO:0000552,http://purl.obolibrary.org/obo/MONDO_0000552,breast lobular carcinoma +8.8504472,DRUGBANK:DB00146,http://purl.obolibrary.org/obo/DRUGBANK_DB00146,none +8.8504472,GO:0006939,http://purl.obolibrary.org/obo/GO_0006939,smooth muscle contraction +8.8507494,PR:000010048,http://purl.obolibrary.org/obo/PR_000010048,transcription factor MafB +8.8519593,DRUGBANK:DB00177,http://purl.obolibrary.org/obo/DRUGBANK_DB00177,none +8.8519593,MONDO:0016244,http://purl.obolibrary.org/obo/MONDO_0016244,atypical hemolytic-uremic syndrome +8.8519593,UBERON:0007644,http://purl.obolibrary.org/obo/UBERON_0007644,thoracic lymph node +8.852262,GO:0030324,http://purl.obolibrary.org/obo/GO_0030324,lung development +8.852262,MONDO:0001868,http://purl.obolibrary.org/obo/MONDO_0001868,primary angle-closure glaucoma +8.8525648,DRUGBANK:DB12656,http://purl.obolibrary.org/obo/DRUGBANK_DB12656,none +8.8525648,MONDO:0001449,http://purl.obolibrary.org/obo/MONDO_0001449,lymphocytic choriomeningitis +8.8525648,UBERON:0007524,http://purl.obolibrary.org/obo/UBERON_0007524,dense mesenchyme tissue +8.8528677,PR:Q9FMI7,http://purl.obolibrary.org/obo/PR_Q9FMI7,none +8.8531707,CL:0002064,http://purl.obolibrary.org/obo/CL_0002064,pancreatic acinar cell +8.8531707,CL:1001599,http://purl.obolibrary.org/obo/CL_1001599,pancreas exocrine glandular cell +8.8531707,GO:0016886,http://purl.obolibrary.org/obo/GO_0016886,"ligase activity, forming phosphoric ester bonds" +8.8531707,PR:000011388,http://purl.obolibrary.org/obo/PR_000011388,NAD(P)H dehydrogenase [quinone] 1 +8.853777,DRUGBANK:DB00247,http://purl.obolibrary.org/obo/DRUGBANK_DB00247,none +8.853777,DRUGBANK:DB09395,http://purl.obolibrary.org/obo/DRUGBANK_DB09395,none +8.853777,MONDO:0002234,http://purl.obolibrary.org/obo/MONDO_0002234,vaginitis +8.853777,MONDO:0036501,http://purl.obolibrary.org/obo/MONDO_0036501,refractory malignant neoplasm +8.8540802,PR:000017272,http://purl.obolibrary.org/obo/PR_000017272,vinculin +8.854687,DRUGBANK:DB00403,http://purl.obolibrary.org/obo/DRUGBANK_DB00403,none +8.8549906,HP:0009115,http://purl.obolibrary.org/obo/HP_0009115,Aplasia/hypoplasia involving the skeleton +8.8549906,MONDO:0005282,http://purl.obolibrary.org/obo/MONDO_0005282,cutaneous lupus erythematosus +8.8549906,PR:000002204,http://purl.obolibrary.org/obo/PR_000002204,lymphotoxin-alpha +8.8555979,DRUGBANK:DB15660,http://purl.obolibrary.org/obo/DRUGBANK_DB15660,none +8.8559017,GO:0072372,http://purl.obolibrary.org/obo/GO_0072372,none +8.8559017,MONDO:0003022,http://purl.obolibrary.org/obo/MONDO_0003022,pediatric angiosarcoma +8.8559017,UBERON:0003695,http://purl.obolibrary.org/obo/UBERON_0003695,metacarpophalangeal joint +8.8562056,DRUGBANK:DB05383,http://purl.obolibrary.org/obo/DRUGBANK_DB05383,none +8.8565096,MONDO:0008401,http://purl.obolibrary.org/obo/MONDO_0008401,pleomorphic adenoma +8.8565096,MONDO:0017168,http://purl.obolibrary.org/obo/MONDO_0017168,benign epithelial tumor of salivary glands +8.8565096,PR:000013743,http://purl.obolibrary.org/obo/PR_000013743,Ras GTPase-activating protein 1 +8.8577265,DRUGBANK:DB10552,http://purl.obolibrary.org/obo/DRUGBANK_DB10552,none +8.858031,DRUGBANK:DB10806,http://purl.obolibrary.org/obo/DRUGBANK_DB10806,none +8.8583356,MONDO:0004631,http://purl.obolibrary.org/obo/MONDO_0004631,tongue cancer +8.8583356,MONDO:0005417,http://purl.obolibrary.org/obo/MONDO_0005417,wet macular degeneration +8.8592498,GO:0042981,http://purl.obolibrary.org/obo/GO_0042981,regulation of apoptotic process +8.8592498,GO:0043279,http://purl.obolibrary.org/obo/GO_0043279,response to alkaloid +8.8592498,GO:0060341,http://purl.obolibrary.org/obo/GO_0060341,regulation of cellular localization +8.8595547,DRUGBANK:DB12856,http://purl.obolibrary.org/obo/DRUGBANK_DB12856,none +8.8598597,GO:0034976,http://purl.obolibrary.org/obo/GO_0034976,response to endoplasmic reticulum stress +8.8601648,MONDO:0019024,http://purl.obolibrary.org/obo/MONDO_0019024,mast cell sarcoma +8.86047,GO:0043025,http://purl.obolibrary.org/obo/GO_0043025,neuronal cell body +8.86047,MONDO:0006031,http://purl.obolibrary.org/obo/MONDO_0006031,chronic rhinosinusitis +8.86047,MONDO:0021243,http://purl.obolibrary.org/obo/MONDO_0021243,parotid gland neoplasm +8.86047,PR:000005418,http://purl.obolibrary.org/obo/PR_000005418,serine/threonine-protein kinase Chk2 +8.86047,UBERON:0003451,http://purl.obolibrary.org/obo/UBERON_0003451,lower jaw incisor +8.8610807,MONDO:0004750,http://purl.obolibrary.org/obo/MONDO_0004750,language disorder +8.8616918,DRUGBANK:DB00871,http://purl.obolibrary.org/obo/DRUGBANK_DB00871,none +8.8619974,GO:0045275,http://purl.obolibrary.org/obo/GO_0045275,respiratory chain complex III +8.8619974,UBERON:2001977,http://purl.obolibrary.org/obo/UBERON_2001977,pad +8.8626091,NCBITaxon:333750,http://purl.obolibrary.org/obo/NCBITaxon_333750,none +8.8632211,MONDO:0004963,http://purl.obolibrary.org/obo/MONDO_0004963,T-cell acute lymphoblastic leukemia +8.8635272,DRUGBANK:DB09035,http://purl.obolibrary.org/obo/DRUGBANK_DB09035,none +8.8638334,GO:0016984,http://purl.obolibrary.org/obo/GO_0016984,ribulose-bisphosphate carboxylase activity +8.8638334,MONDO:0006737,http://purl.obolibrary.org/obo/MONDO_0006737,dystocia +8.8638334,UBERON:0001085,http://purl.obolibrary.org/obo/UBERON_0001085,skin of trunk +8.8638334,UBERON:0004212,http://purl.obolibrary.org/obo/UBERON_0004212,glomerular capillary +8.8647527,GO:0005769,http://purl.obolibrary.org/obo/GO_0005769,early endosome +8.865366,DRUGBANK:DB14551,http://purl.obolibrary.org/obo/DRUGBANK_DB14551,none +8.865366,GO:0045859,http://purl.obolibrary.org/obo/GO_0045859,regulation of protein kinase activity +8.8656728,DRUGBANK:DB00834,http://purl.obolibrary.org/obo/DRUGBANK_DB00834,none +8.8659797,DRUGBANK:DB10554,http://purl.obolibrary.org/obo/DRUGBANK_DB10554,none +8.8662867,UBERON:2005260,http://purl.obolibrary.org/obo/UBERON_2005260,fenestrated capillary +8.8665937,UBERON:0001720,http://purl.obolibrary.org/obo/UBERON_0001720,cochlear nucleus +8.8669009,GO:0006479,http://purl.obolibrary.org/obo/GO_0006479,protein methylation +8.8669009,MONDO:0006359,http://purl.obolibrary.org/obo/MONDO_0006359,neoplasm with perivascular epithelioid cell differentiation +8.8681305,CHEBI:76741,http://purl.obolibrary.org/obo/CHEBI_76741,"EC 1.14.* (oxidoreductase acting on paired donors, with incorporation or reduction of molecular oxygen) inhibitor" +8.8684382,GO:0045017,http://purl.obolibrary.org/obo/GO_0045017,glycerolipid biosynthetic process +8.8684382,UBERON:0005629,http://purl.obolibrary.org/obo/UBERON_0005629,vascular plexus +8.8687459,DRUGBANK:DB06780,http://purl.obolibrary.org/obo/DRUGBANK_DB06780,none +8.8687459,GO:0016409,http://purl.obolibrary.org/obo/GO_0016409,palmitoyltransferase activity +8.8687459,PR:000004319,http://purl.obolibrary.org/obo/PR_000004319,beta-arrestin-1 +8.8696697,MONDO:0017714,http://purl.obolibrary.org/obo/MONDO_0017714,acyl-CoA dehydrogenase deficiency +8.8702861,DRUGBANK:DB00198,http://purl.obolibrary.org/obo/DRUGBANK_DB00198,none +8.8702861,GO:0004996,http://purl.obolibrary.org/obo/GO_0004996,thyroid-stimulating hormone receptor activity +8.8702861,GO:0008276,http://purl.obolibrary.org/obo/GO_0008276,protein methyltransferase activity +8.8705944,CHEBI:25699,http://purl.obolibrary.org/obo/CHEBI_25699,organic ion +8.8705944,DRUGBANK:DB01686,http://purl.obolibrary.org/obo/DRUGBANK_DB01686,none +8.8705944,MONDO:0006796,http://purl.obolibrary.org/obo/MONDO_0006796,hypertensive encephalopathy +8.8705944,SO:0000195,http://purl.obolibrary.org/obo/SO_0000195,coding_exon +8.8712113,MONDO:0005254,http://purl.obolibrary.org/obo/MONDO_0005254,symptomatic heart failure +8.8715199,DRUGBANK:DB01039,http://purl.obolibrary.org/obo/DRUGBANK_DB01039,none +8.8715199,MONDO:0018229,http://purl.obolibrary.org/obo/MONDO_0018229,Stevens-Johnson syndrome +8.8715199,PR:000001084,http://purl.obolibrary.org/obo/PR_000001084,T-cell surface glycoprotein CD8 alpha chain +8.8715199,PR:000037798,http://purl.obolibrary.org/obo/PR_000037798,paired box protein PAX group IV +8.8721373,PR:000004443,http://purl.obolibrary.org/obo/PR_000004443,sarcoplasmic/endoplasmic reticulum calcium ATPase 2 +8.8724462,DRUGBANK:DB00698,http://purl.obolibrary.org/obo/DRUGBANK_DB00698,none +8.8724462,DRUGBANK:DB01339,http://purl.obolibrary.org/obo/DRUGBANK_DB01339,none +8.8730643,UBERON:0012180,http://purl.obolibrary.org/obo/UBERON_0012180,head or neck skin +8.8733734,MONDO:0018036,http://purl.obolibrary.org/obo/MONDO_0018036,immunodeficiency due to absence of thymus +8.8743015,PR:000002094,http://purl.obolibrary.org/obo/PR_000002094,C-C motif chemokine 5 +8.8749207,GO:0008213,http://purl.obolibrary.org/obo/GO_0008213,protein alkylation +8.8752304,GO:0048729,http://purl.obolibrary.org/obo/GO_0048729,tissue morphogenesis +8.8755403,PR:000002107,http://purl.obolibrary.org/obo/PR_000002107,tumor necrosis factor ligand superfamily member 11 +8.8755403,UBERON:0002464,http://purl.obolibrary.org/obo/UBERON_0002464,nerve trunk +8.8758502,PR:000005667,http://purl.obolibrary.org/obo/PR_000005667,contactin-2 +8.8764704,GO:0016444,http://purl.obolibrary.org/obo/GO_0016444,somatic cell DNA recombination +8.8770909,GO:0002200,http://purl.obolibrary.org/obo/GO_0002200,somatic diversification of immune receptors +8.8770909,GO:0002562,http://purl.obolibrary.org/obo/GO_0002562,somatic diversification of immune receptors via germline recombination within a single locus +8.8777118,CL:0000861,http://purl.obolibrary.org/obo/CL_0000861,elicited macrophage +8.8777118,PR:000025824,http://purl.obolibrary.org/obo/PR_000025824,Axin +8.8777118,UBERON:0000305,http://purl.obolibrary.org/obo/UBERON_0000305,amnion +8.8783331,GO:0033646,http://purl.obolibrary.org/obo/GO_0033646,host intracellular part +8.8786439,CHEBI:64152,http://purl.obolibrary.org/obo/CHEBI_64152,cysteine protease inhibitor +8.8789548,DRUGBANK:DB01424,http://purl.obolibrary.org/obo/DRUGBANK_DB01424,none +8.8792658,DRUGBANK:DB13182,http://purl.obolibrary.org/obo/DRUGBANK_DB13182,none +8.8792658,GO:0009583,http://purl.obolibrary.org/obo/GO_0009583,detection of light stimulus +8.8792658,UBERON:0003704,http://purl.obolibrary.org/obo/UBERON_0003704,intrahepatic bile duct +8.8801994,PR:Q9SB81,http://purl.obolibrary.org/obo/PR_Q9SB81,none +8.8805108,PR:000001337,http://purl.obolibrary.org/obo/PR_000001337,complement receptor type 1 +8.8808223,UBERON:0003909,http://purl.obolibrary.org/obo/UBERON_0003909,sinusoid +8.8811338,GO:0005765,http://purl.obolibrary.org/obo/GO_0005765,lysosomal membrane +8.8811338,GO:0007340,http://purl.obolibrary.org/obo/GO_0007340,acrosome reaction +8.8833176,DRUGBANK:DB00843,http://purl.obolibrary.org/obo/DRUGBANK_DB00843,none +8.8833176,GO:0098852,http://purl.obolibrary.org/obo/GO_0098852,lytic vacuole membrane +8.8833176,UBERON:0000102,http://purl.obolibrary.org/obo/UBERON_0000102,lung vasculature +8.8836299,UBERON:0005725,http://purl.obolibrary.org/obo/UBERON_0005725,olfactory system +8.8836299,UBERON:0005726,http://purl.obolibrary.org/obo/UBERON_0005726,chemosensory system +8.8842549,PR:000001543,http://purl.obolibrary.org/obo/PR_000001543,programmed cell death 1 ligand 1 +8.8848803,DRUGBANK:DB09154,http://purl.obolibrary.org/obo/DRUGBANK_DB09154,none +8.8848803,GO:0001570,http://purl.obolibrary.org/obo/GO_0001570,vasculogenesis +8.8851932,MONDO:0005031,http://purl.obolibrary.org/obo/MONDO_0005031,fibromatosis +8.8851932,UBERON:0000993,http://purl.obolibrary.org/obo/UBERON_0000993,oviduct +8.8855061,GO:0045088,http://purl.obolibrary.org/obo/GO_0045088,regulation of innate immune response +8.8855061,MONDO:0003159,http://purl.obolibrary.org/obo/MONDO_0003159,vascular hemostatic disease +8.8867588,MONDO:0020601,http://purl.obolibrary.org/obo/MONDO_0020601,mosquito-borne viral encephalitis +8.8867588,PR:000004318,http://purl.obolibrary.org/obo/PR_000004318,arrestin-C +8.8870723,GO:1902531,http://purl.obolibrary.org/obo/GO_1902531,regulation of intracellular signal transduction +8.8870723,UBERON:0001880,http://purl.obolibrary.org/obo/UBERON_0001880,bed nucleus of stria terminalis +8.8873858,UBERON:0011004,http://purl.obolibrary.org/obo/UBERON_0011004,pharyngeal arch cartilage +8.888327,GO:0008106,http://purl.obolibrary.org/obo/GO_0008106,alcohol dehydrogenase (NADP+) activity +8.888327,MONDO:0016318,http://purl.obolibrary.org/obo/MONDO_0016318,progressive multifocal leukoencephalopathy +8.888327,UBERON:0018543,http://purl.obolibrary.org/obo/UBERON_0018543,lumen of intestine +8.8889549,DRUGBANK:DB01169,http://purl.obolibrary.org/obo/DRUGBANK_DB01169,none +8.8889549,DRUGBANK:DB01861,http://purl.obolibrary.org/obo/DRUGBANK_DB01861,none +8.8889549,GO:0043085,http://purl.obolibrary.org/obo/GO_0043085,positive regulation of catalytic activity +8.889269,CL:0000179,http://purl.obolibrary.org/obo/CL_0000179,progesterone secreting cell +8.889269,UBERON:0002031,http://purl.obolibrary.org/obo/UBERON_0002031,epithelium of bronchus +8.8895833,MONDO:0005097,http://purl.obolibrary.org/obo/MONDO_0005097,squamous cell lung carcinoma +8.8895833,UBERON:0014374,http://purl.obolibrary.org/obo/UBERON_0014374,embryoid body +8.8898976,DRUGBANK:DB00360,http://purl.obolibrary.org/obo/DRUGBANK_DB00360,none +8.8908411,CHEBI:76796,http://purl.obolibrary.org/obo/CHEBI_76796,EC 3.4.22.* (cysteine endopeptidase) inhibitor +8.8908411,GO:0005759,http://purl.obolibrary.org/obo/GO_0005759,mitochondrial matrix +8.8908411,MONDO:0008491,http://purl.obolibrary.org/obo/MONDO_0008491,stiff-person syndrome +8.8911558,GO:0004032,http://purl.obolibrary.org/obo/GO_0004032,alditol:NADP+ 1-oxidoreductase activity +8.8911558,MONDO:0017435,http://purl.obolibrary.org/obo/MONDO_0017435,popliteal pterygium syndrome +8.8914706,PR:000004968,http://purl.obolibrary.org/obo/PR_000004968,calretinin +8.8914706,PR:000005417,http://purl.obolibrary.org/obo/PR_000005417,serine/threonine-protein kinase Chk1 +8.8921006,DRUGBANK:DB08313,http://purl.obolibrary.org/obo/DRUGBANK_DB08313,none +8.8921006,GO:0006692,http://purl.obolibrary.org/obo/GO_0006692,prostanoid metabolic process +8.8927309,CL:0000509,http://purl.obolibrary.org/obo/CL_0000509,gastrin secreting cell +8.8927309,CL:2000074,http://purl.obolibrary.org/obo/CL_2000074,splenocyte +8.8927309,DRUGBANK:DB11599,http://purl.obolibrary.org/obo/DRUGBANK_DB11599,none +8.8927309,HP:0004377,http://purl.obolibrary.org/obo/HP_0004377,Hematological neoplasm +8.8930462,GO:0016311,http://purl.obolibrary.org/obo/GO_0016311,dephosphorylation +8.8933616,GO:0016909,http://purl.obolibrary.org/obo/GO_0016909,none +8.8933616,PR:000010666,http://purl.obolibrary.org/obo/PR_000010666,DNA mismatch repair protein Msh2 +8.8936771,MONDO:0005520,http://purl.obolibrary.org/obo/MONDO_0005520,rickets +8.8949401,CL:0000432,http://purl.obolibrary.org/obo/CL_0000432,reticular cell +8.8949401,DRUGBANK:DB09270,http://purl.obolibrary.org/obo/DRUGBANK_DB09270,none +8.8949401,DRUGBANK:DB11631,http://purl.obolibrary.org/obo/DRUGBANK_DB11631,none +8.8949401,PR:000011160,http://purl.obolibrary.org/obo/PR_000011160,neurofibromin +8.8952561,DRUGBANK:DB00772,http://purl.obolibrary.org/obo/DRUGBANK_DB00772,none +8.8952561,UBERON:0002792,http://purl.obolibrary.org/obo/UBERON_0002792,lumbar spinal cord +8.8955722,MONDO:0019503,http://purl.obolibrary.org/obo/MONDO_0019503,anterior segment dysgenesis +8.8955722,PR:000002973,http://purl.obolibrary.org/obo/PR_000002973,ataxin-1/ataxin-1-like +8.8958885,GO:0009299,http://purl.obolibrary.org/obo/GO_0009299,mRNA transcription +8.8958885,PR:000002974,http://purl.obolibrary.org/obo/PR_000002974,ataxin-1 +8.8958885,PR:P23772,http://purl.obolibrary.org/obo/PR_P23772,none +8.8962048,DRUGBANK:DB00636,http://purl.obolibrary.org/obo/DRUGBANK_DB00636,none +8.8962048,PR:000035159,http://purl.obolibrary.org/obo/PR_000035159,none +8.8962048,PR:000050164,http://purl.obolibrary.org/obo/PR_000050164,"GAF-containing cyclic nucleotide-dependent 3',5'-cyclic phosphodiesterase" +8.8965212,GO:0020028,http://purl.obolibrary.org/obo/GO_0020028,endocytic hemoglobin import into cell +8.8968377,DRUGBANK:DB01043,http://purl.obolibrary.org/obo/DRUGBANK_DB01043,none +8.8971543,GO:0022603,http://purl.obolibrary.org/obo/GO_0022603,regulation of anatomical structure morphogenesis +8.8971543,PR:000028205,http://purl.obolibrary.org/obo/PR_000028205,type III interferon +8.8971543,UBERON:0001136,http://purl.obolibrary.org/obo/UBERON_0001136,mesothelium +8.8971543,UBERON:0001830,http://purl.obolibrary.org/obo/UBERON_0001830,minor salivary gland +8.8971543,UBERON:0003027,http://purl.obolibrary.org/obo/UBERON_0003027,cingulate cortex +8.897471,UBERON:0001598,http://purl.obolibrary.org/obo/UBERON_0001598,temporalis muscle +8.8977878,CHEBI:33697,http://purl.obolibrary.org/obo/CHEBI_33697,ribonucleic acid +8.8977878,MONDO:0019790,http://purl.obolibrary.org/obo/MONDO_0019790,neuroleptic malignant syndrome +8.8977878,PR:000022989,http://purl.obolibrary.org/obo/PR_000022989,isocitrate dehydrogenase [NADP] +8.8981047,GO:0072089,http://purl.obolibrary.org/obo/GO_0072089,stem cell proliferation +8.8984217,DRUGBANK:DB01098,http://purl.obolibrary.org/obo/DRUGBANK_DB01098,none +8.8984217,DRUGBANK:DB01170,http://purl.obolibrary.org/obo/DRUGBANK_DB01170,none +8.8984217,GO:0003724,http://purl.obolibrary.org/obo/GO_0003724,RNA helicase activity +8.8984217,MONDO:0015482,http://purl.obolibrary.org/obo/MONDO_0015482,otomandibular dysplasia +8.8987388,MONDO:0001339,http://purl.obolibrary.org/obo/MONDO_0001339,portal vein thrombosis +8.899056,PR:000007839,http://purl.obolibrary.org/obo/PR_000007839,neuromodulin +8.8993733,GO:0031329,http://purl.obolibrary.org/obo/GO_0031329,regulation of cellular catabolic process +8.8996907,UBERON:0001281,http://purl.obolibrary.org/obo/UBERON_0001281,hepatic sinusoid +8.9003259,DRUGBANK:DB01119,http://purl.obolibrary.org/obo/DRUGBANK_DB01119,none +8.9003259,PR:000005216,http://purl.obolibrary.org/obo/PR_000005216,cell division cycle 5-like protein +8.9006436,CL:0002180,http://purl.obolibrary.org/obo/CL_0002180,mucous cell of stomach +8.9006436,MONDO:0017742,http://purl.obolibrary.org/obo/MONDO_0017742,disorder of O-xylosylglycan synthesis +8.9012793,GO:0008299,http://purl.obolibrary.org/obo/GO_0008299,isoprenoid biosynthetic process +8.9012793,GO:0050727,http://purl.obolibrary.org/obo/GO_0050727,regulation of inflammatory response +8.9015973,CL:0000508,http://purl.obolibrary.org/obo/CL_0000508,type G enteroendocrine cell +8.9019154,DRUGBANK:DB00763,http://purl.obolibrary.org/obo/DRUGBANK_DB00763,none +8.902552,MONDO:0044346,http://purl.obolibrary.org/obo/MONDO_0044346,echinococcus granulosus infectious disease +8.902552,PR:000004930,http://purl.obolibrary.org/obo/PR_000004930,calcineurin-binding protein cabin-1 +8.902552,UBERON:0001636,http://purl.obolibrary.org/obo/UBERON_0001636,posterior cerebral artery +8.902552,UBERON:0001989,http://purl.obolibrary.org/obo/UBERON_0001989,superior cervical ganglion +8.9035075,MONDO:0002132,http://purl.obolibrary.org/obo/MONDO_0002132,skull cancer +8.9035075,PR:000001158,http://purl.obolibrary.org/obo/PR_000001158,Toll-like receptor 7 +8.9038263,MONDO:0000328,http://purl.obolibrary.org/obo/MONDO_0000328,hyperphosphatemia +8.9038263,MONDO:0018408,http://purl.obolibrary.org/obo/MONDO_0018408,cystic echinococcosis +8.904464,DRUGBANK:DB04930,http://purl.obolibrary.org/obo/DRUGBANK_DB04930,none +8.904464,GO:0001964,http://purl.obolibrary.org/obo/GO_0001964,startle response +8.904464,GO:0051247,http://purl.obolibrary.org/obo/GO_0051247,positive regulation of protein metabolic process +8.904464,MONDO:0002571,http://purl.obolibrary.org/obo/MONDO_0002571,primary central nervous system lymphoma +8.904464,UBERON:0005617,http://purl.obolibrary.org/obo/UBERON_0005617,mesenteric vein +8.9051022,UBERON:0009853,http://purl.obolibrary.org/obo/UBERON_0009853,body of uterus +8.9054214,CHEBI:35554,http://purl.obolibrary.org/obo/CHEBI_35554,cardiovascular drug +8.9054214,PR:000022045,http://purl.obolibrary.org/obo/PR_000022045,none +8.9057407,DRUGBANK:DB11342,http://purl.obolibrary.org/obo/DRUGBANK_DB11342,none +8.9057407,GO:0016604,http://purl.obolibrary.org/obo/GO_0016604,nuclear body +8.9057407,MONDO:0043726,http://purl.obolibrary.org/obo/MONDO_0043726,multiple organ dysfunction syndrome +8.9060602,UBERON:0001584,http://purl.obolibrary.org/obo/UBERON_0001584,left subclavian artery +8.9063797,DRUGBANK:DB00481,http://purl.obolibrary.org/obo/DRUGBANK_DB00481,none +8.9063797,DRUGBANK:DB01420,http://purl.obolibrary.org/obo/DRUGBANK_DB01420,none +8.9070191,PR:000014363,http://purl.obolibrary.org/obo/PR_000014363,protein CBFA2T1 +8.907339,CHEBI:27027,http://purl.obolibrary.org/obo/CHEBI_27027,micronutrient +8.907339,DRUGBANK:DB07301,http://purl.obolibrary.org/obo/DRUGBANK_DB07301,none +8.907339,GO:0051213,http://purl.obolibrary.org/obo/GO_0051213,dioxygenase activity +8.907339,HP:0003077,http://purl.obolibrary.org/obo/HP_0003077,Hyperlipidemia +8.9076589,PR:000007920,http://purl.obolibrary.org/obo/PR_000007920,growth/differentiation factor 15 +8.907979,CL:0002253,http://purl.obolibrary.org/obo/CL_0002253,epithelial cell of large intestine +8.9082991,UBERON:0006799,http://purl.obolibrary.org/obo/UBERON_0006799,glandular epithelium +8.9086194,UBERON:0016634,http://purl.obolibrary.org/obo/UBERON_0016634,premotor cortex +8.9089397,MONDO:0006687,http://purl.obolibrary.org/obo/MONDO_0006687,burning mouth syndrome +8.9089397,MONDO:0015254,http://purl.obolibrary.org/obo/MONDO_0015254,schistosomiasis +8.9089397,UBERON:0007497,http://purl.obolibrary.org/obo/UBERON_0007497,none +8.9092602,CL:0011108,http://purl.obolibrary.org/obo/CL_0011108,colon epithelial cell +8.9092602,DRUGBANK:DB11461,http://purl.obolibrary.org/obo/DRUGBANK_DB11461,none +8.9092602,GO:0032270,http://purl.obolibrary.org/obo/GO_0032270,positive regulation of cellular protein metabolic process +8.9095808,UBERON:0003708,http://purl.obolibrary.org/obo/UBERON_0003708,carotid sinus +8.9099014,GO:0044441,http://purl.obolibrary.org/obo/GO_0044441,none +8.9099014,PR:000001923,http://purl.obolibrary.org/obo/PR_000001923,receptor-type tyrosine-protein kinase Tie +8.9102222,DRUGBANK:DB13953,http://purl.obolibrary.org/obo/DRUGBANK_DB13953,none +8.9102222,MONDO:0002048,http://purl.obolibrary.org/obo/MONDO_0002048,thrombocytopenia due to immune destruction +8.910864,MONDO:0019312,http://purl.obolibrary.org/obo/MONDO_0019312,Hermansky-Pudlak syndrome +8.9111851,UBERON:0002017,http://purl.obolibrary.org/obo/UBERON_0002017,portal vein +8.9111851,UBERON:4000059,http://purl.obolibrary.org/obo/UBERON_4000059,avascular GAG-rich matrix +8.9115063,MONDO:0017260,http://purl.obolibrary.org/obo/MONDO_0017260,systemic diseases with posterior uveitis +8.9115063,MONDO:0021258,http://purl.obolibrary.org/obo/MONDO_0021258,choroid neoplasm +8.9118276,CHEBI:50566,http://purl.obolibrary.org/obo/CHEBI_50566,nitric oxide donor +8.912149,UBERON:0002328,http://purl.obolibrary.org/obo/UBERON_0002328,notochord +8.9127921,GO:0004383,http://purl.obolibrary.org/obo/GO_0004383,guanylate cyclase activity +8.9127921,PR:000001975,http://purl.obolibrary.org/obo/PR_000001975,voltage-gated sodium channel subunit alpha +8.9127921,PR:000044660,http://purl.obolibrary.org/obo/PR_000044660,voltage-gated sodium channel protein +8.9131138,GO:0016799,http://purl.obolibrary.org/obo/GO_0016799,"hydrolase activity, hydrolyzing N-glycosyl compounds" +8.9131138,MONDO:0003036,http://purl.obolibrary.org/obo/MONDO_0003036,mucoepidermoid carcinoma +8.9131138,NCBITaxon:1653394,http://purl.obolibrary.org/obo/NCBITaxon_1653394,Mammarenavirus +8.9131138,UBERON:0005169,http://purl.obolibrary.org/obo/UBERON_0005169,interstitial tissue +8.9134356,CL:0001031,http://purl.obolibrary.org/obo/CL_0001031,cerebellar granule cell +8.9134356,GO:0060076,http://purl.obolibrary.org/obo/GO_0060076,excitatory synapse +8.9137575,HP:0011122,http://purl.obolibrary.org/obo/HP_0011122,Abnormality of skin physiology +8.9137575,PR:000009766,http://purl.obolibrary.org/obo/PR_000009766,galectin-1 +8.9140795,CHEBI:33692,http://purl.obolibrary.org/obo/CHEBI_33692,hydrides +8.9140795,DRUGBANK:DB00497,http://purl.obolibrary.org/obo/DRUGBANK_DB00497,none +8.9140795,GO:0008237,http://purl.obolibrary.org/obo/GO_0008237,metallopeptidase activity +8.9140795,GO:0042692,http://purl.obolibrary.org/obo/GO_0042692,muscle cell differentiation +8.9144016,PR:000016935,http://purl.obolibrary.org/obo/PR_000016935,none +8.9147238,DRUGBANK:DB04329,http://purl.obolibrary.org/obo/DRUGBANK_DB04329,none +8.9147238,GO:0071900,http://purl.obolibrary.org/obo/GO_0071900,regulation of protein serine/threonine kinase activity +8.9147238,MONDO:0011786,http://purl.obolibrary.org/obo/MONDO_0011786,allergic rhinitis +8.9147238,UBERON:0003589,http://purl.obolibrary.org/obo/UBERON_0003589,hindlimb connective tissue +8.9150461,GO:0008170,http://purl.obolibrary.org/obo/GO_0008170,N-methyltransferase activity +8.9150461,MONDO:0005278,http://purl.obolibrary.org/obo/MONDO_0005278,serous adenocarcinoma +8.9150461,MONDO:0005944,http://purl.obolibrary.org/obo/MONDO_0005944,Rhabdoviridae infectious disease +8.9150461,MONDO:0025028,http://purl.obolibrary.org/obo/MONDO_0025028,vesicular stomatitis +8.9150461,PR:000006867,http://purl.obolibrary.org/obo/PR_000006867,transcription factor COE2 +8.9153686,GO:0106130,http://purl.obolibrary.org/obo/GO_0106130,purine phosphoribosyltransferase activity +8.9160137,MONDO:0015180,http://purl.obolibrary.org/obo/MONDO_0015180,intestinal disease due to fat malabsorption +8.9160137,SO:0002051,http://purl.obolibrary.org/obo/SO_0002051,inducible_promoter +8.9166593,DRUGBANK:DB00230,http://purl.obolibrary.org/obo/DRUGBANK_DB00230,none +8.9173053,CHEBI:48422,http://purl.obolibrary.org/obo/CHEBI_48422,angiogenesis inhibitor +8.9176284,NCBITaxon:12195,http://purl.obolibrary.org/obo/NCBITaxon_12195,none +8.9179517,CHEBI:33708,http://purl.obolibrary.org/obo/CHEBI_33708,amino-acid residue +8.9179517,MONDO:0001529,http://purl.obolibrary.org/obo/MONDO_0001529,pancytopenia +8.9179517,MONDO:0010434,http://purl.obolibrary.org/obo/MONDO_0010434,synovial sarcoma +8.9179517,MONDO:0056798,http://purl.obolibrary.org/obo/MONDO_0056798,disorder of appendix +8.9182751,SO:0001496,http://purl.obolibrary.org/obo/SO_0001496,telomeric_repeat +8.9192458,DRUGBANK:DB01564,http://purl.obolibrary.org/obo/DRUGBANK_DB01564,none +8.9192458,DRUGBANK:DB14377,http://purl.obolibrary.org/obo/DRUGBANK_DB14377,none +8.9192458,MONDO:0015081,http://purl.obolibrary.org/obo/MONDO_0015081,neuroendocrine tumor with other location +8.9195696,MONDO:0005595,http://purl.obolibrary.org/obo/MONDO_0005595,laryngeal squamous cell carcinoma +8.9202174,CL:0002231,http://purl.obolibrary.org/obo/CL_0002231,epithelial cell of prostate +8.9202174,GO:0048872,http://purl.obolibrary.org/obo/GO_0048872,homeostasis of number of cells +8.9205415,UBERON:0004228,http://purl.obolibrary.org/obo/UBERON_0004228,urinary bladder smooth muscle +8.92119,DRUGBANK:DB09324,http://purl.obolibrary.org/obo/DRUGBANK_DB09324,none +8.92119,GO:0016881,http://purl.obolibrary.org/obo/GO_0016881,acid-amino acid ligase activity +8.9215145,PR:000050041,http://purl.obolibrary.org/obo/PR_000050041,delta-like protein +8.921839,DRUGBANK:DB06819,http://purl.obolibrary.org/obo/DRUGBANK_DB06819,none +8.921839,GO:0033014,http://purl.obolibrary.org/obo/GO_0033014,tetrapyrrole biosynthetic process +8.9221636,CL:0000415,http://purl.obolibrary.org/obo/CL_0000415,diploid cell +8.9228132,GO:0010647,http://purl.obolibrary.org/obo/GO_0010647,positive regulation of cell communication +8.9228132,UBERON:0000317,http://purl.obolibrary.org/obo/UBERON_0000317,colonic mucosa +8.9234631,PR:000001673,http://purl.obolibrary.org/obo/PR_000001673,lysophospholipid (S1P) receptor +8.9241135,GO:0070254,http://purl.obolibrary.org/obo/GO_0070254,mucus secretion +8.9244389,DRUGBANK:DB08604,http://purl.obolibrary.org/obo/DRUGBANK_DB08604,none +8.9244389,MONDO:0013600,http://purl.obolibrary.org/obo/MONDO_0013600,insomnia +8.9250899,GO:2001141,http://purl.obolibrary.org/obo/GO_2001141,regulation of RNA biosynthetic process +8.9250899,MONDO:0100094,http://purl.obolibrary.org/obo/MONDO_0100094,cannabinoid hyperemesis syndrome +8.9254156,PR:000001562,http://purl.obolibrary.org/obo/PR_000001562,vasopressin/oxytocin receptor +8.9257414,PR:000007133,http://purl.obolibrary.org/obo/PR_000007133,ephrin type-B receptor 6 +8.9257414,UBERON:0000309,http://purl.obolibrary.org/obo/UBERON_0000309,body wall +8.9260673,PR:000011332,http://purl.obolibrary.org/obo/PR_000011332,neurogenic locus notch homolog protein 2 +8.9263933,PR:000015782,http://purl.obolibrary.org/obo/PR_000015782,dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3A +8.9270456,MONDO:0005307,http://purl.obolibrary.org/obo/MONDO_0005307,contracture +8.9273719,CL:0002063,http://purl.obolibrary.org/obo/CL_0002063,type II pneumocyte +8.9273719,CL:1000272,http://purl.obolibrary.org/obo/CL_1000272,lung secretory cell +8.9273719,UBERON:0015876,http://purl.obolibrary.org/obo/UBERON_0015876,pelvic lymph node +8.9276984,PR:000001352,http://purl.obolibrary.org/obo/PR_000001352,glycophorin +8.9283515,DRUGBANK:DB01136,http://purl.obolibrary.org/obo/DRUGBANK_DB01136,none +8.9293321,CL:0000005,http://purl.obolibrary.org/obo/CL_0000005,fibroblast neural crest derived +8.9293321,CL:0002363,http://purl.obolibrary.org/obo/CL_0002363,keratocyte +8.9293321,MONDO:0015683,http://purl.obolibrary.org/obo/MONDO_0015683,primary malignant peritoneal tumor +8.9293321,PR:000017663,http://purl.obolibrary.org/obo/PR_000017663,zinc fingers and homeoboxes protein 2 +8.9293321,UBERON:0011164,http://purl.obolibrary.org/obo/UBERON_0011164,neurocranium bone +8.9299863,GO:0023056,http://purl.obolibrary.org/obo/GO_0023056,positive regulation of signaling +8.9299863,MONDO:0003587,http://purl.obolibrary.org/obo/MONDO_0003587,pediatric liposarcoma +8.9303136,MONDO:0003585,http://purl.obolibrary.org/obo/MONDO_0003585,adult liposarcoma +8.9303136,PR:000026126,http://purl.obolibrary.org/obo/PR_000026126,eukaryotic serine palmitoyltransferase +8.930641,DRUGBANK:DB00670,http://purl.obolibrary.org/obo/DRUGBANK_DB00670,none +8.930641,DRUGBANK:DB06723,http://purl.obolibrary.org/obo/DRUGBANK_DB06723,none +8.930641,DRUGBANK:DB11195,http://purl.obolibrary.org/obo/DRUGBANK_DB11195,none +8.930641,UBERON:0000326,http://purl.obolibrary.org/obo/UBERON_0000326,pancreatic juice +8.9312961,MONDO:0005724,http://purl.obolibrary.org/obo/MONDO_0005724,cryptococcosis +8.9312961,MONDO:0006406,http://purl.obolibrary.org/obo/MONDO_0006406,sarcomatoid carcinoma +8.9316238,MONDO:0017760,http://purl.obolibrary.org/obo/MONDO_0017760,disorder of other vitamins and cofactors metabolism and transport +8.9319516,DRUGBANK:DB09372,http://purl.obolibrary.org/obo/DRUGBANK_DB09372,none +8.9332639,HP:0000080,http://purl.obolibrary.org/obo/HP_0000080,Abnormality of reproductive system physiology +8.9339208,CL:0002144,http://purl.obolibrary.org/obo/CL_0002144,capillary endothelial cell +8.9339208,PR:P08645,http://purl.obolibrary.org/obo/PR_P08645,none +8.934578,MONDO:0013981,http://purl.obolibrary.org/obo/MONDO_0013981,"myoclonus, familial" +8.9349068,PR:000005615,http://purl.obolibrary.org/obo/PR_000005615,clusterin +8.9352357,SO:0001104,http://purl.obolibrary.org/obo/SO_0001104,catalytic_residue +8.9355647,PR:000007348,http://purl.obolibrary.org/obo/PR_000007348,fatty acid synthase +8.9358938,GO:0016638,http://purl.obolibrary.org/obo/GO_0016638,"oxidoreductase activity, acting on the CH-NH2 group of donors" +8.936223,DRUGBANK:DB01276,http://purl.obolibrary.org/obo/DRUGBANK_DB01276,none +8.936223,PR:000033837,http://purl.obolibrary.org/obo/PR_000033837,none +8.9365523,CHEBI:25696,http://purl.obolibrary.org/obo/CHEBI_25696,organic anion +8.9372113,DRUGBANK:DB14057,http://purl.obolibrary.org/obo/DRUGBANK_DB14057,none +8.9378707,DRUGBANK:DB15050,http://purl.obolibrary.org/obo/DRUGBANK_DB15050,none +8.9385306,HP:0000726,http://purl.obolibrary.org/obo/HP_0000726,Dementia +8.9385306,MONDO:0000382,http://purl.obolibrary.org/obo/MONDO_0000382,respiratory system benign neoplasm +8.9385306,MONDO:0100130,http://purl.obolibrary.org/obo/MONDO_0100130,adult acute respiratory distress syndrome +8.9385306,PR:000013449,http://purl.obolibrary.org/obo/PR_000013449,tyrosine-protein phosphatase non-receptor type 11 +8.9388607,DRUGBANK:DB01544,http://purl.obolibrary.org/obo/DRUGBANK_DB01544,none +8.9388607,DRUGBANK:DB12970,http://purl.obolibrary.org/obo/DRUGBANK_DB12970,none +8.9391909,SO:1000173,http://purl.obolibrary.org/obo/SO_1000173,tandem_duplication +8.9398516,MONDO:0005185,http://purl.obolibrary.org/obo/MONDO_0005185,chronic childhood arthritis +8.9401821,CHEBI:50739,http://purl.obolibrary.org/obo/CHEBI_50739,estrogen receptor modulator +8.9401821,GO:0016406,http://purl.obolibrary.org/obo/GO_0016406,carnitine O-acyltransferase activity +8.9401821,GO:1903530,http://purl.obolibrary.org/obo/GO_1903530,regulation of secretion by cell +8.9401821,MONDO:0018284,http://purl.obolibrary.org/obo/MONDO_0018284,congenital disorder of glycosylation with neurological involvement +8.9405127,PR:000000363,http://purl.obolibrary.org/obo/PR_000000363,smad1 +8.9408435,DRUGBANK:DB08653,http://purl.obolibrary.org/obo/DRUGBANK_DB08653,none +8.9418364,CHEBI:48876,http://purl.obolibrary.org/obo/CHEBI_48876,muscarinic antagonist +8.9418364,GO:0008206,http://purl.obolibrary.org/obo/GO_0008206,bile acid metabolic process +8.9418364,GO:0039703,http://purl.obolibrary.org/obo/GO_0039703,RNA replication +8.9424988,UBERON:0000333,http://purl.obolibrary.org/obo/UBERON_0000333,intestinal gland +8.9428302,MONDO:0018158,http://purl.obolibrary.org/obo/MONDO_0018158,mitochondrial DNA depletion syndrome +8.9431617,DRUGBANK:DB00943,http://purl.obolibrary.org/obo/DRUGBANK_DB00943,none +8.9431617,PR:000008224,http://purl.obolibrary.org/obo/PR_000008224,growth factor receptor-bound protein 2 +8.9434934,GO:0004509,http://purl.obolibrary.org/obo/GO_0004509,steroid 21-monooxygenase activity +8.9434934,MONDO:0005391,http://purl.obolibrary.org/obo/MONDO_0005391,restless legs syndrome +8.9434934,PR:000015400,http://purl.obolibrary.org/obo/PR_000015400,"superoxide dismutase [Mn], mitochondrial" +8.9438251,GO:0003341,http://purl.obolibrary.org/obo/GO_0003341,cilium movement +8.9438251,PR:000002124,http://purl.obolibrary.org/obo/PR_000002124,C-C motif chemokine 4 +8.9448209,GO:0010970,http://purl.obolibrary.org/obo/GO_0010970,transport along microtubule +8.9448209,PR:000016089,http://purl.obolibrary.org/obo/PR_000016089,tyrosine aminotransferase +8.9451531,GO:0030139,http://purl.obolibrary.org/obo/GO_0030139,endocytic vesicle +8.9454854,DRUGBANK:DB00228,http://purl.obolibrary.org/obo/DRUGBANK_DB00228,none +8.9454854,DRUGBANK:DB11009,http://purl.obolibrary.org/obo/DRUGBANK_DB11009,none +8.9464829,CHEBI:51217,http://purl.obolibrary.org/obo/CHEBI_51217,fluorochrome +8.9464829,MONDO:0008300,http://purl.obolibrary.org/obo/MONDO_0008300,Prader-Willi syndrome +8.9464829,MONDO:0100093,http://purl.obolibrary.org/obo/MONDO_0100093,"myoclonus, familial, 1" +8.9468156,GO:0030705,http://purl.obolibrary.org/obo/GO_0030705,cytoskeleton-dependent intracellular transport +8.9468156,GO:0099111,http://purl.obolibrary.org/obo/GO_0099111,microtubule-based transport +8.9468156,MONDO:0010707,http://purl.obolibrary.org/obo/MONDO_0010707,Paine syndrome +8.9471485,DRUGBANK:DB11346,http://purl.obolibrary.org/obo/DRUGBANK_DB11346,none +8.9471485,GO:0072676,http://purl.obolibrary.org/obo/GO_0072676,lymphocyte migration +8.9471485,HP:0001663,http://purl.obolibrary.org/obo/HP_0001663,Ventricular fibrillation +8.9474814,UBERON:0005409,http://purl.obolibrary.org/obo/UBERON_0005409,alimentary part of gastrointestinal system +8.9478145,MONDO:0018896,http://purl.obolibrary.org/obo/MONDO_0018896,thrombotic thrombocytopenic purpura +8.9481476,PR:Q9DGD9,http://purl.obolibrary.org/obo/PR_Q9DGD9,none +8.9488143,CHEBI:50913,http://purl.obolibrary.org/obo/CHEBI_50913,fixative +8.9488143,PR:000024130,http://purl.obolibrary.org/obo/PR_000024130,none +8.9494814,GO:0004969,http://purl.obolibrary.org/obo/GO_0004969,histamine receptor activity +8.9494814,MONDO:0016628,http://purl.obolibrary.org/obo/MONDO_0016628,hemorrhagic disorder due to a coagulation factors defect +8.9494814,MONDO:0044751,http://purl.obolibrary.org/obo/MONDO_0044751,chronic diarrheal disease +8.9498151,HP:0000113,http://purl.obolibrary.org/obo/HP_0000113,Polycystic kidney dysplasia +8.9498151,PR:000013345,http://purl.obolibrary.org/obo/PR_000013345,presenilin-2 +8.9498151,PR:000022256,http://purl.obolibrary.org/obo/PR_000022256,none +8.9498151,UBERON:0002523,http://purl.obolibrary.org/obo/UBERON_0002523,tunica intima +8.9504829,GO:0016743,http://purl.obolibrary.org/obo/GO_0016743,carboxyl- or carbamoyltransferase activity +8.9504829,PR:Q93V93,http://purl.obolibrary.org/obo/PR_Q93V93,none +8.9504829,UBERON:0001713,http://purl.obolibrary.org/obo/UBERON_0001713,lower eyelid +8.950817,GO:0009967,http://purl.obolibrary.org/obo/GO_0009967,positive regulation of signal transduction +8.950817,UBERON:0003823,http://purl.obolibrary.org/obo/UBERON_0003823,hindlimb zeugopod +8.9511511,DRUGBANK:DB00626,http://purl.obolibrary.org/obo/DRUGBANK_DB00626,none +8.9511511,DRUGBANK:DB15537,http://purl.obolibrary.org/obo/DRUGBANK_DB15537,none +8.9511511,PR:000002065,http://purl.obolibrary.org/obo/PR_000002065,mast/stem cell growth factor receptor +8.9511511,PR:000012318,http://purl.obolibrary.org/obo/PR_000012318,paired box protein Pax-6 +8.9514854,DRUGBANK:DB10541,http://purl.obolibrary.org/obo/DRUGBANK_DB10541,none +8.9514854,DRUGBANK:DB11176,http://purl.obolibrary.org/obo/DRUGBANK_DB11176,none +8.9521543,MONDO:0011366,http://purl.obolibrary.org/obo/MONDO_0011366,ovarian germ cell tumor +8.9524889,DRUGBANK:DB01205,http://purl.obolibrary.org/obo/DRUGBANK_DB01205,none +8.9528237,GO:0051347,http://purl.obolibrary.org/obo/GO_0051347,positive regulation of transferase activity +8.9531585,PR:000003558,http://purl.obolibrary.org/obo/PR_000003558,ATP-binding cassette sub-family C member 2 +8.9531585,SO:0000285,http://purl.obolibrary.org/obo/SO_0000285,foreign_gene +8.9541637,DRUGBANK:DB06515,http://purl.obolibrary.org/obo/DRUGBANK_DB06515,none +8.9541637,MONDO:0001436,http://purl.obolibrary.org/obo/MONDO_0001436,hemosiderosis +8.9541637,MONDO:0016231,http://purl.obolibrary.org/obo/MONDO_0016231,capillary malformation +8.9541637,PR:000008555,http://purl.obolibrary.org/obo/PR_000008555,hypoxia-inducible factor 1-alpha +8.9555055,CL:0000711,http://purl.obolibrary.org/obo/CL_0000711,cumulus cell +8.9558413,GO:0004687,http://purl.obolibrary.org/obo/GO_0004687,myosin light chain kinase activity +8.9558413,GO:0061505,http://purl.obolibrary.org/obo/GO_0061505,none +8.9561771,CL:0000519,http://purl.obolibrary.org/obo/CL_0000519,phagocyte (sensu Nematoda and Protostomia) +8.9561771,DRUGBANK:DB06812,http://purl.obolibrary.org/obo/DRUGBANK_DB06812,none +8.9571853,GO:0062012,http://purl.obolibrary.org/obo/GO_0062012,regulation of small molecule metabolic process +8.9571853,MONDO:0009975,http://purl.obolibrary.org/obo/MONDO_0009975,reticulum cell sarcoma +8.9575216,PR:P22711,http://purl.obolibrary.org/obo/PR_P22711,none +8.9578581,GO:0043073,http://purl.obolibrary.org/obo/GO_0043073,germ cell nucleus +8.9581946,GO:0004470,http://purl.obolibrary.org/obo/GO_0004470,malic enzyme activity +8.9581946,GO:0045125,http://purl.obolibrary.org/obo/GO_0045125,bioactive lipid receptor activity +8.9581946,PR:000029233,http://purl.obolibrary.org/obo/PR_000029233,none +8.9585312,MONDO:0000565,http://purl.obolibrary.org/obo/MONDO_0000565,infective endocarditis +8.958868,CHEBI:38161,http://purl.obolibrary.org/obo/CHEBI_38161,chelator +8.958868,PR:000011241,http://purl.obolibrary.org/obo/PR_000011241,homeobox protein Nkx-2.1 +8.9595418,DRUGBANK:DB00724,http://purl.obolibrary.org/obo/DRUGBANK_DB00724,none +8.9598789,MONDO:0005280,http://purl.obolibrary.org/obo/MONDO_0005280,prostatitis +8.9605535,GO:0000151,http://purl.obolibrary.org/obo/GO_0000151,ubiquitin ligase complex +8.9605535,MONDO:0005625,http://purl.obolibrary.org/obo/MONDO_0005625,cerebral malaria +8.9605535,PR:000001002,http://purl.obolibrary.org/obo/PR_000001002,CD19 molecule +8.9608909,GO:0031960,http://purl.obolibrary.org/obo/GO_0031960,response to corticosteroid +8.9608909,PR:000014166,http://purl.obolibrary.org/obo/PR_000014166,oxygen-regulated protein 1 +8.9612285,GO:0001539,http://purl.obolibrary.org/obo/GO_0001539,cilium or flagellum-dependent cell motility +8.9612285,GO:0030055,http://purl.obolibrary.org/obo/GO_0030055,cell-substrate junction +8.9612285,GO:0030317,http://purl.obolibrary.org/obo/GO_0030317,flagellated sperm motility +8.9612285,GO:0060285,http://purl.obolibrary.org/obo/GO_0060285,cilium-dependent cell motility +8.9612285,GO:0060294,http://purl.obolibrary.org/obo/GO_0060294,cilium movement involved in cell motility +8.9612285,GO:0097722,http://purl.obolibrary.org/obo/GO_0097722,sperm motility +8.9612285,MONDO:0001084,http://purl.obolibrary.org/obo/MONDO_0001084,primary optic atrophy +8.9615661,MONDO:0018381,http://purl.obolibrary.org/obo/MONDO_0018381,osteochondrosis +8.9615661,PR:000001967,http://purl.obolibrary.org/obo/PR_000001967,TEC-type tyrosine-protein kinase +8.9615661,PR:P04412,http://purl.obolibrary.org/obo/PR_P04412,none +8.9619039,MONDO:0006314,http://purl.obolibrary.org/obo/MONDO_0006314,nasal cavity polyp +8.9622418,MONDO:0024626,http://purl.obolibrary.org/obo/MONDO_0024626,defective phagocytic cell engulfment +8.9625798,DRUGBANK:DB01435,http://purl.obolibrary.org/obo/DRUGBANK_DB01435,none +8.9625798,GO:0047979,http://purl.obolibrary.org/obo/GO_0047979,hexose oxidase activity +8.9625798,SO:0002160,http://purl.obolibrary.org/obo/SO_0002160,sequence_length_variant +8.9629179,GO:0043408,http://purl.obolibrary.org/obo/GO_0043408,regulation of MAPK cascade +8.9629179,MONDO:0020696,http://purl.obolibrary.org/obo/MONDO_0020696,vitamin B12 deficiency +8.9635945,DRUGBANK:DB00822,http://purl.obolibrary.org/obo/DRUGBANK_DB00822,none +8.9635945,MONDO:0018868,http://purl.obolibrary.org/obo/MONDO_0018868,metachromatic leukodystrophy +8.9642716,MONDO:0005569,http://purl.obolibrary.org/obo/MONDO_0005569,cartilage disease +8.9642716,MONDO:0005620,http://purl.obolibrary.org/obo/MONDO_0005620,cerebral amyloid angiopathy +8.9642716,PR:000008187,http://purl.obolibrary.org/obo/PR_000008187,"solute carrier family 52, riboflavin transporter, member 2" +8.9642716,PR:000008603,http://purl.obolibrary.org/obo/PR_000008603,histone H4 +8.9642716,PR:000029951,http://purl.obolibrary.org/obo/PR_000029951,glutathione S-transferase theta +8.9646103,DRUGBANK:DB01413,http://purl.obolibrary.org/obo/DRUGBANK_DB01413,none +8.9646103,MONDO:0004553,http://purl.obolibrary.org/obo/MONDO_0004553,extrinsic allergic alveolitis +8.9649491,CL:0000575,http://purl.obolibrary.org/obo/CL_0000575,corneal epithelial cell +8.9649491,DRUGBANK:DB00291,http://purl.obolibrary.org/obo/DRUGBANK_DB00291,none +8.9649491,GO:0046562,http://purl.obolibrary.org/obo/GO_0046562,glucose oxidase activity +8.9649491,UBERON:0001495,http://purl.obolibrary.org/obo/UBERON_0001495,pectoral muscle +8.965288,MONDO:0017774,http://purl.obolibrary.org/obo/MONDO_0017774,hypobetalipoproteinemia +8.9656271,UBERON:0008196,http://purl.obolibrary.org/obo/UBERON_0008196,muscle of pectoral girdle +8.9659662,GO:0046785,http://purl.obolibrary.org/obo/GO_0046785,microtubule polymerization +8.9659662,UBERON:0002015,http://purl.obolibrary.org/obo/UBERON_0002015,kidney capsule +8.9663055,CHEBI:26835,http://purl.obolibrary.org/obo/CHEBI_26835,sulfur molecular entity +8.9663055,HP:0008056,http://purl.obolibrary.org/obo/HP_0008056,Aplasia/Hypoplasia affecting the eye +8.9666449,MONDO:0004728,http://purl.obolibrary.org/obo/MONDO_0004728,diabetic macular edema +8.9666449,PR:P38931,http://purl.obolibrary.org/obo/PR_P38931,none +8.9669844,CHEBI:36358,http://purl.obolibrary.org/obo/CHEBI_36358,polyatomic ion +8.9669844,DRUGBANK:DB00883,http://purl.obolibrary.org/obo/DRUGBANK_DB00883,none +8.967324,GO:0042711,http://purl.obolibrary.org/obo/GO_0042711,maternal behavior +8.967324,PR:000000022,http://purl.obolibrary.org/obo/PR_000000022,ptx homeobox protein +8.967324,PR:000002139,http://purl.obolibrary.org/obo/PR_000002139,eotaxin +8.967324,PR:000016318,http://purl.obolibrary.org/obo/PR_000016318,thrombopoietin +8.967324,PR:000024112,http://purl.obolibrary.org/obo/PR_000024112,none +8.9680036,MONDO:0016808,http://purl.obolibrary.org/obo/MONDO_0016808,"mitochondrial DNA depletion syndrome, hepatocerebral form" +8.9680036,PR:000008026,http://purl.obolibrary.org/obo/PR_000008026,zinc finger protein GLI1 +8.9683435,DRUGBANK:DB04539,http://purl.obolibrary.org/obo/DRUGBANK_DB04539,none +8.9690238,DRUGBANK:DB10538,http://purl.obolibrary.org/obo/DRUGBANK_DB10538,none +8.9690238,MONDO:0003330,http://purl.obolibrary.org/obo/MONDO_0003330,urinary tract obstruction +8.9690238,PR:000001926,http://purl.obolibrary.org/obo/PR_000001926,semaphorin +8.9690238,UBERON:0022361,http://purl.obolibrary.org/obo/UBERON_0022361,lung field +8.9693641,GO:0006775,http://purl.obolibrary.org/obo/GO_0006775,fat-soluble vitamin metabolic process +8.9693641,GO:0016615,http://purl.obolibrary.org/obo/GO_0016615,malate dehydrogenase activity +8.9693641,MONDO:0019210,http://purl.obolibrary.org/obo/MONDO_0019210,cutaneous neuroendocrine carcinoma +8.9697045,GO:0042398,http://purl.obolibrary.org/obo/GO_0042398,cellular modified amino acid biosynthetic process +8.9697045,NCBITaxon:140052,http://purl.obolibrary.org/obo/NCBITaxon_140052,none +8.9700451,GO:0060548,http://purl.obolibrary.org/obo/GO_0060548,negative regulation of cell death +8.9700451,HP:0001909,http://purl.obolibrary.org/obo/HP_0001909,Leukemia +8.9700451,MONDO:0003783,http://purl.obolibrary.org/obo/MONDO_0003783,lymphopenia +8.9703857,DRUGBANK:DB06691,http://purl.obolibrary.org/obo/DRUGBANK_DB06691,none +8.9703857,MONDO:0004983,http://purl.obolibrary.org/obo/MONDO_0004983,azoospermia +8.9707265,MONDO:0016370,http://purl.obolibrary.org/obo/MONDO_0016370,Marchiafava-Bignami disease +8.9707265,PR:Q96519,http://purl.obolibrary.org/obo/PR_Q96519,none +8.9710674,DRUGBANK:DB01783,http://purl.obolibrary.org/obo/DRUGBANK_DB01783,none +8.9710674,MONDO:0016587,http://purl.obolibrary.org/obo/MONDO_0016587,arrhythmogenic right ventricular cardiomyopathy +8.9714084,MONDO:0016058,http://purl.obolibrary.org/obo/MONDO_0016058,paroxysmal dystonia +8.9717495,GO:0050432,http://purl.obolibrary.org/obo/GO_0050432,catecholamine secretion +8.9717495,PR:000001821,http://purl.obolibrary.org/obo/PR_000001821,MHC class II histocompatibility antigen beta chain +8.9717495,PR:000014144,http://purl.obolibrary.org/obo/PR_000014144,mRNA cap guanine-N7 methyltransferase +8.9717495,PR:P19880,http://purl.obolibrary.org/obo/PR_P19880,none +8.9720908,GO:0016803,http://purl.obolibrary.org/obo/GO_0016803,ether hydrolase activity +8.9720908,MONDO:0021335,http://purl.obolibrary.org/obo/MONDO_0021335,carcinoma of duodenum +8.9724321,UBERON:0002524,http://purl.obolibrary.org/obo/UBERON_0002524,mediastinal lymph node +8.9731152,SO:0001784,http://purl.obolibrary.org/obo/SO_0001784,complex_structural_alteration +8.9734569,GO:0031401,http://purl.obolibrary.org/obo/GO_0031401,positive regulation of protein modification process +8.9737987,GO:0043405,http://purl.obolibrary.org/obo/GO_0043405,regulation of MAP kinase activity +8.9737987,PR:000015291,http://purl.obolibrary.org/obo/PR_000015291,spermine oxidase +8.9737987,SO:0002062,http://purl.obolibrary.org/obo/SO_0002062,complex_chromosomal_rearrangement +8.9741406,GO:0004021,http://purl.obolibrary.org/obo/GO_0004021,L-alanine:2-oxoglutarate aminotransferase activity +8.9741406,GO:0047635,http://purl.obolibrary.org/obo/GO_0047635,alanine-oxo-acid transaminase activity +8.9741406,PR:000003906,http://purl.obolibrary.org/obo/PR_000003906,aldo-keto reductase family 1 member C4 +8.9748249,MONDO:0043878,http://purl.obolibrary.org/obo/MONDO_0043878,hereditary optic atrophy +8.9748249,PR:000002308,http://purl.obolibrary.org/obo/PR_000002308,Bcl-2-like protein 1 +8.9748249,PR:Q1MTN7,http://purl.obolibrary.org/obo/PR_Q1MTN7,none +8.9751672,PR:000005178,http://purl.obolibrary.org/obo/PR_000005178,CD9 molecule +8.9755096,MONDO:0004600,http://purl.obolibrary.org/obo/MONDO_0004600,monocytic leukemia +8.9775665,PR:000023158,http://purl.obolibrary.org/obo/PR_000023158,none +8.9785965,PR:000002032,http://purl.obolibrary.org/obo/PR_000002032,angiopoietin-1 receptor +8.9789401,UBERON:0010712,http://purl.obolibrary.org/obo/UBERON_0010712,limb skeleton subdivision +8.9792838,UBERON:0001983,http://purl.obolibrary.org/obo/UBERON_0001983,crypt of Lieberkuhn +8.9792838,UBERON:0006618,http://purl.obolibrary.org/obo/UBERON_0006618,atrium auricular region +8.9796276,CHEBI:60788,http://purl.obolibrary.org/obo/CHEBI_60788,affinity label +8.9796276,MONDO:0004779,http://purl.obolibrary.org/obo/MONDO_0004779,epididymitis +8.9796276,MONDO:0019015,http://purl.obolibrary.org/obo/MONDO_0019015,omphalocele +8.9799716,DRUGBANK:DB01488,http://purl.obolibrary.org/obo/DRUGBANK_DB01488,none +8.9799716,GO:0001674,http://purl.obolibrary.org/obo/GO_0001674,female germ cell nucleus +8.9799716,GO:0006693,http://purl.obolibrary.org/obo/GO_0006693,prostaglandin metabolic process +8.9799716,GO:0042585,http://purl.obolibrary.org/obo/GO_0042585,germinal vesicle +8.9803156,PR:000004984,http://purl.obolibrary.org/obo/PR_000004984,calreticulin +8.9806598,PR:000001444,http://purl.obolibrary.org/obo/PR_000001444,cadherin-5 +8.9810041,DRUGBANK:DB00513,http://purl.obolibrary.org/obo/DRUGBANK_DB00513,none +8.9813485,GO:0031984,http://purl.obolibrary.org/obo/GO_0031984,organelle subcompartment +8.9813485,NCBITaxon:11046,http://purl.obolibrary.org/obo/NCBITaxon_11046,None +8.981693,PR:000009364,http://purl.obolibrary.org/obo/PR_000009364,krueppel-like factor 4 +8.9823825,DRUGBANK:DB01440,http://purl.obolibrary.org/obo/DRUGBANK_DB01440,none +8.9823825,DRUGBANK:DB06799,http://purl.obolibrary.org/obo/DRUGBANK_DB06799,none +8.9827273,GO:0033043,http://purl.obolibrary.org/obo/GO_0033043,regulation of organelle organization +8.9827273,MONDO:0001068,http://purl.obolibrary.org/obo/MONDO_0001068,osteomalacia +8.9827273,NCBITaxon:76803,http://purl.obolibrary.org/obo/NCBITaxon_76803,Arteriviridae +8.9830723,MONDO:0009623,http://purl.obolibrary.org/obo/MONDO_0009623,Nijmegen breakage syndrome +8.9830723,NCBITaxon:2499398,http://purl.obolibrary.org/obo/NCBITaxon_2499398,Arnidovirineae +8.9830723,PR:Q9VER6,http://purl.obolibrary.org/obo/PR_Q9VER6,none +8.9834175,DRUGBANK:DB11831,http://purl.obolibrary.org/obo/DRUGBANK_DB11831,none +8.9834175,GO:0001934,http://purl.obolibrary.org/obo/GO_0001934,positive regulation of protein phosphorylation +8.9834175,MONDO:0002071,http://purl.obolibrary.org/obo/MONDO_0002071,supratentorial cancer +8.9841081,DRUGBANK:DB12117,http://purl.obolibrary.org/obo/DRUGBANK_DB12117,none +8.9841081,GO:0042180,http://purl.obolibrary.org/obo/GO_0042180,cellular ketone metabolic process +8.9841081,GO:0044215,http://purl.obolibrary.org/obo/GO_0044215,none +8.9841081,UBERON:0008408,http://purl.obolibrary.org/obo/UBERON_0008408,distal tubular epithelium +8.9847992,GO:0033674,http://purl.obolibrary.org/obo/GO_0033674,positive regulation of kinase activity +8.9854907,DRUGBANK:DB00887,http://purl.obolibrary.org/obo/DRUGBANK_DB00887,none +8.9854907,GO:0016571,http://purl.obolibrary.org/obo/GO_0016571,histone methylation +8.9858367,DRUGBANK:DB11477,http://purl.obolibrary.org/obo/DRUGBANK_DB11477,none +8.9858367,MONDO:0025494,http://purl.obolibrary.org/obo/MONDO_0025494,porcine reproductive and respiratory syndrome +8.9858367,PR:Q9C8G9,http://purl.obolibrary.org/obo/PR_Q9C8G9,none +8.9861828,GO:0045860,http://purl.obolibrary.org/obo/GO_0045860,positive regulation of protein kinase activity +8.9861828,PR:000008652,http://purl.obolibrary.org/obo/PR_000008652,hepatocyte nuclear factor 1-alpha +8.986529,GO:0005152,http://purl.obolibrary.org/obo/GO_0005152,interleukin-1 receptor antagonist activity +8.986529,GO:0019838,http://purl.obolibrary.org/obo/GO_0019838,growth factor binding +8.986529,GO:0019955,http://purl.obolibrary.org/obo/GO_0019955,cytokine binding +8.986529,GO:0019966,http://purl.obolibrary.org/obo/GO_0019966,interleukin-1 binding +8.986529,MONDO:0005608,http://purl.obolibrary.org/obo/MONDO_0005608,varicella zoster infection +8.9868753,PR:000008805,http://purl.obolibrary.org/obo/PR_000008805,heat shock 70 kDa protein 14 +8.9875683,UBERON:0006569,http://purl.obolibrary.org/obo/UBERON_0006569,diencephalic nucleus +8.987915,MONDO:0019369,http://purl.obolibrary.org/obo/MONDO_0019369,complex regional pain syndrome +8.9882618,PR:000012440,http://purl.obolibrary.org/obo/PR_000012440,proprotein convertase subtilisin/kexin type 9 +8.9886087,CL:0000132,http://purl.obolibrary.org/obo/CL_0000132,corneal endothelial cell +8.9886087,DRUGBANK:DB12859,http://purl.obolibrary.org/obo/DRUGBANK_DB12859,none +8.9889557,MONDO:0008758,http://purl.obolibrary.org/obo/MONDO_0008758,mitochondrial DNA depletion syndrome 4a +8.9889557,PR:Q54XY4,http://purl.obolibrary.org/obo/PR_Q54XY4,none +8.9896502,MONDO:0020117,http://purl.obolibrary.org/obo/MONDO_0020117,alpha granule disease +8.9896502,MONDO:0020217,http://purl.obolibrary.org/obo/MONDO_0020217,secondary dysgenetic glaucoma associated with neural crest cell migration anomaly +8.9899976,GO:1903506,http://purl.obolibrary.org/obo/GO_1903506,regulation of nucleic acid-templated transcription +8.9903451,DRUGBANK:DB01575,http://purl.obolibrary.org/obo/DRUGBANK_DB01575,none +8.9903451,GO:0006355,http://purl.obolibrary.org/obo/GO_0006355,"regulation of transcription, DNA-templated" +8.9903451,GO:0043069,http://purl.obolibrary.org/obo/GO_0043069,negative regulation of programmed cell death +8.9910405,DRUGBANK:DB00554,http://purl.obolibrary.org/obo/DRUGBANK_DB00554,none +8.9913884,GO:0009072,http://purl.obolibrary.org/obo/GO_0009072,aromatic amino acid family metabolic process +8.9913884,MONDO:0005835,http://purl.obolibrary.org/obo/MONDO_0005835,Lynch syndrome +8.9913884,PR:Q9SI16,http://purl.obolibrary.org/obo/PR_Q9SI16,none +8.9917364,DRUGBANK:DB09472,http://purl.obolibrary.org/obo/DRUGBANK_DB09472,none +8.9917364,SO:0000149,http://purl.obolibrary.org/obo/SO_0000149,contig +8.9920845,GO:0032147,http://purl.obolibrary.org/obo/GO_0032147,activation of protein kinase activity +8.9920845,MONDO:0001639,http://purl.obolibrary.org/obo/MONDO_0001639,deficiency anemia +8.9920845,NCBITaxon:208896,http://purl.obolibrary.org/obo/NCBITaxon_208896,none +8.9931297,SO:0000185,http://purl.obolibrary.org/obo/SO_0000185,primary_transcript +8.9941759,UBERON:0002345,http://purl.obolibrary.org/obo/UBERON_0002345,descending thoracic aorta +8.9945248,UBERON:0001739,http://purl.obolibrary.org/obo/UBERON_0001739,laryngeal cartilage +8.9952232,HP:0011123,http://purl.obolibrary.org/obo/HP_0011123,Inflammatory abnormality of the skin +8.9952232,HP:0100887,http://purl.obolibrary.org/obo/HP_0100887,Abnormality of globe size +8.9952232,MONDO:0001243,http://purl.obolibrary.org/obo/MONDO_0001243,disseminated intravascular coagulation +8.9955725,MONDO:0006143,http://purl.obolibrary.org/obo/MONDO_0006143,cervical squamous cell carcinoma +8.9962716,GO:0072583,http://purl.obolibrary.org/obo/GO_0072583,clathrin-dependent endocytosis +8.9962716,PR:000001438,http://purl.obolibrary.org/obo/PR_000001438,CD80 molecule +8.9966213,MONDO:0016695,http://purl.obolibrary.org/obo/MONDO_0016695,oligodendroglioma +8.9966213,PR:Q94517,http://purl.obolibrary.org/obo/PR_Q94517,none +8.9966213,SO:0001182,http://purl.obolibrary.org/obo/SO_0001182,iron_responsive_element +8.9973211,GO:0007219,http://purl.obolibrary.org/obo/GO_0007219,Notch signaling pathway +8.9976711,DRUGBANK:DB13863,http://purl.obolibrary.org/obo/DRUGBANK_DB13863,none +8.9980213,DRUGBANK:DB02621,http://purl.obolibrary.org/obo/DRUGBANK_DB02621,none +8.9983717,MONDO:0005452,http://purl.obolibrary.org/obo/MONDO_0005452,bulimia nervosa +8.9990727,PR:000016009,http://purl.obolibrary.org/obo/PR_000016009,tumor-associated calcium signal transducer 2 +8.9990727,UBERON:0002347,http://purl.obolibrary.org/obo/UBERON_0002347,thoracic vertebra +8.9997742,GO:0035821,http://purl.obolibrary.org/obo/GO_0035821,modulation of process of other organism +8.9997742,PR:000011395,http://purl.obolibrary.org/obo/PR_000011395,oxysterols receptor LXR-alpha +9.0001251,DRUGBANK:DB04522,http://purl.obolibrary.org/obo/DRUGBANK_DB04522,none +9.0001251,GO:0044003,http://purl.obolibrary.org/obo/GO_0044003,modulation by symbiont of host process +9.0001251,GO:0051817,http://purl.obolibrary.org/obo/GO_0051817,modulation of process of other organism involved in symbiotic interaction +9.0004762,GO:0001906,http://purl.obolibrary.org/obo/GO_0001906,cell killing +9.0008274,DRUGBANK:DB03902,http://purl.obolibrary.org/obo/DRUGBANK_DB03902,none +9.0008274,SO:0001500,http://purl.obolibrary.org/obo/SO_0001500,heritable_phenotypic_marker +9.0011787,MONDO:0018824,http://purl.obolibrary.org/obo/MONDO_0018824,pyoderma gangrenosum +9.0011787,MONDO:0019216,http://purl.obolibrary.org/obo/MONDO_0019216,inborn disorder of amino acid absorption and transport +9.0015301,GO:0019212,http://purl.obolibrary.org/obo/GO_0019212,phosphatase inhibitor activity +9.0015301,MONDO:0007686,http://purl.obolibrary.org/obo/MONDO_0007686,gray platelet syndrome +9.0015301,SO:0000031,http://purl.obolibrary.org/obo/SO_0000031,aptamer +9.0015301,UBERON:0003827,http://purl.obolibrary.org/obo/UBERON_0003827,thoracic segment bone +9.0018817,GO:0043066,http://purl.obolibrary.org/obo/GO_0043066,negative regulation of apoptotic process +9.0018817,MONDO:0006720,http://purl.obolibrary.org/obo/MONDO_0006720,"cystic, mucinous, and serous neoplasm" +9.0025852,MONDO:0005510,http://purl.obolibrary.org/obo/MONDO_0005510,hydronephrosis +9.0032891,GO:0098809,http://purl.obolibrary.org/obo/GO_0098809,nitrite reductase activity +9.0032891,PR:000008305,http://purl.obolibrary.org/obo/PR_000008305,glutathione S-transferase theta-1 +9.0036413,HP:0030163,http://purl.obolibrary.org/obo/HP_0030163,Abnormal vascular physiology +9.0036413,MONDO:0018077,http://purl.obolibrary.org/obo/MONDO_0018077,tularemia +9.004346,DRUGBANK:DB01333,http://purl.obolibrary.org/obo/DRUGBANK_DB01333,none +9.0046986,DRUGBANK:DB00355,http://purl.obolibrary.org/obo/DRUGBANK_DB00355,none +9.0046986,GO:0000725,http://purl.obolibrary.org/obo/GO_0000725,recombinational repair +9.0046986,HP:0032101,http://purl.obolibrary.org/obo/HP_0032101,Unusual infection +9.0050513,DRUGBANK:DB13600,http://purl.obolibrary.org/obo/DRUGBANK_DB13600,none +9.0050513,GO:0072616,http://purl.obolibrary.org/obo/GO_0072616,none +9.0050513,MONDO:0005499,http://purl.obolibrary.org/obo/MONDO_0005499,brain glioma +9.005404,GO:0008146,http://purl.obolibrary.org/obo/GO_0008146,sulfotransferase activity +9.005404,UBERON:0001777,http://purl.obolibrary.org/obo/UBERON_0001777,substantia propria of cornea +9.005757,DRUGBANK:DB06285,http://purl.obolibrary.org/obo/DRUGBANK_DB06285,none +9.0064632,GO:1902533,http://purl.obolibrary.org/obo/GO_1902533,positive regulation of intracellular signal transduction +9.0064632,NCBITaxon:10912,http://purl.obolibrary.org/obo/NCBITaxon_10912,Rotavirus +9.0068165,CHEBI:8347,http://purl.obolibrary.org/obo/CHEBI_8347,Povidone-iodine +9.0075234,MONDO:0006584,http://purl.obolibrary.org/obo/MONDO_0006584,neonatal jaundice +9.0078771,DRUGBANK:DB13765,http://purl.obolibrary.org/obo/DRUGBANK_DB13765,none +9.0078771,UBERON:0002200,http://purl.obolibrary.org/obo/UBERON_0002200,vasculature of head +9.0082309,MONDO:0005579,http://purl.obolibrary.org/obo/MONDO_0005579,"epilepsy, idiopathic generalized" +9.0082309,MONDO:0044876,http://purl.obolibrary.org/obo/MONDO_0044876,drug hypersensitivity syndrome +9.0085848,PR:000003003,http://purl.obolibrary.org/obo/PR_000003003,tyrosine-protein kinase Fyn +9.0096473,PR:000016043,http://purl.obolibrary.org/obo/PR_000016043,T-cell acute lymphocytic leukemia protein 1 +9.0100018,CHEBI:33709,http://purl.obolibrary.org/obo/CHEBI_33709,amino acid +9.0100018,DRUGBANK:DB04325,http://purl.obolibrary.org/obo/DRUGBANK_DB04325,none +9.0100018,GO:0071902,http://purl.obolibrary.org/obo/GO_0071902,positive regulation of protein serine/threonine kinase activity +9.0100018,PR:000000176,http://purl.obolibrary.org/obo/PR_000000176,GTP-binding protein RhoA +9.010711,GO:0043410,http://purl.obolibrary.org/obo/GO_0043410,positive regulation of MAPK cascade +9.0110658,UBERON:0006088,http://purl.obolibrary.org/obo/UBERON_0006088,inferior parietal cortex +9.0114207,PR:P79005,http://purl.obolibrary.org/obo/PR_P79005,none +9.0117758,DRUGBANK:DB10807,http://purl.obolibrary.org/obo/DRUGBANK_DB10807,none +9.0117758,GO:0043406,http://purl.obolibrary.org/obo/GO_0043406,positive regulation of MAP kinase activity +9.0117758,MONDO:0013150,http://purl.obolibrary.org/obo/MONDO_0013150,"parkinsonism-dystonia, infantile" +9.0117758,UBERON:0001470,http://purl.obolibrary.org/obo/UBERON_0001470,glenohumeral joint +9.0121309,GO:0005249,http://purl.obolibrary.org/obo/GO_0005249,voltage-gated potassium channel activity +9.0121309,MONDO:0000598,http://purl.obolibrary.org/obo/MONDO_0000598,aphasia +9.0124862,MONDO:0043579,http://purl.obolibrary.org/obo/MONDO_0043579,enteritis +9.0128417,DRUGBANK:DB00642,http://purl.obolibrary.org/obo/DRUGBANK_DB00642,none +9.0128417,PR:000009485,http://purl.obolibrary.org/obo/PR_000009485,"keratin, type II cytoskeletal 7" +9.0131972,DRUGBANK:DB04440,http://purl.obolibrary.org/obo/DRUGBANK_DB04440,none +9.0131972,DRUGBANK:DB08756,http://purl.obolibrary.org/obo/DRUGBANK_DB08756,none +9.0135529,CHEBI:33521,http://purl.obolibrary.org/obo/CHEBI_33521,metal atom +9.0139087,DRUGBANK:DB01254,http://purl.obolibrary.org/obo/DRUGBANK_DB01254,none +9.0139087,UBERON:0002518,http://purl.obolibrary.org/obo/UBERON_0002518,otolith organ +9.0142646,PR:000005908,http://purl.obolibrary.org/obo/PR_000005908,alpha-crystallin B chain +9.0142646,UBERON:0002517,http://purl.obolibrary.org/obo/UBERON_0002517,basicranium +9.0149769,GO:0000187,http://purl.obolibrary.org/obo/GO_0000187,none +9.0149769,PR:000029237,http://purl.obolibrary.org/obo/PR_000029237,none +9.0156897,DRUGBANK:DB00400,http://purl.obolibrary.org/obo/DRUGBANK_DB00400,none +9.0160462,DRUGBANK:DB01030,http://purl.obolibrary.org/obo/DRUGBANK_DB01030,none +9.0160462,MONDO:0015323,http://purl.obolibrary.org/obo/MONDO_0015323,teratogenic Pierre Robin syndrome +9.0164029,GO:1990742,http://purl.obolibrary.org/obo/GO_1990742,microvesicle +9.0164029,MONDO:0024271,http://purl.obolibrary.org/obo/MONDO_0024271,intestinal helminthiasis +9.0171167,CHEBI:27314,http://purl.obolibrary.org/obo/CHEBI_27314,water-soluble vitamin (role) +9.0174738,CHEBI:2659,http://purl.obolibrary.org/obo/CHEBI_2659,aminophylline +9.0174738,MONDO:0019600,http://purl.obolibrary.org/obo/MONDO_0019600,xeroderma pigmentosum +9.0185458,GO:0005790,http://purl.obolibrary.org/obo/GO_0005790,smooth endoplasmic reticulum +9.0189034,DRUGBANK:DB00488,http://purl.obolibrary.org/obo/DRUGBANK_DB00488,none +9.0189034,PR:000025844,http://purl.obolibrary.org/obo/PR_000025844,ephrin +9.0192611,DRUGBANK:DB15798,http://purl.obolibrary.org/obo/DRUGBANK_DB15798,none +9.0192611,GO:0004904,http://purl.obolibrary.org/obo/GO_0004904,interferon receptor activity +9.0196189,PR:000008438,http://purl.obolibrary.org/obo/PR_000008438,hepcidin +9.0196189,PR:000050150,http://purl.obolibrary.org/obo/PR_000050150,period circadian protein homolog +9.0199769,UBERON:0000349,http://purl.obolibrary.org/obo/UBERON_0000349,limbic system +9.0206932,UBERON:0006955,http://purl.obolibrary.org/obo/UBERON_0006955,uterine epithelium +9.0206932,UBERON:0015008,http://purl.obolibrary.org/obo/UBERON_0015008,thoracic vertebra endochondral element +9.0210516,CL:0002548,http://purl.obolibrary.org/obo/CL_0002548,fibroblast of cardiac tissue +9.0214101,GO:0071706,http://purl.obolibrary.org/obo/GO_0071706,tumor necrosis factor superfamily cytokine production +9.0214101,MONDO:0000188,http://purl.obolibrary.org/obo/MONDO_0000188,GLUT1 deficiency syndrome +9.0214101,MONDO:0001584,http://purl.obolibrary.org/obo/MONDO_0001584,ocular motility disease +9.0214101,MONDO:0021374,http://purl.obolibrary.org/obo/MONDO_0021374,neoplasm of cerebral hemisphere +9.0217687,CHEBI:61697,http://purl.obolibrary.org/obo/CHEBI_61697,fatty acid derivative +9.0217687,GO:0030595,http://purl.obolibrary.org/obo/GO_0030595,leukocyte chemotaxis +9.0217687,MONDO:0008056,http://purl.obolibrary.org/obo/MONDO_0008056,myotonic dystrophy type 1 +9.0217687,PR:000000718,http://purl.obolibrary.org/obo/PR_000000718,transient receptor potential cation channel TRPC3/6/7 +9.0217687,UBERON:0034891,http://purl.obolibrary.org/obo/UBERON_0034891,insular cortex +9.0221274,DRUGBANK:DB13654,http://purl.obolibrary.org/obo/DRUGBANK_DB13654,none +9.0221274,GO:0045576,http://purl.obolibrary.org/obo/GO_0045576,mast cell activation +9.0224863,DRUGBANK:DB00560,http://purl.obolibrary.org/obo/DRUGBANK_DB00560,none +9.0228453,MONDO:0010096,http://purl.obolibrary.org/obo/MONDO_0010096,tardive dyskinesia +9.0235637,DRUGBANK:DB12909,http://purl.obolibrary.org/obo/DRUGBANK_DB12909,none +9.0246423,PR:000001207,http://purl.obolibrary.org/obo/PR_000001207,C-X-C chemokine receptor type 3 +9.0246423,UBERON:0002702,http://purl.obolibrary.org/obo/UBERON_0002702,middle frontal gyrus +9.025002,DRUGBANK:DB00080,http://purl.obolibrary.org/obo/DRUGBANK_DB00080,none +9.025002,PR:000000025,http://purl.obolibrary.org/obo/PR_000000025,ribosomal protein S6 kinase beta +9.025002,PR:000022776,http://purl.obolibrary.org/obo/PR_000022776,none +9.025722,MONDO:0005068,http://purl.obolibrary.org/obo/MONDO_0005068,myocardial infarction +9.0260821,UBERON:0002203,http://purl.obolibrary.org/obo/UBERON_0002203,vasculature of eye +9.0264424,HP:0000405,http://purl.obolibrary.org/obo/HP_0000405,Conductive hearing impairment +9.0264424,HP:0011452,http://purl.obolibrary.org/obo/HP_0011452,Functional abnormality of the middle ear +9.0264424,PR:000001449,http://purl.obolibrary.org/obo/PR_000001449,fibroblast growth factor receptor 2 +9.0268029,HP:0000568,http://purl.obolibrary.org/obo/HP_0000568,Microphthalmia +9.0275241,PR:000010799,http://purl.obolibrary.org/obo/PR_000010799,myb proto-oncogene protein +9.0282459,PR:000015412,http://purl.obolibrary.org/obo/PR_000015412,sortilin +9.0293295,DRUGBANK:DB00973,http://purl.obolibrary.org/obo/DRUGBANK_DB00973,none +9.0293295,GO:0044057,http://purl.obolibrary.org/obo/GO_0044057,regulation of system process +9.029691,DRUGBANK:DB11145,http://purl.obolibrary.org/obo/DRUGBANK_DB11145,none +9.029691,MONDO:0000640,http://purl.obolibrary.org/obo/MONDO_0000640,central nervous system primitive neuroectodermal neoplasm +9.029691,MONDO:0020042,http://purl.obolibrary.org/obo/MONDO_0020042,"syndrome with 46,XY disorder of sex development" +9.029691,UBERON:0001484,http://purl.obolibrary.org/obo/UBERON_0001484,articular capsule +9.0300526,MONDO:0000129,http://purl.obolibrary.org/obo/MONDO_0000129,glutaric aciduria +9.0300526,MONDO:0016920,http://purl.obolibrary.org/obo/MONDO_0016920,partial deletion of the long arm of chromosome 22 +9.0300526,PR:000011023,http://purl.obolibrary.org/obo/PR_000011023,condensin-2 complex subunit G2 +9.0300526,UBERON:0006586,http://purl.obolibrary.org/obo/UBERON_0006586,otolymph +9.0307761,GO:0042168,http://purl.obolibrary.org/obo/GO_0042168,heme metabolic process +9.0311381,GO:0032640,http://purl.obolibrary.org/obo/GO_0032640,tumor necrosis factor production +9.0315003,MONDO:0015263,http://purl.obolibrary.org/obo/MONDO_0015263,Brugada syndrome +9.0318625,GO:0006779,http://purl.obolibrary.org/obo/GO_0006779,porphyrin-containing compound biosynthetic process +9.0318625,MONDO:0002928,http://purl.obolibrary.org/obo/MONDO_0002928,carcinosarcoma +9.0318625,MONDO:0017795,http://purl.obolibrary.org/obo/MONDO_0017795,ameloblastoma +9.0318625,PR:000004023,http://purl.obolibrary.org/obo/PR_000004023,angiopoietin-1 +9.0318625,UBERON:0000362,http://purl.obolibrary.org/obo/UBERON_0000362,renal medulla +9.0318625,UBERON:0006983,http://purl.obolibrary.org/obo/UBERON_0006983,anatomical point +9.0322249,CL:0000065,http://purl.obolibrary.org/obo/CL_0000065,ependymal cell +9.0322249,GO:0002285,http://purl.obolibrary.org/obo/GO_0002285,lymphocyte activation involved in immune response +9.0329501,CL:0000244,http://purl.obolibrary.org/obo/CL_0000244,transitional epithelial cell +9.0329501,MONDO:0003804,http://purl.obolibrary.org/obo/MONDO_0003804,blood protein disease +9.0329501,MONDO:0008228,http://purl.obolibrary.org/obo/MONDO_0008228,pernicious anemia +9.0333128,CHEBI:59941,http://purl.obolibrary.org/obo/CHEBI_59941,amphiphile +9.0333128,MONDO:0016463,http://purl.obolibrary.org/obo/MONDO_0016463,syndromic agammaglobulinemia +9.0333128,PR:000001903,http://purl.obolibrary.org/obo/PR_000001903,paired box protein PAX-5 +9.0340388,CHEBI:33242,http://purl.obolibrary.org/obo/CHEBI_33242,inorganic hydride +9.0340388,GO:0016502,http://purl.obolibrary.org/obo/GO_0016502,nucleotide receptor activity +9.0340388,GO:0044850,http://purl.obolibrary.org/obo/GO_0044850,menstrual cycle +9.0340388,PR:Q84X40,http://purl.obolibrary.org/obo/PR_Q84X40,none +9.034402,GO:0070848,http://purl.obolibrary.org/obo/GO_0070848,response to growth factor +9.034402,MONDO:0003007,http://purl.obolibrary.org/obo/MONDO_0003007,childhood kidney cell carcinoma +9.034402,MONDO:0017236,http://purl.obolibrary.org/obo/MONDO_0017236,rapidly progressive glomerulonephritis +9.0347653,MONDO:0017023,http://purl.obolibrary.org/obo/MONDO_0017023,secondary interstitial lung disease specific to childhood associated with a granulomatous disease +9.0347653,PR:000000011,http://purl.obolibrary.org/obo/PR_000000011,class 1 small leucine-rich proteoglycan +9.0354923,CL:0000679,http://purl.obolibrary.org/obo/CL_0000679,glutamatergic neuron +9.0354923,MONDO:0019599,http://purl.obolibrary.org/obo/MONDO_0019599,primary lipodystrophy +9.0354923,MONDO:0020087,http://purl.obolibrary.org/obo/MONDO_0020087,genetic lipodystrophy +9.035856,MONDO:0001397,http://purl.obolibrary.org/obo/MONDO_0001397,mononeuropathy +9.0362198,MONDO:0021045,http://purl.obolibrary.org/obo/MONDO_0021045,fibroepithelial neoplasm +9.0362198,MONDO:0024469,http://purl.obolibrary.org/obo/MONDO_0024469,chondrogenic neoplasm +9.0365838,MONDO:0010554,http://purl.obolibrary.org/obo/MONDO_0010554,Abruzzo-Erickson syndrome +9.0369479,DRUGBANK:DB00657,http://purl.obolibrary.org/obo/DRUGBANK_DB00657,none +9.0369479,PR:000004024,http://purl.obolibrary.org/obo/PR_000004024,angiopoietin-2 +9.0373121,MONDO:0002603,http://purl.obolibrary.org/obo/MONDO_0002603,angiomyolipoma +9.0373121,MONDO:0041161,http://purl.obolibrary.org/obo/MONDO_0041161,endometrial hyperplasia +9.0376765,MONDO:0015427,http://purl.obolibrary.org/obo/MONDO_0015427,paroxysmal dyskinesia +9.038041,DRUGBANK:DB10897,http://purl.obolibrary.org/obo/DRUGBANK_DB10897,none +9.038041,UBERON:0001273,http://purl.obolibrary.org/obo/UBERON_0001273,ilium +9.038041,UBERON:0015054,http://purl.obolibrary.org/obo/UBERON_0015054,iliac endochondral element +9.0384056,GO:0034220,http://purl.obolibrary.org/obo/GO_0034220,ion transmembrane transport +9.0384056,PR:000011306,http://purl.obolibrary.org/obo/PR_000011306,nucleotide-binding oligomerization domain-containing protein 2 +9.0384056,PR:000011471,http://purl.obolibrary.org/obo/PR_000011471,NT-3 growth factor receptor +9.0384056,UBERON:0008229,http://purl.obolibrary.org/obo/UBERON_0008229,craniocervical region musculature +9.0387704,MONDO:0003540,http://purl.obolibrary.org/obo/MONDO_0003540,acute T cell leukemia +9.0387704,MONDO:0016586,http://purl.obolibrary.org/obo/MONDO_0016586,systemic mastocytosis +9.0398655,DRUGBANK:DB00369,http://purl.obolibrary.org/obo/DRUGBANK_DB00369,none +9.0398655,GO:0004812,http://purl.obolibrary.org/obo/GO_0004812,aminoacyl-tRNA ligase activity +9.0398655,PR:Q22038,http://purl.obolibrary.org/obo/PR_Q22038,none +9.0402308,SO:0000996,http://purl.obolibrary.org/obo/SO_0000996,predicted_gene +9.0416933,CHEBI:61433,http://purl.obolibrary.org/obo/CHEBI_61433,polycarbonate polymer +9.0416933,PR:000000685,http://purl.obolibrary.org/obo/PR_000000685,voltage-gated potassium channel alpha subunit +9.0420592,PR:000002093,http://purl.obolibrary.org/obo/PR_000002093,signal transducer and activator of transcription 6 +9.0424253,GO:0002460,http://purl.obolibrary.org/obo/GO_0002460,adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains +9.0427916,MONDO:0005545,http://purl.obolibrary.org/obo/MONDO_0005545,staphylococcus aureus infection +9.0435245,CHEBI:33273,http://purl.obolibrary.org/obo/CHEBI_33273,polyatomic anion +9.0435245,MONDO:0042489,http://purl.obolibrary.org/obo/MONDO_0042489,disease susceptibility +9.0446248,GO:0051216,http://purl.obolibrary.org/obo/GO_0051216,cartilage development +9.0446248,UBERON:0000395,http://purl.obolibrary.org/obo/UBERON_0000395,cochlear ganglion +9.0449918,GO:1990267,http://purl.obolibrary.org/obo/GO_1990267,response to transition metal nanoparticle +9.0449918,MONDO:0005707,http://purl.obolibrary.org/obo/MONDO_0005707,coccidiosis +9.0449918,MONDO:0019019,http://purl.obolibrary.org/obo/MONDO_0019019,osteogenesis imperfecta +9.045359,MONDO:0019820,http://purl.obolibrary.org/obo/MONDO_0019820,univentricular cardiopathy +9.0457263,MONDO:0020573,http://purl.obolibrary.org/obo/MONDO_0020573,inherited disease susceptibility +9.0457263,UBERON:0022353,http://purl.obolibrary.org/obo/UBERON_0022353,posterior cingulate cortex +9.0460937,UBERON:0001267,http://purl.obolibrary.org/obo/UBERON_0001267,femoral nerve +9.0464613,MONDO:0002454,http://purl.obolibrary.org/obo/MONDO_0002454,thyroid adenoma +9.046829,CHEBI:35406,http://purl.obolibrary.org/obo/CHEBI_35406,oxoanion +9.0475649,GO:0055092,http://purl.obolibrary.org/obo/GO_0055092,sterol homeostasis +9.0475649,MONDO:0006861,http://purl.obolibrary.org/obo/MONDO_0006861,myeloid sarcoma +9.0483012,GO:0003014,http://purl.obolibrary.org/obo/GO_0003014,renal system process +9.0483012,PR:000026269,http://purl.obolibrary.org/obo/PR_000026269,survival motor neuron protein +9.0486696,PR:000013512,http://purl.obolibrary.org/obo/PR_000013512,paxillin +9.0490382,GO:0019079,http://purl.obolibrary.org/obo/GO_0019079,viral genome replication +9.0490382,MONDO:0021400,http://purl.obolibrary.org/obo/MONDO_0021400,polyp of colon +9.0490382,PR:000001888,http://purl.obolibrary.org/obo/PR_000001888,membrane alanyl aminopeptidase-like metallopeptidase +9.0490382,UBERON:0003696,http://purl.obolibrary.org/obo/UBERON_0003696,metatarsophalangeal joint +9.0494068,CHEBI:29347,http://purl.obolibrary.org/obo/CHEBI_29347,monocarboxylic acid amide +9.0494068,DRUGBANK:DB00789,http://purl.obolibrary.org/obo/DRUGBANK_DB00789,none +9.0494068,GO:0022613,http://purl.obolibrary.org/obo/GO_0022613,ribonucleoprotein complex biogenesis +9.0494068,MONDO:0021641,http://purl.obolibrary.org/obo/MONDO_0021641,Bunyaviridae infectious disease +9.0501446,PR:000012569,http://purl.obolibrary.org/obo/PR_000012569,platelet factor 4 +9.0505136,CL:0000731,http://purl.obolibrary.org/obo/CL_0000731,urothelial cell +9.0505136,PR:000011394,http://purl.obolibrary.org/obo/PR_000011394,oxysterols receptor LXR-beta +9.0516217,SO:0000740,http://purl.obolibrary.org/obo/SO_0000740,plastid_sequence +9.0519913,PR:000015394,http://purl.obolibrary.org/obo/PR_000015394,suppressor of cytokine signaling 3 +9.0519913,UBERON:0004226,http://purl.obolibrary.org/obo/UBERON_0004226,gastrointestinal system smooth muscle +9.052361,DRUGBANK:DB00465,http://purl.obolibrary.org/obo/DRUGBANK_DB00465,none +9.052361,MONDO:0000840,http://purl.obolibrary.org/obo/MONDO_0000840,dysbaric osteonecrosis +9.052361,MONDO:0001442,http://purl.obolibrary.org/obo/MONDO_0001442,dysthymic disorder +9.053101,HP:0012719,http://purl.obolibrary.org/obo/HP_0012719,Functional abnormality of the gastrointestinal tract +9.053101,PR:000000123,http://purl.obolibrary.org/obo/PR_000000123,ribosomal protein S6 kinase beta-1 +9.0534711,DRUGBANK:DB01345,http://purl.obolibrary.org/obo/DRUGBANK_DB01345,none +9.0538414,CHEBI:35856,http://purl.obolibrary.org/obo/CHEBI_35856,lipoxygenase inhibitor +9.0538414,CHEBI:76740,http://purl.obolibrary.org/obo/CHEBI_76740,EC 1.13.* [oxidoreductase acting on single donors with incorporation of molecular oxygen (oxygenases)] inhibitor +9.0538414,CHEBI:76837,http://purl.obolibrary.org/obo/CHEBI_76837,EC 1.13.11.* (oxidoreductase acting on single donors and incorporating 2 O atoms) inhibitor +9.0538414,DRUGBANK:DB00139,http://purl.obolibrary.org/obo/DRUGBANK_DB00139,none +9.0542119,GO:0042254,http://purl.obolibrary.org/obo/GO_0042254,ribosome biogenesis +9.0545824,MONDO:0002476,http://purl.obolibrary.org/obo/MONDO_0002476,anuria +9.055324,CHEBI:38325,http://purl.obolibrary.org/obo/CHEBI_38325,muscarinic agonist +9.055324,GO:0072348,http://purl.obolibrary.org/obo/GO_0072348,sulfur compound transport +9.055324,HP:0011821,http://purl.obolibrary.org/obo/HP_0011821,Abnormality of facial skeleton +9.055695,CL:0002224,http://purl.obolibrary.org/obo/CL_0002224,lens epithelial cell +9.0564374,DRUGBANK:DB00358,http://purl.obolibrary.org/obo/DRUGBANK_DB00358,none +9.0564374,DRUGBANK:DB00567,http://purl.obolibrary.org/obo/DRUGBANK_DB00567,none +9.0564374,GO:0036357,http://purl.obolibrary.org/obo/GO_0036357,2-phosphoglycerate kinase activity +9.0564374,PR:000013538,http://purl.obolibrary.org/obo/PR_000013538,none +9.0568088,MONDO:0000587,http://purl.obolibrary.org/obo/MONDO_0000587,"autoimmune disease of ear, nose and throat" +9.0568088,MONDO:0007896,http://purl.obolibrary.org/obo/MONDO_0007896,acute monocytic leukemia +9.0571803,MONDO:0000254,http://purl.obolibrary.org/obo/MONDO_0000254,cutaneous mycosis +9.057552,CL:0002496,http://purl.obolibrary.org/obo/CL_0002496,intraepithelial lymphocyte +9.057552,MONDO:0003155,http://purl.obolibrary.org/obo/MONDO_0003155,cavernous hemangioma +9.0582958,CHEBI:73702,http://purl.obolibrary.org/obo/CHEBI_73702,wax +9.0582958,MONDO:0016169,http://purl.obolibrary.org/obo/MONDO_0016169,chronic acquired demyelinating polyneuropathy +9.0582958,PR:000044437,http://purl.obolibrary.org/obo/PR_000044437,none +9.0586679,GO:0098791,http://purl.obolibrary.org/obo/GO_0098791,Golgi apparatus subcompartment +9.0586679,MONDO:0024295,http://purl.obolibrary.org/obo/MONDO_0024295,skin disease caused by bacterial infection +9.0594125,DRUGBANK:DB10344,http://purl.obolibrary.org/obo/DRUGBANK_DB10344,none +9.0594125,DRUGBANK:DB14329,http://purl.obolibrary.org/obo/DRUGBANK_DB14329,none +9.0594125,GO:0050191,http://purl.obolibrary.org/obo/GO_0050191,phosphoglycerate kinase (GTP) activity +9.059785,DRUGBANK:DB01299,http://purl.obolibrary.org/obo/DRUGBANK_DB01299,none +9.059785,GO:0004618,http://purl.obolibrary.org/obo/GO_0004618,phosphoglycerate kinase activity +9.059785,HP:0001259,http://purl.obolibrary.org/obo/HP_0001259,Coma +9.0601576,UBERON:0001084,http://purl.obolibrary.org/obo/UBERON_0001084,skin of head +9.0612764,PR:000000168,http://purl.obolibrary.org/obo/PR_000000168,BMP7 +9.0612764,PR:000004127,http://purl.obolibrary.org/obo/PR_000004127,DNA-(apurinic or apyrimidinic site) endonuclease +9.0612764,PR:000009454,http://purl.obolibrary.org/obo/PR_000009454,"keratin, type I cytoskeletal 14" +9.0612764,UBERON:0001651,http://purl.obolibrary.org/obo/UBERON_0001651,right pulmonary artery +9.0616496,UBERON:0004910,http://purl.obolibrary.org/obo/UBERON_0004910,epithelium of male gonad +9.0623964,DRUGBANK:DB14202,http://purl.obolibrary.org/obo/DRUGBANK_DB14202,none +9.0623964,HP:0011450,http://purl.obolibrary.org/obo/HP_0011450,Unusual CNS infection +9.06277,GO:0016163,http://purl.obolibrary.org/obo/GO_0016163,nitrogenase activity +9.06277,GO:0016732,http://purl.obolibrary.org/obo/GO_0016732,"oxidoreductase activity, acting on iron-sulfur proteins as donors, dinitrogen as acceptor" +9.06277,PR:000003063,http://purl.obolibrary.org/obo/PR_000003063,SYK/ZAP-70 family tyrosine-protein kinase +9.06277,UBERON:0001529,http://purl.obolibrary.org/obo/UBERON_0001529,brachiocephalic artery +9.0631438,GO:0007602,http://purl.obolibrary.org/obo/GO_0007602,phototransduction +9.0642659,PR:000007159,http://purl.obolibrary.org/obo/PR_000007159,receptor tyrosine-protein kinase erbB-3 +9.0646403,PR:000013871,http://purl.obolibrary.org/obo/PR_000013871,regenerating islet-derived protein 3-alpha +9.0650147,PR:000013021,http://purl.obolibrary.org/obo/PR_000013021,serum paraoxonase/arylesterase 1 +9.066514,MONDO:0015181,http://purl.obolibrary.org/obo/MONDO_0015181,congenital intestinal disease due to an enzymatic defect +9.066514,PR:000012267,http://purl.obolibrary.org/obo/PR_000012267,poly(A) polymerase alpha +9.0668891,GO:0016875,http://purl.obolibrary.org/obo/GO_0016875,"ligase activity, forming carbon-oxygen bonds" +9.0668891,GO:0016876,http://purl.obolibrary.org/obo/GO_0016876,none +9.0672644,DRUGBANK:DB03594,http://purl.obolibrary.org/obo/DRUGBANK_DB03594,none +9.0672644,GO:0009409,http://purl.obolibrary.org/obo/GO_0009409,response to cold +9.0672644,GO:0016504,http://purl.obolibrary.org/obo/GO_0016504,peptidase activator activity +9.0672644,MONDO:0002886,http://purl.obolibrary.org/obo/MONDO_0002886,common bile duct disease +9.0672644,MONDO:0004730,http://purl.obolibrary.org/obo/MONDO_0004730,speech disorder +9.0676399,PR:000010877,http://purl.obolibrary.org/obo/PR_000010877,myogenin +9.0680155,GO:0005218,http://purl.obolibrary.org/obo/GO_0005218,none +9.0680155,HP:0032158,http://purl.obolibrary.org/obo/HP_0032158,Unusual infection by anatomical site +9.0683912,PR:000001226,http://purl.obolibrary.org/obo/PR_000001226,high affinity interleukin-8 receptor +9.0683912,UBERON:0001652,http://purl.obolibrary.org/obo/UBERON_0001652,left pulmonary artery +9.0691431,DRUGBANK:DB13415,http://purl.obolibrary.org/obo/DRUGBANK_DB13415,none +9.0691431,PR:000050048,http://purl.obolibrary.org/obo/PR_000050048,patched homolog protein +9.0695192,GO:0070091,http://purl.obolibrary.org/obo/GO_0070091,glucagon secretion +9.0698955,GO:0033250,http://purl.obolibrary.org/obo/GO_0033250,penicillinase activity +9.0698955,HP:0001999,http://purl.obolibrary.org/obo/HP_0001999,Abnormal facial shape +9.0698955,MONDO:0018619,http://purl.obolibrary.org/obo/MONDO_0018619,hyperinsulinemic hypoglycaemia +9.070272,DRUGBANK:DB06770,http://purl.obolibrary.org/obo/DRUGBANK_DB06770,none +9.070272,UBERON:0010077,http://purl.obolibrary.org/obo/UBERON_0010077,cuboidal epithelium +9.0706485,PR:000014168,http://purl.obolibrary.org/obo/PR_000014168,protein XRP2 +9.0706485,SO:0001569,http://purl.obolibrary.org/obo/SO_0001569,cryptic_splice_site_variant +9.0710253,GO:0035935,http://purl.obolibrary.org/obo/GO_0035935,androgen secretion +9.0710253,MONDO:0011972,http://purl.obolibrary.org/obo/MONDO_0011972,ovarian hyperstimulation syndrome +9.0714021,SO:0001420,http://purl.obolibrary.org/obo/SO_0001420,trans_splice_site +9.0721563,MONDO:0017969,http://purl.obolibrary.org/obo/MONDO_0017969,"46,XY disorder of sex development of endocrine origin" +9.0725336,DRUGBANK:DB00489,http://purl.obolibrary.org/obo/DRUGBANK_DB00489,none +9.0725336,PR:P93025,http://purl.obolibrary.org/obo/PR_P93025,none +9.072911,CHEBI:36902,http://purl.obolibrary.org/obo/CHEBI_36902,chalcogen hydride +9.072911,UBERON:0004590,http://purl.obolibrary.org/obo/UBERON_0004590,sphincter muscle +9.0732886,PR:000001137,http://purl.obolibrary.org/obo/PR_000001137,interleukin-1 receptor antagonist protein +9.0736663,DRUGBANK:DB09274,http://purl.obolibrary.org/obo/DRUGBANK_DB09274,none +9.0736663,GO:0016416,http://purl.obolibrary.org/obo/GO_0016416,O-palmitoyltransferase activity +9.0744221,DRUGBANK:DB00649,http://purl.obolibrary.org/obo/DRUGBANK_DB00649,none +9.0744221,DRUGBANK:DB14475,http://purl.obolibrary.org/obo/DRUGBANK_DB14475,none +9.0744221,PR:P01590,http://purl.obolibrary.org/obo/PR_P01590,none +9.0748003,GO:0070887,http://purl.obolibrary.org/obo/GO_0070887,cellular response to chemical stimulus +9.0751786,MONDO:0001164,http://purl.obolibrary.org/obo/MONDO_0001164,antisocial personality disorder +9.0751786,MONDO:0019180,http://purl.obolibrary.org/obo/MONDO_0019180,hereditary hemorrhagic telangiectasia +9.075557,DRUGBANK:DB05299,http://purl.obolibrary.org/obo/DRUGBANK_DB05299,none +9.0759356,DRUGBANK:DB11072,http://purl.obolibrary.org/obo/DRUGBANK_DB11072,none +9.0766931,MONDO:0019209,http://purl.obolibrary.org/obo/MONDO_0019209,Japanese encephalitis +9.0770721,DRUGBANK:DB00960,http://purl.obolibrary.org/obo/DRUGBANK_DB00960,none +9.0770721,MONDO:0004933,http://purl.obolibrary.org/obo/MONDO_0004933,hypoplastic left heart syndrome +9.0774513,HP:0000277,http://purl.obolibrary.org/obo/HP_0000277,Abnormality of the mandible +9.0774513,MONDO:0005584,http://purl.obolibrary.org/obo/MONDO_0005584,congenital left-sided heart lesions +9.0778306,HP:0030791,http://purl.obolibrary.org/obo/HP_0030791,Abnormal jaw morphology +9.07821,DRUGBANK:DB01054,http://purl.obolibrary.org/obo/DRUGBANK_DB01054,none +9.07821,MONDO:0005607,http://purl.obolibrary.org/obo/MONDO_0005607,chronic bronchitis +9.07821,PR:000007857,http://purl.obolibrary.org/obo/PR_000007857,erythroid transcription factor +9.0785896,GO:0050321,http://purl.obolibrary.org/obo/GO_0050321,tau-protein kinase activity +9.0785896,PR:000022007,http://purl.obolibrary.org/obo/PR_000022007,vertebrate-like neuraminidase +9.0789693,DRUGBANK:DB06605,http://purl.obolibrary.org/obo/DRUGBANK_DB06605,none +9.0789693,GO:0007584,http://purl.obolibrary.org/obo/GO_0007584,response to nutrient +9.0789693,HP:0001508,http://purl.obolibrary.org/obo/HP_0001508,Failure to thrive +9.0793492,MONDO:0015320,http://purl.obolibrary.org/obo/MONDO_0015320,Pierre Robin syndrome associated with a chromosomal anomaly +9.0797292,GO:0005220,http://purl.obolibrary.org/obo/GO_0005220,"inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity" +9.0797292,GO:0016891,http://purl.obolibrary.org/obo/GO_0016891,"endoribonuclease activity, producing 5'-phosphomonoesters" +9.0797292,MONDO:0018904,http://purl.obolibrary.org/obo/MONDO_0018904,primary membranoproliferative glomerulonephritis +9.0801093,CHEBI:33693,http://purl.obolibrary.org/obo/CHEBI_33693,oxygen hydride +9.0801093,DRUGBANK:DB01752,http://purl.obolibrary.org/obo/DRUGBANK_DB01752,none +9.0801093,MONDO:0003282,http://purl.obolibrary.org/obo/MONDO_0003282,ovarian cyst +9.0804896,MONDO:0020083,http://purl.obolibrary.org/obo/MONDO_0020083,immunodeficiency-associated lymphoproliferative disease +9.0808701,DRUGBANK:DB01006,http://purl.obolibrary.org/obo/DRUGBANK_DB01006,none +9.0808701,GO:0042054,http://purl.obolibrary.org/obo/GO_0042054,histone methyltransferase activity +9.0812507,CHEBI:33241,http://purl.obolibrary.org/obo/CHEBI_33241,oxoacid derivative +9.0812507,MONDO:0022410,http://purl.obolibrary.org/obo/MONDO_0022410,retinal ciliopathy +9.0820123,HP:0001288,http://purl.obolibrary.org/obo/HP_0001288,Gait disturbance +9.0823933,DRUGBANK:DB01011,http://purl.obolibrary.org/obo/DRUGBANK_DB01011,none +9.0823933,MONDO:0021358,http://purl.obolibrary.org/obo/MONDO_0021358,neoplasm of hypopharynx +9.0823933,PR:000017019,http://purl.obolibrary.org/obo/PR_000017019,UBX domain-containing protein 11 +9.0839189,CHEBI:60606,http://purl.obolibrary.org/obo/CHEBI_60606,opioid receptor agonist +9.0839189,DRUGBANK:DB10531,http://purl.obolibrary.org/obo/DRUGBANK_DB10531,none +9.0843006,SO:0000745,http://purl.obolibrary.org/obo/SO_0000745,chloroplast_sequence +9.0843006,UBERON:0002461,http://purl.obolibrary.org/obo/UBERON_0002461,anterior abdominal wall muscle +9.0846825,CHEBI:16991,http://purl.obolibrary.org/obo/CHEBI_16991,deoxyribonucleic acid +9.0846825,UBERON:0000933,http://purl.obolibrary.org/obo/UBERON_0000933,pharyngeal muscle +9.0850646,GO:0043446,http://purl.obolibrary.org/obo/GO_0043446,cellular alkane metabolic process +9.0850646,UBERON:0018405,http://purl.obolibrary.org/obo/UBERON_0018405,inferior alveolar nerve +9.0854468,GO:0004095,http://purl.obolibrary.org/obo/GO_0004095,carnitine O-palmitoyltransferase activity +9.0858291,GO:0005667,http://purl.obolibrary.org/obo/GO_0005667,transcription factor complex +9.0858291,GO:0046683,http://purl.obolibrary.org/obo/GO_0046683,response to organophosphorus +9.0858291,MONDO:0007935,http://purl.obolibrary.org/obo/MONDO_0007935,cystoid macular edema +9.0858291,UBERON:0002395,http://purl.obolibrary.org/obo/UBERON_0002395,talus +9.0858291,UBERON:0003387,http://purl.obolibrary.org/obo/UBERON_0003387,smooth muscle of trachea +9.0862116,MONDO:0016374,http://purl.obolibrary.org/obo/MONDO_0016374,cranial neuralgia +9.0865942,MONDO:0016754,http://purl.obolibrary.org/obo/MONDO_0016754,vestibular schwannoma +9.0865942,PR:O23474,http://purl.obolibrary.org/obo/PR_O23474,none +9.0865942,UBERON:0001760,http://purl.obolibrary.org/obo/UBERON_0001760,frontal sinus +9.0865942,UBERON:0001791,http://purl.obolibrary.org/obo/UBERON_0001791,inner nuclear layer of retina +9.087743,CHEBI:50671,http://purl.obolibrary.org/obo/CHEBI_50671,antithyroid drug +9.087743,PR:000029070,http://purl.obolibrary.org/obo/PR_000029070,none +9.0881262,DRUGBANK:DB00717,http://purl.obolibrary.org/obo/DRUGBANK_DB00717,none +9.0881262,DRUGBANK:DB10981,http://purl.obolibrary.org/obo/DRUGBANK_DB10981,none +9.0881262,PR:000013412,http://purl.obolibrary.org/obo/PR_000013412,protein patched homolog 1 +9.0892767,UBERON:0002245,http://purl.obolibrary.org/obo/UBERON_0002245,cerebellar hemisphere +9.0900445,DRUGBANK:DB00490,http://purl.obolibrary.org/obo/DRUGBANK_DB00490,none +9.0900445,MONDO:0016408,http://purl.obolibrary.org/obo/MONDO_0016408,permanent congenital hypothyroidism +9.0900445,UBERON:0008933,http://purl.obolibrary.org/obo/UBERON_0008933,primary somatosensory cortex +9.0904286,GO:0071496,http://purl.obolibrary.org/obo/GO_0071496,cellular response to external stimulus +9.0908128,GO:0010465,http://purl.obolibrary.org/obo/GO_0010465,nerve growth factor receptor activity +9.0911972,HP:0000347,http://purl.obolibrary.org/obo/HP_0000347,Micrognathia +9.0911972,HP:0009116,http://purl.obolibrary.org/obo/HP_0009116,Aplasia/Hypoplasia involving bones of the skull +9.0911972,HP:0009118,http://purl.obolibrary.org/obo/HP_0009118,Aplasia/Hypoplasia of the mandible +9.0911972,HP:0009122,http://purl.obolibrary.org/obo/HP_0009122,Aplasia/hypoplasia affecting bones of the axial skeleton +9.0915817,MONDO:0005789,http://purl.obolibrary.org/obo/MONDO_0005789,hepatitis D virus infection +9.0915817,MONDO:0006497,http://purl.obolibrary.org/obo/MONDO_0006497,cerebral palsy +9.0915817,MONDO:0010947,http://purl.obolibrary.org/obo/MONDO_0010947,Budd-Chiari syndrome +9.0915817,UBERON:0015152,http://purl.obolibrary.org/obo/UBERON_0015152,gland of ocular region +9.0919664,DRUGBANK:DB10874,http://purl.obolibrary.org/obo/DRUGBANK_DB10874,none +9.0919664,GO:0042632,http://purl.obolibrary.org/obo/GO_0042632,cholesterol homeostasis +9.0919664,HP:0007369,http://purl.obolibrary.org/obo/HP_0007369,Atrophy/Degeneration affecting the cerebrum +9.0919664,MONDO:0016118,http://purl.obolibrary.org/obo/MONDO_0016118,muscular glycogenosis +9.0919664,PR:000010182,http://purl.obolibrary.org/obo/PR_000010182,E3 ubiquitin-protein ligase MARCHF8 +9.0927363,DRUGBANK:DB00574,http://purl.obolibrary.org/obo/DRUGBANK_DB00574,none +9.0927363,MONDO:0015517,http://purl.obolibrary.org/obo/MONDO_0015517,common variable immunodeficiency +9.0927363,PR:000008453,http://purl.obolibrary.org/obo/PR_000008453,hepatitis A virus cellular receptor 1 +9.0931214,GO:0046457,http://purl.obolibrary.org/obo/GO_0046457,prostanoid biosynthetic process +9.0935067,GO:0001659,http://purl.obolibrary.org/obo/GO_0001659,temperature homeostasis +9.0935067,HP:0032894,http://purl.obolibrary.org/obo/HP_0032894,Seizure precipitated by febrile infection +9.0938921,GO:0005802,http://purl.obolibrary.org/obo/GO_0005802,trans-Golgi network +9.0938921,NCBITaxon:40272,http://purl.obolibrary.org/obo/NCBITaxon_40272,Roseolovirus +9.0942777,CHEBI:33308,http://purl.obolibrary.org/obo/CHEBI_33308,carboxylic ester +9.0942777,CHEBI:71232,http://purl.obolibrary.org/obo/CHEBI_71232,adenosine receptor antagonist +9.0942777,PR:000007205,http://purl.obolibrary.org/obo/PR_000007205,estrogen receptor beta +9.0962078,MONDO:0010795,http://purl.obolibrary.org/obo/MONDO_0010795,oncocytic neoplasm +9.0965943,DRUGBANK:DB01337,http://purl.obolibrary.org/obo/DRUGBANK_DB01337,none +9.0965943,GO:0048588,http://purl.obolibrary.org/obo/GO_0048588,developmental cell growth +9.0965943,PR:000049994,http://purl.obolibrary.org/obo/PR_000049994,histamine receptor +9.0965943,UBERON:0009035,http://purl.obolibrary.org/obo/UBERON_0009035,renal straight tubule +9.0969809,PR:000012604,http://purl.obolibrary.org/obo/PR_000012604,"6-phosphogluconate dehydrogenase, decarboxylating" +9.0969809,UBERON:0006347,http://purl.obolibrary.org/obo/UBERON_0006347,communicating artery +9.0977546,DRUGBANK:DB06404,http://purl.obolibrary.org/obo/DRUGBANK_DB06404,none +9.0977546,GO:0003678,http://purl.obolibrary.org/obo/GO_0003678,DNA helicase activity +9.0977546,HP:0032892,http://purl.obolibrary.org/obo/HP_0032892,Infection-related seizure +9.0977546,MONDO:0005257,http://purl.obolibrary.org/obo/MONDO_0005257,advanced heart failure +9.0981417,MONDO:0019720,http://purl.obolibrary.org/obo/MONDO_0019720,non-syndromic renal or urinary tract malformation +9.0981417,UBERON:0000016,http://purl.obolibrary.org/obo/UBERON_0000016,endocrine pancreas +9.0985289,DRUGBANK:DB00708,http://purl.obolibrary.org/obo/DRUGBANK_DB00708,none +9.0985289,DRUGBANK:DB09415,http://purl.obolibrary.org/obo/DRUGBANK_DB09415,none +9.0985289,GO:0001553,http://purl.obolibrary.org/obo/GO_0001553,luteinization +9.0985289,HP:0002373,http://purl.obolibrary.org/obo/HP_0002373,Febrile seizure (within the age range of 3 months to 6 years) +9.0985289,PR:000000031,http://purl.obolibrary.org/obo/PR_000000031,"transcription adapter with TAZ, KIX and bromo-domains" +9.0985289,PR:000013539,http://purl.obolibrary.org/obo/PR_000013539,none +9.0989163,UBERON:0004859,http://purl.obolibrary.org/obo/UBERON_0004859,eye gland +9.0993038,DRUGBANK:DB01110,http://purl.obolibrary.org/obo/DRUGBANK_DB01110,none +9.0996915,GO:0003909,http://purl.obolibrary.org/obo/GO_0003909,DNA ligase activity +9.0996915,GO:0044770,http://purl.obolibrary.org/obo/GO_0044770,cell cycle phase transition +9.0996915,MONDO:0015358,http://purl.obolibrary.org/obo/MONDO_0015358,hereditary motor and sensory neuropathy +9.1000793,PR:000010844,http://purl.obolibrary.org/obo/PR_000010844,E3 ubiquitin-protein ligase MYLIP +9.1004673,DRUGBANK:DB14165,http://purl.obolibrary.org/obo/DRUGBANK_DB14165,none +9.1008554,DRUGBANK:DB00553,http://purl.obolibrary.org/obo/DRUGBANK_DB00553,none +9.1008554,PR:000011335,http://purl.obolibrary.org/obo/PR_000011335,neurogenic locus notch homolog protein 4 +9.1012437,MONDO:0005694,http://purl.obolibrary.org/obo/MONDO_0005694,cecal neoplasm +9.1012437,MONDO:0005780,http://purl.obolibrary.org/obo/MONDO_0005780,hantavirus infectious disease +9.1012437,PR:000001814,http://purl.obolibrary.org/obo/PR_000001814,G protein-activated inward rectifier potassium channel +9.1016321,DRUGBANK:DB02520,http://purl.obolibrary.org/obo/DRUGBANK_DB02520,none +9.1016321,MONDO:0015265,http://purl.obolibrary.org/obo/MONDO_0015265,bronchiolitis obliterans with obstructive pulmonary disease +9.1020207,DRUGBANK:DB11589,http://purl.obolibrary.org/obo/DRUGBANK_DB11589,none +9.1020207,MONDO:0006516,http://purl.obolibrary.org/obo/MONDO_0006516,sarcopenia +9.1020207,MONDO:0016455,http://purl.obolibrary.org/obo/MONDO_0016455,virus-associated trichodysplasia spinulosa +9.1020207,PR:000044652,http://purl.obolibrary.org/obo/PR_000044652,inwardly rectifying potassium channel protein +9.1020207,UBERON:0005486,http://purl.obolibrary.org/obo/UBERON_0005486,venous dural sinus +9.1024094,GO:0006638,http://purl.obolibrary.org/obo/GO_0006638,neutral lipid metabolic process +9.1024094,PR:000003866,http://purl.obolibrary.org/obo/PR_000003866,allograft inflammatory factor 1 +9.1027983,UBERON:0008995,http://purl.obolibrary.org/obo/UBERON_0008995,nucleus of cerebellar nuclear complex +9.1031873,DRUGBANK:DB00669,http://purl.obolibrary.org/obo/DRUGBANK_DB00669,none +9.1031873,DRUGBANK:DB15381,http://purl.obolibrary.org/obo/DRUGBANK_DB15381,none +9.1031873,GO:0016248,http://purl.obolibrary.org/obo/GO_0016248,channel inhibitor activity +9.1031873,MONDO:0011119,http://purl.obolibrary.org/obo/MONDO_0011119,iridogoniodysgenesis +9.1031873,PR:000037799,http://purl.obolibrary.org/obo/PR_000037799,paired box protein PAX group III +9.1039658,DRUGBANK:DB10428,http://purl.obolibrary.org/obo/DRUGBANK_DB10428,none +9.1039658,MONDO:0018581,http://purl.obolibrary.org/obo/MONDO_0018581,progressive encephalomyelitis with rigidity and myoclonus +9.1039658,PR:000000094,http://purl.obolibrary.org/obo/PR_000000094,decorin +9.1043553,CHEBI:52625,http://purl.obolibrary.org/obo/CHEBI_52625,inorganic hydroxy compound +9.1043553,DRUGBANK:DB00359,http://purl.obolibrary.org/obo/DRUGBANK_DB00359,none +9.1043553,DRUGBANK:DB09413,http://purl.obolibrary.org/obo/DRUGBANK_DB09413,none +9.1043553,GO:0009100,http://purl.obolibrary.org/obo/GO_0009100,glycoprotein metabolic process +9.1043553,MONDO:0019240,http://purl.obolibrary.org/obo/MONDO_0019240,sterol biosynthesis disorder +9.1043553,MONDO:0023865,http://purl.obolibrary.org/obo/MONDO_0023865,corneal infection +9.1047449,MONDO:0017816,http://purl.obolibrary.org/obo/MONDO_0017816,primary systemic amyloidosis +9.1066954,GO:0004673,http://purl.obolibrary.org/obo/GO_0004673,protein histidine kinase activity +9.1066954,MONDO:0006764,http://purl.obolibrary.org/obo/MONDO_0006764,fungal meningitis +9.1066954,MONDO:0016328,http://purl.obolibrary.org/obo/MONDO_0016328,fatty acid oxidation and ketogenesis disorder with hypertrophic cardiomyopathy +9.1070859,MONDO:0006311,http://purl.obolibrary.org/obo/MONDO_0006311,myelodysplastic/myeloproliferative Neoplasm +9.1070859,NCBITaxon:2732543,http://purl.obolibrary.org/obo/NCBITaxon_2732543,Hepelivirales +9.1070859,UBERON:0001491,http://purl.obolibrary.org/obo/UBERON_0001491,wrist joint +9.1074766,DRUGBANK:DB11848,http://purl.obolibrary.org/obo/DRUGBANK_DB11848,none +9.1074766,MONDO:0005412,http://purl.obolibrary.org/obo/MONDO_0005412,duodenal ulcer +9.1074766,PR:000023715,http://purl.obolibrary.org/obo/PR_000023715,none +9.1074766,UBERON:0007417,http://purl.obolibrary.org/obo/UBERON_0007417,peduncle of neuraxis +9.1078675,GO:0004301,http://purl.obolibrary.org/obo/GO_0004301,epoxide hydrolase activity +9.1078675,PR:Q10256,http://purl.obolibrary.org/obo/PR_Q10256,none +9.1078675,UBERON:0001291,http://purl.obolibrary.org/obo/UBERON_0001291,thick ascending limb of loop of Henle +9.1082585,MONDO:0020950,http://purl.obolibrary.org/obo/MONDO_0020950,viral eye infection +9.1082585,UBERON:0005382,http://purl.obolibrary.org/obo/UBERON_0005382,dorsal striatum +9.1086497,PR:000003389,http://purl.obolibrary.org/obo/PR_000003389,synaptic functional regulator FMR1 +9.1086497,SO:0001011,http://purl.obolibrary.org/obo/SO_0001011,PNA_oligo +9.1086497,UBERON:0004225,http://purl.obolibrary.org/obo/UBERON_0004225,respiratory system smooth muscle +9.109041,MONDO:0005193,http://purl.obolibrary.org/obo/MONDO_0005193,prostate intraepithelial neoplasia +9.109041,UBERON:0007132,http://purl.obolibrary.org/obo/UBERON_0007132,head kidney +9.1098241,GO:0072337,http://purl.obolibrary.org/obo/GO_0072337,modified amino acid transport +9.1098241,PR:P33277,http://purl.obolibrary.org/obo/PR_P33277,none +9.1102158,MONDO:0017274,http://purl.obolibrary.org/obo/MONDO_0017274,autosomal ichthyosis syndrome with other associated signs +9.1102158,PR:000029158,http://purl.obolibrary.org/obo/PR_000029158,none +9.1106078,UBERON:0006107,http://purl.obolibrary.org/obo/UBERON_0006107,basolateral amygdaloid nuclear complex +9.1109998,GO:0005876,http://purl.obolibrary.org/obo/GO_0005876,spindle microtubule +9.1113921,MONDO:0006637,http://purl.obolibrary.org/obo/MONDO_0006637,acute kidney tubular necrosis +9.1113921,UBERON:4200133,http://purl.obolibrary.org/obo/UBERON_4200133,crest +9.1117845,CHEBI:37176,http://purl.obolibrary.org/obo/CHEBI_37176,mononuclear parent hydride +9.1117845,MONDO:0002586,http://purl.obolibrary.org/obo/MONDO_0002586,thymus cancer +9.1117845,PR:000010459,http://purl.obolibrary.org/obo/PR_000010459,MLX-interacting protein +9.112177,DRUGBANK:DB02513,http://purl.obolibrary.org/obo/DRUGBANK_DB02513,none +9.112177,MONDO:0005910,http://purl.obolibrary.org/obo/MONDO_0005910,phagocyte bactericidal dysfunction +9.112177,MONDO:0019088,http://purl.obolibrary.org/obo/MONDO_0019088,post-transplant lymphoproliferative disease +9.1125697,GO:0009408,http://purl.obolibrary.org/obo/GO_0009408,response to heat +9.1125697,PR:000012911,http://purl.obolibrary.org/obo/PR_000012911,mitochondrial-processing peptidase subunit alpha +9.1129625,GO:0009066,http://purl.obolibrary.org/obo/GO_0009066,aspartate family amino acid metabolic process +9.1129625,NCBITaxon:1489388,http://purl.obolibrary.org/obo/NCBITaxon_1489388,Euteleosteomorpha +9.1133555,PR:000007229,http://purl.obolibrary.org/obo/PR_000007229,transcription factor ETV6 +9.1137487,UBERON:0014891,http://purl.obolibrary.org/obo/UBERON_0014891,brainstem white matter +9.114142,DRUGBANK:DB04223,http://purl.obolibrary.org/obo/DRUGBANK_DB04223,none +9.114142,MONDO:0017773,http://purl.obolibrary.org/obo/MONDO_0017773,hypoalphalipoproteinemia +9.1157168,MONDO:0018305,http://purl.obolibrary.org/obo/MONDO_0018305,chronic granulomatous disease +9.1161109,PR:000012851,http://purl.obolibrary.org/obo/PR_000012851,pleckstrin +9.1161109,UBERON:0004452,http://purl.obolibrary.org/obo/UBERON_0004452,carpal region +9.1165052,GO:0007126,http://purl.obolibrary.org/obo/GO_0007126,none +9.1165052,PR:000012523,http://purl.obolibrary.org/obo/PR_000012523,pancreas/duodenum homeobox protein 1 +9.1172941,GO:0044440,http://purl.obolibrary.org/obo/GO_0044440,none +9.1172941,GO:0055103,http://purl.obolibrary.org/obo/GO_0055103,ligase regulator activity +9.1172941,PR:000007741,http://purl.obolibrary.org/obo/PR_000007741,none +9.1172941,PR:000027547,http://purl.obolibrary.org/obo/PR_000027547,histone H2A +9.1176888,GO:0034248,http://purl.obolibrary.org/obo/GO_0034248,regulation of cellular amide metabolic process +9.1176888,MONDO:0015572,http://purl.obolibrary.org/obo/MONDO_0015572,cerebral malformation due to abnormal neuronal migration +9.1176888,MONDO:0021232,http://purl.obolibrary.org/obo/MONDO_0021232,pineal body neoplasm +9.1176888,PR:000016869,http://purl.obolibrary.org/obo/PR_000016869,thioredoxin-like protein 4A +9.1180837,CHEBI:60030,http://purl.obolibrary.org/obo/CHEBI_60030,poly(vinyl alcohol) polymer +9.1188739,UBERON:0003038,http://purl.obolibrary.org/obo/UBERON_0003038,thoracic spinal cord +9.1192692,MONDO:0007526,http://purl.obolibrary.org/obo/MONDO_0007526,Ehlers-Danlos syndrome progeroid type +9.1192692,PR:000000684,http://purl.obolibrary.org/obo/PR_000000684,voltage-gated potassium channel subunit KQT +9.1196647,PR:000006844,http://purl.obolibrary.org/obo/PR_000006844,dihydrofolate reductase +9.1200604,GO:0002764,http://purl.obolibrary.org/obo/GO_0002764,immune response-regulating signaling pathway +9.1200604,MONDO:0006808,http://purl.obolibrary.org/obo/MONDO_0006808,intracranial arterial disease +9.1200604,NCBITaxon:337041,http://purl.obolibrary.org/obo/NCBITaxon_337041,none +9.1204562,DRUGBANK:DB11105,http://purl.obolibrary.org/obo/DRUGBANK_DB11105,none +9.1204562,HP:0003072,http://purl.obolibrary.org/obo/HP_0003072,Hypercalcemia +9.1204562,UBERON:0006660,http://purl.obolibrary.org/obo/UBERON_0006660,muscular coat +9.1208521,HP:0001317,http://purl.obolibrary.org/obo/HP_0001317,Abnormal cerebellum morphology +9.1208521,MONDO:0002732,http://purl.obolibrary.org/obo/MONDO_0002732,lung benign neoplasm +9.1208521,PR:000003761,http://purl.obolibrary.org/obo/PR_000003761,pituitary adenylate cyclase-activating polypeptide +9.1212482,CHEBI:33261,http://purl.obolibrary.org/obo/CHEBI_33261,organosulfur compound +9.1212482,DRUGBANK:DB04104,http://purl.obolibrary.org/obo/DRUGBANK_DB04104,none +9.1212482,GO:0001558,http://purl.obolibrary.org/obo/GO_0001558,regulation of cell growth +9.1212482,HP:0010993,http://purl.obolibrary.org/obo/HP_0010993,Abnormality of the cerebral subcortex +9.1216445,GO:0015947,http://purl.obolibrary.org/obo/GO_0015947,methane metabolic process +9.1216445,MONDO:0020167,http://purl.obolibrary.org/obo/MONDO_0020167,malposition of external canthus +9.122041,UBERON:0034705,http://purl.obolibrary.org/obo/UBERON_0034705,developing neuroepithelium +9.1232312,CHEBI:26082,http://purl.obolibrary.org/obo/CHEBI_26082,phosphorus molecular entity +9.1232312,HP:0002637,http://purl.obolibrary.org/obo/HP_0002637,Cerebral ischemia +9.1232312,MONDO:0006869,http://purl.obolibrary.org/obo/MONDO_0006869,nodular goiter +9.1236283,MONDO:0044033,http://purl.obolibrary.org/obo/MONDO_0044033,posterior leukoencephalopathy syndrome +9.1236283,UBERON:0001064,http://purl.obolibrary.org/obo/UBERON_0001064,ventral pancreatic duct +9.1240255,PR:000044669,http://purl.obolibrary.org/obo/PR_000044669,P2X receptor protein +9.1244229,DRUGBANK:DB00176,http://purl.obolibrary.org/obo/DRUGBANK_DB00176,none +9.1244229,GO:0014823,http://purl.obolibrary.org/obo/GO_0014823,response to activity +9.1248204,CHEBI:138675,http://purl.obolibrary.org/obo/CHEBI_138675,gas molecular entity +9.1248204,CHEBI:15377,http://purl.obolibrary.org/obo/CHEBI_15377,water +9.1248204,NCBITaxon:39740,http://purl.obolibrary.org/obo/NCBITaxon_39740,none +9.1248204,UBERON:0006635,http://purl.obolibrary.org/obo/UBERON_0006635,anterior abdominal wall +9.1256159,DRUGBANK:DB10685,http://purl.obolibrary.org/obo/DRUGBANK_DB10685,none +9.1256159,DRUGBANK:DB15734,http://purl.obolibrary.org/obo/DRUGBANK_DB15734,none +9.1256159,HP:0025323,http://purl.obolibrary.org/obo/HP_0025323,Abnormal arterial physiology +9.1256159,HP:0033401,http://purl.obolibrary.org/obo/HP_0033401,Tissue ischemia +9.1260139,CHEBI:50510,http://purl.obolibrary.org/obo/CHEBI_50510,potassium channel modulator +9.1260139,GO:0043691,http://purl.obolibrary.org/obo/GO_0043691,reverse cholesterol transport +9.1260139,NCBITaxon:10892,http://purl.obolibrary.org/obo/NCBITaxon_10892,Orbivirus +9.1264121,HP:0000962,http://purl.obolibrary.org/obo/HP_0000962,Hyperkeratosis +9.1264121,UBERON:0010303,http://purl.obolibrary.org/obo/UBERON_0010303,extraembryonic epithelium +9.1268104,PR:O81845,http://purl.obolibrary.org/obo/PR_O81845,none +9.1272089,GO:0042417,http://purl.obolibrary.org/obo/GO_0042417,dopamine metabolic process +9.1276076,GO:0140110,http://purl.obolibrary.org/obo/GO_0140110,transcription regulator activity +9.1276076,MONDO:0001044,http://purl.obolibrary.org/obo/MONDO_0001044,esophageal atresia +9.1280064,GO:0016688,http://purl.obolibrary.org/obo/GO_0016688,L-ascorbate peroxidase activity +9.1284053,MONDO:0006669,http://purl.obolibrary.org/obo/MONDO_0006669,bacterial endocarditis +9.1284053,UBERON:0001272,http://purl.obolibrary.org/obo/UBERON_0001272,innominate bone +9.1284053,UBERON:0007692,http://purl.obolibrary.org/obo/UBERON_0007692,nucleus of thalamus +9.1292037,MONDO:0021121,http://purl.obolibrary.org/obo/MONDO_0021121,hemangioendothelioma +9.1292037,PR:000036822,http://purl.obolibrary.org/obo/PR_000036822,none +9.1296032,DRUGBANK:DB02574,http://purl.obolibrary.org/obo/DRUGBANK_DB02574,none +9.1304025,GO:0071944,http://purl.obolibrary.org/obo/GO_0071944,cell periphery +9.1304025,HP:0002059,http://purl.obolibrary.org/obo/HP_0002059,Cerebral atrophy +9.1304025,MONDO:0000414,http://purl.obolibrary.org/obo/MONDO_0000414,childhood electroclinical syndrome +9.1304025,PR:000009196,http://purl.obolibrary.org/obo/PR_000009196,tyrosine-protein kinase JAK1 +9.1316028,GO:0006308,http://purl.obolibrary.org/obo/GO_0006308,DNA catabolic process +9.1316028,MONDO:0002173,http://purl.obolibrary.org/obo/MONDO_0002173,neuroma +9.1320032,CHEBI:30879,http://purl.obolibrary.org/obo/CHEBI_30879,alcohol +9.1320032,DRUGBANK:DB00578,http://purl.obolibrary.org/obo/DRUGBANK_DB00578,none +9.1324037,PR:000029896,http://purl.obolibrary.org/obo/PR_000029896,death-associated protein kinase +9.1328045,PR:000010764,http://purl.obolibrary.org/obo/PR_000010764,mucin-2 +9.1332053,CHEBI:35522,http://purl.obolibrary.org/obo/CHEBI_35522,beta-adrenergic agonist +9.1332053,UBERON:0004233,http://purl.obolibrary.org/obo/UBERON_0004233,lower respiratory tract smooth muscle +9.1336064,DRUGBANK:DB00728,http://purl.obolibrary.org/obo/DRUGBANK_DB00728,none +9.1336064,GO:0002251,http://purl.obolibrary.org/obo/GO_0002251,organ or tissue specific immune response +9.1336064,MONDO:0006712,http://purl.obolibrary.org/obo/MONDO_0006712,corneal edema +9.1336064,PR:000004526,http://purl.obolibrary.org/obo/PR_000004526,Axin-1 +9.1336064,PR:000014393,http://purl.obolibrary.org/obo/PR_000014393,none +9.134409,MONDO:0006693,http://purl.obolibrary.org/obo/MONDO_0006693,cerebral arterial disease +9.1348105,PR:000037800,http://purl.obolibrary.org/obo/PR_000037800,paired box protein PAX group II +9.1352122,UBERON:0002424,http://purl.obolibrary.org/obo/UBERON_0002424,oral epithelium +9.135614,CHEBI:36360,http://purl.obolibrary.org/obo/CHEBI_36360,phosphorus oxoacids and derivatives +9.136016,MONDO:0024475,http://purl.obolibrary.org/obo/MONDO_0024475,squamous cell intraepithelial neoplasia +9.136016,UBERON:0000126,http://purl.obolibrary.org/obo/UBERON_0000126,cranial nerve nucleus +9.1364182,CHEBI:33318,http://purl.obolibrary.org/obo/CHEBI_33318,main group element atom +9.1364182,MONDO:0020193,http://purl.obolibrary.org/obo/MONDO_0020193,secretory apparatus of the lacrimal system anomaly +9.1364182,PR:000010684,http://purl.obolibrary.org/obo/PR_000010684,growth/differentiation factor 8 +9.137223,MONDO:0005921,http://purl.obolibrary.org/obo/MONDO_0005921,Plasmodium vivax malaria +9.137223,UBERON:0001619,http://purl.obolibrary.org/obo/UBERON_0001619,ophthalmic artery +9.1376257,MONDO:0005619,http://purl.obolibrary.org/obo/MONDO_0005619,typhoid fever +9.1376257,PR:000001197,http://purl.obolibrary.org/obo/PR_000001197,chemokine receptor CCR1/3/1L +9.1376257,PR:000017476,http://purl.obolibrary.org/obo/PR_000017476,X-box-binding protein 1 +9.1380285,MONDO:0006973,http://purl.obolibrary.org/obo/MONDO_0006973,skin appendage carcinoma +9.1380285,MONDO:0020194,http://purl.obolibrary.org/obo/MONDO_0020194,congenital alacrima +9.1384315,CHEBI:33597,http://purl.obolibrary.org/obo/CHEBI_33597,homocyclic compound +9.1384315,CHEBI:33598,http://purl.obolibrary.org/obo/CHEBI_33598,carbocyclic compound +9.1384315,PR:000012212,http://purl.obolibrary.org/obo/PR_000012212,proapoptotic caspase adapter protein +9.1388346,DRUGBANK:DB01051,http://purl.obolibrary.org/obo/DRUGBANK_DB01051,none +9.1392379,PR:000001315,http://purl.obolibrary.org/obo/PR_000001315,frizzled-like G-protein coupled receptor +9.1396414,MONDO:0020297,http://purl.obolibrary.org/obo/MONDO_0020297,Noonan syndrome and Noonan-related syndrome +9.140045,DRUGBANK:DB00520,http://purl.obolibrary.org/obo/DRUGBANK_DB00520,none +9.140045,GO:0002757,http://purl.obolibrary.org/obo/GO_0002757,immune response-activating signal transduction +9.140045,PR:000013078,http://purl.obolibrary.org/obo/PR_000013078,eukaryotic-type peptidyl-prolyl cis-trans isomerase D +9.1408528,CL:0011112,http://purl.obolibrary.org/obo/CL_0011112,magnocellular neurosecretory cell +9.1416612,GO:0031045,http://purl.obolibrary.org/obo/GO_0031045,dense core granule +9.1416612,HP:0011282,http://purl.obolibrary.org/obo/HP_0011282,Abnormality of hindbrain morphology +9.1416612,HP:0011283,http://purl.obolibrary.org/obo/HP_0011283,Abnormal metencephalon morphology +9.1416612,MONDO:0000474,http://purl.obolibrary.org/obo/MONDO_0000474,pericardium disease +9.1416612,MONDO:0018327,http://purl.obolibrary.org/obo/MONDO_0018327,glomus tumor +9.1424703,HP:0000069,http://purl.obolibrary.org/obo/HP_0000069,Abnormality of the ureter +9.1424703,MONDO:0005638,http://purl.obolibrary.org/obo/MONDO_0005638,agnosia +9.142875,GO:0015975,http://purl.obolibrary.org/obo/GO_0015975,energy derivation by oxidation of reduced inorganic compounds +9.142875,GO:0019104,http://purl.obolibrary.org/obo/GO_0019104,DNA N-glycosylase activity +9.142875,MONDO:0015229,http://purl.obolibrary.org/obo/MONDO_0015229,Bardet-Biedl syndrome +9.14328,DRUGBANK:DB10617,http://purl.obolibrary.org/obo/DRUGBANK_DB10617,none +9.14328,GO:0043447,http://purl.obolibrary.org/obo/GO_0043447,alkane biosynthetic process +9.14328,GO:0046960,http://purl.obolibrary.org/obo/GO_0046960,sensitization +9.14328,MONDO:0020645,http://purl.obolibrary.org/obo/MONDO_0020645,autosomal dominant osteopetrosis +9.14328,UBERON:0006533,http://purl.obolibrary.org/obo/UBERON_0006533,rectus extraocular muscle +9.1436851,GO:0043404,http://purl.obolibrary.org/obo/GO_0043404,corticotropin-releasing hormone receptor activity +9.1436851,HP:0011368,http://purl.obolibrary.org/obo/HP_0011368,Epidermal thickening +9.1436851,MONDO:0001505,http://purl.obolibrary.org/obo/MONDO_0001505,alcoholic hepatitis +9.1440904,DRUGBANK:DB01216,http://purl.obolibrary.org/obo/DRUGBANK_DB01216,none +9.1440904,MONDO:0001247,http://purl.obolibrary.org/obo/MONDO_0001247,social phobia +9.1444958,DRUGBANK:DB04493,http://purl.obolibrary.org/obo/DRUGBANK_DB04493,none +9.1444958,PR:000007725,http://purl.obolibrary.org/obo/PR_000007725,fizzy-related protein +9.1449014,GO:0045211,http://purl.obolibrary.org/obo/GO_0045211,postsynaptic membrane +9.1449014,MONDO:0017273,http://purl.obolibrary.org/obo/MONDO_0017273,autosomal ichthyosis syndrome with fatal disease course +9.1449014,PR:000044625,http://purl.obolibrary.org/obo/PR_000044625,5-hydroxytryptamine receptor +9.1449014,UBERON:0004345,http://purl.obolibrary.org/obo/UBERON_0004345,trophectoderm +9.1457131,GO:0006970,http://purl.obolibrary.org/obo/GO_0006970,response to osmotic stress +9.1457131,MONDO:0006235,http://purl.obolibrary.org/obo/MONDO_0006235,granular cell tumor +9.1457131,PR:000001031,http://purl.obolibrary.org/obo/PR_000001031,ezrin +9.1457131,PR:000001389,http://purl.obolibrary.org/obo/PR_000001389,interleukin-33 +9.1465254,DRUGBANK:DB06186,http://purl.obolibrary.org/obo/DRUGBANK_DB06186,none +9.1465254,GO:0015948,http://purl.obolibrary.org/obo/GO_0015948,methanogenesis +9.1465254,PR:000000099,http://purl.obolibrary.org/obo/PR_000000099,inhibitory smad protein +9.1469318,GO:0048017,http://purl.obolibrary.org/obo/GO_0048017,inositol lipid-mediated signaling +9.1469318,GO:1990874,http://purl.obolibrary.org/obo/GO_1990874,vascular associated smooth muscle cell proliferation +9.1469318,MONDO:0000257,http://purl.obolibrary.org/obo/MONDO_0000257,acute diarrhea +9.1473384,GO:0140013,http://purl.obolibrary.org/obo/GO_0140013,meiotic nuclear division +9.1481521,HP:0002015,http://purl.obolibrary.org/obo/HP_0002015,Dysphagia +9.1481521,HP:0006000,http://purl.obolibrary.org/obo/HP_0006000,Ureteral obstruction +9.1481521,HP:0025270,http://purl.obolibrary.org/obo/HP_0025270,Abnormal esophagus physiology +9.1485592,UBERON:0001278,http://purl.obolibrary.org/obo/UBERON_0001278,epithelium of large intestine +9.1489664,GO:0048015,http://purl.obolibrary.org/obo/GO_0048015,phosphatidylinositol-mediated signaling +9.1493738,DRUGBANK:DB04417,http://purl.obolibrary.org/obo/DRUGBANK_DB04417,none +9.1493738,PR:000004071,http://purl.obolibrary.org/obo/PR_000004071,annexin A1 +9.1501892,PR:000014990,http://purl.obolibrary.org/obo/PR_000014990,solute carrier family 22 member 3 +9.1505971,PR:000017509,http://purl.obolibrary.org/obo/PR_000017509,X-ray repair cross-complementing protein 6 +9.1505971,UBERON:0016410,http://purl.obolibrary.org/obo/UBERON_0016410,male breast +9.1510052,HP:0100886,http://purl.obolibrary.org/obo/HP_0100886,Abnormality of globe location +9.1514134,CL:0000135,http://purl.obolibrary.org/obo/CL_0000135,fibrocyte +9.1514134,DRUGBANK:DB00116,http://purl.obolibrary.org/obo/DRUGBANK_DB00116,none +9.1518218,DRUGBANK:DB11130,http://purl.obolibrary.org/obo/DRUGBANK_DB11130,none +9.1518218,GO:0006639,http://purl.obolibrary.org/obo/GO_0006639,acylglycerol metabolic process +9.1518218,GO:0031668,http://purl.obolibrary.org/obo/GO_0031668,cellular response to extracellular stimulus +9.1518218,PR:000001961,http://purl.obolibrary.org/obo/PR_000001961,tumor necrosis factor receptor superfamily member 5 +9.1518218,PR:Q9ZR12,http://purl.obolibrary.org/obo/PR_Q9ZR12,none +9.1522304,UBERON:0000392,http://purl.obolibrary.org/obo/UBERON_0000392,longissimus muscle +9.1526392,GO:0031214,http://purl.obolibrary.org/obo/GO_0031214,biomineral tissue development +9.1530481,GO:0002385,http://purl.obolibrary.org/obo/GO_0002385,mucosal immune response +9.1530481,HP:0025634,http://purl.obolibrary.org/obo/HP_0025634,Abnormal ureter physiology +9.1530481,PR:000017444,http://purl.obolibrary.org/obo/PR_000017444,protein Wnt-4 +9.1534571,GO:0071887,http://purl.obolibrary.org/obo/GO_0071887,leukocyte apoptotic process +9.1534571,MONDO:0003543,http://purl.obolibrary.org/obo/MONDO_0003543,trigeminal nerve disease +9.1538664,PR:000006506,http://purl.obolibrary.org/obo/PR_000006506,"dihydrolipoyl dehydrogenase, mitochondrial" +9.1538664,PR:000015532,http://purl.obolibrary.org/obo/PR_000015532,serine protease inhibitor Kazal-type 1 +9.1546854,CL:0000849,http://purl.obolibrary.org/obo/CL_0000849,crypt olfactory receptor neuron +9.1546854,PR:000003119,http://purl.obolibrary.org/obo/PR_000003119,baculoviral IAP repeat-containing protein 4 +9.1550952,DRUGBANK:DB01329,http://purl.obolibrary.org/obo/DRUGBANK_DB01329,none +9.1559152,PR:000027959,http://purl.obolibrary.org/obo/PR_000027959,none +9.1563254,MONDO:0005026,http://purl.obolibrary.org/obo/MONDO_0005026,endometrioid adenocarcinoma +9.1563254,PR:000002025,http://purl.obolibrary.org/obo/PR_000002025,T-cell surface glycoprotein CD1a +9.1567358,DRUGBANK:DB06273,http://purl.obolibrary.org/obo/DRUGBANK_DB06273,none +9.1567358,GO:0004909,http://purl.obolibrary.org/obo/GO_0004909,"interleukin-1, type I, activating receptor activity" +9.1567358,MONDO:0017719,http://purl.obolibrary.org/obo/MONDO_0017719,gangliosidosis +9.1567358,PR:000001363,http://purl.obolibrary.org/obo/PR_000001363,interleukin-1 receptor type I +9.1571464,DRUGBANK:DB15037,http://purl.obolibrary.org/obo/DRUGBANK_DB15037,none +9.1575572,CL:0000844,http://purl.obolibrary.org/obo/CL_0000844,germinal center B cell +9.1575572,HP:0012758,http://purl.obolibrary.org/obo/HP_0012758,Neurodevelopmental delay +9.1575572,PR:000004615,http://purl.obolibrary.org/obo/PR_000004615,beta-secretase 1 +9.1579681,GO:0016894,http://purl.obolibrary.org/obo/GO_0016894,"endonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 3'-phosphomonoesters" +9.1579681,PR:000002185,http://purl.obolibrary.org/obo/PR_000002185,Bcl-2 homologous antagonist/killer +9.1583792,CL:0000745,http://purl.obolibrary.org/obo/CL_0000745,retina horizontal cell +9.1583792,GO:0005579,http://purl.obolibrary.org/obo/GO_0005579,membrane attack complex +9.1583792,HP:0002870,http://purl.obolibrary.org/obo/HP_0002870,Obstructive sleep apnea +9.1583792,MONDO:0019623,http://purl.obolibrary.org/obo/MONDO_0019623,hereditary angioedema +9.1583792,PR:000002310,http://purl.obolibrary.org/obo/PR_000002310,caspase-10 +9.1583792,PR:000006167,http://purl.obolibrary.org/obo/PR_000006167,none +9.1583792,PR:000009277,http://purl.obolibrary.org/obo/PR_000009277,kelch-like ECH-associated protein 1 +9.1587905,GO:0000989,http://purl.obolibrary.org/obo/GO_0000989,none +9.1587905,GO:0001501,http://purl.obolibrary.org/obo/GO_0001501,skeletal system development +9.1587905,GO:0004422,http://purl.obolibrary.org/obo/GO_0004422,hypoxanthine phosphoribosyltransferase activity +9.1587905,PR:Q96509,http://purl.obolibrary.org/obo/PR_Q96509,none +9.1592019,MONDO:0012805,http://purl.obolibrary.org/obo/MONDO_0012805,childhood onset GLUT1 deficiency syndrome 2 +9.1600253,DRUGBANK:DB00522,http://purl.obolibrary.org/obo/DRUGBANK_DB00522,none +9.1600253,NCBITaxon:11757,http://purl.obolibrary.org/obo/NCBITaxon_11757,none +9.1604373,DRUGBANK:DB06643,http://purl.obolibrary.org/obo/DRUGBANK_DB06643,none +9.1604373,DRUGBANK:DB15864,http://purl.obolibrary.org/obo/DRUGBANK_DB15864,none +9.1604373,MONDO:0002351,http://purl.obolibrary.org/obo/MONDO_0002351,glottis cancer +9.1604373,NCBITaxon:10379,http://purl.obolibrary.org/obo/NCBITaxon_10379,Rhadinovirus +9.1612617,DRUGBANK:DB05259,http://purl.obolibrary.org/obo/DRUGBANK_DB05259,none +9.1612617,MONDO:0008978,http://purl.obolibrary.org/obo/MONDO_0008978,chordoma +9.1616741,GO:0110148,http://purl.obolibrary.org/obo/GO_0110148,biomineralization +9.1616741,NCBITaxon:28344,http://purl.obolibrary.org/obo/NCBITaxon_28344,Porcine reproductive and respiratory syndrome virus +9.1620867,GO:0014065,http://purl.obolibrary.org/obo/GO_0014065,phosphatidylinositol 3-kinase signaling +9.1624995,GO:0003712,http://purl.obolibrary.org/obo/GO_0003712,transcription coregulator activity +9.1629125,MONDO:0006700,http://purl.obolibrary.org/obo/MONDO_0006700,choroid cancer +9.1633257,SO:0001033,http://purl.obolibrary.org/obo/SO_0001033,chloroplast_DNA +9.163739,GO:0003013,http://purl.obolibrary.org/obo/GO_0003013,circulatory system process +9.163739,GO:0005767,http://purl.obolibrary.org/obo/GO_0005767,secondary lysosome +9.163739,HP:0012243,http://purl.obolibrary.org/obo/HP_0012243,Abnormal reproductive system morphology +9.1641524,DRUGBANK:DB01035,http://purl.obolibrary.org/obo/DRUGBANK_DB01035,none +9.1641524,NCBITaxon:10345,http://purl.obolibrary.org/obo/NCBITaxon_10345,Suid alphaherpesvirus 1 +9.1641524,PR:000012449,http://purl.obolibrary.org/obo/PR_000012449,28 kDa heat- and acid-stable phosphoprotein +9.1645661,GO:0004974,http://purl.obolibrary.org/obo/GO_0004974,leukotriene receptor activity +9.1649799,DRUGBANK:DB00292,http://purl.obolibrary.org/obo/DRUGBANK_DB00292,none +9.1649799,MONDO:0004625,http://purl.obolibrary.org/obo/MONDO_0004625,phlebitis +9.1649799,MONDO:0018616,http://purl.obolibrary.org/obo/MONDO_0018616,central serous chorioretinopathy +9.1653939,UBERON:0035112,http://purl.obolibrary.org/obo/UBERON_0035112,intrinsic muscle +9.1658081,DRUGBANK:DB00208,http://purl.obolibrary.org/obo/DRUGBANK_DB00208,none +9.1658081,PR:000003030,http://purl.obolibrary.org/obo/PR_000003030,focal adhesion kinase +9.1662224,GO:0005010,http://purl.obolibrary.org/obo/GO_0005010,insulin-like growth factor-activated receptor activity +9.1662224,MONDO:0005643,http://purl.obolibrary.org/obo/MONDO_0005643,Alphavirus infectious disease +9.1662224,MONDO:0005985,http://purl.obolibrary.org/obo/MONDO_0005985,Togaviridae infectious disease +9.1662224,UBERON:0001434,http://purl.obolibrary.org/obo/UBERON_0001434,skeletal system +9.1666369,DRUGBANK:DB01446,http://purl.obolibrary.org/obo/DRUGBANK_DB01446,none +9.1670516,GO:0006417,http://purl.obolibrary.org/obo/GO_0006417,regulation of translation +9.1674664,MONDO:0016365,http://purl.obolibrary.org/obo/MONDO_0016365,familial primary hyperparathyroidism +9.1674664,UBERON:0003902,http://purl.obolibrary.org/obo/UBERON_0003902,retinal neural layer +9.1678815,DRUGBANK:DB06824,http://purl.obolibrary.org/obo/DRUGBANK_DB06824,none +9.1678815,GO:0005319,http://purl.obolibrary.org/obo/GO_0005319,lipid transporter activity +9.1678815,GO:0008406,http://purl.obolibrary.org/obo/GO_0008406,gonad development +9.1678815,MONDO:0024913,http://purl.obolibrary.org/obo/MONDO_0024913,cattle disease +9.168712,DRUGBANK:DB09511,http://purl.obolibrary.org/obo/DRUGBANK_DB09511,none +9.168712,GO:0042558,http://purl.obolibrary.org/obo/GO_0042558,pteridine-containing compound metabolic process +9.168712,SO:0001872,http://purl.obolibrary.org/obo/SO_0001872,rearrangement_region +9.1695433,UBERON:0005740,http://purl.obolibrary.org/obo/UBERON_0005740,tunica intima of artery +9.1699592,MONDO:0006823,http://purl.obolibrary.org/obo/MONDO_0006823,Klinefelter syndrome +9.1703752,MONDO:0043479,http://purl.obolibrary.org/obo/MONDO_0043479,adenoviridae infectious disease +9.1707915,MONDO:0003878,http://purl.obolibrary.org/obo/MONDO_0003878,malignant choroid melanoma +9.1707915,MONDO:0017094,http://purl.obolibrary.org/obo/MONDO_0017094,cerebral cortical dysplasia +9.1712079,DRUGBANK:DB00257,http://purl.obolibrary.org/obo/DRUGBANK_DB00257,none +9.1712079,GO:0004359,http://purl.obolibrary.org/obo/GO_0004359,glutaminase activity +9.1712079,MONDO:0005216,http://purl.obolibrary.org/obo/MONDO_0005216,hypopharyngeal carcinoma +9.1712079,PR:000008730,http://purl.obolibrary.org/obo/PR_000008730,4-hydroxyphenylpyruvate dioxygenase +9.1716245,PR:000013652,http://purl.obolibrary.org/obo/PR_000013652,Rab5 GDP/GTP exchange factor +9.1724581,SO:0001563,http://purl.obolibrary.org/obo/SO_0001563,copy_number_change +9.1728752,GO:0044182,http://purl.obolibrary.org/obo/GO_0044182,filamentous growth of a population of unicellular organisms +9.1728752,GO:0070783,http://purl.obolibrary.org/obo/GO_0070783,growth of unicellular organism as a thread of attached cells +9.1728752,PR:000001862,http://purl.obolibrary.org/obo/PR_000001862,interferon regulatory factor 1/2 +9.1728752,PR:Q39204,http://purl.obolibrary.org/obo/PR_Q39204,none +9.1732925,PR:Q679P3,http://purl.obolibrary.org/obo/PR_Q679P3,none +9.1745454,PR:000009761,http://purl.obolibrary.org/obo/PR_000009761,prolyl 3-hydroxylase 3 +9.1749634,DRUGBANK:DB01744,http://purl.obolibrary.org/obo/DRUGBANK_DB01744,none +9.1749634,GO:0043624,http://purl.obolibrary.org/obo/GO_0043624,cellular protein complex disassembly +9.1749634,PR:000016951,http://purl.obolibrary.org/obo/PR_000016951,SUMO-activating enzyme subunit 2 +9.1753815,MONDO:0016166,http://purl.obolibrary.org/obo/MONDO_0016166,genetic hyperparathyroidism +9.1753815,PR:000006087,http://purl.obolibrary.org/obo/PR_000006087,cytochrome b-245 heavy chain +9.1757998,DRUGBANK:DB10401,http://purl.obolibrary.org/obo/DRUGBANK_DB10401,none +9.1757998,DRUGBANK:DB14736,http://purl.obolibrary.org/obo/DRUGBANK_DB14736,none +9.1757998,MONDO:0017763,http://purl.obolibrary.org/obo/MONDO_0017763,disorder of iron metabolism and transport +9.176637,GO:0006486,http://purl.obolibrary.org/obo/GO_0006486,protein glycosylation +9.176637,GO:0006835,http://purl.obolibrary.org/obo/GO_0006835,dicarboxylic acid transport +9.176637,GO:0046883,http://purl.obolibrary.org/obo/GO_0046883,regulation of hormone secretion +9.1770558,DRUGBANK:DB15217,http://purl.obolibrary.org/obo/DRUGBANK_DB15217,none +9.1774749,DRUGBANK:DB00722,http://purl.obolibrary.org/obo/DRUGBANK_DB00722,none +9.1783134,CHEBI:64946,http://purl.obolibrary.org/obo/CHEBI_64946,anti-HIV agent +9.1783134,GO:0043413,http://purl.obolibrary.org/obo/GO_0043413,macromolecule glycosylation +9.1783134,PR:000001338,http://purl.obolibrary.org/obo/PR_000001338,complement receptor type 2 +9.1783134,PR:P00045,http://purl.obolibrary.org/obo/PR_P00045,none +9.1783134,PR:P25719,http://purl.obolibrary.org/obo/PR_P25719,none +9.1783134,PR:P52011,http://purl.obolibrary.org/obo/PR_P52011,none +9.1783134,UBERON:0000115,http://purl.obolibrary.org/obo/UBERON_0000115,lung epithelium +9.178733,PR:000001087,http://purl.obolibrary.org/obo/PR_000001087,adhesion G-protein coupled receptor +9.1791527,MONDO:0015686,http://purl.obolibrary.org/obo/MONDO_0015686,primary peritoneal carcinoma +9.1795726,PR:P32467,http://purl.obolibrary.org/obo/PR_P32467,none +9.1799927,DRUGBANK:DB01088,http://purl.obolibrary.org/obo/DRUGBANK_DB01088,none +9.1799927,GO:0061714,http://purl.obolibrary.org/obo/GO_0061714,folic acid receptor activity +9.1799927,MONDO:0019698,http://purl.obolibrary.org/obo/MONDO_0019698,bent bone dysplasia +9.180413,DRUGBANK:DB15182,http://purl.obolibrary.org/obo/DRUGBANK_DB15182,none +9.180413,PR:P16649,http://purl.obolibrary.org/obo/PR_P16649,none +9.180413,PR:Q8W4B1,http://purl.obolibrary.org/obo/PR_Q8W4B1,none +9.1808334,DRUGBANK:DB00938,http://purl.obolibrary.org/obo/DRUGBANK_DB00938,none +9.1808334,GO:0050865,http://purl.obolibrary.org/obo/GO_0050865,regulation of cell activation +9.1808334,PR:000011149,http://purl.obolibrary.org/obo/PR_000011149,E3 ubiquitin-protein ligase NEURL1 +9.1808334,PR:000017209,http://purl.obolibrary.org/obo/PR_000017209,utrophin +9.1816748,GO:0014074,http://purl.obolibrary.org/obo/GO_0014074,response to purine-containing compound +9.1820958,DRUGBANK:DB00723,http://purl.obolibrary.org/obo/DRUGBANK_DB00723,none +9.1820958,MONDO:0002652,http://purl.obolibrary.org/obo/MONDO_0002652,anus adenocarcinoma +9.1825169,PR:000009649,http://purl.obolibrary.org/obo/PR_000009649,alpha-lactalbumin +9.1825169,UBERON:0005904,http://purl.obolibrary.org/obo/UBERON_0005904,duct of male reproductive system +9.1829382,GO:0001516,http://purl.obolibrary.org/obo/GO_0001516,prostaglandin biosynthetic process +9.1829382,PR:000011145,http://purl.obolibrary.org/obo/PR_000011145,sialidase-1 +9.1833597,DRUGBANK:DB11142,http://purl.obolibrary.org/obo/DRUGBANK_DB11142,none +9.1837814,MONDO:0100148,http://purl.obolibrary.org/obo/MONDO_0100148,X-linked complex neurodevelopmental disorder +9.1842032,MONDO:0019792,http://purl.obolibrary.org/obo/MONDO_0019792,autosomal dominant cerebellar ataxia type I +9.1846253,DRUGBANK:DB00282,http://purl.obolibrary.org/obo/DRUGBANK_DB00282,none +9.1846253,GO:0044275,http://purl.obolibrary.org/obo/GO_0044275,cellular carbohydrate catabolic process +9.1846253,PR:000003562,http://purl.obolibrary.org/obo/PR_000003562,ATP-binding cassette sub-family C member 6 +9.1854699,CL:0000387,http://purl.obolibrary.org/obo/CL_0000387,hemocyte (sensu Arthropoda) +9.1854699,DRUGBANK:DB04839,http://purl.obolibrary.org/obo/DRUGBANK_DB04839,none +9.1854699,GO:0004017,http://purl.obolibrary.org/obo/GO_0004017,adenylate kinase activity +9.1854699,MONDO:0024432,http://purl.obolibrary.org/obo/MONDO_0024432,nerve plexus disease +9.1863152,PR:Q42093,http://purl.obolibrary.org/obo/PR_Q42093,none +9.1863152,UBERON:0034889,http://purl.obolibrary.org/obo/UBERON_0034889,posterior parietal cortex +9.1867381,CHEBI:59229,http://purl.obolibrary.org/obo/CHEBI_59229,GnRH antagonist +9.1867381,DRUGBANK:DB09093,http://purl.obolibrary.org/obo/DRUGBANK_DB09093,none +9.1867381,HP:0100529,http://purl.obolibrary.org/obo/HP_0100529,Abnormal blood phosphate concentration +9.1871612,DRUGBANK:DB11858,http://purl.obolibrary.org/obo/DRUGBANK_DB11858,none +9.1871612,GO:0004960,http://purl.obolibrary.org/obo/GO_0004960,thromboxane receptor activity +9.1871612,PR:000007635,http://purl.obolibrary.org/obo/PR_000007635,forkhead box protein M1 +9.1875845,DRUGBANK:DB04699,http://purl.obolibrary.org/obo/DRUGBANK_DB04699,none +9.1880079,DRUGBANK:DB02362,http://purl.obolibrary.org/obo/DRUGBANK_DB02362,none +9.1880079,DRUGBANK:DB02999,http://purl.obolibrary.org/obo/DRUGBANK_DB02999,none +9.1880079,HP:0002463,http://purl.obolibrary.org/obo/HP_0002463,Language impairment +9.1880079,PR:000015792,http://purl.obolibrary.org/obo/PR_000015792,syntaxin-1A +9.1884316,GO:0006641,http://purl.obolibrary.org/obo/GO_0006641,triglyceride metabolic process +9.1884316,PR:000003457,http://purl.obolibrary.org/obo/PR_000003457,V(D)J recombination-activating protein 1 +9.1884316,PR:O22150,http://purl.obolibrary.org/obo/PR_O22150,none +9.1884316,PR:P46014,http://purl.obolibrary.org/obo/PR_P46014,none +9.1888554,UBERON:0008549,http://purl.obolibrary.org/obo/UBERON_0008549,prevertebral muscle +9.1892794,MONDO:0016784,http://purl.obolibrary.org/obo/MONDO_0016784,gestational trophoblastic disease +9.1897036,DRUGBANK:DB03107,http://purl.obolibrary.org/obo/DRUGBANK_DB03107,none +9.1897036,PR:000010514,http://purl.obolibrary.org/obo/PR_000010514,myelin-oligodendrocyte glycoprotein +9.1905525,DRUGBANK:DB03222,http://purl.obolibrary.org/obo/DRUGBANK_DB03222,none +9.1909772,DRUGBANK:DB01432,http://purl.obolibrary.org/obo/DRUGBANK_DB01432,none +9.1909772,UBERON:0002294,http://purl.obolibrary.org/obo/UBERON_0002294,biliary system +9.1909772,UBERON:0004813,http://purl.obolibrary.org/obo/UBERON_0004813,seminiferous tubule epithelium +9.1918272,PR:Q2G1X0,http://purl.obolibrary.org/obo/PR_Q2G1X0,none +9.1922524,PR:000001320,http://purl.obolibrary.org/obo/PR_000001320,"alpha-(1,3)-fucosyltransferase" +9.1922524,PR:000012477,http://purl.obolibrary.org/obo/PR_000012477,"cGMP-specific 3',5'-cyclic phosphodiesterase" +9.1922524,PR:000012496,http://purl.obolibrary.org/obo/PR_000012496,"pyruvate dehydrogenase protein X component, mitochondrial" +9.1922524,PR:000023489,http://purl.obolibrary.org/obo/PR_000023489,none +9.1922524,PR:000045384,http://purl.obolibrary.org/obo/PR_000045384,protein kinase D +9.1931035,GO:0030155,http://purl.obolibrary.org/obo/GO_0030155,regulation of cell adhesion +9.1931035,NCBITaxon:333760,http://purl.obolibrary.org/obo/NCBITaxon_333760,none +9.1931035,UBERON:0004725,http://purl.obolibrary.org/obo/UBERON_0004725,piriform cortex +9.1935293,CHEBI:16670,http://purl.obolibrary.org/obo/CHEBI_16670,peptide +9.1935293,MONDO:0004379,http://purl.obolibrary.org/obo/MONDO_0004379,female breast carcinoma +9.1935293,MONDO:0015612,http://purl.obolibrary.org/obo/MONDO_0015612,Dent disease +9.1943814,GO:0031348,http://purl.obolibrary.org/obo/GO_0031348,negative regulation of defense response +9.1948078,MONDO:0010726,http://purl.obolibrary.org/obo/MONDO_0010726,Rett syndrome +9.1948078,PR:000016237,http://purl.obolibrary.org/obo/PR_000016237,telomeric repeat-binding factor 2-interacting protein 1 +9.1952343,DRUGBANK:DB03467,http://purl.obolibrary.org/obo/DRUGBANK_DB03467,none +9.1952343,PR:000003920,http://purl.obolibrary.org/obo/PR_000003920,retinal dehydrogenase 1 +9.195661,CHEBI:61422,http://purl.obolibrary.org/obo/CHEBI_61422,conjugated polymer +9.195661,DRUGBANK:DB12518,http://purl.obolibrary.org/obo/DRUGBANK_DB12518,none +9.195661,MONDO:0015175,http://purl.obolibrary.org/obo/MONDO_0015175,autoimmune pancreatitis +9.195661,MONDO:0024280,http://purl.obolibrary.org/obo/MONDO_0024280,polyarticular arthritis +9.1960879,PR:P18613,http://purl.obolibrary.org/obo/PR_P18613,none +9.1960879,PR:Q6NYJ3,http://purl.obolibrary.org/obo/PR_Q6NYJ3,none +9.196515,DRUGBANK:DB09037,http://purl.obolibrary.org/obo/DRUGBANK_DB09037,none +9.196515,DRUGBANK:DB13906,http://purl.obolibrary.org/obo/DRUGBANK_DB13906,none +9.1969423,GO:0051172,http://purl.obolibrary.org/obo/GO_0051172,negative regulation of nitrogen compound metabolic process +9.1969423,PR:000001450,http://purl.obolibrary.org/obo/PR_000001450,fibroblast growth factor receptor 3 +9.1973697,CHEBI:35703,http://purl.obolibrary.org/obo/CHEBI_35703,xenobiotic +9.1973697,MONDO:0000492,http://purl.obolibrary.org/obo/MONDO_0000492,chronic venous insufficiency +9.1973697,SO:0000150,http://purl.obolibrary.org/obo/SO_0000150,read +9.1977973,GO:0045730,http://purl.obolibrary.org/obo/GO_0045730,respiratory burst +9.1977973,GO:0072643,http://purl.obolibrary.org/obo/GO_0072643,none +9.1977973,MONDO:0012089,http://purl.obolibrary.org/obo/MONDO_0012089,ichthyosis prematurity syndrome +9.1977973,PR:P41183,http://purl.obolibrary.org/obo/PR_P41183,none +9.1982251,CHEBI:75603,http://purl.obolibrary.org/obo/CHEBI_75603,EC 6.* (ligase) inhibitor +9.1982251,GO:0055104,http://purl.obolibrary.org/obo/GO_0055104,ligase inhibitor activity +9.1982251,PR:000012427,http://purl.obolibrary.org/obo/PR_000012427,procollagen C-endopeptidase enhancer 1 +9.1986531,DRUGBANK:DB00857,http://purl.obolibrary.org/obo/DRUGBANK_DB00857,none +9.1986531,GO:0000272,http://purl.obolibrary.org/obo/GO_0000272,polysaccharide catabolic process +9.1986531,PR:000015475,http://purl.obolibrary.org/obo/PR_000015475,SPARC protein +9.1990813,DRUGBANK:DB01601,http://purl.obolibrary.org/obo/DRUGBANK_DB01601,none +9.1990813,DRUGBANK:DB06783,http://purl.obolibrary.org/obo/DRUGBANK_DB06783,none +9.1990813,MONDO:0015653,http://purl.obolibrary.org/obo/MONDO_0015653,monogenic epilepsy +9.1990813,MONDO:0019170,http://purl.obolibrary.org/obo/MONDO_0019170,polyarteritis nodosa +9.1990813,PR:000022772,http://purl.obolibrary.org/obo/PR_000022772,none +9.1995097,DRUGBANK:DB00108,http://purl.obolibrary.org/obo/DRUGBANK_DB00108,none +9.1995097,PR:000007243,http://purl.obolibrary.org/obo/PR_000007243,RNA-binding protein EWS +9.1999382,MONDO:0006039,http://purl.obolibrary.org/obo/MONDO_0006039,infectious colitis +9.2003669,CL:0000386,http://purl.obolibrary.org/obo/CL_0000386,attachment cell +9.2003669,GO:0019184,http://purl.obolibrary.org/obo/GO_0019184,nonribosomal peptide biosynthetic process +9.2003669,GO:0031349,http://purl.obolibrary.org/obo/GO_0031349,positive regulation of defense response +9.2003669,UBERON:0004716,http://purl.obolibrary.org/obo/UBERON_0004716,conceptus +9.2007958,MONDO:0001059,http://purl.obolibrary.org/obo/MONDO_0001059,gastric lymphoma +9.2012249,HP:0008373,http://purl.obolibrary.org/obo/HP_0008373,Puberty and gonadal disorders +9.2012249,MONDO:0018944,http://purl.obolibrary.org/obo/MONDO_0018944,gestational trophoblastic neoplasm +9.2012249,PR:O08775,http://purl.obolibrary.org/obo/PR_O08775,none +9.2012249,PR:P35918,http://purl.obolibrary.org/obo/PR_P35918,none +9.2016542,CHEBI:76760,http://purl.obolibrary.org/obo/CHEBI_76760,EC 3.1.* (ester hydrolase) inhibitor +9.2016542,CL:0002097,http://purl.obolibrary.org/obo/CL_0002097,cortical cell of adrenal gland +9.2016542,CL:1001601,http://purl.obolibrary.org/obo/CL_1001601,adrenal gland glandular cell +9.2016542,MONDO:0015491,http://purl.obolibrary.org/obo/MONDO_0015491,immune complex mediated vasculitis +9.2020837,PR:000001993,http://purl.obolibrary.org/obo/PR_000001993,C-C motif chemokine 21 +9.2029431,DRUGBANK:DB00087,http://purl.obolibrary.org/obo/DRUGBANK_DB00087,none +9.2029431,DRUGBANK:DB11898,http://purl.obolibrary.org/obo/DRUGBANK_DB11898,none +9.2038034,MONDO:0024470,http://purl.obolibrary.org/obo/MONDO_0024470,benign chondrogenic neoplasm +9.2038034,SO:0002154,http://purl.obolibrary.org/obo/SO_0002154,mitotic_recombination_region +9.2038034,SO:0002155,http://purl.obolibrary.org/obo/SO_0002155,meiotic_recombination_region +9.2038034,UBERON:0005053,http://purl.obolibrary.org/obo/UBERON_0005053,primary nerve cord +9.2042337,MONDO:0016011,http://purl.obolibrary.org/obo/MONDO_0016011,fetal alcohol syndrome +9.2042337,NCBITaxon:325675,http://purl.obolibrary.org/obo/NCBITaxon_325675,unclassified Arteriviridae +9.2042337,PR:000015169,http://purl.obolibrary.org/obo/PR_000015169,sodium/glucose cotransporter 2 +9.2046643,DRUGBANK:DB01406,http://purl.obolibrary.org/obo/DRUGBANK_DB01406,none +9.2046643,DRUGBANK:DB03040,http://purl.obolibrary.org/obo/DRUGBANK_DB03040,none +9.2046643,GO:0090066,http://purl.obolibrary.org/obo/GO_0090066,regulation of anatomical structure size +9.2050951,DRUGBANK:DB01528,http://purl.obolibrary.org/obo/DRUGBANK_DB01528,none +9.2050951,MONDO:0000367,http://purl.obolibrary.org/obo/MONDO_0000367,taeniasis +9.2050951,PR:000007998,http://purl.obolibrary.org/obo/PR_000007998,gap junction beta-2 protein +9.205526,CHEBI:25362,http://purl.obolibrary.org/obo/CHEBI_25362,elemental molecule +9.205526,PR:000001107,http://purl.obolibrary.org/obo/PR_000001107,D(1)-like dopamine receptor +9.2059571,DRUGBANK:DB02536,http://purl.obolibrary.org/obo/DRUGBANK_DB02536,none +9.2059571,PR:000000090,http://purl.obolibrary.org/obo/PR_000000090,CREB-binding protein +9.2063884,GO:0044247,http://purl.obolibrary.org/obo/GO_0044247,cellular polysaccharide catabolic process +9.2063884,GO:0044423,http://purl.obolibrary.org/obo/GO_0044423,virion component +9.2063884,PR:000030286,http://purl.obolibrary.org/obo/PR_000030286,solute carrier family 5 member 4 +9.2068199,GO:0009251,http://purl.obolibrary.org/obo/GO_0009251,glucan catabolic process +9.2068199,MONDO:0016872,http://purl.obolibrary.org/obo/MONDO_0016872,partial deletion of chromosome 7 +9.2068199,MONDO:0016906,http://purl.obolibrary.org/obo/MONDO_0016906,partial deletion of the long arm of chromosome 7 +9.2072516,DRUGBANK:DB07419,http://purl.obolibrary.org/obo/DRUGBANK_DB07419,none +9.2072516,GO:0004510,http://purl.obolibrary.org/obo/GO_0004510,tryptophan 5-monooxygenase activity +9.2072516,MONDO:0016987,http://purl.obolibrary.org/obo/MONDO_0016987,neuroacanthocytosis +9.2076835,MONDO:0006683,http://purl.obolibrary.org/obo/MONDO_0006683,brachial plexus neuropathy +9.2081156,CHEBI:29067,http://purl.obolibrary.org/obo/CHEBI_29067,carboxylic acid anion +9.2081156,MONDO:0005153,http://purl.obolibrary.org/obo/MONDO_0005153,cervical adenocarcinoma +9.2085478,GO:0004803,http://purl.obolibrary.org/obo/GO_0004803,transposase activity +9.2085478,UBERON:0008450,http://purl.obolibrary.org/obo/UBERON_0008450,psoas muscle +9.2089802,DRUGBANK:DB01563,http://purl.obolibrary.org/obo/DRUGBANK_DB01563,none +9.2094129,GO:0048284,http://purl.obolibrary.org/obo/GO_0048284,organelle fusion +9.2094129,PR:000006122,http://purl.obolibrary.org/obo/PR_000006122,cytochrome P450 2E1 +9.2098457,GO:1990399,http://purl.obolibrary.org/obo/GO_1990399,epithelium regeneration +9.2098457,PR:000001932,http://purl.obolibrary.org/obo/PR_000001932,signal transducer CD24 +9.2102787,DRUGBANK:DB00652,http://purl.obolibrary.org/obo/DRUGBANK_DB00652,none +9.2102787,PR:000015596,http://purl.obolibrary.org/obo/PR_000015596,serine palmitoyltransferase 1 +9.2102787,PR:000016513,http://purl.obolibrary.org/obo/PR_000016513,transportin-1 +9.2102787,PR:Q8MLZ3,http://purl.obolibrary.org/obo/PR_Q8MLZ3,none +9.2102787,UBERON:0001012,http://purl.obolibrary.org/obo/UBERON_0001012,head of radius +9.2107118,DRUGBANK:DB04524,http://purl.obolibrary.org/obo/DRUGBANK_DB04524,none +9.2107118,PR:000001850,http://purl.obolibrary.org/obo/PR_000001850,cathepsin K +9.2111452,PR:P13595,http://purl.obolibrary.org/obo/PR_P13595,none +9.2111452,PR:P13596,http://purl.obolibrary.org/obo/PR_P13596,none +9.2120125,DRUGBANK:DB01175,http://purl.obolibrary.org/obo/DRUGBANK_DB01175,none +9.2120125,GO:0043083,http://purl.obolibrary.org/obo/GO_0043083,synaptic cleft +9.2120125,NCBITaxon:11623,http://purl.obolibrary.org/obo/NCBITaxon_11623,Lymphocytic choriomeningitis mammarenavirus +9.2120125,PR:000011370,http://purl.obolibrary.org/obo/PR_000011370,nucleophosmin +9.2124464,MONDO:0004200,http://purl.obolibrary.org/obo/MONDO_0004200,superficial urinary bladder carcinoma +9.2128806,PR:000016709,http://purl.obolibrary.org/obo/PR_000016709,tuberin +9.2133149,MONDO:0000456,http://purl.obolibrary.org/obo/MONDO_0000456,cerebral creatine deficiency syndrome +9.2133149,UBERON:0001379,http://purl.obolibrary.org/obo/UBERON_0001379,vastus lateralis +9.2141841,GO:0005881,http://purl.obolibrary.org/obo/GO_0005881,cytoplasmic microtubule +9.2146189,DRUGBANK:DB06655,http://purl.obolibrary.org/obo/DRUGBANK_DB06655,none +9.2146189,MONDO:0043243,http://purl.obolibrary.org/obo/MONDO_0043243,leukoplakia +9.215054,MONDO:0005094,http://purl.obolibrary.org/obo/MONDO_0005094,hemangiopericytoma +9.215054,SO:0000602,http://purl.obolibrary.org/obo/SO_0000602,guide_RNA +9.215054,UBERON:0002257,http://purl.obolibrary.org/obo/UBERON_0002257,ventral horn of spinal cord +9.2159247,DRUGBANK:DB01219,http://purl.obolibrary.org/obo/DRUGBANK_DB01219,none +9.2159247,DRUGBANK:DB12870,http://purl.obolibrary.org/obo/DRUGBANK_DB12870,none +9.2159247,UBERON:0019042,http://purl.obolibrary.org/obo/UBERON_0019042,reproductive system mucosa +9.2163603,DRUGBANK:DB10675,http://purl.obolibrary.org/obo/DRUGBANK_DB10675,none +9.2163603,GO:0035931,http://purl.obolibrary.org/obo/GO_0035931,mineralocorticoid secretion +9.2163603,MONDO:0005723,http://purl.obolibrary.org/obo/MONDO_0005723,Cryptococcal meningitis +9.2163603,MONDO:0010188,http://purl.obolibrary.org/obo/MONDO_0010188,familial isolated deficiency of vitamin E +9.2163603,PR:000007070,http://purl.obolibrary.org/obo/PR_000007070,homeobox protein engrailed-1 +9.2163603,UBERON:0002133,http://purl.obolibrary.org/obo/UBERON_0002133,atrioventricular valve +9.2167962,DRUGBANK:DB04066,http://purl.obolibrary.org/obo/DRUGBANK_DB04066,none +9.2167962,MONDO:0001222,http://purl.obolibrary.org/obo/MONDO_0001222,congenital T-cell immunodeficiency +9.2167962,MONDO:0005611,http://purl.obolibrary.org/obo/MONDO_0005611,bladder transitional cell carcinoma +9.2167962,NCBITaxon:11072,http://purl.obolibrary.org/obo/NCBITaxon_11072,Japanese encephalitis virus +9.2176684,MONDO:0017853,http://purl.obolibrary.org/obo/MONDO_0017853,hypersensitivity pneumonitis +9.2185414,GO:0008527,http://purl.obolibrary.org/obo/GO_0008527,taste receptor activity +9.2189781,CHEBI:26020,http://purl.obolibrary.org/obo/CHEBI_26020,phosphate +9.2189781,CHEBI:51451,http://purl.obolibrary.org/obo/CHEBI_51451,endothelin receptor antagonist +9.2194151,GO:0051674,http://purl.obolibrary.org/obo/GO_0051674,localization of cell +9.2194151,MONDO:0013282,http://purl.obolibrary.org/obo/MONDO_0013282,alpha 1-antitrypsin deficiency +9.2198523,GO:0004990,http://purl.obolibrary.org/obo/GO_0004990,oxytocin receptor activity +9.2202896,DRUGBANK:DB10448,http://purl.obolibrary.org/obo/DRUGBANK_DB10448,none +9.2202896,MONDO:0002467,http://purl.obolibrary.org/obo/MONDO_0002467,inner ear disease +9.2202896,PR:000022333,http://purl.obolibrary.org/obo/PR_000022333,catabolite gene activator +9.2202896,UBERON:0003883,http://purl.obolibrary.org/obo/UBERON_0003883,CA3 field of hippocampus +9.2207272,DRUGBANK:DB01878,http://purl.obolibrary.org/obo/DRUGBANK_DB01878,none +9.2211649,DRUGBANK:DB11404,http://purl.obolibrary.org/obo/DRUGBANK_DB11404,none +9.2211649,HP:0002119,http://purl.obolibrary.org/obo/HP_0002119,Ventriculomegaly +9.2211649,SO:0001812,http://purl.obolibrary.org/obo/SO_0001812,transmembrane_helix +9.2216028,PR:Q9SI17,http://purl.obolibrary.org/obo/PR_Q9SI17,none +9.2220409,MONDO:0010088,http://purl.obolibrary.org/obo/MONDO_0010088,mucosulfatidosis +9.2220409,PR:000005296,http://purl.obolibrary.org/obo/PR_000005296,homeobox protein CDX-2 +9.2220409,PR:P29385,http://purl.obolibrary.org/obo/PR_P29385,none +9.2224792,GO:0005085,http://purl.obolibrary.org/obo/GO_0005085,guanyl-nucleotide exchange factor activity +9.2224792,MONDO:0017040,http://purl.obolibrary.org/obo/MONDO_0017040,exposure-related interstitial lung disease +9.2224792,UBERON:0003244,http://purl.obolibrary.org/obo/UBERON_0003244,epithelium of mammary gland +9.2229177,NCBITaxon:37124,http://purl.obolibrary.org/obo/NCBITaxon_37124,Chikungunya virus +9.2237953,MONDO:0001119,http://purl.obolibrary.org/obo/MONDO_0001119,premature menopause +9.2237953,UBERON:0016416,http://purl.obolibrary.org/obo/UBERON_0016416,anterior chest +9.2242344,DRUGBANK:DB11937,http://purl.obolibrary.org/obo/DRUGBANK_DB11937,none +9.2242344,PR:000050009,http://purl.obolibrary.org/obo/PR_000050009,neuropeptide Y receptor +9.2246737,GO:0019751,http://purl.obolibrary.org/obo/GO_0019751,polyol metabolic process +9.2246737,PR:000002045,http://purl.obolibrary.org/obo/PR_000002045,interferon regulatory factor 3 +9.2251131,GO:0016054,http://purl.obolibrary.org/obo/GO_0016054,organic acid catabolic process +9.2255528,GO:0046395,http://purl.obolibrary.org/obo/GO_0046395,carboxylic acid catabolic process +9.2255528,MONDO:0020077,http://purl.obolibrary.org/obo/MONDO_0020077,myelodysplastic/myeloproliferative disease +9.2255528,PR:000001463,http://purl.obolibrary.org/obo/PR_000001463,glycoprotein hormone receptor +9.2255528,UBERON:0000397,http://purl.obolibrary.org/obo/UBERON_0000397,colonic epithelium +9.2259926,CHEBI:33836,http://purl.obolibrary.org/obo/CHEBI_33836,benzenoid aromatic compound +9.2259926,MONDO:0018744,http://purl.obolibrary.org/obo/MONDO_0018744,oligodendroglial tumor +9.2264327,PR:000015740,http://purl.obolibrary.org/obo/PR_000015740,serine/threonine-protein kinase STK11 +9.2264327,UBERON:0000484,http://purl.obolibrary.org/obo/UBERON_0000484,simple cuboidal epithelium +9.2268729,CHEBI:9011,http://purl.obolibrary.org/obo/CHEBI_9011,salmeterol +9.2268729,DRUGBANK:DB10523,http://purl.obolibrary.org/obo/DRUGBANK_DB10523,none +9.2268729,GO:0044801,http://purl.obolibrary.org/obo/GO_0044801,none +9.2268729,GO:0051170,http://purl.obolibrary.org/obo/GO_0051170,import into nucleus +9.2268729,PR:000005373,http://purl.obolibrary.org/obo/PR_000005373,cholesteryl ester transfer protein +9.2273134,DRUGBANK:DB11496,http://purl.obolibrary.org/obo/DRUGBANK_DB11496,none +9.2273134,GO:0045089,http://purl.obolibrary.org/obo/GO_0045089,positive regulation of innate immune response +9.2273134,MONDO:0018116,http://purl.obolibrary.org/obo/MONDO_0018116,galactosemia +9.2281948,DRUGBANK:DB00476,http://purl.obolibrary.org/obo/DRUGBANK_DB00476,none +9.2281948,DRUGBANK:DB09085,http://purl.obolibrary.org/obo/DRUGBANK_DB09085,none +9.2286358,CHEBI:50533,http://purl.obolibrary.org/obo/CHEBI_50533,protein denaturant +9.2286358,GO:0006022,http://purl.obolibrary.org/obo/GO_0006022,aminoglycan metabolic process +9.229077,UBERON:0000161,http://purl.obolibrary.org/obo/UBERON_0000161,orifice +9.2295184,DRUGBANK:DB15878,http://purl.obolibrary.org/obo/DRUGBANK_DB15878,none +9.2295184,GO:1990776,http://purl.obolibrary.org/obo/GO_1990776,response to angiotensin +9.2295184,MONDO:0002678,http://purl.obolibrary.org/obo/MONDO_0002678,pediatric fibrosarcoma +9.22996,GO:0120178,http://purl.obolibrary.org/obo/GO_0120178,steroid hormone biosynthetic process +9.22996,MONDO:0020208,http://purl.obolibrary.org/obo/MONDO_0020208,syndromic myopia +9.22996,SO:0000359,http://purl.obolibrary.org/obo/SO_0000359,floxed +9.2304018,DRUGBANK:DB00190,http://purl.obolibrary.org/obo/DRUGBANK_DB00190,none +9.2304018,GO:0000166,http://purl.obolibrary.org/obo/GO_0000166,nucleotide binding +9.2304018,GO:0000774,http://purl.obolibrary.org/obo/GO_0000774,adenyl-nucleotide exchange factor activity +9.2304018,GO:0017076,http://purl.obolibrary.org/obo/GO_0017076,purine nucleotide binding +9.2304018,GO:0030554,http://purl.obolibrary.org/obo/GO_0030554,adenyl nucleotide binding +9.2304018,GO:0036094,http://purl.obolibrary.org/obo/GO_0036094,small molecule binding +9.2304018,GO:1901265,http://purl.obolibrary.org/obo/GO_1901265,nucleoside phosphate binding +9.2308438,DRUGBANK:DB04179,http://purl.obolibrary.org/obo/DRUGBANK_DB04179,none +9.2308438,DRUGBANK:DB06451,http://purl.obolibrary.org/obo/DRUGBANK_DB06451,none +9.2308438,GO:0015057,http://purl.obolibrary.org/obo/GO_0015057,thrombin-activated receptor activity +9.2308438,GO:0097440,http://purl.obolibrary.org/obo/GO_0097440,apical dendrite +9.231286,PR:000001341,http://purl.obolibrary.org/obo/PR_000001341,dipeptidyl peptidase IV +9.231286,SO:0000458,http://purl.obolibrary.org/obo/SO_0000458,D_gene_segment +9.2317284,HP:0100774,http://purl.obolibrary.org/obo/HP_0100774,Hyperostosis +9.2326137,MONDO:0009047,http://purl.obolibrary.org/obo/MONDO_0009047,cryptorchidism +9.2326137,MONDO:0016820,http://purl.obolibrary.org/obo/MONDO_0016820,Moyamoya disease +9.2330567,PR:000005258,http://purl.obolibrary.org/obo/PR_000005258,cyclin-dependent-like kinase 5 +9.2334999,MONDO:0018791,http://purl.obolibrary.org/obo/MONDO_0018791,Moyomoya angiopathy +9.2334999,PR:000001345,http://purl.obolibrary.org/obo/PR_000001345,endoglin +9.2339432,DRUGBANK:DB00448,http://purl.obolibrary.org/obo/DRUGBANK_DB00448,none +9.2339432,MONDO:0008226,http://purl.obolibrary.org/obo/MONDO_0008226,"periodontitis, aggressive 1" +9.2339432,PR:000008523,http://purl.obolibrary.org/obo/PR_000008523,homeobox expressed in ES cells 1 +9.2343868,DRUGBANK:DB00984,http://purl.obolibrary.org/obo/DRUGBANK_DB00984,none +9.2343868,HP:0000828,http://purl.obolibrary.org/obo/HP_0000828,Abnormality of the parathyroid gland +9.2343868,HP:0011767,http://purl.obolibrary.org/obo/HP_0011767,Abnormality of the parathyroid physiology +9.2343868,MONDO:0002677,http://purl.obolibrary.org/obo/MONDO_0002677,conventional fibrosarcoma +9.2348305,UBERON:0004864,http://purl.obolibrary.org/obo/UBERON_0004864,vasculature of retina +9.2352745,PR:000008233,http://purl.obolibrary.org/obo/PR_000008233,glutamate receptor 1 +9.2357186,UBERON:0000316,http://purl.obolibrary.org/obo/UBERON_0000316,cervical mucus +9.236163,MONDO:0019942,http://purl.obolibrary.org/obo/MONDO_0019942,distal arthrogryposis +9.236163,UBERON:0002346,http://purl.obolibrary.org/obo/UBERON_0002346,neurectoderm +9.2366075,DRUGBANK:DB02345,http://purl.obolibrary.org/obo/DRUGBANK_DB02345,none +9.2366075,MONDO:0003295,http://purl.obolibrary.org/obo/MONDO_0003295,leiomyomatosis +9.2366075,MONDO:0015943,http://purl.obolibrary.org/obo/MONDO_0015943,eosinophilic granulomatosis with polyangiitis +9.2366075,PR:000004177,http://purl.obolibrary.org/obo/PR_000004177,aquaporin-1 +9.2366075,PR:000050151,http://purl.obolibrary.org/obo/PR_000050151,cryptochrome +9.2370523,GO:0016702,http://purl.obolibrary.org/obo/GO_0016702,"oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen" +9.2370523,PR:000003283,http://purl.obolibrary.org/obo/PR_000003283,dual specificity mitogen-activated protein kinase kinase 4 +9.2374972,DRUGBANK:DB00540,http://purl.obolibrary.org/obo/DRUGBANK_DB00540,none +9.2379423,MONDO:0009528,http://purl.obolibrary.org/obo/MONDO_0009528,chylomicron retention disease +9.2388332,UBERON:0001798,http://purl.obolibrary.org/obo/UBERON_0001798,vitreous body +9.2392789,PR:000001383,http://purl.obolibrary.org/obo/PR_000001383,interleukin-22 +9.2397249,MONDO:0006107,http://purl.obolibrary.org/obo/MONDO_0006107,benign thyroid gland neoplasm +9.2397249,UBERON:0007378,http://purl.obolibrary.org/obo/UBERON_0007378,egg yolk +9.2406173,DRUGBANK:DB06778,http://purl.obolibrary.org/obo/DRUGBANK_DB06778,none +9.2406173,UBERON:0001194,http://purl.obolibrary.org/obo/UBERON_0001194,splenic artery +9.2410639,GO:0016641,http://purl.obolibrary.org/obo/GO_0016641,"oxidoreductase activity, acting on the CH-NH2 group of donors, oxygen as acceptor" +9.2415106,NCBITaxon:10368,http://purl.obolibrary.org/obo/NCBITaxon_10368,Human betaherpesvirus 6 +9.2415106,NCBITaxon:11040,http://purl.obolibrary.org/obo/NCBITaxon_11040,Rubivirus +9.2415106,NCBITaxon:11041,http://purl.obolibrary.org/obo/NCBITaxon_11041,Rubella virus +9.2415106,NCBITaxon:431037,http://purl.obolibrary.org/obo/NCBITaxon_431037,unclassified Roseolovirus +9.2415106,PR:000006499,http://purl.obolibrary.org/obo/PR_000006499,dickkopf-related protein 1 +9.2419575,CHEBI:73216,http://purl.obolibrary.org/obo/CHEBI_73216,EC 3.6.* (hydrolases acting on acid anhydrides) inhibitor +9.2424046,GO:0043542,http://purl.obolibrary.org/obo/GO_0043542,endothelial cell migration +9.2424046,MONDO:0000536,http://purl.obolibrary.org/obo/MONDO_0000536,pharyngeal squamous cell carcinoma +9.2424046,NCBITaxon:2560066,http://purl.obolibrary.org/obo/NCBITaxon_2560066,Matonaviridae +9.242852,CL:0002293,http://purl.obolibrary.org/obo/CL_0002293,epithelial cell of thymus +9.242852,GO:0005980,http://purl.obolibrary.org/obo/GO_0005980,glycogen catabolic process +9.242852,MONDO:0023557,http://purl.obolibrary.org/obo/MONDO_0023557,infective vaginitis +9.2432995,GO:0035932,http://purl.obolibrary.org/obo/GO_0035932,aldosterone secretion +9.2432995,UBERON:0004384,http://purl.obolibrary.org/obo/UBERON_0004384,epiphysis of femur +9.2441951,PR:Q96510,http://purl.obolibrary.org/obo/PR_Q96510,none +9.2446433,MONDO:0002597,http://purl.obolibrary.org/obo/MONDO_0002597,notochordal tumor +9.2446433,MONDO:0005190,http://purl.obolibrary.org/obo/MONDO_0005190,macroglobulinemia +9.2450916,PR:000007493,http://purl.obolibrary.org/obo/PR_000007493,fibroblast growth factor 23 +9.2450916,PR:000016798,http://purl.obolibrary.org/obo/PR_000016798,titin +9.2455401,MONDO:0002098,http://purl.obolibrary.org/obo/MONDO_0002098,facial nerve disease +9.2455401,PR:000015392,http://purl.obolibrary.org/obo/PR_000015392,suppressor of cytokine signaling 1 +9.2455401,UBERON:0001808,http://purl.obolibrary.org/obo/UBERON_0001808,parasympathetic ganglion +9.2459889,DRUGBANK:DB13919,http://purl.obolibrary.org/obo/DRUGBANK_DB13919,none +9.2459889,GO:0004938,http://purl.obolibrary.org/obo/GO_0004938,alpha2-adrenergic receptor activity +9.2473363,GO:0009612,http://purl.obolibrary.org/obo/GO_0009612,response to mechanical stimulus +9.2477858,GO:0036267,http://purl.obolibrary.org/obo/GO_0036267,invasive filamentous growth +9.2477858,SO:0005851,http://purl.obolibrary.org/obo/SO_0005851,gene_array +9.2482356,CHEBI:26079,http://purl.obolibrary.org/obo/CHEBI_26079,phosphoric acid derivative +9.2482356,CHEBI:29699,http://purl.obolibrary.org/obo/CHEBI_29699,tunicamycin +9.2482356,CHEBI:36359,http://purl.obolibrary.org/obo/CHEBI_36359,phosphorus oxoacid derivative +9.2482356,GO:0016662,http://purl.obolibrary.org/obo/GO_0016662,"oxidoreductase activity, acting on other nitrogenous compounds as donors, cytochrome as acceptor" +9.2486855,DRUGBANK:DB00588,http://purl.obolibrary.org/obo/DRUGBANK_DB00588,none +9.2486855,PR:000002043,http://purl.obolibrary.org/obo/PR_000002043,interferon regulatory factor 1 +9.2491356,UBERON:0004073,http://purl.obolibrary.org/obo/UBERON_0004073,cerebellum interpositus nucleus +9.249586,GO:0039693,http://purl.obolibrary.org/obo/GO_0039693,viral DNA genome replication +9.249586,GO:0044034,http://purl.obolibrary.org/obo/GO_0044034,none +9.249586,PR:000001257,http://purl.obolibrary.org/obo/PR_000001257,C-X-C chemokine receptor type 2 +9.2500365,UBERON:0009767,http://purl.obolibrary.org/obo/UBERON_0009767,proximal interphalangeal joint +9.2504873,DRUGBANK:DB00007,http://purl.obolibrary.org/obo/DRUGBANK_DB00007,none +9.2504873,MONDO:0005972,http://purl.obolibrary.org/obo/MONDO_0005972,streptococcal pneumonia +9.2504873,NCBITaxon:118267,http://purl.obolibrary.org/obo/NCBITaxon_118267,none +9.2504873,SO:0000860,http://purl.obolibrary.org/obo/SO_0000860,syntenic +9.2509383,UBERON:0001587,http://purl.obolibrary.org/obo/UBERON_0001587,subclavian vein +9.2513894,GO:0009913,http://purl.obolibrary.org/obo/GO_0009913,epidermal cell differentiation +9.2513894,MONDO:0024291,http://purl.obolibrary.org/obo/MONDO_0024291,vascular malformation +9.2518408,MONDO:0015213,http://purl.obolibrary.org/obo/MONDO_0015213,non-syndromic visceral malformation +9.2522924,HP:0002901,http://purl.obolibrary.org/obo/HP_0002901,Hypocalcemia +9.2522924,HP:0410042,http://purl.obolibrary.org/obo/HP_0410042,Abnormal liver morphology +9.2522924,MONDO:0008848,http://purl.obolibrary.org/obo/MONDO_0008848,atrioventricular dissociation +9.2522924,NCBITaxon:5475,http://purl.obolibrary.org/obo/NCBITaxon_5475,none +9.2522924,UBERON:0000015,http://purl.obolibrary.org/obo/UBERON_0000015,non-material anatomical boundary +9.2527441,MOP:0003162,http://purl.obolibrary.org/obo/MOP_0003162,none +9.2527441,UBERON:0003099,http://purl.obolibrary.org/obo/UBERON_0003099,cranial neural crest +9.2531961,GO:0001054,http://purl.obolibrary.org/obo/GO_0001054,RNA polymerase I activity +9.2531961,UBERON:0002602,http://purl.obolibrary.org/obo/UBERON_0002602,emboliform nucleus +9.2536483,DRUGBANK:DB00404,http://purl.obolibrary.org/obo/DRUGBANK_DB00404,none +9.2536483,DRUGBANK:DB01184,http://purl.obolibrary.org/obo/DRUGBANK_DB01184,none +9.2536483,GO:0006568,http://purl.obolibrary.org/obo/GO_0006568,tryptophan metabolic process +9.2536483,MONDO:0004603,http://purl.obolibrary.org/obo/MONDO_0004603,collagenopathy +9.2541007,DRUGBANK:DB00879,http://purl.obolibrary.org/obo/DRUGBANK_DB00879,none +9.2541007,DRUGBANK:DB04277,http://purl.obolibrary.org/obo/DRUGBANK_DB04277,none +9.2541007,PR:000007163,http://purl.obolibrary.org/obo/PR_000007163,DNA excision repair protein ERCC-1 +9.2550061,DRUGBANK:DB06243,http://purl.obolibrary.org/obo/DRUGBANK_DB06243,none +9.2550061,GO:0004607,http://purl.obolibrary.org/obo/GO_0004607,phosphatidylcholine-sterol O-acyltransferase activity +9.2554591,GO:0006760,http://purl.obolibrary.org/obo/GO_0006760,folic acid-containing compound metabolic process +9.2559123,GO:0072593,http://purl.obolibrary.org/obo/GO_0072593,reactive oxygen species metabolic process +9.2559123,MONDO:0017991,http://purl.obolibrary.org/obo/MONDO_0017991,Takayasu arteritis +9.2559123,NCBITaxon:177874,http://purl.obolibrary.org/obo/NCBITaxon_177874,none +9.2559123,PR:000012973,http://purl.obolibrary.org/obo/PR_000012973,DNA polymerase subunit gamma-1 +9.2563657,CHEBI:22712,http://purl.obolibrary.org/obo/CHEBI_22712,benzenes +9.2563657,CHEBI:38828,http://purl.obolibrary.org/obo/CHEBI_38828,nonionic surfactant +9.2563657,DRUGBANK:DB11359,http://purl.obolibrary.org/obo/DRUGBANK_DB11359,none +9.2568193,UBERON:0000304,http://purl.obolibrary.org/obo/UBERON_0000304,tendon sheath +9.2572731,GO:0004148,http://purl.obolibrary.org/obo/GO_0004148,dihydrolipoyl dehydrogenase activity +9.2572731,PR:000023109,http://purl.obolibrary.org/obo/PR_000023109,none +9.2577272,GO:0004557,http://purl.obolibrary.org/obo/GO_0004557,alpha-galactosidase activity +9.2577272,PR:000014047,http://purl.obolibrary.org/obo/PR_000014047,eosinophil cationic protein +9.2586358,GO:0072524,http://purl.obolibrary.org/obo/GO_0072524,pyridine-containing compound metabolic process +9.2590905,DRUGBANK:DB10688,http://purl.obolibrary.org/obo/DRUGBANK_DB10688,none +9.2590905,MONDO:0005284,http://purl.obolibrary.org/obo/MONDO_0005284,chronic progressive multiple sclerosis +9.2600004,DRUGBANK:DB01362,http://purl.obolibrary.org/obo/DRUGBANK_DB01362,none +9.2600004,DRUGBANK:DB07744,http://purl.obolibrary.org/obo/DRUGBANK_DB07744,none +9.2600004,GO:0002312,http://purl.obolibrary.org/obo/GO_0002312,B cell activation involved in immune response +9.2600004,MONDO:0003334,http://purl.obolibrary.org/obo/MONDO_0003334,demyelinating polyneuropathy +9.2604557,CHEBI:16646,http://purl.obolibrary.org/obo/CHEBI_16646,carbohydrate +9.2604557,CL:0000442,http://purl.obolibrary.org/obo/CL_0000442,follicular dendritic cell +9.2604557,DRUGBANK:DB01263,http://purl.obolibrary.org/obo/DRUGBANK_DB01263,none +9.2604557,MONDO:0000396,http://purl.obolibrary.org/obo/MONDO_0000396,spastic cerebral palsy +9.2604557,PR:000007859,http://purl.obolibrary.org/obo/PR_000007859,transcription factor GATA-4 +9.2604557,UBERON:0002514,http://purl.obolibrary.org/obo/UBERON_0002514,intramembranous bone +9.2609111,MONDO:0000620,http://purl.obolibrary.org/obo/MONDO_0000620,breast benign neoplasm +9.2609111,MONDO:0016971,http://purl.obolibrary.org/obo/MONDO_0016971,limb-girdle muscular dystrophy +9.2609111,UBERON:0001650,http://purl.obolibrary.org/obo/UBERON_0001650,hypoglossal nerve +9.2622788,GO:0046655,http://purl.obolibrary.org/obo/GO_0046655,folic acid metabolic process +9.2627351,DRUGBANK:DB00434,http://purl.obolibrary.org/obo/DRUGBANK_DB00434,none +9.2627351,DRUGBANK:DB01796,http://purl.obolibrary.org/obo/DRUGBANK_DB01796,none +9.2627351,NCBITaxon:2732416,http://purl.obolibrary.org/obo/NCBITaxon_2732416,Cressdnaviricota +9.2627351,PR:000001844,http://purl.obolibrary.org/obo/PR_000001844,arginase-1 +9.2627351,PR:000006073,http://purl.obolibrary.org/obo/PR_000006073,C-X-C motif chemokine 9 +9.2636484,CL:0010004,http://purl.obolibrary.org/obo/CL_0010004,mononuclear cell of bone marrow +9.2636484,GO:0016866,http://purl.obolibrary.org/obo/GO_0016866,intramolecular transferase activity +9.2636484,MONDO:0006541,http://purl.obolibrary.org/obo/MONDO_0006541,epidermolysis bullosa +9.2641053,MONDO:0006244,http://purl.obolibrary.org/obo/MONDO_0006244,HER2 positive breast carcinoma +9.2645624,MONDO:0015484,http://purl.obolibrary.org/obo/MONDO_0015484,cysticercosis +9.2645624,MONDO:0020282,http://purl.obolibrary.org/obo/MONDO_0020282,metabolic disease with macular cherry-red spot +9.2654774,CHEBI:38157,http://purl.obolibrary.org/obo/CHEBI_38157,iron chelator +9.2654774,DRUGBANK:DB00038,http://purl.obolibrary.org/obo/DRUGBANK_DB00038,none +9.2654774,DRUGBANK:DB00284,http://purl.obolibrary.org/obo/DRUGBANK_DB00284,none +9.2654774,DRUGBANK:DB03347,http://purl.obolibrary.org/obo/DRUGBANK_DB03347,none +9.2654774,PR:000001456,http://purl.obolibrary.org/obo/PR_000001456,"alpha-(1,3)-fucosyltransferase 4" +9.2654774,PR:000012433,http://purl.obolibrary.org/obo/PR_000012433,neuroendocrine convertase 1 +9.2654774,PR:000012870,http://purl.obolibrary.org/obo/PR_000012870,serine/threonine-protein kinase PLK1 +9.2654774,UBERON:0001820,http://purl.obolibrary.org/obo/UBERON_0001820,sweat gland +9.2659351,DRUGBANK:DB11980,http://purl.obolibrary.org/obo/DRUGBANK_DB11980,none +9.2659351,NCBITaxon:675063,http://purl.obolibrary.org/obo/NCBITaxon_675063,none +9.2659351,UBERON:0003824,http://purl.obolibrary.org/obo/UBERON_0003824,nerve of thoracic segment +9.2663931,PR:000001816,http://purl.obolibrary.org/obo/PR_000001816,HGF/MSP receptor type tyrosine-protein kinase +9.2663931,PR:000006573,http://purl.obolibrary.org/obo/PR_000006573,DnaJ homolog subfamily B member 1 +9.2663931,PR:000036838,http://purl.obolibrary.org/obo/PR_000036838,none +9.2663931,UBERON:0018679,http://purl.obolibrary.org/obo/UBERON_0018679,thoracic splanchnic nerve +9.2668513,GO:0050795,http://purl.obolibrary.org/obo/GO_0050795,regulation of behavior +9.2668513,MONDO:0005373,http://purl.obolibrary.org/obo/MONDO_0005373,meningococcal infection +9.2668513,MONDO:0043543,http://purl.obolibrary.org/obo/MONDO_0043543,iatrogenic disease +9.2673097,DRUGBANK:DB00738,http://purl.obolibrary.org/obo/DRUGBANK_DB00738,none +9.2673097,GO:0006586,http://purl.obolibrary.org/obo/GO_0006586,indolalkylamine metabolic process +9.2673097,GO:0008375,http://purl.obolibrary.org/obo/GO_0008375,acetylglucosaminyltransferase activity +9.2677683,DRUGBANK:DB10574,http://purl.obolibrary.org/obo/DRUGBANK_DB10574,none +9.2677683,HP:0010930,http://purl.obolibrary.org/obo/HP_0010930,Abnormal blood monovalent inorganic cation concentration +9.2677683,HP:0011042,http://purl.obolibrary.org/obo/HP_0011042,Abnormal blood potassium concentration +9.2686862,UBERON:0001614,http://purl.obolibrary.org/obo/UBERON_0001614,superficial temporal artery +9.2691454,GO:0070227,http://purl.obolibrary.org/obo/GO_0070227,lymphocyte apoptotic process +9.2691454,MONDO:0020277,http://purl.obolibrary.org/obo/MONDO_0020277,ectodermal malformation syndrome associated with ocular features +9.2691454,PR:000012504,http://purl.obolibrary.org/obo/PR_000012504,"[pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 1, mitochondrial" +9.2696049,MONDO:0002789,http://purl.obolibrary.org/obo/MONDO_0002789,hemangiopericytic tumor +9.2700645,DRUGBANK:DB00442,http://purl.obolibrary.org/obo/DRUGBANK_DB00442,none +9.2700645,DRUGBANK:DB01259,http://purl.obolibrary.org/obo/DRUGBANK_DB01259,none +9.2700645,MONDO:0007251,http://purl.obolibrary.org/obo/MONDO_0007251,campomelic dysplasia +9.2700645,MONDO:0017755,http://purl.obolibrary.org/obo/MONDO_0017755,inborn disorder of bilirubin metabolism +9.2700645,MONDO:0019276,http://purl.obolibrary.org/obo/MONDO_0019276,inherited epidermolysis bullosa +9.2705244,MONDO:0016624,http://purl.obolibrary.org/obo/MONDO_0016624,inherited deficiency anemia +9.2709845,NCBITaxon:37296,http://purl.obolibrary.org/obo/NCBITaxon_37296,Human gammaherpesvirus 8 +9.2709845,PR:000009834,http://purl.obolibrary.org/obo/PR_000009834,hormone-sensitive lipase +9.2714448,GO:0033878,http://purl.obolibrary.org/obo/GO_0033878,hormone-sensitive lipase activity +9.2714448,MONDO:0008564,http://purl.obolibrary.org/obo/MONDO_0008564,DiGeorge syndrome +9.2719053,PR:000002292,http://purl.obolibrary.org/obo/PR_000002292,TNF receptor-associated factor 6 +9.2719053,PR:000006347,http://purl.obolibrary.org/obo/PR_000006347,DNA damage-inducible transcript 3 protein +9.272366,MONDO:0005219,http://purl.obolibrary.org/obo/MONDO_0005219,breast fibrocystic disease +9.272366,MONDO:0019933,http://purl.obolibrary.org/obo/MONDO_0019933,acromegaly +9.272366,PR:000015975,http://purl.obolibrary.org/obo/PR_000015975,none +9.272827,PR:000013333,http://purl.obolibrary.org/obo/PR_000013333,myeloblastin +9.272827,UBERON:0001568,http://purl.obolibrary.org/obo/UBERON_0001568,muscle of larynx +9.2732881,GO:0015908,http://purl.obolibrary.org/obo/GO_0015908,fatty acid transport +9.2732881,GO:1902580,http://purl.obolibrary.org/obo/GO_1902580,none +9.2732881,PR:000010418,http://purl.obolibrary.org/obo/PR_000010418,mitochondrial intermediate peptidase +9.2746728,CL:0000477,http://purl.obolibrary.org/obo/CL_0000477,ovarian follicle cell +9.2746728,DRUGBANK:DB04865,http://purl.obolibrary.org/obo/DRUGBANK_DB04865,none +9.2746728,GO:0004968,http://purl.obolibrary.org/obo/GO_0004968,gonadotropin-releasing hormone receptor activity +9.2751348,GO:0042359,http://purl.obolibrary.org/obo/GO_0042359,vitamin D metabolic process +9.2751348,HP:0012415,http://purl.obolibrary.org/obo/HP_0012415,Abnormal blood gas level +9.2751348,HP:0012418,http://purl.obolibrary.org/obo/HP_0012418,Hypoxemia +9.2751348,HP:0500165,http://purl.obolibrary.org/obo/HP_0500165,Abnormal blood oxygen level +9.2765221,GO:0030016,http://purl.obolibrary.org/obo/GO_0030016,myofibril +9.276985,CL:0000531,http://purl.obolibrary.org/obo/CL_0000531,primary sensory neuron +9.276985,CL:2000064,http://purl.obolibrary.org/obo/CL_2000064,ovarian surface epithelial cell +9.276985,MONDO:0011441,http://purl.obolibrary.org/obo/MONDO_0011441,complex regional pain syndrome type 1 +9.277448,DRUGBANK:DB14509,http://purl.obolibrary.org/obo/DRUGBANK_DB14509,none +9.277448,GO:0002437,http://purl.obolibrary.org/obo/GO_0002437,inflammatory response to antigenic stimulus +9.277448,GO:0002524,http://purl.obolibrary.org/obo/GO_0002524,hypersensitivity +9.277448,GO:0043292,http://purl.obolibrary.org/obo/GO_0043292,contractile fiber +9.2779113,GO:0002438,http://purl.obolibrary.org/obo/GO_0002438,acute inflammatory response to antigenic stimulus +9.2779113,PR:000017617,http://purl.obolibrary.org/obo/PR_000017617,zinc finger E-box-binding homeobox 1 +9.2779113,UBERON:0003836,http://purl.obolibrary.org/obo/UBERON_0003836,abdominal segment skin +9.2788385,GO:0032602,http://purl.obolibrary.org/obo/GO_0032602,chemokine production +9.2793025,DRUGBANK:DB00425,http://purl.obolibrary.org/obo/DRUGBANK_DB00425,none +9.2793025,DRUGBANK:DB00712,http://purl.obolibrary.org/obo/DRUGBANK_DB00712,none +9.2793025,GO:0001614,http://purl.obolibrary.org/obo/GO_0001614,purinergic nucleotide receptor activity +9.2797666,DRUGBANK:DB00559,http://purl.obolibrary.org/obo/DRUGBANK_DB00559,none +9.2797666,DRUGBANK:DB00802,http://purl.obolibrary.org/obo/DRUGBANK_DB00802,none +9.280231,MONDO:0005318,http://purl.obolibrary.org/obo/MONDO_0005318,canker sore +9.280231,MONDO:0006507,http://purl.obolibrary.org/obo/MONDO_0006507,hereditary hemochromatosis +9.2811603,DRUGBANK:DB01080,http://purl.obolibrary.org/obo/DRUGBANK_DB01080,none +9.2811603,UBERON:0001962,http://purl.obolibrary.org/obo/UBERON_0001962,gut-associated lymphoid tissue +9.2816253,GO:0045028,http://purl.obolibrary.org/obo/GO_0045028,G protein-coupled purinergic nucleotide receptor activity +9.2820906,DRUGBANK:DB01578,http://purl.obolibrary.org/obo/DRUGBANK_DB01578,none +9.2820906,DRUGBANK:DB13147,http://purl.obolibrary.org/obo/DRUGBANK_DB13147,none +9.2820906,UBERON:0011591,http://purl.obolibrary.org/obo/UBERON_0011591,tract of diencephalon +9.2830217,PR:000001826,http://purl.obolibrary.org/obo/PR_000001826,NADPH oxidase 4 +9.2834875,MONDO:0002800,http://purl.obolibrary.org/obo/MONDO_0002800,thrombophlebitis +9.2839536,PR:000014237,http://purl.obolibrary.org/obo/PR_000014237,60S acidic ribosomal protein P0 +9.2844199,PR:P29503,http://purl.obolibrary.org/obo/PR_P29503,none +9.2848865,PR:000016354,http://purl.obolibrary.org/obo/PR_000016354,metalloproteinase inhibitor 3 +9.2848865,UBERON:0001497,http://purl.obolibrary.org/obo/UBERON_0001497,muscle of pelvic girdle +9.2858202,CHEBI:37578,http://purl.obolibrary.org/obo/CHEBI_37578,halide +9.2858202,GO:0044242,http://purl.obolibrary.org/obo/GO_0044242,cellular lipid catabolic process +9.2858202,PR:000010321,http://purl.obolibrary.org/obo/PR_000010321,menin +9.2862874,PR:P14832,http://purl.obolibrary.org/obo/PR_P14832,none +9.2862874,UBERON:0001643,http://purl.obolibrary.org/obo/UBERON_0001643,oculomotor nerve +9.2862874,UBERON:0005281,http://purl.obolibrary.org/obo/UBERON_0005281,ventricular system of central nervous system +9.2867548,MONDO:0045053,http://purl.obolibrary.org/obo/MONDO_0045053,osteogenic neoplasm +9.2872224,PR:000010249,http://purl.obolibrary.org/obo/PR_000010249,DNA replication licensing factor MCM7 +9.2876902,GO:2000241,http://purl.obolibrary.org/obo/GO_2000241,regulation of reproductive process +9.2876902,PR:000026878,http://purl.obolibrary.org/obo/PR_000026878,caspase-3 complex +9.2876902,UBERON:0002469,http://purl.obolibrary.org/obo/UBERON_0002469,esophagus mucosa +9.2881583,CL:0002088,http://purl.obolibrary.org/obo/CL_0002088,interstitial cell of Cajal +9.2881583,DRUGBANK:DB08934,http://purl.obolibrary.org/obo/DRUGBANK_DB08934,none +9.2881583,GO:0045254,http://purl.obolibrary.org/obo/GO_0045254,pyruvate dehydrogenase complex +9.2886265,MONDO:0006716,http://purl.obolibrary.org/obo/MONDO_0006716,coronary thrombosis +9.2886265,MONDO:0007540,http://purl.obolibrary.org/obo/MONDO_0007540,multiple endocrine neoplasia type 1 +9.2886265,MONDO:0011908,http://purl.obolibrary.org/obo/MONDO_0011908,juvenile myelomonocytic leukemia +9.2886265,UBERON:0003569,http://purl.obolibrary.org/obo/UBERON_0003569,leg connective tissue +9.289095,PR:000000093,http://purl.obolibrary.org/obo/PR_000000093,cyclin-dependent kinase 4 inhibitor B +9.289095,SO:0000588,http://purl.obolibrary.org/obo/SO_0000588,autocatalytically_spliced_intron +9.2895638,GO:0002218,http://purl.obolibrary.org/obo/GO_0002218,activation of innate immune response +9.2895638,GO:0009890,http://purl.obolibrary.org/obo/GO_0009890,negative regulation of biosynthetic process +9.2895638,PR:000031729,http://purl.obolibrary.org/obo/PR_000031729,gastrin-releasing peptide +9.2900327,DRUGBANK:DB14191,http://purl.obolibrary.org/obo/DRUGBANK_DB14191,none +9.2900327,PR:000002031,http://purl.obolibrary.org/obo/PR_000002031,aminopeptidase N +9.2905018,CHEBI:63533,http://purl.obolibrary.org/obo/CHEBI_63533,gonadotropin releasing hormone agonist +9.2905018,GO:0090174,http://purl.obolibrary.org/obo/GO_0090174,organelle membrane fusion +9.2909712,PR:000050050,http://purl.obolibrary.org/obo/PR_000050050,profilin +9.2914408,DRUGBANK:DB03226,http://purl.obolibrary.org/obo/DRUGBANK_DB03226,none +9.2914408,PR:000001175,http://purl.obolibrary.org/obo/PR_000001175,D(1A) dopamine receptor +9.2919106,DRUGBANK:DB00178,http://purl.obolibrary.org/obo/DRUGBANK_DB00178,none +9.2919106,DRUGBANK:DB00322,http://purl.obolibrary.org/obo/DRUGBANK_DB00322,none +9.2923807,GO:0008502,http://purl.obolibrary.org/obo/GO_0008502,melatonin receptor activity +9.2923807,HP:0002652,http://purl.obolibrary.org/obo/HP_0002652,Skeletal dysplasia +9.2923807,MONDO:0006414,http://purl.obolibrary.org/obo/MONDO_0006414,skin sarcoma +9.2928509,MONDO:0001117,http://purl.obolibrary.org/obo/MONDO_0001117,methemoglobinemia +9.2928509,MONDO:0018907,http://purl.obolibrary.org/obo/MONDO_0018907,craniopharyngioma +9.2933214,MONDO:0005092,http://purl.obolibrary.org/obo/MONDO_0005092,signet ring cell carcinoma +9.2933214,MONDO:0019294,http://purl.obolibrary.org/obo/MONDO_0019294,mixed dermis disorder +9.2933214,PR:Q9I7U4,http://purl.obolibrary.org/obo/PR_Q9I7U4,none +9.2937921,DRUGBANK:DB02655,http://purl.obolibrary.org/obo/DRUGBANK_DB02655,none +9.2937921,GO:0019767,http://purl.obolibrary.org/obo/GO_0019767,IgE receptor activity +9.2937921,MONDO:0020230,http://purl.obolibrary.org/obo/MONDO_0020230,renal disease with cataract +9.294263,HP:0010864,http://purl.obolibrary.org/obo/HP_0010864,"Intellectual disability, severe" +9.294263,PR:P09838,http://purl.obolibrary.org/obo/PR_P09838,none +9.294263,PR:P36195,http://purl.obolibrary.org/obo/PR_P36195,none +9.294263,PR:Q8GW31,http://purl.obolibrary.org/obo/PR_Q8GW31,none +9.294263,UBERON:0001908,http://purl.obolibrary.org/obo/UBERON_0001908,optic tract +9.2947342,GO:0009311,http://purl.obolibrary.org/obo/GO_0009311,oligosaccharide metabolic process +9.2947342,GO:0036338,http://purl.obolibrary.org/obo/GO_0036338,viral membrane +9.2952055,DRUGBANK:DB00197,http://purl.obolibrary.org/obo/DRUGBANK_DB00197,none +9.2952055,GO:0001056,http://purl.obolibrary.org/obo/GO_0001056,RNA polymerase III activity +9.2952055,MONDO:0006607,http://purl.obolibrary.org/obo/MONDO_0006607,sebaceous gland disease +9.2952055,PR:000008010,http://purl.obolibrary.org/obo/PR_000008010,glycerol kinase +9.2952055,PR:000008234,http://purl.obolibrary.org/obo/PR_000008234,glutamate receptor 2 +9.2956771,GO:0050728,http://purl.obolibrary.org/obo/GO_0050728,negative regulation of inflammatory response +9.2956771,UBERON:0015790,http://purl.obolibrary.org/obo/UBERON_0015790,autopod skin +9.2961489,GO:0004992,http://purl.obolibrary.org/obo/GO_0004992,platelet activating factor receptor activity +9.2961489,PR:000001501,http://purl.obolibrary.org/obo/PR_000001501,mammalian-type platelet-activating factor receptor +9.2961489,PR:000050017,http://purl.obolibrary.org/obo/PR_000050017,platelet-activating factor receptor +9.2961489,UBERON:0004253,http://purl.obolibrary.org/obo/UBERON_0004253,skin muscle +9.2970932,PR:000003065,http://purl.obolibrary.org/obo/PR_000003065,tyrosine-protein kinase SYK +9.2975657,GO:0003018,http://purl.obolibrary.org/obo/GO_0003018,vascular process in circulatory system +9.2980384,CHEBI:63299,http://purl.obolibrary.org/obo/CHEBI_63299,carbohydrate derivative +9.2980384,DRUGBANK:DB12946,http://purl.obolibrary.org/obo/DRUGBANK_DB12946,none +9.2980384,GO:0002694,http://purl.obolibrary.org/obo/GO_0002694,regulation of leukocyte activation +9.2980384,GO:0044851,http://purl.obolibrary.org/obo/GO_0044851,hair cycle phase +9.2980384,GO:0061650,http://purl.obolibrary.org/obo/GO_0061650,ubiquitin-like protein conjugating enzyme activity +9.2980384,HP:0000135,http://purl.obolibrary.org/obo/HP_0000135,Hypogonadism +9.2985113,DRUGBANK:DB13721,http://purl.obolibrary.org/obo/DRUGBANK_DB13721,none +9.2985113,PR:000004027,http://purl.obolibrary.org/obo/PR_000004027,angiopoietin-related protein 2 +9.2989845,DRUGBANK:DB01189,http://purl.obolibrary.org/obo/DRUGBANK_DB01189,none +9.2989845,MONDO:0003924,http://purl.obolibrary.org/obo/MONDO_0003924,adrenal cortex adenoma +9.2989845,PR:000001900,http://purl.obolibrary.org/obo/PR_000001900,neuropilin-1 +9.2994578,GO:0009698,http://purl.obolibrary.org/obo/GO_0009698,phenylpropanoid metabolic process +9.2994578,PR:000008790,http://purl.obolibrary.org/obo/PR_000008790,heat shock factor protein 1 +9.2999314,DRUGBANK:DB00623,http://purl.obolibrary.org/obo/DRUGBANK_DB00623,none +9.2999314,MONDO:0020366,http://purl.obolibrary.org/obo/MONDO_0020366,congenital glaucoma +9.3004052,GO:0003713,http://purl.obolibrary.org/obo/GO_0003713,transcription coactivator activity +9.3004052,GO:0007507,http://purl.obolibrary.org/obo/GO_0007507,heart development +9.3004052,PR:000017435,http://purl.obolibrary.org/obo/PR_000017435,proto-oncogene Wnt-1 +9.3004052,UBERON:0001804,http://purl.obolibrary.org/obo/UBERON_0001804,capsule of lens +9.3004052,UBERON:0005352,http://purl.obolibrary.org/obo/UBERON_0005352,spermatic cord +9.3008793,MONDO:0002468,http://purl.obolibrary.org/obo/MONDO_0002468,hyperimmunoglobulin syndrome +9.3013536,DRUGBANK:DB08816,http://purl.obolibrary.org/obo/DRUGBANK_DB08816,none +9.3013536,DRUGBANK:DB08846,http://purl.obolibrary.org/obo/DRUGBANK_DB08846,none +9.3013536,PR:000005537,http://purl.obolibrary.org/obo/PR_000005537,claudin-1 +9.3018281,PR:000000374,http://purl.obolibrary.org/obo/PR_000000374,smad7 +9.3018281,PR:O49293,http://purl.obolibrary.org/obo/PR_O49293,none +9.3018281,UBERON:0008266,http://purl.obolibrary.org/obo/UBERON_0008266,periodontal ligament +9.3018281,UBERON:0018603,http://purl.obolibrary.org/obo/UBERON_0018603,upper central incisor tooth +9.3032529,GO:0016608,http://purl.obolibrary.org/obo/GO_0016608,growth hormone-releasing hormone activity +9.3032529,PR:000011590,http://purl.obolibrary.org/obo/PR_000011590,P protein +9.3037283,DRUGBANK:DB11326,http://purl.obolibrary.org/obo/DRUGBANK_DB11326,none +9.3037283,PR:000001150,http://purl.obolibrary.org/obo/PR_000001150,tachykinin receptor +9.3042039,SO:0001656,http://purl.obolibrary.org/obo/SO_0001656,metal_binding_site +9.3051558,DRUGBANK:DB05315,http://purl.obolibrary.org/obo/DRUGBANK_DB05315,none +9.3051558,MONDO:0009172,http://purl.obolibrary.org/obo/MONDO_0009172,enterocolitis +9.3051558,MONDO:0017349,http://purl.obolibrary.org/obo/MONDO_0017349,myopericytoma +9.3056321,GO:0001776,http://purl.obolibrary.org/obo/GO_0001776,leukocyte homeostasis +9.3056321,PR:000016568,http://purl.obolibrary.org/obo/PR_000016568,tumor protein p73 +9.3056321,UBERON:0034751,http://purl.obolibrary.org/obo/UBERON_0034751,primary auditory cortex +9.3061087,GO:0004767,http://purl.obolibrary.org/obo/GO_0004767,sphingomyelin phosphodiesterase activity +9.3061087,GO:0006596,http://purl.obolibrary.org/obo/GO_0006596,polyamine biosynthetic process +9.3061087,PR:000015118,http://purl.obolibrary.org/obo/PR_000015118,sodium-coupled neutral amino acid transporter 1 +9.3061087,PR:000029983,http://purl.obolibrary.org/obo/PR_000029983,protein-glutamine gamma-glutamyltransferase +9.3070624,GO:0008242,http://purl.obolibrary.org/obo/GO_0008242,omega peptidase activity +9.3070624,GO:0030225,http://purl.obolibrary.org/obo/GO_0030225,macrophage differentiation +9.3070624,MONDO:0001644,http://purl.obolibrary.org/obo/MONDO_0001644,acute proliferative glomerulonephritis +9.3075396,DRUGBANK:DB01195,http://purl.obolibrary.org/obo/DRUGBANK_DB01195,none +9.3075396,GO:0016114,http://purl.obolibrary.org/obo/GO_0016114,terpenoid biosynthetic process +9.3080171,GO:0001709,http://purl.obolibrary.org/obo/GO_0001709,cell fate determination +9.3080171,MONDO:0020204,http://purl.obolibrary.org/obo/MONDO_0020204,conjunctival tumor +9.3080171,PR:000005663,http://purl.obolibrary.org/obo/PR_000005663,ciliary neurotrophic factor +9.3080171,UBERON:0001461,http://purl.obolibrary.org/obo/UBERON_0001461,elbow +9.3084947,PR:000013236,http://purl.obolibrary.org/obo/PR_000013236,serine/threonine-protein kinase D1 +9.3089726,DRUGBANK:DB01168,http://purl.obolibrary.org/obo/DRUGBANK_DB01168,none +9.3089726,MONDO:0000646,http://purl.obolibrary.org/obo/MONDO_0000646,ovarian benign neoplasm +9.3089726,MONDO:0008678,http://purl.obolibrary.org/obo/MONDO_0008678,Williams syndrome +9.3089726,UBERON:0014930,http://purl.obolibrary.org/obo/UBERON_0014930,perivascular space +9.3094508,CHEBI:33263,http://purl.obolibrary.org/obo/CHEBI_33263,diatomic oxygen +9.3094508,CL:0000449,http://purl.obolibrary.org/obo/CL_0000449,brown fat cell +9.3094508,MONDO:0001316,http://purl.obolibrary.org/obo/MONDO_0001316,streptococcal meningitis +9.3094508,MONDO:0001834,http://purl.obolibrary.org/obo/MONDO_0001834,visual pathway disease +9.3094508,NCBITaxon:40051,http://purl.obolibrary.org/obo/NCBITaxon_40051,Bluetongue virus +9.3094508,PR:000010277,http://purl.obolibrary.org/obo/PR_000010277,methyl-CpG-binding protein 2 +9.3094508,PR:000029399,http://purl.obolibrary.org/obo/PR_000029399,neutrophil defensin 1 +9.3099291,DRUGBANK:DB01582,http://purl.obolibrary.org/obo/DRUGBANK_DB01582,none +9.3099291,DRUGBANK:DB10614,http://purl.obolibrary.org/obo/DRUGBANK_DB10614,none +9.3099291,DRUGBANK:DB10915,http://purl.obolibrary.org/obo/DRUGBANK_DB10915,none +9.3099291,PR:000011169,http://purl.obolibrary.org/obo/PR_000011169,endoplasmic reticulum membrane sensor NFE2L1 +9.3099291,UBERON:0005175,http://purl.obolibrary.org/obo/UBERON_0005175,chest organ +9.3104077,MONDO:0019686,http://purl.obolibrary.org/obo/MONDO_0019686,type 2 collagen-related bone disorder +9.3104077,PR:000005146,http://purl.obolibrary.org/obo/PR_000005146,nocturnin +9.3108865,GO:0000139,http://purl.obolibrary.org/obo/GO_0000139,Golgi membrane +9.3108865,PR:000017189,http://purl.obolibrary.org/obo/PR_000017189,ubiquitin carboxyl-terminal hydrolase 5 +9.3113656,CHEBI:35544,http://purl.obolibrary.org/obo/CHEBI_35544,EC 1.14.99.1 (prostaglandin-endoperoxide synthase) inhibitor +9.3113656,CHEBI:76840,http://purl.obolibrary.org/obo/CHEBI_76840,"EC 1.14.99.* (miscellaneous oxidoreductase acting on paired donors, with incorporation or reduction of molecular oxygen) inhibitor" +9.3113656,PR:000010284,http://purl.obolibrary.org/obo/PR_000010284,mediator of RNA polymerase II transcription subunit 13 +9.3118448,GO:0044508,http://purl.obolibrary.org/obo/GO_0044508,glucagon-like peptide 1 receptor activity +9.3123243,MONDO:0000158,http://purl.obolibrary.org/obo/MONDO_0000158,developmental dysplasia of the hip +9.3123243,MONDO:0005700,http://purl.obolibrary.org/obo/MONDO_0005700,chickenpox +9.3128041,DRUGBANK:DB00351,http://purl.obolibrary.org/obo/DRUGBANK_DB00351,none +9.3128041,GO:0006783,http://purl.obolibrary.org/obo/GO_0006783,heme biosynthetic process +9.3128041,GO:0097193,http://purl.obolibrary.org/obo/GO_0097193,intrinsic apoptotic signaling pathway +9.3128041,MONDO:0001574,http://purl.obolibrary.org/obo/MONDO_0001574,capillary disease +9.3137642,GO:0031327,http://purl.obolibrary.org/obo/GO_0031327,negative regulation of cellular biosynthetic process +9.3137642,MONDO:0015485,http://purl.obolibrary.org/obo/MONDO_0015485,primary hereditary glaucoma +9.3137642,MONDO:0018390,http://purl.obolibrary.org/obo/MONDO_0018390,male infertility due to sperm disorder +9.3137642,PR:000010052,http://purl.obolibrary.org/obo/PR_000010052,myelin-associated glycoprotein +9.3142446,PR:000010473,http://purl.obolibrary.org/obo/PR_000010473,collagenase 3 +9.3142446,UBERON:0003531,http://purl.obolibrary.org/obo/UBERON_0003531,forelimb skin +9.3147253,DRUGBANK:DB01072,http://purl.obolibrary.org/obo/DRUGBANK_DB01072,none +9.3152062,MONDO:0004001,http://purl.obolibrary.org/obo/MONDO_0004001,compartment syndrome +9.3156873,DRUGBANK:DB00054,http://purl.obolibrary.org/obo/DRUGBANK_DB00054,none +9.3161686,DRUGBANK:DB00679,http://purl.obolibrary.org/obo/DRUGBANK_DB00679,none +9.3161686,DRUGBANK:DB13751,http://purl.obolibrary.org/obo/DRUGBANK_DB13751,none +9.3161686,GO:0006599,http://purl.obolibrary.org/obo/GO_0006599,phosphagen metabolic process +9.3166502,DRUGBANK:DB01069,http://purl.obolibrary.org/obo/DRUGBANK_DB01069,none +9.3166502,GO:0015874,http://purl.obolibrary.org/obo/GO_0015874,norepinephrine transport +9.3166502,PR:000001807,http://purl.obolibrary.org/obo/PR_000001807,C-type lectin domain family 7 member A +9.317132,DRUGBANK:DB03825,http://purl.obolibrary.org/obo/DRUGBANK_DB03825,none +9.317132,GO:0071214,http://purl.obolibrary.org/obo/GO_0071214,cellular response to abiotic stimulus +9.317132,GO:0104004,http://purl.obolibrary.org/obo/GO_0104004,cellular response to environmental stimulus +9.317132,UBERON:0002667,http://purl.obolibrary.org/obo/UBERON_0002667,lateral septal nucleus +9.3176141,DRUGBANK:DB03800,http://purl.obolibrary.org/obo/DRUGBANK_DB03800,none +9.3176141,GO:1901342,http://purl.obolibrary.org/obo/GO_1901342,regulation of vasculature development +9.3176141,MONDO:0006649,http://purl.obolibrary.org/obo/MONDO_0006649,anterior ischemic optic neuropathy +9.3176141,MONDO:0019230,http://purl.obolibrary.org/obo/MONDO_0019230,inborn disorder of ornithine or proline metabolism +9.3176141,PR:000013015,http://purl.obolibrary.org/obo/PR_000013015,pro-opiomelanocortin +9.3180964,MONDO:0002633,http://purl.obolibrary.org/obo/MONDO_0002633,cranial nerve neoplasm +9.3185789,MONDO:0017144,http://purl.obolibrary.org/obo/MONDO_0017144,alpha-thalassemia and related diseases +9.3185789,SO:0001455,http://purl.obolibrary.org/obo/SO_0001455,selenocysteine +9.3190616,PR:000001382,http://purl.obolibrary.org/obo/PR_000001382,interleukin-21 +9.3190616,UBERON:0015807,http://purl.obolibrary.org/obo/UBERON_0015807,ear epithelium +9.3195446,UBERON:0007610,http://purl.obolibrary.org/obo/UBERON_0007610,tibial artery +9.3200278,GO:0008210,http://purl.obolibrary.org/obo/GO_0008210,estrogen metabolic process +9.3200278,HP:0000812,http://purl.obolibrary.org/obo/HP_0000812,Abnormal internal genitalia +9.3200278,MONDO:0005576,http://purl.obolibrary.org/obo/MONDO_0005576,cryoglobulinemia +9.3214788,MONDO:0008114,http://purl.obolibrary.org/obo/MONDO_0008114,obsessive-compulsive disorder +9.3214788,PR:000001959,http://purl.obolibrary.org/obo/PR_000001959,tumor necrosis factor receptor superfamily member 1B +9.3214788,UBERON:0002380,http://purl.obolibrary.org/obo/UBERON_0002380,trapezius muscle +9.321963,CL:0000819,http://purl.obolibrary.org/obo/CL_0000819,B-1 B cell +9.321963,MONDO:0005361,http://purl.obolibrary.org/obo/MONDO_0005361,eosinophilic esophagitis +9.321963,MONDO:0016584,http://purl.obolibrary.org/obo/MONDO_0016584,mandibuloacral dysplasia +9.3224473,CHEBI:63962,http://purl.obolibrary.org/obo/CHEBI_63962,Hsp90 inhibitor +9.3224473,CHEBI:76938,http://purl.obolibrary.org/obo/CHEBI_76938,EC 3.6.4.* (hydrolases acting on ATP; involved in cellular and subcellular movement) inhibitor +9.3224473,CHEBI:76939,http://purl.obolibrary.org/obo/CHEBI_76939,EC 3.6.4.10 (non-chaperonin molecular chaperone ATPase) inhibitor +9.3234168,MONDO:0009282,http://purl.obolibrary.org/obo/MONDO_0009282,multiple acyl-CoA dehydrogenase deficiency +9.3239019,DRUGBANK:DB12521,http://purl.obolibrary.org/obo/DRUGBANK_DB12521,none +9.3243872,CHEBI:33671,http://purl.obolibrary.org/obo/CHEBI_33671,heteropolycyclic compound +9.3243872,CHEBI:38166,http://purl.obolibrary.org/obo/CHEBI_38166,organic heteropolycyclic compound +9.3243872,MONDO:0005032,http://purl.obolibrary.org/obo/MONDO_0005032,follicular thyroid adenoma +9.3243872,MONDO:0005405,http://purl.obolibrary.org/obo/MONDO_0005405,childhood onset asthma +9.3243872,MONDO:0006574,http://purl.obolibrary.org/obo/MONDO_0006574,lipomatosis +9.3243872,PR:P46530,http://purl.obolibrary.org/obo/PR_P46530,none +9.3248728,MONDO:0005728,http://purl.obolibrary.org/obo/MONDO_0005728,diaphragm disease +9.3248728,PR:000023500,http://purl.obolibrary.org/obo/PR_000023500,none +9.3253586,GO:0031101,http://purl.obolibrary.org/obo/GO_0031101,fin regeneration +9.3258446,DRUGBANK:DB00529,http://purl.obolibrary.org/obo/DRUGBANK_DB00529,none +9.3258446,GO:0009642,http://purl.obolibrary.org/obo/GO_0009642,response to light intensity +9.3258446,GO:0010506,http://purl.obolibrary.org/obo/GO_0010506,regulation of autophagy +9.3263308,DRUGBANK:DB01087,http://purl.obolibrary.org/obo/DRUGBANK_DB01087,none +9.3268173,HP:0000164,http://purl.obolibrary.org/obo/HP_0000164,Abnormality of the dentition +9.3268173,PR:000001083,http://purl.obolibrary.org/obo/PR_000001083,CD2 molecule +9.3268173,PR:000017135,http://purl.obolibrary.org/obo/PR_000017135,uroporphyrinogen-III synthase +9.3277911,MONDO:0008674,http://purl.obolibrary.org/obo/MONDO_0008674,WHIM syndrome +9.3277911,MONDO:0017690,http://purl.obolibrary.org/obo/MONDO_0017690,disorder of galactose metabolism +9.3282783,DRUGBANK:DB08601,http://purl.obolibrary.org/obo/DRUGBANK_DB08601,none +9.3282783,GO:0016837,http://purl.obolibrary.org/obo/GO_0016837,"carbon-oxygen lyase activity, acting on polysaccharides" +9.3292534,DRUGBANK:DB00224,http://purl.obolibrary.org/obo/DRUGBANK_DB00224,none +9.3302295,MONDO:0005051,http://purl.obolibrary.org/obo/MONDO_0005051,invasive lobular breast carcinoma +9.3302295,PR:000003263,http://purl.obolibrary.org/obo/PR_000003263,collagen type I alpha chain +9.3302295,PR:000017036,http://purl.obolibrary.org/obo/PR_000017036,mitochondrial uncoupling protein 2 +9.3302295,PR:000022095,http://purl.obolibrary.org/obo/PR_000022095,none +9.3307179,UBERON:0002170,http://purl.obolibrary.org/obo/UBERON_0002170,upper lobe of right lung +9.3312065,DRUGBANK:DB00598,http://purl.obolibrary.org/obo/DRUGBANK_DB00598,none +9.3312065,DRUGBANK:DB10500,http://purl.obolibrary.org/obo/DRUGBANK_DB10500,none +9.3316954,HP:0000316,http://purl.obolibrary.org/obo/HP_0000316,Hypertelorism +9.3316954,MONDO:0019299,http://purl.obolibrary.org/obo/MONDO_0019299,unclassified genetic skin disorder +9.3316954,PR:000008515,http://purl.obolibrary.org/obo/PR_000008515,transcription factor HES-1 +9.3321845,DRUGBANK:DB00966,http://purl.obolibrary.org/obo/DRUGBANK_DB00966,none +9.3321845,MOP:0003364,http://purl.obolibrary.org/obo/MOP_0003364,none +9.3326739,CHEBI:35623,http://purl.obolibrary.org/obo/CHEBI_35623,anticonvulsant +9.3326739,MONDO:0006036,http://purl.obolibrary.org/obo/MONDO_0006036,granulosa cell tumor +9.3331635,HP:0011355,http://purl.obolibrary.org/obo/HP_0011355,Localized skin lesion +9.3336533,GO:0004977,http://purl.obolibrary.org/obo/GO_0004977,melanocortin receptor activity +9.3336533,SO:0001459,http://purl.obolibrary.org/obo/SO_0001459,CRISPR +9.3336533,UBERON:0004720,http://purl.obolibrary.org/obo/UBERON_0004720,cerebellar vermis +9.3341434,GO:0009414,http://purl.obolibrary.org/obo/GO_0009414,response to water deprivation +9.3341434,GO:0072592,http://purl.obolibrary.org/obo/GO_0072592,oxygen metabolic process +9.3346337,DRUGBANK:DB06148,http://purl.obolibrary.org/obo/DRUGBANK_DB06148,none +9.3346337,MONDO:0011399,http://purl.obolibrary.org/obo/MONDO_0011399,alpha thalassemia +9.3346337,UBERON:0004894,http://purl.obolibrary.org/obo/UBERON_0004894,alveolar wall +9.3351243,DRUGBANK:DB01097,http://purl.obolibrary.org/obo/DRUGBANK_DB01097,none +9.3351243,DRUGBANK:DB10511,http://purl.obolibrary.org/obo/DRUGBANK_DB10511,none +9.3351243,MONDO:0008108,http://purl.obolibrary.org/obo/MONDO_0008108,oculocerebrocutaneous syndrome +9.3351243,PR:000005264,http://purl.obolibrary.org/obo/PR_000005264,cyclin-dependent kinase 6 +9.3351243,UBERON:0011166,http://purl.obolibrary.org/obo/UBERON_0011166,patellofemoral joint +9.3356151,PR:000001997,http://purl.obolibrary.org/obo/PR_000001997,C-C motif chemokine 26 +9.3356151,PR:P41151,http://purl.obolibrary.org/obo/PR_P41151,none +9.3356151,PR:Q5AQ33,http://purl.obolibrary.org/obo/PR_Q5AQ33,none +9.3361061,GO:0004348,http://purl.obolibrary.org/obo/GO_0004348,glucosylceramidase activity +9.3361061,NCBITaxon:7211,http://purl.obolibrary.org/obo/NCBITaxon_7211,none +9.3361061,PR:000009318,http://purl.obolibrary.org/obo/PR_000009318,kinesin heavy chain isoform 5C +9.3365974,CL:0000557,http://purl.obolibrary.org/obo/CL_0000557,granulocyte monocyte progenitor cell +9.3365974,CL:0001012,http://purl.obolibrary.org/obo/CL_0001012,CD7-negative lymphoid progenitor OR granulocyte monocyte progenitor +9.3365974,CL:0001060,http://purl.obolibrary.org/obo/CL_0001060,"hematopoietic oligopotent progenitor cell, lineage-negative" +9.3365974,GO:0004807,http://purl.obolibrary.org/obo/GO_0004807,triose-phosphate isomerase activity +9.3365974,PR:000001943,http://purl.obolibrary.org/obo/PR_000001943,transcription factor E2-alpha +9.3365974,PR:000017504,http://purl.obolibrary.org/obo/PR_000017504,DNA repair protein XRCC1 +9.3370889,GO:0038036,http://purl.obolibrary.org/obo/GO_0038036,sphingosine-1-phosphate receptor activity +9.3370889,UBERON:0011148,http://purl.obolibrary.org/obo/UBERON_0011148,submucosal gland +9.3375807,MONDO:0042491,http://purl.obolibrary.org/obo/MONDO_0042491,cervical squamous intraepithelial neoplasia +9.3375807,PR:000004339,http://purl.obolibrary.org/obo/PR_000004339,"Arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 2" +9.3380727,DRUGBANK:DB00533,http://purl.obolibrary.org/obo/DRUGBANK_DB00533,none +9.3380727,DRUGBANK:DB00983,http://purl.obolibrary.org/obo/DRUGBANK_DB00983,none +9.3380727,GO:0009101,http://purl.obolibrary.org/obo/GO_0009101,glycoprotein biosynthetic process +9.3380727,GO:0072574,http://purl.obolibrary.org/obo/GO_0072574,hepatocyte proliferation +9.3380727,GO:0072575,http://purl.obolibrary.org/obo/GO_0072575,epithelial cell proliferation involved in liver morphogenesis +9.3380727,MONDO:0016382,http://purl.obolibrary.org/obo/MONDO_0016382,hereditary poikiloderma +9.3380727,PR:000006251,http://purl.obolibrary.org/obo/PR_000006251,"ES1 protein, mitochondrial" +9.3380727,PR:P30042,http://purl.obolibrary.org/obo/PR_P30042,none +9.3385649,PR:000004305,http://purl.obolibrary.org/obo/PR_000004305,aryl hydrocarbon receptor nuclear translocator-like protein 1 +9.3385649,SO:0000652,http://purl.obolibrary.org/obo/SO_0000652,cytosolic_5S_rRNA +9.3390574,CL:0000845,http://purl.obolibrary.org/obo/CL_0000845,marginal zone B cell +9.3390574,GO:0007292,http://purl.obolibrary.org/obo/GO_0007292,female gamete generation +9.3390574,MONDO:0002907,http://purl.obolibrary.org/obo/MONDO_0002907,intracranial thrombosis +9.3390574,UBERON:0000369,http://purl.obolibrary.org/obo/UBERON_0000369,corpus striatum +9.3395501,MONDO:0006074,http://purl.obolibrary.org/obo/MONDO_0006074,adenosquamous carcinoma +9.3400431,GO:0048477,http://purl.obolibrary.org/obo/GO_0048477,oogenesis +9.3400431,PR:000010925,http://purl.obolibrary.org/obo/PR_000010925,none +9.3405363,PR:000002058,http://purl.obolibrary.org/obo/PR_000002058,low-density lipoprotein receptor-related protein 1 +9.3410298,CHEBI:50629,http://purl.obolibrary.org/obo/CHEBI_50629,cyclooxygenase 2 inhibitor +9.3410298,DRUGBANK:DB01261,http://purl.obolibrary.org/obo/DRUGBANK_DB01261,none +9.3410298,GO:0030534,http://purl.obolibrary.org/obo/GO_0030534,adult behavior +9.3410298,PR:000007786,http://purl.obolibrary.org/obo/PR_000007786,glutamate decarboxylase 2 +9.3410298,PR:000011526,http://purl.obolibrary.org/obo/PR_000011526,nuclear pore complex protein Nup98-Nup96 +9.3410298,SO:1000029,http://purl.obolibrary.org/obo/SO_1000029,chromosomal_deletion +9.3415235,UBERON:0002771,http://purl.obolibrary.org/obo/UBERON_0002771,middle temporal gyrus +9.3420174,DRUGBANK:DB11695,http://purl.obolibrary.org/obo/DRUGBANK_DB11695,none +9.3420174,GO:0072604,http://purl.obolibrary.org/obo/GO_0072604,none +9.3420174,MONDO:0002033,http://purl.obolibrary.org/obo/MONDO_0002033,cecum cancer +9.3420174,PR:000017247,http://purl.obolibrary.org/obo/PR_000017247,protein VAC14 +9.3425116,PR:000023982,http://purl.obolibrary.org/obo/PR_000023982,none +9.3430061,MONDO:0018999,http://purl.obolibrary.org/obo/MONDO_0018999,LCAT deficiency +9.3430061,MONDO:0019003,http://purl.obolibrary.org/obo/MONDO_0019003,multiple endocrine neoplasia type 2 +9.3430061,PR:000029187,http://purl.obolibrary.org/obo/PR_000029187,ribosomal protein S6 kinase alpha +9.3435008,NCBITaxon:11034,http://purl.obolibrary.org/obo/NCBITaxon_11034,Sindbis virus +9.3435008,PR:000011387,http://purl.obolibrary.org/obo/PR_000011387,neuropeptide Y +9.3435008,PR:Q63046,http://purl.obolibrary.org/obo/PR_Q63046,none +9.3444909,PR:000003925,http://purl.obolibrary.org/obo/PR_000003925,"aldehyde dehydrogenase, mitochondrial" +9.3444909,UBERON:0004461,http://purl.obolibrary.org/obo/UBERON_0004461,skeletal musculature of head +9.3449863,MONDO:0021050,http://purl.obolibrary.org/obo/MONDO_0021050,vaginal neoplasm +9.3449863,MONDO:0045013,http://purl.obolibrary.org/obo/MONDO_0045013,disease of extraembryonic membrane +9.3454819,PR:000008188,http://purl.obolibrary.org/obo/PR_000008188,"solute carrier family 52, riboflavin transporter, member 1" +9.3459778,UBERON:0003981,http://purl.obolibrary.org/obo/UBERON_0003981,primordial ovarian follicle +9.346474,DRUGBANK:DB00450,http://purl.obolibrary.org/obo/DRUGBANK_DB00450,none +9.346474,PR:000024849,http://purl.obolibrary.org/obo/PR_000024849,none +9.3469704,MONDO:0000702,http://purl.obolibrary.org/obo/MONDO_0000702,microscopic colitis +9.3469704,PR:000001366,http://purl.obolibrary.org/obo/PR_000001366,interleukin-11 +9.3469704,PR:000014981,http://purl.obolibrary.org/obo/PR_000014981,solute carrier family 22 member 1 +9.347467,DRUGBANK:DB00043,http://purl.obolibrary.org/obo/DRUGBANK_DB00043,none +9.347467,GO:0016015,http://purl.obolibrary.org/obo/GO_0016015,morphogen activity +9.347467,MONDO:0044067,http://purl.obolibrary.org/obo/MONDO_0044067,"candidiasis, invasive" +9.3479639,HP:0004326,http://purl.obolibrary.org/obo/HP_0004326,Cachexia +9.3479639,UBERON:0005838,http://purl.obolibrary.org/obo/UBERON_0005838,fasciculus of brain +9.3484611,DRUGBANK:DB00471,http://purl.obolibrary.org/obo/DRUGBANK_DB00471,none +9.3484611,MONDO:0020103,http://purl.obolibrary.org/obo/MONDO_0020103,constitutional hemolytic anemia due to acanthocytosis +9.3489585,DRUGBANK:DB07780,http://purl.obolibrary.org/obo/DRUGBANK_DB07780,none +9.3489585,MONDO:0000705,http://purl.obolibrary.org/obo/MONDO_0000705,Clostridium difficile colitis +9.3489585,MONDO:0044070,http://purl.obolibrary.org/obo/MONDO_0044070,candidemia +9.3489585,PR:000002992,http://purl.obolibrary.org/obo/PR_000002992,NRAMP-like divalent ion transporter +9.3489585,PR:000013461,http://purl.obolibrary.org/obo/PR_000013461,tyrosine-protein phosphatase non-receptor type 6 +9.3494561,DRUGBANK:DB13495,http://purl.obolibrary.org/obo/DRUGBANK_DB13495,none +9.3494561,UBERON:0004704,http://purl.obolibrary.org/obo/UBERON_0004704,bone fossa +9.349954,DRUGBANK:DB11085,http://purl.obolibrary.org/obo/DRUGBANK_DB11085,none +9.349954,GO:0030203,http://purl.obolibrary.org/obo/GO_0030203,glycosaminoglycan metabolic process +9.349954,MONDO:0002461,http://purl.obolibrary.org/obo/MONDO_0002461,membranoproliferative glomerulonephritis +9.3504521,MONDO:0006320,http://purl.obolibrary.org/obo/MONDO_0006320,non-cutaneous melanoma +9.3509505,PR:000003622,http://purl.obolibrary.org/obo/PR_000003622,angiotensin-converting enzyme 2 +9.3514491,DRUGBANK:DB10891,http://purl.obolibrary.org/obo/DRUGBANK_DB10891,none +9.3514491,PR:Q43873,http://purl.obolibrary.org/obo/PR_Q43873,none +9.351948,GO:0000152,http://purl.obolibrary.org/obo/GO_0000152,nuclear ubiquitin ligase complex +9.3524471,DRUGBANK:DB01100,http://purl.obolibrary.org/obo/DRUGBANK_DB01100,none +9.3524471,DRUGBANK:DB14060,http://purl.obolibrary.org/obo/DRUGBANK_DB14060,none +9.3524471,PR:000001818,http://purl.obolibrary.org/obo/PR_000001818,MHC class I histocompatibility antigen alpha chain +9.3534461,GO:0060230,http://purl.obolibrary.org/obo/GO_0060230,lipoprotein lipase activator activity +9.353946,PR:000023587,http://purl.obolibrary.org/obo/PR_000023587,none +9.3544461,MONDO:0012033,http://purl.obolibrary.org/obo/MONDO_0012033,bradyopsia +9.3549465,DRUGBANK:DB12618,http://purl.obolibrary.org/obo/DRUGBANK_DB12618,none +9.3549465,GO:0044030,http://purl.obolibrary.org/obo/GO_0044030,regulation of DNA methylation +9.3549465,MONDO:0002728,http://purl.obolibrary.org/obo/MONDO_0002728,rhabdoid tumor +9.3549465,MONDO:0016325,http://purl.obolibrary.org/obo/MONDO_0016325,glycogen storage disease with hypertrophic cardiomyopathy +9.3549465,MONDO:0020292,http://purl.obolibrary.org/obo/MONDO_0020292,congenital anomaly of the great arteries +9.3549465,PR:000001662,http://purl.obolibrary.org/obo/PR_000001662,proteinase-activated receptor 2 +9.3549465,UBERON:0002441,http://purl.obolibrary.org/obo/UBERON_0002441,cervicothoracic ganglion +9.3549465,UBERON:0014687,http://purl.obolibrary.org/obo/UBERON_0014687,temporal sulcus +9.3554471,GO:0051646,http://purl.obolibrary.org/obo/GO_0051646,mitochondrion localization +9.3554471,PR:000002019,http://purl.obolibrary.org/obo/PR_000002019,MHC class II histocompatibility antigen beta chain DRB1 +9.3564491,GO:0004692,http://purl.obolibrary.org/obo/GO_0004692,cGMP-dependent protein kinase activity +9.3564491,GO:0031594,http://purl.obolibrary.org/obo/GO_0031594,neuromuscular junction +9.3569505,MONDO:0018926,http://purl.obolibrary.org/obo/MONDO_0018926,human prion disease +9.3569505,PR:000010943,http://purl.obolibrary.org/obo/PR_000010943,EEF1A lysine methyltransferase 1 +9.3569505,PR:000015945,http://purl.obolibrary.org/obo/PR_000015945,none +9.3574521,DRUGBANK:DB09327,http://purl.obolibrary.org/obo/DRUGBANK_DB09327,none +9.357954,DRUGBANK:DB16183,http://purl.obolibrary.org/obo/DRUGBANK_DB16183,none +9.3584562,GO:0060077,http://purl.obolibrary.org/obo/GO_0060077,inhibitory synapse +9.3584562,UBERON:0002000,http://purl.obolibrary.org/obo/UBERON_0002000,gluteal muscle +9.3589586,MONDO:0019635,http://purl.obolibrary.org/obo/MONDO_0019635,idiopathic achalasia +9.3589586,PR:000003178,http://purl.obolibrary.org/obo/PR_000003178,shc-transforming protein 1 +9.3599641,DRUGBANK:DB04519,http://purl.obolibrary.org/obo/DRUGBANK_DB04519,none +9.3604672,MONDO:0006360,http://purl.obolibrary.org/obo/MONDO_0006360,penile carcinoma +9.3604672,UBERON:0002040,http://purl.obolibrary.org/obo/UBERON_0002040,bronchial artery +9.3604672,UBERON:0002484,http://purl.obolibrary.org/obo/UBERON_0002484,bone marrow cavity +9.3609706,MONDO:0000256,http://purl.obolibrary.org/obo/MONDO_0000256,systemic mycosis +9.3609706,MONDO:0010604,http://purl.obolibrary.org/obo/MONDO_0010604,hemophilia B +9.3609706,MONDO:0020241,http://purl.obolibrary.org/obo/MONDO_0020241,unclassified familial retinal dystrophy +9.3614743,CHEBI:25585,http://purl.obolibrary.org/obo/CHEBI_25585,nonmetal atom +9.3614743,GO:0005652,http://purl.obolibrary.org/obo/GO_0005652,nuclear lamina +9.3614743,PR:000000016,http://purl.obolibrary.org/obo/PR_000000016,HECT domain-containing E3 ubiquitin-protein ligase with WW domains +9.3624823,UBERON:0009654,http://purl.obolibrary.org/obo/UBERON_0009654,alveolar artery +9.3629868,PR:000001740,http://purl.obolibrary.org/obo/PR_000001740,myeloid differentiation primary response protein MyD88 +9.3629868,PR:000018235,http://purl.obolibrary.org/obo/PR_000018235,centromere/kinetochore protein zw10 +9.3634914,MONDO:0001641,http://purl.obolibrary.org/obo/MONDO_0001641,severe pre-eclampsia +9.3634914,MONDO:0001770,http://purl.obolibrary.org/obo/MONDO_0001770,gastrin secretion abnormality +9.3634914,MONDO:0019610,http://purl.obolibrary.org/obo/MONDO_0019610,Zollinger-Ellison syndrome +9.3639963,DRUGBANK:DB00411,http://purl.obolibrary.org/obo/DRUGBANK_DB00411,none +9.3639963,DRUGBANK:DB06423,http://purl.obolibrary.org/obo/DRUGBANK_DB06423,none +9.3639963,PR:000008948,http://purl.obolibrary.org/obo/PR_000008948,insulin-like growth factor-binding protein 2 +9.3645015,DRUGBANK:DB00903,http://purl.obolibrary.org/obo/DRUGBANK_DB00903,none +9.3645015,DRUGBANK:DB14135,http://purl.obolibrary.org/obo/DRUGBANK_DB14135,none +9.3645015,MONDO:0015853,http://purl.obolibrary.org/obo/MONDO_0015853,deficient breast volume or number +9.3655126,PR:000007641,http://purl.obolibrary.org/obo/PR_000007641,forkhead box protein O3 +9.3660186,DRUGBANK:DB12362,http://purl.obolibrary.org/obo/DRUGBANK_DB12362,none +9.3660186,GO:0006900,http://purl.obolibrary.org/obo/GO_0006900,vesicle budding from membrane +9.3670312,DRUGBANK:DB00370,http://purl.obolibrary.org/obo/DRUGBANK_DB00370,none +9.3670312,NCBITaxon:43752,http://purl.obolibrary.org/obo/NCBITaxon_43752,none +9.3670312,PR:000008875,http://purl.obolibrary.org/obo/PR_000008875,islet amyloid polypeptide +9.367538,NCBITaxon:11598,http://purl.obolibrary.org/obo/NCBITaxon_11598,None +9.3680449,MONDO:0000409,http://purl.obolibrary.org/obo/MONDO_0000409,chorioamnionitis +9.3690596,CHEBI:25710,http://purl.obolibrary.org/obo/CHEBI_25710,organophosphorus compound +9.3695674,PR:000010971,http://purl.obolibrary.org/obo/PR_000010971,nanos homolog 2 +9.3700754,DRUGBANK:DB01954,http://purl.obolibrary.org/obo/DRUGBANK_DB01954,none +9.3705837,CHEBI:25703,http://purl.obolibrary.org/obo/CHEBI_25703,organic phosphate +9.3705837,CHEBI:37153,http://purl.obolibrary.org/obo/CHEBI_37153,EC 3.1.3.16 (phosphoprotein phosphatase) inhibitor +9.3705837,CHEBI:76775,http://purl.obolibrary.org/obo/CHEBI_76775,EC 3.1.3.* (phosphoric monoester hydrolase) inhibitor +9.3710922,PR:000001405,http://purl.obolibrary.org/obo/PR_000001405,tumor necrosis factor receptor superfamily member 16 +9.3710922,PR:000018067,http://purl.obolibrary.org/obo/PR_000018067,zinc finger protein 667 +9.3716009,CHEBI:73311,http://purl.obolibrary.org/obo/CHEBI_73311,adenosine receptor agonist +9.3716009,DRUGBANK:DB01077,http://purl.obolibrary.org/obo/DRUGBANK_DB01077,none +9.3726193,MONDO:0017182,http://purl.obolibrary.org/obo/MONDO_0017182,familial hyperinsulinism +9.3726193,MONDO:0044875,http://purl.obolibrary.org/obo/MONDO_0044875,coronary microvascular disease +9.3731288,CHEBI:37734,http://purl.obolibrary.org/obo/CHEBI_37734,phosphoric ester +9.3731288,DRUGBANK:DB15545,http://purl.obolibrary.org/obo/DRUGBANK_DB15545,none +9.3731288,UBERON:0001910,http://purl.obolibrary.org/obo/UBERON_0001910,medial forebrain bundle +9.3736386,DRUGBANK:DB14206,http://purl.obolibrary.org/obo/DRUGBANK_DB14206,none +9.3736386,GO:0071478,http://purl.obolibrary.org/obo/GO_0071478,cellular response to radiation +9.3736386,NCBITaxon:186534,http://purl.obolibrary.org/obo/NCBITaxon_186534,none +9.3741487,GO:0006402,http://purl.obolibrary.org/obo/GO_0006402,mRNA catabolic process +9.3741487,HP:0001883,http://purl.obolibrary.org/obo/HP_0001883,Talipes +9.3741487,MONDO:0018309,http://purl.obolibrary.org/obo/MONDO_0018309,Hirschsprung disease +9.3746591,UBERON:0001964,http://purl.obolibrary.org/obo/UBERON_0001964,least splanchnic nerve +9.3751696,MONDO:0015879,http://purl.obolibrary.org/obo/MONDO_0015879,non-syndromic diaphragmatic or thoracic malformation +9.3751696,PR:000001134,http://purl.obolibrary.org/obo/PR_000001134,growth hormone secretagogue/motilin receptor +9.3756805,UBERON:0008845,http://purl.obolibrary.org/obo/UBERON_0008845,nonskeletal ligament +9.3761916,UBERON:0000381,http://purl.obolibrary.org/obo/UBERON_0000381,urinary bladder detrusor smooth muscle +9.376703,DRUGBANK:DB03783,http://purl.obolibrary.org/obo/DRUGBANK_DB03783,none +9.376703,DRUGBANK:DB05344,http://purl.obolibrary.org/obo/DRUGBANK_DB05344,none +9.376703,HP:0005656,http://purl.obolibrary.org/obo/HP_0005656,Positional foot deformity +9.376703,MONDO:0006030,http://purl.obolibrary.org/obo/MONDO_0006030,chronic cystitis +9.376703,MONDO:0024876,http://purl.obolibrary.org/obo/MONDO_0024876,tendon sheath disorder +9.376703,PR:000013030,http://purl.obolibrary.org/obo/PR_000013030,NADPH--cytochrome P450 reductase +9.3772146,DRUGBANK:DB10276,http://purl.obolibrary.org/obo/DRUGBANK_DB10276,none +9.3777265,CHEBI:73966,http://purl.obolibrary.org/obo/CHEBI_73966,nitric oxide synthase activator +9.3777265,UBERON:0000087,http://purl.obolibrary.org/obo/UBERON_0000087,inner cell mass +9.3782387,NCBITaxon:11801,http://purl.obolibrary.org/obo/NCBITaxon_11801,none +9.3787511,GO:0045934,http://purl.obolibrary.org/obo/GO_0045934,negative regulation of nucleobase-containing compound metabolic process +9.3787511,MONDO:0017738,http://purl.obolibrary.org/obo/MONDO_0017738,lysosomal glycogen storage disease +9.3787511,PR:P53488,http://purl.obolibrary.org/obo/PR_P53488,none +9.3792638,CL:0000835,http://purl.obolibrary.org/obo/CL_0000835,myeloblast +9.3792638,DRUGBANK:DB02902,http://purl.obolibrary.org/obo/DRUGBANK_DB02902,none +9.38029,CL:0000029,http://purl.obolibrary.org/obo/CL_0000029,neural crest derived neuron +9.38029,PR:000016785,http://purl.obolibrary.org/obo/PR_000016785,transcription termination factor 1 +9.3808035,GO:0060918,http://purl.obolibrary.org/obo/GO_0060918,auxin transport +9.3813172,PR:000000024,http://purl.obolibrary.org/obo/PR_000000024,Rho-associated protein kinase +9.3818312,GO:0004126,http://purl.obolibrary.org/obo/GO_0004126,cytidine deaminase activity +9.3818312,GO:0004995,http://purl.obolibrary.org/obo/GO_0004995,tachykinin receptor activity +9.3818312,SO:0002133,http://purl.obolibrary.org/obo/SO_0002133,T_cell_receptor_gene +9.3823455,DRUGBANK:DB00394,http://purl.obolibrary.org/obo/DRUGBANK_DB00394,none +9.3823455,GO:0005003,http://purl.obolibrary.org/obo/GO_0005003,ephrin receptor activity +9.3823455,MONDO:0007804,http://purl.obolibrary.org/obo/MONDO_0007804,Pallister-hall syndrome +9.3823455,UBERON:0000325,http://purl.obolibrary.org/obo/UBERON_0000325,gastric gland +9.38286,GO:0008088,http://purl.obolibrary.org/obo/GO_0008088,axo-dendritic transport +9.38286,PR:000003033,http://purl.obolibrary.org/obo/PR_000003033,leucine-rich repeat serine/threonine-protein kinase 2 +9.38286,UBERON:0004473,http://purl.obolibrary.org/obo/UBERON_0004473,musculature of face +9.3833748,GO:1903509,http://purl.obolibrary.org/obo/GO_1903509,liposaccharide metabolic process +9.3833748,UBERON:0002673,http://purl.obolibrary.org/obo/UBERON_0002673,vestibular nuclear complex +9.3838899,GO:0010558,http://purl.obolibrary.org/obo/GO_0010558,negative regulation of macromolecule biosynthetic process +9.3838899,GO:0036394,http://purl.obolibrary.org/obo/GO_0036394,amylase secretion +9.3844052,GO:0004586,http://purl.obolibrary.org/obo/GO_0004586,ornithine decarboxylase activity +9.3844052,GO:0045765,http://purl.obolibrary.org/obo/GO_0045765,regulation of angiogenesis +9.3844052,PR:000010690,http://purl.obolibrary.org/obo/PR_000010690,cytochrome b +9.3849208,CL:0007011,http://purl.obolibrary.org/obo/CL_0007011,enteric neuron +9.3849208,DRUGBANK:DB00332,http://purl.obolibrary.org/obo/DRUGBANK_DB00332,none +9.3854367,MONDO:0001294,http://purl.obolibrary.org/obo/MONDO_0001294,Horner syndrome +9.3854367,PR:000007038,http://purl.obolibrary.org/obo/PR_000007038,elongation of very long chain fatty acids protein 3 +9.3854367,PR:000015309,http://purl.obolibrary.org/obo/PR_000015309,zinc finger protein SNAI2 +9.3859528,MONDO:0006946,http://purl.obolibrary.org/obo/MONDO_0006946,renal osteodystrophy +9.3859528,PR:000011411,http://purl.obolibrary.org/obo/PR_000011411,steroidogenic factor 1 +9.3859528,UBERON:0003677,http://purl.obolibrary.org/obo/UBERON_0003677,tooth root +9.3859528,UBERON:0006566,http://purl.obolibrary.org/obo/UBERON_0006566,left ventricle myocardium +9.3869859,MONDO:0043544,http://purl.obolibrary.org/obo/MONDO_0043544,nosocomial infection +9.3875028,DRUGBANK:DB03685,http://purl.obolibrary.org/obo/DRUGBANK_DB03685,none +9.3875028,GO:0009504,http://purl.obolibrary.org/obo/GO_0009504,cell plate +9.3875028,GO:0046467,http://purl.obolibrary.org/obo/GO_0046467,membrane lipid biosynthetic process +9.3875028,MONDO:0006468,http://purl.obolibrary.org/obo/MONDO_0006468,thyroid gland undifferentiated (anaplastic) carcinoma +9.38802,CHEBI:33299,http://purl.obolibrary.org/obo/CHEBI_33299,alkaline earth molecular entity +9.38802,CL:1000488,http://purl.obolibrary.org/obo/CL_1000488,cholangiocyte +9.38802,MONDO:0021489,http://purl.obolibrary.org/obo/MONDO_0021489,benign neoplasm of sweat gland +9.3885375,DRUGBANK:DB09349,http://purl.obolibrary.org/obo/DRUGBANK_DB09349,none +9.3885375,DRUGBANK:DB12449,http://purl.obolibrary.org/obo/DRUGBANK_DB12449,none +9.3885375,GO:0016628,http://purl.obolibrary.org/obo/GO_0016628,"oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor" +9.3885375,MONDO:0015765,http://purl.obolibrary.org/obo/MONDO_0015765,congenital myopathy with cores +9.3885375,PR:000022070,http://purl.obolibrary.org/obo/PR_000022070,none +9.3890552,DRUGBANK:DB01114,http://purl.obolibrary.org/obo/DRUGBANK_DB01114,none +9.3890552,GO:0038001,http://purl.obolibrary.org/obo/GO_0038001,paracrine signaling +9.3890552,MONDO:0006709,http://purl.obolibrary.org/obo/MONDO_0006709,common bile duct neoplasm +9.3895732,PR:000014683,http://purl.obolibrary.org/obo/PR_000014683,alpha-1-antichymotrypsin +9.3900915,GO:0032094,http://purl.obolibrary.org/obo/GO_0032094,response to food +9.3900915,PR:000008210,http://purl.obolibrary.org/obo/PR_000008210,glutathione peroxidase 1 +9.3900915,UBERON:0005807,http://purl.obolibrary.org/obo/UBERON_0005807,rostral ventrolateral medulla +9.39061,CL:0000069,http://purl.obolibrary.org/obo/CL_0000069,branched duct epithelial cell +9.39061,DRUGBANK:DB01626,http://purl.obolibrary.org/obo/DRUGBANK_DB01626,none +9.39061,GO:0006109,http://purl.obolibrary.org/obo/GO_0006109,regulation of carbohydrate metabolic process +9.39061,GO:0043195,http://purl.obolibrary.org/obo/GO_0043195,terminal bouton +9.3911288,DRUGBANK:DB10520,http://purl.obolibrary.org/obo/DRUGBANK_DB10520,none +9.3916479,MONDO:0000921,http://purl.obolibrary.org/obo/MONDO_0000921,ampulla of vater neoplasm +9.3916479,PR:000004157,http://purl.obolibrary.org/obo/PR_000004157,beta-2-glycoprotein 1 +9.3916479,UBERON:0007502,http://purl.obolibrary.org/obo/UBERON_0007502,epithelial plexus +9.3921672,DRUGBANK:DB00242,http://purl.obolibrary.org/obo/DRUGBANK_DB00242,none +9.3921672,GO:0009713,http://purl.obolibrary.org/obo/GO_0009713,catechol-containing compound biosynthetic process +9.3921672,MONDO:0010518,http://purl.obolibrary.org/obo/MONDO_0010518,Wiskott-Aldrich syndrome +9.3921672,MONDO:0021234,http://purl.obolibrary.org/obo/MONDO_0021234,spinal cord neoplasm +9.3921672,NCBITaxon:2732424,http://purl.obolibrary.org/obo/NCBITaxon_2732424,none +9.3921672,NCBITaxon:2732539,http://purl.obolibrary.org/obo/NCBITaxon_2732539,none +9.3921672,UBERON:0000057,http://purl.obolibrary.org/obo/UBERON_0000057,urethra +9.3926868,GO:0005000,http://purl.obolibrary.org/obo/GO_0005000,vasopressin receptor activity +9.3926868,NCBITaxon:10811,http://purl.obolibrary.org/obo/NCBITaxon_10811,none +9.3937269,DRUGBANK:DB13295,http://purl.obolibrary.org/obo/DRUGBANK_DB13295,none +9.3937269,GO:0016892,http://purl.obolibrary.org/obo/GO_0016892,"endoribonuclease activity, producing 3'-phosphomonoesters" +9.3937269,MONDO:0004277,http://purl.obolibrary.org/obo/MONDO_0004277,gonorrhea +9.3942473,GO:0009678,http://purl.obolibrary.org/obo/GO_0009678,pyrophosphate hydrolysis-driven proton transmembrane transporter activity +9.3942473,PR:000007883,http://purl.obolibrary.org/obo/PR_000007883,vitamin D-binding protein +9.3942473,SO:0000653,http://purl.obolibrary.org/obo/SO_0000653,cytosolic_28S_rRNA +9.3942473,UBERON:0001992,http://purl.obolibrary.org/obo/UBERON_0001992,papillary layer of dermis +9.394768,GO:0070566,http://purl.obolibrary.org/obo/GO_0070566,adenylyltransferase activity +9.394768,PR:P24102,http://purl.obolibrary.org/obo/PR_P24102,none +9.395289,MONDO:0005711,http://purl.obolibrary.org/obo/MONDO_0005711,congenital diaphragmatic hernia +9.395289,MONDO:0006456,http://purl.obolibrary.org/obo/MONDO_0006456,thymoma +9.3958102,GO:0006818,http://purl.obolibrary.org/obo/GO_0006818,none +9.3958102,UBERON:0002734,http://purl.obolibrary.org/obo/UBERON_0002734,superior temporal sulcus +9.3963317,CHEBI:75763,http://purl.obolibrary.org/obo/CHEBI_75763,eukaryotic metabolite +9.3963317,MONDO:0008585,http://purl.obolibrary.org/obo/MONDO_0008585,HELLP syndrome +9.3968535,DRUGBANK:DB03903,http://purl.obolibrary.org/obo/DRUGBANK_DB03903,none +9.3968535,UBERON:0035039,http://purl.obolibrary.org/obo/UBERON_0035039,rectal artery +9.3973756,GO:2000113,http://purl.obolibrary.org/obo/GO_2000113,negative regulation of cellular macromolecule biosynthetic process +9.3973756,MONDO:0006629,http://purl.obolibrary.org/obo/MONDO_0006629,"osteoarthritis, hip" +9.3973756,PR:000006028,http://purl.obolibrary.org/obo/PR_000006028,cathepsin G +9.3978979,DRUGBANK:DB11119,http://purl.obolibrary.org/obo/DRUGBANK_DB11119,none +9.3978979,UBERON:0003294,http://purl.obolibrary.org/obo/UBERON_0003294,gland of foregut +9.3984205,DRUGBANK:DB12583,http://purl.obolibrary.org/obo/DRUGBANK_DB12583,none +9.3984205,GO:0004963,http://purl.obolibrary.org/obo/GO_0004963,follicle-stimulating hormone receptor activity +9.3984205,PR:000010367,http://purl.obolibrary.org/obo/PR_000010367,lactadherin +9.3989434,GO:0090484,http://purl.obolibrary.org/obo/GO_0090484,none +9.3994665,DRUGBANK:DB14182,http://purl.obolibrary.org/obo/DRUGBANK_DB14182,none +9.3994665,GO:0002758,http://purl.obolibrary.org/obo/GO_0002758,innate immune response-activating signal transduction +9.3994665,GO:0019835,http://purl.obolibrary.org/obo/GO_0019835,cytolysis +9.3994665,MONDO:0001382,http://purl.obolibrary.org/obo/MONDO_0001382,hepatorenal syndrome +9.3994665,PR:000004692,http://purl.obolibrary.org/obo/PR_000004692,Bcl-2-related protein A1 +9.3999899,CHEBI:5147,http://purl.obolibrary.org/obo/CHEBI_5147,formoterol +9.3999899,MONDO:0004748,http://purl.obolibrary.org/obo/MONDO_0004748,lip disease +9.3999899,UBERON:0001186,http://purl.obolibrary.org/obo/UBERON_0001186,left renal artery +9.4005136,MONDO:0024666,http://purl.obolibrary.org/obo/MONDO_0024666,benign epithelial skin neoplasm +9.4005136,UBERON:0013164,http://purl.obolibrary.org/obo/UBERON_0013164,molariform tooth +9.4010376,GO:0002221,http://purl.obolibrary.org/obo/GO_0002221,pattern recognition receptor signaling pathway +9.4010376,UBERON:0006869,http://purl.obolibrary.org/obo/UBERON_0006869,electric organ +9.4010376,UBERON:0013141,http://purl.obolibrary.org/obo/UBERON_0013141,capillary bed +9.4015619,DRUGBANK:DB15536,http://purl.obolibrary.org/obo/DRUGBANK_DB15536,none +9.4015619,PR:000006990,http://purl.obolibrary.org/obo/PR_000006990,eukaryotic translation initiation factor 4E +9.4020864,GO:0008553,http://purl.obolibrary.org/obo/GO_0008553,P-type proton-exporting transporter activity +9.4020864,MONDO:0007774,http://purl.obolibrary.org/obo/MONDO_0007774,hyperreflexia +9.4020864,PR:000000067,http://purl.obolibrary.org/obo/PR_000000067,activin receptor type-1 +9.4020864,UBERON:0006794,http://purl.obolibrary.org/obo/UBERON_0006794,visual processing part of nervous system +9.4026112,GO:0006415,http://purl.obolibrary.org/obo/GO_0006415,translational termination +9.4026112,GO:0017050,http://purl.obolibrary.org/obo/GO_0017050,D-erythro-sphingosine kinase activity +9.4026112,NCBITaxon:29263,http://purl.obolibrary.org/obo/NCBITaxon_29263,tick-borne encephalitis virus group +9.4026112,PR:O22765,http://purl.obolibrary.org/obo/PR_O22765,none +9.4031363,DRUGBANK:DB13907,http://purl.obolibrary.org/obo/DRUGBANK_DB13907,none +9.4031363,MONDO:0015614,http://purl.obolibrary.org/obo/MONDO_0015614,dermatitis herpetiformis +9.4031363,MONDO:0019691,http://purl.obolibrary.org/obo/MONDO_0019691,short rib dysplasia +9.4031363,UBERON:0001945,http://purl.obolibrary.org/obo/UBERON_0001945,superior colliculus +9.4036616,DRUGBANK:DB06209,http://purl.obolibrary.org/obo/DRUGBANK_DB06209,none +9.4036616,MONDO:0005316,http://purl.obolibrary.org/obo/MONDO_0005316,bacterial vaginosis +9.4036616,MONDO:0006706,http://purl.obolibrary.org/obo/MONDO_0006706,Bifidobacteriales infectious disease +9.4041872,GO:0042423,http://purl.obolibrary.org/obo/GO_0042423,catecholamine biosynthetic process +9.4041872,MONDO:0017590,http://purl.obolibrary.org/obo/MONDO_0017590,carcinoma of the ampulla of vater +9.4047131,CHEBI:33704,http://purl.obolibrary.org/obo/CHEBI_33704,alpha-amino acid +9.4052393,DRUGBANK:DB00047,http://purl.obolibrary.org/obo/DRUGBANK_DB00047,none +9.4052393,GO:0061631,http://purl.obolibrary.org/obo/GO_0061631,ubiquitin conjugating enzyme activity +9.4052393,MONDO:0018911,http://purl.obolibrary.org/obo/MONDO_0018911,maturity-onset diabetes of the young +9.4057658,GO:0045056,http://purl.obolibrary.org/obo/GO_0045056,transcytosis +9.4057658,PR:P19892,http://purl.obolibrary.org/obo/PR_P19892,none +9.4057658,PR:P50527,http://purl.obolibrary.org/obo/PR_P50527,none +9.4057658,UBERON:0002130,http://purl.obolibrary.org/obo/UBERON_0002130,cerebellar nuclear complex +9.4062925,HP:0010442,http://purl.obolibrary.org/obo/HP_0010442,Polydactyly +9.4062925,MONDO:0006837,http://purl.obolibrary.org/obo/MONDO_0006837,low tension glaucoma +9.4062925,MONDO:0019439,http://purl.obolibrary.org/obo/MONDO_0019439,AA amyloidosis +9.4068195,DRUGBANK:DB06543,http://purl.obolibrary.org/obo/DRUGBANK_DB06543,none +9.4068195,HP:0000481,http://purl.obolibrary.org/obo/HP_0000481,Abnormal cornea morphology +9.4073468,DRUGBANK:DB00814,http://purl.obolibrary.org/obo/DRUGBANK_DB00814,none +9.4073468,GO:0007033,http://purl.obolibrary.org/obo/GO_0007033,vacuole organization +9.4073468,UBERON:0003472,http://purl.obolibrary.org/obo/UBERON_0003472,cerebellar artery +9.4078744,NCBITaxon:2697495,http://purl.obolibrary.org/obo/NCBITaxon_2697495,Spiralia +9.4078744,UBERON:0036303,http://purl.obolibrary.org/obo/UBERON_0036303,vasculature of central nervous system +9.4084022,DRUGBANK:DB00179,http://purl.obolibrary.org/obo/DRUGBANK_DB00179,none +9.4084022,DRUGBANK:DB00720,http://purl.obolibrary.org/obo/DRUGBANK_DB00720,none +9.4089303,DRUGBANK:DB03929,http://purl.obolibrary.org/obo/DRUGBANK_DB03929,none +9.4089303,GO:0060968,http://purl.obolibrary.org/obo/GO_0060968,none +9.4094587,MONDO:0016235,http://purl.obolibrary.org/obo/MONDO_0016235,complex vascular malformation with associated anomalies +9.4099874,DRUGBANK:DB01607,http://purl.obolibrary.org/obo/DRUGBANK_DB01607,none +9.4099874,PR:000007160,http://purl.obolibrary.org/obo/PR_000007160,receptor tyrosine-protein kinase erbB-4 +9.4105164,PR:000007479,http://purl.obolibrary.org/obo/PR_000007479,fibroblast growth factor 1 +9.4110456,NCBITaxon:1206795,http://purl.obolibrary.org/obo/NCBITaxon_1206795,Lophotrochozoa +9.4115751,DRUGBANK:DB12054,http://purl.obolibrary.org/obo/DRUGBANK_DB12054,none +9.4115751,PR:000000709,http://purl.obolibrary.org/obo/PR_000000709,shaker-related voltage-gated potassium channel alpha subunit +9.4121049,DRUGBANK:DB00927,http://purl.obolibrary.org/obo/DRUGBANK_DB00927,none +9.412635,PR:000006602,http://purl.obolibrary.org/obo/PR_000006602,dynamin-1-like protein +9.4131654,PR:000007705,http://purl.obolibrary.org/obo/PR_000007705,"galactoside alpha-(1,2)-fucosyltransferase 2" +9.4131654,PR:000015597,http://purl.obolibrary.org/obo/PR_000015597,serine palmitoyltransferase 2 +9.413696,GO:0004585,http://purl.obolibrary.org/obo/GO_0004585,ornithine carbamoyltransferase activity +9.4142269,PR:000014706,http://purl.obolibrary.org/obo/PR_000014706,alpha-2-antiplasmin +9.4147581,DRUGBANK:DB08231,http://purl.obolibrary.org/obo/DRUGBANK_DB08231,none +9.4147581,GO:0007586,http://purl.obolibrary.org/obo/GO_0007586,digestion +9.4147581,GO:0034612,http://purl.obolibrary.org/obo/GO_0034612,response to tumor necrosis factor +9.4147581,MONDO:0002786,http://purl.obolibrary.org/obo/MONDO_0002786,diencephalic cancer +9.4147581,PR:000001200,http://purl.obolibrary.org/obo/PR_000001200,C-C chemokine receptor type 4 +9.4158214,DRUGBANK:DB02531,http://purl.obolibrary.org/obo/DRUGBANK_DB02531,none +9.4158214,DRUGBANK:DB12751,http://purl.obolibrary.org/obo/DRUGBANK_DB12751,none +9.4158214,HP:0001762,http://purl.obolibrary.org/obo/HP_0001762,Talipes equinovarus +9.4158214,PR:000017503,http://purl.obolibrary.org/obo/PR_000017503,xenotropic and polytropic retrovirus receptor 1 +9.4158214,UBERON:0011364,http://purl.obolibrary.org/obo/UBERON_0011364,cleidocephalicus muscle +9.4163535,GO:0016859,http://purl.obolibrary.org/obo/GO_0016859,cis-trans isomerase activity +9.4163535,MONDO:0015461,http://purl.obolibrary.org/obo/MONDO_0015461,short rib-polydactyly syndrome +9.4163535,PR:000013318,http://purl.obolibrary.org/obo/PR_000013318,trypsin-1 +9.4163535,PR:Q8JIR0,http://purl.obolibrary.org/obo/PR_Q8JIR0,none +9.4163535,UBERON:0001128,http://purl.obolibrary.org/obo/UBERON_0001128,sternocleidomastoid +9.4163535,UBERON:0001648,http://purl.obolibrary.org/obo/UBERON_0001648,vestibulocochlear nerve +9.4168858,DRUGBANK:DB00674,http://purl.obolibrary.org/obo/DRUGBANK_DB00674,none +9.4168858,GO:0044452,http://purl.obolibrary.org/obo/GO_0044452,none +9.4168858,MONDO:0002505,http://purl.obolibrary.org/obo/MONDO_0002505,childhood astrocytic tumor +9.4168858,MONDO:0018037,http://purl.obolibrary.org/obo/MONDO_0018037,hyper-IgE syndrome +9.4168858,PR:000006464,http://purl.obolibrary.org/obo/PR_000006464,"dehydrogenase/reductase SDR family member 2, mitochondrial" +9.4168858,UBERON:0008447,http://purl.obolibrary.org/obo/UBERON_0008447,intertarsal joint +9.4174184,PR:000044639,http://purl.obolibrary.org/obo/PR_000044639,cannabinoid receptor +9.4179513,NCBITaxon:693996,http://purl.obolibrary.org/obo/NCBITaxon_693996,Alphacoronavirus +9.4184845,MONDO:0015574,http://purl.obolibrary.org/obo/MONDO_0015574,chronic cutaneous lupus erythematosus +9.4184845,MONDO:0024621,http://purl.obolibrary.org/obo/MONDO_0024621,serous cystadenocarcinoma +9.419018,GO:0001618,http://purl.obolibrary.org/obo/GO_0001618,virus receptor activity +9.419018,GO:0140272,http://purl.obolibrary.org/obo/GO_0140272,exogenous protein binding +9.4195518,DRUGBANK:DB12551,http://purl.obolibrary.org/obo/DRUGBANK_DB12551,none +9.4200858,DRUGBANK:DB15588,http://purl.obolibrary.org/obo/DRUGBANK_DB15588,none +9.4200858,MONDO:0009993,http://purl.obolibrary.org/obo/MONDO_0009993,embryonal rhabdomyosarcoma +9.4200858,PR:Q93YT1,http://purl.obolibrary.org/obo/PR_Q93YT1,none +9.4200858,PR:Q9XF67,http://purl.obolibrary.org/obo/PR_Q9XF67,none +9.4200858,UBERON:0001817,http://purl.obolibrary.org/obo/UBERON_0001817,lacrimal gland +9.4206201,CL:0002138,http://purl.obolibrary.org/obo/CL_0002138,endothelial cell of lymphatic vessel +9.4206201,DRUGBANK:DB12422,http://purl.obolibrary.org/obo/DRUGBANK_DB12422,none +9.4206201,MONDO:0004508,http://purl.obolibrary.org/obo/MONDO_0004508,periapical periodontitis +9.4206201,PR:000010335,http://purl.obolibrary.org/obo/PR_000010335,hepatocyte growth factor receptor +9.4206201,UBERON:0016403,http://purl.obolibrary.org/obo/UBERON_0016403,thoracic wall +9.4211548,PR:000004770,http://purl.obolibrary.org/obo/PR_000004770,Polycomb complex protein BMI-1 +9.4211548,PR:P30348,http://purl.obolibrary.org/obo/PR_P30348,none +9.4216897,PR:000008028,http://purl.obolibrary.org/obo/PR_000008028,transcriptional activator GLI3 +9.4227603,MONDO:0000919,http://purl.obolibrary.org/obo/MONDO_0000919,ampulla of vater cancer +9.4238321,GO:0004357,http://purl.obolibrary.org/obo/GO_0004357,glutamate-cysteine ligase activity +9.4238321,HP:0002500,http://purl.obolibrary.org/obo/HP_0002500,Abnormal cerebral white matter morphology +9.4243685,PR:000017497,http://purl.obolibrary.org/obo/PR_000017497,exportin-1 +9.4249051,DRUGBANK:DB07715,http://purl.obolibrary.org/obo/DRUGBANK_DB07715,none +9.4249051,MONDO:0005078,http://purl.obolibrary.org/obo/MONDO_0005078,phyllodes tumor +9.4249051,SO:0000090,http://purl.obolibrary.org/obo/SO_0000090,plastid_gene +9.425442,PR:000001336,http://purl.obolibrary.org/obo/PR_000001336,CD55-like protein +9.425442,PR:000005653,http://purl.obolibrary.org/obo/PR_000005653,CCR4-NOT transcription complex subunit 6 +9.425442,PR:000025662,http://purl.obolibrary.org/obo/PR_000025662,complement decay-accelerating factor +9.4259792,GO:0001763,http://purl.obolibrary.org/obo/GO_0001763,morphogenesis of a branching structure +9.4259792,MONDO:0001280,http://purl.obolibrary.org/obo/MONDO_0001280,choroiditis +9.4259792,PR:000006523,http://purl.obolibrary.org/obo/PR_000006523,delta-like protein 1 +9.4259792,PR:000015603,http://purl.obolibrary.org/obo/PR_000015603,sequestosome-1 +9.4265167,UBERON:0001438,http://purl.obolibrary.org/obo/UBERON_0001438,metaphysis +9.4270545,DRUGBANK:DB04027,http://purl.obolibrary.org/obo/DRUGBANK_DB04027,none +9.4270545,GO:0072376,http://purl.obolibrary.org/obo/GO_0072376,protein activation cascade +9.4270545,PR:000005905,http://purl.obolibrary.org/obo/PR_000005905,cryptochrome-1 +9.4270545,UBERON:0002663,http://purl.obolibrary.org/obo/UBERON_0002663,septal nuclear complex +9.4270545,UBERON:0015154,http://purl.obolibrary.org/obo/UBERON_0015154,lateral gland of orbital region +9.4275926,PR:000015085,http://purl.obolibrary.org/obo/PR_000015085,acetyl-coenzyme A transporter 1 +9.4281309,CL:0000158,http://purl.obolibrary.org/obo/CL_0000158,club cell +9.4281309,CL:0000402,http://purl.obolibrary.org/obo/CL_0000402,CNS interneuron +9.4281309,GO:0006750,http://purl.obolibrary.org/obo/GO_0006750,glutathione biosynthetic process +9.4286696,MONDO:0000465,http://purl.obolibrary.org/obo/MONDO_0000465,atrioventricular block +9.4286696,PR:000006899,http://purl.obolibrary.org/obo/PR_000006899,endothelin-3 +9.4286696,PR:000015120,http://purl.obolibrary.org/obo/PR_000015120,sodium-coupled neutral amino acid transporter 3 +9.4286696,PR:O23651,http://purl.obolibrary.org/obo/PR_O23651,none +9.4292085,DRUGBANK:DB00776,http://purl.obolibrary.org/obo/DRUGBANK_DB00776,none +9.4292085,MONDO:0005167,http://purl.obolibrary.org/obo/MONDO_0005167,fibroma +9.4292085,MONDO:0011934,http://purl.obolibrary.org/obo/MONDO_0011934,dermatofibrosarcoma protuberans +9.4292085,PR:000017390,http://purl.obolibrary.org/obo/PR_000017390,WD repeat-containing protein 26 +9.4297477,MONDO:0022800,http://purl.obolibrary.org/obo/MONDO_0022800,collagenopathy type 2 alpha 1 +9.4297477,PR:P48598,http://purl.obolibrary.org/obo/PR_P48598,none +9.4302872,CL:0000257,http://purl.obolibrary.org/obo/CL_0000257,Eumycetozoan cell +9.4302872,CL:0000263,http://purl.obolibrary.org/obo/CL_0000263,none +9.4302872,GO:0006956,http://purl.obolibrary.org/obo/GO_0006956,complement activation +9.4302872,MONDO:0001660,http://purl.obolibrary.org/obo/MONDO_0001660,proliferative diabetic retinopathy +9.4313672,DRUGBANK:DB06702,http://purl.obolibrary.org/obo/DRUGBANK_DB06702,none +9.4313672,DRUGBANK:DB10534,http://purl.obolibrary.org/obo/DRUGBANK_DB10534,none +9.4313672,PR:000014973,http://purl.obolibrary.org/obo/PR_000014973,excitatory amino acid transporter 2 +9.4313672,SO:0000152,http://purl.obolibrary.org/obo/SO_0000152,YAC +9.4319076,GO:0004703,http://purl.obolibrary.org/obo/GO_0004703,G protein-coupled receptor kinase activity +9.4319076,GO:0016411,http://purl.obolibrary.org/obo/GO_0016411,acylglycerol O-acyltransferase activity +9.4319076,GO:0043269,http://purl.obolibrary.org/obo/GO_0043269,regulation of ion transport +9.4319076,GO:0060147,http://purl.obolibrary.org/obo/GO_0060147,regulation of posttranscriptional gene silencing +9.4319076,MONDO:0004758,http://purl.obolibrary.org/obo/MONDO_0004758,scotoma +9.4319076,MONDO:0006052,http://purl.obolibrary.org/obo/MONDO_0006052,pulmonary tuberculosis +9.4319076,PR:000001828,http://purl.obolibrary.org/obo/PR_000001828,NKG2-D type II integral membrane protein +9.4324482,GO:0060966,http://purl.obolibrary.org/obo/GO_0060966,regulation of gene silencing by RNA +9.4324482,MONDO:0018776,http://purl.obolibrary.org/obo/MONDO_0018776,demyelinating hereditary motor and sensory neuropathy +9.4335305,CHEBI:60915,http://purl.obolibrary.org/obo/CHEBI_60915,diastereoisomeric mixture +9.4335305,DRUGBANK:DB06697,http://purl.obolibrary.org/obo/DRUGBANK_DB06697,none +9.4335305,PR:000002060,http://purl.obolibrary.org/obo/PR_000002060,lysosome-associated membrane glycoprotein 1 +9.4335305,UBERON:0014950,http://purl.obolibrary.org/obo/UBERON_0014950,layer of developing cerebral cortex +9.4340721,DRUGBANK:DB02082,http://purl.obolibrary.org/obo/DRUGBANK_DB02082,none +9.4340721,MONDO:0005975,http://purl.obolibrary.org/obo/MONDO_0005975,suppurative otitis media +9.4340721,PR:000003502,http://purl.obolibrary.org/obo/PR_000003502,granzyme A +9.4351561,GO:0016101,http://purl.obolibrary.org/obo/GO_0016101,diterpenoid metabolic process +9.4351561,NCBITaxon:83333,http://purl.obolibrary.org/obo/NCBITaxon_83333,none +9.4351561,PR:Q9SFU3,http://purl.obolibrary.org/obo/PR_Q9SFU3,none +9.4356985,PR:000007164,http://purl.obolibrary.org/obo/PR_000007164,general transcription and DNA repair factor IIH helicase subunit XPD +9.4356985,PR:P10889,http://purl.obolibrary.org/obo/PR_P10889,none +9.4362413,GO:0009108,http://purl.obolibrary.org/obo/GO_0009108,none +9.4373276,MONDO:0003198,http://purl.obolibrary.org/obo/MONDO_0003198,small intestine adenocarcinoma +9.4378712,GO:0000791,http://purl.obolibrary.org/obo/GO_0000791,euchromatin +9.4378712,GO:0001654,http://purl.obolibrary.org/obo/GO_0001654,eye development +9.4378712,MONDO:0007608,http://purl.obolibrary.org/obo/MONDO_0007608,desmoid tumor +9.4378712,UBERON:0003075,http://purl.obolibrary.org/obo/UBERON_0003075,neural plate +9.4384152,MONDO:0015227,http://purl.obolibrary.org/obo/MONDO_0015227,non-syndromic limb malformation +9.4384152,SO:0001081,http://purl.obolibrary.org/obo/SO_0001081,helix_turn_helix +9.4389594,CL:0002674,http://purl.obolibrary.org/obo/CL_0002674,H minus +9.4389594,DRUGBANK:DB10658,http://purl.obolibrary.org/obo/DRUGBANK_DB10658,none +9.4389594,GO:0015992,http://purl.obolibrary.org/obo/GO_0015992,none +9.4389594,GO:1900368,http://purl.obolibrary.org/obo/GO_1900368,regulation of RNA interference +9.4389594,PR:000023989,http://purl.obolibrary.org/obo/PR_000023989,none +9.4395039,CHEBI:22985,http://purl.obolibrary.org/obo/CHEBI_22985,calcium molecular entity +9.4395039,SO:0005853,http://purl.obolibrary.org/obo/SO_0005853,gene_cassette +9.4400487,GO:0005342,http://purl.obolibrary.org/obo/GO_0005342,organic acid transmembrane transporter activity +9.4400487,PR:000015600,http://purl.obolibrary.org/obo/PR_000015600,spermatogenic leucine zipper protein 1 +9.4405938,DRUGBANK:DB14317,http://purl.obolibrary.org/obo/DRUGBANK_DB14317,none +9.4405938,GO:0044274,http://purl.obolibrary.org/obo/GO_0044274,none +9.4405938,GO:0046943,http://purl.obolibrary.org/obo/GO_0046943,carboxylic acid transmembrane transporter activity +9.4405938,NCBITaxon:12103,http://purl.obolibrary.org/obo/NCBITaxon_12103,Cardiovirus +9.4405938,UBERON:0004913,http://purl.obolibrary.org/obo/UBERON_0004913,hepatopancreatic ampulla +9.4411392,DRUGBANK:DB00300,http://purl.obolibrary.org/obo/DRUGBANK_DB00300,none +9.4411392,MONDO:0009348,http://purl.obolibrary.org/obo/MONDO_0009348,classic Hodgkin lymphoma +9.4411392,MONDO:0043459,http://purl.obolibrary.org/obo/MONDO_0043459,radiation-induced disorder +9.4411392,PR:000002062,http://purl.obolibrary.org/obo/PR_000002062,macrophage colony-stimulating factor 1 receptor +9.4416849,DRUGBANK:DB10570,http://purl.obolibrary.org/obo/DRUGBANK_DB10570,none +9.4416849,MONDO:0007016,http://purl.obolibrary.org/obo/MONDO_0007016,vitamin A deficiency +9.4422309,GO:0043200,http://purl.obolibrary.org/obo/GO_0043200,response to amino acid +9.4422309,GO:0055080,http://purl.obolibrary.org/obo/GO_0055080,cation homeostasis +9.4422309,GO:0098656,http://purl.obolibrary.org/obo/GO_0098656,anion transmembrane transport +9.4422309,MONDO:0005144,http://purl.obolibrary.org/obo/MONDO_0005144,familial amyotrophic lateral sclerosis +9.4422309,MONDO:0018965,http://purl.obolibrary.org/obo/MONDO_0018965,Alport syndrome +9.4422309,PR:000027506,http://purl.obolibrary.org/obo/PR_000027506,none +9.4422309,PR:P15143,http://purl.obolibrary.org/obo/PR_P15143,none +9.4422309,UBERON:0002333,http://purl.obolibrary.org/obo/UBERON_0002333,pulmonary trunk +9.4427772,MONDO:0006761,http://purl.obolibrary.org/obo/MONDO_0006761,fibromuscular dysplasia +9.4427772,MONDO:0010528,http://purl.obolibrary.org/obo/MONDO_0010528,anosmia +9.4433238,PR:000001492,http://purl.obolibrary.org/obo/PR_000001492,none +9.4433238,PR:000016693,http://purl.obolibrary.org/obo/PR_000016693,short transient receptor potential channel 1 +9.4438707,DRUGBANK:DB08865,http://purl.obolibrary.org/obo/DRUGBANK_DB08865,none +9.4438707,GO:0042757,http://purl.obolibrary.org/obo/GO_0042757,giant axon +9.4438707,MONDO:0007042,http://purl.obolibrary.org/obo/MONDO_0007042,Saethre-Chotzen syndrome +9.4438707,PR:000000679,http://purl.obolibrary.org/obo/PR_000000679,transient receptor potential cation channel TRPA +9.4438707,PR:000000699,http://purl.obolibrary.org/obo/PR_000000699,transient receptor potential cation channel TRPA1 +9.4438707,PR:000001945,http://purl.obolibrary.org/obo/PR_000001945,transferrin receptor protein 1 +9.4444179,DRUGBANK:DB03852,http://purl.obolibrary.org/obo/DRUGBANK_DB03852,none +9.4444179,MONDO:0006913,http://purl.obolibrary.org/obo/MONDO_0006913,pneumococcal meningitis +9.4444179,MONDO:0018385,http://purl.obolibrary.org/obo/MONDO_0018385,osteochondrosis of genetic origin +9.4444179,PR:000007221,http://purl.obolibrary.org/obo/PR_000007221,protein C-ets-1 +9.4449654,CHEBI:35741,http://purl.obolibrary.org/obo/CHEBI_35741,glycerolipid +9.4449654,MONDO:0005784,http://purl.obolibrary.org/obo/MONDO_0005784,hantavirus hemorrhagic fever with renal syndrome +9.4455132,MONDO:0000878,http://purl.obolibrary.org/obo/MONDO_0000878,cytomegalovirus retinitis +9.4455132,MONDO:0002415,http://purl.obolibrary.org/obo/MONDO_0002415,bone carcinoma +9.4460613,MONDO:0018310,http://purl.obolibrary.org/obo/MONDO_0018310,Langerhans cell histiocytosis +9.4460613,NCBITaxon:123365,http://purl.obolibrary.org/obo/NCBITaxon_123365,Neoteleostei +9.4460613,NCBITaxon:123366,http://purl.obolibrary.org/obo/NCBITaxon_123366,Eurypterygia +9.4460613,PR:000006148,http://purl.obolibrary.org/obo/PR_000006148,cytochrome P450 7A1 +9.4466097,GO:0046890,http://purl.obolibrary.org/obo/GO_0046890,regulation of lipid biosynthetic process +9.4466097,NCBITaxon:123367,http://purl.obolibrary.org/obo/NCBITaxon_123367,Ctenosquamata +9.4466097,UBERON:0008953,http://purl.obolibrary.org/obo/UBERON_0008953,lower lobe of left lung +9.4471584,MONDO:0000308,http://purl.obolibrary.org/obo/MONDO_0000308,primary systemic mycosis +9.4471584,PR:000000728,http://purl.obolibrary.org/obo/PR_000000728,voltage-gated potassium channel subunit KCNQ1 +9.4471584,PR:000003858,http://purl.obolibrary.org/obo/PR_000003858,aryl hydrocarbon receptor +9.4477074,DRUGBANK:DB00235,http://purl.obolibrary.org/obo/DRUGBANK_DB00235,none +9.4477074,PR:000036291,http://purl.obolibrary.org/obo/PR_000036291,"trypsin, signal peptide removed form" +9.4482567,CL:0000146,http://purl.obolibrary.org/obo/CL_0000146,simple columnar epithelial cell +9.4482567,GO:0008384,http://purl.obolibrary.org/obo/GO_0008384,IkappaB kinase activity +9.4482567,UBERON:0003053,http://purl.obolibrary.org/obo/UBERON_0003053,ventricular zone +9.4488063,DRUGBANK:DB06715,http://purl.obolibrary.org/obo/DRUGBANK_DB06715,none +9.4488063,MONDO:0005979,http://purl.obolibrary.org/obo/MONDO_0005979,thoracic outlet syndrome +9.4488063,NCBITaxon:123368,http://purl.obolibrary.org/obo/NCBITaxon_123368,Acanthomorphata +9.4488063,PR:000001549,http://purl.obolibrary.org/obo/PR_000001549,prostanoid receptor +9.4488063,PR:000007551,http://purl.obolibrary.org/obo/PR_000007551,filaggrin +9.4493562,CHEBI:35473,http://purl.obolibrary.org/obo/CHEBI_35473,tranquilizing drug +9.4493562,DRUGBANK:DB13038,http://purl.obolibrary.org/obo/DRUGBANK_DB13038,none +9.4493562,HP:0002121,http://purl.obolibrary.org/obo/HP_0002121,Generalized non-motor (absence) seizure +9.4493562,PR:P31368,http://purl.obolibrary.org/obo/PR_P31368,none +9.4493562,PR:Q9NBX4,http://purl.obolibrary.org/obo/PR_Q9NBX4,none +9.4493562,UBERON:0002282,http://purl.obolibrary.org/obo/UBERON_0002282,stria vascularis of cochlear duct +9.4499064,DRUGBANK:DB00820,http://purl.obolibrary.org/obo/DRUGBANK_DB00820,none +9.4499064,MONDO:0003050,http://purl.obolibrary.org/obo/MONDO_0003050,lung large cell carcinoma +9.4504569,CHEBI:65255,http://purl.obolibrary.org/obo/CHEBI_65255,food preservative +9.4504569,GO:0006906,http://purl.obolibrary.org/obo/GO_0006906,vesicle fusion +9.4504569,PR:000001677,http://purl.obolibrary.org/obo/PR_000001677,thyrotropin receptor +9.4510077,PR:000015415,http://purl.obolibrary.org/obo/PR_000015415,sclerostin +9.4510077,PR:000023528,http://purl.obolibrary.org/obo/PR_000023528,none +9.4515588,DRUGBANK:DB06732,http://purl.obolibrary.org/obo/DRUGBANK_DB06732,none +9.4515588,NCBITaxon:766764,http://purl.obolibrary.org/obo/NCBITaxon_766764,Debaryomycetaceae +9.4515588,PR:000016186,http://purl.obolibrary.org/obo/PR_000016186,transcription factor 7-like 2 +9.4515588,PR:O13034,http://purl.obolibrary.org/obo/PR_O13034,none +9.4515588,SO:0001021,http://purl.obolibrary.org/obo/SO_0001021,chromosome_breakpoint +9.4521103,CL:0011111,http://purl.obolibrary.org/obo/CL_0011111,gonadotropin releasing neuron +9.4521103,DRUGBANK:DB00643,http://purl.obolibrary.org/obo/DRUGBANK_DB00643,none +9.4521103,DRUGBANK:DB14927,http://purl.obolibrary.org/obo/DRUGBANK_DB14927,none +9.4521103,MONDO:0018661,http://purl.obolibrary.org/obo/MONDO_0018661,Zika virus infectious disease +9.4521103,NCBITaxon:123369,http://purl.obolibrary.org/obo/NCBITaxon_123369,Euacanthomorphacea +9.4521103,PR:A8IHN8,http://purl.obolibrary.org/obo/PR_A8IHN8,none +9.4521103,PR:P21784,http://purl.obolibrary.org/obo/PR_P21784,none +9.452662,GO:0005026,http://purl.obolibrary.org/obo/GO_0005026,"transforming growth factor beta receptor activity, type II" +9.452662,PR:000000005,http://purl.obolibrary.org/obo/PR_000000005,TGF-beta receptor type-2 +9.453214,CL:0011004,http://purl.obolibrary.org/obo/CL_0011004,lens fiber cell +9.453214,MONDO:0009994,http://purl.obolibrary.org/obo/MONDO_0009994,alveolar rhabdomyosarcoma +9.453214,PR:000003208,http://purl.obolibrary.org/obo/PR_000003208,conventional serine/threonine-protein phosphatase +9.4537663,GO:0072329,http://purl.obolibrary.org/obo/GO_0072329,monocarboxylic acid catabolic process +9.4537663,PR:P54000,http://purl.obolibrary.org/obo/PR_P54000,none +9.4537663,UBERON:0007416,http://purl.obolibrary.org/obo/UBERON_0007416,cerebellar peduncle +9.4537663,UBERON:0012128,http://purl.obolibrary.org/obo/UBERON_0012128,nose tip +9.454319,DRUGBANK:DB00790,http://purl.obolibrary.org/obo/DRUGBANK_DB00790,none +9.454319,MONDO:0000873,http://purl.obolibrary.org/obo/MONDO_0000873,lymphoblastic lymphoma +9.454319,NCBITaxon:1535325,http://purl.obolibrary.org/obo/NCBITaxon_1535325,Candida/Lodderomyces clade +9.454319,PR:000003469,http://purl.obolibrary.org/obo/PR_000003469,early growth response protein 2 +9.454319,PR:000014022,http://purl.obolibrary.org/obo/PR_000014022,receptor-interacting serine/threonine-protein kinase 1 +9.4548719,MONDO:0015364,http://purl.obolibrary.org/obo/MONDO_0015364,hereditary sensory and autonomic neuropathy +9.4554252,NCBITaxon:1535326,http://purl.obolibrary.org/obo/NCBITaxon_1535326,Candida +9.4554252,UBERON:0001528,http://purl.obolibrary.org/obo/UBERON_0001528,radio-ulnar joint +9.4559787,MONDO:0015322,http://purl.obolibrary.org/obo/MONDO_0015322,Pierre Robin syndrome associated with bone disease +9.4559787,PR:000015064,http://purl.obolibrary.org/obo/PR_000015064,"solute carrier family 2, facilitated glucose transporter member 2" +9.4559787,PR:000044648,http://purl.obolibrary.org/obo/PR_000044648,cyclic nucleotide-regulated channel protein +9.4565326,DRUGBANK:DB14525,http://purl.obolibrary.org/obo/DRUGBANK_DB14525,none +9.4570868,MONDO:0002158,http://purl.obolibrary.org/obo/MONDO_0002158,fallopian tube cancer +9.4570868,MONDO:0008599,http://purl.obolibrary.org/obo/MONDO_0008599,trigeminal neuralgia +9.4570868,MONDO:0008867,http://purl.obolibrary.org/obo/MONDO_0008867,biliary atresia +9.4570868,UBERON:0007196,http://purl.obolibrary.org/obo/UBERON_0007196,tracheobronchial tree +9.4576412,MONDO:0000118,http://purl.obolibrary.org/obo/MONDO_0000118,reticulate pigment disorder +9.4576412,UBERON:0003698,http://purl.obolibrary.org/obo/UBERON_0003698,subtalar joint +9.458196,DRUGBANK:DB02703,http://purl.obolibrary.org/obo/DRUGBANK_DB02703,none +9.458196,HP:0002615,http://purl.obolibrary.org/obo/HP_0002615,Hypotension +9.458196,NCBITaxon:5482,http://purl.obolibrary.org/obo/NCBITaxon_5482,none +9.458196,PR:000001880,http://purl.obolibrary.org/obo/PR_000001880,low affinity immunoglobulin epsilon Fc receptor +9.4593065,MONDO:0005904,http://purl.obolibrary.org/obo/MONDO_0005904,pericarditis +9.4593065,PR:000011374,http://purl.obolibrary.org/obo/PR_000011374,atrial natriuretic factor +9.4598622,NCBITaxon:1489872,http://purl.obolibrary.org/obo/NCBITaxon_1489872,Percomorphaceae +9.4604183,CL:0000863,http://purl.obolibrary.org/obo/CL_0000863,inflammatory macrophage +9.4604183,GO:0042637,http://purl.obolibrary.org/obo/GO_0042637,catagen +9.4609746,DRUGBANK:DB10648,http://purl.obolibrary.org/obo/DRUGBANK_DB10648,none +9.4609746,HP:0000864,http://purl.obolibrary.org/obo/HP_0000864,Abnormality of the hypothalamus-pituitary axis +9.4609746,PR:Q9LK40,http://purl.obolibrary.org/obo/PR_Q9LK40,none +9.4615312,CL:0002465,http://purl.obolibrary.org/obo/CL_0002465,CD11b-positive dendritic cell +9.4615312,HP:0011747,http://purl.obolibrary.org/obo/HP_0011747,Abnormality of the anterior pituitary +9.4615312,HP:0012503,http://purl.obolibrary.org/obo/HP_0012503,Abnormality of the pituitary gland +9.4620882,DRUGBANK:DB03258,http://purl.obolibrary.org/obo/DRUGBANK_DB03258,none +9.4626454,MONDO:0044704,http://purl.obolibrary.org/obo/MONDO_0044704,oropharynx squamous cell carcinoma +9.463203,GO:0004955,http://purl.obolibrary.org/obo/GO_0004955,prostaglandin receptor activity +9.463203,MONDO:0000369,http://purl.obolibrary.org/obo/MONDO_0000369,abdominal tuberculosis +9.463203,UBERON:0001837,http://purl.obolibrary.org/obo/UBERON_0001837,duct of salivary gland +9.4637609,GO:0033151,http://purl.obolibrary.org/obo/GO_0033151,V(D)J recombination +9.4637609,MONDO:0002889,http://purl.obolibrary.org/obo/MONDO_0002889,orbital cancer +9.4637609,PR:000001192,http://purl.obolibrary.org/obo/PR_000001192,beta-1 adrenergic receptor +9.4637609,PR:000012270,http://purl.obolibrary.org/obo/PR_000012270,pappalysin-1 +9.4643191,GO:0060290,http://purl.obolibrary.org/obo/GO_0060290,transdifferentiation +9.4643191,GO:1904949,http://purl.obolibrary.org/obo/GO_1904949,ATPase complex +9.4643191,MONDO:0043280,http://purl.obolibrary.org/obo/MONDO_0043280,Wallerian degeneration +9.4648776,PR:000016708,http://purl.obolibrary.org/obo/PR_000016708,hamartin +9.4648776,UBERON:4100000,http://purl.obolibrary.org/obo/UBERON_4100000,skeletal element projection +9.4654364,GO:0001661,http://purl.obolibrary.org/obo/GO_0001661,conditioned taste aversion +9.4654364,GO:0042701,http://purl.obolibrary.org/obo/GO_0042701,progesterone secretion +9.4659955,HP:0001273,http://purl.obolibrary.org/obo/HP_0001273,Abnormal corpus callosum morphology +9.4659955,MONDO:0017941,http://purl.obolibrary.org/obo/MONDO_0017941,chikungunya +9.466555,DRUGBANK:DB16340,http://purl.obolibrary.org/obo/DRUGBANK_DB16340,none +9.466555,HP:0100533,http://purl.obolibrary.org/obo/HP_0100533,Inflammatory abnormality of the eye +9.4671147,DRUGBANK:DB15997,http://purl.obolibrary.org/obo/DRUGBANK_DB15997,none +9.4671147,PR:000002035,http://purl.obolibrary.org/obo/PR_000002035,beta-type platelet-derived growth factor receptor +9.4676748,GO:0031589,http://purl.obolibrary.org/obo/GO_0031589,cell-substrate adhesion +9.4682352,DRUGBANK:DB11153,http://purl.obolibrary.org/obo/DRUGBANK_DB11153,none +9.4682352,GO:0042116,http://purl.obolibrary.org/obo/GO_0042116,macrophage activation +9.4682352,MONDO:0003766,http://purl.obolibrary.org/obo/MONDO_0003766,thalamic cancer +9.4682352,MONDO:0005989,http://purl.obolibrary.org/obo/MONDO_0005989,toxoplasmosis +9.4682352,PR:000003137,http://purl.obolibrary.org/obo/PR_000003137,furin +9.4682352,PR:P62161,http://purl.obolibrary.org/obo/PR_P62161,none +9.4682352,PR:P62204,http://purl.obolibrary.org/obo/PR_P62204,none +9.4693569,GO:0002260,http://purl.obolibrary.org/obo/GO_0002260,lymphocyte homeostasis +9.4693569,GO:0005019,http://purl.obolibrary.org/obo/GO_0005019,platelet-derived growth factor beta-receptor activity +9.4693569,MONDO:0001866,http://purl.obolibrary.org/obo/MONDO_0001866,bipolar I disorder +9.4693569,MONDO:0017307,http://purl.obolibrary.org/obo/MONDO_0017307,disorder of tyrosine metabolism +9.4699182,PR:000013159,http://purl.obolibrary.org/obo/PR_000013159,peroxisome proliferator-activated receptor gamma coactivator-related protein 1 +9.4704798,GO:0097642,http://purl.obolibrary.org/obo/GO_0097642,calcitonin family receptor activity +9.4704798,NCBITaxon:12104,http://purl.obolibrary.org/obo/NCBITaxon_12104,none +9.4704798,NCBITaxon:694014,http://purl.obolibrary.org/obo/NCBITaxon_694014,Avian coronavirus +9.4704798,PR:P06367,http://purl.obolibrary.org/obo/PR_P06367,none +9.4710418,DRUGBANK:DB14046,http://purl.obolibrary.org/obo/DRUGBANK_DB14046,none +9.4710418,GO:0004951,http://purl.obolibrary.org/obo/GO_0004951,cholecystokinin receptor activity +9.4710418,GO:0030216,http://purl.obolibrary.org/obo/GO_0030216,keratinocyte differentiation +9.4710418,MONDO:0001302,http://purl.obolibrary.org/obo/MONDO_0001302,hypertensive heart disease +9.4716041,MONDO:0019464,http://purl.obolibrary.org/obo/MONDO_0019464,heavy chain disease +9.4721666,MONDO:0008280,http://purl.obolibrary.org/obo/MONDO_0008280,Peutz-Jeghers syndrome +9.4721666,PR:000001921,http://purl.obolibrary.org/obo/PR_000001921,protein jagged-1 +9.4721666,PR:000008247,http://purl.obolibrary.org/obo/PR_000008247,"glutamate receptor ionotropic, NMDA 2B" +9.4721666,UBERON:0003346,http://purl.obolibrary.org/obo/UBERON_0003346,mucosa of rectum +9.4727295,MONDO:0010714,http://purl.obolibrary.org/obo/MONDO_0010714,Pelizaeus-Merzbacher disease +9.4727295,PR:000016880,http://purl.obolibrary.org/obo/PR_000016880,"5,6-dihydroxyindole-2-carboxylic acid oxidase" +9.4732928,UBERON:0000105,http://purl.obolibrary.org/obo/UBERON_0000105,life cycle stage +9.4738563,CL:0002086,http://purl.obolibrary.org/obo/CL_0002086,specialized cardiac myocyte +9.4738563,GO:0042596,http://purl.obolibrary.org/obo/GO_0042596,fear response +9.4738563,HP:0001367,http://purl.obolibrary.org/obo/HP_0001367,Abnormal joint morphology +9.4738563,MONDO:0006012,http://purl.obolibrary.org/obo/MONDO_0006012,viral pneumonia +9.4738563,PR:Q6NKN9,http://purl.obolibrary.org/obo/PR_Q6NKN9,none +9.4744202,CHEBI:33710,http://purl.obolibrary.org/obo/CHEBI_33710,alpha-amino-acid residue +9.4744202,DRUGBANK:DB11113,http://purl.obolibrary.org/obo/DRUGBANK_DB11113,none +9.4744202,DRUGBANK:DB13076,http://purl.obolibrary.org/obo/DRUGBANK_DB13076,none +9.4744202,GO:0008373,http://purl.obolibrary.org/obo/GO_0008373,sialyltransferase activity +9.4744202,GO:0008514,http://purl.obolibrary.org/obo/GO_0008514,organic anion transmembrane transporter activity +9.4744202,GO:0051249,http://purl.obolibrary.org/obo/GO_0051249,regulation of lymphocyte activation +9.4744202,MONDO:0000500,http://purl.obolibrary.org/obo/MONDO_0000500,tongue squamous cell carcinoma +9.4744202,MONDO:0013098,http://purl.obolibrary.org/obo/MONDO_0013098,noise induced hearing loss +9.4744202,PR:000010163,http://purl.obolibrary.org/obo/PR_000010163,mitogen-activated protein kinase 9 +9.4749843,HP:0002514,http://purl.obolibrary.org/obo/HP_0002514,Cerebral calcification +9.4749843,NCBITaxon:11655,http://purl.obolibrary.org/obo/NCBITaxon_11655,Feline lentivirus group +9.4749843,NCBITaxon:11673,http://purl.obolibrary.org/obo/NCBITaxon_11673,Feline immunodeficiency virus +9.4749843,PR:000006968,http://purl.obolibrary.org/obo/PR_000006968,protein argonaute-2 +9.4755488,DRUGBANK:DB00730,http://purl.obolibrary.org/obo/DRUGBANK_DB00730,none +9.4755488,PR:000017015,http://purl.obolibrary.org/obo/PR_000017015,E3 ubiquitin-protein ligase UBR4 +9.4755488,PR:000026013,http://purl.obolibrary.org/obo/PR_000026013,insulin-like protein +9.4761136,MONDO:0018948,http://purl.obolibrary.org/obo/MONDO_0018948,multiminicore myopathy +9.4766788,DRUGBANK:DB00955,http://purl.obolibrary.org/obo/DRUGBANK_DB00955,none +9.4766788,MONDO:0009290,http://purl.obolibrary.org/obo/MONDO_0009290,glycogen storage disease II +9.4766788,MONDO:0016197,http://purl.obolibrary.org/obo/MONDO_0016197,qualitative or quantitative defects of selenoprotein N1 +9.4766788,PR:000004879,http://purl.obolibrary.org/obo/PR_000004879,C1q-related factor +9.4766788,PR:000027825,http://purl.obolibrary.org/obo/PR_000027825,twist-related protein +9.4772442,DRUGBANK:DB04868,http://purl.obolibrary.org/obo/DRUGBANK_DB04868,none +9.4772442,DRUGBANK:DB11306,http://purl.obolibrary.org/obo/DRUGBANK_DB11306,none +9.4772442,DRUGBANK:DB15511,http://purl.obolibrary.org/obo/DRUGBANK_DB15511,none +9.4772442,GO:0031513,http://purl.obolibrary.org/obo/GO_0031513,none +9.4772442,MONDO:0001236,http://purl.obolibrary.org/obo/MONDO_0001236,appendiceal neoplasm +9.4772442,MONDO:0008779,http://purl.obolibrary.org/obo/MONDO_0008779,arthrogryposis +9.47781,PR:Q42521,http://purl.obolibrary.org/obo/PR_Q42521,none +9.47781,UBERON:0005343,http://purl.obolibrary.org/obo/UBERON_0005343,cortical plate +9.4783761,DRUGBANK:DB01095,http://purl.obolibrary.org/obo/DRUGBANK_DB01095,none +9.4783761,HP:0100545,http://purl.obolibrary.org/obo/HP_0100545,Arterial stenosis +9.4783761,UBERON:0006937,http://purl.obolibrary.org/obo/UBERON_0006937,inner ear epithelium +9.4789425,GO:0034776,http://purl.obolibrary.org/obo/GO_0034776,response to histamine +9.4789425,MONDO:0015495,http://purl.obolibrary.org/obo/MONDO_0015495,otomandibular dysplasia associated with monogenic syndromes +9.4795092,MONDO:0100172,http://purl.obolibrary.org/obo/MONDO_0100172,"intellectual disability, autosomal dominant" +9.4795092,PR:000004902,http://purl.obolibrary.org/obo/PR_000004902,complement C4-B +9.4800763,DRUGBANK:DB03854,http://purl.obolibrary.org/obo/DRUGBANK_DB03854,none +9.4800763,GO:0051302,http://purl.obolibrary.org/obo/GO_0051302,regulation of cell division +9.4800763,GO:0090399,http://purl.obolibrary.org/obo/GO_0090399,replicative senescence +9.4806437,DRUGBANK:DB13669,http://purl.obolibrary.org/obo/DRUGBANK_DB13669,none +9.4806437,HP:0011004,http://purl.obolibrary.org/obo/HP_0011004,Abnormal systemic arterial morphology +9.4806437,MONDO:0001039,http://purl.obolibrary.org/obo/MONDO_0001039,tonsillitis +9.4806437,NCBITaxon:1821749,http://purl.obolibrary.org/obo/NCBITaxon_1821749,none +9.4806437,UBERON:0002661,http://purl.obolibrary.org/obo/UBERON_0002661,superior frontal gyrus +9.4817794,DRUGBANK:DB00147,http://purl.obolibrary.org/obo/DRUGBANK_DB00147,none +9.4817794,GO:0071873,http://purl.obolibrary.org/obo/GO_0071873,response to norepinephrine +9.4823477,PR:000012588,http://purl.obolibrary.org/obo/PR_000012588,profilin-4 +9.4829164,CHEBI:15379,http://purl.obolibrary.org/obo/CHEBI_15379,dioxygen +9.4829164,MONDO:0020247,http://purl.obolibrary.org/obo/MONDO_0020247,congenital vitreoretinal dysplasia +9.4829164,UBERON:0002444,http://purl.obolibrary.org/obo/UBERON_0002444,lens fiber +9.4834854,GO:0004940,http://purl.obolibrary.org/obo/GO_0004940,beta1-adrenergic receptor activity +9.4834854,SO:0000164,http://purl.obolibrary.org/obo/SO_0000164,three_prime_cis_splice_site +9.4846243,HP:0000763,http://purl.obolibrary.org/obo/HP_0000763,Sensory neuropathy +9.4846243,MONDO:0006029,http://purl.obolibrary.org/obo/MONDO_0006029,cecum carcinoma +9.4846243,UBERON:0002074,http://purl.obolibrary.org/obo/UBERON_0002074,hair shaft +9.4851943,CL:0002072,http://purl.obolibrary.org/obo/CL_0002072,nodal myocyte +9.4851943,MONDO:0004977,http://purl.obolibrary.org/obo/MONDO_0004977,angioimmunoblastic T-cell lymphoma +9.4857646,MONDO:0006742,http://purl.obolibrary.org/obo/MONDO_0006742,endemic goiter +9.4863352,DRUGBANK:DB14744,http://purl.obolibrary.org/obo/DRUGBANK_DB14744,none +9.4863352,HP:0011146,http://purl.obolibrary.org/obo/HP_0011146,Dialeptic seizure +9.4863352,MONDO:0002397,http://purl.obolibrary.org/obo/MONDO_0002397,liver sarcoma +9.4863352,MONDO:0005843,http://purl.obolibrary.org/obo/MONDO_0005843,mediastinal cancer +9.4863352,MONDO:0007452,http://purl.obolibrary.org/obo/MONDO_0007452,maturity-onset diabetes of the young type 1 +9.4869061,CL:1000500,http://purl.obolibrary.org/obo/CL_1000500,kidney interstitial cell +9.4869061,MONDO:0001324,http://purl.obolibrary.org/obo/MONDO_0001324,hyperandrogenism +9.4874774,GO:0016324,http://purl.obolibrary.org/obo/GO_0016324,apical plasma membrane +9.4874774,HP:0011362,http://purl.obolibrary.org/obo/HP_0011362,Abnormal hair quantity +9.4874774,PR:000012585,http://purl.obolibrary.org/obo/PR_000012585,profilin-1 +9.488049,GO:0010001,http://purl.obolibrary.org/obo/GO_0010001,glial cell differentiation +9.488049,PR:000003237,http://purl.obolibrary.org/obo/PR_000003237,14-3-3 protein +9.488049,PR:000004182,http://purl.obolibrary.org/obo/PR_000004182,aquaporin-2 +9.488049,PR:000006098,http://purl.obolibrary.org/obo/PR_000006098,none +9.4886209,GO:0006829,http://purl.obolibrary.org/obo/GO_0006829,zinc ion transport +9.4886209,PR:000000047,http://purl.obolibrary.org/obo/PR_000000047,TGF-beta receptor type-1 +9.4886209,PR:000013413,http://purl.obolibrary.org/obo/PR_000013413,protein patched homolog 2 +9.4886209,UBERON:0002171,http://purl.obolibrary.org/obo/UBERON_0002171,lower lobe of right lung +9.4891932,DRUGBANK:DB00246,http://purl.obolibrary.org/obo/DRUGBANK_DB00246,none +9.4891932,DRUGBANK:DB01241,http://purl.obolibrary.org/obo/DRUGBANK_DB01241,none +9.4891932,GO:0007632,http://purl.obolibrary.org/obo/GO_0007632,visual behavior +9.4897657,DRUGBANK:DB00036,http://purl.obolibrary.org/obo/DRUGBANK_DB00036,none +9.4897657,GO:0015748,http://purl.obolibrary.org/obo/GO_0015748,organophosphate ester transport +9.4903386,MONDO:0001956,http://purl.obolibrary.org/obo/MONDO_0001956,capillary leak syndrome +9.4903386,MONDO:0017824,http://purl.obolibrary.org/obo/MONDO_0017824,familial isolated pituitary adenoma +9.4909119,PR:000001753,http://purl.obolibrary.org/obo/PR_000001753,transcription factor NF-kappa-B subunit +9.4914854,GO:0004351,http://purl.obolibrary.org/obo/GO_0004351,glutamate decarboxylase activity +9.4914854,PR:000028989,http://purl.obolibrary.org/obo/PR_000028989,none +9.4920593,CHEBI:17087,http://purl.obolibrary.org/obo/CHEBI_17087,ketone +9.4920593,DRUGBANK:DB01987,http://purl.obolibrary.org/obo/DRUGBANK_DB01987,none +9.4920593,GO:0032543,http://purl.obolibrary.org/obo/GO_0032543,mitochondrial translation +9.4920593,MONDO:0017623,http://purl.obolibrary.org/obo/MONDO_0017623,PTEN hamartoma tumor syndrome +9.4920593,PR:000003008,http://purl.obolibrary.org/obo/PR_000003008,moesin +9.4932081,DRUGBANK:DB05812,http://purl.obolibrary.org/obo/DRUGBANK_DB05812,none +9.4932081,MONDO:0013517,http://purl.obolibrary.org/obo/MONDO_0013517,beta-thalassemia HBB/LCRB +9.4932081,PR:000000007,http://purl.obolibrary.org/obo/PR_000000007,TGF-beta superfamily receptor type-2 with activin receptor domain +9.4932081,PR:P25818,http://purl.obolibrary.org/obo/PR_P25818,none +9.493783,MONDO:0005466,http://purl.obolibrary.org/obo/MONDO_0005466,hypersomnia +9.493783,MONDO:0018301,http://purl.obolibrary.org/obo/MONDO_0018301,interstitial cystitis +9.493783,PR:000001964,http://purl.obolibrary.org/obo/PR_000001964,tumor necrosis factor receptor superfamily member 8 +9.4943582,HP:0010766,http://purl.obolibrary.org/obo/HP_0010766,Ectopic calcification +9.4943582,PR:000001225,http://purl.obolibrary.org/obo/PR_000001225,growth hormone secretagogue receptor +9.4949337,CL:1001568,http://purl.obolibrary.org/obo/CL_1001568,pulmonary artery endothelial cell +9.4949337,GO:0000795,http://purl.obolibrary.org/obo/GO_0000795,synaptonemal complex +9.4949337,GO:0099086,http://purl.obolibrary.org/obo/GO_0099086,synaptonemal structure +9.4949337,MONDO:0017943,http://purl.obolibrary.org/obo/MONDO_0017943,autoerythrocyte sensitization syndrome +9.4949337,MONDO:0045052,http://purl.obolibrary.org/obo/MONDO_0045052,benign osteogenic neoplasm +9.4955096,PR:P46367,http://purl.obolibrary.org/obo/PR_P46367,none +9.4955096,UBERON:0001138,http://purl.obolibrary.org/obo/UBERON_0001138,superior mesenteric vein +9.4955096,UBERON:0009870,http://purl.obolibrary.org/obo/UBERON_0009870,zone of stomach +9.4960858,PR:000007470,http://purl.obolibrary.org/obo/PR_000007470,vacuolar protein sorting-associated protein 51 +9.4960858,UBERON:0003825,http://purl.obolibrary.org/obo/UBERON_0003825,nerve of abdominal segment +9.4966623,GO:0060073,http://purl.obolibrary.org/obo/GO_0060073,micturition +9.4966623,MONDO:0004860,http://purl.obolibrary.org/obo/MONDO_0004860,vitreous disease +9.4972392,HP:0033259,http://purl.obolibrary.org/obo/HP_0033259,Non-motor seizure +9.4972392,PR:000001460,http://purl.obolibrary.org/obo/PR_000001460,glycophorin-A +9.4978164,DRUGBANK:DB00605,http://purl.obolibrary.org/obo/DRUGBANK_DB00605,none +9.4978164,MONDO:0016248,http://purl.obolibrary.org/obo/MONDO_0016248,familial ovarian cancer +9.4978164,MONDO:0020146,http://purl.obolibrary.org/obo/MONDO_0020146,major induction processes eye anomaly +9.4978164,UBERON:0003444,http://purl.obolibrary.org/obo/UBERON_0003444,pelvis nerve +9.4983939,MONDO:0016535,http://purl.obolibrary.org/obo/MONDO_0016535,hypohidrotic ectodermal dysplasia +9.4983939,MONDO:0021046,http://purl.obolibrary.org/obo/MONDO_0021046,breast fibroepithelial neoplasm +9.4983939,PR:Q9SU63,http://purl.obolibrary.org/obo/PR_Q9SU63,none +9.4989718,DRUGBANK:DB11340,http://purl.obolibrary.org/obo/DRUGBANK_DB11340,none +9.4989718,GO:0050667,http://purl.obolibrary.org/obo/GO_0050667,homocysteine metabolic process +9.4989718,UBERON:0003723,http://purl.obolibrary.org/obo/UBERON_0003723,vestibular nerve +9.49955,HP:0002148,http://purl.obolibrary.org/obo/HP_0002148,Hypophosphatemia +9.49955,PR:000007971,http://purl.obolibrary.org/obo/PR_000007971,somatoliberin +9.49955,PR:000017443,http://purl.obolibrary.org/obo/PR_000017443,protein Wnt-3a +9.49955,UBERON:0007808,http://purl.obolibrary.org/obo/UBERON_0007808,adipose tissue of abdominal region +9.5001285,MONDO:0005393,http://purl.obolibrary.org/obo/MONDO_0005393,gout +9.5001285,MONDO:0015864,http://purl.obolibrary.org/obo/MONDO_0015864,mixed germ cell tumor +9.5007074,CHEBI:51374,http://purl.obolibrary.org/obo/CHEBI_51374,GABA agent +9.5012866,DRUGBANK:DB00410,http://purl.obolibrary.org/obo/DRUGBANK_DB00410,none +9.5012866,GO:0016521,http://purl.obolibrary.org/obo/GO_0016521,pituitary adenylate cyclase activating polypeptide activity +9.5012866,UBERON:0001745,http://purl.obolibrary.org/obo/UBERON_0001745,secondary nodular lymphoid tissue +9.5018661,GO:0004505,http://purl.obolibrary.org/obo/GO_0004505,phenylalanine 4-monooxygenase activity +9.5018661,MONDO:0001645,http://purl.obolibrary.org/obo/MONDO_0001645,crescentic glomerulonephritis +9.5018661,NCBITaxon:11974,http://purl.obolibrary.org/obo/NCBITaxon_11974,Caliciviridae +9.502446,DRUGBANK:DB10623,http://purl.obolibrary.org/obo/DRUGBANK_DB10623,none +9.502446,GO:0031256,http://purl.obolibrary.org/obo/GO_0031256,leading edge membrane +9.502446,MONDO:0024625,http://purl.obolibrary.org/obo/MONDO_0024625,disorder of lacrimal gland +9.502446,PR:000012769,http://purl.obolibrary.org/obo/PR_000012769,polycystin-1 +9.502446,PR:000016057,http://purl.obolibrary.org/obo/PR_000016057,TAR DNA-binding protein 43 +9.502446,UBERON:0002532,http://purl.obolibrary.org/obo/UBERON_0002532,epiblast (generic) +9.5030262,NCBITaxon:1868215,http://purl.obolibrary.org/obo/NCBITaxon_1868215,Orthopneumovirus +9.5030262,PR:000001288,http://purl.obolibrary.org/obo/PR_000001288,B-cell receptor CD22 +9.5030262,UBERON:0008324,http://purl.obolibrary.org/obo/UBERON_0008324,erectile tissue +9.5036068,GO:0006275,http://purl.obolibrary.org/obo/GO_0006275,regulation of DNA replication +9.5036068,NCBITaxon:10639,http://purl.obolibrary.org/obo/NCBITaxon_10639,none +9.5041877,HP:0007513,http://purl.obolibrary.org/obo/HP_0007513,Generalized hypopigmentation +9.5041877,PR:000001935,http://purl.obolibrary.org/obo/PR_000001935,syndecan-1 +9.5041877,PR:000004918,http://purl.obolibrary.org/obo/PR_000004918,vertebrate-type carbonic anhydrase 2 +9.5041877,PR:000012621,http://purl.obolibrary.org/obo/PR_000012621,progesterone receptor +9.5047689,DRUGBANK:DB00350,http://purl.obolibrary.org/obo/DRUGBANK_DB00350,none +9.5047689,MONDO:0002355,http://purl.obolibrary.org/obo/MONDO_0002355,glottis carcinoma +9.5047689,UBERON:0006094,http://purl.obolibrary.org/obo/UBERON_0006094,superior parietal cortex +9.5053505,MONDO:0008698,http://purl.obolibrary.org/obo/MONDO_0008698,achalasia +9.5053505,UBERON:0001416,http://purl.obolibrary.org/obo/UBERON_0001416,skin of abdomen +9.5053505,UBERON:0013682,http://purl.obolibrary.org/obo/UBERON_0013682,peripheral region of retina +9.5059324,GO:0072678,http://purl.obolibrary.org/obo/GO_0072678,T cell migration +9.5059324,MONDO:0006956,http://purl.obolibrary.org/obo/MONDO_0006956,Rickettsiosis +9.5059324,PR:000016388,http://purl.obolibrary.org/obo/PR_000016388,Delta(14)-sterol reductase TM7SF2 +9.5065146,PR:000001635,http://purl.obolibrary.org/obo/PR_000001635,oxytocin receptor +9.5065146,UBERON:0008820,http://purl.obolibrary.org/obo/UBERON_0008820,anterior mediastinum +9.5070972,DRUGBANK:DB05258,http://purl.obolibrary.org/obo/DRUGBANK_DB05258,none +9.5076801,MONDO:0001882,http://purl.obolibrary.org/obo/MONDO_0001882,bacteriuria +9.5082634,DRUGBANK:DB00280,http://purl.obolibrary.org/obo/DRUGBANK_DB00280,none +9.5082634,NCBITaxon:10993,http://purl.obolibrary.org/obo/NCBITaxon_10993,Birnaviridae +9.508847,DRUGBANK:DB14272,http://purl.obolibrary.org/obo/DRUGBANK_DB14272,none +9.508847,GO:0001616,http://purl.obolibrary.org/obo/GO_0001616,growth hormone secretagogue receptor activity +9.5094309,DRUGBANK:DB00604,http://purl.obolibrary.org/obo/DRUGBANK_DB00604,none +9.5100152,GO:0042439,http://purl.obolibrary.org/obo/GO_0042439,ethanolamine-containing compound metabolic process +9.5100152,MONDO:0000650,http://purl.obolibrary.org/obo/MONDO_0000650,peritoneal benign neoplasm +9.5100152,PR:000004571,http://purl.obolibrary.org/obo/PR_000004571,none +9.5105998,CHEBI:35530,http://purl.obolibrary.org/obo/CHEBI_35530,beta-adrenergic antagonist +9.5105998,GO:0098930,http://purl.obolibrary.org/obo/GO_0098930,axonal transport +9.5105998,MONDO:0006512,http://purl.obolibrary.org/obo/MONDO_0006512,estrogen-receptor positive breast cancer +9.5105998,PR:000012619,http://purl.obolibrary.org/obo/PR_000012619,glycerol-3-phosphate phosphatase +9.5105998,UBERON:0003532,http://purl.obolibrary.org/obo/UBERON_0003532,hindlimb skin +9.5111848,MONDO:0004545,http://purl.obolibrary.org/obo/MONDO_0004545,adult malignant schwannoma +9.5111848,UBERON:0011144,http://purl.obolibrary.org/obo/UBERON_0011144,adductor muscle of hip +9.5117701,GO:0006023,http://purl.obolibrary.org/obo/GO_0006023,aminoglycan biosynthetic process +9.5117701,MONDO:0015922,http://purl.obolibrary.org/obo/MONDO_0015922,channelopathy with epilepsy +9.5123557,GO:0051180,http://purl.obolibrary.org/obo/GO_0051180,vitamin transport +9.5123557,HP:0040194,http://purl.obolibrary.org/obo/HP_0040194,Increased head circumference +9.5123557,MONDO:0004960,http://purl.obolibrary.org/obo/MONDO_0004960,monoclonal gammopathy +9.5123557,PR:000027499,http://purl.obolibrary.org/obo/PR_000027499,none +9.5123557,UBERON:0005902,http://purl.obolibrary.org/obo/UBERON_0005902,occipital region +9.5129417,PR:000012548,http://purl.obolibrary.org/obo/PR_000012548,period circadian protein homolog 2 +9.5129417,PR:000015794,http://purl.obolibrary.org/obo/PR_000015794,syntaxin-2 +9.5129417,UBERON:0002386,http://purl.obolibrary.org/obo/UBERON_0002386,forelimb zeugopod +9.5129417,UBERON:0035763,http://purl.obolibrary.org/obo/UBERON_0035763,cavity of cardiac chamber +9.5135281,CL:1001318,http://purl.obolibrary.org/obo/CL_1001318,renal interstitial pericyte +9.5135281,DRUGBANK:DB01177,http://purl.obolibrary.org/obo/DRUGBANK_DB01177,none +9.5135281,MONDO:0005098,http://purl.obolibrary.org/obo/MONDO_0005098,stroke disorder +9.5141148,GO:0000045,http://purl.obolibrary.org/obo/GO_0000045,autophagosome assembly +9.5141148,GO:1905037,http://purl.obolibrary.org/obo/GO_1905037,autophagosome organization +9.5141148,MONDO:0002353,http://purl.obolibrary.org/obo/MONDO_0002353,glottis neoplasm +9.5141148,MONDO:0006183,http://purl.obolibrary.org/obo/MONDO_0006183,disseminated peritoneal leiomyomatosis +9.5141148,PR:P20228,http://purl.obolibrary.org/obo/PR_P20228,none +9.5141148,UBERON:0002808,http://purl.obolibrary.org/obo/UBERON_0002808,left temporal lobe +9.5141148,UBERON:0005154,http://purl.obolibrary.org/obo/UBERON_0005154,epithelial cord +9.5147018,DRUGBANK:DB13251,http://purl.obolibrary.org/obo/DRUGBANK_DB13251,none +9.5152892,DRUGBANK:DB10652,http://purl.obolibrary.org/obo/DRUGBANK_DB10652,none +9.5152892,GO:0009062,http://purl.obolibrary.org/obo/GO_0009062,fatty acid catabolic process +9.5158769,MONDO:0018055,http://purl.obolibrary.org/obo/MONDO_0018055,pediatric hepatocellular carcinoma +9.5158769,UBERON:0015233,http://purl.obolibrary.org/obo/UBERON_0015233,nucleus of dorsal thalamus +9.5164649,PR:000002194,http://purl.obolibrary.org/obo/PR_000002194,apoptotic protease-activating factor 1 +9.5170533,GO:0006541,http://purl.obolibrary.org/obo/GO_0006541,glutamine metabolic process +9.5170533,GO:0022407,http://purl.obolibrary.org/obo/GO_0022407,regulation of cell-cell adhesion +9.5170533,PR:000013661,http://purl.obolibrary.org/obo/PR_000013661,Ras-related C3 botulinum toxin substrate 2 +9.5176421,HP:0001159,http://purl.obolibrary.org/obo/HP_0001159,Syndactyly +9.5176421,MONDO:0000774,http://purl.obolibrary.org/obo/MONDO_0000774,autoimmune neuropathy +9.5176421,MONDO:0020196,http://purl.obolibrary.org/obo/MONDO_0020196,anomaly of the secretory and excretory apparatus of the lacrimal system +9.5176421,MONDO:0020197,http://purl.obolibrary.org/obo/MONDO_0020197,EEC syndrome and related syndrome +9.5182312,PR:000004555,http://purl.obolibrary.org/obo/PR_000004555,none +9.5182312,UBERON:0001915,http://purl.obolibrary.org/obo/UBERON_0001915,endothelium of capillary +9.5188207,GO:0097433,http://purl.obolibrary.org/obo/GO_0097433,dense body +9.5188207,MONDO:0019453,http://purl.obolibrary.org/obo/MONDO_0019453,refractory cytopenia with multilineage dysplasia +9.5188207,NCBITaxon:694013,http://purl.obolibrary.org/obo/NCBITaxon_694013,Gammacoronavirus +9.5188207,PR:000031575,http://purl.obolibrary.org/obo/PR_000031575,peroxiredoxin-like 2A +9.5188207,PR:P40970,http://purl.obolibrary.org/obo/PR_P40970,none +9.5194104,HP:0000256,http://purl.obolibrary.org/obo/HP_0000256,Macrocephaly +9.5194104,PR:000011001,http://purl.obolibrary.org/obo/PR_000011001,arylamine N-acetyltransferase 2 +9.5194104,PR:000012737,http://purl.obolibrary.org/obo/PR_000012737,"serine/threonine-protein kinase PINK1, mitochondrial" +9.5200006,MONDO:0004965,http://purl.obolibrary.org/obo/MONDO_0004965,acinar cell carcinoma +9.5200006,UBERON:0001536,http://purl.obolibrary.org/obo/UBERON_0001536,left common carotid artery plus branches +9.5205911,MONDO:0001926,http://purl.obolibrary.org/obo/MONDO_0001926,ureteral disease +9.5205911,MONDO:0020577,http://purl.obolibrary.org/obo/MONDO_0020577,childhood gonadal germ cell tumor +9.5205911,UBERON:0019258,http://purl.obolibrary.org/obo/UBERON_0019258,white matter of hindbrain +9.5211819,CL:0000222,http://purl.obolibrary.org/obo/CL_0000222,mesodermal cell +9.5211819,PR:000016875,http://purl.obolibrary.org/obo/PR_000016875,thymidine phosphorylase +9.5217731,NCBITaxon:2509487,http://purl.obolibrary.org/obo/NCBITaxon_2509487,Igacovirus +9.5217731,UBERON:0006907,http://purl.obolibrary.org/obo/UBERON_0006907,slow muscle tissue +9.5223647,DRUGBANK:DB02452,http://purl.obolibrary.org/obo/DRUGBANK_DB02452,none +9.5223647,GO:0070003,http://purl.obolibrary.org/obo/GO_0070003,threonine-type peptidase activity +9.5223647,PR:000005889,http://purl.obolibrary.org/obo/PR_000005889,dihydropyrimidinase-related protein 1 +9.5223647,PR:000012286,http://purl.obolibrary.org/obo/PR_000012286,parkinson disease protein 7 +9.5229566,PR:000002111,http://purl.obolibrary.org/obo/PR_000002111,tyrosine-protein kinase ITK/TSK +9.5229566,PR:000015272,http://purl.obolibrary.org/obo/PR_000015272,structural maintenance of chromosomes protein 3 +9.5229566,SO:0001819,http://purl.obolibrary.org/obo/SO_0001819,synonymous_variant +9.5235488,GO:0070231,http://purl.obolibrary.org/obo/GO_0070231,T cell apoptotic process +9.5235488,MONDO:0003758,http://purl.obolibrary.org/obo/MONDO_0003758,childhood testicular germ cell tumor +9.5235488,MONDO:0037250,http://purl.obolibrary.org/obo/MONDO_0037250,childhood testicular neoplasm +9.5235488,PR:Q9PTH3,http://purl.obolibrary.org/obo/PR_Q9PTH3,none +9.5235488,UBERON:0001685,http://purl.obolibrary.org/obo/UBERON_0001685,hyoid bone +9.5235488,UBERON:0004537,http://purl.obolibrary.org/obo/UBERON_0004537,blood vasculature +9.5241414,DRUGBANK:DB00654,http://purl.obolibrary.org/obo/DRUGBANK_DB00654,none +9.5241414,DRUGBANK:DB12519,http://purl.obolibrary.org/obo/DRUGBANK_DB12519,none +9.5241414,NCBITaxon:133551,http://purl.obolibrary.org/obo/NCBITaxon_133551,Eleutherozoa +9.5241414,NCBITaxon:7586,http://purl.obolibrary.org/obo/NCBITaxon_7586,Echinodermata +9.5247343,GO:0036374,http://purl.obolibrary.org/obo/GO_0036374,glutathione hydrolase activity +9.5247343,SO:0001017,http://purl.obolibrary.org/obo/SO_0001017,silent_mutation +9.5253276,DRUGBANK:DB10578,http://purl.obolibrary.org/obo/DRUGBANK_DB10578,none +9.5253276,DRUGBANK:DB11077,http://purl.obolibrary.org/obo/DRUGBANK_DB11077,none +9.5253276,MONDO:0019723,http://purl.obolibrary.org/obo/MONDO_0019723,disease of glomerular basement membrane +9.5253276,UBERON:0012424,http://purl.obolibrary.org/obo/UBERON_0012424,brush border layer +9.5259213,DRUGBANK:DB09112,http://purl.obolibrary.org/obo/DRUGBANK_DB09112,none +9.5259213,UBERON:0012427,http://purl.obolibrary.org/obo/UBERON_0012427,intestinal brush border layer +9.5265153,DRUGBANK:DB13044,http://purl.obolibrary.org/obo/DRUGBANK_DB13044,none +9.5265153,GO:0043616,http://purl.obolibrary.org/obo/GO_0043616,keratinocyte proliferation +9.5265153,UBERON:0004135,http://purl.obolibrary.org/obo/UBERON_0004135,distal tubule +9.5271096,DRUGBANK:DB00656,http://purl.obolibrary.org/obo/DRUGBANK_DB00656,none +9.5271096,HP:0000842,http://purl.obolibrary.org/obo/HP_0000842,Hyperinsulinemia +9.5271096,HP:0003117,http://purl.obolibrary.org/obo/HP_0003117,Abnormal circulating hormone concentration +9.5271096,HP:0040214,http://purl.obolibrary.org/obo/HP_0040214,Abnormal insulin level +9.5271096,HP:0040215,http://purl.obolibrary.org/obo/HP_0040215,Abnormal circulating insulin level +9.5271096,MONDO:0018997,http://purl.obolibrary.org/obo/MONDO_0018997,Noonan syndrome +9.5271096,NCBITaxon:7624,http://purl.obolibrary.org/obo/NCBITaxon_7624,Echinozoa +9.5277043,DRUGBANK:DB00364,http://purl.obolibrary.org/obo/DRUGBANK_DB00364,none +9.5277043,GO:0042979,http://purl.obolibrary.org/obo/GO_0042979,ornithine decarboxylase regulator activity +9.5277043,GO:0098771,http://purl.obolibrary.org/obo/GO_0098771,inorganic ion homeostasis +9.5277043,MONDO:0100240,http://purl.obolibrary.org/obo/MONDO_0100240,inherited thrombophilia +9.5277043,PR:000001116,http://purl.obolibrary.org/obo/PR_000001116,alpha-2 adrenergic receptor +9.5282994,DRUGBANK:DB01700,http://purl.obolibrary.org/obo/DRUGBANK_DB01700,none +9.5282994,DRUGBANK:DB10662,http://purl.obolibrary.org/obo/DRUGBANK_DB10662,none +9.5282994,GO:1990774,http://purl.obolibrary.org/obo/GO_1990774,none +9.5282994,MONDO:0004596,http://purl.obolibrary.org/obo/MONDO_0004596,cor pulmonale +9.5282994,NCBITaxon:11033,http://purl.obolibrary.org/obo/NCBITaxon_11033,none +9.5282994,UBERON:0003655,http://purl.obolibrary.org/obo/UBERON_0003655,molar tooth +9.5288948,DRUGBANK:DB01147,http://purl.obolibrary.org/obo/DRUGBANK_DB01147,none +9.5288948,MONDO:0019690,http://purl.obolibrary.org/obo/MONDO_0019690,filamin-related bone disorder +9.5288948,NCBITaxon:7625,http://purl.obolibrary.org/obo/NCBITaxon_7625,Echinoidea +9.5294906,MONDO:0001340,http://purl.obolibrary.org/obo/MONDO_0001340,heart cancer +9.5294906,MONDO:0006249,http://purl.obolibrary.org/obo/MONDO_0006249,hyperplastic polyp +9.5294906,MONDO:0009808,http://purl.obolibrary.org/obo/MONDO_0009808,osteoid osteoma +9.5294906,MONDO:0016295,http://purl.obolibrary.org/obo/MONDO_0016295,neuronal ceroid lipofuscinosis +9.5294906,PR:000006540,http://purl.obolibrary.org/obo/PR_000006540,dentin matrix acidic phosphoprotein 1 +9.5300867,DRUGBANK:DB02624,http://purl.obolibrary.org/obo/DRUGBANK_DB02624,none +9.5300867,NCBITaxon:7638,http://purl.obolibrary.org/obo/NCBITaxon_7638,none +9.5300867,NCBITaxon:7674,http://purl.obolibrary.org/obo/NCBITaxon_7674,none +9.5306832,GO:0035106,http://purl.obolibrary.org/obo/GO_0035106,operant conditioning +9.5306832,PR:P29381,http://purl.obolibrary.org/obo/PR_P29381,none +9.53128,DRUGBANK:DB01407,http://purl.obolibrary.org/obo/DRUGBANK_DB01407,none +9.53128,UBERON:0001579,http://purl.obolibrary.org/obo/UBERON_0001579,olfactory nerve +9.5318772,DRUGBANK:DB01217,http://purl.obolibrary.org/obo/DRUGBANK_DB01217,none +9.5318772,GO:0015807,http://purl.obolibrary.org/obo/GO_0015807,L-amino acid transport +9.5318772,MONDO:0020248,http://purl.obolibrary.org/obo/MONDO_0020248,vitreoretinal degeneration +9.5324748,DRUGBANK:DB00153,http://purl.obolibrary.org/obo/DRUGBANK_DB00153,none +9.5324748,DRUGBANK:DB13372,http://purl.obolibrary.org/obo/DRUGBANK_DB13372,none +9.5324748,GO:0002224,http://purl.obolibrary.org/obo/GO_0002224,toll-like receptor signaling pathway +9.5324748,PR:000003652,http://purl.obolibrary.org/obo/PR_000003652,acrosin +9.5330727,GO:0004736,http://purl.obolibrary.org/obo/GO_0004736,pyruvate carboxylase activity +9.5330727,MONDO:0021111,http://purl.obolibrary.org/obo/MONDO_0021111,ureter neoplasm +9.5330727,PR:000001111,http://purl.obolibrary.org/obo/PR_000001111,G-protein coupled estrogen receptor 1 +9.5330727,PR:000049993,http://purl.obolibrary.org/obo/PR_000049993,G-protein coupled estrogen receptor +9.5336709,GO:0048736,http://purl.obolibrary.org/obo/GO_0048736,appendage development +9.5336709,MONDO:0002883,http://purl.obolibrary.org/obo/MONDO_0002883,intestinal neuroendocrine neoplasm +9.5336709,MONDO:0006451,http://purl.obolibrary.org/obo/MONDO_0006451,thymic carcinoma +9.5342696,GO:0097599,http://purl.obolibrary.org/obo/GO_0097599,xylanase activity +9.5342696,PR:000023039,http://purl.obolibrary.org/obo/PR_000023039,none +9.5342696,UBERON:0011390,http://purl.obolibrary.org/obo/UBERON_0011390,pudendal nerve +9.5348685,GO:0120255,http://purl.obolibrary.org/obo/GO_0120255,olefinic compound biosynthetic process +9.5348685,MONDO:0016748,http://purl.obolibrary.org/obo/MONDO_0016748,hemangioblastoma +9.5348685,UBERON:0001142,http://purl.obolibrary.org/obo/UBERON_0001142,left renal vein +9.5354679,CHEBI:60160,http://purl.obolibrary.org/obo/CHEBI_60160,polyester polymer +9.5354679,DRUGBANK:DB15548,http://purl.obolibrary.org/obo/DRUGBANK_DB15548,none +9.5354679,HP:0001369,http://purl.obolibrary.org/obo/HP_0001369,Arthritis +9.5354679,MONDO:0016216,http://purl.obolibrary.org/obo/MONDO_0016216,adult hepatocellular carcinoma +9.5354679,PR:000001669,http://purl.obolibrary.org/obo/PR_000001669,somatostatin receptor type 2 +9.5354679,PR:000010313,http://purl.obolibrary.org/obo/PR_000010313,pyrin +9.5354679,PR:000012547,http://purl.obolibrary.org/obo/PR_000012547,period circadian protein homolog 1 +9.5354679,PR:000023845,http://purl.obolibrary.org/obo/PR_000023845,DNA-directed RNA polymerase subunit beta +9.5354679,UBERON:0001112,http://purl.obolibrary.org/obo/UBERON_0001112,latissimus dorsi muscle +9.5360676,MONDO:0001377,http://purl.obolibrary.org/obo/MONDO_0001377,vitreous syneresis +9.5366676,DRUGBANK:DB13867,http://purl.obolibrary.org/obo/DRUGBANK_DB13867,none +9.5366676,MONDO:0021311,http://purl.obolibrary.org/obo/MONDO_0021311,malignant tumor of parathyroid gland +9.5366676,PR:000008654,http://purl.obolibrary.org/obo/PR_000008654,hepatocyte nuclear factor 4-alpha +9.5372681,GO:0006699,http://purl.obolibrary.org/obo/GO_0006699,bile acid biosynthetic process +9.5372681,UBERON:0002973,http://purl.obolibrary.org/obo/UBERON_0002973,parahippocampal gyrus +9.5378688,CHEBI:47778,http://purl.obolibrary.org/obo/CHEBI_47778,glyceride +9.5378688,GO:0004522,http://purl.obolibrary.org/obo/GO_0004522,ribonuclease A activity +9.5378688,NCBITaxon:11120,http://purl.obolibrary.org/obo/NCBITaxon_11120,Infectious bronchitis virus +9.5378688,PR:000014042,http://purl.obolibrary.org/obo/PR_000014042,ribonuclease pancreatic +9.53847,GO:0016655,http://purl.obolibrary.org/obo/GO_0016655,"oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor" +9.53847,MONDO:0019250,http://purl.obolibrary.org/obo/MONDO_0019250,inborn disorder of biogenic amine metabolism and transport +9.53847,PR:000002156,http://purl.obolibrary.org/obo/PR_000002156,NAD(P)(+)--arginine ADP-ribosyltransferase +9.5390715,DRUGBANK:DB14258,http://purl.obolibrary.org/obo/DRUGBANK_DB14258,none +9.5396734,CHEBI:37955,http://purl.obolibrary.org/obo/CHEBI_37955,H1-receptor antagonist +9.5396734,CL:0002257,http://purl.obolibrary.org/obo/CL_0002257,epithelial cell of thyroid gland +9.5396734,DRUGBANK:DB10446,http://purl.obolibrary.org/obo/DRUGBANK_DB10446,none +9.5396734,UBERON:0016566,http://purl.obolibrary.org/obo/UBERON_0016566,pit +9.5402756,CHEBI:17855,http://purl.obolibrary.org/obo/CHEBI_17855,triglyceride +9.5402756,MONDO:0002087,http://purl.obolibrary.org/obo/MONDO_0002087,peritoneum cancer +9.5402756,NCBITaxon:2785018,http://purl.obolibrary.org/obo/NCBITaxon_2785018,none +9.5402756,NCBITaxon:7675,http://purl.obolibrary.org/obo/NCBITaxon_7675,none +9.5408782,CHEBI:76579,http://purl.obolibrary.org/obo/CHEBI_76579,triradylglycerol +9.5408782,PR:O22959,http://purl.obolibrary.org/obo/PR_O22959,none +9.5414811,DRUGBANK:DB00017,http://purl.obolibrary.org/obo/DRUGBANK_DB00017,none +9.5414811,HP:0000750,http://purl.obolibrary.org/obo/HP_0000750,Delayed speech and language development +9.5414811,MONDO:0017708,http://purl.obolibrary.org/obo/MONDO_0017708,mevalonate kinase deficiency +9.5414811,PR:000014170,http://purl.obolibrary.org/obo/PR_000014170,replication protein A 70 kDa DNA-binding subunit +9.5414811,UBERON:0000412,http://purl.obolibrary.org/obo/UBERON_0000412,dermal papilla +9.5420845,GO:0009084,http://purl.obolibrary.org/obo/GO_0009084,glutamine family amino acid biosynthetic process +9.5420845,GO:0030031,http://purl.obolibrary.org/obo/GO_0030031,cell projection assembly +9.5420845,GO:0048770,http://purl.obolibrary.org/obo/GO_0048770,pigment granule +9.5420845,MONDO:0021039,http://purl.obolibrary.org/obo/MONDO_0021039,extraskeletal Ewing sarcoma/peripheral primitive neuroectodermal tumor +9.5420845,NCBITaxon:10641,http://purl.obolibrary.org/obo/NCBITaxon_10641,none +9.5420845,PR:000023782,http://purl.obolibrary.org/obo/PR_000023782,none +9.5426881,CL:1000742,http://purl.obolibrary.org/obo/CL_1000742,glomerular mesangial cell +9.5426881,GO:0040012,http://purl.obolibrary.org/obo/GO_0040012,regulation of locomotion +9.5426881,MONDO:0007407,http://purl.obolibrary.org/obo/MONDO_0007407,Cryoglobulinemic vasculitis +9.5426881,SO:0000127,http://purl.obolibrary.org/obo/SO_0000127,silenced_gene +9.5432922,MONDO:0017720,http://purl.obolibrary.org/obo/MONDO_0017720,GM2 gangliosidosis +9.5432922,NCBITaxon:11572,http://purl.obolibrary.org/obo/NCBITaxon_11572,Orthobunyavirus +9.5438966,MONDO:0007534,http://purl.obolibrary.org/obo/MONDO_0007534,Beckwith-Wiedemann syndrome +9.5438966,NCBITaxon:162387,http://purl.obolibrary.org/obo/NCBITaxon_162387,Metapneumovirus +9.5438966,PR:000000021,http://purl.obolibrary.org/obo/PR_000000021,noggin +9.5438966,PR:000006420,http://purl.obolibrary.org/obo/PR_000006420,density-regulated protein +9.5445014,GO:0009812,http://purl.obolibrary.org/obo/GO_0009812,flavonoid metabolic process +9.5445014,MONDO:0003039,http://purl.obolibrary.org/obo/MONDO_0003039,nominal aphasia +9.5445014,MONDO:0010888,http://purl.obolibrary.org/obo/MONDO_0010888,endometriosis of uterus +9.5445014,UBERON:0008789,http://purl.obolibrary.org/obo/UBERON_0008789,cranial fossa +9.5451065,CL:0000503,http://purl.obolibrary.org/obo/CL_0000503,theca cell +9.5451065,DRUGBANK:DB06817,http://purl.obolibrary.org/obo/DRUGBANK_DB06817,none +9.5451065,MONDO:0016121,http://purl.obolibrary.org/obo/MONDO_0016121,congenital myotonia +9.545712,CHEBI:36684,http://purl.obolibrary.org/obo/CHEBI_36684,none +9.545712,GO:0015645,http://purl.obolibrary.org/obo/GO_0015645,fatty acid ligase activity +9.545712,PR:000003728,http://purl.obolibrary.org/obo/PR_000003728,a disintegrin and metalloproteinase with thrombospondin motifs 13 +9.5463179,NCBITaxon:1980416,http://purl.obolibrary.org/obo/NCBITaxon_1980416,Peribunyaviridae +9.5469241,DRUGBANK:DB01019,http://purl.obolibrary.org/obo/DRUGBANK_DB01019,none +9.5469241,UBERON:0002451,http://purl.obolibrary.org/obo/UBERON_0002451,endometrial gland +9.5475308,DRUGBANK:DB00545,http://purl.obolibrary.org/obo/DRUGBANK_DB00545,none +9.5475308,DRUGBANK:DB09256,http://purl.obolibrary.org/obo/DRUGBANK_DB09256,none +9.5475308,HP:0005599,http://purl.obolibrary.org/obo/HP_0005599,Hypopigmentation of hair +9.5475308,MONDO:0018270,http://purl.obolibrary.org/obo/MONDO_0018270,extraskeletal Ewing sarcoma +9.5481377,NCBITaxon:10365,http://purl.obolibrary.org/obo/NCBITaxon_10365,none +9.5481377,PR:000015870,http://purl.obolibrary.org/obo/PR_000015870,synapsin-1 +9.5487451,CL:0000595,http://purl.obolibrary.org/obo/CL_0000595,enucleate erythrocyte +9.5487451,NCBITaxon:32281,http://purl.obolibrary.org/obo/NCBITaxon_32281,"Drosophila " +9.5487451,PR:000007498,http://purl.obolibrary.org/obo/PR_000007498,fibroblast growth factor 7 +9.5493528,CL:0000498,http://purl.obolibrary.org/obo/CL_0000498,inhibitory interneuron +9.5493528,DRUGBANK:DB08885,http://purl.obolibrary.org/obo/DRUGBANK_DB08885,none +9.5493528,GO:0000313,http://purl.obolibrary.org/obo/GO_0000313,organellar ribosome +9.5493528,GO:0004523,http://purl.obolibrary.org/obo/GO_0004523,RNA-DNA hybrid ribonuclease activity +9.5493528,GO:0030879,http://purl.obolibrary.org/obo/GO_0030879,mammary gland development +9.5493528,PR:000044668,http://purl.obolibrary.org/obo/PR_000044668,nicotinic acetylcholine receptor protein +9.5499609,DRUGBANK:DB00213,http://purl.obolibrary.org/obo/DRUGBANK_DB00213,none +9.5499609,DRUGBANK:DB10629,http://purl.obolibrary.org/obo/DRUGBANK_DB10629,none +9.5499609,UBERON:0011305,http://purl.obolibrary.org/obo/UBERON_0011305,superficial part of temporalis +9.5505694,CL:0000384,http://purl.obolibrary.org/obo/CL_0000384,ligament cell +9.5505694,CL:0000743,http://purl.obolibrary.org/obo/CL_0000743,hypertrophic chondrocyte +9.5505694,DRUGBANK:DB01083,http://purl.obolibrary.org/obo/DRUGBANK_DB01083,none +9.5505694,PR:000010670,http://purl.obolibrary.org/obo/PR_000010670,DNA mismatch repair protein Msh6 +9.5511782,CL:0000323,http://purl.obolibrary.org/obo/CL_0000323,lysozyme secreting cell +9.5511782,MONDO:0007023,http://purl.obolibrary.org/obo/MONDO_0007023,Yersinia infectious disease +9.5517874,DRUGBANK:DB02192,http://purl.obolibrary.org/obo/DRUGBANK_DB02192,none +9.5517874,DRUGBANK:DB15930,http://purl.obolibrary.org/obo/DRUGBANK_DB15930,none +9.5517874,HP:0009887,http://purl.obolibrary.org/obo/HP_0009887,Abnormality of hair pigmentation +9.5517874,MONDO:0044743,http://purl.obolibrary.org/obo/MONDO_0044743,major salivary gland cancer +9.5517874,PR:000006277,http://purl.obolibrary.org/obo/PR_000006277,death-associated protein kinase 2 +9.5523969,CL:0000510,http://purl.obolibrary.org/obo/CL_0000510,paneth cell +9.5523969,CL:0000968,http://purl.obolibrary.org/obo/CL_0000968,Be cell +9.5523969,DRUGBANK:DB00836,http://purl.obolibrary.org/obo/DRUGBANK_DB00836,none +9.5523969,DRUGBANK:DB00884,http://purl.obolibrary.org/obo/DRUGBANK_DB00884,none +9.5523969,GO:0070460,http://purl.obolibrary.org/obo/GO_0070460,thyroid-stimulating hormone secretion +9.5523969,MONDO:0005825,http://purl.obolibrary.org/obo/MONDO_0005825,leptospirosis +9.5523969,MONDO:0010785,http://purl.obolibrary.org/obo/MONDO_0010785,maternally-inherited diabetes and deafness +9.5523969,PR:P23285,http://purl.obolibrary.org/obo/PR_P23285,none +9.5523969,UBERON:0009753,http://purl.obolibrary.org/obo/UBERON_0009753,adrenal gland cortex zone +9.5530069,DRUGBANK:DB00266,http://purl.obolibrary.org/obo/DRUGBANK_DB00266,none +9.5530069,DRUGBANK:DB01166,http://purl.obolibrary.org/obo/DRUGBANK_DB01166,none +9.5530069,GO:0052126,http://purl.obolibrary.org/obo/GO_0052126,movement in host environment +9.5530069,NCBITaxon:1980418,http://purl.obolibrary.org/obo/NCBITaxon_1980418,Phenuiviridae +9.5536172,GO:0045682,http://purl.obolibrary.org/obo/GO_0045682,regulation of epidermis development +9.5536172,MONDO:0000633,http://purl.obolibrary.org/obo/MONDO_0000633,sensory organ benign neoplasm +9.5536172,PR:000013633,http://purl.obolibrary.org/obo/PR_000013633,Ras-related protein Rab-5A +9.5536172,UBERON:0004270,http://purl.obolibrary.org/obo/UBERON_0004270,lower leg connective tissue +9.5536172,UBERON:0009878,http://purl.obolibrary.org/obo/UBERON_0009878,mesopodial skeleton +9.5542279,MONDO:0002206,http://purl.obolibrary.org/obo/MONDO_0002206,sweat gland cancer +9.5542279,MONDO:0007483,http://purl.obolibrary.org/obo/MONDO_0007483,dyschromatosis symmetrica hereditaria +9.554839,GO:0002065,http://purl.obolibrary.org/obo/GO_0002065,columnar/cuboidal epithelial cell differentiation +9.554839,HP:0007370,http://purl.obolibrary.org/obo/HP_0007370,Aplasia/Hypoplasia of the corpus callosum +9.554839,MONDO:0004235,http://purl.obolibrary.org/obo/MONDO_0004235,diverticulitis +9.554839,PR:000001911,http://purl.obolibrary.org/obo/PR_000001911,poliovirus receptor-related protein +9.554839,PR:000011035,http://purl.obolibrary.org/obo/PR_000011035,Nck-associated protein 1 +9.554839,UBERON:0009880,http://purl.obolibrary.org/obo/UBERON_0009880,carpal skeleton +9.5554504,CHEBI:37022,http://purl.obolibrary.org/obo/CHEBI_37022,amino-acid anion +9.5554504,HP:0033725,http://purl.obolibrary.org/obo/HP_0033725,Thin corpus callosum +9.5560622,GO:0002009,http://purl.obolibrary.org/obo/GO_0002009,morphogenesis of an epithelium +9.5560622,GO:0004925,http://purl.obolibrary.org/obo/GO_0004925,prolactin receptor activity +9.5560622,HP:0001274,http://purl.obolibrary.org/obo/HP_0001274,Agenesis of corpus callosum +9.5560622,PR:000007565,http://purl.obolibrary.org/obo/PR_000007565,vascular endothelial growth factor receptor 3 +9.5566744,DRUGBANK:DB00696,http://purl.obolibrary.org/obo/DRUGBANK_DB00696,none +9.5566744,GO:0000724,http://purl.obolibrary.org/obo/GO_0000724,double-strand break repair via homologous recombination +9.5566744,MONDO:0001909,http://purl.obolibrary.org/obo/MONDO_0001909,renal tubular acidosis +9.5566744,PR:000000720,http://purl.obolibrary.org/obo/PR_000000720,voltage-gated potassium channel Elk alpha subunit +9.5572869,CHEBI:33558,http://purl.obolibrary.org/obo/CHEBI_33558,alpha-amino-acid anion +9.5572869,DRUGBANK:DB10417,http://purl.obolibrary.org/obo/DRUGBANK_DB10417,none +9.5572869,PR:000012940,http://purl.obolibrary.org/obo/PR_000012940,nociceptin +9.5578999,DRUGBANK:DB15649,http://purl.obolibrary.org/obo/DRUGBANK_DB15649,none +9.5578999,UBERON:0004293,http://purl.obolibrary.org/obo/UBERON_0004293,parasympathetic nerve +9.5578999,UBERON:0009127,http://purl.obolibrary.org/obo/UBERON_0009127,epibranchial ganglion +9.5585132,GO:0046474,http://purl.obolibrary.org/obo/GO_0046474,glycerophospholipid biosynthetic process +9.5585132,MONDO:0005628,http://purl.obolibrary.org/obo/MONDO_0005628,male breast carcinoma +9.5591269,DRUGBANK:DB00706,http://purl.obolibrary.org/obo/DRUGBANK_DB00706,none +9.5591269,DRUGBANK:DB08881,http://purl.obolibrary.org/obo/DRUGBANK_DB08881,none +9.5597409,CHEBI:64857,http://purl.obolibrary.org/obo/CHEBI_64857,cosmetic +9.5597409,CHEBI:85046,http://purl.obolibrary.org/obo/CHEBI_85046,skin lightening agent +9.5597409,HP:0002829,http://purl.obolibrary.org/obo/HP_0002829,Arthralgia +9.5597409,UBERON:0001191,http://purl.obolibrary.org/obo/UBERON_0001191,common iliac artery +9.5603554,CHEBI:21241,http://purl.obolibrary.org/obo/CHEBI_21241,none +9.5603554,CHEBI:36976,http://purl.obolibrary.org/obo/CHEBI_36976,nucleotide +9.5603554,GO:0007595,http://purl.obolibrary.org/obo/GO_0007595,lactation +9.5603554,GO:0019048,http://purl.obolibrary.org/obo/GO_0019048,modulation by virus of host process +9.5603554,MONDO:0002195,http://purl.obolibrary.org/obo/MONDO_0002195,vulvar squamous neoplasm +9.5603554,MONDO:0017355,http://purl.obolibrary.org/obo/MONDO_0017355,inborn disorder of proline metabolism +9.5609702,DRUGBANK:DB01599,http://purl.obolibrary.org/obo/DRUGBANK_DB01599,none +9.5615854,GO:0060173,http://purl.obolibrary.org/obo/GO_0060173,limb development +9.5622009,PR:000008481,http://purl.obolibrary.org/obo/PR_000008481,histone deacetylase 2 +9.5622009,UBERON:0003570,http://purl.obolibrary.org/obo/UBERON_0003570,respiratory system connective tissue +9.5628169,MONDO:0100053,http://purl.obolibrary.org/obo/MONDO_0100053,anaphylaxis +9.5628169,UBERON:0035927,http://purl.obolibrary.org/obo/UBERON_0035927,sulcus of parietal lobe +9.5634332,CL:0000059,http://purl.obolibrary.org/obo/CL_0000059,ameloblast +9.5634332,GO:0043583,http://purl.obolibrary.org/obo/GO_0043583,ear development +9.5640499,CHEBI:39000,http://purl.obolibrary.org/obo/CHEBI_39000,sodium channel modulator +9.5640499,MONDO:0019154,http://purl.obolibrary.org/obo/MONDO_0019154,androgen insensitivity syndrome +9.5640499,PR:000009461,http://purl.obolibrary.org/obo/PR_000009461,"keratin, type I cytoskeletal 20" +9.564667,GO:0016854,http://purl.obolibrary.org/obo/GO_0016854,racemase and epimerase activity +9.564667,PR:000025823,http://purl.obolibrary.org/obo/PR_000025823,solute carrier organic anion transporter family member +9.5652845,DRUGBANK:DB08868,http://purl.obolibrary.org/obo/DRUGBANK_DB08868,none +9.5659024,DRUGBANK:DB06733,http://purl.obolibrary.org/obo/DRUGBANK_DB06733,none +9.5659024,HP:0001022,http://purl.obolibrary.org/obo/HP_0001022,Albinism +9.5659024,PR:000010990,http://purl.obolibrary.org/obo/PR_000010990,"N-alpha-acetyltransferase 16, NatA auxiliary subunit" +9.5659024,PR:Q42400,http://purl.obolibrary.org/obo/PR_Q42400,none +9.5665206,UBERON:0001845,http://purl.obolibrary.org/obo/UBERON_0001845,perilymph +9.5665206,UBERON:0008877,http://purl.obolibrary.org/obo/UBERON_0008877,epidermal-dermal junction +9.5671392,DRUGBANK:DB00417,http://purl.obolibrary.org/obo/DRUGBANK_DB00417,none +9.5671392,DRUGBANK:DB13168,http://purl.obolibrary.org/obo/DRUGBANK_DB13168,none +9.5671392,GO:0008172,http://purl.obolibrary.org/obo/GO_0008172,S-methyltransferase activity +9.5671392,UBERON:0001534,http://purl.obolibrary.org/obo/UBERON_0001534,right subclavian artery +9.5677582,DRUGBANK:DB04572,http://purl.obolibrary.org/obo/DRUGBANK_DB04572,none +9.5677582,DRUGBANK:DB10645,http://purl.obolibrary.org/obo/DRUGBANK_DB10645,none +9.5677582,PR:000011400,http://purl.obolibrary.org/obo/PR_000011400,nuclear receptor subfamily 2 group C member 2 +9.5677582,PR:000029649,http://purl.obolibrary.org/obo/PR_000029649,"pro-neuregulin-1, membrane-bound isoform" +9.5683776,CHEBI:38104,http://purl.obolibrary.org/obo/CHEBI_38104,oxacycle +9.5683776,CHEBI:73413,http://purl.obolibrary.org/obo/CHEBI_73413,cannabinoid receptor antagonist +9.5683776,DRUGBANK:DB01396,http://purl.obolibrary.org/obo/DRUGBANK_DB01396,none +9.5683776,GO:0015812,http://purl.obolibrary.org/obo/GO_0015812,gamma-aminobutyric acid transport +9.5683776,MONDO:0007187,http://purl.obolibrary.org/obo/MONDO_0007187,nevoid basal cell carcinoma syndrome +9.5683776,PR:000003158,http://purl.obolibrary.org/obo/PR_000003158,mitogen-activated protein kinase kinase kinase 7 +9.5683776,PR:000011365,http://purl.obolibrary.org/obo/PR_000011365,nephrin +9.5683776,PR:000044515,http://purl.obolibrary.org/obo/PR_000044515,protocadherin +9.5683776,UBERON:0002382,http://purl.obolibrary.org/obo/UBERON_0002382,rectus abdominis muscle +9.5683776,UBERON:0007228,http://purl.obolibrary.org/obo/UBERON_0007228,vestibular nucleus +9.5689974,GO:0016744,http://purl.obolibrary.org/obo/GO_0016744,transketolase or transaldolase activity +9.5689974,MOP:0002364,http://purl.obolibrary.org/obo/MOP_0002364,none +9.5689974,UBERON:0000459,http://purl.obolibrary.org/obo/UBERON_0000459,uterine wall +9.5689974,UBERON:0001790,http://purl.obolibrary.org/obo/UBERON_0001790,outer plexiform layer of retina +9.5696175,CHEBI:33560,http://purl.obolibrary.org/obo/CHEBI_33560,p-block element atom +9.5696175,MONDO:0006002,http://purl.obolibrary.org/obo/MONDO_0006002,urogenital tuberculosis +9.5696175,MONDO:0007024,http://purl.obolibrary.org/obo/MONDO_0007024,Yersinia pseudotuberculosis infectious disease +9.5696175,MONDO:0020333,http://purl.obolibrary.org/obo/MONDO_0020333,aggressive systemic mastocytosis +9.5696175,PR:000002042,http://purl.obolibrary.org/obo/PR_000002042,integrin beta-3 +9.5702381,CHEBI:24020,http://purl.obolibrary.org/obo/CHEBI_24020,fat-soluble vitamin (role) +9.5702381,GO:0004144,http://purl.obolibrary.org/obo/GO_0004144,diacylglycerol O-acyltransferase activity +9.5702381,PR:000006432,http://purl.obolibrary.org/obo/PR_000006432,diacylglycerol O-acyltransferase 1 +9.570859,CHEBI:50319,http://purl.obolibrary.org/obo/CHEBI_50319,nucleotide residue +9.5714803,MONDO:0031012,http://purl.obolibrary.org/obo/MONDO_0031012,autoimmune uveitis +9.5714803,PR:000000003,http://purl.obolibrary.org/obo/PR_000000003,HLH DNA-binding protein inhibitor +9.572102,CL:0002129,http://purl.obolibrary.org/obo/CL_0002129,regular atrial cardiac myocyte +9.572102,GO:0006081,http://purl.obolibrary.org/obo/GO_0006081,cellular aldehyde metabolic process +9.572102,PR:000016643,http://purl.obolibrary.org/obo/PR_000016643,E3 ubiquitin-protein ligase TRIM13 +9.572102,PR:O48646,http://purl.obolibrary.org/obo/PR_O48646,none +9.572102,PR:Q5AL03,http://purl.obolibrary.org/obo/PR_Q5AL03,none +9.5727241,DRUGBANK:DB10657,http://purl.obolibrary.org/obo/DRUGBANK_DB10657,none +9.5727241,GO:0051181,http://purl.obolibrary.org/obo/GO_0051181,none +9.5727241,MONDO:0007142,http://purl.obolibrary.org/obo/MONDO_0007142,Townes-Brocks syndrome +9.5727241,NCBITaxon:469008,http://purl.obolibrary.org/obo/NCBITaxon_469008,none +9.5727241,PR:O13016,http://purl.obolibrary.org/obo/PR_O13016,none +9.5733466,GO:0004677,http://purl.obolibrary.org/obo/GO_0004677,DNA-dependent protein kinase activity +9.5733466,UBERON:0001183,http://purl.obolibrary.org/obo/UBERON_0001183,inferior mesenteric artery +9.5739694,DRUGBANK:DB00098,http://purl.obolibrary.org/obo/DRUGBANK_DB00098,none +9.5745927,CL:0011005,http://purl.obolibrary.org/obo/CL_0011005,GABAergic interneuron +9.5745927,MONDO:0000088,http://purl.obolibrary.org/obo/MONDO_0000088,precocious puberty +9.5745927,PR:000006103,http://purl.obolibrary.org/obo/PR_000006103,cytochrome P450 1B1 +9.5752163,DRUGBANK:DB01273,http://purl.obolibrary.org/obo/DRUGBANK_DB01273,none +9.5752163,DRUGBANK:DB01793,http://purl.obolibrary.org/obo/DRUGBANK_DB01793,none +9.5752163,GO:0098762,http://purl.obolibrary.org/obo/GO_0098762,meiotic cell cycle phase +9.5752163,MONDO:0002874,http://purl.obolibrary.org/obo/MONDO_0002874,testicular pure germ cell tumor +9.5752163,PR:000012316,http://purl.obolibrary.org/obo/PR_000012316,paired box protein Pax-3 +9.5758403,CHEBI:82824,http://purl.obolibrary.org/obo/CHEBI_82824,calpain inhibitor +9.5758403,DRUGBANK:DB03934,http://purl.obolibrary.org/obo/DRUGBANK_DB03934,none +9.5758403,MONDO:0002884,http://purl.obolibrary.org/obo/MONDO_0002884,nail disease +9.5764648,DRUGBANK:DB01232,http://purl.obolibrary.org/obo/DRUGBANK_DB01232,none +9.5764648,GO:0008484,http://purl.obolibrary.org/obo/GO_0008484,sulfuric ester hydrolase activity +9.5770896,DRUGBANK:DB13868,http://purl.obolibrary.org/obo/DRUGBANK_DB13868,none +9.5770896,MONDO:0007691,http://purl.obolibrary.org/obo/MONDO_0007691,"Guillain-Barre syndrome, familial" +9.5770896,PR:P16320,http://purl.obolibrary.org/obo/PR_P16320,none +9.5777148,DRUGBANK:DB14184,http://purl.obolibrary.org/obo/DRUGBANK_DB14184,none +9.5777148,MONDO:0006608,http://purl.obolibrary.org/obo/MONDO_0006608,seborrheic dermatitis +9.5777148,MONDO:0016913,http://purl.obolibrary.org/obo/MONDO_0016913,partial deletion of the long arm of chromosome 15 +9.5777148,MONDO:0021451,http://purl.obolibrary.org/obo/MONDO_0021451,benign neoplasm of brain +9.5777148,NCBITaxon:10814,http://purl.obolibrary.org/obo/NCBITaxon_10814,none +9.5783403,GO:0006664,http://purl.obolibrary.org/obo/GO_0006664,glycolipid metabolic process +9.5783403,GO:0019076,http://purl.obolibrary.org/obo/GO_0019076,viral release from host cell +9.5783403,MONDO:0002257,http://purl.obolibrary.org/obo/MONDO_0002257,ankylosis +9.5789663,GO:0035890,http://purl.obolibrary.org/obo/GO_0035890,exit from host +9.5789663,GO:0035891,http://purl.obolibrary.org/obo/GO_0035891,exit from host cell +9.5789663,UBERON:0002913,http://purl.obolibrary.org/obo/UBERON_0002913,intraparietal sulcus +9.5789663,UBERON:0003692,http://purl.obolibrary.org/obo/UBERON_0003692,acromioclavicular joint +9.5789663,UBERON:0004148,http://purl.obolibrary.org/obo/UBERON_0004148,cardiac vein +9.5789663,UBERON:0009688,http://purl.obolibrary.org/obo/UBERON_0009688,posterior inferior cerebellar artery +9.5795927,DRUGBANK:DB02262,http://purl.obolibrary.org/obo/DRUGBANK_DB02262,none +9.5795927,DRUGBANK:DB10560,http://purl.obolibrary.org/obo/DRUGBANK_DB10560,none +9.5802195,CHEBI:50995,http://purl.obolibrary.org/obo/CHEBI_50995,secondary amino compound +9.5802195,MONDO:0015494,http://purl.obolibrary.org/obo/MONDO_0015494,isolated dystonia +9.5802195,UBERON:0035015,http://purl.obolibrary.org/obo/UBERON_0035015,association cortex +9.5808466,DRUGBANK:DB04619,http://purl.obolibrary.org/obo/DRUGBANK_DB04619,none +9.5808466,DRUGBANK:DB14056,http://purl.obolibrary.org/obo/DRUGBANK_DB14056,none +9.5808466,GO:0005924,http://purl.obolibrary.org/obo/GO_0005924,none +9.5808466,GO:0046884,http://purl.obolibrary.org/obo/GO_0046884,follicle-stimulating hormone secretion +9.5808466,GO:0071482,http://purl.obolibrary.org/obo/GO_0071482,cellular response to light stimulus +9.5814742,DRUGBANK:DB04570,http://purl.obolibrary.org/obo/DRUGBANK_DB04570,none +9.5814742,MONDO:0005565,http://purl.obolibrary.org/obo/MONDO_0005565,blastoma +9.5814742,UBERON:0001681,http://purl.obolibrary.org/obo/UBERON_0001681,nasal bone +9.5814742,UBERON:0003837,http://purl.obolibrary.org/obo/UBERON_0003837,thoracic segment connective tissue +9.5814742,UBERON:0005194,http://purl.obolibrary.org/obo/UBERON_0005194,thoracic vein +9.5821021,GO:0050657,http://purl.obolibrary.org/obo/GO_0050657,nucleic acid transport +9.5821021,MONDO:0007885,http://purl.obolibrary.org/obo/MONDO_0007885,Legg-Calve-Perthes disease +9.5827304,DRUGBANK:DB15972,http://purl.obolibrary.org/obo/DRUGBANK_DB15972,none +9.5833592,MONDO:0006849,http://purl.obolibrary.org/obo/MONDO_0006849,mastitis +9.5833592,PR:000034449,http://purl.obolibrary.org/obo/PR_000034449,none +9.5839883,DRUGBANK:DB10687,http://purl.obolibrary.org/obo/DRUGBANK_DB10687,none +9.5839883,GO:0072606,http://purl.obolibrary.org/obo/GO_0072606,none +9.5852477,GO:0005925,http://purl.obolibrary.org/obo/GO_0005925,focal adhesion +9.5852477,GO:0051960,http://purl.obolibrary.org/obo/GO_0051960,regulation of nervous system development +9.5852477,GO:1901160,http://purl.obolibrary.org/obo/GO_1901160,primary amino compound metabolic process +9.5852477,MONDO:0019695,http://purl.obolibrary.org/obo/MONDO_0019695,acromelic dysplasia +9.5852477,PR:000002046,http://purl.obolibrary.org/obo/PR_000002046,interferon regulatory factor 4 +9.5852477,PR:000007362,http://purl.obolibrary.org/obo/PR_000007362,fibrillin-1 +9.5858781,MONDO:0005486,http://purl.obolibrary.org/obo/MONDO_0005486,tooth agenesis +9.5858781,MONDO:0037256,http://purl.obolibrary.org/obo/MONDO_0037256,serous neoplasm +9.5865088,DRUGBANK:DB16101,http://purl.obolibrary.org/obo/DRUGBANK_DB16101,none +9.5865088,UBERON:0001111,http://purl.obolibrary.org/obo/UBERON_0001111,intercostal muscle +9.5871399,DRUGBANK:DB02025,http://purl.obolibrary.org/obo/DRUGBANK_DB02025,none +9.5871399,GO:0019087,http://purl.obolibrary.org/obo/GO_0019087,transformation of host cell by virus +9.5871399,GO:1903009,http://purl.obolibrary.org/obo/GO_1903009,proteasome complex disassembly +9.5871399,MONDO:0006362,http://purl.obolibrary.org/obo/MONDO_0006362,peritoneal mesothelioma +9.5871399,MONDO:0020679,http://purl.obolibrary.org/obo/MONDO_0020679,conductive hearing loss disorder +9.5871399,MONDO:0021322,http://purl.obolibrary.org/obo/MONDO_0021322,malignant tumor of meninges +9.5877714,DRUGBANK:DB00379,http://purl.obolibrary.org/obo/DRUGBANK_DB00379,none +9.5877714,DRUGBANK:DB16404,http://purl.obolibrary.org/obo/DRUGBANK_DB16404,none +9.5877714,UBERON:0005295,http://purl.obolibrary.org/obo/UBERON_0005295,sex cord +9.5884033,DRUGBANK:DB00569,http://purl.obolibrary.org/obo/DRUGBANK_DB00569,none +9.5884033,DRUGBANK:DB13048,http://purl.obolibrary.org/obo/DRUGBANK_DB13048,none +9.5884033,GO:0070569,http://purl.obolibrary.org/obo/GO_0070569,uridylyltransferase activity +9.5884033,MONDO:0017387,http://purl.obolibrary.org/obo/MONDO_0017387,epithelioid sarcoma +9.5890356,DRUGBANK:DB00961,http://purl.obolibrary.org/obo/DRUGBANK_DB00961,none +9.5890356,MONDO:0018720,http://purl.obolibrary.org/obo/MONDO_0018720,common cystic lymphatic malformation +9.5896683,DRUGBANK:DB10400,http://purl.obolibrary.org/obo/DRUGBANK_DB10400,none +9.5896683,UBERON:0001854,http://purl.obolibrary.org/obo/UBERON_0001854,saccule of membranous labyrinth +9.5903015,GO:0048265,http://purl.obolibrary.org/obo/GO_0048265,response to pain +9.5903015,PR:000001396,http://purl.obolibrary.org/obo/PR_000001396,interleukin-9 +9.5903015,PR:000006736,http://purl.obolibrary.org/obo/PR_000006736,dual specificity protein phosphatase 1 +9.5903015,PR:000013261,http://purl.obolibrary.org/obo/PR_000013261,vitamin K-dependent protein C +9.590935,DRUGBANK:DB05599,http://purl.obolibrary.org/obo/DRUGBANK_DB05599,none +9.590935,GO:0008900,http://purl.obolibrary.org/obo/GO_0008900,P-type potassium:proton transporter activity +9.5915689,DRUGBANK:DB11753,http://purl.obolibrary.org/obo/DRUGBANK_DB11753,none +9.5915689,GO:0003755,http://purl.obolibrary.org/obo/GO_0003755,peptidyl-prolyl cis-trans isomerase activity +9.5915689,MONDO:0019172,http://purl.obolibrary.org/obo/MONDO_0019172,aniridia +9.5922032,GO:0006067,http://purl.obolibrary.org/obo/GO_0006067,ethanol metabolic process +9.5922032,GO:0006301,http://purl.obolibrary.org/obo/GO_0006301,postreplication repair +9.5922032,MONDO:0019832,http://purl.obolibrary.org/obo/MONDO_0019832,acquired pituitary hormone deficiency +9.5922032,PR:000002040,http://purl.obolibrary.org/obo/PR_000002040,integrin beta-1 +9.5928379,DRUGBANK:DB04841,http://purl.obolibrary.org/obo/DRUGBANK_DB04841,none +9.5928379,GO:0043900,http://purl.obolibrary.org/obo/GO_0043900,regulation of multi-organism process +9.5928379,MONDO:0100056,http://purl.obolibrary.org/obo/MONDO_0100056,exercise-induced anaphylaxis +9.5928379,PR:000000793,http://purl.obolibrary.org/obo/PR_000000793,voltage-gated potassium channel KCNH4 +9.5928379,PR:Q42406,http://purl.obolibrary.org/obo/PR_Q42406,none +9.5928379,UBERON:0010135,http://purl.obolibrary.org/obo/UBERON_0010135,sensory circumventricular organ +9.593473,DRUGBANK:DB09053,http://purl.obolibrary.org/obo/DRUGBANK_DB09053,none +9.593473,GO:0009451,http://purl.obolibrary.org/obo/GO_0009451,RNA modification +9.593473,MONDO:0017570,http://purl.obolibrary.org/obo/MONDO_0017570,leukocyte adhesion deficiency +9.5941086,DRUGBANK:DB04552,http://purl.obolibrary.org/obo/DRUGBANK_DB04552,none +9.5941086,PR:000001710,http://purl.obolibrary.org/obo/PR_000001710,sphingosine 1-phosphate receptor 5 +9.5941086,PR:000009888,http://purl.obolibrary.org/obo/PR_000009888,apolipoprotein(a) +9.5947445,MONDO:0017880,http://purl.obolibrary.org/obo/MONDO_0017880,Rift valley fever +9.5947445,PR:000000721,http://purl.obolibrary.org/obo/PR_000000721,voltage-gated potassium channel Erg alpha subunit +9.5953808,GO:0005548,http://purl.obolibrary.org/obo/GO_0005548,phospholipid transporter activity +9.5953808,GO:0048316,http://purl.obolibrary.org/obo/GO_0048316,seed development +9.5953808,MONDO:0005359,http://purl.obolibrary.org/obo/MONDO_0005359,drug-induced liver injury +9.5953808,SO:0000637,http://purl.obolibrary.org/obo/SO_0000637,engineered_plasmid +9.5960176,MONDO:0000888,http://purl.obolibrary.org/obo/MONDO_0000888,gastrointestinal mucositis +9.5966547,PR:000011634,http://purl.obolibrary.org/obo/PR_000011634,oxidized low-density lipoprotein receptor 1 +9.5966547,PR:P36415,http://purl.obolibrary.org/obo/PR_P36415,none +9.5972923,GO:0120114,http://purl.obolibrary.org/obo/GO_0120114,Sm-like protein family complex +9.5972923,PR:000004419,http://purl.obolibrary.org/obo/PR_000004419,ubiquitin-like modifier-activating enzyme ATG7 +9.5972923,UBERON:0000410,http://purl.obolibrary.org/obo/UBERON_0000410,bronchial mucosa +9.5979302,GO:0009793,http://purl.obolibrary.org/obo/GO_0009793,embryo development ending in seed dormancy +9.5979302,MONDO:0008638,http://purl.obolibrary.org/obo/MONDO_0008638,varicose disease +9.5985686,CL:0000227,http://purl.obolibrary.org/obo/CL_0000227,binucleate cell +9.5985686,MONDO:0018395,http://purl.obolibrary.org/obo/MONDO_0018395,male infertility due to sperm motility disorder +9.5992074,GO:0002931,http://purl.obolibrary.org/obo/GO_0002931,response to ischemia +9.5992074,MONDO:0005314,http://purl.obolibrary.org/obo/MONDO_0005314,relapsing-remitting multiple sclerosis +9.5992074,MONDO:0012621,http://purl.obolibrary.org/obo/MONDO_0012621,deafness-infertility syndrome +9.5992074,PR:000044673,http://purl.obolibrary.org/obo/PR_000044673,CIC family protein +9.5992074,UBERON:0014640,http://purl.obolibrary.org/obo/UBERON_0014640,occipital gyrus +9.5998465,DRUGBANK:DB11257,http://purl.obolibrary.org/obo/DRUGBANK_DB11257,none +9.5998465,GO:0000959,http://purl.obolibrary.org/obo/GO_0000959,mitochondrial RNA metabolic process +9.5998465,GO:0004900,http://purl.obolibrary.org/obo/GO_0004900,erythropoietin receptor activity +9.5998465,MONDO:0001554,http://purl.obolibrary.org/obo/MONDO_0001554,phacogenic glaucoma +9.5998465,MONDO:0007039,http://purl.obolibrary.org/obo/MONDO_0007039,neurofibromatosis type 2 +9.5998465,PR:000001612,http://purl.obolibrary.org/obo/PR_000001612,mu-type opioid receptor +9.5998465,UBERON:0002521,http://purl.obolibrary.org/obo/UBERON_0002521,elastic tissue +9.6004861,GO:0010675,http://purl.obolibrary.org/obo/GO_0010675,regulation of cellular carbohydrate metabolic process +9.6004861,GO:1903706,http://purl.obolibrary.org/obo/GO_1903706,regulation of hemopoiesis +9.6004861,NCBITaxon:39744,http://purl.obolibrary.org/obo/NCBITaxon_39744,Rubulavirus +9.6011261,GO:0007622,http://purl.obolibrary.org/obo/GO_0007622,rhythmic behavior +9.6011261,HP:0000496,http://purl.obolibrary.org/obo/HP_0000496,Abnormality of eye movement +9.6011261,PR:000003201,http://purl.obolibrary.org/obo/PR_000003201,calcium/calmodulin-dependent protein kinase type II subunit delta +9.6017665,CL:1001474,http://purl.obolibrary.org/obo/CL_1001474,medium spiny neuron +9.6017665,DRUGBANK:DB08842,http://purl.obolibrary.org/obo/DRUGBANK_DB08842,none +9.6017665,GO:0007389,http://purl.obolibrary.org/obo/GO_0007389,pattern specification process +9.6017665,GO:0055036,http://purl.obolibrary.org/obo/GO_0055036,virion membrane +9.6017665,MONDO:0100330,http://purl.obolibrary.org/obo/MONDO_0100330,disease arising from reactivation of latent virus +9.6017665,UBERON:0002925,http://purl.obolibrary.org/obo/UBERON_0002925,trigeminal nucleus +9.6024074,CHEBI:48278,http://purl.obolibrary.org/obo/CHEBI_48278,serotonergic drug +9.6024074,CL:0000223,http://purl.obolibrary.org/obo/CL_0000223,endodermal cell +9.6030486,DRUGBANK:DB01029,http://purl.obolibrary.org/obo/DRUGBANK_DB01029,none +9.6030486,DRUGBANK:DB02424,http://purl.obolibrary.org/obo/DRUGBANK_DB02424,none +9.6036902,CHEBI:22333,http://purl.obolibrary.org/obo/CHEBI_22333,alkylating agent +9.6036902,CHEBI:38633,http://purl.obolibrary.org/obo/CHEBI_38633,sodium channel blocker +9.6036902,PR:000050049,http://purl.obolibrary.org/obo/PR_000050049,phospholipase C-gamma +9.6043323,GO:0051384,http://purl.obolibrary.org/obo/GO_0051384,response to glucocorticoid +9.6043323,PR:000006525,http://purl.obolibrary.org/obo/PR_000006525,delta-like protein 4 +9.6049748,GO:0010262,http://purl.obolibrary.org/obo/GO_0010262,somatic embryogenesis +9.6056176,GO:0042634,http://purl.obolibrary.org/obo/GO_0042634,regulation of hair cycle +9.6056176,MONDO:0005166,http://purl.obolibrary.org/obo/MONDO_0005166,osteoma +9.6056176,MONDO:0044872,http://purl.obolibrary.org/obo/MONDO_0044872,dysautonomia +9.6056176,SO:0000032,http://purl.obolibrary.org/obo/SO_0000032,DNA_aptamer +9.6062609,CHEBI:25608,http://purl.obolibrary.org/obo/CHEBI_25608,nucleoside phosphate +9.6062609,GO:0004802,http://purl.obolibrary.org/obo/GO_0004802,transketolase activity +9.6062609,GO:0035898,http://purl.obolibrary.org/obo/GO_0035898,parathyroid hormone secretion +9.6062609,GO:0044028,http://purl.obolibrary.org/obo/GO_0044028,DNA hypomethylation +9.6062609,PR:000013346,http://purl.obolibrary.org/obo/PR_000013346,gamma-secretase subunit PEN-2 +9.6069046,DRUGBANK:DB01378,http://purl.obolibrary.org/obo/DRUGBANK_DB01378,none +9.6069046,DRUGBANK:DB02464,http://purl.obolibrary.org/obo/DRUGBANK_DB02464,none +9.6069046,MONDO:0015231,http://purl.obolibrary.org/obo/MONDO_0015231,Bartter syndrome +9.6069046,MONDO:0019165,http://purl.obolibrary.org/obo/MONDO_0019165,central precocious puberty +9.6069046,MONDO:0044903,http://purl.obolibrary.org/obo/MONDO_0044903,myelofibrosis +9.6069046,PR:000050195,http://purl.obolibrary.org/obo/PR_000050195,none +9.6069046,UBERON:0001628,http://purl.obolibrary.org/obo/UBERON_0001628,posterior communicating artery +9.6075488,GO:0016559,http://purl.obolibrary.org/obo/GO_0016559,peroxisome fission +9.6075488,PR:000015938,http://purl.obolibrary.org/obo/PR_000015938,none +9.6081933,DRUGBANK:DB00989,http://purl.obolibrary.org/obo/DRUGBANK_DB00989,none +9.6081933,PR:000010445,http://purl.obolibrary.org/obo/PR_000010445,histone-lysine N-methyltransferase 2A +9.6088383,GO:0033644,http://purl.obolibrary.org/obo/GO_0033644,host cell membrane +9.6088383,PR:000012735,http://purl.obolibrary.org/obo/PR_000012735,peptidyl-prolyl cis-trans isomerase NIMA-interacting 1 +9.6088383,PR:000014417,http://purl.obolibrary.org/obo/PR_000014417,protein S100-A8 +9.6088383,UBERON:0000307,http://purl.obolibrary.org/obo/UBERON_0000307,blastula +9.6094836,MONDO:0017234,http://purl.obolibrary.org/obo/MONDO_0017234,inherited prion disease +9.6094836,UBERON:0001646,http://purl.obolibrary.org/obo/UBERON_0001646,abducens nerve +9.6101294,GO:0042978,http://purl.obolibrary.org/obo/GO_0042978,ornithine decarboxylase activator activity +9.6101294,GO:0051797,http://purl.obolibrary.org/obo/GO_0051797,regulation of hair follicle development +9.6101294,MONDO:0100131,http://purl.obolibrary.org/obo/MONDO_0100131,pediatric acute respiratory distress syndrome +9.6101294,PR:000000797,http://purl.obolibrary.org/obo/PR_000000797,voltage-gated potassium channel KCNH8 +9.6107756,MONDO:0037255,http://purl.obolibrary.org/obo/MONDO_0037255,ovarian serous tumor +9.6114222,CL:0000103,http://purl.obolibrary.org/obo/CL_0000103,bipolar neuron +9.6114222,DRUGBANK:DB14312,http://purl.obolibrary.org/obo/DRUGBANK_DB14312,none +9.6114222,GO:0006821,http://purl.obolibrary.org/obo/GO_0006821,chloride transport +9.6114222,MONDO:0030603,http://purl.obolibrary.org/obo/MONDO_0030603,Klebsiella infectious disease +9.6120693,GO:0008218,http://purl.obolibrary.org/obo/GO_0008218,bioluminescence +9.6120693,GO:0016445,http://purl.obolibrary.org/obo/GO_0016445,somatic diversification of immunoglobulins +9.6120693,GO:0016447,http://purl.obolibrary.org/obo/GO_0016447,somatic recombination of immunoglobulin gene segments +9.6120693,GO:0032844,http://purl.obolibrary.org/obo/GO_0032844,none +9.6120693,MONDO:0001402,http://purl.obolibrary.org/obo/MONDO_0001402,vaginal cancer +9.6127167,DRUGBANK:DB13995,http://purl.obolibrary.org/obo/DRUGBANK_DB13995,none +9.6127167,UBERON:0000018,http://purl.obolibrary.org/obo/UBERON_0000018,compound eye +9.6127167,UBERON:0015165,http://purl.obolibrary.org/obo/UBERON_0015165,multi-unit eye +9.6133646,GO:0006024,http://purl.obolibrary.org/obo/GO_0006024,glycosaminoglycan biosynthetic process +9.6133646,MONDO:0005674,http://purl.obolibrary.org/obo/MONDO_0005674,bone giant cell tumor +9.6133646,MONDO:0018979,http://purl.obolibrary.org/obo/MONDO_0018979,multifocal motor neuropathy +9.6133646,PR:000007142,http://purl.obolibrary.org/obo/PR_000007142,erythropoietin receptor +9.6140129,DRUGBANK:DB01265,http://purl.obolibrary.org/obo/DRUGBANK_DB01265,none +9.6140129,DRUGBANK:DB14283,http://purl.obolibrary.org/obo/DRUGBANK_DB14283,none +9.6140129,PR:000009458,http://purl.obolibrary.org/obo/PR_000009458,"keratin, type I cytoskeletal 18" +9.6140129,PR:000023160,http://purl.obolibrary.org/obo/PR_000023160,none +9.6140129,PR:P0CE41,http://purl.obolibrary.org/obo/PR_P0CE41,none +9.6140129,PR:P25007,http://purl.obolibrary.org/obo/PR_P25007,none +9.6140129,PR:P52009,http://purl.obolibrary.org/obo/PR_P52009,none +9.6140129,PR:Q54SM3,http://purl.obolibrary.org/obo/PR_Q54SM3,none +9.6146616,PR:000009167,http://purl.obolibrary.org/obo/PR_000009167,involucrin +9.6146616,UBERON:0002087,http://purl.obolibrary.org/obo/UBERON_0002087,atrioventricular canal +9.6153108,DRUGBANK:DB14322,http://purl.obolibrary.org/obo/DRUGBANK_DB14322,none +9.6153108,GO:0044303,http://purl.obolibrary.org/obo/GO_0044303,axon collateral +9.6159603,DRUGBANK:DB13031,http://purl.obolibrary.org/obo/DRUGBANK_DB13031,none +9.6159603,GO:0042060,http://purl.obolibrary.org/obo/GO_0042060,wound healing +9.6159603,MONDO:0003719,http://purl.obolibrary.org/obo/MONDO_0003719,renal pelvis neoplasm +9.6159603,NCBITaxon:10366,http://purl.obolibrary.org/obo/NCBITaxon_10366,Murid betaherpesvirus 1 +9.6159603,UBERON:0011158,http://purl.obolibrary.org/obo/UBERON_0011158,primary subdivision of skull +9.6166103,DRUGBANK:DB00229,http://purl.obolibrary.org/obo/DRUGBANK_DB00229,none +9.6166103,GO:0002204,http://purl.obolibrary.org/obo/GO_0002204,somatic recombination of immunoglobulin genes involved in immune response +9.6166103,GO:0002208,http://purl.obolibrary.org/obo/GO_0002208,somatic diversification of immunoglobulins involved in immune response +9.6166103,MONDO:0007450,http://purl.obolibrary.org/obo/MONDO_0007450,neurohypophyseal diabetes insipidus +9.6172607,DRUGBANK:DB07374,http://purl.obolibrary.org/obo/DRUGBANK_DB07374,none +9.6172607,GO:0010008,http://purl.obolibrary.org/obo/GO_0010008,endosome membrane +9.6172607,GO:0045190,http://purl.obolibrary.org/obo/GO_0045190,isotype switching +9.6172607,GO:0048819,http://purl.obolibrary.org/obo/GO_0048819,regulation of hair follicle maturation +9.6172607,MONDO:0006785,http://purl.obolibrary.org/obo/MONDO_0006785,Henoch-Schoenlein purpura +9.6172607,MONDO:0016713,http://purl.obolibrary.org/obo/MONDO_0016713,central nervous system Ewing sarcoma/peripheral primitive neuroectodermal tumor +9.6172607,MONDO:0019350,http://purl.obolibrary.org/obo/MONDO_0019350,hereditary spherocytosis +9.6172607,MONDO:0019458,http://purl.obolibrary.org/obo/MONDO_0019458,acute basophilic leukemia +9.6172607,PR:P43565,http://purl.obolibrary.org/obo/PR_P43565,none +9.6172607,UBERON:0009198,http://purl.obolibrary.org/obo/UBERON_0009198,craniofacial suture +9.6179116,DRUGBANK:DB11172,http://purl.obolibrary.org/obo/DRUGBANK_DB11172,none +9.6179116,DRUGBANK:DB14089,http://purl.obolibrary.org/obo/DRUGBANK_DB14089,none +9.6179116,GO:0007163,http://purl.obolibrary.org/obo/GO_0007163,establishment or maintenance of cell polarity +9.6179116,UBERON:0011156,http://purl.obolibrary.org/obo/UBERON_0011156,facial skeleton +9.6185628,DRUGBANK:DB00271,http://purl.obolibrary.org/obo/DRUGBANK_DB00271,none +9.6185628,GO:0017002,http://purl.obolibrary.org/obo/GO_0017002,activin-activated receptor activity +9.6185628,MONDO:0021943,http://purl.obolibrary.org/obo/MONDO_0021943,tuberculoma +9.6185628,UBERON:0001476,http://purl.obolibrary.org/obo/UBERON_0001476,deltoid +9.6192145,DRUGBANK:DB01044,http://purl.obolibrary.org/obo/DRUGBANK_DB01044,none +9.6192145,DRUGBANK:DB06496,http://purl.obolibrary.org/obo/DRUGBANK_DB06496,none +9.6192145,NCBITaxon:162145,http://purl.obolibrary.org/obo/NCBITaxon_162145,Human metapneumovirus +9.6192145,PR:000031794,http://purl.obolibrary.org/obo/PR_000031794,protein FAM167B +9.6192145,UBERON:0001852,http://purl.obolibrary.org/obo/UBERON_0001852,endolymph +9.6192145,UBERON:0003685,http://purl.obolibrary.org/obo/UBERON_0003685,cranial suture +9.6198666,CHEBI:48539,http://purl.obolibrary.org/obo/CHEBI_48539,alpha-adrenergic drug +9.6198666,DRUGBANK:DB00615,http://purl.obolibrary.org/obo/DRUGBANK_DB00615,none +9.6198666,GO:0042428,http://purl.obolibrary.org/obo/GO_0042428,serotonin metabolic process +9.6198666,GO:0042594,http://purl.obolibrary.org/obo/GO_0042594,response to starvation +9.6198666,HP:0011830,http://purl.obolibrary.org/obo/HP_0011830,Abnormal oral mucosa morphology +9.6198666,PR:000013083,http://purl.obolibrary.org/obo/PR_000013083,peptidyl-prolyl cis-trans isomerase-like 1 +9.6198666,PR:000017446,http://purl.obolibrary.org/obo/PR_000017446,protein Wnt-5b +9.6205191,DRUGBANK:DB00613,http://purl.obolibrary.org/obo/DRUGBANK_DB00613,none +9.6205191,MONDO:0002235,http://purl.obolibrary.org/obo/MONDO_0002235,eyelid neoplasm +9.6211721,DRUGBANK:DB00750,http://purl.obolibrary.org/obo/DRUGBANK_DB00750,none +9.6211721,DRUGBANK:DB03408,http://purl.obolibrary.org/obo/DRUGBANK_DB03408,none +9.6211721,MONDO:0005464,http://purl.obolibrary.org/obo/MONDO_0005464,rhegmatogenous retinal detachment +9.6218255,CHEBI:50248,http://purl.obolibrary.org/obo/CHEBI_50248,hematologic agent +9.6218255,DRUGBANK:DB04743,http://purl.obolibrary.org/obo/DRUGBANK_DB04743,none +9.6218255,PR:P05205,http://purl.obolibrary.org/obo/PR_P05205,none +9.6224793,DRUGBANK:DB00671,http://purl.obolibrary.org/obo/DRUGBANK_DB00671,none +9.6224793,GO:0001750,http://purl.obolibrary.org/obo/GO_0001750,photoreceptor outer segment +9.6224793,GO:0010628,http://purl.obolibrary.org/obo/GO_0010628,positive regulation of gene expression +9.6224793,GO:0043627,http://purl.obolibrary.org/obo/GO_0043627,response to estrogen +9.6224793,MONDO:0005609,http://purl.obolibrary.org/obo/MONDO_0005609,herpes zoster +9.6224793,UBERON:0002236,http://purl.obolibrary.org/obo/UBERON_0002236,costal cartilage +9.6231335,DRUGBANK:DB04242,http://purl.obolibrary.org/obo/DRUGBANK_DB04242,none +9.6231335,DRUGBANK:DB11357,http://purl.obolibrary.org/obo/DRUGBANK_DB11357,none +9.6231335,GO:0000302,http://purl.obolibrary.org/obo/GO_0000302,response to reactive oxygen species +9.6231335,MONDO:0002408,http://purl.obolibrary.org/obo/MONDO_0002408,hereditary hyperbilirubinemia +9.6231335,MONDO:0021579,http://purl.obolibrary.org/obo/MONDO_0021579,neoplasm of femur +9.6231335,PR:000000687,http://purl.obolibrary.org/obo/PR_000000687,calcium-selective transient receptor potential cation channel TRPV +9.6231335,SO:1000045,http://purl.obolibrary.org/obo/SO_1000045,ring_chromosome +9.6237882,CL:0000111,http://purl.obolibrary.org/obo/CL_0000111,peripheral neuron +9.6237882,DRUGBANK:DB00286,http://purl.obolibrary.org/obo/DRUGBANK_DB00286,none +9.6237882,DRUGBANK:DB09220,http://purl.obolibrary.org/obo/DRUGBANK_DB09220,none +9.6237882,MONDO:0003429,http://purl.obolibrary.org/obo/MONDO_0003429,functioning pituitary gland adenoma +9.6237882,MONDO:0003604,http://purl.obolibrary.org/obo/MONDO_0003604,functioning pituitary gland neoplasm +9.6237882,PR:000001156,http://purl.obolibrary.org/obo/PR_000001156,Toll-like receptor 5 +9.6237882,PR:000005022,http://purl.obolibrary.org/obo/PR_000005022,calpain small subunit 1 +9.6237882,PR:000014773,http://purl.obolibrary.org/obo/PR_000014773,pulmonary surfactant-associated protein B +9.6244433,DRUGBANK:DB04510,http://purl.obolibrary.org/obo/DRUGBANK_DB04510,none +9.6244433,GO:0035150,http://purl.obolibrary.org/obo/GO_0035150,regulation of tube size +9.6244433,MONDO:0021106,http://purl.obolibrary.org/obo/MONDO_0021106,laminopathy +9.6244433,SO:0001265,http://purl.obolibrary.org/obo/SO_0001265,miRNA_gene +9.6250988,MONDO:0020321,http://purl.obolibrary.org/obo/MONDO_0020321,acute undifferentiated leukemia +9.6257547,GO:0008356,http://purl.obolibrary.org/obo/GO_0008356,asymmetric cell division +9.6257547,GO:0033647,http://purl.obolibrary.org/obo/GO_0033647,host intracellular organelle +9.6257547,MONDO:0003335,http://purl.obolibrary.org/obo/MONDO_0003335,chronic polyneuropathy +9.6257547,MONDO:0005290,http://purl.obolibrary.org/obo/MONDO_0005290,rhabdomyolysis +9.6257547,MONDO:0018059,http://purl.obolibrary.org/obo/MONDO_0018059,meningococcal meningitis +9.6264111,GO:0044218,http://purl.obolibrary.org/obo/GO_0044218,other organism cell membrane +9.6264111,GO:0044279,http://purl.obolibrary.org/obo/GO_0044279,none +9.6264111,GO:0050880,http://purl.obolibrary.org/obo/GO_0050880,none +9.6264111,MONDO:0009761,http://purl.obolibrary.org/obo/MONDO_0009761,cystic hygroma +9.6264111,MONDO:0010674,http://purl.obolibrary.org/obo/MONDO_0010674,mucopolysaccharidosis type 2 +9.6264111,PR:000023928,http://purl.obolibrary.org/obo/PR_000023928,none +9.6270679,PR:Q9SKQ0,http://purl.obolibrary.org/obo/PR_Q9SKQ0,none +9.6277252,PR:000023373,http://purl.obolibrary.org/obo/PR_000023373,none +9.6277252,PR:P18253,http://purl.obolibrary.org/obo/PR_P18253,none +9.6277252,PR:P52010,http://purl.obolibrary.org/obo/PR_P52010,none +9.6277252,PR:P87051,http://purl.obolibrary.org/obo/PR_P87051,none +9.6277252,PR:Q96520,http://purl.obolibrary.org/obo/PR_Q96520,none +9.6277252,PR:Q9TW32,http://purl.obolibrary.org/obo/PR_Q9TW32,none +9.6283829,CHEBI:35660,http://purl.obolibrary.org/obo/CHEBI_35660,HIV protease inhibitor +9.6283829,PR:P62157,http://purl.obolibrary.org/obo/PR_P62157,none +9.629041,PR:000004077,http://purl.obolibrary.org/obo/PR_000004077,annexin A4 +9.629041,PR:000013821,http://purl.obolibrary.org/obo/PR_000013821,retinol-binding protein 4 +9.6296995,DRUGBANK:DB01288,http://purl.obolibrary.org/obo/DRUGBANK_DB01288,none +9.6296995,PR:P47946,http://purl.obolibrary.org/obo/PR_P47946,none +9.6303585,DRUGBANK:DB00327,http://purl.obolibrary.org/obo/DRUGBANK_DB00327,none +9.6303585,UBERON:0002324,http://purl.obolibrary.org/obo/UBERON_0002324,muscle of back +9.6310179,GO:0004467,http://purl.obolibrary.org/obo/GO_0004467,long-chain fatty acid-CoA ligase activity +9.6310179,GO:0036446,http://purl.obolibrary.org/obo/GO_0036446,myofibroblast differentiation +9.6310179,MONDO:0002959,http://purl.obolibrary.org/obo/MONDO_0002959,radiculopathy +9.6310179,PR:000001892,http://purl.obolibrary.org/obo/PR_000001892,CD33 molecule +9.6310179,PR:000012586,http://purl.obolibrary.org/obo/PR_000012586,profilin-2 +9.6316778,MONDO:0019783,http://purl.obolibrary.org/obo/MONDO_0019783,neovascular glaucoma +9.6316778,PR:000001146,http://purl.obolibrary.org/obo/PR_000001146,melanocortin receptor +9.6316778,PR:000002187,http://purl.obolibrary.org/obo/PR_000002187,Bcl-2-like protein 11 +9.632338,CL:0000656,http://purl.obolibrary.org/obo/CL_0000656,primary spermatocyte +9.632338,PR:000010981,http://purl.obolibrary.org/obo/PR_000010981,alpha-soluble NSF attachment protein +9.6329988,GO:0030874,http://purl.obolibrary.org/obo/GO_0030874,nucleolar chromatin +9.6329988,GO:0033687,http://purl.obolibrary.org/obo/GO_0033687,osteoblast proliferation +9.6329988,HP:0030962,http://purl.obolibrary.org/obo/HP_0030962,Abnormal morphology of the great vessels +9.6329988,MONDO:0018945,http://purl.obolibrary.org/obo/MONDO_0018945,McLeod neuroacanthocytosis syndrome +9.6329988,NCBITaxon:694002,http://purl.obolibrary.org/obo/NCBITaxon_694002,Betacoronavirus +9.6329988,PR:000007120,http://purl.obolibrary.org/obo/PR_000007120,ephrin type-A receptor 1 +9.6329988,PR:000011014,http://purl.obolibrary.org/obo/PR_000011014,nibrin +9.6336599,GO:0009820,http://purl.obolibrary.org/obo/GO_0009820,alkaloid metabolic process +9.6343215,DRUGBANK:DB04481,http://purl.obolibrary.org/obo/DRUGBANK_DB04481,none +9.6343215,HP:0011603,http://purl.obolibrary.org/obo/HP_0011603,Congenital malformation of the great arteries +9.6343215,PR:000009751,http://purl.obolibrary.org/obo/PR_000009751,lymphoid enhancer-binding factor 1 +9.6343215,UBERON:0001816,http://purl.obolibrary.org/obo/UBERON_0001816,autonomic nerve plexus +9.6349835,DRUGBANK:DB00289,http://purl.obolibrary.org/obo/DRUGBANK_DB00289,none +9.6349835,DRUGBANK:DB00745,http://purl.obolibrary.org/obo/DRUGBANK_DB00745,none +9.6349835,MONDO:0017366,http://purl.obolibrary.org/obo/MONDO_0017366,hereditary pheochromocytoma-paraganglioma +9.6349835,PR:000006746,http://purl.obolibrary.org/obo/PR_000006746,dual specificity protein phosphatase 2 +9.6349835,PR:000013031,http://purl.obolibrary.org/obo/PR_000013031,periostin +9.6349835,UBERON:0007164,http://purl.obolibrary.org/obo/UBERON_0007164,distal radio-ulnar joint +9.635646,DRUGBANK:DB01182,http://purl.obolibrary.org/obo/DRUGBANK_DB01182,none +9.635646,GO:0008964,http://purl.obolibrary.org/obo/GO_0008964,phosphoenolpyruvate carboxylase activity +9.635646,GO:0048638,http://purl.obolibrary.org/obo/GO_0048638,regulation of developmental growth +9.635646,PR:000003264,http://purl.obolibrary.org/obo/PR_000003264,collagen alpha-1(I) chain +9.635646,PR:000003563,http://purl.obolibrary.org/obo/PR_000003563,ATP-binding cassette sub-family C member 8 +9.635646,UBERON:0001640,http://purl.obolibrary.org/obo/UBERON_0001640,celiac artery +9.6363089,GO:0061982,http://purl.obolibrary.org/obo/GO_0061982,meiosis I cell cycle process +9.6363089,MONDO:0021092,http://purl.obolibrary.org/obo/MONDO_0021092,fallopian tube neoplasm +9.6363089,MONDO:0025149,http://purl.obolibrary.org/obo/MONDO_0025149,"encephalopathy, bovine spongiform" +9.6363089,MONDO:0056821,http://purl.obolibrary.org/obo/MONDO_0056821,bronchiolitis obliterans organizing pneumonia +9.6363089,UBERON:0002223,http://purl.obolibrary.org/obo/UBERON_0002223,endolymphatic sac +9.6369723,MONDO:0019801,http://purl.obolibrary.org/obo/MONDO_0019801,acute adrenal insufficiency +9.6369723,UBERON:1000021,http://purl.obolibrary.org/obo/UBERON_1000021,skin of face +9.6376361,GO:0006733,http://purl.obolibrary.org/obo/GO_0006733,none +9.6376361,GO:0009069,http://purl.obolibrary.org/obo/GO_0009069,serine family amino acid metabolic process +9.6376361,PR:000004126,http://purl.obolibrary.org/obo/PR_000004126,serum amyloid P-component +9.6376361,PR:Q9SZB9,http://purl.obolibrary.org/obo/PR_Q9SZB9,none +9.6376361,UBERON:0014932,http://purl.obolibrary.org/obo/UBERON_0014932,periventricular white matter +9.6383003,DRUGBANK:DB01632,http://purl.obolibrary.org/obo/DRUGBANK_DB01632,none +9.6383003,PR:Q9FYL3,http://purl.obolibrary.org/obo/PR_Q9FYL3,none +9.638965,PR:000015210,http://purl.obolibrary.org/obo/PR_000015210,sodium/hydrogen exchanger 1 +9.638965,UBERON:0002199,http://purl.obolibrary.org/obo/UBERON_0002199,integument +9.6396301,CL:1001434,http://purl.obolibrary.org/obo/CL_1001434,olfactory bulb interneuron +9.6396301,DRUGBANK:DB00259,http://purl.obolibrary.org/obo/DRUGBANK_DB00259,none +9.6396301,PR:Q6PBT8,http://purl.obolibrary.org/obo/PR_Q6PBT8,none +9.6402956,MONDO:0002380,http://purl.obolibrary.org/obo/MONDO_0002380,myoepithelial tumor +9.6402956,UBERON:0002291,http://purl.obolibrary.org/obo/UBERON_0002291,central canal of spinal cord +9.6409616,DRUGBANK:DB00432,http://purl.obolibrary.org/obo/DRUGBANK_DB00432,none +9.6409616,DRUGBANK:DB13831,http://purl.obolibrary.org/obo/DRUGBANK_DB13831,none +9.6409616,GO:0038084,http://purl.obolibrary.org/obo/GO_0038084,vascular endothelial growth factor signaling pathway +9.6409616,MONDO:0016432,http://purl.obolibrary.org/obo/MONDO_0016432,heart-hand syndrome +9.6416281,MONDO:0005236,http://purl.obolibrary.org/obo/MONDO_0005236,xanthoma +9.642295,DRUGBANK:DB09322,http://purl.obolibrary.org/obo/DRUGBANK_DB09322,none +9.642295,GO:0030448,http://purl.obolibrary.org/obo/GO_0030448,hyphal growth +9.642295,MONDO:0016241,http://purl.obolibrary.org/obo/MONDO_0016241,alternating hemiplegia of childhood +9.642295,NCBITaxon:11095,http://purl.obolibrary.org/obo/NCBITaxon_11095,Pestivirus +9.642295,PR:000029291,http://purl.obolibrary.org/obo/PR_000029291,phospholipid-transporting ATPase IB +9.642295,UBERON:0004885,http://purl.obolibrary.org/obo/UBERON_0004885,hilum +9.642295,UBERON:0019267,http://purl.obolibrary.org/obo/UBERON_0019267,gray matter of midbrain +9.6429623,GO:0009110,http://purl.obolibrary.org/obo/GO_0009110,vitamin biosynthetic process +9.6429623,PR:000007185,http://purl.obolibrary.org/obo/PR_000007185,serine/threonine-protein kinase/endoribonuclease IRE1 +9.6429623,PR:000010002,http://purl.obolibrary.org/obo/PR_000010002,tyrosine-protein kinase Lyn +9.6436301,NCBITaxon:11084,http://purl.obolibrary.org/obo/NCBITaxon_11084,Tick-borne encephalitis virus +9.6436301,PR:000010982,http://purl.obolibrary.org/obo/PR_000010982,beta-soluble NSF attachment protein +9.6442983,SO:0001571,http://purl.obolibrary.org/obo/SO_0001571,cryptic_splice_donor +9.644967,GO:0032589,http://purl.obolibrary.org/obo/GO_0032589,neuron projection membrane +9.6456361,GO:0004012,http://purl.obolibrary.org/obo/GO_0004012,none +9.6456361,GO:0061695,http://purl.obolibrary.org/obo/GO_0061695,"transferase complex, transferring phosphorus-containing groups" +9.6456361,PR:000004845,http://purl.obolibrary.org/obo/PR_000004845,protein BTG2 +9.6456361,PR:000006099,http://purl.obolibrary.org/obo/PR_000006099,cytochrome P450 17A1 +9.6456361,PR:000014454,http://purl.obolibrary.org/obo/PR_000014454,GTP-binding protein SAR1a +9.6463057,GO:0016634,http://purl.obolibrary.org/obo/GO_0016634,"oxidoreductase activity, acting on the CH-CH group of donors, oxygen as acceptor" +9.6463057,GO:0030532,http://purl.obolibrary.org/obo/GO_0030532,small nuclear ribonucleoprotein complex +9.6463057,GO:0045120,http://purl.obolibrary.org/obo/GO_0045120,pronucleus +9.6463057,PR:000050003,http://purl.obolibrary.org/obo/PR_000050003,metabotropic glutamate receptor protein +9.6469757,DRUGBANK:DB05485,http://purl.obolibrary.org/obo/DRUGBANK_DB05485,none +9.6469757,DRUGBANK:DB09210,http://purl.obolibrary.org/obo/DRUGBANK_DB09210,none +9.6469757,GO:0030249,http://purl.obolibrary.org/obo/GO_0030249,guanylate cyclase regulator activity +9.6469757,MONDO:0024305,http://purl.obolibrary.org/obo/MONDO_0024305,acquired hyperprolactinemia +9.6476462,DRUGBANK:DB03696,http://purl.obolibrary.org/obo/DRUGBANK_DB03696,none +9.6476462,GO:0003997,http://purl.obolibrary.org/obo/GO_0003997,acyl-CoA oxidase activity +9.6476462,MONDO:0005073,http://purl.obolibrary.org/obo/MONDO_0005073,melanocytic nevus +9.6476462,PR:000008924,http://purl.obolibrary.org/obo/PR_000008924,interferon beta 1 +9.6476462,UBERON:0008952,http://purl.obolibrary.org/obo/UBERON_0008952,upper lobe of left lung +9.6483171,GO:0006555,http://purl.obolibrary.org/obo/GO_0006555,methionine metabolic process +9.6483171,MONDO:0018902,http://purl.obolibrary.org/obo/MONDO_0018902,hepatocellular adenoma +9.6489884,DRUGBANK:DB01023,http://purl.obolibrary.org/obo/DRUGBANK_DB01023,none +9.6489884,PR:000012761,http://purl.obolibrary.org/obo/PR_000012761,pituitary homeobox 3 +9.6489884,SO:0000707,http://purl.obolibrary.org/obo/SO_0000707,trans_splice_donor_site +9.6489884,UBERON:0000011,http://purl.obolibrary.org/obo/UBERON_0000011,parasympathetic nervous system +9.6496603,GO:0005184,http://purl.obolibrary.org/obo/GO_0005184,neuropeptide hormone activity +9.6496603,GO:0070062,http://purl.obolibrary.org/obo/GO_0070062,extracellular exosome +9.6496603,GO:0140694,http://purl.obolibrary.org/obo/GO_0140694,non-membrane-bounded organelle assembly +9.6496603,PR:000014686,http://purl.obolibrary.org/obo/PR_000014686,corticosteroid-binding globulin +9.6496603,PR:Q5TZ66,http://purl.obolibrary.org/obo/PR_Q5TZ66,none +9.6496603,PR:Q6PC54,http://purl.obolibrary.org/obo/PR_Q6PC54,none +9.6503325,PR:000007554,http://purl.obolibrary.org/obo/PR_000007554,protein flightless-1 +9.6503325,PR:Q09624,http://purl.obolibrary.org/obo/PR_Q09624,none +9.6510052,DRUGBANK:DB00590,http://purl.obolibrary.org/obo/DRUGBANK_DB00590,none +9.6510052,GO:0008234,http://purl.obolibrary.org/obo/GO_0008234,cysteine-type peptidase activity +9.6510052,GO:0016846,http://purl.obolibrary.org/obo/GO_0016846,carbon-sulfur lyase activity +9.6510052,MONDO:0005272,http://purl.obolibrary.org/obo/MONDO_0005272,refractory anemia +9.6510052,MONDO:0018365,http://purl.obolibrary.org/obo/MONDO_0018365,malignant non-epithelial tumor of ovary +9.6510052,MONDO:0019171,http://purl.obolibrary.org/obo/MONDO_0019171,familial long QT syndrome +9.6510052,PR:000003912,http://purl.obolibrary.org/obo/PR_000003912,RAC-beta serine/threonine-protein kinase +9.6510052,PR:000031258,http://purl.obolibrary.org/obo/PR_000031258,PDZ domain-containing protein 2 +9.6516784,PR:000007025,http://purl.obolibrary.org/obo/PR_000007025,ETS domain-containing protein Elk-1 +9.6516784,PR:000011510,http://purl.obolibrary.org/obo/PR_000011510,nuclear pore complex protein Nup160 +9.652352,CHEBI:70781,http://purl.obolibrary.org/obo/CHEBI_70781,PPAR modulator +9.652352,DRUGBANK:DB01393,http://purl.obolibrary.org/obo/DRUGBANK_DB01393,none +9.652352,MONDO:0008233,http://purl.obolibrary.org/obo/MONDO_0008233,phaeochromocytoma +9.652352,PR:000050015,http://purl.obolibrary.org/obo/PR_000050015,P2Y receptor +9.6530261,CL:0002193,http://purl.obolibrary.org/obo/CL_0002193,myelocyte +9.6530261,DRUGBANK:DB01253,http://purl.obolibrary.org/obo/DRUGBANK_DB01253,none +9.6530261,HP:0200036,http://purl.obolibrary.org/obo/HP_0200036,Skin nodule +9.6530261,MONDO:0002598,http://purl.obolibrary.org/obo/MONDO_0002598,germinoma +9.6530261,MONDO:0019280,http://purl.obolibrary.org/obo/MONDO_0019280,hypertrichosis +9.6530261,UBERON:0003951,http://purl.obolibrary.org/obo/UBERON_0003951,ocular fundus +9.6543757,DRUGBANK:DB01551,http://purl.obolibrary.org/obo/DRUGBANK_DB01551,none +9.6543757,GO:0001772,http://purl.obolibrary.org/obo/GO_0001772,immunological synapse +9.6543757,GO:0060437,http://purl.obolibrary.org/obo/GO_0060437,lung growth +9.6543757,MONDO:0020133,http://purl.obolibrary.org/obo/MONDO_0020133,posterior fossa malformation +9.6543757,PR:000004912,http://purl.obolibrary.org/obo/PR_000004912,vertebrate-type carbonic anhydrase 1 +9.6550511,DRUGBANK:DB00897,http://purl.obolibrary.org/obo/DRUGBANK_DB00897,none +9.6550511,DRUGBANK:DB11475,http://purl.obolibrary.org/obo/DRUGBANK_DB11475,none +9.6550511,PR:P01731,http://purl.obolibrary.org/obo/PR_P01731,none +9.6564034,CHEBI:76206,http://purl.obolibrary.org/obo/CHEBI_76206,xenobiotic metabolite +9.6564034,DRUGBANK:DB00711,http://purl.obolibrary.org/obo/DRUGBANK_DB00711,none +9.6564034,GO:0044438,http://purl.obolibrary.org/obo/GO_0044438,none +9.6564034,GO:0098764,http://purl.obolibrary.org/obo/GO_0098764,meiosis I cell cycle phase +9.6564034,UBERON:0001902,http://purl.obolibrary.org/obo/UBERON_0001902,epithelium of small intestine +9.6570802,DRUGBANK:DB13964,http://purl.obolibrary.org/obo/DRUGBANK_DB13964,none +9.6570802,MONDO:0021454,http://purl.obolibrary.org/obo/MONDO_0021454,benign neoplasm of eye +9.6570802,PR:000005070,http://purl.obolibrary.org/obo/PR_000005070,E3 ubiquitin-protein ligase CBL +9.6577575,DRUGBANK:DB11397,http://purl.obolibrary.org/obo/DRUGBANK_DB11397,none +9.6577575,GO:0035936,http://purl.obolibrary.org/obo/GO_0035936,testosterone secretion +9.6591134,DRUGBANK:DB05679,http://purl.obolibrary.org/obo/DRUGBANK_DB05679,none +9.6591134,GO:0009646,http://purl.obolibrary.org/obo/GO_0009646,response to absence of light +9.6591134,MONDO:0019573,http://purl.obolibrary.org/obo/MONDO_0019573,autosomal recessive cutis laxa type 2 +9.6597921,CHEBI:25384,http://purl.obolibrary.org/obo/CHEBI_25384,monocarboxylic acid +9.6597921,DRUGBANK:DB00220,http://purl.obolibrary.org/obo/DRUGBANK_DB00220,none +9.6597921,DRUGBANK:DB14361,http://purl.obolibrary.org/obo/DRUGBANK_DB14361,none +9.6597921,MONDO:0007732,http://purl.obolibrary.org/obo/MONDO_0007732,Holt-Oram syndrome +9.6597921,PR:000010138,http://purl.obolibrary.org/obo/PR_000010138,mitogen-activated protein kinase kinase kinase 5 +9.6597921,PR:000016846,http://purl.obolibrary.org/obo/PR_000016846,twist-related protein 1 +9.6604712,GO:0030010,http://purl.obolibrary.org/obo/GO_0030010,establishment of cell polarity +9.6604712,MONDO:0017752,http://purl.obolibrary.org/obo/MONDO_0017752,defect in V-ATPase +9.6604712,PR:000022907,http://purl.obolibrary.org/obo/PR_000022907,none +9.6611507,DRUGBANK:DB00889,http://purl.obolibrary.org/obo/DRUGBANK_DB00889,none +9.6611507,GO:0051647,http://purl.obolibrary.org/obo/GO_0051647,nucleus localization +9.6611507,MONDO:0018163,http://purl.obolibrary.org/obo/MONDO_0018163,autosomal recessive cutis laxa type 2A +9.6618308,GO:0042435,http://purl.obolibrary.org/obo/GO_0042435,indole-containing compound biosynthetic process +9.6618308,MONDO:0010208,http://purl.obolibrary.org/obo/MONDO_0010208,wrinkly skin syndrome +9.6618308,MONDO:0021165,http://purl.obolibrary.org/obo/MONDO_0021165,Paget disease +9.6618308,PR:000006294,http://purl.obolibrary.org/obo/PR_000006294,dopamine beta-hydroxylase +9.6618308,UBERON:0003707,http://purl.obolibrary.org/obo/UBERON_0003707,sinus of Valsalva +9.6625113,MONDO:0001586,http://purl.obolibrary.org/obo/MONDO_0001586,mucopolysaccharidosis type 1 +9.6625113,UBERON:0000074,http://purl.obolibrary.org/obo/UBERON_0000074,renal glomerulus +9.6631923,GO:0016880,http://purl.obolibrary.org/obo/GO_0016880,acid-ammonia (or amide) ligase activity +9.6631923,GO:0044439,http://purl.obolibrary.org/obo/GO_0044439,none +9.6631923,MONDO:0003430,http://purl.obolibrary.org/obo/MONDO_0003430,prolactin producing pituitary tumor +9.6631923,PR:000006510,http://purl.obolibrary.org/obo/PR_000006510,leukemia-associated protein 7 +9.6631923,PR:000011006,http://purl.obolibrary.org/obo/PR_000011006,neuron navigator 1 +9.6638737,CHEBI:75767,http://purl.obolibrary.org/obo/CHEBI_75767,animal metabolite +9.6638737,DRUGBANK:DB00034,http://purl.obolibrary.org/obo/DRUGBANK_DB00034,none +9.6638737,DRUGBANK:DB11590,http://purl.obolibrary.org/obo/DRUGBANK_DB11590,none +9.6638737,SO:0001762,http://purl.obolibrary.org/obo/SO_0001762,variant_origin +9.6645556,CHEBI:75768,http://purl.obolibrary.org/obo/CHEBI_75768,mammalian metabolite +9.6645556,MONDO:0000476,http://purl.obolibrary.org/obo/MONDO_0000476,generalized dystonia +9.6645556,MONDO:0010196,http://purl.obolibrary.org/obo/MONDO_0010196,Werner syndrome +9.6645556,PR:000005835,http://purl.obolibrary.org/obo/PR_000005835,"carnitine O-palmitoyltransferase 1, liver isoform" +9.6652379,CHEBI:35381,http://purl.obolibrary.org/obo/CHEBI_35381,monosaccharide +9.6652379,CHEBI:77746,http://purl.obolibrary.org/obo/CHEBI_77746,human metabolite +9.6652379,MONDO:0006001,http://purl.obolibrary.org/obo/MONDO_0006001,urinary schistosomiasis +9.6652379,PR:000005365,http://purl.obolibrary.org/obo/PR_000005365,liver carboxylesterase 1 +9.6652379,PR:000007491,http://purl.obolibrary.org/obo/PR_000007491,fibroblast growth factor 21 +9.6652379,PR:000013397,http://purl.obolibrary.org/obo/PR_000013397,proteasome assembly chaperone 1 +9.6652379,SO:0001811,http://purl.obolibrary.org/obo/SO_0001811,phosphorylation_site +9.6652379,UBERON:0002061,http://purl.obolibrary.org/obo/UBERON_0002061,truncus arteriosus +9.6659208,DRUGBANK:DB01409,http://purl.obolibrary.org/obo/DRUGBANK_DB01409,none +9.6659208,PR:000001013,http://purl.obolibrary.org/obo/PR_000001013,integrin alpha-X +9.6672878,UBERON:0000950,http://purl.obolibrary.org/obo/UBERON_0000950,gracilis +9.6679721,DRUGBANK:DB07810,http://purl.obolibrary.org/obo/DRUGBANK_DB07810,none +9.6679721,DRUGBANK:DB14003,http://purl.obolibrary.org/obo/DRUGBANK_DB14003,none +9.6679721,GO:0046488,http://purl.obolibrary.org/obo/GO_0046488,phosphatidylinositol metabolic process +9.6679721,PR:000023598,http://purl.obolibrary.org/obo/PR_000023598,none +9.6686568,CL:0002495,http://purl.obolibrary.org/obo/CL_0002495,fetal cardiomyocyte +9.6686568,DRUGBANK:DB12803,http://purl.obolibrary.org/obo/DRUGBANK_DB12803,none +9.6686568,GO:0008209,http://purl.obolibrary.org/obo/GO_0008209,androgen metabolic process +9.6686568,GO:0009813,http://purl.obolibrary.org/obo/GO_0009813,flavonoid biosynthetic process +9.6686568,GO:0047555,http://purl.obolibrary.org/obo/GO_0047555,"3',5'-cyclic-GMP phosphodiesterase activity" +9.6693419,DRUGBANK:DB02596,http://purl.obolibrary.org/obo/DRUGBANK_DB02596,none +9.6693419,DRUGBANK:DB11720,http://purl.obolibrary.org/obo/DRUGBANK_DB11720,none +9.6693419,GO:0071484,http://purl.obolibrary.org/obo/GO_0071484,cellular response to light intensity +9.6693419,GO:0071485,http://purl.obolibrary.org/obo/GO_0071485,cellular response to absence of light +9.6693419,GO:1990603,http://purl.obolibrary.org/obo/GO_1990603,dark adaptation +9.6693419,MONDO:0001342,http://purl.obolibrary.org/obo/MONDO_0001342,dysgammaglobulinemia +9.6693419,PR:000001412,http://purl.obolibrary.org/obo/PR_000001412,CD86 molecule +9.6693419,PR:000001566,http://purl.obolibrary.org/obo/PR_000001566,N-formyl peptide receptor 2 +9.6693419,SO:0001769,http://purl.obolibrary.org/obo/SO_0001769,variant_phenotype +9.6700276,CHEBI:49103,http://purl.obolibrary.org/obo/CHEBI_49103,drug metabolite +9.6700276,CHEBI:76967,http://purl.obolibrary.org/obo/CHEBI_76967,human xenobiotic metabolite +9.6700276,GO:0001646,http://purl.obolibrary.org/obo/GO_0001646,cAMP receptor activity +9.6700276,HP:0003110,http://purl.obolibrary.org/obo/HP_0003110,Abnormality of urine homeostasis +9.6700276,PR:Q01474,http://purl.obolibrary.org/obo/PR_Q01474,none +9.6700276,UBERON:0010938,http://purl.obolibrary.org/obo/UBERON_0010938,muscle belly +9.6707137,DRUGBANK:DB11120,http://purl.obolibrary.org/obo/DRUGBANK_DB11120,none +9.6707137,DRUGBANK:DB15301,http://purl.obolibrary.org/obo/DRUGBANK_DB15301,none +9.6707137,GO:0006582,http://purl.obolibrary.org/obo/GO_0006582,melanin metabolic process +9.6720873,DRUGBANK:DB03895,http://purl.obolibrary.org/obo/DRUGBANK_DB03895,none +9.6727748,GO:0006090,http://purl.obolibrary.org/obo/GO_0006090,pyruvate metabolic process +9.6727748,MONDO:0000701,http://purl.obolibrary.org/obo/MONDO_0000701,ischemic colitis +9.6734628,GO:0009826,http://purl.obolibrary.org/obo/GO_0009826,unidimensional cell growth +9.6734628,MONDO:0007604,http://purl.obolibrary.org/obo/MONDO_0007604,femoral-facial syndrome +9.6734628,NCBITaxon:11161,http://purl.obolibrary.org/obo/NCBITaxon_11161,Mumps virus +9.6734628,PR:000012587,http://purl.obolibrary.org/obo/PR_000012587,profilin-3 +9.6734628,PR:000016730,http://purl.obolibrary.org/obo/PR_000016730,thymic stromal lymphopoietin +9.6734628,UBERON:0009625,http://purl.obolibrary.org/obo/UBERON_0009625,sacral nerve +9.6748402,DRUGBANK:DB11859,http://purl.obolibrary.org/obo/DRUGBANK_DB11859,none +9.6748402,GO:0005984,http://purl.obolibrary.org/obo/GO_0005984,disaccharide metabolic process +9.6748402,GO:0016999,http://purl.obolibrary.org/obo/GO_0016999,antibiotic metabolic process +9.6755296,DRUGBANK:DB03900,http://purl.obolibrary.org/obo/DRUGBANK_DB03900,none +9.6755296,DRUGBANK:DB11058,http://purl.obolibrary.org/obo/DRUGBANK_DB11058,none +9.6755296,GO:0004527,http://purl.obolibrary.org/obo/GO_0004527,exonuclease activity +9.6755296,MONDO:0010788,http://purl.obolibrary.org/obo/MONDO_0010788,Leber hereditary optic neuropathy +9.6755296,PR:000012326,http://purl.obolibrary.org/obo/PR_000012326,pre-B-cell leukemia transcription factor 1 +9.6755296,PR:000016183,http://purl.obolibrary.org/obo/PR_000016183,transcription factor 4 +9.6762195,DRUGBANK:DB00523,http://purl.obolibrary.org/obo/DRUGBANK_DB00523,none +9.6762195,MONDO:0003739,http://purl.obolibrary.org/obo/MONDO_0003739,selective immunoglobulin deficiency disease +9.6762195,UBERON:0019291,http://purl.obolibrary.org/obo/UBERON_0019291,white matter of metencephalon +9.6769099,MONDO:0012672,http://purl.obolibrary.org/obo/MONDO_0012672,cholelithiasis +9.6769099,MONDO:0024389,http://purl.obolibrary.org/obo/MONDO_0024389,anaerobic bacteria infectious disease +9.6769099,PR:000001151,http://purl.obolibrary.org/obo/PR_000001151,Toll-like receptor 1 +9.6769099,PR:000001431,http://purl.obolibrary.org/obo/PR_000001431,N-formyl peptide receptor +9.6769099,PR:000016357,http://purl.obolibrary.org/obo/PR_000016357,tubulointerstitial nephritis antigen-like +9.6769099,PR:000022249,http://purl.obolibrary.org/obo/PR_000022249,none +9.6769099,PR:000027498,http://purl.obolibrary.org/obo/PR_000027498,none +9.6776007,GO:0005938,http://purl.obolibrary.org/obo/GO_0005938,cell cortex +9.6776007,HP:0000479,http://purl.obolibrary.org/obo/HP_0000479,Abnormal retinal morphology +9.6776007,MONDO:0006564,http://purl.obolibrary.org/obo/MONDO_0006564,irritant dermatitis +9.6776007,NCBITaxon:6447,http://purl.obolibrary.org/obo/NCBITaxon_6447,Mollusca +9.6776007,PR:000013756,http://purl.obolibrary.org/obo/PR_000013756,Ras-specific guanine nucleotide-releasing factor 1 +9.6776007,SO:0000772,http://purl.obolibrary.org/obo/SO_0000772,genomic_island +9.6782921,CHEBI:33636,http://purl.obolibrary.org/obo/CHEBI_33636,bicyclic compound +9.6782921,CHEBI:51958,http://purl.obolibrary.org/obo/CHEBI_51958,organic polycyclic compound +9.6782921,DRUGBANK:DB06589,http://purl.obolibrary.org/obo/DRUGBANK_DB06589,none +9.6782921,MONDO:0024238,http://purl.obolibrary.org/obo/MONDO_0024238,cerebral degeneration +9.6782921,PR:000007553,http://purl.obolibrary.org/obo/PR_000007553,Friend leukemia integration 1 transcription factor +9.6796761,DRUGBANK:DB04703,http://purl.obolibrary.org/obo/DRUGBANK_DB04703,none +9.6796761,NCBITaxon:11584,http://purl.obolibrary.org/obo/NCBITaxon_11584,Phlebovirus +9.6796761,PR:000000791,http://purl.obolibrary.org/obo/PR_000000791,voltage-gated potassium channel KCNH2 +9.6803689,PR:000003466,http://purl.obolibrary.org/obo/PR_000003466,perforin-1 +9.6803689,PR:000005838,http://purl.obolibrary.org/obo/PR_000005838,"carnitine O-palmitoyltransferase 2, mitochondrial" +9.6810622,DRUGBANK:DB00248,http://purl.obolibrary.org/obo/DRUGBANK_DB00248,none +9.6810622,GO:0009505,http://purl.obolibrary.org/obo/GO_0009505,plant-type cell wall +9.6810622,GO:0044782,http://purl.obolibrary.org/obo/GO_0044782,cilium organization +9.6817559,CHEBI:65265,http://purl.obolibrary.org/obo/CHEBI_65265,antacid +9.6817559,MONDO:0017716,http://purl.obolibrary.org/obo/MONDO_0017716,disorder of carnitine cycle and carnitine transport +9.6824501,GO:0051270,http://purl.obolibrary.org/obo/GO_0051270,regulation of cellular component movement +9.6824501,GO:0071594,http://purl.obolibrary.org/obo/GO_0071594,thymocyte aggregation +9.6831448,DRUGBANK:DB13446,http://purl.obolibrary.org/obo/DRUGBANK_DB13446,none +9.6831448,GO:0003955,http://purl.obolibrary.org/obo/GO_0003955,NAD(P)H dehydrogenase (quinone) activity +9.6831448,MONDO:0017016,http://purl.obolibrary.org/obo/MONDO_0017016,primary interstitial lung disease specific to childhood due to alveolar structure disorder +9.6831448,PR:000007499,http://purl.obolibrary.org/obo/PR_000007499,fibroblast growth factor 8 +9.6838399,DRUGBANK:DB00736,http://purl.obolibrary.org/obo/DRUGBANK_DB00736,none +9.6838399,GO:0004913,http://purl.obolibrary.org/obo/GO_0004913,interleukin-4 receptor activity +9.6838399,MONDO:0021228,http://purl.obolibrary.org/obo/MONDO_0021228,brainstem neoplasm +9.6838399,MONDO:0021460,http://purl.obolibrary.org/obo/MONDO_0021460,benign neoplasm of salivary gland +9.6852317,GO:0007051,http://purl.obolibrary.org/obo/GO_0007051,spindle organization +9.6852317,MONDO:0002528,http://purl.obolibrary.org/obo/MONDO_0002528,synovium neoplasm +9.6852317,MONDO:0005297,http://purl.obolibrary.org/obo/MONDO_0005297,urethritis +9.6859283,CL:1001608,http://purl.obolibrary.org/obo/CL_1001608,foreskin fibroblast +9.6859283,GO:0003002,http://purl.obolibrary.org/obo/GO_0003002,regionalization +9.6859283,MONDO:0001083,http://purl.obolibrary.org/obo/MONDO_0001083,Fanconi renotubular syndrome +9.6866254,DRUGBANK:DB13100,http://purl.obolibrary.org/obo/DRUGBANK_DB13100,none +9.6866254,PR:000001179,http://purl.obolibrary.org/obo/PR_000001179,D(4) dopamine receptor +9.687323,GO:0008028,http://purl.obolibrary.org/obo/GO_0008028,monocarboxylic acid transmembrane transporter activity +9.687323,GO:0047488,http://purl.obolibrary.org/obo/GO_0047488,heparin lyase activity +9.687323,MONDO:0016129,http://purl.obolibrary.org/obo/MONDO_0016129,eosinophilic gastroenteritis +9.687323,PR:000012804,http://purl.obolibrary.org/obo/PR_000012804,cytosolic phospholipase A2 +9.687323,PR:000015736,http://purl.obolibrary.org/obo/PR_000015736,stromal interaction molecule 1 +9.687323,SO:0000481,http://purl.obolibrary.org/obo/SO_0000481,terminal_inverted_repeat +9.6880211,DRUGBANK:DB04326,http://purl.obolibrary.org/obo/DRUGBANK_DB04326,none +9.6880211,MONDO:0008327,http://purl.obolibrary.org/obo/MONDO_0008327,exfoliation syndrome +9.6880211,PR:000008485,http://purl.obolibrary.org/obo/PR_000008485,histone deacetylase 6 +9.6887197,GO:0006536,http://purl.obolibrary.org/obo/GO_0006536,glutamate metabolic process +9.6887197,GO:0034660,http://purl.obolibrary.org/obo/GO_0034660,ncRNA metabolic process +9.6887197,NCBITaxon:153136,http://purl.obolibrary.org/obo/NCBITaxon_153136,Deltaretrovirus +9.6887197,PR:000011616,http://purl.obolibrary.org/obo/PR_000011616,N-glycosylase/DNA lyase +9.6894187,DRUGBANK:DB12818,http://purl.obolibrary.org/obo/DRUGBANK_DB12818,none +9.6894187,MONDO:0011334,http://purl.obolibrary.org/obo/MONDO_0011334,limb-mammary syndrome +9.6894187,PR:000010151,http://purl.obolibrary.org/obo/PR_000010151,mitogen-activated protein kinase 10 +9.6894187,UBERON:0004750,http://purl.obolibrary.org/obo/UBERON_0004750,blastoderm +9.6901183,GO:0016529,http://purl.obolibrary.org/obo/GO_0016529,sarcoplasmic reticulum +9.6901183,PR:000001125,http://purl.obolibrary.org/obo/PR_000001125,cannabinoid receptor 1 +9.6901183,UBERON:0001351,http://purl.obolibrary.org/obo/UBERON_0001351,lacrimal sac +9.6908183,DRUGBANK:DB00320,http://purl.obolibrary.org/obo/DRUGBANK_DB00320,none +9.6908183,DRUGBANK:DB00341,http://purl.obolibrary.org/obo/DRUGBANK_DB00341,none +9.6908183,GO:0042384,http://purl.obolibrary.org/obo/GO_0042384,none +9.6908183,MONDO:0008537,http://purl.obolibrary.org/obo/MONDO_0008537,telecanthus +9.6908183,PR:000002993,http://purl.obolibrary.org/obo/PR_000002993,natural resistance-associated macrophage protein 2 +9.6915189,CHEBI:62733,http://purl.obolibrary.org/obo/CHEBI_62733,aromatic amide +9.6922199,GO:0042438,http://purl.obolibrary.org/obo/GO_0042438,melanin biosynthetic process +9.6922199,MONDO:0002540,http://purl.obolibrary.org/obo/MONDO_0002540,childhood oligodendroglioma +9.6922199,MONDO:0003404,http://purl.obolibrary.org/obo/MONDO_0003404,adult yolk sac tumor +9.6922199,MONDO:0016338,http://purl.obolibrary.org/obo/MONDO_0016338,non-familial dilated cardiomyopathy +9.6922199,UBERON:0018303,http://purl.obolibrary.org/obo/UBERON_0018303,adrenal tissue +9.6929214,PR:000004135,http://purl.obolibrary.org/obo/PR_000004135,apelin +9.6929214,PR:000005105,http://purl.obolibrary.org/obo/PR_000005105,girdin +9.6929214,PR:000012239,http://purl.obolibrary.org/obo/PR_000012239,serine/threonine-protein kinase PAK 1 +9.6929214,UBERON:0001593,http://purl.obolibrary.org/obo/UBERON_0001593,venous plexus +9.6929214,UBERON:0009899,http://purl.obolibrary.org/obo/UBERON_0009899,pole of cerebral hemisphere +9.6936234,MONDO:0004700,http://purl.obolibrary.org/obo/MONDO_0004700,parotid gland cancer +9.6936234,PR:Q8VYX0,http://purl.obolibrary.org/obo/PR_Q8VYX0,none +9.6936234,PR:Q9LSV0,http://purl.obolibrary.org/obo/PR_Q9LSV0,none +9.6943259,CHEBI:36342,http://purl.obolibrary.org/obo/CHEBI_36342,subatomic particle +9.6943259,DRUGBANK:DB14150,http://purl.obolibrary.org/obo/DRUGBANK_DB14150,none +9.6943259,MONDO:0000481,http://purl.obolibrary.org/obo/MONDO_0000481,cervical dystonia +9.6943259,MONDO:0002543,http://purl.obolibrary.org/obo/MONDO_0002543,adult oligodendroglioma +9.6950289,DRUGBANK:DB00611,http://purl.obolibrary.org/obo/DRUGBANK_DB00611,none +9.6950289,DRUGBANK:DB13156,http://purl.obolibrary.org/obo/DRUGBANK_DB13156,none +9.6950289,GO:0038127,http://purl.obolibrary.org/obo/GO_0038127,ERBB signaling pathway +9.6950289,UBERON:0003727,http://purl.obolibrary.org/obo/UBERON_0003727,intercostal nerve +9.6957323,GO:0042170,http://purl.obolibrary.org/obo/GO_0042170,plastid membrane +9.6957323,PR:000001255,http://purl.obolibrary.org/obo/PR_000001255,C-C chemokine receptor type 3 +9.6964363,MONDO:0012481,http://purl.obolibrary.org/obo/MONDO_0012481,mevalonic aciduria +9.6964363,PR:000005907,http://purl.obolibrary.org/obo/PR_000005907,alpha-crystallin A chain +9.6964363,PR:000029946,http://purl.obolibrary.org/obo/PR_000029946,glutathione S-transferase alpha +9.6964363,UBERON:0001752,http://purl.obolibrary.org/obo/UBERON_0001752,enamel +9.6964363,UBERON:0006637,http://purl.obolibrary.org/obo/UBERON_0006637,celiac trunk +9.6971408,CHEBI:27171,http://purl.obolibrary.org/obo/CHEBI_27171,organic heterobicyclic compound +9.6971408,CHEBI:33672,http://purl.obolibrary.org/obo/CHEBI_33672,heterobicyclic compound +9.6971408,DRUGBANK:DB02272,http://purl.obolibrary.org/obo/DRUGBANK_DB02272,none +9.6971408,DRUGBANK:DB08838,http://purl.obolibrary.org/obo/DRUGBANK_DB08838,none +9.6971408,GO:0007127,http://purl.obolibrary.org/obo/GO_0007127,meiosis I +9.6971408,MONDO:0016691,http://purl.obolibrary.org/obo/MONDO_0016691,pilocytic astrocytoma +9.6971408,UBERON:0001373,http://purl.obolibrary.org/obo/UBERON_0001373,sartorius muscle +9.6978458,CHEBI:48353,http://purl.obolibrary.org/obo/CHEBI_48353,serine proteinase inhibitor +9.6978458,CHEBI:5924,http://purl.obolibrary.org/obo/CHEBI_5924,EC 3.4.21.* (serine endopeptidase) inhibitor +9.6978458,DRUGBANK:DB09096,http://purl.obolibrary.org/obo/DRUGBANK_DB09096,none +9.6978458,DRUGBANK:DB14364,http://purl.obolibrary.org/obo/DRUGBANK_DB14364,none +9.6978458,GO:0060284,http://purl.obolibrary.org/obo/GO_0060284,regulation of cell development +9.6978458,MONDO:0009723,http://purl.obolibrary.org/obo/MONDO_0009723,Leigh syndrome +9.6985512,MONDO:0000819,http://purl.obolibrary.org/obo/MONDO_0000819,anencephaly +9.6985512,MONDO:0020677,http://purl.obolibrary.org/obo/MONDO_0020677,sudden hearing loss disorder +9.6992572,MONDO:0006879,http://purl.obolibrary.org/obo/MONDO_0006879,optic papillitis +9.6992572,MONDO:0043373,http://purl.obolibrary.org/obo/MONDO_0043373,sudden sensorineural hearing loss +9.6992572,UBERON:0007115,http://purl.obolibrary.org/obo/UBERON_0007115,deciduous tooth +9.6999637,DRUGBANK:DB09877,http://purl.obolibrary.org/obo/DRUGBANK_DB09877,none +9.6999637,GO:0003867,http://purl.obolibrary.org/obo/GO_0003867,4-aminobutyrate transaminase activity +9.7006706,DRUGBANK:DB10424,http://purl.obolibrary.org/obo/DRUGBANK_DB10424,none +9.7006706,GO:0055037,http://purl.obolibrary.org/obo/GO_0055037,recycling endosome +9.7006706,MONDO:0004183,http://purl.obolibrary.org/obo/MONDO_0004183,axonal neuropathy +9.7006706,MONDO:0005649,http://purl.obolibrary.org/obo/MONDO_0005649,appendicitis +9.7006706,MONDO:0009971,http://purl.obolibrary.org/obo/MONDO_0009971,newborn respiratory distress syndrome +9.7006706,MONDO:0043287,http://purl.obolibrary.org/obo/MONDO_0043287,superior vena cava syndrome +9.7006706,NCBITaxon:2842242,http://purl.obolibrary.org/obo/NCBITaxon_2842242,Ribozyviria +9.7006706,NCBITaxon:2842321,http://purl.obolibrary.org/obo/NCBITaxon_2842321,Kolmioviridae +9.7006706,NCBITaxon:39759,http://purl.obolibrary.org/obo/NCBITaxon_39759,Deltavirus +9.7006706,UBERON:0001542,http://purl.obolibrary.org/obo/UBERON_0001542,inguinal lymph node +9.7006706,UBERON:0005906,http://purl.obolibrary.org/obo/UBERON_0005906,serous sac +9.7013781,CL:0002457,http://purl.obolibrary.org/obo/CL_0002457,epidermal Langerhans cell +9.7013781,GO:0004659,http://purl.obolibrary.org/obo/GO_0004659,prenyltransferase activity +9.7013781,GO:0042181,http://purl.obolibrary.org/obo/GO_0042181,ketone biosynthetic process +9.7013781,MONDO:0017919,http://purl.obolibrary.org/obo/MONDO_0017919,bladder exstrophy-epispadias-cloacal exstrophy complex +9.7013781,NCBITaxon:12475,http://purl.obolibrary.org/obo/NCBITaxon_12475,Hepatitis delta virus +9.7013781,NCBITaxon:2157,http://purl.obolibrary.org/obo/NCBITaxon_2157,Archaea +9.7013781,PR:000006542,http://purl.obolibrary.org/obo/PR_000006542,doublesex- and mab-3-related transcription factor 1 +9.7020861,DRUGBANK:DB04821,http://purl.obolibrary.org/obo/DRUGBANK_DB04821,none +9.7020861,GO:0004961,http://purl.obolibrary.org/obo/GO_0004961,thromboxane A2 receptor activity +9.7020861,GO:0016863,http://purl.obolibrary.org/obo/GO_0016863,"intramolecular oxidoreductase activity, transposing C=C bonds" +9.7020861,MONDO:0020250,http://purl.obolibrary.org/obo/MONDO_0020250,autosomal dominant optic atrophy +9.7020861,PR:000011245,http://purl.obolibrary.org/obo/PR_000011245,homeobox protein Nkx-2.5 +9.7020861,UBERON:0001394,http://purl.obolibrary.org/obo/UBERON_0001394,axillary artery +9.7027945,GO:0004339,http://purl.obolibrary.org/obo/GO_0004339,"glucan 1,4-alpha-glucosidase activity" +9.7035035,DRUGBANK:DB10636,http://purl.obolibrary.org/obo/DRUGBANK_DB10636,none +9.7035035,MONDO:0006412,http://purl.obolibrary.org/obo/MONDO_0006412,sinus histiocytosis with massive lymphadenopathy +9.7035035,PR:000016053,http://purl.obolibrary.org/obo/PR_000016053,tapasin +9.704213,DRUGBANK:DB00842,http://purl.obolibrary.org/obo/DRUGBANK_DB00842,none +9.704213,DRUGBANK:DB11336,http://purl.obolibrary.org/obo/DRUGBANK_DB11336,none +9.704213,GO:0003918,http://purl.obolibrary.org/obo/GO_0003918,"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity" +9.704213,GO:0046460,http://purl.obolibrary.org/obo/GO_0046460,neutral lipid biosynthetic process +9.704213,GO:0098597,http://purl.obolibrary.org/obo/GO_0098597,observational learning +9.704213,PR:000004402,http://purl.obolibrary.org/obo/PR_000004402,cyclic AMP-dependent transcription factor ATF-6 alpha +9.704213,PR:000010986,http://purl.obolibrary.org/obo/PR_000010986,napsin-A +9.7049229,DRUGBANK:DB11638,http://purl.obolibrary.org/obo/DRUGBANK_DB11638,none +9.7049229,GO:0004873,http://purl.obolibrary.org/obo/GO_0004873,asialoglycoprotein receptor activity +9.7049229,MONDO:0000916,http://purl.obolibrary.org/obo/MONDO_0000916,intestinal infectious disease +9.7049229,PR:000008437,http://purl.obolibrary.org/obo/PR_000008437,histidine ammonia-lyase +9.7056334,UBERON:0001803,http://purl.obolibrary.org/obo/UBERON_0001803,epithelium of lens +9.7063444,MONDO:0018848,http://purl.obolibrary.org/obo/MONDO_0018848,IgG4-related retroperitoneal fibrosis +9.7070559,MONDO:0018937,http://purl.obolibrary.org/obo/MONDO_0018937,mucopolysaccharidosis type 3 +9.7077679,CHEBI:22702,http://purl.obolibrary.org/obo/CHEBI_22702,benzamides +9.7077679,MONDO:0000690,http://purl.obolibrary.org/obo/MONDO_0000690,body dysmorphic disorder +9.7077679,MONDO:0016420,http://purl.obolibrary.org/obo/MONDO_0016420,familial flecked retinopathy +9.7084804,CHEBI:73240,http://purl.obolibrary.org/obo/CHEBI_73240,NF-kappaB inhibitor +9.7084804,GO:0016211,http://purl.obolibrary.org/obo/GO_0016211,ammonia ligase activity +9.7091934,CHEBI:22645,http://purl.obolibrary.org/obo/CHEBI_22645,arenecarboxamide +9.7091934,GO:0014009,http://purl.obolibrary.org/obo/GO_0014009,glial cell proliferation +9.7091934,PR:000002316,http://purl.obolibrary.org/obo/PR_000002316,caspase-7 +9.7091934,PR:000011038,http://purl.obolibrary.org/obo/PR_000011038,nucleolin +9.7099069,DRUGBANK:DB03501,http://purl.obolibrary.org/obo/DRUGBANK_DB03501,none +9.7099069,GO:0048102,http://purl.obolibrary.org/obo/GO_0048102,autophagic cell death +9.7099069,GO:0090087,http://purl.obolibrary.org/obo/GO_0090087,regulation of peptide transport +9.7099069,MONDO:0020511,http://purl.obolibrary.org/obo/MONDO_0020511,precursor B-cell acute lymphoblastic leukemia +9.7099069,PR:000001815,http://purl.obolibrary.org/obo/PR_000001815,GPI-linked NAD(P)(+)--arginine ADP-ribosyltransferase 1 +9.7099069,PR:000008015,http://purl.obolibrary.org/obo/PR_000008015,alpha-galactosidase A +9.7099069,UBERON:0002381,http://purl.obolibrary.org/obo/UBERON_0002381,pectoralis major +9.710621,CL:0000398,http://purl.obolibrary.org/obo/CL_0000398,polygonal cell +9.710621,MONDO:0020654,http://purl.obolibrary.org/obo/MONDO_0020654,renal pelvis/ureter urothelial carcinoma +9.7113355,CHEBI:15693,http://purl.obolibrary.org/obo/CHEBI_15693,aldose +9.7113355,MONDO:0015301,http://purl.obolibrary.org/obo/MONDO_0015301,primary cutaneous amyloidosis +9.7113355,UBERON:0002118,http://purl.obolibrary.org/obo/UBERON_0002118,right ovary +9.7120505,CHEBI:36340,http://purl.obolibrary.org/obo/CHEBI_36340,fermion +9.7120505,GO:0070555,http://purl.obolibrary.org/obo/GO_0070555,response to interleukin-1 +9.7120505,MONDO:0010561,http://purl.obolibrary.org/obo/MONDO_0010561,Coffin-Lowry syndrome +9.7120505,PR:000008801,http://purl.obolibrary.org/obo/PR_000008801,endoplasmin +9.7127661,GO:0046912,http://purl.obolibrary.org/obo/GO_0046912,"acyltransferase, acyl groups converted into alkyl on transfer" +9.7127661,PR:000009198,http://purl.obolibrary.org/obo/PR_000009198,tyrosine-protein kinase JAK3 +9.7134822,DRUGBANK:DB01264,http://purl.obolibrary.org/obo/DRUGBANK_DB01264,none +9.7134822,DRUGBANK:DB03095,http://purl.obolibrary.org/obo/DRUGBANK_DB03095,none +9.7134822,PR:000006151,http://purl.obolibrary.org/obo/PR_000006151,CCN family member 1 +9.7141988,DRUGBANK:DB03627,http://purl.obolibrary.org/obo/DRUGBANK_DB03627,none +9.7141988,PR:000001435,http://purl.obolibrary.org/obo/PR_000001435,none +9.7141988,PR:000044651,http://purl.obolibrary.org/obo/PR_000044651,none +9.7149159,DRUGBANK:DB01269,http://purl.obolibrary.org/obo/DRUGBANK_DB01269,none +9.7149159,DRUGBANK:DB04780,http://purl.obolibrary.org/obo/DRUGBANK_DB04780,none +9.7149159,DRUGBANK:DB12358,http://purl.obolibrary.org/obo/DRUGBANK_DB12358,none +9.7149159,PR:000032304,http://purl.obolibrary.org/obo/PR_000032304,nitric oxide-associated protein 1 +9.7156335,MONDO:0005524,http://purl.obolibrary.org/obo/MONDO_0005524,sweat gland carcinoma +9.7156335,PR:000008482,http://purl.obolibrary.org/obo/PR_000008482,histone deacetylase 3 +9.7163516,DRUGBANK:DB08884,http://purl.obolibrary.org/obo/DRUGBANK_DB08884,none +9.7163516,DRUGBANK:DB10830,http://purl.obolibrary.org/obo/DRUGBANK_DB10830,none +9.7163516,MONDO:0000625,http://purl.obolibrary.org/obo/MONDO_0000625,benign male reproductive system neoplasm +9.7163516,MONDO:0006006,http://purl.obolibrary.org/obo/MONDO_0006006,verrucous carcinoma +9.7163516,MONDO:0018646,http://purl.obolibrary.org/obo/MONDO_0018646,sclerosing cholangitis +9.7163516,NCBITaxon:2509481,http://purl.obolibrary.org/obo/NCBITaxon_2509481,none +9.7163516,PR:000015829,http://purl.obolibrary.org/obo/PR_000015829,small ubiquitin-related modifier 1 +9.7170703,NCBITaxon:11864,http://purl.obolibrary.org/obo/NCBITaxon_11864,none +9.7177894,GO:0017064,http://purl.obolibrary.org/obo/GO_0017064,fatty acid amide hydrolase activity +9.7177894,GO:0032838,http://purl.obolibrary.org/obo/GO_0032838,plasma membrane bounded cell projection cytoplasm +9.7177894,MONDO:0002335,http://purl.obolibrary.org/obo/MONDO_0002335,chronic inflammatory demyelinating polyneuritis +9.7177894,MONDO:0004781,http://purl.obolibrary.org/obo/MONDO_0004781,acute myocardial infarction +9.7177894,MONDO:0004847,http://purl.obolibrary.org/obo/MONDO_0004847,senile cataract +9.7177894,MONDO:0012004,http://purl.obolibrary.org/obo/MONDO_0012004,parathyroid gland carcinoma +9.7177894,PR:000007997,http://purl.obolibrary.org/obo/PR_000007997,gap junction beta-1 protein +9.7177894,PR:000010967,http://purl.obolibrary.org/obo/PR_000010967,nicotinamide phosphoribosyltransferase +9.7177894,PR:000017522,http://purl.obolibrary.org/obo/PR_000017522,transcriptional coactivator YAP1 +9.7185091,CHEBI:10545,http://purl.obolibrary.org/obo/CHEBI_10545,electron +9.7185091,CHEBI:33233,http://purl.obolibrary.org/obo/CHEBI_33233,fundamental particle +9.7185091,CHEBI:36338,http://purl.obolibrary.org/obo/CHEBI_36338,lepton +9.7185091,DRUGBANK:DB09459,http://purl.obolibrary.org/obo/DRUGBANK_DB09459,none +9.7185091,GO:0001523,http://purl.obolibrary.org/obo/GO_0001523,retinoid metabolic process +9.7185091,HP:0002066,http://purl.obolibrary.org/obo/HP_0002066,Gait ataxia +9.7185091,PR:000007787,http://purl.obolibrary.org/obo/PR_000007787,growth arrest and DNA damage-inducible protein GADD45 alpha +9.7185091,PR:000008994,http://purl.obolibrary.org/obo/PR_000008994,interleukin-1 receptor-like 1 +9.7185091,PR:000015165,http://purl.obolibrary.org/obo/PR_000015165,sodium/glucose cotransporter 1 +9.7185091,SO:0001203,http://purl.obolibrary.org/obo/SO_0001203,none +9.7185091,UBERON:0005493,http://purl.obolibrary.org/obo/UBERON_0005493,hyoid muscle +9.7192293,CL:0002627,http://purl.obolibrary.org/obo/CL_0002627,mature astrocyte +9.7192293,MONDO:0001240,http://purl.obolibrary.org/obo/MONDO_0001240,neonatal anemia +9.7192293,MONDO:0004845,http://purl.obolibrary.org/obo/MONDO_0004845,aphthous stomatitis +9.7192293,PR:000001214,http://purl.obolibrary.org/obo/PR_000001214,C-C chemokine receptor-like 2 +9.71995,MONDO:0010557,http://purl.obolibrary.org/obo/MONDO_0010557,choroideremia +9.71995,UBERON:0016386,http://purl.obolibrary.org/obo/UBERON_0016386,paraaortic lymph node +9.7206713,DRUGBANK:DB00275,http://purl.obolibrary.org/obo/DRUGBANK_DB00275,none +9.7206713,DRUGBANK:DB04228,http://purl.obolibrary.org/obo/DRUGBANK_DB04228,none +9.7206713,DRUGBANK:DB08899,http://purl.obolibrary.org/obo/DRUGBANK_DB08899,none +9.7206713,GO:0051603,http://purl.obolibrary.org/obo/GO_0051603,proteolysis involved in cellular protein catabolic process +9.7206713,NCBITaxon:11232,http://purl.obolibrary.org/obo/NCBITaxon_11232,Canine morbillivirus +9.7206713,NCBITaxon:142786,http://purl.obolibrary.org/obo/NCBITaxon_142786,Norovirus +9.7206713,PR:000015522,http://purl.obolibrary.org/obo/PR_000015522,sphingosine kinase 1 +9.7206713,UBERON:0011024,http://purl.obolibrary.org/obo/UBERON_0011024,extrinsic extensor muscle of manus +9.7213931,DRUGBANK:DB00309,http://purl.obolibrary.org/obo/DRUGBANK_DB00309,none +9.7213931,PR:000003610,http://purl.obolibrary.org/obo/PR_000003610,"acetyl-CoA acetyltransferase, mitochondrial" +9.7213931,PR:000015924,http://purl.obolibrary.org/obo/PR_000015924,none +9.7213931,UBERON:0004203,http://purl.obolibrary.org/obo/UBERON_0004203,cortical collecting duct +9.7221153,MONDO:0021657,http://purl.obolibrary.org/obo/MONDO_0021657,ovarian sex cord-stromal tumor +9.7228381,GO:0016840,http://purl.obolibrary.org/obo/GO_0016840,carbon-nitrogen lyase activity +9.7228381,HP:0001287,http://purl.obolibrary.org/obo/HP_0001287,Meningitis +9.7235615,DRUGBANK:DB01281,http://purl.obolibrary.org/obo/DRUGBANK_DB01281,none +9.7235615,GO:0015630,http://purl.obolibrary.org/obo/GO_0015630,microtubule cytoskeleton +9.7235615,GO:0048286,http://purl.obolibrary.org/obo/GO_0048286,lung alveolus development +9.7242853,DRUGBANK:DB09031,http://purl.obolibrary.org/obo/DRUGBANK_DB09031,none +9.7242853,GO:0072608,http://purl.obolibrary.org/obo/GO_0072608,none +9.7242853,HP:0001920,http://purl.obolibrary.org/obo/HP_0001920,Renal artery stenosis +9.7242853,HP:0008776,http://purl.obolibrary.org/obo/HP_0008776,Abnormal renal artery morphology +9.7242853,HP:0033835,http://purl.obolibrary.org/obo/HP_0033835,Abnormal renal vascular morphology +9.7242853,HP:0033836,http://purl.obolibrary.org/obo/HP_0033836,Abnormal intrarenal artery morphology +9.7242853,PR:000011328,http://purl.obolibrary.org/obo/PR_000011328,"nitric oxide synthase, endothelial" +9.7257346,DRUGBANK:DB00752,http://purl.obolibrary.org/obo/DRUGBANK_DB00752,none +9.7257346,GO:0050421,http://purl.obolibrary.org/obo/GO_0050421,nitrite reductase (NO-forming) activity +9.7257346,MONDO:0003345,http://purl.obolibrary.org/obo/MONDO_0003345,hilar cholangiocarcinoma +9.7257346,PR:000010474,http://purl.obolibrary.org/obo/PR_000010474,matrix metalloproteinase-14 +9.7257346,UBERON:0002219,http://purl.obolibrary.org/obo/UBERON_0002219,subfornical organ +9.72646,GO:0002791,http://purl.obolibrary.org/obo/GO_0002791,regulation of peptide secretion +9.72646,GO:0007015,http://purl.obolibrary.org/obo/GO_0007015,actin filament organization +9.72646,MONDO:0005779,http://purl.obolibrary.org/obo/MONDO_0005779,"hand, foot and mouth disease" +9.727186,MONDO:0000471,http://purl.obolibrary.org/obo/MONDO_0000471,tricuspid valve disease +9.727186,PR:000001299,http://purl.obolibrary.org/obo/PR_000001299,none +9.7279125,DRUGBANK:DB14224,http://purl.obolibrary.org/obo/DRUGBANK_DB14224,none +9.7279125,MONDO:0005211,http://purl.obolibrary.org/obo/MONDO_0005211,ovarian serous adenocarcinoma +9.7279125,MONDO:0006804,http://purl.obolibrary.org/obo/MONDO_0006804,inflammatory breast carcinoma +9.7279125,UBERON:0002119,http://purl.obolibrary.org/obo/UBERON_0002119,left ovary +9.7286395,DRUGBANK:DB00920,http://purl.obolibrary.org/obo/DRUGBANK_DB00920,none +9.7286395,HP:0002354,http://purl.obolibrary.org/obo/HP_0002354,Memory impairment +9.7286395,MONDO:0017271,http://purl.obolibrary.org/obo/MONDO_0017271,autosomal ichthyosis syndrome with prominent hair abnormalities +9.729367,DRUGBANK:DB10826,http://purl.obolibrary.org/obo/DRUGBANK_DB10826,none +9.729367,GO:0010852,http://purl.obolibrary.org/obo/GO_0010852,cyclase inhibitor activity +9.729367,MONDO:0005449,http://purl.obolibrary.org/obo/MONDO_0005449,conduction system disorder +9.729367,UBERON:0019292,http://purl.obolibrary.org/obo/UBERON_0019292,white matter of pons +9.7300951,CL:0000782,http://purl.obolibrary.org/obo/CL_0000782,myeloid dendritic cell +9.7300951,CL:0007010,http://purl.obolibrary.org/obo/CL_0007010,preosteoblast +9.7300951,CL:2000030,http://purl.obolibrary.org/obo/CL_2000030,hypothalamus cell +9.7308237,CL:0000767,http://purl.obolibrary.org/obo/CL_0000767,basophil +9.7308237,MONDO:0005346,http://purl.obolibrary.org/obo/MONDO_0005346,gallstones +9.7308237,MONDO:0018511,http://purl.obolibrary.org/obo/MONDO_0018511,epithelial tumor of the appendix +9.7308237,MONDO:0024885,http://purl.obolibrary.org/obo/MONDO_0024885,malignant ovarian serous tumor +9.7308237,UBERON:0002770,http://purl.obolibrary.org/obo/UBERON_0002770,posterior hypothalamic region +9.7308237,UBERON:0018257,http://purl.obolibrary.org/obo/UBERON_0018257,submucosa of digestive tract +9.7315528,DRUGBANK:DB00740,http://purl.obolibrary.org/obo/DRUGBANK_DB00740,none +9.7315528,GO:0044772,http://purl.obolibrary.org/obo/GO_0044772,mitotic cell cycle phase transition +9.7315528,GO:0090276,http://purl.obolibrary.org/obo/GO_0090276,regulation of peptide hormone secretion +9.7315528,PR:000010972,http://purl.obolibrary.org/obo/PR_000010972,nanos homolog 3 +9.7315528,PR:000012836,http://purl.obolibrary.org/obo/PR_000012836,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-1" +9.7315528,PR:000015349,http://purl.obolibrary.org/obo/PR_000015349,small nuclear ribonucleoprotein-associated protein N +9.7315528,UBERON:0006328,http://purl.obolibrary.org/obo/UBERON_0006328,laryngeal intrinsic muscle +9.7322825,CHEBI:33559,http://purl.obolibrary.org/obo/CHEBI_33559,s-block element atom +9.7322825,DRUGBANK:DB01421,http://purl.obolibrary.org/obo/DRUGBANK_DB01421,none +9.7322825,GO:0006390,http://purl.obolibrary.org/obo/GO_0006390,mitochondrial transcription +9.7322825,PR:000012516,http://purl.obolibrary.org/obo/PR_000012516,podoplanin +9.7322825,PR:000016051,http://purl.obolibrary.org/obo/PR_000016051,antigen peptide transporter 1 +9.7330126,MONDO:0002979,http://purl.obolibrary.org/obo/MONDO_0002979,papillary squamous carcinoma +9.7337434,MONDO:0001982,http://purl.obolibrary.org/obo/MONDO_0001982,Niemann-Pick disease +9.7337434,MONDO:0006834,http://purl.obolibrary.org/obo/MONDO_0006834,lip cancer +9.7337434,MONDO:0019558,http://purl.obolibrary.org/obo/MONDO_0019558,discoid lupus erythematosus +9.7337434,PR:000001254,http://purl.obolibrary.org/obo/PR_000001254,C-C chemokine receptor type 1 +9.7344746,GO:0009411,http://purl.obolibrary.org/obo/GO_0009411,response to UV +9.7344746,GO:0036276,http://purl.obolibrary.org/obo/GO_0036276,response to antidepressant +9.7352064,CHEBI:6343,http://purl.obolibrary.org/obo/CHEBI_6343,labetalol +9.7352064,CL:0011003,http://purl.obolibrary.org/obo/CL_0011003,magnocellular neurosecretory cell (duplicate class) +9.7352064,GO:0019815,http://purl.obolibrary.org/obo/GO_0019815,B cell receptor complex +9.7352064,NCBITaxon:91835,http://purl.obolibrary.org/obo/NCBITaxon_91835,fabids +9.7352064,PR:000005387,http://purl.obolibrary.org/obo/PR_000005387,properdin +9.7359388,GO:2000145,http://purl.obolibrary.org/obo/GO_2000145,regulation of cell motility +9.7359388,UBERON:0004362,http://purl.obolibrary.org/obo/UBERON_0004362,pharyngeal arch 1 +9.7366716,DRUGBANK:DB00647,http://purl.obolibrary.org/obo/DRUGBANK_DB00647,none +9.7366716,DRUGBANK:DB11343,http://purl.obolibrary.org/obo/DRUGBANK_DB11343,none +9.7366716,PR:000011270,http://purl.obolibrary.org/obo/PR_000011270,"NACHT, LRR and PYD domains-containing protein 2" +9.7366716,PR:Q02650,http://purl.obolibrary.org/obo/PR_Q02650,none +9.7366716,PR:Q9ZSY2,http://purl.obolibrary.org/obo/PR_Q9ZSY2,none +9.737405,DRUGBANK:DB06155,http://purl.obolibrary.org/obo/DRUGBANK_DB06155,none +9.737405,GO:0030162,http://purl.obolibrary.org/obo/GO_0030162,regulation of proteolysis +9.737405,SO:0000275,http://purl.obolibrary.org/obo/SO_0000275,snoRNA +9.737405,UBERON:0001259,http://purl.obolibrary.org/obo/UBERON_0001259,mucosa of urinary bladder +9.737405,UBERON:0003843,http://purl.obolibrary.org/obo/UBERON_0003843,dental epithelium +9.738139,GO:0009432,http://purl.obolibrary.org/obo/GO_0009432,SOS response +9.738139,HP:0001660,http://purl.obolibrary.org/obo/HP_0001660,Truncus arteriosus +9.738139,MONDO:0016524,http://purl.obolibrary.org/obo/MONDO_0016524,congenital vascular bone syndrome +9.738139,PR:000013671,http://purl.obolibrary.org/obo/PR_000013671,DNA repair protein RAD50 +9.7388735,MONDO:0003249,http://purl.obolibrary.org/obo/MONDO_0003249,pineal gland cancer +9.7388735,PR:000016137,http://purl.obolibrary.org/obo/PR_000016137,TATA-box-binding protein +9.7388735,UBERON:0001801,http://purl.obolibrary.org/obo/UBERON_0001801,anterior segment of eyeball +9.7396085,DRUGBANK:DB00303,http://purl.obolibrary.org/obo/DRUGBANK_DB00303,none +9.7396085,DRUGBANK:DB09446,http://purl.obolibrary.org/obo/DRUGBANK_DB09446,none +9.7396085,GO:0010458,http://purl.obolibrary.org/obo/GO_0010458,exit from mitosis +9.7403441,DRUGBANK:DB00006,http://purl.obolibrary.org/obo/DRUGBANK_DB00006,none +9.7403441,GO:0001817,http://purl.obolibrary.org/obo/GO_0001817,regulation of cytokine production +9.7403441,GO:0017000,http://purl.obolibrary.org/obo/GO_0017000,antibiotic biosynthetic process +9.7403441,PR:P08170,http://purl.obolibrary.org/obo/PR_P08170,none +9.7410802,CHEBI:18133,http://purl.obolibrary.org/obo/CHEBI_18133,hexose +9.7410802,CHEBI:33917,http://purl.obolibrary.org/obo/CHEBI_33917,aldohexose +9.7410802,DRUGBANK:DB00342,http://purl.obolibrary.org/obo/DRUGBANK_DB00342,none +9.7410802,DRUGBANK:DB01257,http://purl.obolibrary.org/obo/DRUGBANK_DB01257,none +9.7410802,DRUGBANK:DB11333,http://purl.obolibrary.org/obo/DRUGBANK_DB11333,none +9.7410802,GO:0004356,http://purl.obolibrary.org/obo/GO_0004356,glutamate-ammonia ligase activity +9.7410802,PR:000007858,http://purl.obolibrary.org/obo/PR_000007858,endothelial transcription factor GATA-2 +9.7418168,MONDO:0001590,http://purl.obolibrary.org/obo/MONDO_0001590,quadriplegia +9.742554,DRUGBANK:DB10318,http://purl.obolibrary.org/obo/DRUGBANK_DB10318,none +9.742554,UBERON:0001151,http://purl.obolibrary.org/obo/UBERON_0001151,tail of pancreas +9.7432917,DRUGBANK:DB00357,http://purl.obolibrary.org/obo/DRUGBANK_DB00357,none +9.7432917,DRUGBANK:DB00614,http://purl.obolibrary.org/obo/DRUGBANK_DB00614,none +9.7432917,MONDO:0018362,http://purl.obolibrary.org/obo/MONDO_0018362,persistent idiopathic facial pain +9.74403,GO:0045814,http://purl.obolibrary.org/obo/GO_0045814,"negative regulation of gene expression, epigenetic" +9.74403,GO:0120111,http://purl.obolibrary.org/obo/GO_0120111,neuron projection cytoplasm +9.74403,UBERON:0002019,http://purl.obolibrary.org/obo/UBERON_0002019,accessory XI nerve +9.7447688,CHEBI:71196,http://purl.obolibrary.org/obo/CHEBI_71196,glucagon-like peptide-1 receptor agonist +9.7447688,GO:0006029,http://purl.obolibrary.org/obo/GO_0006029,proteoglycan metabolic process +9.7447688,PR:P38990,http://purl.obolibrary.org/obo/PR_P38990,none +9.7447688,PR:P40494,http://purl.obolibrary.org/obo/PR_P40494,none +9.7447688,UBERON:0002883,http://purl.obolibrary.org/obo/UBERON_0002883,central amygdaloid nucleus +9.7455082,DRUGBANK:DB08398,http://purl.obolibrary.org/obo/DRUGBANK_DB08398,none +9.7455082,PR:000000002,http://purl.obolibrary.org/obo/PR_000000002,E3 ubiquitin ligase SFC complex Skp1 subunit +9.7455082,PR:000000004,http://purl.obolibrary.org/obo/PR_000000004,RING-box protein +9.7455082,PR:000000045,http://purl.obolibrary.org/obo/PR_000000045,S-phase kinase-associated protein 1A +9.7455082,PR:Q9SHG5,http://purl.obolibrary.org/obo/PR_Q9SHG5,none +9.7455082,UBERON:0001531,http://purl.obolibrary.org/obo/UBERON_0001531,right common carotid artery plus branches +9.7462481,DRUGBANK:DB00459,http://purl.obolibrary.org/obo/DRUGBANK_DB00459,none +9.7462481,SO:0000725,http://purl.obolibrary.org/obo/SO_0000725,transit_peptide +9.7469886,CHEBI:33699,http://purl.obolibrary.org/obo/CHEBI_33699,messenger RNA +9.7469886,MONDO:0007113,http://purl.obolibrary.org/obo/MONDO_0007113,Angelman syndrome +9.7469886,NCBITaxon:1489922,http://purl.obolibrary.org/obo/NCBITaxon_1489922,Eupercaria +9.7469886,PR:000016696,http://purl.obolibrary.org/obo/PR_000016696,short transient receptor potential channel 6 +9.7469886,SO:0000033,http://purl.obolibrary.org/obo/SO_0000033,RNA_aptamer +9.7469886,UBERON:0002809,http://purl.obolibrary.org/obo/UBERON_0002809,right temporal lobe +9.7484712,GO:0031461,http://purl.obolibrary.org/obo/GO_0031461,cullin-RING ubiquitin ligase complex +9.7484712,MONDO:0001920,http://purl.obolibrary.org/obo/MONDO_0001920,chronic purulent otitis media +9.7484712,PR:000024097,http://purl.obolibrary.org/obo/PR_000024097,none +9.749956,DRUGBANK:DB01037,http://purl.obolibrary.org/obo/DRUGBANK_DB01037,none +9.749956,GO:0004040,http://purl.obolibrary.org/obo/GO_0004040,amidase activity +9.749956,GO:1990752,http://purl.obolibrary.org/obo/GO_1990752,microtubule end +9.749956,MONDO:0002522,http://purl.obolibrary.org/obo/MONDO_0002522,tenosynovial giant cell tumor +9.749956,PR:000000676,http://purl.obolibrary.org/obo/PR_000000676,potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel protein +9.749956,PR:000005005,http://purl.obolibrary.org/obo/PR_000005005,calnexin +9.7506992,CHEBI:17234,http://purl.obolibrary.org/obo/CHEBI_17234,glucose +9.7506992,DRUGBANK:DB00612,http://purl.obolibrary.org/obo/DRUGBANK_DB00612,none +9.7506992,GO:0070970,http://purl.obolibrary.org/obo/GO_0070970,none +9.7506992,HP:0011893,http://purl.obolibrary.org/obo/HP_0011893,Abnormal leukocyte count +9.7506992,PR:H3K2Y6,http://purl.obolibrary.org/obo/PR_H3K2Y6,none +9.7514429,GO:0007178,http://purl.obolibrary.org/obo/GO_0007178,transmembrane receptor protein serine/threonine kinase signaling pathway +9.7514429,MONDO:0002466,http://purl.obolibrary.org/obo/MONDO_0002466,eye carcinoma +9.7514429,MONDO:0006787,http://purl.obolibrary.org/obo/MONDO_0006787,hidrocystoma +9.7514429,PR:P34117,http://purl.obolibrary.org/obo/PR_P34117,none +9.7514429,UBERON:0001901,http://purl.obolibrary.org/obo/UBERON_0001901,epithelium of trachea +9.7514429,UBERON:0004130,http://purl.obolibrary.org/obo/UBERON_0004130,cerebellar layer +9.7521873,MONDO:0001705,http://purl.obolibrary.org/obo/MONDO_0001705,pure red-cell aplasia +9.7521873,PR:000007509,http://purl.obolibrary.org/obo/PR_000007509,fibroleukin +9.7521873,PR:000014411,http://purl.obolibrary.org/obo/PR_000014411,protein S100-A4 +9.7521873,PR:Q6EWH2,http://purl.obolibrary.org/obo/PR_Q6EWH2,none +9.7529322,PR:000012320,http://purl.obolibrary.org/obo/PR_000012320,paired box protein Pax-8 +9.7536776,NCBITaxon:7712,http://purl.obolibrary.org/obo/NCBITaxon_7712,Tunicata +9.7536776,PR:000001774,http://purl.obolibrary.org/obo/PR_000001774,inhibitor of nuclear factor kappa-B kinase complex alpha/beta subunits +9.7536776,PR:000001824,http://purl.obolibrary.org/obo/PR_000001824,NADPH oxidase 1 +9.7536776,PR:000012733,http://purl.obolibrary.org/obo/PR_000012733,serine/threonine-protein kinase Pim-2 +9.7536776,UBERON:0000428,http://purl.obolibrary.org/obo/UBERON_0000428,prostate epithelium +9.7544236,CHEBI:50846,http://purl.obolibrary.org/obo/CHEBI_50846,immunomodulator +9.7544236,DRUGBANK:DB10631,http://purl.obolibrary.org/obo/DRUGBANK_DB10631,none +9.7544236,DRUGBANK:DB12110,http://purl.obolibrary.org/obo/DRUGBANK_DB12110,none +9.7544236,MONDO:0001823,http://purl.obolibrary.org/obo/MONDO_0001823,sick sinus syndrome +9.7544236,MONDO:0022103,http://purl.obolibrary.org/obo/MONDO_0022103,chronic prostatitis +9.7544236,PR:000001800,http://purl.obolibrary.org/obo/PR_000001800,5'-nucleotidase +9.7544236,PR:000011040,http://purl.obolibrary.org/obo/PR_000011040,nuclear receptor coactivator 1 +9.7551701,GO:0001946,http://purl.obolibrary.org/obo/GO_0001946,lymphangiogenesis +9.7551701,GO:0005731,http://purl.obolibrary.org/obo/GO_0005731,nucleolus organizer region +9.7551701,PR:000003791,http://purl.obolibrary.org/obo/PR_000003791,beta-adrenergic receptor kinase 1 +9.7551701,PR:O60952,http://purl.obolibrary.org/obo/PR_O60952,none +9.7551701,PR:P41964,http://purl.obolibrary.org/obo/PR_P41964,none +9.7551701,UBERON:0003386,http://purl.obolibrary.org/obo/UBERON_0003386,smooth muscle of eye +9.7559172,DRUGBANK:DB09141,http://purl.obolibrary.org/obo/DRUGBANK_DB09141,none +9.7559172,GO:0009187,http://purl.obolibrary.org/obo/GO_0009187,cyclic nucleotide metabolic process +9.7559172,NCBITaxon:11983,http://purl.obolibrary.org/obo/NCBITaxon_11983,none +9.7566649,GO:0006730,http://purl.obolibrary.org/obo/GO_0006730,one-carbon metabolic process +9.7566649,GO:0010212,http://purl.obolibrary.org/obo/GO_0010212,response to ionizing radiation +9.7566649,GO:0030305,http://purl.obolibrary.org/obo/GO_0030305,heparanase activity +9.7566649,MONDO:0020502,http://purl.obolibrary.org/obo/MONDO_0020502,yellow fever +9.7566649,MONDO:0020581,http://purl.obolibrary.org/obo/MONDO_0020581,benign PEComa +9.7566649,PR:000001402,http://purl.obolibrary.org/obo/PR_000001402,killer cell lectin-like receptor subfamily D member 1 +9.7566649,PR:000002288,http://purl.obolibrary.org/obo/PR_000002288,TNF receptor-associated factor 2 +9.7574131,MONDO:0005683,http://purl.obolibrary.org/obo/MONDO_0005683,brucellosis +9.7574131,MONDO:0044354,http://purl.obolibrary.org/obo/MONDO_0044354,Rosai-Dorfman disease +9.7581619,GO:0043090,http://purl.obolibrary.org/obo/GO_0043090,amino acid import +9.7581619,GO:0046463,http://purl.obolibrary.org/obo/GO_0046463,acylglycerol biosynthetic process +9.7581619,UBERON:0012451,http://purl.obolibrary.org/obo/UBERON_0012451,sensory receptor +9.7589112,GO:0040039,http://purl.obolibrary.org/obo/GO_0040039,inductive cell migration +9.7589112,MONDO:0000469,http://purl.obolibrary.org/obo/MONDO_0000469,sinoatrial node disease +9.7596611,GO:0007160,http://purl.obolibrary.org/obo/GO_0007160,cell-matrix adhesion +9.7596611,GO:0051236,http://purl.obolibrary.org/obo/GO_0051236,establishment of RNA localization +9.7596611,PR:000013457,http://purl.obolibrary.org/obo/PR_000013457,tyrosine-protein phosphatase non-receptor type 22 +9.7596611,PR:000014687,http://purl.obolibrary.org/obo/PR_000014687,thyroxine-binding globulin +9.7596611,PR:000017445,http://purl.obolibrary.org/obo/PR_000017445,protein Wnt-5a +9.7611627,DRUGBANK:DB01141,http://purl.obolibrary.org/obo/DRUGBANK_DB01141,none +9.7611627,PR:000001346,http://purl.obolibrary.org/obo/PR_000001346,endosialin +9.7611627,UBERON:0009768,http://purl.obolibrary.org/obo/UBERON_0009768,distal interphalangeal joint +9.7611627,UBERON:0017650,http://purl.obolibrary.org/obo/UBERON_0017650,developing mesenchymal structure +9.7619142,CHEBI:35705,http://purl.obolibrary.org/obo/CHEBI_35705,immunosuppressive agent +9.7619142,GO:0051225,http://purl.obolibrary.org/obo/GO_0051225,spindle assembly +9.7619142,UBERON:0000474,http://purl.obolibrary.org/obo/UBERON_0000474,female reproductive system +9.7626664,GO:0006907,http://purl.obolibrary.org/obo/GO_0006907,pinocytosis +9.7626664,GO:0031503,http://purl.obolibrary.org/obo/GO_0031503,protein-containing complex localization +9.7626664,MONDO:0015798,http://purl.obolibrary.org/obo/MONDO_0015798,inflammatory myofibroblastic tumor +9.7626664,MONDO:0041656,http://purl.obolibrary.org/obo/MONDO_0041656,ST-elevation myocardial infarction +9.7626664,PR:000014775,http://purl.obolibrary.org/obo/PR_000014775,pulmonary surfactant-associated protein D +9.7634191,GO:0045500,http://purl.obolibrary.org/obo/GO_0045500,sevenless signaling pathway +9.7634191,MONDO:0016812,http://purl.obolibrary.org/obo/MONDO_0016812,dopa-responsive dystonia +9.7634191,PR:000013033,http://purl.obolibrary.org/obo/PR_000013033,pituitary-specific positive transcription factor 1 +9.7641724,DRUGBANK:DB00852,http://purl.obolibrary.org/obo/DRUGBANK_DB00852,none +9.7641724,DRUGBANK:DB09008,http://purl.obolibrary.org/obo/DRUGBANK_DB09008,none +9.7641724,MONDO:0006927,http://purl.obolibrary.org/obo/MONDO_0006927,Rickettsiaceae infectious disease +9.7641724,PR:000007889,http://purl.obolibrary.org/obo/PR_000007889,germinal center-associated signaling and motility protein +9.7649263,DRUGBANK:DB00426,http://purl.obolibrary.org/obo/DRUGBANK_DB00426,none +9.7664357,CL:1001571,http://purl.obolibrary.org/obo/CL_1001571,hippocampal pyramidal neuron +9.7664357,GO:0010565,http://purl.obolibrary.org/obo/GO_0010565,regulation of cellular ketone metabolic process +9.7664357,MONDO:0024467,http://purl.obolibrary.org/obo/MONDO_0024467,apocrine sweat gland disease +9.7664357,PR:000014909,http://purl.obolibrary.org/obo/PR_000014909,S-phase kinase-associated protein 2 +9.7671913,DRUGBANK:DB04468,http://purl.obolibrary.org/obo/DRUGBANK_DB04468,none +9.7671913,DRUGBANK:DB15667,http://purl.obolibrary.org/obo/DRUGBANK_DB15667,none +9.7671913,MONDO:0002629,http://purl.obolibrary.org/obo/MONDO_0002629,bone osteosarcoma +9.7671913,MONDO:0016349,http://purl.obolibrary.org/obo/MONDO_0016349,congenital hydrocephalus +9.7671913,PR:000001221,http://purl.obolibrary.org/obo/PR_000001221,endothelin-1 receptor +9.7671913,PR:O35876,http://purl.obolibrary.org/obo/PR_O35876,none +9.7671913,PR:P97801,http://purl.obolibrary.org/obo/PR_P97801,none +9.7671913,PR:Q9W6S8,http://purl.obolibrary.org/obo/PR_Q9W6S8,none +9.7679474,DRUGBANK:DB01326,http://purl.obolibrary.org/obo/DRUGBANK_DB01326,none +9.7679474,DRUGBANK:DB10584,http://purl.obolibrary.org/obo/DRUGBANK_DB10584,none +9.7679474,GO:0004948,http://purl.obolibrary.org/obo/GO_0004948,calcitonin receptor activity +9.7687042,DRUGBANK:DB11073,http://purl.obolibrary.org/obo/DRUGBANK_DB11073,none +9.7687042,MONDO:0005399,http://purl.obolibrary.org/obo/MONDO_0005399,venous thromboembolism +9.7687042,PR:000003284,http://purl.obolibrary.org/obo/PR_000003284,dual specificity mitogen-activated protein kinase kinase 3 +9.7694615,CHEBI:50751,http://purl.obolibrary.org/obo/CHEBI_50751,anti-estrogen +9.7694615,GO:0008154,http://purl.obolibrary.org/obo/GO_0008154,actin polymerization or depolymerization +9.7694615,GO:0018193,http://purl.obolibrary.org/obo/GO_0018193,peptidyl-amino acid modification +9.7694615,MONDO:0001415,http://purl.obolibrary.org/obo/MONDO_0001415,atrophy of testis +9.7694615,PR:000001780,http://purl.obolibrary.org/obo/PR_000001780,interleukin-1 receptor-associated kinase 4 +9.7694615,UBERON:0010415,http://purl.obolibrary.org/obo/UBERON_0010415,barrel cortex +9.7702193,DRUGBANK:DB01297,http://purl.obolibrary.org/obo/DRUGBANK_DB01297,none +9.7702193,GO:0017171,http://purl.obolibrary.org/obo/GO_0017171,serine hydrolase activity +9.7702193,HP:0012115,http://purl.obolibrary.org/obo/HP_0012115,Hepatitis +9.7702193,MONDO:0000728,http://purl.obolibrary.org/obo/MONDO_0000728,ptosis +9.7702193,PR:000012315,http://purl.obolibrary.org/obo/PR_000012315,paired box protein Pax-2 +9.7702193,UBERON:0004801,http://purl.obolibrary.org/obo/UBERON_0004801,cervix epithelium +9.7709778,GO:0019202,http://purl.obolibrary.org/obo/GO_0019202,amino acid kinase activity +9.7709778,GO:0030056,http://purl.obolibrary.org/obo/GO_0030056,hemidesmosome +9.7709778,MONDO:0019203,http://purl.obolibrary.org/obo/MONDO_0019203,acute interstitial pneumonia +9.7709778,PR:000006536,http://purl.obolibrary.org/obo/PR_000006536,meiotic recombination protein DMC1/LIM15 +9.7709778,PR:000024129,http://purl.obolibrary.org/obo/PR_000024129,none +9.7709778,UBERON:0018604,http://purl.obolibrary.org/obo/UBERON_0018604,upper lateral incisor tooth +9.7717368,MONDO:0005606,http://purl.obolibrary.org/obo/MONDO_0005606,tubular adenocarcinoma +9.7717368,PR:000008609,http://purl.obolibrary.org/obo/PR_000008609,hexokinase-2 +9.7717368,PR:000008910,http://purl.obolibrary.org/obo/PR_000008910,interferon-induced helicase C domain-containing protein 1 +9.7724964,GO:0001727,http://purl.obolibrary.org/obo/GO_0001727,lipid kinase activity +9.7724964,PR:P43291,http://purl.obolibrary.org/obo/PR_P43291,none +9.7732565,DRUGBANK:DB02557,http://purl.obolibrary.org/obo/DRUGBANK_DB02557,none +9.7732565,GO:0005720,http://purl.obolibrary.org/obo/GO_0005720,none +9.7732565,MONDO:0018502,http://purl.obolibrary.org/obo/MONDO_0018502,hereditary gastric cancer +9.7732565,PR:000012319,http://purl.obolibrary.org/obo/PR_000012319,paired box protein Pax-7 +9.7732565,PR:000013248,http://purl.obolibrary.org/obo/PR_000013248,prolactin receptor +9.7732565,UBERON:0006558,http://purl.obolibrary.org/obo/UBERON_0006558,lymphatic part of lymphoid system +9.7740173,MONDO:0000866,http://purl.obolibrary.org/obo/MONDO_0000866,myoglobinuria +9.7747786,DRUGBANK:DB04574,http://purl.obolibrary.org/obo/DRUGBANK_DB04574,none +9.7747786,GO:0030136,http://purl.obolibrary.org/obo/GO_0030136,clathrin-coated vesicle +9.7747786,PR:000004399,http://purl.obolibrary.org/obo/PR_000004399,cyclic AMP-dependent transcription factor ATF-3 +9.7755405,GO:0008090,http://purl.obolibrary.org/obo/GO_0008090,retrograde axonal transport +9.7755405,PR:000002090,http://purl.obolibrary.org/obo/PR_000002090,signal transducer and activator of transcription 4 +9.7755405,PR:000003146,http://purl.obolibrary.org/obo/PR_000003146,TRAF family member-associated NF-kappa-B activator +9.776303,PR:Q03251,http://purl.obolibrary.org/obo/PR_Q03251,none +9.7770661,CHEBI:35226,http://purl.obolibrary.org/obo/CHEBI_35226,spin probe +9.7770661,GO:0050804,http://purl.obolibrary.org/obo/GO_0050804,modulation of chemical synaptic transmission +9.7770661,GO:1903825,http://purl.obolibrary.org/obo/GO_1903825,organic acid transmembrane transport +9.7770661,HP:0003474,http://purl.obolibrary.org/obo/HP_0003474,Somatic sensory dysfunction +9.7778297,DRUGBANK:DB10389,http://purl.obolibrary.org/obo/DRUGBANK_DB10389,none +9.7778297,GO:0050658,http://purl.obolibrary.org/obo/GO_0050658,RNA transport +9.7778297,PR:000003057,http://purl.obolibrary.org/obo/PR_000003057,conventional protein kinase C +9.7778297,SO:0001189,http://purl.obolibrary.org/obo/SO_0001189,LNA_oligo +9.7785939,DRUGBANK:DB01688,http://purl.obolibrary.org/obo/DRUGBANK_DB01688,none +9.7785939,NCBITaxon:11768,http://purl.obolibrary.org/obo/NCBITaxon_11768,Feline leukemia virus +9.7785939,PR:000004205,http://purl.obolibrary.org/obo/PR_000004205,ADP-ribosylation factor 6 +9.7785939,UBERON:0001118,http://purl.obolibrary.org/obo/UBERON_0001118,lobe of thyroid gland +9.7785939,UBERON:0001738,http://purl.obolibrary.org/obo/UBERON_0001738,thyroid cartilage +9.7793588,DRUGBANK:DB00672,http://purl.obolibrary.org/obo/DRUGBANK_DB00672,none +9.7793588,DRUGBANK:DB02329,http://purl.obolibrary.org/obo/DRUGBANK_DB02329,none +9.7793588,DRUGBANK:DB06719,http://purl.obolibrary.org/obo/DRUGBANK_DB06719,none +9.7793588,GO:0004143,http://purl.obolibrary.org/obo/GO_0004143,diacylglycerol kinase activity +9.7793588,PR:000013423,http://purl.obolibrary.org/obo/PR_000013423,prostaglandin E synthase 3 +9.7793588,UBERON:0002053,http://purl.obolibrary.org/obo/UBERON_0002053,zona glomerulosa of adrenal gland +9.7793588,UBERON:0004221,http://purl.obolibrary.org/obo/UBERON_0004221,intestine smooth muscle +9.7801242,DRUGBANK:DB01566,http://purl.obolibrary.org/obo/DRUGBANK_DB01566,none +9.7801242,MONDO:0000413,http://purl.obolibrary.org/obo/MONDO_0000413,infancy electroclinical syndrome +9.7801242,MONDO:0006165,http://purl.obolibrary.org/obo/MONDO_0006165,colorectal squamous cell carcinoma +9.7801242,MONDO:0017731,http://purl.obolibrary.org/obo/MONDO_0017731,glycoproteinosis +9.7801242,UBERON:0004341,http://purl.obolibrary.org/obo/UBERON_0004341,primitive streak +9.7808901,DRUGBANK:DB02060,http://purl.obolibrary.org/obo/DRUGBANK_DB02060,none +9.7808901,GO:0034110,http://purl.obolibrary.org/obo/GO_0034110,regulation of homotypic cell-cell adhesion +9.7808901,MONDO:0020289,http://purl.obolibrary.org/obo/MONDO_0020289,congenital tricuspid malformation +9.7808901,UBERON:0035011,http://purl.obolibrary.org/obo/UBERON_0035011,central gray substance +9.7816567,GO:0097210,http://purl.obolibrary.org/obo/GO_0097210,response to gonadotropin-releasing hormone +9.7816567,MONDO:0002378,http://purl.obolibrary.org/obo/MONDO_0002378,dermoid cyst +9.7816567,UBERON:0000036,http://purl.obolibrary.org/obo/UBERON_0000036,secondary ovarian follicle +9.7824239,DRUGBANK:DB09269,http://purl.obolibrary.org/obo/DRUGBANK_DB09269,none +9.7824239,GO:0070633,http://purl.obolibrary.org/obo/GO_0070633,transepithelial transport +9.7824239,MOP:0000707,http://purl.obolibrary.org/obo/MOP_0000707,none +9.7824239,PR:000001191,http://purl.obolibrary.org/obo/PR_000001191,angiotensin II receptor 2 +9.7824239,UBERON:0005171,http://purl.obolibrary.org/obo/UBERON_0005171,hepatic duct +9.7831916,DRUGBANK:DB02152,http://purl.obolibrary.org/obo/DRUGBANK_DB02152,none +9.7831916,PR:000044649,http://purl.obolibrary.org/obo/PR_000044649,calcium-activated potassium channel protein +9.7831916,UBERON:0001555,http://purl.obolibrary.org/obo/UBERON_0001555,digestive tract +9.7831916,UBERON:0003071,http://purl.obolibrary.org/obo/UBERON_0003071,eye primordium +9.78396,DRUGBANK:DB04840,http://purl.obolibrary.org/obo/DRUGBANK_DB04840,none +9.78396,GO:0045445,http://purl.obolibrary.org/obo/GO_0045445,myoblast differentiation +9.78396,MONDO:0016383,http://purl.obolibrary.org/obo/MONDO_0016383,nephrogenic diabetes insipidus +9.78396,PR:000013879,http://purl.obolibrary.org/obo/PR_000013879,reelin +9.7847289,CHEBI:36364,http://purl.obolibrary.org/obo/CHEBI_36364,alkaline earth salt +9.7847289,GO:0002831,http://purl.obolibrary.org/obo/GO_0002831,regulation of response to biotic stimulus +9.7847289,GO:0030148,http://purl.obolibrary.org/obo/GO_0030148,sphingolipid biosynthetic process +9.7847289,HP:0010460,http://purl.obolibrary.org/obo/HP_0010460,Abnormality of the female genitalia +9.7847289,UBERON:0002222,http://purl.obolibrary.org/obo/UBERON_0002222,perichondrium +9.7854985,HP:0000008,http://purl.obolibrary.org/obo/HP_0000008,Abnormal morphology of female internal genitalia +9.7862686,DRUGBANK:DB00947,http://purl.obolibrary.org/obo/DRUGBANK_DB00947,none +9.7862686,GO:0051884,http://purl.obolibrary.org/obo/GO_0051884,regulation of timing of anagen +9.7862686,MONDO:0006963,http://purl.obolibrary.org/obo/MONDO_0006963,sebaceous gland neoplasm +9.7862686,PR:000006521,http://purl.obolibrary.org/obo/PR_000006521,protein delta homolog 1 +9.7862686,PR:000015288,http://purl.obolibrary.org/obo/PR_000015288,smoothened +9.7870393,DRUGBANK:DB00487,http://purl.obolibrary.org/obo/DRUGBANK_DB00487,none +9.7878106,MONDO:0000952,http://purl.obolibrary.org/obo/MONDO_0000952,cancer of long bone of lower limb +9.7878106,MONDO:0024311,http://purl.obolibrary.org/obo/MONDO_0024311,cancer affecting bone of limb skeleton +9.7878106,PR:000004200,http://purl.obolibrary.org/obo/PR_000004200,amphiregulin +9.7885825,DRUGBANK:DB01355,http://purl.obolibrary.org/obo/DRUGBANK_DB01355,none +9.7885825,GO:1904115,http://purl.obolibrary.org/obo/GO_1904115,axon cytoplasm +9.7885825,HP:0000044,http://purl.obolibrary.org/obo/HP_0000044,Hypogonadotropic hypogonadism +9.7885825,NCBITaxon:40121,http://purl.obolibrary.org/obo/NCBITaxon_40121,Erythroparvovirus +9.7885825,PR:000017024,http://purl.obolibrary.org/obo/PR_000017024,ubiquitin carboxyl-terminal hydrolase isozyme L1 +9.789355,DRUGBANK:DB00371,http://purl.obolibrary.org/obo/DRUGBANK_DB00371,none +9.789355,GO:0036269,http://purl.obolibrary.org/obo/GO_0036269,swimming behavior +9.789355,MONDO:0000450,http://purl.obolibrary.org/obo/MONDO_0000450,secondary progressive multiple sclerosis +9.789355,MONDO:0020501,http://purl.obolibrary.org/obo/MONDO_0020501,Crimean-Congo hemorrhagic fever +9.789355,NCBITaxon:1511900,http://purl.obolibrary.org/obo/NCBITaxon_1511900,Primate erythroparvovirus 1 +9.789355,PR:000044656,http://purl.obolibrary.org/obo/PR_000044656,ryanodine receptor +9.789355,UBERON:0005157,http://purl.obolibrary.org/obo/UBERON_0005157,epithelial fold +9.7901281,DRUGBANK:DB15914,http://purl.obolibrary.org/obo/DRUGBANK_DB15914,none +9.7901281,NCBITaxon:10798,http://purl.obolibrary.org/obo/NCBITaxon_10798,Human parvovirus B19 +9.7901281,PR:000001068,http://purl.obolibrary.org/obo/PR_000001068,transient receptor potential cation channel TRPV4 +9.7901281,PR:000050014,http://purl.obolibrary.org/obo/PR_000050014,flotillin +9.7901281,PR:P42818,http://purl.obolibrary.org/obo/PR_P42818,none +9.7901281,UBERON:0007775,http://purl.obolibrary.org/obo/UBERON_0007775,secondary tooth +9.7909018,DRUGBANK:DB00460,http://purl.obolibrary.org/obo/DRUGBANK_DB00460,none +9.7909018,GO:0098984,http://purl.obolibrary.org/obo/GO_0098984,neuron to neuron synapse +9.7909018,MONDO:0004830,http://purl.obolibrary.org/obo/MONDO_0004830,fasciitis +9.7909018,PR:000006514,http://purl.obolibrary.org/obo/PR_000006514,disks large homolog 4 +9.7909018,UBERON:0001498,http://purl.obolibrary.org/obo/UBERON_0001498,muscle of pes +9.7916761,GO:0004650,http://purl.obolibrary.org/obo/GO_0004650,polygalacturonase activity +9.7916761,HP:0002900,http://purl.obolibrary.org/obo/HP_0002900,Hypokalemia +9.7916761,MONDO:0003454,http://purl.obolibrary.org/obo/MONDO_0003454,conjunctival cancer +9.7916761,MONDO:0003669,http://purl.obolibrary.org/obo/MONDO_0003669,testicular seminoma +9.792451,DRUGBANK:DB00168,http://purl.obolibrary.org/obo/DRUGBANK_DB00168,none +9.792451,DRUGBANK:DB01597,http://purl.obolibrary.org/obo/DRUGBANK_DB01597,none +9.792451,DRUGBANK:DB14101,http://purl.obolibrary.org/obo/DRUGBANK_DB14101,none +9.792451,GO:1905039,http://purl.obolibrary.org/obo/GO_1905039,carboxylic acid transmembrane transport +9.792451,PR:000016279,http://purl.obolibrary.org/obo/PR_000016279,tissue factor pathway inhibitor +9.792451,UBERON:0002516,http://purl.obolibrary.org/obo/UBERON_0002516,epiphyseal plate +9.7932265,CHEBI:51237,http://purl.obolibrary.org/obo/CHEBI_51237,Grignard reagent +9.7932265,HP:0000130,http://purl.obolibrary.org/obo/HP_0000130,Abnormality of the uterus +9.7932265,PR:000003130,http://purl.obolibrary.org/obo/PR_000003130,"diablo homolog, mitochondrial" +9.7940026,DRUGBANK:DB00922,http://purl.obolibrary.org/obo/DRUGBANK_DB00922,none +9.7940026,DRUGBANK:DB01028,http://purl.obolibrary.org/obo/DRUGBANK_DB01028,none +9.7940026,MONDO:0002379,http://purl.obolibrary.org/obo/MONDO_0002379,cystic teratoma +9.7940026,UBERON:0004907,http://purl.obolibrary.org/obo/UBERON_0004907,lower digestive tract +9.7947793,DRUGBANK:DB00893,http://purl.obolibrary.org/obo/DRUGBANK_DB00893,none +9.7947793,DRUGBANK:DB10512,http://purl.obolibrary.org/obo/DRUGBANK_DB10512,none +9.7947793,PR:000003560,http://purl.obolibrary.org/obo/PR_000003560,ATP-binding cassette sub-family C member 4 +9.7955566,DRUGBANK:DB01002,http://purl.obolibrary.org/obo/DRUGBANK_DB01002,none +9.7955566,DRUGBANK:DB02843,http://purl.obolibrary.org/obo/DRUGBANK_DB02843,none +9.7955566,GO:0006886,http://purl.obolibrary.org/obo/GO_0006886,intracellular protein transport +9.7955566,GO:0035988,http://purl.obolibrary.org/obo/GO_0035988,chondrocyte proliferation +9.7955566,MONDO:0010911,http://purl.obolibrary.org/obo/MONDO_0010911,prolactin-producing pituitary gland adenoma +9.7963345,DRUGBANK:DB14691,http://purl.obolibrary.org/obo/DRUGBANK_DB14691,none +9.7963345,GO:0002062,http://purl.obolibrary.org/obo/GO_0002062,chondrocyte differentiation +9.7963345,GO:0071621,http://purl.obolibrary.org/obo/GO_0071621,granulocyte chemotaxis +9.7963345,MONDO:0012833,http://purl.obolibrary.org/obo/MONDO_0012833,Crouzon syndrome-acanthosis nigricans syndrome +9.7963345,NCBITaxon:39751,http://purl.obolibrary.org/obo/NCBITaxon_39751,none +9.7963345,SO:0000331,http://purl.obolibrary.org/obo/SO_0000331,STS +9.7963345,UBERON:0006909,http://purl.obolibrary.org/obo/UBERON_0006909,lumen of digestive tract +9.797113,DRUGBANK:DB06708,http://purl.obolibrary.org/obo/DRUGBANK_DB06708,none +9.797113,GO:0032880,http://purl.obolibrary.org/obo/GO_0032880,regulation of protein localization +9.797113,NCBITaxon:10995,http://purl.obolibrary.org/obo/NCBITaxon_10995,Infectious bursal disease virus +9.797113,PR:000031831,http://purl.obolibrary.org/obo/PR_000031831,phosphatidylcholine translocator ABCB4 +9.797113,SO:0001814,http://purl.obolibrary.org/obo/SO_0001814,coding_variant_quality +9.7978921,CHEBI:35156,http://purl.obolibrary.org/obo/CHEBI_35156,calcium salt +9.7978921,DRUGBANK:DB01460,http://purl.obolibrary.org/obo/DRUGBANK_DB01460,none +9.7978921,PR:000002998,http://purl.obolibrary.org/obo/PR_000002998,tyrosine-protein kinase Lck +9.7978921,SO:0000706,http://purl.obolibrary.org/obo/SO_0000706,trans_splice_acceptor_site +9.7994522,DRUGBANK:DB14138,http://purl.obolibrary.org/obo/DRUGBANK_DB14138,none +9.8002331,MONDO:0016823,http://purl.obolibrary.org/obo/MONDO_0016823,mycetoma +9.8002331,MONDO:0021129,http://purl.obolibrary.org/obo/MONDO_0021129,microphthalmia +9.8002331,NCBITaxon:7718,http://purl.obolibrary.org/obo/NCBITaxon_7718,None +9.8010147,CL:0000014,http://purl.obolibrary.org/obo/CL_0000014,germ line stem cell +9.8010147,GO:0030041,http://purl.obolibrary.org/obo/GO_0030041,actin filament polymerization +9.8010147,MONDO:0004577,http://purl.obolibrary.org/obo/MONDO_0004577,corneal ulcer +9.8010147,MONDO:0021002,http://purl.obolibrary.org/obo/MONDO_0021002,syndactyly +9.8010147,PR:000012912,http://purl.obolibrary.org/obo/PR_000012912,mitochondrial-processing peptidase subunit beta +9.8017968,CHEBI:26167,http://purl.obolibrary.org/obo/CHEBI_26167,polar amino acid +9.8017968,GO:0097621,http://purl.obolibrary.org/obo/GO_0097621,monoamine oxidase activity +9.8017968,SO:0001570,http://purl.obolibrary.org/obo/SO_0001570,cryptic_splice_acceptor +9.8017968,UBERON:0002427,http://purl.obolibrary.org/obo/UBERON_0002427,arm skin +9.8025796,DRUGBANK:DB01515,http://purl.obolibrary.org/obo/DRUGBANK_DB01515,none +9.8025796,DRUGBANK:DB02774,http://purl.obolibrary.org/obo/DRUGBANK_DB02774,none +9.8025796,GO:0016116,http://purl.obolibrary.org/obo/GO_0016116,carotenoid metabolic process +9.803363,MONDO:0016717,http://purl.obolibrary.org/obo/MONDO_0016717,choroid plexus neoplasm +9.803363,NCBITaxon:12304,http://purl.obolibrary.org/obo/NCBITaxon_12304,none +9.804147,MONDO:0007454,http://purl.obolibrary.org/obo/MONDO_0007454,type 1 diabetes mellitus 2 +9.804147,NCBITaxon:11901,http://purl.obolibrary.org/obo/NCBITaxon_11901,Bovine leukemia virus +9.804147,PR:000015418,http://purl.obolibrary.org/obo/PR_000015418,transcription factor SOX-10 +9.804147,PR:000028424,http://purl.obolibrary.org/obo/PR_000028424,chorionic somatomammotropin hormone 1 +9.8049316,DRUGBANK:DB04953,http://purl.obolibrary.org/obo/DRUGBANK_DB04953,none +9.8049316,GO:0019432,http://purl.obolibrary.org/obo/GO_0019432,triglyceride biosynthetic process +9.8049316,MONDO:0004857,http://purl.obolibrary.org/obo/MONDO_0004857,tendinitis +9.8057169,GO:0070542,http://purl.obolibrary.org/obo/GO_0070542,response to fatty acid +9.8057169,MONDO:0005382,http://purl.obolibrary.org/obo/MONDO_0005382,bone Paget disease +9.8057169,UBERON:0011593,http://purl.obolibrary.org/obo/UBERON_0011593,maxillary tooth +9.8065027,DRUGBANK:DB01062,http://purl.obolibrary.org/obo/DRUGBANK_DB01062,none +9.8065027,DRUGBANK:DB04166,http://purl.obolibrary.org/obo/DRUGBANK_DB04166,none +9.8065027,UBERON:0004911,http://purl.obolibrary.org/obo/UBERON_0004911,epithelium of female gonad +9.8065027,UBERON:0016565,http://purl.obolibrary.org/obo/UBERON_0016565,cerebral blood vessel +9.8072892,HP:0001321,http://purl.obolibrary.org/obo/HP_0001321,Cerebellar hypoplasia +9.8072892,HP:0012888,http://purl.obolibrary.org/obo/HP_0012888,Abnormality of the uterine cervix +9.8080763,HP:0030159,http://purl.obolibrary.org/obo/HP_0030159,Cervical polyp +9.8080763,PR:000005553,http://purl.obolibrary.org/obo/PR_000005553,claudin-5 +9.8080763,PR:000029763,http://purl.obolibrary.org/obo/PR_000029763,transcription activator BRG1 +9.8080763,PR:000044630,http://purl.obolibrary.org/obo/PR_000044630,corticotropin-releasing factor receptor +9.8080763,UBERON:0004255,http://purl.obolibrary.org/obo/UBERON_0004255,forelimb stylopod muscle +9.8080763,UBERON:0004647,http://purl.obolibrary.org/obo/UBERON_0004647,liver lobule +9.808864,GO:0098586,http://purl.obolibrary.org/obo/GO_0098586,cellular response to virus +9.808864,UBERON:0000383,http://purl.obolibrary.org/obo/UBERON_0000383,musculature of body +9.808864,UBERON:0001344,http://purl.obolibrary.org/obo/UBERON_0001344,epithelium of vagina +9.808864,UBERON:0035075,http://purl.obolibrary.org/obo/UBERON_0035075,thymus subunit +9.8096523,CL:1001502,http://purl.obolibrary.org/obo/CL_1001502,mitral cell +9.8096523,DRUGBANK:DB06762,http://purl.obolibrary.org/obo/DRUGBANK_DB06762,none +9.8096523,UBERON:0001762,http://purl.obolibrary.org/obo/UBERON_0001762,turbinate bone +9.8104413,CHEBI:33497,http://purl.obolibrary.org/obo/CHEBI_33497,transition element molecular entity +9.8104413,MONDO:0008277,http://purl.obolibrary.org/obo/MONDO_0008277,stomach polyp +9.8104413,MONDO:0015375,http://purl.obolibrary.org/obo/MONDO_0015375,orofaciodigital syndrome +9.8104413,NCBITaxon:2732463,http://purl.obolibrary.org/obo/NCBITaxon_2732463,none +9.8104413,NCBITaxon:2732548,http://purl.obolibrary.org/obo/NCBITaxon_2732548,none +9.8104413,PR:000011410,http://purl.obolibrary.org/obo/PR_000011410,nuclear receptor subfamily 4 group A member 3 +9.8112309,CL:0000038,http://purl.obolibrary.org/obo/CL_0000038,erythroid progenitor cell +9.8112309,CL:0000520,http://purl.obolibrary.org/obo/CL_0000520,prokaryotic cell +9.8112309,DRUGBANK:DB06763,http://purl.obolibrary.org/obo/DRUGBANK_DB06763,none +9.8112309,PR:P38085,http://purl.obolibrary.org/obo/PR_P38085,none +9.8120211,GO:0002443,http://purl.obolibrary.org/obo/GO_0002443,leukocyte mediated immunity +9.8120211,MONDO:0019074,http://purl.obolibrary.org/obo/MONDO_0019074,bilateral acute depigmentation of the iris +9.8120211,PR:000014979,http://purl.obolibrary.org/obo/PR_000014979,sodium-dependent phosphate transporter 1 +9.8120211,UBERON:0002810,http://purl.obolibrary.org/obo/UBERON_0002810,right frontal lobe +9.8128119,CHEBI:33676,http://purl.obolibrary.org/obo/CHEBI_33676,d-block molecular entity +9.8128119,DRUGBANK:DB00778,http://purl.obolibrary.org/obo/DRUGBANK_DB00778,none +9.8128119,GO:0004722,http://purl.obolibrary.org/obo/GO_0004722,protein serine/threonine phosphatase activity +9.8128119,GO:0042752,http://purl.obolibrary.org/obo/GO_0042752,regulation of circadian rhythm +9.8128119,MONDO:0016532,http://purl.obolibrary.org/obo/MONDO_0016532,Lennox-Gastaut syndrome +9.8128119,MONDO:0019219,http://purl.obolibrary.org/obo/MONDO_0019219,inborn disorder of neurotransmitter metabolism and transport +9.8128119,PR:000000184,http://purl.obolibrary.org/obo/PR_000000184,TGF-beta 3 +9.8136033,CL:0000867,http://purl.obolibrary.org/obo/CL_0000867,secondary lymphoid organ macrophage +9.8136033,DRUGBANK:DB10843,http://purl.obolibrary.org/obo/DRUGBANK_DB10843,none +9.8136033,GO:0008417,http://purl.obolibrary.org/obo/GO_0008417,fucosyltransferase activity +9.8136033,MONDO:0019472,http://purl.obolibrary.org/obo/MONDO_0019472,extranodal nasal NK/T cell lymphoma +9.8136033,PR:000001008,http://purl.obolibrary.org/obo/PR_000001008,integrin alpha-2 +9.8136033,PR:000009308,http://purl.obolibrary.org/obo/PR_000009308,kinesin-like protein KIF2A +9.8136033,PR:000015612,http://purl.obolibrary.org/obo/PR_000015612,sterol regulatory element-binding protein 2 +9.8136033,UBERON:0006908,http://purl.obolibrary.org/obo/UBERON_0006908,fast muscle tissue +9.8143954,UBERON:2005020,http://purl.obolibrary.org/obo/UBERON_2005020,central artery +9.8151881,DRUGBANK:DB04299,http://purl.obolibrary.org/obo/DRUGBANK_DB04299,none +9.8151881,MONDO:0021210,http://purl.obolibrary.org/obo/MONDO_0021210,trachea neoplasm +9.8151881,MONDO:0022308,http://purl.obolibrary.org/obo/MONDO_0022308,corticobasal degeneration disorder +9.8151881,UBERON:0008115,http://purl.obolibrary.org/obo/UBERON_0008115,surface of cartilage +9.8159815,CHEBI:33837,http://purl.obolibrary.org/obo/CHEBI_33837,conjugated protein +9.8159815,HP:0007360,http://purl.obolibrary.org/obo/HP_0007360,Aplasia/Hypoplasia of the cerebellum +9.8159815,MONDO:0011385,http://purl.obolibrary.org/obo/MONDO_0011385,intervertebral disc degenerative disorder +9.8159815,NCBITaxon:39738,http://purl.obolibrary.org/obo/NCBITaxon_39738,none +9.8167754,DRUGBANK:DB11081,http://purl.obolibrary.org/obo/DRUGBANK_DB11081,none +9.8167754,DRUGBANK:DB12693,http://purl.obolibrary.org/obo/DRUGBANK_DB12693,none +9.8167754,DRUGBANK:DB13393,http://purl.obolibrary.org/obo/DRUGBANK_DB13393,none +9.8167754,GO:0050355,http://purl.obolibrary.org/obo/GO_0050355,triphosphatase activity +9.8167754,MONDO:0003505,http://purl.obolibrary.org/obo/MONDO_0003505,femoral cancer +9.8167754,MONDO:0007006,http://purl.obolibrary.org/obo/MONDO_0007006,ulnar neuropathy +9.8167754,PR:000012059,http://purl.obolibrary.org/obo/PR_000012059,oncostatin-M +9.8167754,UBERON:0008488,http://purl.obolibrary.org/obo/UBERON_0008488,cremaster muscle +9.8167754,UBERON:0011326,http://purl.obolibrary.org/obo/UBERON_0011326,superior laryngeal nerve +9.81757,DRUGBANK:DB00187,http://purl.obolibrary.org/obo/DRUGBANK_DB00187,none +9.81757,PR:000044653,http://purl.obolibrary.org/obo/PR_000044653,two P domain potassium channel protein +9.81757,UBERON:0006083,http://purl.obolibrary.org/obo/UBERON_0006083,perirhinal cortex +9.8183653,DRUGBANK:DB01267,http://purl.obolibrary.org/obo/DRUGBANK_DB01267,none +9.8183653,DRUGBANK:DB14183,http://purl.obolibrary.org/obo/DRUGBANK_DB14183,none +9.8183653,GO:0016941,http://purl.obolibrary.org/obo/GO_0016941,natriuretic peptide receptor activity +9.8183653,MONDO:0001110,http://purl.obolibrary.org/obo/MONDO_0001110,chronic pyelonephritis +9.8183653,MONDO:0044919,http://purl.obolibrary.org/obo/MONDO_0044919,malignant renal pelvis neoplasm +9.8183653,PR:000001124,http://purl.obolibrary.org/obo/PR_000001124,calcium-independent alpha-latrotoxin receptor +9.8183653,SO:0001816,http://purl.obolibrary.org/obo/SO_0001816,non_synonymous +9.8191611,DRUGBANK:DB10892,http://purl.obolibrary.org/obo/DRUGBANK_DB10892,none +9.8191611,DRUGBANK:DB11082,http://purl.obolibrary.org/obo/DRUGBANK_DB11082,none +9.8191611,GO:0042364,http://purl.obolibrary.org/obo/GO_0042364,water-soluble vitamin biosynthetic process +9.8191611,MONDO:0016168,http://purl.obolibrary.org/obo/MONDO_0016168,cryopyrin-associated periodic syndrome +9.8199576,CHEBI:50509,http://purl.obolibrary.org/obo/CHEBI_50509,potassium channel blocker +9.8199576,DRUGBANK:DB00276,http://purl.obolibrary.org/obo/DRUGBANK_DB00276,none +9.8199576,DRUGBANK:DB08947,http://purl.obolibrary.org/obo/DRUGBANK_DB08947,none +9.8199576,GO:0006525,http://purl.obolibrary.org/obo/GO_0006525,arginine metabolic process +9.8199576,MONDO:0005110,http://purl.obolibrary.org/obo/MONDO_0005110,idiopathic cardiomyopathy +9.8199576,MONDO:0006206,http://purl.obolibrary.org/obo/MONDO_0006206,fallopian tube carcinoma +9.8199576,MONDO:0007034,http://purl.obolibrary.org/obo/MONDO_0007034,Adams-Oliver syndrome +9.8199576,PR:000001488,http://purl.obolibrary.org/obo/PR_000001488,muscarinic acetylcholine receptor +9.8199576,UBERON:0000934,http://purl.obolibrary.org/obo/UBERON_0000934,ventral nerve cord +9.8207547,MONDO:0024268,http://purl.obolibrary.org/obo/MONDO_0024268,superficial mycosis +9.8207547,NCBITaxon:7713,http://purl.obolibrary.org/obo/NCBITaxon_7713,Ascidiacea +9.8207547,PR:000013639,http://purl.obolibrary.org/obo/PR_000013639,Ras-related protein Rab-7a +9.8215525,CL:0000822,http://purl.obolibrary.org/obo/CL_0000822,B-2 B cell +9.8215525,DRUGBANK:DB09460,http://purl.obolibrary.org/obo/DRUGBANK_DB09460,none +9.8215525,GO:0004051,http://purl.obolibrary.org/obo/GO_0004051,arachidonate 5-lipoxygenase activity +9.8215525,GO:0033655,http://purl.obolibrary.org/obo/GO_0033655,host cell cytoplasm part +9.8215525,PR:000029031,http://purl.obolibrary.org/obo/PR_000029031,none +9.8215525,SO:0002050,http://purl.obolibrary.org/obo/SO_0002050,constitutive_promoter +9.8223509,DRUGBANK:DB00474,http://purl.obolibrary.org/obo/DRUGBANK_DB00474,none +9.8223509,GO:0002449,http://purl.obolibrary.org/obo/GO_0002449,lymphocyte mediated immunity +9.8223509,MONDO:0004678,http://purl.obolibrary.org/obo/MONDO_0004678,dermatophytosis +9.8223509,PR:000015023,http://purl.obolibrary.org/obo/PR_000015023,mitochondrial uncoupling protein 4 +9.82315,CHEBI:50843,http://purl.obolibrary.org/obo/CHEBI_50843,antimineralocorticoid +9.82315,DRUGBANK:DB02095,http://purl.obolibrary.org/obo/DRUGBANK_DB02095,none +9.82315,MONDO:0001389,http://purl.obolibrary.org/obo/MONDO_0001389,congenital coronary artery anomaly +9.82315,NCBITaxon:183770,http://purl.obolibrary.org/obo/NCBITaxon_183770,none +9.82315,UBERON:0001161,http://purl.obolibrary.org/obo/UBERON_0001161,body of stomach +9.8239496,MONDO:0001347,http://purl.obolibrary.org/obo/MONDO_0001347,facioscapulohumeral muscular dystrophy +9.8239496,PR:000001194,http://purl.obolibrary.org/obo/PR_000001194,beta-3 adrenergic receptor +9.8239496,PR:000001939,http://purl.obolibrary.org/obo/PR_000001939,thrombopoietin receptor +9.82475,GO:0005788,http://purl.obolibrary.org/obo/GO_0005788,endoplasmic reticulum lumen +9.82475,GO:0016725,http://purl.obolibrary.org/obo/GO_0016725,"oxidoreductase activity, acting on CH or CH2 groups" +9.82475,MONDO:0019282,http://purl.obolibrary.org/obo/MONDO_0019282,syndromic hair shaft abnormality +9.8255509,GO:0051223,http://purl.obolibrary.org/obo/GO_0051223,regulation of protein transport +9.8255509,GO:0070201,http://purl.obolibrary.org/obo/GO_0070201,regulation of establishment of protein localization +9.8255509,PR:000016293,http://purl.obolibrary.org/obo/PR_000016293,protein-glutamine gamma-glutamyltransferase 2 +9.8255509,UBERON:0008822,http://purl.obolibrary.org/obo/UBERON_0008822,posterior mediastinum +9.8263525,DRUGBANK:DB09315,http://purl.obolibrary.org/obo/DRUGBANK_DB09315,none +9.8263525,GO:0016494,http://purl.obolibrary.org/obo/GO_0016494,C-X-C chemokine receptor activity +9.8263525,MONDO:0002360,http://purl.obolibrary.org/obo/MONDO_0002360,chondroma +9.8263525,MONDO:0015411,http://purl.obolibrary.org/obo/MONDO_0015411,facial cleft +9.8263525,NCBITaxon:7716,http://purl.obolibrary.org/obo/NCBITaxon_7716,none +9.8263525,NCBITaxon:7717,http://purl.obolibrary.org/obo/NCBITaxon_7717,none +9.8263525,PR:P00431,http://purl.obolibrary.org/obo/PR_P00431,none +9.8271548,DRUGBANK:DB08830,http://purl.obolibrary.org/obo/DRUGBANK_DB08830,none +9.8271548,DRUGBANK:DB09551,http://purl.obolibrary.org/obo/DRUGBANK_DB09551,none +9.8271548,HP:0000155,http://purl.obolibrary.org/obo/HP_0000155,Oral ulcer +9.8271548,UBERON:0002546,http://purl.obolibrary.org/obo/UBERON_0002546,cranial placode +9.8279577,DRUGBANK:DB00939,http://purl.obolibrary.org/obo/DRUGBANK_DB00939,none +9.8279577,GO:0016108,http://purl.obolibrary.org/obo/GO_0016108,tetraterpenoid metabolic process +9.8279577,UBERON:0001683,http://purl.obolibrary.org/obo/UBERON_0001683,jugal bone +9.8287612,DRUGBANK:DB14277,http://purl.obolibrary.org/obo/DRUGBANK_DB14277,none +9.8287612,GO:0007417,http://purl.obolibrary.org/obo/GO_0007417,central nervous system development +9.8287612,MONDO:0000766,http://purl.obolibrary.org/obo/MONDO_0000766,corneal endothelial dystrophy +9.8287612,PR:000044780,http://purl.obolibrary.org/obo/PR_000044780,leukocyte immunoglobulin-like receptor subfamily member +9.8287612,PR:Q9WYW0,http://purl.obolibrary.org/obo/PR_Q9WYW0,none +9.8295654,GO:1902778,http://purl.obolibrary.org/obo/GO_1902778,response to alkane +9.8303702,CHEBI:50844,http://purl.obolibrary.org/obo/CHEBI_50844,aldosterone antagonist +9.8303702,DRUGBANK:DB11180,http://purl.obolibrary.org/obo/DRUGBANK_DB11180,none +9.8303702,NCBITaxon:7719,http://purl.obolibrary.org/obo/NCBITaxon_7719,none +9.8311757,PR:000029252,http://purl.obolibrary.org/obo/PR_000029252,alpha- and gamma-adaptin-binding protein p34 +9.8311757,PR:Q9SMU8,http://purl.obolibrary.org/obo/PR_Q9SMU8,none +9.8311757,UBERON:0015833,http://purl.obolibrary.org/obo/UBERON_0015833,foregut epithelium +9.8319818,CHEBI:7757,http://purl.obolibrary.org/obo/CHEBI_7757,Oligoribonucleotide +9.8319818,GO:0009636,http://purl.obolibrary.org/obo/GO_0009636,response to toxic substance +9.8319818,MONDO:0005469,http://purl.obolibrary.org/obo/MONDO_0005469,orthostatic hypotension +9.8319818,UBERON:0008886,http://purl.obolibrary.org/obo/UBERON_0008886,pulmonary vascular system +9.8327886,CL:0002601,http://purl.obolibrary.org/obo/CL_0002601,uterine smooth muscle cell +9.8327886,MONDO:0001538,http://purl.obolibrary.org/obo/MONDO_0001538,retinal ischemia +9.8327886,MONDO:0009144,http://purl.obolibrary.org/obo/MONDO_0009144,Ebstein anomaly +9.833596,PR:000004507,http://purl.obolibrary.org/obo/PR_000004507,ataxin-3 +9.833596,PR:000011409,http://purl.obolibrary.org/obo/PR_000011409,nuclear receptor subfamily 4 group A member 2 +9.833596,PR:000029394,http://purl.obolibrary.org/obo/PR_000029394,antiviral innate immune response receptor RIG-I +9.8344041,DRUGBANK:DB10672,http://purl.obolibrary.org/obo/DRUGBANK_DB10672,none +9.8344041,GO:0005761,http://purl.obolibrary.org/obo/GO_0005761,mitochondrial ribosome +9.8344041,GO:0019783,http://purl.obolibrary.org/obo/GO_0019783,ubiquitin-like protein-specific protease activity +9.8344041,MONDO:0002474,http://purl.obolibrary.org/obo/MONDO_0002474,primary hyperoxaluria +9.8344041,MONDO:0005229,http://purl.obolibrary.org/obo/MONDO_0005229,bacterial infectious disease with sepsis +9.8344041,MONDO:0018942,http://purl.obolibrary.org/obo/MONDO_0018942,macrophagic myofasciitis +9.8344041,PR:000001202,http://purl.obolibrary.org/obo/PR_000001202,C-C chemokine receptor type 6 +9.8344041,PR:000001282,http://purl.obolibrary.org/obo/PR_000001282,ALK tyrosine kinase receptor +9.8344041,PR:000010704,http://purl.obolibrary.org/obo/PR_000010704,metallothionein-2 +9.8344041,PR:000012923,http://purl.obolibrary.org/obo/PR_000012923,calcium/calmodulin-dependent protein kinase type 1B +9.8352128,DRUGBANK:DB00085,http://purl.obolibrary.org/obo/DRUGBANK_DB00085,none +9.8352128,DRUGBANK:DB00310,http://purl.obolibrary.org/obo/DRUGBANK_DB00310,none +9.8352128,DRUGBANK:DB00784,http://purl.obolibrary.org/obo/DRUGBANK_DB00784,none +9.8352128,DRUGBANK:DB00845,http://purl.obolibrary.org/obo/DRUGBANK_DB00845,none +9.8352128,MONDO:0002304,http://purl.obolibrary.org/obo/MONDO_0002304,protein S deficiency +9.8352128,MONDO:0003002,http://purl.obolibrary.org/obo/MONDO_0003002,dysgerminoma +9.8352128,MONDO:0011870,http://purl.obolibrary.org/obo/MONDO_0011870,annular epidermolytic ichthyosis +9.8352128,MONDO:0020702,http://purl.obolibrary.org/obo/MONDO_0020702,autosomal dominant epidermolytic ichthyosis +9.8352128,MONDO:0022880,http://purl.obolibrary.org/obo/MONDO_0022880,corticobasal degeneration +9.8352128,PR:000044637,http://purl.obolibrary.org/obo/PR_000044637,calcitonin receptor protein +9.8352128,UBERON:0016514,http://purl.obolibrary.org/obo/UBERON_0016514,cavity of left ventricle +9.8360222,DRUGBANK:DB05521,http://purl.obolibrary.org/obo/DRUGBANK_DB05521,none +9.8360222,HP:0000925,http://purl.obolibrary.org/obo/HP_0000925,Abnormality of the vertebral column +9.8360222,PR:000005089,http://purl.obolibrary.org/obo/PR_000005089,chromobox protein homolog 8 +9.8360222,PR:000010309,http://purl.obolibrary.org/obo/PR_000010309,myocyte-specific enhancer factor 2A +9.8368323,UBERON:0035612,http://purl.obolibrary.org/obo/UBERON_0035612,nasal turbinal +9.837643,DRUGBANK:DB11716,http://purl.obolibrary.org/obo/DRUGBANK_DB11716,none +9.837643,HP:0000752,http://purl.obolibrary.org/obo/HP_0000752,Hyperactivity +9.837643,SO:0001421,http://purl.obolibrary.org/obo/SO_0001421,splice_junction +9.8384543,CHEBI:24062,http://purl.obolibrary.org/obo/CHEBI_24062,fluorine molecular entity +9.8384543,HP:0040075,http://purl.obolibrary.org/obo/HP_0040075,Hypopituitarism +9.8384543,MONDO:0001252,http://purl.obolibrary.org/obo/MONDO_0001252,Plummer disease +9.8384543,MONDO:0015247,http://purl.obolibrary.org/obo/MONDO_0015247,opsoclonus-myoclonus syndrome +9.8384543,PR:000012224,http://purl.obolibrary.org/obo/PR_000012224,glycodelin +9.8392663,DRUGBANK:DB04183,http://purl.obolibrary.org/obo/DRUGBANK_DB04183,none +9.8392663,GO:0030354,http://purl.obolibrary.org/obo/GO_0030354,melanin-concentrating hormone activity +9.8392663,MONDO:0003523,http://purl.obolibrary.org/obo/MONDO_0003523,gastrin-producing neuroendocrine tumor +9.8392663,PR:000003032,http://purl.obolibrary.org/obo/PR_000003032,focal adhesion kinase 2 +9.8392663,PR:Q9AR19,http://purl.obolibrary.org/obo/PR_Q9AR19,none +9.840079,DRUGBANK:DB06145,http://purl.obolibrary.org/obo/DRUGBANK_DB06145,none +9.840079,DRUGBANK:DB10861,http://purl.obolibrary.org/obo/DRUGBANK_DB10861,none +9.840079,DRUGBANK:DB13281,http://purl.obolibrary.org/obo/DRUGBANK_DB13281,none +9.840079,GO:0015052,http://purl.obolibrary.org/obo/GO_0015052,beta3-adrenergic receptor activity +9.840079,GO:0019362,http://purl.obolibrary.org/obo/GO_0019362,pyridine nucleotide metabolic process +9.840079,GO:0042088,http://purl.obolibrary.org/obo/GO_0042088,T-helper 1 type immune response +9.840079,GO:0042132,http://purl.obolibrary.org/obo/GO_0042132,"fructose 1,6-bisphosphate 1-phosphatase activity" +9.840079,MONDO:0018515,http://purl.obolibrary.org/obo/MONDO_0018515,squamous cell carcinoma of rectum +9.840079,PR:000001206,http://purl.obolibrary.org/obo/PR_000001206,CX3C chemokine receptor 1 +9.840079,PR:000005116,http://purl.obolibrary.org/obo/PR_000005116,G2/mitotic-specific cyclin-B1 +9.840079,PR:000016245,http://purl.obolibrary.org/obo/PR_000016245,methylcytosine dioxygenase TET2 +9.840079,UBERON:0003702,http://purl.obolibrary.org/obo/UBERON_0003702,inguinal canal +9.8408924,PR:000002396,http://purl.obolibrary.org/obo/PR_000002396,caspase-10 isoform 1 +9.8408924,PR:000005936,http://purl.obolibrary.org/obo/PR_000005936,chorionic somatomammotropin hormone 2 +9.8408924,PR:000015214,http://purl.obolibrary.org/obo/PR_000015214,sodium/hydrogen exchanger 3 +9.8408924,UBERON:0006206,http://purl.obolibrary.org/obo/UBERON_0006206,iridocorneal angle +9.8408924,UBERON:0011222,http://purl.obolibrary.org/obo/UBERON_0011222,intra-ocular muscle +9.8408924,UBERON:0014375,http://purl.obolibrary.org/obo/UBERON_0014375,intrinsic muscle of manus +9.8408924,UBERON:2002195,http://purl.obolibrary.org/obo/UBERON_2002195,epidermal placode +9.8417064,MONDO:0001235,http://purl.obolibrary.org/obo/MONDO_0001235,appendix cancer +9.8417064,MONDO:0004555,http://purl.obolibrary.org/obo/MONDO_0004555,kidney angiomyolipoma +9.8417064,UBERON:0013698,http://purl.obolibrary.org/obo/UBERON_0013698,strand of pubic hair +9.842521,GO:0071310,http://purl.obolibrary.org/obo/GO_0071310,cellular response to organic substance +9.842521,HP:0002960,http://purl.obolibrary.org/obo/HP_0002960,Autoimmunity +9.842521,MONDO:0003142,http://purl.obolibrary.org/obo/MONDO_0003142,intracranial primitive neuroectodermal tumor +9.842521,UBERON:2002284,http://purl.obolibrary.org/obo/UBERON_2002284,body marking +9.8433364,UBERON:0001309,http://purl.obolibrary.org/obo/UBERON_0001309,internal iliac artery +9.8433364,UBERON:0002811,http://purl.obolibrary.org/obo/UBERON_0002811,left frontal lobe +9.8441523,DRUGBANK:DB02930,http://purl.obolibrary.org/obo/DRUGBANK_DB02930,none +9.8441523,GO:1900673,http://purl.obolibrary.org/obo/GO_1900673,olefin metabolic process +9.8441523,MONDO:0003537,http://purl.obolibrary.org/obo/MONDO_0003537,precursor T-lymphoblastic lymphoma/leukemia +9.8441523,PR:000036336,http://purl.obolibrary.org/obo/PR_000036336,taste receptor type 1 +9.8441523,UBERON:0002482,http://purl.obolibrary.org/obo/UBERON_0002482,lamellar bone +9.844969,DRUGBANK:DB00909,http://purl.obolibrary.org/obo/DRUGBANK_DB00909,none +9.844969,DRUGBANK:DB02860,http://purl.obolibrary.org/obo/DRUGBANK_DB02860,none +9.844969,DRUGBANK:DB12153,http://purl.obolibrary.org/obo/DRUGBANK_DB12153,none +9.844969,GO:0044036,http://purl.obolibrary.org/obo/GO_0044036,cell wall macromolecule metabolic process +9.844969,PR:000008372,http://purl.obolibrary.org/obo/PR_000008372,none +9.8457863,DRUGBANK:DB02952,http://purl.obolibrary.org/obo/DRUGBANK_DB02952,none +9.8457863,GO:0004550,http://purl.obolibrary.org/obo/GO_0004550,nucleoside diphosphate kinase activity +9.8457863,PR:O80912,http://purl.obolibrary.org/obo/PR_O80912,none +9.8466043,DRUGBANK:DB15533,http://purl.obolibrary.org/obo/DRUGBANK_DB15533,none +9.8466043,GO:0007097,http://purl.obolibrary.org/obo/GO_0007097,nuclear migration +9.8466043,PR:000016196,http://purl.obolibrary.org/obo/PR_000016196,transcobalamin-1 +9.8466043,SO:0000305,http://purl.obolibrary.org/obo/SO_0000305,modified_DNA_base +9.847423,MONDO:0006971,http://purl.obolibrary.org/obo/MONDO_0006971,sigmoid neoplasm +9.847423,MONDO:0016336,http://purl.obolibrary.org/obo/MONDO_0016336,fatty acid oxidation and ketogenesis disorder with dilated cardiomyopathy +9.847423,PR:000005768,http://purl.obolibrary.org/obo/PR_000005768,coactosin-like protein +9.8482423,DRUGBANK:DB00875,http://purl.obolibrary.org/obo/DRUGBANK_DB00875,none +9.8482423,GO:0099177,http://purl.obolibrary.org/obo/GO_0099177,regulation of trans-synaptic signaling +9.8482423,MONDO:0005937,http://purl.obolibrary.org/obo/MONDO_0005937,REM sleep behavior disorder +9.8482423,MONDO:0007403,http://purl.obolibrary.org/obo/MONDO_0007403,inherited Creutzfeldt-Jakob disease +9.8482423,PR:000012914,http://purl.obolibrary.org/obo/PR_000012914,mismatch repair endonuclease PMS2 +9.8482423,PR:000050056,http://purl.obolibrary.org/obo/PR_000050056,sphingosine-1-phosphate phosphatase +9.8482423,UBERON:0012320,http://purl.obolibrary.org/obo/UBERON_0012320,cervical artery +9.8490623,GO:0005637,http://purl.obolibrary.org/obo/GO_0005637,nuclear inner membrane +9.8490623,GO:0005875,http://purl.obolibrary.org/obo/GO_0005875,microtubule associated complex +9.8490623,GO:0010906,http://purl.obolibrary.org/obo/GO_0010906,regulation of glucose metabolic process +9.8490623,GO:0042133,http://purl.obolibrary.org/obo/GO_0042133,neurotransmitter metabolic process +9.8490623,PR:000013678,http://purl.obolibrary.org/obo/PR_000013678,DNA repair protein RAD52 homolog +9.8490623,SO:0001604,http://purl.obolibrary.org/obo/SO_0001604,amino_acid_deletion +9.849883,CL:0002258,http://purl.obolibrary.org/obo/CL_0002258,thyroid follicular cell +9.849883,MONDO:0000661,http://purl.obolibrary.org/obo/MONDO_0000661,alexithymia +9.8507044,MONDO:0006284,http://purl.obolibrary.org/obo/MONDO_0006284,major salivary gland carcinoma +9.8507044,PR:000024201,http://purl.obolibrary.org/obo/PR_000024201,none +9.8507044,SO:0001538,http://purl.obolibrary.org/obo/SO_0001538,transcript_function_variant +9.8515264,CHEBI:60599,http://purl.obolibrary.org/obo/CHEBI_60599,mu-opioid agent +9.8515264,GO:0006813,http://purl.obolibrary.org/obo/GO_0006813,potassium ion transport +9.8515264,GO:1903037,http://purl.obolibrary.org/obo/GO_1903037,regulation of leukocyte cell-cell adhesion +9.8515264,NCBITaxon:206037,http://purl.obolibrary.org/obo/NCBITaxon_206037,none +9.8515264,PR:000015441,http://purl.obolibrary.org/obo/PR_000015441,transcription factor Sp3 +9.8515264,PR:000029756,http://purl.obolibrary.org/obo/PR_000029756,"NAD-dependent protein deacetylase sirtuin-3, mitochondrial" +9.8515264,PR:Q60457,http://purl.obolibrary.org/obo/PR_Q60457,none +9.8523491,GO:0015171,http://purl.obolibrary.org/obo/GO_0015171,amino acid transmembrane transporter activity +9.8523491,GO:0015772,http://purl.obolibrary.org/obo/GO_0015772,oligosaccharide transport +9.8523491,GO:0042470,http://purl.obolibrary.org/obo/GO_0042470,melanosome +9.8523491,NCBITaxon:12305,http://purl.obolibrary.org/obo/NCBITaxon_12305,none +9.8523491,NCBITaxon:35276,http://purl.obolibrary.org/obo/NCBITaxon_35276,none +9.8531725,DRUGBANK:DB00840,http://purl.obolibrary.org/obo/DRUGBANK_DB00840,none +9.8531725,DRUGBANK:DB02594,http://purl.obolibrary.org/obo/DRUGBANK_DB02594,none +9.8531725,DRUGBANK:DB11100,http://purl.obolibrary.org/obo/DRUGBANK_DB11100,none +9.8531725,GO:0005055,http://purl.obolibrary.org/obo/GO_0005055,laminin receptor activity +9.8531725,GO:0050839,http://purl.obolibrary.org/obo/GO_0050839,cell adhesion molecule binding +9.8531725,GO:0098631,http://purl.obolibrary.org/obo/GO_0098631,cell adhesion mediator activity +9.8531725,MONDO:0004565,http://purl.obolibrary.org/obo/MONDO_0004565,intestinal obstruction +9.8531725,UBERON:0009566,http://purl.obolibrary.org/obo/UBERON_0009566,intestinal submucosa +9.8539966,CHEBI:37143,http://purl.obolibrary.org/obo/CHEBI_37143,organofluorine compound +9.8539966,DRUGBANK:DB00222,http://purl.obolibrary.org/obo/DRUGBANK_DB00222,none +9.8539966,DRUGBANK:DB10558,http://purl.obolibrary.org/obo/DRUGBANK_DB10558,none +9.8539966,GO:0002544,http://purl.obolibrary.org/obo/GO_0002544,chronic inflammatory response +9.8539966,MONDO:0001100,http://purl.obolibrary.org/obo/MONDO_0001100,hypertrophy of breast +9.8539966,SO:0000092,http://purl.obolibrary.org/obo/SO_0000092,ct_gene +9.8539966,UBERON:0002360,http://purl.obolibrary.org/obo/UBERON_0002360,meninx +9.8548213,DRUGBANK:DB08861,http://purl.obolibrary.org/obo/DRUGBANK_DB08861,none +9.8548213,DRUGBANK:DB10504,http://purl.obolibrary.org/obo/DRUGBANK_DB10504,none +9.8548213,MONDO:0008039,http://purl.obolibrary.org/obo/MONDO_0008039,tropical spastic paraparesis +9.8548213,MONDO:0018842,http://purl.obolibrary.org/obo/MONDO_0018842,primary effusion lymphoma +9.8548213,PR:000001477,http://purl.obolibrary.org/obo/PR_000001477,leucine-rich repeat-containing G-protein coupled receptor 4/5/6 +9.8556467,GO:0005008,http://purl.obolibrary.org/obo/GO_0005008,hepatocyte growth factor-activated receptor activity +9.8556467,GO:0042551,http://purl.obolibrary.org/obo/GO_0042551,neuron maturation +9.8556467,HP:0012718,http://purl.obolibrary.org/obo/HP_0012718,Morphological abnormality of the gastrointestinal tract +9.8556467,HP:0025033,http://purl.obolibrary.org/obo/HP_0025033,Abnormality of digestive system morphology +9.8556467,MONDO:0004872,http://purl.obolibrary.org/obo/MONDO_0004872,hemorrhoid +9.8564728,CL:0000422,http://purl.obolibrary.org/obo/CL_0000422,mitogenic signaling cell +9.8564728,GO:0015185,http://purl.obolibrary.org/obo/GO_0015185,gamma-aminobutyric acid transmembrane transporter activity +9.8564728,MONDO:0002003,http://purl.obolibrary.org/obo/MONDO_0002003,papilledema +9.8564728,MONDO:0008919,http://purl.obolibrary.org/obo/MONDO_0008919,systemic primary carnitine deficiency disease +9.8564728,UBERON:0001663,http://purl.obolibrary.org/obo/UBERON_0001663,cerebral vein +9.8564728,UBERON:0002350,http://purl.obolibrary.org/obo/UBERON_0002350,conducting system of heart +9.8572996,MONDO:0005602,http://purl.obolibrary.org/obo/MONDO_0005602,ovarian teratoma +9.8572996,MONDO:0015778,http://purl.obolibrary.org/obo/MONDO_0015778,syndromic hypothyroidism +9.8572996,PR:000013697,http://purl.obolibrary.org/obo/PR_000013697,RalA-binding protein 1 +9.8581271,DRUGBANK:DB00593,http://purl.obolibrary.org/obo/DRUGBANK_DB00593,none +9.8581271,DRUGBANK:DB01143,http://purl.obolibrary.org/obo/DRUGBANK_DB01143,none +9.8581271,GO:0009932,http://purl.obolibrary.org/obo/GO_0009932,cell tip growth +9.8581271,MONDO:0003582,http://purl.obolibrary.org/obo/MONDO_0003582,hereditary breast ovarian cancer syndrome +9.8581271,MONDO:0007222,http://purl.obolibrary.org/obo/MONDO_0007222,brachydactyly type D +9.8581271,MONDO:0016079,http://purl.obolibrary.org/obo/MONDO_0016079,sporadic Creutzfeldt-Jakob disease +9.8581271,MONDO:0020576,http://purl.obolibrary.org/obo/MONDO_0020576,cutaneous vasculitis +9.8597841,GO:0035937,http://purl.obolibrary.org/obo/GO_0035937,estrogen secretion +9.8597841,PR:000011408,http://purl.obolibrary.org/obo/PR_000011408,nuclear receptor subfamily 4 group A member 1 +9.8597841,PR:000035665,http://purl.obolibrary.org/obo/PR_000035665,BUB1/BUB1B protein +9.8606136,CL:0000816,http://purl.obolibrary.org/obo/CL_0000816,immature B cell +9.8606136,GO:0004906,http://purl.obolibrary.org/obo/GO_0004906,interferon-gamma receptor activity +9.8606136,GO:0035934,http://purl.obolibrary.org/obo/GO_0035934,corticosterone secretion +9.8606136,MONDO:0014493,http://purl.obolibrary.org/obo/MONDO_0014493,autoimmune lymphoproliferative syndrome due to CTLA4 haploinsuffiency +9.8606136,PR:000004362,http://purl.obolibrary.org/obo/PR_000004362,achaete-scute homolog 1 +9.8614438,DRUGBANK:DB00911,http://purl.obolibrary.org/obo/DRUGBANK_DB00911,none +9.8614438,DRUGBANK:DB11126,http://purl.obolibrary.org/obo/DRUGBANK_DB11126,none +9.8614438,GO:0006312,http://purl.obolibrary.org/obo/GO_0006312,mitotic recombination +9.8614438,GO:0045472,http://purl.obolibrary.org/obo/GO_0045472,response to ether +9.8614438,PR:000037068,http://purl.obolibrary.org/obo/PR_000037068,none +9.8614438,UBERON:0004205,http://purl.obolibrary.org/obo/UBERON_0004205,inner medullary collecting duct +9.8622748,HP:0000843,http://purl.obolibrary.org/obo/HP_0000843,Hyperparathyroidism +9.8622748,PR:P52890,http://purl.obolibrary.org/obo/PR_P52890,none +9.8622748,UBERON:0007180,http://purl.obolibrary.org/obo/UBERON_0007180,atretic follicle of ovary +9.8631064,DRUGBANK:DB00990,http://purl.obolibrary.org/obo/DRUGBANK_DB00990,none +9.8631064,DRUGBANK:DB09510,http://purl.obolibrary.org/obo/DRUGBANK_DB09510,none +9.8631064,GO:1990635,http://purl.obolibrary.org/obo/GO_1990635,proximal dendrite +9.8631064,MONDO:0006874,http://purl.obolibrary.org/obo/MONDO_0006874,obstructive jaundice +9.8631064,MONDO:0007376,http://purl.obolibrary.org/obo/MONDO_0007376,fleck corneal dystrophy +9.8631064,MONDO:0018117,http://purl.obolibrary.org/obo/MONDO_0018117,"disorder of phospholipids, sphingolipids and fatty acids biosynthesis" +9.8631064,PR:000025351,http://purl.obolibrary.org/obo/PR_000025351,CCT protein +9.8639386,CHEBI:79085,http://purl.obolibrary.org/obo/CHEBI_79085,potassium channel opener +9.8639386,CL:0000423,http://purl.obolibrary.org/obo/CL_0000423,tip cell +9.8639386,GO:0043029,http://purl.obolibrary.org/obo/GO_0043029,T cell homeostasis +9.8639386,MONDO:0015214,http://purl.obolibrary.org/obo/MONDO_0015214,syndromic visceral malformation +9.8639386,PR:000000117,http://purl.obolibrary.org/obo/PR_000000117,pituitary homeobox 2 +9.8639386,PR:000012773,http://purl.obolibrary.org/obo/PR_000012773,polycystin-2 +9.8647716,DRUGBANK:DB12480,http://purl.obolibrary.org/obo/DRUGBANK_DB12480,none +9.8647716,MONDO:0004869,http://purl.obolibrary.org/obo/MONDO_0004869,pelvic varices +9.8647716,NCBITaxon:675064,http://purl.obolibrary.org/obo/NCBITaxon_675064,none +9.8647716,PR:000010815,http://purl.obolibrary.org/obo/PR_000010815,myelin expression factor 2 +9.8647716,SO:0000587,http://purl.obolibrary.org/obo/SO_0000587,group_I_intron +9.8647716,UBERON:0001096,http://purl.obolibrary.org/obo/UBERON_0001096,wall of esophagus +9.8656053,MONDO:0020663,http://purl.obolibrary.org/obo/MONDO_0020663,malignant spindle cell neoplasm +9.8656053,PR:000011422,http://purl.obolibrary.org/obo/PR_000011422,nuclear respiratory factor 1 +9.8656053,PR:000014944,http://purl.obolibrary.org/obo/PR_000014944,monocarboxylate transporter 1 +9.8664397,CHEBI:35341,http://purl.obolibrary.org/obo/CHEBI_35341,steroid +9.8664397,DRUGBANK:DB01128,http://purl.obolibrary.org/obo/DRUGBANK_DB01128,none +9.8664397,MONDO:0024610,http://purl.obolibrary.org/obo/MONDO_0024610,parasitic skin disease +9.8664397,UBERON:0003660,http://purl.obolibrary.org/obo/UBERON_0003660,eyelid muscle +9.8664397,UBERON:0004552,http://purl.obolibrary.org/obo/UBERON_0004552,digital artery +9.8672748,NCBITaxon:11520,http://purl.obolibrary.org/obo/NCBITaxon_11520,none +9.8672748,NCBITaxon:197912,http://purl.obolibrary.org/obo/NCBITaxon_197912,Betainfluenzavirus +9.8672748,PR:000016757,http://purl.obolibrary.org/obo/PR_000016757,translocator protein +9.8681105,DRUGBANK:DB00413,http://purl.obolibrary.org/obo/DRUGBANK_DB00413,none +9.8681105,DRUGBANK:DB02130,http://purl.obolibrary.org/obo/DRUGBANK_DB02130,none +9.8681105,DRUGBANK:DB13169,http://purl.obolibrary.org/obo/DRUGBANK_DB13169,none +9.8681105,MONDO:0017138,http://purl.obolibrary.org/obo/MONDO_0017138,Opitz G/BBB syndrome +9.8681105,MONDO:0017255,http://purl.obolibrary.org/obo/MONDO_0017255,panuveitis +9.868947,GO:0009067,http://purl.obolibrary.org/obo/GO_0009067,aspartate family amino acid biosynthetic process +9.868947,GO:0009699,http://purl.obolibrary.org/obo/GO_0009699,phenylpropanoid biosynthetic process +9.868947,PR:000006608,http://purl.obolibrary.org/obo/PR_000006608,DNA (cytosine-5)-methyltransferase 3B +9.868947,PR:000014970,http://purl.obolibrary.org/obo/PR_000014970,thiamine transporter 1 +9.8697842,PR:000022255,http://purl.obolibrary.org/obo/PR_000022255,none +9.870622,CHEBI:3309,http://purl.obolibrary.org/obo/CHEBI_3309,calcium gluconate +9.870622,DRUGBANK:DB11428,http://purl.obolibrary.org/obo/DRUGBANK_DB11428,none +9.870622,DRUGBANK:DB12290,http://purl.obolibrary.org/obo/DRUGBANK_DB12290,none +9.870622,MONDO:0009833,http://purl.obolibrary.org/obo/MONDO_0009833,Shwachman-Diamond syndrome +9.870622,MONDO:0018171,http://purl.obolibrary.org/obo/MONDO_0018171,malignant germ cell tumor of ovary +9.8722999,GO:0008376,http://purl.obolibrary.org/obo/GO_0008376,acetylgalactosaminyltransferase activity +9.8722999,MONDO:0001517,http://purl.obolibrary.org/obo/MONDO_0001517,dysentery +9.8722999,MONDO:0016354,http://purl.obolibrary.org/obo/MONDO_0016354,xeroderma pigmentosum-Cockayne syndrome complex +9.8722999,PR:000002311,http://purl.obolibrary.org/obo/PR_000002311,caspase-2 +9.8722999,PR:000023273,http://purl.obolibrary.org/obo/PR_000023273,none +9.8731399,CL:0000681,http://purl.obolibrary.org/obo/CL_0000681,radial glial cell +9.8731399,DRUGBANK:DB03651,http://purl.obolibrary.org/obo/DRUGBANK_DB03651,none +9.8731399,GO:0071744,http://purl.obolibrary.org/obo/GO_0071744,IgE B cell receptor complex +9.8731399,MONDO:0018170,http://purl.obolibrary.org/obo/MONDO_0018170,idiopathic nephrotic syndrome +9.8731399,PR:000006949,http://purl.obolibrary.org/obo/PR_000006949,"histone-lysine N-methyltransferase, H3 lysine-9 specific 3" +9.8739806,CHEBI:26523,http://purl.obolibrary.org/obo/CHEBI_26523,reactive oxygen species +9.8739806,GO:0033198,http://purl.obolibrary.org/obo/GO_0033198,response to ATP +9.8739806,MONDO:0004701,http://purl.obolibrary.org/obo/MONDO_0004701,uterine polyp +9.874822,PR:000004079,http://purl.obolibrary.org/obo/PR_000004079,annexin A6 +9.874822,PR:O04157,http://purl.obolibrary.org/obo/PR_O04157,none +9.874822,UBERON:0007750,http://purl.obolibrary.org/obo/UBERON_0007750,metatarsophalangeal joint of pedal digit 1 +9.8756641,GO:0004740,http://purl.obolibrary.org/obo/GO_0004740,pyruvate dehydrogenase (acetyl-transferring) kinase activity +9.8756641,GO:0050708,http://purl.obolibrary.org/obo/GO_0050708,regulation of protein secretion +9.8756641,MONDO:0015359,http://purl.obolibrary.org/obo/MONDO_0015359,autosomal dominant hereditary demyelinating motor and sensory neuropathy +9.8756641,PR:000001994,http://purl.obolibrary.org/obo/PR_000001994,C-C motif chemokine 22 +9.8756641,UBERON:0002475,http://purl.obolibrary.org/obo/UBERON_0002475,saphenous nerve +9.8756641,UBERON:0006135,http://purl.obolibrary.org/obo/UBERON_0006135,myelinated nerve fiber +9.8765069,GO:0004058,http://purl.obolibrary.org/obo/GO_0004058,aromatic-L-amino-acid decarboxylase activity +9.8773504,DRUGBANK:DB00074,http://purl.obolibrary.org/obo/DRUGBANK_DB00074,none +9.8773504,GO:0070603,http://purl.obolibrary.org/obo/GO_0070603,SWI/SNF superfamily-type complex +9.8773504,MONDO:0019714,http://purl.obolibrary.org/obo/MONDO_0019714,"non-syndromic polydactyly, syndactyly and/or hyperphalangy" +9.8781947,GO:0042583,http://purl.obolibrary.org/obo/GO_0042583,chromaffin granule +9.8781947,MONDO:0006993,http://purl.obolibrary.org/obo/MONDO_0006993,systolic heart failure +9.8781947,UBERON:0003644,http://purl.obolibrary.org/obo/UBERON_0003644,kidney arterial blood vessel +9.8790396,CL:0000860,http://purl.obolibrary.org/obo/CL_0000860,classical monocyte +9.8790396,DRUGBANK:DB03316,http://purl.obolibrary.org/obo/DRUGBANK_DB03316,none +9.8790396,PR:000010683,http://purl.obolibrary.org/obo/PR_000010683,hepatocyte growth factor-like protein +9.8798853,DRUGBANK:DB00850,http://purl.obolibrary.org/obo/DRUGBANK_DB00850,none +9.8798853,MONDO:0020599,http://purl.obolibrary.org/obo/MONDO_0020599,acquired coagulation factor deficiency +9.8798853,PR:000001256,http://purl.obolibrary.org/obo/PR_000001256,C-X-C chemokine receptor type 1 +9.8798853,UBERON:0005436,http://purl.obolibrary.org/obo/UBERON_0005436,common hepatic artery +9.8807317,GO:0030667,http://purl.obolibrary.org/obo/GO_0030667,secretory granule membrane +9.8807317,PR:000001706,http://purl.obolibrary.org/obo/PR_000001706,sphingosine 1-phosphate receptor 1 +9.8807317,PR:000001777,http://purl.obolibrary.org/obo/PR_000001777,IKK-related kinase +9.8815788,CL:0002453,http://purl.obolibrary.org/obo/CL_0002453,oligodendrocyte precursor cell +9.8815788,DRUGBANK:DB01208,http://purl.obolibrary.org/obo/DRUGBANK_DB01208,none +9.8815788,GO:0034335,http://purl.obolibrary.org/obo/GO_0034335,DNA negative supercoiling activity +9.8815788,MONDO:0018920,http://purl.obolibrary.org/obo/MONDO_0018920,peripartum cardiomyopathy +9.8815788,MONDO:0018925,http://purl.obolibrary.org/obo/MONDO_0018925,familial or sporadic hemiplegic migraine +9.8815788,PR:000002289,http://purl.obolibrary.org/obo/PR_000002289,TNF receptor-associated factor 3 +9.8824266,CL:0000652,http://purl.obolibrary.org/obo/CL_0000652,pinealocyte +9.8824266,GO:0004398,http://purl.obolibrary.org/obo/GO_0004398,histidine decarboxylase activity +9.8832751,DRUGBANK:DB00926,http://purl.obolibrary.org/obo/DRUGBANK_DB00926,none +9.8832751,GO:0050863,http://purl.obolibrary.org/obo/GO_0050863,regulation of T cell activation +9.8832751,MONDO:0008627,http://purl.obolibrary.org/obo/MONDO_0008627,ureter cancer +9.8832751,NCBITaxon:71274,http://purl.obolibrary.org/obo/NCBITaxon_71274,asterids +9.8832751,PR:000044785,http://purl.obolibrary.org/obo/PR_000044785,IgLON family member +9.8832751,PR:P24280,http://purl.obolibrary.org/obo/PR_P24280,none +9.8841244,CHEBI:52215,http://purl.obolibrary.org/obo/CHEBI_52215,photochemical role +9.8841244,DRUGBANK:DB06287,http://purl.obolibrary.org/obo/DRUGBANK_DB06287,none +9.8841244,GO:0015766,http://purl.obolibrary.org/obo/GO_0015766,disaccharide transport +9.8841244,MONDO:0001341,http://purl.obolibrary.org/obo/MONDO_0001341,selective IgA deficiency disease +9.8841244,MONDO:0003541,http://purl.obolibrary.org/obo/MONDO_0003541,adult acute lymphoblastic leukemia +9.8841244,MONDO:0010030,http://purl.obolibrary.org/obo/MONDO_0010030,Sjogren syndrome +9.8841244,NCBITaxon:12176,http://purl.obolibrary.org/obo/NCBITaxon_12176,none +9.8841244,PR:P22807,http://purl.obolibrary.org/obo/PR_P22807,none +9.8849743,GO:0016742,http://purl.obolibrary.org/obo/GO_0016742,"hydroxymethyl-, formyl- and related transferase activity" +9.8849743,PR:000000035,http://purl.obolibrary.org/obo/PR_000000035,BMP receptor type-1A +9.8849743,UBERON:0018389,http://purl.obolibrary.org/obo/UBERON_0018389,interoceptor +9.885825,PR:P20483,http://purl.obolibrary.org/obo/PR_P20483,none +9.885825,UBERON:0001826,http://purl.obolibrary.org/obo/UBERON_0001826,nasal cavity mucosa +9.885825,UBERON:0011905,http://purl.obolibrary.org/obo/UBERON_0011905,plantaris +9.8866765,DRUGBANK:DB00278,http://purl.obolibrary.org/obo/DRUGBANK_DB00278,none +9.8866765,GO:0019985,http://purl.obolibrary.org/obo/GO_0019985,translesion synthesis +9.8866765,GO:0044307,http://purl.obolibrary.org/obo/GO_0044307,dendritic branch +9.8866765,PR:000015262,http://purl.obolibrary.org/obo/PR_000015262,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily B member 1 +9.8875286,MONDO:0002749,http://purl.obolibrary.org/obo/MONDO_0002749,extracranial neuroblastoma +9.8875286,MONDO:0005749,http://purl.obolibrary.org/obo/MONDO_0005749,eosinophilic pneumonia +9.8883815,DRUGBANK:DB15871,http://purl.obolibrary.org/obo/DRUGBANK_DB15871,none +9.8883815,HP:0000546,http://purl.obolibrary.org/obo/HP_0000546,Retinal degeneration +9.8883815,MONDO:0006859,http://purl.obolibrary.org/obo/MONDO_0006859,mucinous cystadenoma +9.8883815,PR:000016980,http://purl.obolibrary.org/obo/PR_000016980,ubiquitin-conjugating enzyme E2 K +9.8892351,CHEBI:23240,http://purl.obolibrary.org/obo/CHEBI_23240,chromophore +9.8892351,DRUGBANK:DB12403,http://purl.obolibrary.org/obo/DRUGBANK_DB12403,none +9.8892351,GO:0016007,http://purl.obolibrary.org/obo/GO_0016007,mitochondrial derivative +9.8892351,GO:0048799,http://purl.obolibrary.org/obo/GO_0048799,animal organ maturation +9.8892351,PR:000004088,http://purl.obolibrary.org/obo/PR_000004088,lysine-specific histone demethylase 1A +9.8892351,PR:000014801,http://purl.obolibrary.org/obo/PR_000014801,sphingosine-1-phosphate phosphatase 1 +9.8892351,PR:000032291,http://purl.obolibrary.org/obo/PR_000032291,golgin subfamily A member 6A +9.8892351,UBERON:0007142,http://purl.obolibrary.org/obo/UBERON_0007142,left internal carotid artery +9.8892351,UBERON:0008340,http://purl.obolibrary.org/obo/UBERON_0008340,nasal bridge +9.8900894,DRUGBANK:DB15874,http://purl.obolibrary.org/obo/DRUGBANK_DB15874,none +9.8900894,GO:0036064,http://purl.obolibrary.org/obo/GO_0036064,ciliary basal body +9.8900894,MONDO:0002244,http://purl.obolibrary.org/obo/MONDO_0002244,factor VII deficiency +9.8900894,MONDO:0006082,http://purl.obolibrary.org/obo/MONDO_0006082,anal squamous cell carcinoma +9.8900894,PR:000009108,http://purl.obolibrary.org/obo/PR_000009108,insulin receptor substrate 2 +9.8909445,PR:000011137,http://purl.obolibrary.org/obo/PR_000011137,protein kinase C-binding protein NELL1 +9.8918003,MONDO:0002056,http://purl.obolibrary.org/obo/MONDO_0002056,breast fibroadenoma +9.8918003,PR:000014365,http://purl.obolibrary.org/obo/PR_000014365,runt-related transcription factor 3 +9.8918003,PR:Q5DW34,http://purl.obolibrary.org/obo/PR_Q5DW34,none +9.8926568,DRUGBANK:DB14179,http://purl.obolibrary.org/obo/DRUGBANK_DB14179,none +9.8926568,PR:000005924,http://purl.obolibrary.org/obo/PR_000005924,"citrate synthase, mitochondrial" +9.8935141,PR:000013490,http://purl.obolibrary.org/obo/PR_000013490,pentraxin-related protein PTX3 +9.8935141,PR:O93257,http://purl.obolibrary.org/obo/PR_O93257,none +9.8943721,CHEBI:50183,http://purl.obolibrary.org/obo/CHEBI_50183,P450 inhibitor +9.8943721,CHEBI:76838,http://purl.obolibrary.org/obo/CHEBI_76838,"EC 1.14.14.* (oxidoreductase acting on paired donors, incorporating of 1 atom of oxygen, with reduced flavin or flavoprotein as one donor) inhibitor" +9.8943721,CHEBI:76898,http://purl.obolibrary.org/obo/CHEBI_76898,EC 1.14.14.1 (unspecific monooxygenase) inhibitor +9.8943721,DRUGBANK:DB10450,http://purl.obolibrary.org/obo/DRUGBANK_DB10450,none +9.8943721,GO:0030104,http://purl.obolibrary.org/obo/GO_0030104,water homeostasis +9.8943721,MONDO:0002533,http://purl.obolibrary.org/obo/MONDO_0002533,papillary adenoma +9.8943721,PR:000023062,http://purl.obolibrary.org/obo/PR_000023062,none +9.8943721,PR:Q8JFR5,http://purl.obolibrary.org/obo/PR_Q8JFR5,none +9.8952308,GO:0031903,http://purl.obolibrary.org/obo/GO_0031903,microbody membrane +9.8960903,CL:0000371,http://purl.obolibrary.org/obo/CL_0000371,protoplast +9.8960903,DRUGBANK:DB00577,http://purl.obolibrary.org/obo/DRUGBANK_DB00577,none +9.8960903,DRUGBANK:DB00775,http://purl.obolibrary.org/obo/DRUGBANK_DB00775,none +9.8960903,DRUGBANK:DB00808,http://purl.obolibrary.org/obo/DRUGBANK_DB00808,none +9.8960903,GO:0005778,http://purl.obolibrary.org/obo/GO_0005778,peroxisomal membrane +9.8960903,GO:0032042,http://purl.obolibrary.org/obo/GO_0032042,mitochondrial DNA metabolic process +9.8960903,GO:0080135,http://purl.obolibrary.org/obo/GO_0080135,regulation of cellular response to stress +9.8960903,HP:0001328,http://purl.obolibrary.org/obo/HP_0001328,Specific learning disability +9.8960903,HP:0010522,http://purl.obolibrary.org/obo/HP_0010522,Dyslexia +9.8960903,MONDO:0003432,http://purl.obolibrary.org/obo/MONDO_0003432,strabismus +9.8960903,MONDO:0005475,http://purl.obolibrary.org/obo/MONDO_0005475,migraine with aura +9.8969505,GO:0008123,http://purl.obolibrary.org/obo/GO_0008123,cholesterol 7-alpha-monooxygenase activity +9.8969505,MONDO:0006186,http://purl.obolibrary.org/obo/MONDO_0006186,duodenal adenocarcinoma +9.8969505,MONDO:0017132,http://purl.obolibrary.org/obo/MONDO_0017132,hereditary ATTR amyloidosis +9.8969505,PR:000001123,http://purl.obolibrary.org/obo/PR_000001123,bradykinin receptor +9.8969505,PR:000012194,http://purl.obolibrary.org/obo/PR_000012194,P2X purinoceptor 7 +9.8969505,PR:000017037,http://purl.obolibrary.org/obo/PR_000017037,mitochondrial uncoupling protein 3 +9.8969505,PR:000036509,http://purl.obolibrary.org/obo/PR_000036509,histone H2B +9.8969505,UBERON:0004122,http://purl.obolibrary.org/obo/UBERON_0004122,genitourinary system +9.8978115,DRUGBANK:DB02267,http://purl.obolibrary.org/obo/DRUGBANK_DB02267,none +9.8978115,GO:0005721,http://purl.obolibrary.org/obo/GO_0005721,pericentric heterochromatin +9.8978115,HP:0001581,http://purl.obolibrary.org/obo/HP_0001581,Recurrent skin infections +9.8978115,MONDO:0005033,http://purl.obolibrary.org/obo/MONDO_0005033,ganglioneuroma +9.8986732,DRUGBANK:DB01120,http://purl.obolibrary.org/obo/DRUGBANK_DB01120,none +9.8986732,DRUGBANK:DB13829,http://purl.obolibrary.org/obo/DRUGBANK_DB13829,none +9.8986732,MONDO:0003196,http://purl.obolibrary.org/obo/MONDO_0003196,appendix carcinoma +9.8986732,PR:000005008,http://purl.obolibrary.org/obo/PR_000005008,macrophage-capping protein +9.8986732,PR:Q91044,http://purl.obolibrary.org/obo/PR_Q91044,none +9.8986732,UBERON:0005890,http://purl.obolibrary.org/obo/UBERON_0005890,gonad germinal epithelium +9.8995356,GO:0034762,http://purl.obolibrary.org/obo/GO_0034762,regulation of transmembrane transport +9.8995356,GO:0035282,http://purl.obolibrary.org/obo/GO_0035282,segmentation +9.8995356,GO:0035329,http://purl.obolibrary.org/obo/GO_0035329,hippo signaling +9.8995356,PR:000001779,http://purl.obolibrary.org/obo/PR_000001779,serine/threonine-protein kinase TBK1 +9.9003988,MONDO:0011679,http://purl.obolibrary.org/obo/MONDO_0011679,"craniosynostosis syndrome, autosomal recessive" +9.9012627,DRUGBANK:DB07453,http://purl.obolibrary.org/obo/DRUGBANK_DB07453,none +9.9012627,GO:0031970,http://purl.obolibrary.org/obo/GO_0031970,organelle envelope lumen +9.9012627,MONDO:0007182,http://purl.obolibrary.org/obo/MONDO_0007182,Machado-Joseph disease +9.9012627,MONDO:0016088,http://purl.obolibrary.org/obo/MONDO_0016088,hypoxanthine-guanine phosphoribosyltransferase deficiency +9.9012627,UBERON:0001480,http://purl.obolibrary.org/obo/UBERON_0001480,proximal carpal bone +9.9012627,UBERON:0014387,http://purl.obolibrary.org/obo/UBERON_0014387,mesenchyme derived from neural crest +9.9021274,CL:0000792,http://purl.obolibrary.org/obo/CL_0000792,"CD4-positive, CD25-positive, alpha-beta regulatory T cell" +9.9021274,DRUGBANK:DB14253,http://purl.obolibrary.org/obo/DRUGBANK_DB14253,none +9.9021274,MONDO:0001020,http://purl.obolibrary.org/obo/MONDO_0001020,amblyopia +9.9021274,MONDO:0021510,http://purl.obolibrary.org/obo/MONDO_0021510,benign neoplasm of prostate +9.9021274,PR:000001781,http://purl.obolibrary.org/obo/PR_000001781,interleukin-1 receptor-associated kinase IRAK1/3 +9.9021274,PR:000015920,http://purl.obolibrary.org/obo/PR_000015920,none +9.9021274,PR:000016876,http://purl.obolibrary.org/obo/PR_000016876,thymidylate synthase +9.9021274,UBERON:0015078,http://purl.obolibrary.org/obo/UBERON_0015078,proximal carpal endochondral element +9.9029928,CL:0000577,http://purl.obolibrary.org/obo/CL_0000577,type EC enteroendocrine cell +9.9029928,GO:0004890,http://purl.obolibrary.org/obo/GO_0004890,GABA-A receptor activity +9.9029928,HP:0002157,http://purl.obolibrary.org/obo/HP_0002157,Azotemia +9.9029928,HP:0004364,http://purl.obolibrary.org/obo/HP_0004364,Abnormal circulating nitrogen compound concentration +9.903859,PR:000030251,http://purl.obolibrary.org/obo/PR_000030251,E3 ubiquitin-protein ligase MYCBP2 +9.9047259,CL:0000871,http://purl.obolibrary.org/obo/CL_0000871,splenic macrophage +9.9047259,GO:0061135,http://purl.obolibrary.org/obo/GO_0061135,endopeptidase regulator activity +9.9047259,PR:000003569,http://purl.obolibrary.org/obo/PR_000003569,ATP-binding cassette sub-family F member 1 +9.9047259,PR:000011237,http://purl.obolibrary.org/obo/PR_000011237,NF-kappa-B-repressing factor +9.9055936,GO:0000731,http://purl.obolibrary.org/obo/GO_0000731,DNA synthesis involved in DNA repair +9.9055936,GO:0004689,http://purl.obolibrary.org/obo/GO_0004689,phosphorylase kinase activity +9.9055936,PR:000017618,http://purl.obolibrary.org/obo/PR_000017618,zinc finger E-box-binding homeobox 2 +9.9055936,PR:000044626,http://purl.obolibrary.org/obo/PR_000044626,orai channel protein +9.9055936,PR:000044627,http://purl.obolibrary.org/obo/PR_000044627,store-operated ion channel protein +9.9064621,DRUGBANK:DB08878,http://purl.obolibrary.org/obo/DRUGBANK_DB08878,none +9.9064621,GO:0048512,http://purl.obolibrary.org/obo/GO_0048512,circadian behavior +9.9064621,MONDO:0020214,http://purl.obolibrary.org/obo/MONDO_0020214,posterior corneal dystrophy +9.9064621,UBERON:0006532,http://purl.obolibrary.org/obo/UBERON_0006532,oblique extraocular muscle +9.9073312,CL:0000748,http://purl.obolibrary.org/obo/CL_0000748,retinal bipolar neuron +9.9073312,MONDO:0017828,http://purl.obolibrary.org/obo/MONDO_0017828,primary renal tubular acidosis +9.9073312,UBERON:0007651,http://purl.obolibrary.org/obo/UBERON_0007651,anatomical junction +9.9082012,GO:0009860,http://purl.obolibrary.org/obo/GO_0009860,pollen tube growth +9.9082012,PR:Q9XI74,http://purl.obolibrary.org/obo/PR_Q9XI74,none +9.9082012,UBERON:0004916,http://purl.obolibrary.org/obo/UBERON_0004916,anal sphincter +9.9090719,GO:0019081,http://purl.obolibrary.org/obo/GO_0019081,viral translation +9.9090719,HP:0100324,http://purl.obolibrary.org/obo/HP_0100324,Scleroderma +9.9090719,MONDO:0001246,http://purl.obolibrary.org/obo/MONDO_0001246,typhus +9.9099434,DRUGBANK:DB00558,http://purl.obolibrary.org/obo/DRUGBANK_DB00558,none +9.9099434,MONDO:0006233,http://purl.obolibrary.org/obo/MONDO_0006233,gonadal teratoma +9.9099434,MONDO:0010198,http://purl.obolibrary.org/obo/MONDO_0010198,Wernicke-Korsakoff syndrome +9.9099434,MONDO:0016178,http://purl.obolibrary.org/obo/MONDO_0016178,peripheral neuropathy associated with monoclonal gammopathy +9.9099434,PR:000025988,http://purl.obolibrary.org/obo/PR_000025988,max dimerization protein +9.9108156,CL:0008028,http://purl.obolibrary.org/obo/CL_0008028,visual system neuron +9.9108156,CL:0008030,http://purl.obolibrary.org/obo/CL_0008030,excitatory neuron +9.9108156,DRUGBANK:DB05633,http://purl.obolibrary.org/obo/DRUGBANK_DB05633,none +9.9108156,GO:0004603,http://purl.obolibrary.org/obo/GO_0004603,phenylethanolamine N-methyltransferase activity +9.9108156,GO:0044309,http://purl.obolibrary.org/obo/GO_0044309,neuron spine +9.9108156,MONDO:0005867,http://purl.obolibrary.org/obo/MONDO_0005867,Mycoplasma pneumoniae pneumonia +9.9108156,NCBITaxon:675072,http://purl.obolibrary.org/obo/NCBITaxon_675072,none +9.9108156,PR:000001099,http://purl.obolibrary.org/obo/PR_000001099,5-hydroxytryptamine receptor 2 +9.9108156,PR:000003009,http://purl.obolibrary.org/obo/PR_000003009,radixin +9.9108156,PR:000010370,http://purl.obolibrary.org/obo/PR_000010370,mitofusin-2 +9.9108156,PR:000023524,http://purl.obolibrary.org/obo/PR_000023524,none +9.9116886,CHEBI:35498,http://purl.obolibrary.org/obo/CHEBI_35498,diuretic +9.9116886,GO:0072527,http://purl.obolibrary.org/obo/GO_0072527,pyrimidine-containing compound metabolic process +9.9116886,MONDO:0006266,http://purl.obolibrary.org/obo/MONDO_0006266,Leydig cell tumor +9.9125623,DRUGBANK:DB10983,http://purl.obolibrary.org/obo/DRUGBANK_DB10983,none +9.9125623,DRUGBANK:DB15339,http://purl.obolibrary.org/obo/DRUGBANK_DB15339,none +9.9125623,MONDO:0000611,http://purl.obolibrary.org/obo/MONDO_0000611,pre-malignant neoplasm +9.9125623,MONDO:0000980,http://purl.obolibrary.org/obo/MONDO_0000980,aortic atherosclerosis +9.9125623,PR:000015550,http://purl.obolibrary.org/obo/PR_000015550,protein spinster homolog 1 +9.9125623,PR:000029027,http://purl.obolibrary.org/obo/PR_000029027,none +9.9125623,PR:Q9FKS4,http://purl.obolibrary.org/obo/PR_Q9FKS4,none +9.9125623,UBERON:0006609,http://purl.obolibrary.org/obo/UBERON_0006609,corpus cavernosum +9.9134368,GO:2001057,http://purl.obolibrary.org/obo/GO_2001057,reactive nitrogen species metabolic process +9.9134368,MONDO:0006676,http://purl.obolibrary.org/obo/MONDO_0006676,beriberi +9.9134368,MONDO:0019234,http://purl.obolibrary.org/obo/MONDO_0019234,peroxisome biogenesis disorder +9.9134368,PR:000012631,http://purl.obolibrary.org/obo/PR_000012631,prohibitin +9.9134368,PR:000017508,http://purl.obolibrary.org/obo/PR_000017508,X-ray repair cross-complementing protein 5 +9.9134368,SO:0001605,http://purl.obolibrary.org/obo/SO_0001605,amino_acid_insertion +9.9143121,GO:0070991,http://purl.obolibrary.org/obo/GO_0070991,medium-chain-acyl-CoA dehydrogenase activity +9.9143121,MONDO:0016867,http://purl.obolibrary.org/obo/MONDO_0016867,partial deletion of chromosome 2 +9.9143121,PR:000003601,http://purl.obolibrary.org/obo/PR_000003601,"medium-chain specific acyl-CoA dehydrogenase, mitochondrial" +9.9143121,PR:000014348,http://purl.obolibrary.org/obo/PR_000014348,reticulon-4 +9.9143121,PR:000015696,http://purl.obolibrary.org/obo/PR_000015696,"alpha-2,8-sialyltransferase 8B" +9.9151881,DRUGBANK:DB00700,http://purl.obolibrary.org/obo/DRUGBANK_DB00700,none +9.9151881,MONDO:0000389,http://purl.obolibrary.org/obo/MONDO_0000389,atelosteogenesis +9.9151881,MONDO:0002045,http://purl.obolibrary.org/obo/MONDO_0002045,communicating hydrocephalus +9.9151881,MONDO:0005173,http://purl.obolibrary.org/obo/MONDO_0005173,actinic keratosis +9.9151881,MONDO:0021747,http://purl.obolibrary.org/obo/MONDO_0021747,Acanthamoeba infectious disease +9.9151881,PR:000000126,http://purl.obolibrary.org/obo/PR_000000126,serine/threonine-protein kinase receptor R3 +9.9151881,PR:000009925,http://purl.obolibrary.org/obo/PR_000009925,low-density lipoprotein receptor-related protein 5 +9.9160649,GO:0046496,http://purl.obolibrary.org/obo/GO_0046496,nicotinamide nucleotide metabolic process +9.9160649,GO:0055106,http://purl.obolibrary.org/obo/GO_0055106,ubiquitin-protein transferase regulator activity +9.9160649,GO:0097027,http://purl.obolibrary.org/obo/GO_0097027,ubiquitin-protein transferase activator activity +9.9160649,PR:000001992,http://purl.obolibrary.org/obo/PR_000001992,C-C motif chemokine 20 +9.9160649,PR:000005081,http://purl.obolibrary.org/obo/PR_000005081,cystathionine beta-synthase +9.9160649,PR:000009030,http://purl.obolibrary.org/obo/PR_000009030,"indoleamine 2,3-dioxygenase 1" +9.9160649,PR:000014296,http://purl.obolibrary.org/obo/PR_000014296,GTP-binding protein RAD +9.9169425,CL:0000307,http://purl.obolibrary.org/obo/CL_0000307,tracheal epithelial cell +9.9169425,DRUGBANK:DB01351,http://purl.obolibrary.org/obo/DRUGBANK_DB01351,none +9.9169425,GO:0016857,http://purl.obolibrary.org/obo/GO_0016857,"racemase and epimerase activity, acting on carbohydrates and derivatives" +9.9169425,MONDO:0013074,http://purl.obolibrary.org/obo/MONDO_0013074,encephalocraniocutaneous lipomatosis +9.9169425,PR:000004807,http://purl.obolibrary.org/obo/PR_000004807,bromodomain-containing protein 4 +9.9169425,PR:Q10452,http://purl.obolibrary.org/obo/PR_Q10452,none +9.9169425,UBERON:0003701,http://purl.obolibrary.org/obo/UBERON_0003701,calcaneal tendon +9.9178209,DRUGBANK:DB08856,http://purl.obolibrary.org/obo/DRUGBANK_DB08856,none +9.9178209,DRUGBANK:DB09407,http://purl.obolibrary.org/obo/DRUGBANK_DB09407,none +9.9178209,GO:0034399,http://purl.obolibrary.org/obo/GO_0034399,nuclear periphery +9.9178209,MONDO:0000440,http://purl.obolibrary.org/obo/MONDO_0000440,metabolic acidosis +9.9178209,UBERON:0003437,http://purl.obolibrary.org/obo/UBERON_0003437,eyelid nerve +9.9187,GO:1990757,http://purl.obolibrary.org/obo/GO_1990757,ubiquitin ligase activator activity +9.9195799,DRUGBANK:DB01377,http://purl.obolibrary.org/obo/DRUGBANK_DB01377,none +9.9195799,DRUGBANK:DB06810,http://purl.obolibrary.org/obo/DRUGBANK_DB06810,none +9.9195799,MONDO:0024300,http://purl.obolibrary.org/obo/MONDO_0024300,hypophosphatemic rickets +9.9195799,MONDO:0030703,http://purl.obolibrary.org/obo/MONDO_0030703,autoimmune vasculitis +9.9195799,PR:000001278,http://purl.obolibrary.org/obo/PR_000001278,disintegrin and metalloproteinase domain-containing protein 10 +9.9204605,CL:0005010,http://purl.obolibrary.org/obo/CL_0005010,renal intercalated cell +9.9204605,DRUGBANK:DB00687,http://purl.obolibrary.org/obo/DRUGBANK_DB00687,none +9.9204605,DRUGBANK:DB12025,http://purl.obolibrary.org/obo/DRUGBANK_DB12025,none +9.9204605,GO:0006862,http://purl.obolibrary.org/obo/GO_0006862,nucleotide transport +9.9204605,PR:000009698,http://purl.obolibrary.org/obo/PR_000009698,phosphatidylcholine-sterol acyltransferase +9.921342,DRUGBANK:DB00012,http://purl.obolibrary.org/obo/DRUGBANK_DB00012,none +9.921342,DRUGBANK:DB02235,http://purl.obolibrary.org/obo/DRUGBANK_DB02235,none +9.921342,MONDO:0044765,http://purl.obolibrary.org/obo/MONDO_0044765,steroid-resistant nephrotic syndrome +9.921342,PR:000001719,http://purl.obolibrary.org/obo/PR_000001719,transient receptor potential cation channel TRPM8 +9.921342,PR:000003549,http://purl.obolibrary.org/obo/PR_000003549,bile salt export pump +9.921342,UBERON:0035038,http://purl.obolibrary.org/obo/UBERON_0035038,carpal tunnel +9.9222242,GO:0003954,http://purl.obolibrary.org/obo/GO_0003954,NADH dehydrogenase activity +9.9222242,MONDO:0005803,http://purl.obolibrary.org/obo/MONDO_0005803,hyperinsulinemic hypoglycemia +9.9222242,PR:000004152,http://purl.obolibrary.org/obo/PR_000004152,apolipoprotein C-III +9.9222242,UBERON:0004132,http://purl.obolibrary.org/obo/UBERON_0004132,trigeminal sensory nucleus +9.9231072,GO:0017156,http://purl.obolibrary.org/obo/GO_0017156,calcium-ion regulated exocytosis +9.9231072,PR:000005115,http://purl.obolibrary.org/obo/PR_000005115,cyclin-A2 +9.923991,DRUGBANK:DB01142,http://purl.obolibrary.org/obo/DRUGBANK_DB01142,none +9.923991,GO:0051253,http://purl.obolibrary.org/obo/GO_0051253,negative regulation of RNA metabolic process +9.923991,GO:0055067,http://purl.obolibrary.org/obo/GO_0055067,monovalent inorganic cation homeostasis +9.923991,GO:1902780,http://purl.obolibrary.org/obo/GO_1902780,response to nonane +9.923991,UBERON:0005082,http://purl.obolibrary.org/obo/UBERON_0005082,tube lumen +9.9248756,GO:0042734,http://purl.obolibrary.org/obo/GO_0042734,presynaptic membrane +9.9248756,PR:000000930,http://purl.obolibrary.org/obo/PR_000000930,none +9.9257609,DRUGBANK:DB12453,http://purl.obolibrary.org/obo/DRUGBANK_DB12453,none +9.9257609,PR:P08124,http://purl.obolibrary.org/obo/PR_P08124,none +9.926647,CHEBI:35474,http://purl.obolibrary.org/obo/CHEBI_35474,anxiolytic drug +9.926647,GO:0008810,http://purl.obolibrary.org/obo/GO_0008810,cellulase activity +9.926647,GO:0034337,http://purl.obolibrary.org/obo/GO_0034337,RNA folding +9.926647,UBERON:0001145,http://purl.obolibrary.org/obo/UBERON_0001145,ovarian vein +9.926647,UBERON:0018408,http://purl.obolibrary.org/obo/UBERON_0018408,infra-orbital nerve +9.926647,UBERON:0022298,http://purl.obolibrary.org/obo/UBERON_0022298,lower eyelid nerve +9.927534,DRUGBANK:DB05245,http://purl.obolibrary.org/obo/DRUGBANK_DB05245,none +9.927534,DRUGBANK:DB09350,http://purl.obolibrary.org/obo/DRUGBANK_DB09350,none +9.927534,DRUGBANK:DB13716,http://purl.obolibrary.org/obo/DRUGBANK_DB13716,none +9.927534,UBERON:0002466,http://purl.obolibrary.org/obo/UBERON_0002466,intestine secretion +9.9284217,CHEBI:35155,http://purl.obolibrary.org/obo/CHEBI_35155,elemental calcium +9.9284217,GO:0004070,http://purl.obolibrary.org/obo/GO_0004070,aspartate carbamoyltransferase activity +9.9284217,MONDO:0019145,http://purl.obolibrary.org/obo/MONDO_0019145,hereditary thrombophilia due to congenital protein C deficiency +9.9284217,NCBITaxon:2785011,http://purl.obolibrary.org/obo/NCBITaxon_2785011,none +9.9284217,NCBITaxon:6544,http://purl.obolibrary.org/obo/NCBITaxon_6544,Bivalvia +9.9293102,DRUGBANK:DB01306,http://purl.obolibrary.org/obo/DRUGBANK_DB01306,none +9.9293102,GO:0021782,http://purl.obolibrary.org/obo/GO_0021782,glial cell development +9.9293102,MONDO:0002433,http://purl.obolibrary.org/obo/MONDO_0002433,malignant cranial nerve neoplasm +9.9293102,MONDO:0006329,http://purl.obolibrary.org/obo/MONDO_0006329,olfactory neuroblastoma +9.9293102,MONDO:0009717,http://purl.obolibrary.org/obo/MONDO_0009717,Schwartz-Jampel syndrome +9.9293102,MONDO:0016151,http://purl.obolibrary.org/obo/MONDO_0016151,qualitative or quantitative defects of perlecan +9.9293102,MONDO:0019689,http://purl.obolibrary.org/obo/MONDO_0019689,perlecan-related bone disorder +9.9293102,PR:000001247,http://purl.obolibrary.org/obo/PR_000001247,substance-P receptor +9.9293102,SO:0000342,http://purl.obolibrary.org/obo/SO_0000342,site_specific_recombination_target_region +9.9293102,UBERON:0003474,http://purl.obolibrary.org/obo/UBERON_0003474,meningeal artery +9.9301994,DRUGBANK:DB00557,http://purl.obolibrary.org/obo/DRUGBANK_DB00557,none +9.9301994,DRUGBANK:DB14763,http://purl.obolibrary.org/obo/DRUGBANK_DB14763,none +9.9301994,GO:0007635,http://purl.obolibrary.org/obo/GO_0007635,chemosensory behavior +9.9301994,MONDO:0002722,http://purl.obolibrary.org/obo/MONDO_0002722,olfactory nerve neoplasm +9.9301994,PR:000002101,http://purl.obolibrary.org/obo/PR_000002101,sodium channel protein type 5 subunit alpha +9.9301994,PR:000033007,http://purl.obolibrary.org/obo/PR_000033007,none +9.9301994,UBERON:0034980,http://purl.obolibrary.org/obo/UBERON_0034980,jugular bulb +9.9310895,DRUGBANK:DB11282,http://purl.obolibrary.org/obo/DRUGBANK_DB11282,none +9.9310895,DRUGBANK:DB11989,http://purl.obolibrary.org/obo/DRUGBANK_DB11989,none +9.9310895,MONDO:0002727,http://purl.obolibrary.org/obo/MONDO_0002727,olfactory nerve disease +9.9310895,MONDO:0017118,http://purl.obolibrary.org/obo/MONDO_0017118,syndrome with a cerebellar malformation as major feature +9.9310895,NCBITaxon:11250,http://purl.obolibrary.org/obo/NCBITaxon_11250,Human orthopneumovirus +9.9310895,NCBITaxon:40005,http://purl.obolibrary.org/obo/NCBITaxon_40005,Yellow fever virus group +9.9310895,PR:000001623,http://purl.obolibrary.org/obo/PR_000001623,neuropeptide Y receptor type 4 +9.9310895,PR:000001951,http://purl.obolibrary.org/obo/PR_000001951,tumor necrosis factor receptor superfamily member 10A/B +9.9310895,PR:000012262,http://purl.obolibrary.org/obo/PR_000012262,peroxisomal N(1)-acetyl-spermine/spermidine oxidase +9.9310895,UBERON:0010321,http://purl.obolibrary.org/obo/UBERON_0010321,skeletal element of eye region +9.9319804,MONDO:0001464,http://purl.obolibrary.org/obo/MONDO_0001464,sigmoid colon cancer +9.9319804,MONDO:0004841,http://purl.obolibrary.org/obo/MONDO_0004841,kidney hypertrophy +9.9319804,MONDO:0018689,http://purl.obolibrary.org/obo/MONDO_0018689,plasma cell leukemia +9.932872,CL:0002476,http://purl.obolibrary.org/obo/CL_0002476,bone marrow macrophage +9.932872,DRUGBANK:DB01105,http://purl.obolibrary.org/obo/DRUGBANK_DB01105,none +9.932872,DRUGBANK:DB13376,http://purl.obolibrary.org/obo/DRUGBANK_DB13376,none +9.9337645,PR:000004303,http://purl.obolibrary.org/obo/PR_000004303,aryl hydrocarbon receptor nuclear translocator +9.9346578,DRUGBANK:DB13154,http://purl.obolibrary.org/obo/DRUGBANK_DB13154,none +9.9346578,GO:0000956,http://purl.obolibrary.org/obo/GO_0000956,nuclear-transcribed mRNA catabolic process +9.9346578,MONDO:0001835,http://purl.obolibrary.org/obo/MONDO_0001835,facial paralysis +9.9355518,DRUGBANK:DB09083,http://purl.obolibrary.org/obo/DRUGBANK_DB09083,none +9.9355518,MONDO:0007100,http://purl.obolibrary.org/obo/MONDO_0007100,familial amyloid neuropathy +9.9355518,MONDO:0018899,http://purl.obolibrary.org/obo/MONDO_0018899,posterior cortical atrophy +9.9355518,PR:000001343,http://purl.obolibrary.org/obo/PR_000001343,CD69 molecule +9.9355518,PR:000012027,http://purl.obolibrary.org/obo/PR_000012027,calcium release-activated calcium channel protein 1 +9.9355518,PR:000012732,http://purl.obolibrary.org/obo/PR_000012732,proto-oncogene serine/threonine-protein kinase Pim-1 +9.9355518,PR:P25085,http://purl.obolibrary.org/obo/PR_P25085,none +9.9355518,PR:P25086,http://purl.obolibrary.org/obo/PR_P25086,none +9.9355518,UBERON:0001676,http://purl.obolibrary.org/obo/UBERON_0001676,occipital bone +9.9364467,CL:0002357,http://purl.obolibrary.org/obo/CL_0002357,fetal derived definitive erythrocyte +9.9364467,DRUGBANK:DB00733,http://purl.obolibrary.org/obo/DRUGBANK_DB00733,none +9.9364467,DRUGBANK:DB00880,http://purl.obolibrary.org/obo/DRUGBANK_DB00880,none +9.9364467,PR:000001098,http://purl.obolibrary.org/obo/PR_000001098,5-hydroxytryptamine receptor 1 +9.9373423,GO:0060149,http://purl.obolibrary.org/obo/GO_0060149,negative regulation of posttranscriptional gene silencing +9.9373423,GO:0060967,http://purl.obolibrary.org/obo/GO_0060967,negative regulation of gene silencing by RNA +9.9373423,GO:0060969,http://purl.obolibrary.org/obo/GO_0060969,none +9.9373423,HP:0003330,http://purl.obolibrary.org/obo/HP_0003330,Abnormal bone structure +9.9373423,MONDO:0020155,http://purl.obolibrary.org/obo/MONDO_0020155,eyelid border anomaly +9.9373423,PR:000002028,http://purl.obolibrary.org/obo/PR_000002028,antigen-presenting glycoprotein CD1d +9.9373423,UBERON:0005386,http://purl.obolibrary.org/obo/UBERON_0005386,olfactory segment of nasal mucosa +9.9382388,DRUGBANK:DB02207,http://purl.obolibrary.org/obo/DRUGBANK_DB02207,none +9.9382388,GO:0006839,http://purl.obolibrary.org/obo/GO_0006839,mitochondrial transport +9.9382388,GO:1900369,http://purl.obolibrary.org/obo/GO_1900369,negative regulation of RNA interference +9.9382388,GO:1902911,http://purl.obolibrary.org/obo/GO_1902911,protein kinase complex +9.9382388,MONDO:0016210,http://purl.obolibrary.org/obo/MONDO_0016210,alternating hemiplegia +9.939136,DRUGBANK:DB11104,http://purl.obolibrary.org/obo/DRUGBANK_DB11104,none +9.939136,PR:000012636,http://purl.obolibrary.org/obo/PR_000012636,PHD finger protein 1 +9.939136,UBERON:0001778,http://purl.obolibrary.org/obo/UBERON_0001778,ciliary epithelium +9.9400341,GO:0044461,http://purl.obolibrary.org/obo/GO_0044461,none +9.940933,SO:0001250,http://purl.obolibrary.org/obo/SO_0001250,fingerprint_map +9.940933,UBERON:0001783,http://purl.obolibrary.org/obo/UBERON_0001783,optic disc +9.940933,UBERON:0002213,http://purl.obolibrary.org/obo/UBERON_0002213,cartilaginous joint +9.9418327,DRUGBANK:DB12452,http://purl.obolibrary.org/obo/DRUGBANK_DB12452,none +9.9418327,DRUGBANK:DB14248,http://purl.obolibrary.org/obo/DRUGBANK_DB14248,none +9.9418327,GO:0004709,http://purl.obolibrary.org/obo/GO_0004709,MAP kinase kinase kinase activity +9.9418327,GO:0009616,http://purl.obolibrary.org/obo/GO_0009616,RNAi-mediated antiviral immune response +9.9418327,GO:0043335,http://purl.obolibrary.org/obo/GO_0043335,protein unfolding +9.9418327,GO:0043467,http://purl.obolibrary.org/obo/GO_0043467,regulation of generation of precursor metabolites and energy +9.9418327,GO:0052018,http://purl.obolibrary.org/obo/GO_0052018,modulation by symbiont of RNA levels in host +9.9418327,GO:0052249,http://purl.obolibrary.org/obo/GO_0052249,modulation of RNA levels in other organism involved in symbiotic interaction +9.9418327,HP:0002149,http://purl.obolibrary.org/obo/HP_0002149,Hyperuricemia +9.9418327,HP:0010932,http://purl.obolibrary.org/obo/HP_0010932,Abnormal circulating nucleobase concentration +9.9418327,MONDO:0004880,http://purl.obolibrary.org/obo/MONDO_0004880,bowel dysfunction +9.9418327,UBERON:0002255,http://purl.obolibrary.org/obo/UBERON_0002255,vomeronasal organ +9.9427332,DRUGBANK:DB01220,http://purl.obolibrary.org/obo/DRUGBANK_DB01220,none +9.9427332,DRUGBANK:DB01412,http://purl.obolibrary.org/obo/DRUGBANK_DB01412,none +9.9427332,DRUGBANK:DB13014,http://purl.obolibrary.org/obo/DRUGBANK_DB13014,none +9.9427332,PR:P18161,http://purl.obolibrary.org/obo/PR_P18161,none +9.9427332,UBERON:0003403,http://purl.obolibrary.org/obo/UBERON_0003403,skin of forearm +9.9436345,DRUGBANK:DB00270,http://purl.obolibrary.org/obo/DRUGBANK_DB00270,none +9.9436345,MONDO:0004579,http://purl.obolibrary.org/obo/MONDO_0004579,retinoschisis +9.9436345,PR:000030923,http://purl.obolibrary.org/obo/PR_000030923,"probable D-lactate dehydrogenase, mitochondrial" +9.9445366,DRUGBANK:DB11075,http://purl.obolibrary.org/obo/DRUGBANK_DB11075,none +9.9445366,GO:0009738,http://purl.obolibrary.org/obo/GO_0009738,abscisic acid-activated signaling pathway +9.9445366,MONDO:0002450,http://purl.obolibrary.org/obo/MONDO_0002450,prostatic adenoma +9.9445366,MONDO:0044632,http://purl.obolibrary.org/obo/MONDO_0044632,extracranial carotid artery aneurysm +9.9445366,PR:000015292,http://purl.obolibrary.org/obo/PR_000015292,sphingomyelin phosphodiesterase +9.9445366,UBERON:0008896,http://purl.obolibrary.org/obo/UBERON_0008896,post-hyoid pharyngeal arch +9.9454395,DRUGBANK:DB01203,http://purl.obolibrary.org/obo/DRUGBANK_DB01203,none +9.9454395,DRUGBANK:DB09133,http://purl.obolibrary.org/obo/DRUGBANK_DB09133,none +9.9454395,GO:0016408,http://purl.obolibrary.org/obo/GO_0016408,C-acyltransferase activity +9.9454395,GO:0042476,http://purl.obolibrary.org/obo/GO_0042476,odontogenesis +9.9454395,MONDO:0008800,http://purl.obolibrary.org/obo/MONDO_0008800,microphthalmia with limb anomalies +9.9454395,NCBITaxon:11096,http://purl.obolibrary.org/obo/NCBITaxon_11096,Classical swine fever virus +9.9454395,PR:000000120,http://purl.obolibrary.org/obo/PR_000000120,Rho-associated protein kinase 1 +9.9463433,GO:0072519,http://purl.obolibrary.org/obo/GO_0072519,none +9.9463433,MONDO:0009067,http://purl.obolibrary.org/obo/MONDO_0009067,cystinuria +9.9463433,PR:000017512,http://purl.obolibrary.org/obo/PR_000017512,5'-3' exoribonuclease 2 +9.9463433,PR:Q9M1H3,http://purl.obolibrary.org/obo/PR_Q9M1H3,none +9.9463433,UBERON:0000080,http://purl.obolibrary.org/obo/UBERON_0000080,mesonephros +9.9472479,GO:0004645,http://purl.obolibrary.org/obo/GO_0004645,"1,4-alpha-oligoglucan phosphorylase activity" +9.9472479,GO:0098821,http://purl.obolibrary.org/obo/GO_0098821,BMP receptor activity +9.9472479,HP:0009815,http://purl.obolibrary.org/obo/HP_0009815,Aplasia/hypoplasia of the extremities +9.9472479,MONDO:0006349,http://purl.obolibrary.org/obo/MONDO_0006349,papillary cystic neoplasm +9.9472479,PR:000001963,http://purl.obolibrary.org/obo/PR_000001963,CD27 molecule +9.9472479,PR:000007564,http://purl.obolibrary.org/obo/PR_000007564,fms-related tyrosine kinase 3 ligand +9.9472479,PR:P30366,http://purl.obolibrary.org/obo/PR_P30366,none +9.9481532,CHEBI:35442,http://purl.obolibrary.org/obo/CHEBI_35442,antiparasitic agent +9.9481532,DRUGBANK:DB00008,http://purl.obolibrary.org/obo/DRUGBANK_DB00008,none +9.9481532,GO:0070567,http://purl.obolibrary.org/obo/GO_0070567,cytidylyltransferase activity +9.9481532,MONDO:0005519,http://purl.obolibrary.org/obo/MONDO_0005519,renal pelvis carcinoma +9.9481532,PR:000001855,http://purl.obolibrary.org/obo/PR_000001855,fractalkine +9.9481532,PR:000007166,http://purl.obolibrary.org/obo/PR_000007166,DNA repair endonuclease XPF +9.9481532,PR:000010818,http://purl.obolibrary.org/obo/PR_000010818,myogenic factor 5 +9.9481532,PR:000015759,http://purl.obolibrary.org/obo/PR_000015759,stathmin +9.9481532,PR:O54947,http://purl.obolibrary.org/obo/PR_O54947,none +9.9490595,DRUGBANK:DB02912,http://purl.obolibrary.org/obo/DRUGBANK_DB02912,none +9.9490595,MONDO:0006814,http://purl.obolibrary.org/obo/MONDO_0006814,iritis +9.9490595,PR:000015186,http://purl.obolibrary.org/obo/PR_000015186,sodium-dependent noradrenaline transporter +9.9499665,DRUGBANK:DB09075,http://purl.obolibrary.org/obo/DRUGBANK_DB09075,none +9.9499665,MONDO:0018687,http://purl.obolibrary.org/obo/MONDO_0018687,progressive muscular atrophy +9.9499665,PR:000007902,http://purl.obolibrary.org/obo/PR_000007902,histone acetyltransferase KAT2A +9.9499665,SO:0001644,http://purl.obolibrary.org/obo/SO_0001644,targeting_vector +9.9508743,DRUGBANK:DB14144,http://purl.obolibrary.org/obo/DRUGBANK_DB14144,none +9.9508743,GO:0019898,http://purl.obolibrary.org/obo/GO_0019898,extrinsic component of membrane +9.9508743,MONDO:0002702,http://purl.obolibrary.org/obo/MONDO_0002702,ovarian cystadenocarcinoma +9.9508743,PR:000005941,http://purl.obolibrary.org/obo/PR_000005941,beta-casein +9.9508743,PR:Q9FNA2,http://purl.obolibrary.org/obo/PR_Q9FNA2,none +9.9508743,UBERON:0006764,http://purl.obolibrary.org/obo/UBERON_0006764,anterior communicating artery +9.9508743,UBERON:0015482,http://purl.obolibrary.org/obo/UBERON_0015482,right hepatic artery +9.9508743,UBERON:0035380,http://purl.obolibrary.org/obo/UBERON_0035380,branch of anterior cerebral artery +9.951783,DRUGBANK:DB01129,http://purl.obolibrary.org/obo/DRUGBANK_DB01129,none +9.951783,DRUGBANK:DB02994,http://purl.obolibrary.org/obo/DRUGBANK_DB02994,none +9.951783,GO:0043197,http://purl.obolibrary.org/obo/GO_0043197,dendritic spine +9.951783,GO:0098794,http://purl.obolibrary.org/obo/GO_0098794,postsynapse +9.951783,MONDO:0018958,http://purl.obolibrary.org/obo/MONDO_0018958,nemaline myopathy +9.951783,PR:000016235,http://purl.obolibrary.org/obo/PR_000016235,telomeric repeat-binding factor 1 +9.9526925,MONDO:0000527,http://purl.obolibrary.org/obo/MONDO_0000527,colon adenoma +9.9526925,MONDO:0007167,http://purl.obolibrary.org/obo/MONDO_0007167,atelosteogenesis type I +9.9526925,PR:P54115,http://purl.obolibrary.org/obo/PR_P54115,none +9.9536028,CHEBI:35850,http://purl.obolibrary.org/obo/CHEBI_35850,sulfone +9.9536028,DRUGBANK:DB04705,http://purl.obolibrary.org/obo/DRUGBANK_DB04705,none +9.9536028,MONDO:0016884,http://purl.obolibrary.org/obo/MONDO_0016884,partial deletion of the short arm of chromosome 2 +9.954514,GO:0009425,http://purl.obolibrary.org/obo/GO_0009425,bacterial-type flagellum basal body +9.954514,MONDO:0006624,http://purl.obolibrary.org/obo/MONDO_0006624,overactive bladder +9.954514,MONDO:0011669,http://purl.obolibrary.org/obo/MONDO_0011669,hypotonia-cystinuria syndrome +9.954514,PR:000010242,http://purl.obolibrary.org/obo/PR_000010242,DNA replication licensing factor MCM2 +9.955426,DRUGBANK:DB15081,http://purl.obolibrary.org/obo/DRUGBANK_DB15081,none +9.955426,GO:0006333,http://purl.obolibrary.org/obo/GO_0006333,chromatin assembly or disassembly +9.955426,MONDO:0002692,http://purl.obolibrary.org/obo/MONDO_0002692,intracranial sinus thrombosis +9.955426,NCBITaxon:374468,http://purl.obolibrary.org/obo/NCBITaxon_374468,Nakaseomyces +9.9563388,NCBITaxon:12059,http://purl.obolibrary.org/obo/NCBITaxon_12059,Enterovirus +9.9563388,NCBITaxon:2840056,http://purl.obolibrary.org/obo/NCBITaxon_2840056,none +9.9563388,PR:000001424,http://purl.obolibrary.org/obo/PR_000001424,none +9.9563388,PR:000033245,http://purl.obolibrary.org/obo/PR_000033245,none +9.9563388,PR:P00528,http://purl.obolibrary.org/obo/PR_P00528,none +9.9563388,PR:Q9SLJ2,http://purl.obolibrary.org/obo/PR_Q9SLJ2,none +9.9563388,UBERON:0007143,http://purl.obolibrary.org/obo/UBERON_0007143,right internal carotid artery +9.9572525,GO:0042416,http://purl.obolibrary.org/obo/GO_0042416,dopamine biosynthetic process +9.9572525,MONDO:0002647,http://purl.obolibrary.org/obo/MONDO_0002647,laryngitis +9.9572525,MONDO:0004021,http://purl.obolibrary.org/obo/MONDO_0004021,mediastinal malignant lymphoma +9.9572525,MONDO:0007699,http://purl.obolibrary.org/obo/MONDO_0007699,Hashimoto thyroiditis +9.9572525,MONDO:0015483,http://purl.obolibrary.org/obo/MONDO_0015483,mandibulofacial dysostosis +9.9572525,MONDO:0016029,http://purl.obolibrary.org/obo/MONDO_0016029,esthesioneuroblastoma +9.9572525,MONDO:0017608,http://purl.obolibrary.org/obo/MONDO_0017608,dystrophic epidermolysis bullosa +9.9572525,PR:000001775,http://purl.obolibrary.org/obo/PR_000001775,inhibitor of nuclear factor kappa-B kinase subunit alpha +9.9572525,PR:000008293,http://purl.obolibrary.org/obo/PR_000008293,glutathione synthetase +9.958167,DRUGBANK:DB02746,http://purl.obolibrary.org/obo/DRUGBANK_DB02746,none +9.958167,GO:0036463,http://purl.obolibrary.org/obo/GO_0036463,TRAIL receptor activity +9.958167,MONDO:0005693,http://purl.obolibrary.org/obo/MONDO_0005693,cauda equina syndrome +9.958167,MONDO:0021553,http://purl.obolibrary.org/obo/MONDO_0021553,transverse myelitis +9.958167,MONDO:0021640,http://purl.obolibrary.org/obo/MONDO_0021640,grade III glioma +9.958167,NCBITaxon:2170082,http://purl.obolibrary.org/obo/NCBITaxon_2170082,none +9.958167,PR:000003588,http://purl.obolibrary.org/obo/PR_000003588,amiloride-sensitive amine oxidase [copper-containing] +9.958167,PR:000014790,http://purl.obolibrary.org/obo/PR_000014790,serine/threonine-protein kinase Sgk1 +9.9590823,CL:0011113,http://purl.obolibrary.org/obo/CL_0011113,spiral ganglion neuron +9.9590823,DRUGBANK:DB02137,http://purl.obolibrary.org/obo/DRUGBANK_DB02137,none +9.9590823,MONDO:0016538,http://purl.obolibrary.org/obo/MONDO_0016538,hypotonia-cystinuria syndrome type 1 +9.9590823,MONDO:0018246,http://purl.obolibrary.org/obo/MONDO_0018246,homozygous 2p21 microdeletion syndrome +9.9599985,MONDO:0016410,http://purl.obolibrary.org/obo/MONDO_0016410,central congenital hypothyroidism +9.9599985,NCBITaxon:600669,http://purl.obolibrary.org/obo/NCBITaxon_600669,Nakaseomyces/Candida clade +9.9599985,PR:000007495,http://purl.obolibrary.org/obo/PR_000007495,fibroblast growth factor 4 +9.9599985,UBERON:0001185,http://purl.obolibrary.org/obo/UBERON_0001185,right renal artery +9.9609155,DRUGBANK:DB11561,http://purl.obolibrary.org/obo/DRUGBANK_DB11561,none +9.9609155,PR:000007080,http://purl.obolibrary.org/obo/PR_000007080,alpha-enolase +9.9609155,PR:000015833,http://purl.obolibrary.org/obo/PR_000015833,"sulfite oxidase, mitochondrial" +9.9609155,SO:0000323,http://purl.obolibrary.org/obo/SO_0000323,coding_start +9.9609155,UBERON:0000426,http://purl.obolibrary.org/obo/UBERON_0000426,extravillous trophoblast +9.9609155,UBERON:0007475,http://purl.obolibrary.org/obo/UBERON_0007475,matrix-based tissue +9.9618333,CHEBI:23424,http://purl.obolibrary.org/obo/CHEBI_23424,cyanides +9.9618333,GO:0015934,http://purl.obolibrary.org/obo/GO_0015934,large ribosomal subunit +9.9618333,MONDO:0043875,http://purl.obolibrary.org/obo/MONDO_0043875,tumor lysis syndrome +9.9618333,NCBITaxon:5478,http://purl.obolibrary.org/obo/NCBITaxon_5478,[Candida] glabrata +9.9618333,PR:000000777,http://purl.obolibrary.org/obo/PR_000000777,transient receptor potential cation channel subfamily V member 6 +9.9618333,PR:000013377,http://purl.obolibrary.org/obo/PR_000013377,proteasome subunit beta type-9 +9.9618333,UBERON:0004019,http://purl.obolibrary.org/obo/UBERON_0004019,baroreceptor +9.962752,DRUGBANK:DB04365,http://purl.obolibrary.org/obo/DRUGBANK_DB04365,none +9.962752,MONDO:0005102,http://purl.obolibrary.org/obo/MONDO_0005102,undifferentiated (embryonal) sarcoma +9.962752,MONDO:0007864,http://purl.obolibrary.org/obo/MONDO_0007864,angioosteohypertrophic syndrome +9.962752,PR:000003845,http://purl.obolibrary.org/obo/PR_000003845,agrin +9.9636716,CHEBI:83565,http://purl.obolibrary.org/obo/CHEBI_83565,(trifluoromethyl)benzenes +9.9636716,GO:0042537,http://purl.obolibrary.org/obo/GO_0042537,benzene-containing compound metabolic process +9.9636716,MONDO:0015915,http://purl.obolibrary.org/obo/MONDO_0015915,cerebellar malformation +9.9636716,MONDO:0020112,http://purl.obolibrary.org/obo/MONDO_0020112,vitamin B12- and folate-independent constitutional megaloblastic anemia +9.9636716,PR:Q9Z0M4,http://purl.obolibrary.org/obo/PR_Q9Z0M4,none +9.964592,DRUGBANK:DB15581,http://purl.obolibrary.org/obo/DRUGBANK_DB15581,none +9.964592,GO:0004947,http://purl.obolibrary.org/obo/GO_0004947,bradykinin receptor activity +9.964592,HP:0000964,http://purl.obolibrary.org/obo/HP_0000964,Eczema +9.964592,MONDO:0007547,http://purl.obolibrary.org/obo/MONDO_0007547,epidermoid cysts +9.964592,PR:000009859,http://purl.obolibrary.org/obo/PR_000009859,prelamin-A/C +9.964592,SO:0000355,http://purl.obolibrary.org/obo/SO_0000355,haplotype_block +9.964592,UBERON:0008883,http://purl.obolibrary.org/obo/UBERON_0008883,osteoid +9.9655132,DRUGBANK:DB01677,http://purl.obolibrary.org/obo/DRUGBANK_DB01677,none +9.9655132,HP:0002344,http://purl.obolibrary.org/obo/HP_0002344,Progressive neurologic deterioration +9.9655132,MONDO:0015489,http://purl.obolibrary.org/obo/MONDO_0015489,predominantly medium-vessel vasculitis +9.9664353,CHEBI:18379,http://purl.obolibrary.org/obo/CHEBI_18379,nitrile +9.9664353,GO:0031497,http://purl.obolibrary.org/obo/GO_0031497,chromatin assembly +9.9664353,MONDO:0002970,http://purl.obolibrary.org/obo/MONDO_0002970,ciliary body disease +9.9664353,PR:000021990,http://purl.obolibrary.org/obo/PR_000021990,dual specificity mitogen-activated protein kinase kinase 3/6 +9.9664353,PR:000022856,http://purl.obolibrary.org/obo/PR_000022856,none +9.9673582,GO:0006885,http://purl.obolibrary.org/obo/GO_0006885,regulation of pH +9.9673582,PR:000005648,http://purl.obolibrary.org/obo/PR_000005648,CCR4-NOT transcription complex subunit 1 +9.9673582,PR:000015757,http://purl.obolibrary.org/obo/PR_000015757,serine/threonine-protein kinase 4 +9.968282,CHEBI:63161,http://purl.obolibrary.org/obo/CHEBI_63161,glycosyl compound +9.968282,CL:0002148,http://purl.obolibrary.org/obo/CL_0002148,dental pulp cell +9.968282,DRUGBANK:DB15573,http://purl.obolibrary.org/obo/DRUGBANK_DB15573,none +9.968282,PR:000015613,http://purl.obolibrary.org/obo/PR_000015613,serum response factor +9.9692067,HP:0002817,http://purl.obolibrary.org/obo/HP_0002817,Abnormality of the upper limb +9.9692067,UBERON:0002091,http://purl.obolibrary.org/obo/UBERON_0002091,appendicular skeleton +9.9701321,DRUGBANK:DB01206,http://purl.obolibrary.org/obo/DRUGBANK_DB01206,none +9.9701321,DRUGBANK:DB03225,http://purl.obolibrary.org/obo/DRUGBANK_DB03225,none +9.9701321,GO:0030593,http://purl.obolibrary.org/obo/GO_0030593,neutrophil chemotaxis +9.9701321,MONDO:0007827,http://purl.obolibrary.org/obo/MONDO_0007827,inclusion body myositis +9.9701321,PR:000005449,http://purl.obolibrary.org/obo/PR_000005449,cholinephosphotransferase 1 +9.9701321,UBERON:0000378,http://purl.obolibrary.org/obo/UBERON_0000378,tongue muscle +9.9701321,UBERON:0014455,http://purl.obolibrary.org/obo/UBERON_0014455,subcutaneous abdominal adipose tissue +9.9710585,MONDO:0019638,http://purl.obolibrary.org/obo/MONDO_0019638,renal dysplasia +9.9719857,GO:0051668,http://purl.obolibrary.org/obo/GO_0051668,localization within membrane +9.9719857,MONDO:0001684,http://purl.obolibrary.org/obo/MONDO_0001684,exocrine pancreatic insufficiency +9.9719857,MONDO:0005460,http://purl.obolibrary.org/obo/MONDO_0005460,swine influenza +9.9719857,MONDO:0006028,http://purl.obolibrary.org/obo/MONDO_0006028,cecum adenocarcinoma +9.9719857,MONDO:0009426,http://purl.obolibrary.org/obo/MONDO_0009426,hypoparathyroidism-retardation-dysmorphism syndrome +9.9719857,PR:000004752,http://purl.obolibrary.org/obo/PR_000004752,baculoviral IAP repeat-containing protein 3 +9.9719857,PR:000014720,http://purl.obolibrary.org/obo/PR_000014720,histone-lysine N-methyltransferase SETD1B +9.9719857,PR:P47809,http://purl.obolibrary.org/obo/PR_P47809,none +9.9719857,SO:0001549,http://purl.obolibrary.org/obo/SO_0001549,transcription_variant +9.9729138,DRUGBANK:DB15868,http://purl.obolibrary.org/obo/DRUGBANK_DB15868,none +9.9729138,GO:0000184,http://purl.obolibrary.org/obo/GO_0000184,"nuclear-transcribed mRNA catabolic process, nonsense-mediated decay" +9.9729138,MONDO:0024715,http://purl.obolibrary.org/obo/MONDO_0024715,benign synovial neoplasm +9.9729138,NCBITaxon:9479,http://purl.obolibrary.org/obo/NCBITaxon_9479,Platyrrhini +9.9729138,PR:000014774,http://purl.obolibrary.org/obo/PR_000014774,pulmonary surfactant-associated protein C +9.9729138,PR:000023287,http://purl.obolibrary.org/obo/PR_000023287,none +9.9729138,UBERON:0004983,http://purl.obolibrary.org/obo/UBERON_0004983,mucosa of vagina +9.9738427,DRUGBANK:DB02300,http://purl.obolibrary.org/obo/DRUGBANK_DB02300,none +9.9738427,MONDO:0018910,http://purl.obolibrary.org/obo/MONDO_0018910,oculocutaneous albinism +9.9738427,MONDO:0020099,http://purl.obolibrary.org/obo/MONDO_0020099,inherited sideroblastic anemia +9.9738427,NCBITaxon:342409,http://purl.obolibrary.org/obo/NCBITaxon_342409,none +9.9738427,PR:000001130,http://purl.obolibrary.org/obo/PR_000001130,cholecystokinin receptor +9.9738427,PR:000007897,http://purl.obolibrary.org/obo/PR_000007897,glutamate--cysteine ligase catalytic subunit +9.9738427,PR:000013579,http://purl.obolibrary.org/obo/PR_000013579,Ras-related protein Rab-11A +9.9747725,CHEBI:35496,http://purl.obolibrary.org/obo/CHEBI_35496,fluorobenzenes +9.9747725,GO:0003994,http://purl.obolibrary.org/obo/GO_0003994,aconitate hydratase activity +9.9747725,PR:000006200,http://purl.obolibrary.org/obo/PR_000006200,none +9.9757032,CHEBI:83575,http://purl.obolibrary.org/obo/CHEBI_83575,monofluorobenzenes +9.9757032,DRUGBANK:DB00794,http://purl.obolibrary.org/obo/DRUGBANK_DB00794,none +9.9757032,DRUGBANK:DB05276,http://purl.obolibrary.org/obo/DRUGBANK_DB05276,none +9.9757032,GO:0043650,http://purl.obolibrary.org/obo/GO_0043650,dicarboxylic acid biosynthetic process +9.9757032,HP:0001155,http://purl.obolibrary.org/obo/HP_0001155,Abnormality of the hand +9.9757032,MONDO:0001500,http://purl.obolibrary.org/obo/MONDO_0001500,gender identity disorder +9.9757032,MONDO:0010805,http://purl.obolibrary.org/obo/MONDO_0010805,bladder exstrophy +9.9757032,PR:000014517,http://purl.obolibrary.org/obo/PR_000014517,selenocysteine lyase +9.9766347,PR:000005065,http://purl.obolibrary.org/obo/PR_000005065,caveolin-3 +9.9766347,PR:000007643,http://purl.obolibrary.org/obo/PR_000007643,forkhead box protein P1 +9.9766347,PR:Q10289,http://purl.obolibrary.org/obo/PR_Q10289,none +9.9775671,GO:0014812,http://purl.obolibrary.org/obo/GO_0014812,muscle cell migration +9.9775671,PR:000001342,http://purl.obolibrary.org/obo/PR_000001342,discoidin domain-containing receptor +9.9775671,PR:000010257,http://purl.obolibrary.org/obo/PR_000010257,malignant T cell-amplified sequence 1 +9.9785004,GO:1901142,http://purl.obolibrary.org/obo/GO_1901142,insulin metabolic process +9.9785004,MONDO:0006195,http://purl.obolibrary.org/obo/MONDO_0006195,endometrial polyp +9.9785004,PR:000001773,http://purl.obolibrary.org/obo/PR_000001773,lipopolysaccharide-binding protein +9.9794345,DRUGBANK:DB11253,http://purl.obolibrary.org/obo/DRUGBANK_DB11253,none +9.9794345,GO:0004001,http://purl.obolibrary.org/obo/GO_0004001,adenosine kinase activity +9.9794345,NCBITaxon:10320,http://purl.obolibrary.org/obo/NCBITaxon_10320,Bovine alphaherpesvirus 1 +9.9794345,NCBITaxon:11089,http://purl.obolibrary.org/obo/NCBITaxon_11089,Yellow fever virus +9.9803696,HP:0000829,http://purl.obolibrary.org/obo/HP_0000829,Hypoparathyroidism +9.9803696,MONDO:0001063,http://purl.obolibrary.org/obo/MONDO_0001063,cardia cancer +9.9803696,MONDO:0005938,http://purl.obolibrary.org/obo/MONDO_0005938,renal tuberculosis +9.9803696,MONDO:0017364,http://purl.obolibrary.org/obo/MONDO_0017364,POEMS syndrome +9.9803696,PR:000001132,http://purl.obolibrary.org/obo/PR_000001132,atypical chemokine receptor 1 +9.9813054,CHEBI:33853,http://purl.obolibrary.org/obo/CHEBI_33853,phenols +9.9813054,GO:0005982,http://purl.obolibrary.org/obo/GO_0005982,starch metabolic process +9.9813054,GO:0018904,http://purl.obolibrary.org/obo/GO_0018904,ether metabolic process +9.9813054,MONDO:0015822,http://purl.obolibrary.org/obo/MONDO_0015822,acquired neutropenia +9.9813054,MONDO:0016493,http://purl.obolibrary.org/obo/MONDO_0016493,variant of Guillain-Barre syndrome +9.9813054,MONDO:0019283,http://purl.obolibrary.org/obo/MONDO_0019283,nail anomaly +9.9813054,MONDO:0021249,http://purl.obolibrary.org/obo/MONDO_0021249,lip neoplasm +9.9813054,PR:000007940,http://purl.obolibrary.org/obo/PR_000007940,FAD-linked sulfhydryl oxidase ALR +9.9822422,CHEBI:3090,http://purl.obolibrary.org/obo/CHEBI_3090,bicalutamide +9.9822422,GO:0040023,http://purl.obolibrary.org/obo/GO_0040023,none +9.9822422,MONDO:0018378,http://purl.obolibrary.org/obo/MONDO_0018378,osteonecrosis of the jaw +9.9822422,PR:000005901,http://purl.obolibrary.org/obo/PR_000005901,CREB-regulated transcription coactivator 1 +9.9822422,PR:000013215,http://purl.obolibrary.org/obo/PR_000013215,DNA primase small subunit +9.9831799,DRUGBANK:DB00455,http://purl.obolibrary.org/obo/DRUGBANK_DB00455,none +9.9831799,DRUGBANK:DB02509,http://purl.obolibrary.org/obo/DRUGBANK_DB02509,none +9.9831799,GO:0004085,http://purl.obolibrary.org/obo/GO_0004085,butyryl-CoA dehydrogenase activity +9.9831799,GO:0052890,http://purl.obolibrary.org/obo/GO_0052890,"oxidoreductase activity, acting on the CH-CH group of donors, with a flavin as acceptor" +9.9831799,PR:000003602,http://purl.obolibrary.org/obo/PR_000003602,"short-chain specific acyl-CoA dehydrogenase, mitochondrial" +9.9831799,PR:000003846,http://purl.obolibrary.org/obo/PR_000003846,agouti-related protein +9.9831799,PR:000022126,http://purl.obolibrary.org/obo/PR_000022126,none +9.9831799,UBERON:0001978,http://purl.obolibrary.org/obo/UBERON_0001978,parenchyma of pancreas +9.9841184,MONDO:0006844,http://purl.obolibrary.org/obo/MONDO_0006844,magnesium deficiency +9.9841184,MONDO:0018570,http://purl.obolibrary.org/obo/MONDO_0018570,hypophosphatasia +9.9841184,UBERON:0011965,http://purl.obolibrary.org/obo/UBERON_0011965,saddle joint +9.9850578,GO:0043449,http://purl.obolibrary.org/obo/GO_0043449,cellular alkene metabolic process +9.9850578,PR:000004197,http://purl.obolibrary.org/obo/PR_000004197,coatomer subunit delta +9.9850578,PR:000014024,http://purl.obolibrary.org/obo/PR_000014024,receptor-interacting serine/threonine-protein kinase 3 +9.9859981,GO:0004556,http://purl.obolibrary.org/obo/GO_0004556,alpha-amylase activity +9.9859981,GO:0016790,http://purl.obolibrary.org/obo/GO_0016790,thiolester hydrolase activity +9.9859981,HP:0002633,http://purl.obolibrary.org/obo/HP_0002633,Vasculitis +9.9859981,MONDO:0002905,http://purl.obolibrary.org/obo/MONDO_0002905,mutism +9.9859981,PR:P24899,http://purl.obolibrary.org/obo/PR_P24899,none +9.9869393,DRUGBANK:DB09026,http://purl.obolibrary.org/obo/DRUGBANK_DB09026,none +9.9869393,GO:0051493,http://purl.obolibrary.org/obo/GO_0051493,regulation of cytoskeleton organization +9.9869393,GO:1902679,http://purl.obolibrary.org/obo/GO_1902679,negative regulation of RNA biosynthetic process +9.9869393,PR:000001333,http://purl.obolibrary.org/obo/PR_000001333,cation-independent mannose-6-phosphate receptor +9.9869393,PR:000001725,http://purl.obolibrary.org/obo/PR_000001725,none +9.9869393,PR:000011042,http://purl.obolibrary.org/obo/PR_000011042,nuclear receptor coactivator 3 +9.9878813,DRUGBANK:DB06769,http://purl.obolibrary.org/obo/DRUGBANK_DB06769,none +9.9878813,GO:0010148,http://purl.obolibrary.org/obo/GO_0010148,transpiration +9.9878813,GO:0045117,http://purl.obolibrary.org/obo/GO_0045117,azole transmembrane transport +9.9878813,GO:0045335,http://purl.obolibrary.org/obo/GO_0045335,phagocytic vesicle +9.9878813,MONDO:0006974,http://purl.obolibrary.org/obo/MONDO_0006974,small cell sarcoma +9.9878813,MONDO:0009515,http://purl.obolibrary.org/obo/MONDO_0009515,Norum disease +9.9878813,MONDO:0021028,http://purl.obolibrary.org/obo/MONDO_0021028,genetic nail anomaly +9.9878813,NCBITaxon:196937,http://purl.obolibrary.org/obo/NCBITaxon_196937,none +9.9878813,NCBITaxon:249585,http://purl.obolibrary.org/obo/NCBITaxon_249585,none +9.9878813,NCBITaxon:31181,http://purl.obolibrary.org/obo/NCBITaxon_31181,none +9.9878813,PR:000017303,http://purl.obolibrary.org/obo/PR_000017303,vitamin K epoxide reductase complex subunit 1 +9.9878813,PR:Q07977,http://purl.obolibrary.org/obo/PR_Q07977,none +9.9878813,UBERON:0000962,http://purl.obolibrary.org/obo/UBERON_0000962,nerve of cervical vertebra +9.9888243,CL:0000293,http://purl.obolibrary.org/obo/CL_0000293,structural cell +9.9888243,DRUGBANK:DB02342,http://purl.obolibrary.org/obo/DRUGBANK_DB02342,none +9.9888243,GO:0004772,http://purl.obolibrary.org/obo/GO_0004772,sterol O-acyltransferase activity +9.9888243,MONDO:0010651,http://purl.obolibrary.org/obo/MONDO_0010651,Menkes disease +9.9888243,MONDO:0011462,http://purl.obolibrary.org/obo/MONDO_0011462,pyogenic arthritis-pyoderma gangrenosum-acne syndrome +9.9888243,PR:000001178,http://purl.obolibrary.org/obo/PR_000001178,D(3) dopamine receptor +9.9888243,PR:000009116,http://purl.obolibrary.org/obo/PR_000009116,insulin gene enhancer protein ISL-1 +9.9888243,UBERON:0002256,http://purl.obolibrary.org/obo/UBERON_0002256,dorsal horn of spinal cord +9.9897681,DRUGBANK:DB03127,http://purl.obolibrary.org/obo/DRUGBANK_DB03127,none +9.9897681,DRUGBANK:DB13747,http://purl.obolibrary.org/obo/DRUGBANK_DB13747,none +9.9897681,GO:0007224,http://purl.obolibrary.org/obo/GO_0007224,smoothened signaling pathway +9.9897681,GO:0031040,http://purl.obolibrary.org/obo/GO_0031040,micronucleus +9.9897681,GO:0097384,http://purl.obolibrary.org/obo/GO_0097384,cellular lipid biosynthetic process +9.9897681,MONDO:0010212,http://purl.obolibrary.org/obo/MONDO_0010212,xeroderma pigmentosum group D +9.9897681,MONDO:0016063,http://purl.obolibrary.org/obo/MONDO_0016063,Cowden disease +9.9897681,PR:000008454,http://purl.obolibrary.org/obo/PR_000008454,hepatitis A virus cellular receptor 2 +9.9897681,PR:000050040,http://purl.obolibrary.org/obo/PR_000050040,alpha-catenin +9.9897681,PR:O15945,http://purl.obolibrary.org/obo/PR_O15945,none +9.9897681,UBERON:0003077,http://purl.obolibrary.org/obo/UBERON_0003077,paraxial mesoderm +9.9907129,MONDO:0013433,http://purl.obolibrary.org/obo/MONDO_0013433,primary sclerosing cholangitis +9.9907129,PR:000010220,http://purl.obolibrary.org/obo/PR_000010220,mannose-binding protein C +9.9907129,PR:000023450,http://purl.obolibrary.org/obo/PR_000023450,none +9.9916585,DRUGBANK:DB04017,http://purl.obolibrary.org/obo/DRUGBANK_DB04017,none +9.9916585,DRUGBANK:DB14533,http://purl.obolibrary.org/obo/DRUGBANK_DB14533,none +9.9916585,GO:0043244,http://purl.obolibrary.org/obo/GO_0043244,regulation of protein-containing complex disassembly +9.9916585,HP:0011927,http://purl.obolibrary.org/obo/HP_0011927,Short digit +9.9916585,HP:0410008,http://purl.obolibrary.org/obo/HP_0410008,Abnormality of the peripheral nervous system +9.992605,DRUGBANK:DB11150,http://purl.obolibrary.org/obo/DRUGBANK_DB11150,none +9.992605,GO:0019218,http://purl.obolibrary.org/obo/GO_0019218,regulation of steroid metabolic process +9.992605,GO:0032418,http://purl.obolibrary.org/obo/GO_0032418,lysosome localization +9.992605,HP:0002270,http://purl.obolibrary.org/obo/HP_0002270,Abnormality of the autonomic nervous system +9.992605,MONDO:0007015,http://purl.obolibrary.org/obo/MONDO_0007015,viral meningitis +9.992605,NCBITaxon:7664,http://purl.obolibrary.org/obo/NCBITaxon_7664,none +9.992605,NCBITaxon:7668,http://purl.obolibrary.org/obo/NCBITaxon_7668,none +9.992605,PR:000002049,http://purl.obolibrary.org/obo/PR_000002049,interferon regulatory factor 7 +9.992605,PR:000011460,http://purl.obolibrary.org/obo/PR_000011460,neurotrophin-4 +9.9935524,DRUGBANK:DB11337,http://purl.obolibrary.org/obo/DRUGBANK_DB11337,none +9.9935524,GO:0045892,http://purl.obolibrary.org/obo/GO_0045892,"negative regulation of transcription, DNA-templated" +9.9935524,PR:000000775,http://purl.obolibrary.org/obo/PR_000000775,short transient receptor potential cation channel TRPC3 +9.9935524,UBERON:0001150,http://purl.obolibrary.org/obo/UBERON_0001150,body of pancreas +9.9935524,UBERON:0010911,http://purl.obolibrary.org/obo/UBERON_0010911,ossicle +9.9945007,CHEBI:24868,http://purl.obolibrary.org/obo/CHEBI_24868,organic salt +9.9945007,CHEBI:26013,http://purl.obolibrary.org/obo/CHEBI_26013,pheromone +9.9945007,CHEBI:26645,http://purl.obolibrary.org/obo/CHEBI_26645,semiochemical +9.9945007,GO:0015935,http://purl.obolibrary.org/obo/GO_0015935,small ribosomal subunit +9.9945007,GO:0030224,http://purl.obolibrary.org/obo/GO_0030224,monocyte differentiation +9.9945007,GO:0035296,http://purl.obolibrary.org/obo/GO_0035296,regulation of tube diameter +9.9945007,GO:1903507,http://purl.obolibrary.org/obo/GO_1903507,negative regulation of nucleic acid-templated transcription +9.9945007,UBERON:0003040,http://purl.obolibrary.org/obo/UBERON_0003040,central gray substance of midbrain +9.99545,DRUGBANK:DB03967,http://purl.obolibrary.org/obo/DRUGBANK_DB03967,none +9.99545,GO:0030673,http://purl.obolibrary.org/obo/GO_0030673,axolemma +9.99545,PR:000007302,http://purl.obolibrary.org/obo/PR_000007302,coagulation factor VIII +9.99545,UBERON:0001886,http://purl.obolibrary.org/obo/UBERON_0001886,choroid plexus +9.9964001,GO:0000238,http://purl.obolibrary.org/obo/GO_0000238,zygotene +9.9964001,GO:0007552,http://purl.obolibrary.org/obo/GO_0007552,metamorphosis +9.9964001,HP:0010936,http://purl.obolibrary.org/obo/HP_0010936,Abnormality of the lower urinary tract +9.9964001,PR:000009449,http://purl.obolibrary.org/obo/PR_000009449,KRR1 small subunit processome component +9.9964001,PR:000012783,http://purl.obolibrary.org/obo/PR_000012783,pyruvate kinase PKM +9.9964001,PR:000050047,http://purl.obolibrary.org/obo/PR_000050047,OTX protein +9.9964001,UBERON:0001717,http://purl.obolibrary.org/obo/UBERON_0001717,spinal nucleus of trigeminal nerve +9.9964001,UBERON:0010132,http://purl.obolibrary.org/obo/UBERON_0010132,gastroduodenal artery +9.9973511,CHEBI:63247,http://purl.obolibrary.org/obo/CHEBI_63247,reducing agent +9.9973511,DRUGBANK:DB04005,http://purl.obolibrary.org/obo/DRUGBANK_DB04005,none +9.9973511,GO:0050767,http://purl.obolibrary.org/obo/GO_0050767,regulation of neurogenesis +9.9973511,GO:0097746,http://purl.obolibrary.org/obo/GO_0097746,blood vessel diameter maintenance +9.9973511,HP:0000014,http://purl.obolibrary.org/obo/HP_0000014,Abnormality of the bladder +9.9973511,MONDO:0004991,http://purl.obolibrary.org/obo/MONDO_0004991,minimally invasive lung adenocarcinoma +9.9973511,PR:000004494,http://purl.obolibrary.org/obo/PR_000004494,copper-transporting ATPase 2 +9.9973511,PR:000012201,http://purl.obolibrary.org/obo/PR_000012201,PAXIP1-associated glutamate-rich protein 1 +9.998303,DRUGBANK:DB02853,http://purl.obolibrary.org/obo/DRUGBANK_DB02853,none +9.998303,DRUGBANK:DB03518,http://purl.obolibrary.org/obo/DRUGBANK_DB03518,none +9.998303,HP:0000009,http://purl.obolibrary.org/obo/HP_0000009,Functional abnormality of the bladder +9.998303,HP:0000011,http://purl.obolibrary.org/obo/HP_0000011,Neurogenic bladder +9.998303,NCBITaxon:2509514,http://purl.obolibrary.org/obo/NCBITaxon_2509514,Tegacovirus +9.998303,NCBITaxon:693997,http://purl.obolibrary.org/obo/NCBITaxon_693997,Alphacoronavirus 1 +9.9992559,CL:0002198,http://purl.obolibrary.org/obo/CL_0002198,oncocyte +9.9992559,DRUGBANK:DB12647,http://purl.obolibrary.org/obo/DRUGBANK_DB12647,none +9.9992559,GO:0030166,http://purl.obolibrary.org/obo/GO_0030166,proteoglycan biosynthetic process +9.9992559,MONDO:0003514,http://purl.obolibrary.org/obo/MONDO_0003514,malignant teratoma +9.9992559,MONDO:0020285,http://purl.obolibrary.org/obo/MONDO_0020285,transposition of the great arteries and conotruncal cardiac anomaly +9.9992559,PR:000008058,http://purl.obolibrary.org/obo/PR_000008058,glutamine synthetase +9.9992559,PR:000014967,http://purl.obolibrary.org/obo/PR_000014967,synaptic vesicular amine transporter +9.9992559,PR:Q9SJ66,http://purl.obolibrary.org/obo/PR_Q9SJ66,none +9.9992559,UBERON:0019222,http://purl.obolibrary.org/obo/UBERON_0019222,"digit 2, 3 or 4" +10.0002096,GO:0044754,http://purl.obolibrary.org/obo/GO_0044754,autolysosome +10.0002096,HP:0012332,http://purl.obolibrary.org/obo/HP_0012332,Abnormal autonomic nervous system physiology +10.0002096,MONDO:0016391,http://purl.obolibrary.org/obo/MONDO_0016391,neonatal diabetes mellitus +10.0002096,MONDO:0018556,http://purl.obolibrary.org/obo/MONDO_0018556,Lambert-Eaton myasthenic syndrome +10.0011643,DRUGBANK:DB12944,http://purl.obolibrary.org/obo/DRUGBANK_DB12944,none +10.0011643,DRUGBANK:DB13968,http://purl.obolibrary.org/obo/DRUGBANK_DB13968,none +10.0011643,GO:0009404,http://purl.obolibrary.org/obo/GO_0009404,toxin metabolic process +10.0011643,MONDO:0007779,http://purl.obolibrary.org/obo/MONDO_0007779,autosomal dominant Opitz G/BBB syndrome +10.0011643,NCBITaxon:9544,http://purl.obolibrary.org/obo/NCBITaxon_9544,Macaca mulatta +10.0011643,PR:000002125,http://purl.obolibrary.org/obo/PR_000002125,C-C motif chemokine 7 +10.0011643,PR:000011535,http://purl.obolibrary.org/obo/PR_000011535,nuclear RNA export factor 1 +10.0021198,CL:1000428,http://purl.obolibrary.org/obo/CL_1000428,stem cell of epidermis +10.0021198,MONDO:0005828,http://purl.obolibrary.org/obo/MONDO_0005828,listeriosis +10.0021198,PR:000009901,http://purl.obolibrary.org/obo/PR_000009901,lactoperoxidase +10.0021198,PR:Q9FNY0,http://purl.obolibrary.org/obo/PR_Q9FNY0,none +10.0021198,UBERON:0011906,http://purl.obolibrary.org/obo/UBERON_0011906,muscle head +10.0030763,CL:0002204,http://purl.obolibrary.org/obo/CL_0002204,brush cell +10.0030763,DRUGBANK:DB09363,http://purl.obolibrary.org/obo/DRUGBANK_DB09363,none +10.0030763,GO:0008281,http://purl.obolibrary.org/obo/GO_0008281,sulfonylurea receptor activity +10.0030763,HP:0001425,http://purl.obolibrary.org/obo/HP_0001425,Heterogeneous +10.0030763,MONDO:0006950,http://purl.obolibrary.org/obo/MONDO_0006950,retinal vasculitis +10.0030763,PR:P68433,http://purl.obolibrary.org/obo/PR_P68433,none +10.0040337,DRUGBANK:DB11157,http://purl.obolibrary.org/obo/DRUGBANK_DB11157,none +10.0040337,DRUGBANK:DB11768,http://purl.obolibrary.org/obo/DRUGBANK_DB11768,none +10.0040337,GO:0000016,http://purl.obolibrary.org/obo/GO_0000016,lactase activity +10.0040337,PR:000001209,http://purl.obolibrary.org/obo/PR_000001209,C-X-C chemokine receptor type 5 +10.0040337,PR:000017263,http://purl.obolibrary.org/obo/PR_000017263,vasodilator-stimulated phosphoprotein +10.0040337,PR:Q9NR00,http://purl.obolibrary.org/obo/PR_Q9NR00,transcriptional and immune response regulator (human) +10.0040337,UBERON:0003460,http://purl.obolibrary.org/obo/UBERON_0003460,arm bone +10.004992,DRUGBANK:DB08916,http://purl.obolibrary.org/obo/DRUGBANK_DB08916,none +10.004992,PR:000022497,http://purl.obolibrary.org/obo/PR_000022497,none +10.004992,PR:000022498,http://purl.obolibrary.org/obo/PR_000022498,none +10.0059512,DRUGBANK:DB00995,http://purl.obolibrary.org/obo/DRUGBANK_DB00995,none +10.0059512,DRUGBANK:DB01418,http://purl.obolibrary.org/obo/DRUGBANK_DB01418,none +10.0059512,DRUGBANK:DB08797,http://purl.obolibrary.org/obo/DRUGBANK_DB08797,none +10.0059512,DRUGBANK:DB12771,http://purl.obolibrary.org/obo/DRUGBANK_DB12771,none +10.0059512,DRUGBANK:DB15394,http://purl.obolibrary.org/obo/DRUGBANK_DB15394,none +10.0059512,MONDO:0011989,http://purl.obolibrary.org/obo/MONDO_0011989,leishmaniasis +10.0059512,PR:P36412,http://purl.obolibrary.org/obo/PR_P36412,none +10.0059512,PR:Q39222,http://purl.obolibrary.org/obo/PR_Q39222,none +10.0059512,PR:Q9FY74,http://purl.obolibrary.org/obo/PR_Q9FY74,none +10.0059512,UBERON:0001234,http://purl.obolibrary.org/obo/UBERON_0001234,left adrenal gland +10.0059512,UBERON:0004029,http://purl.obolibrary.org/obo/UBERON_0004029,canal of Schlemm +10.0069114,GO:0055081,http://purl.obolibrary.org/obo/GO_0055081,anion homeostasis +10.0069114,MONDO:0016113,http://purl.obolibrary.org/obo/MONDO_0016113,bulbospinal muscular atrophy +10.0069114,MONDO:0018936,http://purl.obolibrary.org/obo/MONDO_0018936,osteoblastoma +10.0069114,PR:000013196,http://purl.obolibrary.org/obo/PR_000013196,peroxiredoxin-6 +10.0069114,PR:000014988,http://purl.obolibrary.org/obo/PR_000014988,solute carrier family 22 member 2 +10.0069114,UBERON:0013631,http://purl.obolibrary.org/obo/UBERON_0013631,sesamoid element +10.0078725,MONDO:0001836,http://purl.obolibrary.org/obo/MONDO_0001836,amenorrhea +10.0078725,MONDO:0004693,http://purl.obolibrary.org/obo/MONDO_0004693,squamous carcinoma in situ +10.0078725,MONDO:0015523,http://purl.obolibrary.org/obo/MONDO_0015523,epithelioid hemangioendothelioma +10.0078725,MONDO:0024499,http://purl.obolibrary.org/obo/MONDO_0024499,vascular bone neoplasm +10.0078725,MONDO:0037872,http://purl.obolibrary.org/obo/MONDO_0037872,bordetellosis +10.0078725,PR:000013336,http://purl.obolibrary.org/obo/PR_000013336,periaxin +10.0088345,MONDO:0002599,http://purl.obolibrary.org/obo/MONDO_0002599,teratocarcinoma +10.0088345,MONDO:0005077,http://purl.obolibrary.org/obo/MONDO_0005077,pertussis +10.0088345,PR:000007680,http://purl.obolibrary.org/obo/PR_000007680,fibronectin type III and SPRY domain-containing protein 1 +10.0088345,PR:000032783,http://purl.obolibrary.org/obo/PR_000032783,sulfotransferase 1E1 +10.0088345,UBERON:0002265,http://purl.obolibrary.org/obo/UBERON_0002265,olfactory tract +10.0088345,UBERON:0004180,http://purl.obolibrary.org/obo/UBERON_0004180,mammary gland fat +10.0097974,MONDO:0003584,http://purl.obolibrary.org/obo/MONDO_0003584,visual cortex disease +10.0097974,NCBITaxon:32355,http://purl.obolibrary.org/obo/NCBITaxon_32355,none +10.0097974,UBERON:0002348,http://purl.obolibrary.org/obo/UBERON_0002348,epicardium +10.0097974,UBERON:0010136,http://purl.obolibrary.org/obo/UBERON_0010136,epithelial sheet +10.0107613,MONDO:0001476,http://purl.obolibrary.org/obo/MONDO_0001476,coloboma +10.0107613,MONDO:0001596,http://purl.obolibrary.org/obo/MONDO_0001596,hypochondriasis +10.0107613,PR:000001809,http://purl.obolibrary.org/obo/PR_000001809,CD59-like glycoprotein +10.0107613,PR:000005006,http://purl.obolibrary.org/obo/PR_000005006,adenylyl cyclase-associated protein 1 +10.0107613,UBERON:0003584,http://purl.obolibrary.org/obo/UBERON_0003584,mammary gland connective tissue +10.011726,DRUGBANK:DB00914,http://purl.obolibrary.org/obo/DRUGBANK_DB00914,none +10.011726,DRUGBANK:DB07992,http://purl.obolibrary.org/obo/DRUGBANK_DB07992,none +10.011726,GO:0038064,http://purl.obolibrary.org/obo/GO_0038064,collagen receptor activity +10.0126918,MONDO:0021224,http://purl.obolibrary.org/obo/MONDO_0021224,iris neoplasm +10.0126918,PR:000005869,http://purl.obolibrary.org/obo/PR_000005869,corticotropin-releasing factor receptor 1 +10.0126918,UBERON:0001479,http://purl.obolibrary.org/obo/UBERON_0001479,sesamoid bone +10.0136584,GO:0006089,http://purl.obolibrary.org/obo/GO_0006089,lactate metabolic process +10.0136584,MONDO:0000334,http://purl.obolibrary.org/obo/MONDO_0000334,multinodular goiter +10.0136584,PR:000010562,http://purl.obolibrary.org/obo/PR_000010562,double-strand break repair protein MRE11 +10.0136584,SO:0000603,http://purl.obolibrary.org/obo/SO_0000603,group_II_intron +10.014626,GO:0044060,http://purl.obolibrary.org/obo/GO_0044060,regulation of endocrine process +10.014626,GO:0046677,http://purl.obolibrary.org/obo/GO_0046677,response to antibiotic +10.014626,MONDO:0006789,http://purl.obolibrary.org/obo/MONDO_0006789,hyperamylasemia +10.014626,MONDO:0018157,http://purl.obolibrary.org/obo/MONDO_0018157,mitochondrial disorder due to a defect in mitochondrial protein synthesis +10.014626,PR:000003768,http://purl.obolibrary.org/obo/PR_000003768,all-trans-retinol dehydrogenase [NAD(+)] ADH1B +10.014626,PR:000009344,http://purl.obolibrary.org/obo/PR_000009344,metastasis-suppressor KiSS-1 +10.014626,PR:000030198,http://purl.obolibrary.org/obo/PR_000030198,plasminogen activator inhibitor 2 +10.014626,PR:P49686,http://purl.obolibrary.org/obo/PR_P49686,none +10.014626,PR:Q8LE98,http://purl.obolibrary.org/obo/PR_Q8LE98,none +10.0155945,DRUGBANK:DB14015,http://purl.obolibrary.org/obo/DRUGBANK_DB14015,none +10.0155945,GO:0030117,http://purl.obolibrary.org/obo/GO_0030117,membrane coat +10.0155945,MONDO:0009032,http://purl.obolibrary.org/obo/MONDO_0009032,cranioectodermal dysplasia +10.0155945,NCBITaxon:353825,http://purl.obolibrary.org/obo/NCBITaxon_353825,none +10.0155945,PR:000001592,http://purl.obolibrary.org/obo/PR_000001592,leucine-rich repeat-containing G-protein coupled receptor 5 +10.0155945,PR:000001831,http://purl.obolibrary.org/obo/PR_000001831,PR domain zinc finger protein 1 +10.0155945,PR:000012607,http://purl.obolibrary.org/obo/PR_000012607,phosphoglycerate kinase 1 +10.016564,DRUGBANK:DB10517,http://purl.obolibrary.org/obo/DRUGBANK_DB10517,none +10.016564,GO:0030076,http://purl.obolibrary.org/obo/GO_0030076,light-harvesting complex +10.016564,PR:000002061,http://purl.obolibrary.org/obo/PR_000002061,lysosome-associated membrane glycoprotein 2 +10.016564,PR:000003937,http://purl.obolibrary.org/obo/PR_000003937,chitobiosyldiphosphodolichol beta-mannosyltransferase +10.016564,PR:Q9LV93,http://purl.obolibrary.org/obo/PR_Q9LV93,none +10.016564,UBERON:0012466,http://purl.obolibrary.org/obo/UBERON_0012466,extraembryonic cavity +10.0175344,GO:0009247,http://purl.obolibrary.org/obo/GO_0009247,glycolipid biosynthetic process +10.0175344,GO:0019400,http://purl.obolibrary.org/obo/GO_0019400,alditol metabolic process +10.0175344,MONDO:0010100,http://purl.obolibrary.org/obo/MONDO_0010100,Tay-Sachs disease +10.0175344,MONDO:0015979,http://purl.obolibrary.org/obo/MONDO_0015979,hereditary predisposition to infections +10.0175344,PR:000005175,http://purl.obolibrary.org/obo/PR_000005175,CD63 molecule +10.0175344,UBERON:0006720,http://purl.obolibrary.org/obo/UBERON_0006720,pterygoid muscle +10.0175344,UBERON:0010064,http://purl.obolibrary.org/obo/UBERON_0010064,open anatomical space +10.0185057,DRUGBANK:DB01764,http://purl.obolibrary.org/obo/DRUGBANK_DB01764,none +10.0185057,GO:0042048,http://purl.obolibrary.org/obo/GO_0042048,olfactory behavior +10.0185057,PR:000001879,http://purl.obolibrary.org/obo/PR_000001879,leukosialin +10.0185057,PR:000009218,http://purl.obolibrary.org/obo/PR_000009218,bifunctional arginine demethylase and lysyl-hydroxylase JMJD6 +10.0185057,PR:P35732,http://purl.obolibrary.org/obo/PR_P35732,none +10.0185057,PR:Q9LKA5,http://purl.obolibrary.org/obo/PR_Q9LKA5,none +10.019478,DRUGBANK:DB06288,http://purl.obolibrary.org/obo/DRUGBANK_DB06288,none +10.019478,MONDO:0004844,http://purl.obolibrary.org/obo/MONDO_0004844,oral mucosa leukoplakia +10.019478,PR:000010782,http://purl.obolibrary.org/obo/PR_000010782,"methylmalonyl-CoA mutase, mitochondrial" +10.019478,PR:P40046,http://purl.obolibrary.org/obo/PR_P40046,none +10.0204513,DRUGBANK:DB01775,http://purl.obolibrary.org/obo/DRUGBANK_DB01775,none +10.0204513,UBERON:0005176,http://purl.obolibrary.org/obo/UBERON_0005176,tooth enamel organ +10.0214254,GO:0004494,http://purl.obolibrary.org/obo/GO_0004494,methylmalonyl-CoA mutase activity +10.0214254,GO:0060563,http://purl.obolibrary.org/obo/GO_0060563,neuroepithelial cell differentiation +10.0214254,MONDO:0001583,http://purl.obolibrary.org/obo/MONDO_0001583,diabetic polyneuropathy +10.0214254,PR:000003570,http://purl.obolibrary.org/obo/PR_000003570,ATP-binding cassette sub-family G member 1 +10.0214254,PR:000023912,http://purl.obolibrary.org/obo/PR_000023912,none +10.0214254,PR:Q5ZL67,http://purl.obolibrary.org/obo/PR_Q5ZL67,none +10.0224006,CL:0000109,http://purl.obolibrary.org/obo/CL_0000109,adrenergic neuron +10.0224006,GO:0006635,http://purl.obolibrary.org/obo/GO_0006635,fatty acid beta-oxidation +10.0224006,HP:0010622,http://purl.obolibrary.org/obo/HP_0010622,Neoplasm of the skeletal system +10.0224006,HP:0010885,http://purl.obolibrary.org/obo/HP_0010885,Avascular necrosis +10.0224006,MONDO:0043771,http://purl.obolibrary.org/obo/MONDO_0043771,radiodermatitis +10.0224006,UBERON:0001649,http://purl.obolibrary.org/obo/UBERON_0001649,glossopharyngeal nerve +10.0224006,UBERON:0002226,http://purl.obolibrary.org/obo/UBERON_0002226,basilar membrane of cochlea +10.0233767,CL:0000118,http://purl.obolibrary.org/obo/CL_0000118,basket cell +10.0233767,GO:0005185,http://purl.obolibrary.org/obo/GO_0005185,neurohypophyseal hormone activity +10.0233767,GO:0031669,http://purl.obolibrary.org/obo/GO_0031669,cellular response to nutrient levels +10.0233767,MONDO:0016362,http://purl.obolibrary.org/obo/MONDO_0016362,attenuated familial adenomatous polyposis +10.0233767,PR:000011644,http://purl.obolibrary.org/obo/PR_000011644,"dynamin-like 120 kDa protein, mitochondrial" +10.0233767,UBERON:0001513,http://purl.obolibrary.org/obo/UBERON_0001513,skin of pes +10.0243537,GO:0008211,http://purl.obolibrary.org/obo/GO_0008211,glucocorticoid metabolic process +10.0243537,PR:000006607,http://purl.obolibrary.org/obo/PR_000006607,DNA (cytosine-5)-methyltransferase 3A +10.0243537,PR:000022141,http://purl.obolibrary.org/obo/PR_000022141,none +10.0243537,SO:0001184,http://purl.obolibrary.org/obo/SO_0001184,PNA +10.0243537,UBERON:0001175,http://purl.obolibrary.org/obo/UBERON_0001175,common hepatic duct +10.0253317,CL:0000749,http://purl.obolibrary.org/obo/CL_0000749,ON-bipolar cell +10.0253317,HP:0001156,http://purl.obolibrary.org/obo/HP_0001156,Brachydactyly +10.0253317,MONDO:0018677,http://purl.obolibrary.org/obo/MONDO_0018677,visceral heterotaxy +10.0263107,GO:0030101,http://purl.obolibrary.org/obo/GO_0030101,natural killer cell activation +10.0263107,MONDO:0001385,http://purl.obolibrary.org/obo/MONDO_0001385,cortical blindness +10.0263107,MONDO:0006279,http://purl.obolibrary.org/obo/MONDO_0006279,lung sarcomatoid carcinoma +10.0263107,MONDO:0019701,http://purl.obolibrary.org/obo/MONDO_0019701,chondrodysplasia punctata +10.0263107,UBERON:0005160,http://purl.obolibrary.org/obo/UBERON_0005160,vestigial structure +10.0263107,UBERON:0006590,http://purl.obolibrary.org/obo/UBERON_0006590,remnant of embryonic structure +10.0263107,UBERON:0009005,http://purl.obolibrary.org/obo/UBERON_0009005,femorotibial joint +10.0272906,MONDO:0000495,http://purl.obolibrary.org/obo/MONDO_0000495,oppositional defiant disorder +10.0272906,MONDO:0006998,http://purl.obolibrary.org/obo/MONDO_0006998,tonsil cancer +10.0272906,MONDO:0020284,http://purl.obolibrary.org/obo/MONDO_0020284,heart position anomaly +10.0272906,PR:000010806,http://purl.obolibrary.org/obo/PR_000010806,myosin-binding protein H +10.0272906,PR:000044664,http://purl.obolibrary.org/obo/PR_000044664,GABA(A) receptor protein +10.0272906,PR:Q9FLC0,http://purl.obolibrary.org/obo/PR_Q9FLC0,none +10.0282714,MONDO:0002090,http://purl.obolibrary.org/obo/MONDO_0002090,eccrine sweat gland neoplasm +10.0282714,MONDO:0016462,http://purl.obolibrary.org/obo/MONDO_0016462,isolated agammaglobulinemia +10.0282714,PR:000000039,http://purl.obolibrary.org/obo/PR_000000039,DNA-binding protein inhibitor ID-1 +10.0282714,PR:000007572,http://purl.obolibrary.org/obo/PR_000007572,formin-like protein 2 +10.0292533,MONDO:0000405,http://purl.obolibrary.org/obo/MONDO_0000405,anal canal cancer +10.0292533,MONDO:0001913,http://purl.obolibrary.org/obo/MONDO_0001913,oligospermia +10.0292533,MONDO:0015780,http://purl.obolibrary.org/obo/MONDO_0015780,dyskeratosis congenita +10.0292533,UBERON:0002302,http://purl.obolibrary.org/obo/UBERON_0002302,myocardium of atrium +10.0302361,PR:000037395,http://purl.obolibrary.org/obo/PR_000037395,none +10.0312198,DRUGBANK:DB13956,http://purl.obolibrary.org/obo/DRUGBANK_DB13956,none +10.0312198,MONDO:0005289,http://purl.obolibrary.org/obo/MONDO_0005289,paranasal sinus neoplasm +10.0312198,PR:000000095,http://purl.obolibrary.org/obo/PR_000000095,tumor necrosis factor ligand superfamily member 6 +10.0312198,PR:000007603,http://purl.obolibrary.org/obo/PR_000007603,hepatocyte nuclear factor 3-beta +10.0312198,UBERON:0003721,http://purl.obolibrary.org/obo/UBERON_0003721,lingual nerve +10.0322046,MONDO:0001703,http://purl.obolibrary.org/obo/MONDO_0001703,color vision disorder +10.0322046,MONDO:0043994,http://purl.obolibrary.org/obo/MONDO_0043994,acute cholecystitis +10.0322046,PR:000008629,http://purl.obolibrary.org/obo/PR_000008629,high mobility group protein HMGI-C +10.0331903,DRUGBANK:DB00956,http://purl.obolibrary.org/obo/DRUGBANK_DB00956,none +10.0331903,GO:0001708,http://purl.obolibrary.org/obo/GO_0001708,cell fate specification +10.0331903,MONDO:0020157,http://purl.obolibrary.org/obo/MONDO_0020157,syndromic palpebral coloboma +10.0331903,MONDO:0021250,http://purl.obolibrary.org/obo/MONDO_0021250,tonsil neoplasm +10.0331903,PR:000016505,http://purl.obolibrary.org/obo/PR_000016505,"troponin I, fast skeletal muscle" +10.0331903,PR:O80822,http://purl.obolibrary.org/obo/PR_O80822,none +10.0331903,UBERON:0006676,http://purl.obolibrary.org/obo/UBERON_0006676,muscularis mucosa +10.034177,DRUGBANK:DB10503,http://purl.obolibrary.org/obo/DRUGBANK_DB10503,none +10.034177,GO:0004363,http://purl.obolibrary.org/obo/GO_0004363,glutathione synthase activity +10.034177,MONDO:0002911,http://purl.obolibrary.org/obo/MONDO_0002911,brain stem glioma +10.034177,SO:0000333,http://purl.obolibrary.org/obo/SO_0000333,exon_junction +10.034177,UBERON:0004114,http://purl.obolibrary.org/obo/UBERON_0004114,tympanic cavity +10.0351646,DRUGBANK:DB00020,http://purl.obolibrary.org/obo/DRUGBANK_DB00020,none +10.0351646,GO:0016117,http://purl.obolibrary.org/obo/GO_0016117,carotenoid biosynthetic process +10.0351646,MONDO:0009376,http://purl.obolibrary.org/obo/MONDO_0009376,carbamoyl phosphate synthetase I deficiency disease +10.0351646,MONDO:0015654,http://purl.obolibrary.org/obo/MONDO_0015654,idiopathic or cryptogenic familial epilepsy syndrome with identified loci/genes +10.0351646,PR:000001830,http://purl.obolibrary.org/obo/PR_000001830,P-selectin glycoprotein ligand 1 +10.0351646,PR:000013036,http://purl.obolibrary.org/obo/PR_000013036,"POU domain, class 2, transcription factor 2" +10.0361533,CHEBI:26401,http://purl.obolibrary.org/obo/CHEBI_26401,purines +10.0361533,CHEBI:35875,http://purl.obolibrary.org/obo/CHEBI_35875,imidazopyrimidine +10.0361533,DRUGBANK:DB00467,http://purl.obolibrary.org/obo/DRUGBANK_DB00467,none +10.0361533,MONDO:0004741,http://purl.obolibrary.org/obo/MONDO_0004741,tyrosinemia +10.0361533,MONDO:0006493,http://purl.obolibrary.org/obo/MONDO_0006493,Warthin tumor +10.0361533,MONDO:0017970,http://purl.obolibrary.org/obo/MONDO_0017970,"46,XY disorder of sex development due to impaired androgen production" +10.0361533,MONDO:0019302,http://purl.obolibrary.org/obo/MONDO_0019302,mucopolysaccharidosis with skin involvement +10.0361533,PR:000004183,http://purl.obolibrary.org/obo/PR_000004183,aquaporin-3 +10.0361533,PR:000009406,http://purl.obolibrary.org/obo/PR_000009406,kallikrein-1 +10.0361533,PR:000014907,http://purl.obolibrary.org/obo/PR_000014907,helicase SKI2W +10.0361533,PR:000050051,http://purl.obolibrary.org/obo/PR_000050051,ROBO protein +10.0361533,PR:P14904,http://purl.obolibrary.org/obo/PR_P14904,none +10.0361533,PR:Q6QLQ4,http://purl.obolibrary.org/obo/PR_Q6QLQ4,none +10.0371429,DRUGBANK:DB04343,http://purl.obolibrary.org/obo/DRUGBANK_DB04343,none +10.0381334,GO:0005248,http://purl.obolibrary.org/obo/GO_0005248,voltage-gated sodium channel activity +10.0381334,HP:0004348,http://purl.obolibrary.org/obo/HP_0004348,Abnormality of bone mineral density +10.0381334,HP:0011849,http://purl.obolibrary.org/obo/HP_0011849,Abnormal bone ossification +10.0381334,PR:000003292,http://purl.obolibrary.org/obo/PR_000003292,NF-kappa-B inhibitor +10.0381334,UBERON:0003215,http://purl.obolibrary.org/obo/UBERON_0003215,alveolus +10.039125,GO:0003857,http://purl.obolibrary.org/obo/GO_0003857,3-hydroxyacyl-CoA dehydrogenase activity +10.039125,GO:0009312,http://purl.obolibrary.org/obo/GO_0009312,oligosaccharide biosynthetic process +10.039125,GO:0051093,http://purl.obolibrary.org/obo/GO_0051093,negative regulation of developmental process +10.039125,MONDO:0000502,http://purl.obolibrary.org/obo/MONDO_0000502,villous adenoma +10.039125,MONDO:0001023,http://purl.obolibrary.org/obo/MONDO_0001023,prolymphocytic leukemia +10.039125,PR:000005015,http://purl.obolibrary.org/obo/PR_000005015,calpain-2 catalytic subunit +10.039125,PR:000007402,http://purl.obolibrary.org/obo/PR_000007402,F-box only protein 32 +10.039125,PR:000011117,http://purl.obolibrary.org/obo/PR_000011117,enhancer of filamentation 1 +10.039125,PR:000013421,http://purl.obolibrary.org/obo/PR_000013421,prostaglandin E synthase +10.0401176,PR:000004505,http://purl.obolibrary.org/obo/PR_000004505,ataxin-2 +10.0401176,PR:000005173,http://purl.obolibrary.org/obo/PR_000005173,CD59 glycoprotein +10.0401176,PR:000009481,http://purl.obolibrary.org/obo/PR_000009481,"keratin, type II cytoskeletal 5" +10.0401176,UBERON:0001205,http://purl.obolibrary.org/obo/UBERON_0001205,submucosa of small intestine +10.0401176,UBERON:0009132,http://purl.obolibrary.org/obo/UBERON_0009132,peroneus +10.0411111,DRUGBANK:DB11143,http://purl.obolibrary.org/obo/DRUGBANK_DB11143,none +10.0411111,GO:0006534,http://purl.obolibrary.org/obo/GO_0006534,cysteine metabolic process +10.0411111,MONDO:0011218,http://purl.obolibrary.org/obo/MONDO_0011218,autosomal recessive congenital ichthyosis 11 +10.0411111,PR:000049997,http://purl.obolibrary.org/obo/PR_000049997,leukotriene receptor +10.0421056,DRUGBANK:DB12434,http://purl.obolibrary.org/obo/DRUGBANK_DB12434,none +10.0421056,GO:0031201,http://purl.obolibrary.org/obo/GO_0031201,SNARE complex +10.0421056,MONDO:0020046,http://purl.obolibrary.org/obo/MONDO_0020046,autosomal recessive degenerative and progressive cerebellar ataxia +10.0421056,PR:000004080,http://purl.obolibrary.org/obo/PR_000004080,annexin A7 +10.0421056,PR:000016655,http://purl.obolibrary.org/obo/PR_000016655,E3 ubiquitin-protein ligase TRIM33 +10.0431012,GO:0036468,http://purl.obolibrary.org/obo/GO_0036468,L-dopa decarboxylase activity +10.0431012,HP:0001974,http://purl.obolibrary.org/obo/HP_0001974,Leukocytosis +10.0431012,PR:000001356,http://purl.obolibrary.org/obo/PR_000001356,immunoglobulin gamma Fc receptor I +10.0440977,CHEBI:73416,http://purl.obolibrary.org/obo/CHEBI_73416,CB1 receptor antagonist +10.0440977,DRUGBANK:DB00484,http://purl.obolibrary.org/obo/DRUGBANK_DB00484,none +10.0440977,DRUGBANK:DB11674,http://purl.obolibrary.org/obo/DRUGBANK_DB11674,none +10.0440977,GO:0007619,http://purl.obolibrary.org/obo/GO_0007619,courtship behavior +10.0440977,GO:0030334,http://purl.obolibrary.org/obo/GO_0030334,regulation of cell migration +10.0440977,PR:000001330,http://purl.obolibrary.org/obo/PR_000001330,carcinoembryonic antigen-related cell adhesion molecule 5 +10.0440977,PR:000008245,http://purl.obolibrary.org/obo/PR_000008245,"glutamate receptor ionotropic, NMDA 1" +10.0450952,GO:0033549,http://purl.obolibrary.org/obo/GO_0033549,MAP kinase phosphatase activity +10.0450952,GO:0044038,http://purl.obolibrary.org/obo/GO_0044038,cell wall macromolecule biosynthetic process +10.0450952,GO:0046209,http://purl.obolibrary.org/obo/GO_0046209,nitric oxide metabolic process +10.0450952,GO:0070589,http://purl.obolibrary.org/obo/GO_0070589,cellular component macromolecule biosynthetic process +10.0450952,MONDO:0045001,http://purl.obolibrary.org/obo/MONDO_0045001,cardiac ventricle disease +10.0450952,UBERON:0009009,http://purl.obolibrary.org/obo/UBERON_0009009,carotid sinus nerve +10.0460937,CL:0000618,http://purl.obolibrary.org/obo/CL_0000618,sheath cell +10.0460937,DRUGBANK:DB01186,http://purl.obolibrary.org/obo/DRUGBANK_DB01186,none +10.0460937,DRUGBANK:DB08826,http://purl.obolibrary.org/obo/DRUGBANK_DB08826,none +10.0460937,GO:0008584,http://purl.obolibrary.org/obo/GO_0008584,male gonad development +10.0460937,MONDO:0019026,http://purl.obolibrary.org/obo/MONDO_0019026,autosomal recessive osteopetrosis +10.0460937,PR:000001394,http://purl.obolibrary.org/obo/PR_000001394,interleukin-6 receptor subunit alpha +10.0460937,PR:000011355,http://purl.obolibrary.org/obo/PR_000011355,NPC intracellular cholesterol transporter 1 +10.0460937,PR:000012969,http://purl.obolibrary.org/obo/PR_000012969,DNA polymerase epsilon catalytic subunit A +10.0470932,DRUGBANK:DB08877,http://purl.obolibrary.org/obo/DRUGBANK_DB08877,none +10.0470932,GO:0009531,http://purl.obolibrary.org/obo/GO_0009531,secondary cell wall +10.0470932,MONDO:0005324,http://purl.obolibrary.org/obo/MONDO_0005324,seasonal allergic rhinitis +10.0470932,PR:000000037,http://purl.obolibrary.org/obo/PR_000000037,BMP receptor type-2 +10.0470932,PR:000001899,http://purl.obolibrary.org/obo/PR_000001899,neural cell adhesion molecule-like protein +10.0480937,DRUGBANK:DB01369,http://purl.obolibrary.org/obo/DRUGBANK_DB01369,none +10.0480937,GO:0034736,http://purl.obolibrary.org/obo/GO_0034736,cholesterol O-acyltransferase activity +10.0480937,GO:1900674,http://purl.obolibrary.org/obo/GO_1900674,olefin biosynthetic process +10.0480937,MONDO:0004438,http://purl.obolibrary.org/obo/MONDO_0004438,sporadic breast cancer +10.0480937,PR:000017210,http://purl.obolibrary.org/obo/PR_000017210,urotensin-2 +10.0480937,SO:0001742,http://purl.obolibrary.org/obo/SO_0001742,copy_number_gain +10.0480937,UBERON:0001578,http://purl.obolibrary.org/obo/UBERON_0001578,orbicularis oculi muscle +10.0490952,DRUGBANK:DB00934,http://purl.obolibrary.org/obo/DRUGBANK_DB00934,none +10.0490952,HP:0001637,http://purl.obolibrary.org/obo/HP_0001637,Abnormal myocardium morphology +10.0490952,PR:000004151,http://purl.obolibrary.org/obo/PR_000004151,apolipoprotein C-II +10.0490952,UBERON:0001101,http://purl.obolibrary.org/obo/UBERON_0001101,external jugular vein +10.0500977,GO:0006857,http://purl.obolibrary.org/obo/GO_0006857,oligopeptide transport +10.0500977,GO:0016109,http://purl.obolibrary.org/obo/GO_0016109,tetraterpenoid biosynthetic process +10.0500977,GO:1990845,http://purl.obolibrary.org/obo/GO_1990845,adaptive thermogenesis +10.0500977,HP:0002617,http://purl.obolibrary.org/obo/HP_0002617,Vascular dilatation +10.0500977,MONDO:0009849,http://purl.obolibrary.org/obo/MONDO_0009849,hyperimmunoglobulinemia D with periodic fever +10.0500977,MONDO:0020947,http://purl.obolibrary.org/obo/MONDO_0020947,parasitic eye infection +10.0500977,UBERON:0012282,http://purl.obolibrary.org/obo/UBERON_0012282,mammary fat pad +10.0511012,CHEBI:50684,http://purl.obolibrary.org/obo/CHEBI_50684,cross-linking reagent +10.0511012,DRUGBANK:DB04257,http://purl.obolibrary.org/obo/DRUGBANK_DB04257,none +10.0511012,DRUGBANK:DB13584,http://purl.obolibrary.org/obo/DRUGBANK_DB13584,none +10.0511012,GO:0010857,http://purl.obolibrary.org/obo/GO_0010857,calcium-dependent protein kinase activity +10.0511012,MONDO:0002682,http://purl.obolibrary.org/obo/MONDO_0002682,cerebral ventricle cancer +10.0511012,MONDO:0045050,http://purl.obolibrary.org/obo/MONDO_0045050,nuclear cataract +10.0511012,PR:000007834,http://purl.obolibrary.org/obo/PR_000007834,galactose-1-phosphate uridylyltransferase +10.0511012,PR:000017569,http://purl.obolibrary.org/obo/PR_000017569,zinc finger and BTB domain-containing protein 22 +10.0511012,UBERON:0001469,http://purl.obolibrary.org/obo/UBERON_0001469,sternoclavicular joint +10.0511012,UBERON:0018392,http://purl.obolibrary.org/obo/UBERON_0018392,arterial baroreceptor +10.0521057,GO:0006264,http://purl.obolibrary.org/obo/GO_0006264,mitochondrial DNA replication +10.0521057,GO:0006703,http://purl.obolibrary.org/obo/GO_0006703,estrogen biosynthetic process +10.0531113,CL:0000826,http://purl.obolibrary.org/obo/CL_0000826,pro-B cell +10.0531113,DRUGBANK:DB01067,http://purl.obolibrary.org/obo/DRUGBANK_DB01067,none +10.0531113,GO:0015802,http://purl.obolibrary.org/obo/GO_0015802,basic amino acid transport +10.0531113,UBERON:0001853,http://purl.obolibrary.org/obo/UBERON_0001853,utricle of membranous labyrinth +10.0541178,CHEBI:60816,http://purl.obolibrary.org/obo/CHEBI_60816,immunogen +10.0541178,DRUGBANK:DB09298,http://purl.obolibrary.org/obo/DRUGBANK_DB09298,none +10.0541178,GO:0030103,http://purl.obolibrary.org/obo/GO_0030103,vasopressin secretion +10.0541178,GO:1904627,http://purl.obolibrary.org/obo/GO_1904627,response to phorbol 13-acetate 12-myristate +10.0541178,MONDO:0000115,http://purl.obolibrary.org/obo/MONDO_0000115,Chiari malformation +10.0541178,MONDO:0006237,http://purl.obolibrary.org/obo/MONDO_0006237,granulocytic sarcoma +10.0541178,PR:000001754,http://purl.obolibrary.org/obo/PR_000001754,nuclear factor NF-kappa-B p105 subunit +10.0541178,SO:0001477,http://purl.obolibrary.org/obo/SO_0001477,gene_trap_construct +10.0541178,UBERON:0001230,http://purl.obolibrary.org/obo/UBERON_0001230,glomerular capsule +10.0541178,UBERON:0002275,http://purl.obolibrary.org/obo/UBERON_0002275,reticular formation +10.0551254,DRUGBANK:DB08162,http://purl.obolibrary.org/obo/DRUGBANK_DB08162,none +10.0551254,DRUGBANK:DB09477,http://purl.obolibrary.org/obo/DRUGBANK_DB09477,none +10.0551254,GO:0002683,http://purl.obolibrary.org/obo/GO_0002683,negative regulation of immune system process +10.0551254,GO:0046173,http://purl.obolibrary.org/obo/GO_0046173,polyol biosynthetic process +10.0551254,MONDO:0005227,http://purl.obolibrary.org/obo/MONDO_0005227,abscess +10.0551254,PR:000006105,http://purl.obolibrary.org/obo/PR_000006105,steroid 21-hydroxylase +10.0551254,UBERON:0003503,http://purl.obolibrary.org/obo/UBERON_0003503,leg blood vessel +10.0551254,UBERON:0003959,http://purl.obolibrary.org/obo/UBERON_0003959,rete testis +10.0561339,MONDO:0003424,http://purl.obolibrary.org/obo/MONDO_0003424,oncocytic adenoma +10.0561339,PR:000001159,http://purl.obolibrary.org/obo/PR_000001159,Toll-like receptor 8 +10.0571435,GO:0019888,http://purl.obolibrary.org/obo/GO_0019888,protein phosphatase regulator activity +10.0571435,UBERON:0001058,http://purl.obolibrary.org/obo/UBERON_0001058,mushroom body +10.0581541,CL:0000221,http://purl.obolibrary.org/obo/CL_0000221,ectodermal cell +10.0581541,MONDO:0020672,http://purl.obolibrary.org/obo/MONDO_0020672,vascular occlusion disorder +10.0581541,PR:Q19127,http://purl.obolibrary.org/obo/PR_Q19127,none +10.0591658,DRUGBANK:DB03886,http://purl.obolibrary.org/obo/DRUGBANK_DB03886,none +10.0591658,DRUGBANK:DB11129,http://purl.obolibrary.org/obo/DRUGBANK_DB11129,none +10.0591658,GO:0001555,http://purl.obolibrary.org/obo/GO_0001555,oocyte growth +10.0591658,GO:0005930,http://purl.obolibrary.org/obo/GO_0005930,axoneme +10.0591658,PR:000013736,http://purl.obolibrary.org/obo/PR_000013736,retinoic acid receptor alpha +10.0591658,PR:000015065,http://purl.obolibrary.org/obo/PR_000015065,"solute carrier family 2, facilitated glucose transporter member 3" +10.0591658,UBERON:0001459,http://purl.obolibrary.org/obo/UBERON_0001459,skin of external ear +10.0601784,MONDO:0005615,http://purl.obolibrary.org/obo/MONDO_0005615,plasmacytoma +10.0601784,MONDO:0016789,http://purl.obolibrary.org/obo/MONDO_0016789,pyruvate metabolism disorder +10.0601784,UBERON:0002423,http://purl.obolibrary.org/obo/UBERON_0002423,hepatobiliary system +10.0601784,UBERON:0006845,http://purl.obolibrary.org/obo/UBERON_0006845,abductor muscle +10.0611921,CHEBI:167559,http://purl.obolibrary.org/obo/CHEBI_167559,glycan +10.0611921,GO:0090130,http://purl.obolibrary.org/obo/GO_0090130,tissue migration +10.0611921,GO:0090651,http://purl.obolibrary.org/obo/GO_0090651,apical cytoplasm +10.0611921,HP:0000315,http://purl.obolibrary.org/obo/HP_0000315,Abnormality of the orbital region +10.0611921,HP:0030669,http://purl.obolibrary.org/obo/HP_0030669,Abnormal ocular adnexa morphology +10.0611921,HP:0032039,http://purl.obolibrary.org/obo/HP_0032039,Abnormality of the ocular adnexa +10.0611921,NCBITaxon:10497,http://purl.obolibrary.org/obo/NCBITaxon_10497,African swine fever virus +10.0611921,NCBITaxon:137992,http://purl.obolibrary.org/obo/NCBITaxon_137992,none +10.0611921,NCBITaxon:1506574,http://purl.obolibrary.org/obo/NCBITaxon_1506574,Protoparvovirus +10.0611921,PR:000003862,http://purl.obolibrary.org/obo/PR_000003862,alpha-2-HS-glycoprotein +10.0611921,PR:000011463,http://purl.obolibrary.org/obo/PR_000011463,netrin-1 +10.0611921,UBERON:0010412,http://purl.obolibrary.org/obo/UBERON_0010412,epididymal fat pad +10.0622068,DRUGBANK:DB00780,http://purl.obolibrary.org/obo/DRUGBANK_DB00780,none +10.0622068,DRUGBANK:DB01158,http://purl.obolibrary.org/obo/DRUGBANK_DB01158,none +10.0622068,DRUGBANK:DB14233,http://purl.obolibrary.org/obo/DRUGBANK_DB14233,none +10.0622068,NCBITaxon:2732526,http://purl.obolibrary.org/obo/NCBITaxon_2732526,none +10.0622068,NCBITaxon:39743,http://purl.obolibrary.org/obo/NCBITaxon_39743,none +10.0622068,PR:000008683,http://purl.obolibrary.org/obo/PR_000008683,protein Hook homolog 2 +10.0622068,PR:000011632,http://purl.obolibrary.org/obo/PR_000011632,oligodendrocyte transcription factor 2 +10.0632226,GO:0004711,http://purl.obolibrary.org/obo/GO_0004711,ribosomal protein S6 kinase activity +10.0632226,GO:0045471,http://purl.obolibrary.org/obo/GO_0045471,response to ethanol +10.0632226,GO:0080117,http://purl.obolibrary.org/obo/GO_0080117,secondary growth +10.0632226,MONDO:0002286,http://purl.obolibrary.org/obo/MONDO_0002286,renal artery disease +10.0632226,SO:0000841,http://purl.obolibrary.org/obo/SO_0000841,spliceosomal_intron_region +10.0632226,UBERON:0005806,http://purl.obolibrary.org/obo/UBERON_0005806,portal system +10.0632226,UBERON:0006692,http://purl.obolibrary.org/obo/UBERON_0006692,vertebral canal +10.0642393,DRUGBANK:DB00710,http://purl.obolibrary.org/obo/DRUGBANK_DB00710,none +10.0642393,DRUGBANK:DB01086,http://purl.obolibrary.org/obo/DRUGBANK_DB01086,none +10.0642393,DRUGBANK:DB10443,http://purl.obolibrary.org/obo/DRUGBANK_DB10443,none +10.0642393,GO:0008108,http://purl.obolibrary.org/obo/GO_0008108,UDP-glucose:hexose-1-phosphate uridylyltransferase activity +10.0642393,PR:000001043,http://purl.obolibrary.org/obo/PR_000001043,Na(+)/H(+) exchange regulatory cofactor with ERM-binding domain +10.0642393,PR:000007600,http://purl.obolibrary.org/obo/PR_000007600,Fos-related antigen 2 +10.0652572,PR:000001122,http://purl.obolibrary.org/obo/PR_000001122,bombesin receptor +10.0652572,PR:Q8RY46,http://purl.obolibrary.org/obo/PR_Q8RY46,none +10.066276,CHEBI:76989,http://purl.obolibrary.org/obo/CHEBI_76989,phytoestrogen +10.066276,GO:0006949,http://purl.obolibrary.org/obo/GO_0006949,syncytium formation +10.066276,GO:0007620,http://purl.obolibrary.org/obo/GO_0007620,copulation +10.0672959,CL:0002366,http://purl.obolibrary.org/obo/CL_0002366,myometrial cell +10.0672959,GO:2000505,http://purl.obolibrary.org/obo/GO_2000505,none +10.0672959,MONDO:0004660,http://purl.obolibrary.org/obo/MONDO_0004660,lung carcinoma in situ +10.0672959,MONDO:0017756,http://purl.obolibrary.org/obo/MONDO_0017756,disorder of pterin metabolism +10.0672959,MONDO:0024609,http://purl.obolibrary.org/obo/MONDO_0024609,vulvar squamous cell carcinoma +10.0672959,UBERON:0011309,http://purl.obolibrary.org/obo/UBERON_0011309,body of mandible +10.0683168,DRUGBANK:DB01131,http://purl.obolibrary.org/obo/DRUGBANK_DB01131,none +10.0683168,DRUGBANK:DB06779,http://purl.obolibrary.org/obo/DRUGBANK_DB06779,none +10.0683168,MONDO:0003000,http://purl.obolibrary.org/obo/MONDO_0003000,central nervous system germ cell tumor +10.0683168,MONDO:0003803,http://purl.obolibrary.org/obo/MONDO_0003803,aortic valve disease +10.0683168,MONDO:0005057,http://purl.obolibrary.org/obo/MONDO_0005057,large cell neuroendocrine carcinoma +10.0683168,MONDO:0042493,http://purl.obolibrary.org/obo/MONDO_0042493,gastric non-hodgkin lymphoma +10.0683168,PR:000008038,http://purl.obolibrary.org/obo/PR_000008038,lactoylglutathione lyase +10.0683168,PR:000015122,http://purl.obolibrary.org/obo/PR_000015122,sodium-coupled neutral amino acid transporter 5 +10.0693388,DRUGBANK:DB11473,http://purl.obolibrary.org/obo/DRUGBANK_DB11473,none +10.0693388,DRUGBANK:DB12595,http://purl.obolibrary.org/obo/DRUGBANK_DB12595,none +10.0693388,GO:0008637,http://purl.obolibrary.org/obo/GO_0008637,apoptotic mitochondrial changes +10.0693388,GO:0016690,http://purl.obolibrary.org/obo/GO_0016690,diarylpropane peroxidase activity +10.0693388,PR:000010038,http://purl.obolibrary.org/obo/PR_000010038,mitotic spindle assembly checkpoint protein MAD2A +10.0703618,PR:000005317,http://purl.obolibrary.org/obo/PR_000005317,bile salt-activated lipase +10.0703618,UBERON:0011119,http://purl.obolibrary.org/obo/UBERON_0011119,carpometacarpal joint +10.0713859,MONDO:0016494,http://purl.obolibrary.org/obo/MONDO_0016494,regional variant of Guillain-Barre syndrome +10.0713859,NCBITaxon:675075,http://purl.obolibrary.org/obo/NCBITaxon_675075,none +10.0713859,PR:000013509,http://purl.obolibrary.org/obo/PR_000013509,peroxisomal membrane protein 2 +10.0713859,PR:000015039,http://purl.obolibrary.org/obo/PR_000015039,pendrin +10.0713859,PR:000015462,http://purl.obolibrary.org/obo/PR_000015462,sperm-associated antigen 8 +10.0713859,SO:0001997,http://purl.obolibrary.org/obo/SO_0001997,subtelomere +10.0713859,UBERON:0005745,http://purl.obolibrary.org/obo/UBERON_0005745,optic foramen +10.0713859,UBERON:0006763,http://purl.obolibrary.org/obo/UBERON_0006763,epithelium of conjunctiva +10.0713859,UBERON:0009955,http://purl.obolibrary.org/obo/UBERON_0009955,neurogenic placode +10.072411,CL:0000515,http://purl.obolibrary.org/obo/CL_0000515,skeletal muscle myoblast +10.072411,DRUGBANK:DB01610,http://purl.obolibrary.org/obo/DRUGBANK_DB01610,none +10.072411,DRUGBANK:DB01795,http://purl.obolibrary.org/obo/DRUGBANK_DB01795,none +10.072411,DRUGBANK:DB11410,http://purl.obolibrary.org/obo/DRUGBANK_DB11410,none +10.072411,UBERON:0001538,http://purl.obolibrary.org/obo/UBERON_0001538,posterior tibial artery +10.072411,UBERON:0006333,http://purl.obolibrary.org/obo/UBERON_0006333,snout +10.072411,UBERON:0014848,http://purl.obolibrary.org/obo/UBERON_0014848,tendon of quadriceps femoris +10.0734372,DRUGBANK:DB00401,http://purl.obolibrary.org/obo/DRUGBANK_DB00401,none +10.0734372,GO:0015870,http://purl.obolibrary.org/obo/GO_0015870,acetylcholine transport +10.0734372,GO:0090195,http://purl.obolibrary.org/obo/GO_0090195,none +10.0734372,MONDO:0017150,http://purl.obolibrary.org/obo/MONDO_0017150,pulmonary arterial hypertension associated with another disease +10.0734372,UBERON:0005362,http://purl.obolibrary.org/obo/UBERON_0005362,vagus X ganglion +10.0744644,CL:0008046,http://purl.obolibrary.org/obo/CL_0008046,extrafusal muscle fiber +10.0744644,GO:0101005,http://purl.obolibrary.org/obo/GO_0101005,deubiquitinase activity +10.0744644,HP:0002153,http://purl.obolibrary.org/obo/HP_0002153,Hyperkalemia +10.0744644,MONDO:0011804,http://purl.obolibrary.org/obo/MONDO_0011804,autoimmune lymphoproliferative syndrome type 2B +10.0744644,PR:000011041,http://purl.obolibrary.org/obo/PR_000011041,nuclear receptor coactivator 2 +10.0744644,PR:000014925,http://purl.obolibrary.org/obo/PR_000014925,solute carrier family 12 member 2 +10.0744644,UBERON:0002813,http://purl.obolibrary.org/obo/UBERON_0002813,right cerebral hemisphere +10.0754927,DRUGBANK:DB10829,http://purl.obolibrary.org/obo/DRUGBANK_DB10829,none +10.0754927,DRUGBANK:DB12582,http://purl.obolibrary.org/obo/DRUGBANK_DB12582,none +10.0754927,GO:0006342,http://purl.obolibrary.org/obo/GO_0006342,none +10.0754927,GO:0008037,http://purl.obolibrary.org/obo/GO_0008037,cell recognition +10.0754927,MONDO:0001548,http://purl.obolibrary.org/obo/MONDO_0001548,hepatic coma +10.0754927,MONDO:0006962,http://purl.obolibrary.org/obo/MONDO_0006962,sebaceous adenocarcinoma +10.0754927,PR:000011282,http://purl.obolibrary.org/obo/PR_000011282,nucleoside diphosphate kinase B +10.0754927,PR:000022921,http://purl.obolibrary.org/obo/PR_000022921,hypoxanthine phosphoribosyltransferase +10.076522,DRUGBANK:DB06266,http://purl.obolibrary.org/obo/DRUGBANK_DB06266,none +10.076522,GO:0008119,http://purl.obolibrary.org/obo/GO_0008119,thiopurine S-methyltransferase activity +10.076522,MONDO:0005651,http://purl.obolibrary.org/obo/MONDO_0005651,arenavirus hemorrhagic fever +10.076522,MONDO:0006906,http://purl.obolibrary.org/obo/MONDO_0006906,pigmented villonodular synovitis +10.0775524,DRUGBANK:DB02296,http://purl.obolibrary.org/obo/DRUGBANK_DB02296,none +10.0775524,GO:0099106,http://purl.obolibrary.org/obo/GO_0099106,ion channel regulator activity +10.0775524,PR:000013763,http://purl.obolibrary.org/obo/PR_000013763,Ras association domain-containing protein 1 +10.0785839,MONDO:0024686,http://purl.obolibrary.org/obo/MONDO_0024686,"tenosynovial giant cell tumor, diffuse type" +10.0785839,PR:000012532,http://purl.obolibrary.org/obo/PR_000012532,phosphatidylethanolamine-binding protein 1 +10.0785839,PR:000025893,http://purl.obolibrary.org/obo/PR_000025893,none +10.0785839,PR:000036337,http://purl.obolibrary.org/obo/PR_000036337,taste receptor type 2 +10.0785839,UBERON:0006673,http://purl.obolibrary.org/obo/UBERON_0006673,mandibular canal +10.0796164,CHEBI:27081,http://purl.obolibrary.org/obo/CHEBI_27081,transition element atom +10.0796164,DRUGBANK:DB00304,http://purl.obolibrary.org/obo/DRUGBANK_DB00304,none +10.0796164,DRUGBANK:DB13732,http://purl.obolibrary.org/obo/DRUGBANK_DB13732,none +10.0796164,GO:0050810,http://purl.obolibrary.org/obo/GO_0050810,regulation of steroid biosynthetic process +10.0796164,GO:1901374,http://purl.obolibrary.org/obo/GO_1901374,acetate ester transport +10.0796164,MONDO:0005851,http://purl.obolibrary.org/obo/MONDO_0005851,Miller Fisher syndrome +10.0796164,MONDO:0018686,http://purl.obolibrary.org/obo/MONDO_0018686,acquired Creutzfeldt-Jakob disease +10.0796164,PR:000006321,http://purl.obolibrary.org/obo/PR_000006321,L-dopachrome tautomerase +10.0796164,PR:000017077,http://purl.obolibrary.org/obo/PR_000017077,serine/threonine-protein kinase ULK1 +10.0796164,PR:Q6MG90,http://purl.obolibrary.org/obo/PR_Q6MG90,none +10.08065,GO:0022601,http://purl.obolibrary.org/obo/GO_0022601,menstrual cycle phase +10.08065,PR:000015894,http://purl.obolibrary.org/obo/PR_000015894,synaptotagmin-1 +10.0816846,DRUGBANK:DB13387,http://purl.obolibrary.org/obo/DRUGBANK_DB13387,none +10.0816846,MONDO:0019285,http://purl.obolibrary.org/obo/MONDO_0019285,syndromic nail anomaly +10.0816846,MONDO:0019501,http://purl.obolibrary.org/obo/MONDO_0019501,Usher syndrome +10.0816846,PR:000010970,http://purl.obolibrary.org/obo/PR_000010970,nanos homolog 1 +10.0816846,PR:000012252,http://purl.obolibrary.org/obo/PR_000012252,peptidyl-glycine alpha-amidating monooxygenase +10.0827204,CHEBI:50664,http://purl.obolibrary.org/obo/CHEBI_50664,matrix metalloproteinase inhibitor +10.0827204,DRUGBANK:DB04951,http://purl.obolibrary.org/obo/DRUGBANK_DB04951,none +10.0827204,GO:0001836,http://purl.obolibrary.org/obo/GO_0001836,release of cytochrome c from mitochondria +10.0827204,GO:0005680,http://purl.obolibrary.org/obo/GO_0005680,anaphase-promoting complex +10.0827204,GO:0015740,http://purl.obolibrary.org/obo/GO_0015740,C4-dicarboxylate transport +10.0827204,MONDO:0017643,http://purl.obolibrary.org/obo/MONDO_0017643,frontotemporal neurodegeneration with movement disorder +10.0827204,PR:000004201,http://purl.obolibrary.org/obo/PR_000004201,ADP-ribosylation factor 1 +10.0827204,PR:000005920,http://purl.obolibrary.org/obo/PR_000005920,lambda-crystallin +10.0827204,PR:000009921,http://purl.obolibrary.org/obo/PR_000009921,low-density lipoprotein receptor-related protein 2 +10.0827204,PR:000014911,http://purl.obolibrary.org/obo/PR_000014911,Src-like-adapter +10.0827204,PR:000034089,http://purl.obolibrary.org/obo/PR_000034089,none +10.0837572,GO:0019768,http://purl.obolibrary.org/obo/GO_0019768,high-affinity IgE receptor activity +10.0837572,MONDO:0000544,http://purl.obolibrary.org/obo/MONDO_0000544,mucosal melanoma +10.0837572,PR:000001944,http://purl.obolibrary.org/obo/PR_000001944,transcription factor PU.1 +10.0837572,SO:0001035,http://purl.obolibrary.org/obo/SO_0001035,piRNA +10.0847951,DRUGBANK:DB00866,http://purl.obolibrary.org/obo/DRUGBANK_DB00866,none +10.0847951,DRUGBANK:DB10644,http://purl.obolibrary.org/obo/DRUGBANK_DB10644,none +10.0847951,GO:0044798,http://purl.obolibrary.org/obo/GO_0044798,none +10.0847951,GO:0070669,http://purl.obolibrary.org/obo/GO_0070669,response to interleukin-2 +10.0847951,MONDO:0001561,http://purl.obolibrary.org/obo/MONDO_0001561,pyloric stenosis +10.085834,CHEBI:48878,http://purl.obolibrary.org/obo/CHEBI_48878,nicotinic antagonist +10.085834,DRUGBANK:DB00862,http://purl.obolibrary.org/obo/DRUGBANK_DB00862,none +10.085834,DRUGBANK:DB01580,http://purl.obolibrary.org/obo/DRUGBANK_DB01580,none +10.085834,GO:0010761,http://purl.obolibrary.org/obo/GO_0010761,fibroblast migration +10.085834,GO:0030250,http://purl.obolibrary.org/obo/GO_0030250,guanylate cyclase activator activity +10.085834,MONDO:0001493,http://purl.obolibrary.org/obo/MONDO_0001493,chronic pulmonary heart disease +10.085834,MONDO:0004947,http://purl.obolibrary.org/obo/MONDO_0004947,B-cell acute lymphoblastic leukemia +10.085834,PR:000014344,http://purl.obolibrary.org/obo/PR_000014344,retrotransposon-like protein 1 +10.085834,SO:0001012,http://purl.obolibrary.org/obo/SO_0001012,DNAzyme +10.0868741,CHEBI:33561,http://purl.obolibrary.org/obo/CHEBI_33561,d-block element atom +10.0868741,DRUGBANK:DB01020,http://purl.obolibrary.org/obo/DRUGBANK_DB01020,none +10.0868741,DRUGBANK:DB01614,http://purl.obolibrary.org/obo/DRUGBANK_DB01614,none +10.0868741,DRUGBANK:DB01692,http://purl.obolibrary.org/obo/DRUGBANK_DB01692,none +10.0868741,DRUGBANK:DB12156,http://purl.obolibrary.org/obo/DRUGBANK_DB12156,none +10.0868741,GO:0009734,http://purl.obolibrary.org/obo/GO_0009734,auxin-activated signaling pathway +10.0868741,GO:0070915,http://purl.obolibrary.org/obo/GO_0070915,lysophosphatidic acid receptor activity +10.0868741,MONDO:0017152,http://purl.obolibrary.org/obo/MONDO_0017152,pulmonary arterial hypertension associated with congenital heart disease +10.0868741,MONDO:0020060,http://purl.obolibrary.org/obo/MONDO_0020060,gonosome structural anomaly +10.0868741,MONDO:0020062,http://purl.obolibrary.org/obo/MONDO_0020062,chromosome X structural anomaly +10.0868741,PR:000013514,http://purl.obolibrary.org/obo/PR_000013514,apoptosis-associated speck-like protein containing a CARD +10.0879152,CHEBI:68494,http://purl.obolibrary.org/obo/CHEBI_68494,apoptosis inhibitor +10.0879152,DRUGBANK:DB01426,http://purl.obolibrary.org/obo/DRUGBANK_DB01426,none +10.0879152,GO:0007346,http://purl.obolibrary.org/obo/GO_0007346,regulation of mitotic cell cycle +10.0879152,GO:0042599,http://purl.obolibrary.org/obo/GO_0042599,lamellar body +10.0879152,MONDO:0020130,http://purl.obolibrary.org/obo/MONDO_0020130,malformation of the cerebellar vermis +10.0879152,PR:000001445,http://purl.obolibrary.org/obo/PR_000001445,discoidin domain-containing receptor 1 +10.0879152,PR:000014165,http://purl.obolibrary.org/obo/PR_000014165,proto-oncogene tyrosine-protein kinase ROS +10.0889574,CHEBI:71031,http://purl.obolibrary.org/obo/CHEBI_71031,orphan drug +10.0889574,CL:0000609,http://purl.obolibrary.org/obo/CL_0000609,vestibular hair cell +10.0889574,DRUGBANK:DB09070,http://purl.obolibrary.org/obo/DRUGBANK_DB09070,none +10.0889574,GO:0009692,http://purl.obolibrary.org/obo/GO_0009692,ethylene metabolic process +10.0889574,MONDO:0019023,http://purl.obolibrary.org/obo/MONDO_0019023,cutaneous mastocytosis +10.0889574,NCBITaxon:35324,http://purl.obolibrary.org/obo/NCBITaxon_35324,unclassified Orthomyxoviridae +10.0889574,PR:000007599,http://purl.obolibrary.org/obo/PR_000007599,Fos-related antigen 1 +10.0889574,PR:000007677,http://purl.obolibrary.org/obo/PR_000007677,fascin +10.0889574,PR:000009929,http://purl.obolibrary.org/obo/PR_000009929,alpha-2-macroglobulin receptor-associated protein +10.0900007,DRUGBANK:DB02633,http://purl.obolibrary.org/obo/DRUGBANK_DB02633,none +10.0900007,PR:000014577,http://purl.obolibrary.org/obo/PR_000014577,SEC14-like protein 2 +10.0900007,UBERON:0001823,http://purl.obolibrary.org/obo/UBERON_0001823,nasal cartilage +10.0910451,CL:1001319,http://purl.obolibrary.org/obo/CL_1001319,bladder cell +10.0910451,DRUGBANK:DB08895,http://purl.obolibrary.org/obo/DRUGBANK_DB08895,none +10.0910451,GO:0001739,http://purl.obolibrary.org/obo/GO_0001739,sex chromatin +10.0910451,GO:0072542,http://purl.obolibrary.org/obo/GO_0072542,protein phosphatase activator activity +10.0920906,CHEBI:51373,http://purl.obolibrary.org/obo/CHEBI_51373,GABA agonist +10.0920906,DRUGBANK:DB00200,http://purl.obolibrary.org/obo/DRUGBANK_DB00200,none +10.0920906,DRUGBANK:DB11191,http://purl.obolibrary.org/obo/DRUGBANK_DB11191,none +10.0920906,GO:0004370,http://purl.obolibrary.org/obo/GO_0004370,glycerol kinase activity +10.0920906,GO:0014909,http://purl.obolibrary.org/obo/GO_0014909,smooth muscle cell migration +10.0920906,MONDO:0009366,http://purl.obolibrary.org/obo/MONDO_0009366,normal pressure hydrocephalus +10.0920906,MONDO:0016684,http://purl.obolibrary.org/obo/MONDO_0016684,anaplastic astrocytoma +10.0920906,PR:000010686,http://purl.obolibrary.org/obo/PR_000010686,homeobox protein MSX-1 +10.0931371,DRUGBANK:DB01595,http://purl.obolibrary.org/obo/DRUGBANK_DB01595,none +10.0931371,GO:0010039,http://purl.obolibrary.org/obo/GO_0010039,response to iron ion +10.0931371,HP:0007957,http://purl.obolibrary.org/obo/HP_0007957,Corneal opacity +10.0931371,MONDO:0015219,http://purl.obolibrary.org/obo/MONDO_0015219,non-syndromic central nervous system malformation +10.0931371,NCBITaxon:40141,http://purl.obolibrary.org/obo/NCBITaxon_40141,Sigmodontinae +10.0941848,DRUGBANK:DB06206,http://purl.obolibrary.org/obo/DRUGBANK_DB06206,none +10.0941848,DRUGBANK:DB12610,http://purl.obolibrary.org/obo/DRUGBANK_DB12610,none +10.0941848,DRUGBANK:DB14711,http://purl.obolibrary.org/obo/DRUGBANK_DB14711,none +10.0941848,DRUGBANK:DB15586,http://purl.obolibrary.org/obo/DRUGBANK_DB15586,none +10.0941848,GO:0004064,http://purl.obolibrary.org/obo/GO_0004064,arylesterase activity +10.0941848,GO:0004113,http://purl.obolibrary.org/obo/GO_0004113,"2',3'-cyclic-nucleotide 3'-phosphodiesterase activity" +10.0941848,MONDO:0000703,http://purl.obolibrary.org/obo/MONDO_0000703,collagenous colitis +10.0941848,MONDO:0003606,http://purl.obolibrary.org/obo/MONDO_0003606,adrenal medulla cancer +10.0941848,MONDO:0043251,http://purl.obolibrary.org/obo/MONDO_0043251,odontoma +10.0941848,MONDO:0044907,http://purl.obolibrary.org/obo/MONDO_0044907,metastatic squamous cell carcinoma +10.0941848,PR:000009459,http://purl.obolibrary.org/obo/PR_000009459,"keratin, type I cytoskeletal 19" +10.0941848,PR:000010094,http://purl.obolibrary.org/obo/PR_000010094,none +10.0952336,DRUGBANK:DB01117,http://purl.obolibrary.org/obo/DRUGBANK_DB01117,none +10.0952336,DRUGBANK:DB10653,http://purl.obolibrary.org/obo/DRUGBANK_DB10653,none +10.0952336,PR:Q43729,http://purl.obolibrary.org/obo/PR_Q43729,none +10.0952336,UBERON:0009660,http://purl.obolibrary.org/obo/UBERON_0009660,none +10.0962834,PR:000001782,http://purl.obolibrary.org/obo/PR_000001782,interleukin-1 receptor-associated kinase 1 +10.0962834,PR:000002994,http://purl.obolibrary.org/obo/PR_000002994,natural resistance-associated macrophage protein 1 +10.0962834,PR:000006478,http://purl.obolibrary.org/obo/PR_000006478,endoribonuclease Dicer +10.0962834,PR:000008418,http://purl.obolibrary.org/obo/PR_000008418,histone H2AX +10.0962834,PR:000009667,http://purl.obolibrary.org/obo/PR_000009667,LARGE xylosyl- and glucuronyltransferase 1 +10.0962834,PR:000011638,http://purl.obolibrary.org/obo/PR_000011638,olfactory marker protein +10.0973344,DRUGBANK:DB10502,http://purl.obolibrary.org/obo/DRUGBANK_DB10502,none +10.0973344,DRUGBANK:DB10612,http://purl.obolibrary.org/obo/DRUGBANK_DB10612,none +10.0973344,DRUGBANK:DB13009,http://purl.obolibrary.org/obo/DRUGBANK_DB13009,none +10.0973344,PR:000004170,http://purl.obolibrary.org/obo/PR_000004170,DCC-interacting protein 13-alpha +10.0973344,PR:000011377,http://purl.obolibrary.org/obo/PR_000011377,atrial natriuretic peptide receptor 1 +10.0973344,PR:000012869,http://purl.obolibrary.org/obo/PR_000012869,perilipin-1 +10.0973344,PR:000016369,http://purl.obolibrary.org/obo/PR_000016369,transketolase +10.0983865,DRUGBANK:DB03484,http://purl.obolibrary.org/obo/DRUGBANK_DB03484,none +10.0983865,DRUGBANK:DB10647,http://purl.obolibrary.org/obo/DRUGBANK_DB10647,none +10.0983865,GO:0035239,http://purl.obolibrary.org/obo/GO_0035239,tube morphogenesis +10.0983865,MONDO:0007012,http://purl.obolibrary.org/obo/MONDO_0007012,variant Creutzfeldt-Jakob disease +10.0983865,PR:000003854,http://purl.obolibrary.org/obo/PR_000003854,adenosylhomocysteinase +10.0983865,PR:000008483,http://purl.obolibrary.org/obo/PR_000008483,histone deacetylase 4 +10.0983865,PR:000008743,http://purl.obolibrary.org/obo/PR_000008743,hemopexin +10.0994397,CL:1000600,http://purl.obolibrary.org/obo/CL_1000600,lower urinary tract cell +10.0994397,PR:000012086,http://purl.obolibrary.org/obo/PR_000012086,homeobox protein OTX2 +10.0994397,PR:000017403,http://purl.obolibrary.org/obo/PR_000017403,Wee1-like protein kinase +10.100494,MONDO:0021331,http://purl.obolibrary.org/obo/MONDO_0021331,carcinoma of parotid gland +10.100494,MONDO:0043455,http://purl.obolibrary.org/obo/MONDO_0043455,humoral hypercalcemia of malignancy +10.100494,PR:000006067,http://purl.obolibrary.org/obo/PR_000006067,C-X-C motif chemokine 13 +10.1015494,GO:0090575,http://purl.obolibrary.org/obo/GO_0090575,RNA polymerase II transcription regulator complex +10.1015494,MONDO:0000503,http://purl.obolibrary.org/obo/MONDO_0000503,lung adenocarcinoma in situ +10.1026059,DRUGBANK:DB09069,http://purl.obolibrary.org/obo/DRUGBANK_DB09069,none +10.1026059,GO:0031929,http://purl.obolibrary.org/obo/GO_0031929,TOR signaling +10.1026059,MONDO:0005871,http://purl.obolibrary.org/obo/MONDO_0005871,Nematoda infectious disease +10.1026059,MONDO:0006354,http://purl.obolibrary.org/obo/MONDO_0006354,parathyroid hyperplasia +10.1026059,PR:000003964,http://purl.obolibrary.org/obo/PR_000003964,intestinal alkaline phosphatase +10.1026059,PR:000007122,http://purl.obolibrary.org/obo/PR_000007122,ephrin type-A receptor 2 +10.1026059,PR:000013237,http://purl.obolibrary.org/obo/PR_000013237,serine/threonine-protein kinase D2 +10.1026059,SO:0001998,http://purl.obolibrary.org/obo/SO_0001998,sgRNA +10.1036635,DRUGBANK:DB00384,http://purl.obolibrary.org/obo/DRUGBANK_DB00384,none +10.1036635,DRUGBANK:DB14505,http://purl.obolibrary.org/obo/DRUGBANK_DB14505,none +10.1036635,PR:000012313,http://purl.obolibrary.org/obo/PR_000012313,PRKC apoptosis WT1 regulator protein +10.1036635,PR:P17205,http://purl.obolibrary.org/obo/PR_P17205,none +10.1047223,DRUGBANK:DB04835,http://purl.obolibrary.org/obo/DRUGBANK_DB04835,none +10.1047223,DRUGBANK:DB10650,http://purl.obolibrary.org/obo/DRUGBANK_DB10650,none +10.1047223,GO:0006941,http://purl.obolibrary.org/obo/GO_0006941,striated muscle contraction +10.1047223,GO:0043450,http://purl.obolibrary.org/obo/GO_0043450,alkene biosynthetic process +10.1047223,MONDO:0003342,http://purl.obolibrary.org/obo/MONDO_0003342,benign perivascular tumor +10.1047223,MONDO:0004990,http://purl.obolibrary.org/obo/MONDO_0004990,breast tumor luminal A or B +10.1047223,PR:000001664,http://purl.obolibrary.org/obo/PR_000001664,proteinase-activated receptor 4 +10.1047223,PR:000009951,http://purl.obolibrary.org/obo/PR_000009951,limbic system-associated membrane protein +10.1047223,PR:Q9FX85,http://purl.obolibrary.org/obo/PR_Q9FX85,none +10.1047223,UBERON:0001605,http://purl.obolibrary.org/obo/UBERON_0001605,ciliary muscle +10.1047223,UBERON:0005856,http://purl.obolibrary.org/obo/UBERON_0005856,developing mesenchymal condensation +10.1057822,DRUGBANK:DB01249,http://purl.obolibrary.org/obo/DRUGBANK_DB01249,none +10.1057822,DRUGBANK:DB14482,http://purl.obolibrary.org/obo/DRUGBANK_DB14482,none +10.1057822,MONDO:0003413,http://purl.obolibrary.org/obo/MONDO_0003413,hair follicle neoplasm +10.1057822,PR:000007480,http://purl.obolibrary.org/obo/PR_000007480,fibroblast growth factor 10 +10.1057822,PR:000013219,http://purl.obolibrary.org/obo/PR_000013219,5'-AMP-activated protein kinase catalytic subunit alpha-2 +10.1057822,UBERON:0001331,http://purl.obolibrary.org/obo/UBERON_0001331,skin of penis +10.1068432,PR:000029242,http://purl.obolibrary.org/obo/PR_000029242,none +10.1079053,GO:0031969,http://purl.obolibrary.org/obo/GO_0031969,chloroplast membrane +10.1079053,MONDO:0003572,http://purl.obolibrary.org/obo/MONDO_0003572,nasopharyngeal type undifferentiated carcinoma +10.1079053,MONDO:0015827,http://purl.obolibrary.org/obo/MONDO_0015827,distal renal tubular acidosis +10.1079053,PR:000003901,http://purl.obolibrary.org/obo/PR_000003901,aldo-keto reductase family 1 member B1 +10.1079053,PR:000005112,http://purl.obolibrary.org/obo/PR_000005112,C-C motif chemokine 4-like +10.1079053,PR:000014812,http://purl.obolibrary.org/obo/PR_000014812,SH2 domain-containing protein 1A +10.1079053,PR:000015063,http://purl.obolibrary.org/obo/PR_000015063,"solute carrier family 2, facilitated glucose transporter member 14" +10.1079053,PR:000027717,http://purl.obolibrary.org/obo/PR_000027717,"ribonucleoside-diphosphate reductase class I, small subunit" +10.1079053,PR:000030553,http://purl.obolibrary.org/obo/PR_000030553,WD repeat-containing protein 46 +10.1089686,GO:0015280,http://purl.obolibrary.org/obo/GO_0015280,ligand-gated sodium channel activity +10.1089686,GO:0018205,http://purl.obolibrary.org/obo/GO_0018205,peptidyl-lysine modification +10.1089686,MONDO:0015150,http://purl.obolibrary.org/obo/MONDO_0015150,complex hereditary spastic paraplegia +10.1089686,MONDO:0019136,http://purl.obolibrary.org/obo/MONDO_0019136,Zygomycosis +10.1089686,MONDO:0019805,http://purl.obolibrary.org/obo/MONDO_0019805,twin to twin transfusion syndrome +10.1089686,PR:000013833,http://purl.obolibrary.org/obo/PR_000013833,regulator of chromosome condensation +10.110033,GO:0015800,http://purl.obolibrary.org/obo/GO_0015800,acidic amino acid transport +10.110033,MONDO:0015926,http://purl.obolibrary.org/obo/MONDO_0015926,pneumoconiosis +10.110033,PR:000003058,http://purl.obolibrary.org/obo/PR_000003058,protein kinase C alpha type +10.110033,PR:000014707,http://purl.obolibrary.org/obo/PR_000014707,plasma protease C1 inhibitor +10.110033,UBERON:0001355,http://purl.obolibrary.org/obo/UBERON_0001355,deep femoral artery +10.110033,UBERON:0002688,http://purl.obolibrary.org/obo/UBERON_0002688,supramarginal gyrus +10.110033,UBERON:0004479,http://purl.obolibrary.org/obo/UBERON_0004479,musculature of trunk +10.110033,UBERON:0011585,http://purl.obolibrary.org/obo/UBERON_0011585,cell condensation +10.1110985,GO:0006560,http://purl.obolibrary.org/obo/GO_0006560,proline metabolic process +10.1110985,GO:0044736,http://purl.obolibrary.org/obo/GO_0044736,acid-sensing ion channel activity +10.1110985,MONDO:0001724,http://purl.obolibrary.org/obo/MONDO_0001724,supraglottis cancer +10.1121652,DRUGBANK:DB10618,http://purl.obolibrary.org/obo/DRUGBANK_DB10618,none +10.1121652,DRUGBANK:DB10638,http://purl.obolibrary.org/obo/DRUGBANK_DB10638,none +10.1121652,DRUGBANK:DB14832,http://purl.obolibrary.org/obo/DRUGBANK_DB14832,none +10.1121652,MONDO:0005286,http://purl.obolibrary.org/obo/MONDO_0005286,palatal neoplasm +10.1121652,PR:000049998,http://purl.obolibrary.org/obo/PR_000049998,lysophospholipid (LPA) receptor +10.113233,DRUGBANK:DB00867,http://purl.obolibrary.org/obo/DRUGBANK_DB00867,none +10.113233,DRUGBANK:DB06727,http://purl.obolibrary.org/obo/DRUGBANK_DB06727,none +10.113233,DRUGBANK:DB12243,http://purl.obolibrary.org/obo/DRUGBANK_DB12243,none +10.113233,GO:0036440,http://purl.obolibrary.org/obo/GO_0036440,citrate synthase activity +10.113233,NCBITaxon:72025,http://purl.obolibrary.org/obo/NCBITaxon_72025,none +10.113233,PR:000002092,http://purl.obolibrary.org/obo/PR_000002092,signal transducer and activator of transcription 5b +10.113233,PR:000016274,http://purl.obolibrary.org/obo/PR_000016274,trefoil factor 1 +10.113233,UBERON:0000127,http://purl.obolibrary.org/obo/UBERON_0000127,facial nucleus +10.113233,UBERON:0014914,http://purl.obolibrary.org/obo/UBERON_0014914,haemolymphatic fluid-testis barrier +10.1143019,DRUGBANK:DB06674,http://purl.obolibrary.org/obo/DRUGBANK_DB06674,none +10.1143019,NCBITaxon:3803,http://purl.obolibrary.org/obo/NCBITaxon_3803,none +10.1143019,PR:000017048,http://purl.obolibrary.org/obo/PR_000017048,UDP-glucuronosyltransferase 1A1 +10.115372,DRUGBANK:DB08954,http://purl.obolibrary.org/obo/DRUGBANK_DB08954,none +10.115372,MONDO:0004694,http://purl.obolibrary.org/obo/MONDO_0004694,hepatopulmonary syndrome +10.115372,PR:000000015,http://purl.obolibrary.org/obo/PR_000000015,follistatin +10.115372,PR:000004076,http://purl.obolibrary.org/obo/PR_000004076,annexin A3 +10.115372,UBERON:0000446,http://purl.obolibrary.org/obo/UBERON_0000446,septum of telencephalon +10.1164433,MONDO:0015828,http://purl.obolibrary.org/obo/MONDO_0015828,uterovaginal malformation +10.1164433,NCBITaxon:368797,http://purl.obolibrary.org/obo/NCBITaxon_368797,none +10.1164433,PR:000005938,http://purl.obolibrary.org/obo/PR_000005938,tyrosine-protein kinase CSK +10.1164433,PR:000007309,http://purl.obolibrary.org/obo/PR_000007309,"fatty acid-binding protein, liver" +10.1175157,DRUGBANK:DB09102,http://purl.obolibrary.org/obo/DRUGBANK_DB09102,none +10.1175157,GO:0004167,http://purl.obolibrary.org/obo/GO_0004167,dopachrome isomerase activity +10.1175157,GO:0010996,http://purl.obolibrary.org/obo/GO_0010996,response to auditory stimulus +10.1175157,GO:0030851,http://purl.obolibrary.org/obo/GO_0030851,granulocyte differentiation +10.1175157,GO:0051173,http://purl.obolibrary.org/obo/GO_0051173,positive regulation of nitrogen compound metabolic process +10.1175157,MONDO:0002971,http://purl.obolibrary.org/obo/MONDO_0002971,amelanotic melanoma +10.1175157,PR:000014708,http://purl.obolibrary.org/obo/PR_000014708,serpin H1 +10.1175157,PR:000014744,http://purl.obolibrary.org/obo/PR_000014744,secreted frizzled-related protein 1 +10.1175157,UBERON:0002402,http://purl.obolibrary.org/obo/UBERON_0002402,pleural cavity +10.1185892,CHEBI:35366,http://purl.obolibrary.org/obo/CHEBI_35366,fatty acid +10.1185892,MONDO:0006543,http://purl.obolibrary.org/obo/MONDO_0006543,epidermolysis bullosa dystrophica +10.1185892,MONDO:0018875,http://purl.obolibrary.org/obo/MONDO_0018875,Li-Fraumeni syndrome +10.1185892,MONDO:0020068,http://purl.obolibrary.org/obo/MONDO_0020068,postinfectious encephalitis +10.1185892,UBERON:0001697,http://purl.obolibrary.org/obo/UBERON_0001697,orbit of skull +10.1196639,DRUGBANK:DB00948,http://purl.obolibrary.org/obo/DRUGBANK_DB00948,none +10.1196639,MONDO:0015497,http://purl.obolibrary.org/obo/MONDO_0015497,hypoglossia/aglossia +10.1196639,MONDO:0020273,http://purl.obolibrary.org/obo/MONDO_0020273,disease with potential neoplastic degeneration associated with ocular features +10.1196639,UBERON:0012467,http://purl.obolibrary.org/obo/UBERON_0012467,enclosed anatomical space +10.1196639,UBERON:0013067,http://purl.obolibrary.org/obo/UBERON_0013067,colorectal mucosa +10.1207397,CHEBI:65259,http://purl.obolibrary.org/obo/CHEBI_65259,GABA antagonist +10.1207397,GO:0000768,http://purl.obolibrary.org/obo/GO_0000768,syncytium formation by plasma membrane fusion +10.1207397,GO:0009639,http://purl.obolibrary.org/obo/GO_0009639,response to red or far red light +10.1207397,MONDO:0019336,http://purl.obolibrary.org/obo/MONDO_0019336,Gardner syndrome +10.1207397,MONDO:0019735,http://purl.obolibrary.org/obo/MONDO_0019735,polymyalgia rheumatica +10.1207397,NCBITaxon:260964,http://purl.obolibrary.org/obo/NCBITaxon_260964,Henipavirus +10.1207397,SO:0000947,http://purl.obolibrary.org/obo/SO_0000947,resolution_site +10.1218167,CHEBI:70727,http://purl.obolibrary.org/obo/CHEBI_70727,topoisomerase inhibitor +10.1218167,DRUGBANK:DB01010,http://purl.obolibrary.org/obo/DRUGBANK_DB01010,none +10.1218167,GO:0140253,http://purl.obolibrary.org/obo/GO_0140253,cell-cell fusion +10.1218167,MONDO:0015498,http://purl.obolibrary.org/obo/MONDO_0015498,oromandibular-limb anomalies syndrome +10.1218167,PR:000009989,http://purl.obolibrary.org/obo/PR_000009989,lymphocyte antigen 6E +10.1228949,CHEBI:87183,http://purl.obolibrary.org/obo/CHEBI_87183,STAT3 inhibitor +10.1228949,MONDO:0006270,http://purl.obolibrary.org/obo/MONDO_0006270,lobular breast carcinoma in situ +10.1228949,MONDO:0021333,http://purl.obolibrary.org/obo/MONDO_0021333,carcinoma of lip +10.1228949,PR:000003767,http://purl.obolibrary.org/obo/PR_000003767,alcohol dehydrogenase 1A +10.1228949,PR:000008886,http://purl.obolibrary.org/obo/PR_000008886,insulin-degrading enzyme +10.1228949,PR:000017032,http://purl.obolibrary.org/obo/PR_000017032,urocortin +10.1228949,UBERON:0001984,http://purl.obolibrary.org/obo/UBERON_0001984,crypt of Lieberkuhn of large intestine +10.1228949,UBERON:0004530,http://purl.obolibrary.org/obo/UBERON_0004530,bony projection +10.1228949,UBERON:0013485,http://purl.obolibrary.org/obo/UBERON_0013485,crypt of Lieberkuhn of colon +10.1239742,CHEBI:75596,http://purl.obolibrary.org/obo/CHEBI_75596,EC 5.* (isomerase) inhibitor +10.1239742,CHEBI:76697,http://purl.obolibrary.org/obo/CHEBI_76697,EC 5.99.* (other isomerases) inhibitor +10.1239742,CHEBI:76830,http://purl.obolibrary.org/obo/CHEBI_76830,EC 5.99.1.* (miscellaneous isomerase) inhibitor +10.1239742,DRUGBANK:DB05830,http://purl.obolibrary.org/obo/DRUGBANK_DB05830,none +10.1239742,NCBITaxon:10508,http://purl.obolibrary.org/obo/NCBITaxon_10508,Adenoviridae +10.1239742,PR:000005009,http://purl.obolibrary.org/obo/PR_000005009,calpain-1 catalytic subunit +10.1250547,HP:0002150,http://purl.obolibrary.org/obo/HP_0002150,Hypercalciuria +10.1250547,HP:0011280,http://purl.obolibrary.org/obo/HP_0011280,Abnormality of urine calcium concentration +10.1250547,HP:0012591,http://purl.obolibrary.org/obo/HP_0012591,Abnormal urinary electrolyte concentration +10.1250547,MONDO:0001953,http://purl.obolibrary.org/obo/MONDO_0001953,pyuria +10.1250547,MONDO:0009718,http://purl.obolibrary.org/obo/MONDO_0009718,myxedema +10.1250547,MONDO:0022096,http://purl.obolibrary.org/obo/MONDO_0022096,pyogenic granuloma +10.1261364,GO:0004972,http://purl.obolibrary.org/obo/GO_0004972,NMDA glutamate receptor activity +10.1261364,GO:0033273,http://purl.obolibrary.org/obo/GO_0033273,response to vitamin +10.1261364,GO:0035251,http://purl.obolibrary.org/obo/GO_0035251,UDP-glucosyltransferase activity +10.1261364,MONDO:0018319,http://purl.obolibrary.org/obo/MONDO_0018319,familial episodic pain syndrome +10.1261364,MONDO:0037735,http://purl.obolibrary.org/obo/MONDO_0037735,sebaceous gland cancer +10.1272192,GO:0046365,http://purl.obolibrary.org/obo/GO_0046365,monosaccharide catabolic process +10.1272192,MONDO:0005629,http://purl.obolibrary.org/obo/MONDO_0005629,Acanthamoeba keratitis +10.1272192,MONDO:0017884,http://purl.obolibrary.org/obo/MONDO_0017884,papillary renal cell carcinoma +10.1272192,MONDO:0018094,http://purl.obolibrary.org/obo/MONDO_0018094,Waardenburg syndrome +10.1272192,MONDO:0020162,http://purl.obolibrary.org/obo/MONDO_0020162,secondary ectropion +10.1272192,MONDO:0024315,http://purl.obolibrary.org/obo/MONDO_0024315,parasitic endophthalmitis +10.1272192,UBERON:0007221,http://purl.obolibrary.org/obo/UBERON_0007221,neonate stage +10.1283032,DRUGBANK:DB11485,http://purl.obolibrary.org/obo/DRUGBANK_DB11485,none +10.1283032,DRUGBANK:DB14180,http://purl.obolibrary.org/obo/DRUGBANK_DB14180,none +10.1283032,GO:0016713,http://purl.obolibrary.org/obo/GO_0016713,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen" +10.1283032,MONDO:0008938,http://purl.obolibrary.org/obo/MONDO_0008938,early-onset cerebellar ataxia with retained tendon reflexes +10.1283032,PR:000013818,http://purl.obolibrary.org/obo/PR_000013818,retinol-binding protein 1 +10.1283032,UBERON:0011132,http://purl.obolibrary.org/obo/UBERON_0011132,intercarpal joint +10.1293884,DRUGBANK:DB04267,http://purl.obolibrary.org/obo/DRUGBANK_DB04267,none +10.1293884,MONDO:0019186,http://purl.obolibrary.org/obo/MONDO_0019186,Q fever +10.1304748,GO:0019320,http://purl.obolibrary.org/obo/GO_0019320,hexose catabolic process +10.1304748,GO:0032275,http://purl.obolibrary.org/obo/GO_0032275,luteinizing hormone secretion +10.1304748,MONDO:0002989,http://purl.obolibrary.org/obo/MONDO_0002989,benign fibrous histiocytoma +10.1304748,MONDO:0024361,http://purl.obolibrary.org/obo/MONDO_0024361,circadian rhythm sleep disorder +10.1304748,PR:000006065,http://purl.obolibrary.org/obo/PR_000006065,C-X-C motif chemokine 11 +10.1304748,PR:000010083,http://purl.obolibrary.org/obo/PR_000010083,"membrane-associated guanylate kinase, WW and PDZ domain-containing protein 1" +10.1315623,DRUGBANK:DB04137,http://purl.obolibrary.org/obo/DRUGBANK_DB04137,none +10.1315623,DRUGBANK:DB10905,http://purl.obolibrary.org/obo/DRUGBANK_DB10905,none +10.1315623,GO:0004897,http://purl.obolibrary.org/obo/GO_0004897,ciliary neurotrophic factor receptor activity +10.1315623,PR:000012884,http://purl.obolibrary.org/obo/PR_000012884,phospholipid scramblase 1 +10.1315623,PR:O00909,http://purl.obolibrary.org/obo/PR_O00909,none +10.1315623,PR:Q10943,http://purl.obolibrary.org/obo/PR_Q10943,none +10.1326511,DRUGBANK:DB14936,http://purl.obolibrary.org/obo/DRUGBANK_DB14936,none +10.1326511,MONDO:0017311,http://purl.obolibrary.org/obo/MONDO_0017311,rare disease with thoracic aortic aneurysm and aortic dissection +10.1326511,PR:000001683,http://purl.obolibrary.org/obo/PR_000001683,vasopressin V2 receptor +10.133741,DRUGBANK:DB02175,http://purl.obolibrary.org/obo/DRUGBANK_DB02175,none +10.133741,DRUGBANK:DB03552,http://purl.obolibrary.org/obo/DRUGBANK_DB03552,none +10.133741,DRUGBANK:DB03659,http://purl.obolibrary.org/obo/DRUGBANK_DB03659,none +10.133741,GO:0006511,http://purl.obolibrary.org/obo/GO_0006511,ubiquitin-dependent protein catabolic process +10.133741,MONDO:0001560,http://purl.obolibrary.org/obo/MONDO_0001560,hypertrophic pyloric stenosis +10.133741,MONDO:0006087,http://purl.obolibrary.org/obo/MONDO_0006087,appendix adenocarcinoma +10.133741,PR:000005283,http://purl.obolibrary.org/obo/PR_000005283,cerebellar degeneration-related antigen 1 +10.133741,PR:000011366,http://purl.obolibrary.org/obo/PR_000011366,podocin +10.133741,UBERON:0003964,http://purl.obolibrary.org/obo/UBERON_0003964,prevertebral ganglion +10.1348321,DRUGBANK:DB02266,http://purl.obolibrary.org/obo/DRUGBANK_DB02266,none +10.1348321,GO:0006672,http://purl.obolibrary.org/obo/GO_0006672,ceramide metabolic process +10.1348321,GO:0051643,http://purl.obolibrary.org/obo/GO_0051643,endoplasmic reticulum localization +10.1348321,GO:1904316,http://purl.obolibrary.org/obo/GO_1904316,response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine +10.1348321,PR:000001845,http://purl.obolibrary.org/obo/PR_000001845,band 3-like protein +10.1348321,SO:0000296,http://purl.obolibrary.org/obo/SO_0000296,origin_of_replication +10.1348321,SO:0000390,http://purl.obolibrary.org/obo/SO_0000390,telomerase_RNA +10.1348321,SO:0000605,http://purl.obolibrary.org/obo/SO_0000605,intergenic_region +10.1348321,UBERON:0001334,http://purl.obolibrary.org/obo/UBERON_0001334,female urethra +10.1348321,UBERON:0001976,http://purl.obolibrary.org/obo/UBERON_0001976,epithelium of esophagus +10.1359244,CHEBI:26519,http://purl.obolibrary.org/obo/CHEBI_26519,radical +10.1359244,DRUGBANK:DB08834,http://purl.obolibrary.org/obo/DRUGBANK_DB08834,none +10.1359244,DRUGBANK:DB09543,http://purl.obolibrary.org/obo/DRUGBANK_DB09543,none +10.1359244,GO:0042303,http://purl.obolibrary.org/obo/GO_0042303,molting cycle +10.1359244,MONDO:0043101,http://purl.obolibrary.org/obo/MONDO_0043101,hypothalamic dysfunction +10.1359244,NCBITaxon:2682552,http://purl.obolibrary.org/obo/NCBITaxon_2682552,Leptocardii +10.1359244,NCBITaxon:2682553,http://purl.obolibrary.org/obo/NCBITaxon_2682553,Amphioxiformes +10.1359244,NCBITaxon:7735,http://purl.obolibrary.org/obo/NCBITaxon_7735,Cephalochordata +10.1359244,NCBITaxon:7736,http://purl.obolibrary.org/obo/NCBITaxon_7736,Branchiostomidae +10.1359244,NCBITaxon:7737,http://purl.obolibrary.org/obo/NCBITaxon_7737,Branchiostoma +10.1359244,NCBITaxon:7740,http://purl.obolibrary.org/obo/NCBITaxon_7740,none +10.1359244,PR:000005275,http://purl.obolibrary.org/obo/PR_000005275,cyclin-dependent kinase inhibitor 1C +10.1359244,PR:000015201,http://purl.obolibrary.org/obo/PR_000015201,large neutral amino acids transporter small subunit 1 +10.1359244,UBERON:0004533,http://purl.obolibrary.org/obo/UBERON_0004533,left testis +10.1370179,DRUGBANK:DB15139,http://purl.obolibrary.org/obo/DRUGBANK_DB15139,none +10.1370179,GO:0016833,http://purl.obolibrary.org/obo/GO_0016833,oxo-acid-lyase activity +10.1370179,GO:0019941,http://purl.obolibrary.org/obo/GO_0019941,modification-dependent protein catabolic process +10.1370179,GO:0043632,http://purl.obolibrary.org/obo/GO_0043632,modification-dependent macromolecule catabolic process +10.1370179,MONDO:0018097,http://purl.obolibrary.org/obo/MONDO_0018097,West syndrome +10.1370179,PR:000000167,http://purl.obolibrary.org/obo/PR_000000167,BMP6 +10.1381126,DRUGBANK:DB03839,http://purl.obolibrary.org/obo/DRUGBANK_DB03839,none +10.1381126,DRUGBANK:DB11315,http://purl.obolibrary.org/obo/DRUGBANK_DB11315,none +10.1381126,HP:0003073,http://purl.obolibrary.org/obo/HP_0003073,Hypoalbuminemia +10.1381126,HP:0010876,http://purl.obolibrary.org/obo/HP_0010876,Abnormal circulating protein concentration +10.1381126,HP:0012116,http://purl.obolibrary.org/obo/HP_0012116,Abnormal circulating albumin concentration +10.1381126,MONDO:0020233,http://purl.obolibrary.org/obo/MONDO_0020233,dentocutaneous disease with cataract +10.1381126,MONDO:0021003,http://purl.obolibrary.org/obo/MONDO_0021003,polydactyly +10.1381126,PR:000004573,http://purl.obolibrary.org/obo/PR_000004573,none +10.1381126,PR:000022803,http://purl.obolibrary.org/obo/PR_000022803,none +10.1392085,DRUGBANK:DB04861,http://purl.obolibrary.org/obo/DRUGBANK_DB04861,none +10.1392085,DRUGBANK:DB13218,http://purl.obolibrary.org/obo/DRUGBANK_DB13218,none +10.1392085,GO:0006007,http://purl.obolibrary.org/obo/GO_0006007,glucose catabolic process +10.1392085,GO:0052803,http://purl.obolibrary.org/obo/GO_0052803,imidazole-containing compound metabolic process +10.1392085,MONDO:0003110,http://purl.obolibrary.org/obo/MONDO_0003110,skin hemangioma +10.1392085,MONDO:0016486,http://purl.obolibrary.org/obo/MONDO_0016486,beta-thalassemia major +10.1392085,PR:000010159,http://purl.obolibrary.org/obo/PR_000010159,mitogen-activated protein kinase 7 +10.1392085,PR:000022893,http://purl.obolibrary.org/obo/PR_000022893,none +10.1392085,UBERON:0006719,http://purl.obolibrary.org/obo/UBERON_0006719,lateral pterygoid muscle +10.1403056,GO:0004629,http://purl.obolibrary.org/obo/GO_0004629,phospholipase C activity +10.1403056,HP:0003470,http://purl.obolibrary.org/obo/HP_0003470,Paralysis +10.1403056,MONDO:0002453,http://purl.obolibrary.org/obo/MONDO_0002453,retrocochlear disease +10.1403056,MONDO:0019594,http://purl.obolibrary.org/obo/MONDO_0019594,"46,XY disorder of sex development due to a testosterone synthesis defect" +10.1403056,MOP:0000590,http://purl.obolibrary.org/obo/MOP_0000590,none +10.1403056,UBERON:0001401,http://purl.obolibrary.org/obo/UBERON_0001401,longissimus thoracis muscle +10.1414039,DRUGBANK:DB01036,http://purl.obolibrary.org/obo/DRUGBANK_DB01036,none +10.1414039,GO:0005750,http://purl.obolibrary.org/obo/GO_0005750,mitochondrial respiratory chain complex III +10.1414039,MONDO:0001563,http://purl.obolibrary.org/obo/MONDO_0001563,vestibulocochlear nerve disease +10.1414039,PR:000010676,http://purl.obolibrary.org/obo/PR_000010676,mesothelin +10.1414039,PR:000013773,http://purl.obolibrary.org/obo/PR_000013773,retinoblastoma-associated protein +10.1414039,UBERON:0002375,http://purl.obolibrary.org/obo/UBERON_0002375,cricoid cartilage +10.1414039,UBERON:0003515,http://purl.obolibrary.org/obo/UBERON_0003515,forelimb blood vessel +10.1414039,UBERON:0007300,http://purl.obolibrary.org/obo/UBERON_0007300,pectoral appendage blood vessel +10.1425034,DRUGBANK:DB00014,http://purl.obolibrary.org/obo/DRUGBANK_DB00014,none +10.1425034,DRUGBANK:DB00063,http://purl.obolibrary.org/obo/DRUGBANK_DB00063,none +10.1425034,DRUGBANK:DB00690,http://purl.obolibrary.org/obo/DRUGBANK_DB00690,none +10.1425034,DRUGBANK:DB03847,http://purl.obolibrary.org/obo/DRUGBANK_DB03847,none +10.1425034,DRUGBANK:DB09038,http://purl.obolibrary.org/obo/DRUGBANK_DB09038,none +10.1425034,MONDO:0009256,http://purl.obolibrary.org/obo/MONDO_0009256,galactorrhea +10.1425034,NCBITaxon:10116,http://purl.obolibrary.org/obo/NCBITaxon_10116,Rattus norvegicus +10.1425034,UBERON:0001233,http://purl.obolibrary.org/obo/UBERON_0001233,right adrenal gland +10.1436041,DRUGBANK:DB00111,http://purl.obolibrary.org/obo/DRUGBANK_DB00111,none +10.1436041,DRUGBANK:DB08921,http://purl.obolibrary.org/obo/DRUGBANK_DB08921,none +10.1436041,MONDO:0044989,http://purl.obolibrary.org/obo/MONDO_0044989,foot disease +10.1436041,MONDO:0045014,http://purl.obolibrary.org/obo/MONDO_0045014,tetrahydrobiopterin metabolic process disease +10.1436041,PR:000002088,http://purl.obolibrary.org/obo/PR_000002088,signal transducer and activator of transcription 2 +10.1436041,PR:000050046,http://purl.obolibrary.org/obo/PR_000050046,NXF protein +10.144706,DRUGBANK:DB01198,http://purl.obolibrary.org/obo/DRUGBANK_DB01198,none +10.144706,DRUGBANK:DB06710,http://purl.obolibrary.org/obo/DRUGBANK_DB06710,none +10.144706,HP:0000491,http://purl.obolibrary.org/obo/HP_0000491,Keratitis +10.144706,PR:000014115,http://purl.obolibrary.org/obo/PR_000014115,E3 ubiquitin-protein ligase RING2 +10.144706,PR:Q12382,http://purl.obolibrary.org/obo/PR_Q12382,none +10.1458092,CL:0002194,http://purl.obolibrary.org/obo/CL_0002194,monopoietic cell +10.1458092,GO:0030282,http://purl.obolibrary.org/obo/GO_0030282,bone mineralization +10.1458092,PR:000003266,http://purl.obolibrary.org/obo/PR_000003266,collagen type II alpha chain +10.1458092,UBERON:0005363,http://purl.obolibrary.org/obo/UBERON_0005363,inferior vagus X ganglion +10.1469135,CHEBI:50792,http://purl.obolibrary.org/obo/CHEBI_50792,estrogen receptor antagonist +10.1469135,GO:0016128,http://purl.obolibrary.org/obo/GO_0016128,phytosteroid metabolic process +10.1469135,MONDO:0007108,http://purl.obolibrary.org/obo/MONDO_0007108,none +10.1469135,MONDO:0025371,http://purl.obolibrary.org/obo/MONDO_0025371,Parvoviridae infectious disease +10.1469135,PR:000002069,http://purl.obolibrary.org/obo/PR_000002069,nectin-2 +10.1469135,PR:000005232,http://purl.obolibrary.org/obo/PR_000005232,cadherin-13 +10.1469135,PR:000011305,http://purl.obolibrary.org/obo/PR_000011305,nucleotide-binding oligomerization domain-containing protein 1 +10.1469135,PR:000016052,http://purl.obolibrary.org/obo/PR_000016052,antigen peptide transporter 2 +10.1469135,PR:000017525,http://purl.obolibrary.org/obo/PR_000017525,Y-box-binding protein 1 +10.1469135,UBERON:0002465,http://purl.obolibrary.org/obo/UBERON_0002465,lymphoid system +10.1480191,CL:0000666,http://purl.obolibrary.org/obo/CL_0000666,fenestrated cell +10.1480191,DRUGBANK:DB01193,http://purl.obolibrary.org/obo/DRUGBANK_DB01193,none +10.1480191,DRUGBANK:DB09074,http://purl.obolibrary.org/obo/DRUGBANK_DB09074,none +10.1480191,DRUGBANK:DB10654,http://purl.obolibrary.org/obo/DRUGBANK_DB10654,none +10.1480191,MONDO:0005230,http://purl.obolibrary.org/obo/MONDO_0005230,cellulitis +10.1480191,PR:000003771,http://purl.obolibrary.org/obo/PR_000003771,alcohol dehydrogenase class-3 +10.1480191,PR:000007457,http://purl.obolibrary.org/obo/PR_000007457,flap endonuclease 1 +10.1480191,PR:000029672,http://purl.obolibrary.org/obo/PR_000029672,phosphate-regulating neutral endopeptidase PHEX +10.1480191,UBERON:0036253,http://purl.obolibrary.org/obo/UBERON_0036253,orifice of skull +10.1491259,GO:0010959,http://purl.obolibrary.org/obo/GO_0010959,regulation of metal ion transport +10.1491259,MONDO:0000451,http://purl.obolibrary.org/obo/MONDO_0000451,primary progressive multiple sclerosis +10.1491259,MONDO:0002102,http://purl.obolibrary.org/obo/MONDO_0002102,cheilitis +10.1491259,MONDO:0019262,http://purl.obolibrary.org/obo/MONDO_0019262,juvenile neuronal ceroid lipofuscinosis +10.1491259,PR:000004781,http://purl.obolibrary.org/obo/PR_000004781,BCL2/adenovirus E1B 19 kDa protein-interacting protein 3 +10.1491259,PR:000016456,http://purl.obolibrary.org/obo/PR_000016456,transmembrane protease serine 2 +10.1491259,PR:P92958,http://purl.obolibrary.org/obo/PR_P92958,none +10.1502339,DRUGBANK:DB00060,http://purl.obolibrary.org/obo/DRUGBANK_DB00060,none +10.1502339,DRUGBANK:DB11413,http://purl.obolibrary.org/obo/DRUGBANK_DB11413,none +10.1502339,MONDO:0024461,http://purl.obolibrary.org/obo/MONDO_0024461,angiomatosis +10.1502339,PR:000029590,http://purl.obolibrary.org/obo/PR_000029590,galectin-related protein +10.1502339,PR:000050332,http://purl.obolibrary.org/obo/PR_000050332,"L-lactate dehydrogenase, cytoplasmic" +10.1502339,PR:P08152,http://purl.obolibrary.org/obo/PR_P08152,none +10.1502339,PR:P51774,http://purl.obolibrary.org/obo/PR_P51774,none +10.1513432,DRUGBANK:DB01171,http://purl.obolibrary.org/obo/DRUGBANK_DB01171,none +10.1513432,DRUGBANK:DB04876,http://purl.obolibrary.org/obo/DRUGBANK_DB04876,none +10.1513432,GO:0032296,http://purl.obolibrary.org/obo/GO_0032296,double-stranded RNA-specific ribonuclease activity +10.1513432,GO:0042101,http://purl.obolibrary.org/obo/GO_0042101,T cell receptor complex +10.1513432,HP:0011495,http://purl.obolibrary.org/obo/HP_0011495,Abnormal corneal epithelium morphology +10.1513432,MONDO:0004922,http://purl.obolibrary.org/obo/MONDO_0004922,developmental coordination disorder +10.1513432,NCBITaxon:2732523,http://purl.obolibrary.org/obo/NCBITaxon_2732523,none +10.1513432,PR:000006007,http://purl.obolibrary.org/obo/PR_000006007,catenin alpha-2 +10.1513432,PR:000015620,http://purl.obolibrary.org/obo/PR_000015620,sarcalumenin +10.1513432,UBERON:0001602,http://purl.obolibrary.org/obo/UBERON_0001602,medial rectus extraocular muscle +10.1524537,GO:0016485,http://purl.obolibrary.org/obo/GO_0016485,protein processing +10.1524537,MONDO:0005919,http://purl.obolibrary.org/obo/MONDO_0005919,placental insufficiency +10.1524537,MONDO:0015928,http://purl.obolibrary.org/obo/MONDO_0015928,secondary interstitial lung disease in childhood and adulthood associated with a connective tissue disease +10.1524537,PR:000007602,http://purl.obolibrary.org/obo/PR_000007602,hepatocyte nuclear factor 3-alpha +10.1524537,PR:000016874,http://purl.obolibrary.org/obo/PR_000016874,non-receptor tyrosine-protein kinase TYK2 +10.1524537,UBERON:0010544,http://purl.obolibrary.org/obo/UBERON_0010544,metacarpus skeleton +10.1524537,UBERON:0010546,http://purl.obolibrary.org/obo/UBERON_0010546,metapodial skeleton +10.1535654,DRUGBANK:DB16084,http://purl.obolibrary.org/obo/DRUGBANK_DB16084,none +10.1535654,GO:0051783,http://purl.obolibrary.org/obo/GO_0051783,regulation of nuclear division +10.1535654,GO:0070977,http://purl.obolibrary.org/obo/GO_0070977,bone maturation +10.1535654,HP:0001596,http://purl.obolibrary.org/obo/HP_0001596,Alopecia +10.1535654,MONDO:0020052,http://purl.obolibrary.org/obo/MONDO_0020052,partial autosomal trisomy/tetrasomy +10.1535654,PR:000001423,http://purl.obolibrary.org/obo/PR_000001423,histamine H2 receptor +10.1546784,DRUGBANK:DB13155,http://purl.obolibrary.org/obo/DRUGBANK_DB13155,none +10.1546784,GO:0009693,http://purl.obolibrary.org/obo/GO_0009693,ethylene biosynthetic process +10.1546784,GO:0035094,http://purl.obolibrary.org/obo/GO_0035094,response to nicotine +10.1546784,MONDO:0006741,http://purl.obolibrary.org/obo/MONDO_0006741,encephalomalacia +10.1546784,PR:000007173,http://purl.obolibrary.org/obo/PR_000007173,transcriptional regulator ERG +10.1546784,UBERON:0002058,http://purl.obolibrary.org/obo/UBERON_0002058,main ciliary ganglion +10.1546784,UBERON:0035783,http://purl.obolibrary.org/obo/UBERON_0035783,ganglion of ciliary nerve +10.1557926,DRUGBANK:DB12947,http://purl.obolibrary.org/obo/DRUGBANK_DB12947,none +10.1557926,MONDO:0006727,http://purl.obolibrary.org/obo/MONDO_0006727,diastolic heart failure +10.1557926,MONDO:0016006,http://purl.obolibrary.org/obo/MONDO_0016006,Cockayne syndrome +10.1557926,MONDO:0020071,http://purl.obolibrary.org/obo/MONDO_0020071,infantile epilepsy syndrome +10.1557926,PR:000001422,http://purl.obolibrary.org/obo/PR_000001422,histamine H1 receptor +10.1569081,CHEBI:26912,http://purl.obolibrary.org/obo/CHEBI_26912,oxolanes +10.1569081,DRUGBANK:DB01380,http://purl.obolibrary.org/obo/DRUGBANK_DB01380,none +10.1569081,DRUGBANK:DB04817,http://purl.obolibrary.org/obo/DRUGBANK_DB04817,none +10.1569081,GO:0004137,http://purl.obolibrary.org/obo/GO_0004137,deoxycytidine kinase activity +10.1569081,MONDO:0005504,http://purl.obolibrary.org/obo/MONDO_0005504,diphtheria +10.1569081,MONDO:0007817,http://purl.obolibrary.org/obo/MONDO_0007817,"IgE responsiveness, atopic" +10.1569081,PR:000012633,http://purl.obolibrary.org/obo/PR_000012633,polyhomeotic-like protein 1 +10.1569081,PR:000022589,http://purl.obolibrary.org/obo/PR_000022589,none +10.1580248,CL:0002342,http://purl.obolibrary.org/obo/CL_0002342,circulating endothelial cell +10.1580248,DRUGBANK:DB04564,http://purl.obolibrary.org/obo/DRUGBANK_DB04564,none +10.1580248,MONDO:0004674,http://purl.obolibrary.org/obo/MONDO_0004674,chorioretinitis +10.1580248,MONDO:0007020,http://purl.obolibrary.org/obo/MONDO_0007020,Wernicke encephalopathy +10.1580248,MOP:0000370,http://purl.obolibrary.org/obo/MOP_0000370,none +10.1580248,PR:000001310,http://purl.obolibrary.org/obo/PR_000001310,CD83 molecule +10.1580248,PR:000007124,http://purl.obolibrary.org/obo/PR_000007124,ephrin type-A receptor 4 +10.1591427,DRUGBANK:DB01018,http://purl.obolibrary.org/obo/DRUGBANK_DB01018,none +10.1591427,DRUGBANK:DB06147,http://purl.obolibrary.org/obo/DRUGBANK_DB06147,none +10.1591427,GO:0016323,http://purl.obolibrary.org/obo/GO_0016323,basolateral plasma membrane +10.1591427,PR:000004185,http://purl.obolibrary.org/obo/PR_000004185,aquaporin-5 +10.1591427,PR:000005906,http://purl.obolibrary.org/obo/PR_000005906,cryptochrome-2 +10.1591427,PR:000007427,http://purl.obolibrary.org/obo/PR_000007427,F-box/WD repeat-containing protein 7 +10.1591427,PR:000015194,http://purl.obolibrary.org/obo/PR_000015194,high affinity cationic amino acid transporter 1 +10.1591427,PR:Q9S746,http://purl.obolibrary.org/obo/PR_Q9S746,none +10.1602619,CL:0002188,http://purl.obolibrary.org/obo/CL_0002188,glomerular endothelial cell +10.1602619,DRUGBANK:DB01483,http://purl.obolibrary.org/obo/DRUGBANK_DB01483,none +10.1602619,MONDO:0002501,http://purl.obolibrary.org/obo/MONDO_0002501,brain glioblastoma +10.1602619,MONDO:0006481,http://purl.obolibrary.org/obo/MONDO_0006481,ureter carcinoma +10.1602619,PR:000013220,http://purl.obolibrary.org/obo/PR_000013220,5'-AMP-activated protein kinase subunit beta-1 +10.1602619,UBERON:0016554,http://purl.obolibrary.org/obo/UBERON_0016554,white matter of midbrain +10.1613823,GO:0032279,http://purl.obolibrary.org/obo/GO_0032279,asymmetric synapse +10.1613823,MONDO:0024321,http://purl.obolibrary.org/obo/MONDO_0024321,disorder of GPI anchor biosynthesis +10.1613823,PR:000005176,http://purl.obolibrary.org/obo/PR_000005176,CD81 molecule +10.1613823,PR:000015781,http://purl.obolibrary.org/obo/PR_000015781,steryl-sulfatase +10.162504,GO:0000097,http://purl.obolibrary.org/obo/GO_0000097,sulfur amino acid biosynthetic process +10.162504,GO:0010498,http://purl.obolibrary.org/obo/GO_0010498,proteasomal protein catabolic process +10.162504,GO:0022839,http://purl.obolibrary.org/obo/GO_0022839,ion gated channel activity +10.162504,MONDO:0004685,http://purl.obolibrary.org/obo/MONDO_0004685,Waldeyer's ring cancer +10.162504,NCBITaxon:353769,http://purl.obolibrary.org/obo/NCBITaxon_353769,none +10.163627,DRUGBANK:DB01332,http://purl.obolibrary.org/obo/DRUGBANK_DB01332,none +10.163627,GO:0004525,http://purl.obolibrary.org/obo/GO_0004525,ribonuclease III activity +10.163627,GO:0006083,http://purl.obolibrary.org/obo/GO_0006083,acetate metabolic process +10.163627,GO:0044087,http://purl.obolibrary.org/obo/GO_0044087,regulation of cellular component biogenesis +10.163627,PR:000006008,http://purl.obolibrary.org/obo/PR_000006008,catenin alpha-3 +10.163627,PR:000007989,http://purl.obolibrary.org/obo/PR_000007989,ARF GTPase-activating protein GIT1 +10.163627,UBERON:0007195,http://purl.obolibrary.org/obo/UBERON_0007195,stroma of bone marrow +10.1647512,DRUGBANK:DB03041,http://purl.obolibrary.org/obo/DRUGBANK_DB03041,none +10.1647512,DRUGBANK:DB04348,http://purl.obolibrary.org/obo/DRUGBANK_DB04348,none +10.1647512,DRUGBANK:DB13520,http://purl.obolibrary.org/obo/DRUGBANK_DB13520,none +10.1647512,GO:0030061,http://purl.obolibrary.org/obo/GO_0030061,mitochondrial crista +10.1647512,MONDO:0030602,http://purl.obolibrary.org/obo/MONDO_0030602,Klebsiella pneumonia +10.1647512,MONDO:0100073,http://purl.obolibrary.org/obo/MONDO_0100073,methicillin-resistant staphylococcus aureus infectious disease +10.1647512,PR:000003680,http://purl.obolibrary.org/obo/PR_000003680,"actin, cytoplasmic 2" +10.1647512,PR:000006006,http://purl.obolibrary.org/obo/PR_000006006,catenin alpha-1 +10.1647512,PR:000013419,http://purl.obolibrary.org/obo/PR_000013419,prostaglandin-H2 D-isomerase +10.1658767,DRUGBANK:DB00844,http://purl.obolibrary.org/obo/DRUGBANK_DB00844,none +10.1658767,MONDO:0002217,http://purl.obolibrary.org/obo/MONDO_0002217,central nervous system sarcoma +10.1658767,MONDO:0007363,http://purl.obolibrary.org/obo/MONDO_0007363,congenital contractural arachnodactyly +10.1658767,MONDO:0015486,http://purl.obolibrary.org/obo/MONDO_0015486,keratoconus +10.1658767,PR:000003770,http://purl.obolibrary.org/obo/PR_000003770,all-trans-retinol dehydrogenase [NAD(+)] ADH4 +10.1658767,PR:000007311,http://purl.obolibrary.org/obo/PR_000007311,"fatty acid-binding protein, heart" +10.1658767,PR:000007558,http://purl.obolibrary.org/obo/PR_000007558,flotillin-1 +10.1670035,GO:0003988,http://purl.obolibrary.org/obo/GO_0003988,acetyl-CoA C-acyltransferase activity +10.1670035,MONDO:0005936,http://purl.obolibrary.org/obo/MONDO_0005936,recurrent pneumonia +10.1670035,PR:000004055,http://purl.obolibrary.org/obo/PR_000004055,anoctamin-1 +10.1670035,PR:000004528,http://purl.obolibrary.org/obo/PR_000004528,tyrosine-protein kinase receptor UFO +10.1670035,PR:000005679,http://purl.obolibrary.org/obo/PR_000005679,bifunctional coenzyme A synthase +10.1670035,PR:000044675,http://purl.obolibrary.org/obo/PR_000044675,calcium activated chloride channel protein +10.1670035,UBERON:0003847,http://purl.obolibrary.org/obo/UBERON_0003847,thyroid artery +10.1681315,DRUGBANK:DB00444,http://purl.obolibrary.org/obo/DRUGBANK_DB00444,none +10.1681315,DRUGBANK:DB00869,http://purl.obolibrary.org/obo/DRUGBANK_DB00869,none +10.1681315,DRUGBANK:DB01667,http://purl.obolibrary.org/obo/DRUGBANK_DB01667,none +10.1681315,DRUGBANK:DB10542,http://purl.obolibrary.org/obo/DRUGBANK_DB10542,none +10.1681315,MONDO:0019697,http://purl.obolibrary.org/obo/MONDO_0019697,mesomelic and rhizo-mesomelic dysplasia +10.1692608,DRUGBANK:DB12622,http://purl.obolibrary.org/obo/DRUGBANK_DB12622,none +10.1692608,GO:0016129,http://purl.obolibrary.org/obo/GO_0016129,phytosteroid biosynthetic process +10.1692608,GO:0045187,http://purl.obolibrary.org/obo/GO_0045187,"regulation of circadian sleep/wake cycle, sleep" +10.1692608,HP:0003560,http://purl.obolibrary.org/obo/HP_0003560,Muscular dystrophy +10.1692608,NCBITaxon:72274,http://purl.obolibrary.org/obo/NCBITaxon_72274,Pseudomonadales +10.1692608,PR:000017249,http://purl.obolibrary.org/obo/PR_000017249,vesicle-associated membrane protein 2 +10.1692608,PR:000050000,http://purl.obolibrary.org/obo/PR_000050000,melanin-concentrating hormone receptor +10.1692608,PR:Q9VFP2,http://purl.obolibrary.org/obo/PR_Q9VFP2,none +10.1692608,UBERON:0002279,http://purl.obolibrary.org/obo/UBERON_0002279,vestibular aqueduct +10.1703914,DRUGBANK:DB00527,http://purl.obolibrary.org/obo/DRUGBANK_DB00527,none +10.1703914,DRUGBANK:DB05134,http://purl.obolibrary.org/obo/DRUGBANK_DB05134,none +10.1703914,GO:0015269,http://purl.obolibrary.org/obo/GO_0015269,calcium-activated potassium channel activity +10.1703914,MONDO:0001256,http://purl.obolibrary.org/obo/MONDO_0001256,arteriovenous hemangioma/malformation +10.1703914,MONDO:0021337,http://purl.obolibrary.org/obo/MONDO_0021337,tonsil carcinoma +10.1703914,PR:000003499,http://purl.obolibrary.org/obo/PR_000003499,granzyme B +10.1703914,PR:000015189,http://purl.obolibrary.org/obo/PR_000015189,sodium-dependent serotonin transporter +10.1715233,MONDO:0019513,http://purl.obolibrary.org/obo/MONDO_0019513,esophageal malformation +10.1715233,PR:000015440,http://purl.obolibrary.org/obo/PR_000015440,transcription factor Sp2 +10.1726564,DRUGBANK:DB13174,http://purl.obolibrary.org/obo/DRUGBANK_DB13174,none +10.1726564,MONDO:0005676,http://purl.obolibrary.org/obo/MONDO_0005676,borna disease +10.1726564,PR:000001819,http://purl.obolibrary.org/obo/PR_000001819,MHC class I-related gene protein +10.1726564,PR:000012614,http://purl.obolibrary.org/obo/PR_000012614,phosphoglucomutase-1 +10.1726564,PR:000017273,http://purl.obolibrary.org/obo/PR_000017273,transitional endoplasmic reticulum ATPase +10.1726564,UBERON:0001152,http://purl.obolibrary.org/obo/UBERON_0001152,cystic duct +10.1726564,UBERON:0015129,http://purl.obolibrary.org/obo/UBERON_0015129,epicardial fat +10.1726564,UBERON:0035814,http://purl.obolibrary.org/obo/UBERON_0035814,pericardial fat +10.1726564,UBERON:0035818,http://purl.obolibrary.org/obo/UBERON_0035818,visceral fat +10.1737908,GO:0036452,http://purl.obolibrary.org/obo/GO_0036452,ESCRT complex +10.1737908,GO:0050796,http://purl.obolibrary.org/obo/GO_0050796,regulation of insulin secretion +10.1737908,MONDO:0001007,http://purl.obolibrary.org/obo/MONDO_0001007,chronic meningitis +10.1737908,PR:000001243,http://purl.obolibrary.org/obo/PR_000001243,melanopsin +10.1749266,GO:0042749,http://purl.obolibrary.org/obo/GO_0042749,regulation of circadian sleep/wake cycle +10.1749266,GO:0051644,http://purl.obolibrary.org/obo/GO_0051644,plastid localization +10.1749266,PR:000013158,http://purl.obolibrary.org/obo/PR_000013158,serine/threonine-protein phosphatase 6 catalytic subunit +10.1760636,DRUGBANK:DB05076,http://purl.obolibrary.org/obo/DRUGBANK_DB05076,none +10.1760636,DRUGBANK:DB10677,http://purl.obolibrary.org/obo/DRUGBANK_DB10677,none +10.1760636,GO:0019755,http://purl.obolibrary.org/obo/GO_0019755,one-carbon compound transport +10.1760636,PR:000001564,http://purl.obolibrary.org/obo/PR_000001564,histamine H3 receptor +10.1760636,PR:000029255,http://purl.obolibrary.org/obo/PR_000029255,DNA dC->dU-editing enzyme APOBEC-3G +10.1760636,SO:0002129,http://purl.obolibrary.org/obo/SO_0002129,mt_tRNA +10.1760636,UBERON:0002623,http://purl.obolibrary.org/obo/UBERON_0002623,cerebral peduncle +10.1772019,CL:1000490,http://purl.obolibrary.org/obo/CL_1000490,mesothelial cell of peritoneum +10.1772019,DRUGBANK:DB00231,http://purl.obolibrary.org/obo/DRUGBANK_DB00231,none +10.1772019,DRUGBANK:DB10651,http://purl.obolibrary.org/obo/DRUGBANK_DB10651,none +10.1772019,GO:0004967,http://purl.obolibrary.org/obo/GO_0004967,glucagon receptor activity +10.1772019,GO:0015871,http://purl.obolibrary.org/obo/GO_0015871,choline transport +10.1772019,GO:0017110,http://purl.obolibrary.org/obo/GO_0017110,nucleoside-diphosphatase activity +10.1772019,GO:0051146,http://purl.obolibrary.org/obo/GO_0051146,striated muscle cell differentiation +10.1772019,MOP:0002030,http://purl.obolibrary.org/obo/MOP_0002030,none +10.1772019,NCBITaxon:11866,http://purl.obolibrary.org/obo/NCBITaxon_11866,none +10.1772019,PR:000004142,http://purl.obolibrary.org/obo/PR_000004142,apolipoprotein A-II +10.1783415,CL:0000969,http://purl.obolibrary.org/obo/CL_0000969,regulatory B cell +10.1783415,DRUGBANK:DB04506,http://purl.obolibrary.org/obo/DRUGBANK_DB04506,none +10.1783415,PR:000008098,http://purl.obolibrary.org/obo/PR_000008098,receptor of activated protein C kinase 1 +10.1783415,PR:000014940,http://purl.obolibrary.org/obo/PR_000014940,solute carrier family 15 member 1 +10.1783415,PR:000033988,http://purl.obolibrary.org/obo/PR_000033988,none +10.1783415,PR:O64530,http://purl.obolibrary.org/obo/PR_O64530,none +10.1783415,SO:0005850,http://purl.obolibrary.org/obo/SO_0005850,primer_binding_site +10.1783415,SO:1000009,http://purl.obolibrary.org/obo/SO_1000009,transition +10.1783415,UBERON:0001926,http://purl.obolibrary.org/obo/UBERON_0001926,lateral geniculate body +10.1794824,CHEBI:63367,http://purl.obolibrary.org/obo/CHEBI_63367,monosaccharide derivative +10.1794824,GO:0005227,http://purl.obolibrary.org/obo/GO_0005227,calcium activated cation channel activity +10.1794824,MONDO:0002104,http://purl.obolibrary.org/obo/MONDO_0002104,conversion disorder +10.1794824,MONDO:0009499,http://purl.obolibrary.org/obo/MONDO_0009499,Krabbe disease +10.1794824,PR:000006550,http://purl.obolibrary.org/obo/PR_000006550,cyclin-D-binding Myb-like transcription factor 1 +10.1806246,PR:000006505,http://purl.obolibrary.org/obo/PR_000006505,Rho GTPase-activating protein 7 +10.1806246,UBERON:0000301,http://purl.obolibrary.org/obo/UBERON_0000301,amniotic cavity +10.1817681,DRUGBANK:DB00906,http://purl.obolibrary.org/obo/DRUGBANK_DB00906,none +10.1817681,DRUGBANK:DB02053,http://purl.obolibrary.org/obo/DRUGBANK_DB02053,none +10.1817681,MONDO:0003107,http://purl.obolibrary.org/obo/MONDO_0003107,infratentorial cancer +10.1817681,MONDO:0006853,http://purl.obolibrary.org/obo/MONDO_0006853,mesenchymal chondrosarcoma +10.1817681,MONDO:0016222,http://purl.obolibrary.org/obo/MONDO_0016222,spindle cell hemangioma +10.1817681,MONDO:0020659,http://purl.obolibrary.org/obo/MONDO_0020659,upper tract urothelial carcinoma +10.1817681,NCBITaxon:135621,http://purl.obolibrary.org/obo/NCBITaxon_135621,Pseudomonadaceae +10.1817681,NCBITaxon:286,http://purl.obolibrary.org/obo/NCBITaxon_286,Pseudomonas +10.1817681,UBERON:0011997,http://purl.obolibrary.org/obo/UBERON_0011997,coelom +10.1829129,GO:0004652,http://purl.obolibrary.org/obo/GO_0004652,polynucleotide adenylyltransferase activity +10.1829129,GO:0007625,http://purl.obolibrary.org/obo/GO_0007625,grooming behavior +10.1829129,MONDO:0005161,http://purl.obolibrary.org/obo/MONDO_0005161,human papilloma virus infection +10.1829129,PR:000004401,http://purl.obolibrary.org/obo/PR_000004401,cyclic AMP-dependent transcription factor ATF-5 +10.1829129,PR:000005552,http://purl.obolibrary.org/obo/PR_000005552,claudin-4 +10.184059,DRUGBANK:DB15735,http://purl.obolibrary.org/obo/DRUGBANK_DB15735,none +10.184059,GO:0004130,http://purl.obolibrary.org/obo/GO_0004130,cytochrome-c peroxidase activity +10.184059,GO:0009595,http://purl.obolibrary.org/obo/GO_0009595,detection of biotic stimulus +10.184059,MONDO:0002103,http://purl.obolibrary.org/obo/MONDO_0002103,factitious disorder +10.184059,MONDO:0002912,http://purl.obolibrary.org/obo/MONDO_0002912,brainstem cancer +10.184059,MONDO:0003422,http://purl.obolibrary.org/obo/MONDO_0003422,lung adenoma +10.184059,MONDO:0021067,http://purl.obolibrary.org/obo/MONDO_0021067,mediastinal germ cell tumor +10.184059,PR:000003015,http://purl.obolibrary.org/obo/PR_000003015,prostate-specific antigen +10.1852065,CHEBI:71554,http://purl.obolibrary.org/obo/CHEBI_71554,PPARgamma agonist +10.1852065,GO:0015291,http://purl.obolibrary.org/obo/GO_0015291,secondary active transmembrane transporter activity +10.1852065,GO:0051645,http://purl.obolibrary.org/obo/GO_0051645,Golgi localization +10.1852065,MONDO:0020732,http://purl.obolibrary.org/obo/MONDO_0020732,progeria +10.1852065,PR:000015207,http://purl.obolibrary.org/obo/PR_000015207,sodium/calcium exchanger 1 +10.1863553,CL:0000637,http://purl.obolibrary.org/obo/CL_0000637,chromophil cell of anterior pituitary gland +10.1863553,CL:2000004,http://purl.obolibrary.org/obo/CL_2000004,pituitary gland cell +10.1863553,DRUGBANK:DB16288,http://purl.obolibrary.org/obo/DRUGBANK_DB16288,none +10.1863553,GO:1901701,http://purl.obolibrary.org/obo/GO_1901701,cellular response to oxygen-containing compound +10.1863553,HP:0020219,http://purl.obolibrary.org/obo/HP_0020219,Motor seizure +10.1863553,PR:000003559,http://purl.obolibrary.org/obo/PR_000003559,ATP-binding cassette sub-family C member 3 +10.1863553,PR:000016236,http://purl.obolibrary.org/obo/PR_000016236,telomeric repeat-binding factor 2 +10.1875053,DRUGBANK:DB01427,http://purl.obolibrary.org/obo/DRUGBANK_DB01427,none +10.1875053,DRUGBANK:DB14234,http://purl.obolibrary.org/obo/DRUGBANK_DB14234,none +10.1875053,MONDO:0016776,http://purl.obolibrary.org/obo/MONDO_0016776,frontal fibrosing alopecia +10.1875053,PR:000023043,http://purl.obolibrary.org/obo/PR_000023043,none +10.1875053,PR:000029793,http://purl.obolibrary.org/obo/PR_000029793,nucleolysin TIA-1 isoform p40 +10.1875053,UBERON:0006671,http://purl.obolibrary.org/obo/UBERON_0006671,orbital fat pad +10.1886568,DRUGBANK:DB08930,http://purl.obolibrary.org/obo/DRUGBANK_DB08930,none +10.1886568,DRUGBANK:DB14704,http://purl.obolibrary.org/obo/DRUGBANK_DB14704,none +10.1886568,GO:0008907,http://purl.obolibrary.org/obo/GO_0008907,integrase activity +10.1886568,MONDO:0004675,http://purl.obolibrary.org/obo/MONDO_0004675,mitochondrial encephalomyopathy +10.1886568,MONDO:0015742,http://purl.obolibrary.org/obo/MONDO_0015742,periventricular leukomalacia +10.1886568,PR:000005064,http://purl.obolibrary.org/obo/PR_000005064,caveolin-2 +10.1886568,PR:000009017,http://purl.obolibrary.org/obo/PR_000009017,inositol monophosphatase 1 +10.1886568,PR:000010768,http://purl.obolibrary.org/obo/PR_000010768,mucin-4 +10.1886568,UBERON:0001326,http://purl.obolibrary.org/obo/UBERON_0001326,levator ani muscle +10.1886568,UBERON:0001493,http://purl.obolibrary.org/obo/UBERON_0001493,axillary nerve +10.1886568,UBERON:0007612,http://purl.obolibrary.org/obo/UBERON_0007612,extensor digitorum communis +10.1898095,CHEBI:47017,http://purl.obolibrary.org/obo/CHEBI_47017,tetrahydrofuranol +10.1898095,CL:0002323,http://purl.obolibrary.org/obo/CL_0002323,amniocyte +10.1898095,GO:0005828,http://purl.obolibrary.org/obo/GO_0005828,kinetochore microtubule +10.1898095,GO:0019236,http://purl.obolibrary.org/obo/GO_0019236,response to pheromone +10.1898095,MONDO:0005259,http://purl.obolibrary.org/obo/MONDO_0005259,Asperger syndrome +10.1898095,MONDO:0020203,http://purl.obolibrary.org/obo/MONDO_0020203,pigmented conjunctival lesion +10.1898095,UBERON:0003711,http://purl.obolibrary.org/obo/UBERON_0003711,brachiocephalic vein +10.1909636,DRUGBANK:DB01609,http://purl.obolibrary.org/obo/DRUGBANK_DB01609,none +10.1909636,GO:0016841,http://purl.obolibrary.org/obo/GO_0016841,ammonia-lyase activity +10.1909636,MONDO:0005321,http://purl.obolibrary.org/obo/MONDO_0005321,Fuchs' endothelial dystrophy +10.1909636,MONDO:0011391,http://purl.obolibrary.org/obo/MONDO_0011391,megalencephalic leukoencephalopathy with subcortical cysts +10.192119,DRUGBANK:DB02079,http://purl.obolibrary.org/obo/DRUGBANK_DB02079,none +10.192119,DRUGBANK:DB04090,http://purl.obolibrary.org/obo/DRUGBANK_DB04090,none +10.192119,DRUGBANK:DB12881,http://purl.obolibrary.org/obo/DRUGBANK_DB12881,none +10.192119,GO:0031209,http://purl.obolibrary.org/obo/GO_0031209,SCAR complex +10.192119,GO:0042633,http://purl.obolibrary.org/obo/GO_0042633,hair cycle +10.192119,MONDO:0000137,http://purl.obolibrary.org/obo/MONDO_0000137,"leukoencephalopathy, megalencephalic" +10.192119,MONDO:0005928,http://purl.obolibrary.org/obo/MONDO_0005928,post-thrombotic syndrome +10.192119,MONDO:0007416,http://purl.obolibrary.org/obo/MONDO_0007416,Balkan nephropathy +10.192119,PR:000013529,http://purl.obolibrary.org/obo/PR_000013529,none +10.192119,PR:P56544,http://purl.obolibrary.org/obo/PR_P56544,none +10.192119,PR:P93047,http://purl.obolibrary.org/obo/PR_P93047,none +10.1932757,MONDO:0003408,http://purl.obolibrary.org/obo/MONDO_0003408,ovarian primitive germ cell tumor +10.1932757,MONDO:0005313,http://purl.obolibrary.org/obo/MONDO_0005313,necrotizing enterocolitis +10.1932757,MONDO:0005755,http://purl.obolibrary.org/obo/MONDO_0005755,equine infectious anemia +10.1932757,PR:000000026,http://purl.obolibrary.org/obo/PR_000000026,sara-type zinc finger FYVE domain-containing protein +10.1932757,PR:000008770,http://purl.obolibrary.org/obo/PR_000008770,corticosteroid 11-beta-dehydrogenase isozyme 1 +10.1932757,PR:000027558,http://purl.obolibrary.org/obo/PR_000027558,none +10.1944338,DRUGBANK:DB08873,http://purl.obolibrary.org/obo/DRUGBANK_DB08873,none +10.1944338,DRUGBANK:DB14066,http://purl.obolibrary.org/obo/DRUGBANK_DB14066,none +10.1944338,GO:0004964,http://purl.obolibrary.org/obo/GO_0004964,luteinizing hormone receptor activity +10.1944338,MONDO:0003268,http://purl.obolibrary.org/obo/MONDO_0003268,mixed glioma +10.1944338,MONDO:0008753,http://purl.obolibrary.org/obo/MONDO_0008753,alkaptonuria +10.1944338,MONDO:0015294,http://purl.obolibrary.org/obo/MONDO_0015294,nephrogenic systemic fibrosis +10.1944338,PR:000010490,http://purl.obolibrary.org/obo/PR_000010490,neutrophil collagenase +10.1944338,PR:000013273,http://purl.obolibrary.org/obo/PR_000013273,prospero homeobox protein 1 +10.1944338,PR:Q0WML0,http://purl.obolibrary.org/obo/PR_Q0WML0,none +10.1944338,UBERON:0006349,http://purl.obolibrary.org/obo/UBERON_0006349,epigastric artery +10.1955932,DRUGBANK:DB00718,http://purl.obolibrary.org/obo/DRUGBANK_DB00718,none +10.1955932,DRUGBANK:DB00935,http://purl.obolibrary.org/obo/DRUGBANK_DB00935,none +10.1955932,DRUGBANK:DB10989,http://purl.obolibrary.org/obo/DRUGBANK_DB10989,none +10.1955932,DRUGBANK:DB11699,http://purl.obolibrary.org/obo/DRUGBANK_DB11699,none +10.1955932,GO:0015727,http://purl.obolibrary.org/obo/GO_0015727,lactate transport +10.1955932,GO:0098840,http://purl.obolibrary.org/obo/GO_0098840,protein transport along microtubule +10.1955932,GO:0140103,http://purl.obolibrary.org/obo/GO_0140103,"catalytic activity, acting on a glycoprotein" +10.1955932,MONDO:0006656,http://purl.obolibrary.org/obo/MONDO_0006656,aortitis +10.1955932,MONDO:0016663,http://purl.obolibrary.org/obo/MONDO_0016663,overlapping connective tissue disease +10.1955932,NCBITaxon:2560077,http://purl.obolibrary.org/obo/NCBITaxon_2560077,none +10.196754,DRUGBANK:DB13180,http://purl.obolibrary.org/obo/DRUGBANK_DB13180,none +10.196754,GO:0034698,http://purl.obolibrary.org/obo/GO_0034698,response to gonadotropin +10.196754,GO:0055102,http://purl.obolibrary.org/obo/GO_0055102,lipase inhibitor activity +10.196754,MONDO:0003130,http://purl.obolibrary.org/obo/MONDO_0003130,mesoblastic nephroma +10.196754,MONDO:0005896,http://purl.obolibrary.org/obo/MONDO_0005896,Paramyxoviridae infectious disease +10.196754,PR:000002986,http://purl.obolibrary.org/obo/PR_000002986,Ikaros-like zinc finger transcription factor +10.196754,PR:000003293,http://purl.obolibrary.org/obo/PR_000003293,NF-kappa-B inhibitor alpha +10.196754,PR:Q12245,http://purl.obolibrary.org/obo/PR_Q12245,none +10.1979161,DRUGBANK:DB04844,http://purl.obolibrary.org/obo/DRUGBANK_DB04844,none +10.1979161,GO:0016727,http://purl.obolibrary.org/obo/GO_0016727,"oxidoreductase activity, acting on CH or CH2 groups, oxygen as acceptor" +10.1979161,MONDO:0006226,http://purl.obolibrary.org/obo/MONDO_0006226,gastric mucosa-associated lymphoid tissue lymphoma +10.1979161,MONDO:0019103,http://purl.obolibrary.org/obo/MONDO_0019103,benign exophthalmos syndrome +10.1979161,PR:000003106,http://purl.obolibrary.org/obo/PR_000003106,map kinase p38 +10.1979161,PR:000006058,http://purl.obolibrary.org/obo/PR_000006058,protein CWC15 +10.1979161,PR:000007541,http://purl.obolibrary.org/obo/PR_000007541,peptidyl-prolyl cis-trans isomerase FKBP5 +10.1979161,PR:000010423,http://purl.obolibrary.org/obo/PR_000010423,microphthalmia-associated transcription factor +10.1979161,UBERON:0001635,http://purl.obolibrary.org/obo/UBERON_0001635,superior cerebellar artery +10.1979161,UBERON:0002812,http://purl.obolibrary.org/obo/UBERON_0002812,left cerebral hemisphere +10.1990795,CL:0000625,http://purl.obolibrary.org/obo/CL_0000625,"CD8-positive, alpha-beta T cell" +10.1990795,DRUGBANK:DB10394,http://purl.obolibrary.org/obo/DRUGBANK_DB10394,none +10.1990795,GO:0006071,http://purl.obolibrary.org/obo/GO_0006071,glycerol metabolic process +10.1990795,GO:0042073,http://purl.obolibrary.org/obo/GO_0042073,intraciliary transport +10.1990795,GO:0055082,http://purl.obolibrary.org/obo/GO_0055082,cellular chemical homeostasis +10.1990795,GO:0060245,http://purl.obolibrary.org/obo/GO_0060245,detection of cell density +10.1990795,MONDO:0002731,http://purl.obolibrary.org/obo/MONDO_0002731,cerebral hemisphere cancer +10.1990795,PR:000005267,http://purl.obolibrary.org/obo/PR_000005267,cyclin-dependent kinase 9 +10.2002444,DRUGBANK:DB00389,http://purl.obolibrary.org/obo/DRUGBANK_DB00389,none +10.2002444,DRUGBANK:DB01213,http://purl.obolibrary.org/obo/DRUGBANK_DB01213,none +10.2002444,GO:0004855,http://purl.obolibrary.org/obo/GO_0004855,xanthine oxidase activity +10.2002444,GO:0009372,http://purl.obolibrary.org/obo/GO_0009372,quorum sensing +10.2002444,GO:0048874,http://purl.obolibrary.org/obo/GO_0048874,host-mediated regulation of intestinal microbiota composition +10.2002444,PR:000006381,http://purl.obolibrary.org/obo/PR_000006381,beta-defensin 103 +10.2014106,DRUGBANK:DB00349,http://purl.obolibrary.org/obo/DRUGBANK_DB00349,none +10.2014106,DRUGBANK:DB00946,http://purl.obolibrary.org/obo/DRUGBANK_DB00946,none +10.2014106,GO:0004344,http://purl.obolibrary.org/obo/GO_0004344,glucose dehydrogenase activity +10.2014106,GO:0071749,http://purl.obolibrary.org/obo/GO_0071749,polymeric IgA immunoglobulin complex +10.2014106,MONDO:0018352,http://purl.obolibrary.org/obo/MONDO_0018352,squamous cell carcinoma of penis +10.2014106,UBERON:0004478,http://purl.obolibrary.org/obo/UBERON_0004478,musculature of larynx +10.2025781,CHEBI:64912,http://purl.obolibrary.org/obo/CHEBI_64912,antimycobacterial drug +10.2025781,DRUGBANK:DB00049,http://purl.obolibrary.org/obo/DRUGBANK_DB00049,none +10.2025781,GO:0004844,http://purl.obolibrary.org/obo/GO_0004844,uracil DNA N-glycosylase activity +10.2025781,GO:0004917,http://purl.obolibrary.org/obo/GO_0004917,interleukin-7 receptor activity +10.2025781,GO:0006687,http://purl.obolibrary.org/obo/GO_0006687,glycosphingolipid metabolic process +10.2025781,MONDO:0000485,http://purl.obolibrary.org/obo/MONDO_0000485,spasmodic dystonia +10.2025781,MONDO:0019944,http://purl.obolibrary.org/obo/MONDO_0019944,Eisenmenger syndrome +10.2025781,NCBITaxon:11588,http://purl.obolibrary.org/obo/NCBITaxon_11588,Rift Valley fever virus +10.2025781,PR:000001452,http://purl.obolibrary.org/obo/PR_000001452,free fatty acid receptor +10.2025781,UBERON:0008998,http://purl.obolibrary.org/obo/UBERON_0008998,vasculature of brain +10.203747,GO:0048709,http://purl.obolibrary.org/obo/GO_0048709,oligodendrocyte differentiation +10.203747,GO:0051240,http://purl.obolibrary.org/obo/GO_0051240,positive regulation of multicellular organismal process +10.203747,HP:0001197,http://purl.obolibrary.org/obo/HP_0001197,Abnormality of prenatal development or birth +10.203747,MONDO:0000700,http://purl.obolibrary.org/obo/MONDO_0000700,familial hemiplegic migraine +10.203747,PR:000010788,http://purl.obolibrary.org/obo/PR_000010788,interferon-induced GTP-binding protein Mx1 +10.203747,PR:000012279,http://purl.obolibrary.org/obo/PR_000012279,partitioning defective 3 +10.203747,PR:000024998,http://purl.obolibrary.org/obo/PR_000024998,none +10.203747,PR:P39516,http://purl.obolibrary.org/obo/PR_P39516,none +10.2049173,DRUGBANK:DB08896,http://purl.obolibrary.org/obo/DRUGBANK_DB08896,none +10.2049173,MONDO:0000875,http://purl.obolibrary.org/obo/MONDO_0000875,adult acute monocytic leukemia +10.2049173,MONDO:0002472,http://purl.obolibrary.org/obo/MONDO_0002472,carcinoma ex pleomorphic adenoma +10.2049173,MONDO:0020043,http://purl.obolibrary.org/obo/MONDO_0020043,autosomal recessive congenital cerebellar ataxia +10.2049173,UBERON:0001603,http://purl.obolibrary.org/obo/UBERON_0001603,lateral rectus extra-ocular muscle +10.2049173,UBERON:0005253,http://purl.obolibrary.org/obo/UBERON_0005253,head mesenchyme +10.2049173,UBERON:0015708,http://purl.obolibrary.org/obo/UBERON_0015708,splenium of the corpus callosum +10.2060889,DRUGBANK:DB00110,http://purl.obolibrary.org/obo/DRUGBANK_DB00110,none +10.2060889,NCBITaxon:1933187,http://purl.obolibrary.org/obo/NCBITaxon_1933187,Rift Valley fever phlebovirus +10.2060889,PR:000001399,http://purl.obolibrary.org/obo/PR_000001399,CD47 molecule +10.2060889,PR:000001457,http://purl.obolibrary.org/obo/PR_000001457,galanin receptor +10.2060889,PR:000007040,http://purl.obolibrary.org/obo/PR_000007040,elongation of very long chain fatty acids protein 5 +10.2060889,PR:000025842,http://purl.obolibrary.org/obo/PR_000025842,contactin-associated protein +10.2072619,MONDO:0005177,http://purl.obolibrary.org/obo/MONDO_0005177,serous cystadenoma +10.2072619,MONDO:0007432,http://purl.obolibrary.org/obo/MONDO_0007432,cerebral arteriopathy with subcortical infarcts and leukoencephalopathy +10.2072619,MONDO:0018185,http://purl.obolibrary.org/obo/MONDO_0018185,congenital anomaly of the great veins +10.2072619,MONDO:0036688,http://purl.obolibrary.org/obo/MONDO_0036688,rhabdomyoma +10.2072619,PR:000000125,http://purl.obolibrary.org/obo/PR_000000125,zinc finger FYVE domain-containing protein 9 +10.2072619,PR:000007087,http://purl.obolibrary.org/obo/PR_000007087,ectonucleotide pyrophosphatase/phosphodiesterase family member 1 +10.2072619,SO:0000715,http://purl.obolibrary.org/obo/SO_0000715,RNA_motif +10.2084363,DRUGBANK:DB07726,http://purl.obolibrary.org/obo/DRUGBANK_DB07726,none +10.2084363,GO:0016493,http://purl.obolibrary.org/obo/GO_0016493,C-C chemokine receptor activity +10.2084363,GO:0097506,http://purl.obolibrary.org/obo/GO_0097506,deaminated base DNA N-glycosylase activity +10.2084363,MONDO:0004997,http://purl.obolibrary.org/obo/MONDO_0004997,chondroblastoma +10.2084363,MONDO:0007127,http://purl.obolibrary.org/obo/MONDO_0007127,diffuse idiopathic skeletal hyperostosis +10.2084363,MONDO:0019622,http://purl.obolibrary.org/obo/MONDO_0019622,non-specific interstitial pneumonia +10.2096121,GO:0031555,http://purl.obolibrary.org/obo/GO_0031555,transcriptional attenuation +10.2096121,MONDO:0100062,http://purl.obolibrary.org/obo/MONDO_0100062,developmental and epileptic encephalopathy +10.2096121,PR:000002010,http://purl.obolibrary.org/obo/PR_000002010,MHC class I histocompatibility antigen B alpha chain +10.2096121,UBERON:0001677,http://purl.obolibrary.org/obo/UBERON_0001677,sphenoid bone +10.2096121,UBERON:0015060,http://purl.obolibrary.org/obo/UBERON_0015060,sphenoid endochondral element +10.2107893,DRUGBANK:DB03600,http://purl.obolibrary.org/obo/DRUGBANK_DB03600,none +10.2107893,DRUGBANK:DB06292,http://purl.obolibrary.org/obo/DRUGBANK_DB06292,none +10.2107893,MONDO:0021023,http://purl.obolibrary.org/obo/MONDO_0021023,complete androgen insensitivity syndrome +10.2107893,PR:000011310,http://purl.obolibrary.org/obo/PR_000011310,nucleolar protein 3 +10.2119678,CHEBI:21731,http://purl.obolibrary.org/obo/CHEBI_21731,N-glycosyl compound +10.2119678,CHEBI:71014,http://purl.obolibrary.org/obo/CHEBI_71014,AMPA receptor antagonist +10.2119678,GO:0007263,http://purl.obolibrary.org/obo/GO_0007263,nitric oxide mediated signal transduction +10.2119678,GO:0016499,http://purl.obolibrary.org/obo/GO_0016499,orexin receptor activity +10.2119678,GO:0046470,http://purl.obolibrary.org/obo/GO_0046470,phosphatidylcholine metabolic process +10.2119678,MONDO:0015846,http://purl.obolibrary.org/obo/MONDO_0015846,syndromic uterovaginal malformation +10.2119678,PR:000006706,http://purl.obolibrary.org/obo/PR_000006706,desmoglein-1 +10.2119678,PR:000008458,http://purl.obolibrary.org/obo/PR_000008458,hemoglobin subunit delta +10.2119678,PR:000017104,http://purl.obolibrary.org/obo/PR_000017104,uracil-DNA glycosylase +10.2119678,PR:000029563,http://purl.obolibrary.org/obo/PR_000029563,ubiquitin-like protein ISG15 +10.2131478,CHEBI:82891,http://purl.obolibrary.org/obo/CHEBI_82891,glucocorticoid receptor antagonist +10.2131478,PR:000012455,http://purl.obolibrary.org/obo/PR_000012455,programmed cell death protein 4 +10.2131478,UBERON:0001406,http://purl.obolibrary.org/obo/UBERON_0001406,ulnar artery +10.2131478,UBERON:0001993,http://purl.obolibrary.org/obo/UBERON_0001993,reticular layer of dermis +10.2143291,DRUGBANK:DB11520,http://purl.obolibrary.org/obo/DRUGBANK_DB11520,none +10.2143291,GO:0032196,http://purl.obolibrary.org/obo/GO_0032196,transposition +10.2143291,GO:0050906,http://purl.obolibrary.org/obo/GO_0050906,detection of stimulus involved in sensory perception +10.2143291,MONDO:0000496,http://purl.obolibrary.org/obo/MONDO_0000496,hemorrhagic cystitis +10.2143291,PR:000001093,http://purl.obolibrary.org/obo/PR_000001093,lymphocyte function-associated antigen 3 +10.2143291,PR:000008356,http://purl.obolibrary.org/obo/PR_000008356,guanylate kinase +10.2155118,CHEBI:33838,http://purl.obolibrary.org/obo/CHEBI_33838,nucleoside +10.2155118,DRUGBANK:DB00243,http://purl.obolibrary.org/obo/DRUGBANK_DB00243,none +10.2155118,DRUGBANK:DB00891,http://purl.obolibrary.org/obo/DRUGBANK_DB00891,none +10.2155118,GO:0004385,http://purl.obolibrary.org/obo/GO_0004385,guanylate kinase activity +10.2155118,GO:0051648,http://purl.obolibrary.org/obo/GO_0051648,vesicle localization +10.2155118,MONDO:0015321,http://purl.obolibrary.org/obo/MONDO_0015321,Pierre Robin syndrome associated with branchial archs anomalies +10.2155118,UBERON:3010489,http://purl.obolibrary.org/obo/UBERON_3010489,muscular artery +10.216696,DRUGBANK:DB06212,http://purl.obolibrary.org/obo/DRUGBANK_DB06212,none +10.216696,DRUGBANK:DB11140,http://purl.obolibrary.org/obo/DRUGBANK_DB11140,none +10.216696,DRUGBANK:DB15161,http://purl.obolibrary.org/obo/DRUGBANK_DB15161,none +10.216696,PR:000014646,http://purl.obolibrary.org/obo/PR_000014646,selenoprotein P +10.216696,PR:000027715,http://purl.obolibrary.org/obo/PR_000027715,none +10.2178815,CL:0000209,http://purl.obolibrary.org/obo/CL_0000209,taste receptor cell +10.2178815,DRUGBANK:DB00673,http://purl.obolibrary.org/obo/DRUGBANK_DB00673,none +10.2178815,MONDO:0017011,http://purl.obolibrary.org/obo/MONDO_0017011,uniparental disomy of chromosome X +10.2178815,PR:000010215,http://purl.obolibrary.org/obo/PR_000010215,methyl-CpG-binding domain protein 2 +10.2178815,UBERON:0001815,http://purl.obolibrary.org/obo/UBERON_0001815,lumbosacral nerve plexus +10.2190685,MONDO:0018312,http://purl.obolibrary.org/obo/MONDO_0018312,histoplasmosis +10.2190685,PR:000005188,http://purl.obolibrary.org/obo/PR_000005188,cell division cycle protein 20 homolog +10.2202568,GO:0000746,http://purl.obolibrary.org/obo/GO_0000746,conjugation +10.2202568,MONDO:0018328,http://purl.obolibrary.org/obo/MONDO_0018328,homozygous familial hypercholesterolemia +10.2202568,MONDO:0021533,http://purl.obolibrary.org/obo/MONDO_0021533,intestinal neuroendocrine tumor G1 +10.2202568,PR:000004033,http://purl.obolibrary.org/obo/PR_000004033,ankyrin-1 +10.2202568,PR:000014972,http://purl.obolibrary.org/obo/PR_000014972,excitatory amino acid transporter 3 +10.2202568,PR:000044712,http://purl.obolibrary.org/obo/PR_000044712,none +10.2202568,UBERON:0001855,http://purl.obolibrary.org/obo/UBERON_0001855,cochlear duct of membranous labyrinth +10.2214466,DRUGBANK:DB01436,http://purl.obolibrary.org/obo/DRUGBANK_DB01436,none +10.2214466,GO:0060278,http://purl.obolibrary.org/obo/GO_0060278,regulation of ovulation +10.2214466,HP:0001911,http://purl.obolibrary.org/obo/HP_0001911,Abnormal granulocyte morphology +10.2214466,HP:0010974,http://purl.obolibrary.org/obo/HP_0010974,Abnormal myeloid leukocyte morphology +10.2214466,HP:0032309,http://purl.obolibrary.org/obo/HP_0032309,Abnormal granulocyte count +10.2214466,MONDO:0017610,http://purl.obolibrary.org/obo/MONDO_0017610,epidermolysis bullosa simplex +10.2214466,NCBITaxon:42414,http://purl.obolibrary.org/obo/NCBITaxon_42414,Sigmodon +10.2214466,PR:000001465,http://purl.obolibrary.org/obo/PR_000001465,high affinity immunoglobulin gamma Fc receptor I +10.2214466,PR:000007556,http://purl.obolibrary.org/obo/PR_000007556,filamin-B +10.2214466,PR:000014345,http://purl.obolibrary.org/obo/PR_000014345,reticulon-1 +10.2214466,PR:000015176,http://purl.obolibrary.org/obo/PR_000015176,sodium- and chloride-dependent GABA transporter 1 +10.2214466,PR:Q09892,http://purl.obolibrary.org/obo/PR_Q09892,none +10.2214466,UBERON:0003079,http://purl.obolibrary.org/obo/UBERON_0003079,floor plate +10.2226378,CHEBI:26816,http://purl.obolibrary.org/obo/CHEBI_26816,carbohydrate phosphate +10.2226378,DRUGBANK:DB01284,http://purl.obolibrary.org/obo/DRUGBANK_DB01284,none +10.2226378,DRUGBANK:DB10703,http://purl.obolibrary.org/obo/DRUGBANK_DB10703,none +10.2226378,DRUGBANK:DB11431,http://purl.obolibrary.org/obo/DRUGBANK_DB11431,none +10.2226378,GO:0046058,http://purl.obolibrary.org/obo/GO_0046058,cAMP metabolic process +10.2226378,PR:000022172,http://purl.obolibrary.org/obo/PR_000022172,none +10.2226378,SO:0000132,http://purl.obolibrary.org/obo/SO_0000132,reverse_primer +10.2226378,UBERON:0006946,http://purl.obolibrary.org/obo/UBERON_0006946,efferent duct +10.2238304,GO:0015994,http://purl.obolibrary.org/obo/GO_0015994,chlorophyll metabolic process +10.2238304,MONDO:0003656,http://purl.obolibrary.org/obo/MONDO_0003656,hemoglobinuria +10.2238304,PR:000006082,http://purl.obolibrary.org/obo/PR_000006082,NADH-cytochrome b5 reductase 3 +10.2238304,PR:000011281,http://purl.obolibrary.org/obo/PR_000011281,nucleoside diphosphate kinase A +10.2238304,UBERON:0003081,http://purl.obolibrary.org/obo/UBERON_0003081,lateral plate mesoderm +10.2250244,DRUGBANK:DB11544,http://purl.obolibrary.org/obo/DRUGBANK_DB11544,none +10.2250244,MONDO:0019316,http://purl.obolibrary.org/obo/MONDO_0019316,maculopapular cutaneous mastocytosis +10.2250244,MONDO:0020229,http://purl.obolibrary.org/obo/MONDO_0020229,cerebral disease with cataract +10.2250244,MONDO:0020267,http://purl.obolibrary.org/obo/MONDO_0020267,genetic keratinization disorder associated with ocular features +10.2250244,NCBITaxon:353207,http://purl.obolibrary.org/obo/NCBITaxon_353207,none +10.2250244,PR:000010790,http://purl.obolibrary.org/obo/PR_000010790,max dimerization protein 1 +10.2250244,UBERON:0005026,http://purl.obolibrary.org/obo/UBERON_0005026,mucosa of middle ear +10.2250244,UBERON:0019269,http://purl.obolibrary.org/obo/UBERON_0019269,gray matter of diencephalon +10.2262199,DRUGBANK:DB06150,http://purl.obolibrary.org/obo/DRUGBANK_DB06150,none +10.2262199,GO:0006873,http://purl.obolibrary.org/obo/GO_0006873,cellular ion homeostasis +10.2262199,GO:0016679,http://purl.obolibrary.org/obo/GO_0016679,"oxidoreductase activity, acting on diphenols and related substances as donors" +10.2262199,GO:0031554,http://purl.obolibrary.org/obo/GO_0031554,"regulation of DNA-templated transcription, termination" +10.2262199,GO:0097524,http://purl.obolibrary.org/obo/GO_0097524,sperm plasma membrane +10.2262199,MONDO:0006210,http://purl.obolibrary.org/obo/MONDO_0006210,fibrolamellar hepatocellular carcinoma +10.2274167,DRUGBANK:DB00071,http://purl.obolibrary.org/obo/DRUGBANK_DB00071,none +10.2274167,DRUGBANK:DB06773,http://purl.obolibrary.org/obo/DRUGBANK_DB06773,none +10.2274167,MONDO:0006545,http://purl.obolibrary.org/obo/MONDO_0006545,erythema multiforme +10.2274167,MONDO:0006795,http://purl.obolibrary.org/obo/MONDO_0006795,hypersplenism +10.2274167,PR:000008165,http://purl.obolibrary.org/obo/PR_000008165,glypican-3 +10.2274167,UBERON:0003466,http://purl.obolibrary.org/obo/UBERON_0003466,forelimb zeugopod bone +10.2274167,UBERON:0018099,http://purl.obolibrary.org/obo/UBERON_0018099,distal mesopodial endochondral element +10.2274167,UBERON:0018102,http://purl.obolibrary.org/obo/UBERON_0018102,distal mesopodial bone +10.2286151,GO:0009952,http://purl.obolibrary.org/obo/GO_0009952,anterior/posterior pattern specification +10.2286151,GO:0030278,http://purl.obolibrary.org/obo/GO_0030278,regulation of ossification +10.2286151,GO:0060627,http://purl.obolibrary.org/obo/GO_0060627,regulation of vesicle-mediated transport +10.2286151,MONDO:0008231,http://purl.obolibrary.org/obo/MONDO_0008231,Peyronie disease +10.2286151,MONDO:0018947,http://purl.obolibrary.org/obo/MONDO_0018947,centronuclear myopathy +10.2286151,PR:000004503,http://purl.obolibrary.org/obo/PR_000004503,transcriptional regulator ATRX +10.2298148,DRUGBANK:DB09027,http://purl.obolibrary.org/obo/DRUGBANK_DB09027,none +10.2298148,DRUGBANK:DB11571,http://purl.obolibrary.org/obo/DRUGBANK_DB11571,none +10.2298148,MONDO:0005315,http://purl.obolibrary.org/obo/MONDO_0005315,bone fracture +10.2298148,PR:000004397,http://purl.obolibrary.org/obo/PR_000004397,cyclic AMP-dependent transcription factor ATF-1 +10.2298148,PR:000008628,http://purl.obolibrary.org/obo/PR_000008628,high mobility group protein HMG-I/HMG-Y +10.2298148,UBERON:0035550,http://purl.obolibrary.org/obo/UBERON_0035550,superficial vein +10.231016,CHEBI:35350,http://purl.obolibrary.org/obo/CHEBI_35350,hydroxy steroid +10.231016,GO:0009267,http://purl.obolibrary.org/obo/GO_0009267,cellular response to starvation +10.231016,MONDO:0019497,http://purl.obolibrary.org/obo/MONDO_0019497,nonsyndromic genetic deafness +10.231016,MONDO:0020211,http://purl.obolibrary.org/obo/MONDO_0020211,syndromic keratoconus +10.231016,PR:Q9LK64,http://purl.obolibrary.org/obo/PR_Q9LK64,none +10.231016,UBERON:0003724,http://purl.obolibrary.org/obo/UBERON_0003724,musculocutaneous nerve +10.2322187,CL:0002153,http://purl.obolibrary.org/obo/CL_0002153,corneocyte +10.2322187,DRUGBANK:DB15458,http://purl.obolibrary.org/obo/DRUGBANK_DB15458,none +10.2322187,GO:0007638,http://purl.obolibrary.org/obo/GO_0007638,mechanosensory behavior +10.2322187,GO:0042220,http://purl.obolibrary.org/obo/GO_0042220,response to cocaine +10.2322187,GO:1902554,http://purl.obolibrary.org/obo/GO_1902554,serine/threonine protein kinase complex +10.2322187,PR:000007925,http://purl.obolibrary.org/obo/PR_000007925,growth/differentiation factor 9 +10.2322187,PR:000010857,http://purl.obolibrary.org/obo/PR_000010857,myosin-Ic +10.2322187,PR:000012740,http://purl.obolibrary.org/obo/PR_000012740,prolactin-inducible protein +10.2322187,UBERON:0008788,http://purl.obolibrary.org/obo/UBERON_0008788,posterior cranial fossa +10.2334228,DRUGBANK:DB01307,http://purl.obolibrary.org/obo/DRUGBANK_DB01307,none +10.2334228,DRUGBANK:DB03817,http://purl.obolibrary.org/obo/DRUGBANK_DB03817,none +10.2334228,UBERON:0004176,http://purl.obolibrary.org/obo/UBERON_0004176,external genitalia +10.2346283,DRUGBANK:DB03759,http://purl.obolibrary.org/obo/DRUGBANK_DB03759,none +10.2346283,MONDO:0018516,http://purl.obolibrary.org/obo/MONDO_0018516,epithelial tumor of anal canal +10.2346283,PR:000007452,http://purl.obolibrary.org/obo/PR_000007452,"NADPH:adrenodoxin oxidoreductase, mitochondrial" +10.2358353,CL:0000890,http://purl.obolibrary.org/obo/CL_0000890,alternatively activated macrophage +10.2358353,DRUGBANK:DB00835,http://purl.obolibrary.org/obo/DRUGBANK_DB00835,none +10.2358353,DRUGBANK:DB11442,http://purl.obolibrary.org/obo/DRUGBANK_DB11442,none +10.2358353,MONDO:0011348,http://purl.obolibrary.org/obo/MONDO_0011348,non-syndromic polydactyly +10.2358353,PR:000001551,http://purl.obolibrary.org/obo/PR_000001551,relaxin family peptide receptor protein +10.2358353,PR:000017459,http://purl.obolibrary.org/obo/PR_000017459,Wilms tumor protein +10.2358353,UBERON:0001192,http://purl.obolibrary.org/obo/UBERON_0001192,left gastric artery +10.2358353,UBERON:0001616,http://purl.obolibrary.org/obo/UBERON_0001616,maxillary artery +10.2358353,UBERON:0010250,http://purl.obolibrary.org/obo/UBERON_0010250,middle meningeal artery +10.2370438,GO:0016722,http://purl.obolibrary.org/obo/GO_0016722,"oxidoreductase activity, acting on metal ions" +10.2370438,GO:0042403,http://purl.obolibrary.org/obo/GO_0042403,thyroid hormone metabolic process +10.2370438,MONDO:0014227,http://purl.obolibrary.org/obo/MONDO_0014227,hypopigmentation-punctate palmoplantar keratoderma syndrome +10.2382537,DRUGBANK:DB01123,http://purl.obolibrary.org/obo/DRUGBANK_DB01123,none +10.2382537,GO:0001756,http://purl.obolibrary.org/obo/GO_0001756,somitogenesis +10.2382537,GO:0061053,http://purl.obolibrary.org/obo/GO_0061053,somite development +10.2382537,MONDO:0001718,http://purl.obolibrary.org/obo/MONDO_0001718,scleritis +10.2382537,MONDO:0006835,http://purl.obolibrary.org/obo/MONDO_0006835,lipoid nephrosis +10.2382537,MONDO:0011655,http://purl.obolibrary.org/obo/MONDO_0011655,alveolar soft part sarcoma +10.2382537,MONDO:0015369,http://purl.obolibrary.org/obo/MONDO_0015369,Joubert syndrome and related disorders +10.2382537,MONDO:0018092,http://purl.obolibrary.org/obo/MONDO_0018092,Vogt-Koyanagi-Harada disease +10.2382537,MONDO:0021119,http://purl.obolibrary.org/obo/MONDO_0021119,non-functioning endocrine neoplasm +10.2382537,PR:000003766,http://purl.obolibrary.org/obo/PR_000003766,perilipin-2 +10.2382537,PR:000013191,http://purl.obolibrary.org/obo/PR_000013191,peroxiredoxin-1 +10.2382537,PR:Q96290,http://purl.obolibrary.org/obo/PR_Q96290,none +10.2382537,UBERON:0011060,http://purl.obolibrary.org/obo/UBERON_0011060,perilymphatic channel +10.2394651,DRUGBANK:DB07720,http://purl.obolibrary.org/obo/DRUGBANK_DB07720,none +10.2394651,GO:0035250,http://purl.obolibrary.org/obo/GO_0035250,UDP-galactosyltransferase activity +10.2394651,GO:1902644,http://purl.obolibrary.org/obo/GO_1902644,tertiary alcohol metabolic process +10.2394651,MONDO:0016733,http://purl.obolibrary.org/obo/MONDO_0016733,ganglioglioma +10.2394651,MONDO:0017775,http://purl.obolibrary.org/obo/MONDO_0017775,melioidosis +10.2406779,DRUGBANK:DB00532,http://purl.obolibrary.org/obo/DRUGBANK_DB00532,none +10.2406779,DRUGBANK:DB11507,http://purl.obolibrary.org/obo/DRUGBANK_DB11507,none +10.2406779,GO:0016689,http://purl.obolibrary.org/obo/GO_0016689,manganese peroxidase activity +10.2406779,PR:000007994,http://purl.obolibrary.org/obo/PR_000007994,gap junction alpha-5 protein +10.2406779,PR:000010389,http://purl.obolibrary.org/obo/PR_000010389,matrix Gla protein +10.2406779,UBERON:0004069,http://purl.obolibrary.org/obo/UBERON_0004069,accessory olfactory bulb +10.2418923,DRUGBANK:DB00976,http://purl.obolibrary.org/obo/DRUGBANK_DB00976,none +10.2418923,DRUGBANK:DB00978,http://purl.obolibrary.org/obo/DRUGBANK_DB00978,none +10.2418923,GO:0007549,http://purl.obolibrary.org/obo/GO_0007549,dosage compensation +10.2418923,MONDO:0005384,http://purl.obolibrary.org/obo/MONDO_0005384,partial epilepsy +10.2418923,PR:000000044,http://purl.obolibrary.org/obo/PR_000000044,RING-box protein 2 +10.2418923,PR:000010436,http://purl.obolibrary.org/obo/PR_000010436,melanoma antigen recognized by T-cells 1 +10.2418923,PR:000013486,http://purl.obolibrary.org/obo/PR_000013486,securin +10.2418923,PR:000030044,http://purl.obolibrary.org/obo/PR_000030044,none +10.2431081,DRUGBANK:DB00195,http://purl.obolibrary.org/obo/DRUGBANK_DB00195,none +10.2431081,DRUGBANK:DB05767,http://purl.obolibrary.org/obo/DRUGBANK_DB05767,none +10.2431081,GO:0006323,http://purl.obolibrary.org/obo/GO_0006323,DNA packaging +10.2431081,HP:0002047,http://purl.obolibrary.org/obo/HP_0002047,Malignant hyperthermia +10.2431081,MONDO:0000951,http://purl.obolibrary.org/obo/MONDO_0000951,thymus lymphoma +10.2431081,PR:000004073,http://purl.obolibrary.org/obo/PR_000004073,annexin A11 +10.2431081,PR:000016153,http://purl.obolibrary.org/obo/PR_000016153,T-box transcription factor TBX5 +10.2431081,PR:000017033,http://purl.obolibrary.org/obo/PR_000017033,urocortin-2 +10.2431081,UBERON:0002198,http://purl.obolibrary.org/obo/UBERON_0002198,neurohypophysis +10.2443254,DRUGBANK:DB00950,http://purl.obolibrary.org/obo/DRUGBANK_DB00950,none +10.2443254,MONDO:0002457,http://purl.obolibrary.org/obo/MONDO_0002457,Treacher-Collins syndrome +10.2443254,MONDO:0005854,http://purl.obolibrary.org/obo/MONDO_0005854,mixed connective tissue disease +10.2443254,PR:000001597,http://purl.obolibrary.org/obo/PR_000001597,none +10.2443254,PR:000003215,http://purl.obolibrary.org/obo/PR_000003215,mitogen-activated protein kinase kinase kinase 1 +10.2443254,PR:000009450,http://purl.obolibrary.org/obo/PR_000009450,"keratin, type II cytoskeletal 1" +10.2443254,PR:000013820,http://purl.obolibrary.org/obo/PR_000013820,retinol-binding protein 3 +10.2443254,PR:000022057,http://purl.obolibrary.org/obo/PR_000022057,none +10.2443254,UBERON:0017635,http://purl.obolibrary.org/obo/UBERON_0017635,paired venous dural sinus +10.2455441,CL:0000378,http://purl.obolibrary.org/obo/CL_0000378,support cell (sensu Nematoda and Protostomia) +10.2455441,CL:0002280,http://purl.obolibrary.org/obo/CL_0002280,type N enteroendocrine cell +10.2455441,DRUGBANK:DB00433,http://purl.obolibrary.org/obo/DRUGBANK_DB00433,none +10.2455441,PR:000008450,http://purl.obolibrary.org/obo/PR_000008450,hyaluronan synthase 2 +10.2467644,DRUGBANK:DB13179,http://purl.obolibrary.org/obo/DRUGBANK_DB13179,none +10.2467644,GO:0033044,http://purl.obolibrary.org/obo/GO_0033044,regulation of chromosome organization +10.2467644,MONDO:0005527,http://purl.obolibrary.org/obo/MONDO_0005527,toxic encephalopathy +10.2467644,PR:000003118,http://purl.obolibrary.org/obo/PR_000003118,proto-oncogene vav +10.2467644,PR:000013829,http://purl.obolibrary.org/obo/PR_000013829,calcipressin-1 +10.2479861,CHEBI:33447,http://purl.obolibrary.org/obo/CHEBI_33447,phospho sugar +10.2479861,CL:0000902,http://purl.obolibrary.org/obo/CL_0000902,induced T-regulatory cell +10.2479861,GO:0009048,http://purl.obolibrary.org/obo/GO_0009048,dosage compensation by inactivation of X chromosome +10.2479861,PR:000004196,http://purl.obolibrary.org/obo/PR_000004196,activity-regulated cytoskeleton-associated protein +10.2479861,PR:000007059,http://purl.obolibrary.org/obo/PR_000007059,echinoderm microtubule-associated protein-like 4 +10.2479861,PR:000011396,http://purl.obolibrary.org/obo/PR_000011396,bile acid receptor +10.2479861,PR:000017427,http://purl.obolibrary.org/obo/PR_000017427,CCN family member 5 +10.2492094,CHEBI:47018,http://purl.obolibrary.org/obo/CHEBI_47018,monohydroxytetrahydrofuran +10.2492094,DRUGBANK:DB00816,http://purl.obolibrary.org/obo/DRUGBANK_DB00816,none +10.2492094,DRUGBANK:DB00826,http://purl.obolibrary.org/obo/DRUGBANK_DB00826,none +10.2492094,DRUGBANK:DB01127,http://purl.obolibrary.org/obo/DRUGBANK_DB01127,none +10.2492094,GO:0015197,http://purl.obolibrary.org/obo/GO_0015197,none +10.2492094,MONDO:0018153,http://purl.obolibrary.org/obo/MONDO_0018153,Erdheim-Chester disease +10.2492094,PR:000014615,http://purl.obolibrary.org/obo/PR_000014615,semaphorin-3A +10.2504341,CHEBI:50427,http://purl.obolibrary.org/obo/CHEBI_50427,platelet aggregation inhibitor +10.2504341,DRUGBANK:DB14759,http://purl.obolibrary.org/obo/DRUGBANK_DB14759,none +10.2504341,MONDO:0020295,http://purl.obolibrary.org/obo/MONDO_0020295,congenital pulmonary veins anomaly +10.2504341,PR:000004619,http://purl.obolibrary.org/obo/PR_000004619,BAG family molecular chaperone regulator 1 +10.2504341,UBERON:0001927,http://purl.obolibrary.org/obo/UBERON_0001927,medial geniculate body +10.2516604,GO:0046931,http://purl.obolibrary.org/obo/GO_0046931,pore complex assembly +10.2516604,MONDO:0021218,http://purl.obolibrary.org/obo/MONDO_0021218,placenta neoplasm +10.2516604,SO:0000346,http://purl.obolibrary.org/obo/SO_0000346,loxP_site +10.2528881,CHEBI:8321,http://purl.obolibrary.org/obo/CHEBI_8321,Polyproline +10.2528881,DRUGBANK:DB14240,http://purl.obolibrary.org/obo/DRUGBANK_DB14240,none +10.2528881,GO:0007585,http://purl.obolibrary.org/obo/GO_0007585,respiratory gaseous exchange by respiratory system +10.2528881,GO:0009403,http://purl.obolibrary.org/obo/GO_0009403,toxin biosynthetic process +10.2528881,GO:0030296,http://purl.obolibrary.org/obo/GO_0030296,protein tyrosine kinase activator activity +10.2528881,MONDO:0002621,http://purl.obolibrary.org/obo/MONDO_0002621,extraosseous osteosarcoma +10.2528881,NCBITaxon:208897,http://purl.obolibrary.org/obo/NCBITaxon_208897,none +10.2528881,PR:000015445,http://purl.obolibrary.org/obo/PR_000015445,transcription factor Sp7 +10.2528881,UBERON:0002301,http://purl.obolibrary.org/obo/UBERON_0002301,layer of neocortex +10.2541174,DRUGBANK:DB00301,http://purl.obolibrary.org/obo/DRUGBANK_DB00301,none +10.2541174,DRUGBANK:DB13690,http://purl.obolibrary.org/obo/DRUGBANK_DB13690,none +10.2541174,DRUGBANK:DB14963,http://purl.obolibrary.org/obo/DRUGBANK_DB14963,none +10.2541174,MONDO:0015719,http://purl.obolibrary.org/obo/MONDO_0015719,severe hemophilia A +10.2541174,MONDO:0016738,http://purl.obolibrary.org/obo/MONDO_0016738,primary germ cell tumor of central nervous system +10.2541174,PR:000007107,http://purl.obolibrary.org/obo/PR_000007107,protein 4.1 +10.2541174,SO:0002221,http://purl.obolibrary.org/obo/SO_0002221,eukaryotic_promoter +10.2541174,UBERON:0009758,http://purl.obolibrary.org/obo/UBERON_0009758,abdominal ganglion +10.2553481,DRUGBANK:DB14487,http://purl.obolibrary.org/obo/DRUGBANK_DB14487,none +10.2553481,GO:0004131,http://purl.obolibrary.org/obo/GO_0004131,cytosine deaminase activity +10.2553481,GO:0005771,http://purl.obolibrary.org/obo/GO_0005771,multivesicular body +10.2553481,GO:0030377,http://purl.obolibrary.org/obo/GO_0030377,urokinase plasminogen activator receptor activity +10.2553481,MONDO:0002926,http://purl.obolibrary.org/obo/MONDO_0002926,clear cell sarcoma +10.2553481,PR:000001464,http://purl.obolibrary.org/obo/PR_000001464,gonadotropin-releasing hormone receptor +10.2553481,PR:000003444,http://purl.obolibrary.org/obo/PR_000003444,E3 SUMO-protein ligase PIAS +10.2553481,PR:000015188,http://purl.obolibrary.org/obo/PR_000015188,sodium-dependent dopamine transporter +10.2553481,UBERON:0002063,http://purl.obolibrary.org/obo/UBERON_0002063,sinus venosus +10.2565804,DRUGBANK:DB12783,http://purl.obolibrary.org/obo/DRUGBANK_DB12783,none +10.2565804,DRUGBANK:DB15952,http://purl.obolibrary.org/obo/DRUGBANK_DB15952,none +10.2565804,MONDO:0006846,http://purl.obolibrary.org/obo/MONDO_0006846,malignant hypertension +10.2565804,MONDO:0008274,http://purl.obolibrary.org/obo/MONDO_0008274,polyostotic fibrous dysplasia +10.2565804,PR:000010787,http://purl.obolibrary.org/obo/PR_000010787,major vault protein +10.2565804,PR:Q7TQ48,http://purl.obolibrary.org/obo/PR_Q7TQ48,none +10.2578142,DRUGBANK:DB06366,http://purl.obolibrary.org/obo/DRUGBANK_DB06366,none +10.2578142,DRUGBANK:DB14737,http://purl.obolibrary.org/obo/DRUGBANK_DB14737,none +10.2578142,DRUGBANK:DB15909,http://purl.obolibrary.org/obo/DRUGBANK_DB15909,none +10.2578142,MONDO:0002350,http://purl.obolibrary.org/obo/MONDO_0002350,familial nephrotic syndrome +10.2578142,MONDO:0005532,http://purl.obolibrary.org/obo/MONDO_0005532,Crohn's colitis +10.2578142,PR:000001025,http://purl.obolibrary.org/obo/PR_000001025,C-type lectin with multiple lectin domains +10.2578142,PR:000009189,http://purl.obolibrary.org/obo/PR_000009189,none +10.2578142,PR:000050016,http://purl.obolibrary.org/obo/PR_000050016,parathyroid hormone receptor +10.2578142,PR:P03069,http://purl.obolibrary.org/obo/PR_P03069,none +10.2578142,UBERON:0015704,http://purl.obolibrary.org/obo/UBERON_0015704,sagittal sinus +10.2590496,CHEBI:35131,http://purl.obolibrary.org/obo/CHEBI_35131,aldose phosphate +10.2590496,CHEBI:37890,http://purl.obolibrary.org/obo/CHEBI_37890,alpha-adrenergic antagonist +10.2590496,DRUGBANK:DB01094,http://purl.obolibrary.org/obo/DRUGBANK_DB01094,none +10.2590496,GO:0009640,http://purl.obolibrary.org/obo/GO_0009640,photomorphogenesis +10.2590496,GO:0046283,http://purl.obolibrary.org/obo/GO_0046283,anthocyanin-containing compound metabolic process +10.2590496,PR:000004527,http://purl.obolibrary.org/obo/PR_000004527,Axin-2 +10.2590496,PR:000006999,http://purl.obolibrary.org/obo/PR_000006999,eukaryotic translation initiation factor 4 gamma 2 +10.2602864,DRUGBANK:DB01530,http://purl.obolibrary.org/obo/DRUGBANK_DB01530,none +10.2602864,DRUGBANK:DB10984,http://purl.obolibrary.org/obo/DRUGBANK_DB10984,none +10.2602864,DRUGBANK:DB13215,http://purl.obolibrary.org/obo/DRUGBANK_DB13215,none +10.2602864,GO:0008200,http://purl.obolibrary.org/obo/GO_0008200,ion channel inhibitor activity +10.2602864,GO:0023014,http://purl.obolibrary.org/obo/GO_0023014,none +10.2602864,PR:000001451,http://purl.obolibrary.org/obo/PR_000001451,fibroblast growth factor receptor 4 +10.2602864,PR:000005217,http://purl.obolibrary.org/obo/PR_000005217,cell division control protein 6 +10.2602864,PR:000012336,http://purl.obolibrary.org/obo/PR_000012336,poly(rC)-binding protein 2 +10.2602864,PR:P27661,http://purl.obolibrary.org/obo/PR_P27661,none +10.2615248,DRUGBANK:DB00204,http://purl.obolibrary.org/obo/DRUGBANK_DB00204,none +10.2615248,DRUGBANK:DB11087,http://purl.obolibrary.org/obo/DRUGBANK_DB11087,none +10.2615248,DRUGBANK:DB14212,http://purl.obolibrary.org/obo/DRUGBANK_DB14212,none +10.2615248,GO:0033079,http://purl.obolibrary.org/obo/GO_0033079,immature T cell proliferation +10.2615248,MONDO:0007340,http://purl.obolibrary.org/obo/MONDO_0007340,cleidocranial dysplasia +10.2615248,PR:000001499,http://purl.obolibrary.org/obo/PR_000001499,orexin receptor +10.2615248,PR:000003778,http://purl.obolibrary.org/obo/PR_000003778,adiponectin receptor protein 1 +10.2615248,PR:000005266,http://purl.obolibrary.org/obo/PR_000005266,cyclin-dependent kinase 8 +10.2615248,PR:000006029,http://purl.obolibrary.org/obo/PR_000006029,cathepsin H +10.2615248,UBERON:0003258,http://purl.obolibrary.org/obo/UBERON_0003258,endoderm of foregut +10.2627647,DRUGBANK:DB06409,http://purl.obolibrary.org/obo/DRUGBANK_DB06409,none +10.2627647,GO:0000165,http://purl.obolibrary.org/obo/GO_0000165,MAPK cascade +10.2627647,GO:0031223,http://purl.obolibrary.org/obo/GO_0031223,auditory behavior +10.2627647,GO:1901334,http://purl.obolibrary.org/obo/GO_1901334,lactone metabolic process +10.2627647,MONDO:0002073,http://purl.obolibrary.org/obo/MONDO_0002073,malignant pineal area germ cell neoplasm +10.2627647,MONDO:0015867,http://purl.obolibrary.org/obo/MONDO_0015867,vaginal carcinoma +10.2627647,PR:000006524,http://purl.obolibrary.org/obo/PR_000006524,delta-like protein 3 +10.2627647,PR:000008658,http://purl.obolibrary.org/obo/PR_000008658,heterogeneous nuclear ribonucleoprotein A1 +10.2627647,PR:000013642,http://purl.obolibrary.org/obo/PR_000013642,Ras-related protein Rab-8A +10.2627647,UBERON:0002317,http://purl.obolibrary.org/obo/UBERON_0002317,white matter of cerebellum +10.2640062,MONDO:0008145,http://purl.obolibrary.org/obo/MONDO_0008145,Ollier disease +10.2652492,CHEBI:35526,http://purl.obolibrary.org/obo/CHEBI_35526,hypoglycemic agent +10.2652492,DRUGBANK:DB08860,http://purl.obolibrary.org/obo/DRUGBANK_DB08860,none +10.2652492,DRUGBANK:DB11252,http://purl.obolibrary.org/obo/DRUGBANK_DB11252,none +10.2652492,GO:0033080,http://purl.obolibrary.org/obo/GO_0033080,immature T cell proliferation in thymus +10.2652492,GO:1902850,http://purl.obolibrary.org/obo/GO_1902850,microtubule cytoskeleton organization involved in mitosis +10.2652492,PR:000005284,http://purl.obolibrary.org/obo/PR_000005284,cerebellar degeneration-related protein 2 +10.2652492,PR:000010873,http://purl.obolibrary.org/obo/PR_000010873,myocilin +10.2664938,CHEBI:33303,http://purl.obolibrary.org/obo/CHEBI_33303,chalcogen +10.2664938,GO:0008109,http://purl.obolibrary.org/obo/GO_0008109,"N-acetyllactosaminide beta-1,6-N-acetylglucosaminyltransferase activity" +10.2664938,MONDO:0005220,http://purl.obolibrary.org/obo/MONDO_0005220,collecting duct carcinoma +10.2664938,MONDO:0006995,http://purl.obolibrary.org/obo/MONDO_0006995,tethered spinal cord syndrome +10.2677399,CHEBI:25805,http://purl.obolibrary.org/obo/CHEBI_25805,oxygen atom +10.2677399,DRUGBANK:DB02959,http://purl.obolibrary.org/obo/DRUGBANK_DB02959,none +10.2677399,DRUGBANK:DB09138,http://purl.obolibrary.org/obo/DRUGBANK_DB09138,none +10.2677399,GO:1904014,http://purl.obolibrary.org/obo/GO_1904014,response to serotonin +10.2677399,HP:0000492,http://purl.obolibrary.org/obo/HP_0000492,Abnormal eyelid morphology +10.2677399,MONDO:0006008,http://purl.obolibrary.org/obo/MONDO_0006008,vestibular neuronitis +10.2677399,MONDO:0018770,http://purl.obolibrary.org/obo/MONDO_0018770,Jeune syndrome +10.2677399,MONDO:0019609,http://purl.obolibrary.org/obo/MONDO_0019609,Zellweger spectrum disorders +10.2677399,PR:000013289,http://purl.obolibrary.org/obo/PR_000013289,peripherin +10.2677399,PR:000013728,http://purl.obolibrary.org/obo/PR_000013728,Rap guanine nucleotide exchange factor 3 +10.2689875,DRUGBANK:DB00234,http://purl.obolibrary.org/obo/DRUGBANK_DB00234,none +10.2689875,DRUGBANK:DB03703,http://purl.obolibrary.org/obo/DRUGBANK_DB03703,none +10.2689875,GO:0006691,http://purl.obolibrary.org/obo/GO_0006691,leukotriene metabolic process +10.2689875,GO:0098660,http://purl.obolibrary.org/obo/GO_0098660,inorganic ion transmembrane transport +10.2689875,MONDO:0002999,http://purl.obolibrary.org/obo/MONDO_0002999,central nervous system germinoma +10.2689875,MONDO:0056796,http://purl.obolibrary.org/obo/MONDO_0056796,obstructive nephropathy +10.2702367,DRUGBANK:DB02327,http://purl.obolibrary.org/obo/DRUGBANK_DB02327,none +10.2702367,GO:0042465,http://purl.obolibrary.org/obo/GO_0042465,kinesis +10.2702367,GO:0043194,http://purl.obolibrary.org/obo/GO_0043194,axon initial segment +10.2702367,PR:000007044,http://purl.obolibrary.org/obo/PR_000007044,elongator complex protein 3 +10.2702367,UBERON:0001375,http://purl.obolibrary.org/obo/UBERON_0001375,semitendinosus +10.2714875,CL:0002614,http://purl.obolibrary.org/obo/CL_0002614,neuron of the substantia nigra +10.2714875,CL:0009005,http://purl.obolibrary.org/obo/CL_0009005,salivary gland cell +10.2714875,GO:0007088,http://purl.obolibrary.org/obo/GO_0007088,regulation of mitotic nuclear division +10.2714875,GO:0009081,http://purl.obolibrary.org/obo/GO_0009081,branched-chain amino acid metabolic process +10.2714875,MONDO:0005939,http://purl.obolibrary.org/obo/MONDO_0005939,Reoviridae infectious disease +10.2714875,NCBITaxon:28211,http://purl.obolibrary.org/obo/NCBITaxon_28211,Alphaproteobacteria +10.2714875,PR:000017144,http://purl.obolibrary.org/obo/PR_000017144,general vesicular transport factor p115 +10.2714875,UBERON:0001612,http://purl.obolibrary.org/obo/UBERON_0001612,facial artery +10.2714875,UBERON:0011123,http://purl.obolibrary.org/obo/UBERON_0011123,stifle joint +10.2714875,UBERON:0017640,http://purl.obolibrary.org/obo/UBERON_0017640,unpaired venous dural sinus +10.2727399,CHEBI:84055,http://purl.obolibrary.org/obo/CHEBI_84055,pentose phosphate +10.2727399,DRUGBANK:DB11321,http://purl.obolibrary.org/obo/DRUGBANK_DB11321,none +10.2727399,GO:0030863,http://purl.obolibrary.org/obo/GO_0030863,cortical cytoskeleton +10.2727399,GO:0032535,http://purl.obolibrary.org/obo/GO_0032535,regulation of cellular component size +10.2727399,GO:0098655,http://purl.obolibrary.org/obo/GO_0098655,cation transmembrane transport +10.2727399,MONDO:0003982,http://purl.obolibrary.org/obo/MONDO_0003982,bilateral breast carcinoma +10.2727399,NCBITaxon:10255,http://purl.obolibrary.org/obo/NCBITaxon_10255,Variola virus +10.2727399,PR:000004074,http://purl.obolibrary.org/obo/PR_000004074,annexin A13 +10.2727399,PR:000006898,http://purl.obolibrary.org/obo/PR_000006898,endothelin-2 +10.2727399,PR:000011158,http://purl.obolibrary.org/obo/PR_000011158,neurogenin-3 +10.2727399,PR:000011326,http://purl.obolibrary.org/obo/PR_000011326,"nitric oxide synthase, brain" +10.2727399,PR:Q8MPZ7,http://purl.obolibrary.org/obo/PR_Q8MPZ7,none +10.2739938,CHEBI:63409,http://purl.obolibrary.org/obo/CHEBI_63409,pentose derivative +10.2739938,DRUGBANK:DB03460,http://purl.obolibrary.org/obo/DRUGBANK_DB03460,none +10.2739938,DRUGBANK:DB05863,http://purl.obolibrary.org/obo/DRUGBANK_DB05863,none +10.2739938,HP:0025276,http://purl.obolibrary.org/obo/HP_0025276,Abnormality of skin adnexa physiology +10.2739938,MONDO:0004427,http://purl.obolibrary.org/obo/MONDO_0004427,supraglottis neoplasm +10.2739938,MONDO:0020927,http://purl.obolibrary.org/obo/MONDO_0020927,postaxial polydactyly +10.2739938,PR:000001580,http://purl.obolibrary.org/obo/PR_000001580,fMet-Leu-Phe receptor +10.2739938,PR:000001990,http://purl.obolibrary.org/obo/PR_000001990,C-C motif chemokine 18 +10.2739938,PR:000009927,http://purl.obolibrary.org/obo/PR_000009927,low-density lipoprotein receptor-related protein 6 +10.2752493,DRUGBANK:DB03059,http://purl.obolibrary.org/obo/DRUGBANK_DB03059,none +10.2752493,DRUGBANK:DB04818,http://purl.obolibrary.org/obo/DRUGBANK_DB04818,none +10.2752493,GO:0044107,http://purl.obolibrary.org/obo/GO_0044107,cellular alcohol metabolic process +10.2752493,MONDO:0000190,http://purl.obolibrary.org/obo/MONDO_0000190,ventricular fibrillation +10.2752493,MONDO:0017380,http://purl.obolibrary.org/obo/MONDO_0017380,juvenile polyposis syndrome +10.2752493,MONDO:0019673,http://purl.obolibrary.org/obo/MONDO_0019673,postaxial polydactyly type A +10.2752493,MONDO:0044685,http://purl.obolibrary.org/obo/MONDO_0044685,autoimmune/inflammatory optic neuropathy +10.2752493,PR:000035964,http://purl.obolibrary.org/obo/PR_000035964,none +10.2752493,UBERON:0008307,http://purl.obolibrary.org/obo/UBERON_0008307,heart endothelium +10.2765064,DRUGBANK:DB11092,http://purl.obolibrary.org/obo/DRUGBANK_DB11092,none +10.2765064,GO:0008204,http://purl.obolibrary.org/obo/GO_0008204,ergosterol metabolic process +10.2765064,GO:0051402,http://purl.obolibrary.org/obo/GO_0051402,neuron apoptotic process +10.2765064,MONDO:0008234,http://purl.obolibrary.org/obo/MONDO_0008234,multiple endocrine neoplasia type 2A +10.2765064,PR:000001222,http://purl.obolibrary.org/obo/PR_000001222,endothelin receptor type B +10.2765064,UBERON:0001304,http://purl.obolibrary.org/obo/UBERON_0001304,germinal epithelium of ovary +10.2765064,UBERON:0005431,http://purl.obolibrary.org/obo/UBERON_0005431,anterior spinal artery +10.277765,CHEBI:9584,http://purl.obolibrary.org/obo/CHEBI_9584,desiccated thyroid extract +10.277765,DRUGBANK:DB08907,http://purl.obolibrary.org/obo/DRUGBANK_DB08907,none +10.277765,GO:0004982,http://purl.obolibrary.org/obo/GO_0004982,N-formyl peptide receptor activity +10.277765,PR:000010989,http://purl.obolibrary.org/obo/PR_000010989,"N-alpha-acetyltransferase 15, NatA auxiliary subunit" +10.277765,PR:000013049,http://purl.obolibrary.org/obo/PR_000013049,"inorganic pyrophosphatase 2, mitochondrial" +10.277765,UBERON:0001423,http://purl.obolibrary.org/obo/UBERON_0001423,radius bone +10.277765,UBERON:0015001,http://purl.obolibrary.org/obo/UBERON_0015001,radius endochondral element +10.2790252,CL:0000676,http://purl.obolibrary.org/obo/CL_0000676,cap cell +10.2790252,DRUGBANK:DB06791,http://purl.obolibrary.org/obo/DRUGBANK_DB06791,none +10.2790252,DRUGBANK:DB08911,http://purl.obolibrary.org/obo/DRUGBANK_DB08911,none +10.2790252,DRUGBANK:DB11602,http://purl.obolibrary.org/obo/DRUGBANK_DB11602,none +10.2790252,GO:0009648,http://purl.obolibrary.org/obo/GO_0009648,photoperiodism +10.2790252,MONDO:0042971,http://purl.obolibrary.org/obo/MONDO_0042971,congenital herpes virus infection +10.2790252,PR:000001426,http://purl.obolibrary.org/obo/PR_000001426,KiSS-1 receptor +10.2790252,PR:000008653,http://purl.obolibrary.org/obo/PR_000008653,hepatocyte nuclear factor 1-beta +10.2790252,PR:000015244,http://purl.obolibrary.org/obo/PR_000015244,sarcolemmal membrane-associated protein +10.2790252,PR:000016585,http://purl.obolibrary.org/obo/PR_000016585,tripeptidyl-peptidase 1 +10.2790252,PR:000023677,http://purl.obolibrary.org/obo/PR_000023677,none +10.2790252,UBERON:0004534,http://purl.obolibrary.org/obo/UBERON_0004534,right testis +10.2802871,HP:0100699,http://purl.obolibrary.org/obo/HP_0100699,Scarring +10.2802871,MONDO:0004984,http://purl.obolibrary.org/obo/MONDO_0004984,basal-like breast carcinoma +10.2802871,MONDO:0006760,http://purl.obolibrary.org/obo/MONDO_0006760,fetal erythroblastosis +10.2802871,PR:000004081,http://purl.obolibrary.org/obo/PR_000004081,annexin A8 +10.2802871,PR:000027961,http://purl.obolibrary.org/obo/PR_000027961,RING-box protein 1 related protein +10.2802871,SO:0000078,http://purl.obolibrary.org/obo/SO_0000078,polycistronic_transcript +10.2802871,UBERON:0009098,http://purl.obolibrary.org/obo/UBERON_0009098,gravid uterus +10.2802871,UBERON:0009624,http://purl.obolibrary.org/obo/UBERON_0009624,lumbar nerve +10.2815505,DRUGBANK:DB00267,http://purl.obolibrary.org/obo/DRUGBANK_DB00267,none +10.2815505,DRUGBANK:DB13245,http://purl.obolibrary.org/obo/DRUGBANK_DB13245,none +10.2815505,MONDO:0017409,http://purl.obolibrary.org/obo/MONDO_0017409,fetal cytomegalovirus syndrome +10.2815505,PR:000004072,http://purl.obolibrary.org/obo/PR_000004072,annexin A10 +10.2815505,PR:000016652,http://purl.obolibrary.org/obo/PR_000016652,transcription intermediary factor 1-beta +10.2815505,PR:000017506,http://purl.obolibrary.org/obo/PR_000017506,DNA repair protein XRCC3 +10.2815505,PR:Q9ZV69,http://purl.obolibrary.org/obo/PR_Q9ZV69,none +10.2815505,UBERON:0005215,http://purl.obolibrary.org/obo/UBERON_0005215,kidney interstitium +10.2828155,CHEBI:24527,http://purl.obolibrary.org/obo/CHEBI_24527,herbicide +10.2828155,DRUGBANK:DB00362,http://purl.obolibrary.org/obo/DRUGBANK_DB00362,none +10.2828155,DRUGBANK:DB01395,http://purl.obolibrary.org/obo/DRUGBANK_DB01395,none +10.2828155,GO:0015968,http://purl.obolibrary.org/obo/GO_0015968,stringent response +10.2828155,GO:0038164,http://purl.obolibrary.org/obo/GO_0038164,thrombopoietin receptor activity +10.2828155,PR:000001353,http://purl.obolibrary.org/obo/PR_000001353,granulocyte colony-stimulating factor receptor +10.2828155,PR:000003631,http://purl.obolibrary.org/obo/PR_000003631,cytoplasmic aconitate hydratase +10.2828155,PR:000006907,http://purl.obolibrary.org/obo/PR_000006907,eukaryotic translation elongation factor 1 epsilon-1 +10.2828155,PR:P22134,http://purl.obolibrary.org/obo/PR_P22134,none +10.2828155,SO:1000030,http://purl.obolibrary.org/obo/SO_1000030,chromosomal_inversion +10.2840821,DRUGBANK:DB01162,http://purl.obolibrary.org/obo/DRUGBANK_DB01162,none +10.2840821,PR:000007861,http://purl.obolibrary.org/obo/PR_000007861,transcription factor GATA-6 +10.2840821,PR:000050052,http://purl.obolibrary.org/obo/PR_000050052,SLIT protein +10.2840821,UBERON:0003062,http://purl.obolibrary.org/obo/UBERON_0003062,primitive knot +10.2853504,CHEBI:17499,http://purl.obolibrary.org/obo/CHEBI_17499,hydrogen donor +10.2853504,CHEBI:25900,http://purl.obolibrary.org/obo/CHEBI_25900,aldopentose phosphate +10.2853504,DRUGBANK:DB01126,http://purl.obolibrary.org/obo/DRUGBANK_DB01126,none +10.2853504,DRUGBANK:DB01497,http://purl.obolibrary.org/obo/DRUGBANK_DB01497,none +10.2853504,GO:0043934,http://purl.obolibrary.org/obo/GO_0043934,sporulation +10.2853504,MONDO:0003083,http://purl.obolibrary.org/obo/MONDO_0003083,venous hemangioma +10.2853504,NCBITaxon:1507401,http://purl.obolibrary.org/obo/NCBITaxon_1507401,none +10.2853504,PR:000008682,http://purl.obolibrary.org/obo/PR_000008682,protein Hook homolog 1 +10.2853504,PR:000010994,http://purl.obolibrary.org/obo/PR_000010994,arylamine N-acetyltransferase 1 +10.2853504,PR:000031465,http://purl.obolibrary.org/obo/PR_000031465,probable hydrolase PNKD +10.2853504,PR:Q8GS71,http://purl.obolibrary.org/obo/PR_Q8GS71,none +10.2853504,PR:Q94CE5,http://purl.obolibrary.org/obo/PR_Q94CE5,none +10.2853504,UBERON:0002894,http://purl.obolibrary.org/obo/UBERON_0002894,olfactory cortex +10.2866202,CL:0000060,http://purl.obolibrary.org/obo/CL_0000060,odontoblast +10.2866202,GO:0004737,http://purl.obolibrary.org/obo/GO_0004737,pyruvate decarboxylase activity +10.2866202,MONDO:0000078,http://purl.obolibrary.org/obo/MONDO_0000078,acrocephalopolysyndactyly +10.2866202,PR:000002095,http://purl.obolibrary.org/obo/PR_000002095,sodium channel protein type 1 subunit alpha +10.2866202,PR:000003969,http://purl.obolibrary.org/obo/PR_000003969,"alkaline phosphatase, placental type" +10.2866202,PR:000024842,http://purl.obolibrary.org/obo/PR_000024842,heat shock 70 kDa protein 1 +10.2866202,PR:000044662,http://purl.obolibrary.org/obo/PR_000044662,acid-sensing ion channel protein +10.2866202,PR:P22803,http://purl.obolibrary.org/obo/PR_P22803,none +10.2866202,PR:P47938,http://purl.obolibrary.org/obo/PR_P47938,none +10.2866202,PR:Q03372,http://purl.obolibrary.org/obo/PR_Q03372,none +10.2866202,UBERON:0006798,http://purl.obolibrary.org/obo/UBERON_0006798,efferent nerve +10.2866202,UBERON:0009689,http://purl.obolibrary.org/obo/UBERON_0009689,anterior inferior cerebellar artery +10.2878917,DRUGBANK:DB11165,http://purl.obolibrary.org/obo/DRUGBANK_DB11165,none +10.2878917,GO:0033017,http://purl.obolibrary.org/obo/GO_0033017,sarcoplasmic reticulum membrane +10.2878917,MONDO:0016033,http://purl.obolibrary.org/obo/MONDO_0016033,Cornelia de Lange syndrome +10.2878917,MONDO:0018271,http://purl.obolibrary.org/obo/MONDO_0018271,peripheral primitive neuroectodermal tumor +10.2878917,PR:000017371,http://purl.obolibrary.org/obo/PR_000017371,Wiskott-Aldrich syndrome protein +10.2878917,PR:Q9MAH0,http://purl.obolibrary.org/obo/PR_Q9MAH0,none +10.2878917,UBERON:0001726,http://purl.obolibrary.org/obo/UBERON_0001726,papilla of tongue +10.2891648,MONDO:0012994,http://purl.obolibrary.org/obo/MONDO_0012994,dopa-responsive dystonia due to sepiapterin reductase deficiency +10.2891648,MONDO:0019789,http://purl.obolibrary.org/obo/MONDO_0019789,cytophagic histiocytic panniculitis +10.2891648,PR:000009495,http://purl.obolibrary.org/obo/PR_000009495,"keratin, type II cytoskeletal 8" +10.2891648,UBERON:0004004,http://purl.obolibrary.org/obo/UBERON_0004004,cerebellum lobule +10.2891648,UBERON:0004261,http://purl.obolibrary.org/obo/UBERON_0004261,lower leg blood vessel +10.2904394,CHEBI:67072,http://purl.obolibrary.org/obo/CHEBI_67072,cannabinoid receptor agonist +10.2904394,DRUGBANK:DB09101,http://purl.obolibrary.org/obo/DRUGBANK_DB09101,none +10.2904394,DRUGBANK:DB14250,http://purl.obolibrary.org/obo/DRUGBANK_DB14250,none +10.2904394,GO:0016496,http://purl.obolibrary.org/obo/GO_0016496,substance P receptor activity +10.2904394,GO:0099003,http://purl.obolibrary.org/obo/GO_0099003,vesicle-mediated transport in synapse +10.2904394,MONDO:0018768,http://purl.obolibrary.org/obo/MONDO_0018768,familial cold autoinflammatory syndrome +10.2904394,PR:000001295,http://purl.obolibrary.org/obo/PR_000001295,CAMPATH-1 antigen +10.2904394,PR:000006071,http://purl.obolibrary.org/obo/PR_000006071,C-X-C motif chemokine 5 +10.2904394,PR:000007817,http://purl.obolibrary.org/obo/PR_000007817,N-acetylgalactosamine-6-sulfatase +10.2904394,PR:000012363,http://purl.obolibrary.org/obo/PR_000012363,protocadherin alpha-4 +10.2904394,PR:000016221,http://purl.obolibrary.org/obo/PR_000016221,transcriptional enhancer factor TEF-3 +10.2917158,MONDO:0017090,http://purl.obolibrary.org/obo/MONDO_0017090,midline cerebral malformation +10.2917158,PR:000001663,http://purl.obolibrary.org/obo/PR_000001663,proteinase-activated receptor 3 +10.2917158,UBERON:0001228,http://purl.obolibrary.org/obo/UBERON_0001228,renal papilla +10.2929937,GO:0004901,http://purl.obolibrary.org/obo/GO_0004901,granulocyte macrophage colony-stimulating factor receptor activity +10.2929937,GO:0061133,http://purl.obolibrary.org/obo/GO_0061133,endopeptidase activator activity +10.2929937,GO:0071941,http://purl.obolibrary.org/obo/GO_0071941,nitrogen cycle metabolic process +10.2929937,MONDO:0010298,http://purl.obolibrary.org/obo/MONDO_0010298,Lesch-Nyhan syndrome +10.2929937,MONDO:0056819,http://purl.obolibrary.org/obo/MONDO_0056819,nasal cavity and paranasal sinus carcinoma +10.2929937,PR:000001974,http://purl.obolibrary.org/obo/PR_000001974,voltage-gated calcium channel subunit alpha +10.2929937,PR:000003542,http://purl.obolibrary.org/obo/PR_000003542,retinal-specific phospholipid-transporting ATPase ABCA4 +10.2929937,PR:000015198,http://purl.obolibrary.org/obo/PR_000015198,cationic amino acid transporter 2 +10.2929937,PR:000016542,http://purl.obolibrary.org/obo/PR_000016542,type 1B DNA topoisomerase 1 +10.2929937,PR:Q9WTZ1,http://purl.obolibrary.org/obo/PR_Q9WTZ1,none +10.2942733,DRUGBANK:DB09389,http://purl.obolibrary.org/obo/DRUGBANK_DB09389,none +10.2942733,MONDO:0003139,http://purl.obolibrary.org/obo/MONDO_0003139,mesangial proliferative glomerulonephritis +10.2942733,MONDO:0003646,http://purl.obolibrary.org/obo/MONDO_0003646,rectum neuroendocrine neoplasm +10.2942733,MONDO:0015816,http://purl.obolibrary.org/obo/MONDO_0015816,indolent primary cutaneous T-cell lymphoma +10.2942733,MONDO:0016037,http://purl.obolibrary.org/obo/MONDO_0016037,superficial Fibromatosis +10.2942733,PR:000001631,http://purl.obolibrary.org/obo/PR_000001631,nociceptin receptor +10.2942733,PR:000010687,http://purl.obolibrary.org/obo/PR_000010687,homeobox protein MSX-2 +10.2942733,PR:000015885,http://purl.obolibrary.org/obo/PR_000015885,synemin +10.2955545,DRUGBANK:DB00658,http://purl.obolibrary.org/obo/DRUGBANK_DB00658,none +10.2955545,DRUGBANK:DB08870,http://purl.obolibrary.org/obo/DRUGBANK_DB08870,none +10.2955545,DRUGBANK:DB15956,http://purl.obolibrary.org/obo/DRUGBANK_DB15956,none +10.2955545,HP:0010762,http://purl.obolibrary.org/obo/HP_0010762,Chordoma +10.2955545,MONDO:0009468,http://purl.obolibrary.org/obo/MONDO_0009468,pseudotumor cerebri +10.2955545,MONDO:0015935,http://purl.obolibrary.org/obo/MONDO_0015935,extragonadal germinoma +10.2955545,MONDO:0018060,http://purl.obolibrary.org/obo/MONDO_0018060,congenital fibrinogen deficiency +10.2955545,NCBITaxon:694005,http://purl.obolibrary.org/obo/NCBITaxon_694005,none +10.2955545,SO:0000612,http://purl.obolibrary.org/obo/SO_0000612,polypyrimidine_tract +10.2955545,UBERON:0015251,http://purl.obolibrary.org/obo/UBERON_0015251,modified sebaceous gland +10.2968374,DRUGBANK:DB09028,http://purl.obolibrary.org/obo/DRUGBANK_DB09028,none +10.2968374,GO:0008329,http://purl.obolibrary.org/obo/GO_0008329,none +10.2968374,GO:0030186,http://purl.obolibrary.org/obo/GO_0030186,melatonin metabolic process +10.2968374,GO:0072718,http://purl.obolibrary.org/obo/GO_0072718,response to cisplatin +10.2968374,MONDO:0001269,http://purl.obolibrary.org/obo/MONDO_0001269,scleral disease +10.2968374,PR:000011152,http://purl.obolibrary.org/obo/PR_000011152,neurogenic differentiation factor 1 +10.2968374,UBERON:0000375,http://purl.obolibrary.org/obo/UBERON_0000375,mandibular nerve +10.2968374,UBERON:0009025,http://purl.obolibrary.org/obo/UBERON_0009025,gastroepiploic artery +10.2981219,DRUGBANK:DB03614,http://purl.obolibrary.org/obo/DRUGBANK_DB03614,none +10.2981219,GO:0035376,http://purl.obolibrary.org/obo/GO_0035376,sterol import +10.2981219,PR:000014377,http://purl.obolibrary.org/obo/PR_000014377,ryanodine receptor 1 +10.2981219,PR:P36148,http://purl.obolibrary.org/obo/PR_P36148,none +10.2994081,DRUGBANK:DB00865,http://purl.obolibrary.org/obo/DRUGBANK_DB00865,none +10.2994081,DRUGBANK:DB01776,http://purl.obolibrary.org/obo/DRUGBANK_DB01776,none +10.2994081,DRUGBANK:DB15335,http://purl.obolibrary.org/obo/DRUGBANK_DB15335,none +10.2994081,HP:0001787,http://purl.obolibrary.org/obo/HP_0001787,Abnormal delivery +10.2994081,MONDO:0015304,http://purl.obolibrary.org/obo/MONDO_0015304,arachnoiditis +10.2994081,MOP:0000740,http://purl.obolibrary.org/obo/MOP_0000740,none +10.2994081,PR:000000776,http://purl.obolibrary.org/obo/PR_000000776,transient receptor potential cation channel subfamily V member 5 +10.2994081,PR:000006089,http://purl.obolibrary.org/obo/PR_000006089,"cytochrome c1, heme protein, mitochondrial" +10.2994081,PR:000006708,http://purl.obolibrary.org/obo/PR_000006708,desmoglein-3 +10.2994081,PR:P40589,http://purl.obolibrary.org/obo/PR_P40589,none +10.3006959,CHEBI:24836,http://purl.obolibrary.org/obo/CHEBI_24836,inorganic oxide +10.3006959,GO:0015816,http://purl.obolibrary.org/obo/GO_0015816,glycine transport +10.3006959,MONDO:0006075,http://purl.obolibrary.org/obo/MONDO_0006075,adrenal gland myelolipoma +10.3006959,MONDO:0006589,http://purl.obolibrary.org/obo/MONDO_0006589,occupational dermatitis +10.3006959,MONDO:0056820,http://purl.obolibrary.org/obo/MONDO_0056820,nasal cavity and paranasal sinus neoplasm +10.3006959,PR:000001211,http://purl.obolibrary.org/obo/PR_000001211,atypical chemokine receptor 3 +10.3006959,PR:000001957,http://purl.obolibrary.org/obo/PR_000001957,tumor necrosis factor receptor superfamily member 13C +10.3006959,PR:000044658,http://purl.obolibrary.org/obo/PR_000044658,voltage-gated calcium channel protein +10.3006959,PR:O23390,http://purl.obolibrary.org/obo/PR_O23390,none +10.3006959,PR:O64883,http://purl.obolibrary.org/obo/PR_O64883,none +10.3006959,PR:Q8JHF0,http://purl.obolibrary.org/obo/PR_Q8JHF0,none +10.3006959,PR:Q90YK5,http://purl.obolibrary.org/obo/PR_Q90YK5,none +10.3006959,UBERON:0013750,http://purl.obolibrary.org/obo/UBERON_0013750,metaphysis of tibia +10.3019854,DRUGBANK:DB06626,http://purl.obolibrary.org/obo/DRUGBANK_DB06626,none +10.3019854,DRUGBANK:DB12052,http://purl.obolibrary.org/obo/DRUGBANK_DB12052,none +10.3019854,GO:0006696,http://purl.obolibrary.org/obo/GO_0006696,ergosterol biosynthetic process +10.3019854,GO:0044108,http://purl.obolibrary.org/obo/GO_0044108,cellular alcohol biosynthetic process +10.3019854,GO:0055028,http://purl.obolibrary.org/obo/GO_0055028,cortical microtubule +10.3019854,GO:0098781,http://purl.obolibrary.org/obo/GO_0098781,ncRNA transcription +10.3019854,MONDO:0005242,http://purl.obolibrary.org/obo/MONDO_0005242,empyema +10.3019854,MONDO:0019806,http://purl.obolibrary.org/obo/MONDO_0019806,primary progressive aphasia +10.3019854,MONDO:0045017,http://purl.obolibrary.org/obo/MONDO_0045017,cholesterol biosynthetic process disease +10.3019854,PR:Q9SJZ2,http://purl.obolibrary.org/obo/PR_Q9SJZ2,none +10.3019854,UBERON:0002501,http://purl.obolibrary.org/obo/UBERON_0002501,oval window +10.3032766,GO:0003873,http://purl.obolibrary.org/obo/GO_0003873,6-phosphofructo-2-kinase activity +10.3032766,GO:0008272,http://purl.obolibrary.org/obo/GO_0008272,sulfate transport +10.3032766,GO:0010324,http://purl.obolibrary.org/obo/GO_0010324,membrane invagination +10.3045694,CL:0000566,http://purl.obolibrary.org/obo/CL_0000566,angioblastic mesenchymal cell +10.3045694,CL:0002038,http://purl.obolibrary.org/obo/CL_0002038,T follicular helper cell +10.3045694,DRUGBANK:DB06218,http://purl.obolibrary.org/obo/DRUGBANK_DB06218,none +10.3045694,DRUGBANK:DB11481,http://purl.obolibrary.org/obo/DRUGBANK_DB11481,none +10.3045694,GO:0008410,http://purl.obolibrary.org/obo/GO_0008410,CoA-transferase activity +10.3045694,GO:0030292,http://purl.obolibrary.org/obo/GO_0030292,protein tyrosine kinase inhibitor activity +10.3045694,MONDO:0014452,http://purl.obolibrary.org/obo/MONDO_0014452,familial dysfibrinogenemia +10.3045694,NCBITaxon:6157,http://purl.obolibrary.org/obo/NCBITaxon_6157,Platyhelminthes +10.3045694,PR:000009190,http://purl.obolibrary.org/obo/PR_000009190,none +10.3045694,PR:000009808,http://purl.obolibrary.org/obo/PR_000009808,leukocyte immunoglobulin-like receptor subfamily B member 1 +10.3045694,PR:Q8JGM4,http://purl.obolibrary.org/obo/PR_Q8JGM4,none +10.3045694,PR:Q8K0T0,http://purl.obolibrary.org/obo/PR_Q8K0T0,none +10.3045694,UBERON:0001068,http://purl.obolibrary.org/obo/UBERON_0001068,skin of back +10.3058639,GO:0008542,http://purl.obolibrary.org/obo/GO_0008542,visual learning +10.3058639,HP:0005268,http://purl.obolibrary.org/obo/HP_0005268,Spontaneous abortion +10.3058639,MONDO:0003834,http://purl.obolibrary.org/obo/MONDO_0003834,gastric cardia carcinoma +10.3058639,MONDO:0018815,http://purl.obolibrary.org/obo/MONDO_0018815,aneurysmal bone cyst +10.3058639,MONDO:0021239,http://purl.obolibrary.org/obo/MONDO_0021239,urethra neoplasm +10.3058639,PR:000001749,http://purl.obolibrary.org/obo/PR_000001749,TIR domain-containing adapter molecule 1 +10.3058639,PR:000004143,http://purl.obolibrary.org/obo/PR_000004143,apolipoprotein A-IV +10.3058639,PR:000006092,http://purl.obolibrary.org/obo/PR_000006092,cytoglobin +10.3058639,PR:000016698,http://purl.obolibrary.org/obo/PR_000016698,transient receptor potential cation channel subfamily M member 2 +10.3058639,PR:000016977,http://purl.obolibrary.org/obo/PR_000016977,SUMO-conjugating enzyme UBC9 +10.3058639,PR:P19807,http://purl.obolibrary.org/obo/PR_P19807,none +10.3071601,GO:0009651,http://purl.obolibrary.org/obo/GO_0009651,response to salt stress +10.3071601,MONDO:0018872,http://purl.obolibrary.org/obo/MONDO_0018872,acute megakaryoblastic leukemia +10.3071601,UBERON:0004295,http://purl.obolibrary.org/obo/UBERON_0004295,sympathetic nerve trunk +10.308458,CHEBI:35820,http://purl.obolibrary.org/obo/CHEBI_35820,antiprotozoal drug +10.308458,GO:0035051,http://purl.obolibrary.org/obo/GO_0035051,cardiocyte differentiation +10.308458,GO:0090544,http://purl.obolibrary.org/obo/GO_0090544,none +10.308458,GO:0098596,http://purl.obolibrary.org/obo/GO_0098596,imitative learning +10.308458,MONDO:0001167,http://purl.obolibrary.org/obo/MONDO_0001167,spastic diplegia +10.308458,MONDO:0006046,http://purl.obolibrary.org/obo/MONDO_0006046,ovarian serous cystadenocarcinoma +10.308458,PR:000003915,http://purl.obolibrary.org/obo/PR_000003915,delta-aminolevulinic acid dehydratase +10.308458,PR:000004641,http://purl.obolibrary.org/obo/PR_000004641,ubiquitin carboxyl-terminal hydrolase BAP1 +10.308458,UBERON:0003603,http://purl.obolibrary.org/obo/UBERON_0003603,lower respiratory tract cartilage +10.3097575,DRUGBANK:DB03252,http://purl.obolibrary.org/obo/DRUGBANK_DB03252,none +10.3097575,GO:0009718,http://purl.obolibrary.org/obo/GO_0009718,anthocyanin-containing compound biosynthetic process +10.3097575,GO:1901505,http://purl.obolibrary.org/obo/GO_1901505,carbohydrate derivative transmembrane transporter activity +10.3097575,MONDO:0002670,http://purl.obolibrary.org/obo/MONDO_0002670,ampulla of vater adenocarcinoma +10.3097575,MONDO:0006717,http://purl.obolibrary.org/obo/MONDO_0006717,cutaneous fibrous histiocytoma +10.3097575,NCBITaxon:12183,http://purl.obolibrary.org/obo/NCBITaxon_12183,none +10.3097575,UBERON:0005439,http://purl.obolibrary.org/obo/UBERON_0005439,definitive endoderm +10.3110587,CHEBI:50837,http://purl.obolibrary.org/obo/CHEBI_50837,estrogen antagonist +10.3110587,DRUGBANK:DB02224,http://purl.obolibrary.org/obo/DRUGBANK_DB02224,none +10.3110587,DRUGBANK:DB11635,http://purl.obolibrary.org/obo/DRUGBANK_DB11635,none +10.3110587,DRUGBANK:DB13063,http://purl.obolibrary.org/obo/DRUGBANK_DB13063,none +10.3110587,DRUGBANK:DB15967,http://purl.obolibrary.org/obo/DRUGBANK_DB15967,none +10.3110587,GO:0046541,http://purl.obolibrary.org/obo/GO_0046541,saliva secretion +10.3110587,GO:0090665,http://purl.obolibrary.org/obo/GO_0090665,glycoprotein complex +10.3110587,GO:2000278,http://purl.obolibrary.org/obo/GO_2000278,regulation of DNA biosynthetic process +10.3110587,PR:000006121,http://purl.obolibrary.org/obo/PR_000006121,cytochrome P450 2D6 +10.3110587,PR:000009130,http://purl.obolibrary.org/obo/PR_000009130,integrin alpha-5 +10.3110587,PR:000010012,http://purl.obolibrary.org/obo/PR_000010012,lymphatic vessel endothelial hyaluronic acid receptor 1 +10.3123617,CHEBI:50926,http://purl.obolibrary.org/obo/CHEBI_50926,angiogenesis modulating agent +10.3123617,MONDO:0006610,http://purl.obolibrary.org/obo/MONDO_0006610,skin atrophy +10.3123617,PR:000015269,http://purl.obolibrary.org/obo/PR_000015269,structural maintenance of chromosomes protein 1A +10.3123617,UBERON:0008339,http://purl.obolibrary.org/obo/UBERON_0008339,microvascular endothelium +10.3136663,DRUGBANK:DB09029,http://purl.obolibrary.org/obo/DRUGBANK_DB09029,none +10.3136663,DRUGBANK:DB14642,http://purl.obolibrary.org/obo/DRUGBANK_DB14642,none +10.3136663,GO:0003987,http://purl.obolibrary.org/obo/GO_0003987,acetate-CoA ligase activity +10.3136663,GO:0010942,http://purl.obolibrary.org/obo/GO_0010942,positive regulation of cell death +10.3136663,GO:0032886,http://purl.obolibrary.org/obo/GO_0032886,regulation of microtubule-based process +10.3136663,MONDO:0005659,http://purl.obolibrary.org/obo/MONDO_0005659,atrophic rhinitis +10.3136663,MONDO:0007027,http://purl.obolibrary.org/obo/MONDO_0007027,non-alcoholic steatohepatitis +10.3136663,MONDO:0044750,http://purl.obolibrary.org/obo/MONDO_0044750,lassa virus infectious disease +10.3136663,PR:000014553,http://purl.obolibrary.org/obo/PR_000014553,syndecan-4 +10.3136663,PR:Q9SK52,http://purl.obolibrary.org/obo/PR_Q9SK52,none +10.3136663,UBERON:0001847,http://purl.obolibrary.org/obo/UBERON_0001847,lobule of pinna +10.3136663,UBERON:0010033,http://purl.obolibrary.org/obo/UBERON_0010033,posterior part of tongue +10.3149726,DRUGBANK:DB02680,http://purl.obolibrary.org/obo/DRUGBANK_DB02680,none +10.3149726,GO:0019140,http://purl.obolibrary.org/obo/GO_0019140,inositol 3-kinase activity +10.3149726,GO:0030599,http://purl.obolibrary.org/obo/GO_0030599,pectinesterase activity +10.3149726,GO:0035382,http://purl.obolibrary.org/obo/GO_0035382,sterol transmembrane transport +10.3149726,HP:0001892,http://purl.obolibrary.org/obo/HP_0001892,Abnormal bleeding +10.3149726,MONDO:0002927,http://purl.obolibrary.org/obo/MONDO_0002927,spindle cell sarcoma +10.3149726,MONDO:0018782,http://purl.obolibrary.org/obo/MONDO_0018782,type 1 interferonopathy +10.3149726,NCBITaxon:90010,http://purl.obolibrary.org/obo/NCBITaxon_90010,unclassified Enterovirus +10.3149726,UBERON:0001802,http://purl.obolibrary.org/obo/UBERON_0001802,posterior segment of eyeball +10.3149726,UBERON:0005908,http://purl.obolibrary.org/obo/UBERON_0005908,conjunctival sac +10.3149726,UBERON:0013411,http://purl.obolibrary.org/obo/UBERON_0013411,cranial cavity +10.3149726,UBERON:2000084,http://purl.obolibrary.org/obo/UBERON_2000084,yolk +10.3162807,DRUGBANK:DB03496,http://purl.obolibrary.org/obo/DRUGBANK_DB03496,none +10.3162807,GO:0000278,http://purl.obolibrary.org/obo/GO_0000278,mitotic cell cycle +10.3162807,GO:1903350,http://purl.obolibrary.org/obo/GO_1903350,response to dopamine +10.3162807,MONDO:0002214,http://purl.obolibrary.org/obo/MONDO_0002214,brain germinoma +10.3162807,MONDO:0005198,http://purl.obolibrary.org/obo/MONDO_0005198,vulvar intraepithelial neoplasia +10.3162807,MONDO:0008185,http://purl.obolibrary.org/obo/MONDO_0008185,hereditary chronic pancreatitis +10.3162807,MONDO:0016296,http://purl.obolibrary.org/obo/MONDO_0016296,holoprosencephaly +10.3162807,MONDO:0020688,http://purl.obolibrary.org/obo/MONDO_0020688,spinal cord ischemia +10.3175904,CHEBI:18254,http://purl.obolibrary.org/obo/CHEBI_18254,ribonucleoside +10.3175904,CHEBI:47019,http://purl.obolibrary.org/obo/CHEBI_47019,dihydroxytetrahydrofuran +10.3175904,DRUGBANK:DB01833,http://purl.obolibrary.org/obo/DRUGBANK_DB01833,none +10.3175904,GO:0004335,http://purl.obolibrary.org/obo/GO_0004335,galactokinase activity +10.3175904,GO:0008452,http://purl.obolibrary.org/obo/GO_0008452,RNA ligase activity +10.3175904,GO:0015840,http://purl.obolibrary.org/obo/GO_0015840,urea transport +10.3175904,GO:0016197,http://purl.obolibrary.org/obo/GO_0016197,endosomal transport +10.3175904,PR:000005036,http://purl.obolibrary.org/obo/PR_000005036,caspase recruitment domain-containing protein 16 +10.3175904,UBERON:0001519,http://purl.obolibrary.org/obo/UBERON_0001519,skin of manus +10.3189019,GO:0098662,http://purl.obolibrary.org/obo/GO_0098662,inorganic cation transmembrane transport +10.3189019,GO:1901661,http://purl.obolibrary.org/obo/GO_1901661,quinone metabolic process +10.3189019,MONDO:0004216,http://purl.obolibrary.org/obo/MONDO_0004216,pineal region germinoma +10.3189019,MONDO:0010421,http://purl.obolibrary.org/obo/MONDO_0010421,Bruton-type agammaglobulinemia +10.3189019,NCBITaxon:91888,http://purl.obolibrary.org/obo/NCBITaxon_91888,lamiids +10.3189019,PR:000012546,http://purl.obolibrary.org/obo/PR_000012546,Xaa-Pro dipeptidase +10.3189019,PR:000016957,http://purl.obolibrary.org/obo/PR_000016957,ubiquitin-associated domain-containing protein 1 +10.3189019,UBERON:0001333,http://purl.obolibrary.org/obo/UBERON_0001333,male urethra +10.3189019,UBERON:0002829,http://purl.obolibrary.org/obo/UBERON_0002829,dorsal cochlear nucleus +10.3202151,DRUGBANK:DB06772,http://purl.obolibrary.org/obo/DRUGBANK_DB06772,none +10.3202151,DRUGBANK:DB08823,http://purl.obolibrary.org/obo/DRUGBANK_DB08823,none +10.3202151,GO:0036109,http://purl.obolibrary.org/obo/GO_0036109,alpha-linolenic acid metabolic process +10.3202151,MONDO:0016726,http://purl.obolibrary.org/obo/MONDO_0016726,neuronal tumor +10.3202151,MONDO:0018303,http://purl.obolibrary.org/obo/MONDO_0018303,generalized isolated dystonia +10.3202151,PR:000005245,http://purl.obolibrary.org/obo/PR_000005245,cadherin-3 +10.3202151,PR:000007494,http://purl.obolibrary.org/obo/PR_000007494,fibroblast growth factor 3 +10.3202151,PR:000016647,http://purl.obolibrary.org/obo/PR_000016647,E3 ubiquitin-protein ligase TRIM21 +10.3202151,UBERON:0019293,http://purl.obolibrary.org/obo/UBERON_0019293,white matter of pontine tegmentum +10.32153,DRUGBANK:DB11601,http://purl.obolibrary.org/obo/DRUGBANK_DB11601,none +10.32153,GO:0006357,http://purl.obolibrary.org/obo/GO_0006357,regulation of transcription by RNA polymerase II +10.32153,GO:0006801,http://purl.obolibrary.org/obo/GO_0006801,superoxide metabolic process +10.32153,MONDO:0005145,http://purl.obolibrary.org/obo/MONDO_0005145,sporadic amyotrophic lateral sclerosis +10.32153,PR:000014697,http://purl.obolibrary.org/obo/PR_000014697,serpin B6 +10.3228467,DRUGBANK:DB01560,http://purl.obolibrary.org/obo/DRUGBANK_DB01560,none +10.3228467,DRUGBANK:DB08908,http://purl.obolibrary.org/obo/DRUGBANK_DB08908,none +10.3228467,DRUGBANK:DB12328,http://purl.obolibrary.org/obo/DRUGBANK_DB12328,none +10.3228467,DRUGBANK:DB14443,http://purl.obolibrary.org/obo/DRUGBANK_DB14443,none +10.3228467,DRUGBANK:DB14539,http://purl.obolibrary.org/obo/DRUGBANK_DB14539,none +10.3228467,GO:0004065,http://purl.obolibrary.org/obo/GO_0004065,arylsulfatase activity +10.3228467,MONDO:0010035,http://purl.obolibrary.org/obo/MONDO_0010035,Smith-Lemli-Opitz syndrome +10.3228467,MONDO:0015253,http://purl.obolibrary.org/obo/MONDO_0015253,Diamond-Blackfan anemia +10.3228467,MONDO:0017971,http://purl.obolibrary.org/obo/MONDO_0017971,"46,XY disorder of sex development due to a cholesterol synthesis defect" +10.3228467,MONDO:0018105,http://purl.obolibrary.org/obo/MONDO_0018105,Wolfram syndrome +10.3228467,PR:000010211,http://purl.obolibrary.org/obo/PR_000010211,protein max +10.3228467,PR:000012331,http://purl.obolibrary.org/obo/PR_000012331,"pyruvate carboxylase, mitochondrial" +10.3241651,DRUGBANK:DB00579,http://purl.obolibrary.org/obo/DRUGBANK_DB00579,none +10.3241651,DRUGBANK:DB08889,http://purl.obolibrary.org/obo/DRUGBANK_DB08889,none +10.3241651,GO:0008641,http://purl.obolibrary.org/obo/GO_0008641,ubiquitin-like modifier activating enzyme activity +10.3241651,MONDO:0001160,http://purl.obolibrary.org/obo/MONDO_0001160,dissociative disorder +10.3241651,MONDO:0002658,http://purl.obolibrary.org/obo/MONDO_0002658,iris cancer +10.3241651,MONDO:0007834,http://purl.obolibrary.org/obo/MONDO_0007834,islet cell adenomatosis +10.3241651,UBERON:0001223,http://purl.obolibrary.org/obo/UBERON_0001223,left ureter +10.3241651,UBERON:0003422,http://purl.obolibrary.org/obo/UBERON_0003422,mesenchyme of umbilical cord +10.3241651,UBERON:0004793,http://purl.obolibrary.org/obo/UBERON_0004793,secretion of exocrine pancreas +10.3254852,GO:0004372,http://purl.obolibrary.org/obo/GO_0004372,glycine hydroxymethyltransferase activity +10.3254852,GO:0042466,http://purl.obolibrary.org/obo/GO_0042466,chemokinesis +10.3254852,MONDO:0002241,http://purl.obolibrary.org/obo/MONDO_0002241,factor XIII deficiency +10.3254852,MONDO:0006832,http://purl.obolibrary.org/obo/MONDO_0006832,limited scleroderma +10.3254852,PR:000007333,http://purl.obolibrary.org/obo/PR_000007333,Fanconi anemia group D2 protein +10.3268071,CL:0002410,http://purl.obolibrary.org/obo/CL_0002410,pancreatic stellate cell +10.3268071,DRUGBANK:DB01363,http://purl.obolibrary.org/obo/DRUGBANK_DB01363,none +10.3268071,DRUGBANK:DB12450,http://purl.obolibrary.org/obo/DRUGBANK_DB12450,none +10.3268071,GO:0043299,http://purl.obolibrary.org/obo/GO_0043299,leukocyte degranulation +10.3268071,GO:0048645,http://purl.obolibrary.org/obo/GO_0048645,animal organ formation +10.3268071,MONDO:0007318,http://purl.obolibrary.org/obo/MONDO_0007318,Alagille syndrome +10.3268071,PR:000030415,http://purl.obolibrary.org/obo/PR_000030415,ER membrane protein complex subunit 7 +10.3268071,SO:0001868,http://purl.obolibrary.org/obo/SO_0001868,positional_candidate_gene +10.3281307,DRUGBANK:DB02302,http://purl.obolibrary.org/obo/DRUGBANK_DB02302,none +10.3281307,PR:000001590,http://purl.obolibrary.org/obo/PR_000001590,kappa-type opioid receptor +10.3281307,PR:000004515,http://purl.obolibrary.org/obo/PR_000004515,aurora kinase A +10.3281307,PR:000015638,http://purl.obolibrary.org/obo/PR_000015638,serine/arginine repetitive matrix protein 1 +10.3281307,PR:000016663,http://purl.obolibrary.org/obo/PR_000016663,E3 ubiquitin-protein ligase TRIM63 +10.3281307,PR:000024007,http://purl.obolibrary.org/obo/PR_000024007,none +10.3294561,CL:0000788,http://purl.obolibrary.org/obo/CL_0000788,naive B cell +10.3294561,DRUGBANK:DB02679,http://purl.obolibrary.org/obo/DRUGBANK_DB02679,none +10.3294561,GO:0008236,http://purl.obolibrary.org/obo/GO_0008236,serine-type peptidase activity +10.3294561,MONDO:0017845,http://purl.obolibrary.org/obo/MONDO_0017845,spastic ataxia +10.3294561,MONDO:0018961,http://purl.obolibrary.org/obo/MONDO_0018961,familial melanoma +10.3294561,PR:000001980,http://purl.obolibrary.org/obo/PR_000001980,ATP-sensitive inward rectifier potassium channel 11 +10.3294561,PR:000022358,http://purl.obolibrary.org/obo/PR_000022358,none +10.3294561,PR:P10394,http://purl.obolibrary.org/obo/PR_P10394,none +10.3294561,UBERON:0010743,http://purl.obolibrary.org/obo/UBERON_0010743,meningeal cluster +10.3307832,DRUGBANK:DB01013,http://purl.obolibrary.org/obo/DRUGBANK_DB01013,none +10.3307832,HP:0001252,http://purl.obolibrary.org/obo/HP_0001252,Hypotonia +10.3307832,MONDO:0000918,http://purl.obolibrary.org/obo/MONDO_0000918,endometritis +10.3307832,MONDO:0016358,http://purl.obolibrary.org/obo/MONDO_0016358,limited cutaneous systemic sclerosis +10.3307832,MONDO:0019998,http://purl.obolibrary.org/obo/MONDO_0019998,gastroduodenal malformation +10.3307832,MONDO:0044079,http://purl.obolibrary.org/obo/MONDO_0044079,cardio-renal syndrome +10.3307832,MONDO:0100135,http://purl.obolibrary.org/obo/MONDO_0100135,Dravet syndrome +10.3307832,PR:000003153,http://purl.obolibrary.org/obo/PR_000003153,UBA domain-containing ubiquitin-conjugating enzyme E2 +10.3307832,PR:000004532,http://purl.obolibrary.org/obo/PR_000004532,5-azacytidine-induced protein 2 +10.3307832,PR:000005177,http://purl.obolibrary.org/obo/PR_000005177,CD82 molecule +10.3307832,PR:000008443,http://purl.obolibrary.org/obo/PR_000008443,huntingtin-associated protein 1 +10.3307832,UBERON:0004100,http://purl.obolibrary.org/obo/UBERON_0004100,renal collecting system +10.3307832,UBERON:0006725,http://purl.obolibrary.org/obo/UBERON_0006725,spiral ligament +10.3321121,CHEBI:67170,http://purl.obolibrary.org/obo/CHEBI_67170,none +10.3321121,DRUGBANK:DB00194,http://purl.obolibrary.org/obo/DRUGBANK_DB00194,none +10.3321121,DRUGBANK:DB08912,http://purl.obolibrary.org/obo/DRUGBANK_DB08912,none +10.3321121,HP:0003002,http://purl.obolibrary.org/obo/HP_0003002,Breast carcinoma +10.3321121,MONDO:0000050,http://purl.obolibrary.org/obo/MONDO_0000050,isolated congenital growth hormone deficiency +10.3321121,PR:000004084,http://purl.obolibrary.org/obo/PR_000004084,annexin A9 +10.3321121,PR:000031782,http://purl.obolibrary.org/obo/PR_000031782,probable sodium-coupled neutral amino acid transporter 6 +10.3334428,DRUGBANK:DB01416,http://purl.obolibrary.org/obo/DRUGBANK_DB01416,none +10.3334428,GO:0010431,http://purl.obolibrary.org/obo/GO_0010431,seed maturation +10.3334428,MONDO:0004348,http://purl.obolibrary.org/obo/MONDO_0004348,retinal telangiectasia +10.3334428,MONDO:0020669,http://purl.obolibrary.org/obo/MONDO_0020669,paranasal sinus cancer +10.3334428,PR:000008951,http://purl.obolibrary.org/obo/PR_000008951,insulin-like growth factor-binding protein 5 +10.3334428,UBERON:0002183,http://purl.obolibrary.org/obo/UBERON_0002183,lobar bronchus +10.3347753,CHEBI:55322,http://purl.obolibrary.org/obo/CHEBI_55322,mu-opioid receptor agonist +10.3347753,DRUGBANK:DB00268,http://purl.obolibrary.org/obo/DRUGBANK_DB00268,none +10.3347753,GO:0019954,http://purl.obolibrary.org/obo/GO_0019954,asexual reproduction +10.3347753,PR:000001234,http://purl.obolibrary.org/obo/PR_000001234,adhesion G protein-coupled receptor L2 +10.3347753,PR:000003829,http://purl.obolibrary.org/obo/PR_000003829,Arf-GAP domain and FG repeat-containing protein 1 +10.3347753,PR:000006033,http://purl.obolibrary.org/obo/PR_000006033,cathepsin S +10.3347753,PR:P32739,http://purl.obolibrary.org/obo/PR_P32739,none +10.3347753,PR:Q00947,http://purl.obolibrary.org/obo/PR_Q00947,none +10.3347753,PR:Q7DM58,http://purl.obolibrary.org/obo/PR_Q7DM58,none +10.3347753,PR:Q94521,http://purl.obolibrary.org/obo/PR_Q94521,none +10.3361095,CL:0000974,http://purl.obolibrary.org/obo/CL_0000974,long lived plasma cell +10.3361095,GO:0051053,http://purl.obolibrary.org/obo/GO_0051053,negative regulation of DNA metabolic process +10.3361095,GO:0051094,http://purl.obolibrary.org/obo/GO_0051094,positive regulation of developmental process +10.3361095,MONDO:0000468,http://purl.obolibrary.org/obo/MONDO_0000468,third-degree atrioventricular block +10.3361095,MONDO:0004773,http://purl.obolibrary.org/obo/MONDO_0004773,iridocyclitis +10.3361095,MONDO:0021169,http://purl.obolibrary.org/obo/MONDO_0021169,epithelioid hemangioma +10.3361095,PR:000001902,http://purl.obolibrary.org/obo/PR_000001902,nuclear receptor ROR-gamma +10.3361095,PR:000003390,http://purl.obolibrary.org/obo/PR_000003390,fragile X mental retardation syndrome-related protein 1 +10.3361095,PR:000010968,http://purl.obolibrary.org/obo/PR_000010968,homeobox protein NANOG +10.3361095,PR:000011115,http://purl.obolibrary.org/obo/PR_000011115,E3 ubiquitin-protein ligase NEDD4 +10.3361095,PR:000015647,http://purl.obolibrary.org/obo/PR_000015647,lupus La protein +10.3361095,PR:000016867,http://purl.obolibrary.org/obo/PR_000016867,thioredoxin-interacting protein +10.3361095,PR:000029036,http://purl.obolibrary.org/obo/PR_000029036,none +10.3361095,PR:000030793,http://purl.obolibrary.org/obo/PR_000030793,"N-alpha-acetyltransferase 25, NatB auxiliary subunit" +10.3361095,PR:000031300,http://purl.obolibrary.org/obo/PR_000031300,prosaposin +10.3361095,PR:Q9R283,http://purl.obolibrary.org/obo/PR_Q9R283,none +10.3361095,UBERON:0001374,http://purl.obolibrary.org/obo/UBERON_0001374,biceps femoris +10.3361095,UBERON:0008334,http://purl.obolibrary.org/obo/UBERON_0008334,subarachnoid sulcus +10.3374455,DRUGBANK:DB00809,http://purl.obolibrary.org/obo/DRUGBANK_DB00809,none +10.3374455,DRUGBANK:DB01466,http://purl.obolibrary.org/obo/DRUGBANK_DB01466,none +10.3374455,DRUGBANK:DB14043,http://purl.obolibrary.org/obo/DRUGBANK_DB14043,none +10.3374455,GO:0042391,http://purl.obolibrary.org/obo/GO_0042391,regulation of membrane potential +10.3374455,MONDO:0010865,http://purl.obolibrary.org/obo/MONDO_0010865,pseudoaminopterin syndrome +10.3374455,MONDO:0020575,http://purl.obolibrary.org/obo/MONDO_0020575,polymorphic ventricular tachycardia +10.3374455,PR:000008213,http://purl.obolibrary.org/obo/PR_000008213,phospholipid hydroperoxide glutathione peroxidase +10.3374455,PR:Q9LVL2,http://purl.obolibrary.org/obo/PR_Q9LVL2,none +10.3374455,UBERON:0003507,http://purl.obolibrary.org/obo/UBERON_0003507,arm blood vessel +10.3374455,UBERON:0016888,http://purl.obolibrary.org/obo/UBERON_0016888,transitional anatomical structure +10.3387833,DRUGBANK:DB00095,http://purl.obolibrary.org/obo/DRUGBANK_DB00095,none +10.3387833,DRUGBANK:DB02638,http://purl.obolibrary.org/obo/DRUGBANK_DB02638,none +10.3387833,MONDO:0000044,http://purl.obolibrary.org/obo/MONDO_0000044,hereditary hypophosphatemic rickets +10.3387833,NCBITaxon:7240,http://purl.obolibrary.org/obo/NCBITaxon_7240,none +10.3387833,PR:000009099,http://purl.obolibrary.org/obo/PR_000009099,IQ motif and SEC7 domain-containing protein 3 +10.3387833,UBERON:0004637,http://purl.obolibrary.org/obo/UBERON_0004637,otic capsule +10.3387833,UBERON:0008367,http://purl.obolibrary.org/obo/UBERON_0008367,breast epithelium +10.3387833,UBERON:0035767,http://purl.obolibrary.org/obo/UBERON_0035767,intrapulmonary bronchus +10.3401229,DRUGBANK:DB00263,http://purl.obolibrary.org/obo/DRUGBANK_DB00263,none +10.3401229,DRUGBANK:DB06825,http://purl.obolibrary.org/obo/DRUGBANK_DB06825,none +10.3401229,DRUGBANK:DB09146,http://purl.obolibrary.org/obo/DRUGBANK_DB09146,none +10.3401229,GO:0042063,http://purl.obolibrary.org/obo/GO_0042063,gliogenesis +10.3401229,MONDO:0020584,http://purl.obolibrary.org/obo/MONDO_0020584,anemia due to enzyme disorder +10.3401229,MONDO:0020585,http://purl.obolibrary.org/obo/MONDO_0020585,anemia due to erythrocyte enzyme disorder +10.3401229,MONDO:0045047,http://purl.obolibrary.org/obo/MONDO_0045047,neurosarcoidosis +10.3401229,PR:000001080,http://purl.obolibrary.org/obo/PR_000001080,short transient receptor potential cation channel TRPC7 +10.3401229,PR:000003418,http://purl.obolibrary.org/obo/PR_000003418,PC4 and SFRS1-interacting protein +10.3401229,PR:000003596,http://purl.obolibrary.org/obo/PR_000003596,acetyl-CoA carboxylase 1 +10.3401229,PR:000009420,http://purl.obolibrary.org/obo/PR_000009420,plasma kallikrein +10.3401229,UBERON:0010427,http://purl.obolibrary.org/obo/UBERON_0010427,ciliary processes +10.3414643,CL:0002315,http://purl.obolibrary.org/obo/CL_0002315,supporting cell of cochlea +10.3414643,CL:0005014,http://purl.obolibrary.org/obo/CL_0005014,auditory epithelial support cell +10.3414643,DRUGBANK:DB00337,http://purl.obolibrary.org/obo/DRUGBANK_DB00337,none +10.3414643,DRUGBANK:DB03229,http://purl.obolibrary.org/obo/DRUGBANK_DB03229,none +10.3414643,GO:0002275,http://purl.obolibrary.org/obo/GO_0002275,myeloid cell activation involved in immune response +10.3414643,GO:0005811,http://purl.obolibrary.org/obo/GO_0005811,lipid droplet +10.3414643,MONDO:0016792,http://purl.obolibrary.org/obo/MONDO_0016792,mitochondrial oxidative phosphorylation disorder due to a large-scale single deletion of mitochondrial DNA +10.3414643,SO:0001531,http://purl.obolibrary.org/obo/SO_0001531,nuclear_export_signal +10.3414643,UBERON:0003675,http://purl.obolibrary.org/obo/UBERON_0003675,tooth crown +10.3428074,GO:0004993,http://purl.obolibrary.org/obo/GO_0004993,G protein-coupled serotonin receptor activity +10.3428074,GO:0007173,http://purl.obolibrary.org/obo/GO_0007173,epidermal growth factor receptor signaling pathway +10.3428074,GO:0038201,http://purl.obolibrary.org/obo/GO_0038201,TOR complex +10.3428074,MONDO:0100016,http://purl.obolibrary.org/obo/MONDO_0100016,early-onset generalized dystonia +10.3441524,CHEBI:26562,http://purl.obolibrary.org/obo/CHEBI_26562,ribose phosphate +10.3441524,MONDO:0004785,http://purl.obolibrary.org/obo/MONDO_0004785,blepharitis +10.3441524,MONDO:0019011,http://purl.obolibrary.org/obo/MONDO_0019011,Charcot-Marie-Tooth disease type 1 +10.3441524,PR:000000098,http://purl.obolibrary.org/obo/PR_000000098,growth/differentiation factor +10.3441524,PR:000001785,http://purl.obolibrary.org/obo/PR_000001785,prominin +10.3441524,SO:0001119,http://purl.obolibrary.org/obo/SO_0001119,three_ten_helix +10.3441524,UBERON:0002051,http://purl.obolibrary.org/obo/UBERON_0002051,epithelium of bronchiole +10.3441524,UBERON:0002610,http://purl.obolibrary.org/obo/UBERON_0002610,cochlear nuclear complex +10.3454992,CHEBI:26561,http://purl.obolibrary.org/obo/CHEBI_26561,ribonucleotide +10.3454992,DRUGBANK:DB03434,http://purl.obolibrary.org/obo/DRUGBANK_DB03434,none +10.3454992,DRUGBANK:DB14474,http://purl.obolibrary.org/obo/DRUGBANK_DB14474,none +10.3454992,PR:000000668,http://purl.obolibrary.org/obo/PR_000000668,calcium-activated calmodulin-binding potassium channel alpha subunit +10.3454992,UBERON:0005272,http://purl.obolibrary.org/obo/UBERON_0005272,peritubular capillary +10.3468478,DRUGBANK:DB00109,http://purl.obolibrary.org/obo/DRUGBANK_DB00109,none +10.3468478,DRUGBANK:DB08626,http://purl.obolibrary.org/obo/DRUGBANK_DB08626,none +10.3468478,DRUGBANK:DB15889,http://purl.obolibrary.org/obo/DRUGBANK_DB15889,none +10.3468478,GO:0051748,http://purl.obolibrary.org/obo/GO_0051748,UTP-monosaccharide-1-phosphate uridylyltransferase activity +10.3468478,MONDO:0015279,http://purl.obolibrary.org/obo/MONDO_0015279,chronic mucocutaneous candidiasis +10.3468478,MONDO:0015366,http://purl.obolibrary.org/obo/MONDO_0015366,autosomal recessive hereditary sensory and autonomic neuropathy +10.3468478,NCBITaxon:11149,http://purl.obolibrary.org/obo/NCBITaxon_11149,Transmissible gastroenteritis virus +10.3468478,PR:000001487,http://purl.obolibrary.org/obo/PR_000001487,mas-related G-protein coupled receptor +10.3468478,PR:000007167,http://purl.obolibrary.org/obo/PR_000007167,DNA repair protein complementing XP-G cells +10.3468478,PR:000011059,http://purl.obolibrary.org/obo/PR_000011059,protein NDRG1 +10.3468478,PR:000016321,http://purl.obolibrary.org/obo/PR_000016321,thyroid hormone receptor beta +10.3468478,UBERON:0001757,http://purl.obolibrary.org/obo/UBERON_0001757,pinna +10.3481983,DRUGBANK:DB01759,http://purl.obolibrary.org/obo/DRUGBANK_DB01759,none +10.3481983,DRUGBANK:DB06811,http://purl.obolibrary.org/obo/DRUGBANK_DB06811,none +10.3481983,DRUGBANK:DB14554,http://purl.obolibrary.org/obo/DRUGBANK_DB14554,none +10.3481983,GO:0043068,http://purl.obolibrary.org/obo/GO_0043068,positive regulation of programmed cell death +10.3481983,MONDO:0020725,http://purl.obolibrary.org/obo/MONDO_0020725,anemia due to chronic disorder +10.3481983,MONDO:0024647,http://purl.obolibrary.org/obo/MONDO_0024647,urolithiasis +10.3481983,PR:000004972,http://purl.obolibrary.org/obo/PR_000004972,calcitonin receptor +10.3481983,PR:000010201,http://purl.obolibrary.org/obo/PR_000010201,S-adenosylmethionine synthetase isoform type-1 +10.3481983,UBERON:0004152,http://purl.obolibrary.org/obo/UBERON_0004152,bulbus arteriosus +10.3495505,CHEBI:81145,http://purl.obolibrary.org/obo/CHEBI_81145,Thymine dimer +10.3495505,DRUGBANK:DB11288,http://purl.obolibrary.org/obo/DRUGBANK_DB11288,none +10.3495505,GO:0005985,http://purl.obolibrary.org/obo/GO_0005985,sucrose metabolic process +10.3495505,GO:0019627,http://purl.obolibrary.org/obo/GO_0019627,urea metabolic process +10.3495505,GO:0090329,http://purl.obolibrary.org/obo/GO_0090329,regulation of DNA-dependent DNA replication +10.3495505,MONDO:0001152,http://purl.obolibrary.org/obo/MONDO_0001152,amnestic disorder +10.3495505,PR:000005878,http://purl.obolibrary.org/obo/PR_000005878,cysteine-rich secretory protein 1 +10.3495505,PR:000006380,http://purl.obolibrary.org/obo/PR_000006380,beta-defensin 1 +10.3495505,PR:000006934,http://purl.obolibrary.org/obo/PR_000006934,egl nine homolog 1 +10.3495505,PR:000011416,http://purl.obolibrary.org/obo/PR_000011416,GTPase NRas +10.3495505,UBERON:0005465,http://purl.obolibrary.org/obo/UBERON_0005465,obturator nerve +10.3509046,DRUGBANK:DB01955,http://purl.obolibrary.org/obo/DRUGBANK_DB01955,none +10.3509046,MONDO:0013016,http://purl.obolibrary.org/obo/MONDO_0013016,leukocyte adhesion deficiency 3 +10.3509046,MONDO:0020346,http://purl.obolibrary.org/obo/MONDO_0020346,synaptic congenital myasthenic syndrome +10.3509046,PR:000001917,http://purl.obolibrary.org/obo/PR_000001917,"potassium channel, TWIK-1-related" +10.3509046,PR:000006909,http://purl.obolibrary.org/obo/PR_000006909,elongation factor 2 +10.3509046,PR:000007016,http://purl.obolibrary.org/obo/PR_000007016,ELAV-like protein 1 +10.3522606,DRUGBANK:DB00797,http://purl.obolibrary.org/obo/DRUGBANK_DB00797,none +10.3522606,DRUGBANK:DB14357,http://purl.obolibrary.org/obo/DRUGBANK_DB14357,none +10.3522606,GO:0007135,http://purl.obolibrary.org/obo/GO_0007135,meiosis II +10.3522606,MONDO:0002930,http://purl.obolibrary.org/obo/MONDO_0002930,kidney sarcoma +10.3522606,MONDO:0015474,http://purl.obolibrary.org/obo/MONDO_0015474,cryptosporidiosis +10.3522606,MONDO:0015990,http://purl.obolibrary.org/obo/MONDO_0015990,"focal, segmental or multifocal dystonia" +10.3522606,MONDO:0016125,http://purl.obolibrary.org/obo/MONDO_0016125,"infectious, fungal or parasitic myopathy" +10.3522606,MONDO:0016830,http://purl.obolibrary.org/obo/MONDO_0016830,Emery-Dreifuss muscular dystrophy +10.3522606,MONDO:0019239,http://purl.obolibrary.org/obo/MONDO_0019239,inborn disorder of serine family metabolism +10.3522606,PR:000005265,http://purl.obolibrary.org/obo/PR_000005265,cyclin-dependent kinase 7 +10.3522606,UBERON:0004016,http://purl.obolibrary.org/obo/UBERON_0004016,dermatome +10.3536184,DRUGBANK:DB00032,http://purl.obolibrary.org/obo/DRUGBANK_DB00032,none +10.3536184,DRUGBANK:DB01330,http://purl.obolibrary.org/obo/DRUGBANK_DB01330,none +10.3536184,DRUGBANK:DB12728,http://purl.obolibrary.org/obo/DRUGBANK_DB12728,none +10.3536184,GO:0006140,http://purl.obolibrary.org/obo/GO_0006140,regulation of nucleotide metabolic process +10.3536184,GO:0048193,http://purl.obolibrary.org/obo/GO_0048193,Golgi vesicle transport +10.3536184,GO:0071625,http://purl.obolibrary.org/obo/GO_0071625,vocalization behavior +10.3536184,MONDO:0005648,http://purl.obolibrary.org/obo/MONDO_0005648,aortic valve insufficiency +10.3536184,NCBITaxon:3814,http://purl.obolibrary.org/obo/NCBITaxon_3814,none +10.3536184,PR:000008645,http://purl.obolibrary.org/obo/PR_000008645,heme oxygenase 2 +10.3536184,PR:000013430,http://purl.obolibrary.org/obo/PR_000013430,parathyroid hormone/parathyroid hormone-related peptide receptor +10.3536184,PR:000023401,http://purl.obolibrary.org/obo/PR_000023401,none +10.3536184,UBERON:0002751,http://purl.obolibrary.org/obo/UBERON_0002751,inferior temporal gyrus +10.354978,CHEBI:26394,http://purl.obolibrary.org/obo/CHEBI_26394,purine nucleoside +10.354978,DRUGBANK:DB04931,http://purl.obolibrary.org/obo/DRUGBANK_DB04931,none +10.354978,MONDO:0018747,http://purl.obolibrary.org/obo/MONDO_0018747,acquired epidermolysis bullosa +10.354978,NCBITaxon:2231393,http://purl.obolibrary.org/obo/NCBITaxon_2231393,none +10.354978,PR:000014146,http://purl.obolibrary.org/obo/PR_000014146,RNA-binding region-containing protein 3 +10.354978,PR:000027993,http://purl.obolibrary.org/obo/PR_000027993,none +10.354978,PR:P38967,http://purl.obolibrary.org/obo/PR_P38967,none +10.354978,UBERON:0001842,http://purl.obolibrary.org/obo/UBERON_0001842,posterior semicircular canal +10.3563394,DRUGBANK:DB01244,http://purl.obolibrary.org/obo/DRUGBANK_DB01244,none +10.3563394,DRUGBANK:DB13967,http://purl.obolibrary.org/obo/DRUGBANK_DB13967,none +10.3563394,HP:0007550,http://purl.obolibrary.org/obo/HP_0007550,Hypohidrosis or hyperhidrosis +10.3563394,MONDO:0004848,http://purl.obolibrary.org/obo/MONDO_0004848,ulcerative stomatitis +10.3563394,PR:000009131,http://purl.obolibrary.org/obo/PR_000009131,integrin alpha-6 +10.3563394,PR:000016426,http://purl.obolibrary.org/obo/PR_000016426,voltage-dependent calcium channel gamma-like subunit +10.3563394,PR:000023865,http://purl.obolibrary.org/obo/PR_000023865,none +10.3563394,PR:Q90Y57,http://purl.obolibrary.org/obo/PR_Q90Y57,none +10.3563394,UBERON:0005019,http://purl.obolibrary.org/obo/UBERON_0005019,mucosa of palate +10.3577028,DRUGBANK:DB00716,http://purl.obolibrary.org/obo/DRUGBANK_DB00716,none +10.3577028,GO:0007140,http://purl.obolibrary.org/obo/GO_0007140,male meiotic nuclear division +10.3577028,GO:0061983,http://purl.obolibrary.org/obo/GO_0061983,meiosis II cell cycle process +10.3577028,HP:0100257,http://purl.obolibrary.org/obo/HP_0100257,Ectrodactyly +10.3577028,MONDO:0011281,http://purl.obolibrary.org/obo/MONDO_0011281,congenital myasthenic syndrome 5 +10.3577028,MONDO:0019355,http://purl.obolibrary.org/obo/MONDO_0019355,adult-onset Still disease +10.3577028,PR:000006494,http://purl.obolibrary.org/obo/PR_000006494,disrupted in schizophrenia 1 protein +10.3577028,PR:000014889,http://purl.obolibrary.org/obo/PR_000014889,NAD-dependent protein deacetylase sirtuin-2 +10.3577028,UBERON:0002932,http://purl.obolibrary.org/obo/UBERON_0002932,trapezoid body +10.3577028,UBERON:0009951,http://purl.obolibrary.org/obo/UBERON_0009951,main olfactory bulb +10.359068,DRUGBANK:DB04193,http://purl.obolibrary.org/obo/DRUGBANK_DB04193,none +10.359068,DRUGBANK:DB11673,http://purl.obolibrary.org/obo/DRUGBANK_DB11673,none +10.359068,GO:0004905,http://purl.obolibrary.org/obo/GO_0004905,type I interferon receptor activity +10.359068,MONDO:0005181,http://purl.obolibrary.org/obo/MONDO_0005181,progressive external ophthalmoplegia +10.359068,MONDO:0007745,http://purl.obolibrary.org/obo/MONDO_0007745,Gilbert syndrome +10.359068,PR:000011557,http://purl.obolibrary.org/obo/PR_000011557,tRNA (adenine(37)-N6)-methyltransferase +10.359068,PR:000036824,http://purl.obolibrary.org/obo/PR_000036824,none +10.359068,PR:Q9ZS97,http://purl.obolibrary.org/obo/PR_Q9ZS97,none +10.360435,DRUGBANK:DB06695,http://purl.obolibrary.org/obo/DRUGBANK_DB06695,none +10.360435,GO:0004902,http://purl.obolibrary.org/obo/GO_0004902,granulocyte colony-stimulating factor receptor activity +10.360435,GO:0005025,http://purl.obolibrary.org/obo/GO_0005025,"transforming growth factor beta receptor activity, type I" +10.360435,GO:0035482,http://purl.obolibrary.org/obo/GO_0035482,gastric motility +10.360435,PR:000000706,http://purl.obolibrary.org/obo/PR_000000706,potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 2 +10.360435,PR:000004771,http://purl.obolibrary.org/obo/PR_000004771,bone morphogenetic protein 1 +10.360435,PR:000009123,http://purl.obolibrary.org/obo/PR_000009123,T-cell immunomodulatory protein +10.360435,PR:000016406,http://purl.obolibrary.org/obo/PR_000016406,tomoregulin-1 +10.360435,PR:Q869Q3,http://purl.obolibrary.org/obo/PR_Q869Q3,none +10.360435,UBERON:0004877,http://purl.obolibrary.org/obo/UBERON_0004877,visceral endoderm +10.360435,UBERON:0015249,http://purl.obolibrary.org/obo/UBERON_0015249,digit skin +10.3618039,DRUGBANK:DB08805,http://purl.obolibrary.org/obo/DRUGBANK_DB08805,none +10.3618039,DRUGBANK:DB11616,http://purl.obolibrary.org/obo/DRUGBANK_DB11616,none +10.3618039,DRUGBANK:DB11617,http://purl.obolibrary.org/obo/DRUGBANK_DB11617,none +10.3618039,HP:0002725,http://purl.obolibrary.org/obo/HP_0002725,Systemic lupus erythematosus +10.3618039,MONDO:0002478,http://purl.obolibrary.org/obo/MONDO_0002478,mixed germ cell-sex cord-stromal tumor +10.3618039,MONDO:0020561,http://purl.obolibrary.org/obo/MONDO_0020561,myxoid/round cell liposarcoma +10.3618039,PR:000005952,http://purl.obolibrary.org/obo/PR_000005952,casein kinase II subunit beta +10.3618039,PR:000014928,http://purl.obolibrary.org/obo/PR_000014928,solute carrier family 12 member 5 +10.3618039,PR:000015413,http://purl.obolibrary.org/obo/PR_000015413,son of sevenless homolog 1 +10.3618039,UBERON:0001543,http://purl.obolibrary.org/obo/UBERON_0001543,popliteal lymph node +10.3618039,UBERON:0016398,http://purl.obolibrary.org/obo/UBERON_0016398,lymph node of lower limb +10.3631747,DRUGBANK:DB00356,http://purl.obolibrary.org/obo/DRUGBANK_DB00356,none +10.3631747,GO:0001586,http://purl.obolibrary.org/obo/GO_0001586,Gi/o-coupled serotonin receptor activity +10.3631747,MONDO:0019999,http://purl.obolibrary.org/obo/MONDO_0019999,intestinal malformation +10.3631747,MONDO:0020276,http://purl.obolibrary.org/obo/MONDO_0020276,"pigmentation disorder with eye involvement, excluding albinism" +10.3631747,MONDO:0021944,http://purl.obolibrary.org/obo/MONDO_0021944,auditory neuropathy +10.3631747,PR:000000121,http://purl.obolibrary.org/obo/PR_000000121,Rho-associated protein kinase 2 +10.3631747,PR:000013737,http://purl.obolibrary.org/obo/PR_000013737,retinoic acid receptor beta +10.3631747,PR:000036844,http://purl.obolibrary.org/obo/PR_000036844,G-protein coupled olfactory receptor +10.3631747,PR:Q94AM1,http://purl.obolibrary.org/obo/PR_Q94AM1,none +10.3631747,PR:Q9FJ79,http://purl.obolibrary.org/obo/PR_Q9FJ79,none +10.3645474,DRUGBANK:DB13171,http://purl.obolibrary.org/obo/DRUGBANK_DB13171,none +10.3645474,GO:0002279,http://purl.obolibrary.org/obo/GO_0002279,mast cell activation involved in immune response +10.3645474,GO:0004366,http://purl.obolibrary.org/obo/GO_0004366,glycerol-3-phosphate O-acyltransferase activity +10.3645474,GO:0043303,http://purl.obolibrary.org/obo/GO_0043303,mast cell degranulation +10.3645474,MONDO:0001999,http://purl.obolibrary.org/obo/MONDO_0001999,primary pulmonary hypertension +10.3645474,MONDO:0010010,http://purl.obolibrary.org/obo/MONDO_0010010,Schinzel-Giedion syndrome +10.3645474,MONDO:0018871,http://purl.obolibrary.org/obo/MONDO_0018871,acute myelomonocytic leukemia M4 +10.3645474,UBERON:0003658,http://purl.obolibrary.org/obo/UBERON_0003658,hip muscle +10.3645474,UBERON:0004465,http://purl.obolibrary.org/obo/UBERON_0004465,musculature of neck +10.3645474,UBERON:0011957,http://purl.obolibrary.org/obo/UBERON_0011957,middle hepatic vein +10.365922,CHEBI:35479,http://purl.obolibrary.org/obo/CHEBI_35479,alkali metal salt +10.365922,CL:0000683,http://purl.obolibrary.org/obo/CL_0000683,ependymoglial cell +10.365922,DRUGBANK:DB02852,http://purl.obolibrary.org/obo/DRUGBANK_DB02852,none +10.365922,DRUGBANK:DB07795,http://purl.obolibrary.org/obo/DRUGBANK_DB07795,none +10.365922,DRUGBANK:DB08886,http://purl.obolibrary.org/obo/DRUGBANK_DB08886,none +10.365922,DRUGBANK:DB09100,http://purl.obolibrary.org/obo/DRUGBANK_DB09100,none +10.365922,DRUGBANK:DB14682,http://purl.obolibrary.org/obo/DRUGBANK_DB14682,none +10.365922,GO:0005242,http://purl.obolibrary.org/obo/GO_0005242,inward rectifier potassium channel activity +10.365922,MONDO:0002480,http://purl.obolibrary.org/obo/MONDO_0002480,endometrioid tumor +10.365922,MONDO:0003265,http://purl.obolibrary.org/obo/MONDO_0003265,adjustment disorder +10.365922,PR:000007071,http://purl.obolibrary.org/obo/PR_000007071,homeobox protein engrailed-2 +10.365922,PR:000011116,http://purl.obolibrary.org/obo/PR_000011116,NEDD8 protein +10.3672985,CHEBI:60601,http://purl.obolibrary.org/obo/CHEBI_60601,delta-opioid agent +10.3672985,GO:0019370,http://purl.obolibrary.org/obo/GO_0019370,leukotriene biosynthetic process +10.3672985,GO:0043264,http://purl.obolibrary.org/obo/GO_0043264,extracellular non-membrane-bounded organelle +10.3672985,GO:0044228,http://purl.obolibrary.org/obo/GO_0044228,host cell surface +10.3672985,UBERON:0036225,http://purl.obolibrary.org/obo/UBERON_0036225,respiratory system gland +10.3686768,DRUGBANK:DB01853,http://purl.obolibrary.org/obo/DRUGBANK_DB01853,none +10.3686768,GO:0002335,http://purl.obolibrary.org/obo/GO_0002335,mature B cell differentiation +10.3686768,GO:0015697,http://purl.obolibrary.org/obo/GO_0015697,quaternary ammonium group transport +10.3686768,GO:0044383,http://purl.obolibrary.org/obo/GO_0044383,host chromosome +10.3686768,GO:0099402,http://purl.obolibrary.org/obo/GO_0099402,plant organ development +10.3686768,MONDO:0000693,http://purl.obolibrary.org/obo/MONDO_0000693,bipolar II disorder +10.3686768,MONDO:0006821,http://purl.obolibrary.org/obo/MONDO_0006821,kidney papillary necrosis +10.3686768,MONDO:0017913,http://purl.obolibrary.org/obo/MONDO_0017913,pure or complex hereditary spastic paraplegia +10.3686768,NCBITaxon:121791,http://purl.obolibrary.org/obo/NCBITaxon_121791,Nipah henipavirus +10.3686768,PR:000001568,http://purl.obolibrary.org/obo/PR_000001568,P2Y purinoceptor 1 +10.3686768,PR:000005060,http://purl.obolibrary.org/obo/PR_000005060,calpastatin +10.3686768,PR:000006096,http://purl.obolibrary.org/obo/PR_000006096,"cytochrome P450 11A1, mitochondrial" +10.3686768,UBERON:0001212,http://purl.obolibrary.org/obo/UBERON_0001212,duodenal gland +10.3700571,CHEBI:26399,http://purl.obolibrary.org/obo/CHEBI_26399,purine ribonucleoside +10.3700571,GO:0070008,http://purl.obolibrary.org/obo/GO_0070008,serine-type exopeptidase activity +10.3700571,HP:0000133,http://purl.obolibrary.org/obo/HP_0000133,Gonadal dysgenesis +10.3700571,PR:000008526,http://purl.obolibrary.org/obo/PR_000008526,protein HEXIM1 +10.3700571,PR:000017379,http://purl.obolibrary.org/obo/PR_000017379,histone-lysine N-methyltransferase 2B +10.3700571,PR:Q9ZNS4,http://purl.obolibrary.org/obo/PR_Q9ZNS4,none +10.3700571,UBERON:0008571,http://purl.obolibrary.org/obo/UBERON_0008571,suprahyoid muscle +10.3700571,UBERON:0009060,http://purl.obolibrary.org/obo/UBERON_0009060,air sac +10.3700571,UBERON:0013199,http://purl.obolibrary.org/obo/UBERON_0013199,stria of neuraxis +10.3714392,CHEBI:35569,http://purl.obolibrary.org/obo/CHEBI_35569,alpha-adrenergic agonist +10.3714392,DRUGBANK:DB00568,http://purl.obolibrary.org/obo/DRUGBANK_DB00568,none +10.3714392,DRUGBANK:DB13875,http://purl.obolibrary.org/obo/DRUGBANK_DB13875,none +10.3714392,GO:0001875,http://purl.obolibrary.org/obo/GO_0001875,lipopolysaccharide immune receptor activity +10.3714392,GO:0051129,http://purl.obolibrary.org/obo/GO_0051129,negative regulation of cellular component organization +10.3714392,MONDO:0002260,http://purl.obolibrary.org/obo/MONDO_0002260,hidradenitis +10.3714392,PR:P93831,http://purl.obolibrary.org/obo/PR_P93831,none +10.3714392,UBERON:0001841,http://purl.obolibrary.org/obo/UBERON_0001841,anterior semicircular canal +10.3728233,CL:0000559,http://purl.obolibrary.org/obo/CL_0000559,promonocyte +10.3728233,GO:0017145,http://purl.obolibrary.org/obo/GO_0017145,stem cell division +10.3728233,GO:0046033,http://purl.obolibrary.org/obo/GO_0046033,AMP metabolic process +10.3728233,MONDO:0000665,http://purl.obolibrary.org/obo/MONDO_0000665,apraxia +10.3728233,MONDO:0002012,http://purl.obolibrary.org/obo/MONDO_0002012,methylmalonic acidemia +10.3728233,MONDO:0005667,http://purl.obolibrary.org/obo/MONDO_0005667,biliary dyskinesia +10.3728233,MONDO:0020210,http://purl.obolibrary.org/obo/MONDO_0020210,syndromic hyperopia +10.3728233,PR:000017230,http://purl.obolibrary.org/obo/PR_000017230,none +10.3742093,CL:0002292,http://purl.obolibrary.org/obo/CL_0002292,type I cell of carotid body +10.3742093,GO:0030728,http://purl.obolibrary.org/obo/GO_0030728,ovulation +10.3742093,GO:0043263,http://purl.obolibrary.org/obo/GO_0043263,cellulosome +10.3742093,MONDO:0008347,http://purl.obolibrary.org/obo/MONDO_0008347,idiopathic and/or familial pulmonary arterial hypertension +10.3742093,PR:000002315,http://purl.obolibrary.org/obo/PR_000002315,caspase-6 +10.3742093,PR:000029705,http://purl.obolibrary.org/obo/PR_000029705,GTPase HRas +10.3742093,PR:P34881,http://purl.obolibrary.org/obo/PR_P34881,none +10.3742093,UBERON:0005406,http://purl.obolibrary.org/obo/UBERON_0005406,perirenal fat +10.3742093,UBERON:0016464,http://purl.obolibrary.org/obo/UBERON_0016464,dorsum of nose +10.3755973,DRUGBANK:DB00685,http://purl.obolibrary.org/obo/DRUGBANK_DB00685,none +10.3755973,GO:0051273,http://purl.obolibrary.org/obo/GO_0051273,beta-glucan metabolic process +10.3755973,MONDO:0008426,http://purl.obolibrary.org/obo/MONDO_0008426,Shprintzen-Goldberg syndrome +10.3755973,PR:000001157,http://purl.obolibrary.org/obo/PR_000001157,Toll-like receptor 6 +10.3755973,PR:000004029,http://purl.obolibrary.org/obo/PR_000004029,angiopoietin-related protein 4 +10.3755973,PR:000008047,http://purl.obolibrary.org/obo/PR_000008047,glutaredoxin-1 +10.3755973,PR:000010770,http://purl.obolibrary.org/obo/PR_000010770,mucin-6 +10.3755973,PR:000022834,http://purl.obolibrary.org/obo/PR_000022834,none +10.3769871,CL:0002619,http://purl.obolibrary.org/obo/CL_0002619,adult endothelial progenitor cell +10.3769871,DRUGBANK:DB00881,http://purl.obolibrary.org/obo/DRUGBANK_DB00881,none +10.3769871,GO:0016514,http://purl.obolibrary.org/obo/GO_0016514,SWI/SNF complex +10.3769871,PR:000007813,http://purl.obolibrary.org/obo/PR_000007813,galactokinase +10.3769871,PR:000017541,http://purl.obolibrary.org/obo/PR_000017541,ubiquitin thioesterase OTU1 +10.3769871,UBERON:0011956,http://purl.obolibrary.org/obo/UBERON_0011956,right hepatic vein +10.3783789,CHEBI:50249,http://purl.obolibrary.org/obo/CHEBI_50249,anticoagulant +10.3783789,CHEBI:8015,http://purl.obolibrary.org/obo/CHEBI_8015,Peptidyl-tRNA +10.3783789,CL:0000779,http://purl.obolibrary.org/obo/CL_0000779,multinuclear osteoclast +10.3783789,DRUGBANK:DB14512,http://purl.obolibrary.org/obo/DRUGBANK_DB14512,none +10.3783789,DRUGBANK:DB15963,http://purl.obolibrary.org/obo/DRUGBANK_DB15963,none +10.3783789,GO:0004966,http://purl.obolibrary.org/obo/GO_0004966,galanin receptor activity +10.3783789,MONDO:0020560,http://purl.obolibrary.org/obo/MONDO_0020560,atypical teratoid rhabdoid tumor +10.3783789,PR:000001291,http://purl.obolibrary.org/obo/PR_000001291,C-type asialoglycoprotein receptor +10.3783789,PR:000002110,http://purl.obolibrary.org/obo/PR_000002110,tyrosine-protein kinase BTK +10.3783789,PR:000007892,http://purl.obolibrary.org/obo/PR_000007892,glucagon receptor +10.3797726,CHEBI:63175,http://purl.obolibrary.org/obo/CHEBI_63175,peptidomimetic +10.3797726,CL:0002367,http://purl.obolibrary.org/obo/CL_0002367,trabecular meshwork cell +10.3797726,DRUGBANK:DB00154,http://purl.obolibrary.org/obo/DRUGBANK_DB00154,none +10.3797726,GO:0018685,http://purl.obolibrary.org/obo/GO_0018685,alkane 1-monooxygenase activity +10.3797726,HP:0033747,http://purl.obolibrary.org/obo/HP_0033747,Abnormal exteroceptive sensation +10.3797726,MONDO:0004105,http://purl.obolibrary.org/obo/MONDO_0004105,childhood epithelioid sarcoma +10.3797726,MONDO:0006361,http://purl.obolibrary.org/obo/MONDO_0006361,penile fibromatosis +10.3797726,PR:000009255,http://purl.obolibrary.org/obo/PR_000009255,potassium voltage-gated channel subfamily E member 1 +10.3797726,PR:000024025,http://purl.obolibrary.org/obo/PR_000024025,none +10.3797726,UBERON:0003720,http://purl.obolibrary.org/obo/UBERON_0003720,anterior cranial fossa +10.3811683,GO:0015932,http://purl.obolibrary.org/obo/GO_0015932,nucleobase-containing compound transmembrane transporter activity +10.3811683,GO:0016342,http://purl.obolibrary.org/obo/GO_0016342,catenin complex +10.3811683,MONDO:0001761,http://purl.obolibrary.org/obo/MONDO_0001761,favism +10.3811683,MONDO:0004521,http://purl.obolibrary.org/obo/MONDO_0004521,adult epithelioid sarcoma +10.3811683,MONDO:0018807,http://purl.obolibrary.org/obo/MONDO_0018807,idiopathic ductopenia +10.3811683,MONDO:0018814,http://purl.obolibrary.org/obo/MONDO_0018814,non-severe combined immunodeficiency +10.3811683,PR:000012528,http://purl.obolibrary.org/obo/PR_000012528,Na(+)/H(+) exchange regulatory cofactor NHE-RF3 +10.3811683,PR:000012814,http://purl.obolibrary.org/obo/PR_000012814,phospholipase A-2-activating protein +10.3811683,PR:000016197,http://purl.obolibrary.org/obo/PR_000016197,transcobalamin-2 +10.3811683,PR:000037015,http://purl.obolibrary.org/obo/PR_000037015,alpha-amylase 1 +10.3811683,UBERON:0002358,http://purl.obolibrary.org/obo/UBERON_0002358,peritoneum +10.3825659,DRUGBANK:DB00637,http://purl.obolibrary.org/obo/DRUGBANK_DB00637,none +10.3825659,MONDO:0006921,http://purl.obolibrary.org/obo/MONDO_0006921,Actinomycetales infectious disease +10.3825659,NCBITaxon:1193974,http://purl.obolibrary.org/obo/NCBITaxon_1193974,none +10.3825659,NCBITaxon:9788,http://purl.obolibrary.org/obo/NCBITaxon_9788,Equidae +10.3839655,DRUGBANK:DB11217,http://purl.obolibrary.org/obo/DRUGBANK_DB11217,none +10.3839655,GO:0035938,http://purl.obolibrary.org/obo/GO_0035938,estradiol secretion +10.3839655,GO:0051450,http://purl.obolibrary.org/obo/GO_0051450,myoblast proliferation +10.3839655,GO:0051591,http://purl.obolibrary.org/obo/GO_0051591,response to cAMP +10.3839655,GO:0071871,http://purl.obolibrary.org/obo/GO_0071871,response to epinephrine +10.3839655,NCBITaxon:9789,http://purl.obolibrary.org/obo/NCBITaxon_9789,Equus +10.3839655,PR:000004751,http://purl.obolibrary.org/obo/PR_000004751,baculoviral IAP repeat-containing protein 2 +10.3839655,PR:000005490,http://purl.obolibrary.org/obo/PR_000005490,calcium and integrin-binding protein 1 +10.3839655,PR:000012943,http://purl.obolibrary.org/obo/PR_000012943,1-acylglycerol-3-phosphate O-acyltransferase PNPLA3 +10.3839655,PR:000014374,http://purl.obolibrary.org/obo/PR_000014374,retinoic acid receptor RXR-gamma +10.3839655,PR:000014578,http://purl.obolibrary.org/obo/PR_000014578,SEC14-like protein 3 +10.3839655,UBERON:0005813,http://purl.obolibrary.org/obo/UBERON_0005813,tubercle +10.3839655,UBERON:0006636,http://purl.obolibrary.org/obo/UBERON_0006636,lumbar artery +10.385367,DRUGBANK:DB01388,http://purl.obolibrary.org/obo/DRUGBANK_DB01388,none +10.385367,GO:0055007,http://purl.obolibrary.org/obo/GO_0055007,cardiac muscle cell differentiation +10.385367,MONDO:0005682,http://purl.obolibrary.org/obo/MONDO_0005682,bronchopneumonia +10.385367,MONDO:0005768,http://purl.obolibrary.org/obo/MONDO_0005768,gastrointestinal tuberculosis +10.385367,MONDO:0005983,http://purl.obolibrary.org/obo/MONDO_0005983,tinea favosa +10.385367,MONDO:0010768,http://purl.obolibrary.org/obo/MONDO_0010768,gonadoblastoma +10.385367,NCBITaxon:43742,http://purl.obolibrary.org/obo/NCBITaxon_43742,Calyptratae +10.385367,NCBITaxon:4447,http://purl.obolibrary.org/obo/NCBITaxon_4447,Liliopsida +10.385367,PR:000006295,http://purl.obolibrary.org/obo/PR_000006295,acyl-CoA-binding protein +10.385367,PR:000007303,http://purl.obolibrary.org/obo/PR_000007303,coagulation factor IX +10.385367,PR:000013438,http://purl.obolibrary.org/obo/PR_000013438,pleiotrophin +10.3867706,DRUGBANK:DB04275,http://purl.obolibrary.org/obo/DRUGBANK_DB04275,none +10.3867706,GO:0001608,http://purl.obolibrary.org/obo/GO_0001608,G protein-coupled nucleotide receptor activity +10.3867706,GO:0004128,http://purl.obolibrary.org/obo/GO_0004128,"cytochrome-b5 reductase activity, acting on NAD(P)H" +10.3867706,GO:1902579,http://purl.obolibrary.org/obo/GO_1902579,multi-organism localization +10.3867706,HP:0011356,http://purl.obolibrary.org/obo/HP_0011356,Regional abnormality of skin +10.3867706,HP:0100790,http://purl.obolibrary.org/obo/HP_0100790,Hernia +10.3867706,MONDO:0005788,http://purl.obolibrary.org/obo/MONDO_0005788,hepatitis E virus infection +10.3867706,MONDO:0016043,http://purl.obolibrary.org/obo/MONDO_0016043,isolated cleft lip +10.3867706,PR:000001439,http://purl.obolibrary.org/obo/PR_000001439,adenosine receptor protein +10.3867706,PR:000008772,http://purl.obolibrary.org/obo/PR_000008772,corticosteroid 11-beta-dehydrogenase isozyme 2 +10.3867706,PR:000011119,http://purl.obolibrary.org/obo/PR_000011119,neurofilament light polypeptide +10.3867706,PR:000012231,http://purl.obolibrary.org/obo/PR_000012231,phosphoprotein associated with glycosphingolipid-enriched microdomains 1 +10.3867706,PR:000012843,http://purl.obolibrary.org/obo/PR_000012843,phospholipase D1 +10.3867706,PR:Q9W719,http://purl.obolibrary.org/obo/PR_Q9W719,none +10.3867706,UBERON:0014370,http://purl.obolibrary.org/obo/UBERON_0014370,extrastriate cortex +10.3867706,UBERON:0025525,http://purl.obolibrary.org/obo/UBERON_0025525,motor system +10.388176,CHEBI:36834,http://purl.obolibrary.org/obo/CHEBI_36834,3-hydroxy steroid +10.388176,DRUGBANK:DB14028,http://purl.obolibrary.org/obo/DRUGBANK_DB14028,none +10.388176,GO:0002456,http://purl.obolibrary.org/obo/GO_0002456,T cell mediated immunity +10.388176,MONDO:0020236,http://purl.obolibrary.org/obo/MONDO_0020236,lens position anomaly +10.388176,MONDO:0100004,http://purl.obolibrary.org/obo/MONDO_0100004,mast cell activation syndrome +10.388176,PR:000014217,http://purl.obolibrary.org/obo/PR_000014217,60S ribosomal protein L35 +10.388176,PR:000028855,http://purl.obolibrary.org/obo/PR_000028855,none +10.3895835,CL:0002488,http://purl.obolibrary.org/obo/CL_0002488,trophoblast giant cell +10.3895835,DRUGBANK:DB15839,http://purl.obolibrary.org/obo/DRUGBANK_DB15839,none +10.3895835,MONDO:0004784,http://purl.obolibrary.org/obo/MONDO_0004784,allergic asthma +10.3895835,MONDO:0005933,http://purl.obolibrary.org/obo/MONDO_0005933,pulmonary blastoma +10.3895835,MONDO:0024308,http://purl.obolibrary.org/obo/MONDO_0024308,pseudoxanthoma elasticum (inherited or acquired) +10.3895835,NCBITaxon:28875,http://purl.obolibrary.org/obo/NCBITaxon_28875,none +10.3895835,PR:000006508,http://purl.obolibrary.org/obo/PR_000006508,leukemia-associated protein 1 +10.3909929,DRUGBANK:DB00019,http://purl.obolibrary.org/obo/DRUGBANK_DB00019,none +10.3909929,DRUGBANK:DB00420,http://purl.obolibrary.org/obo/DRUGBANK_DB00420,none +10.3909929,DRUGBANK:DB15802,http://purl.obolibrary.org/obo/DRUGBANK_DB15802,none +10.3909929,GO:0008173,http://purl.obolibrary.org/obo/GO_0008173,RNA methyltransferase activity +10.3909929,MONDO:0004202,http://purl.obolibrary.org/obo/MONDO_0004202,adrenal medulla carcinoma +10.3909929,MONDO:0004609,http://purl.obolibrary.org/obo/MONDO_0004609,herpes simplex infectious disease +10.3909929,MONDO:0006288,http://purl.obolibrary.org/obo/MONDO_0006288,malignant adrenal gland pheochromocytoma +10.3909929,PR:000002002,http://purl.obolibrary.org/obo/PR_000002002,G protein-activated inward rectifier potassium channel 1 +10.3909929,PR:000017639,http://purl.obolibrary.org/obo/PR_000017639,mRNA decay activator protein ZFP36 +10.3909929,PR:000049988,http://purl.obolibrary.org/obo/PR_000049988,cytochrome P450 11B +10.3924044,GO:0042597,http://purl.obolibrary.org/obo/GO_0042597,periplasmic space +10.3924044,GO:1902493,http://purl.obolibrary.org/obo/GO_1902493,acetyltransferase complex +10.3924044,MONDO:0001105,http://purl.obolibrary.org/obo/MONDO_0001105,renal hypertension +10.3924044,MONDO:0004000,http://purl.obolibrary.org/obo/MONDO_0004000,childhood pilocytic astrocytoma +10.3924044,MONDO:0018149,http://purl.obolibrary.org/obo/MONDO_0018149,GM1 gangliosidosis +10.3924044,MONDO:0021313,http://purl.obolibrary.org/obo/MONDO_0021313,eyelid cancer +10.3924044,MONDO:0044211,http://purl.obolibrary.org/obo/MONDO_0044211,idiopathic urticaria +10.3924044,PR:000008294,http://purl.obolibrary.org/obo/PR_000008294,glutathione S-transferase A1 +10.3924044,PR:000010446,http://purl.obolibrary.org/obo/PR_000010446,histone-lysine N-methyltransferase 2D +10.3924044,PR:000015223,http://purl.obolibrary.org/obo/PR_000015223,solute carrier organic anion transporter family member 1B1 +10.3924044,SO:0000339,http://purl.obolibrary.org/obo/SO_0000339,recombination_hotspot +10.3938178,DRUGBANK:DB00589,http://purl.obolibrary.org/obo/DRUGBANK_DB00589,none +10.3938178,GO:0006283,http://purl.obolibrary.org/obo/GO_0006283,transcription-coupled nucleotide-excision repair +10.3938178,GO:0044449,http://purl.obolibrary.org/obo/GO_0044449,contractile fiber part +10.3938178,GO:0046794,http://purl.obolibrary.org/obo/GO_0046794,transport of virus +10.3938178,MONDO:0007564,http://purl.obolibrary.org/obo/MONDO_0007564,pilomatrixoma +10.3938178,MONDO:0015361,http://purl.obolibrary.org/obo/MONDO_0015361,autosomal recessive hereditary demyelinating motor and sensory neuropathy +10.3938178,MONDO:0020640,http://purl.obolibrary.org/obo/MONDO_0020640,autoimmune encephalitis +10.3938178,PR:000002313,http://purl.obolibrary.org/obo/PR_000002313,caspase-4 +10.3938178,PR:Q7DNC3,http://purl.obolibrary.org/obo/PR_Q7DNC3,none +10.3952332,DRUGBANK:DB14764,http://purl.obolibrary.org/obo/DRUGBANK_DB14764,none +10.3952332,GO:0016868,http://purl.obolibrary.org/obo/GO_0016868,"intramolecular transferase activity, phosphotransferases" +10.3952332,MONDO:0005631,http://purl.obolibrary.org/obo/MONDO_0005631,actinomycosis +10.3952332,MONDO:0005820,http://purl.obolibrary.org/obo/MONDO_0005820,Lassa fever +10.3952332,NCBITaxon:590,http://purl.obolibrary.org/obo/NCBITaxon_590,Salmonella +10.3952332,PR:000001786,http://purl.obolibrary.org/obo/PR_000001786,prominin-1 +10.3952332,PR:000007853,http://purl.obolibrary.org/obo/PR_000007853,growth arrest-specific protein 6 +10.3952332,PR:000023306,http://purl.obolibrary.org/obo/PR_000023306,none +10.3952332,PR:P15539,http://purl.obolibrary.org/obo/PR_P15539,none +10.3952332,PR:Q9XZE5,http://purl.obolibrary.org/obo/PR_Q9XZE5,none +10.3966507,DRUGBANK:DB09282,http://purl.obolibrary.org/obo/DRUGBANK_DB09282,none +10.3966507,GO:0008207,http://purl.obolibrary.org/obo/GO_0008207,C21-steroid hormone metabolic process +10.3966507,GO:0044766,http://purl.obolibrary.org/obo/GO_0044766,multi-organism transport +10.3966507,HP:0009826,http://purl.obolibrary.org/obo/HP_0009826,Limb undergrowth +10.3966507,MONDO:0005035,http://purl.obolibrary.org/obo/MONDO_0005035,ganglioneuroblastoma +10.3966507,MONDO:0043862,http://purl.obolibrary.org/obo/MONDO_0043862,voice disorders +10.3966507,PR:000010378,http://purl.obolibrary.org/obo/PR_000010378,"alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase" +10.3966507,PR:000013107,http://purl.obolibrary.org/obo/PR_000013107,protein phosphatase 1 regulatory subunit 12A +10.3966507,PR:000016218,http://purl.obolibrary.org/obo/PR_000016218,transcriptional enhancer factor TEF-1 +10.3966507,PR:000023713,http://purl.obolibrary.org/obo/PR_000023713,none +10.3966507,UBERON:0005303,http://purl.obolibrary.org/obo/UBERON_0005303,hypogastric nerve +10.3980701,CHEBI:29075,http://purl.obolibrary.org/obo/CHEBI_29075,mononucleotide +10.3980701,DRUGBANK:DB10827,http://purl.obolibrary.org/obo/DRUGBANK_DB10827,none +10.3980701,GO:0002313,http://purl.obolibrary.org/obo/GO_0002313,mature B cell differentiation involved in immune response +10.3980701,GO:0015838,http://purl.obolibrary.org/obo/GO_0015838,amino-acid betaine transport +10.3980701,GO:0051323,http://purl.obolibrary.org/obo/GO_0051323,metaphase +10.3980701,MONDO:0004357,http://purl.obolibrary.org/obo/MONDO_0004357,carcinoma of supraglottis +10.3980701,MONDO:0020215,http://purl.obolibrary.org/obo/MONDO_0020215,syndromic corneal dystrophy +10.3980701,NCBITaxon:178830,http://purl.obolibrary.org/obo/NCBITaxon_178830,Bornaviridae +10.3980701,NCBITaxon:2732008,http://purl.obolibrary.org/obo/NCBITaxon_2732008,Preplasmiviricota +10.3980701,PR:000015477,http://purl.obolibrary.org/obo/PR_000015477,spastin +10.3980701,PR:000044680,http://purl.obolibrary.org/obo/PR_000044680,pannexin protein +10.3994916,CHEBI:32876,http://purl.obolibrary.org/obo/CHEBI_32876,tertiary amine +10.3994916,DRUGBANK:DB06750,http://purl.obolibrary.org/obo/DRUGBANK_DB06750,none +10.3994916,GO:0003333,http://purl.obolibrary.org/obo/GO_0003333,amino acid transmembrane transport +10.3994916,GO:0051650,http://purl.obolibrary.org/obo/GO_0051650,establishment of vesicle localization +10.3994916,MONDO:0001200,http://purl.obolibrary.org/obo/MONDO_0001200,secondary hypertension +10.3994916,MONDO:0002413,http://purl.obolibrary.org/obo/MONDO_0002413,glycogen storage disease I +10.3994916,MONDO:0007710,http://purl.obolibrary.org/obo/MONDO_0007710,facial hemiatrophy +10.3994916,MONDO:0018995,http://purl.obolibrary.org/obo/MONDO_0018995,Charcot-Marie-Tooth disease type 4 +10.3994916,NCBITaxon:41705,http://purl.obolibrary.org/obo/NCBITaxon_41705,Protacanthopterygii +10.3994916,PR:000001141,http://purl.obolibrary.org/obo/PR_000001141,interleukin-17D +10.3994916,PR:000004854,http://purl.obolibrary.org/obo/PR_000004854,mitotic checkpoint serine/threonine-protein kinase BUB1 +10.3994916,PR:000007594,http://purl.obolibrary.org/obo/PR_000007594,folate receptor alpha +10.3994916,PR:P63159,http://purl.obolibrary.org/obo/PR_P63159,none +10.3994916,SO:0000453,http://purl.obolibrary.org/obo/SO_0000453,chromosomal_transposition +10.3994916,UBERON:0004703,http://purl.obolibrary.org/obo/UBERON_0004703,dorsal thalamus +10.4009151,DRUGBANK:DB00046,http://purl.obolibrary.org/obo/DRUGBANK_DB00046,none +10.4009151,GO:0001640,http://purl.obolibrary.org/obo/GO_0001640,adenylate cyclase inhibiting G protein-coupled glutamate receptor activity +10.4009151,GO:0009877,http://purl.obolibrary.org/obo/GO_0009877,nodulation +10.4009151,GO:0042554,http://purl.obolibrary.org/obo/GO_0042554,superoxide anion generation +10.4009151,GO:0098988,http://purl.obolibrary.org/obo/GO_0098988,G protein-coupled glutamate receptor activity +10.4009151,MONDO:0007492,http://purl.obolibrary.org/obo/MONDO_0007492,early-onset generalized limb-onset dystonia +10.4009151,MONDO:0019220,http://purl.obolibrary.org/obo/MONDO_0019220,inborn disorder of cobalamin metabolism and transport +10.4009151,PR:000006147,http://purl.obolibrary.org/obo/PR_000006147,lanosterol 14-alpha demethylase +10.4009151,PR:000009451,http://purl.obolibrary.org/obo/PR_000009451,"keratin, type I cytoskeletal 10" +10.4009151,PR:000012837,http://purl.obolibrary.org/obo/PR_000012837,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase gamma-2" +10.4009151,UBERON:0004088,http://purl.obolibrary.org/obo/UBERON_0004088,orbital region +10.4009151,UBERON:0011907,http://purl.obolibrary.org/obo/UBERON_0011907,gastrocnemius medialis +10.4023406,CL:0010008,http://purl.obolibrary.org/obo/CL_0010008,cardiac endothelial cell +10.4023406,GO:0008355,http://purl.obolibrary.org/obo/GO_0008355,olfactory learning +10.4023406,MONDO:0000015,http://purl.obolibrary.org/obo/MONDO_0000015,classic complement early component deficiency +10.4023406,MONDO:0019251,http://purl.obolibrary.org/obo/MONDO_0019251,oligosaccharidosis +10.4023406,MONDO:0021047,http://purl.obolibrary.org/obo/MONDO_0021047,breast phyllodes tumor +10.4023406,MONDO:0100116,http://purl.obolibrary.org/obo/MONDO_0100116,Middle East respiratory syndrome +10.4023406,NCBITaxon:555864,http://purl.obolibrary.org/obo/NCBITaxon_555864,unclassified Bornaviridae +10.4023406,PR:000016579,http://purl.obolibrary.org/obo/PR_000016579,tropomyosin alpha-1 chain +10.4023406,PR:000030266,http://purl.obolibrary.org/obo/PR_000030266,ATP synthase subunit a +10.4023406,PR:000037376,http://purl.obolibrary.org/obo/PR_000037376,none +10.4037681,CHEBI:16701,http://purl.obolibrary.org/obo/CHEBI_16701,nucleoside 5'-phosphate +10.4037681,DRUGBANK:DB00648,http://purl.obolibrary.org/obo/DRUGBANK_DB00648,none +10.4037681,DRUGBANK:DB01138,http://purl.obolibrary.org/obo/DRUGBANK_DB01138,none +10.4037681,GO:0046459,http://purl.obolibrary.org/obo/GO_0046459,short-chain fatty acid metabolic process +10.4037681,NCBITaxon:186458,http://purl.obolibrary.org/obo/NCBITaxon_186458,none +10.4037681,NCBITaxon:7148,http://purl.obolibrary.org/obo/NCBITaxon_7148,Nematocera +10.4037681,PR:000012538,http://purl.obolibrary.org/obo/PR_000012538,paternally-expressed gene 3 protein +10.4037681,PR:000014505,http://purl.obolibrary.org/obo/PR_000014505,uteroglobin +10.4037681,UBERON:0007318,http://purl.obolibrary.org/obo/UBERON_0007318,saphenous vein +10.4051977,DRUGBANK:DB03206,http://purl.obolibrary.org/obo/DRUGBANK_DB03206,none +10.4051977,DRUGBANK:DB11820,http://purl.obolibrary.org/obo/DRUGBANK_DB11820,none +10.4051977,DRUGBANK:DB12405,http://purl.obolibrary.org/obo/DRUGBANK_DB12405,none +10.4051977,DRUGBANK:DB14375,http://purl.obolibrary.org/obo/DRUGBANK_DB14375,none +10.4051977,GO:0006656,http://purl.obolibrary.org/obo/GO_0006656,phosphatidylcholine biosynthetic process +10.4051977,GO:0031528,http://purl.obolibrary.org/obo/GO_0031528,microvillus membrane +10.4051977,GO:0033648,http://purl.obolibrary.org/obo/GO_0033648,host intracellular membrane-bounded organelle +10.4051977,MONDO:0001674,http://purl.obolibrary.org/obo/MONDO_0001674,diverticulitis of colon +10.4051977,MONDO:0019199,http://purl.obolibrary.org/obo/MONDO_0019199,interstitial granulomatous dermatitis with arthritis +10.4051977,NCBITaxon:2732529,http://purl.obolibrary.org/obo/NCBITaxon_2732529,Tectiliviricetes +10.4051977,NCBITaxon:2732559,http://purl.obolibrary.org/obo/NCBITaxon_2732559,Rowavirales +10.4051977,UBERON:0005805,http://purl.obolibrary.org/obo/UBERON_0005805,dorsal aorta +10.4051977,UBERON:0006960,http://purl.obolibrary.org/obo/UBERON_0006960,ovary stroma +10.4066294,DRUGBANK:DB01790,http://purl.obolibrary.org/obo/DRUGBANK_DB01790,none +10.4066294,GO:0030003,http://purl.obolibrary.org/obo/GO_0030003,cellular cation homeostasis +10.4066294,GO:0030243,http://purl.obolibrary.org/obo/GO_0030243,cellulose metabolic process +10.4066294,MONDO:0001299,http://purl.obolibrary.org/obo/MONDO_0001299,diabetic autonomic neuropathy +10.4066294,MONDO:0006806,http://purl.obolibrary.org/obo/MONDO_0006806,intermediate uveitis +10.4066294,MONDO:0017124,http://purl.obolibrary.org/obo/MONDO_0017124,noma +10.4066294,PR:000007867,http://purl.obolibrary.org/obo/PR_000007867,lysosomal acid glucosylceramidase +10.4066294,PR:000012222,http://purl.obolibrary.org/obo/PR_000012222,protein-arginine deiminase type-4 +10.4066294,PR:000016665,http://purl.obolibrary.org/obo/PR_000016665,E3 ubiquitin-protein ligase TRIM69 +10.4066294,UBERON:0002135,http://purl.obolibrary.org/obo/UBERON_0002135,mitral valve +10.4066294,UBERON:0003352,http://purl.obolibrary.org/obo/UBERON_0003352,epithelium of midgut +10.4080631,GO:1901699,http://purl.obolibrary.org/obo/GO_1901699,cellular response to nitrogen compound +10.4080631,HP:0001004,http://purl.obolibrary.org/obo/HP_0001004,Lymphedema +10.4080631,HP:0007556,http://purl.obolibrary.org/obo/HP_0007556,Plantar hyperkeratosis +10.4080631,MONDO:0016681,http://purl.obolibrary.org/obo/MONDO_0016681,gliosarcoma +10.4080631,PR:000011390,http://purl.obolibrary.org/obo/PR_000011390,nuclear receptor subfamily 0 group B member 1 +10.4080631,PR:000014179,http://purl.obolibrary.org/obo/PR_000014179,retinal pigment epithelium-specific 65 kDa protein +10.4080631,UBERON:0009571,http://purl.obolibrary.org/obo/UBERON_0009571,ventral midline +10.4094988,DRUGBANK:DB00861,http://purl.obolibrary.org/obo/DRUGBANK_DB00861,none +10.4094988,GO:1902074,http://purl.obolibrary.org/obo/GO_1902074,response to salt +10.4094988,MONDO:0025667,http://purl.obolibrary.org/obo/MONDO_0025667,limbal stem cell deficiency +10.4094988,NCBITaxon:12300,http://purl.obolibrary.org/obo/NCBITaxon_12300,none +10.4094988,PR:000011650,http://purl.obolibrary.org/obo/PR_000011650,sigma non-opioid intracellular receptor 1 +10.4094988,PR:000016474,http://purl.obolibrary.org/obo/PR_000016474,tumor necrosis factor alpha-induced protein 3 +10.4094988,PR:Q9LKW9,http://purl.obolibrary.org/obo/PR_Q9LKW9,none +10.4094988,UBERON:0035037,http://purl.obolibrary.org/obo/UBERON_0035037,jaw epithelium +10.4094988,UBERON:3011048,http://purl.obolibrary.org/obo/UBERON_3011048,genital system +10.4109366,CHEBI:51447,http://purl.obolibrary.org/obo/CHEBI_51447,organic univalent group +10.4109366,DRUGBANK:DB00912,http://purl.obolibrary.org/obo/DRUGBANK_DB00912,none +10.4109366,DRUGBANK:DB03635,http://purl.obolibrary.org/obo/DRUGBANK_DB03635,none +10.4109366,DRUGBANK:DB05109,http://purl.obolibrary.org/obo/DRUGBANK_DB05109,none +10.4109366,DRUGBANK:DB11156,http://purl.obolibrary.org/obo/DRUGBANK_DB11156,none +10.4109366,GO:0097427,http://purl.obolibrary.org/obo/GO_0097427,microtubule bundle +10.4109366,MONDO:0018998,http://purl.obolibrary.org/obo/MONDO_0018998,Leber congenital amaurosis +10.4109366,MONDO:0019959,http://purl.obolibrary.org/obo/MONDO_0019959,glucagonoma +10.4109366,MONDO:0036595,http://purl.obolibrary.org/obo/MONDO_0036595,ovarian Sertoli-Leydig cell tumor +10.4109366,NCBITaxon:1307799,http://purl.obolibrary.org/obo/NCBITaxon_1307799,none +10.4109366,PR:000008127,http://purl.obolibrary.org/obo/PR_000008127,progonadoliberin-1 +10.4109366,PR:O48840,http://purl.obolibrary.org/obo/PR_O48840,none +10.4109366,PR:Q9FMR0,http://purl.obolibrary.org/obo/PR_Q9FMR0,none +10.4123765,NCBITaxon:135622,http://purl.obolibrary.org/obo/NCBITaxon_135622,none +10.4123765,PR:000003265,http://purl.obolibrary.org/obo/PR_000003265,collagen alpha-2(I) chain +10.4123765,PR:000007623,http://purl.obolibrary.org/obo/PR_000007623,forkhead box protein G1 +10.4123765,PR:000008943,http://purl.obolibrary.org/obo/PR_000008943,insulin-like growth factor 2 mRNA-binding protein 1 +10.4123765,PR:000014084,http://purl.obolibrary.org/obo/PR_000014084,E3 ubiquitin-protein ligase RNF138 +10.4123765,PR:000015191,http://purl.obolibrary.org/obo/PR_000015191,sodium-dependent proline transporter +10.4123765,PR:000016544,http://purl.obolibrary.org/obo/PR_000016544,DNA topoisomerase 2-alpha +10.4123765,PR:000016576,http://purl.obolibrary.org/obo/PR_000016576,tryptophan 5-hydroxylase 2 +10.4123765,UBERON:0001003,http://purl.obolibrary.org/obo/UBERON_0001003,skin epidermis +10.4138185,DRUGBANK:DB00542,http://purl.obolibrary.org/obo/DRUGBANK_DB00542,none +10.4138185,MONDO:0000424,http://purl.obolibrary.org/obo/MONDO_0000424,inborn vitamin B12 deficiency +10.4138185,MONDO:0020109,http://purl.obolibrary.org/obo/MONDO_0020109,constitutional megaloblastic anemia due to vitamin B12 metabolism disorder +10.4138185,NCBITaxon:2732553,http://purl.obolibrary.org/obo/NCBITaxon_2732553,none +10.4138185,PR:000014305,http://purl.obolibrary.org/obo/PR_000014305,ribonucleoside-diphosphate reductase large subunit +10.4138185,PR:000026740,http://purl.obolibrary.org/obo/PR_000026740,cyclin D1:Cdk4 +10.4152625,CL:0000592,http://purl.obolibrary.org/obo/CL_0000592,large luteal cell +10.4152625,GO:0001621,http://purl.obolibrary.org/obo/GO_0001621,G protein-coupled ADP receptor activity +10.4152625,GO:0070508,http://purl.obolibrary.org/obo/GO_0070508,cholesterol import +10.4152625,MONDO:0024633,http://purl.obolibrary.org/obo/MONDO_0024633,hypertensive renal disease +10.4152625,MONDO:0024746,http://purl.obolibrary.org/obo/MONDO_0024746,immature teratoma +10.4152625,NCBITaxon:12455,http://purl.obolibrary.org/obo/NCBITaxon_12455,Borna disease virus +10.4152625,PR:000000710,http://purl.obolibrary.org/obo/PR_000000710,shal-related voltage-gated potassium channel alpha subunit +10.4152625,PR:000008263,http://purl.obolibrary.org/obo/PR_000008263,metabotropic glutamate receptor 1 +10.4152625,PR:000016517,http://purl.obolibrary.org/obo/PR_000016517,CUGBP Elav-like family member 3 +10.4152625,PR:000023959,http://purl.obolibrary.org/obo/PR_000023959,none +10.4152625,PR:P78759,http://purl.obolibrary.org/obo/PR_P78759,none +10.4167086,CHEBI:26395,http://purl.obolibrary.org/obo/CHEBI_26395,purine nucleotide +10.4167086,DRUGBANK:DB04854,http://purl.obolibrary.org/obo/DRUGBANK_DB04854,none +10.4167086,GO:0071495,http://purl.obolibrary.org/obo/GO_0071495,cellular response to endogenous stimulus +10.4167086,MONDO:0024912,http://purl.obolibrary.org/obo/MONDO_0024912,cat disease +10.4167086,NCBITaxon:2231382,http://purl.obolibrary.org/obo/NCBITaxon_2231382,none +10.4167086,PR:000001120,http://purl.obolibrary.org/obo/PR_000001120,apelin receptor +10.4167086,PR:000001885,http://purl.obolibrary.org/obo/PR_000001885,macrophage scavenger receptor types I and II +10.4167086,PR:000013664,http://purl.obolibrary.org/obo/PR_000013664,cell cycle checkpoint protein RAD1 +10.4167086,PR:Q9SHE7,http://purl.obolibrary.org/obo/PR_Q9SHE7,none +10.4181569,DRUGBANK:DB03470,http://purl.obolibrary.org/obo/DRUGBANK_DB03470,none +10.4181569,DRUGBANK:DB06700,http://purl.obolibrary.org/obo/DRUGBANK_DB06700,none +10.4181569,GO:0030187,http://purl.obolibrary.org/obo/GO_0030187,melatonin biosynthetic process +10.4181569,HP:0004349,http://purl.obolibrary.org/obo/HP_0004349,Reduced bone mineral density +10.4181569,MONDO:0017576,http://purl.obolibrary.org/obo/MONDO_0017576,"46,XX disorder of sex development" +10.4181569,MONDO:0018562,http://purl.obolibrary.org/obo/MONDO_0018562,genetic otorhinolaryngological malformation +10.4181569,MONDO:0019353,http://purl.obolibrary.org/obo/MONDO_0019353,Stargardt disease +10.4181569,PR:000002240,http://purl.obolibrary.org/obo/PR_000002240,tyrosine-protein kinase Tec +10.4181569,PR:000005961,http://purl.obolibrary.org/obo/PR_000005961,cysteine and glycine-rich protein 3 +10.4181569,PR:000007488,http://purl.obolibrary.org/obo/PR_000007488,fibroblast growth factor 19 +10.4181569,UBERON:0004714,http://purl.obolibrary.org/obo/UBERON_0004714,septum pellucidum +10.4181569,UBERON:0034919,http://purl.obolibrary.org/obo/UBERON_0034919,juvenile stage +10.4181569,UBERON:3000948,http://purl.obolibrary.org/obo/UBERON_3000948,articular process +10.4196072,DRUGBANK:DB00024,http://purl.obolibrary.org/obo/DRUGBANK_DB00024,none +10.4196072,DRUGBANK:DB09267,http://purl.obolibrary.org/obo/DRUGBANK_DB09267,none +10.4196072,GO:0015706,http://purl.obolibrary.org/obo/GO_0015706,nitrate transport +10.4196072,GO:0015995,http://purl.obolibrary.org/obo/GO_0015995,chlorophyll biosynthetic process +10.4196072,GO:0044453,http://purl.obolibrary.org/obo/GO_0044453,none +10.4196072,GO:0045480,http://purl.obolibrary.org/obo/GO_0045480,galactose oxidase activity +10.4196072,GO:1990839,http://purl.obolibrary.org/obo/GO_1990839,response to endothelin +10.4196072,HP:0100872,http://purl.obolibrary.org/obo/HP_0100872,Abnormality of the plantar skin of foot +10.4196072,NCBITaxon:2169577,http://purl.obolibrary.org/obo/NCBITaxon_2169577,none +10.4196072,PR:000009279,http://purl.obolibrary.org/obo/PR_000009279,"KH domain-containing, RNA-binding, signal transduction-associated protein 1" +10.4196072,PR:000012227,http://purl.obolibrary.org/obo/PR_000012227,platelet-activating factor acetylhydrolase IB subunit beta +10.4196072,PR:000016271,http://purl.obolibrary.org/obo/PR_000016271,transcription factor E3 +10.4210596,DRUGBANK:DB04824,http://purl.obolibrary.org/obo/DRUGBANK_DB04824,none +10.4210596,GO:0097658,http://purl.obolibrary.org/obo/GO_0097658,Asi complex +10.4210596,MONDO:0003917,http://purl.obolibrary.org/obo/MONDO_0003917,heart lymphoma +10.4210596,UBERON:0001613,http://purl.obolibrary.org/obo/UBERON_0001613,occipital artery +10.4225142,CHEBI:26400,http://purl.obolibrary.org/obo/CHEBI_26400,purine ribonucleotide +10.4225142,CHEBI:33249,http://purl.obolibrary.org/obo/CHEBI_33249,organyl group +10.4225142,GO:0004462,http://purl.obolibrary.org/obo/GO_0004462,lactoylglutathione lyase activity +10.4225142,MONDO:0005715,http://purl.obolibrary.org/obo/MONDO_0005715,congenital toxoplasmosis +10.4225142,NCBITaxon:22,http://purl.obolibrary.org/obo/NCBITaxon_22,none +10.4225142,PR:P46944,http://purl.obolibrary.org/obo/PR_P46944,none +10.4225142,UBERON:0000407,http://purl.obolibrary.org/obo/UBERON_0000407,sympathetic trunk +10.4225142,UBERON:0001540,http://purl.obolibrary.org/obo/UBERON_0001540,peroneal artery +10.4225142,UBERON:0018406,http://purl.obolibrary.org/obo/UBERON_0018406,mental nerve +10.4225142,UBERON:0035292,http://purl.obolibrary.org/obo/UBERON_0035292,branch of posterior tibial artery +10.4239708,CHEBI:35232,http://purl.obolibrary.org/obo/CHEBI_35232,radiopharmaceutical +10.4239708,NCBITaxon:11611,http://purl.obolibrary.org/obo/NCBITaxon_11611,none +10.4239708,NCBITaxon:119163,http://purl.obolibrary.org/obo/NCBITaxon_119163,none +10.4239708,UBERON:0004922,http://purl.obolibrary.org/obo/UBERON_0004922,postnatal subventricular zone +10.4239708,UBERON:0014437,http://purl.obolibrary.org/obo/UBERON_0014437,iliac crest +10.4254296,CL:0002085,http://purl.obolibrary.org/obo/CL_0002085,tanycyte +10.4254296,DRUGBANK:DB00659,http://purl.obolibrary.org/obo/DRUGBANK_DB00659,none +10.4254296,DRUGBANK:DB01428,http://purl.obolibrary.org/obo/DRUGBANK_DB01428,none +10.4254296,DRUGBANK:DB09033,http://purl.obolibrary.org/obo/DRUGBANK_DB09033,none +10.4254296,MONDO:0000740,http://purl.obolibrary.org/obo/MONDO_0000740,adenoid hypertrophy +10.4254296,MONDO:0024456,http://purl.obolibrary.org/obo/MONDO_0024456,anterior segment dysgenesis 3 +10.4254296,PR:000003463,http://purl.obolibrary.org/obo/PR_000003463,eomesodermin +10.4254296,PR:000016276,http://purl.obolibrary.org/obo/PR_000016276,trefoil factor 3 +10.4268906,DRUGBANK:DB03205,http://purl.obolibrary.org/obo/DRUGBANK_DB03205,none +10.4268906,GO:0005337,http://purl.obolibrary.org/obo/GO_0005337,nucleoside transmembrane transporter activity +10.4268906,GO:1900542,http://purl.obolibrary.org/obo/GO_1900542,regulation of purine nucleotide metabolic process +10.4268906,MONDO:0009326,http://purl.obolibrary.org/obo/MONDO_0009326,congenital heart block +10.4268906,MONDO:0021450,http://purl.obolibrary.org/obo/MONDO_0021450,benign neoplasm of heart +10.4268906,MONDO:0029000,http://purl.obolibrary.org/obo/MONDO_0029000,poisoning +10.4268906,NCBITaxon:10117,http://purl.obolibrary.org/obo/NCBITaxon_10117,none +10.4268906,NCBITaxon:267890,http://purl.obolibrary.org/obo/NCBITaxon_267890,none +10.4268906,PR:000005940,http://purl.obolibrary.org/obo/PR_000005940,alpha-S1-casein +10.4283536,CHEBI:15734,http://purl.obolibrary.org/obo/CHEBI_15734,primary alcohol +10.4283536,DRUGBANK:DB01226,http://purl.obolibrary.org/obo/DRUGBANK_DB01226,none +10.4283536,DRUGBANK:DB01357,http://purl.obolibrary.org/obo/DRUGBANK_DB01357,none +10.4283536,DRUGBANK:DB12661,http://purl.obolibrary.org/obo/DRUGBANK_DB12661,none +10.4283536,DRUGBANK:DB15334,http://purl.obolibrary.org/obo/DRUGBANK_DB15334,none +10.4283536,GO:0009268,http://purl.obolibrary.org/obo/GO_0009268,response to pH +10.4283536,GO:0009808,http://purl.obolibrary.org/obo/GO_0009808,lignin metabolic process +10.4283536,GO:0014072,http://purl.obolibrary.org/obo/GO_0014072,response to isoquinoline alkaloid +10.4283536,MONDO:0007488,http://purl.obolibrary.org/obo/MONDO_0007488,Lewy body dementia +10.4283536,MONDO:0009436,http://purl.obolibrary.org/obo/MONDO_0009436,congenital hypothalamic hamartoma syndrome +10.4283536,NCBITaxon:70863,http://purl.obolibrary.org/obo/NCBITaxon_70863,none +10.4283536,PR:000005118,http://purl.obolibrary.org/obo/PR_000005118,G2/mitotic-specific cyclin-B2 +10.4283536,PR:000010874,http://purl.obolibrary.org/obo/PR_000010874,myocardin +10.4283536,PR:000011379,http://purl.obolibrary.org/obo/PR_000011379,atrial natriuretic peptide receptor 3 +10.4283536,PR:000014418,http://purl.obolibrary.org/obo/PR_000014418,protein S100-A9 +10.4283536,PR:Q9SBJ6,http://purl.obolibrary.org/obo/PR_Q9SBJ6,none +10.4283536,SO:0001842,http://purl.obolibrary.org/obo/SO_0001842,AP_1_binding_site +10.4283536,UBERON:0006204,http://purl.obolibrary.org/obo/UBERON_0006204,inguinal ligament +10.4298188,DRUGBANK:DB00191,http://purl.obolibrary.org/obo/DRUGBANK_DB00191,none +10.4298188,MONDO:0003825,http://purl.obolibrary.org/obo/MONDO_0003825,kidney oncocytoma +10.4298188,MONDO:0004225,http://purl.obolibrary.org/obo/MONDO_0004225,monoclonal gammopathy of uncertain significance +10.4298188,MONDO:0009509,http://purl.obolibrary.org/obo/MONDO_0009509,Landau-Kleffner syndrome +10.4298188,MONDO:0011705,http://purl.obolibrary.org/obo/MONDO_0011705,lymphangioleiomyomatosis +10.4298188,MONDO:0016112,http://purl.obolibrary.org/obo/MONDO_0016112,inclusion myopathy +10.4298188,PR:000013160,http://purl.obolibrary.org/obo/PR_000013160,palmitoyl-protein thioesterase 1 +10.4298188,UBERON:0003072,http://purl.obolibrary.org/obo/UBERON_0003072,optic cup +10.4312862,GO:0042629,http://purl.obolibrary.org/obo/GO_0042629,mast cell granule +10.4312862,GO:0043278,http://purl.obolibrary.org/obo/GO_0043278,response to morphine +10.4312862,NCBITaxon:11636,http://purl.obolibrary.org/obo/NCBITaxon_11636,Reticuloendotheliosis virus +10.4312862,NCBITaxon:69973,http://purl.obolibrary.org/obo/NCBITaxon_69973,none +10.4312862,PR:000001328,http://purl.obolibrary.org/obo/PR_000001328,carcinoembryonic antigen-related cell adhesion molecule 1 +10.4312862,PR:000008540,http://purl.obolibrary.org/obo/PR_000008540,hematopoietically-expressed homeobox protein HHEX +10.4312862,PR:000010747,http://purl.obolibrary.org/obo/PR_000010747,methionine synthase +10.4312862,SO:0000552,http://purl.obolibrary.org/obo/SO_0000552,Shine_Dalgarno_sequence +10.4312862,UBERON:0003534,http://purl.obolibrary.org/obo/UBERON_0003534,tail skin +10.4312862,UBERON:0003846,http://purl.obolibrary.org/obo/UBERON_0003846,thymus epithelium +10.4327557,CL:0000285,http://purl.obolibrary.org/obo/CL_0000285,none +10.4327557,CL:0000388,http://purl.obolibrary.org/obo/CL_0000388,tendon cell +10.4327557,DRUGBANK:DB00800,http://purl.obolibrary.org/obo/DRUGBANK_DB00800,none +10.4327557,GO:0035371,http://purl.obolibrary.org/obo/GO_0035371,microtubule plus-end +10.4327557,HP:0001879,http://purl.obolibrary.org/obo/HP_0001879,Abnormal eosinophil morphology +10.4327557,HP:0001880,http://purl.obolibrary.org/obo/HP_0001880,Eosinophilia +10.4327557,HP:0020064,http://purl.obolibrary.org/obo/HP_0020064,Abnormal eosinophil count +10.4327557,MONDO:0002527,http://purl.obolibrary.org/obo/MONDO_0002527,keratoacanthoma +10.4327557,MONDO:0007405,http://purl.obolibrary.org/obo/MONDO_0007405,Crouzon syndrome +10.4327557,MONDO:0017043,http://purl.obolibrary.org/obo/MONDO_0017043,congenital mesoblastic nephroma +10.4342273,DRUGBANK:DB00905,http://purl.obolibrary.org/obo/DRUGBANK_DB00905,none +10.4342273,DRUGBANK:DB11247,http://purl.obolibrary.org/obo/DRUGBANK_DB11247,none +10.4342273,MONDO:0043975,http://purl.obolibrary.org/obo/MONDO_0043975,autonomic dysreflexia +10.4342273,PR:000010769,http://purl.obolibrary.org/obo/PR_000010769,mucin-5B +10.4342273,PR:000010775,http://purl.obolibrary.org/obo/PR_000010775,PWWP domain-containing DNA repair factor 3A +10.4342273,PR:000050033,http://purl.obolibrary.org/obo/PR_000050033,VIP and PACAP receptor +10.4342273,PR:O48847,http://purl.obolibrary.org/obo/PR_O48847,none +10.4342273,SO:0000098,http://purl.obolibrary.org/obo/SO_0000098,plasmid_gene +10.4342273,UBERON:0003694,http://purl.obolibrary.org/obo/UBERON_0003694,atlanto-axial joint +10.4357012,DRUGBANK:DB00756,http://purl.obolibrary.org/obo/DRUGBANK_DB00756,none +10.4357012,GO:0031248,http://purl.obolibrary.org/obo/GO_0031248,protein acetyltransferase complex +10.4357012,HP:0000359,http://purl.obolibrary.org/obo/HP_0000359,Abnormality of the inner ear +10.4357012,MONDO:0002631,http://purl.obolibrary.org/obo/MONDO_0002631,conventional osteosarcoma +10.4357012,PR:000011118,http://purl.obolibrary.org/obo/PR_000011118,neurofilament heavy polypeptide +10.4357012,PR:000015738,http://purl.obolibrary.org/obo/PR_000015738,stress-induced-phosphoprotein 1 +10.4357012,UBERON:0004141,http://purl.obolibrary.org/obo/UBERON_0004141,heart tube +10.4371772,DRUGBANK:DB10576,http://purl.obolibrary.org/obo/DRUGBANK_DB10576,none +10.4371772,GO:0016605,http://purl.obolibrary.org/obo/GO_0016605,PML body +10.4371772,MONDO:0004192,http://purl.obolibrary.org/obo/MONDO_0004192,urethra cancer +10.4371772,MONDO:0018010,http://purl.obolibrary.org/obo/MONDO_0018010,juvenile idiopathic inflammatory myopathy +10.4371772,PR:P42844,http://purl.obolibrary.org/obo/PR_P42844,none +10.4386554,CHEBI:59282,http://purl.obolibrary.org/obo/CHEBI_59282,kappa-opioid receptor agonist +10.4386554,CHEBI:60603,http://purl.obolibrary.org/obo/CHEBI_60603,kappa-opioid agent +10.4386554,GO:0004090,http://purl.obolibrary.org/obo/GO_0004090,carbonyl reductase (NADPH) activity +10.4386554,GO:0004300,http://purl.obolibrary.org/obo/GO_0004300,enoyl-CoA hydratase activity +10.4386554,GO:0080112,http://purl.obolibrary.org/obo/GO_0080112,seed growth +10.4386554,MONDO:0005858,http://purl.obolibrary.org/obo/MONDO_0005858,mucinous cystadenocarcinoma +10.4386554,PR:000016244,http://purl.obolibrary.org/obo/PR_000016244,methylcytosine dioxygenase TET1 +10.4386554,SO:0000442,http://purl.obolibrary.org/obo/SO_0000442,ds_oligo +10.4401358,CHEBI:22260,http://purl.obolibrary.org/obo/CHEBI_22260,adenosines +10.4401358,DRUGBANK:DB08587,http://purl.obolibrary.org/obo/DRUGBANK_DB08587,none +10.4401358,GO:0030522,http://purl.obolibrary.org/obo/GO_0030522,intracellular receptor signaling pathway +10.4401358,GO:0044849,http://purl.obolibrary.org/obo/GO_0044849,estrous cycle +10.4401358,GO:0047623,http://purl.obolibrary.org/obo/GO_0047623,adenosine-phosphate deaminase activity +10.4401358,PR:000009762,http://purl.obolibrary.org/obo/PR_000009762,leptin receptor gene-related protein +10.4401358,PR:000036147,http://purl.obolibrary.org/obo/PR_000036147,none +10.4416184,DRUGBANK:DB06594,http://purl.obolibrary.org/obo/DRUGBANK_DB06594,none +10.4416184,GO:0008156,http://purl.obolibrary.org/obo/GO_0008156,negative regulation of DNA replication +10.4416184,MONDO:0001383,http://purl.obolibrary.org/obo/MONDO_0001383,degenerative myopia +10.4416184,NCBITaxon:10437,http://purl.obolibrary.org/obo/NCBITaxon_10437,none +10.4416184,PR:000001312,http://purl.obolibrary.org/obo/PR_000001312,CD99 molecule +10.4416184,PR:000003745,http://purl.obolibrary.org/obo/PR_000003745,double-stranded RNA-specific adenosine deaminase +10.4416184,PR:000004616,http://purl.obolibrary.org/obo/PR_000004616,beta-secretase 2 +10.4416184,PR:000015138,http://purl.obolibrary.org/obo/PR_000015138,solute carrier family 40 member 1 +10.4416184,PR:000016602,http://purl.obolibrary.org/obo/PR_000016602,E3 ubiquitin ligase TRAF3IP2 +10.4416184,PR:000036846,http://purl.obolibrary.org/obo/PR_000036846,class II olfactory receptor +10.4431031,DRUGBANK:DB01061,http://purl.obolibrary.org/obo/DRUGBANK_DB01061,none +10.4431031,DRUGBANK:DB06262,http://purl.obolibrary.org/obo/DRUGBANK_DB06262,none +10.4431031,GO:0016503,http://purl.obolibrary.org/obo/GO_0016503,pheromone receptor activity +10.4431031,MONDO:0007041,http://purl.obolibrary.org/obo/MONDO_0007041,apert syndrome +10.4431031,PR:000005551,http://purl.obolibrary.org/obo/PR_000005551,claudin-3 +10.4431031,PR:000012491,http://purl.obolibrary.org/obo/PR_000012491,platelet-derived growth factor subunit B +10.4431031,UBERON:0002462,http://purl.obolibrary.org/obo/UBERON_0002462,erector spinae muscle group +10.4431031,UBERON:0004370,http://purl.obolibrary.org/obo/UBERON_0004370,anterior limiting lamina of cornea +10.4431031,UBERON:0014376,http://purl.obolibrary.org/obo/UBERON_0014376,thenar muscle +10.4431031,UBERON:2002255,http://purl.obolibrary.org/obo/UBERON_2002255,ocular side +10.4445901,CHEBI:64947,http://purl.obolibrary.org/obo/CHEBI_64947,anti-HIV-1 agent +10.4445901,DRUGBANK:DB05890,http://purl.obolibrary.org/obo/DRUGBANK_DB05890,none +10.4445901,DRUGBANK:DB10693,http://purl.obolibrary.org/obo/DRUGBANK_DB10693,none +10.4445901,DRUGBANK:DB13145,http://purl.obolibrary.org/obo/DRUGBANK_DB13145,none +10.4445901,GO:0006403,http://purl.obolibrary.org/obo/GO_0006403,RNA localization +10.4445901,GO:0035976,http://purl.obolibrary.org/obo/GO_0035976,transcription factor AP-1 complex +10.4445901,PR:000016184,http://purl.obolibrary.org/obo/PR_000016184,transcription factor 7 +10.4445901,PR:000034959,http://purl.obolibrary.org/obo/PR_000034959,none +10.4445901,UBERON:0002383,http://purl.obolibrary.org/obo/UBERON_0002383,supraspinatus muscle +10.4460793,CHEBI:61016,http://purl.obolibrary.org/obo/CHEBI_61016,angiotensin receptor antagonist +10.4460793,DRUGBANK:DB06730,http://purl.obolibrary.org/obo/DRUGBANK_DB06730,none +10.4460793,GO:0046487,http://purl.obolibrary.org/obo/GO_0046487,glyoxylate metabolic process +10.4460793,GO:0071417,http://purl.obolibrary.org/obo/GO_0071417,cellular response to organonitrogen compound +10.4460793,HP:0002905,http://purl.obolibrary.org/obo/HP_0002905,Hyperphosphatemia +10.4460793,MONDO:0001577,http://purl.obolibrary.org/obo/MONDO_0001577,respiratory syncytial virus infectious disease +10.4460793,MONDO:0010789,http://purl.obolibrary.org/obo/MONDO_0010789,MELAS syndrome +10.4460793,MONDO:0042972,http://purl.obolibrary.org/obo/MONDO_0042972,meningococcemia +10.4460793,PR:000030681,http://purl.obolibrary.org/obo/PR_000030681,fibronectin type III domain-containing protein 5 +10.4460793,PR:P40963,http://purl.obolibrary.org/obo/PR_P40963,none +10.4475708,GO:0097191,http://purl.obolibrary.org/obo/GO_0097191,extrinsic apoptotic signaling pathway +10.4475708,NCBITaxon:57667,http://purl.obolibrary.org/obo/NCBITaxon_57667,none +10.4475708,PR:000014419,http://purl.obolibrary.org/obo/PR_000014419,protein S100-B +10.4475708,PR:000016653,http://purl.obolibrary.org/obo/PR_000016653,tripartite motif-containing protein 29 +10.4475708,UBERON:0010380,http://purl.obolibrary.org/obo/UBERON_0010380,enteric nerve +10.4490644,CHEBI:35221,http://purl.obolibrary.org/obo/CHEBI_35221,antimetabolite +10.4490644,GO:0030368,http://purl.obolibrary.org/obo/GO_0030368,interleukin-17 receptor activity +10.4490644,PR:000008828,http://purl.obolibrary.org/obo/PR_000008828,histone acetyltransferase KAT5 +10.4490644,UBERON:0002686,http://purl.obolibrary.org/obo/UBERON_0002686,angular gyrus +10.4490644,UBERON:0002916,http://purl.obolibrary.org/obo/UBERON_0002916,central sulcus +10.4490644,UBERON:0004914,http://purl.obolibrary.org/obo/UBERON_0004914,duodenal papilla +10.4505603,DRUGBANK:DB01149,http://purl.obolibrary.org/obo/DRUGBANK_DB01149,none +10.4505603,GO:0032990,http://purl.obolibrary.org/obo/GO_0032990,cell part morphogenesis +10.4505603,GO:0050982,http://purl.obolibrary.org/obo/GO_0050982,detection of mechanical stimulus +10.4505603,GO:1904248,http://purl.obolibrary.org/obo/GO_1904248,regulation of age-related resistance +10.4505603,MONDO:0004746,http://purl.obolibrary.org/obo/MONDO_0004746,myopathy of extraocular muscle +10.4505603,MONDO:0008644,http://purl.obolibrary.org/obo/MONDO_0008644,velocardiofacial syndrome +10.4505603,MONDO:0015208,http://purl.obolibrary.org/obo/MONDO_0015208,syndromic esophageal malformation +10.4505603,MONDO:0019286,http://purl.obolibrary.org/obo/MONDO_0019286,sebaceous gland anomaly +10.4505603,MONDO:0019992,http://purl.obolibrary.org/obo/MONDO_0019992,pseudohypoparathyroidism +10.4505603,PR:000004144,http://purl.obolibrary.org/obo/PR_000004144,apolipoprotein A-V +10.4505603,PR:000006106,http://purl.obolibrary.org/obo/PR_000006106,"1,25-dihydroxyvitamin D(3) 24-hydroxylase, mitochondrial" +10.4505603,PR:000008856,http://purl.obolibrary.org/obo/PR_000008856,none +10.4505603,PR:000035021,http://purl.obolibrary.org/obo/PR_000035021,none +10.4520584,DRUGBANK:DB01344,http://purl.obolibrary.org/obo/DRUGBANK_DB01344,none +10.4520584,DRUGBANK:DB08399,http://purl.obolibrary.org/obo/DRUGBANK_DB08399,none +10.4520584,DRUGBANK:DB14601,http://purl.obolibrary.org/obo/DRUGBANK_DB14601,none +10.4520584,GO:0003876,http://purl.obolibrary.org/obo/GO_0003876,AMP deaminase activity +10.4520584,GO:0030509,http://purl.obolibrary.org/obo/GO_0030509,BMP signaling pathway +10.4520584,NCBITaxon:85604,http://purl.obolibrary.org/obo/NCBITaxon_85604,Amphiesmenoptera +10.4520584,PR:000003031,http://purl.obolibrary.org/obo/PR_000003031,focal adhesion kinase 1 +10.4520584,PR:000005430,http://purl.obolibrary.org/obo/PR_000005430,Rab proteins geranylgeranyltransferase component A 1 +10.4535588,DRUGBANK:DB01034,http://purl.obolibrary.org/obo/DRUGBANK_DB01034,none +10.4535588,DRUGBANK:DB14256,http://purl.obolibrary.org/obo/DRUGBANK_DB14256,none +10.4535588,GO:0044091,http://purl.obolibrary.org/obo/GO_0044091,membrane biogenesis +10.4535588,MONDO:0001407,http://purl.obolibrary.org/obo/MONDO_0001407,tracheal cancer +10.4535588,MONDO:0002444,http://purl.obolibrary.org/obo/MONDO_0002444,melancholia +10.4535588,MONDO:0007037,http://purl.obolibrary.org/obo/MONDO_0007037,achondroplasia +10.4535588,NCBITaxon:12639,http://purl.obolibrary.org/obo/NCBITaxon_12639,none +10.4535588,PR:000003210,http://purl.obolibrary.org/obo/PR_000003210,serine/threonine-protein phosphatase 2A catalytic subunit beta isoform +10.4535588,PR:000004004,http://purl.obolibrary.org/obo/PR_000004004,amphiphysin +10.4535588,PR:000006588,http://purl.obolibrary.org/obo/PR_000006588,DnaJ homolog subfamily C member 5 +10.4535588,PR:000007050,http://purl.obolibrary.org/obo/PR_000007050,emerin +10.4535588,PR:000007088,http://purl.obolibrary.org/obo/PR_000007088,ectonucleotide pyrophosphatase/phosphodiesterase family member 2 +10.4535588,PR:000008538,http://purl.obolibrary.org/obo/PR_000008538,protein-cysteine N-palmitoyltransferase HHAT +10.4535588,PR:000010096,http://purl.obolibrary.org/obo/PR_000010096,mucosa-associated lymphoid tissue lymphoma translocation protein 1 +10.4535588,PR:000014696,http://purl.obolibrary.org/obo/PR_000014696,serpin B5 +10.4535588,PR:000014924,http://purl.obolibrary.org/obo/PR_000014924,solute carrier family 12 member 1 +10.4550614,DRUGBANK:DB05451,http://purl.obolibrary.org/obo/DRUGBANK_DB05451,none +10.4550614,DRUGBANK:DB09276,http://purl.obolibrary.org/obo/DRUGBANK_DB09276,none +10.4550614,DRUGBANK:DB11097,http://purl.obolibrary.org/obo/DRUGBANK_DB11097,none +10.4550614,DRUGBANK:DB14077,http://purl.obolibrary.org/obo/DRUGBANK_DB14077,none +10.4550614,GO:0072528,http://purl.obolibrary.org/obo/GO_0072528,pyrimidine-containing compound biosynthetic process +10.4550614,MONDO:0005970,http://purl.obolibrary.org/obo/MONDO_0005970,staphylococcal pneumonia +10.4550614,MONDO:0016870,http://purl.obolibrary.org/obo/MONDO_0016870,partial deletion of chromosome 5 +10.4550614,MONDO:0020673,http://purl.obolibrary.org/obo/MONDO_0020673,arterial occlusion +10.4550614,PR:000004766,http://purl.obolibrary.org/obo/PR_000004766,flavin reductase +10.4550614,SO:0001149,http://purl.obolibrary.org/obo/SO_0001149,alternate_sequence_site +10.4565663,DRUGBANK:DB11780,http://purl.obolibrary.org/obo/DRUGBANK_DB11780,none +10.4565663,PR:Q9FIQ5,http://purl.obolibrary.org/obo/PR_Q9FIQ5,none +10.4565663,UBERON:0001949,http://purl.obolibrary.org/obo/UBERON_0001949,gingival epithelium +10.4565663,UBERON:0005062,http://purl.obolibrary.org/obo/UBERON_0005062,neural fold +10.4580735,DRUGBANK:DB06749,http://purl.obolibrary.org/obo/DRUGBANK_DB06749,none +10.4580735,DRUGBANK:DB14226,http://purl.obolibrary.org/obo/DRUGBANK_DB14226,none +10.4580735,DRUGBANK:DB15786,http://purl.obolibrary.org/obo/DRUGBANK_DB15786,none +10.4580735,GO:0004923,http://purl.obolibrary.org/obo/GO_0004923,leukemia inhibitory factor receptor activity +10.4580735,GO:0033483,http://purl.obolibrary.org/obo/GO_0033483,gas homeostasis +10.4580735,GO:0034309,http://purl.obolibrary.org/obo/GO_0034309,primary alcohol biosynthetic process +10.4580735,MONDO:0002490,http://purl.obolibrary.org/obo/MONDO_0002490,breast sarcoma +10.4580735,MONDO:0024240,http://purl.obolibrary.org/obo/MONDO_0024240,eccrine carcinoma +10.4580735,MONDO:0037003,http://purl.obolibrary.org/obo/MONDO_0037003,malignant phyllodes tumor +10.4580735,NCBITaxon:7088,http://purl.obolibrary.org/obo/NCBITaxon_7088,Lepidoptera +10.4580735,PR:000001876,http://purl.obolibrary.org/obo/PR_000001876,leukemia inhibitory factor receptor +10.4580735,PR:000008696,http://purl.obolibrary.org/obo/PR_000008696,homeobox protein Hox-A9 +10.4580735,UBERON:0001824,http://purl.obolibrary.org/obo/UBERON_0001824,mucosa of larynx +10.4580735,UBERON:0004621,http://purl.obolibrary.org/obo/UBERON_0004621,lumbar vertebra 5 +10.4580735,UBERON:0004640,http://purl.obolibrary.org/obo/UBERON_0004640,renal efferent arteriole +10.4595829,DRUGBANK:DB04820,http://purl.obolibrary.org/obo/DRUGBANK_DB04820,none +10.4595829,GO:0003999,http://purl.obolibrary.org/obo/GO_0003999,adenine phosphoribosyltransferase activity +10.4595829,GO:0051546,http://purl.obolibrary.org/obo/GO_0051546,keratinocyte migration +10.4595829,PR:000004794,http://purl.obolibrary.org/obo/PR_000004794,bactericidal permeability-increasing protein +10.4595829,PR:000015040,http://purl.obolibrary.org/obo/PR_000015040,prestin +10.4595829,PR:Q90416,http://purl.obolibrary.org/obo/PR_Q90416,none +10.4610946,DRUGBANK:DB09131,http://purl.obolibrary.org/obo/DRUGBANK_DB09131,none +10.4610946,DRUGBANK:DB09348,http://purl.obolibrary.org/obo/DRUGBANK_DB09348,none +10.4610946,DRUGBANK:DB15606,http://purl.obolibrary.org/obo/DRUGBANK_DB15606,none +10.4610946,GO:0019674,http://purl.obolibrary.org/obo/GO_0019674,NAD metabolic process +10.4610946,GO:0032924,http://purl.obolibrary.org/obo/GO_0032924,activin receptor signaling pathway +10.4610946,HP:0003468,http://purl.obolibrary.org/obo/HP_0003468,Abnormal vertebral morphology +10.4610946,MONDO:0005657,http://purl.obolibrary.org/obo/MONDO_0005657,aspergillosis +10.4610946,NCBITaxon:12216,http://purl.obolibrary.org/obo/NCBITaxon_12216,none +10.4610946,NCBITaxon:32321,http://purl.obolibrary.org/obo/NCBITaxon_32321,none +10.4610946,PR:000002050,http://purl.obolibrary.org/obo/PR_000002050,interferon regulatory factor 8 +10.4610946,PR:000004763,http://purl.obolibrary.org/obo/PR_000004763,biogenesis of lysosome-related organelles complex 1 subunit 2 +10.4610946,PR:000012259,http://purl.obolibrary.org/obo/PR_000012259,pannexin-1 +10.4610946,PR:000015235,http://purl.obolibrary.org/obo/PR_000015235,slit homolog 2 protein +10.4626086,CHEBI:37015,http://purl.obolibrary.org/obo/CHEBI_37015,ribonucleoside 5'-phosphate +10.4626086,DRUGBANK:DB01628,http://purl.obolibrary.org/obo/DRUGBANK_DB01628,none +10.4626086,GO:0002697,http://purl.obolibrary.org/obo/GO_0002697,regulation of immune effector process +10.4626086,GO:0006702,http://purl.obolibrary.org/obo/GO_0006702,androgen biosynthetic process +10.4626086,GO:0070507,http://purl.obolibrary.org/obo/GO_0070507,regulation of microtubule cytoskeleton organization +10.4626086,HP:0002134,http://purl.obolibrary.org/obo/HP_0002134,Abnormality of the basal ganglia +10.4626086,MONDO:0018800,http://purl.obolibrary.org/obo/MONDO_0018800,Kallmann syndrome +10.4626086,MONDO:0044212,http://purl.obolibrary.org/obo/MONDO_0044212,chronic idiopathic urticaria +10.4626086,PR:O13289,http://purl.obolibrary.org/obo/PR_O13289,none +10.4626086,PR:P12383,http://purl.obolibrary.org/obo/PR_P12383,none +10.4626086,PR:P36126,http://purl.obolibrary.org/obo/PR_P36126,none +10.4626086,PR:Q38882,http://purl.obolibrary.org/obo/PR_Q38882,none +10.4626086,PR:Q54UK0,http://purl.obolibrary.org/obo/PR_Q54UK0,none +10.4626086,PR:Q54WR4,http://purl.obolibrary.org/obo/PR_Q54WR4,none +10.4626086,PR:Q54Z25,http://purl.obolibrary.org/obo/PR_Q54Z25,none +10.4626086,UBERON:0015067,http://purl.obolibrary.org/obo/UBERON_0015067,centrale endochondral element +10.4641249,CHEBI:15889,http://purl.obolibrary.org/obo/CHEBI_15889,sterol +10.4641249,DRUGBANK:DB01321,http://purl.obolibrary.org/obo/DRUGBANK_DB01321,none +10.4641249,DRUGBANK:DB11518,http://purl.obolibrary.org/obo/DRUGBANK_DB11518,none +10.4641249,GO:0009821,http://purl.obolibrary.org/obo/GO_0009821,alkaloid biosynthetic process +10.4641249,MONDO:0001153,http://purl.obolibrary.org/obo/MONDO_0001153,gender dysphoria +10.4641249,MONDO:0006337,http://purl.obolibrary.org/obo/MONDO_0006337,ovarian endometriosis +10.4641249,PR:000001362,http://purl.obolibrary.org/obo/PR_000001362,interferon lambda +10.4641249,PR:000001684,http://purl.obolibrary.org/obo/PR_000001684,lysophosphatidic acid receptor 1 +10.4641249,PR:000007536,http://purl.obolibrary.org/obo/PR_000007536,peptidyl-prolyl cis-trans isomerase FKBP1A +10.4641249,PR:000013185,http://purl.obolibrary.org/obo/PR_000013185,histone-lysine N-methyltransferase PRDM16 +10.4656435,CHEBI:35134,http://purl.obolibrary.org/obo/CHEBI_35134,metalloprotein +10.4656435,DRUGBANK:DB00701,http://purl.obolibrary.org/obo/DRUGBANK_DB00701,none +10.4656435,DRUGBANK:DB09119,http://purl.obolibrary.org/obo/DRUGBANK_DB09119,none +10.4656435,GO:0001510,http://purl.obolibrary.org/obo/GO_0001510,RNA methylation +10.4656435,NCBITaxon:6657,http://purl.obolibrary.org/obo/NCBITaxon_6657,Crustacea +10.4656435,PR:000005591,http://purl.obolibrary.org/obo/PR_000005591,battenin +10.4656435,PR:000015083,http://purl.obolibrary.org/obo/PR_000015083,high affinity copper uptake protein 1 +10.4656435,PR:O08790,http://purl.obolibrary.org/obo/PR_O08790,none +10.4656435,PR:Q9FJV8,http://purl.obolibrary.org/obo/PR_Q9FJV8,none +10.4656435,UBERON:0011741,http://purl.obolibrary.org/obo/UBERON_0011741,cardiac valve leaflet +10.4671645,CL:0002490,http://purl.obolibrary.org/obo/CL_0002490,organ of Corti supporting cell +10.4671645,GO:0004466,http://purl.obolibrary.org/obo/GO_0004466,long-chain-acyl-CoA dehydrogenase activity +10.4671645,GO:0006012,http://purl.obolibrary.org/obo/GO_0006012,galactose metabolic process +10.4671645,GO:0038092,http://purl.obolibrary.org/obo/GO_0038092,nodal signaling pathway +10.4671645,GO:0071548,http://purl.obolibrary.org/obo/GO_0071548,response to dexamethasone +10.4671645,MONDO:0003517,http://purl.obolibrary.org/obo/MONDO_0003517,mature teratoma +10.4671645,PR:000002109,http://purl.obolibrary.org/obo/PR_000002109,tumor necrosis factor receptor superfamily member 10B +10.4671645,PR:000008156,http://purl.obolibrary.org/obo/PR_000008156,platelet glycoprotein VI +10.4671645,PR:000015401,http://purl.obolibrary.org/obo/PR_000015401,extracellular superoxide dismutase [Cu-Zn] +10.4671645,PR:000022832,http://purl.obolibrary.org/obo/PR_000022832,none +10.4671645,PR:P04840,http://purl.obolibrary.org/obo/PR_P04840,none +10.4686877,DRUGBANK:DB00702,http://purl.obolibrary.org/obo/DRUGBANK_DB00702,none +10.4686877,DRUGBANK:DB03884,http://purl.obolibrary.org/obo/DRUGBANK_DB03884,none +10.4686877,DRUGBANK:DB09330,http://purl.obolibrary.org/obo/DRUGBANK_DB09330,none +10.4686877,GO:0044447,http://purl.obolibrary.org/obo/GO_0044447,none +10.4686877,GO:0060070,http://purl.obolibrary.org/obo/GO_0060070,canonical Wnt signaling pathway +10.4686877,GO:0061517,http://purl.obolibrary.org/obo/GO_0061517,macrophage proliferation +10.4686877,MONDO:0003125,http://purl.obolibrary.org/obo/MONDO_0003125,testicular sex cord-stromal neoplasm +10.4686877,MONDO:0003140,http://purl.obolibrary.org/obo/MONDO_0003140,immune-complex glomerulonephritis +10.4686877,SO:0000344,http://purl.obolibrary.org/obo/SO_0000344,splice_enhancer +10.4702132,CHEBI:35136,http://purl.obolibrary.org/obo/CHEBI_35136,iron protein +10.4702132,GO:0032098,http://purl.obolibrary.org/obo/GO_0032098,regulation of appetite +10.4702132,GO:0033077,http://purl.obolibrary.org/obo/GO_0033077,T cell differentiation in thymus +10.4702132,GO:0046589,http://purl.obolibrary.org/obo/GO_0046589,ribonuclease T1 activity +10.4702132,MONDO:0001707,http://purl.obolibrary.org/obo/MONDO_0001707,cardiac sarcoidosis +10.4702132,MONDO:0005506,http://purl.obolibrary.org/obo/MONDO_0005506,eccrine sweat gland cancer +10.4702132,PR:000006901,http://purl.obolibrary.org/obo/PR_000006901,early endosome antigen 1 +10.4702132,PR:000016362,http://purl.obolibrary.org/obo/PR_000016362,TIP41-like protein +10.4702132,UBERON:0009751,http://purl.obolibrary.org/obo/UBERON_0009751,cardiac mesenchyme +10.4702132,UBERON:0015479,http://purl.obolibrary.org/obo/UBERON_0015479,scrotum skin +10.4717411,CHEBI:49159,http://purl.obolibrary.org/obo/CHEBI_49159,leukotriene antagonist +10.4717411,DRUGBANK:DB06742,http://purl.obolibrary.org/obo/DRUGBANK_DB06742,none +10.4717411,DRUGBANK:DB11090,http://purl.obolibrary.org/obo/DRUGBANK_DB11090,none +10.4717411,GO:0008344,http://purl.obolibrary.org/obo/GO_0008344,adult locomotory behavior +10.4717411,GO:1901376,http://purl.obolibrary.org/obo/GO_1901376,organic heteropentacyclic compound metabolic process +10.4717411,MONDO:0000380,http://purl.obolibrary.org/obo/MONDO_0000380,paranasal sinus carcinoma +10.4717411,MONDO:0005664,http://purl.obolibrary.org/obo/MONDO_0005664,bartonellosis +10.4717411,NCBITaxon:11246,http://purl.obolibrary.org/obo/NCBITaxon_11246,Bovine orthopneumovirus +10.4717411,PR:000014748,http://purl.obolibrary.org/obo/PR_000014748,"splicing factor, arginine/serine-rich 1" +10.4717411,UBERON:0003427,http://purl.obolibrary.org/obo/UBERON_0003427,abdominal fat pad +10.4732713,CHEBI:35137,http://purl.obolibrary.org/obo/CHEBI_35137,hemoprotein +10.4732713,DRUGBANK:DB09132,http://purl.obolibrary.org/obo/DRUGBANK_DB09132,none +10.4732713,DRUGBANK:DB11490,http://purl.obolibrary.org/obo/DRUGBANK_DB11490,none +10.4732713,DRUGBANK:DB13913,http://purl.obolibrary.org/obo/DRUGBANK_DB13913,none +10.4732713,MONDO:0001029,http://purl.obolibrary.org/obo/MONDO_0001029,Klippel-Feil syndrome +10.4732713,MONDO:0018242,http://purl.obolibrary.org/obo/MONDO_0018242,autoimmune hypoparathyroidism +10.4732713,PR:000001347,http://purl.obolibrary.org/obo/PR_000001347,endothelial protein C receptor +10.4732713,PR:000004089,http://purl.obolibrary.org/obo/PR_000004089,aldehyde oxidase +10.4732713,PR:000010830,http://purl.obolibrary.org/obo/PR_000010830,myosin-7 +10.4732713,PR:Q8VZD4,http://purl.obolibrary.org/obo/PR_Q8VZD4,none +10.4748039,DRUGBANK:DB00485,http://purl.obolibrary.org/obo/DRUGBANK_DB00485,none +10.4748039,DRUGBANK:DB05386,http://purl.obolibrary.org/obo/DRUGBANK_DB05386,none +10.4748039,DRUGBANK:DB12536,http://purl.obolibrary.org/obo/DRUGBANK_DB12536,none +10.4748039,GO:0033251,http://purl.obolibrary.org/obo/GO_0033251,cephalosporinase activity +10.4748039,MONDO:0018772,http://purl.obolibrary.org/obo/MONDO_0018772,Joubert syndrome +10.4748039,PR:000004534,http://purl.obolibrary.org/obo/PR_000004534,azurocidin +10.4748039,PR:000011397,http://purl.obolibrary.org/obo/PR_000011397,nuclear receptor subfamily 1 group I member 2 +10.4748039,UBERON:0004619,http://purl.obolibrary.org/obo/UBERON_0004619,lumbar vertebra 3 +10.4748039,UBERON:0012139,http://purl.obolibrary.org/obo/UBERON_0012139,segment of autopod +10.4763388,DRUGBANK:DB09156,http://purl.obolibrary.org/obo/DRUGBANK_DB09156,none +10.4763388,GO:0004222,http://purl.obolibrary.org/obo/GO_0004222,metalloendopeptidase activity +10.4763388,GO:0015054,http://purl.obolibrary.org/obo/GO_0015054,gastrin receptor activity +10.4763388,GO:0015809,http://purl.obolibrary.org/obo/GO_0015809,none +10.4763388,GO:1903409,http://purl.obolibrary.org/obo/GO_1903409,reactive oxygen species biosynthetic process +10.4763388,MONDO:0000432,http://purl.obolibrary.org/obo/MONDO_0000432,lymphoplasmacytic lymphoma +10.4763388,MONDO:0016581,http://purl.obolibrary.org/obo/MONDO_0016581,conotruncal heart malformations +10.4763388,NCBITaxon:353209,http://purl.obolibrary.org/obo/NCBITaxon_353209,none +10.4763388,PR:000009962,http://purl.obolibrary.org/obo/PR_000009962,U6 snRNA-associated Sm-like protein LSm4 +10.4763388,PR:000015818,http://purl.obolibrary.org/obo/PR_000015818,sulfotransferase 1A1 +10.4763388,PR:P81425,http://purl.obolibrary.org/obo/PR_P81425,none +10.4763388,PR:Q8VYI5,http://purl.obolibrary.org/obo/PR_Q8VYI5,none +10.4763388,SO:0000658,http://purl.obolibrary.org/obo/SO_0000658,dispersed_repeat +10.4763388,SO:0001778,http://purl.obolibrary.org/obo/SO_0001778,germline_variant +10.4778761,DRUGBANK:DB01196,http://purl.obolibrary.org/obo/DRUGBANK_DB01196,none +10.4778761,DRUGBANK:DB02556,http://purl.obolibrary.org/obo/DRUGBANK_DB02556,none +10.4778761,DRUGBANK:DB14320,http://purl.obolibrary.org/obo/DRUGBANK_DB14320,none +10.4778761,GO:0006553,http://purl.obolibrary.org/obo/GO_0006553,lysine metabolic process +10.4778761,GO:0062039,http://purl.obolibrary.org/obo/GO_0062039,biofilm matrix +10.4778761,GO:0097311,http://purl.obolibrary.org/obo/GO_0097311,bacterial biofilm matrix +10.4778761,MONDO:0005269,http://purl.obolibrary.org/obo/MONDO_0005269,carotid artery disease +10.4778761,MONDO:0010787,http://purl.obolibrary.org/obo/MONDO_0010787,Kearns-Sayre syndrome +10.4778761,NCBITaxon:1307802,http://purl.obolibrary.org/obo/NCBITaxon_1307802,none +10.4778761,NCBITaxon:1985356,http://purl.obolibrary.org/obo/NCBITaxon_1985356,none +10.4778761,NCBITaxon:54290,http://purl.obolibrary.org/obo/NCBITaxon_54290,none +10.4778761,PR:000002067,http://purl.obolibrary.org/obo/PR_000002067,poliovirus receptor +10.4778761,UBERON:0006320,http://purl.obolibrary.org/obo/UBERON_0006320,inferior oblique extraocular muscle +10.4778761,UBERON:0008523,http://purl.obolibrary.org/obo/UBERON_0008523,infrahyoid muscle +10.4794158,CHEBI:61293,http://purl.obolibrary.org/obo/CHEBI_61293,adenyl nucleotide +10.4794158,CHEBI:61296,http://purl.obolibrary.org/obo/CHEBI_61296,adenyl ribonucleotide +10.4794158,DRUGBANK:DB03974,http://purl.obolibrary.org/obo/DRUGBANK_DB03974,none +10.4794158,DRUGBANK:DB06803,http://purl.obolibrary.org/obo/DRUGBANK_DB06803,none +10.4794158,GO:0000270,http://purl.obolibrary.org/obo/GO_0000270,peptidoglycan metabolic process +10.4794158,GO:1903522,http://purl.obolibrary.org/obo/GO_1903522,regulation of blood circulation +10.4794158,PR:000001385,http://purl.obolibrary.org/obo/PR_000001385,interleukin-27 subunit alpha +10.4794158,PR:O35778,http://purl.obolibrary.org/obo/PR_O35778,none +10.4794158,PR:O54707,http://purl.obolibrary.org/obo/PR_O54707,none +10.4794158,PR:Q05159,http://purl.obolibrary.org/obo/PR_Q05159,none +10.4794158,PR:Q9LT91,http://purl.obolibrary.org/obo/PR_Q9LT91,none +10.4794158,SO:0000852,http://purl.obolibrary.org/obo/SO_0000852,exon_region +10.4794158,UBERON:0001867,http://purl.obolibrary.org/obo/UBERON_0001867,cartilage of external ear +10.4809578,CHEBI:22256,http://purl.obolibrary.org/obo/CHEBI_22256,adenosine phosphate +10.4809578,GO:0032280,http://purl.obolibrary.org/obo/GO_0032280,symmetric synapse +10.4809578,GO:0051924,http://purl.obolibrary.org/obo/GO_0051924,regulation of calcium ion transport +10.4809578,GO:0080189,http://purl.obolibrary.org/obo/GO_0080189,primary growth +10.4809578,MONDO:0017147,http://purl.obolibrary.org/obo/MONDO_0017147,idiopathic pulmonary arterial hypertension +10.4809578,PR:000013037,http://purl.obolibrary.org/obo/PR_000013037,"POU domain, class 2, transcription factor 3" +10.4809578,PR:P17106,http://purl.obolibrary.org/obo/PR_P17106,none +10.4809578,PR:Q39219,http://purl.obolibrary.org/obo/PR_Q39219,none +10.4809578,PR:Q9LKG8,http://purl.obolibrary.org/obo/PR_Q9LKG8,none +10.4809578,UBERON:0004356,http://purl.obolibrary.org/obo/UBERON_0004356,apical ectodermal ridge +10.4825022,DRUGBANK:DB00607,http://purl.obolibrary.org/obo/DRUGBANK_DB00607,none +10.4825022,GO:0004333,http://purl.obolibrary.org/obo/GO_0004333,fumarate hydratase activity +10.4825022,GO:0030638,http://purl.obolibrary.org/obo/GO_0030638,polyketide metabolic process +10.4825022,GO:0036019,http://purl.obolibrary.org/obo/GO_0036019,endolysosome +10.4825022,GO:0051920,http://purl.obolibrary.org/obo/GO_0051920,peroxiredoxin activity +10.4825022,MONDO:0002183,http://purl.obolibrary.org/obo/MONDO_0002183,enthesopathy +10.4825022,MONDO:0003219,http://purl.obolibrary.org/obo/MONDO_0003219,gastroesophageal junction adenocarcinoma +10.4825022,PR:000001374,http://purl.obolibrary.org/obo/PR_000001374,interleukin-16 +10.4825022,PR:000004900,http://purl.obolibrary.org/obo/PR_000004900,complement C3 +10.4825022,PR:000012458,http://purl.obolibrary.org/obo/PR_000012458,programmed cell death 6-interacting protein +10.4825022,PR:000014963,http://purl.obolibrary.org/obo/PR_000014963,vesicular glutamate transporter 1 +10.4825022,PR:000016060,http://purl.obolibrary.org/obo/PR_000016060,taste receptor type 1 member 1 +10.4825022,PR:P47112,http://purl.obolibrary.org/obo/PR_P47112,none +10.4825022,SO:0000043,http://purl.obolibrary.org/obo/SO_0000043,processed_pseudogene +10.484049,DRUGBANK:DB00591,http://purl.obolibrary.org/obo/DRUGBANK_DB00591,none +10.484049,DRUGBANK:DB06290,http://purl.obolibrary.org/obo/DRUGBANK_DB06290,none +10.484049,DRUGBANK:DB06414,http://purl.obolibrary.org/obo/DRUGBANK_DB06414,none +10.484049,DRUGBANK:DB10627,http://purl.obolibrary.org/obo/DRUGBANK_DB10627,none +10.484049,DRUGBANK:DB11266,http://purl.obolibrary.org/obo/DRUGBANK_DB11266,none +10.484049,GO:0070075,http://purl.obolibrary.org/obo/GO_0070075,tear secretion +10.484049,MONDO:0045070,http://purl.obolibrary.org/obo/MONDO_0045070,digestive system melanoma +10.484049,PR:000001558,http://purl.obolibrary.org/obo/PR_000001558,trace amine receptor +10.484049,PR:000002126,http://purl.obolibrary.org/obo/PR_000002126,C-C motif chemokine 8 +10.484049,PR:000013410,http://purl.obolibrary.org/obo/PR_000013410,polypyrimidine tract-binding protein 1 +10.484049,SO:0000271,http://purl.obolibrary.org/obo/SO_0000271,tryptophanyl_tRNA +10.484049,UBERON:0001114,http://purl.obolibrary.org/obo/UBERON_0001114,right lobe of liver +10.4855982,DRUGBANK:DB00245,http://purl.obolibrary.org/obo/DRUGBANK_DB00245,none +10.4855982,DRUGBANK:DB04815,http://purl.obolibrary.org/obo/DRUGBANK_DB04815,none +10.4855982,DRUGBANK:DB12709,http://purl.obolibrary.org/obo/DRUGBANK_DB12709,none +10.4855982,MONDO:0004575,http://purl.obolibrary.org/obo/MONDO_0004575,choline deficiency disease +10.4855982,MONDO:0005446,http://purl.obolibrary.org/obo/MONDO_0005446,cutaneous leishmaniasis +10.4855982,MOP:0000572,http://purl.obolibrary.org/obo/MOP_0000572,none +10.4855982,UBERON:0004129,http://purl.obolibrary.org/obo/UBERON_0004129,growth plate cartilage +10.4871497,DRUGBANK:DB00949,http://purl.obolibrary.org/obo/DRUGBANK_DB00949,none +10.4871497,DRUGBANK:DB08621,http://purl.obolibrary.org/obo/DRUGBANK_DB08621,none +10.4871497,GO:0046631,http://purl.obolibrary.org/obo/GO_0046631,alpha-beta T cell activation +10.4871497,GO:0048475,http://purl.obolibrary.org/obo/GO_0048475,coated membrane +10.4871497,MONDO:0006585,http://purl.obolibrary.org/obo/MONDO_0006585,neurodermatitis +10.4871497,MONDO:0015694,http://purl.obolibrary.org/obo/MONDO_0015694,malignant melanoma of the mucosa +10.4871497,MONDO:0018510,http://purl.obolibrary.org/obo/MONDO_0018510,small intestine neuroendocrine neoplasm +10.4871497,MONDO:0021029,http://purl.obolibrary.org/obo/MONDO_0021029,genetic sebaceous gland anomaly +10.4871497,MONDO:0024890,http://purl.obolibrary.org/obo/MONDO_0024890,pineal parenchymal cell neoplasm +10.4871497,PR:000002009,http://purl.obolibrary.org/obo/PR_000002009,MHC class I histocompatibility antigen A alpha chain +10.4871497,PR:000009442,http://purl.obolibrary.org/obo/PR_000009442,GTPase KRas +10.4871497,PR:000009820,http://purl.obolibrary.org/obo/PR_000009820,protein lin-28 homolog A +10.4871497,UBERON:0003059,http://purl.obolibrary.org/obo/UBERON_0003059,presomitic mesoderm +10.4871497,UBERON:0007010,http://purl.obolibrary.org/obo/UBERON_0007010,cleaving embryo +10.4887037,GO:0005018,http://purl.obolibrary.org/obo/GO_0005018,platelet-derived growth factor alpha-receptor activity +10.4887037,MONDO:0016904,http://purl.obolibrary.org/obo/MONDO_0016904,partial deletion of the long arm of chromosome 5 +10.4887037,NCBITaxon:8293,http://purl.obolibrary.org/obo/NCBITaxon_8293,Caudata +10.4887037,PR:000001166,http://purl.obolibrary.org/obo/PR_000001166,5-hydroxytryptamine receptor 2A +10.4887037,PR:000002030,http://purl.obolibrary.org/obo/PR_000002030,alpha-type platelet-derived growth factor receptor +10.4887037,PR:000007301,http://purl.obolibrary.org/obo/PR_000007301,coagulation factor VII +10.4887037,PR:000011264,http://purl.obolibrary.org/obo/PR_000011264,"NACHT, LRR and PYD domains-containing protein 1" +10.4902602,DRUGBANK:DB03209,http://purl.obolibrary.org/obo/DRUGBANK_DB03209,none +10.4902602,DRUGBANK:DB15566,http://purl.obolibrary.org/obo/DRUGBANK_DB15566,none +10.4902602,GO:0017018,http://purl.obolibrary.org/obo/GO_0017018,myosin phosphatase activity +10.4902602,GO:0045475,http://purl.obolibrary.org/obo/GO_0045475,locomotor rhythm +10.4902602,GO:0072602,http://purl.obolibrary.org/obo/GO_0072602,none +10.4902602,NCBITaxon:2509505,http://purl.obolibrary.org/obo/NCBITaxon_2509505,none +10.4902602,PR:000014897,http://purl.obolibrary.org/obo/PR_000014897,homeobox protein SIX2 +10.4902602,UBERON:0001295,http://purl.obolibrary.org/obo/UBERON_0001295,endometrium +10.4902602,UBERON:0018413,http://purl.obolibrary.org/obo/UBERON_0018413,facial nerve canal +10.491819,CHEBI:35681,http://purl.obolibrary.org/obo/CHEBI_35681,secondary alcohol +10.491819,DRUGBANK:DB12707,http://purl.obolibrary.org/obo/DRUGBANK_DB12707,none +10.491819,MONDO:0018542,http://purl.obolibrary.org/obo/MONDO_0018542,severe congenital neutropenia +10.491819,MONDO:0019951,http://purl.obolibrary.org/obo/MONDO_0019951,rigid spine syndrome +10.491819,MONDO:0044210,http://purl.obolibrary.org/obo/MONDO_0044210,thalassemia minor +10.491819,PR:000008608,http://purl.obolibrary.org/obo/PR_000008608,hexokinase-1 +10.491819,PR:000012285,http://purl.obolibrary.org/obo/PR_000012285,E3 ubiquitin-protein ligase parkin +10.491819,PR:000013922,http://purl.obolibrary.org/obo/PR_000013922,E3 ubiquitin-protein ligase COP1 +10.491819,PR:000034951,http://purl.obolibrary.org/obo/PR_000034951,none +10.491819,UBERON:0001848,http://purl.obolibrary.org/obo/UBERON_0001848,auricular cartilage +10.491819,UBERON:0002406,http://purl.obolibrary.org/obo/UBERON_0002406,pericardial sac +10.4933803,DRUGBANK:DB14553,http://purl.obolibrary.org/obo/DRUGBANK_DB14553,none +10.4933803,GO:0019217,http://purl.obolibrary.org/obo/GO_0019217,regulation of fatty acid metabolic process +10.4933803,MONDO:0005074,http://purl.obolibrary.org/obo/MONDO_0005074,papillary cystadenocarcinoma +10.4933803,MONDO:0015405,http://purl.obolibrary.org/obo/MONDO_0015405,cerebrofacial arteriovenous metameric syndrome +10.4933803,MONDO:0024660,http://purl.obolibrary.org/obo/MONDO_0024660,tubular adenoma +10.4933803,NCBITaxon:28295,http://purl.obolibrary.org/obo/NCBITaxon_28295,none +10.4933803,NCBITaxon:333938,http://purl.obolibrary.org/obo/NCBITaxon_333938,none +10.4933803,NCBITaxon:35305,http://purl.obolibrary.org/obo/NCBITaxon_35305,none +10.4933803,PR:000015837,http://purl.obolibrary.org/obo/PR_000015837,transcription elongation factor SPT6 +10.4933803,UBERON:0003210,http://purl.obolibrary.org/obo/UBERON_0003210,blood-cerebrospinal fluid barrier +10.494944,CHEBI:22313,http://purl.obolibrary.org/obo/CHEBI_22313,alkaline earth metal atom +10.494944,DRUGBANK:DB00539,http://purl.obolibrary.org/obo/DRUGBANK_DB00539,none +10.494944,DRUGBANK:DB00972,http://purl.obolibrary.org/obo/DRUGBANK_DB00972,none +10.494944,DRUGBANK:DB14022,http://purl.obolibrary.org/obo/DRUGBANK_DB14022,none +10.494944,GO:0035178,http://purl.obolibrary.org/obo/GO_0035178,turning behavior +10.494944,GO:0035425,http://purl.obolibrary.org/obo/GO_0035425,autocrine signaling +10.494944,MONDO:0008889,http://purl.obolibrary.org/obo/MONDO_0008889,thromboangiitis obliterans +10.494944,MONDO:0021238,http://purl.obolibrary.org/obo/MONDO_0021238,cornea neoplasm +10.494944,PR:000004855,http://purl.obolibrary.org/obo/PR_000004855,mitotic checkpoint serine/threonine-protein kinase BUB1 beta +10.494944,PR:000007227,http://purl.obolibrary.org/obo/PR_000007227,ETS translocation variant 4 +10.494944,SO:0000142,http://purl.obolibrary.org/obo/SO_0000142,DNA_sequence_secondary_structure +10.4965102,DRUGBANK:DB16403,http://purl.obolibrary.org/obo/DRUGBANK_DB16403,none +10.4965102,GO:0014075,http://purl.obolibrary.org/obo/GO_0014075,response to amine +10.4965102,GO:0030286,http://purl.obolibrary.org/obo/GO_0030286,dynein complex +10.4965102,MONDO:0019169,http://purl.obolibrary.org/obo/MONDO_0019169,pyruvate dehydrogenase deficiency +10.4965102,MONDO:0020272,http://purl.obolibrary.org/obo/MONDO_0020272,connective tissue disease with eye involvement +10.4965102,PR:000006531,http://purl.obolibrary.org/obo/PR_000006531,homeobox protein DLX-5 +10.4965102,PR:000014534,http://purl.obolibrary.org/obo/PR_000014534,sterol carrier protein 2 +10.4965102,SO:0001010,http://purl.obolibrary.org/obo/SO_0001010,i_motif +10.4965102,UBERON:0001308,http://purl.obolibrary.org/obo/UBERON_0001308,external iliac artery +10.4980788,CHEBI:36871,http://purl.obolibrary.org/obo/CHEBI_36871,inorganic radical +10.4980788,GO:0043044,http://purl.obolibrary.org/obo/GO_0043044,none +10.4980788,GO:0051274,http://purl.obolibrary.org/obo/GO_0051274,beta-glucan biosynthetic process +10.4980788,MONDO:0004855,http://purl.obolibrary.org/obo/MONDO_0004855,tenosynovitis +10.4980788,MONDO:0006924,http://purl.obolibrary.org/obo/MONDO_0006924,Bartonellaceae infectious disease +10.4980788,MONDO:0008364,http://purl.obolibrary.org/obo/MONDO_0008364,Raynaud disease +10.4980788,NCBITaxon:1760,http://purl.obolibrary.org/obo/NCBITaxon_1760,Actinomycetia +10.4980788,PR:000001624,http://purl.obolibrary.org/obo/PR_000001624,none +10.4980788,PR:000008950,http://purl.obolibrary.org/obo/PR_000008950,insulin-like growth factor-binding protein 4 +10.4980788,PR:000016069,http://purl.obolibrary.org/obo/PR_000016069,taste receptor type 2 member 38 +10.4980788,PR:000023365,http://purl.obolibrary.org/obo/PR_000023365,none +10.4980788,UBERON:0019204,http://purl.obolibrary.org/obo/UBERON_0019204,skin epithelium +10.4996499,CHEBI:3992,http://purl.obolibrary.org/obo/CHEBI_3992,cyclic ketone +10.4996499,DRUGBANK:DB01591,http://purl.obolibrary.org/obo/DRUGBANK_DB01591,none +10.4996499,DRUGBANK:DB06554,http://purl.obolibrary.org/obo/DRUGBANK_DB06554,none +10.4996499,MONDO:0005518,http://purl.obolibrary.org/obo/MONDO_0005518,pseudohermaphroditism +10.4996499,MONDO:0006162,http://purl.obolibrary.org/obo/MONDO_0006162,colorectal neuroendocrine tumor G1 +10.4996499,NCBITaxon:1507402,http://purl.obolibrary.org/obo/NCBITaxon_1507402,none +10.4996499,PR:000006874,http://purl.obolibrary.org/obo/PR_000006874,endothelin-converting enzyme 1 +10.4996499,SO:0001415,http://purl.obolibrary.org/obo/SO_0001415,deletion_breakpoint +10.4996499,UBERON:0005293,http://purl.obolibrary.org/obo/UBERON_0005293,cerebellum lobe +10.5012235,CL:0000441,http://purl.obolibrary.org/obo/CL_0000441,follicle stem cell +10.5012235,DRUGBANK:DB02024,http://purl.obolibrary.org/obo/DRUGBANK_DB02024,none +10.5012235,DRUGBANK:DB09079,http://purl.obolibrary.org/obo/DRUGBANK_DB09079,none +10.5012235,DRUGBANK:DB11874,http://purl.obolibrary.org/obo/DRUGBANK_DB11874,none +10.5012235,DRUGBANK:DB13972,http://purl.obolibrary.org/obo/DRUGBANK_DB13972,none +10.5012235,GO:0060074,http://purl.obolibrary.org/obo/GO_0060074,synapse maturation +10.5012235,MONDO:0013311,http://purl.obolibrary.org/obo/MONDO_0013311,ectodermal dysplasia-syndactyly syndrome +10.5012235,MONDO:0020639,http://purl.obolibrary.org/obo/MONDO_0020639,monosomy +10.5012235,MONDO:0021580,http://purl.obolibrary.org/obo/MONDO_0021580,neoplasm of jaw +10.5012235,NCBITaxon:201174,http://purl.obolibrary.org/obo/NCBITaxon_201174,Actinobacteria +10.5012235,NCBITaxon:41191,http://purl.obolibrary.org/obo/NCBITaxon_41191,Glossata +10.5012235,NCBITaxon:41196,http://purl.obolibrary.org/obo/NCBITaxon_41196,Neolepidoptera +10.5012235,PR:000001881,http://purl.obolibrary.org/obo/PR_000001881,lymphocyte activation gene 3 protein +10.5012235,PR:000003064,http://purl.obolibrary.org/obo/PR_000003064,tyrosine-protein kinase ZAP-70 +10.5012235,PR:000004816,http://purl.obolibrary.org/obo/PR_000004816,Fanconi anemia group J protein +10.5012235,PR:000014993,http://purl.obolibrary.org/obo/PR_000014993,solute carrier family 22 member 6 +10.5012235,PR:000022726,http://purl.obolibrary.org/obo/PR_000022726,none +10.5012235,PR:000023651,http://purl.obolibrary.org/obo/PR_000023651,none +10.5012235,UBERON:0002979,http://purl.obolibrary.org/obo/UBERON_0002979,Purkinje cell layer of cerebellar cortex +10.5027995,DRUGBANK:DB05630,http://purl.obolibrary.org/obo/DRUGBANK_DB05630,none +10.5027995,DRUGBANK:DB15604,http://purl.obolibrary.org/obo/DRUGBANK_DB15604,none +10.5027995,GO:0005578,http://purl.obolibrary.org/obo/GO_0005578,none +10.5027995,GO:0090382,http://purl.obolibrary.org/obo/GO_0090382,phagosome maturation +10.5027995,MONDO:0005007,http://purl.obolibrary.org/obo/MONDO_0005007,colon mucinous adenocarcinoma +10.5027995,NCBITaxon:37567,http://purl.obolibrary.org/obo/NCBITaxon_37567,Ditrysia +10.5027995,NCBITaxon:41197,http://purl.obolibrary.org/obo/NCBITaxon_41197,Heteroneura +10.5027995,PR:000003565,http://purl.obolibrary.org/obo/PR_000003565,ATP-binding cassette sub-family D member 1 +10.5027995,PR:000008174,http://purl.obolibrary.org/obo/PR_000008174,gephyrin +10.5027995,PR:000025989,http://purl.obolibrary.org/obo/PR_000025989,none +10.5027995,PR:O22194,http://purl.obolibrary.org/obo/PR_O22194,none +10.5027995,SO:0000180,http://purl.obolibrary.org/obo/SO_0000180,retrotransposon +10.5027995,UBERON:0003082,http://purl.obolibrary.org/obo/UBERON_0003082,myotome +10.504378,CHEBI:26714,http://purl.obolibrary.org/obo/CHEBI_26714,sodium salt +10.504378,DRUGBANK:DB00439,http://purl.obolibrary.org/obo/DRUGBANK_DB00439,none +10.504378,DRUGBANK:DB08690,http://purl.obolibrary.org/obo/DRUGBANK_DB08690,none +10.504378,GO:0002317,http://purl.obolibrary.org/obo/GO_0002317,plasma cell differentiation +10.504378,GO:0042448,http://purl.obolibrary.org/obo/GO_0042448,progesterone metabolic process +10.504378,GO:0042813,http://purl.obolibrary.org/obo/GO_0042813,Wnt-activated receptor activity +10.504378,GO:0090132,http://purl.obolibrary.org/obo/GO_0090132,epithelium migration +10.504378,GO:0098598,http://purl.obolibrary.org/obo/GO_0098598,learned vocalization behavior or vocal learning +10.504378,HP:0003198,http://purl.obolibrary.org/obo/HP_0003198,Myopathy +10.504378,MOP:0000569,http://purl.obolibrary.org/obo/MOP_0000569,none +10.504378,PR:000003112,http://purl.obolibrary.org/obo/PR_000003112,NFAT protein +10.5059591,DRUGBANK:DB01322,http://purl.obolibrary.org/obo/DRUGBANK_DB01322,none +10.5059591,DRUGBANK:DB12485,http://purl.obolibrary.org/obo/DRUGBANK_DB12485,none +10.5059591,GO:0016780,http://purl.obolibrary.org/obo/GO_0016780,"phosphotransferase activity, for other substituted phosphate groups" +10.5059591,GO:0051028,http://purl.obolibrary.org/obo/GO_0051028,mRNA transport +10.5059591,MONDO:0000989,http://purl.obolibrary.org/obo/MONDO_0000989,mumps infectious disease +10.5059591,MONDO:0004359,http://purl.obolibrary.org/obo/MONDO_0004359,delusional disorder +10.5059591,MONDO:0017705,http://purl.obolibrary.org/obo/MONDO_0017705,congenital pulmonary venous return anomaly +10.5059591,NCBITaxon:30367,http://purl.obolibrary.org/obo/NCBITaxon_30367,Salamandroidea +10.5059591,PR:000003564,http://purl.obolibrary.org/obo/PR_000003564,ATP-binding cassette sub-family C member 9 +10.5059591,PR:000003779,http://purl.obolibrary.org/obo/PR_000003779,adiponectin receptor protein 2 +10.5059591,PR:000006003,http://purl.obolibrary.org/obo/PR_000006003,cardiotrophin-1 +10.5075426,CL:0002621,http://purl.obolibrary.org/obo/CL_0002621,gingival epithelial cell +10.5075426,GO:0007162,http://purl.obolibrary.org/obo/GO_0007162,negative regulation of cell adhesion +10.5075426,MONDO:0007603,http://purl.obolibrary.org/obo/MONDO_0007603,Felty syndrome +10.5075426,MONDO:0017896,http://purl.obolibrary.org/obo/MONDO_0017896,familial nonmedullary thyroid carcinoma +10.5075426,MONDO:0019835,http://purl.obolibrary.org/obo/MONDO_0019835,primary hypophysitis +10.5075426,NCBITaxon:10571,http://purl.obolibrary.org/obo/NCBITaxon_10571,Bovine papillomavirus +10.5075426,PR:000001126,http://purl.obolibrary.org/obo/PR_000001126,cannabinoid receptor 2 +10.5075426,PR:000014814,http://purl.obolibrary.org/obo/PR_000014814,SH2 domain-containing protein 2A +10.5091287,CL:0000908,http://purl.obolibrary.org/obo/CL_0000908,"CD8-positive, alpha-beta cytokine secreting effector T cell" +10.5091287,DRUGBANK:DB00068,http://purl.obolibrary.org/obo/DRUGBANK_DB00068,none +10.5091287,DRUGBANK:DB08904,http://purl.obolibrary.org/obo/DRUGBANK_DB08904,none +10.5091287,GO:0001704,http://purl.obolibrary.org/obo/GO_0001704,formation of primary germ layer +10.5091287,GO:0007258,http://purl.obolibrary.org/obo/GO_0007258,JUN phosphorylation +10.5091287,GO:1903317,http://purl.obolibrary.org/obo/GO_1903317,regulation of protein maturation +10.5091287,MONDO:0009889,http://purl.obolibrary.org/obo/MONDO_0009889,autosomal recessive polycystic kidney disease +10.5091287,MONDO:0015993,http://purl.obolibrary.org/obo/MONDO_0015993,cone-rod dystrophy +10.5091287,MONDO:0017031,http://purl.obolibrary.org/obo/MONDO_0017031,primary interstitial lung disease in childhood and adulthood +10.5091287,NCBITaxon:1437197,http://purl.obolibrary.org/obo/NCBITaxon_1437197,Petrosaviidae +10.5091287,PR:000003913,http://purl.obolibrary.org/obo/PR_000003913,RAC-gamma serine/threonine-protein kinase +10.5091287,PR:000007634,http://purl.obolibrary.org/obo/PR_000007634,forkhead box protein L2 +10.5107172,DRUGBANK:DB08882,http://purl.obolibrary.org/obo/DRUGBANK_DB08882,none +10.5107172,DRUGBANK:DB14235,http://purl.obolibrary.org/obo/DRUGBANK_DB14235,none +10.5107172,DRUGBANK:DB15429,http://purl.obolibrary.org/obo/DRUGBANK_DB15429,none +10.5107172,GO:0008434,http://purl.obolibrary.org/obo/GO_0008434,none +10.5107172,GO:0046915,http://purl.obolibrary.org/obo/GO_0046915,transition metal ion transmembrane transporter activity +10.5107172,MONDO:0006559,http://purl.obolibrary.org/obo/MONDO_0006559,hidradenitis suppurativa +10.5107172,MONDO:0006862,http://purl.obolibrary.org/obo/MONDO_0006862,myofascial pain syndrome +10.5107172,PR:000000281,http://purl.obolibrary.org/obo/PR_000000281,growth/differentiation factor 5 +10.5107172,PR:000014147,http://purl.obolibrary.org/obo/PR_000014147,aminopeptidase B +10.5107172,PR:000015407,http://purl.obolibrary.org/obo/PR_000015407,sorbin and SH3 domain-containing protein 1 +10.5107172,PR:000016180,http://purl.obolibrary.org/obo/PR_000016180,transcription factor 21 +10.5107172,UBERON:0001639,http://purl.obolibrary.org/obo/UBERON_0001639,hepatic portal vein +10.5123083,CHEBI:23982,http://purl.obolibrary.org/obo/CHEBI_23982,ethanols +10.5123083,DRUGBANK:DB04896,http://purl.obolibrary.org/obo/DRUGBANK_DB04896,none +10.5123083,DRUGBANK:DB06752,http://purl.obolibrary.org/obo/DRUGBANK_DB06752,none +10.5123083,MONDO:0015661,http://purl.obolibrary.org/obo/MONDO_0015661,dextrocardia +10.5123083,MONDO:0017226,http://purl.obolibrary.org/obo/MONDO_0017226,Pelizaeus-Merzbacher-like disease +10.5123083,MONDO:0024905,http://purl.obolibrary.org/obo/MONDO_0024905,bird disease +10.5123083,NCBITaxon:8006,http://purl.obolibrary.org/obo/NCBITaxon_8006,Salmoniformes +10.5123083,NCBITaxon:8015,http://purl.obolibrary.org/obo/NCBITaxon_8015,Salmonidae +10.5123083,PR:000001474,http://purl.obolibrary.org/obo/PR_000001474,interleukin-24 +10.5123083,UBERON:0003962,http://purl.obolibrary.org/obo/UBERON_0003962,pterygopalatine ganglion +10.5139019,CL:0000529,http://purl.obolibrary.org/obo/CL_0000529,pigmented epithelial cell +10.5139019,CL:0000790,http://purl.obolibrary.org/obo/CL_0000790,immature alpha-beta T cell +10.5139019,DRUGBANK:DB00548,http://purl.obolibrary.org/obo/DRUGBANK_DB00548,none +10.5139019,GO:0016231,http://purl.obolibrary.org/obo/GO_0016231,beta-N-acetylglucosaminidase activity +10.5139019,GO:0045005,http://purl.obolibrary.org/obo/GO_0045005,DNA-dependent DNA replication maintenance of fidelity +10.5139019,MONDO:0008721,http://purl.obolibrary.org/obo/MONDO_0008721,medium chain acyl-CoA dehydrogenase deficiency +10.5139019,MONDO:0015991,http://purl.obolibrary.org/obo/MONDO_0015991,citrullinemia +10.5139019,MONDO:0019248,http://purl.obolibrary.org/obo/MONDO_0019248,mucolipidosis +10.5139019,PR:000001579,http://purl.obolibrary.org/obo/PR_000001579,delta-type opioid receptor +10.5139019,PR:000005225,http://purl.obolibrary.org/obo/PR_000005225,cell division cycle-associated 7-like protein +10.5139019,PR:000006967,http://purl.obolibrary.org/obo/PR_000006967,protein argonaute-1 +10.5139019,PR:000008528,http://purl.obolibrary.org/obo/PR_000008528,hairy/enhancer-of-split related with YRPW motif protein 1 +10.5139019,PR:000008573,http://purl.obolibrary.org/obo/PR_000008573,inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1 +10.5139019,PR:000009362,http://purl.obolibrary.org/obo/PR_000009362,krueppel-like factor 2 +10.5139019,UBERON:0000037,http://purl.obolibrary.org/obo/UBERON_0000037,tertiary ovarian follicle +10.5139019,UBERON:0001537,http://purl.obolibrary.org/obo/UBERON_0001537,anterior tibial artery +10.5139019,UBERON:0011968,http://purl.obolibrary.org/obo/UBERON_0011968,radio-carpal joint +10.5139019,UBERON:0012131,http://purl.obolibrary.org/obo/UBERON_0012131,centrale +10.5154981,CHEBI:50401,http://purl.obolibrary.org/obo/CHEBI_50401,cholestanoid +10.5154981,DRUGBANK:DB08875,http://purl.obolibrary.org/obo/DRUGBANK_DB08875,none +10.5154981,GO:0031519,http://purl.obolibrary.org/obo/GO_0031519,PcG protein complex +10.5154981,GO:0051248,http://purl.obolibrary.org/obo/GO_0051248,negative regulation of protein metabolic process +10.5154981,GO:0070253,http://purl.obolibrary.org/obo/GO_0070253,somatostatin secretion +10.5154981,GO:0070613,http://purl.obolibrary.org/obo/GO_0070613,regulation of protein processing +10.5154981,GO:0072677,http://purl.obolibrary.org/obo/GO_0072677,eosinophil migration +10.5154981,MONDO:0020587,http://purl.obolibrary.org/obo/MONDO_0020587,factor XI deficiency +10.5154981,NCBITaxon:11876,http://purl.obolibrary.org/obo/NCBITaxon_11876,none +10.5154981,PR:000000073,http://purl.obolibrary.org/obo/PR_000000073,Muellerian-inhibiting factor +10.5154981,PR:000005547,http://purl.obolibrary.org/obo/PR_000005547,claudin-2 +10.5154981,PR:000016626,http://purl.obolibrary.org/obo/PR_000016626,triggering receptor expressed on myeloid cells 2 +10.5154981,PR:000024065,http://purl.obolibrary.org/obo/PR_000024065,none +10.5170968,CHEBI:2588,http://purl.obolibrary.org/obo/CHEBI_2588,Alkylated DNA +10.5170968,CL:0000824,http://purl.obolibrary.org/obo/CL_0000824,mature natural killer cell +10.5170968,GO:0031179,http://purl.obolibrary.org/obo/GO_0031179,peptide modification +10.5170968,MONDO:0003816,http://purl.obolibrary.org/obo/MONDO_0003816,articular cartilage disease +10.5170968,MONDO:0017704,http://purl.obolibrary.org/obo/MONDO_0017704,familial partial epilepsy +10.5170968,NCBITaxon:511693,http://purl.obolibrary.org/obo/NCBITaxon_511693,none +10.5170968,NCBITaxon:694003,http://purl.obolibrary.org/obo/NCBITaxon_694003,none +10.5170968,UBERON:0002173,http://purl.obolibrary.org/obo/UBERON_0002173,pulmonary alveolar duct +10.5186981,CL:0002672,http://purl.obolibrary.org/obo/CL_0002672,retinal progenitor cell +10.5186981,DRUGBANK:DB03322,http://purl.obolibrary.org/obo/DRUGBANK_DB03322,none +10.5186981,DRUGBANK:DB13982,http://purl.obolibrary.org/obo/DRUGBANK_DB13982,none +10.5186981,GO:0009850,http://purl.obolibrary.org/obo/GO_0009850,auxin metabolic process +10.5186981,HP:0012732,http://purl.obolibrary.org/obo/HP_0012732,Anorectal anomaly +10.5186981,MONDO:0006485,http://purl.obolibrary.org/obo/MONDO_0006485,uterine carcinosarcoma +10.5186981,PR:000014372,http://purl.obolibrary.org/obo/PR_000014372,retinoic acid receptor RXR-alpha +10.5186981,PR:000023005,http://purl.obolibrary.org/obo/PR_000023005,branched-chain-amino-acid aminotransferase +10.5186981,PR:Q9LSY7,http://purl.obolibrary.org/obo/PR_Q9LSY7,none +10.520302,CHEBI:134179,http://purl.obolibrary.org/obo/CHEBI_134179,volatile organic compound +10.520302,DRUGBANK:DB06590,http://purl.obolibrary.org/obo/DRUGBANK_DB06590,none +10.520302,DRUGBANK:DB12617,http://purl.obolibrary.org/obo/DRUGBANK_DB12617,none +10.520302,GO:0003959,http://purl.obolibrary.org/obo/GO_0003959,NADPH dehydrogenase activity +10.520302,GO:0030244,http://purl.obolibrary.org/obo/GO_0030244,cellulose biosynthetic process +10.520302,GO:0036503,http://purl.obolibrary.org/obo/GO_0036503,ERAD pathway +10.520302,GO:0080144,http://purl.obolibrary.org/obo/GO_0080144,amino acid homeostasis +10.520302,MONDO:0009131,http://purl.obolibrary.org/obo/MONDO_0009131,Riley-Day syndrome +10.520302,MONDO:0009411,http://purl.obolibrary.org/obo/MONDO_0009411,autoimmune polyendocrine syndrome type 1 +10.520302,PR:000003282,http://purl.obolibrary.org/obo/PR_000003282,dual specificity mitogen-activated protein kinase kinase 6 +10.520302,PR:000003572,http://purl.obolibrary.org/obo/PR_000003572,ATP-binding cassette sub-family G member 5 +10.520302,PR:000006495,http://purl.obolibrary.org/obo/PR_000006495,protein dispatched homolog 1 +10.520302,PR:000007294,http://purl.obolibrary.org/obo/PR_000007294,coagulation factor X +10.520302,PR:000011057,http://purl.obolibrary.org/obo/PR_000011057,NADPH-dependent diflavin oxidoreductase 1 +10.520302,PR:000034875,http://purl.obolibrary.org/obo/PR_000034875,none +10.520302,UBERON:0004003,http://purl.obolibrary.org/obo/UBERON_0004003,cerebellum hemisphere lobule +10.520302,UBERON:0005294,http://purl.obolibrary.org/obo/UBERON_0005294,gonadal ridge +10.5219084,CHEBI:64708,http://purl.obolibrary.org/obo/CHEBI_64708,one-carbon compound +10.5219084,GO:0010827,http://purl.obolibrary.org/obo/GO_0010827,regulation of glucose transmembrane transport +10.5219084,GO:0033762,http://purl.obolibrary.org/obo/GO_0033762,response to glucagon +10.5219084,GO:0034142,http://purl.obolibrary.org/obo/GO_0034142,toll-like receptor 4 signaling pathway +10.5219084,GO:0034650,http://purl.obolibrary.org/obo/GO_0034650,cortisol metabolic process +10.5219084,GO:0070059,http://purl.obolibrary.org/obo/GO_0070059,intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress +10.5219084,MONDO:0004756,http://purl.obolibrary.org/obo/MONDO_0004756,nasal cavity neoplasm +10.5219084,PR:Q5ABE2,http://purl.obolibrary.org/obo/PR_Q5ABE2,none +10.5219084,UBERON:0001451,http://purl.obolibrary.org/obo/UBERON_0001451,navicular bone of pes +10.5235174,DRUGBANK:DB00274,http://purl.obolibrary.org/obo/DRUGBANK_DB00274,none +10.5235174,GO:0005758,http://purl.obolibrary.org/obo/GO_0005758,mitochondrial intermembrane space +10.5235174,GO:0010521,http://purl.obolibrary.org/obo/GO_0010521,telomerase inhibitor activity +10.5235174,MONDO:0004627,http://purl.obolibrary.org/obo/MONDO_0004627,duodenitis +10.5235174,MONDO:0008310,http://purl.obolibrary.org/obo/MONDO_0008310,Hutchinson-Gilford progeria syndrome +10.5235174,MONDO:0018591,http://purl.obolibrary.org/obo/MONDO_0018591,ITM2B amyloidosis +10.5235174,NCBITaxon:10141,http://purl.obolibrary.org/obo/NCBITaxon_10141,Cavia porcellus +10.5235174,NCBITaxon:7655,http://purl.obolibrary.org/obo/NCBITaxon_7655,none +10.5235174,NCBITaxon:7656,http://purl.obolibrary.org/obo/NCBITaxon_7656,none +10.5235174,NCBITaxon:7676,http://purl.obolibrary.org/obo/NCBITaxon_7676,none +10.5235174,PR:000001142,http://purl.obolibrary.org/obo/PR_000001142,interleukin-17F +10.5235174,PR:000008922,http://purl.obolibrary.org/obo/PR_000008922,interferon-alpha/beta receptor alpha chain +10.525129,DRUGBANK:DB00478,http://purl.obolibrary.org/obo/DRUGBANK_DB00478,none +10.525129,DRUGBANK:DB13944,http://purl.obolibrary.org/obo/DRUGBANK_DB13944,none +10.525129,GO:0009303,http://purl.obolibrary.org/obo/GO_0009303,rRNA transcription +10.525129,GO:0009809,http://purl.obolibrary.org/obo/GO_0009809,lignin biosynthetic process +10.525129,GO:0032269,http://purl.obolibrary.org/obo/GO_0032269,negative regulation of cellular protein metabolic process +10.525129,HP:0005368,http://purl.obolibrary.org/obo/HP_0005368,Abnormality of humoral immunity +10.525129,NCBITaxon:32335,http://purl.obolibrary.org/obo/NCBITaxon_32335,none +10.525129,PR:000012888,http://purl.obolibrary.org/obo/PR_000012888,phospholipid transfer protein +10.525129,PR:000016313,http://purl.obolibrary.org/obo/PR_000016313,THO complex subunit 4 +10.525129,PR:000029770,http://purl.obolibrary.org/obo/PR_000029770,sulfotransferase 2A1 +10.525129,PR:P32805,http://purl.obolibrary.org/obo/PR_P32805,none +10.525129,PR:Q9SEX2,http://purl.obolibrary.org/obo/PR_Q9SEX2,none +10.525129,UBERON:0013162,http://purl.obolibrary.org/obo/UBERON_0013162,right lateral ventricle +10.5267432,CL:0000809,http://purl.obolibrary.org/obo/CL_0000809,"double-positive, alpha-beta thymocyte" +10.5267432,DRUGBANK:DB01683,http://purl.obolibrary.org/obo/DRUGBANK_DB01683,none +10.5267432,GO:0016607,http://purl.obolibrary.org/obo/GO_0016607,nuclear speck +10.5267432,GO:0030639,http://purl.obolibrary.org/obo/GO_0030639,polyketide biosynthetic process +10.5267432,MONDO:0004719,http://purl.obolibrary.org/obo/MONDO_0004719,hard palate cancer +10.5267432,MONDO:0017885,http://purl.obolibrary.org/obo/MONDO_0017885,chromophobe renal cell carcinoma +10.5267432,NCBITaxon:11620,http://purl.obolibrary.org/obo/NCBITaxon_11620,Lassa mammarenavirus +10.5267432,NCBITaxon:1489940,http://purl.obolibrary.org/obo/NCBITaxon_1489940,none +10.5267432,NCBITaxon:41856,http://purl.obolibrary.org/obo/NCBITaxon_41856,none +10.5267432,PR:000001018,http://purl.obolibrary.org/obo/PR_000001018,CD3 subunit with immunoglobulin domain +10.5267432,PR:000013824,http://purl.obolibrary.org/obo/PR_000013824,recombining binding protein suppressor of hairless +10.52836,DRUGBANK:DB14336,http://purl.obolibrary.org/obo/DRUGBANK_DB14336,none +10.52836,GO:0007186,http://purl.obolibrary.org/obo/GO_0007186,G protein-coupled receptor signaling pathway +10.52836,HP:0000953,http://purl.obolibrary.org/obo/HP_0000953,Hyperpigmentation of the skin +10.52836,MONDO:0002342,http://purl.obolibrary.org/obo/MONDO_0002342,chondromalacia +10.52836,MONDO:0016722,http://purl.obolibrary.org/obo/MONDO_0016722,pineoblastoma +10.52836,MONDO:0017957,http://purl.obolibrary.org/obo/MONDO_0017957,unclassified autoinflammatory syndrome +10.52836,MONDO:0022723,http://purl.obolibrary.org/obo/MONDO_0022723,chondrodysplasia +10.52836,PR:000034347,http://purl.obolibrary.org/obo/PR_000034347,none +10.52836,PR:P25334,http://purl.obolibrary.org/obo/PR_P25334,none +10.52836,SO:0001056,http://purl.obolibrary.org/obo/SO_0001056,splicing_regulatory_region +10.52836,UBERON:0006680,http://purl.obolibrary.org/obo/UBERON_0006680,trachealis +10.5299794,DRUGBANK:DB05254,http://purl.obolibrary.org/obo/DRUGBANK_DB05254,none +10.5299794,DRUGBANK:DB05294,http://purl.obolibrary.org/obo/DRUGBANK_DB05294,none +10.5299794,DRUGBANK:DB12991,http://purl.obolibrary.org/obo/DRUGBANK_DB12991,none +10.5299794,DRUGBANK:DB13941,http://purl.obolibrary.org/obo/DRUGBANK_DB13941,none +10.5299794,MONDO:0021388,http://purl.obolibrary.org/obo/MONDO_0021388,neoplasm of chest wall +10.5299794,PR:000014703,http://purl.obolibrary.org/obo/PR_000014703,glia-derived nexin +10.5299794,PR:000027623,http://purl.obolibrary.org/obo/PR_000027623,none +10.5299794,UBERON:0000022,http://purl.obolibrary.org/obo/UBERON_0000022,feather +10.5316015,CHEBI:17188,http://purl.obolibrary.org/obo/CHEBI_17188,nucleoside 5'-monophosphate +10.5316015,CHEBI:26558,http://purl.obolibrary.org/obo/CHEBI_26558,ribonucleoside monophosphate +10.5316015,CHEBI:37010,http://purl.obolibrary.org/obo/CHEBI_37010,ribonucleoside 5'-monophosphate +10.5316015,CL:0000110,http://purl.obolibrary.org/obo/CL_0000110,peptidergic neuron +10.5316015,GO:0006570,http://purl.obolibrary.org/obo/GO_0006570,tyrosine metabolic process +10.5316015,MONDO:0009291,http://purl.obolibrary.org/obo/MONDO_0009291,glycogen storage disease III +10.5316015,MONDO:0013184,http://purl.obolibrary.org/obo/MONDO_0013184,congenital diarrhea 5 with tufting enteropathy +10.5316015,MONDO:0044764,http://purl.obolibrary.org/obo/MONDO_0044764,benign choroid plexus neoplasm +10.5316015,NCBITaxon:12845,http://purl.obolibrary.org/obo/NCBITaxon_12845,Swine influenza virus +10.5316015,PR:000001252,http://purl.obolibrary.org/obo/PR_000001252,none +10.5316015,PR:000009061,http://purl.obolibrary.org/obo/PR_000009061,insulin-like peptide INSL6 +10.5316015,PR:000009739,http://purl.obolibrary.org/obo/PR_000009739,L-lactate dehydrogenase A chain +10.5316015,PR:000044782,http://purl.obolibrary.org/obo/PR_000044782,pregnancy-specific beta-1-glycoprotein +10.5316015,UBERON:0005749,http://purl.obolibrary.org/obo/UBERON_0005749,glomerular tuft +10.5332262,DRUGBANK:DB02412,http://purl.obolibrary.org/obo/DRUGBANK_DB02412,none +10.5332262,DRUGBANK:DB03260,http://purl.obolibrary.org/obo/DRUGBANK_DB03260,none +10.5332262,DRUGBANK:DB11664,http://purl.obolibrary.org/obo/DRUGBANK_DB11664,none +10.5332262,DRUGBANK:DB13682,http://purl.obolibrary.org/obo/DRUGBANK_DB13682,none +10.5332262,DRUGBANK:DB14196,http://purl.obolibrary.org/obo/DRUGBANK_DB14196,none +10.5332262,GO:0047372,http://purl.obolibrary.org/obo/GO_0047372,acylglycerol lipase activity +10.5332262,HP:0010701,http://purl.obolibrary.org/obo/HP_0010701,Abnormal immunoglobulin level +10.5332262,MONDO:0018546,http://purl.obolibrary.org/obo/MONDO_0018546,serotonin syndrome +10.5332262,PR:000006960,http://purl.obolibrary.org/obo/PR_000006960,eukaryotic translation initiation factor 2-alpha kinase 3 +10.5332262,PR:000014757,http://purl.obolibrary.org/obo/PR_000014757,"splicing factor, arginine/serine-rich 2" +10.5332262,PR:000015424,http://purl.obolibrary.org/obo/PR_000015424,transcription factor SOX-17 +10.5332262,PR:000016596,http://purl.obolibrary.org/obo/PR_000016596,translationally-controlled tumor protein +10.5332262,PR:000044519,http://purl.obolibrary.org/obo/PR_000044519,protocadherin Fat +10.5332262,UBERON:0013636,http://purl.obolibrary.org/obo/UBERON_0013636,epithelium of intestinal villus +10.5332262,UBERON:0018649,http://purl.obolibrary.org/obo/UBERON_0018649,cardiac muscle tissue of ventricle +10.5332262,UBERON:0034987,http://purl.obolibrary.org/obo/UBERON_0034987,lumbar nerve plexus +10.5348535,DRUGBANK:DB11600,http://purl.obolibrary.org/obo/DRUGBANK_DB11600,none +10.5348535,GO:1901068,http://purl.obolibrary.org/obo/GO_1901068,guanosine-containing compound metabolic process +10.5348535,HP:0005372,http://purl.obolibrary.org/obo/HP_0005372,Abnormality of B cell physiology +10.5348535,HP:0011017,http://purl.obolibrary.org/obo/HP_0011017,Abnormal cellular physiology +10.5348535,HP:0025354,http://purl.obolibrary.org/obo/HP_0025354,Abnormal cellular phenotype +10.5348535,HP:0031409,http://purl.obolibrary.org/obo/HP_0031409,Abnormal lymphocyte physiology +10.5348535,HP:0033796,http://purl.obolibrary.org/obo/HP_0033796,Abnormal leukocyte physiology +10.5348535,NCBITaxon:329641,http://purl.obolibrary.org/obo/NCBITaxon_329641,none +10.5348535,PR:000007559,http://purl.obolibrary.org/obo/PR_000007559,flotillin-2 +10.5348535,PR:000010165,http://purl.obolibrary.org/obo/PR_000010165,MAP kinase-activated protein kinase 2 +10.5348535,PR:000013682,http://purl.obolibrary.org/obo/PR_000013682,cell cycle checkpoint control protein RAD9A +10.5348535,UBERON:0003712,http://purl.obolibrary.org/obo/UBERON_0003712,cavernous sinus +10.5364835,CL:0000259,http://purl.obolibrary.org/obo/CL_0000259,none +10.5364835,GO:0051286,http://purl.obolibrary.org/obo/GO_0051286,cell tip +10.5364835,MONDO:0000820,http://purl.obolibrary.org/obo/MONDO_0000820,cerebral cavernous malformation +10.5364835,MONDO:0002914,http://purl.obolibrary.org/obo/MONDO_0002914,childhood brain stem neoplasm +10.5364835,MONDO:0004532,http://purl.obolibrary.org/obo/MONDO_0004532,auditory system cancer +10.5364835,MONDO:0004833,http://purl.obolibrary.org/obo/MONDO_0004833,plantar fasciitis +10.5364835,NCBITaxon:6599,http://purl.obolibrary.org/obo/NCBITaxon_6599,none +10.5364835,PR:000016262,http://purl.obolibrary.org/obo/PR_000016262,"transcription factor A, mitochondrial" +10.5364835,PR:Q96522,http://purl.obolibrary.org/obo/PR_Q96522,none +10.5381162,DRUGBANK:DB00519,http://purl.obolibrary.org/obo/DRUGBANK_DB00519,none +10.5381162,GO:0004103,http://purl.obolibrary.org/obo/GO_0004103,choline kinase activity +10.5381162,MONDO:0009837,http://purl.obolibrary.org/obo/MONDO_0009837,choroid plexus papilloma +10.5381162,MONDO:0011895,http://purl.obolibrary.org/obo/MONDO_0011895,idiopathic hypereosinophilic syndrome +10.5381162,MONDO:0017021,http://purl.obolibrary.org/obo/MONDO_0017021,secondary interstitial lung disease specific to childhood associated with a connective tissue disease +10.5381162,MONDO:0024665,http://purl.obolibrary.org/obo/MONDO_0024665,indeterminate sex and/or pseudohermaphroditism +10.5381162,PR:000006218,http://purl.obolibrary.org/obo/PR_000006218,none +10.5381162,PR:000017043,http://purl.obolibrary.org/obo/PR_000017043,ceramide glucosyltransferase +10.5381162,UBERON:0002152,http://purl.obolibrary.org/obo/UBERON_0002152,middle cerebellar peduncle +10.5381162,UBERON:0003604,http://purl.obolibrary.org/obo/UBERON_0003604,trachea cartilage +10.5381162,UBERON:0003918,http://purl.obolibrary.org/obo/UBERON_0003918,kidney mesenchyme +10.5381162,UBERON:0006833,http://purl.obolibrary.org/obo/UBERON_0006833,lumen of trachea +10.5397515,CHEBI:33856,http://purl.obolibrary.org/obo/CHEBI_33856,aromatic amino acid +10.5397515,MONDO:0002680,http://purl.obolibrary.org/obo/MONDO_0002680,chronic wasting disease +10.5397515,MONDO:0012099,http://purl.obolibrary.org/obo/MONDO_0012099,AICA-ribosiduria +10.5397515,MONDO:0013280,http://purl.obolibrary.org/obo/MONDO_0013280,myxoid liposarcoma +10.5397515,PR:000004187,http://purl.obolibrary.org/obo/PR_000004187,aquaporin-7 +10.5397515,UBERON:0002150,http://purl.obolibrary.org/obo/UBERON_0002150,superior cerebellar peduncle +10.5397515,UBERON:0013151,http://purl.obolibrary.org/obo/UBERON_0013151,choroidal artery +10.5413895,DRUGBANK:DB00749,http://purl.obolibrary.org/obo/DRUGBANK_DB00749,none +10.5413895,MONDO:0003686,http://purl.obolibrary.org/obo/MONDO_0003686,apocrine sweat gland neoplasm +10.5413895,MONDO:0006638,http://purl.obolibrary.org/obo/MONDO_0006638,acute retinal necrosis syndrome +10.5413895,MONDO:0015217,http://purl.obolibrary.org/obo/MONDO_0015217,non-syndromic developmental defect of the eye +10.5413895,MONDO:0020720,http://purl.obolibrary.org/obo/MONDO_0020720,X-linked hypophosphatemic rickets +10.5413895,NCBITaxon:132194,http://purl.obolibrary.org/obo/NCBITaxon_132194,none +10.5413895,NCBITaxon:32358,http://purl.obolibrary.org/obo/NCBITaxon_32358,none +10.5413895,NCBITaxon:36500,http://purl.obolibrary.org/obo/NCBITaxon_36500,none +10.5413895,NCBITaxon:9126,http://purl.obolibrary.org/obo/NCBITaxon_9126,Passeriformes +10.5413895,PR:000003428,http://purl.obolibrary.org/obo/PR_000003428,thyroid hormone receptor alpha +10.5413895,PR:000016703,http://purl.obolibrary.org/obo/PR_000016703,transient receptor potential cation channel subfamily M member 7 +10.5413895,PR:O60125,http://purl.obolibrary.org/obo/PR_O60125,none +10.5413895,UBERON:0001722,http://purl.obolibrary.org/obo/UBERON_0001722,medial vestibular nucleus +10.5413895,UBERON:0008934,http://purl.obolibrary.org/obo/UBERON_0008934,secondary somatosensory cortex +10.5430302,CHEBI:36333,http://purl.obolibrary.org/obo/CHEBI_36333,local anaesthetic +10.5430302,DRUGBANK:DB02606,http://purl.obolibrary.org/obo/DRUGBANK_DB02606,none +10.5430302,GO:0006167,http://purl.obolibrary.org/obo/GO_0006167,AMP biosynthetic process +10.5430302,GO:0042118,http://purl.obolibrary.org/obo/GO_0042118,endothelial cell activation +10.5430302,GO:0051608,http://purl.obolibrary.org/obo/GO_0051608,histamine transport +10.5430302,GO:1904116,http://purl.obolibrary.org/obo/GO_1904116,response to vasopressin +10.5430302,GO:1990005,http://purl.obolibrary.org/obo/GO_1990005,granular vesicle +10.5430302,HP:0000975,http://purl.obolibrary.org/obo/HP_0000975,Hyperhidrosis +10.5430302,MONDO:0010703,http://purl.obolibrary.org/obo/MONDO_0010703,ornithine carbamoyltransferase deficiency +10.5430302,NCBITaxon:2785015,http://purl.obolibrary.org/obo/NCBITaxon_2785015,none +10.5430302,NCBITaxon:735337,http://purl.obolibrary.org/obo/NCBITaxon_735337,none +10.5430302,PR:000001326,http://purl.obolibrary.org/obo/PR_000001326,bone marrow stromal antigen 2 +10.5430302,PR:000003864,http://purl.obolibrary.org/obo/PR_000003864,single-stranded DNA cytosine deaminase +10.5430302,UBERON:0013191,http://purl.obolibrary.org/obo/UBERON_0013191,ovarian cortex +10.5446736,DRUGBANK:DB00565,http://purl.obolibrary.org/obo/DRUGBANK_DB00565,none +10.5446736,DRUGBANK:DB10628,http://purl.obolibrary.org/obo/DRUGBANK_DB10628,none +10.5446736,GO:0001975,http://purl.obolibrary.org/obo/GO_0001975,response to amphetamine +10.5446736,MONDO:0008054,http://purl.obolibrary.org/obo/MONDO_0008054,juvenile dermatomyositis +10.5446736,MONDO:0019717,http://purl.obolibrary.org/obo/MONDO_0019717,chromosomal disease with overgrowth +10.5446736,PR:000001811,http://purl.obolibrary.org/obo/PR_000001811,DNA-binding protein Ikaros +10.5446736,PR:000014489,http://purl.obolibrary.org/obo/PR_000014489,sterol regulatory element-binding protein cleavage-activating protein +10.5446736,PR:000022684,http://purl.obolibrary.org/obo/PR_000022684,none +10.5446736,PR:O09110,http://purl.obolibrary.org/obo/PR_O09110,none +10.5446736,UBERON:0001644,http://purl.obolibrary.org/obo/UBERON_0001644,trochlear nerve +10.5446736,UBERON:0004620,http://purl.obolibrary.org/obo/UBERON_0004620,lumbar vertebra 4 +10.5463197,CHEBI:58945,http://purl.obolibrary.org/obo/CHEBI_58945,organophosphate oxoanion +10.5463197,CL:0000313,http://purl.obolibrary.org/obo/CL_0000313,serous secreting cell +10.5463197,GO:0006809,http://purl.obolibrary.org/obo/GO_0006809,nitric oxide biosynthetic process +10.5463197,GO:0042297,http://purl.obolibrary.org/obo/GO_0042297,vocal learning +10.5463197,HP:0010765,http://purl.obolibrary.org/obo/HP_0010765,Palmar hyperkeratosis +10.5463197,HP:0040211,http://purl.obolibrary.org/obo/HP_0040211,Abnormal skin morphology of the palm +10.5463197,HP:0100871,http://purl.obolibrary.org/obo/HP_0100871,Abnormality of the palm +10.5463197,MONDO:0005810,http://purl.obolibrary.org/obo/MONDO_0005810,infectious mononucleosis +10.5463197,MONDO:0007336,http://purl.obolibrary.org/obo/MONDO_0007336,isolated cleft palate +10.5463197,MONDO:0020605,http://purl.obolibrary.org/obo/MONDO_0020605,X-linked recessive disease +10.5463197,NCBITaxon:11599,http://purl.obolibrary.org/obo/NCBITaxon_11599,none +10.5463197,NCBITaxon:6340,http://purl.obolibrary.org/obo/NCBITaxon_6340,Annelida +10.5463197,PR:000003874,http://purl.obolibrary.org/obo/PR_000003874,interferon-inducible protein AIM2 +10.5463197,PR:000005235,http://purl.obolibrary.org/obo/PR_000005235,cadherin-17 +10.5463197,PR:000013252,http://purl.obolibrary.org/obo/PR_000013252,protein arginine N-methyltransferase 1 +10.5479685,DRUGBANK:DB15049,http://purl.obolibrary.org/obo/DRUGBANK_DB15049,none +10.5479685,GO:0010639,http://purl.obolibrary.org/obo/GO_0010639,negative regulation of organelle organization +10.5479685,MONDO:0006102,http://purl.obolibrary.org/obo/MONDO_0006102,basaloid carcinoma +10.5479685,MONDO:0021052,http://purl.obolibrary.org/obo/MONDO_0021052,parasympathetic paraganglioma +10.5479685,MONDO:0044995,http://purl.obolibrary.org/obo/MONDO_0044995,parasympathetic nervous system disease +10.5479685,PR:000011120,http://purl.obolibrary.org/obo/PR_000011120,neurofilament medium polypeptide +10.5479685,PR:000012416,http://purl.obolibrary.org/obo/PR_000012416,"phosphoenolpyruvate carboxykinase, cytosolic [GTP]" +10.5479685,PR:000017507,http://purl.obolibrary.org/obo/PR_000017507,DNA repair protein XRCC4 +10.5479685,SO:0001964,http://purl.obolibrary.org/obo/SO_0001964,modified_guanine +10.54962,DRUGBANK:DB14119,http://purl.obolibrary.org/obo/DRUGBANK_DB14119,none +10.54962,MONDO:0002422,http://purl.obolibrary.org/obo/MONDO_0002422,adamantinoma +10.54962,MONDO:0019188,http://purl.obolibrary.org/obo/MONDO_0019188,Rubinstein-Taybi syndrome +10.54962,MONDO:0020367,http://purl.obolibrary.org/obo/MONDO_0020367,juvenile open angle glaucoma +10.54962,MONDO:0020689,http://purl.obolibrary.org/obo/MONDO_0020689,AIDS dementia complex +10.54962,PR:000002017,http://purl.obolibrary.org/obo/PR_000002017,MHC class II histocompatibility antigen beta chain DQB1 +10.54962,PR:000003113,http://purl.obolibrary.org/obo/PR_000003113,"nuclear factor of activated T-cells, cytoplasmic 1" +10.54962,PR:000004189,http://purl.obolibrary.org/obo/PR_000004189,aquaporin-9 +10.54962,PR:000009791,http://purl.obolibrary.org/obo/PR_000009791,LIM/homeobox protein Lhx1 +10.54962,PR:000013376,http://purl.obolibrary.org/obo/PR_000013376,proteasome subunit beta type-8 +10.54962,PR:Q38898,http://purl.obolibrary.org/obo/PR_Q38898,none +10.54962,SO:0001772,http://purl.obolibrary.org/obo/SO_0001772,disease_causing_variant +10.54962,UBERON:0004380,http://purl.obolibrary.org/obo/UBERON_0004380,proximal epiphysis +10.5512743,DRUGBANK:DB12038,http://purl.obolibrary.org/obo/DRUGBANK_DB12038,none +10.5512743,GO:0016723,http://purl.obolibrary.org/obo/GO_0016723,"oxidoreductase activity, acting on metal ions, NAD or NADP as acceptor" +10.5512743,MONDO:0006038,http://purl.obolibrary.org/obo/MONDO_0006038,indeterminate colitis +10.5512743,PR:000006048,http://purl.obolibrary.org/obo/PR_000006048,cullin-3 +10.5512743,UBERON:0002828,http://purl.obolibrary.org/obo/UBERON_0002828,ventral cochlear nucleus +10.5512743,UBERON:0004376,http://purl.obolibrary.org/obo/UBERON_0004376,fin bone +10.5529313,CL:1001567,http://purl.obolibrary.org/obo/CL_1001567,lung endothelial cell +10.5529313,DRUGBANK:DB12604,http://purl.obolibrary.org/obo/DRUGBANK_DB12604,none +10.5529313,GO:0001755,http://purl.obolibrary.org/obo/GO_0001755,neural crest cell migration +10.5529313,GO:0048858,http://purl.obolibrary.org/obo/GO_0048858,cell projection morphogenesis +10.5529313,MONDO:0017778,http://purl.obolibrary.org/obo/MONDO_0017778,lamellar ichthyosis +10.5529313,NCBITaxon:83334,http://purl.obolibrary.org/obo/NCBITaxon_83334,Escherichia coli O157:H7 +10.5529313,PR:000010117,http://purl.obolibrary.org/obo/PR_000010117,microtubule-associated protein 1B +10.5529313,PR:000014892,http://purl.obolibrary.org/obo/PR_000014892,NAD-dependent protein deacetylase sirtuin-6 +10.5529313,UBERON:0000329,http://purl.obolibrary.org/obo/UBERON_0000329,hair root +10.5529313,UBERON:0001843,http://purl.obolibrary.org/obo/UBERON_0001843,lateral semicircular canal +10.5529313,UBERON:0002576,http://purl.obolibrary.org/obo/UBERON_0002576,temporal pole +10.5529313,UBERON:0012472,http://purl.obolibrary.org/obo/UBERON_0012472,hepatoduodenal ligament +10.554591,DRUGBANK:DB05262,http://purl.obolibrary.org/obo/DRUGBANK_DB05262,none +10.554591,DRUGBANK:DB06603,http://purl.obolibrary.org/obo/DRUGBANK_DB06603,none +10.554591,DRUGBANK:DB08080,http://purl.obolibrary.org/obo/DRUGBANK_DB08080,none +10.554591,DRUGBANK:DB12708,http://purl.obolibrary.org/obo/DRUGBANK_DB12708,none +10.554591,GO:0002768,http://purl.obolibrary.org/obo/GO_0002768,immune response-regulating cell surface receptor signaling pathway +10.554591,GO:0015884,http://purl.obolibrary.org/obo/GO_0015884,folic acid transport +10.554591,GO:0030666,http://purl.obolibrary.org/obo/GO_0030666,endocytic vesicle membrane +10.554591,GO:0042918,http://purl.obolibrary.org/obo/GO_0042918,alkanesulfonate transport +10.554591,HP:0002071,http://purl.obolibrary.org/obo/HP_0002071,Abnormality of extrapyramidal motor function +10.554591,MONDO:0000447,http://purl.obolibrary.org/obo/MONDO_0000447,autosomal dominant polycystic liver disease +10.554591,MONDO:0005080,http://purl.obolibrary.org/obo/MONDO_0005080,portal hypertension +10.554591,MONDO:0007640,http://purl.obolibrary.org/obo/MONDO_0007640,Sorsby's fundus dystrophy +10.554591,MONDO:0020634,http://purl.obolibrary.org/obo/MONDO_0020634,grade III meningioma +10.554591,NCBITaxon:126794,http://purl.obolibrary.org/obo/NCBITaxon_126794,none +10.554591,NCBITaxon:1511908,http://purl.obolibrary.org/obo/NCBITaxon_1511908,none +10.554591,PR:000002210,http://purl.obolibrary.org/obo/PR_000002210,"protein kinase C, delta-like" +10.554591,PR:000008838,http://purl.obolibrary.org/obo/PR_000008838,serine protease HTRA1 +10.554591,PR:000009882,http://purl.obolibrary.org/obo/PR_000009882,loricrin +10.554591,PR:000013894,http://purl.obolibrary.org/obo/PR_000013894,RE1-silencing transcription factor +10.554591,PR:000031577,http://purl.obolibrary.org/obo/PR_000031577,Polycomb group protein ASXL1 +10.554591,PR:000045517,http://purl.obolibrary.org/obo/PR_000045517,myeloid-derived growth factor +10.554591,PR:Q09260,http://purl.obolibrary.org/obo/PR_Q09260,none +10.554591,UBERON:0005341,http://purl.obolibrary.org/obo/UBERON_0005341,ventral commissure +10.5562535,CHEBI:48354,http://purl.obolibrary.org/obo/CHEBI_48354,polar solvent +10.5562535,CL:0000843,http://purl.obolibrary.org/obo/CL_0000843,follicular B cell +10.5562535,DRUGBANK:DB06210,http://purl.obolibrary.org/obo/DRUGBANK_DB06210,none +10.5562535,DRUGBANK:DB15869,http://purl.obolibrary.org/obo/DRUGBANK_DB15869,none +10.5562535,MONDO:0021110,http://purl.obolibrary.org/obo/MONDO_0021110,sweat gland adenoma +10.5562535,PR:000001086,http://purl.obolibrary.org/obo/PR_000001086,VVC2C2C2 Ig-like domain arrangement-containing protein +10.5562535,PR:000014552,http://purl.obolibrary.org/obo/PR_000014552,syndecan-2 +10.5562535,PR:000034183,http://purl.obolibrary.org/obo/PR_000034183,none +10.5562535,PR:O43133,http://purl.obolibrary.org/obo/PR_O43133,none +10.5562535,PR:P32085,http://purl.obolibrary.org/obo/PR_P32085,none +10.5562535,SO:0000391,http://purl.obolibrary.org/obo/SO_0000391,U1_snRNA +10.5562535,UBERON:0002364,http://purl.obolibrary.org/obo/UBERON_0002364,tympanic membrane +10.5562535,UBERON:0010243,http://purl.obolibrary.org/obo/UBERON_0010243,merocrine gland +10.5579188,CL:1000432,http://purl.obolibrary.org/obo/CL_1000432,conjunctival epithelial cell +10.5579188,DRUGBANK:DB09125,http://purl.obolibrary.org/obo/DRUGBANK_DB09125,none +10.5579188,DRUGBANK:DB12216,http://purl.obolibrary.org/obo/DRUGBANK_DB12216,none +10.5579188,GO:0004957,http://purl.obolibrary.org/obo/GO_0004957,prostaglandin E receptor activity +10.5579188,GO:0006577,http://purl.obolibrary.org/obo/GO_0006577,amino-acid betaine metabolic process +10.5579188,GO:0071824,http://purl.obolibrary.org/obo/GO_0071824,protein-DNA complex subunit organization +10.5579188,GO:0097470,http://purl.obolibrary.org/obo/GO_0097470,ribbon synapse +10.5579188,PR:000016194,http://purl.obolibrary.org/obo/PR_000016194,T-cell leukemia/lymphoma protein 1B +10.5579188,UBERON:0002559,http://purl.obolibrary.org/obo/UBERON_0002559,medullary reticular formation +10.5579188,UBERON:0004701,http://purl.obolibrary.org/obo/UBERON_0004701,venous system endothelium +10.5595869,DRUGBANK:DB00377,http://purl.obolibrary.org/obo/DRUGBANK_DB00377,none +10.5595869,DRUGBANK:DB14520,http://purl.obolibrary.org/obo/DRUGBANK_DB14520,none +10.5595869,GO:0015734,http://purl.obolibrary.org/obo/GO_0015734,taurine transport +10.5595869,GO:0015846,http://purl.obolibrary.org/obo/GO_0015846,polyamine transport +10.5595869,GO:0016289,http://purl.obolibrary.org/obo/GO_0016289,CoA hydrolase activity +10.5595869,GO:0030261,http://purl.obolibrary.org/obo/GO_0030261,chromosome condensation +10.5595869,GO:0031424,http://purl.obolibrary.org/obo/GO_0031424,keratinization +10.5595869,GO:0072518,http://purl.obolibrary.org/obo/GO_0072518,Rho-dependent protein serine/threonine kinase activity +10.5595869,PR:000006961,http://purl.obolibrary.org/obo/PR_000006961,eIF-2-alpha kinase GCN2 +10.5595869,PR:000014151,http://purl.obolibrary.org/obo/PR_000014151,roundabout homolog 1 +10.5595869,UBERON:0002803,http://purl.obolibrary.org/obo/UBERON_0002803,right parietal lobe +10.5612577,CL:0000639,http://purl.obolibrary.org/obo/CL_0000639,basophil cell of pars distalis of adenohypophysis +10.5612577,DRUGBANK:DB14103,http://purl.obolibrary.org/obo/DRUGBANK_DB14103,none +10.5612577,GO:0004920,http://purl.obolibrary.org/obo/GO_0004920,interleukin-10 receptor activity +10.5612577,GO:0016453,http://purl.obolibrary.org/obo/GO_0016453,C-acetyltransferase activity +10.5612577,MONDO:0005990,http://purl.obolibrary.org/obo/MONDO_0005990,tracheitis +10.5612577,MONDO:0045031,http://purl.obolibrary.org/obo/MONDO_0045031,infectious diarrheal disease +10.5612577,NCBITaxon:687329,http://purl.obolibrary.org/obo/NCBITaxon_687329,none +10.5612577,PR:000003707,http://purl.obolibrary.org/obo/PR_000003707,adenosine deaminase +10.5612577,PR:000004772,http://purl.obolibrary.org/obo/PR_000004772,bone morphogenetic protein 15 +10.5612577,PR:000013845,http://purl.obolibrary.org/obo/PR_000013845,recoverin +10.5612577,UBERON:0006321,http://purl.obolibrary.org/obo/UBERON_0006321,superior oblique extraocular muscle +10.5629314,GO:0004587,http://purl.obolibrary.org/obo/GO_0004587,ornithine-oxo-acid transaminase activity +10.5629314,GO:0007158,http://purl.obolibrary.org/obo/GO_0007158,neuron cell-cell adhesion +10.5629314,GO:0045171,http://purl.obolibrary.org/obo/GO_0045171,intercellular bridge +10.5629314,HP:0010514,http://purl.obolibrary.org/obo/HP_0010514,Hyperpituitarism +10.5629314,HP:0012535,http://purl.obolibrary.org/obo/HP_0012535,Abnormal synaptic transmission +10.5629314,MONDO:0013144,http://purl.obolibrary.org/obo/MONDO_0013144,antithrombin III deficiency +10.5629314,MONDO:0015152,http://purl.obolibrary.org/obo/MONDO_0015152,autosomal recessive limb-girdle muscular dystrophy +10.5629314,MONDO:0016186,http://purl.obolibrary.org/obo/MONDO_0016186,qualitative or quantitative defects of myofibrillar proteins +10.5629314,MONDO:0017895,http://purl.obolibrary.org/obo/MONDO_0017895,familial papillary or follicular thyroid carcinoma +10.5629314,PR:000004214,http://purl.obolibrary.org/obo/PR_000004214,ADP-ribosylation factor-related protein 1 +10.5629314,PR:P14719,http://purl.obolibrary.org/obo/PR_P14719,none +10.5629314,PR:Q9LXG3,http://purl.obolibrary.org/obo/PR_Q9LXG3,none +10.5646078,DRUGBANK:DB06335,http://purl.obolibrary.org/obo/DRUGBANK_DB06335,none +10.5646078,GO:0051321,http://purl.obolibrary.org/obo/GO_0051321,meiotic cell cycle +10.5646078,MONDO:0017140,http://purl.obolibrary.org/obo/MONDO_0017140,L1 syndrome +10.5646078,MONDO:0020324,http://purl.obolibrary.org/obo/MONDO_0020324,intravascular large B-cell lymphoma +10.5646078,MONDO:0020604,http://purl.obolibrary.org/obo/MONDO_0020604,X-linked dominant disease +10.5646078,MONDO:0027767,http://purl.obolibrary.org/obo/MONDO_0027767,partial lipodystrophy +10.5646078,MONDO:0044345,http://purl.obolibrary.org/obo/MONDO_0044345,Schistosoma mansoni infectious disease +10.5646078,PR:000013051,http://purl.obolibrary.org/obo/PR_000013051,phospholipid phosphatase 1 +10.5646078,PR:000029159,http://purl.obolibrary.org/obo/PR_000029159,none +10.5646078,SO:0000267,http://purl.obolibrary.org/obo/SO_0000267,phenylalanyl_tRNA +10.5646078,UBERON:0018230,http://purl.obolibrary.org/obo/UBERON_0018230,femoral canal +10.5662871,CHEBI:35678,http://purl.obolibrary.org/obo/CHEBI_35678,histamine agonist +10.5662871,DRUGBANK:DB06211,http://purl.obolibrary.org/obo/DRUGBANK_DB06211,none +10.5662871,DRUGBANK:DB13627,http://purl.obolibrary.org/obo/DRUGBANK_DB13627,none +10.5662871,GO:0050473,http://purl.obolibrary.org/obo/GO_0050473,arachidonate 15-lipoxygenase activity +10.5662871,HP:0003398,http://purl.obolibrary.org/obo/HP_0003398,Abnormal synaptic transmission at the neuromuscular junction +10.5662871,HP:0003473,http://purl.obolibrary.org/obo/HP_0003473,Fatigable weakness +10.5662871,HP:0030191,http://purl.obolibrary.org/obo/HP_0030191,Abnormal peripheral nervous system synaptic transmission +10.5662871,MONDO:0019002,http://purl.obolibrary.org/obo/MONDO_0019002,Lhermitte-Duclos disease +10.5679692,CHEBI:38496,http://purl.obolibrary.org/obo/CHEBI_38496,electron-transport chain inhibitor +10.5679692,DRUGBANK:DB05773,http://purl.obolibrary.org/obo/DRUGBANK_DB05773,none +10.5679692,GO:0015803,http://purl.obolibrary.org/obo/GO_0015803,branched-chain amino acid transport +10.5679692,GO:0042214,http://purl.obolibrary.org/obo/GO_0042214,terpene metabolic process +10.5679692,HP:0000972,http://purl.obolibrary.org/obo/HP_0000972,Palmoplantar hyperkeratosis +10.5679692,MONDO:0011368,http://purl.obolibrary.org/obo/MONDO_0011368,papillary thyroid Microcarcinoma +10.5679692,NCBITaxon:35269,http://purl.obolibrary.org/obo/NCBITaxon_35269,none +10.5679692,PR:000011191,http://purl.obolibrary.org/obo/PR_000011191,neuroglobin +10.5679692,PR:P25358,http://purl.obolibrary.org/obo/PR_P25358,none +10.5679692,PR:Q5A6K8,http://purl.obolibrary.org/obo/PR_Q5A6K8,none +10.5679692,SO:0002162,http://purl.obolibrary.org/obo/SO_0002162,short_tandem_repeat_expansion +10.5679692,UBERON:0005932,http://purl.obolibrary.org/obo/UBERON_0005932,bulb of hair follicle +10.5696541,CHEBI:36836,http://purl.obolibrary.org/obo/CHEBI_36836,3beta-hydroxy steroid +10.5696541,DRUGBANK:DB03694,http://purl.obolibrary.org/obo/DRUGBANK_DB03694,none +10.5696541,DRUGBANK:DB15684,http://purl.obolibrary.org/obo/DRUGBANK_DB15684,none +10.5696541,GO:0019770,http://purl.obolibrary.org/obo/GO_0019770,IgG receptor activity +10.5696541,MONDO:0002553,http://purl.obolibrary.org/obo/MONDO_0002553,cerebellopontine angle tumor +10.5696541,MONDO:0024478,http://purl.obolibrary.org/obo/MONDO_0024478,mesenchymal hamartoma +10.5696541,PR:000022424,http://purl.obolibrary.org/obo/PR_000022424,none +10.5696541,PR:000034540,http://purl.obolibrary.org/obo/PR_000034540,none +10.5696541,PR:P48984,http://purl.obolibrary.org/obo/PR_P48984,none +10.5696541,PR:Q803L0,http://purl.obolibrary.org/obo/PR_Q803L0,none +10.5696541,SO:0002161,http://purl.obolibrary.org/obo/SO_0002161,short_tandem_repeat_change +10.5713418,CHEBI:35348,http://purl.obolibrary.org/obo/CHEBI_35348,3beta-sterol +10.5713418,CL:0000186,http://purl.obolibrary.org/obo/CL_0000186,myofibroblast cell +10.5713418,DRUGBANK:DB03777,http://purl.obolibrary.org/obo/DRUGBANK_DB03777,none +10.5713418,DRUGBANK:DB08849,http://purl.obolibrary.org/obo/DRUGBANK_DB08849,none +10.5713418,GO:0003945,http://purl.obolibrary.org/obo/GO_0003945,N-acetyllactosamine synthase activity +10.5713418,GO:0044164,http://purl.obolibrary.org/obo/GO_0044164,host cell cytosol +10.5713418,GO:0048568,http://purl.obolibrary.org/obo/GO_0048568,embryonic organ development +10.5713418,GO:0051336,http://purl.obolibrary.org/obo/GO_0051336,regulation of hydrolase activity +10.5713418,GO:0052736,http://purl.obolibrary.org/obo/GO_0052736,beta-glucanase activity +10.5713418,MONDO:0008722,http://purl.obolibrary.org/obo/MONDO_0008722,short chain acyl-CoA dehydrogenase deficiency +10.5713418,MONDO:0010269,http://purl.obolibrary.org/obo/MONDO_0010269,Coats disease +10.5713418,MONDO:0023283,http://purl.obolibrary.org/obo/MONDO_0023283,ovarian granulosa cell tumor +10.5713418,NCBITaxon:357231,http://purl.obolibrary.org/obo/NCBITaxon_357231,none +10.5713418,PR:000004427,http://purl.obolibrary.org/obo/PR_000004427,serine-protein kinase ATM +10.5713418,PR:000015192,http://purl.obolibrary.org/obo/PR_000015192,sodium- and chloride-dependent creatine transporter 1 +10.5713418,PR:000017511,http://purl.obolibrary.org/obo/PR_000017511,5'-3' exoribonuclease 1 +10.5713418,PR:Q5U379,http://purl.obolibrary.org/obo/PR_Q5U379,none +10.5713418,PR:Q9SD46,http://purl.obolibrary.org/obo/PR_Q9SD46,none +10.5713418,SO:0000121,http://purl.obolibrary.org/obo/SO_0000121,forward_primer +10.5730325,CHEBI:83821,http://purl.obolibrary.org/obo/CHEBI_83821,amino acid derivative +10.5730325,DRUGBANK:DB13293,http://purl.obolibrary.org/obo/DRUGBANK_DB13293,none +10.5730325,DRUGBANK:DB14374,http://purl.obolibrary.org/obo/DRUGBANK_DB14374,none +10.5730325,GO:0002429,http://purl.obolibrary.org/obo/GO_0002429,immune response-activating cell surface receptor signaling pathway +10.5730325,HP:0000870,http://purl.obolibrary.org/obo/HP_0000870,Increased circulating prolactin concentration +10.5730325,MONDO:0006915,http://purl.obolibrary.org/obo/MONDO_0006915,polyradiculoneuropathy +10.5730325,MONDO:0018120,http://purl.obolibrary.org/obo/MONDO_0018120,"disorder of phospholipids, sphingolipids and fatty acids biosynthesis with skeletal muscle predominant involvement" +10.5730325,PR:000010126,http://purl.obolibrary.org/obo/PR_000010126,dual specificity mitogen-activated protein kinase kinase 2 +10.5730325,PR:000016463,http://purl.obolibrary.org/obo/PR_000016463,thymosin beta-4 +10.5730325,SO:0002165,http://purl.obolibrary.org/obo/SO_0002165,trinucleotide_repeat_expansion +10.5730325,UBERON:0014389,http://purl.obolibrary.org/obo/UBERON_0014389,gustatory papilla of tongue +10.5747259,CL:0000001,http://purl.obolibrary.org/obo/CL_0000001,primary cultured cell +10.5747259,DRUGBANK:DB15251,http://purl.obolibrary.org/obo/DRUGBANK_DB15251,none +10.5747259,GO:0004705,http://purl.obolibrary.org/obo/GO_0004705,JUN kinase activity +10.5747259,GO:0030004,http://purl.obolibrary.org/obo/GO_0030004,cellular monovalent inorganic cation homeostasis +10.5747259,GO:0030641,http://purl.obolibrary.org/obo/GO_0030641,regulation of cellular pH +10.5747259,HP:0001649,http://purl.obolibrary.org/obo/HP_0001649,Tachycardia +10.5747259,MONDO:0003157,http://purl.obolibrary.org/obo/MONDO_0003157,disappearing bone disease +10.5747259,MONDO:0015530,http://purl.obolibrary.org/obo/MONDO_0015530,trigeminal autonomic cephalalgia +10.5747259,MONDO:0021449,http://purl.obolibrary.org/obo/MONDO_0021449,benign neoplasm of stomach +10.5747259,UBERON:0034901,http://purl.obolibrary.org/obo/UBERON_0034901,cervical sympathetic nerve trunk +10.5764223,DRUGBANK:DB01403,http://purl.obolibrary.org/obo/DRUGBANK_DB01403,none +10.5764223,MONDO:0019260,http://purl.obolibrary.org/obo/MONDO_0019260,adult neuronal ceroid lipofuscinosis +10.5764223,MONDO:0045051,http://purl.obolibrary.org/obo/MONDO_0045051,cortical cataract +10.5764223,NCBITaxon:675068,http://purl.obolibrary.org/obo/NCBITaxon_675068,none +10.5764223,PR:000006111,http://purl.obolibrary.org/obo/PR_000006111,"25-hydroxyvitamin D-1 alpha hydroxylase, mitochondrial" +10.5764223,PR:000006959,http://purl.obolibrary.org/obo/PR_000006959,"interferon-induced, double-stranded RNA-activated protein kinase" +10.5764223,PR:000007607,http://purl.obolibrary.org/obo/PR_000007607,forkhead box protein C1 +10.5764223,PR:000014951,http://purl.obolibrary.org/obo/PR_000014951,monocarboxylate transporter 4 +10.5764223,PR:Q02574,http://purl.obolibrary.org/obo/PR_Q02574,none +10.5764223,SO:0000011,http://purl.obolibrary.org/obo/SO_0000011,non_protein_coding +10.5764223,UBERON:0001343,http://purl.obolibrary.org/obo/UBERON_0001343,seminiferous tubule of testis +10.5781215,CL:0000438,http://purl.obolibrary.org/obo/CL_0000438,luteinizing hormone secreting cell +10.5781215,HP:0002917,http://purl.obolibrary.org/obo/HP_0002917,Hypomagnesemia +10.5781215,HP:0004921,http://purl.obolibrary.org/obo/HP_0004921,Abnormal magnesium concentration +10.5781215,MONDO:0005696,http://purl.obolibrary.org/obo/MONDO_0005696,central nervous system tuberculosis +10.5781215,MONDO:0015211,http://purl.obolibrary.org/obo/MONDO_0015211,non-syndromic intestinal malformation +10.5781215,MONDO:0016187,http://purl.obolibrary.org/obo/MONDO_0016187,qualitative or quantitative defects of desmin +10.5781215,NCBITaxon:278205,http://purl.obolibrary.org/obo/NCBITaxon_278205,none +10.5781215,NCBITaxon:31022,http://purl.obolibrary.org/obo/NCBITaxon_31022,Tetraodontiformes +10.5781215,PR:000001293,http://purl.obolibrary.org/obo/PR_000001293,C-type lectin domain family 4 member K +10.5781215,PR:000004408,http://purl.obolibrary.org/obo/PR_000004408,ubiquitin-like protein ATG12 +10.5781215,PR:000013316,http://purl.obolibrary.org/obo/PR_000013316,paired mesoderm homeobox protein 1 +10.5781215,PR:000014974,http://purl.obolibrary.org/obo/PR_000014974,excitatory amino acid transporter 1 +10.5781215,PR:000015119,http://purl.obolibrary.org/obo/PR_000015119,sodium-coupled neutral amino acid transporter 2 +10.5798236,CHEBI:35715,http://purl.obolibrary.org/obo/CHEBI_35715,nitro compound +10.5798236,DRUGBANK:DB00225,http://purl.obolibrary.org/obo/DRUGBANK_DB00225,none +10.5798236,DRUGBANK:DB14055,http://purl.obolibrary.org/obo/DRUGBANK_DB14055,none +10.5798236,GO:0015865,http://purl.obolibrary.org/obo/GO_0015865,purine nucleotide transport +10.5798236,GO:0045935,http://purl.obolibrary.org/obo/GO_0045935,positive regulation of nucleobase-containing compound metabolic process +10.5798236,GO:0048812,http://purl.obolibrary.org/obo/GO_0048812,neuron projection morphogenesis +10.5798236,GO:0061783,http://purl.obolibrary.org/obo/GO_0061783,peptidoglycan muralytic activity +10.5798236,HP:0004378,http://purl.obolibrary.org/obo/HP_0004378,Abnormality of the anus +10.5798236,MONDO:0001687,http://purl.obolibrary.org/obo/MONDO_0001687,diabetic cataract +10.5798236,MONDO:0001870,http://purl.obolibrary.org/obo/MONDO_0001870,acute poststreptococcal glomerulonephritis +10.5798236,MONDO:0002824,http://purl.obolibrary.org/obo/MONDO_0002824,extrinsic cardiomyopathy +10.5798236,MONDO:0006239,http://purl.obolibrary.org/obo/MONDO_0006239,head and neck paraganglioma +10.5798236,NCBITaxon:35508,http://purl.obolibrary.org/obo/NCBITaxon_35508,none +10.5798236,NCBITaxon:9793,http://purl.obolibrary.org/obo/NCBITaxon_9793,Equus asinus +10.5798236,PR:000001559,http://purl.obolibrary.org/obo/PR_000001559,epithelial cell adhesion molecule +10.5798236,PR:000001572,http://purl.obolibrary.org/obo/PR_000001572,P2Y purinoceptor 2 +10.5798236,PR:000004066,http://purl.obolibrary.org/obo/PR_000004066,acidic leucine-rich nuclear phosphoprotein 32 family member B +10.5798236,PR:000010911,http://purl.obolibrary.org/obo/PR_000010911,lens fiber major intrinsic protein +10.5798236,PR:000016550,http://purl.obolibrary.org/obo/PR_000016550,torsin-1A +10.5798236,PR:000030510,http://purl.obolibrary.org/obo/PR_000030510,ligand-dependent nuclear receptor-interacting factor 1 +10.5798236,PR:P53044,http://purl.obolibrary.org/obo/PR_P53044,none +10.5798236,PR:P93004,http://purl.obolibrary.org/obo/PR_P93004,none +10.5815287,DRUGBANK:DB01163,http://purl.obolibrary.org/obo/DRUGBANK_DB01163,none +10.5815287,DRUGBANK:DB03553,http://purl.obolibrary.org/obo/DRUGBANK_DB03553,none +10.5815287,GO:0003978,http://purl.obolibrary.org/obo/GO_0003978,UDP-glucose 4-epimerase activity +10.5815287,GO:0008318,http://purl.obolibrary.org/obo/GO_0008318,protein prenyltransferase activity +10.5815287,GO:0030057,http://purl.obolibrary.org/obo/GO_0030057,desmosome +10.5815287,GO:0043094,http://purl.obolibrary.org/obo/GO_0043094,cellular metabolic compound salvage +10.5815287,GO:0120039,http://purl.obolibrary.org/obo/GO_0120039,plasma membrane bounded cell projection morphogenesis +10.5815287,HP:0000998,http://purl.obolibrary.org/obo/HP_0000998,Hypertrichosis +10.5815287,MONDO:0015404,http://purl.obolibrary.org/obo/MONDO_0015404,rapidly involuting congenital hemangioma +10.5815287,MONDO:0019242,http://purl.obolibrary.org/obo/MONDO_0019242,inborn disorder of branched-chain amino acid metabolism +10.5815287,MONDO:0022519,http://purl.obolibrary.org/obo/MONDO_0022519,autoimmune myocarditis +10.5815287,NCBITaxon:43786,http://purl.obolibrary.org/obo/NCBITaxon_43786,Culicomorpha +10.5815287,PR:000007106,http://purl.obolibrary.org/obo/PR_000007106,endothelial PAS domain-containing protein 1 +10.5815287,PR:000015308,http://purl.obolibrary.org/obo/PR_000015308,zinc finger protein SNAI1 +10.5815287,PR:000016575,http://purl.obolibrary.org/obo/PR_000016575,tryptophan 5-hydroxylase 1 +10.5815287,UBERON:0001187,http://purl.obolibrary.org/obo/UBERON_0001187,testicular artery +10.5815287,UBERON:0002165,http://purl.obolibrary.org/obo/UBERON_0002165,endocardium +10.5832366,DRUGBANK:DB13966,http://purl.obolibrary.org/obo/DRUGBANK_DB13966,none +10.5832366,GO:0004558,http://purl.obolibrary.org/obo/GO_0004558,"alpha-1,4-glucosidase activity" +10.5832366,GO:0019750,http://purl.obolibrary.org/obo/GO_0019750,chloroplast localization +10.5832366,GO:0036470,http://purl.obolibrary.org/obo/GO_0036470,tyrosine 3-monooxygenase activator activity +10.5832366,MONDO:0007004,http://purl.obolibrary.org/obo/MONDO_0007004,type III hypersensitivity disease +10.5832366,NCBITaxon:31028,http://purl.obolibrary.org/obo/NCBITaxon_31028,Tetraodontoidei +10.5832366,NCBITaxon:31031,http://purl.obolibrary.org/obo/NCBITaxon_31031,Tetraodontidae +10.5832366,NCBITaxon:32517,http://purl.obolibrary.org/obo/NCBITaxon_32517,Tetradontoidea +10.5832366,PR:000000092,http://purl.obolibrary.org/obo/PR_000000092,fungal/metazoan cullin-1 +10.5832366,PR:000001113,http://purl.obolibrary.org/obo/PR_000001113,interleukin-25 +10.5832366,PR:000006680,http://purl.obolibrary.org/obo/PR_000006680,dihydropyrimidinase-related protein 2 +10.5832366,PR:000008484,http://purl.obolibrary.org/obo/PR_000008484,histone deacetylase 5 +10.5832366,PR:000012507,http://purl.obolibrary.org/obo/PR_000012507,"[pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 4, mitochondrial" +10.5849475,CHEBI:35716,http://purl.obolibrary.org/obo/CHEBI_35716,C-nitro compound +10.5849475,DRUGBANK:DB00765,http://purl.obolibrary.org/obo/DRUGBANK_DB00765,none +10.5849475,DRUGBANK:DB06894,http://purl.obolibrary.org/obo/DRUGBANK_DB06894,none +10.5849475,DRUGBANK:DB12003,http://purl.obolibrary.org/obo/DRUGBANK_DB12003,none +10.5849475,DRUGBANK:DB15903,http://purl.obolibrary.org/obo/DRUGBANK_DB15903,none +10.5849475,GO:0004918,http://purl.obolibrary.org/obo/GO_0004918,interleukin-8 receptor activity +10.5849475,GO:0097447,http://purl.obolibrary.org/obo/GO_0097447,dendritic tree +10.5849475,MONDO:0001571,http://purl.obolibrary.org/obo/MONDO_0001571,gynecomastia +10.5849475,MONDO:0003756,http://purl.obolibrary.org/obo/MONDO_0003756,ovarian mucinous neoplasm +10.5849475,MONDO:0010002,http://purl.obolibrary.org/obo/MONDO_0010002,Rothmund-Thomson syndrome +10.5849475,MONDO:0010619,http://purl.obolibrary.org/obo/MONDO_0010619,X-linked dominant hypophosphatemic rickets +10.5849475,NCBITaxon:8294,http://purl.obolibrary.org/obo/NCBITaxon_8294,Ambystomatidae +10.5849475,NCBITaxon:8295,http://purl.obolibrary.org/obo/NCBITaxon_8295,Ambystoma +10.5849475,PR:000007245,http://purl.obolibrary.org/obo/PR_000007245,exonuclease 1 +10.5849475,PR:000015715,http://purl.obolibrary.org/obo/PR_000015715,"steroidogenic acute regulatory protein, mitochondrial" +10.5849475,PR:000023108,http://purl.obolibrary.org/obo/PR_000023108,none +10.5849475,PR:P22148,http://purl.obolibrary.org/obo/PR_P22148,none +10.5849475,PR:P78937,http://purl.obolibrary.org/obo/PR_P78937,none +10.5849475,SO:0000425,http://purl.obolibrary.org/obo/SO_0000425,five_prime_LTR +10.5849475,UBERON:0001115,http://purl.obolibrary.org/obo/UBERON_0001115,left lobe of liver +10.5849475,UBERON:0011980,http://purl.obolibrary.org/obo/UBERON_0011980,crurotarsal joint +10.5866613,CHEBI:6807,http://purl.obolibrary.org/obo/CHEBI_6807,methadone +10.5866613,DRUGBANK:DB15751,http://purl.obolibrary.org/obo/DRUGBANK_DB15751,none +10.5866613,GO:0090305,http://purl.obolibrary.org/obo/GO_0090305,nucleic acid phosphodiester bond hydrolysis +10.5866613,HP:0002094,http://purl.obolibrary.org/obo/HP_0002094,Dyspnea +10.5866613,MONDO:0007022,http://purl.obolibrary.org/obo/MONDO_0007022,xanthogranulomatous pyelonephritis +10.5866613,MONDO:0019563,http://purl.obolibrary.org/obo/MONDO_0019563,CREST syndrome +10.5866613,MONDO:0024320,http://purl.obolibrary.org/obo/MONDO_0024320,inner ear neoplasm +10.5866613,MONDO:0024388,http://purl.obolibrary.org/obo/MONDO_0024388,Clostridium infectious disease +10.5866613,NCBITaxon:8296,http://purl.obolibrary.org/obo/NCBITaxon_8296,none +10.5866613,PR:Q5D869,http://purl.obolibrary.org/obo/PR_Q5D869,none +10.5866613,UBERON:0008852,http://purl.obolibrary.org/obo/UBERON_0008852,visceral yolk sac +10.588378,CL:0000437,http://purl.obolibrary.org/obo/CL_0000437,gonadtroph +10.588378,DRUGBANK:DB00376,http://purl.obolibrary.org/obo/DRUGBANK_DB00376,none +10.588378,DRUGBANK:DB01613,http://purl.obolibrary.org/obo/DRUGBANK_DB01613,none +10.588378,DRUGBANK:DB11595,http://purl.obolibrary.org/obo/DRUGBANK_DB11595,none +10.588378,MONDO:0001817,http://purl.obolibrary.org/obo/MONDO_0001817,acute closed-angle glaucoma +10.588378,MONDO:0005340,http://purl.obolibrary.org/obo/MONDO_0005340,alopecia areata +10.588378,PR:000001162,http://purl.obolibrary.org/obo/PR_000001162,5-hydroxytryptamine receptor 1B +10.588378,PR:000022527,http://purl.obolibrary.org/obo/PR_000022527,sensor histidine kinase EnvZ +10.588378,PR:000050059,http://purl.obolibrary.org/obo/PR_000050059,doublecortin-like kinase +10.588378,PR:Q9LHB9,http://purl.obolibrary.org/obo/PR_Q9LHB9,none +10.588378,UBERON:0015481,http://purl.obolibrary.org/obo/UBERON_0015481,left hepatic artery +10.5900977,CHEBI:17792,http://purl.obolibrary.org/obo/CHEBI_17792,organohalogen compound +10.5900977,DRUGBANK:DB04832,http://purl.obolibrary.org/obo/DRUGBANK_DB04832,none +10.5900977,DRUGBANK:DB05578,http://purl.obolibrary.org/obo/DRUGBANK_DB05578,none +10.5900977,DRUGBANK:DB07615,http://purl.obolibrary.org/obo/DRUGBANK_DB07615,none +10.5900977,GO:0016681,http://purl.obolibrary.org/obo/GO_0016681,none +10.5900977,GO:0023057,http://purl.obolibrary.org/obo/GO_0023057,negative regulation of signaling +10.5900977,HP:0001300,http://purl.obolibrary.org/obo/HP_0001300,Parkinsonism +10.5900977,HP:0004354,http://purl.obolibrary.org/obo/HP_0004354,Abnormal circulating carboxylic acid concentration +10.5900977,MONDO:0018840,http://purl.obolibrary.org/obo/MONDO_0018840,isolated congenital hepatic fibrosis +10.5900977,PR:000006712,http://purl.obolibrary.org/obo/PR_000006712,dentin sialophosphoprotein +10.5900977,PR:000008002,http://purl.obolibrary.org/obo/PR_000008002,gap junction beta-6 protein +10.5900977,PR:000017280,http://purl.obolibrary.org/obo/PR_000017280,voltage-dependent anion-selective channel protein 1 +10.5900977,UBERON:0003674,http://purl.obolibrary.org/obo/UBERON_0003674,cuspid +10.5918204,CHEBI:18282,http://purl.obolibrary.org/obo/CHEBI_18282,nucleobase +10.5918204,GO:0008121,http://purl.obolibrary.org/obo/GO_0008121,ubiquinol-cytochrome-c reductase activity +10.5918204,GO:0010469,http://purl.obolibrary.org/obo/GO_0010469,regulation of signaling receptor activity +10.5918204,PR:000000729,http://purl.obolibrary.org/obo/PR_000000729,voltage-gated potassium channel subunit KCNQ2 +10.5918204,PR:000012325,http://purl.obolibrary.org/obo/PR_000012325,protein polybromo-1 +10.5918204,UBERON:0006322,http://purl.obolibrary.org/obo/UBERON_0006322,inferior rectus extraocular muscle +10.593546,DRUGBANK:DB01218,http://purl.obolibrary.org/obo/DRUGBANK_DB01218,none +10.593546,DRUGBANK:DB07401,http://purl.obolibrary.org/obo/DRUGBANK_DB07401,none +10.593546,DRUGBANK:DB11284,http://purl.obolibrary.org/obo/DRUGBANK_DB11284,none +10.593546,GO:0002548,http://purl.obolibrary.org/obo/GO_0002548,monocyte chemotaxis +10.593546,HP:0002023,http://purl.obolibrary.org/obo/HP_0002023,Anal atresia +10.593546,MONDO:0001098,http://purl.obolibrary.org/obo/MONDO_0001098,separation anxiety disorder +10.593546,MONDO:0019978,http://purl.obolibrary.org/obo/MONDO_0019978,Robinow syndrome +10.593546,PR:000003621,http://purl.obolibrary.org/obo/PR_000003621,adrenocortical dysplasia protein +10.593546,PR:000014969,http://purl.obolibrary.org/obo/PR_000014969,reduced folate transporter +10.593546,UBERON:0005256,http://purl.obolibrary.org/obo/UBERON_0005256,trunk mesenchyme +10.5952746,GO:0004060,http://purl.obolibrary.org/obo/GO_0004060,arylamine N-acetyltransferase activity +10.5952746,GO:1901663,http://purl.obolibrary.org/obo/GO_1901663,quinone biosynthetic process +10.5952746,MONDO:0004064,http://purl.obolibrary.org/obo/MONDO_0004064,iris melanoma +10.5952746,MONDO:0005893,http://purl.obolibrary.org/obo/MONDO_0005893,pancreatic endocrine carcinoma +10.5952746,MONDO:0016702,http://purl.obolibrary.org/obo/MONDO_0016702,oligoastrocytoma +10.5952746,MONDO:0018330,http://purl.obolibrary.org/obo/MONDO_0018330,mucinous adenocarcinoma of the appendix +10.5952746,PR:000003296,http://purl.obolibrary.org/obo/PR_000003296,lymphocyte antigen 96 +10.5952746,PR:000031630,http://purl.obolibrary.org/obo/PR_000031630,protein Niban 2 +10.5952746,PR:000037801,http://purl.obolibrary.org/obo/PR_000037801,paired box protein PAX group I +10.5952746,SO:0001218,http://purl.obolibrary.org/obo/SO_0001218,transgenic_insertion +10.5952746,UBERON:0002795,http://purl.obolibrary.org/obo/UBERON_0002795,frontal pole +10.5970062,CHEBI:1722,http://purl.obolibrary.org/obo/CHEBI_1722,3beta-hydroxy-Delta(5)-steroid +10.5970062,DRUGBANK:DB00287,http://purl.obolibrary.org/obo/DRUGBANK_DB00287,none +10.5970062,DRUGBANK:DB15462,http://purl.obolibrary.org/obo/DRUGBANK_DB15462,none +10.5970062,GO:0009895,http://purl.obolibrary.org/obo/GO_0009895,negative regulation of catabolic process +10.5970062,MONDO:0007191,http://purl.obolibrary.org/obo/MONDO_0007191,Behcet disease +10.5970062,MONDO:0025381,http://purl.obolibrary.org/obo/MONDO_0025381,avian leukosis +10.5970062,PR:000004753,http://purl.obolibrary.org/obo/PR_000004753,baculoviral IAP repeat-containing protein 5 +10.5970062,PR:000015222,http://purl.obolibrary.org/obo/PR_000015222,solute carrier organic anion transporter family member 1A2 +10.5987408,DRUGBANK:DB13963,http://purl.obolibrary.org/obo/DRUGBANK_DB13963,none +10.5987408,GO:0004457,http://purl.obolibrary.org/obo/GO_0004457,lactate dehydrogenase activity +10.5987408,GO:0005326,http://purl.obolibrary.org/obo/GO_0005326,neurotransmitter transmembrane transporter activity +10.5987408,GO:0031414,http://purl.obolibrary.org/obo/GO_0031414,N-terminal protein acetyltransferase complex +10.5987408,GO:0034968,http://purl.obolibrary.org/obo/GO_0034968,histone lysine methylation +10.5987408,GO:0065004,http://purl.obolibrary.org/obo/GO_0065004,protein-DNA complex assembly +10.5987408,MONDO:0019713,http://purl.obolibrary.org/obo/MONDO_0019713,non-syndromic limb reduction defect +10.5987408,PR:000004262,http://purl.obolibrary.org/obo/PR_000004262,AT-rich interactive domain-containing protein 1A +10.5987408,PR:000006922,http://purl.obolibrary.org/obo/PR_000006922,ephrin-B2 +10.5987408,PR:000008621,http://purl.obolibrary.org/obo/PR_000008621,minor histocompatibility antigen H13 +10.5987408,PR:000008953,http://purl.obolibrary.org/obo/PR_000008953,insulin-like growth factor-binding protein 7 +10.5987408,PR:000013959,http://purl.obolibrary.org/obo/PR_000013959,regulator of G-protein signaling 4 +10.5987408,UBERON:0013229,http://purl.obolibrary.org/obo/UBERON_0013229,eyelid gland +10.6004784,DRUGBANK:DB00910,http://purl.obolibrary.org/obo/DRUGBANK_DB00910,none +10.6004784,DRUGBANK:DB01243,http://purl.obolibrary.org/obo/DRUGBANK_DB01243,none +10.6004784,DRUGBANK:DB10559,http://purl.obolibrary.org/obo/DRUGBANK_DB10559,none +10.6004784,DRUGBANK:DB15594,http://purl.obolibrary.org/obo/DRUGBANK_DB15594,none +10.6004784,GO:0022408,http://purl.obolibrary.org/obo/GO_0022408,negative regulation of cell-cell adhesion +10.6004784,GO:0031330,http://purl.obolibrary.org/obo/GO_0031330,negative regulation of cellular catabolic process +10.6004784,GO:0071396,http://purl.obolibrary.org/obo/GO_0071396,cellular response to lipid +10.6004784,MONDO:0003763,http://purl.obolibrary.org/obo/MONDO_0003763,acute stress disorder +10.6004784,MONDO:0003869,http://purl.obolibrary.org/obo/MONDO_0003869,childhood brain stem glioma +10.6004784,MONDO:0008434,http://purl.obolibrary.org/obo/MONDO_0008434,Smith-Magenis syndrome +10.6004784,PR:000014000,http://purl.obolibrary.org/obo/PR_000014000,telomere-associated protein RIF1 +10.6004784,PR:Q9FIB4,http://purl.obolibrary.org/obo/PR_Q9FIB4,none +10.6004784,UBERON:0003487,http://purl.obolibrary.org/obo/UBERON_0003487,skin sebaceous gland +10.6022191,CL:0000421,http://purl.obolibrary.org/obo/CL_0000421,coelomocyte +10.6022191,DRUGBANK:DB13499,http://purl.obolibrary.org/obo/DRUGBANK_DB13499,none +10.6022191,GO:0001821,http://purl.obolibrary.org/obo/GO_0001821,histamine secretion +10.6022191,GO:0016802,http://purl.obolibrary.org/obo/GO_0016802,trialkylsulfonium hydrolase activity +10.6022191,GO:0090257,http://purl.obolibrary.org/obo/GO_0090257,regulation of muscle system process +10.6022191,HP:0100786,http://purl.obolibrary.org/obo/HP_0100786,Hypersomnia +10.6022191,MONDO:0007417,http://purl.obolibrary.org/obo/MONDO_0007417,Darier disease +10.6022191,NCBITaxon:329861,http://purl.obolibrary.org/obo/NCBITaxon_329861,none +10.6022191,PR:000004986,http://purl.obolibrary.org/obo/PR_000004986,calumenin +10.6022191,PR:000011156,http://purl.obolibrary.org/obo/PR_000011156,neurogenin-1 +10.6022191,PR:000029585,http://purl.obolibrary.org/obo/PR_000029585,lamina-associated polypeptide 2 +10.6022191,UBERON:0027331,http://purl.obolibrary.org/obo/UBERON_0027331,"flocculonodular lobe, hemisphere portion" +10.6039628,CHEBI:26392,http://purl.obolibrary.org/obo/CHEBI_26392,purine nucleoside monophosphate +10.6039628,CHEBI:26397,http://purl.obolibrary.org/obo/CHEBI_26397,purine ribonucleoside monophosphate +10.6039628,CHEBI:37021,http://purl.obolibrary.org/obo/CHEBI_37021,purine ribonucleoside 5'-monophosphate +10.6039628,CHEBI:37096,http://purl.obolibrary.org/obo/CHEBI_37096,adenosine 5'-phosphate +10.6039628,DRUGBANK:DB14564,http://purl.obolibrary.org/obo/DRUGBANK_DB14564,none +10.6039628,GO:0004478,http://purl.obolibrary.org/obo/GO_0004478,methionine adenosyltransferase activity +10.6039628,GO:0019252,http://purl.obolibrary.org/obo/GO_0019252,starch biosynthetic process +10.6039628,MONDO:0016744,http://purl.obolibrary.org/obo/MONDO_0016744,primary melanocytic tumor of central nervous system +10.6039628,MONDO:0024235,http://purl.obolibrary.org/obo/MONDO_0024235,Brenner tumor +10.6039628,NCBITaxon:10243,http://purl.obolibrary.org/obo/NCBITaxon_10243,Cowpox virus +10.6039628,PR:000008236,http://purl.obolibrary.org/obo/PR_000008236,glutamate receptor 4 +10.6039628,PR:Q00495,http://purl.obolibrary.org/obo/PR_Q00495,none +10.6039628,PR:Q9I8N6,http://purl.obolibrary.org/obo/PR_Q9I8N6,none +10.6057095,DRUGBANK:DB01971,http://purl.obolibrary.org/obo/DRUGBANK_DB01971,none +10.6057095,GO:0002024,http://purl.obolibrary.org/obo/GO_0002024,diet induced thermogenesis +10.6057095,GO:0018022,http://purl.obolibrary.org/obo/GO_0018022,peptidyl-lysine methylation +10.6057095,MONDO:0000499,http://purl.obolibrary.org/obo/MONDO_0000499,non-arteritic anterior ischemic optic neuropathy +10.6057095,NCBITaxon:12258,http://purl.obolibrary.org/obo/NCBITaxon_12258,none +10.6057095,PR:000003808,http://purl.obolibrary.org/obo/PR_000003808,afamin +10.6057095,PR:000005503,http://purl.obolibrary.org/obo/PR_000005503,cytokine-inducible SH2-containing protein +10.6057095,PR:000009135,http://purl.obolibrary.org/obo/PR_000009135,integrin alpha-V +10.6057095,PR:000029727,http://purl.obolibrary.org/obo/PR_000029727,"RNA-binding motif protein, X-linked-like-2" +10.6057095,UBERON:0000083,http://purl.obolibrary.org/obo/UBERON_0000083,mesonephric tubule +10.6074593,DRUGBANK:DB07841,http://purl.obolibrary.org/obo/DRUGBANK_DB07841,none +10.6074593,GO:0051503,http://purl.obolibrary.org/obo/GO_0051503,adenine nucleotide transport +10.6074593,MONDO:0000642,http://purl.obolibrary.org/obo/MONDO_0000642,brain meningioma +10.6074593,MONDO:0016701,http://purl.obolibrary.org/obo/MONDO_0016701,oligoastrocytic tumor +10.6074593,MONDO:0019139,http://purl.obolibrary.org/obo/MONDO_0019139,acquired hemophilia +10.6074593,MONDO:0021381,http://purl.obolibrary.org/obo/MONDO_0021381,neoplasm of pericardium +10.6074593,MONDO:0022736,http://purl.obolibrary.org/obo/MONDO_0022736,occupational lung disease +10.6074593,MONDO:0043555,http://purl.obolibrary.org/obo/MONDO_0043555,infantile diarrhea +10.6074593,NCBITaxon:10509,http://purl.obolibrary.org/obo/NCBITaxon_10509,none +10.6074593,PR:000002342,http://purl.obolibrary.org/obo/PR_000002342,protein kinase C epsilon +10.6074593,PR:000016878,http://purl.obolibrary.org/obo/PR_000016878,tyrosine-protein kinase receptor TYRO3 +10.6074593,PR:000029668,http://purl.obolibrary.org/obo/PR_000029668,PDZ and LIM domain protein 4 +10.6074593,PR:P93835,http://purl.obolibrary.org/obo/PR_P93835,none +10.6074593,PR:Q9FV70,http://purl.obolibrary.org/obo/PR_Q9FV70,none +10.6092121,DRUGBANK:DB01154,http://purl.obolibrary.org/obo/DRUGBANK_DB01154,none +10.6092121,GO:0009252,http://purl.obolibrary.org/obo/GO_0009252,peptidoglycan biosynthetic process +10.6092121,GO:0009853,http://purl.obolibrary.org/obo/GO_0009853,photorespiration +10.6092121,MONDO:0000930,http://purl.obolibrary.org/obo/MONDO_0000930,nodular malignant melanoma +10.6092121,MONDO:0002640,http://purl.obolibrary.org/obo/MONDO_0002640,optic nerve neoplasm +10.6092121,MONDO:0018118,http://purl.obolibrary.org/obo/MONDO_0018118,"disorder of phospholipids, sphingolipids and fatty acids biosynthesis with central nervous system predominant involvement" +10.6092121,PR:Q98876,http://purl.obolibrary.org/obo/PR_Q98876,none +10.6092121,UBERON:0001768,http://purl.obolibrary.org/obo/UBERON_0001768,uvea +10.6092121,UBERON:0005351,http://purl.obolibrary.org/obo/UBERON_0005351,paraflocculus +10.6092121,UBERON:0005612,http://purl.obolibrary.org/obo/UBERON_0005612,intercostal artery +10.610968,GO:0000737,http://purl.obolibrary.org/obo/GO_0000737,"DNA catabolic process, endonucleolytic" +10.610968,GO:0015701,http://purl.obolibrary.org/obo/GO_0015701,bicarbonate transport +10.610968,MONDO:0006176,http://purl.obolibrary.org/obo/MONDO_0006176,cribriform carcinoma +10.610968,MONDO:0017916,http://purl.obolibrary.org/obo/MONDO_0017916,pure or complex X-linked spastic paraplegia +10.610968,MONDO:0020638,http://purl.obolibrary.org/obo/MONDO_0020638,superficial spreading melanoma +10.610968,NCBITaxon:175121,http://purl.obolibrary.org/obo/NCBITaxon_175121,Passeroidea +10.610968,PR:000002108,http://purl.obolibrary.org/obo/PR_000002108,tumor necrosis factor receptor superfamily member 10A +10.610968,PR:000010115,http://purl.obolibrary.org/obo/PR_000010115,amine oxidase [flavin-containing] B +10.610968,PR:000015393,http://purl.obolibrary.org/obo/PR_000015393,suppressor of cytokine signaling 2 +10.610968,UBERON:0002216,http://purl.obolibrary.org/obo/UBERON_0002216,symphysis +10.610968,UBERON:0004117,http://purl.obolibrary.org/obo/UBERON_0004117,pharyngeal pouch +10.610968,UBERON:0005437,http://purl.obolibrary.org/obo/UBERON_0005437,conus medullaris +10.6127271,DRUGBANK:DB04576,http://purl.obolibrary.org/obo/DRUGBANK_DB04576,none +10.6127271,DRUGBANK:DB07919,http://purl.obolibrary.org/obo/DRUGBANK_DB07919,none +10.6127271,DRUGBANK:DB08864,http://purl.obolibrary.org/obo/DRUGBANK_DB08864,none +10.6127271,DRUGBANK:DB11752,http://purl.obolibrary.org/obo/DRUGBANK_DB11752,none +10.6127271,MONDO:0002751,http://purl.obolibrary.org/obo/MONDO_0002751,bladder adenocarcinoma +10.6127271,MONDO:0018608,http://purl.obolibrary.org/obo/MONDO_0018608,pure autonomic failure +10.6127271,PR:Q01560,http://purl.obolibrary.org/obo/PR_Q01560,none +10.6127271,SO:0000266,http://purl.obolibrary.org/obo/SO_0000266,methionyl_tRNA +10.6144892,CL:0000392,http://purl.obolibrary.org/obo/CL_0000392,crystal cell +10.6144892,DRUGBANK:DB15574,http://purl.obolibrary.org/obo/DRUGBANK_DB15574,none +10.6144892,GO:0003009,http://purl.obolibrary.org/obo/GO_0003009,skeletal muscle contraction +10.6144892,GO:0015791,http://purl.obolibrary.org/obo/GO_0015791,polyol transport +10.6144892,GO:0042310,http://purl.obolibrary.org/obo/GO_0042310,vasoconstriction +10.6144892,MONDO:0002252,http://purl.obolibrary.org/obo/MONDO_0002252,granulomatous hepatitis +10.6144892,MONDO:0016876,http://purl.obolibrary.org/obo/MONDO_0016876,partial deletion of chromosome 11 +10.6144892,PR:000001804,http://purl.obolibrary.org/obo/PR_000001804,C-X-C motif chemokine 16 +10.6144892,PR:000009776,http://purl.obolibrary.org/obo/PR_000009776,galectin-9 +10.6144892,PR:000010496,http://purl.obolibrary.org/obo/PR_000010496,CDK-activating kinase assembly factor MAT1 +10.6144892,PR:000014962,http://purl.obolibrary.org/obo/PR_000014962,vesicular glutamate transporter 2 +10.6144892,UBERON:0001641,http://purl.obolibrary.org/obo/UBERON_0001641,transverse sinus +10.6162544,CL:0000391,http://purl.obolibrary.org/obo/CL_0000391,podocyte (sensu Diptera) +10.6162544,DRUGBANK:DB00469,http://purl.obolibrary.org/obo/DRUGBANK_DB00469,none +10.6162544,DRUGBANK:DB00796,http://purl.obolibrary.org/obo/DRUGBANK_DB00796,none +10.6162544,GO:0030430,http://purl.obolibrary.org/obo/GO_0030430,host cell cytoplasm +10.6162544,GO:0044804,http://purl.obolibrary.org/obo/GO_0044804,autophagy of nucleus +10.6162544,MONDO:0003304,http://purl.obolibrary.org/obo/MONDO_0003304,plexiform neurofibroma +10.6162544,MONDO:0005909,http://purl.obolibrary.org/obo/MONDO_0005909,pestivirus infectious disease +10.6162544,MONDO:0008865,http://purl.obolibrary.org/obo/MONDO_0008865,Bietti crystalline corneoretinal dystrophy +10.6162544,MONDO:0009852,http://purl.obolibrary.org/obo/MONDO_0009852,congenital intrinsic factor deficiency +10.6162544,MONDO:0024354,http://purl.obolibrary.org/obo/MONDO_0024354,cytomegalovirus pneumonia +10.6162544,MONDO:0025087,http://purl.obolibrary.org/obo/MONDO_0025087,classical swine fever +10.6162544,PR:000000036,http://purl.obolibrary.org/obo/PR_000000036,BMP receptor type-1B +10.6162544,PR:000002047,http://purl.obolibrary.org/obo/PR_000002047,interferon regulatory factor 5 +10.6162544,PR:000003672,http://purl.obolibrary.org/obo/PR_000003672,"acetyl-coenzyme A synthetase, cytoplasmic" +10.6162544,PR:Q38867,http://purl.obolibrary.org/obo/PR_Q38867,none +10.6162544,UBERON:0001666,http://purl.obolibrary.org/obo/UBERON_0001666,flexor digitorum longus +10.6180227,CHEBI:4431,http://purl.obolibrary.org/obo/CHEBI_4431,deoxyribonucleotide +10.6180227,DRUGBANK:DB01191,http://purl.obolibrary.org/obo/DRUGBANK_DB01191,none +10.6180227,DRUGBANK:DB01192,http://purl.obolibrary.org/obo/DRUGBANK_DB01192,none +10.6180227,DRUGBANK:DB09060,http://purl.obolibrary.org/obo/DRUGBANK_DB09060,none +10.6180227,DRUGBANK:DB09513,http://purl.obolibrary.org/obo/DRUGBANK_DB09513,none +10.6180227,GO:1990391,http://purl.obolibrary.org/obo/GO_1990391,DNA repair complex +10.6180227,HP:0002135,http://purl.obolibrary.org/obo/HP_0002135,Basal ganglia calcification +10.6180227,MONDO:0018282,http://purl.obolibrary.org/obo/MONDO_0018282,qualitative or quantitative defects of alpha-dystroglycan +10.6180227,MONDO:0018590,http://purl.obolibrary.org/obo/MONDO_0018590,ABeta2M amyloidosis +10.6180227,NCBITaxon:11654,http://purl.obolibrary.org/obo/NCBITaxon_11654,none +10.6180227,NCBITaxon:11665,http://purl.obolibrary.org/obo/NCBITaxon_11665,none +10.6180227,PR:Q56YU0,http://purl.obolibrary.org/obo/PR_Q56YU0,none +10.6180227,UBERON:0002139,http://purl.obolibrary.org/obo/UBERON_0002139,subcommissural organ +10.6180227,UBERON:0010296,http://purl.obolibrary.org/obo/UBERON_0010296,scleral skeletal element +10.6197942,DRUGBANK:DB00610,http://purl.obolibrary.org/obo/DRUGBANK_DB00610,none +10.6197942,DRUGBANK:DB09242,http://purl.obolibrary.org/obo/DRUGBANK_DB09242,none +10.6197942,DRUGBANK:DB10810,http://purl.obolibrary.org/obo/DRUGBANK_DB10810,none +10.6197942,DRUGBANK:DB11423,http://purl.obolibrary.org/obo/DRUGBANK_DB11423,none +10.6197942,GO:0004013,http://purl.obolibrary.org/obo/GO_0004013,adenosylhomocysteinase activity +10.6197942,GO:0008347,http://purl.obolibrary.org/obo/GO_0008347,glial cell migration +10.6197942,GO:0016237,http://purl.obolibrary.org/obo/GO_0016237,lysosomal microautophagy +10.6197942,GO:0034727,http://purl.obolibrary.org/obo/GO_0034727,piecemeal microautophagy of the nucleus +10.6197942,GO:0047708,http://purl.obolibrary.org/obo/GO_0047708,biotinidase activity +10.6197942,GO:1902534,http://purl.obolibrary.org/obo/GO_1902534,none +10.6197942,MONDO:0000455,http://purl.obolibrary.org/obo/MONDO_0000455,cone dystrophy +10.6197942,NCBITaxon:1246677,http://purl.obolibrary.org/obo/NCBITaxon_1246677,none +10.6197942,NCBITaxon:33342,http://purl.obolibrary.org/obo/NCBITaxon_33342,Paraneoptera +10.6197942,PR:000001041,http://purl.obolibrary.org/obo/PR_000001041,Na(+)/H(+) exchange regulatory cofactor NHE-RF1 +10.6197942,PR:000004677,http://purl.obolibrary.org/obo/PR_000004677,breast cancer anti-estrogen resistance protein 3 +10.6197942,PR:000008246,http://purl.obolibrary.org/obo/PR_000008246,"glutamate receptor ionotropic, NMDA 2A" +10.6197942,PR:000011274,http://purl.obolibrary.org/obo/PR_000011274,"NACHT, LRR and PYD domains-containing protein 6" +10.6197942,UBERON:0001667,http://purl.obolibrary.org/obo/UBERON_0001667,tibialis posterior +10.6215688,DRUGBANK:DB01245,http://purl.obolibrary.org/obo/DRUGBANK_DB01245,none +10.6215688,DRUGBANK:DB06693,http://purl.obolibrary.org/obo/DRUGBANK_DB06693,none +10.6215688,DRUGBANK:DB09073,http://purl.obolibrary.org/obo/DRUGBANK_DB09073,none +10.6215688,GO:0000104,http://purl.obolibrary.org/obo/GO_0000104,succinate dehydrogenase activity +10.6215688,GO:0006309,http://purl.obolibrary.org/obo/GO_0006309,apoptotic DNA fragmentation +10.6215688,GO:0034728,http://purl.obolibrary.org/obo/GO_0034728,nucleosome organization +10.6215688,GO:1901678,http://purl.obolibrary.org/obo/GO_1901678,iron coordination entity transport +10.6215688,MONDO:0005982,http://purl.obolibrary.org/obo/MONDO_0005982,tinea infection +10.6215688,MONDO:0042727,http://purl.obolibrary.org/obo/MONDO_0042727,sacrococcygeal teratoma +10.6215688,PR:000004689,http://purl.obolibrary.org/obo/PR_000004689,B-cell lymphoma/leukemia 10 +10.6215688,PR:000005726,http://purl.obolibrary.org/obo/PR_000005726,collectin-11 +10.6215688,PR:000009058,http://purl.obolibrary.org/obo/PR_000009058,insulin-like 3 +10.6215688,PR:000032083,http://purl.obolibrary.org/obo/PR_000032083,intelectin-1 +10.6215688,UBERON:0000935,http://purl.obolibrary.org/obo/UBERON_0000935,anterior commissure +10.6215688,UBERON:0002962,http://purl.obolibrary.org/obo/UBERON_0002962,adductor pollicis muscle +10.6233466,GO:0016358,http://purl.obolibrary.org/obo/GO_0016358,dendrite development +10.6233466,MONDO:0005141,http://purl.obolibrary.org/obo/MONDO_0005141,Pseudomonas infection +10.6233466,MONDO:0005943,http://purl.obolibrary.org/obo/MONDO_0005943,Rhabditida infectious disease +10.6233466,MONDO:0007620,http://purl.obolibrary.org/obo/MONDO_0007620,fish eye disease +10.6233466,MONDO:0019712,http://purl.obolibrary.org/obo/MONDO_0019712,patellar dysostosis +10.6233466,PR:000012632,http://purl.obolibrary.org/obo/PR_000012632,prohibitin-2 +10.6251276,DRUGBANK:DB02657,http://purl.obolibrary.org/obo/DRUGBANK_DB02657,none +10.6251276,DRUGBANK:DB06809,http://purl.obolibrary.org/obo/DRUGBANK_DB06809,none +10.6251276,DRUGBANK:DB08845,http://purl.obolibrary.org/obo/DRUGBANK_DB08845,none +10.6251276,GO:0006097,http://purl.obolibrary.org/obo/GO_0006097,glyoxylate cycle +10.6251276,GO:0034103,http://purl.obolibrary.org/obo/GO_0034103,regulation of tissue remodeling +10.6251276,GO:0051972,http://purl.obolibrary.org/obo/GO_0051972,regulation of telomerase activity +10.6251276,MONDO:0007712,http://purl.obolibrary.org/obo/MONDO_0007712,oculoauriculovertebral spectrum with radial defects +10.6251276,MONDO:0015397,http://purl.obolibrary.org/obo/MONDO_0015397,oculo-auriculo-vertebral spectrum +10.6251276,NCBITaxon:2732555,http://purl.obolibrary.org/obo/NCBITaxon_2732555,none +10.6251276,PR:000008832,http://purl.obolibrary.org/obo/PR_000008832,histatin-3 +10.6251276,PR:000010553,http://purl.obolibrary.org/obo/PR_000010553,myelin P0 protein +10.6251276,PR:000010771,http://purl.obolibrary.org/obo/PR_000010771,mucin-7 +10.6251276,PR:000011030,http://purl.obolibrary.org/obo/PR_000011030,neutrophil cytosol factor 1 +10.6251276,UBERON:2100271,http://purl.obolibrary.org/obo/UBERON_2100271,radial element +10.6269117,DRUGBANK:DB10557,http://purl.obolibrary.org/obo/DRUGBANK_DB10557,none +10.6269117,DRUGBANK:DB13975,http://purl.obolibrary.org/obo/DRUGBANK_DB13975,none +10.6269117,DRUGBANK:DB14680,http://purl.obolibrary.org/obo/DRUGBANK_DB14680,none +10.6269117,DRUGBANK:DB15316,http://purl.obolibrary.org/obo/DRUGBANK_DB15316,none +10.6269117,GO:0030427,http://purl.obolibrary.org/obo/GO_0030427,site of polarized growth +10.6269117,MONDO:0018063,http://purl.obolibrary.org/obo/MONDO_0018063,nodular non-suppurative panniculitis +10.6269117,PR:000006926,http://purl.obolibrary.org/obo/PR_000006926,embryonal Fyn-associated substrate +10.6269117,PR:000012435,http://purl.obolibrary.org/obo/PR_000012435,neuroendocrine convertase 2 +10.6269117,PR:000014701,http://purl.obolibrary.org/obo/PR_000014701,heparin cofactor 2 +10.6269117,PR:000024119,http://purl.obolibrary.org/obo/PR_000024119,none +10.6269117,PR:P20095,http://purl.obolibrary.org/obo/PR_P20095,none +10.6269117,PR:Q9IAV3,http://purl.obolibrary.org/obo/PR_Q9IAV3,none +10.6269117,PR:Q9NFT9,http://purl.obolibrary.org/obo/PR_Q9NFT9,none +10.6269117,PR:Q9W568,http://purl.obolibrary.org/obo/PR_Q9W568,none +10.6269117,UBERON:0001354,http://purl.obolibrary.org/obo/UBERON_0001354,inferior epigastric artery +10.6269117,UBERON:0004734,http://purl.obolibrary.org/obo/UBERON_0004734,gastrula +10.628699,DRUGBANK:DB00211,http://purl.obolibrary.org/obo/DRUGBANK_DB00211,none +10.628699,GO:0002286,http://purl.obolibrary.org/obo/GO_0002286,T cell activation involved in immune response +10.628699,MONDO:0017672,http://purl.obolibrary.org/obo/MONDO_0017672,focal palmoplantar keratoderma +10.628699,MONDO:0017807,http://purl.obolibrary.org/obo/MONDO_0017807,growing teratoma syndrome +10.628699,PR:000006132,http://purl.obolibrary.org/obo/PR_000006132,cytochrome P450 3A5 +10.628699,PR:000016787,http://purl.obolibrary.org/obo/PR_000016787,dual specificity protein kinase TTK +10.628699,PR:O94684,http://purl.obolibrary.org/obo/PR_O94684,none +10.628699,UBERON:0001417,http://purl.obolibrary.org/obo/UBERON_0001417,skin of neck +10.628699,UBERON:0009002,http://purl.obolibrary.org/obo/UBERON_0009002,placental membrane +10.6304895,DRUGBANK:DB01323,http://purl.obolibrary.org/obo/DRUGBANK_DB01323,none +10.6304895,DRUGBANK:DB13271,http://purl.obolibrary.org/obo/DRUGBANK_DB13271,none +10.6304895,DRUGBANK:DB14177,http://purl.obolibrary.org/obo/DRUGBANK_DB14177,none +10.6304895,GO:0004105,http://purl.obolibrary.org/obo/GO_0004105,choline-phosphate cytidylyltransferase activity +10.6304895,GO:0051453,http://purl.obolibrary.org/obo/GO_0051453,regulation of intracellular pH +10.6304895,GO:0072525,http://purl.obolibrary.org/obo/GO_0072525,pyridine-containing compound biosynthetic process +10.6304895,MONDO:0005665,http://purl.obolibrary.org/obo/MONDO_0005665,Bell's palsy +10.6304895,MONDO:0005841,http://purl.obolibrary.org/obo/MONDO_0005841,maxillary neoplasm +10.6304895,MONDO:0015674,http://purl.obolibrary.org/obo/MONDO_0015674,late infantile neuronal ceroid lipofuscinosis +10.6304895,MONDO:0015795,http://purl.obolibrary.org/obo/MONDO_0015795,undifferentiated embryonal sarcoma of the liver +10.6304895,MONDO:0025377,http://purl.obolibrary.org/obo/MONDO_0025377,African swine fever +10.6304895,PR:000001924,http://purl.obolibrary.org/obo/PR_000001924,receptor-type tyrosine-protein phosphatase eta +10.6304895,PR:000014413,http://purl.obolibrary.org/obo/PR_000014413,protein S100-A6 +10.6304895,PR:000029177,http://purl.obolibrary.org/obo/PR_000029177,none +10.6322832,CHEBI:33266,http://purl.obolibrary.org/obo/CHEBI_33266,diatomic nitrogen +10.6322832,CL:0000018,http://purl.obolibrary.org/obo/CL_0000018,spermatid +10.6322832,DRUGBANK:DB09292,http://purl.obolibrary.org/obo/DRUGBANK_DB09292,none +10.6322832,GO:0072610,http://purl.obolibrary.org/obo/GO_0072610,none +10.6322832,NCBITaxon:85003,http://purl.obolibrary.org/obo/NCBITaxon_85003,none +10.6322832,PR:000000023,http://purl.obolibrary.org/obo/PR_000000023,retinoblastoma-like protein +10.6322832,PR:000001110,http://purl.obolibrary.org/obo/PR_000001110,G-protein coupled bile acid receptor 1 +10.6322832,PR:000007500,http://purl.obolibrary.org/obo/PR_000007500,fibroblast growth factor 9 +10.6322832,PR:000010892,http://purl.obolibrary.org/obo/PR_000010892,myelin transcription factor 1 +10.6322832,PR:000022886,http://purl.obolibrary.org/obo/PR_000022886,none +10.6322832,PR:000044411,http://purl.obolibrary.org/obo/PR_000044411,none +10.6322832,PR:000044634,http://purl.obolibrary.org/obo/PR_000044634,G-protein coupled bile acid receptor +10.6322832,PR:P36002,http://purl.obolibrary.org/obo/PR_P36002,none +10.6322832,PR:Q07407,http://purl.obolibrary.org/obo/PR_Q07407,none +10.6322832,SO:0001040,http://purl.obolibrary.org/obo/SO_0001040,integrated_plasmid +10.6322832,UBERON:0004064,http://purl.obolibrary.org/obo/UBERON_0004064,neural tube basal plate +10.6322832,UBERON:2000271,http://purl.obolibrary.org/obo/UBERON_2000271,radial bone +10.6340802,DRUGBANK:DB08910,http://purl.obolibrary.org/obo/DRUGBANK_DB08910,none +10.6340802,DRUGBANK:DB10699,http://purl.obolibrary.org/obo/DRUGBANK_DB10699,none +10.6340802,DRUGBANK:DB14296,http://purl.obolibrary.org/obo/DRUGBANK_DB14296,none +10.6340802,GO:0097479,http://purl.obolibrary.org/obo/GO_0097479,synaptic vesicle localization +10.6340802,MONDO:0010204,http://purl.obolibrary.org/obo/MONDO_0010204,lysosomal acid lipase deficiency +10.6340802,MONDO:0015340,http://purl.obolibrary.org/obo/MONDO_0015340,drug rash with eosinophilia and systemic symptoms +10.6340802,MONDO:0015902,http://purl.obolibrary.org/obo/MONDO_0015902,major hypertriglyceridemia +10.6340802,MONDO:0016227,http://purl.obolibrary.org/obo/MONDO_0016227,hereditary episodic ataxia +10.6340802,PR:000014976,http://purl.obolibrary.org/obo/PR_000014976,neutral amino acid transporter B(0) +10.6340802,UBERON:0001700,http://purl.obolibrary.org/obo/UBERON_0001700,geniculate ganglion +10.6358804,CHEBI:131619,http://purl.obolibrary.org/obo/CHEBI_131619,C27-steroid +10.6358804,CHEBI:16113,http://purl.obolibrary.org/obo/CHEBI_16113,cholesterol +10.6358804,DRUGBANK:DB09104,http://purl.obolibrary.org/obo/DRUGBANK_DB09104,none +10.6358804,GO:0004054,http://purl.obolibrary.org/obo/GO_0004054,arginine kinase activity +10.6358804,GO:0097168,http://purl.obolibrary.org/obo/GO_0097168,mesenchymal stem cell proliferation +10.6358804,MONDO:0006850,http://purl.obolibrary.org/obo/MONDO_0006850,maxillary sinus neoplasm +10.6358804,MONDO:0008116,http://purl.obolibrary.org/obo/MONDO_0008116,oculopharyngeal muscular dystrophy +10.6358804,MONDO:0008852,http://purl.obolibrary.org/obo/MONDO_0008852,congenital central hypoventilation syndrome +10.6358804,MONDO:0011806,http://purl.obolibrary.org/obo/MONDO_0011806,osteofibrous dysplasia +10.6358804,MONDO:0016412,http://purl.obolibrary.org/obo/MONDO_0016412,peripheral hypothyroidism +10.6358804,MONDO:0022205,http://purl.obolibrary.org/obo/MONDO_0022205,pustular psoriasis +10.6358804,PR:000005673,http://purl.obolibrary.org/obo/PR_000005673,contactin-associated protein-like 2 +10.6358804,PR:000010689,http://purl.obolibrary.org/obo/PR_000010689,cytochrome c oxidase subunit 3 +10.6358804,PR:000012246,http://purl.obolibrary.org/obo/PR_000012246,partner and localizer of BRCA2 +10.6358804,PR:000014705,http://purl.obolibrary.org/obo/PR_000014705,pigment epithelium-derived factor +10.6358804,PR:000022753,http://purl.obolibrary.org/obo/PR_000022753,none +10.6358804,PR:Q550D5,http://purl.obolibrary.org/obo/PR_Q550D5,none +10.6358804,UBERON:0001919,http://purl.obolibrary.org/obo/UBERON_0001919,endothelium of vein +10.6358804,UBERON:0001999,http://purl.obolibrary.org/obo/UBERON_0001999,iliopsoas +10.6358804,UBERON:0003580,http://purl.obolibrary.org/obo/UBERON_0003580,lower respiratory tract connective tissue +10.6358804,UBERON:0005103,http://purl.obolibrary.org/obo/UBERON_0005103,mesonephric epithelium +10.6358804,UBERON:0010276,http://purl.obolibrary.org/obo/UBERON_0010276,space in vertebral column +10.6376838,DRUGBANK:DB00314,http://purl.obolibrary.org/obo/DRUGBANK_DB00314,none +10.6376838,GO:0002292,http://purl.obolibrary.org/obo/GO_0002292,T cell differentiation involved in immune response +10.6376838,GO:0030251,http://purl.obolibrary.org/obo/GO_0030251,guanylate cyclase inhibitor activity +10.6376838,GO:0072641,http://purl.obolibrary.org/obo/GO_0072641,none +10.6376838,HP:0002904,http://purl.obolibrary.org/obo/HP_0002904,Hyperbilirubinemia +10.6376838,HP:0010995,http://purl.obolibrary.org/obo/HP_0010995,Abnormal circulating dicarboxylic acid concentration +10.6376838,HP:0033479,http://purl.obolibrary.org/obo/HP_0033479,Abnormal circulating bilirubin concentration +10.6376838,MONDO:0021327,http://purl.obolibrary.org/obo/MONDO_0021327,carcinoma of urethra +10.6376838,MONDO:0021652,http://purl.obolibrary.org/obo/MONDO_0021652,diffuse type adenocarcinoma +10.6376838,MONDO:0100114,http://purl.obolibrary.org/obo/MONDO_0100114,dry age related macular degeneration +10.6376838,NCBITaxon:177872,http://purl.obolibrary.org/obo/NCBITaxon_177872,none +10.6376838,SO:0000119,http://purl.obolibrary.org/obo/SO_0000119,regulated +10.6376838,SO:0000123,http://purl.obolibrary.org/obo/SO_0000123,transcriptionally_regulated +10.6376838,UBERON:0001177,http://purl.obolibrary.org/obo/UBERON_0001177,left hepatic duct +10.6394905,CHEBI:35674,http://purl.obolibrary.org/obo/CHEBI_35674,antihypertensive agent +10.6394905,GO:0015395,http://purl.obolibrary.org/obo/GO_0015395,"nucleoside transmembrane transporter activity, down a concentration gradient" +10.6394905,GO:0031907,http://purl.obolibrary.org/obo/GO_0031907,microbody lumen +10.6394905,MONDO:0001478,http://purl.obolibrary.org/obo/MONDO_0001478,anisometropia +10.6394905,MONDO:0006594,http://purl.obolibrary.org/obo/MONDO_0006594,pemphigus +10.6394905,MONDO:0015597,http://purl.obolibrary.org/obo/MONDO_0015597,pustulosis palmaris et plantaris +10.6394905,NCBITaxon:35333,http://purl.obolibrary.org/obo/NCBITaxon_35333,none +10.6394905,PR:000001074,http://purl.obolibrary.org/obo/PR_000001074,transient receptor potential cation channel TRPC with PDZ-binding motif +10.6394905,PR:000001075,http://purl.obolibrary.org/obo/PR_000001075,short transient receptor potential cation channel TRPC4 +10.6394905,PR:000008212,http://purl.obolibrary.org/obo/PR_000008212,glutathione peroxidase 3 +10.6394905,PR:000008241,http://purl.obolibrary.org/obo/PR_000008241,"glutamate receptor ionotropic, kainate 2" +10.6394905,PR:000009129,http://purl.obolibrary.org/obo/PR_000009129,integrin alpha-4 +10.6394905,UBERON:0002123,http://purl.obolibrary.org/obo/UBERON_0002123,cortex of thymus +10.6413004,CHEBI:22984,http://purl.obolibrary.org/obo/CHEBI_22984,calcium atom +10.6413004,CHEBI:29320,http://purl.obolibrary.org/obo/CHEBI_29320,calcium(0) +10.6413004,DRUGBANK:DB00967,http://purl.obolibrary.org/obo/DRUGBANK_DB00967,none +10.6413004,DRUGBANK:DB10351,http://purl.obolibrary.org/obo/DRUGBANK_DB10351,none +10.6413004,DRUGBANK:DB10789,http://purl.obolibrary.org/obo/DRUGBANK_DB10789,none +10.6413004,GO:0005782,http://purl.obolibrary.org/obo/GO_0005782,peroxisomal matrix +10.6413004,GO:0043495,http://purl.obolibrary.org/obo/GO_0043495,protein-membrane adaptor activity +10.6413004,MONDO:0007969,http://purl.obolibrary.org/obo/MONDO_0007969,Melkersson-Rosenthal syndrome +10.6413004,MONDO:0009276,http://purl.obolibrary.org/obo/MONDO_0009276,Bernard-Soulier syndrome +10.6413004,MONDO:0019010,http://purl.obolibrary.org/obo/MONDO_0019010,congenital isolated hyperinsulinism +10.6413004,MONDO:0022529,http://purl.obolibrary.org/obo/MONDO_0022529,BK-virus nephropathy +10.6413004,PR:000001849,http://purl.obolibrary.org/obo/PR_000001849,calcium-activated potassium channel subunit alpha-1 +10.6413004,PR:000009365,http://purl.obolibrary.org/obo/PR_000009365,krueppel-like factor 5 +10.6413004,PR:000010037,http://purl.obolibrary.org/obo/PR_000010037,mitotic spindle assembly checkpoint protein MAD1 +10.6413004,PR:000014952,http://purl.obolibrary.org/obo/PR_000014952,monocarboxylate transporter 5 +10.6413004,UBERON:0000089,http://purl.obolibrary.org/obo/UBERON_0000089,hypoblast (generic) +10.6413004,UBERON:0015480,http://purl.obolibrary.org/obo/UBERON_0015480,proper hepatic artery +10.6431137,DRUGBANK:DB01548,http://purl.obolibrary.org/obo/DRUGBANK_DB01548,none +10.6431137,DRUGBANK:DB03309,http://purl.obolibrary.org/obo/DRUGBANK_DB03309,none +10.6431137,DRUGBANK:DB04855,http://purl.obolibrary.org/obo/DRUGBANK_DB04855,none +10.6431137,GO:0004978,http://purl.obolibrary.org/obo/GO_0004978,corticotropin receptor activity +10.6431137,GO:0019031,http://purl.obolibrary.org/obo/GO_0019031,viral envelope +10.6431137,GO:0045926,http://purl.obolibrary.org/obo/GO_0045926,negative regulation of growth +10.6431137,PR:000004926,http://purl.obolibrary.org/obo/PR_000004926,carbonic anhydrase 9 +10.6431137,PR:000011436,http://purl.obolibrary.org/obo/PR_000011436,neuropilin-2 +10.6431137,PR:000016062,http://purl.obolibrary.org/obo/PR_000016062,taste receptor type 1 member 3 +10.6431137,UBERON:0001328,http://purl.obolibrary.org/obo/UBERON_0001328,lobe of prostate +10.6431137,UBERON:0003029,http://purl.obolibrary.org/obo/UBERON_0003029,stria terminalis +10.6431137,UBERON:0006567,http://purl.obolibrary.org/obo/UBERON_0006567,right ventricle myocardium +10.6431137,UBERON:0016555,http://purl.obolibrary.org/obo/UBERON_0016555,stria of telencephalon +10.6449302,CL:0000541,http://purl.obolibrary.org/obo/CL_0000541,melanoblast +10.6449302,CL:0011102,http://purl.obolibrary.org/obo/CL_0011102,parasympathetic neuron +10.6449302,GO:0032451,http://purl.obolibrary.org/obo/GO_0032451,demethylase activity +10.6449302,NCBITaxon:37611,http://purl.obolibrary.org/obo/NCBITaxon_37611,none +10.6449302,PR:000008926,http://purl.obolibrary.org/obo/PR_000008926,interferon-gamma receptor beta chain +10.6449302,PR:000010426,http://purl.obolibrary.org/obo/PR_000010426,myocardin-related transcription factor A +10.6449302,PR:000014466,http://purl.obolibrary.org/obo/PR_000014466,diamine acetyltransferase 1 +10.6449302,PR:000016992,http://purl.obolibrary.org/obo/PR_000016992,ubiquitin-protein ligase E3A +10.6449302,SO:0001479,http://purl.obolibrary.org/obo/SO_0001479,enhancer_trap_construct +10.6449302,UBERON:0019221,http://purl.obolibrary.org/obo/UBERON_0019221,digit 1 or 5 +10.64675,DRUGBANK:DB08327,http://purl.obolibrary.org/obo/DRUGBANK_DB08327,none +10.64675,GO:0071895,http://purl.obolibrary.org/obo/GO_0071895,odontoblast differentiation +10.64675,MONDO:0004465,http://purl.obolibrary.org/obo/MONDO_0004465,periampullary adenocarcinoma +10.64675,MONDO:0044001,http://purl.obolibrary.org/obo/MONDO_0044001,"hearing loss, mixed conductive-sensorineural" +10.64675,NCBITaxon:40155,http://purl.obolibrary.org/obo/NCBITaxon_40155,none +10.64675,NCBITaxon:59728,http://purl.obolibrary.org/obo/NCBITaxon_59728,none +10.64675,NCBITaxon:59729,http://purl.obolibrary.org/obo/NCBITaxon_59729,none +10.64675,PR:000001989,http://purl.obolibrary.org/obo/PR_000001989,C-C motif chemokine 17 +10.64675,PR:000001991,http://purl.obolibrary.org/obo/PR_000001991,C-C motif chemokine 19 +10.64675,PR:000005051,http://purl.obolibrary.org/obo/PR_000005051,peripheral plasma membrane protein CASK +10.64675,PR:000017449,http://purl.obolibrary.org/obo/PR_000017449,protein Wnt-7b +10.64675,PR:000037377,http://purl.obolibrary.org/obo/PR_000037377,none +10.64675,PR:Q681I0,http://purl.obolibrary.org/obo/PR_Q681I0,none +10.64675,SO:0000396,http://purl.obolibrary.org/obo/SO_0000396,U6_snRNA +10.64675,UBERON:0003605,http://purl.obolibrary.org/obo/UBERON_0003605,eye skin gland +10.6485732,DRUGBANK:DB00307,http://purl.obolibrary.org/obo/DRUGBANK_DB00307,none +10.6485732,DRUGBANK:DB02430,http://purl.obolibrary.org/obo/DRUGBANK_DB02430,none +10.6485732,DRUGBANK:DB15492,http://purl.obolibrary.org/obo/DRUGBANK_DB15492,none +10.6485732,GO:0015879,http://purl.obolibrary.org/obo/GO_0015879,carnitine transport +10.6485732,HP:0007378,http://purl.obolibrary.org/obo/HP_0007378,Neoplasm of the gastrointestinal tract +10.6485732,MONDO:0008783,http://purl.obolibrary.org/obo/MONDO_0008783,Tangier disease +10.6485732,MONDO:0009655,http://purl.obolibrary.org/obo/MONDO_0009655,Sanfilippo syndrome type A +10.6485732,MONDO:0011827,http://purl.obolibrary.org/obo/MONDO_0011827,patent ductus arteriosus +10.6485732,MONDO:0017347,http://purl.obolibrary.org/obo/MONDO_0017347,plasmablastic lymphoma +10.6485732,PR:000001223,http://purl.obolibrary.org/obo/PR_000001223,gastrin-releasing peptide receptor +10.6485732,PR:000004470,http://purl.obolibrary.org/obo/PR_000004470,renin receptor +10.6485732,PR:000006024,http://purl.obolibrary.org/obo/PR_000006024,dipeptidyl peptidase 1 +10.6485732,PR:000008004,http://purl.obolibrary.org/obo/PR_000008004,gap junction gamma-1 protein +10.6485732,PR:000016625,http://purl.obolibrary.org/obo/PR_000016625,triggering receptor expressed on myeloid cells 1 +10.6485732,PR:000017283,http://purl.obolibrary.org/obo/PR_000017283,vitamin D3 receptor +10.6485732,PR:000022670,http://purl.obolibrary.org/obo/PR_000022670,none +10.6485732,PR:000034352,http://purl.obolibrary.org/obo/PR_000034352,none +10.6485732,UBERON:0004811,http://purl.obolibrary.org/obo/UBERON_0004811,endometrium epithelium +10.6503997,CL:0000190,http://purl.obolibrary.org/obo/CL_0000190,fast muscle cell +10.6503997,GO:0000050,http://purl.obolibrary.org/obo/GO_0000050,urea cycle +10.6503997,GO:0000118,http://purl.obolibrary.org/obo/GO_0000118,histone deacetylase complex +10.6503997,GO:0009086,http://purl.obolibrary.org/obo/GO_0009086,methionine biosynthetic process +10.6503997,GO:0015747,http://purl.obolibrary.org/obo/GO_0015747,urate transport +10.6503997,MONDO:0001422,http://purl.obolibrary.org/obo/MONDO_0001422,primary aldosteronism +10.6503997,PR:000010128,http://purl.obolibrary.org/obo/PR_000010128,dual specificity mitogen-activated protein kinase kinase 7 +10.6522295,CHEBI:29687,http://purl.obolibrary.org/obo/CHEBI_29687,teicoplanin +10.6522295,DRUGBANK:DB00494,http://purl.obolibrary.org/obo/DRUGBANK_DB00494,none +10.6522295,GO:0097472,http://purl.obolibrary.org/obo/GO_0097472,cyclin-dependent protein kinase activity +10.6522295,GO:2000104,http://purl.obolibrary.org/obo/GO_2000104,negative regulation of DNA-dependent DNA replication +10.6522295,MONDO:0015503,http://purl.obolibrary.org/obo/MONDO_0015503,nose and cavum anomaly +10.6522295,PR:000006670,http://purl.obolibrary.org/obo/PR_000006670,dermatopontin +10.6522295,PR:G5EGA3,http://purl.obolibrary.org/obo/PR_G5EGA3,none +10.6540627,DRUGBANK:DB00618,http://purl.obolibrary.org/obo/DRUGBANK_DB00618,none +10.6540627,DRUGBANK:DB00821,http://purl.obolibrary.org/obo/DRUGBANK_DB00821,none +10.6540627,DRUGBANK:DB08785,http://purl.obolibrary.org/obo/DRUGBANK_DB08785,none +10.6540627,GO:0042092,http://purl.obolibrary.org/obo/GO_0042092,type 2 immune response +10.6540627,HP:0001638,http://purl.obolibrary.org/obo/HP_0001638,Cardiomyopathy +10.6540627,MONDO:0024292,http://purl.obolibrary.org/obo/MONDO_0024292,gastrointestinal polyp +10.6540627,NCBITaxon:337963,http://purl.obolibrary.org/obo/NCBITaxon_337963,Neotominae +10.6540627,PR:000011412,http://purl.obolibrary.org/obo/PR_000011412,nuclear receptor subfamily 5 group A member 2 +10.6540627,PR:000030462,http://purl.obolibrary.org/obo/PR_000030462,tumor protein p53-inducible nuclear protein 1 +10.6540627,PR:P25087,http://purl.obolibrary.org/obo/PR_P25087,none +10.6540627,SO:0000013,http://purl.obolibrary.org/obo/SO_0000013,scRNA +10.6540627,UBERON:0000363,http://purl.obolibrary.org/obo/UBERON_0000363,reticuloendothelial system +10.6540627,UBERON:0022275,http://purl.obolibrary.org/obo/UBERON_0022275,colic flexure +10.6540627,UBERON:0022277,http://purl.obolibrary.org/obo/UBERON_0022277,hepatic flexure of colon +10.6558992,DRUGBANK:DB00436,http://purl.obolibrary.org/obo/DRUGBANK_DB00436,none +10.6558992,DRUGBANK:DB01116,http://purl.obolibrary.org/obo/DRUGBANK_DB01116,none +10.6558992,DRUGBANK:DB08871,http://purl.obolibrary.org/obo/DRUGBANK_DB08871,none +10.6558992,DRUGBANK:DB13828,http://purl.obolibrary.org/obo/DRUGBANK_DB13828,none +10.6558992,GO:0033596,http://purl.obolibrary.org/obo/GO_0033596,TSC1-TSC2 complex +10.6558992,HP:0030731,http://purl.obolibrary.org/obo/HP_0030731,Carcinoma +10.6558992,MONDO:0021222,http://purl.obolibrary.org/obo/MONDO_0021222,lacrimal gland neoplasm +10.6558992,PR:000010833,http://purl.obolibrary.org/obo/PR_000010833,myosin-9 +10.6558992,PR:000013084,http://purl.obolibrary.org/obo/PR_000013084,RING-type E3 ubiquitin-protein ligase PPIL2 +10.6558992,PR:000016039,http://purl.obolibrary.org/obo/PR_000016039,transgelin +10.6558992,PR:000025847,http://purl.obolibrary.org/obo/PR_000025847,dimethylaniline monooxygenase [N-oxide-forming] +10.6577391,CHEBI:17997,http://purl.obolibrary.org/obo/CHEBI_17997,dinitrogen +10.6577391,CL:0000751,http://purl.obolibrary.org/obo/CL_0000751,rod bipolar cell +10.6577391,GO:0009530,http://purl.obolibrary.org/obo/GO_0009530,primary cell wall +10.6577391,GO:0016592,http://purl.obolibrary.org/obo/GO_0016592,mediator complex +10.6577391,MONDO:0009412,http://purl.obolibrary.org/obo/MONDO_0009412,scurvy +10.6577391,PR:000003045,http://purl.obolibrary.org/obo/PR_000003045,kinesin-like protein KIF11 +10.6577391,PR:000004314,http://purl.obolibrary.org/obo/PR_000004314,actin-related protein 2/3 complex subunit 5-like protein +10.6577391,PR:000004973,http://purl.obolibrary.org/obo/PR_000004973,calcitonin gene-related peptide type 1 receptor +10.6577391,PR:000007132,http://purl.obolibrary.org/obo/PR_000007132,ephrin type-B receptor 4 +10.6577391,PR:000015619,http://purl.obolibrary.org/obo/PR_000015619,sorcin +10.6577391,PR:Q6GMI0,http://purl.obolibrary.org/obo/PR_Q6GMI0,none +10.6595825,CHEBI:60164,http://purl.obolibrary.org/obo/CHEBI_60164,ionic polymer +10.6595825,DRUGBANK:DB00743,http://purl.obolibrary.org/obo/DRUGBANK_DB00743,none +10.6595825,DRUGBANK:DB03459,http://purl.obolibrary.org/obo/DRUGBANK_DB03459,none +10.6595825,GO:0001822,http://purl.obolibrary.org/obo/GO_0001822,kidney development +10.6595825,GO:0009437,http://purl.obolibrary.org/obo/GO_0009437,carnitine metabolic process +10.6595825,GO:0032238,http://purl.obolibrary.org/obo/GO_0032238,adenosine transport +10.6595825,GO:0038054,http://purl.obolibrary.org/obo/GO_0038054,G protein-coupled estrogen receptor activity +10.6595825,GO:1902903,http://purl.obolibrary.org/obo/GO_1902903,regulation of supramolecular fiber organization +10.6595825,GO:2001256,http://purl.obolibrary.org/obo/GO_2001256,regulation of store-operated calcium entry +10.6595825,HP:0000939,http://purl.obolibrary.org/obo/HP_0000939,Osteoporosis +10.6595825,MONDO:0002060,http://purl.obolibrary.org/obo/MONDO_0002060,intraductal papilloma +10.6595825,MONDO:0018758,http://purl.obolibrary.org/obo/MONDO_0018758,familial patent arterial duct +10.6595825,MONDO:0019822,http://purl.obolibrary.org/obo/MONDO_0019822,arterial duct anomaly +10.6595825,NCBITaxon:10486,http://purl.obolibrary.org/obo/NCBITaxon_10486,none +10.6595825,PR:000005149,http://purl.obolibrary.org/obo/PR_000005149,T-complex protein 1 subunit alpha +10.6595825,PR:000010471,http://purl.obolibrary.org/obo/PR_000010471,stromelysin-3 +10.6595825,PR:000022460,http://purl.obolibrary.org/obo/PR_000022460,none +10.6595825,UBERON:0004058,http://purl.obolibrary.org/obo/UBERON_0004058,biliary ductule +10.6595825,UBERON:0004820,http://purl.obolibrary.org/obo/UBERON_0004820,bile duct epithelium +10.6595825,UBERON:0007224,http://purl.obolibrary.org/obo/UBERON_0007224,medial entorhinal cortex +10.6595825,UBERON:0010290,http://purl.obolibrary.org/obo/UBERON_0010290,scleral ossicle +10.6614292,DRUGBANK:DB04833,http://purl.obolibrary.org/obo/DRUGBANK_DB04833,none +10.6614292,GO:0006868,http://purl.obolibrary.org/obo/GO_0006868,glutamine transport +10.6614292,GO:0014010,http://purl.obolibrary.org/obo/GO_0014010,Schwann cell proliferation +10.6614292,GO:0016822,http://purl.obolibrary.org/obo/GO_0016822,"hydrolase activity, acting on acid carbon-carbon bonds" +10.6614292,GO:0016823,http://purl.obolibrary.org/obo/GO_0016823,"hydrolase activity, acting on acid carbon-carbon bonds, in ketonic substances" +10.6614292,MONDO:0008876,http://purl.obolibrary.org/obo/MONDO_0008876,Bloom syndrome +10.6614292,MONDO:0011959,http://purl.obolibrary.org/obo/MONDO_0011959,sweet syndrome +10.6614292,MONDO:0017592,http://purl.obolibrary.org/obo/MONDO_0017592,staphylococcal toxemia +10.6614292,MONDO:0018864,http://purl.obolibrary.org/obo/MONDO_0018864,Kikuchi-Fujimoto disease +10.6614292,MONDO:0020629,http://purl.obolibrary.org/obo/MONDO_0020629,"microcephaly, growth restriction and increased sister chromatid exchange" +10.6614292,MONDO:0043472,http://purl.obolibrary.org/obo/MONDO_0043472,ectopic ACTH secretion syndrome +10.6614292,PR:000000127,http://purl.obolibrary.org/obo/PR_000000127,smad ubiquitination regulatory factor +10.6614292,PR:000023216,http://purl.obolibrary.org/obo/PR_000023216,none +10.6632793,GO:0004496,http://purl.obolibrary.org/obo/GO_0004496,mevalonate kinase activity +10.6632793,GO:2001020,http://purl.obolibrary.org/obo/GO_2001020,regulation of response to DNA damage stimulus +10.6632793,MONDO:0000159,http://purl.obolibrary.org/obo/MONDO_0000159,bone marrow failure syndrome +10.6632793,MONDO:0015892,http://purl.obolibrary.org/obo/MONDO_0015892,growth hormone insensitivity syndrome +10.6632793,MONDO:0018938,http://purl.obolibrary.org/obo/MONDO_0018938,mucopolysaccharidosis type 4 +10.6632793,MONDO:0020593,http://purl.obolibrary.org/obo/MONDO_0020593,trichoblastoma +10.6632793,MONDO:0021677,http://purl.obolibrary.org/obo/MONDO_0021677,post-infectious neuralgia +10.6632793,MONDO:0041052,http://purl.obolibrary.org/obo/MONDO_0041052,postherpetic neuralgia +10.6632793,PR:000004158,http://purl.obolibrary.org/obo/PR_000004158,apolipoprotein L1 +10.6632793,PR:000012718,http://purl.obolibrary.org/obo/PR_000012718,phosphatidylinositol 3-kinase catalytic subunit type 3 +10.6632793,PR:Q38924,http://purl.obolibrary.org/obo/PR_Q38924,none +10.6632793,SO:0001533,http://purl.obolibrary.org/obo/SO_0001533,cryptic_splice_site +10.6632793,SO:0005858,http://purl.obolibrary.org/obo/SO_0005858,syntenic_region +10.6651329,CL:0002559,http://purl.obolibrary.org/obo/CL_0002559,hair follicle cell +10.6651329,DRUGBANK:DB00380,http://purl.obolibrary.org/obo/DRUGBANK_DB00380,none +10.6651329,DRUGBANK:DB15615,http://purl.obolibrary.org/obo/DRUGBANK_DB15615,none +10.6651329,GO:0071751,http://purl.obolibrary.org/obo/GO_0071751,secretory IgA immunoglobulin complex +10.6651329,MONDO:0002643,http://purl.obolibrary.org/obo/MONDO_0002643,vestibular disease +10.6651329,NCBITaxon:10927,http://purl.obolibrary.org/obo/NCBITaxon_10927,Bovine rotavirus +10.6651329,NCBITaxon:11827,http://purl.obolibrary.org/obo/NCBITaxon_11827,none +10.6651329,NCBITaxon:195480,http://purl.obolibrary.org/obo/NCBITaxon_195480,none +10.6651329,PR:000005882,http://purl.obolibrary.org/obo/PR_000005882,adapter molecule crk +10.6651329,PR:000014807,http://purl.obolibrary.org/obo/PR_000014807,small glutamine-rich tetratricopeptide repeat-containing protein alpha +10.6651329,PR:Q94AH9,http://purl.obolibrary.org/obo/PR_Q94AH9,none +10.6651329,UBERON:0002233,http://purl.obolibrary.org/obo/UBERON_0002233,tectorial membrane of cochlea +10.6669899,CHEBI:23634,http://purl.obolibrary.org/obo/CHEBI_23634,deoxyaldopentose phosphate +10.6669899,DRUGBANK:DB11581,http://purl.obolibrary.org/obo/DRUGBANK_DB11581,none +10.6669899,GO:0004839,http://purl.obolibrary.org/obo/GO_0004839,ubiquitin activating enzyme activity +10.6669899,GO:0006334,http://purl.obolibrary.org/obo/GO_0006334,nucleosome assembly +10.6669899,MONDO:0006968,http://purl.obolibrary.org/obo/MONDO_0006968,shoulder impingement syndrome +10.6669899,MONDO:0017847,http://purl.obolibrary.org/obo/MONDO_0017847,autosomal recessive spastic ataxia +10.6669899,PR:000001582,http://purl.obolibrary.org/obo/PR_000001582,free fatty acid receptor 1 +10.6669899,PR:000004322,http://purl.obolibrary.org/obo/PR_000004322,arylsulfatase B +10.6669899,PR:000012202,http://purl.obolibrary.org/obo/PR_000012202,proliferation-associated protein 2G4 +10.6669899,PR:000013369,http://purl.obolibrary.org/obo/PR_000013369,proteasome subunit beta type-1 +10.6669899,PR:000013464,http://purl.obolibrary.org/obo/PR_000013464,receptor-type tyrosine-protein phosphatase alpha +10.6669899,PR:000044647,http://purl.obolibrary.org/obo/PR_000044647,none +10.6669899,UBERON:0000391,http://purl.obolibrary.org/obo/UBERON_0000391,leptomeninx +10.6688504,GO:0005641,http://purl.obolibrary.org/obo/GO_0005641,nuclear envelope lumen +10.6688504,GO:0015810,http://purl.obolibrary.org/obo/GO_0015810,aspartate transmembrane transport +10.6688504,GO:0030426,http://purl.obolibrary.org/obo/GO_0030426,growth cone +10.6688504,GO:0035710,http://purl.obolibrary.org/obo/GO_0035710,"CD4-positive, alpha-beta T cell activation" +10.6688504,GO:0048489,http://purl.obolibrary.org/obo/GO_0048489,synaptic vesicle transport +10.6688504,GO:0048864,http://purl.obolibrary.org/obo/GO_0048864,stem cell development +10.6688504,GO:0097478,http://purl.obolibrary.org/obo/GO_0097478,leaflet of membrane bilayer +10.6688504,GO:1902105,http://purl.obolibrary.org/obo/GO_1902105,regulation of leukocyte differentiation +10.6688504,GO:1904321,http://purl.obolibrary.org/obo/GO_1904321,response to forskolin +10.6688504,MONDO:0002995,http://purl.obolibrary.org/obo/MONDO_0002995,"small intestine neuroendocrine tumor, well differentiated, low or intermediate grade" +10.6688504,PR:000011050,http://purl.obolibrary.org/obo/PR_000011050,kinetochore protein NDC80 +10.6688504,UBERON:0001509,http://purl.obolibrary.org/obo/UBERON_0001509,triceps brachii +10.6688504,UBERON:0002042,http://purl.obolibrary.org/obo/UBERON_0002042,lymphatic vessel endothelium +10.6688504,UBERON:0034932,http://purl.obolibrary.org/obo/UBERON_0034932,epithelium of biliary system +10.6707143,DRUGBANK:DB03285,http://purl.obolibrary.org/obo/DRUGBANK_DB03285,none +10.6707143,DRUGBANK:DB10639,http://purl.obolibrary.org/obo/DRUGBANK_DB10639,none +10.6707143,MONDO:0015573,http://purl.obolibrary.org/obo/MONDO_0015573,subacute cutaneous lupus erythematosus +10.6707143,PR:000001131,http://purl.obolibrary.org/obo/PR_000001131,cysteinyl leukotriene receptor +10.6707143,PR:000010041,http://purl.obolibrary.org/obo/PR_000010041,mucosal addressin cell adhesion molecule 1 +10.6707143,PR:000013330,http://purl.obolibrary.org/obo/PR_000013330,prostasin +10.6707143,PR:000017479,http://purl.obolibrary.org/obo/PR_000017479,Xin actin-binding repeat-containing protein 1 +10.6707143,PR:000029248,http://purl.obolibrary.org/obo/PR_000029248,none +10.6707143,UBERON:0002029,http://purl.obolibrary.org/obo/UBERON_0002029,epithelium of gall bladder +10.6707143,UBERON:0003220,http://purl.obolibrary.org/obo/UBERON_0003220,metanephric mesenchyme +10.6725817,DRUGBANK:DB14265,http://purl.obolibrary.org/obo/DRUGBANK_DB14265,none +10.6725817,DRUGBANK:DB15531,http://purl.obolibrary.org/obo/DRUGBANK_DB15531,none +10.6725817,GO:0097480,http://purl.obolibrary.org/obo/GO_0097480,establishment of synaptic vesicle localization +10.6725817,PR:000005293,http://purl.obolibrary.org/obo/PR_000005293,DNA replication factor Cdt1 +10.6725817,PR:000010750,http://purl.obolibrary.org/obo/PR_000010750,methionine synthase reductase +10.6725817,PR:000011407,http://purl.obolibrary.org/obo/PR_000011407,mineralocorticoid receptor +10.6725817,PR:000013200,http://purl.obolibrary.org/obo/PR_000013200,prolyl endopeptidase +10.6725817,PR:000014046,http://purl.obolibrary.org/obo/PR_000014046,non-secretory ribonuclease +10.6725817,PR:000014995,http://purl.obolibrary.org/obo/PR_000014995,solute carrier family 22 member 8 +10.6725817,PR:000029239,http://purl.obolibrary.org/obo/PR_000029239,none +10.6725817,PR:000031343,http://purl.obolibrary.org/obo/PR_000031343,mucin-5AC +10.6725817,PR:P0CH67,http://purl.obolibrary.org/obo/PR_P0CH67,none +10.6725817,PR:Q2LE08,http://purl.obolibrary.org/obo/PR_Q2LE08,none +10.6725817,PR:Q5A7Q6,http://purl.obolibrary.org/obo/PR_Q5A7Q6,none +10.6725817,UBERON:0010887,http://purl.obolibrary.org/obo/UBERON_0010887,tragus +10.6725817,UBERON:0011742,http://purl.obolibrary.org/obo/UBERON_0011742,aortic valve leaflet +10.6744526,CHEBI:50137,http://purl.obolibrary.org/obo/CHEBI_50137,mu-opioid receptor antagonist +10.6744526,DRUGBANK:DB01074,http://purl.obolibrary.org/obo/DRUGBANK_DB01074,none +10.6744526,DRUGBANK:DB01340,http://purl.obolibrary.org/obo/DRUGBANK_DB01340,none +10.6744526,GO:0009617,http://purl.obolibrary.org/obo/GO_0009617,response to bacterium +10.6744526,GO:0009620,http://purl.obolibrary.org/obo/GO_0009620,response to fungus +10.6744526,GO:0032368,http://purl.obolibrary.org/obo/GO_0032368,regulation of lipid transport +10.6744526,GO:1904019,http://purl.obolibrary.org/obo/GO_1904019,epithelial cell apoptotic process +10.6744526,GO:1905952,http://purl.obolibrary.org/obo/GO_1905952,regulation of lipid localization +10.6744526,MONDO:0006173,http://purl.obolibrary.org/obo/MONDO_0006173,conjunctival squamous cell carcinoma +10.6744526,MONDO:0019373,http://purl.obolibrary.org/obo/MONDO_0019373,desmoplastic small round cell tumor +10.6744526,MONDO:0100100,http://purl.obolibrary.org/obo/MONDO_0100100,SELENON-related myopathy +10.6744526,NCBITaxon:11036,http://purl.obolibrary.org/obo/NCBITaxon_11036,Venezuelan equine encephalitis virus +10.6744526,PR:000006786,http://purl.obolibrary.org/obo/PR_000006786,dysferlin +10.6744526,PR:P0A0I7,http://purl.obolibrary.org/obo/PR_P0A0I7,none +10.6744526,PR:P0CY24,http://purl.obolibrary.org/obo/PR_P0CY24,none +10.676327,DRUGBANK:DB06196,http://purl.obolibrary.org/obo/DRUGBANK_DB06196,none +10.676327,MONDO:0006643,http://purl.obolibrary.org/obo/MONDO_0006643,alcoholic cardiomyopathy +10.676327,MONDO:0009179,http://purl.obolibrary.org/obo/MONDO_0009179,recessive dystrophic epidermolysis bullosa +10.676327,NCBITaxon:10260,http://purl.obolibrary.org/obo/NCBITaxon_10260,Avipoxvirus +10.676327,PR:000007310,http://purl.obolibrary.org/obo/PR_000007310,"fatty acid-binding protein, intestinal" +10.676327,PR:000035541,http://purl.obolibrary.org/obo/PR_000035541,none +10.676327,UBERON:0001087,http://purl.obolibrary.org/obo/UBERON_0001087,pleural fluid +10.676327,UBERON:0003725,http://purl.obolibrary.org/obo/UBERON_0003725,cervical nerve plexus +10.676327,UBERON:0004545,http://purl.obolibrary.org/obo/UBERON_0004545,external capsule of telencephalon +10.676327,UBERON:0006171,http://purl.obolibrary.org/obo/UBERON_0006171,renal sinus +10.676327,UBERON:0018144,http://purl.obolibrary.org/obo/UBERON_0018144,cervical rib +10.676327,UBERON:0036244,http://purl.obolibrary.org/obo/UBERON_0036244,secretion of serous membrane +10.678205,DRUGBANK:DB03608,http://purl.obolibrary.org/obo/DRUGBANK_DB03608,none +10.678205,DRUGBANK:DB07996,http://purl.obolibrary.org/obo/DRUGBANK_DB07996,none +10.678205,DRUGBANK:DB14492,http://purl.obolibrary.org/obo/DRUGBANK_DB14492,none +10.678205,GO:0003906,http://purl.obolibrary.org/obo/GO_0003906,DNA-(apurinic or apyrimidinic site) endonuclease activity +10.678205,GO:0010648,http://purl.obolibrary.org/obo/GO_0010648,negative regulation of cell communication +10.678205,GO:0043385,http://purl.obolibrary.org/obo/GO_0043385,mycotoxin metabolic process +10.678205,GO:0044349,http://purl.obolibrary.org/obo/GO_0044349,DNA excision +10.678205,MONDO:0000863,http://purl.obolibrary.org/obo/MONDO_0000863,"myopathy, lactic acidosis, and sideroblastic anemia" +10.678205,MONDO:0006147,http://purl.obolibrary.org/obo/MONDO_0006147,"chronic eosinophilic leukemia, not otherwise specified" +10.678205,MONDO:0009657,http://purl.obolibrary.org/obo/MONDO_0009657,Sanfilippo syndrome type C +10.678205,PR:000003302,http://purl.obolibrary.org/obo/PR_000003302,"phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase 1" +10.678205,PR:000013954,http://purl.obolibrary.org/obo/PR_000013954,regulator of G-protein signaling 2 +10.678205,UBERON:0002924,http://purl.obolibrary.org/obo/UBERON_0002924,terminal nerve +10.678205,UBERON:0003484,http://purl.obolibrary.org/obo/UBERON_0003484,eye sebaceous gland +10.678205,UBERON:0010305,http://purl.obolibrary.org/obo/UBERON_0010305,subdivision of conjunctiva +10.678205,UBERON:0013231,http://purl.obolibrary.org/obo/UBERON_0013231,sebaceous gland of eyelid +10.6800864,CHEBI:19260,http://purl.obolibrary.org/obo/CHEBI_19260,2'-deoxyribonucleotide +10.6800864,CHEBI:19569,http://purl.obolibrary.org/obo/CHEBI_19569,2-deoxyribose phosphate +10.6800864,CHEBI:37016,http://purl.obolibrary.org/obo/CHEBI_37016,2'-deoxyribonucleoside 5'-phosphate +10.6800864,DRUGBANK:DB00744,http://purl.obolibrary.org/obo/DRUGBANK_DB00744,none +10.6800864,DRUGBANK:DB11286,http://purl.obolibrary.org/obo/DRUGBANK_DB11286,none +10.6800864,DRUGBANK:DB11596,http://purl.obolibrary.org/obo/DRUGBANK_DB11596,none +10.6800864,MONDO:0003143,http://purl.obolibrary.org/obo/MONDO_0003143,angiokeratoma +10.6800864,PR:000003388,http://purl.obolibrary.org/obo/PR_000003388,collagen type IV alpha chain +10.6800864,PR:000011443,http://purl.obolibrary.org/obo/PR_000011443,vesicle-fusing ATPase +10.6800864,PR:000014759,http://purl.obolibrary.org/obo/PR_000014759,protein SCAF11 +10.6800864,PR:000015229,http://purl.obolibrary.org/obo/PR_000015229,solute carrier organic anion transporter family member 4A1 +10.6800864,PR:000017540,http://purl.obolibrary.org/obo/PR_000017540,ATP-dependent zinc metalloprotease YME1L1 +10.6800864,UBERON:0009658,http://purl.obolibrary.org/obo/UBERON_0009658,pancreaticoduodenal artery +10.6800864,UBERON:0016542,http://purl.obolibrary.org/obo/UBERON_0016542,limbic cortex +10.6819715,CL:0002210,http://purl.obolibrary.org/obo/CL_0002210,red muscle cell +10.6819715,DRUGBANK:DB03636,http://purl.obolibrary.org/obo/DRUGBANK_DB03636,none +10.6819715,DRUGBANK:DB04381,http://purl.obolibrary.org/obo/DRUGBANK_DB04381,none +10.6819715,DRUGBANK:DB10864,http://purl.obolibrary.org/obo/DRUGBANK_DB10864,none +10.6819715,DRUGBANK:DB10870,http://purl.obolibrary.org/obo/DRUGBANK_DB10870,none +10.6819715,DRUGBANK:DB11263,http://purl.obolibrary.org/obo/DRUGBANK_DB11263,none +10.6819715,DRUGBANK:DB11493,http://purl.obolibrary.org/obo/DRUGBANK_DB11493,none +10.6819715,GO:0009235,http://purl.obolibrary.org/obo/GO_0009235,cobalamin metabolic process +10.6819715,GO:0018933,http://purl.obolibrary.org/obo/GO_0018933,nicotine metabolic process +10.6819715,GO:1901847,http://purl.obolibrary.org/obo/GO_1901847,nicotinate metabolic process +10.6819715,HP:0031653,http://purl.obolibrary.org/obo/HP_0031653,Abnormal heart valve physiology +10.6819715,MONDO:0002261,http://purl.obolibrary.org/obo/MONDO_0002261,keratopathy +10.6819715,MONDO:0008087,http://purl.obolibrary.org/obo/MONDO_0008087,hereditary neuropathy with liability to pressure palsies +10.6819715,NCBITaxon:186778,http://purl.obolibrary.org/obo/NCBITaxon_186778,Novirhabdovirus +10.6819715,PR:000000372,http://purl.obolibrary.org/obo/PR_000000372,smad5 +10.6819715,PR:000000373,http://purl.obolibrary.org/obo/PR_000000373,smad6 +10.6819715,PR:000007222,http://purl.obolibrary.org/obo/PR_000007222,protein C-ets-2 +10.6819715,PR:000013041,http://purl.obolibrary.org/obo/PR_000013041,"POU domain, class 4, transcription factor 1" +10.68386,CHEBI:17873,http://purl.obolibrary.org/obo/CHEBI_17873,DNA cytosine +10.68386,DRUGBANK:DB08804,http://purl.obolibrary.org/obo/DRUGBANK_DB08804,none +10.68386,GO:0044797,http://purl.obolibrary.org/obo/GO_0044797,none +10.68386,GO:0051324,http://purl.obolibrary.org/obo/GO_0051324,prophase +10.68386,GO:1990198,http://purl.obolibrary.org/obo/GO_1990198,ModE complex +10.68386,PR:000008205,http://purl.obolibrary.org/obo/PR_000008205,G-protein-signaling modulator 2 +10.6857522,DRUGBANK:DB00629,http://purl.obolibrary.org/obo/DRUGBANK_DB00629,none +10.6857522,DRUGBANK:DB01524,http://purl.obolibrary.org/obo/DRUGBANK_DB01524,none +10.6857522,DRUGBANK:DB06688,http://purl.obolibrary.org/obo/DRUGBANK_DB06688,none +10.6857522,GO:0007286,http://purl.obolibrary.org/obo/GO_0007286,spermatid development +10.6857522,GO:0047848,http://purl.obolibrary.org/obo/GO_0047848,dephospho-[reductase kinase] kinase activity +10.6857522,MONDO:0005512,http://purl.obolibrary.org/obo/MONDO_0005512,malignant peritoneal mesothelioma +10.6857522,MONDO:0010354,http://purl.obolibrary.org/obo/MONDO_0010354,Allan-Herndon-Dudley syndrome +10.6857522,NCBITaxon:10232,http://purl.obolibrary.org/obo/NCBITaxon_10232,Acanthocephala +10.6857522,NCBITaxon:2842415,http://purl.obolibrary.org/obo/NCBITaxon_2842415,none +10.6857522,PR:000000705,http://purl.obolibrary.org/obo/PR_000000705,potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 1 +10.6876479,CHEBI:50075,http://purl.obolibrary.org/obo/CHEBI_50075,dihydropyridine +10.6876479,DRUGBANK:DB01892,http://purl.obolibrary.org/obo/DRUGBANK_DB01892,none +10.6876479,DRUGBANK:DB08901,http://purl.obolibrary.org/obo/DRUGBANK_DB08901,none +10.6876479,DRUGBANK:DB09338,http://purl.obolibrary.org/obo/DRUGBANK_DB09338,none +10.6876479,DRUGBANK:DB16326,http://purl.obolibrary.org/obo/DRUGBANK_DB16326,none +10.6876479,GO:0004063,http://purl.obolibrary.org/obo/GO_0004063,aryldialkylphosphatase activity +10.6876479,MONDO:0002096,http://purl.obolibrary.org/obo/MONDO_0002096,malignant conjunctival melanoma +10.6876479,MONDO:0004230,http://purl.obolibrary.org/obo/MONDO_0004230,adenomatoid tumor +10.6876479,PR:000013004,http://purl.obolibrary.org/obo/PR_000013004,DNA-directed RNA polymerase III subunit RPC5 +10.6876479,SO:0000976,http://purl.obolibrary.org/obo/SO_0000976,cryptic +10.6895473,DRUGBANK:DB00056,http://purl.obolibrary.org/obo/DRUGBANK_DB00056,none +10.6895473,DRUGBANK:DB03585,http://purl.obolibrary.org/obo/DRUGBANK_DB03585,none +10.6895473,GO:0016307,http://purl.obolibrary.org/obo/GO_0016307,phosphatidylinositol phosphate kinase activity +10.6895473,MONDO:0000365,http://purl.obolibrary.org/obo/MONDO_0000365,primary congenital glaucoma +10.6895473,MONDO:0004588,http://purl.obolibrary.org/obo/MONDO_0004588,night blindness +10.6895473,NCBITaxon:72037,http://purl.obolibrary.org/obo/NCBITaxon_72037,Hexanauplia +10.6895473,PR:000006267,http://purl.obolibrary.org/obo/PR_000006267,dystroglycan +10.6895473,PR:000014306,http://purl.obolibrary.org/obo/PR_000014306,ribonucleoside-diphosphate reductase subunit M2 +10.6895473,PR:O65782,http://purl.obolibrary.org/obo/PR_O65782,none +10.6895473,UBERON:0000076,http://purl.obolibrary.org/obo/UBERON_0000076,external ectoderm +10.6895473,UBERON:0001818,http://purl.obolibrary.org/obo/UBERON_0001818,tarsal gland +10.6895473,UBERON:0035032,http://purl.obolibrary.org/obo/UBERON_0035032,abdominal oblique muscle +10.6914502,DRUGBANK:DB03313,http://purl.obolibrary.org/obo/DRUGBANK_DB03313,none +10.6914502,GO:0016137,http://purl.obolibrary.org/obo/GO_0016137,glycoside metabolic process +10.6914502,GO:0042475,http://purl.obolibrary.org/obo/GO_0042475,odontogenesis of dentin-containing tooth +10.6914502,MONDO:0019372,http://purl.obolibrary.org/obo/MONDO_0019372,solitary bone cyst +10.6914502,MONDO:0020635,http://purl.obolibrary.org/obo/MONDO_0020635,anaplastic meningioma +10.6914502,NCBITaxon:41827,http://purl.obolibrary.org/obo/NCBITaxon_41827,Culicoidea +10.6914502,PR:000015965,http://purl.obolibrary.org/obo/PR_000015965,none +10.6914502,PR:000017108,http://purl.obolibrary.org/obo/PR_000017108,regulator of nonsense transcripts 1 +10.6914502,PR:000017137,http://purl.obolibrary.org/obo/PR_000017137,upstream stimulatory factor 1 +10.6914502,PR:O42400,http://purl.obolibrary.org/obo/PR_O42400,none +10.6914502,PR:O70373,http://purl.obolibrary.org/obo/PR_O70373,none +10.6914502,PR:Q9CAT6,http://purl.obolibrary.org/obo/PR_Q9CAT6,none +10.6914502,UBERON:0008776,http://purl.obolibrary.org/obo/UBERON_0008776,inner cell mass derived hypoblast +10.6933568,DRUGBANK:DB02145,http://purl.obolibrary.org/obo/DRUGBANK_DB02145,none +10.6933568,GO:0009092,http://purl.obolibrary.org/obo/GO_0009092,homoserine metabolic process +10.6933568,GO:0019724,http://purl.obolibrary.org/obo/GO_0019724,B cell mediated immunity +10.6933568,GO:0042577,http://purl.obolibrary.org/obo/GO_0042577,lipid phosphatase activity +10.6933568,GO:0046434,http://purl.obolibrary.org/obo/GO_0046434,organophosphate catabolic process +10.6933568,MONDO:0001501,http://purl.obolibrary.org/obo/MONDO_0001501,retroperitoneal sarcoma +10.6933568,MONDO:0002809,http://purl.obolibrary.org/obo/MONDO_0002809,pancreatic cystadenoma +10.6933568,MONDO:0002882,http://purl.obolibrary.org/obo/MONDO_0002882,colon neuroendocrine neoplasm +10.6933568,MONDO:0015398,http://purl.obolibrary.org/obo/MONDO_0015398,hemifacial microsomia +10.6933568,MONDO:0016721,http://purl.obolibrary.org/obo/MONDO_0016721,pineal tumor of neuroepithelial tissue +10.6933568,MONDO:0019383,http://purl.obolibrary.org/obo/MONDO_0019383,acute disseminated encephalomyelitis +10.6933568,MONDO:0019473,http://purl.obolibrary.org/obo/MONDO_0019473,enteropathy-associated T-cell lymphoma +10.6933568,MONDO:0019479,http://purl.obolibrary.org/obo/MONDO_0019479,histiocytic sarcoma +10.6933568,MONDO:0020081,http://purl.obolibrary.org/obo/MONDO_0020081,macrophage or histiocytic tumor +10.6933568,PR:000014439,http://purl.obolibrary.org/obo/PR_000014439,Sal-like protein 4 +10.6933568,PR:000028876,http://purl.obolibrary.org/obo/PR_000028876,none +10.6933568,PR:Q99L02,http://purl.obolibrary.org/obo/PR_Q99L02,none +10.695267,CL:1000274,http://purl.obolibrary.org/obo/CL_1000274,trophectodermal cell +10.695267,DRUGBANK:DB00507,http://purl.obolibrary.org/obo/DRUGBANK_DB00507,none +10.695267,GO:0044295,http://purl.obolibrary.org/obo/GO_0044295,axonal growth cone +10.695267,MONDO:0000764,http://purl.obolibrary.org/obo/MONDO_0000764,epithelial-stromal TGFBI dystrophy +10.695267,MONDO:0017024,http://purl.obolibrary.org/obo/MONDO_0017024,secondary interstitial lung disease specific to childhood associated with a metabolic disease +10.695267,MONDO:0017879,http://purl.obolibrary.org/obo/MONDO_0017879,hantavirus pulmonary syndrome +10.695267,MONDO:0019962,http://purl.obolibrary.org/obo/MONDO_0019962,thyroid lymphoma +10.695267,MONDO:0022742,http://purl.obolibrary.org/obo/MONDO_0022742,occupational asthma +10.695267,PR:000006947,http://purl.obolibrary.org/obo/PR_000006947,peroxisomal bifunctional enzyme +10.695267,PR:000009168,http://purl.obolibrary.org/obo/PR_000009168,influenza virus NS1A-binding protein +10.695267,PR:P30183,http://purl.obolibrary.org/obo/PR_P30183,none +10.695267,PR:Q5ZL57,http://purl.obolibrary.org/obo/PR_Q5ZL57,none +10.695267,UBERON:0003351,http://purl.obolibrary.org/obo/UBERON_0003351,pharyngeal epithelium +10.6971809,GO:0004418,http://purl.obolibrary.org/obo/GO_0004418,hydroxymethylbilane synthase activity +10.6971809,GO:0019852,http://purl.obolibrary.org/obo/GO_0019852,L-ascorbic acid metabolic process +10.6971809,GO:0070528,http://purl.obolibrary.org/obo/GO_0070528,protein kinase C signaling +10.6971809,MONDO:0002043,http://purl.obolibrary.org/obo/MONDO_0002043,ectropion +10.6971809,PR:000010316,http://purl.obolibrary.org/obo/PR_000010316,homeobox protein Meis1 +10.6971809,PR:000010549,http://purl.obolibrary.org/obo/PR_000010549,myosin phosphatase Rho-interacting protein +10.6971809,PR:000016871,http://purl.obolibrary.org/obo/PR_000016871,"thioredoxin reductase 1, cytoplasmic" +10.6971809,PR:P08646,http://purl.obolibrary.org/obo/PR_P08646,none +10.6990984,CHEBI:35780,http://purl.obolibrary.org/obo/CHEBI_35780,phosphate ion +10.6990984,GO:0046850,http://purl.obolibrary.org/obo/GO_0046850,regulation of bone remodeling +10.6990984,GO:0072497,http://purl.obolibrary.org/obo/GO_0072497,mesenchymal stem cell differentiation +10.6990984,MONDO:0011271,http://purl.obolibrary.org/obo/MONDO_0011271,rigid spine muscular dystrophy 1 +10.6990984,NCBITaxon:7237,http://purl.obolibrary.org/obo/NCBITaxon_7237,none +10.6990984,PR:000010120,http://purl.obolibrary.org/obo/PR_000010120,microtubule-associated proteins 1A/1B light chain 3B +10.6990984,PR:000015430,http://purl.obolibrary.org/obo/PR_000015430,transcription factor SOX-4 +10.6990984,PR:000017083,http://purl.obolibrary.org/obo/PR_000017083,uridine 5'-monophosphate synthase +10.6990984,PR:000029927,http://purl.obolibrary.org/obo/PR_000029927,none +10.6990984,UBERON:0003693,http://purl.obolibrary.org/obo/UBERON_0003693,retroperitoneal space +10.6990984,UBERON:0022352,http://purl.obolibrary.org/obo/UBERON_0022352,medial orbital frontal cortex +10.7010197,GO:0098799,http://purl.obolibrary.org/obo/GO_0098799,outer mitochondrial membrane protein complex +10.7010197,MONDO:0002040,http://purl.obolibrary.org/obo/MONDO_0002040,dermatomycosis +10.7010197,MONDO:0017572,http://purl.obolibrary.org/obo/MONDO_0017572,tick-borne encephalitis +10.7010197,MONDO:0044688,http://purl.obolibrary.org/obo/MONDO_0044688,isolated optic neuritis +10.7010197,PR:000000711,http://purl.obolibrary.org/obo/PR_000000711,shaw-related voltage-gated potassium channel alpha subunit +10.7010197,PR:000003316,http://purl.obolibrary.org/obo/PR_000003316,syntaxin-binding protein +10.7010197,PR:000004273,http://purl.obolibrary.org/obo/PR_000004273,ADP-ribosylation factor-like protein 1 +10.7010197,UBERON:0006929,http://purl.obolibrary.org/obo/UBERON_0006929,glandular columnar epithelium +10.7010197,UBERON:0008982,http://purl.obolibrary.org/obo/UBERON_0008982,fascia +10.7029446,CHEBI:5386,http://purl.obolibrary.org/obo/CHEBI_5386,globin +10.7029446,GO:0001692,http://purl.obolibrary.org/obo/GO_0001692,histamine metabolic process +10.7029446,GO:0019137,http://purl.obolibrary.org/obo/GO_0019137,thioglucosidase activity +10.7029446,GO:0019346,http://purl.obolibrary.org/obo/GO_0019346,transsulfuration +10.7029446,MONDO:0000986,http://purl.obolibrary.org/obo/MONDO_0000986,pleurisy +10.7029446,MONDO:0001168,http://purl.obolibrary.org/obo/MONDO_0001168,spastic hemiplegia +10.7029446,PR:000003481,http://purl.obolibrary.org/obo/PR_000003481,granzyme M +10.7029446,PR:000014745,http://purl.obolibrary.org/obo/PR_000014745,secreted frizzled-related protein 2 +10.7029446,UBERON:0007589,http://purl.obolibrary.org/obo/UBERON_0007589,ciliated columnar oviduct epithelium +10.7029446,UBERON:0012276,http://purl.obolibrary.org/obo/UBERON_0012276,endometrium glandular epithelium +10.7048732,CHEBI:78840,http://purl.obolibrary.org/obo/CHEBI_78840,olefinic compound +10.7048732,CL:0000052,http://purl.obolibrary.org/obo/CL_0000052,totipotent stem cell +10.7048732,DRUGBANK:DB13480,http://purl.obolibrary.org/obo/DRUGBANK_DB13480,none +10.7048732,DRUGBANK:DB15842,http://purl.obolibrary.org/obo/DRUGBANK_DB15842,none +10.7048732,GO:0004983,http://purl.obolibrary.org/obo/GO_0004983,neuropeptide Y receptor activity +10.7048732,GO:0008379,http://purl.obolibrary.org/obo/GO_0008379,thioredoxin peroxidase activity +10.7048732,GO:0051183,http://purl.obolibrary.org/obo/GO_0051183,none +10.7048732,HP:0011376,http://purl.obolibrary.org/obo/HP_0011376,Morphological abnormality of the vestibule of the inner ear +10.7048732,MONDO:0018830,http://purl.obolibrary.org/obo/MONDO_0018830,Kimura disease +10.7048732,MONDO:0020460,http://purl.obolibrary.org/obo/MONDO_0020460,acquired von willebrand syndrome +10.7048732,NCBITaxon:7157,http://purl.obolibrary.org/obo/NCBITaxon_7157,Culicidae +10.7048732,UBERON:0001765,http://purl.obolibrary.org/obo/UBERON_0001765,mammary duct +10.7068056,CL:0002521,http://purl.obolibrary.org/obo/CL_0002521,subcutaneous fat cell +10.7068056,DRUGBANK:DB01656,http://purl.obolibrary.org/obo/DRUGBANK_DB01656,none +10.7068056,DRUGBANK:DB14517,http://purl.obolibrary.org/obo/DRUGBANK_DB14517,none +10.7068056,GO:0033865,http://purl.obolibrary.org/obo/GO_0033865,nucleoside bisphosphate metabolic process +10.7068056,GO:0033875,http://purl.obolibrary.org/obo/GO_0033875,ribonucleoside bisphosphate metabolic process +10.7068056,GO:0034032,http://purl.obolibrary.org/obo/GO_0034032,purine nucleoside bisphosphate metabolic process +10.7068056,HP:0001397,http://purl.obolibrary.org/obo/HP_0001397,Hepatic steatosis +10.7068056,HP:0006561,http://purl.obolibrary.org/obo/HP_0006561,Lipid accumulation in hepatocytes +10.7068056,HP:0031137,http://purl.obolibrary.org/obo/HP_0031137,Storage in hepatocytes +10.7068056,MONDO:0006105,http://purl.obolibrary.org/obo/MONDO_0006105,benign conjunctival neoplasm +10.7068056,MONDO:0018982,http://purl.obolibrary.org/obo/MONDO_0018982,Niemann-Pick disease type C +10.7068056,MONDO:0019463,http://purl.obolibrary.org/obo/MONDO_0019463,non-amyloid monoclonal immunoglobulin deposition disease +10.7068056,MONDO:0019794,http://purl.obolibrary.org/obo/MONDO_0019794,autosomal dominant cerebellar ataxia type IV +10.7068056,MONDO:0019927,http://purl.obolibrary.org/obo/MONDO_0019927,growth hormone-producing pituitary gland neoplasm +10.7068056,MONDO:0019976,http://purl.obolibrary.org/obo/MONDO_0019976,dementia pugilistica +10.7068056,PR:000009233,http://purl.obolibrary.org/obo/PR_000009233,transcription factor jun-B +10.7068056,PR:000013255,http://purl.obolibrary.org/obo/PR_000013255,protein arginine N-methyltransferase 5 +10.7068056,PR:P59120,http://purl.obolibrary.org/obo/PR_P59120,none +10.7068056,UBERON:0001477,http://purl.obolibrary.org/obo/UBERON_0001477,infraspinatus muscle +10.7068056,UBERON:0006958,http://purl.obolibrary.org/obo/UBERON_0006958,great vein of heart +10.7068056,UBERON:0009749,http://purl.obolibrary.org/obo/UBERON_0009749,limb mesenchyme +10.7068056,UBERON:3011045,http://purl.obolibrary.org/obo/UBERON_3011045,gasserian ganglion +10.7087417,CHEBI:38700,http://purl.obolibrary.org/obo/CHEBI_38700,organic sodium salt +10.7087417,CL:0000980,http://purl.obolibrary.org/obo/CL_0000980,plasmablast +10.7087417,CL:0002195,http://purl.obolibrary.org/obo/CL_0002195,hepatic stem cell +10.7087417,DRUGBANK:DB12131,http://purl.obolibrary.org/obo/DRUGBANK_DB12131,none +10.7087417,GO:0048839,http://purl.obolibrary.org/obo/GO_0048839,inner ear development +10.7087417,GO:0072584,http://purl.obolibrary.org/obo/GO_0072584,caveolin-mediated endocytosis +10.7087417,MONDO:0002345,http://purl.obolibrary.org/obo/MONDO_0002345,cervicitis +10.7087417,MONDO:0005753,http://purl.obolibrary.org/obo/MONDO_0005753,epiglottitis +10.7087417,MONDO:0006919,http://purl.obolibrary.org/obo/MONDO_0006919,potassium deficiency +10.7087417,MONDO:0019618,http://purl.obolibrary.org/obo/MONDO_0019618,Sheehan syndrome +10.7087417,MONDO:0019841,http://purl.obolibrary.org/obo/MONDO_0019841,pituitary hormone defiency from vascular origin +10.7087417,PR:000009884,http://purl.obolibrary.org/obo/PR_000009884,lysyl oxidase homolog 1 +10.7087417,UBERON:0001221,http://purl.obolibrary.org/obo/UBERON_0001221,transversus abdominis muscle +10.7087417,UBERON:0003861,http://purl.obolibrary.org/obo/UBERON_0003861,neural arch +10.7087417,UBERON:0008818,http://purl.obolibrary.org/obo/UBERON_0008818,superior mediastinum +10.7087417,UBERON:0010358,http://purl.obolibrary.org/obo/UBERON_0010358,arch of centrum of vertebra +10.7106816,CHEBI:50949,http://purl.obolibrary.org/obo/CHEBI_50949,serotonin uptake inhibitor +10.7106816,DRUGBANK:DB03066,http://purl.obolibrary.org/obo/DRUGBANK_DB03066,none +10.7106816,DRUGBANK:DB03110,http://purl.obolibrary.org/obo/DRUGBANK_DB03110,none +10.7106816,DRUGBANK:DB03227,http://purl.obolibrary.org/obo/DRUGBANK_DB03227,none +10.7106816,DRUGBANK:DB09121,http://purl.obolibrary.org/obo/DRUGBANK_DB09121,none +10.7106816,GO:0002244,http://purl.obolibrary.org/obo/GO_0002244,hematopoietic progenitor cell differentiation +10.7106816,GO:0007052,http://purl.obolibrary.org/obo/GO_0007052,mitotic spindle organization +10.7106816,GO:0009070,http://purl.obolibrary.org/obo/GO_0009070,serine family amino acid biosynthetic process +10.7106816,GO:0016064,http://purl.obolibrary.org/obo/GO_0016064,immunoglobulin mediated immune response +10.7106816,GO:0097306,http://purl.obolibrary.org/obo/GO_0097306,cellular response to alcohol +10.7106816,HP:0011390,http://purl.obolibrary.org/obo/HP_0011390,Morphological abnormality of the inner ear +10.7106816,MONDO:0002017,http://purl.obolibrary.org/obo/MONDO_0002017,olivopontocerebellar atrophy +10.7106816,MONDO:0011758,http://purl.obolibrary.org/obo/MONDO_0011758,Hurler syndrome +10.7106816,NCBITaxon:2037,http://purl.obolibrary.org/obo/NCBITaxon_2037,Actinomycetales +10.7106816,PR:000001285,http://purl.obolibrary.org/obo/PR_000001285,B-cell antigen receptor complex-associated protein alpha chain +10.7106816,PR:000010822,http://purl.obolibrary.org/obo/PR_000010822,myosin-11 +10.7106816,PR:Q94FL6,http://purl.obolibrary.org/obo/PR_Q94FL6,none +10.7106816,UBERON:0007213,http://purl.obolibrary.org/obo/UBERON_0007213,mesenchyme derived from head neural crest +10.7126252,CHEBI:64176,http://purl.obolibrary.org/obo/CHEBI_64176,H3-receptor antagonist +10.7126252,DRUGBANK:DB06804,http://purl.obolibrary.org/obo/DRUGBANK_DB06804,none +10.7126252,GO:0032623,http://purl.obolibrary.org/obo/GO_0032623,interleukin-2 production +10.7126252,GO:0098876,http://purl.obolibrary.org/obo/GO_0098876,vesicle-mediated transport to the plasma membrane +10.7126252,MONDO:0009563,http://purl.obolibrary.org/obo/MONDO_0009563,maple syrup urine disease +10.7126252,MONDO:0017104,http://purl.obolibrary.org/obo/MONDO_0017104,central nervous system cystic malformation +10.7126252,NCBITaxon:6545,http://purl.obolibrary.org/obo/NCBITaxon_6545,none +10.7126252,NCBITaxon:7244,http://purl.obolibrary.org/obo/NCBITaxon_7244,Drosophila virilis +10.7126252,NCBITaxon:91061,http://purl.obolibrary.org/obo/NCBITaxon_91061,Bacilli +10.7126252,PR:000007753,http://purl.obolibrary.org/obo/PR_000007753,GRB2-associated-binding protein 1 +10.7126252,PR:000010671,http://purl.obolibrary.org/obo/PR_000010671,RNA-binding protein Musashi homolog 1 +10.7126252,PR:000016570,http://purl.obolibrary.org/obo/PR_000016570,two pore calcium channel protein 1 +10.7126252,PR:000024150,http://purl.obolibrary.org/obo/PR_000024150,none +10.7126252,PR:000025021,http://purl.obolibrary.org/obo/PR_000025021,none +10.7145726,GO:0007629,http://purl.obolibrary.org/obo/GO_0007629,flight behavior +10.7145726,GO:0009073,http://purl.obolibrary.org/obo/GO_0009073,aromatic amino acid family biosynthetic process +10.7145726,MONDO:0001103,http://purl.obolibrary.org/obo/MONDO_0001103,giardiasis +10.7145726,MONDO:0003947,http://purl.obolibrary.org/obo/MONDO_0003947,hyper-IgM syndrome +10.7145726,MONDO:0007145,http://purl.obolibrary.org/obo/MONDO_0007145,aplasia cutis congenita +10.7145726,MONDO:0016127,http://purl.obolibrary.org/obo/MONDO_0016127,bacterial myositis +10.7145726,MONDO:0019124,http://purl.obolibrary.org/obo/MONDO_0019124,microscopic polyangiitis +10.7145726,MONDO:0024304,http://purl.obolibrary.org/obo/MONDO_0024304,ichthyosis vulgaris +10.7145726,MONDO:0100028,http://purl.obolibrary.org/obo/MONDO_0100028,immune epilepsy +10.7145726,PR:000001848,http://purl.obolibrary.org/obo/PR_000001848,butyrophilin +10.7145726,PR:000005421,http://purl.obolibrary.org/obo/PR_000005421,chromogranin-A +10.7145726,PR:000008007,http://purl.obolibrary.org/obo/PR_000008007,gap junction delta-2 protein +10.7145726,PR:000008623,http://purl.obolibrary.org/obo/PR_000008623,porphobilinogen deaminase +10.7145726,PR:000012190,http://purl.obolibrary.org/obo/PR_000012190,P2X purinoceptor 3 +10.7145726,PR:Q8VYU8,http://purl.obolibrary.org/obo/PR_Q8VYU8,none +10.7145726,PR:Q90YX4,http://purl.obolibrary.org/obo/PR_Q90YX4,none +10.7145726,SO:0000426,http://purl.obolibrary.org/obo/SO_0000426,three_prime_LTR +10.7145726,UBERON:0002533,http://purl.obolibrary.org/obo/UBERON_0002533,post-anal tail bud +10.7165238,CHEBI:48561,http://purl.obolibrary.org/obo/CHEBI_48561,dopaminergic antagonist +10.7165238,CHEBI:64584,http://purl.obolibrary.org/obo/CHEBI_64584,uremic toxin +10.7165238,DRUGBANK:DB04864,http://purl.obolibrary.org/obo/DRUGBANK_DB04864,none +10.7165238,DRUGBANK:DB08828,http://purl.obolibrary.org/obo/DRUGBANK_DB08828,none +10.7165238,DRUGBANK:DB09401,http://purl.obolibrary.org/obo/DRUGBANK_DB09401,none +10.7165238,DRUGBANK:DB14360,http://purl.obolibrary.org/obo/DRUGBANK_DB14360,none +10.7165238,GO:0004336,http://purl.obolibrary.org/obo/GO_0004336,galactosylceramidase activity +10.7165238,GO:0030908,http://purl.obolibrary.org/obo/GO_0030908,protein splicing +10.7165238,GO:0090493,http://purl.obolibrary.org/obo/GO_0090493,catecholamine uptake +10.7165238,MONDO:0000948,http://purl.obolibrary.org/obo/MONDO_0000948,xerophthalmia +10.7165238,PR:000005376,http://purl.obolibrary.org/obo/PR_000005376,complement factor D +10.7165238,PR:000006848,http://purl.obolibrary.org/obo/PR_000006848,none +10.7165238,PR:000010194,http://purl.obolibrary.org/obo/PR_000010194,mannan-binding lectin serine protease 2 +10.7165238,PR:000016695,http://purl.obolibrary.org/obo/PR_000016695,short transient receptor potential channel 5 +10.7165238,PR:000050154,http://purl.obolibrary.org/obo/PR_000050154,eukaryotic inorganic pyrophosphatase +10.7184789,CHEBI:73913,http://purl.obolibrary.org/obo/CHEBI_73913,antifolate +10.7184789,DRUGBANK:DB00556,http://purl.obolibrary.org/obo/DRUGBANK_DB00556,none +10.7184789,DRUGBANK:DB02083,http://purl.obolibrary.org/obo/DRUGBANK_DB02083,none +10.7184789,DRUGBANK:DB02397,http://purl.obolibrary.org/obo/DRUGBANK_DB02397,none +10.7184789,DRUGBANK:DB09289,http://purl.obolibrary.org/obo/DRUGBANK_DB09289,none +10.7184789,DRUGBANK:DB13234,http://purl.obolibrary.org/obo/DRUGBANK_DB13234,none +10.7184789,GO:0004072,http://purl.obolibrary.org/obo/GO_0004072,aspartate kinase activity +10.7184789,GO:0009039,http://purl.obolibrary.org/obo/GO_0009039,urease activity +10.7184789,GO:0042136,http://purl.obolibrary.org/obo/GO_0042136,neurotransmitter biosynthetic process +10.7184789,GO:1903416,http://purl.obolibrary.org/obo/GO_1903416,response to glycoside +10.7184789,PR:000001462,http://purl.obolibrary.org/obo/PR_000001462,glycophorin-C +10.7184789,PR:000001751,http://purl.obolibrary.org/obo/PR_000001751,Toll/interleukin-1 receptor domain-containing adapter protein +10.7184789,PR:000005902,http://purl.obolibrary.org/obo/PR_000005902,CREB-regulated transcription coactivator 2 +10.7184789,PR:000013869,http://purl.obolibrary.org/obo/PR_000013869,lithostathine-1-alpha +10.7184789,PR:000014391,http://purl.obolibrary.org/obo/PR_000014391,none +10.7184789,PR:000017300,http://purl.obolibrary.org/obo/PR_000017300,vasoactive intestinal polypeptide receptor 1 +10.7184789,PR:Q8VYM2,http://purl.obolibrary.org/obo/PR_Q8VYM2,none +10.7204377,CHEBI:24852,http://purl.obolibrary.org/obo/CHEBI_24852,insecticide +10.7204377,DRUGBANK:DB12753,http://purl.obolibrary.org/obo/DRUGBANK_DB12753,none +10.7204377,DRUGBANK:DB13196,http://purl.obolibrary.org/obo/DRUGBANK_DB13196,none +10.7204377,DRUGBANK:DB14010,http://purl.obolibrary.org/obo/DRUGBANK_DB14010,none +10.7204377,DRUGBANK:DB15925,http://purl.obolibrary.org/obo/DRUGBANK_DB15925,none +10.7204377,GO:0022604,http://purl.obolibrary.org/obo/GO_0022604,regulation of cell morphogenesis +10.7204377,MONDO:0016315,http://purl.obolibrary.org/obo/MONDO_0016315,"mucopolysaccharidosis type 2, severe form" +10.7204377,PR:000009843,http://purl.obolibrary.org/obo/PR_000009843,lipopolysaccharide-induced tumor necrosis factor-alpha factor +10.7204377,PR:000012987,http://purl.obolibrary.org/obo/PR_000012987,DNA-directed RNA polymerase II subunit RPB1 +10.7204377,SO:0000126,http://purl.obolibrary.org/obo/SO_0000126,transcriptionally_repressed +10.7204377,SO:0000893,http://purl.obolibrary.org/obo/SO_0000893,silenced +10.7204377,UBERON:0002824,http://purl.obolibrary.org/obo/UBERON_0002824,vestibular ganglion +10.7224005,CHEBI:50904,http://purl.obolibrary.org/obo/CHEBI_50904,allergen +10.7224005,DRUGBANK:DB00315,http://purl.obolibrary.org/obo/DRUGBANK_DB00315,none +10.7224005,DRUGBANK:DB11373,http://purl.obolibrary.org/obo/DRUGBANK_DB11373,none +10.7224005,DRUGBANK:DB14186,http://purl.obolibrary.org/obo/DRUGBANK_DB14186,none +10.7224005,GO:0006714,http://purl.obolibrary.org/obo/GO_0006714,sesquiterpenoid metabolic process +10.7224005,GO:0006937,http://purl.obolibrary.org/obo/GO_0006937,regulation of muscle contraction +10.7224005,MONDO:0002998,http://purl.obolibrary.org/obo/MONDO_0002998,skull base meningioma +10.7224005,MONDO:0003075,http://purl.obolibrary.org/obo/MONDO_0003075,bilateral retinoblastoma +10.7224005,MONDO:0014791,http://purl.obolibrary.org/obo/MONDO_0014791,Luscan-Lumish syndrome +10.7224005,MONDO:0019462,http://purl.obolibrary.org/obo/MONDO_0019462,splenic marginal zone lymphoma +10.7224005,MONDO:0024617,http://purl.obolibrary.org/obo/MONDO_0024617,xanthogranuloma +10.7224005,PR:000001280,http://purl.obolibrary.org/obo/PR_000001280,disintegrin and metalloproteinase domain-containing protein 8 +10.7224005,PR:000005522,http://purl.obolibrary.org/obo/PR_000005522,galectin-10 +10.7224005,PR:000009779,http://purl.obolibrary.org/obo/PR_000009779,leucine-rich glioma-inactivated protein 1 +10.7224005,SO:0000107,http://purl.obolibrary.org/obo/SO_0000107,sequencing_primer +10.7224005,UBERON:0001094,http://purl.obolibrary.org/obo/UBERON_0001094,sacral vertebra +10.7224005,UBERON:0001576,http://purl.obolibrary.org/obo/UBERON_0001576,intrinsic muscle of tongue +10.724367,CL:0000119,http://purl.obolibrary.org/obo/CL_0000119,cerebellar Golgi cell +10.724367,DRUGBANK:DB09531,http://purl.obolibrary.org/obo/DRUGBANK_DB09531,none +10.724367,DRUGBANK:DB14880,http://purl.obolibrary.org/obo/DRUGBANK_DB14880,none +10.724367,GO:0060170,http://purl.obolibrary.org/obo/GO_0060170,ciliary membrane +10.724367,GO:0070541,http://purl.obolibrary.org/obo/GO_0070541,response to platinum ion +10.724367,HP:0002019,http://purl.obolibrary.org/obo/HP_0002019,Constipation +10.724367,MONDO:0010611,http://purl.obolibrary.org/obo/MONDO_0010611,X-linked hydrocephalus with stenosis of the aqueduct of Sylvius +10.724367,MONDO:0020161,http://purl.obolibrary.org/obo/MONDO_0020161,congenital ectropion +10.724367,PR:000011107,http://purl.obolibrary.org/obo/PR_000011107,nebulin +10.724367,PR:000012844,http://purl.obolibrary.org/obo/PR_000012844,phospholipase D2 +10.724367,PR:000015339,http://purl.obolibrary.org/obo/PR_000015339,U1 small nuclear ribonucleoprotein A +10.724367,UBERON:0002802,http://purl.obolibrary.org/obo/UBERON_0002802,left parietal lobe +10.724367,UBERON:0006843,http://purl.obolibrary.org/obo/UBERON_0006843,root of cranial nerve +10.724367,UBERON:0012071,http://purl.obolibrary.org/obo/UBERON_0012071,palate bone +10.7263375,DRUGBANK:DB00492,http://purl.obolibrary.org/obo/DRUGBANK_DB00492,none +10.7263375,DRUGBANK:DB01863,http://purl.obolibrary.org/obo/DRUGBANK_DB01863,none +10.7263375,DRUGBANK:DB03644,http://purl.obolibrary.org/obo/DRUGBANK_DB03644,none +10.7263375,DRUGBANK:DB08439,http://purl.obolibrary.org/obo/DRUGBANK_DB08439,none +10.7263375,GO:0031507,http://purl.obolibrary.org/obo/GO_0031507,heterochromatin assembly +10.7263375,GO:0046632,http://purl.obolibrary.org/obo/GO_0046632,alpha-beta T cell differentiation +10.7263375,GO:0071453,http://purl.obolibrary.org/obo/GO_0071453,cellular response to oxygen levels +10.7263375,MONDO:0004380,http://purl.obolibrary.org/obo/MONDO_0004380,dendritic cell sarcoma +10.7263375,MONDO:0023161,http://purl.obolibrary.org/obo/MONDO_0023161,viral myocarditis +10.7263375,PR:000006161,http://purl.obolibrary.org/obo/PR_000006161,none +10.7263375,PR:000006646,http://purl.obolibrary.org/obo/PR_000006646,dipeptidase 1 +10.7263375,PR:000009095,http://purl.obolibrary.org/obo/PR_000009095,Ras GTPase-activating-like protein IQGAP1 +10.7263375,PR:P17511,http://purl.obolibrary.org/obo/PR_P17511,none +10.7263375,PR:Q5A1N6,http://purl.obolibrary.org/obo/PR_Q5A1N6,none +10.7263375,UBERON:0001427,http://purl.obolibrary.org/obo/UBERON_0001427,radiale +10.7263375,UBERON:0001740,http://purl.obolibrary.org/obo/UBERON_0001740,arytenoid cartilage +10.7283118,CHEBI:50103,http://purl.obolibrary.org/obo/CHEBI_50103,excitatory amino acid agonist +10.7283118,CL:0000553,http://purl.obolibrary.org/obo/CL_0000553,megakaryocyte progenitor cell +10.7283118,DRUGBANK:DB13322,http://purl.obolibrary.org/obo/DRUGBANK_DB13322,none +10.7283118,GO:0006688,http://purl.obolibrary.org/obo/GO_0006688,glycosphingolipid biosynthetic process +10.7283118,GO:0016515,http://purl.obolibrary.org/obo/GO_0016515,interleukin-13 receptor activity +10.7283118,GO:0036294,http://purl.obolibrary.org/obo/GO_0036294,cellular response to decreased oxygen levels +10.7283118,MONDO:0002322,http://purl.obolibrary.org/obo/MONDO_0002322,angiodysplasia +10.7283118,MONDO:0004492,http://purl.obolibrary.org/obo/MONDO_0004492,mediastinitis +10.7283118,MONDO:0005832,http://purl.obolibrary.org/obo/MONDO_0005832,lymphangitis +10.7283118,PR:Q84JZ6,http://purl.obolibrary.org/obo/PR_Q84JZ6,none +10.7283118,PR:Q9NFU0,http://purl.obolibrary.org/obo/PR_Q9NFU0,none +10.7283118,PR:Q9Y0C9,http://purl.obolibrary.org/obo/PR_Q9Y0C9,none +10.7283118,UBERON:0014907,http://purl.obolibrary.org/obo/UBERON_0014907,intersomitic vessel +10.73029,DRUGBANK:DB04571,http://purl.obolibrary.org/obo/DRUGBANK_DB04571,none +10.73029,DRUGBANK:DB15990,http://purl.obolibrary.org/obo/DRUGBANK_DB15990,none +10.73029,GO:0004946,http://purl.obolibrary.org/obo/GO_0004946,bombesin receptor activity +10.73029,GO:0016517,http://purl.obolibrary.org/obo/GO_0016517,interleukin-12 receptor activity +10.73029,GO:0048538,http://purl.obolibrary.org/obo/GO_0048538,thymus development +10.73029,GO:0070828,http://purl.obolibrary.org/obo/GO_0070828,heterochromatin organization +10.73029,MONDO:0007018,http://purl.obolibrary.org/obo/MONDO_0007018,vulvitis +10.73029,MONDO:0015987,http://purl.obolibrary.org/obo/MONDO_0015987,scimitar syndrome +10.73029,MONDO:0019637,http://purl.obolibrary.org/obo/MONDO_0019637,renal hypoplasia +10.73029,PR:000005657,http://purl.obolibrary.org/obo/PR_000005657,"2',3'-cyclic-nucleotide 3'-phosphodiesterase" +10.73029,PR:000005758,http://purl.obolibrary.org/obo/PR_000005758,atrial natriuretic peptide-converting enzyme +10.73029,PR:000009863,http://purl.obolibrary.org/obo/PR_000009863,rhombotin-2 +10.73029,PR:000010252,http://purl.obolibrary.org/obo/PR_000010252,mucolipin-1 +10.73029,PR:000011357,http://purl.obolibrary.org/obo/PR_000011357,NPC intracellular cholesterol transporter 2 +10.73029,PR:000012672,http://purl.obolibrary.org/obo/PR_000012672,paired mesoderm homeobox protein 2B +10.73029,PR:000023696,http://purl.obolibrary.org/obo/PR_000023696,none +10.73029,PR:P40581,http://purl.obolibrary.org/obo/PR_P40581,none +10.73029,SO:0001837,http://purl.obolibrary.org/obo/SO_0001837,mobile_element_insertion +10.73029,UBERON:0004886,http://purl.obolibrary.org/obo/UBERON_0004886,lung hilus +10.73029,UBERON:0005056,http://purl.obolibrary.org/obo/UBERON_0005056,external female genitalia +10.73029,UBERON:2001463,http://purl.obolibrary.org/obo/UBERON_2001463,melanophore stripe +10.7322722,CHEBI:33260,http://purl.obolibrary.org/obo/CHEBI_33260,elemental hydrogen +10.7322722,DRUGBANK:DB09201,http://purl.obolibrary.org/obo/DRUGBANK_DB09201,none +10.7322722,DRUGBANK:DB10979,http://purl.obolibrary.org/obo/DRUGBANK_DB10979,none +10.7322722,GO:0008613,http://purl.obolibrary.org/obo/GO_0008613,diuretic hormone activity +10.7322722,GO:0034694,http://purl.obolibrary.org/obo/GO_0034694,response to prostaglandin +10.7322722,GO:0042176,http://purl.obolibrary.org/obo/GO_0042176,regulation of protein catabolic process +10.7322722,GO:0060259,http://purl.obolibrary.org/obo/GO_0060259,regulation of feeding behavior +10.7322722,HP:0004360,http://purl.obolibrary.org/obo/HP_0004360,Abnormality of acid-base homeostasis +10.7322722,HP:0012874,http://purl.obolibrary.org/obo/HP_0012874,Abnormal male reproductive system physiology +10.7322722,MONDO:0003077,http://purl.obolibrary.org/obo/MONDO_0003077,intraocular retinoblastoma +10.7322722,PR:000005742,http://purl.obolibrary.org/obo/PR_000005742,COP9 signalosome complex subunit 5 +10.7322722,PR:000008688,http://purl.obolibrary.org/obo/PR_000008688,homeobox protein Hox-A11 +10.7342583,GO:0007399,http://purl.obolibrary.org/obo/GO_0007399,nervous system development +10.7342583,GO:0070365,http://purl.obolibrary.org/obo/GO_0070365,hepatocyte differentiation +10.7342583,MONDO:0001159,http://purl.obolibrary.org/obo/MONDO_0001159,multiple personality disorder +10.7342583,MONDO:0002184,http://purl.obolibrary.org/obo/MONDO_0002184,drug-induced hepatitis +10.7342583,MONDO:0008692,http://purl.obolibrary.org/obo/MONDO_0008692,abetalipoproteinemia +10.7342583,MONDO:0016030,http://purl.obolibrary.org/obo/MONDO_0016030,Evans syndrome +10.7342583,PR:000003843,http://purl.obolibrary.org/obo/PR_000003843,anterior gradient protein 2 +10.7342583,PR:000010819,http://purl.obolibrary.org/obo/PR_000010819,myogenic factor 6 +10.7342583,PR:000014800,http://purl.obolibrary.org/obo/PR_000014800,sphingosine-1-phosphate lyase 1 +10.7342583,PR:Q9FN69,http://purl.obolibrary.org/obo/PR_Q9FN69,none +10.7342583,UBERON:0007567,http://purl.obolibrary.org/obo/UBERON_0007567,regenerating anatomical structure +10.7362483,DRUGBANK:DB12300,http://purl.obolibrary.org/obo/DRUGBANK_DB12300,none +10.7362483,GO:0008385,http://purl.obolibrary.org/obo/GO_0008385,IkappaB kinase complex +10.7362483,MONDO:0000983,http://purl.obolibrary.org/obo/MONDO_0000983,exhibitionism +10.7362483,MONDO:0001314,http://purl.obolibrary.org/obo/MONDO_0001314,chondrocalcinosis +10.7362483,MONDO:0003876,http://purl.obolibrary.org/obo/MONDO_0003876,eyelid carcinoma +10.7362483,MONDO:0015067,http://purl.obolibrary.org/obo/MONDO_0015067,"neuroendocrine tumor of the colon, well differentiated, low or intermediate grade tumor" +10.7362483,PR:000001020,http://purl.obolibrary.org/obo/PR_000001020,CD3 epsilon +10.7362483,PR:000001145,http://purl.obolibrary.org/obo/PR_000001145,melanin-concentrating hormone receptor 2 +10.7362483,PR:000010369,http://purl.obolibrary.org/obo/PR_000010369,mitofusin-1 +10.7362483,SO:0001243,http://purl.obolibrary.org/obo/SO_0001243,miRNA_primary_transcript_region +10.7362483,UBERON:0008281,http://purl.obolibrary.org/obo/UBERON_0008281,tooth bud +10.7362483,UBERON:0009551,http://purl.obolibrary.org/obo/UBERON_0009551,distal segment of digit +10.7382424,CHEBI:55350,http://purl.obolibrary.org/obo/CHEBI_55350,neurokinin-1 receptor antagonist +10.7382424,CL:0000394,http://purl.obolibrary.org/obo/CL_0000394,plasmatocyte +10.7382424,DRUGBANK:DB00561,http://purl.obolibrary.org/obo/DRUGBANK_DB00561,none +10.7382424,DRUGBANK:DB10419,http://purl.obolibrary.org/obo/DRUGBANK_DB10419,none +10.7382424,DRUGBANK:DB11056,http://purl.obolibrary.org/obo/DRUGBANK_DB11056,none +10.7382424,GO:0019401,http://purl.obolibrary.org/obo/GO_0019401,alditol biosynthetic process +10.7382424,HP:0001260,http://purl.obolibrary.org/obo/HP_0001260,Dysarthria +10.7382424,MONDO:0021370,http://purl.obolibrary.org/obo/MONDO_0021370,neoplasm of minor salivary gland +10.7382424,NCBITaxon:2172819,http://purl.obolibrary.org/obo/NCBITaxon_2172819,none +10.7382424,PR:000000010,http://purl.obolibrary.org/obo/PR_000000010,chordin +10.7382424,PR:000027622,http://purl.obolibrary.org/obo/PR_000027622,none +10.7382424,PR:000029766,http://purl.obolibrary.org/obo/PR_000029766,"sushi, nidogen and EGF-like domain-containing protein 1" +10.7382424,UBERON:0000313,http://purl.obolibrary.org/obo/UBERON_0000313,portion of cartilage tissue in tibia +10.7382424,UBERON:0007389,http://purl.obolibrary.org/obo/UBERON_0007389,paired limb/fin cartilage +10.7382424,UBERON:0007391,http://purl.obolibrary.org/obo/UBERON_0007391,pelvic appendage cartilage tissue +10.7402404,CHEBI:51307,http://purl.obolibrary.org/obo/CHEBI_51307,diester +10.7402404,DRUGBANK:DB08879,http://purl.obolibrary.org/obo/DRUGBANK_DB08879,none +10.7402404,DRUGBANK:DB11467,http://purl.obolibrary.org/obo/DRUGBANK_DB11467,none +10.7402404,MONDO:0003649,http://purl.obolibrary.org/obo/MONDO_0003649,esophageal neuroendocrine tumor +10.7402404,PR:000012850,http://purl.obolibrary.org/obo/PR_000012850,plectin-1 +10.7402404,PR:000044667,http://purl.obolibrary.org/obo/PR_000044667,IP(3) receptor +10.7402404,PR:Q9SSQ9,http://purl.obolibrary.org/obo/PR_Q9SSQ9,none +10.7402404,UBERON:0006553,http://purl.obolibrary.org/obo/UBERON_0006553,renal duct +10.7402404,UBERON:0013694,http://purl.obolibrary.org/obo/UBERON_0013694,brain endothelium +10.7402404,UBERON:0015010,http://purl.obolibrary.org/obo/UBERON_0015010,sacral vertebra endochondral element +10.7422424,DRUGBANK:DB10805,http://purl.obolibrary.org/obo/DRUGBANK_DB10805,none +10.7422424,GO:0047280,http://purl.obolibrary.org/obo/GO_0047280,nicotinamide phosphoribosyltransferase activity +10.7422424,MONDO:0005706,http://purl.obolibrary.org/obo/MONDO_0005706,coccidioidomycosis +10.7422424,MONDO:0008965,http://purl.obolibrary.org/obo/MONDO_0008965,CHARGE syndrome +10.7422424,MONDO:0021257,http://purl.obolibrary.org/obo/MONDO_0021257,glomus jugulare neoplasm +10.7422424,NCBITaxon:10794,http://purl.obolibrary.org/obo/NCBITaxon_10794,none +10.7422424,PR:000003573,http://purl.obolibrary.org/obo/PR_000003573,ATP-binding cassette sub-family G member 8 +10.7422424,PR:000008119,http://purl.obolibrary.org/obo/PR_000008119,granulysin +10.7422424,PR:000008235,http://purl.obolibrary.org/obo/PR_000008235,glutamate receptor 3 +10.7422424,PR:000012188,http://purl.obolibrary.org/obo/PR_000012188,P2X purinoceptor 1 +10.7422424,PR:000017467,http://purl.obolibrary.org/obo/PR_000017467,none +10.7422424,PR:000029953,http://purl.obolibrary.org/obo/PR_000029953,microsomal glutathione S-transferase +10.7442484,DRUGBANK:DB02779,http://purl.obolibrary.org/obo/DRUGBANK_DB02779,none +10.7442484,DRUGBANK:DB06718,http://purl.obolibrary.org/obo/DRUGBANK_DB06718,none +10.7442484,DRUGBANK:DB14476,http://purl.obolibrary.org/obo/DRUGBANK_DB14476,none +10.7442484,GO:0014829,http://purl.obolibrary.org/obo/GO_0014829,vascular associated smooth muscle contraction +10.7442484,GO:0015923,http://purl.obolibrary.org/obo/GO_0015923,mannosidase activity +10.7442484,GO:0043111,http://purl.obolibrary.org/obo/GO_0043111,replication fork arrest +10.7442484,GO:0071456,http://purl.obolibrary.org/obo/GO_0071456,cellular response to hypoxia +10.7442484,HP:0000668,http://purl.obolibrary.org/obo/HP_0000668,Hypodontia +10.7442484,HP:0006483,http://purl.obolibrary.org/obo/HP_0006483,Abnormal number of teeth +10.7442484,HP:0009804,http://purl.obolibrary.org/obo/HP_0009804,Tooth agenesis +10.7442484,HP:0032245,http://purl.obolibrary.org/obo/HP_0032245,Abnormal metabolism +10.7442484,MONDO:0002258,http://purl.obolibrary.org/obo/MONDO_0002258,pharyngitis +10.7442484,MONDO:0005673,http://purl.obolibrary.org/obo/MONDO_0005673,blind loop syndrome +10.7442484,MONDO:0020070,http://purl.obolibrary.org/obo/MONDO_0020070,neonatal epilepsy syndrome +10.7442484,MONDO:0021064,http://purl.obolibrary.org/obo/MONDO_0021064,jugulotympanic paraganglioma +10.7442484,MONDO:0043370,http://purl.obolibrary.org/obo/MONDO_0043370,secondary adrenal insufficiency +10.7442484,NCBITaxon:2172820,http://purl.obolibrary.org/obo/NCBITaxon_2172820,none +10.7442484,UBERON:0004027,http://purl.obolibrary.org/obo/UBERON_0004027,chorionic plate +10.7442484,UBERON:0011112,http://purl.obolibrary.org/obo/UBERON_0011112,tibiofibular joint +10.7462584,CL:0002350,http://purl.obolibrary.org/obo/CL_0002350,endocardial cell +10.7462584,DRUGBANK:DB11331,http://purl.obolibrary.org/obo/DRUGBANK_DB11331,none +10.7462584,DRUGBANK:DB13526,http://purl.obolibrary.org/obo/DRUGBANK_DB13526,none +10.7462584,GO:0032456,http://purl.obolibrary.org/obo/GO_0032456,endocytic recycling +10.7462584,GO:0062197,http://purl.obolibrary.org/obo/GO_0062197,cellular response to chemical stress +10.7462584,GO:1903493,http://purl.obolibrary.org/obo/GO_1903493,response to clopidogrel +10.7462584,NCBITaxon:12302,http://purl.obolibrary.org/obo/NCBITaxon_12302,none +10.7462584,NCBITaxon:2697496,http://purl.obolibrary.org/obo/NCBITaxon_2697496,none +10.7462584,PR:000003962,http://purl.obolibrary.org/obo/PR_000003962,arachidonate 5-lipoxygenase-activating protein +10.7462584,PR:000005870,http://purl.obolibrary.org/obo/PR_000005870,corticotropin-releasing factor receptor 2 +10.7462584,PR:000010707,http://purl.obolibrary.org/obo/PR_000010707,metastasis-associated protein MTA1 +10.7462584,PR:000035396,http://purl.obolibrary.org/obo/PR_000035396,none +10.7462584,SO:0000871,http://purl.obolibrary.org/obo/SO_0000871,polyadenylated_mRNA +10.7462584,UBERON:0003292,http://purl.obolibrary.org/obo/UBERON_0003292,meninx of spinal cord +10.7482725,DRUGBANK:DB02115,http://purl.obolibrary.org/obo/DRUGBANK_DB02115,none +10.7482725,DRUGBANK:DB06784,http://purl.obolibrary.org/obo/DRUGBANK_DB06784,none +10.7482725,GO:0006397,http://purl.obolibrary.org/obo/GO_0006397,mRNA processing +10.7482725,HP:0000834,http://purl.obolibrary.org/obo/HP_0000834,Abnormality of the adrenal glands +10.7482725,MONDO:0002694,http://purl.obolibrary.org/obo/MONDO_0002694,cavernous sinus thrombosis +10.7482725,MONDO:0009044,http://purl.obolibrary.org/obo/MONDO_0009044,Crigler-Najjar syndrome +10.7482725,MONDO:0016512,http://purl.obolibrary.org/obo/MONDO_0016512,Kabuki syndrome +10.7482725,MONDO:0018943,http://purl.obolibrary.org/obo/MONDO_0018943,myofibrillar myopathy +10.7482725,NCBITaxon:11809,http://purl.obolibrary.org/obo/NCBITaxon_11809,none +10.7482725,PR:000001668,http://purl.obolibrary.org/obo/PR_000001668,somatostatin receptor type 1 +10.7482725,PR:000007990,http://purl.obolibrary.org/obo/PR_000007990,ARF GTPase-activating protein GIT2 +10.7482725,PR:000008839,http://purl.obolibrary.org/obo/PR_000008839,"serine protease HTRA2, mitochondrial" +10.7482725,PR:000010282,http://purl.obolibrary.org/obo/PR_000010282,mediator of RNA polymerase II transcription subunit 12 +10.7482725,PR:000011208,http://purl.obolibrary.org/obo/PR_000011208,nidogen-1 +10.7482725,PR:Q09163,http://purl.obolibrary.org/obo/PR_Q09163,none +10.7482725,UBERON:0003577,http://purl.obolibrary.org/obo/UBERON_0003577,knee connective tissue +10.7502907,CHEBI:2571,http://purl.obolibrary.org/obo/CHEBI_2571,aliphatic alcohol +10.7502907,CHEBI:7577,http://purl.obolibrary.org/obo/CHEBI_7577,nisoldipine +10.7502907,DRUGBANK:DB13108,http://purl.obolibrary.org/obo/DRUGBANK_DB13108,none +10.7502907,GO:0005388,http://purl.obolibrary.org/obo/GO_0005388,P-type calcium transporter activity +10.7502907,GO:0016706,http://purl.obolibrary.org/obo/GO_0016706,2-oxoglutarate-dependent dioxygenase activity +10.7502907,GO:0035864,http://purl.obolibrary.org/obo/GO_0035864,response to potassium ion +10.7502907,GO:0070581,http://purl.obolibrary.org/obo/GO_0070581,rolling circle DNA replication +10.7502907,GO:0090482,http://purl.obolibrary.org/obo/GO_0090482,vitamin transmembrane transporter activity +10.7502907,HP:0002186,http://purl.obolibrary.org/obo/HP_0002186,Apraxia +10.7502907,MONDO:0006043,http://purl.obolibrary.org/obo/MONDO_0006043,metaplastic breast carcinoma +10.7502907,MONDO:0016145,http://purl.obolibrary.org/obo/MONDO_0016145,qualitative or quantitative defects of dysferlin +10.7502907,PR:000002068,http://purl.obolibrary.org/obo/PR_000002068,nectin-1 +10.7502907,PR:000009952,http://purl.obolibrary.org/obo/PR_000009952,perilipin-5 +10.7502907,PR:000011164,http://purl.obolibrary.org/obo/PR_000011164,"nuclear factor of activated T-cells, cytoplasmic 2" +10.7502907,PR:000012498,http://purl.obolibrary.org/obo/PR_000012498,protein disulfide-isomerase A3 +10.7502907,PR:000013942,http://purl.obolibrary.org/obo/PR_000013942,Rho guanine nucleotide exchange factor 28 +10.7502907,PR:Q12241,http://purl.obolibrary.org/obo/PR_Q12241,none +10.752313,DRUGBANK:DB00031,http://purl.obolibrary.org/obo/DRUGBANK_DB00031,none +10.752313,DRUGBANK:DB02252,http://purl.obolibrary.org/obo/DRUGBANK_DB02252,none +10.752313,DRUGBANK:DB04898,http://purl.obolibrary.org/obo/DRUGBANK_DB04898,none +10.752313,DRUGBANK:DB10976,http://purl.obolibrary.org/obo/DRUGBANK_DB10976,none +10.752313,GO:0015820,http://purl.obolibrary.org/obo/GO_0015820,leucine transport +10.752313,MONDO:0001606,http://purl.obolibrary.org/obo/MONDO_0001606,central nervous system leukemia +10.752313,MONDO:0008318,http://purl.obolibrary.org/obo/MONDO_0008318,Proteus syndrome +10.752313,MONDO:0016869,http://purl.obolibrary.org/obo/MONDO_0016869,partial deletion of chromosome 4 +10.752313,MONDO:0021366,http://purl.obolibrary.org/obo/MONDO_0021366,neoplasm of middle ear +10.752313,NCBITaxon:10229,http://purl.obolibrary.org/obo/NCBITaxon_10229,none +10.752313,NCBITaxon:11613,http://purl.obolibrary.org/obo/NCBITaxon_11613,none +10.752313,NCBITaxon:325454,http://purl.obolibrary.org/obo/NCBITaxon_325454,none +10.752313,PR:000004052,http://purl.obolibrary.org/obo/PR_000004052,ankyrin repeat and sterile alpha motif domain-containing protein 1B +10.752313,PR:000006530,http://purl.obolibrary.org/obo/PR_000006530,homeobox protein DLX-4 +10.752313,PR:000007659,http://purl.obolibrary.org/obo/PR_000007659,neuronal calcium sensor 1 +10.752313,PR:000014239,http://purl.obolibrary.org/obo/PR_000014239,60S acidic ribosomal protein P2 +10.752313,PR:000026125,http://purl.obolibrary.org/obo/PR_000026125,5-aminolevulinate synthase +10.752313,SO:0000436,http://purl.obolibrary.org/obo/SO_0000436,ARS +10.752313,UBERON:0005153,http://purl.obolibrary.org/obo/UBERON_0005153,epithelial bud +10.752313,UBERON:0016400,http://purl.obolibrary.org/obo/UBERON_0016400,infrapatellar fat pad +10.7543393,CHEBI:50745,http://purl.obolibrary.org/obo/CHEBI_50745,progestogen +10.7543393,DRUGBANK:DB00346,http://purl.obolibrary.org/obo/DRUGBANK_DB00346,none +10.7543393,DRUGBANK:DB09081,http://purl.obolibrary.org/obo/DRUGBANK_DB09081,none +10.7543393,GO:0009851,http://purl.obolibrary.org/obo/GO_0009851,auxin biosynthetic process +10.7543393,GO:0043277,http://purl.obolibrary.org/obo/GO_0043277,apoptotic cell clearance +10.7543393,MONDO:0019238,http://purl.obolibrary.org/obo/MONDO_0019238,inborn disorder of pyrimidine metabolism +10.7543393,MONDO:0019468,http://purl.obolibrary.org/obo/MONDO_0019468,T-cell prolymphocytic leukemia +10.7543393,MONDO:0037937,http://purl.obolibrary.org/obo/MONDO_0037937,pyrimidine metabolism disease +10.7543393,NCBITaxon:2017756,http://purl.obolibrary.org/obo/NCBITaxon_2017756,none +10.7543393,PR:000001478,http://purl.obolibrary.org/obo/PR_000001478,leukotriene B4 receptor +10.7543393,PR:000005814,http://purl.obolibrary.org/obo/PR_000005814,carboxypeptidase N catalytic chain +10.7543393,PR:000007702,http://purl.obolibrary.org/obo/PR_000007702,"galactoside alpha-(1,2)-fucosyltransferase 1" +10.7543393,PR:000011378,http://purl.obolibrary.org/obo/PR_000011378,atrial natriuretic peptide receptor 2 +10.7543393,PR:000012524,http://purl.obolibrary.org/obo/PR_000012524,pyridoxal kinase +10.7543393,PR:000013411,http://purl.obolibrary.org/obo/PR_000013411,polypyrimidine tract-binding protein 2 +10.7543393,PR:000017034,http://purl.obolibrary.org/obo/PR_000017034,urocortin-3 +10.7543393,PR:000022495,http://purl.obolibrary.org/obo/PR_000022495,none +10.7543393,UBERON:0010721,http://purl.obolibrary.org/obo/UBERON_0010721,distal tarsal bone +10.7563698,CL:0002308,http://purl.obolibrary.org/obo/CL_0002308,epithelial cell of skin gland +10.7563698,DRUGBANK:DB12245,http://purl.obolibrary.org/obo/DRUGBANK_DB12245,none +10.7563698,GO:0004720,http://purl.obolibrary.org/obo/GO_0004720,protein-lysine 6-oxidase activity +10.7563698,GO:0032103,http://purl.obolibrary.org/obo/GO_0032103,positive regulation of response to external stimulus +10.7563698,GO:0036367,http://purl.obolibrary.org/obo/GO_0036367,light adaption +10.7563698,GO:0043254,http://purl.obolibrary.org/obo/GO_0043254,regulation of protein-containing complex assembly +10.7563698,GO:0052745,http://purl.obolibrary.org/obo/GO_0052745,inositol phosphate phosphatase activity +10.7563698,HP:0000991,http://purl.obolibrary.org/obo/HP_0000991,Xanthomatosis +10.7563698,MONDO:0021125,http://purl.obolibrary.org/obo/MONDO_0021125,disease characteristic +10.7563698,PR:000001470,http://purl.obolibrary.org/obo/PR_000001470,interleukin-28B +10.7563698,PR:000015442,http://purl.obolibrary.org/obo/PR_000015442,transcription factor Sp4 +10.7563698,PR:000015918,http://purl.obolibrary.org/obo/PR_000015918,none +10.7563698,PR:000030460,http://purl.obolibrary.org/obo/PR_000030460,primate-type serum amyloid A-1 protein +10.7563698,PR:P08683,http://purl.obolibrary.org/obo/PR_P08683,none +10.7563698,SO:0000470,http://purl.obolibrary.org/obo/SO_0000470,J_gene_segment +10.7563698,UBERON:0001832,http://purl.obolibrary.org/obo/UBERON_0001832,sublingual gland +10.7584043,CL:1000448,http://purl.obolibrary.org/obo/CL_1000448,epithelial cell of sweat gland +10.7584043,GO:0051145,http://purl.obolibrary.org/obo/GO_0051145,smooth muscle cell differentiation +10.7584043,GO:0090351,http://purl.obolibrary.org/obo/GO_0090351,seedling development +10.7584043,HP:0010524,http://purl.obolibrary.org/obo/HP_0010524,Agnosia +10.7584043,MONDO:0017703,http://purl.obolibrary.org/obo/MONDO_0017703,disorder of glyoxylate metabolism +10.7584043,PR:000001324,http://purl.obolibrary.org/obo/PR_000001324,basigin +10.7584043,PR:000007644,http://purl.obolibrary.org/obo/PR_000007644,forkhead box protein P2 +10.7584043,PR:000009972,http://purl.obolibrary.org/obo/PR_000009972,leukotriene A-4 hydrolase +10.7584043,PR:000012988,http://purl.obolibrary.org/obo/PR_000012988,DNA-directed RNA polymerase II subunit RPB2 +10.7584043,PR:000014685,http://purl.obolibrary.org/obo/PR_000014685,plasma serine protease inhibitor +10.7584043,PR:000024072,http://purl.obolibrary.org/obo/PR_000024072,transketolase 1 +10.7604431,DRUGBANK:DB09009,http://purl.obolibrary.org/obo/DRUGBANK_DB09009,none +10.7604431,DRUGBANK:DB14020,http://purl.obolibrary.org/obo/DRUGBANK_DB14020,none +10.7604431,GO:0004912,http://purl.obolibrary.org/obo/GO_0004912,interleukin-3 receptor activity +10.7604431,MONDO:0006694,http://purl.obolibrary.org/obo/MONDO_0006694,cerebral atherosclerosis +10.7604431,MONDO:0008684,http://purl.obolibrary.org/obo/MONDO_0008684,Wolf-Hirschhorn syndrome +10.7604431,MONDO:0016886,http://purl.obolibrary.org/obo/MONDO_0016886,partial deletion of the short arm of chromosome 4 +10.7604431,MONDO:0045020,http://purl.obolibrary.org/obo/MONDO_0045020,glycine metabolism disease +10.7604431,NCBITaxon:27563,http://purl.obolibrary.org/obo/NCBITaxon_27563,none +10.7604431,NCBITaxon:337052,http://purl.obolibrary.org/obo/NCBITaxon_337052,none +10.7604431,PR:000001351,http://purl.obolibrary.org/obo/PR_000001351,gamma-glutamyltranspeptidase +10.7604431,PR:000003773,http://purl.obolibrary.org/obo/PR_000003773,all-trans-retinol dehydrogenase [NAD(+)] ADH7 +10.7604431,PR:000009122,http://purl.obolibrary.org/obo/PR_000009122,inositol-3-phosphate synthase 1 +10.7604431,PR:000009475,http://purl.obolibrary.org/obo/PR_000009475,"keratin, type I cuticular Ha6" +10.7604431,PR:000015215,http://purl.obolibrary.org/obo/PR_000015215,Na(+)/H(+) exchange regulatory cofactor NHE-RF2 +10.7604431,PR:000016729,http://purl.obolibrary.org/obo/PR_000016729,tsukushi +10.7604431,PR:000031496,http://purl.obolibrary.org/obo/PR_000031496,AP-5 complex subunit beta-1 +10.7604431,UBERON:0003726,http://purl.obolibrary.org/obo/UBERON_0003726,thoracic nerve +10.7604431,UBERON:0035109,http://purl.obolibrary.org/obo/UBERON_0035109,plantar nerve +10.762486,CHEBI:35610,http://purl.obolibrary.org/obo/CHEBI_35610,antineoplastic agent +10.762486,DRUGBANK:DB11476,http://purl.obolibrary.org/obo/DRUGBANK_DB11476,none +10.762486,GO:0019238,http://purl.obolibrary.org/obo/GO_0019238,cyclohydrolase activity +10.762486,GO:0030670,http://purl.obolibrary.org/obo/GO_0030670,phagocytic vesicle membrane +10.762486,GO:0033326,http://purl.obolibrary.org/obo/GO_0033326,cerebrospinal fluid secretion +10.762486,GO:0047696,http://purl.obolibrary.org/obo/GO_0047696,beta-adrenergic receptor kinase activity +10.762486,GO:0097425,http://purl.obolibrary.org/obo/GO_0097425,none +10.762486,MONDO:0002696,http://purl.obolibrary.org/obo/MONDO_0002696,Sertoli cell tumor +10.762486,NCBITaxon:10219,http://purl.obolibrary.org/obo/NCBITaxon_10219,Hemichordata +10.762486,NCBITaxon:10220,http://purl.obolibrary.org/obo/NCBITaxon_10220,Enteropneusta +10.762486,NCBITaxon:1215728,http://purl.obolibrary.org/obo/NCBITaxon_1215728,none +10.762486,NCBITaxon:33310,http://purl.obolibrary.org/obo/NCBITaxon_33310,none +10.762486,NCBITaxon:7561,http://purl.obolibrary.org/obo/NCBITaxon_7561,none +10.762486,PR:000006475,http://purl.obolibrary.org/obo/PR_000006475,protein diaphanous homolog 1 +10.762486,PR:000007593,http://purl.obolibrary.org/obo/PR_000007593,glutamate carboxypeptidase 2 +10.762486,PR:O13326,http://purl.obolibrary.org/obo/PR_O13326,none +10.762486,UBERON:0001511,http://purl.obolibrary.org/obo/UBERON_0001511,skin of leg +10.762486,UBERON:0003209,http://purl.obolibrary.org/obo/UBERON_0003209,blood nerve barrier +10.7645331,CHEBI:26390,http://purl.obolibrary.org/obo/CHEBI_26390,purine 2'-deoxyribonucleotide +10.7645331,DRUGBANK:DB08027,http://purl.obolibrary.org/obo/DRUGBANK_DB08027,none +10.7645331,DRUGBANK:DB10540,http://purl.obolibrary.org/obo/DRUGBANK_DB10540,none +10.7645331,GO:0030100,http://purl.obolibrary.org/obo/GO_0030100,regulation of endocytosis +10.7645331,MONDO:0000704,http://purl.obolibrary.org/obo/MONDO_0000704,lymphocytic colitis +10.7645331,MONDO:0006096,http://purl.obolibrary.org/obo/MONDO_0006096,atypical endometrial hyperplasia +10.7645331,MONDO:0009763,http://purl.obolibrary.org/obo/MONDO_0009763,obesity-hypoventilation syndrome +10.7645331,MONDO:0016031,http://purl.obolibrary.org/obo/MONDO_0016031,facial dysmorphism-anorexia-cachexia-eye and skin anomalies syndrome +10.7645331,MONDO:0021459,http://purl.obolibrary.org/obo/MONDO_0021459,benign neoplasm of esophagus +10.7645331,NCBITaxon:106220,http://purl.obolibrary.org/obo/NCBITaxon_106220,none +10.7645331,NCBITaxon:114952,http://purl.obolibrary.org/obo/NCBITaxon_114952,none +10.7645331,NCBITaxon:120557,http://purl.obolibrary.org/obo/NCBITaxon_120557,none +10.7645331,NCBITaxon:232795,http://purl.obolibrary.org/obo/NCBITaxon_232795,Dicistroviridae +10.7645331,NCBITaxon:33467,http://purl.obolibrary.org/obo/NCBITaxon_33467,none +10.7645331,NCBITaxon:37581,http://purl.obolibrary.org/obo/NCBITaxon_37581,none +10.7645331,NCBITaxon:43120,http://purl.obolibrary.org/obo/NCBITaxon_43120,none +10.7645331,NCBITaxon:61346,http://purl.obolibrary.org/obo/NCBITaxon_61346,none +10.7645331,NCBITaxon:6217,http://purl.obolibrary.org/obo/NCBITaxon_6217,Nemertea +10.7645331,NCBITaxon:6546,http://purl.obolibrary.org/obo/NCBITaxon_6546,none +10.7645331,NCBITaxon:6547,http://purl.obolibrary.org/obo/NCBITaxon_6547,none +10.7645331,NCBITaxon:7568,http://purl.obolibrary.org/obo/NCBITaxon_7568,none +10.7645331,PR:000005880,http://purl.obolibrary.org/obo/PR_000005880,cysteine-rich secretory protein 3 +10.7645331,UBERON:0001095,http://purl.obolibrary.org/obo/UBERON_0001095,caudal vertebra +10.7645331,UBERON:0007159,http://purl.obolibrary.org/obo/UBERON_0007159,lumen of colon +10.7665843,CHEBI:33958,http://purl.obolibrary.org/obo/CHEBI_33958,halide salt +10.7665843,CL:0002155,http://purl.obolibrary.org/obo/CL_0002155,echinocyte +10.7665843,DRUGBANK:DB14586,http://purl.obolibrary.org/obo/DRUGBANK_DB14586,none +10.7665843,GO:0001626,http://purl.obolibrary.org/obo/GO_0001626,nociceptin receptor activity +10.7665843,GO:0051261,http://purl.obolibrary.org/obo/GO_0051261,protein depolymerization +10.7665843,GO:0070849,http://purl.obolibrary.org/obo/GO_0070849,response to epidermal growth factor +10.7665843,MONDO:0006960,http://purl.obolibrary.org/obo/MONDO_0006960,sciatic neuropathy +10.7665843,NCBITaxon:116123,http://purl.obolibrary.org/obo/NCBITaxon_116123,none +10.7665843,NCBITaxon:57992,http://purl.obolibrary.org/obo/NCBITaxon_57992,none +10.7665843,NCBITaxon:688987,http://purl.obolibrary.org/obo/NCBITaxon_688987,none +10.7665843,PR:000001195,http://purl.obolibrary.org/obo/PR_000001195,short-wave-sensitive opsin 1 +10.7665843,PR:000003506,http://purl.obolibrary.org/obo/PR_000003506,T-brain transcription factor +10.7665843,PR:000015523,http://purl.obolibrary.org/obo/PR_000015523,sphingosine kinase 2 +10.7665843,PR:P28466,http://purl.obolibrary.org/obo/PR_P28466,none +10.7665843,UBERON:0002187,http://purl.obolibrary.org/obo/UBERON_0002187,terminal bronchiole +10.7665843,UBERON:0008897,http://purl.obolibrary.org/obo/UBERON_0008897,fin +10.7665843,UBERON:0009201,http://purl.obolibrary.org/obo/UBERON_0009201,nephric duct +10.7665843,UBERON:0018142,http://purl.obolibrary.org/obo/UBERON_0018142,caudal vertebra endochondral element +10.7686398,CHEBI:50584,http://purl.obolibrary.org/obo/CHEBI_50584,alkyl alcohol +10.7686398,CL:0000535,http://purl.obolibrary.org/obo/CL_0000535,secondary neuron +10.7686398,DRUGBANK:DB13026,http://purl.obolibrary.org/obo/DRUGBANK_DB13026,none +10.7686398,MONDO:0019168,http://purl.obolibrary.org/obo/MONDO_0019168,pyomyositis +10.7686398,NCBITaxon:11592,http://purl.obolibrary.org/obo/NCBITaxon_11592,none +10.7686398,PR:000006564,http://purl.obolibrary.org/obo/PR_000006564,"dynein heavy chain 5, axonemal" +10.7686398,PR:000006756,http://purl.obolibrary.org/obo/PR_000006756,dual specificity protein phosphatase 6 +10.7686398,PR:000013586,http://purl.obolibrary.org/obo/PR_000013586,Ras-related protein Rab-14 +10.7686398,PR:000014263,http://purl.obolibrary.org/obo/PR_000014263,40S ribosomal protein S2 +10.7686398,PR:Q02884,http://purl.obolibrary.org/obo/PR_Q02884,none +10.7706996,DRUGBANK:DB00697,http://purl.obolibrary.org/obo/DRUGBANK_DB00697,none +10.7706996,DRUGBANK:DB11003,http://purl.obolibrary.org/obo/DRUGBANK_DB11003,none +10.7706996,MONDO:0000632,http://purl.obolibrary.org/obo/MONDO_0000632,uterine benign neoplasm +10.7706996,MONDO:0003425,http://purl.obolibrary.org/obo/MONDO_0003425,ophthalmoplegia +10.7706996,MONDO:0006098,http://purl.obolibrary.org/obo/MONDO_0006098,atypical lobular breast hyperplasia +10.7706996,PR:000003659,http://purl.obolibrary.org/obo/PR_000003659,long-chain-fatty-acid--CoA ligase 1 +10.7706996,PR:000004517,http://purl.obolibrary.org/obo/PR_000004517,aurora kinase B +10.7706996,PR:000008685,http://purl.obolibrary.org/obo/PR_000008685,homeodomain-only protein +10.7706996,PR:000017494,http://purl.obolibrary.org/obo/PR_000017494,DNA repair protein complementing XP-C cells +10.7706996,PR:O64811,http://purl.obolibrary.org/obo/PR_O64811,none +10.7706996,PR:P0C1T5,http://purl.obolibrary.org/obo/PR_P0C1T5,none +10.7706996,UBERON:0001642,http://purl.obolibrary.org/obo/UBERON_0001642,superior sagittal sinus +10.7706996,UBERON:0002320,http://purl.obolibrary.org/obo/UBERON_0002320,glomerular mesangium +10.7706996,UBERON:0006051,http://purl.obolibrary.org/obo/UBERON_0006051,digit 4 +10.7706996,UBERON:0009850,http://purl.obolibrary.org/obo/UBERON_0009850,nematode larva +10.7727636,DRUGBANK:DB13977,http://purl.obolibrary.org/obo/DRUGBANK_DB13977,none +10.7727636,GO:0001896,http://purl.obolibrary.org/obo/GO_0001896,autolysis +10.7727636,GO:0004771,http://purl.obolibrary.org/obo/GO_0004771,sterol esterase activity +10.7727636,GO:0008776,http://purl.obolibrary.org/obo/GO_0008776,acetate kinase activity +10.7727636,GO:0010037,http://purl.obolibrary.org/obo/GO_0010037,response to carbon dioxide +10.7727636,MONDO:0000263,http://purl.obolibrary.org/obo/MONDO_0000263,laryngotracheitis +10.7727636,MONDO:0008218,http://purl.obolibrary.org/obo/MONDO_0008218,Hailey-Hailey disease +10.7727636,MONDO:0017048,http://purl.obolibrary.org/obo/MONDO_0017048,pseudomyxoma peritonei +10.7727636,PR:000000708,http://purl.obolibrary.org/obo/PR_000000708,potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 4 +10.7727636,PR:000001205,http://purl.obolibrary.org/obo/PR_000001205,C-C chemokine receptor type 9 +10.7727636,PR:000004493,http://purl.obolibrary.org/obo/PR_000004493,copper-transporting ATPase 1 +10.7727636,PR:000007579,http://purl.obolibrary.org/obo/PR_000007579,fibromodulin +10.7727636,PR:000009648,http://purl.obolibrary.org/obo/PR_000009648,ladinin-1 +10.7727636,PR:000013680,http://purl.obolibrary.org/obo/PR_000013680,DNA repair and recombination protein RAD54-like +10.7727636,PR:000014815,http://purl.obolibrary.org/obo/PR_000014815,SH2 domain-containing protein 3A +10.7727636,PR:000015940,http://purl.obolibrary.org/obo/PR_000015940,none +10.7727636,PR:000016412,http://purl.obolibrary.org/obo/PR_000016412,transmembrane protein 132D +10.7727636,PR:000017305,http://purl.obolibrary.org/obo/PR_000017305,very low-density lipoprotein receptor +10.7727636,UBERON:0002062,http://purl.obolibrary.org/obo/UBERON_0002062,endocardial cushion +10.7748318,CL:1000458,http://purl.obolibrary.org/obo/CL_1000458,melanocyte of skin +10.7748318,DRUGBANK:DB00293,http://purl.obolibrary.org/obo/DRUGBANK_DB00293,none +10.7748318,DRUGBANK:DB15608,http://purl.obolibrary.org/obo/DRUGBANK_DB15608,none +10.7748318,GO:0036162,http://purl.obolibrary.org/obo/GO_0036162,oxytocin production +10.7748318,GO:0038181,http://purl.obolibrary.org/obo/GO_0038181,bile acid receptor activity +10.7748318,GO:0050000,http://purl.obolibrary.org/obo/GO_0050000,chromosome localization +10.7748318,GO:0051182,http://purl.obolibrary.org/obo/GO_0051182,none +10.7748318,GO:0055065,http://purl.obolibrary.org/obo/GO_0055065,metal ion homeostasis +10.7748318,GO:0099522,http://purl.obolibrary.org/obo/GO_0099522,cytosolic region +10.7748318,MONDO:0006757,http://purl.obolibrary.org/obo/MONDO_0006757,extrahepatic cholestasis +10.7748318,MONDO:0007708,http://purl.obolibrary.org/obo/MONDO_0007708,Kasabach-Merritt syndrome +10.7748318,MONDO:0015668,http://purl.obolibrary.org/obo/MONDO_0015668,hereditary dentin defect +10.7748318,MONDO:0017799,http://purl.obolibrary.org/obo/MONDO_0017799,Meigs syndrome +10.7748318,NCBITaxon:11029,http://purl.obolibrary.org/obo/NCBITaxon_11029,Ross River virus +10.7748318,NCBITaxon:12227,http://purl.obolibrary.org/obo/NCBITaxon_12227,none +10.7748318,PR:000005665,http://purl.obolibrary.org/obo/PR_000005665,centlein +10.7748318,PR:000007350,http://purl.obolibrary.org/obo/PR_000007350,protocadherin Fat 1 +10.7748318,PR:000013032,http://purl.obolibrary.org/obo/PR_000013032,protection of telomeres protein 1 +10.7748318,PR:000014023,http://purl.obolibrary.org/obo/PR_000014023,receptor-interacting serine/threonine-protein kinase 2 +10.7748318,PR:000025990,http://purl.obolibrary.org/obo/PR_000025990,none +10.7748318,PR:P14306,http://purl.obolibrary.org/obo/PR_P14306,none +10.7748318,UBERON:0001125,http://purl.obolibrary.org/obo/UBERON_0001125,serratus ventralis +10.7748318,UBERON:0004188,http://purl.obolibrary.org/obo/UBERON_0004188,glomerular epithelium +10.7769044,CHEBI:38179,http://purl.obolibrary.org/obo/CHEBI_38179,monocyclic heteroarene +10.7769044,CL:0000170,http://purl.obolibrary.org/obo/CL_0000170,glucagon secreting cell +10.7769044,DRUGBANK:DB00418,http://purl.obolibrary.org/obo/DRUGBANK_DB00418,none +10.7769044,DRUGBANK:DB01430,http://purl.obolibrary.org/obo/DRUGBANK_DB01430,none +10.7769044,DRUGBANK:DB04372,http://purl.obolibrary.org/obo/DRUGBANK_DB04372,none +10.7769044,DRUGBANK:DB04846,http://purl.obolibrary.org/obo/DRUGBANK_DB04846,none +10.7769044,DRUGBANK:DB15962,http://purl.obolibrary.org/obo/DRUGBANK_DB15962,none +10.7769044,MONDO:0006120,http://purl.obolibrary.org/obo/MONDO_0006120,C-cell hyperplasia +10.7769044,MONDO:0044877,http://purl.obolibrary.org/obo/MONDO_0044877,paraneoplastic cerebellar degeneration +10.7769044,PR:000010311,http://purl.obolibrary.org/obo/PR_000010311,myocyte-specific enhancer factor 2C +10.7769044,PR:000015275,http://purl.obolibrary.org/obo/PR_000015275,structural maintenance of chromosomes protein 6 +10.7769044,PR:000044663,http://purl.obolibrary.org/obo/PR_000044663,epithelial sodium channel protein +10.7769044,UBERON:0001301,http://purl.obolibrary.org/obo/UBERON_0001301,epididymis +10.7769044,UBERON:0008716,http://purl.obolibrary.org/obo/UBERON_0008716,hilum of kidney +10.7789812,CL:0000217,http://purl.obolibrary.org/obo/CL_0000217,insulating cell +10.7789812,CL:0000354,http://purl.obolibrary.org/obo/CL_0000354,blastemal cell +10.7789812,CL:0000703,http://purl.obolibrary.org/obo/CL_0000703,sustentacular cell +10.7789812,DRUGBANK:DB00078,http://purl.obolibrary.org/obo/DRUGBANK_DB00078,none +10.7789812,DRUGBANK:DB14290,http://purl.obolibrary.org/obo/DRUGBANK_DB14290,none +10.7789812,GO:0004594,http://purl.obolibrary.org/obo/GO_0004594,pantothenate kinase activity +10.7789812,GO:0046037,http://purl.obolibrary.org/obo/GO_0046037,GMP metabolic process +10.7789812,MONDO:0043330,http://purl.obolibrary.org/obo/MONDO_0043330,Mirizzi syndrome +10.7789812,NCBITaxon:44542,http://purl.obolibrary.org/obo/NCBITaxon_44542,gambiae species complex +10.7789812,PR:000003317,http://purl.obolibrary.org/obo/PR_000003317,syntaxin-binding protein 1 +10.7789812,PR:000008488,http://purl.obolibrary.org/obo/PR_000008488,histone deacetylase 9 +10.7789812,PR:000008776,http://purl.obolibrary.org/obo/PR_000008776,very-long-chain 3-oxoacyl-CoA reductase +10.7789812,PR:000010881,http://purl.obolibrary.org/obo/PR_000010881,myotilin +10.7789812,PR:000023292,http://purl.obolibrary.org/obo/PR_000023292,none +10.7789812,UBERON:0006323,http://purl.obolibrary.org/obo/UBERON_0006323,superior rectus extraocular muscle +10.7810624,CL:0002451,http://purl.obolibrary.org/obo/CL_0002451,mammary stem cell +10.7810624,DRUGBANK:DB00294,http://purl.obolibrary.org/obo/DRUGBANK_DB00294,none +10.7810624,DRUGBANK:DB02712,http://purl.obolibrary.org/obo/DRUGBANK_DB02712,none +10.7810624,DRUGBANK:DB12598,http://purl.obolibrary.org/obo/DRUGBANK_DB12598,none +10.7810624,GO:0001631,http://purl.obolibrary.org/obo/GO_0001631,cysteinyl leukotriene receptor activity +10.7810624,GO:0019541,http://purl.obolibrary.org/obo/GO_0019541,propionate metabolic process +10.7810624,GO:0044366,http://purl.obolibrary.org/obo/GO_0044366,none +10.7810624,GO:1990834,http://purl.obolibrary.org/obo/GO_1990834,response to odorant +10.7810624,MONDO:0003486,http://purl.obolibrary.org/obo/MONDO_0003486,basaloid squamous cell carcinoma +10.7810624,MONDO:0004570,http://purl.obolibrary.org/obo/MONDO_0004570,intestinal volvulus +10.7810624,MONDO:0004941,http://purl.obolibrary.org/obo/MONDO_0004941,eosinophilia-myalgia syndrome +10.7810624,PR:000001897,http://purl.obolibrary.org/obo/PR_000001897,natural killer cell receptor NKG2 +10.7810624,PR:000007921,http://purl.obolibrary.org/obo/PR_000007921,growth/differentiation factor 2 +10.7810624,PR:000016799,http://purl.obolibrary.org/obo/PR_000016799,alpha-tocopherol transfer protein +10.7810624,PR:000044646,http://purl.obolibrary.org/obo/PR_000044646,two-pore channel protein +10.7810624,PR:P03967,http://purl.obolibrary.org/obo/PR_P03967,none +10.7810624,UBERON:0008971,http://purl.obolibrary.org/obo/UBERON_0008971,left colon +10.7831479,CL:0000517,http://purl.obolibrary.org/obo/CL_0000517,macrophage derived foam cell +10.7831479,DRUGBANK:DB01558,http://purl.obolibrary.org/obo/DRUGBANK_DB01558,none +10.7831479,DRUGBANK:DB01629,http://purl.obolibrary.org/obo/DRUGBANK_DB01629,none +10.7831479,DRUGBANK:DB04880,http://purl.obolibrary.org/obo/DRUGBANK_DB04880,none +10.7831479,DRUGBANK:DB11358,http://purl.obolibrary.org/obo/DRUGBANK_DB11358,none +10.7831479,GO:0098763,http://purl.obolibrary.org/obo/GO_0098763,mitotic cell cycle phase +10.7831479,MONDO:0018124,http://purl.obolibrary.org/obo/MONDO_0018124,Oncogenic osteomalacia +10.7831479,MONDO:0044915,http://purl.obolibrary.org/obo/MONDO_0044915,salivary duct carcinoma +10.7831479,PR:000001161,http://purl.obolibrary.org/obo/PR_000001161,5-hydroxytryptamine receptor 1A +10.7831479,PR:000002287,http://purl.obolibrary.org/obo/PR_000002287,TNF receptor-associated factor 1 +10.7831479,PR:000005324,http://purl.obolibrary.org/obo/PR_000005324,major centromere autoantigen B +10.7831479,PR:000005802,http://purl.obolibrary.org/obo/PR_000005802,carboxypeptidase B2 +10.7831479,PR:000007214,http://purl.obolibrary.org/obo/PR_000007214,eukaryotic peptide chain release factor subunit 1 +10.7831479,PR:000009883,http://purl.obolibrary.org/obo/PR_000009883,protein-lysine 6-oxidase +10.7831479,PR:000014302,http://purl.obolibrary.org/obo/PR_000014302,Ras-related protein R-Ras2 +10.7831479,PR:000015830,http://purl.obolibrary.org/obo/PR_000015830,small ubiquitin-related modifier 2 +10.7831479,PR:000015831,http://purl.obolibrary.org/obo/PR_000015831,small ubiquitin-related modifier 3 +10.7831479,UBERON:0013758,http://purl.obolibrary.org/obo/UBERON_0013758,cervical os +10.7831479,UBERON:0015099,http://purl.obolibrary.org/obo/UBERON_0015099,distal tarsal endochondral element +10.7852377,CHEBI:33570,http://purl.obolibrary.org/obo/CHEBI_33570,benzenediols +10.7852377,CHEBI:35143,http://purl.obolibrary.org/obo/CHEBI_35143,hemoglobin +10.7852377,DRUGBANK:DB13946,http://purl.obolibrary.org/obo/DRUGBANK_DB13946,none +10.7852377,GO:0004084,http://purl.obolibrary.org/obo/GO_0004084,branched-chain-amino-acid transaminase activity +10.7852377,GO:0008254,http://purl.obolibrary.org/obo/GO_0008254,3'-nucleotidase activity +10.7852377,GO:0009085,http://purl.obolibrary.org/obo/GO_0009085,lysine biosynthetic process +10.7852377,GO:0030868,http://purl.obolibrary.org/obo/GO_0030868,smooth endoplasmic reticulum membrane +10.7852377,GO:0043296,http://purl.obolibrary.org/obo/GO_0043296,apical junction complex +10.7852377,GO:0050931,http://purl.obolibrary.org/obo/GO_0050931,pigment cell differentiation +10.7852377,GO:0071242,http://purl.obolibrary.org/obo/GO_0071242,cellular response to ammonium ion +10.7852377,MONDO:0002648,http://purl.obolibrary.org/obo/MONDO_0002648,mammary Paget disease +10.7852377,MONDO:0017397,http://purl.obolibrary.org/obo/MONDO_0017397,constitutional dyserythropoietic anemia +10.7852377,MONDO:0019306,http://purl.obolibrary.org/obo/MONDO_0019306,congenital non-bullous ichthyosiform erythroderma +10.7852377,PR:000005385,http://purl.obolibrary.org/obo/PR_000005385,cofilin-1 +10.7852377,PR:000006534,http://purl.obolibrary.org/obo/PR_000006534,deleted in malignant brain tumors 1 protein +10.7852377,PR:000006603,http://purl.obolibrary.org/obo/PR_000006603,dynamin-2 +10.7852377,PR:000014420,http://purl.obolibrary.org/obo/PR_000014420,protein S100-G +10.7852377,PR:000017644,http://purl.obolibrary.org/obo/PR_000017644,zinc finger protein 42 +10.7852377,UBERON:0002210,http://purl.obolibrary.org/obo/UBERON_0002210,syndesmosis +10.7852377,UBERON:0008884,http://purl.obolibrary.org/obo/UBERON_0008884,left putamen +10.7852377,UBERON:0018254,http://purl.obolibrary.org/obo/UBERON_0018254,skeletal musculature +10.787332,DRUGBANK:DB00378,http://purl.obolibrary.org/obo/DRUGBANK_DB00378,none +10.787332,DRUGBANK:DB13336,http://purl.obolibrary.org/obo/DRUGBANK_DB13336,none +10.787332,GO:0075136,http://purl.obolibrary.org/obo/GO_0075136,response to host +10.787332,HP:0001482,http://purl.obolibrary.org/obo/HP_0001482,Subcutaneous nodule +10.787332,MONDO:0018181,http://purl.obolibrary.org/obo/MONDO_0018181,staphylococcal scalded skin syndrome +10.787332,MONDO:0043233,http://purl.obolibrary.org/obo/MONDO_0043233,exfoliative dermatitis +10.787332,PR:000006297,http://purl.obolibrary.org/obo/PR_000006297,drebrin-like protein +10.787332,PR:000013062,http://purl.obolibrary.org/obo/PR_000013062,platelet basic protein +10.787332,PR:000014992,http://purl.obolibrary.org/obo/PR_000014992,solute carrier family 22 member 5 +10.787332,PR:000050011,http://purl.obolibrary.org/obo/PR_000050011,amyloid-like protein +10.787332,UBERON:0001963,http://purl.obolibrary.org/obo/UBERON_0001963,bronchial-associated lymphoid tissue +10.787332,UBERON:0004782,http://purl.obolibrary.org/obo/UBERON_0004782,gastrointestinal system serosa +10.7894306,CL:0000504,http://purl.obolibrary.org/obo/CL_0000504,enterochromaffin-like cell +10.7894306,DRUGBANK:DB13008,http://purl.obolibrary.org/obo/DRUGBANK_DB13008,none +10.7894306,GO:0009925,http://purl.obolibrary.org/obo/GO_0009925,basal plasma membrane +10.7894306,GO:0022404,http://purl.obolibrary.org/obo/GO_0022404,molting cycle process +10.7894306,MONDO:0001015,http://purl.obolibrary.org/obo/MONDO_0001015,eosinophilic meningitis +10.7894306,NCBITaxon:11604,http://purl.obolibrary.org/obo/NCBITaxon_11604,none +10.7894306,PR:000005280,http://purl.obolibrary.org/obo/PR_000005280,cyclin-dependent kinase inhibitor 3 +10.7894306,PR:000012513,http://purl.obolibrary.org/obo/PR_000012513,"[pyruvate dehydrogenase [acetyl-transferring]]-phosphatase 1, mitochondrial" +10.7894306,UBERON:0001457,http://purl.obolibrary.org/obo/UBERON_0001457,skin of eyelid +10.7894306,UBERON:0003199,http://purl.obolibrary.org/obo/UBERON_0003199,egg chamber +10.7894306,UBERON:0004867,http://purl.obolibrary.org/obo/UBERON_0004867,orbital cavity +10.7894306,UBERON:0008854,http://purl.obolibrary.org/obo/UBERON_0008854,root of molar tooth +10.7915337,DRUGBANK:DB09078,http://purl.obolibrary.org/obo/DRUGBANK_DB09078,none +10.7915337,GO:0004427,http://purl.obolibrary.org/obo/GO_0004427,inorganic diphosphatase activity +10.7915337,GO:0042093,http://purl.obolibrary.org/obo/GO_0042093,T-helper cell differentiation +10.7915337,GO:0050525,http://purl.obolibrary.org/obo/GO_0050525,cutinase activity +10.7915337,MONDO:0001658,http://purl.obolibrary.org/obo/MONDO_0001658,nontoxic goiter +10.7915337,MONDO:0005194,http://purl.obolibrary.org/obo/MONDO_0005194,Rotavirus infection +10.7915337,MONDO:0005635,http://purl.obolibrary.org/obo/MONDO_0005635,adenomyoma +10.7915337,MONDO:0009823,http://purl.obolibrary.org/obo/MONDO_0009823,primary hyperoxaluria type 1 +10.7915337,MONDO:0025481,http://purl.obolibrary.org/obo/MONDO_0025481,zoonosis +10.7915337,MONDO:0100278,http://purl.obolibrary.org/obo/MONDO_0100278,alanine glyoxylate aminotransferase deficiency +10.7915337,MOP:0000589,http://purl.obolibrary.org/obo/MOP_0000589,none +10.7915337,NCBITaxon:112137,http://purl.obolibrary.org/obo/NCBITaxon_112137,none +10.7915337,NCBITaxon:301955,http://purl.obolibrary.org/obo/NCBITaxon_301955,none +10.7915337,PR:000023277,http://purl.obolibrary.org/obo/PR_000023277,none +10.7915337,SO:0000634,http://purl.obolibrary.org/obo/SO_0000634,polycistronic_mRNA +10.7915337,UBERON:0002083,http://purl.obolibrary.org/obo/UBERON_0002083,ductus venosus +10.7936411,DRUGBANK:DB01972,http://purl.obolibrary.org/obo/DRUGBANK_DB01972,none +10.7936411,DRUGBANK:DB05313,http://purl.obolibrary.org/obo/DRUGBANK_DB05313,none +10.7936411,GO:0004014,http://purl.obolibrary.org/obo/GO_0004014,adenosylmethionine decarboxylase activity +10.7936411,MONDO:0023619,http://purl.obolibrary.org/obo/MONDO_0023619,lentigo maligna melanoma +10.7936411,PR:000006281,http://purl.obolibrary.org/obo/PR_000006281,"aspartate--tRNA ligase, cytoplasmic" +10.7936411,PR:000011273,http://purl.obolibrary.org/obo/PR_000011273,"NACHT, LRR and PYD domains-containing protein 5" +10.7936411,PR:000023849,http://purl.obolibrary.org/obo/PR_000023849,none +10.7957531,DRUGBANK:DB00050,http://purl.obolibrary.org/obo/DRUGBANK_DB00050,none +10.7957531,DRUGBANK:DB06168,http://purl.obolibrary.org/obo/DRUGBANK_DB06168,none +10.7957531,DRUGBANK:DB07768,http://purl.obolibrary.org/obo/DRUGBANK_DB07768,none +10.7957531,DRUGBANK:DB09084,http://purl.obolibrary.org/obo/DRUGBANK_DB09084,none +10.7957531,GO:0001967,http://purl.obolibrary.org/obo/GO_0001967,suckling behavior +10.7957531,GO:0004092,http://purl.obolibrary.org/obo/GO_0004092,carnitine O-acetyltransferase activity +10.7957531,GO:0006551,http://purl.obolibrary.org/obo/GO_0006551,leucine metabolic process +10.7957531,MONDO:0003214,http://purl.obolibrary.org/obo/MONDO_0003214,apocrine adenocarcinoma +10.7957531,MONDO:0011612,http://purl.obolibrary.org/obo/MONDO_0011612,glycine encephalopathy +10.7957531,MONDO:0016096,http://purl.obolibrary.org/obo/MONDO_0016096,malignant non-dysgerminomatous germ cell tumor of ovary +10.7957531,PR:000002027,http://purl.obolibrary.org/obo/PR_000002027,T-cell surface glycoprotein CD1c +10.7957531,PR:000006936,http://purl.obolibrary.org/obo/PR_000006936,prolyl hydroxylase EGLN3 +10.7957531,PR:000008240,http://purl.obolibrary.org/obo/PR_000008240,"glutamate receptor ionotropic, kainate 1" +10.7957531,PR:000013940,http://purl.obolibrary.org/obo/PR_000013940,repulsive guidance molecule A +10.7957531,PR:P90521,http://purl.obolibrary.org/obo/PR_P90521,none +10.7957531,PR:Q9LVL1,http://purl.obolibrary.org/obo/PR_Q9LVL1,none +10.7957531,SO:0001869,http://purl.obolibrary.org/obo/SO_0001869,functional_candidate_gene +10.7957531,UBERON:0035085,http://purl.obolibrary.org/obo/UBERON_0035085,anatomical plane +10.7978695,CL:0000218,http://purl.obolibrary.org/obo/CL_0000218,myelinating Schwann cell +10.7978695,CL:0000328,http://purl.obolibrary.org/obo/CL_0000328,myelin accumulating cell +10.7978695,CL:0002062,http://purl.obolibrary.org/obo/CL_0002062,type I pneumocyte +10.7978695,DRUGBANK:DB02059,http://purl.obolibrary.org/obo/DRUGBANK_DB02059,none +10.7978695,DRUGBANK:DB02823,http://purl.obolibrary.org/obo/DRUGBANK_DB02823,none +10.7978695,DRUGBANK:DB12319,http://purl.obolibrary.org/obo/DRUGBANK_DB12319,none +10.7978695,GO:0002120,http://purl.obolibrary.org/obo/GO_0002120,none +10.7978695,GO:0002287,http://purl.obolibrary.org/obo/GO_0002287,alpha-beta T cell activation involved in immune response +10.7978695,GO:0002293,http://purl.obolibrary.org/obo/GO_0002293,alpha-beta T cell differentiation involved in immune response +10.7978695,GO:0002294,http://purl.obolibrary.org/obo/GO_0002294,"CD4-positive, alpha-beta T cell differentiation involved in immune response" +10.7978695,GO:0022405,http://purl.obolibrary.org/obo/GO_0022405,hair cycle process +10.7978695,GO:0043367,http://purl.obolibrary.org/obo/GO_0043367,"CD4-positive, alpha-beta T cell differentiation" +10.7978695,GO:0045927,http://purl.obolibrary.org/obo/GO_0045927,positive regulation of growth +10.7978695,HP:0011733,http://purl.obolibrary.org/obo/HP_0011733,Abnormality of adrenal physiology +10.7978695,MONDO:0006797,http://purl.obolibrary.org/obo/MONDO_0006797,hypertensive retinopathy +10.7978695,MONDO:0008082,http://purl.obolibrary.org/obo/MONDO_0008082,multiple endocrine neoplasia type 2B +10.7978695,MONDO:0019259,http://purl.obolibrary.org/obo/MONDO_0019259,classic phenylketonuria +10.7978695,NCBITaxon:43816,http://purl.obolibrary.org/obo/NCBITaxon_43816,Anophelinae +10.7978695,NCBITaxon:7164,http://purl.obolibrary.org/obo/NCBITaxon_7164,Anopheles +10.7978695,PR:000001064,http://purl.obolibrary.org/obo/PR_000001064,transient receptor potential cation channel TRPV2 +10.7978695,PR:000005218,http://purl.obolibrary.org/obo/PR_000005218,cell division cycle 7-related protein kinase +10.7978695,PR:Q09912,http://purl.obolibrary.org/obo/PR_Q09912,none +10.7978695,UBERON:0001168,http://purl.obolibrary.org/obo/UBERON_0001168,wall of small intestine +10.7999904,DRUGBANK:DB00631,http://purl.obolibrary.org/obo/DRUGBANK_DB00631,none +10.7999904,DRUGBANK:DB02957,http://purl.obolibrary.org/obo/DRUGBANK_DB02957,none +10.7999904,DRUGBANK:DB10659,http://purl.obolibrary.org/obo/DRUGBANK_DB10659,none +10.7999904,DRUGBANK:DB11218,http://purl.obolibrary.org/obo/DRUGBANK_DB11218,none +10.7999904,DRUGBANK:DB12831,http://purl.obolibrary.org/obo/DRUGBANK_DB12831,none +10.7999904,GO:0005742,http://purl.obolibrary.org/obo/GO_0005742,mitochondrial outer membrane translocase complex +10.7999904,GO:0009448,http://purl.obolibrary.org/obo/GO_0009448,gamma-aminobutyric acid metabolic process +10.7999904,GO:0010154,http://purl.obolibrary.org/obo/GO_0010154,fruit development +10.7999904,GO:0031641,http://purl.obolibrary.org/obo/GO_0031641,regulation of myelination +10.7999904,MONDO:0020550,http://purl.obolibrary.org/obo/MONDO_0020550,gestational choriocarcinoma +10.7999904,NCBITaxon:12320,http://purl.obolibrary.org/obo/NCBITaxon_12320,none +10.7999904,PR:000014378,http://purl.obolibrary.org/obo/PR_000014378,ryanodine receptor 2 +10.7999904,PR:000014443,http://purl.obolibrary.org/obo/PR_000014443,deoxynucleoside triphosphate triphosphohydrolase SAMHD1 +10.7999904,PR:000014896,http://purl.obolibrary.org/obo/PR_000014896,homeobox protein SIX1 +10.7999904,PR:000016003,http://purl.obolibrary.org/obo/PR_000016003,protachykinin-1 +10.8021158,DRUGBANK:DB09876,http://purl.obolibrary.org/obo/DRUGBANK_DB09876,none +10.8021158,DRUGBANK:DB11656,http://purl.obolibrary.org/obo/DRUGBANK_DB11656,none +10.8021158,DRUGBANK:DB13570,http://purl.obolibrary.org/obo/DRUGBANK_DB13570,none +10.8021158,GO:0001401,http://purl.obolibrary.org/obo/GO_0001401,SAM complex +10.8021158,GO:0004731,http://purl.obolibrary.org/obo/GO_0004731,purine-nucleoside phosphorylase activity +10.8021158,GO:0032782,http://purl.obolibrary.org/obo/GO_0032782,bile acid secretion +10.8021158,HP:0040307,http://purl.obolibrary.org/obo/HP_0040307,Male sexual dysfunction +10.8021158,HP:0100639,http://purl.obolibrary.org/obo/HP_0100639,Erectile dysfunction +10.8021158,MONDO:0003281,http://purl.obolibrary.org/obo/MONDO_0003281,ovarian cystic teratoma +10.8021158,MONDO:0010627,http://purl.obolibrary.org/obo/MONDO_0010627,X-linked lymphoproliferative syndrome +10.8021158,MONDO:0016167,http://purl.obolibrary.org/obo/MONDO_0016167,optic pathway glioma +10.8021158,PR:000003642,http://purl.obolibrary.org/obo/PR_000003642,peroxisomal acyl-coenzyme A oxidase 1 +10.8021158,PR:000004369,http://purl.obolibrary.org/obo/PR_000004369,asialoglycoprotein receptor 1 +10.8021158,PR:000007165,http://purl.obolibrary.org/obo/PR_000007165,general transcription and DNA repair factor IIH helicase subunit XPB +10.8021158,PR:000012056,http://purl.obolibrary.org/obo/PR_000012056,protein OSCP1 +10.8021158,UBERON:0000429,http://purl.obolibrary.org/obo/UBERON_0000429,enteric plexus +10.8042457,CL:0000317,http://purl.obolibrary.org/obo/CL_0000317,sebum secreting cell +10.8042457,CL:0002140,http://purl.obolibrary.org/obo/CL_0002140,acinar cell of sebaceous gland +10.8042457,CL:2000021,http://purl.obolibrary.org/obo/CL_2000021,sebaceous gland cell +10.8042457,DRUGBANK:DB00082,http://purl.obolibrary.org/obo/DRUGBANK_DB00082,none +10.8042457,DRUGBANK:DB09094,http://purl.obolibrary.org/obo/DRUGBANK_DB09094,none +10.8042457,DRUGBANK:DB13431,http://purl.obolibrary.org/obo/DRUGBANK_DB13431,none +10.8042457,GO:0006972,http://purl.obolibrary.org/obo/GO_0006972,hyperosmotic response +10.8042457,GO:0015721,http://purl.obolibrary.org/obo/GO_0015721,bile acid and bile salt transport +10.8042457,GO:0016572,http://purl.obolibrary.org/obo/GO_0016572,histone phosphorylation +10.8042457,GO:0031564,http://purl.obolibrary.org/obo/GO_0031564,transcription antitermination +10.8042457,GO:1904386,http://purl.obolibrary.org/obo/GO_1904386,response to L-phenylalanine derivative +10.8042457,HP:0000549,http://purl.obolibrary.org/obo/HP_0000549,Abnormal conjugate eye movement +10.8042457,MONDO:0005758,http://purl.obolibrary.org/obo/MONDO_0005758,eunuchism +10.8042457,MONDO:0008119,http://purl.obolibrary.org/obo/MONDO_0008119,spinocerebellar ataxia type 1 +10.8042457,MONDO:0019403,http://purl.obolibrary.org/obo/MONDO_0019403,congenital dyserythropoietic anemia +10.8042457,NCBITaxon:11128,http://purl.obolibrary.org/obo/NCBITaxon_11128,Bovine coronavirus +10.8042457,NCBITaxon:12321,http://purl.obolibrary.org/obo/NCBITaxon_12321,none +10.8042457,PR:000008570,http://purl.obolibrary.org/obo/PR_000008570,protein HIRA +10.8042457,PR:000009942,http://purl.obolibrary.org/obo/PR_000009942,leucine-rich repeat flightless-interacting protein 1 +10.8042457,PR:000010184,http://purl.obolibrary.org/obo/PR_000010184,myristoylated alanine-rich C-kinase substrate +10.8042457,PR:000010221,http://purl.obolibrary.org/obo/PR_000010221,muscleblind-like protein 1 +10.8042457,PR:000012786,http://purl.obolibrary.org/obo/PR_000012786,serine/threonine-protein kinase N2 +10.8042457,PR:P36027,http://purl.obolibrary.org/obo/PR_P36027,none +10.8042457,UBERON:0004379,http://purl.obolibrary.org/obo/UBERON_0004379,distal epiphysis +10.8042457,UBERON:0013161,http://purl.obolibrary.org/obo/UBERON_0013161,left lateral ventricle +10.8063802,DRUGBANK:DB00606,http://purl.obolibrary.org/obo/DRUGBANK_DB00606,none +10.8063802,DRUGBANK:DB01139,http://purl.obolibrary.org/obo/DRUGBANK_DB01139,none +10.8063802,DRUGBANK:DB08898,http://purl.obolibrary.org/obo/DRUGBANK_DB08898,none +10.8063802,DRUGBANK:DB09064,http://purl.obolibrary.org/obo/DRUGBANK_DB09064,none +10.8063802,DRUGBANK:DB12444,http://purl.obolibrary.org/obo/DRUGBANK_DB12444,none +10.8063802,GO:0001641,http://purl.obolibrary.org/obo/GO_0001641,group II metabotropic glutamate receptor activity +10.8063802,GO:0001806,http://purl.obolibrary.org/obo/GO_0001806,type IV hypersensitivity +10.8063802,GO:0090596,http://purl.obolibrary.org/obo/GO_0090596,sensory organ morphogenesis +10.8063802,MONDO:0006646,http://purl.obolibrary.org/obo/MONDO_0006646,angioleiomyoma +10.8063802,MONDO:0010645,http://purl.obolibrary.org/obo/MONDO_0010645,oculocerebrorenal syndrome +10.8063802,NCBITaxon:31032,http://purl.obolibrary.org/obo/NCBITaxon_31032,Takifugu +10.8063802,PR:000006097,http://purl.obolibrary.org/obo/PR_000006097,none +10.8063802,PR:000026027,http://purl.obolibrary.org/obo/PR_000026027,paired amphipathic helix protein Sin3 +10.8063802,PR:P08821,http://purl.obolibrary.org/obo/PR_P08821,none +10.8063802,SO:0001532,http://purl.obolibrary.org/obo/SO_0001532,recombination_signal_sequence +10.8063802,UBERON:0004383,http://purl.obolibrary.org/obo/UBERON_0004383,epiphysis of tibia +10.8063802,UBERON:0005306,http://purl.obolibrary.org/obo/UBERON_0005306,blastema +10.8085192,CL:0007005,http://purl.obolibrary.org/obo/CL_0007005,notochordal cell +10.8085192,CL:0011110,http://purl.obolibrary.org/obo/CL_0011110,histaminergic neuron +10.8085192,DRUGBANK:DB00001,http://purl.obolibrary.org/obo/DRUGBANK_DB00001,none +10.8085192,DRUGBANK:DB14001,http://purl.obolibrary.org/obo/DRUGBANK_DB14001,none +10.8085192,GO:0015770,http://purl.obolibrary.org/obo/GO_0015770,sucrose transport +10.8085192,GO:0071362,http://purl.obolibrary.org/obo/GO_0071362,cellular response to ether +10.8085192,GO:1901070,http://purl.obolibrary.org/obo/GO_1901070,guanosine-containing compound biosynthetic process +10.8085192,MONDO:0003184,http://purl.obolibrary.org/obo/MONDO_0003184,trachea carcinoma +10.8085192,MONDO:0016935,http://purl.obolibrary.org/obo/MONDO_0016935,partial duplication of chromosome 17 +10.8085192,NCBITaxon:44534,http://purl.obolibrary.org/obo/NCBITaxon_44534,Cellia +10.8085192,NCBITaxon:44537,http://purl.obolibrary.org/obo/NCBITaxon_44537,Pyretophorus +10.8085192,PR:000001866,http://purl.obolibrary.org/obo/PR_000001866,interleukin-4 receptor subunit alpha +10.8085192,PR:000006511,http://purl.obolibrary.org/obo/PR_000006511,disks large homolog 1 +10.8085192,PR:000006725,http://purl.obolibrary.org/obo/PR_000006725,thymidylate kinase +10.8085192,PR:000029532,http://purl.obolibrary.org/obo/PR_000029532,histone H3.3C +10.8085192,PR:P22082,http://purl.obolibrary.org/obo/PR_P22082,none +10.8085192,UBERON:0003665,http://purl.obolibrary.org/obo/UBERON_0003665,post-anal tail muscle +10.8085192,UBERON:0003856,http://purl.obolibrary.org/obo/UBERON_0003856,uncondensed odontogenic mesenchyme +10.8085192,UBERON:0009989,http://purl.obolibrary.org/obo/UBERON_0009989,condyle of tibia +10.8085192,UBERON:0019207,http://purl.obolibrary.org/obo/UBERON_0019207,chorioretinal region +10.8106628,DRUGBANK:DB00424,http://purl.obolibrary.org/obo/DRUGBANK_DB00424,none +10.8106628,DRUGBANK:DB00686,http://purl.obolibrary.org/obo/DRUGBANK_DB00686,none +10.8106628,DRUGBANK:DB11875,http://purl.obolibrary.org/obo/DRUGBANK_DB11875,none +10.8106628,GO:0033038,http://purl.obolibrary.org/obo/GO_0033038,bitter taste receptor activity +10.8106628,GO:0043204,http://purl.obolibrary.org/obo/GO_0043204,perikaryon +10.8106628,HP:0000486,http://purl.obolibrary.org/obo/HP_0000486,Strabismus +10.8106628,MONDO:0005765,http://purl.obolibrary.org/obo/MONDO_0005765,foot and mouth disease +10.8106628,MONDO:0016109,http://purl.obolibrary.org/obo/MONDO_0016109,autosomal recessive distal myopathy +10.8106628,PR:000002076,http://purl.obolibrary.org/obo/PR_000002076,potassium channel subfamily K member 3 +10.8106628,PR:000012189,http://purl.obolibrary.org/obo/PR_000012189,P2X purinoceptor 2 +10.8106628,PR:000015190,http://purl.obolibrary.org/obo/PR_000015190,sodium- and chloride-dependent glycine transporter 2 +10.8106628,PR:000016233,http://purl.obolibrary.org/obo/PR_000016233,telomerase protein component 1 +10.8106628,PR:000016328,http://purl.obolibrary.org/obo/PR_000016328,T-lymphoma invasion and metastasis-inducing protein 1 +10.8106628,PR:Q12468,http://purl.obolibrary.org/obo/PR_Q12468,none +10.8128111,DRUGBANK:DB08903,http://purl.obolibrary.org/obo/DRUGBANK_DB08903,none +10.8128111,DRUGBANK:DB14496,http://purl.obolibrary.org/obo/DRUGBANK_DB14496,none +10.8128111,GO:0004658,http://purl.obolibrary.org/obo/GO_0004658,propionyl-CoA carboxylase activity +10.8128111,GO:0015746,http://purl.obolibrary.org/obo/GO_0015746,citrate transport +10.8128111,GO:0033494,http://purl.obolibrary.org/obo/GO_0033494,ferulate metabolic process +10.8128111,GO:0042723,http://purl.obolibrary.org/obo/GO_0042723,thiamine-containing compound metabolic process +10.8128111,HP:0001941,http://purl.obolibrary.org/obo/HP_0001941,Acidosis +10.8128111,MONDO:0006044,http://purl.obolibrary.org/obo/MONDO_0006044,nephrosclerosis +10.8128111,MONDO:0016950,http://purl.obolibrary.org/obo/MONDO_0016950,partial duplication of the short arm of chromosome 17 +10.8128111,MONDO:0018237,http://purl.obolibrary.org/obo/MONDO_0018237,acrofacial dysostosis +10.8128111,PR:000000043,http://purl.obolibrary.org/obo/PR_000000043,E3 ubiquitin-protein ligase RBX1 +10.8128111,PR:000001218,http://purl.obolibrary.org/obo/PR_000001218,cysteinyl leukotriene receptor 1 +10.8128111,PR:000001803,http://purl.obolibrary.org/obo/PR_000001803,C-C motif chemokine 28 +10.8128111,PR:000003615,http://purl.obolibrary.org/obo/PR_000003615,acid-sensing ion channel 1 +10.8128111,PR:000003739,http://purl.obolibrary.org/obo/PR_000003739,ADAMTS-like protein 2 +10.8128111,PR:000010140,http://purl.obolibrary.org/obo/PR_000010140,mitogen-activated protein kinase kinase kinase 8 +10.8128111,PR:O80925,http://purl.obolibrary.org/obo/PR_O80925,none +10.8128111,SO:0000758,http://purl.obolibrary.org/obo/SO_0000758,double_stranded_cDNA +10.8128111,UBERON:0001144,http://purl.obolibrary.org/obo/UBERON_0001144,testicular vein +10.8149639,CHEBI:35757,http://purl.obolibrary.org/obo/CHEBI_35757,monocarboxylic acid anion +10.8149639,CHEBI:46723,http://purl.obolibrary.org/obo/CHEBI_46723,phosphate mineral +10.8149639,DRUGBANK:DB00552,http://purl.obolibrary.org/obo/DRUGBANK_DB00552,none +10.8149639,DRUGBANK:DB00810,http://purl.obolibrary.org/obo/DRUGBANK_DB00810,none +10.8149639,DRUGBANK:DB01785,http://purl.obolibrary.org/obo/DRUGBANK_DB01785,none +10.8149639,DRUGBANK:DB04741,http://purl.obolibrary.org/obo/DRUGBANK_DB04741,none +10.8149639,DRUGBANK:DB12945,http://purl.obolibrary.org/obo/DRUGBANK_DB12945,none +10.8149639,GO:0016990,http://purl.obolibrary.org/obo/GO_0016990,arginine deiminase activity +10.8149639,GO:0032355,http://purl.obolibrary.org/obo/GO_0032355,response to estradiol +10.8149639,GO:0032409,http://purl.obolibrary.org/obo/GO_0032409,regulation of transporter activity +10.8149639,GO:0051051,http://purl.obolibrary.org/obo/GO_0051051,negative regulation of transport +10.8149639,MONDO:0002713,http://purl.obolibrary.org/obo/MONDO_0002713,epidural spinal canal neoplasm +10.8149639,MONDO:0003208,http://purl.obolibrary.org/obo/MONDO_0003208,breast secretory carcinoma +10.8149639,MONDO:0003709,http://purl.obolibrary.org/obo/MONDO_0003709,agoraphobia +10.8149639,MONDO:0006196,http://purl.obolibrary.org/obo/MONDO_0006196,endometrial serous adenocarcinoma +10.8149639,MONDO:0006686,http://purl.obolibrary.org/obo/MONDO_0006686,brain stem infarction +10.8149639,MONDO:0006827,http://purl.obolibrary.org/obo/MONDO_0006827,lateral medullary syndrome +10.8149639,PR:000007449,http://purl.obolibrary.org/obo/PR_000007449,farnesyl pyrophosphate synthase +10.8149639,PR:000014394,http://purl.obolibrary.org/obo/PR_000014394,none +10.8149639,PR:P15393,http://purl.obolibrary.org/obo/PR_P15393,none +10.8149639,PR:Q42449,http://purl.obolibrary.org/obo/PR_Q42449,none +10.8149639,UBERON:0001792,http://purl.obolibrary.org/obo/UBERON_0001792,ganglionic layer of retina +10.8171214,CHEBI:33300,http://purl.obolibrary.org/obo/CHEBI_33300,pnictogen +10.8171214,CHEBI:8295,http://purl.obolibrary.org/obo/CHEBI_8295,Poly-beta-hydroxybutyrate +10.8171214,DRUGBANK:DB01055,http://purl.obolibrary.org/obo/DRUGBANK_DB01055,none +10.8171214,DRUGBANK:DB09020,http://purl.obolibrary.org/obo/DRUGBANK_DB09020,none +10.8171214,DRUGBANK:DB10970,http://purl.obolibrary.org/obo/DRUGBANK_DB10970,none +10.8171214,DRUGBANK:DB11919,http://purl.obolibrary.org/obo/DRUGBANK_DB11919,none +10.8171214,DRUGBANK:DB13644,http://purl.obolibrary.org/obo/DRUGBANK_DB13644,none +10.8171214,GO:0001820,http://purl.obolibrary.org/obo/GO_0001820,serotonin secretion +10.8171214,GO:0007034,http://purl.obolibrary.org/obo/GO_0007034,vacuolar transport +10.8171214,GO:0034765,http://purl.obolibrary.org/obo/GO_0034765,regulation of ion transmembrane transport +10.8171214,MONDO:0002131,http://purl.obolibrary.org/obo/MONDO_0002131,jaw cancer +10.8171214,MONDO:0002628,http://purl.obolibrary.org/obo/MONDO_0002628,peripheral osteosarcoma +10.8171214,MONDO:0010382,http://purl.obolibrary.org/obo/MONDO_0010382,fragile X-associated tremor/ataxia syndrome +10.8171214,MONDO:0017359,http://purl.obolibrary.org/obo/MONDO_0017359,3-methylglutaconic aciduria +10.8171214,MONDO:0018403,http://purl.obolibrary.org/obo/MONDO_0018403,female infertility due to an implantation defect +10.8171214,MONDO:0019128,http://purl.obolibrary.org/obo/MONDO_0019128,mullerian aplasia +10.8171214,MOP:0005364,http://purl.obolibrary.org/obo/MOP_0005364,none +10.8171214,NCBITaxon:249184,http://purl.obolibrary.org/obo/NCBITaxon_249184,none +10.8171214,PR:000001969,http://purl.obolibrary.org/obo/PR_000001969,urokinase plasminogen activator surface receptor +10.8171214,PR:000004699,http://purl.obolibrary.org/obo/PR_000004699,B-cell lymphoma 3 protein +10.8171214,PR:000017421,http://purl.obolibrary.org/obo/PR_000017421,Wnt inhibitory factor 1 +10.8171214,SO:0000568,http://purl.obolibrary.org/obo/SO_0000568,bidirectional_promoter +10.8171214,UBERON:0002522,http://purl.obolibrary.org/obo/UBERON_0002522,tunica media +10.8171214,UBERON:0007529,http://purl.obolibrary.org/obo/UBERON_0007529,loose mesenchyme tissue +10.8192836,DRUGBANK:DB01612,http://purl.obolibrary.org/obo/DRUGBANK_DB01612,none +10.8192836,DRUGBANK:DB08893,http://purl.obolibrary.org/obo/DRUGBANK_DB08893,none +10.8192836,DRUGBANK:DB15916,http://purl.obolibrary.org/obo/DRUGBANK_DB15916,none +10.8192836,MONDO:0002109,http://purl.obolibrary.org/obo/MONDO_0002109,pituitary cancer +10.8192836,MOP:0003030,http://purl.obolibrary.org/obo/MOP_0003030,none +10.8192836,NCBITaxon:1489938,http://purl.obolibrary.org/obo/NCBITaxon_1489938,none +10.8192836,NCBITaxon:7165,http://purl.obolibrary.org/obo/NCBITaxon_7165,Anopheles gambiae +10.8192836,PR:000005230,http://purl.obolibrary.org/obo/PR_000005230,cadherin-11 +10.8192836,PR:000006340,http://purl.obolibrary.org/obo/PR_000006340,DNA damage-binding protein 1 +10.8192836,PR:000011262,http://purl.obolibrary.org/obo/PR_000011262,NLR family CARD domain-containing protein 4 +10.8192836,PR:000012759,http://purl.obolibrary.org/obo/PR_000012759,"presequence protease, mitochondrial" +10.8192836,PR:000015054,http://purl.obolibrary.org/obo/PR_000015054,equilibrative nucleoside transporter 1 +10.8192836,PR:P13181,http://purl.obolibrary.org/obo/PR_P13181,none +10.8192836,PR:P38710,http://purl.obolibrary.org/obo/PR_P38710,none +10.8192836,UBERON:0002474,http://purl.obolibrary.org/obo/UBERON_0002474,cerebellar peduncular complex +10.8214504,CHEBI:25555,http://purl.obolibrary.org/obo/CHEBI_25555,nitrogen atom +10.8214504,DRUGBANK:DB00799,http://purl.obolibrary.org/obo/DRUGBANK_DB00799,none +10.8214504,DRUGBANK:DB01816,http://purl.obolibrary.org/obo/DRUGBANK_DB01816,none +10.8214504,GO:0004551,http://purl.obolibrary.org/obo/GO_0004551,nucleotide diphosphatase activity +10.8214504,MONDO:0005636,http://purl.obolibrary.org/obo/MONDO_0005636,adenosarcoma +10.8214504,MONDO:0018637,http://purl.obolibrary.org/obo/MONDO_0018637,familial chylomicronemia syndrome +10.8214504,MONDO:0018648,http://purl.obolibrary.org/obo/MONDO_0018648,Keratocystic odontogenic tumor +10.8214504,MONDO:0021631,http://purl.obolibrary.org/obo/MONDO_0021631,brain astrocytoma +10.8214504,NCBITaxon:30843,http://purl.obolibrary.org/obo/NCBITaxon_30843,none +10.8214504,PR:000000018,http://purl.obolibrary.org/obo/PR_000000018,latent TGF-beta-binding protein +10.8214504,PR:000001678,http://purl.obolibrary.org/obo/PR_000001678,trace amine-associated receptor 1-4 +10.8214504,PR:000003124,http://purl.obolibrary.org/obo/PR_000003124,Bcl-2-binding component 3 +10.8214504,PR:000007313,http://purl.obolibrary.org/obo/PR_000007313,fatty acid-binding protein 5 +10.8214504,PR:000023126,http://purl.obolibrary.org/obo/PR_000023126,none +10.8214504,PR:P18616,http://purl.obolibrary.org/obo/PR_P18616,none +10.8214504,PR:P33335,http://purl.obolibrary.org/obo/PR_P33335,none +10.8214504,PR:Q56Y52,http://purl.obolibrary.org/obo/PR_Q56Y52,none +10.8214504,UBERON:0000402,http://purl.obolibrary.org/obo/UBERON_0000402,nasal vestibule +10.823622,DRUGBANK:DB00374,http://purl.obolibrary.org/obo/DRUGBANK_DB00374,none +10.823622,DRUGBANK:DB11592,http://purl.obolibrary.org/obo/DRUGBANK_DB11592,none +10.823622,GO:0006772,http://purl.obolibrary.org/obo/GO_0006772,thiamine metabolic process +10.823622,GO:0047646,http://purl.obolibrary.org/obo/GO_0047646,alkanal monooxygenase (FMN-linked) activity +10.823622,GO:0090391,http://purl.obolibrary.org/obo/GO_0090391,granum assembly +10.823622,HP:0001662,http://purl.obolibrary.org/obo/HP_0001662,Bradycardia +10.823622,MONDO:0006015,http://purl.obolibrary.org/obo/MONDO_0006015,Waterhouse-Friderichsen syndrome +10.823622,MONDO:0017356,http://purl.obolibrary.org/obo/MONDO_0017356,inborn disorder of ornithine metabolism +10.823622,NCBITaxon:112252,http://purl.obolibrary.org/obo/NCBITaxon_112252,Fungi incertae sedis +10.823622,NCBITaxon:603452,http://purl.obolibrary.org/obo/NCBITaxon_603452,none +10.823622,PR:000014282,http://purl.obolibrary.org/obo/PR_000014282,ribosomal protein S6 kinase alpha-1 +10.823622,PR:P06701,http://purl.obolibrary.org/obo/PR_P06701,none +10.823622,PR:P15315,http://purl.obolibrary.org/obo/PR_P15315,none +10.823622,PR:P22808,http://purl.obolibrary.org/obo/PR_P22808,none +10.823622,PR:P32567,http://purl.obolibrary.org/obo/PR_P32567,none +10.823622,PR:Q00417,http://purl.obolibrary.org/obo/PR_Q00417,none +10.823622,PR:Q9CAA9,http://purl.obolibrary.org/obo/PR_Q9CAA9,none +10.823622,PR:Q9SYI2,http://purl.obolibrary.org/obo/PR_Q9SYI2,none +10.823622,UBERON:0003066,http://purl.obolibrary.org/obo/UBERON_0003066,pharyngeal arch 2 +10.8257983,DRUGBANK:DB03912,http://purl.obolibrary.org/obo/DRUGBANK_DB03912,none +10.8257983,DRUGBANK:DB06696,http://purl.obolibrary.org/obo/DRUGBANK_DB06696,none +10.8257983,DRUGBANK:DB13259,http://purl.obolibrary.org/obo/DRUGBANK_DB13259,none +10.8257983,GO:0001783,http://purl.obolibrary.org/obo/GO_0001783,B cell apoptotic process +10.8257983,GO:0006399,http://purl.obolibrary.org/obo/GO_0006399,tRNA metabolic process +10.8257983,GO:0033925,http://purl.obolibrary.org/obo/GO_0033925,mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity +10.8257983,GO:0036161,http://purl.obolibrary.org/obo/GO_0036161,calcitonin secretion +10.8257983,GO:0042415,http://purl.obolibrary.org/obo/GO_0042415,norepinephrine metabolic process +10.8257983,HP:0010549,http://purl.obolibrary.org/obo/HP_0010549,Weakness due to upper motor neuron dysfunction +10.8257983,MONDO:0017319,http://purl.obolibrary.org/obo/MONDO_0017319,hereditary elliptocytosis +10.8257983,MONDO:0025096,http://purl.obolibrary.org/obo/MONDO_0025096,malignant catarrh +10.8257983,NCBITaxon:163147,http://purl.obolibrary.org/obo/NCBITaxon_163147,none +10.8257983,PR:000003632,http://purl.obolibrary.org/obo/PR_000003632,"aconitate hydratase, mitochondrial" +10.8257983,PR:000010329,http://purl.obolibrary.org/obo/PR_000010329,tyrosine-protein kinase Mer +10.8257983,PR:000012900,http://purl.obolibrary.org/obo/PR_000012900,phorbol-12-myristate-13-acetate-induced protein 1 +10.8257983,PR:000015041,http://purl.obolibrary.org/obo/PR_000015041,solute carrier family 26 member 6 +10.8257983,PR:P18625,http://purl.obolibrary.org/obo/PR_P18625,none +10.8257983,PR:P53082,http://purl.obolibrary.org/obo/PR_P53082,none +10.8257983,UBERON:0001575,http://purl.obolibrary.org/obo/UBERON_0001575,extrinsic muscle of tongue +10.8279793,DRUGBANK:DB04185,http://purl.obolibrary.org/obo/DRUGBANK_DB04185,none +10.8279793,DRUGBANK:DB14350,http://purl.obolibrary.org/obo/DRUGBANK_DB14350,none +10.8279793,GO:0004614,http://purl.obolibrary.org/obo/GO_0004614,phosphoglucomutase activity +10.8279793,GO:0004914,http://purl.obolibrary.org/obo/GO_0004914,interleukin-5 receptor activity +10.8279793,GO:0006114,http://purl.obolibrary.org/obo/GO_0006114,glycerol biosynthetic process +10.8279793,GO:0010109,http://purl.obolibrary.org/obo/GO_0010109,regulation of photosynthesis +10.8279793,GO:0016842,http://purl.obolibrary.org/obo/GO_0016842,amidine-lyase activity +10.8279793,GO:0016889,http://purl.obolibrary.org/obo/GO_0016889,"endodeoxyribonuclease activity, producing 3'-phosphomonoesters" +10.8279793,GO:0032881,http://purl.obolibrary.org/obo/GO_0032881,regulation of polysaccharide metabolic process +10.8279793,GO:0048241,http://purl.obolibrary.org/obo/GO_0048241,epinephrine transport +10.8279793,GO:1904317,http://purl.obolibrary.org/obo/GO_1904317,cellular response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine +10.8279793,MONDO:0002368,http://purl.obolibrary.org/obo/MONDO_0002368,papillary serous cystadenocarcinoma +10.8279793,MONDO:0018731,http://purl.obolibrary.org/obo/MONDO_0018731,lethal multiple congenital anomalies/dysmorphic syndrome +10.8279793,MONDO:0019440,http://purl.obolibrary.org/obo/MONDO_0019440,wild type ABeta2M amyloidosis +10.8279793,MONDO:0019694,http://purl.obolibrary.org/obo/MONDO_0019694,spondylodysplastic dysplasia +10.8279793,NCBITaxon:11653,http://purl.obolibrary.org/obo/NCBITaxon_11653,Ovine/caprine lentivirus group +10.8279793,NCBITaxon:215408,http://purl.obolibrary.org/obo/NCBITaxon_215408,none +10.8279793,PR:000004430,http://purl.obolibrary.org/obo/PR_000004430,protein atonal homolog 1 +10.8279793,PR:000006364,http://purl.obolibrary.org/obo/PR_000006364,ATP-dependent RNA helicase DDX3X +10.8279793,PR:000012191,http://purl.obolibrary.org/obo/PR_000012191,P2X purinoceptor 4 +10.8279793,PR:000015410,http://purl.obolibrary.org/obo/PR_000015410,sorbitol dehydrogenase +10.8279793,UBERON:0002254,http://purl.obolibrary.org/obo/UBERON_0002254,thyroglossal duct +10.8301651,CHEBI:63957,http://purl.obolibrary.org/obo/CHEBI_63957,adenosine A1 receptor antagonist +10.8301651,DRUGBANK:DB01990,http://purl.obolibrary.org/obo/DRUGBANK_DB01990,none +10.8301651,GO:0000808,http://purl.obolibrary.org/obo/GO_0000808,origin recognition complex +10.8301651,GO:0008361,http://purl.obolibrary.org/obo/GO_0008361,regulation of cell size +10.8301651,GO:0009132,http://purl.obolibrary.org/obo/GO_0009132,nucleoside diphosphate metabolic process +10.8301651,MONDO:0006427,http://purl.obolibrary.org/obo/MONDO_0006427,spindle cell melanoma +10.8301651,MONDO:0006894,http://purl.obolibrary.org/obo/MONDO_0006894,patellofemoral pain syndrome +10.8301651,MONDO:0018737,http://purl.obolibrary.org/obo/MONDO_0018737,catastrophic antiphospholipid syndrome +10.8301651,MONDO:0019486,http://purl.obolibrary.org/obo/MONDO_0019486,myoclonic epilepsy of infancy +10.8301651,PR:000008487,http://purl.obolibrary.org/obo/PR_000008487,histone deacetylase 8 +10.8301651,PR:000008631,http://purl.obolibrary.org/obo/PR_000008631,high mobility group protein B2 +10.8301651,PR:000009686,http://purl.obolibrary.org/obo/PR_000009686,serine/threonine-protein kinase LATS1 +10.8301651,PR:000013941,http://purl.obolibrary.org/obo/PR_000013941,regucalcin +10.8301651,PR:000015886,http://purl.obolibrary.org/obo/PR_000015886,synaptopodin +10.8301651,PR:P53331,http://purl.obolibrary.org/obo/PR_P53331,none +10.8301651,SO:0001238,http://purl.obolibrary.org/obo/SO_0001238,major_TSS +10.8323557,DRUGBANK:DB08833,http://purl.obolibrary.org/obo/DRUGBANK_DB08833,none +10.8323557,DRUGBANK:DB14674,http://purl.obolibrary.org/obo/DRUGBANK_DB14674,none +10.8323557,GO:0009657,http://purl.obolibrary.org/obo/GO_0009657,plastid organization +10.8323557,GO:0016872,http://purl.obolibrary.org/obo/GO_0016872,intramolecular lyase activity +10.8323557,GO:0050851,http://purl.obolibrary.org/obo/GO_0050851,antigen receptor-mediated signaling pathway +10.8323557,GO:0050866,http://purl.obolibrary.org/obo/GO_0050866,negative regulation of cell activation +10.8323557,MONDO:0003427,http://purl.obolibrary.org/obo/MONDO_0003427,bronchus adenoma +10.8323557,MONDO:0005942,http://purl.obolibrary.org/obo/MONDO_0005942,Reye syndrome +10.8323557,MONDO:0015830,http://purl.obolibrary.org/obo/MONDO_0015830,partial bilateral aplasia of the mullerian ducts +10.8323557,PR:000001416,http://purl.obolibrary.org/obo/PR_000001416,neurotensin receptor +10.8323557,PR:000003769,http://purl.obolibrary.org/obo/PR_000003769,alcohol dehydrogenase 1C +10.8323557,PR:000003968,http://purl.obolibrary.org/obo/PR_000003968,"alkaline phosphatase, tissue-nonspecific isozyme" +10.8323557,PR:000007145,http://purl.obolibrary.org/obo/PR_000007145,epidermal growth factor receptor substrate 15 +10.8323557,PR:000007527,http://purl.obolibrary.org/obo/PR_000007527,mitochondrial fission 1 protein +10.8323557,PR:000011138,http://purl.obolibrary.org/obo/PR_000011138,protein kinase C-binding protein NELL2 +10.8323557,PR:000016272,http://purl.obolibrary.org/obo/PR_000016272,transcription factor EB +10.8323557,PR:P01322,http://purl.obolibrary.org/obo/PR_P01322,none +10.8323557,PR:P34909,http://purl.obolibrary.org/obo/PR_P34909,none +10.8323557,SO:0001244,http://purl.obolibrary.org/obo/SO_0001244,pre_miRNA +10.8323557,UBERON:0003673,http://purl.obolibrary.org/obo/UBERON_0003673,ligamentum flavum +10.8345511,DRUGBANK:DB13025,http://purl.obolibrary.org/obo/DRUGBANK_DB13025,none +10.8345511,GO:0016691,http://purl.obolibrary.org/obo/GO_0016691,chloride peroxidase activity +10.8345511,GO:0019221,http://purl.obolibrary.org/obo/GO_0019221,cytokine-mediated signaling pathway +10.8345511,MONDO:0000958,http://purl.obolibrary.org/obo/MONDO_0000958,neuroretinitis +10.8345511,MONDO:0001830,http://purl.obolibrary.org/obo/MONDO_0001830,somatization disorder +10.8345511,MONDO:0003579,http://purl.obolibrary.org/obo/MONDO_0003579,retinal nerve fibre layer disorder +10.8345511,MONDO:0009710,http://purl.obolibrary.org/obo/MONDO_0009710,myotonia congenita +10.8345511,MONDO:0031014,http://purl.obolibrary.org/obo/MONDO_0031014,autoimmune gastritis +10.8345511,MONDO:0043735,http://purl.obolibrary.org/obo/MONDO_0043735,osteoradionecrosis +10.8345511,NCBITaxon:10257,http://purl.obolibrary.org/obo/NCBITaxon_10257,Parapoxvirus +10.8345511,PR:000008352,http://purl.obolibrary.org/obo/PR_000008352,heat-stable enterotoxin receptor +10.8345511,PR:000010805,http://purl.obolibrary.org/obo/PR_000010805,"myosin-binding protein C, cardiac-type" +10.8345511,UBERON:0001391,http://purl.obolibrary.org/obo/UBERON_0001391,popliteus muscle +10.8345511,UBERON:0002426,http://purl.obolibrary.org/obo/UBERON_0002426,chest muscle +10.8345511,UBERON:0013731,http://purl.obolibrary.org/obo/UBERON_0013731,basilar papilla +10.8367513,GO:0001917,http://purl.obolibrary.org/obo/GO_0001917,photoreceptor inner segment +10.8367513,GO:0022829,http://purl.obolibrary.org/obo/GO_0022829,wide pore channel activity +10.8367513,GO:0043455,http://purl.obolibrary.org/obo/GO_0043455,regulation of secondary metabolic process +10.8367513,MONDO:0001244,http://purl.obolibrary.org/obo/MONDO_0001244,vitamin K deficiency hemorrhagic disease +10.8367513,MONDO:0005017,http://purl.obolibrary.org/obo/MONDO_0005017,diffuse gastric adenocarcinoma +10.8367513,MONDO:0006403,http://purl.obolibrary.org/obo/MONDO_0006403,salivary gland carcinoma ex pleomorphic adenoma +10.8367513,MONDO:0017771,http://purl.obolibrary.org/obo/MONDO_0017771,Mayer-Rokitansky-Kuster-Hauser syndrome +10.8367513,PR:000006935,http://purl.obolibrary.org/obo/PR_000006935,prolyl hydroxylase EGLN2 +10.8367513,PR:000012094,http://purl.obolibrary.org/obo/PR_000012094,mitochondrial inner membrane protein OXA1L +10.8367513,PR:000015621,http://purl.obolibrary.org/obo/PR_000015621,spermidine synthase +10.8367513,PR:P35084,http://purl.obolibrary.org/obo/PR_P35084,none +10.8367513,PR:P36224,http://purl.obolibrary.org/obo/PR_P36224,none +10.8367513,UBERON:0011088,http://purl.obolibrary.org/obo/UBERON_0011088,ligament of knee joint +10.8389563,CHEBI:39144,http://purl.obolibrary.org/obo/CHEBI_39144,Lewis base +10.8389563,CHEBI:66921,http://purl.obolibrary.org/obo/CHEBI_66921,none +10.8389563,DRUGBANK:DB00979,http://purl.obolibrary.org/obo/DRUGBANK_DB00979,none +10.8389563,DRUGBANK:DB04263,http://purl.obolibrary.org/obo/DRUGBANK_DB04263,none +10.8389563,DRUGBANK:DB14239,http://purl.obolibrary.org/obo/DRUGBANK_DB14239,none +10.8389563,GO:0000030,http://purl.obolibrary.org/obo/GO_0000030,mannosyltransferase activity +10.8389563,GO:0043386,http://purl.obolibrary.org/obo/GO_0043386,mycotoxin biosynthetic process +10.8389563,MONDO:0001515,http://purl.obolibrary.org/obo/MONDO_0001515,corneal degeneration +10.8389563,MONDO:0004926,http://purl.obolibrary.org/obo/MONDO_0004926,dacryocystitis +10.8389563,MONDO:0006215,http://purl.obolibrary.org/obo/MONDO_0006215,gallbladder adenocarcinoma +10.8389563,MONDO:0006597,http://purl.obolibrary.org/obo/MONDO_0006597,photosensitivity disease +10.8389563,MONDO:0009796,http://purl.obolibrary.org/obo/MONDO_0009796,ornithine aminotransferase deficiency +10.8389563,MONDO:0015534,http://purl.obolibrary.org/obo/MONDO_0015534,juvenile xanthogranuloma +10.8389563,MONDO:0016911,http://purl.obolibrary.org/obo/MONDO_0016911,partial deletion of the long arm of chromosome 13 +10.8389563,NCBITaxon:10559,http://purl.obolibrary.org/obo/NCBITaxon_10559,none +10.8389563,PR:000002189,http://purl.obolibrary.org/obo/PR_000002189,FAS-associated death domain protein +10.8389563,PR:000007555,http://purl.obolibrary.org/obo/PR_000007555,filamin-A +10.8389563,PR:000008687,http://purl.obolibrary.org/obo/PR_000008687,homeobox protein Hox-A10 +10.8389563,PR:000015728,http://purl.obolibrary.org/obo/PR_000015728,stanniocalcin-1 +10.8389563,UBERON:0009032,http://purl.obolibrary.org/obo/UBERON_0009032,right pulmonary vein +10.8411663,CL:0000696,http://purl.obolibrary.org/obo/CL_0000696,PP cell +10.8411663,DRUGBANK:DB11948,http://purl.obolibrary.org/obo/DRUGBANK_DB11948,none +10.8411663,GO:0001940,http://purl.obolibrary.org/obo/GO_0001940,male pronucleus +10.8411663,GO:0009063,http://purl.obolibrary.org/obo/GO_0009063,cellular amino acid catabolic process +10.8411663,MONDO:0001748,http://purl.obolibrary.org/obo/MONDO_0001748,maxillary sinus carcinoma +10.8411663,MONDO:0003629,http://purl.obolibrary.org/obo/MONDO_0003629,uterine corpus serous adenocarcinoma +10.8411663,MONDO:0017042,http://purl.obolibrary.org/obo/MONDO_0017042,thanatophoric dysplasia +10.8411663,MONDO:0018414,http://purl.obolibrary.org/obo/MONDO_0018414,female infertility due to an implantation defect of genetic origin +10.8411663,MONDO:0019833,http://purl.obolibrary.org/obo/MONDO_0019833,pituitary hormone deficiency from tumoral origin +10.8411663,PR:000003746,http://purl.obolibrary.org/obo/PR_000003746,double-stranded RNA-specific editase 1 +10.8411663,PR:000007009,http://purl.obolibrary.org/obo/PR_000007009,neutrophil elastase +10.8411663,PR:000011045,http://purl.obolibrary.org/obo/PR_000011045,nuclear receptor coactivator 6 +10.8411663,PR:000011504,http://purl.obolibrary.org/obo/PR_000011504,protein numb +10.8411663,PR:000017031,http://purl.obolibrary.org/obo/PR_000017031,unique cartilage matrix-associated protein +10.8411663,SO:0000029,http://purl.obolibrary.org/obo/SO_0000029,WC_base_pair +10.8433811,CHEBI:49637,http://purl.obolibrary.org/obo/CHEBI_49637,hydrogen atom +10.8433811,CHEBI:59724,http://purl.obolibrary.org/obo/CHEBI_59724,ribonucleoside triphosphate oxoanion +10.8433811,CHEBI:61966,http://purl.obolibrary.org/obo/CHEBI_61966,metabotropic glutamate receptor agonist +10.8433811,DRUGBANK:DB04932,http://purl.obolibrary.org/obo/DRUGBANK_DB04932,none +10.8433811,DRUGBANK:DB08813,http://purl.obolibrary.org/obo/DRUGBANK_DB08813,none +10.8433811,DRUGBANK:DB15884,http://purl.obolibrary.org/obo/DRUGBANK_DB15884,none +10.8433811,GO:0004059,http://purl.obolibrary.org/obo/GO_0004059,aralkylamine N-acetyltransferase activity +10.8433811,GO:0046688,http://purl.obolibrary.org/obo/GO_0046688,response to copper ion +10.8433811,MONDO:0005675,http://purl.obolibrary.org/obo/MONDO_0005675,border disease +10.8433811,MONDO:0007342,http://purl.obolibrary.org/obo/MONDO_0007342,clubfoot +10.8433811,MONDO:0016046,http://purl.obolibrary.org/obo/MONDO_0016046,familial clubfoot with or without associated lower limb anomalies +10.8433811,PR:000001614,http://purl.obolibrary.org/obo/PR_000001614,muscarinic acetylcholine receptor M2 +10.8433811,PR:000001914,http://purl.obolibrary.org/obo/PR_000001914,potassium channel subfamily K member 2 +10.8433811,PR:000005219,http://purl.obolibrary.org/obo/PR_000005219,parafibromin +10.8433811,PR:000010218,http://purl.obolibrary.org/obo/PR_000010218,methyl-CpG-binding domain protein 4 +10.8433811,PR:000014432,http://purl.obolibrary.org/obo/PR_000014432,scaffold attachment factor B1 +10.8433811,SO:1000017,http://purl.obolibrary.org/obo/SO_1000017,transversion +10.8456009,DRUGBANK:DB06650,http://purl.obolibrary.org/obo/DRUGBANK_DB06650,none +10.8456009,DRUGBANK:DB06729,http://purl.obolibrary.org/obo/DRUGBANK_DB06729,none +10.8456009,GO:0009185,http://purl.obolibrary.org/obo/GO_0009185,ribonucleoside diphosphate metabolic process +10.8456009,GO:0036093,http://purl.obolibrary.org/obo/GO_0036093,germ cell proliferation +10.8456009,GO:0060473,http://purl.obolibrary.org/obo/GO_0060473,cortical granule +10.8456009,MONDO:0003241,http://purl.obolibrary.org/obo/MONDO_0003241,central nervous system hemangioma +10.8456009,MONDO:0003661,http://purl.obolibrary.org/obo/MONDO_0003661,breast lymphoma +10.8456009,MONDO:0009162,http://purl.obolibrary.org/obo/MONDO_0009162,Ellis-van Creveld syndrome +10.8456009,MONDO:0016678,http://purl.obolibrary.org/obo/MONDO_0016678,maternal disease-related embryofetopathy +10.8456009,PR:000000781,http://purl.obolibrary.org/obo/PR_000000781,voltage-gated potassium channel KCNC1 +10.8456009,PR:000005455,http://purl.obolibrary.org/obo/PR_000005455,neuronal acetylcholine receptor subunit alpha-2 +10.8456009,PR:000008257,http://purl.obolibrary.org/obo/PR_000008257,rhodopsin kinase GRK1 +10.8456009,PR:000010336,http://purl.obolibrary.org/obo/PR_000010336,methionine aminopeptidase 1 +10.8456009,PR:000024839,http://purl.obolibrary.org/obo/PR_000024839,heat shock 70 kDa protein 1B +10.8456009,PR:P04050,http://purl.obolibrary.org/obo/PR_P04050,none +10.8456009,PR:Q9FI78,http://purl.obolibrary.org/obo/PR_Q9FI78,none +10.8456009,PR:Q9LKL2,http://purl.obolibrary.org/obo/PR_Q9LKL2,none +10.8478256,DRUGBANK:DB04714,http://purl.obolibrary.org/obo/DRUGBANK_DB04714,none +10.8478256,DRUGBANK:DB12179,http://purl.obolibrary.org/obo/DRUGBANK_DB12179,none +10.8478256,GO:0042982,http://purl.obolibrary.org/obo/GO_0042982,amyloid precursor protein metabolic process +10.8478256,GO:0090659,http://purl.obolibrary.org/obo/GO_0090659,walking behavior +10.8478256,MONDO:0003812,http://purl.obolibrary.org/obo/MONDO_0003812,ovarian endometrial cancer +10.8478256,MONDO:0019457,http://purl.obolibrary.org/obo/MONDO_0019457,therapy related acute myeloid leukemia and myelodysplastic syndrome +10.8478256,MONDO:0043009,http://purl.obolibrary.org/obo/MONDO_0043009,genetic lethal multiple congenital anomalies/dysmorphic syndrome +10.8478256,PR:000007893,http://purl.obolibrary.org/obo/PR_000007893,GTP cyclohydrolase 1 +10.8478256,PR:000010714,http://purl.obolibrary.org/obo/PR_000010714,protein LYRIC +10.8478256,PR:000014270,http://purl.obolibrary.org/obo/PR_000014270,40S ribosomal protein S27 +10.8478256,PR:P16356,http://purl.obolibrary.org/obo/PR_P16356,none +10.8478256,SO:0001965,http://purl.obolibrary.org/obo/SO_0001965,8_oxoguanine +10.8478256,UBERON:0001653,http://purl.obolibrary.org/obo/UBERON_0001653,facial vein +10.8478256,UBERON:0002306,http://purl.obolibrary.org/obo/UBERON_0002306,nasal mucus +10.8478256,UBERON:0003061,http://purl.obolibrary.org/obo/UBERON_0003061,blood island +10.8478256,UBERON:0006125,http://purl.obolibrary.org/obo/UBERON_0006125,subdivision of diagonal band +10.8478256,UBERON:0016553,http://purl.obolibrary.org/obo/UBERON_0016553,respiratory system mucus +10.8500552,CL:0002212,http://purl.obolibrary.org/obo/CL_0002212,type II muscle cell +10.8500552,DRUGBANK:DB00731,http://purl.obolibrary.org/obo/DRUGBANK_DB00731,none +10.8500552,DRUGBANK:DB01155,http://purl.obolibrary.org/obo/DRUGBANK_DB01155,none +10.8500552,DRUGBANK:DB09296,http://purl.obolibrary.org/obo/DRUGBANK_DB09296,none +10.8500552,DRUGBANK:DB10660,http://purl.obolibrary.org/obo/DRUGBANK_DB10660,none +10.8500552,GO:0006842,http://purl.obolibrary.org/obo/GO_0006842,tricarboxylic acid transport +10.8500552,GO:0007019,http://purl.obolibrary.org/obo/GO_0007019,microtubule depolymerization +10.8500552,HP:0100763,http://purl.obolibrary.org/obo/HP_0100763,Abnormality of the lymphatic system +10.8500552,MONDO:0009537,http://purl.obolibrary.org/obo/MONDO_0009537,lymphoid interstitial pneumonia +10.8500552,MONDO:0019450,http://purl.obolibrary.org/obo/MONDO_0019450,lissencephaly with cerebellar hypoplasia +10.8500552,MONDO:0043982,http://purl.obolibrary.org/obo/MONDO_0043982,cubital tunnel syndrome +10.8500552,PR:000003107,http://purl.obolibrary.org/obo/PR_000003107,mitogen-activated protein kinase 14 +10.8500552,PR:000006276,http://purl.obolibrary.org/obo/PR_000006276,death-associated protein kinase 1 +10.8500552,PR:000023708,http://purl.obolibrary.org/obo/PR_000023708,none +10.8500552,PR:000050042,http://purl.obolibrary.org/obo/PR_000050042,homer protein homolog +10.8500552,UBERON:0002639,http://purl.obolibrary.org/obo/UBERON_0002639,midbrain reticular formation +10.8500552,UBERON:0007230,http://purl.obolibrary.org/obo/UBERON_0007230,lateral vestibular nucleus +10.8500552,UBERON:0008993,http://purl.obolibrary.org/obo/UBERON_0008993,habenular nucleus +10.8500552,UBERON:0012330,http://purl.obolibrary.org/obo/UBERON_0012330,nasal-associated lymphoid tissue +10.8522899,CHEBI:65057,http://purl.obolibrary.org/obo/CHEBI_65057,adenosine A1 receptor agonist +10.8522899,DRUGBANK:DB02640,http://purl.obolibrary.org/obo/DRUGBANK_DB02640,none +10.8522899,DRUGBANK:DB11112,http://purl.obolibrary.org/obo/DRUGBANK_DB11112,none +10.8522899,GO:0047617,http://purl.obolibrary.org/obo/GO_0047617,acyl-CoA hydrolase activity +10.8522899,PR:000003763,http://purl.obolibrary.org/obo/PR_000003763,alpha-adducin +10.8522899,PR:000009860,http://purl.obolibrary.org/obo/PR_000009860,lamin-B1 +10.8522899,PR:000010210,http://purl.obolibrary.org/obo/PR_000010210,mitochondrial antiviral-signaling protein +10.8522899,PR:000011163,http://purl.obolibrary.org/obo/PR_000011163,nuclear factor of activated T-cells 5 +10.8522899,PR:000016143,http://purl.obolibrary.org/obo/PR_000016143,T-box transcription factor TBX1 +10.8522899,PR:Q0PCS3,http://purl.obolibrary.org/obo/PR_Q0PCS3,none +10.8522899,UBERON:0002354,http://purl.obolibrary.org/obo/UBERON_0002354,cardiac Purkinje fiber +10.8522899,UBERON:0002379,http://purl.obolibrary.org/obo/UBERON_0002379,perineal muscle +10.8545295,CHEBI:19237,http://purl.obolibrary.org/obo/CHEBI_19237,2'-deoxyadenosine 5'-phosphate +10.8545295,CHEBI:19239,http://purl.obolibrary.org/obo/CHEBI_19239,2'-deoxyadenosine phosphate +10.8545295,CHEBI:23612,http://purl.obolibrary.org/obo/CHEBI_23612,deoxyadenosine phosphate +10.8545295,CHEBI:38807,http://purl.obolibrary.org/obo/CHEBI_38807,calcium channel agonist +10.8545295,CHEBI:61297,http://purl.obolibrary.org/obo/CHEBI_61297,adenyl deoxyribonucleotide +10.8545295,DRUGBANK:DB00580,http://purl.obolibrary.org/obo/DRUGBANK_DB00580,none +10.8545295,DRUGBANK:DB06144,http://purl.obolibrary.org/obo/DRUGBANK_DB06144,none +10.8545295,DRUGBANK:DB06204,http://purl.obolibrary.org/obo/DRUGBANK_DB06204,none +10.8545295,DRUGBANK:DB08633,http://purl.obolibrary.org/obo/DRUGBANK_DB08633,none +10.8545295,DRUGBANK:DB11541,http://purl.obolibrary.org/obo/DRUGBANK_DB11541,none +10.8545295,GO:0004531,http://purl.obolibrary.org/obo/GO_0004531,deoxyribonuclease II activity +10.8545295,GO:0071554,http://purl.obolibrary.org/obo/GO_0071554,cell wall organization or biogenesis +10.8545295,HP:0002754,http://purl.obolibrary.org/obo/HP_0002754,Osteomyelitis +10.8545295,MONDO:0018939,http://purl.obolibrary.org/obo/MONDO_0018939,muscle-eye-brain disease +10.8545295,NCBITaxon:11619,http://purl.obolibrary.org/obo/NCBITaxon_11619,none +10.8545295,PR:000004648,http://purl.obolibrary.org/obo/PR_000004648,spliceosome RNA helicase BAT1 +10.8545295,PR:000016330,http://purl.obolibrary.org/obo/PR_000016330,tyrosine-protein kinase receptor Tie-1 +10.8545295,PR:Q42440,http://purl.obolibrary.org/obo/PR_Q42440,none +10.8545295,UBERON:0003957,http://purl.obolibrary.org/obo/UBERON_0003957,Bruch's membrane +10.8567742,GO:0006537,http://purl.obolibrary.org/obo/GO_0006537,glutamate biosynthetic process +10.8567742,GO:0009867,http://purl.obolibrary.org/obo/GO_0009867,jasmonic acid mediated signaling pathway +10.8567742,GO:0010232,http://purl.obolibrary.org/obo/GO_0010232,vascular transport +10.8567742,GO:1901378,http://purl.obolibrary.org/obo/GO_1901378,organic heteropentacyclic compound biosynthetic process +10.8567742,GO:1904062,http://purl.obolibrary.org/obo/GO_1904062,regulation of cation transmembrane transport +10.8567742,MONDO:0003111,http://purl.obolibrary.org/obo/MONDO_0003111,gastric neuroendocrine neoplasm +10.8567742,MONDO:0005505,http://purl.obolibrary.org/obo/MONDO_0005505,dysembryoplastic neuroepithelial tumor +10.8567742,MONDO:0015927,http://purl.obolibrary.org/obo/MONDO_0015927,idiopathic eosinophilic pneumonia +10.8567742,MONDO:0018356,http://purl.obolibrary.org/obo/MONDO_0018356,secondary neonatal autoimmune disease +10.8567742,MONDO:0021098,http://purl.obolibrary.org/obo/MONDO_0021098,papillomatosis +10.8567742,PR:000002282,http://purl.obolibrary.org/obo/PR_000002282,CASP8 and FADD-like apoptosis regulator +10.8567742,PR:000013208,http://purl.obolibrary.org/obo/PR_000013208,proteoglycan 4 +10.8567742,PR:000015608,http://purl.obolibrary.org/obo/PR_000015608,3-oxo-5-alpha-steroid 4-dehydrogenase 2 +10.8567742,PR:000016475,http://purl.obolibrary.org/obo/PR_000016475,tumor necrosis factor-inducible gene 6 protein +10.8567742,PR:000044813,http://purl.obolibrary.org/obo/PR_000044813,glycoprotein hormone beta chain +10.8567742,PR:Q1ECW6,http://purl.obolibrary.org/obo/PR_Q1ECW6,none +10.8567742,PR:Q5ZHQ2,http://purl.obolibrary.org/obo/PR_Q5ZHQ2,none +10.8567742,PR:Q9SS67,http://purl.obolibrary.org/obo/PR_Q9SS67,none +10.8567742,UBERON:0000361,http://purl.obolibrary.org/obo/UBERON_0000361,red bone marrow +10.8567742,UBERON:0004880,http://purl.obolibrary.org/obo/UBERON_0004880,chordamesoderm +10.8567742,UBERON:0006061,http://purl.obolibrary.org/obo/UBERON_0006061,process of vertebra +10.8590239,DRUGBANK:DB15579,http://purl.obolibrary.org/obo/DRUGBANK_DB15579,none +10.8590239,GO:0015942,http://purl.obolibrary.org/obo/GO_0015942,formate metabolic process +10.8590239,GO:0019695,http://purl.obolibrary.org/obo/GO_0019695,choline metabolic process +10.8590239,GO:0046513,http://purl.obolibrary.org/obo/GO_0046513,ceramide biosynthetic process +10.8590239,MONDO:0002395,http://purl.obolibrary.org/obo/MONDO_0002395,renal adenoma +10.8590239,MONDO:0002688,http://purl.obolibrary.org/obo/MONDO_0002688,duodenal obstruction +10.8590239,MONDO:0005777,http://purl.obolibrary.org/obo/MONDO_0005777,granuloma inguinale +10.8590239,MONDO:0017658,http://purl.obolibrary.org/obo/MONDO_0017658,hyperekplexia +10.8590239,MONDO:0023122,http://purl.obolibrary.org/obo/MONDO_0023122,familial prostate carcinoma +10.8590239,PR:000007356,http://purl.obolibrary.org/obo/PR_000007356,rRNA 2'-O-methyltransferase fibrillarin +10.8590239,PR:000009158,http://purl.obolibrary.org/obo/PR_000009158,"inositol 1,4,5-trisphosphate receptor type 1" +10.8590239,PR:000031275,http://purl.obolibrary.org/obo/PR_000031275,dystonin +10.8590239,PR:000049992,http://purl.obolibrary.org/obo/PR_000049992,G-protein coupled receptor 18/55/119 +10.8590239,PR:O13958,http://purl.obolibrary.org/obo/PR_O13958,none +10.8590239,PR:Q8IV36,http://purl.obolibrary.org/obo/PR_Q8IV36,protein HID1 (human) +10.8590239,UBERON:0006114,http://purl.obolibrary.org/obo/UBERON_0006114,lateral occipital cortex +10.8612787,CHEBI:33745,http://purl.obolibrary.org/obo/CHEBI_33745,copper group molecular entity +10.8612787,CHEBI:59680,http://purl.obolibrary.org/obo/CHEBI_59680,vasopressin receptor antagonist +10.8612787,DRUGBANK:DB05229,http://purl.obolibrary.org/obo/DRUGBANK_DB05229,none +10.8612787,DRUGBANK:DB12695,http://purl.obolibrary.org/obo/DRUGBANK_DB12695,none +10.8612787,GO:0006542,http://purl.obolibrary.org/obo/GO_0006542,glutamine biosynthetic process +10.8612787,GO:0009891,http://purl.obolibrary.org/obo/GO_0009891,positive regulation of biosynthetic process +10.8612787,GO:0016501,http://purl.obolibrary.org/obo/GO_0016501,prostacyclin receptor activity +10.8612787,GO:0036363,http://purl.obolibrary.org/obo/GO_0036363,transforming growth factor beta activation +10.8612787,GO:0072577,http://purl.obolibrary.org/obo/GO_0072577,endothelial cell apoptotic process +10.8612787,GO:0099531,http://purl.obolibrary.org/obo/GO_0099531,presynaptic process involved in chemical synaptic transmission +10.8612787,MONDO:0009380,http://purl.obolibrary.org/obo/MONDO_0009380,Dubin-Johnson syndrome +10.8612787,MONDO:0009943,http://purl.obolibrary.org/obo/MONDO_0009943,Pyle disease +10.8612787,MONDO:0016814,http://purl.obolibrary.org/obo/MONDO_0016814,maternally-inherited Leigh syndrome +10.8612787,MONDO:0024419,http://purl.obolibrary.org/obo/MONDO_0024419,enthesitis +10.8612787,NCBITaxon:10270,http://purl.obolibrary.org/obo/NCBITaxon_10270,none +10.8612787,PR:000008154,http://purl.obolibrary.org/obo/PR_000008154,"aspartate aminotransferase, mitochondrial" +10.8612787,PR:000012475,http://purl.obolibrary.org/obo/PR_000012475,"cAMP-specific 3',5'-cyclic phosphodiesterase 4D" +10.8612787,PR:000013899,http://purl.obolibrary.org/obo/PR_000013899,DNA repair protein REV1 +10.8612787,PR:000015849,http://purl.obolibrary.org/obo/PR_000015849,synaptic vesicle glycoprotein 2A +10.8612787,PR:000016660,http://purl.obolibrary.org/obo/PR_000016660,tripartite motif-containing protein 5 +10.8612787,PR:000023087,http://purl.obolibrary.org/obo/PR_000023087,none +10.8612787,PR:000035174,http://purl.obolibrary.org/obo/PR_000035174,none +10.8612787,PR:P12019,http://purl.obolibrary.org/obo/PR_P12019,none +10.8612787,PR:P24101,http://purl.obolibrary.org/obo/PR_P24101,none +10.8612787,SO:0000738,http://purl.obolibrary.org/obo/SO_0000738,nuclear_sequence +10.8612787,UBERON:0002188,http://purl.obolibrary.org/obo/UBERON_0002188,respiratory bronchiole +10.8612787,UBERON:0003050,http://purl.obolibrary.org/obo/UBERON_0003050,olfactory placode +10.8635386,CL:0002200,http://purl.obolibrary.org/obo/CL_0002200,oxyphil cell of thyroid +10.8635386,DRUGBANK:DB05676,http://purl.obolibrary.org/obo/DRUGBANK_DB05676,none +10.8635386,DRUGBANK:DB09123,http://purl.obolibrary.org/obo/DRUGBANK_DB09123,none +10.8635386,DRUGBANK:DB13750,http://purl.obolibrary.org/obo/DRUGBANK_DB13750,none +10.8635386,GO:0000807,http://purl.obolibrary.org/obo/GO_0000807,Z chromosome +10.8635386,GO:0097028,http://purl.obolibrary.org/obo/GO_0097028,dendritic cell differentiation +10.8635386,GO:1901606,http://purl.obolibrary.org/obo/GO_1901606,alpha-amino acid catabolic process +10.8635386,MONDO:0020563,http://purl.obolibrary.org/obo/MONDO_0020563,Dedifferentiated liposarcoma +10.8635386,MONDO:0025491,http://purl.obolibrary.org/obo/MONDO_0025491,feline infectious peritonitis +10.8635386,MONDO:0044984,http://purl.obolibrary.org/obo/MONDO_0044984,nasolacrimal duct disease +10.8635386,PR:000001672,http://purl.obolibrary.org/obo/PR_000001672,somatostatin receptor type 5 +10.8635386,PR:000002398,http://purl.obolibrary.org/obo/PR_000002398,caspase-10 isoform 3 +10.8635386,PR:000003734,http://purl.obolibrary.org/obo/PR_000003734,a disintegrin and metalloproteinase with thrombospondin motifs 5 +10.8635386,PR:000011049,http://purl.obolibrary.org/obo/PR_000011049,nicastrin +10.8635386,PR:000011533,http://purl.obolibrary.org/obo/PR_000011533,nuclear transport factor 2 +10.8635386,PR:000014873,http://purl.obolibrary.org/obo/PR_000014873,nucleotide exchange factor SIL1 +10.8635386,PR:000015417,http://purl.obolibrary.org/obo/PR_000015417,transcription factor SOX-1 +10.8635386,PR:000044516,http://purl.obolibrary.org/obo/PR_000044516,protocadherin alpha +10.8635386,UBERON:0000390,http://purl.obolibrary.org/obo/UBERON_0000390,lens nucleus +10.8635386,UBERON:0002788,http://purl.obolibrary.org/obo/UBERON_0002788,anterior nuclear group +10.8635386,UBERON:0003086,http://purl.obolibrary.org/obo/UBERON_0003086,caudal artery +10.8635386,UBERON:0005185,http://purl.obolibrary.org/obo/UBERON_0005185,renal medulla collecting duct +10.8635386,UBERON:0010933,http://purl.obolibrary.org/obo/UBERON_0010933,orbicularis oris muscle +10.8658036,CHEBI:33231,http://purl.obolibrary.org/obo/CHEBI_33231,antitubercular agent +10.8658036,DRUGBANK:DB06612,http://purl.obolibrary.org/obo/DRUGBANK_DB06612,none +10.8658036,DRUGBANK:DB06827,http://purl.obolibrary.org/obo/DRUGBANK_DB06827,none +10.8658036,DRUGBANK:DB12379,http://purl.obolibrary.org/obo/DRUGBANK_DB12379,none +10.8658036,DRUGBANK:DB16276,http://purl.obolibrary.org/obo/DRUGBANK_DB16276,none +10.8658036,GO:0004133,http://purl.obolibrary.org/obo/GO_0004133,glycogen debranching enzyme activity +10.8658036,GO:0008016,http://purl.obolibrary.org/obo/GO_0008016,regulation of heart contraction +10.8658036,GO:0008453,http://purl.obolibrary.org/obo/GO_0008453,alanine-glyoxylate transaminase activity +10.8658036,GO:0016138,http://purl.obolibrary.org/obo/GO_0016138,glycoside biosynthetic process +10.8658036,GO:0048242,http://purl.obolibrary.org/obo/GO_0048242,epinephrine secretion +10.8658036,MONDO:0004034,http://purl.obolibrary.org/obo/MONDO_0004034,eye lymphoma +10.8658036,MONDO:0008171,http://purl.obolibrary.org/obo/MONDO_0008171,nephrolithiasis +10.8658036,MONDO:0010702,http://purl.obolibrary.org/obo/MONDO_0010702,orofaciodigital syndrome I +10.8658036,PR:000004621,http://purl.obolibrary.org/obo/PR_000004621,BAG family molecular chaperone regulator 3 +10.8658036,PR:000006454,http://purl.obolibrary.org/obo/PR_000006454,7-dehydrocholesterol reductase +10.8658036,PR:000008825,http://purl.obolibrary.org/obo/PR_000008825,"10 kDa heat shock protein, mitochondrial" +10.8658036,PR:000009616,http://purl.obolibrary.org/obo/PR_000009616,none +10.8658036,PR:000024002,http://purl.obolibrary.org/obo/PR_000024002,none +10.8658036,PR:000028495,http://purl.obolibrary.org/obo/PR_000028495,none +10.8658036,PR:Q8L840,http://purl.obolibrary.org/obo/PR_Q8L840,none +10.8680737,DRUGBANK:DB03819,http://purl.obolibrary.org/obo/DRUGBANK_DB03819,none +10.8680737,GO:0030898,http://purl.obolibrary.org/obo/GO_0030898,none +10.8680737,GO:0034629,http://purl.obolibrary.org/obo/GO_0034629,none +10.8680737,GO:0090494,http://purl.obolibrary.org/obo/GO_0090494,dopamine uptake +10.8680737,HP:0030012,http://purl.obolibrary.org/obo/HP_0030012,Abnormal female reproductive system physiology +10.8680737,MONDO:0003222,http://purl.obolibrary.org/obo/MONDO_0003222,central nervous system melanocytic neoplasm +10.8680737,MONDO:0007435,http://purl.obolibrary.org/obo/MONDO_0007435,dentatorubral-pallidoluysian atrophy +10.8680737,MONDO:0011466,http://purl.obolibrary.org/obo/MONDO_0011466,"distal myopathy, Welander type" +10.8680737,PR:000001996,http://purl.obolibrary.org/obo/PR_000001996,C-C motif chemokine 24 +10.8680737,PR:000005887,http://purl.obolibrary.org/obo/PR_000005887,cytokine receptor-like factor 3 +10.8680737,PR:000013424,http://purl.obolibrary.org/obo/PR_000013424,prostacyclin synthase +10.8680737,PR:000016872,http://purl.obolibrary.org/obo/PR_000016872,"thioredoxin reductase 2, mitochondrial" +10.8680737,PR:P36599,http://purl.obolibrary.org/obo/PR_P36599,none +10.8680737,SO:0000785,http://purl.obolibrary.org/obo/SO_0000785,cloned_region +10.8680737,SO:0002054,http://purl.obolibrary.org/obo/SO_0002054,loss_of_function_variant +10.8680737,UBERON:0004222,http://purl.obolibrary.org/obo/UBERON_0004222,stomach smooth muscle +10.8680737,UBERON:0010932,http://purl.obolibrary.org/obo/UBERON_0010932,crico-arytenoid muscle +10.8703491,CHEBI:38497,http://purl.obolibrary.org/obo/CHEBI_38497,respiratory-chain inhibitor +10.8703491,CHEBI:61415,http://purl.obolibrary.org/obo/CHEBI_61415,graft polymer +10.8703491,GO:0002695,http://purl.obolibrary.org/obo/GO_0002695,negative regulation of leukocyte activation +10.8703491,GO:0006282,http://purl.obolibrary.org/obo/GO_0006282,regulation of DNA repair +10.8703491,GO:0008023,http://purl.obolibrary.org/obo/GO_0008023,transcription elongation factor complex +10.8703491,GO:0009045,http://purl.obolibrary.org/obo/GO_0009045,xylose isomerase activity +10.8703491,GO:0009135,http://purl.obolibrary.org/obo/GO_0009135,purine nucleoside diphosphate metabolic process +10.8703491,GO:0009179,http://purl.obolibrary.org/obo/GO_0009179,purine ribonucleoside diphosphate metabolic process +10.8703491,GO:0043255,http://purl.obolibrary.org/obo/GO_0043255,regulation of carbohydrate biosynthetic process +10.8703491,GO:0047598,http://purl.obolibrary.org/obo/GO_0047598,7-dehydrocholesterol reductase activity +10.8703491,MONDO:0009650,http://purl.obolibrary.org/obo/MONDO_0009650,mucolipidosis type II +10.8703491,MONDO:0018276,http://purl.obolibrary.org/obo/MONDO_0018276,muscular dystrophy-dystroglycanopathy +10.8703491,MONDO:0020807,http://purl.obolibrary.org/obo/MONDO_0020807,ovarian sertoli-stromal cell tumor +10.8703491,PR:000005366,http://purl.obolibrary.org/obo/PR_000005366,cocaine esterase +10.8703491,PR:000007904,http://purl.obolibrary.org/obo/PR_000007904,"N-acetyllactosaminide beta-1,6-N-acetylglucosaminyl-transferase" +10.8703491,PR:000012499,http://purl.obolibrary.org/obo/PR_000012499,protein disulfide-isomerase A4 +10.8703491,PR:000050010,http://purl.obolibrary.org/obo/PR_000050010,EMX protein +10.8703491,UBERON:0004128,http://purl.obolibrary.org/obo/UBERON_0004128,optic vesicle +10.8703491,UBERON:0011901,http://purl.obolibrary.org/obo/UBERON_0011901,hair matrix +10.8703491,UBERON:0012167,http://purl.obolibrary.org/obo/UBERON_0012167,buccal fat pad +10.8726296,CL:0000525,http://purl.obolibrary.org/obo/CL_0000525,syncytiotrophoblast cell +10.8726296,CL:0000657,http://purl.obolibrary.org/obo/CL_0000657,secondary spermatocyte +10.8726296,CL:2000060,http://purl.obolibrary.org/obo/CL_2000060,placental villous trophoblast +10.8726296,DRUGBANK:DB00854,http://purl.obolibrary.org/obo/DRUGBANK_DB00854,none +10.8726296,DRUGBANK:DB00874,http://purl.obolibrary.org/obo/DRUGBANK_DB00874,none +10.8726296,DRUGBANK:DB01157,http://purl.obolibrary.org/obo/DRUGBANK_DB01157,none +10.8726296,DRUGBANK:DB13704,http://purl.obolibrary.org/obo/DRUGBANK_DB13704,none +10.8726296,GO:0050701,http://purl.obolibrary.org/obo/GO_0050701,none +10.8726296,GO:0061702,http://purl.obolibrary.org/obo/GO_0061702,inflammasome complex +10.8726296,MONDO:0017033,http://purl.obolibrary.org/obo/MONDO_0017033,primary interstitial lung disease in childhood and adulthood due to alveolar vascular disorder +10.8726296,MONDO:0018391,http://purl.obolibrary.org/obo/MONDO_0018391,male infertility with spermatogenesis disorder +10.8726296,MONDO:0018392,http://purl.obolibrary.org/obo/MONDO_0018392,male infertility with spermatogenesis disorder due to single gene mutation +10.8726296,NCBITaxon:10492,http://purl.obolibrary.org/obo/NCBITaxon_10492,none +10.8726296,PR:000005136,http://purl.obolibrary.org/obo/PR_000005136,cyclin-L1 +10.8726296,PR:000007993,http://purl.obolibrary.org/obo/PR_000007993,gap junction alpha-4 protein +10.8726296,PR:000011652,http://purl.obolibrary.org/obo/PR_000011652,optineurin +10.8726296,PR:000017565,http://purl.obolibrary.org/obo/PR_000017565,zinc finger and BTB domain-containing protein 16 +10.8726296,UBERON:0006865,http://purl.obolibrary.org/obo/UBERON_0006865,metaphysis of femur +10.8749153,DRUGBANK:DB00726,http://purl.obolibrary.org/obo/DRUGBANK_DB00726,none +10.8749153,DRUGBANK:DB02380,http://purl.obolibrary.org/obo/DRUGBANK_DB02380,none +10.8749153,DRUGBANK:DB11446,http://purl.obolibrary.org/obo/DRUGBANK_DB11446,none +10.8749153,DRUGBANK:DB11597,http://purl.obolibrary.org/obo/DRUGBANK_DB11597,none +10.8749153,DRUGBANK:DB14804,http://purl.obolibrary.org/obo/DRUGBANK_DB14804,none +10.8749153,GO:0001958,http://purl.obolibrary.org/obo/GO_0001958,endochondral ossification +10.8749153,GO:0008026,http://purl.obolibrary.org/obo/GO_0008026,none +10.8749153,GO:0036075,http://purl.obolibrary.org/obo/GO_0036075,replacement ossification +10.8749153,GO:0045785,http://purl.obolibrary.org/obo/GO_0045785,positive regulation of cell adhesion +10.8749153,GO:0070035,http://purl.obolibrary.org/obo/GO_0070035,none +10.8749153,MONDO:0002328,http://purl.obolibrary.org/obo/MONDO_0002328,intracranial hemangioma +10.8749153,MONDO:0003041,http://purl.obolibrary.org/obo/MONDO_0003041,pediatric mesenchymal chondrosarcoma +10.8749153,MONDO:0005085,http://purl.obolibrary.org/obo/MONDO_0005085,pterygium +10.8749153,MONDO:0018696,http://purl.obolibrary.org/obo/MONDO_0018696,corticobasal syndrome +10.8749153,NCBITaxon:10167,http://purl.obolibrary.org/obo/NCBITaxon_10167,none +10.8749153,PR:000003921,http://purl.obolibrary.org/obo/PR_000003921,retinal dehydrogenase 2 +10.8749153,PR:000010268,http://purl.obolibrary.org/obo/PR_000010268,protein Mdm4 +10.8749153,PR:000014277,http://purl.obolibrary.org/obo/PR_000014277,"40S ribosomal protein S4, X isoform" +10.8749153,PR:000014734,http://purl.obolibrary.org/obo/PR_000014734,splicing factor 3B subunit 1 +10.8749153,PR:000015032,http://purl.obolibrary.org/obo/PR_000015032,ADP/ATP translocase 1 +10.8749153,PR:000017442,http://purl.obolibrary.org/obo/PR_000017442,proto-oncogene Wnt-3 +10.8749153,PR:000023599,http://purl.obolibrary.org/obo/PR_000023599,none +10.8749153,PR:Q8VZB2,http://purl.obolibrary.org/obo/PR_Q8VZB2,none +10.8749153,PR:Q9LQ55,http://purl.obolibrary.org/obo/PR_Q9LQ55,none +10.8749153,UBERON:0001141,http://purl.obolibrary.org/obo/UBERON_0001141,right renal vein +10.8749153,UBERON:0001176,http://purl.obolibrary.org/obo/UBERON_0001176,right hepatic duct +10.8749153,UBERON:0004089,http://purl.obolibrary.org/obo/UBERON_0004089,midface +10.8772062,CHEBI:16381,http://purl.obolibrary.org/obo/CHEBI_16381,2'-deoxyribonucleoside 5'-triphosphate +10.8772062,DRUGBANK:DB00461,http://purl.obolibrary.org/obo/DRUGBANK_DB00461,none +10.8772062,DRUGBANK:DB12539,http://purl.obolibrary.org/obo/DRUGBANK_DB12539,none +10.8772062,GO:0001792,http://purl.obolibrary.org/obo/GO_0001792,polymeric immunoglobulin receptor activity +10.8772062,GO:0031427,http://purl.obolibrary.org/obo/GO_0031427,response to methotrexate +10.8772062,GO:0140534,http://purl.obolibrary.org/obo/GO_0140534,endoplasmic reticulum protein-containing complex +10.8772062,HP:0010979,http://purl.obolibrary.org/obo/HP_0010979,Abnormality of lipoprotein cholesterol concentration +10.8772062,HP:0010980,http://purl.obolibrary.org/obo/HP_0010980,Hyperlipoproteinemia +10.8772062,MONDO:0005491,http://purl.obolibrary.org/obo/MONDO_0005491,Chagas cardiomyopathy +10.8772062,MONDO:0008151,http://purl.obolibrary.org/obo/MONDO_0008151,gnathodiaphyseal dysplasia +10.8772062,MONDO:0010595,http://purl.obolibrary.org/obo/MONDO_0010595,Sertoli cell-only syndrome +10.8772062,MONDO:0018393,http://purl.obolibrary.org/obo/MONDO_0018393,male infertility with azoospermia or oligozoospermia due to single gene mutation +10.8772062,MONDO:0020088,http://purl.obolibrary.org/obo/MONDO_0020088,familial partial lipodystrophy +10.8772062,PR:000003727,http://purl.obolibrary.org/obo/PR_000003727,a disintegrin and metalloproteinase with thrombospondin motifs 1 +10.8772062,PR:000014169,http://purl.obolibrary.org/obo/PR_000014169,retinitis pigmentosa 9 protein +10.8772062,PR:000015848,http://purl.obolibrary.org/obo/PR_000015848,polycomb protein SUZ12 +10.8772062,PR:000023923,http://purl.obolibrary.org/obo/PR_000023923,none +10.8772062,PR:000024131,http://purl.obolibrary.org/obo/PR_000024131,none +10.8772062,PR:000049814,http://purl.obolibrary.org/obo/PR_000049814,friend of GATA +10.8772062,UBERON:0001047,http://purl.obolibrary.org/obo/UBERON_0001047,neural glomerulus +10.8772062,UBERON:0003691,http://purl.obolibrary.org/obo/UBERON_0003691,epidural space +10.8772062,UBERON:0013280,http://purl.obolibrary.org/obo/UBERON_0013280,diaphysis of tibia +10.8795024,CHEBI:61560,http://purl.obolibrary.org/obo/CHEBI_61560,2'-deoxyribonucleoside 5'-triphosphate(4-) +10.8795024,CHEBI:61662,http://purl.obolibrary.org/obo/CHEBI_61662,2'-deoxyribonucleoside triphosphate oxoanion +10.8795024,DRUGBANK:DB14702,http://purl.obolibrary.org/obo/DRUGBANK_DB14702,none +10.8795024,GO:0015868,http://purl.obolibrary.org/obo/GO_0015868,purine ribonucleotide transport +10.8795024,MONDO:0002191,http://purl.obolibrary.org/obo/MONDO_0002191,syringoma +10.8795024,MONDO:0002815,http://purl.obolibrary.org/obo/MONDO_0002815,acute myocarditis +10.8795024,MONDO:0009176,http://purl.obolibrary.org/obo/MONDO_0009176,epidermodysplasia verruciformis +10.8795024,MONDO:0010264,http://purl.obolibrary.org/obo/MONDO_0010264,X-linked adrenal hypoplasia congenita +10.8795024,MONDO:0015820,http://purl.obolibrary.org/obo/MONDO_0015820,primary cutaneous B-cell lymphoma +10.8795024,MONDO:0016474,http://purl.obolibrary.org/obo/MONDO_0016474,drug-induced lupus erythematosus +10.8795024,MONDO:0021452,http://purl.obolibrary.org/obo/MONDO_0021452,benign neoplasm of cornea +10.8795024,PR:000007598,http://purl.obolibrary.org/obo/PR_000007598,protein fosB +10.8795024,PR:000011157,http://purl.obolibrary.org/obo/PR_000011157,neurogenin-2 +10.8795024,PR:000012549,http://purl.obolibrary.org/obo/PR_000012549,period circadian protein homolog 3 +10.8795024,UBERON:0001900,http://purl.obolibrary.org/obo/UBERON_0001900,ventral thalamus +10.8795024,UBERON:0004617,http://purl.obolibrary.org/obo/UBERON_0004617,lumbar vertebra 1 +10.8818039,DRUGBANK:DB12813,http://purl.obolibrary.org/obo/DRUGBANK_DB12813,none +10.8818039,GO:0007603,http://purl.obolibrary.org/obo/GO_0007603,"phototransduction, visible light" +10.8818039,GO:0009584,http://purl.obolibrary.org/obo/GO_0009584,detection of visible light +10.8818039,GO:0016079,http://purl.obolibrary.org/obo/GO_0016079,synaptic vesicle exocytosis +10.8818039,GO:0016509,http://purl.obolibrary.org/obo/GO_0016509,long-chain-3-hydroxyacyl-CoA dehydrogenase activity +10.8818039,GO:0034708,http://purl.obolibrary.org/obo/GO_0034708,methyltransferase complex +10.8818039,MONDO:0002423,http://purl.obolibrary.org/obo/MONDO_0002423,rectosigmoid junction neoplasm +10.8818039,MONDO:0002687,http://purl.obolibrary.org/obo/MONDO_0002687,superior mesenteric artery syndrome +10.8818039,MONDO:0015085,http://purl.obolibrary.org/obo/MONDO_0015085,bathing suit ichthyosis +10.8818039,PR:000006601,http://purl.obolibrary.org/obo/PR_000006601,dynamin-1 +10.8818039,PR:000007975,http://purl.obolibrary.org/obo/PR_000007975,cobalamin binding intrinsic factor +10.8818039,PR:000009816,http://purl.obolibrary.org/obo/PR_000009816,LIM domain kinase 1 +10.8818039,PR:000014238,http://purl.obolibrary.org/obo/PR_000014238,60S acidic ribosomal protein P1 +10.8818039,PR:000014719,http://purl.obolibrary.org/obo/PR_000014719,histone-lysine N-methyltransferase SETD1A +10.8818039,PR:000032164,http://purl.obolibrary.org/obo/PR_000032164,NADH-ubiquinone oxidoreductase chain 2 +10.8818039,UBERON:0014895,http://purl.obolibrary.org/obo/UBERON_0014895,somatic muscle +10.8841107,CL:0002536,http://purl.obolibrary.org/obo/CL_0002536,epithelial cell of amnion +10.8841107,DRUGBANK:DB04936,http://purl.obolibrary.org/obo/DRUGBANK_DB04936,none +10.8841107,DRUGBANK:DB09564,http://purl.obolibrary.org/obo/DRUGBANK_DB09564,none +10.8841107,DRUGBANK:DB12308,http://purl.obolibrary.org/obo/DRUGBANK_DB12308,none +10.8841107,GO:0008278,http://purl.obolibrary.org/obo/GO_0008278,cohesin complex +10.8841107,GO:0031570,http://purl.obolibrary.org/obo/GO_0031570,DNA integrity checkpoint signaling +10.8841107,GO:0051983,http://purl.obolibrary.org/obo/GO_0051983,regulation of chromosome segregation +10.8841107,GO:0072642,http://purl.obolibrary.org/obo/GO_0072642,none +10.8841107,MONDO:0006438,http://purl.obolibrary.org/obo/MONDO_0006438,synovial chondromatosis +10.8841107,MONDO:0009192,http://purl.obolibrary.org/obo/MONDO_0009192,Wolcott-Rallison syndrome +10.8841107,PR:000015553,http://purl.obolibrary.org/obo/PR_000015553,meiotic recombination protein SPO11 +10.8841107,PR:000016275,http://purl.obolibrary.org/obo/PR_000016275,trefoil factor 2 +10.8841107,PR:000016706,http://purl.obolibrary.org/obo/PR_000016706,transformation/transcription domain-associated protein +10.8841107,UBERON:0001415,http://purl.obolibrary.org/obo/UBERON_0001415,skin of pelvis +10.8864229,DRUGBANK:DB04858,http://purl.obolibrary.org/obo/DRUGBANK_DB04858,none +10.8864229,DRUGBANK:DB06789,http://purl.obolibrary.org/obo/DRUGBANK_DB06789,none +10.8864229,DRUGBANK:DB11134,http://purl.obolibrary.org/obo/DRUGBANK_DB11134,none +10.8864229,GO:0015724,http://purl.obolibrary.org/obo/GO_0015724,formate transport +10.8864229,GO:0016731,http://purl.obolibrary.org/obo/GO_0016731,"oxidoreductase activity, acting on iron-sulfur proteins as donors, NAD or NADP as acceptor" +10.8864229,GO:0046031,http://purl.obolibrary.org/obo/GO_0046031,ADP metabolic process +10.8864229,MONDO:0016035,http://purl.obolibrary.org/obo/MONDO_0016035,Nelson syndrome +10.8864229,NCBITaxon:6073,http://purl.obolibrary.org/obo/NCBITaxon_6073,Cnidaria +10.8864229,PR:000001217,http://purl.obolibrary.org/obo/PR_000001217,cholecystokinin receptor 2 +10.8864229,PR:000003883,http://purl.obolibrary.org/obo/PR_000003883,"A-kinase anchor protein 1, mitochondrial" +10.8864229,PR:000004215,http://purl.obolibrary.org/obo/PR_000004215,"arginase-2, mitochondrial" +10.8864229,PR:000004373,http://purl.obolibrary.org/obo/PR_000004373,argininosuccinate lyase +10.8864229,PR:000008159,http://purl.obolibrary.org/obo/PR_000008159,"glycerol-3-phosphate acyltransferase 1, mitochondrial" +10.8864229,PR:000010502,http://purl.obolibrary.org/obo/PR_000010502,modulator of apoptosis 1 +10.8864229,PR:000022123,http://purl.obolibrary.org/obo/PR_000022123,none +10.8864229,UBERON:0001968,http://purl.obolibrary.org/obo/UBERON_0001968,semen +10.8864229,UBERON:0010162,http://purl.obolibrary.org/obo/UBERON_0010162,post-anal tail tip +10.8864229,UBERON:0011118,http://purl.obolibrary.org/obo/UBERON_0011118,tarsometatarsal joint +10.8887404,CHEBI:17326,http://purl.obolibrary.org/obo/CHEBI_17326,nucleoside triphosphate +10.8887404,CHEBI:70770,http://purl.obolibrary.org/obo/CHEBI_70770,Aurora kinase inhibitor +10.8887404,CHEBI:83811,http://purl.obolibrary.org/obo/CHEBI_83811,proteinogenic amino acid derivative +10.8887404,DRUGBANK:DB08820,http://purl.obolibrary.org/obo/DRUGBANK_DB08820,none +10.8887404,DRUGBANK:DB09297,http://purl.obolibrary.org/obo/DRUGBANK_DB09297,none +10.8887404,GO:0009190,http://purl.obolibrary.org/obo/GO_0009190,cyclic nucleotide biosynthetic process +10.8887404,GO:0050196,http://purl.obolibrary.org/obo/GO_0050196,[phosphorylase] phosphatase activity +10.8887404,MONDO:0006928,http://purl.obolibrary.org/obo/MONDO_0006928,proliferative vitreoretinopathy +10.8887404,MONDO:0020287,http://purl.obolibrary.org/obo/MONDO_0020287,pulmonary artery or pulmonary branch anomaly +10.8887404,MONDO:0043247,http://purl.obolibrary.org/obo/MONDO_0043247,Mallory-Weiss syndrome +10.8887404,NCBITaxon:4069,http://purl.obolibrary.org/obo/NCBITaxon_4069,Solanales +10.8887404,PR:000004979,http://purl.obolibrary.org/obo/PR_000004979,calmodulin-like protein 3 +10.8887404,PR:000008099,http://purl.obolibrary.org/obo/PR_000008099,guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-3 +10.8887404,PR:000008931,http://purl.obolibrary.org/obo/PR_000008931,intraflagellar transport protein 122 +10.8887404,PR:000017431,http://purl.obolibrary.org/obo/PR_000017431,serine/threonine-protein kinase WNK1 +10.8887404,PR:000022718,http://purl.obolibrary.org/obo/PR_000022718,none +10.8887404,PR:000023070,http://purl.obolibrary.org/obo/PR_000023070,none +10.8887404,PR:Q96247,http://purl.obolibrary.org/obo/PR_Q96247,none +10.8887404,UBERON:0001468,http://purl.obolibrary.org/obo/UBERON_0001468,intervertebral joint +10.8910633,CHEBI:16516,http://purl.obolibrary.org/obo/CHEBI_16516,2'-deoxyribonucleoside triphosphate +10.8910633,DRUGBANK:DB04895,http://purl.obolibrary.org/obo/DRUGBANK_DB04895,none +10.8910633,GO:0030229,http://purl.obolibrary.org/obo/GO_0030229,very-low-density lipoprotein particle receptor activity +10.8910633,GO:1903510,http://purl.obolibrary.org/obo/GO_1903510,mucopolysaccharide metabolic process +10.8910633,MONDO:0002639,http://purl.obolibrary.org/obo/MONDO_0002639,glossopharyngeal nerve disease +10.8910633,NCBITaxon:11640,http://purl.obolibrary.org/obo/NCBITaxon_11640,none +10.8910633,PR:000012204,http://purl.obolibrary.org/obo/PR_000012204,polyadenylate-binding protein 1 +10.8910633,PR:000014395,http://purl.obolibrary.org/obo/PR_000014395,none +10.8910633,PR:000022205,http://purl.obolibrary.org/obo/PR_000022205,none +10.8910633,PR:000023990,http://purl.obolibrary.org/obo/PR_000023990,none +10.8910633,PR:P20153,http://purl.obolibrary.org/obo/PR_P20153,none +10.8910633,UBERON:0002289,http://purl.obolibrary.org/obo/UBERON_0002289,midbrain cerebral aqueduct +10.8910633,UBERON:0010148,http://purl.obolibrary.org/obo/UBERON_0010148,mating plug +10.8910633,UBERON:0035784,http://purl.obolibrary.org/obo/UBERON_0035784,seminal clot +10.8933916,CHEBI:65212,http://purl.obolibrary.org/obo/CHEBI_65212,polysaccharide derivative +10.8933916,CL:0000286,http://purl.obolibrary.org/obo/CL_0000286,hyphal cell +10.8933916,DRUGBANK:DB02671,http://purl.obolibrary.org/obo/DRUGBANK_DB02671,none +10.8933916,DRUGBANK:DB13560,http://purl.obolibrary.org/obo/DRUGBANK_DB13560,none +10.8933916,DRUGBANK:DB14313,http://purl.obolibrary.org/obo/DRUGBANK_DB14313,none +10.8933916,GO:0004056,http://purl.obolibrary.org/obo/GO_0004056,argininosuccinate lyase activity +10.8933916,GO:0032364,http://purl.obolibrary.org/obo/GO_0032364,oxygen homeostasis +10.8933916,GO:0050136,http://purl.obolibrary.org/obo/GO_0050136,NADH dehydrogenase (quinone) activity +10.8933916,HP:0003508,http://purl.obolibrary.org/obo/HP_0003508,Proportionate short stature +10.8933916,MONDO:0004686,http://purl.obolibrary.org/obo/MONDO_0004686,lattice corneal dystrophy +10.8933916,MONDO:0019772,http://purl.obolibrary.org/obo/MONDO_0019772,blepharospasm-oromandibular dystonia syndrome +10.8933916,MONDO:0024378,http://purl.obolibrary.org/obo/MONDO_0024378,"circadian rhythm sleep disorder, advanced sleep phase type" +10.8933916,NCBITaxon:327046,http://purl.obolibrary.org/obo/NCBITaxon_327046,none +10.8933916,NCBITaxon:766,http://purl.obolibrary.org/obo/NCBITaxon_766,Rickettsiales +10.8933916,PR:000001854,http://purl.obolibrary.org/obo/PR_000001854,ectonucleoside triphosphate diphosphohydrolase 1 +10.8933916,PR:000005953,http://purl.obolibrary.org/obo/PR_000005953,chondroitin sulfate proteoglycan 4 +10.8933916,PR:000011242,http://purl.obolibrary.org/obo/PR_000011242,homeobox protein Nkx-2.2 +10.8933916,PR:000012479,http://purl.obolibrary.org/obo/PR_000012479,"rod cGMP-specific 3',5'-cyclic phosphodiesterase subunit beta" +10.8933916,PR:000014877,http://purl.obolibrary.org/obo/PR_000014877,paired amphipathic helix protein Sin3a +10.8933916,PR:000044643,http://purl.obolibrary.org/obo/PR_000044643,complement peptide receptor +10.8933916,SO:0001199,http://purl.obolibrary.org/obo/SO_0001199,ss_RNA_viral_sequence +10.8933916,UBERON:0006127,http://purl.obolibrary.org/obo/UBERON_0006127,funiculus of spinal cord +10.8933916,UBERON:0006133,http://purl.obolibrary.org/obo/UBERON_0006133,funiculus of neuraxis +10.8957253,CHEBI:15959,http://purl.obolibrary.org/obo/CHEBI_15959,peptidylglycine +10.8957253,DRUGBANK:DB00953,http://purl.obolibrary.org/obo/DRUGBANK_DB00953,none +10.8957253,DRUGBANK:DB06176,http://purl.obolibrary.org/obo/DRUGBANK_DB06176,none +10.8957253,DRUGBANK:DB10973,http://purl.obolibrary.org/obo/DRUGBANK_DB10973,none +10.8957253,GO:0002920,http://purl.obolibrary.org/obo/GO_0002920,regulation of humoral immune response +10.8957253,GO:1903008,http://purl.obolibrary.org/obo/GO_1903008,organelle disassembly +10.8957253,MONDO:0005479,http://purl.obolibrary.org/obo/MONDO_0005479,atrial tachycardia +10.8957253,MONDO:0005834,http://purl.obolibrary.org/obo/MONDO_0005834,lymphogranuloma venereum +10.8957253,MONDO:0006997,http://purl.obolibrary.org/obo/MONDO_0006997,tibial neuropathy +10.8957253,NCBITaxon:10040,http://purl.obolibrary.org/obo/NCBITaxon_10040,none +10.8957253,PR:000001144,http://purl.obolibrary.org/obo/PR_000001144,melanin-concentrating hormone receptor 1 +10.8957253,PR:000010472,http://purl.obolibrary.org/obo/PR_000010472,macrophage metalloelastase +10.8957253,PR:000012450,http://purl.obolibrary.org/obo/PR_000012450,phosducin +10.8957253,PR:000015193,http://purl.obolibrary.org/obo/PR_000015193,sodium- and chloride-dependent glycine transporter 1 +10.8957253,PR:000017440,http://purl.obolibrary.org/obo/PR_000017440,protein Wnt-2 +10.8957253,PR:O81755,http://purl.obolibrary.org/obo/PR_O81755,none +10.8980645,DRUGBANK:DB01780,http://purl.obolibrary.org/obo/DRUGBANK_DB01780,none +10.8980645,DRUGBANK:DB02517,http://purl.obolibrary.org/obo/DRUGBANK_DB02517,none +10.8980645,DRUGBANK:DB05332,http://purl.obolibrary.org/obo/DRUGBANK_DB05332,none +10.8980645,DRUGBANK:DB06698,http://purl.obolibrary.org/obo/DRUGBANK_DB06698,none +10.8980645,GO:0005011,http://purl.obolibrary.org/obo/GO_0005011,macrophage colony-stimulating factor receptor activity +10.8980645,GO:0006040,http://purl.obolibrary.org/obo/GO_0006040,amino sugar metabolic process +10.8980645,GO:0030431,http://purl.obolibrary.org/obo/GO_0030431,sleep +10.8980645,GO:0031000,http://purl.obolibrary.org/obo/GO_0031000,response to caffeine +10.8980645,GO:0045165,http://purl.obolibrary.org/obo/GO_0045165,cell fate commitment +10.8980645,HP:0000520,http://purl.obolibrary.org/obo/HP_0000520,Proptosis +10.8980645,MONDO:0019702,http://purl.obolibrary.org/obo/MONDO_0019702,neonatal osteosclerotic dysplasia +10.8980645,MONDO:0024656,http://purl.obolibrary.org/obo/MONDO_0024656,colorectal lymphoma +10.8980645,PR:000005974,http://purl.obolibrary.org/obo/PR_000005974,cystatin-B +10.8980645,PR:000013977,http://purl.obolibrary.org/obo/PR_000013977,Rho-related GTP-binding protein RhoB +10.8980645,PR:000014502,http://purl.obolibrary.org/obo/PR_000014502,secretogranin-2 +10.8980645,PR:000017296,http://purl.obolibrary.org/obo/PR_000017296,villin-1 +10.9004091,DRUGBANK:DB01437,http://purl.obolibrary.org/obo/DRUGBANK_DB01437,none +10.9004091,GO:0015248,http://purl.obolibrary.org/obo/GO_0015248,sterol transporter activity +10.9004091,GO:0016328,http://purl.obolibrary.org/obo/GO_0016328,lateral plasma membrane +10.9004091,GO:0032590,http://purl.obolibrary.org/obo/GO_0032590,dendrite membrane +10.9004091,GO:0048256,http://purl.obolibrary.org/obo/GO_0048256,flap endonuclease activity +10.9004091,MONDO:0008648,http://purl.obolibrary.org/obo/MONDO_0008648,"ventricular tachycardia, familial" +10.9004091,MONDO:0017987,http://purl.obolibrary.org/obo/MONDO_0017987,syringomyelia +10.9004091,MONDO:0018913,http://purl.obolibrary.org/obo/MONDO_0018913,malakoplakia +10.9004091,MONDO:0044781,http://purl.obolibrary.org/obo/MONDO_0044781,nephrotic syndrome of childhood - steroid sensitive +10.9004091,PR:000010185,http://purl.obolibrary.org/obo/PR_000010185,MARCKS-related protein +10.9004091,PR:000015761,http://purl.obolibrary.org/obo/PR_000015761,stathmin-3 +10.9004091,PR:000015863,http://purl.obolibrary.org/obo/PR_000015863,synaptonemal complex protein 2 +10.9004091,PR:P40370,http://purl.obolibrary.org/obo/PR_P40370,none +10.9004091,PR:Q8NKC2,http://purl.obolibrary.org/obo/PR_Q8NKC2,none +10.9004091,UBERON:0004123,http://purl.obolibrary.org/obo/UBERON_0004123,myocardial layer +10.9004091,UBERON:0005798,http://purl.obolibrary.org/obo/UBERON_0005798,bicornuate uterus +10.9004091,UBERON:0007239,http://purl.obolibrary.org/obo/UBERON_0007239,tunica media of artery +10.9027593,CL:0000171,http://purl.obolibrary.org/obo/CL_0000171,pancreatic A cell +10.9027593,CL:0002067,http://purl.obolibrary.org/obo/CL_0002067,type A enteroendocrine cell +10.9027593,DRUGBANK:DB00621,http://purl.obolibrary.org/obo/DRUGBANK_DB00621,none +10.9027593,DRUGBANK:DB08909,http://purl.obolibrary.org/obo/DRUGBANK_DB08909,none +10.9027593,DRUGBANK:DB09054,http://purl.obolibrary.org/obo/DRUGBANK_DB09054,none +10.9027593,DRUGBANK:DB11738,http://purl.obolibrary.org/obo/DRUGBANK_DB11738,none +10.9027593,GO:0017103,http://purl.obolibrary.org/obo/GO_0017103,UTP:galactose-1-phosphate uridylyltransferase activity +10.9027593,GO:0031977,http://purl.obolibrary.org/obo/GO_0031977,thylakoid lumen +10.9027593,GO:0050777,http://purl.obolibrary.org/obo/GO_0050777,negative regulation of immune response +10.9027593,GO:0071715,http://purl.obolibrary.org/obo/GO_0071715,icosanoid transport +10.9027593,GO:1901571,http://purl.obolibrary.org/obo/GO_1901571,fatty acid derivative transport +10.9027593,MONDO:0009813,http://purl.obolibrary.org/obo/MONDO_0009813,chronic recurrent multifocal osteomyelitis +10.9027593,MONDO:0014931,http://purl.obolibrary.org/obo/MONDO_0014931,Alazami-Yuan syndrome +10.9027593,MONDO:0018954,http://purl.obolibrary.org/obo/MONDO_0018954,Loeys-Dietz syndrome +10.9027593,MONDO:0043240,http://purl.obolibrary.org/obo/MONDO_0043240,hemophilic arthropathy +10.9027593,NCBITaxon:10832,http://purl.obolibrary.org/obo/NCBITaxon_10832,none +10.9027593,PR:000001172,http://purl.obolibrary.org/obo/PR_000001172,B2 bradykinin receptor +10.9027593,PR:000006501,http://purl.obolibrary.org/obo/PR_000006501,dickkopf-related protein 3 +10.9027593,PR:000007123,http://purl.obolibrary.org/obo/PR_000007123,ephrin type-A receptor 3 +10.9027593,PR:000010934,http://purl.obolibrary.org/obo/PR_000010934,none +10.9027593,PR:000024862,http://purl.obolibrary.org/obo/PR_000024862,none +10.9027593,UBERON:0001276,http://purl.obolibrary.org/obo/UBERON_0001276,epithelium of stomach +10.9027593,UBERON:0008833,http://purl.obolibrary.org/obo/UBERON_0008833,great auricular nerve +10.9027593,UBERON:0011191,http://purl.obolibrary.org/obo/UBERON_0011191,ophthalmic vein +10.9027593,UBERON:0035648,http://purl.obolibrary.org/obo/UBERON_0035648,nerve innervating pinna +10.905115,DRUGBANK:DB00628,http://purl.obolibrary.org/obo/DRUGBANK_DB00628,none +10.905115,DRUGBANK:DB01056,http://purl.obolibrary.org/obo/DRUGBANK_DB01056,none +10.905115,DRUGBANK:DB06663,http://purl.obolibrary.org/obo/DRUGBANK_DB06663,none +10.905115,DRUGBANK:DB14498,http://purl.obolibrary.org/obo/DRUGBANK_DB14498,none +10.905115,GO:0008137,http://purl.obolibrary.org/obo/GO_0008137,NADH dehydrogenase (ubiquinone) activity +10.905115,GO:0016106,http://purl.obolibrary.org/obo/GO_0016106,sesquiterpenoid biosynthetic process +10.905115,GO:0036147,http://purl.obolibrary.org/obo/GO_0036147,rumination +10.905115,GO:0038002,http://purl.obolibrary.org/obo/GO_0038002,endocrine signaling +10.905115,MONDO:0003215,http://purl.obolibrary.org/obo/MONDO_0003215,apocrine sweat gland cancer +10.905115,MONDO:0015642,http://purl.obolibrary.org/obo/MONDO_0015642,benign partial infantile seizures +10.905115,NCBITaxon:2233838,http://purl.obolibrary.org/obo/NCBITaxon_2233838,none +10.905115,PR:000004137,http://purl.obolibrary.org/obo/PR_000004137,amyloid-like protein 2 +10.905115,PR:000004450,http://purl.obolibrary.org/obo/PR_000004450,calcium-transporting ATPase type 2C member 2 +10.905115,PR:000008124,http://purl.obolibrary.org/obo/PR_000008124,glucosamine 6-phosphate N-acetyltransferase +10.905115,PR:000013510,http://purl.obolibrary.org/obo/PR_000013510,peroxisome assembly factor 1 +10.905115,PR:P31582,http://purl.obolibrary.org/obo/PR_P31582,none +10.9074763,CL:0000917,http://purl.obolibrary.org/obo/CL_0000917,Tc1 cell +10.9074763,DRUGBANK:DB15258,http://purl.obolibrary.org/obo/DRUGBANK_DB15258,none +10.9074763,GO:0022898,http://purl.obolibrary.org/obo/GO_0022898,regulation of transmembrane transporter activity +10.9074763,GO:0070162,http://purl.obolibrary.org/obo/GO_0070162,adiponectin secretion +10.9074763,MONDO:0002387,http://purl.obolibrary.org/obo/MONDO_0002387,liver angiosarcoma +10.9074763,MONDO:0003865,http://purl.obolibrary.org/obo/MONDO_0003865,acral lentiginous melanoma +10.9074763,MONDO:0017990,http://purl.obolibrary.org/obo/MONDO_0017990,catecholaminergic polymorphic ventricular tachycardia +10.9074763,NCBITaxon:2611341,http://purl.obolibrary.org/obo/NCBITaxon_2611341,Metamonada +10.9074763,PR:000004154,http://purl.obolibrary.org/obo/PR_000004154,apolipoprotein D +10.9074763,PR:000005423,http://purl.obolibrary.org/obo/PR_000005423,chitinase-3-like protein 1 +10.9074763,PR:000005434,http://purl.obolibrary.org/obo/PR_000005434,charged multivesicular body protein 2a +10.9074763,PR:000007608,http://purl.obolibrary.org/obo/PR_000007608,forkhead box protein C2 +10.9074763,PR:000013861,http://purl.obolibrary.org/obo/PR_000013861,ATP-dependent DNA helicase Q4 +10.9074763,PR:000014153,http://purl.obolibrary.org/obo/PR_000014153,roundabout homolog 3 +10.9074763,PR:000015293,http://purl.obolibrary.org/obo/PR_000015293,sphingomyelin phosphodiesterase 2 +10.9074763,PR:000016310,http://purl.obolibrary.org/obo/PR_000016310,THO complex subunit 1 +10.9074763,UBERON:0001243,http://purl.obolibrary.org/obo/UBERON_0001243,serosa of intestine +10.9074763,UBERON:0004175,http://purl.obolibrary.org/obo/UBERON_0004175,internal genitalia +10.9098432,DRUGBANK:DB01161,http://purl.obolibrary.org/obo/DRUGBANK_DB01161,none +10.9098432,DRUGBANK:DB05869,http://purl.obolibrary.org/obo/DRUGBANK_DB05869,none +10.9098432,MONDO:0015288,http://purl.obolibrary.org/obo/MONDO_0015288,herpes simplex virus keratitis +10.9098432,MONDO:0016155,http://purl.obolibrary.org/obo/MONDO_0016155,qualitative or quantitative defects of protein involved in O-glycosylation of alpha-dystroglycan +10.9098432,MONDO:0019730,http://purl.obolibrary.org/obo/MONDO_0019730,light chain deposition disease +10.9098432,PR:000000812,http://purl.obolibrary.org/obo/PR_000000812,voltage-gated potassium channel subunit KCNA5 +10.9098432,PR:000003578,http://purl.obolibrary.org/obo/PR_000003578,Abl interactor 1 +10.9098432,PR:000012281,http://purl.obolibrary.org/obo/PR_000012281,partitioning defective 6 homolog alpha +10.9098432,PR:000017145,http://purl.obolibrary.org/obo/PR_000017145,ubiquitin carboxyl-terminal hydrolase 1 +10.9098432,PR:000017256,http://purl.obolibrary.org/obo/PR_000017256,Vang-like protein 2 +10.9098432,UBERON:0002098,http://purl.obolibrary.org/obo/UBERON_0002098,apex of heart +10.9098432,UBERON:0008942,http://purl.obolibrary.org/obo/UBERON_0008942,gastropod cerebral ganglion +10.9122156,CHEBI:23354,http://purl.obolibrary.org/obo/CHEBI_23354,coenzyme +10.9122156,CL:0000818,http://purl.obolibrary.org/obo/CL_0000818,transitional stage B cell +10.9122156,DRUGBANK:DB04745,http://purl.obolibrary.org/obo/DRUGBANK_DB04745,none +10.9122156,DRUGBANK:DB11086,http://purl.obolibrary.org/obo/DRUGBANK_DB11086,none +10.9122156,DRUGBANK:DB14188,http://purl.obolibrary.org/obo/DRUGBANK_DB14188,none +10.9122156,GO:0034599,http://purl.obolibrary.org/obo/GO_0034599,cellular response to oxidative stress +10.9122156,GO:0046686,http://purl.obolibrary.org/obo/GO_0046686,response to cadmium ion +10.9122156,GO:0070269,http://purl.obolibrary.org/obo/GO_0070269,pyroptosis +10.9122156,GO:1901336,http://purl.obolibrary.org/obo/GO_1901336,lactone biosynthetic process +10.9122156,MONDO:0007000,http://purl.obolibrary.org/obo/MONDO_0007000,Treponema infectious disease +10.9122156,MONDO:0009697,http://purl.obolibrary.org/obo/MONDO_0009697,Lafora disease +10.9122156,MONDO:0009999,http://purl.obolibrary.org/obo/MONDO_0009999,autosomal recessive Robinow syndrome +10.9122156,MONDO:0043959,http://purl.obolibrary.org/obo/MONDO_0043959,pseudolymphoma +10.9122156,NCBITaxon:119164,http://purl.obolibrary.org/obo/NCBITaxon_119164,none +10.9122156,PR:000001446,http://purl.obolibrary.org/obo/PR_000001446,discoidin domain-containing receptor 2 +10.9122156,PR:000002056,http://purl.obolibrary.org/obo/PR_000002056,inward rectifier potassium channel 2 +10.9122156,PR:000004637,http://purl.obolibrary.org/obo/PR_000004637,barrier-to-autointegration factor +10.9122156,PR:000006711,http://purl.obolibrary.org/obo/PR_000006711,desmoplakin +10.9122156,PR:000006994,http://purl.obolibrary.org/obo/PR_000006994,eukaryotic translation initiation factor 4E-binding protein 1 +10.9122156,PR:000010264,http://purl.obolibrary.org/obo/PR_000010264,"malate dehydrogenase, mitochondrial" +10.9122156,PR:000010279,http://purl.obolibrary.org/obo/PR_000010279,mediator of RNA polymerase II transcription subunit 1 +10.9122156,UBERON:0001943,http://purl.obolibrary.org/obo/UBERON_0001943,midbrain tegmentum +10.9122156,UBERON:0006860,http://purl.obolibrary.org/obo/UBERON_0006860,swim bladder +10.9145938,CHEBI:24873,http://purl.obolibrary.org/obo/CHEBI_24873,iron molecular entity +10.9145938,CHEBI:33744,http://purl.obolibrary.org/obo/CHEBI_33744,iron group molecular entity +10.9145938,DRUGBANK:DB00408,http://purl.obolibrary.org/obo/DRUGBANK_DB00408,none +10.9145938,DRUGBANK:DB00676,http://purl.obolibrary.org/obo/DRUGBANK_DB00676,none +10.9145938,DRUGBANK:DB04315,http://purl.obolibrary.org/obo/DRUGBANK_DB04315,none +10.9145938,DRUGBANK:DB08874,http://purl.obolibrary.org/obo/DRUGBANK_DB08874,none +10.9145938,DRUGBANK:DB15813,http://purl.obolibrary.org/obo/DRUGBANK_DB15813,none +10.9145938,MONDO:0009293,http://purl.obolibrary.org/obo/MONDO_0009293,glycogen storage disease V +10.9145938,MONDO:0060765,http://purl.obolibrary.org/obo/MONDO_0060765,fibroepithelial polyp +10.9145938,NCBITaxon:1913637,http://purl.obolibrary.org/obo/NCBITaxon_1913637,Mucoromycota +10.9145938,PR:000002066,http://purl.obolibrary.org/obo/PR_000002066,neural cell adhesion molecule L1 +10.9145938,PR:000008519,http://purl.obolibrary.org/obo/PR_000008519,transcription factor HES-5 +10.9145938,PR:000022190,http://purl.obolibrary.org/obo/PR_000022190,none +10.9145938,PR:000050198,http://purl.obolibrary.org/obo/PR_000050198,none +10.9145938,PR:P13379,http://purl.obolibrary.org/obo/PR_P13379,none +10.9145938,PR:P40186,http://purl.obolibrary.org/obo/PR_P40186,none +10.9145938,PR:P41815,http://purl.obolibrary.org/obo/PR_P41815,none +10.9145938,PR:Q8LAL2,http://purl.obolibrary.org/obo/PR_Q8LAL2,none +10.9145938,PR:Q9FE25,http://purl.obolibrary.org/obo/PR_Q9FE25,none +10.9145938,UBERON:0014479,http://purl.obolibrary.org/obo/UBERON_0014479,elephant trunk +10.9169775,CL:0002341,http://purl.obolibrary.org/obo/CL_0002341,basal cell of prostate epithelium +10.9169775,DRUGBANK:DB00214,http://purl.obolibrary.org/obo/DRUGBANK_DB00214,none +10.9169775,DRUGBANK:DB02496,http://purl.obolibrary.org/obo/DRUGBANK_DB02496,none +10.9169775,DRUGBANK:DB11471,http://purl.obolibrary.org/obo/DRUGBANK_DB11471,none +10.9169775,DRUGBANK:DB12478,http://purl.obolibrary.org/obo/DRUGBANK_DB12478,none +10.9169775,DRUGBANK:DB13862,http://purl.obolibrary.org/obo/DRUGBANK_DB13862,none +10.9169775,GO:0002183,http://purl.obolibrary.org/obo/GO_0002183,cytoplasmic translational initiation +10.9169775,GO:0016783,http://purl.obolibrary.org/obo/GO_0016783,sulfurtransferase activity +10.9169775,GO:0032412,http://purl.obolibrary.org/obo/GO_0032412,regulation of ion transmembrane transporter activity +10.9169775,GO:0043161,http://purl.obolibrary.org/obo/GO_0043161,proteasome-mediated ubiquitin-dependent protein catabolic process +10.9169775,MONDO:0004351,http://purl.obolibrary.org/obo/MONDO_0004351,intraocular lymphoma +10.9169775,MONDO:0044200,http://purl.obolibrary.org/obo/MONDO_0044200,T-B+ severe combined immunodeficiency +10.9169775,PR:000001681,http://purl.obolibrary.org/obo/PR_000001681,vasopressin V1a receptor +10.9169775,PR:000003733,http://purl.obolibrary.org/obo/PR_000003733,a disintegrin and metalloproteinase with thrombospondin motifs 4 +10.9169775,PR:000006309,http://purl.obolibrary.org/obo/PR_000006309,deoxycytidine kinase +10.9169775,PR:000007155,http://purl.obolibrary.org/obo/PR_000007155,endoplasmic reticulum aminopeptidase 1 +10.9169775,PR:000008831,http://purl.obolibrary.org/obo/PR_000008831,histatin-1 +10.9169775,PR:000013373,http://purl.obolibrary.org/obo/PR_000013373,proteasome subunit beta type-5 +10.9169775,PR:000015428,http://purl.obolibrary.org/obo/PR_000015428,transcription factor SOX-3 +10.9169775,PR:000016555,http://purl.obolibrary.org/obo/PR_000016555,thymocyte selection-associated high mobility group box protein TOX +10.9169775,UBERON:0000399,http://purl.obolibrary.org/obo/UBERON_0000399,jejunal mucosa +10.919367,CHEBI:29256,http://purl.obolibrary.org/obo/CHEBI_29256,thiol +10.919367,CHEBI:33424,http://purl.obolibrary.org/obo/CHEBI_33424,sulfur oxoacid derivative +10.919367,CL:0002339,http://purl.obolibrary.org/obo/CL_0002339,prostate stem cell +10.919367,DRUGBANK:DB13075,http://purl.obolibrary.org/obo/DRUGBANK_DB13075,none +10.919367,GO:0008565,http://purl.obolibrary.org/obo/GO_0008565,none +10.919367,GO:0009547,http://purl.obolibrary.org/obo/GO_0009547,plastid ribosome +10.919367,MONDO:0003158,http://purl.obolibrary.org/obo/MONDO_0003158,malignant myoepithelioma +10.919367,MONDO:0007078,http://purl.obolibrary.org/obo/MONDO_0007078,pseudohypoparathyroidism type 1A +10.919367,MONDO:0008412,http://purl.obolibrary.org/obo/MONDO_0008412,intestinal schistosomiasis +10.919367,MONDO:0018983,http://purl.obolibrary.org/obo/MONDO_0018983,tolosa-Hunt syndrome +10.919367,NCBITaxon:4734,http://purl.obolibrary.org/obo/NCBITaxon_4734,commelinids +10.919367,PR:000001210,http://purl.obolibrary.org/obo/PR_000001210,C-X-C chemokine receptor type 6 +10.919367,PR:000001955,http://purl.obolibrary.org/obo/PR_000001955,tumor necrosis factor receptor superfamily member 12A +10.919367,PR:000004040,http://purl.obolibrary.org/obo/PR_000004040,ankyrin repeat domain-containing protein 1 +10.919367,PR:000013116,http://purl.obolibrary.org/obo/PR_000013116,protein phosphatase 1 regulatory subunit 15A +10.919367,PR:000016649,http://purl.obolibrary.org/obo/PR_000016649,transcription intermediary factor 1-alpha +10.919367,PR:000029382,http://purl.obolibrary.org/obo/PR_000029382,ATP-dependent DNA helicase DDX11 +10.919367,PR:Q84VX0,http://purl.obolibrary.org/obo/PR_Q84VX0,none +10.9217622,DRUGBANK:DB09331,http://purl.obolibrary.org/obo/DRUGBANK_DB09331,none +10.9217622,GO:0016781,http://purl.obolibrary.org/obo/GO_0016781,"phosphotransferase activity, paired acceptors" +10.9217622,GO:0034470,http://purl.obolibrary.org/obo/GO_0034470,ncRNA processing +10.9217622,GO:0042311,http://purl.obolibrary.org/obo/GO_0042311,vasodilation +10.9217622,GO:1990029,http://purl.obolibrary.org/obo/GO_1990029,vasomotion +10.9217622,MONDO:0006560,http://purl.obolibrary.org/obo/MONDO_0006560,hypohidrosis +10.9217622,MONDO:0006882,http://purl.obolibrary.org/obo/MONDO_0006882,orchitis +10.9217622,MONDO:0011947,http://purl.obolibrary.org/obo/MONDO_0011947,HNP1 +10.9217622,MONDO:0015318,http://purl.obolibrary.org/obo/MONDO_0015318,Pierre Robin syndrome associated with collagen disease +10.9217622,PR:000001007,http://purl.obolibrary.org/obo/PR_000001007,integrin alpha-1 +10.9217622,PR:000001968,http://purl.obolibrary.org/obo/PR_000001968,tyrosine-protein phosphatase non-receptor type substrate 1 +10.9217622,PR:000003606,http://purl.obolibrary.org/obo/PR_000003606,aggrecan core protein +10.9217622,PR:000004153,http://purl.obolibrary.org/obo/PR_000004153,apolipoprotein C-IV +10.9217622,PR:000006917,http://purl.obolibrary.org/obo/PR_000006917,ephrin-A2 +10.9217622,PR:000007510,http://purl.obolibrary.org/obo/PR_000007510,tyrosine-protein kinase Fgr +10.9217622,PR:000009408,http://purl.obolibrary.org/obo/PR_000009408,kallikrein-11 +10.9217622,PR:000014941,http://purl.obolibrary.org/obo/PR_000014941,solute carrier family 15 member 2 +10.9217622,PR:000017438,http://purl.obolibrary.org/obo/PR_000017438,protein Wnt-11 +10.9217622,UBERON:0002439,http://purl.obolibrary.org/obo/UBERON_0002439,myenteric nerve plexus +10.9217622,UBERON:0006052,http://purl.obolibrary.org/obo/UBERON_0006052,digit 5 +10.9241632,DRUGBANK:DB01366,http://purl.obolibrary.org/obo/DRUGBANK_DB01366,none +10.9241632,DRUGBANK:DB01581,http://purl.obolibrary.org/obo/DRUGBANK_DB01581,none +10.9241632,DRUGBANK:DB09236,http://purl.obolibrary.org/obo/DRUGBANK_DB09236,none +10.9241632,DRUGBANK:DB12159,http://purl.obolibrary.org/obo/DRUGBANK_DB12159,none +10.9241632,DRUGBANK:DB13813,http://purl.obolibrary.org/obo/DRUGBANK_DB13813,none +10.9241632,DRUGBANK:DB15359,http://purl.obolibrary.org/obo/DRUGBANK_DB15359,none +10.9241632,GO:0004421,http://purl.obolibrary.org/obo/GO_0004421,hydroxymethylglutaryl-CoA synthase activity +10.9241632,GO:0005991,http://purl.obolibrary.org/obo/GO_0005991,trehalose metabolic process +10.9241632,GO:0043588,http://purl.obolibrary.org/obo/GO_0043588,skin development +10.9241632,GO:0045446,http://purl.obolibrary.org/obo/GO_0045446,endothelial cell differentiation +10.9241632,GO:0046222,http://purl.obolibrary.org/obo/GO_0046222,aflatoxin metabolic process +10.9241632,GO:0050867,http://purl.obolibrary.org/obo/GO_0050867,positive regulation of cell activation +10.9241632,MONDO:0003067,http://purl.obolibrary.org/obo/MONDO_0003067,cervical lymphadenitis +10.9241632,MONDO:0006619,http://purl.obolibrary.org/obo/MONDO_0006619,viral exanthem +10.9241632,MONDO:0010735,http://purl.obolibrary.org/obo/MONDO_0010735,Kennedy disease +10.9241632,MONDO:0016115,http://purl.obolibrary.org/obo/MONDO_0016115,bulbospinal muscular atrophy of adulthood +10.9241632,PR:000001942,http://purl.obolibrary.org/obo/PR_000001942,transcription factor COE1 +10.9241632,PR:000004617,http://purl.obolibrary.org/obo/PR_000004617,transcription regulator protein BACH1 +10.9241632,PR:000005139,http://purl.obolibrary.org/obo/PR_000005139,cyclin-T1 +10.9241632,PR:000010534,http://purl.obolibrary.org/obo/PR_000010534,DNA-3-methyladenine glycosylase +10.9241632,PR:000014414,http://purl.obolibrary.org/obo/PR_000014414,protein S100-A7 +10.9241632,PR:Q9USU8,http://purl.obolibrary.org/obo/PR_Q9USU8,none +10.9241632,UBERON:0012651,http://purl.obolibrary.org/obo/UBERON_0012651,mucosa of gastroduodenal junction +10.9265699,DRUGBANK:DB00258,http://purl.obolibrary.org/obo/DRUGBANK_DB00258,none +10.9265699,DRUGBANK:DB13588,http://purl.obolibrary.org/obo/DRUGBANK_DB13588,none +10.9265699,DRUGBANK:DB14291,http://purl.obolibrary.org/obo/DRUGBANK_DB14291,none +10.9265699,GO:0005858,http://purl.obolibrary.org/obo/GO_0005858,axonemal dynein complex +10.9265699,MONDO:0000066,http://purl.obolibrary.org/obo/MONDO_0000066,mitochondrial complex deficiency +10.9265699,NCBITaxon:39750,http://purl.obolibrary.org/obo/NCBITaxon_39750,none +10.9265699,PR:000001655,http://purl.obolibrary.org/obo/PR_000001655,prostacyclin receptor +10.9265699,PR:000003487,http://purl.obolibrary.org/obo/PR_000003487,none +10.9265699,PR:000006920,http://purl.obolibrary.org/obo/PR_000006920,ephrin-A5 +10.9265699,PR:000022909,http://purl.obolibrary.org/obo/PR_000022909,none +10.9265699,PR:O61235,http://purl.obolibrary.org/obo/PR_O61235,none +10.9265699,PR:P09547,http://purl.obolibrary.org/obo/PR_P09547,none +10.9265699,PR:Q9SMQ6,http://purl.obolibrary.org/obo/PR_Q9SMQ6,none +10.9265699,UBERON:0011645,http://purl.obolibrary.org/obo/UBERON_0011645,iliofemoralis muscle +10.9289825,DRUGBANK:DB02142,http://purl.obolibrary.org/obo/DRUGBANK_DB02142,none +10.9289825,DRUGBANK:DB05271,http://purl.obolibrary.org/obo/DRUGBANK_DB05271,none +10.9289825,DRUGBANK:DB06203,http://purl.obolibrary.org/obo/DRUGBANK_DB06203,none +10.9289825,DRUGBANK:DB06681,http://purl.obolibrary.org/obo/DRUGBANK_DB06681,none +10.9289825,DRUGBANK:DB06754,http://purl.obolibrary.org/obo/DRUGBANK_DB06754,none +10.9289825,DRUGBANK:DB06815,http://purl.obolibrary.org/obo/DRUGBANK_DB06815,none +10.9289825,GO:0032010,http://purl.obolibrary.org/obo/GO_0032010,phagolysosome +10.9289825,GO:0070568,http://purl.obolibrary.org/obo/GO_0070568,guanylyltransferase activity +10.9289825,GO:0072537,http://purl.obolibrary.org/obo/GO_0072537,fibroblast activation +10.9289825,MONDO:0004259,http://purl.obolibrary.org/obo/MONDO_0004259,endocervical carcinoma +10.9289825,MONDO:0009319,http://purl.obolibrary.org/obo/MONDO_0009319,pantothenate kinase-associated neurodegeneration +10.9289825,MONDO:0019454,http://purl.obolibrary.org/obo/MONDO_0019454,myelodysplastic syndrome with excess blasts +10.9289825,NCBITaxon:241407,http://purl.obolibrary.org/obo/NCBITaxon_241407,none +10.9289825,PR:000006441,http://purl.obolibrary.org/obo/PR_000006441,microprocessor complex subunit DGCR8 +10.9289825,PR:000006481,http://purl.obolibrary.org/obo/PR_000006481,type II iodothyronine deiodinase +10.9289825,PR:000009102,http://purl.obolibrary.org/obo/PR_000009102,iron-responsive element-binding protein 2 +10.9289825,PR:000012565,http://purl.obolibrary.org/obo/PR_000012565,peroxisomal targeting signal 1 receptor +10.9289825,PR:000013239,http://purl.obolibrary.org/obo/PR_000013239,DNA-dependent protein kinase catalytic subunit +10.9289825,PR:000014286,http://purl.obolibrary.org/obo/PR_000014286,ribosomal protein S6 kinase alpha-5 +10.9289825,PR:000015294,http://purl.obolibrary.org/obo/PR_000015294,sphingomyelin phosphodiesterase 3 +10.9289825,PR:000015865,http://purl.obolibrary.org/obo/PR_000015865,synaptonemal complex protein 3 +10.9289825,UBERON:0001370,http://purl.obolibrary.org/obo/UBERON_0001370,gluteus maximus +10.9289825,UBERON:0003074,http://purl.obolibrary.org/obo/UBERON_0003074,mesonephric duct +10.9314009,CHEBI:68452,http://purl.obolibrary.org/obo/CHEBI_68452,azole +10.9314009,DRUGBANK:DB00521,http://purl.obolibrary.org/obo/DRUGBANK_DB00521,none +10.9314009,DRUGBANK:DB02178,http://purl.obolibrary.org/obo/DRUGBANK_DB02178,none +10.9314009,DRUGBANK:DB09186,http://purl.obolibrary.org/obo/DRUGBANK_DB09186,none +10.9314009,DRUGBANK:DB11468,http://purl.obolibrary.org/obo/DRUGBANK_DB11468,none +10.9314009,GO:0001707,http://purl.obolibrary.org/obo/GO_0001707,mesoderm formation +10.9314009,GO:0003872,http://purl.obolibrary.org/obo/GO_0003872,6-phosphofructokinase activity +10.9314009,GO:0046939,http://purl.obolibrary.org/obo/GO_0046939,nucleotide phosphorylation +10.9314009,MONDO:0006544,http://purl.obolibrary.org/obo/MONDO_0006544,erythema infectiosum +10.9314009,MONDO:0010920,http://purl.obolibrary.org/obo/MONDO_0010920,microtia +10.9314009,MONDO:0020971,http://purl.obolibrary.org/obo/MONDO_0020971,gonococcal urethritis +10.9314009,MONDO:0043895,http://purl.obolibrary.org/obo/MONDO_0043895,ankle injury +10.9314009,NCBITaxon:12141,http://purl.obolibrary.org/obo/NCBITaxon_12141,none +10.9314009,NCBITaxon:4070,http://purl.obolibrary.org/obo/NCBITaxon_4070,Solanaceae +10.9314009,PR:000006647,http://purl.obolibrary.org/obo/PR_000006647,dipeptidase 2 +10.9314009,PR:000013228,http://purl.obolibrary.org/obo/PR_000013228,cAMP-dependent protein kinase type I-alpha regulatory subunit +10.9314009,PR:000028353,http://purl.obolibrary.org/obo/PR_000028353,none +10.9314009,PR:000030931,http://purl.obolibrary.org/obo/PR_000030931,"asparagine--tRNA ligase, mitochondrial" +10.9314009,PR:000050219,http://purl.obolibrary.org/obo/PR_000050219,alanine aminotransferase +10.9314009,PR:Q59YH3,http://purl.obolibrary.org/obo/PR_Q59YH3,none +10.9314009,PR:Q9XF19,http://purl.obolibrary.org/obo/PR_Q9XF19,none +10.9314009,UBERON:0000372,http://purl.obolibrary.org/obo/UBERON_0000372,extensor digitorum brevis pes +10.9314009,UBERON:0001246,http://purl.obolibrary.org/obo/UBERON_0001246,interlobular bile duct +10.9314009,UBERON:0002633,http://purl.obolibrary.org/obo/UBERON_0002633,motor nucleus of trigeminal nerve +10.9314009,UBERON:0005158,http://purl.obolibrary.org/obo/UBERON_0005158,parenchyma of central nervous system +10.9338251,DRUGBANK:DB01188,http://purl.obolibrary.org/obo/DRUGBANK_DB01188,none +10.9338251,DRUGBANK:DB01849,http://purl.obolibrary.org/obo/DRUGBANK_DB01849,none +10.9338251,DRUGBANK:DB11921,http://purl.obolibrary.org/obo/DRUGBANK_DB11921,none +10.9338251,DRUGBANK:DB14315,http://purl.obolibrary.org/obo/DRUGBANK_DB14315,none +10.9338251,GO:0045930,http://purl.obolibrary.org/obo/GO_0045930,negative regulation of mitotic cell cycle +10.9338251,GO:0051782,http://purl.obolibrary.org/obo/GO_0051782,negative regulation of cell division +10.9338251,NCBITaxon:451834,http://purl.obolibrary.org/obo/NCBITaxon_451834,none +10.9338251,PR:000005827,http://purl.obolibrary.org/obo/PR_000005827,"carbamoyl-phosphate synthase [ammonia], mitochondrial" +10.9338251,PR:000024021,http://purl.obolibrary.org/obo/PR_000024021,none +10.9338251,PR:000032846,http://purl.obolibrary.org/obo/PR_000032846,none +10.9338251,PR:Q6DC03,http://purl.obolibrary.org/obo/PR_Q6DC03,none +10.9338251,PR:Q9FG34,http://purl.obolibrary.org/obo/PR_Q9FG34,none +10.9338251,SO:0000392,http://purl.obolibrary.org/obo/SO_0000392,U2_snRNA +10.9338251,UBERON:0004113,http://purl.obolibrary.org/obo/UBERON_0004113,muscle of auditory ossicle +10.9338251,UBERON:0004231,http://purl.obolibrary.org/obo/UBERON_0004231,anal region smooth muscle +10.9338251,UBERON:0008800,http://purl.obolibrary.org/obo/UBERON_0008800,parietal endoderm +10.9362553,CHEBI:64767,http://purl.obolibrary.org/obo/CHEBI_64767,anionic group +10.9362553,DRUGBANK:DB14143,http://purl.obolibrary.org/obo/DRUGBANK_DB14143,none +10.9362553,GO:0004185,http://purl.obolibrary.org/obo/GO_0004185,serine-type carboxypeptidase activity +10.9362553,GO:0006220,http://purl.obolibrary.org/obo/GO_0006220,pyrimidine nucleotide metabolic process +10.9362553,GO:1990739,http://purl.obolibrary.org/obo/GO_1990739,granulosa cell proliferation +10.9362553,MONDO:0001045,http://purl.obolibrary.org/obo/MONDO_0001045,intestinal atresia +10.9362553,MONDO:0017745,http://purl.obolibrary.org/obo/MONDO_0017745,disorder of O-mannosylglycan synthesis +10.9362553,PR:000003191,http://purl.obolibrary.org/obo/PR_000003191,E3 ubiquitin-protein ligase NEDD4-like +10.9362553,PR:000006870,http://purl.obolibrary.org/obo/PR_000006870,"3-beta-hydroxysteroid-Delta(8),Delta(7)-isomerase" +10.9362553,PR:000008473,http://purl.obolibrary.org/obo/PR_000008473,tyrosine-protein kinase HCK +10.9362553,PR:000013975,http://purl.obolibrary.org/obo/PR_000013975,GTP-binding protein Rheb +10.9362553,PR:P05183,http://purl.obolibrary.org/obo/PR_P05183,none +10.9362553,PR:Q59Y31,http://purl.obolibrary.org/obo/PR_Q59Y31,none +10.9362553,UBERON:0000320,http://purl.obolibrary.org/obo/UBERON_0000320,duodenal mucosa +10.9386913,DRUGBANK:DB07706,http://purl.obolibrary.org/obo/DRUGBANK_DB07706,none +10.9386913,GO:0000804,http://purl.obolibrary.org/obo/GO_0000804,W chromosome +10.9386913,GO:0002696,http://purl.obolibrary.org/obo/GO_0002696,positive regulation of leukocyte activation +10.9386913,GO:0017096,http://purl.obolibrary.org/obo/GO_0017096,acetylserotonin O-methyltransferase activity +10.9386913,GO:0031577,http://purl.obolibrary.org/obo/GO_0031577,spindle checkpoint signaling +10.9386913,GO:0036321,http://purl.obolibrary.org/obo/GO_0036321,ghrelin secretion +10.9386913,GO:1902224,http://purl.obolibrary.org/obo/GO_1902224,ketone body metabolic process +10.9386913,MONDO:0005124,http://purl.obolibrary.org/obo/MONDO_0005124,leprosy +10.9386913,MONDO:0016643,http://purl.obolibrary.org/obo/MONDO_0016643,frontonasal dysplasia +10.9386913,NCBITaxon:10092,http://purl.obolibrary.org/obo/NCBITaxon_10092,none +10.9386913,NCBITaxon:10258,http://purl.obolibrary.org/obo/NCBITaxon_10258,Orf virus +10.9386913,NCBITaxon:11002,http://purl.obolibrary.org/obo/NCBITaxon_11002,Infectious pancreatic necrosis virus +10.9386913,PR:000001856,http://purl.obolibrary.org/obo/PR_000001856,hyaluronan mediated motility receptor +10.9386913,PR:000003675,http://purl.obolibrary.org/obo/PR_000003675,"actin, aortic smooth muscle" +10.9386913,PR:000005422,http://purl.obolibrary.org/obo/PR_000005422,secretogranin-1 +10.9386913,PR:000007365,http://purl.obolibrary.org/obo/PR_000007365,"fructose-1,6-bisphosphatase 1" +10.9386913,PR:000044640,http://purl.obolibrary.org/obo/PR_000044640,chemerin receptor +10.9386913,PR:P19171,http://purl.obolibrary.org/obo/PR_P19171,none +10.9386913,PR:P79098,http://purl.obolibrary.org/obo/PR_P79098,none +10.9386913,UBERON:0001827,http://purl.obolibrary.org/obo/UBERON_0001827,secretion of lacrimal gland +10.9386913,UBERON:0010309,http://purl.obolibrary.org/obo/UBERON_0010309,palpebral bone +10.9411333,CHEBI:50919,http://purl.obolibrary.org/obo/CHEBI_50919,antiemetic +10.9411333,CL:0011001,http://purl.obolibrary.org/obo/CL_0011001,spinal cord motor neuron +10.9411333,DRUGBANK:DB00549,http://purl.obolibrary.org/obo/DRUGBANK_DB00549,none +10.9411333,DRUGBANK:DB08883,http://purl.obolibrary.org/obo/DRUGBANK_DB08883,none +10.9411333,GO:0002673,http://purl.obolibrary.org/obo/GO_0002673,regulation of acute inflammatory response +10.9411333,GO:0005243,http://purl.obolibrary.org/obo/GO_0005243,gap junction channel activity +10.9411333,MONDO:0010006,http://purl.obolibrary.org/obo/MONDO_0010006,Sandhoff disease +10.9411333,MONDO:0016157,http://purl.obolibrary.org/obo/MONDO_0016157,qualitative or quantitative defects of fukutin +10.9411333,MONDO:0017386,http://purl.obolibrary.org/obo/MONDO_0017386,pleomorphic rhabdomyosarcoma +10.9411333,MONDO:0018132,http://purl.obolibrary.org/obo/MONDO_0018132,congenital muscular alpha-dystroglycanopathy with brain and eye anomalies +10.9411333,MONDO:0018869,http://purl.obolibrary.org/obo/MONDO_0018869,cobblestone lissencephaly +10.9411333,MONDO:0043529,http://purl.obolibrary.org/obo/MONDO_0043529,carcinoid heart disease +10.9411333,PR:000001409,http://purl.obolibrary.org/obo/PR_000001409,ADP-ribosyl cyclase/cyclic ADP-ribose hydrolase 2 +10.9411333,PR:000007212,http://purl.obolibrary.org/obo/PR_000007212,homeobox protein ESX1 +10.9411333,PR:000007318,http://purl.obolibrary.org/obo/PR_000007318,acyl-CoA 6-desaturase +10.9411333,PR:000009732,http://purl.obolibrary.org/obo/PR_000009732,plastin-2 +10.9411333,PR:000022078,http://purl.obolibrary.org/obo/PR_000022078,none +10.9411333,PR:000023858,http://purl.obolibrary.org/obo/PR_000023858,none +10.9411333,UBERON:0005451,http://purl.obolibrary.org/obo/UBERON_0005451,segment of manus +10.9411333,UBERON:0006136,http://purl.obolibrary.org/obo/UBERON_0006136,unmyelinated nerve fiber +10.9411333,UBERON:0011534,http://purl.obolibrary.org/obo/UBERON_0011534,abductor pollicis muscle +10.9411333,UBERON:0011955,http://purl.obolibrary.org/obo/UBERON_0011955,left hepatic vein +10.9435813,CHEBI:18186,http://purl.obolibrary.org/obo/CHEBI_18186,tyrosine +10.9435813,DRUGBANK:DB00029,http://purl.obolibrary.org/obo/DRUGBANK_DB00029,none +10.9435813,DRUGBANK:DB00500,http://purl.obolibrary.org/obo/DRUGBANK_DB00500,none +10.9435813,DRUGBANK:DB08905,http://purl.obolibrary.org/obo/DRUGBANK_DB08905,none +10.9435813,DRUGBANK:DB10555,http://purl.obolibrary.org/obo/DRUGBANK_DB10555,none +10.9435813,DRUGBANK:DB13833,http://purl.obolibrary.org/obo/DRUGBANK_DB13833,none +10.9435813,DRUGBANK:DB14287,http://purl.obolibrary.org/obo/DRUGBANK_DB14287,none +10.9435813,GO:0034311,http://purl.obolibrary.org/obo/GO_0034311,diol metabolic process +10.9435813,GO:0047066,http://purl.obolibrary.org/obo/GO_0047066,phospholipid-hydroperoxide glutathione peroxidase activity +10.9435813,MONDO:0001322,http://purl.obolibrary.org/obo/MONDO_0001322,pericardium cancer +10.9435813,MONDO:0016182,http://purl.obolibrary.org/obo/MONDO_0016182,"qualitative or quantitative defects of protein O-mannose beta1,2N-acetylglucosaminyltransferase" +10.9435813,MONDO:0016185,http://purl.obolibrary.org/obo/MONDO_0016185,qualitative or quantitative defects of protein O-mannosyltransferase 2 +10.9435813,MONDO:0019134,http://purl.obolibrary.org/obo/MONDO_0019134,central neurocytoma +10.9435813,MONDO:0019469,http://purl.obolibrary.org/obo/MONDO_0019469,T-cell large granular lymphocyte leukemia +10.9435813,MONDO:0020528,http://purl.obolibrary.org/obo/MONDO_0020528,ACTH-dependent Cushing syndrome +10.9435813,NCBITaxon:10273,http://purl.obolibrary.org/obo/NCBITaxon_10273,none +10.9435813,PR:000007513,http://purl.obolibrary.org/obo/PR_000007513,four and a half LIM domains protein 1 +10.9435813,PR:000007690,http://purl.obolibrary.org/obo/PR_000007690,ferritin heavy chain +10.9435813,PR:000009366,http://purl.obolibrary.org/obo/PR_000009366,krueppel-like factor 6 +10.9435813,PR:000016640,http://purl.obolibrary.org/obo/PR_000016640,tribbles homolog 3 +10.9435813,PR:Q9SZE7,http://purl.obolibrary.org/obo/PR_Q9SZE7,none +10.9435813,UBERON:0001378,http://purl.obolibrary.org/obo/UBERON_0001378,rectus femoris +10.9435813,UBERON:0009661,http://purl.obolibrary.org/obo/UBERON_0009661,midbrain nucleus +10.9460353,CL:0000645,http://purl.obolibrary.org/obo/CL_0000645,pituicyte +10.9460353,CL:0001054,http://purl.obolibrary.org/obo/CL_0001054,CD14-positive monocyte +10.9460353,GO:0008878,http://purl.obolibrary.org/obo/GO_0008878,glucose-1-phosphate adenylyltransferase activity +10.9460353,GO:0019363,http://purl.obolibrary.org/obo/GO_0019363,pyridine nucleotide biosynthetic process +10.9460353,PR:000001627,http://purl.obolibrary.org/obo/PR_000001627,neurotensin receptor type 1 +10.9460353,PR:000001744,http://purl.obolibrary.org/obo/PR_000001744,translocation-associated membrane protein +10.9460353,PR:000004642,http://purl.obolibrary.org/obo/PR_000004642,BRCA1-associated RING domain protein 1 +10.9460353,PR:000006974,http://purl.obolibrary.org/obo/PR_000006974,eukaryotic translation initiation factor 3 subunit B +10.9460353,PR:000011439,http://purl.obolibrary.org/obo/PR_000011439,neurturin +10.9460353,PR:000014468,http://purl.obolibrary.org/obo/PR_000014468,DNA-binding protein SATB1 +10.9460353,PR:000014879,http://purl.obolibrary.org/obo/PR_000014879,gem-associated protein 2 +10.9460353,PR:000026994,http://purl.obolibrary.org/obo/PR_000026994,microtubule-associated protein tau isoform Tau-A +10.9484953,CHEBI:59283,http://purl.obolibrary.org/obo/CHEBI_59283,delta-opioid receptor antagonist +10.9484953,DRUGBANK:DB09303,http://purl.obolibrary.org/obo/DRUGBANK_DB09303,none +10.9484953,GO:0006561,http://purl.obolibrary.org/obo/GO_0006561,proline biosynthetic process +10.9484953,GO:0019789,http://purl.obolibrary.org/obo/GO_0019789,SUMO transferase activity +10.9484953,GO:0036273,http://purl.obolibrary.org/obo/GO_0036273,response to statin +10.9484953,HP:0003401,http://purl.obolibrary.org/obo/HP_0003401,Paresthesia +10.9484953,MONDO:0005501,http://purl.obolibrary.org/obo/MONDO_0005501,congenital disorder of glycosylation type II +10.9484953,MONDO:0006952,http://purl.obolibrary.org/obo/MONDO_0006952,retinopathy of prematurity +10.9484953,MONDO:0016910,http://purl.obolibrary.org/obo/MONDO_0016910,partial deletion of the long arm of chromosome 11 +10.9484953,MONDO:0017036,http://purl.obolibrary.org/obo/MONDO_0017036,Langerhans cell histiocytosis in childhood and adulthood +10.9484953,MONDO:0019351,http://purl.obolibrary.org/obo/MONDO_0019351,isolated spina bifida +10.9484953,NCBITaxon:211586,http://purl.obolibrary.org/obo/NCBITaxon_211586,none +10.9484953,PR:000001822,http://purl.obolibrary.org/obo/PR_000001822,MHC class II histocompatibility antigen gamma chain +10.9484953,PR:000010322,http://purl.obolibrary.org/obo/PR_000010322,homeobox protein MOX-1 +10.9484953,PR:000014284,http://purl.obolibrary.org/obo/PR_000014284,ribosomal protein S6 kinase alpha-3 +10.9484953,PR:000032777,http://purl.obolibrary.org/obo/PR_000032777,RWD domain-containing protein 2B +10.9484953,PR:Q05085,http://purl.obolibrary.org/obo/PR_Q05085,none +10.9484953,PR:Q8GW32,http://purl.obolibrary.org/obo/PR_Q8GW32,none +10.9484953,SO:0000192,http://purl.obolibrary.org/obo/SO_0000192,three_prime_intron +10.9484953,UBERON:0001679,http://purl.obolibrary.org/obo/UBERON_0001679,ethmoid bone +10.9484953,UBERON:0006675,http://purl.obolibrary.org/obo/UBERON_0006675,venous valve +10.9484953,UBERON:0009030,http://purl.obolibrary.org/obo/UBERON_0009030,left pulmonary vein +10.9484953,UBERON:0022351,http://purl.obolibrary.org/obo/UBERON_0022351,parietal serous membrane +10.9509614,GO:0001890,http://purl.obolibrary.org/obo/GO_0001890,placenta development +10.9509614,GO:0004528,http://purl.obolibrary.org/obo/GO_0004528,phosphodiesterase I activity +10.9509614,GO:0005246,http://purl.obolibrary.org/obo/GO_0005246,calcium channel regulator activity +10.9509614,GO:0010737,http://purl.obolibrary.org/obo/GO_0010737,protein kinase A signaling +10.9509614,GO:0030017,http://purl.obolibrary.org/obo/GO_0030017,sarcomere +10.9509614,GO:0045664,http://purl.obolibrary.org/obo/GO_0045664,regulation of neuron differentiation +10.9509614,GO:1900619,http://purl.obolibrary.org/obo/GO_1900619,acetate ester metabolic process +10.9509614,MONDO:0015476,http://purl.obolibrary.org/obo/MONDO_0015476,cysts and fistulae of the face and oral cavity +10.9509614,MONDO:0017844,http://purl.obolibrary.org/obo/MONDO_0017844,Sezary syndrome +10.9509614,NCBITaxon:2233839,http://purl.obolibrary.org/obo/NCBITaxon_2233839,none +10.9509614,PR:000001233,http://purl.obolibrary.org/obo/PR_000001233,adhesion G protein-coupled receptor L1 +10.9509614,PR:000006176,http://purl.obolibrary.org/obo/PR_000006176,none +10.9509614,PR:000006971,http://purl.obolibrary.org/obo/PR_000006971,eukaryotic translation initiation factor 2 subunit 1 +10.9509614,PR:000007754,http://purl.obolibrary.org/obo/PR_000007754,GRB2-associated-binding protein 2 +10.9509614,PR:000007874,http://purl.obolibrary.org/obo/PR_000007874,guanylate-binding protein 1 +10.9509614,PR:000013631,http://purl.obolibrary.org/obo/PR_000013631,Ras-related protein Rab-4A +10.9509614,PR:000013705,http://purl.obolibrary.org/obo/PR_000013705,receptor activity-modifying protein 1 +10.9509614,PR:000017299,http://purl.obolibrary.org/obo/PR_000017299,VIP peptides +10.9509614,SO:0000375,http://purl.obolibrary.org/obo/SO_0000375,cytosolic_5_8S_rRNA +10.9509614,UBERON:0006846,http://purl.obolibrary.org/obo/UBERON_0006846,surface groove +10.9534336,CHEBI:25676,http://purl.obolibrary.org/obo/CHEBI_25676,oligopeptide +10.9534336,CHEBI:32789,http://purl.obolibrary.org/obo/CHEBI_32789,tyrosine residue +10.9534336,CL:0000061,http://purl.obolibrary.org/obo/CL_0000061,cementoblast +10.9534336,DRUGBANK:DB01173,http://purl.obolibrary.org/obo/DRUGBANK_DB01173,none +10.9534336,DRUGBANK:DB03758,http://purl.obolibrary.org/obo/DRUGBANK_DB03758,none +10.9534336,GO:0004115,http://purl.obolibrary.org/obo/GO_0004115,"3',5'-cyclic-AMP phosphodiesterase activity" +10.9534336,GO:0045271,http://purl.obolibrary.org/obo/GO_0045271,respiratory chain complex I +10.9534336,GO:1990748,http://purl.obolibrary.org/obo/GO_1990748,cellular detoxification +10.9534336,MONDO:0006552,http://purl.obolibrary.org/obo/MONDO_0006552,folliculitis +10.9534336,MONDO:0011628,http://purl.obolibrary.org/obo/MONDO_0011628,propionic acidemia +10.9534336,MONDO:0015365,http://purl.obolibrary.org/obo/MONDO_0015365,autosomal dominant hereditary sensory and autonomic neuropathy +10.9534336,MONDO:0018766,http://purl.obolibrary.org/obo/MONDO_0018766,chronic enteropathy associated with SLCO2A1 gene +10.9534336,NCBITaxon:10261,http://purl.obolibrary.org/obo/NCBITaxon_10261,Fowlpox virus +10.9534336,NCBITaxon:11047,http://purl.obolibrary.org/obo/NCBITaxon_11047,Equine arteritis virus +10.9534336,NCBITaxon:2499604,http://purl.obolibrary.org/obo/NCBITaxon_2499604,none +10.9534336,NCBITaxon:2499610,http://purl.obolibrary.org/obo/NCBITaxon_2499610,none +10.9534336,NCBITaxon:2499620,http://purl.obolibrary.org/obo/NCBITaxon_2499620,none +10.9534336,NCBITaxon:32357,http://purl.obolibrary.org/obo/NCBITaxon_32357,none +10.9534336,PR:000001411,http://purl.obolibrary.org/obo/PR_000001411,CD276 molecule +10.9534336,PR:000006433,http://purl.obolibrary.org/obo/PR_000006433,diacylglycerol O-acyltransferase 2 +10.9534336,PR:000014281,http://purl.obolibrary.org/obo/PR_000014281,40S ribosomal protein S6 +10.9534336,PR:000014564,http://purl.obolibrary.org/obo/PR_000014564,"succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial" +10.9534336,PR:000016355,http://purl.obolibrary.org/obo/PR_000016355,metalloproteinase inhibitor 4 +10.9534336,PR:000016482,http://purl.obolibrary.org/obo/PR_000016482,tumor necrosis factor receptor superfamily member 18 +10.9534336,PR:000037077,http://purl.obolibrary.org/obo/PR_000037077,ubiquitinated protein +10.9534336,PR:P00890,http://purl.obolibrary.org/obo/PR_P00890,none +10.9534336,SO:0000264,http://purl.obolibrary.org/obo/SO_0000264,leucyl_tRNA +10.9534336,SO:0000584,http://purl.obolibrary.org/obo/SO_0000584,tmRNA +10.9534336,UBERON:0001215,http://purl.obolibrary.org/obo/UBERON_0001215,inferior mesenteric vein +10.9534336,UBERON:0003690,http://purl.obolibrary.org/obo/UBERON_0003690,fused sacrum +10.9534336,UBERON:0005843,http://purl.obolibrary.org/obo/UBERON_0005843,sacral spinal cord +10.9534336,UBERON:0006075,http://purl.obolibrary.org/obo/UBERON_0006075,sacral region of vertebral column +10.9534336,UBERON:0007530,http://purl.obolibrary.org/obo/UBERON_0007530,migrating mesenchyme population +10.9534336,UBERON:0013583,http://purl.obolibrary.org/obo/UBERON_0013583,metapodium bone 3 +10.9534336,UBERON:0022438,http://purl.obolibrary.org/obo/UBERON_0022438,rostral anterior cingulate cortex +10.9559119,DRUGBANK:DB03493,http://purl.obolibrary.org/obo/DRUGBANK_DB03493,none +10.9559119,GO:0002080,http://purl.obolibrary.org/obo/GO_0002080,acrosomal membrane +10.9559119,GO:0006776,http://purl.obolibrary.org/obo/GO_0006776,vitamin A metabolic process +10.9559119,GO:0009118,http://purl.obolibrary.org/obo/GO_0009118,regulation of nucleoside metabolic process +10.9559119,HP:0000366,http://purl.obolibrary.org/obo/HP_0000366,Abnormality of the nose +10.9559119,MONDO:0016098,http://purl.obolibrary.org/obo/MONDO_0016098,immune-mediated necrotizing myopathy +10.9559119,MONDO:0018921,http://purl.obolibrary.org/obo/MONDO_0018921,Meckel syndrome +10.9559119,MONDO:0019699,http://purl.obolibrary.org/obo/MONDO_0019699,slender bone dysplasia +10.9559119,MONDO:0025089,http://purl.obolibrary.org/obo/MONDO_0025089,infectious bovine rhinotracheitis +10.9559119,PR:000001348,http://purl.obolibrary.org/obo/PR_000001348,erythrocyte membrane protein Rh +10.9559119,PR:000002212,http://purl.obolibrary.org/obo/PR_000002212,"serine/threonine-protein kinase, MST4-like" +10.9559119,PR:000004175,http://purl.obolibrary.org/obo/PR_000004175,adenine phosphoribosyltransferase +10.9559119,PR:000005801,http://purl.obolibrary.org/obo/PR_000005801,carboxypeptidase B +10.9559119,PR:000008227,http://purl.obolibrary.org/obo/PR_000008227,gremlin-1 +10.9559119,PR:000012234,http://purl.obolibrary.org/obo/PR_000012234,phenylalanine-4-hydroxylase +10.9559119,PR:000013232,http://purl.obolibrary.org/obo/PR_000013232,caveolae-associated protein 3 +10.9559119,PR:000016292,http://purl.obolibrary.org/obo/PR_000016292,protein-glutamine gamma-glutamyltransferase K +10.9559119,PR:O65312,http://purl.obolibrary.org/obo/PR_O65312,none +10.9559119,UBERON:0006049,http://purl.obolibrary.org/obo/UBERON_0006049,digit 2 +10.9583964,DRUGBANK:DB08972,http://purl.obolibrary.org/obo/DRUGBANK_DB08972,none +10.9583964,GO:0008843,http://purl.obolibrary.org/obo/GO_0008843,endochitinase activity +10.9583964,GO:0031328,http://purl.obolibrary.org/obo/GO_0031328,positive regulation of cellular biosynthetic process +10.9583964,GO:0071617,http://purl.obolibrary.org/obo/GO_0071617,lysophospholipid acyltransferase activity +10.9583964,GO:0071731,http://purl.obolibrary.org/obo/GO_0071731,response to nitric oxide +10.9583964,GO:1903578,http://purl.obolibrary.org/obo/GO_1903578,regulation of ATP metabolic process +10.9583964,MONDO:0008752,http://purl.obolibrary.org/obo/MONDO_0008752,Alexander disease +10.9583964,MONDO:0019514,http://purl.obolibrary.org/obo/MONDO_0019514,hepatic veno-occlusive disease +10.9583964,NCBITaxon:207245,http://purl.obolibrary.org/obo/NCBITaxon_207245,Fornicata +10.9583964,NCBITaxon:689831,http://purl.obolibrary.org/obo/NCBITaxon_689831,Spinareovirinae +10.9583964,PR:000016001,http://purl.obolibrary.org/obo/PR_000016001,T-box transcription factor T +10.9583964,PR:000023956,http://purl.obolibrary.org/obo/PR_000023956,none +10.9583964,PR:P00817,http://purl.obolibrary.org/obo/PR_P00817,none +10.9583964,UBERON:0011566,http://purl.obolibrary.org/obo/UBERON_0011566,lumen of esophagus +10.960887,CL:0000058,http://purl.obolibrary.org/obo/CL_0000058,chondroblast +10.960887,DRUGBANK:DB00419,http://purl.obolibrary.org/obo/DRUGBANK_DB00419,none +10.960887,DRUGBANK:DB01079,http://purl.obolibrary.org/obo/DRUGBANK_DB01079,none +10.960887,DRUGBANK:DB03317,http://purl.obolibrary.org/obo/DRUGBANK_DB03317,none +10.960887,DRUGBANK:DB11268,http://purl.obolibrary.org/obo/DRUGBANK_DB11268,none +10.960887,DRUGBANK:DB11823,http://purl.obolibrary.org/obo/DRUGBANK_DB11823,none +10.960887,DRUGBANK:DB14371,http://purl.obolibrary.org/obo/DRUGBANK_DB14371,none +10.960887,DRUGBANK:DB14502,http://purl.obolibrary.org/obo/DRUGBANK_DB14502,none +10.960887,GO:0009637,http://purl.obolibrary.org/obo/GO_0009637,response to blue light +10.960887,GO:0035733,http://purl.obolibrary.org/obo/GO_0035733,hepatic stellate cell activation +10.960887,MONDO:0001875,http://purl.obolibrary.org/obo/MONDO_0001875,epicondylitis +10.960887,MONDO:0007019,http://purl.obolibrary.org/obo/MONDO_0007019,vulvovaginitis +10.960887,MONDO:0008458,http://purl.obolibrary.org/obo/MONDO_0008458,spinocerebellar ataxia type 2 +10.960887,NCBITaxon:12270,http://purl.obolibrary.org/obo/NCBITaxon_12270,none +10.960887,NCBITaxon:451507,http://purl.obolibrary.org/obo/NCBITaxon_451507,Mucoromycotina +10.960887,PR:000001954,http://purl.obolibrary.org/obo/PR_000001954,tumor necrosis factor receptor superfamily member 11A +10.960887,PR:000004508,http://purl.obolibrary.org/obo/PR_000004508,ataxin-7 +10.960887,PR:000006072,http://purl.obolibrary.org/obo/PR_000006072,C-X-C motif chemokine 6 +10.960887,PR:000007268,http://purl.obolibrary.org/obo/PR_000007268,exostosin-1 +10.960887,PR:000007941,http://purl.obolibrary.org/obo/PR_000007941,zinc finger protein Gfi-1 +10.960887,PR:000015068,http://purl.obolibrary.org/obo/PR_000015068,"solute carrier family 2, facilitated glucose transporter member 5" +10.960887,PR:000016193,http://purl.obolibrary.org/obo/PR_000016193,T-cell leukemia/lymphoma protein 1A +10.960887,PR:000016819,http://purl.obolibrary.org/obo/PR_000016819,tubulin beta-3 chain +10.960887,SO:0001911,http://purl.obolibrary.org/obo/SO_0001911,copy_number_increase +10.960887,UBERON:0002305,http://purl.obolibrary.org/obo/UBERON_0002305,layer of hippocampus +10.9633839,DRUGBANK:DB01108,http://purl.obolibrary.org/obo/DRUGBANK_DB01108,none +10.9633839,DRUGBANK:DB05004,http://purl.obolibrary.org/obo/DRUGBANK_DB05004,none +10.9633839,DRUGBANK:DB12816,http://purl.obolibrary.org/obo/DRUGBANK_DB12816,none +10.9633839,GO:0004463,http://purl.obolibrary.org/obo/GO_0004463,leukotriene-A4 hydrolase activity +10.9633839,GO:0030318,http://purl.obolibrary.org/obo/GO_0030318,melanocyte differentiation +10.9633839,GO:0090307,http://purl.obolibrary.org/obo/GO_0090307,mitotic spindle assembly +10.9633839,MONDO:0004893,http://purl.obolibrary.org/obo/MONDO_0004893,hypertropia +10.9633839,MONDO:0006994,http://purl.obolibrary.org/obo/MONDO_0006994,tarsal tunnel syndrome +10.9633839,MONDO:0017005,http://purl.obolibrary.org/obo/MONDO_0017005,Y chromosome number anomaly +10.9633839,MONDO:0019565,http://purl.obolibrary.org/obo/MONDO_0019565,hereditary von Willebrand disease +10.9633839,MONDO:0021309,http://purl.obolibrary.org/obo/MONDO_0021309,malignant neoplasm of endocervix +10.9633839,MONDO:0100029,http://purl.obolibrary.org/obo/MONDO_0100029,antibody mediated epilepsy +10.9633839,PR:000008529,http://purl.obolibrary.org/obo/PR_000008529,hairy/enhancer-of-split related with YRPW motif protein 2 +10.9633839,PR:000008860,http://purl.obolibrary.org/obo/PR_000008860,none +10.9633839,PR:000010705,http://purl.obolibrary.org/obo/PR_000010705,metallothionein-3 +10.9633839,PR:000013454,http://purl.obolibrary.org/obo/PR_000013454,tyrosine-protein phosphatase non-receptor type 2 +10.9633839,PR:000014280,http://purl.obolibrary.org/obo/PR_000014280,40S ribosomal protein S5 +10.9633839,PR:000016340,http://purl.obolibrary.org/obo/PR_000016340,protein timeless +10.9633839,PR:000016365,http://purl.obolibrary.org/obo/PR_000016365,tight junction protein ZO-2 +10.9633839,PR:000017426,http://purl.obolibrary.org/obo/PR_000017426,CCN family member 4 +10.9633839,PR:Q9SXJ6,http://purl.obolibrary.org/obo/PR_Q9SXJ6,none +10.9633839,SO:0000386,http://purl.obolibrary.org/obo/SO_0000386,RNase_P_RNA +10.9658871,DRUGBANK:DB05039,http://purl.obolibrary.org/obo/DRUGBANK_DB05039,none +10.9658871,DRUGBANK:DB09065,http://purl.obolibrary.org/obo/DRUGBANK_DB09065,none +10.9658871,DRUGBANK:DB14292,http://purl.obolibrary.org/obo/DRUGBANK_DB14292,none +10.9658871,GO:0012502,http://purl.obolibrary.org/obo/GO_0012502,induction of programmed cell death +10.9658871,GO:0032276,http://purl.obolibrary.org/obo/GO_0032276,regulation of gonadotropin secretion +10.9658871,GO:0060216,http://purl.obolibrary.org/obo/GO_0060216,definitive hemopoiesis +10.9658871,MONDO:0002775,http://purl.obolibrary.org/obo/MONDO_0002775,anovulation +10.9658871,MONDO:0015158,http://purl.obolibrary.org/obo/MONDO_0015158,unexplained periodic fever syndrome +10.9658871,MONDO:0015339,http://purl.obolibrary.org/obo/MONDO_0015339,adrenomyeloneuropathy +10.9658871,PR:000001707,http://purl.obolibrary.org/obo/PR_000001707,sphingosine 1-phosphate receptor 2 +10.9658871,PR:000001776,http://purl.obolibrary.org/obo/PR_000001776,inhibitor of nuclear factor kappa-B kinase subunit beta +10.9658871,PR:000003561,http://purl.obolibrary.org/obo/PR_000003561,multidrug resistance-associated protein 5 +10.9658871,PR:000005374,http://purl.obolibrary.org/obo/PR_000005374,complement factor B +10.9658871,PR:000006259,http://purl.obolibrary.org/obo/PR_000006259,disabled homolog 2 +10.9658871,PR:000013632,http://purl.obolibrary.org/obo/PR_000013632,Ras-related protein Rab-4B +10.9658871,PR:000032050,http://purl.obolibrary.org/obo/PR_000032050,calcium and integrin-binding family member 2 +10.9658871,PR:Q7ZTS4,http://purl.obolibrary.org/obo/PR_Q7ZTS4,none +10.9658871,SO:0001777,http://purl.obolibrary.org/obo/SO_0001777,somatic_variant +10.9658871,UBERON:0003089,http://purl.obolibrary.org/obo/UBERON_0003089,sclerotome +10.9683965,CHEBI:16247,http://purl.obolibrary.org/obo/CHEBI_16247,phospholipid +10.9683965,DRUGBANK:DB05161,http://purl.obolibrary.org/obo/DRUGBANK_DB05161,none +10.9683965,DRUGBANK:DB11556,http://purl.obolibrary.org/obo/DRUGBANK_DB11556,none +10.9683965,HP:0001114,http://purl.obolibrary.org/obo/HP_0001114,Xanthelasma +10.9683965,HP:0010732,http://purl.obolibrary.org/obo/HP_0010732,Nodular changes affecting the eyelids +10.9683965,HP:0030014,http://purl.obolibrary.org/obo/HP_0030014,Female sexual dysfunction +10.9683965,MONDO:0010211,http://purl.obolibrary.org/obo/MONDO_0010211,xeroderma pigmentosum group C +10.9683965,MONDO:0017615,http://purl.obolibrary.org/obo/MONDO_0017615,benign familial infantile epilepsy +10.9683965,MONDO:0019349,http://purl.obolibrary.org/obo/MONDO_0019349,Sotos syndrome +10.9683965,PR:000004748,http://purl.obolibrary.org/obo/PR_000004748,Myc box-dependent-interacting protein 1 +10.9683965,PR:000013193,http://purl.obolibrary.org/obo/PR_000013193,"thioredoxin-dependent peroxide reductase, mitochondrial" +10.9683965,PR:000014152,http://purl.obolibrary.org/obo/PR_000014152,roundabout homolog 2 +10.9683965,PR:000016622,http://purl.obolibrary.org/obo/PR_000016622,tRNA (cytosine-5-)-methyltransferase +10.9683965,PR:000017070,http://purl.obolibrary.org/obo/PR_000017070,E3 ubiquitin-protein ligase UHRF1 +10.9683965,PR:000029062,http://purl.obolibrary.org/obo/PR_000029062,none +10.9683965,SO:0001770,http://purl.obolibrary.org/obo/SO_0001770,benign_variant +10.9683965,UBERON:0001873,http://purl.obolibrary.org/obo/UBERON_0001873,caudate nucleus +10.9683965,UBERON:0003682,http://purl.obolibrary.org/obo/UBERON_0003682,palatal muscle +10.9709122,CHEBI:59517,http://purl.obolibrary.org/obo/CHEBI_59517,DNA synthesis inhibitor +10.9709122,CL:0002622,http://purl.obolibrary.org/obo/CL_0002622,prostate stromal cell +10.9709122,DRUGBANK:DB00535,http://purl.obolibrary.org/obo/DRUGBANK_DB00535,none +10.9709122,DRUGBANK:DB00573,http://purl.obolibrary.org/obo/DRUGBANK_DB00573,none +10.9709122,DRUGBANK:DB14481,http://purl.obolibrary.org/obo/DRUGBANK_DB14481,none +10.9709122,GO:0004157,http://purl.obolibrary.org/obo/GO_0004157,dihydropyrimidinase activity +10.9709122,GO:0009968,http://purl.obolibrary.org/obo/GO_0009968,negative regulation of signal transduction +10.9709122,GO:0015805,http://purl.obolibrary.org/obo/GO_0015805,S-adenosyl-L-methionine transport +10.9709122,GO:0015930,http://purl.obolibrary.org/obo/GO_0015930,glutamate synthase activity +10.9709122,GO:0046085,http://purl.obolibrary.org/obo/GO_0046085,adenosine metabolic process +10.9709122,GO:0048167,http://purl.obolibrary.org/obo/GO_0048167,regulation of synaptic plasticity +10.9709122,GO:0098813,http://purl.obolibrary.org/obo/GO_0098813,nuclear chromosome segregation +10.9709122,MONDO:0005312,http://purl.obolibrary.org/obo/MONDO_0005312,pouchitis +10.9709122,MONDO:0009092,http://purl.obolibrary.org/obo/MONDO_0009092,polycystic lipomembranous osteodysplasia with sclerosing leukoencephaly +10.9709122,MONDO:0010622,http://purl.obolibrary.org/obo/MONDO_0010622,recessive X-linked ichthyosis +10.9709122,MONDO:0019467,http://purl.obolibrary.org/obo/MONDO_0019467,CD4+/CD56+ hematodermic neoplasm +10.9709122,MONDO:0020345,http://purl.obolibrary.org/obo/MONDO_0020345,presynaptic congenital myasthenic syndrome +10.9709122,MONDO:0020552,http://purl.obolibrary.org/obo/MONDO_0020552,placental site trophoblastic tumor +10.9709122,NCBITaxon:31033,http://purl.obolibrary.org/obo/NCBITaxon_31033,Takifugu rubripes +10.9709122,PR:000002059,http://purl.obolibrary.org/obo/PR_000002059,lymphotactin-like chemokine +10.9709122,PR:000002104,http://purl.obolibrary.org/obo/PR_000002104,sodium channel protein type 9 subunit alpha +10.9709122,PR:000011248,http://purl.obolibrary.org/obo/PR_000011248,homeobox protein Nkx-3.1 +10.9709122,PR:000016128,http://purl.obolibrary.org/obo/PR_000016128,tubulin-specific chaperone D +10.9709122,PR:P34389,http://purl.obolibrary.org/obo/PR_P34389,none +10.9709122,PR:Q23917,http://purl.obolibrary.org/obo/PR_Q23917,none +10.9709122,PR:Q6IN02,http://purl.obolibrary.org/obo/PR_Q6IN02,none +10.9709122,PR:Q8LGU1,http://purl.obolibrary.org/obo/PR_Q8LGU1,none +10.9709122,PR:Q8VZZ4,http://purl.obolibrary.org/obo/PR_Q8VZZ4,none +10.9709122,SO:0001904,http://purl.obolibrary.org/obo/SO_0001904,antisense_lncRNA +10.9734343,DRUGBANK:DB00932,http://purl.obolibrary.org/obo/DRUGBANK_DB00932,none +10.9734343,DRUGBANK:DB01201,http://purl.obolibrary.org/obo/DRUGBANK_DB01201,none +10.9734343,DRUGBANK:DB04825,http://purl.obolibrary.org/obo/DRUGBANK_DB04825,none +10.9734343,DRUGBANK:DB06792,http://purl.obolibrary.org/obo/DRUGBANK_DB06792,none +10.9734343,GO:0000776,http://purl.obolibrary.org/obo/GO_0000776,kinetochore +10.9734343,GO:0046661,http://purl.obolibrary.org/obo/GO_0046661,male sex differentiation +10.9734343,GO:0050785,http://purl.obolibrary.org/obo/GO_0050785,advanced glycation end-product receptor activity +10.9734343,GO:0050803,http://purl.obolibrary.org/obo/GO_0050803,regulation of synapse structure or activity +10.9734343,GO:0052652,http://purl.obolibrary.org/obo/GO_0052652,cyclic purine nucleotide metabolic process +10.9734343,MONDO:0004612,http://purl.obolibrary.org/obo/MONDO_0004612,malignant histiocytosis +10.9734343,MONDO:0005163,http://purl.obolibrary.org/obo/MONDO_0005163,simian immunodeficiency virus infection +10.9734343,MONDO:0012041,http://purl.obolibrary.org/obo/MONDO_0012041,MUTYH-related attenuated familial adenomatous polyposis +10.9734343,MONDO:0020039,http://purl.obolibrary.org/obo/MONDO_0020039,"46,XX disorder of sex development induced by androgens excess" +10.9734343,NCBITaxon:11241,http://purl.obolibrary.org/obo/NCBITaxon_11241,Rinderpest morbillivirus +10.9734343,PR:000001666,http://purl.obolibrary.org/obo/PR_000001666,relaxin receptor 1 +10.9734343,UBERON:0001387,http://purl.obolibrary.org/obo/UBERON_0001387,fibularis longus +10.9734343,UBERON:0019190,http://purl.obolibrary.org/obo/UBERON_0019190,mucous gland of lung +10.9759627,CHEBI:37076,http://purl.obolibrary.org/obo/CHEBI_37076,ribonucleoside 5'-triphosphate +10.9759627,DRUGBANK:DB08867,http://purl.obolibrary.org/obo/DRUGBANK_DB08867,none +10.9759627,DRUGBANK:DB11093,http://purl.obolibrary.org/obo/DRUGBANK_DB11093,none +10.9759627,DRUGBANK:DB14765,http://purl.obolibrary.org/obo/DRUGBANK_DB14765,none +10.9759627,GO:0005020,http://purl.obolibrary.org/obo/GO_0005020,stem cell factor receptor activity +10.9759627,GO:0005844,http://purl.obolibrary.org/obo/GO_0005844,polysome +10.9759627,GO:0019012,http://purl.obolibrary.org/obo/GO_0019012,none +10.9759627,GO:0042020,http://purl.obolibrary.org/obo/GO_0042020,interleukin-23 receptor activity +10.9759627,GO:0046351,http://purl.obolibrary.org/obo/GO_0046351,disaccharide biosynthetic process +10.9759627,PR:000003900,http://purl.obolibrary.org/obo/PR_000003900,aldo-keto reductase family 1 member A1 +10.9759627,PR:000004442,http://purl.obolibrary.org/obo/PR_000004442,sarcoplasmic/endoplasmic reticulum calcium ATPase 1 +10.9759627,PR:000010039,http://purl.obolibrary.org/obo/PR_000010039,MAD2L1-binding protein +10.9759627,PR:000011279,http://purl.obolibrary.org/obo/PR_000011279,neuromedin-B +10.9759627,PR:000015110,http://purl.obolibrary.org/obo/PR_000015110,proton-coupled amino acid transporter 1 +10.9759627,PR:000044682,http://purl.obolibrary.org/obo/PR_000044682,piezo channel protein +10.9759627,PR:Q6IDB0,http://purl.obolibrary.org/obo/PR_Q6IDB0,none +10.9759627,PR:Q8GXJ4,http://purl.obolibrary.org/obo/PR_Q8GXJ4,none +10.9759627,PR:Q8LPK2,http://purl.obolibrary.org/obo/PR_Q8LPK2,none +10.9784976,CHEBI:17972,http://purl.obolibrary.org/obo/CHEBI_17972,ribonucleoside triphosphate +10.9784976,CHEBI:26389,http://purl.obolibrary.org/obo/CHEBI_26389,purine deoxyribonucleoside triphosphate +10.9784976,CHEBI:26393,http://purl.obolibrary.org/obo/CHEBI_26393,purine nucleoside triphosphate +10.9784976,CHEBI:36335,http://purl.obolibrary.org/obo/CHEBI_36335,trypanocidal drug +10.9784976,CHEBI:37042,http://purl.obolibrary.org/obo/CHEBI_37042,purine 2'-deoxyribonucleoside 5'-triphosphate +10.9784976,DRUGBANK:DB07815,http://purl.obolibrary.org/obo/DRUGBANK_DB07815,none +10.9784976,DRUGBANK:DB08880,http://purl.obolibrary.org/obo/DRUGBANK_DB08880,none +10.9784976,DRUGBANK:DB12665,http://purl.obolibrary.org/obo/DRUGBANK_DB12665,none +10.9784976,DRUGBANK:DB13111,http://purl.obolibrary.org/obo/DRUGBANK_DB13111,none +10.9784976,GO:0000123,http://purl.obolibrary.org/obo/GO_0000123,histone acetyltransferase complex +10.9784976,GO:0017099,http://purl.obolibrary.org/obo/GO_0017099,very-long-chain-acyl-CoA dehydrogenase activity +10.9784976,GO:1990079,http://purl.obolibrary.org/obo/GO_1990079,cartilage homeostasis +10.9784976,HP:0030016,http://purl.obolibrary.org/obo/HP_0030016,Dyspareunia +10.9784976,MONDO:0010543,http://purl.obolibrary.org/obo/MONDO_0010543,Barth syndrome +10.9784976,PR:000002033,http://purl.obolibrary.org/obo/PR_000002033,band 3 anion transport protein +10.9784976,PR:000003604,http://purl.obolibrary.org/obo/PR_000003604,"very long-chain specific acyl-CoA dehydrogenase, mitochondrial" +10.9784976,PR:000005528,http://purl.obolibrary.org/obo/PR_000005528,"chloride channel protein, skeletal muscle" +10.9784976,PR:000006719,http://purl.obolibrary.org/obo/PR_000006719,dysbindin +10.9784976,PR:000007026,http://purl.obolibrary.org/obo/PR_000007026,ETS domain-containing protein Elk-3 +10.9784976,PR:000012490,http://purl.obolibrary.org/obo/PR_000012490,platelet-derived growth factor subunit A +10.9784976,PR:O64515,http://purl.obolibrary.org/obo/PR_O64515,none +10.9784976,UBERON:0011777,http://purl.obolibrary.org/obo/UBERON_0011777,nucleus of spinal cord +10.9810389,CHEBI:61557,http://purl.obolibrary.org/obo/CHEBI_61557,nucleoside triphosphate(4-) +10.9810389,CL:0011107,http://purl.obolibrary.org/obo/CL_0011107,Muller cell +10.9810389,DRUGBANK:DB03435,http://purl.obolibrary.org/obo/DRUGBANK_DB03435,none +10.9810389,DRUGBANK:DB05137,http://purl.obolibrary.org/obo/DRUGBANK_DB05137,none +10.9810389,DRUGBANK:DB08209,http://purl.obolibrary.org/obo/DRUGBANK_DB08209,none +10.9810389,GO:0004991,http://purl.obolibrary.org/obo/GO_0004991,parathyroid hormone receptor activity +10.9810389,GO:0015198,http://purl.obolibrary.org/obo/GO_0015198,none +10.9810389,HP:0002577,http://purl.obolibrary.org/obo/HP_0002577,Abnormal stomach morphology +10.9810389,MONDO:0002776,http://purl.obolibrary.org/obo/MONDO_0002776,external ear disease +10.9810389,MONDO:0006221,http://purl.obolibrary.org/obo/MONDO_0006221,gastric adenoma +10.9810389,MONDO:0007652,http://purl.obolibrary.org/obo/MONDO_0007652,gastric mucosal hypertrophy +10.9810389,MONDO:0015543,http://purl.obolibrary.org/obo/MONDO_0015543,hemophagocytic syndrome associated with an infection +10.9810389,MONDO:0021948,http://purl.obolibrary.org/obo/MONDO_0021948,cutaneous tuberculosis +10.9810389,NCBITaxon:11593,http://purl.obolibrary.org/obo/NCBITaxon_11593,None +10.9810389,NCBITaxon:12643,http://purl.obolibrary.org/obo/NCBITaxon_12643,none +10.9810389,PR:000006053,http://purl.obolibrary.org/obo/PR_000006053,cullin-9 +10.9810389,PR:000007134,http://purl.obolibrary.org/obo/PR_000007134,epoxide hydrolase 1 +10.9810389,PR:000007228,http://purl.obolibrary.org/obo/PR_000007228,ETS translocation variant 5 +10.9810389,PR:000009066,http://purl.obolibrary.org/obo/PR_000009066,integrator complex subunit 1 +10.9810389,PR:000012241,http://purl.obolibrary.org/obo/PR_000012241,serine/threonine-protein kinase PAK 2 +10.9810389,PR:000016151,http://purl.obolibrary.org/obo/PR_000016151,T-box transcription factor TBX3 +10.9810389,PR:000017964,http://purl.obolibrary.org/obo/PR_000017964,zinc finger protein 541 +10.9810389,PR:P32835,http://purl.obolibrary.org/obo/PR_P32835,none +10.9810389,UBERON:0001033,http://purl.obolibrary.org/obo/UBERON_0001033,gustatory system +10.9810389,UBERON:0001941,http://purl.obolibrary.org/obo/UBERON_0001941,lateral habenular nucleus +10.9810389,UBERON:0002318,http://purl.obolibrary.org/obo/UBERON_0002318,white matter of spinal cord +10.9810389,UBERON:0007795,http://purl.obolibrary.org/obo/UBERON_0007795,ascitic fluid +10.9835866,CHEBI:22221,http://purl.obolibrary.org/obo/CHEBI_22221,acyl group +10.9835866,CL:0000706,http://purl.obolibrary.org/obo/CL_0000706,choroid plexus epithelial cell +10.9835866,DRUGBANK:DB03010,http://purl.obolibrary.org/obo/DRUGBANK_DB03010,none +10.9835866,DRUGBANK:DB11250,http://purl.obolibrary.org/obo/DRUGBANK_DB11250,none +10.9835866,GO:0009512,http://purl.obolibrary.org/obo/GO_0009512,cytochrome b6f complex +10.9835866,GO:1901071,http://purl.obolibrary.org/obo/GO_1901071,glucosamine-containing compound metabolic process +10.9835866,MONDO:0003165,http://purl.obolibrary.org/obo/MONDO_0003165,cerebellar astrocytoma +10.9835866,MONDO:0006005,http://purl.obolibrary.org/obo/MONDO_0006005,Venezuelan equine encephalitis +10.9835866,MONDO:0016690,http://purl.obolibrary.org/obo/MONDO_0016690,pleomorphic xanthoastrocytoma +10.9835866,MONDO:0018708,http://purl.obolibrary.org/obo/MONDO_0018708,squamous cell carcinoma of the oral tongue +10.9835866,NCBITaxon:348018,http://purl.obolibrary.org/obo/NCBITaxon_348018,none +10.9835866,PR:000001711,http://purl.obolibrary.org/obo/PR_000001711,trace amine-associated receptor 1 +10.9835866,PR:000001985,http://purl.obolibrary.org/obo/PR_000001985,C-C motif chemokine 1 +10.9835866,PR:000014162,http://purl.obolibrary.org/obo/PR_000014162,tyrosine-protein kinase transmembrane receptor ROR2 +10.9835866,PR:000014847,http://purl.obolibrary.org/obo/PR_000014847,"serine hydroxymethyltransferase, cytosolic" +10.9835866,PR:000023632,http://purl.obolibrary.org/obo/PR_000023632,none +10.9835866,PR:000025851,http://purl.obolibrary.org/obo/PR_000025851,cathelicidin antimicrobial peptide +10.9835866,PR:P19336,http://purl.obolibrary.org/obo/PR_P19336,none +10.9835866,PR:Q9V6K3,http://purl.obolibrary.org/obo/PR_Q9V6K3,none +10.9835866,SO:0001743,http://purl.obolibrary.org/obo/SO_0001743,copy_number_loss +10.9835866,UBERON:0001286,http://purl.obolibrary.org/obo/UBERON_0001286,Bowman's space +10.9861409,CHEBI:26398,http://purl.obolibrary.org/obo/CHEBI_26398,purine ribonucleoside triphosphate +10.9861409,CHEBI:37045,http://purl.obolibrary.org/obo/CHEBI_37045,purine ribonucleoside 5'-triphosphate +10.9861409,DRUGBANK:DB00543,http://purl.obolibrary.org/obo/DRUGBANK_DB00543,none +10.9861409,DRUGBANK:DB01976,http://purl.obolibrary.org/obo/DRUGBANK_DB01976,none +10.9861409,DRUGBANK:DB12277,http://purl.obolibrary.org/obo/DRUGBANK_DB12277,none +10.9861409,GO:0007093,http://purl.obolibrary.org/obo/GO_0007093,mitotic cell cycle checkpoint signaling +10.9861409,GO:0060425,http://purl.obolibrary.org/obo/GO_0060425,lung morphogenesis +10.9861409,HP:0000071,http://purl.obolibrary.org/obo/HP_0000071,Ureteral stenosis +10.9861409,HP:0006753,http://purl.obolibrary.org/obo/HP_0006753,Neoplasm of the stomach +10.9861409,MONDO:0003864,http://purl.obolibrary.org/obo/MONDO_0003864,chronic lymphocytic leukemia/small lymphocytic lymphoma +10.9861409,MONDO:0015267,http://purl.obolibrary.org/obo/MONDO_0015267,Feingold syndrome +10.9861409,MONDO:0018727,http://purl.obolibrary.org/obo/MONDO_0018727,immunodeficiency due to a complement regulatory deficiency +10.9861409,PR:000000071,http://purl.obolibrary.org/obo/PR_000000071,activin receptor type-2B +10.9861409,PR:000009128,http://purl.obolibrary.org/obo/PR_000009128,integrin alpha-3 +10.9861409,PR:000010413,http://purl.obolibrary.org/obo/PR_000010413,macrophage migration inhibitory factor +10.9861409,PR:000010543,http://purl.obolibrary.org/obo/PR_000010543,myeloperoxidase +10.9861409,PR:000013092,http://purl.obolibrary.org/obo/PR_000013092,protein phosphatase 1D +10.9861409,PR:000015123,http://purl.obolibrary.org/obo/PR_000015123,zinc transporter ZIP1 +10.9861409,PR:000016280,http://purl.obolibrary.org/obo/PR_000016280,tissue factor pathway inhibitor 2 +10.9861409,UBERON:0000005,http://purl.obolibrary.org/obo/UBERON_0000005,chemosensory organ +10.9861409,UBERON:0000114,http://purl.obolibrary.org/obo/UBERON_0000114,lung connective tissue +10.9861409,UBERON:0006575,http://purl.obolibrary.org/obo/UBERON_0006575,mantle +10.9861409,UBERON:0011013,http://purl.obolibrary.org/obo/UBERON_0011013,spinalis muscle +10.9887017,CHEBI:64775,http://purl.obolibrary.org/obo/CHEBI_64775,organic anionic group +10.9887017,DRUGBANK:DB06703,http://purl.obolibrary.org/obo/DRUGBANK_DB06703,none +10.9887017,DRUGBANK:DB06726,http://purl.obolibrary.org/obo/DRUGBANK_DB06726,none +10.9887017,DRUGBANK:DB10907,http://purl.obolibrary.org/obo/DRUGBANK_DB10907,none +10.9887017,DRUGBANK:DB11996,http://purl.obolibrary.org/obo/DRUGBANK_DB11996,none +10.9887017,DRUGBANK:DB13950,http://purl.obolibrary.org/obo/DRUGBANK_DB13950,none +10.9887017,GO:0061726,http://purl.obolibrary.org/obo/GO_0061726,mitochondrion disassembly +10.9887017,MONDO:0004617,http://purl.obolibrary.org/obo/MONDO_0004617,recurrent hypersomnia +10.9887017,MONDO:0005656,http://purl.obolibrary.org/obo/MONDO_0005656,Ascaridida infectious disease +10.9887017,MONDO:0006033,http://purl.obolibrary.org/obo/MONDO_0006033,diffuse intrinsic pontine glioma +10.9887017,NCBITaxon:39724,http://purl.obolibrary.org/obo/NCBITaxon_39724,Circoviridae +10.9887017,NCBITaxon:4827,http://purl.obolibrary.org/obo/NCBITaxon_4827,Mucorales +10.9887017,NCBITaxon:5738,http://purl.obolibrary.org/obo/NCBITaxon_5738,Diplomonadida +10.9887017,NCBITaxon:5739,http://purl.obolibrary.org/obo/NCBITaxon_5739,Hexamitidae +10.9887017,PR:000001388,http://purl.obolibrary.org/obo/PR_000001388,interleukin-32 +10.9887017,PR:000004721,http://purl.obolibrary.org/obo/PR_000004721,bestrophin-1 +10.9887017,PR:000005016,http://purl.obolibrary.org/obo/PR_000005016,calpain-3 +10.9887017,PR:000010214,http://purl.obolibrary.org/obo/PR_000010214,methyl-CpG-binding domain protein 1 +10.9887017,PR:000013666,http://purl.obolibrary.org/obo/PR_000013666,E3 ubiquitin-protein ligase RAD18 +10.9887017,PR:000024163,http://purl.obolibrary.org/obo/PR_000024163,none +10.9887017,PR:O88689,http://purl.obolibrary.org/obo/PR_O88689,none +10.9887017,UBERON:0002281,http://purl.obolibrary.org/obo/UBERON_0002281,vestibular membrane of cochlear duct +10.9887017,UBERON:0014696,http://purl.obolibrary.org/obo/UBERON_0014696,anterior choroidal artery +10.9912691,CHEBI:64054,http://purl.obolibrary.org/obo/CHEBI_64054,delta-opioid receptor agonist +10.9912691,DRUGBANK:DB02348,http://purl.obolibrary.org/obo/DRUGBANK_DB02348,none +10.9912691,DRUGBANK:DB03054,http://purl.obolibrary.org/obo/DRUGBANK_DB03054,none +10.9912691,DRUGBANK:DB04034,http://purl.obolibrary.org/obo/DRUGBANK_DB04034,none +10.9912691,DRUGBANK:DB06736,http://purl.obolibrary.org/obo/DRUGBANK_DB06736,none +10.9912691,GO:0004866,http://purl.obolibrary.org/obo/GO_0004866,endopeptidase inhibitor activity +10.9912691,GO:0006526,http://purl.obolibrary.org/obo/GO_0006526,arginine biosynthetic process +10.9912691,GO:1901990,http://purl.obolibrary.org/obo/GO_1901990,regulation of mitotic cell cycle phase transition +10.9912691,MONDO:0020107,http://purl.obolibrary.org/obo/MONDO_0020107,hemolytic anemia due to an erythrocyte nucleotide metabolism disorder +10.9912691,NCBITaxon:12148,http://purl.obolibrary.org/obo/NCBITaxon_12148,none +10.9912691,NCBITaxon:2212703,http://purl.obolibrary.org/obo/NCBITaxon_2212703,Mucoromycetes +10.9912691,PR:000001429,http://purl.obolibrary.org/obo/PR_000001429,MT1-like melatonin receptor +10.9912691,PR:000001547,http://purl.obolibrary.org/obo/PR_000001547,prostaglandin D2 receptor DP2 +10.9912691,PR:000005125,http://purl.obolibrary.org/obo/PR_000005125,G1/S-specific cyclin-E1 +10.9912691,PR:000008346,http://purl.obolibrary.org/obo/PR_000008346,guanylin +10.9912691,PR:000010869,http://purl.obolibrary.org/obo/PR_000010869,myosin-VIIa +10.9912691,PR:000024075,http://purl.obolibrary.org/obo/PR_000024075,tryptophanase +10.9912691,PR:Q12158,http://purl.obolibrary.org/obo/PR_Q12158,none +10.9912691,UBERON:0004672,http://purl.obolibrary.org/obo/UBERON_0004672,posterior horn lateral ventricle +10.9938431,CHEBI:50733,http://purl.obolibrary.org/obo/CHEBI_50733,nutraceutical +10.9938431,DRUGBANK:DB05257,http://purl.obolibrary.org/obo/DRUGBANK_DB05257,none +10.9938431,DRUGBANK:DB09501,http://purl.obolibrary.org/obo/DRUGBANK_DB09501,none +10.9938431,DRUGBANK:DB12996,http://purl.obolibrary.org/obo/DRUGBANK_DB12996,none +10.9938431,GO:0008937,http://purl.obolibrary.org/obo/GO_0008937,ferredoxin-NAD(P) reductase activity +10.9938431,GO:0010118,http://purl.obolibrary.org/obo/GO_0010118,stomatal movement +10.9938431,GO:0030029,http://purl.obolibrary.org/obo/GO_0030029,actin filament-based process +10.9938431,GO:0051251,http://purl.obolibrary.org/obo/GO_0051251,positive regulation of lymphocyte activation +10.9938431,GO:0070741,http://purl.obolibrary.org/obo/GO_0070741,response to interleukin-6 +10.9938431,GO:0140458,http://purl.obolibrary.org/obo/GO_0140458,pre-transcriptional gene silencing by RNA +10.9938431,GO:1902421,http://purl.obolibrary.org/obo/GO_1902421,hydrogen metabolic process +10.9938431,MONDO:0008815,http://purl.obolibrary.org/obo/MONDO_0008815,argininosuccinic aciduria +10.9938431,MONDO:0015210,http://purl.obolibrary.org/obo/MONDO_0015210,syndromic gastroduodenal malformation +10.9938431,NCBITaxon:5740,http://purl.obolibrary.org/obo/NCBITaxon_5740,Giardia +10.9938431,NCBITaxon:68459,http://purl.obolibrary.org/obo/NCBITaxon_68459,Giardiinae +10.9938431,PR:000000040,http://purl.obolibrary.org/obo/PR_000000040,DNA-binding protein inhibitor ID-2 +10.9938431,PR:000001676,http://purl.obolibrary.org/obo/PR_000001676,thromboxane A2 receptor +10.9938431,PR:000002140,http://purl.obolibrary.org/obo/PR_000002140,lymphotactin +10.9938431,PR:000010263,http://purl.obolibrary.org/obo/PR_000010263,"malate dehydrogenase, cytoplasmic" +10.9938431,PR:000014469,http://purl.obolibrary.org/obo/PR_000014469,DNA-binding protein SATB2 +10.9938431,PR:000017053,http://purl.obolibrary.org/obo/PR_000017053,UDP-glucuronosyltransferase 1-6 +10.9938431,PR:000023493,http://purl.obolibrary.org/obo/PR_000023493,none +10.9938431,PR:P50392,http://purl.obolibrary.org/obo/PR_P50392,none +10.9938431,SO:0002063,http://purl.obolibrary.org/obo/SO_0002063,Alu_insertion +10.9938431,UBERON:0011597,http://purl.obolibrary.org/obo/UBERON_0011597,bone of upper jaw +10.9964238,CHEBI:37838,http://purl.obolibrary.org/obo/CHEBI_37838,carboacyl group +10.9964238,CL:0000695,http://purl.obolibrary.org/obo/CL_0000695,Cajal-Retzius cell +10.9964238,DRUGBANK:DB00210,http://purl.obolibrary.org/obo/DRUGBANK_DB00210,none +10.9964238,DRUGBANK:DB06616,http://purl.obolibrary.org/obo/DRUGBANK_DB06616,none +10.9964238,DRUGBANK:DB09203,http://purl.obolibrary.org/obo/DRUGBANK_DB09203,none +10.9964238,DRUGBANK:DB15131,http://purl.obolibrary.org/obo/DRUGBANK_DB15131,none +10.9964238,GO:0035107,http://purl.obolibrary.org/obo/GO_0035107,appendage morphogenesis +10.9964238,GO:0035327,http://purl.obolibrary.org/obo/GO_0035327,transcriptionally active chromatin +10.9964238,GO:0071604,http://purl.obolibrary.org/obo/GO_0071604,transforming growth factor beta production +10.9964238,MONDO:0000453,http://purl.obolibrary.org/obo/MONDO_0000453,short QT syndrome +10.9964238,NCBITaxon:942,http://purl.obolibrary.org/obo/NCBITaxon_942,Anaplasmataceae +10.9964238,PR:000002044,http://purl.obolibrary.org/obo/PR_000002044,interferon regulatory factor 2 +10.9964238,PR:000003696,http://purl.obolibrary.org/obo/PR_000003696,actin-related protein 3 +10.9964238,PR:000006258,http://purl.obolibrary.org/obo/PR_000006258,disabled homolog 1 +10.9964238,PR:000008686,http://purl.obolibrary.org/obo/PR_000008686,homeobox protein Hox-A1 +10.9964238,PR:000011250,http://purl.obolibrary.org/obo/PR_000011250,homeobox protein Nkx-6.1 +10.9964238,PR:O80952,http://purl.obolibrary.org/obo/PR_O80952,none +10.9964238,PR:Q9FVX0,http://purl.obolibrary.org/obo/PR_Q9FVX0,none +10.9990111,CHEBI:25698,http://purl.obolibrary.org/obo/CHEBI_25698,ether +10.9990111,CHEBI:50267,http://purl.obolibrary.org/obo/CHEBI_50267,protective agent +10.9990111,DRUGBANK:DB00585,http://purl.obolibrary.org/obo/DRUGBANK_DB00585,none +10.9990111,DRUGBANK:DB06441,http://purl.obolibrary.org/obo/DRUGBANK_DB06441,none +10.9990111,DRUGBANK:DB09183,http://purl.obolibrary.org/obo/DRUGBANK_DB09183,none +10.9990111,GO:0010259,http://purl.obolibrary.org/obo/GO_0010259,multicellular organism aging +10.9990111,GO:0032970,http://purl.obolibrary.org/obo/GO_0032970,regulation of actin filament-based process +10.9990111,MONDO:0006282,http://purl.obolibrary.org/obo/MONDO_0006282,lymphangiosarcoma +10.9990111,MONDO:0007114,http://purl.obolibrary.org/obo/MONDO_0007114,angel-shaped phalango-epiphyseal dysplasia +10.9990111,MONDO:0008159,http://purl.obolibrary.org/obo/MONDO_0008159,postmenopausal osteoporosis +10.9990111,MONDO:0009669,http://purl.obolibrary.org/obo/MONDO_0009669,"spinal muscular atrophy, type 1" +10.9990111,MONDO:0012242,http://purl.obolibrary.org/obo/MONDO_0012242,"syncope, familial vasovagal" +10.9990111,MONDO:0016828,http://purl.obolibrary.org/obo/MONDO_0016828,autosomal recessive sideroblastic anemia +10.9990111,MONDO:0017951,http://purl.obolibrary.org/obo/MONDO_0017951,trichorhinophalangeal syndrome +10.9990111,NCBITaxon:63330,http://purl.obolibrary.org/obo/NCBITaxon_63330,Hendra henipavirus +10.9990111,NCBITaxon:7399,http://purl.obolibrary.org/obo/NCBITaxon_7399,Hymenoptera +10.9990111,PR:000005379,http://purl.obolibrary.org/obo/PR_000005379,complement factor H-related protein 1 +10.9990111,PR:000007022,http://purl.obolibrary.org/obo/PR_000007022,ETS-related transcription factor Elf-3 +10.9990111,PR:000008773,http://purl.obolibrary.org/obo/PR_000008773,17-beta-hydroxysteroid dehydrogenase type 1 +10.9990111,PR:000010258,http://purl.obolibrary.org/obo/PR_000010258,mediator of DNA damage checkpoint protein 1 +10.9990111,PR:000010812,http://purl.obolibrary.org/obo/PR_000010812,N-myc proto-oncogene protein +10.9990111,PR:000024024,http://purl.obolibrary.org/obo/PR_000024024,none +10.9990111,UBERON:0001341,http://purl.obolibrary.org/obo/UBERON_0001341,lesser sac +10.9990111,UBERON:0001566,http://purl.obolibrary.org/obo/UBERON_0001566,cricothyroid muscle +10.9990111,UBERON:0013581,http://purl.obolibrary.org/obo/UBERON_0013581,metapodium bone 1 +11.0016051,CHEBI:31604,http://purl.obolibrary.org/obo/CHEBI_31604,ferric ammonium citrate +11.0016051,DRUGBANK:DB01096,http://purl.obolibrary.org/obo/DRUGBANK_DB01096,none +11.0016051,DRUGBANK:DB02998,http://purl.obolibrary.org/obo/DRUGBANK_DB02998,none +11.0016051,DRUGBANK:DB09067,http://purl.obolibrary.org/obo/DRUGBANK_DB09067,none +11.0016051,DRUGBANK:DB10379,http://purl.obolibrary.org/obo/DRUGBANK_DB10379,none +11.0016051,DRUGBANK:DB14273,http://purl.obolibrary.org/obo/DRUGBANK_DB14273,none +11.0016051,GO:0003985,http://purl.obolibrary.org/obo/GO_0003985,acetyl-CoA C-acetyltransferase activity +11.0016051,GO:0006000,http://purl.obolibrary.org/obo/GO_0006000,fructose metabolic process +11.0016051,GO:0006547,http://purl.obolibrary.org/obo/GO_0006547,histidine metabolic process +11.0016051,GO:0015801,http://purl.obolibrary.org/obo/GO_0015801,aromatic amino acid transport +11.0016051,GO:0048514,http://purl.obolibrary.org/obo/GO_0048514,blood vessel morphogenesis +11.0016051,GO:1990636,http://purl.obolibrary.org/obo/GO_1990636,reproductive senescence +11.0016051,MONDO:0001447,http://purl.obolibrary.org/obo/MONDO_0001447,detrusor sphincter dyssynergia +11.0016051,PR:000003674,http://purl.obolibrary.org/obo/PR_000003674,"actin, alpha skeletal muscle" +11.0016051,PR:000006507,http://purl.obolibrary.org/obo/PR_000006507,deleted in lung and esophageal cancer protein 1 +11.0016051,PR:000012946,http://purl.obolibrary.org/obo/PR_000012946,patatin-like phospholipase domain-containing protein 6 +11.0016051,PR:P25386,http://purl.obolibrary.org/obo/PR_P25386,none +11.0016051,PR:P53705,http://purl.obolibrary.org/obo/PR_P53705,none +11.0042059,CHEBI:27207,http://purl.obolibrary.org/obo/CHEBI_27207,univalent carboacyl group +11.0042059,DRUGBANK:DB11155,http://purl.obolibrary.org/obo/DRUGBANK_DB11155,none +11.0042059,GO:0030223,http://purl.obolibrary.org/obo/GO_0030223,neutrophil differentiation +11.0042059,GO:0051784,http://purl.obolibrary.org/obo/GO_0051784,negative regulation of nuclear division +11.0042059,GO:0060478,http://purl.obolibrary.org/obo/GO_0060478,acrosomal vesicle exocytosis +11.0042059,GO:0072765,http://purl.obolibrary.org/obo/GO_0072765,centromere localization +11.0042059,MONDO:0002247,http://purl.obolibrary.org/obo/MONDO_0002247,factor X deficiency +11.0042059,MONDO:0016372,http://purl.obolibrary.org/obo/MONDO_0016372,glossopharyngeal neuralgia +11.0042059,MONDO:0019344,http://purl.obolibrary.org/obo/MONDO_0019344,antisynthetase syndrome +11.0042059,NCBITaxon:85007,http://purl.obolibrary.org/obo/NCBITaxon_85007,Corynebacteriales +11.0042059,PR:000000675,http://purl.obolibrary.org/obo/PR_000000675,platelet-derived growth factor with CUB domain +11.0042059,PR:000003328,http://purl.obolibrary.org/obo/PR_000003328,collagen alpha-1(III) chain +11.0042059,PR:000005313,http://purl.obolibrary.org/obo/PR_000005313,adenosine deaminase 2 +11.0042059,PR:000010664,http://purl.obolibrary.org/obo/PR_000010664,musculin +11.0042059,PR:000012226,http://purl.obolibrary.org/obo/PR_000012226,RNA polymerase II-associated factor 1 +11.0042059,PR:000014681,http://purl.obolibrary.org/obo/PR_000014681,serpin A12 +11.0042059,PR:000029834,http://purl.obolibrary.org/obo/PR_000029834,intraflagellar transport protein 56 +11.0042059,SO:0000171,http://purl.obolibrary.org/obo/SO_0000171,RNApol_III_promoter +11.0042059,UBERON:0003533,http://purl.obolibrary.org/obo/UBERON_0003533,manual digit skin +11.0042059,UBERON:0006714,http://purl.obolibrary.org/obo/UBERON_0006714,tibiofibula +11.0042059,UBERON:0011120,http://purl.obolibrary.org/obo/UBERON_0011120,laryngeal joint +11.0068135,DRUGBANK:DB09302,http://purl.obolibrary.org/obo/DRUGBANK_DB09302,none +11.0068135,DRUGBANK:DB13231,http://purl.obolibrary.org/obo/DRUGBANK_DB13231,none +11.0068135,GO:0006346,http://purl.obolibrary.org/obo/GO_0006346,DNA methylation-dependent heterochromatin assembly +11.0068135,GO:0044786,http://purl.obolibrary.org/obo/GO_0044786,cell cycle DNA replication +11.0068135,GO:0072615,http://purl.obolibrary.org/obo/GO_0072615,none +11.0068135,MONDO:0009887,http://purl.obolibrary.org/obo/MONDO_0009887,desquamative interstitial pneumonia +11.0068135,PR:000001594,http://purl.obolibrary.org/obo/PR_000001594,leukotriene B4 receptor 1 +11.0068135,PR:000008259,http://purl.obolibrary.org/obo/PR_000008259,G protein-coupled receptor kinase 5 +11.0068135,PR:000013102,http://purl.obolibrary.org/obo/PR_000013102,protoporphyrinogen oxidase +11.0068135,PR:000013124,http://purl.obolibrary.org/obo/PR_000013124,protein phosphatase 1 regulatory subunit 3A +11.0068135,PR:000013905,http://purl.obolibrary.org/obo/PR_000013905,replication factor C subunit 1 +11.0068135,PR:000033309,http://purl.obolibrary.org/obo/PR_000033309,none +11.0068135,PR:Q42529,http://purl.obolibrary.org/obo/PR_Q42529,none +11.0068135,PR:Q9UT74,http://purl.obolibrary.org/obo/PR_Q9UT74,none +11.0068135,UBERON:0004339,http://purl.obolibrary.org/obo/UBERON_0004339,vault of skull +11.0068135,UBERON:0011970,http://purl.obolibrary.org/obo/UBERON_0011970,talofibular ligament +11.0094279,CHEBI:62764,http://purl.obolibrary.org/obo/CHEBI_62764,reactive nitrogen species +11.0094279,DRUGBANK:DB06282,http://purl.obolibrary.org/obo/DRUGBANK_DB06282,none +11.0094279,DRUGBANK:DB09398,http://purl.obolibrary.org/obo/DRUGBANK_DB09398,none +11.0094279,GO:0015705,http://purl.obolibrary.org/obo/GO_0015705,iodide transport +11.0094279,GO:0036296,http://purl.obolibrary.org/obo/GO_0036296,response to increased oxygen levels +11.0094279,GO:0043487,http://purl.obolibrary.org/obo/GO_0043487,regulation of RNA stability +11.0094279,MONDO:0020274,http://purl.obolibrary.org/obo/MONDO_0020274,onycho-patellar syndrome with eye involvement +11.0094279,MONDO:0043475,http://purl.obolibrary.org/obo/MONDO_0043475,Adams-Stokes syndrome +11.0094279,NCBITaxon:12264,http://purl.obolibrary.org/obo/NCBITaxon_12264,none +11.0094279,PR:000001493,http://purl.obolibrary.org/obo/PR_000001493,neuropeptide Y receptor type 2 +11.0094279,PR:000004925,http://purl.obolibrary.org/obo/PR_000004925,carbonic anhydrase-related protein +11.0094279,PR:000007848,http://purl.obolibrary.org/obo/PR_000007848,growth arrest-specific protein 1 +11.0094279,PR:000009767,http://purl.obolibrary.org/obo/PR_000009767,galectin-12 +11.0094279,PR:000013744,http://purl.obolibrary.org/obo/PR_000013744,Ras GTPase-activating protein 2 +11.0094279,PR:000022667,http://purl.obolibrary.org/obo/PR_000022667,none +11.0094279,UBERON:0003067,http://purl.obolibrary.org/obo/UBERON_0003067,dorsolateral placode +11.0094279,UBERON:0004772,http://purl.obolibrary.org/obo/UBERON_0004772,eyelid tarsus +11.0094279,UBERON:0006668,http://purl.obolibrary.org/obo/UBERON_0006668,carotid canal +11.0094279,UBERON:0011826,http://purl.obolibrary.org/obo/UBERON_0011826,vestibular gland +11.0120491,CL:0000352,http://purl.obolibrary.org/obo/CL_0000352,epiblast cell +11.0120491,DRUGBANK:DB03091,http://purl.obolibrary.org/obo/DRUGBANK_DB03091,none +11.0120491,DRUGBANK:DB06822,http://purl.obolibrary.org/obo/DRUGBANK_DB06822,none +11.0120491,GO:0000162,http://purl.obolibrary.org/obo/GO_0000162,tryptophan biosynthetic process +11.0120491,GO:0007028,http://purl.obolibrary.org/obo/GO_0007028,cytoplasm organization +11.0120491,GO:0046219,http://purl.obolibrary.org/obo/GO_0046219,indolalkylamine biosynthetic process +11.0120491,GO:0046246,http://purl.obolibrary.org/obo/GO_0046246,terpene biosynthetic process +11.0120491,GO:0080188,http://purl.obolibrary.org/obo/GO_0080188,gene silencing by RNA-directed DNA methylation +11.0120491,MONDO:0000515,http://purl.obolibrary.org/obo/MONDO_0000515,bone chondrosarcoma +11.0120491,MONDO:0008061,http://purl.obolibrary.org/obo/MONDO_0008061,nail-patella syndrome +11.0120491,MONDO:0019266,http://purl.obolibrary.org/obo/MONDO_0019266,SAPHO syndrome +11.0120491,MONDO:0021091,http://purl.obolibrary.org/obo/MONDO_0021091,papillary cystadenoma +11.0120491,MONDO:0021229,http://purl.obolibrary.org/obo/MONDO_0021229,ciliary body neoplasm +11.0120491,PR:000000940,http://purl.obolibrary.org/obo/PR_000000940,none +11.0120491,PR:000003646,http://purl.obolibrary.org/obo/PR_000003646,low molecular weight phosphotyrosine protein phosphatase +11.0120491,PR:000008895,http://purl.obolibrary.org/obo/PR_000008895,alpha-L-iduronidase +11.0120491,PR:P15388,http://purl.obolibrary.org/obo/PR_P15388,none +11.0120491,PR:P15388-2,http://purl.obolibrary.org/obo/PR_P15388-2,none +11.0120491,PR:Q5AJY5,http://purl.obolibrary.org/obo/PR_Q5AJY5,none +11.0120491,UBERON:0003911,http://purl.obolibrary.org/obo/UBERON_0003911,choroid plexus epithelium +11.0120491,UBERON:0006906,http://purl.obolibrary.org/obo/UBERON_0006906,ala of nose +11.0146772,CHEBI:50689,http://purl.obolibrary.org/obo/CHEBI_50689,reproductive control drug +11.0146772,DRUGBANK:DB08815,http://purl.obolibrary.org/obo/DRUGBANK_DB08815,none +11.0146772,DRUGBANK:DB09059,http://purl.obolibrary.org/obo/DRUGBANK_DB09059,none +11.0146772,DRUGBANK:DB13352,http://purl.obolibrary.org/obo/DRUGBANK_DB13352,none +11.0146772,GO:0004588,http://purl.obolibrary.org/obo/GO_0004588,orotate phosphoribosyltransferase activity +11.0146772,GO:0007296,http://purl.obolibrary.org/obo/GO_0007296,vitellogenesis +11.0146772,GO:0055093,http://purl.obolibrary.org/obo/GO_0055093,response to hyperoxia +11.0146772,HP:0000988,http://purl.obolibrary.org/obo/HP_0000988,Skin rash +11.0146772,MONDO:0012664,http://purl.obolibrary.org/obo/MONDO_0012664,spastic ataxia 3 +11.0146772,MONDO:0017363,http://purl.obolibrary.org/obo/MONDO_0017363,idiopathic chronic eosinophilic pneumonia +11.0146772,MONDO:0024339,http://purl.obolibrary.org/obo/MONDO_0024339,lymph node neoplasm +11.0146772,NCBITaxon:5741,http://purl.obolibrary.org/obo/NCBITaxon_5741,Giardia intestinalis +11.0146772,PR:000006873,http://purl.obolibrary.org/obo/PR_000006873,protein ecdysoneless +11.0146772,PR:000010648,http://purl.obolibrary.org/obo/PR_000010648,"magnesium transporter MRS2, mitochondrial" +11.0146772,PR:000011426,http://purl.obolibrary.org/obo/PR_000011426,neurogranin +11.0146772,PR:000013745,http://purl.obolibrary.org/obo/PR_000013745,Ras GTPase-activating protein 3 +11.0146772,PR:000022119,http://purl.obolibrary.org/obo/PR_000022119,none +11.0146772,PR:000023035,http://purl.obolibrary.org/obo/PR_000023035,none +11.0173123,CHEBI:50903,http://purl.obolibrary.org/obo/CHEBI_50903,carcinogenic agent +11.0173123,CL:0000562,http://purl.obolibrary.org/obo/CL_0000562,nucleate erythrocyte +11.0173123,CL:0002365,http://purl.obolibrary.org/obo/CL_0002365,medullary thymic epithelial cell +11.0173123,DRUGBANK:DB00782,http://purl.obolibrary.org/obo/DRUGBANK_DB00782,none +11.0173123,DRUGBANK:DB15917,http://purl.obolibrary.org/obo/DRUGBANK_DB15917,none +11.0173123,DRUGBANK:DB16362,http://purl.obolibrary.org/obo/DRUGBANK_DB16362,none +11.0173123,GO:0004145,http://purl.obolibrary.org/obo/GO_0004145,diamine N-acetyltransferase activity +11.0173123,GO:0006888,http://purl.obolibrary.org/obo/GO_0006888,endoplasmic reticulum to Golgi vesicle-mediated transport +11.0173123,GO:0032956,http://purl.obolibrary.org/obo/GO_0032956,regulation of actin cytoskeleton organization +11.0173123,GO:0060179,http://purl.obolibrary.org/obo/GO_0060179,male mating behavior +11.0173123,GO:1990864,http://purl.obolibrary.org/obo/GO_1990864,response to growth hormone-releasing hormone +11.0173123,MONDO:0006155,http://purl.obolibrary.org/obo/MONDO_0006155,colon neuroendocrine tumor G1 +11.0173123,MONDO:0009689,http://purl.obolibrary.org/obo/MONDO_0009689,congenital myasthenic syndrome 6 +11.0173123,MONDO:0019960,http://purl.obolibrary.org/obo/MONDO_0019960,VIPoma +11.0173123,PR:000009311,http://purl.obolibrary.org/obo/PR_000009311,kinesin-like protein KIF3A +11.0173123,PR:000010518,http://purl.obolibrary.org/obo/PR_000010518,mannosyl-oligosaccharide glucosidase +11.0173123,PR:000015567,http://purl.obolibrary.org/obo/PR_000015567,sepiapterin reductase +11.0173123,PR:P31209,http://purl.obolibrary.org/obo/PR_P31209,none +11.0173123,PR:Q949P2,http://purl.obolibrary.org/obo/PR_Q949P2,none +11.0173123,SO:0001629,http://purl.obolibrary.org/obo/SO_0001629,splice_site_variant +11.0173123,UBERON:0012336,http://purl.obolibrary.org/obo/UBERON_0012336,perianal skin +11.0199543,DRUGBANK:DB00699,http://purl.obolibrary.org/obo/DRUGBANK_DB00699,none +11.0199543,DRUGBANK:DB06744,http://purl.obolibrary.org/obo/DRUGBANK_DB06744,none +11.0199543,DRUGBANK:DB10673,http://purl.obolibrary.org/obo/DRUGBANK_DB10673,none +11.0199543,DRUGBANK:DB11750,http://purl.obolibrary.org/obo/DRUGBANK_DB11750,none +11.0199543,DRUGBANK:DB13823,http://purl.obolibrary.org/obo/DRUGBANK_DB13823,none +11.0199543,GO:0009736,http://purl.obolibrary.org/obo/GO_0009736,cytokinin-activated signaling pathway +11.0199543,GO:0035455,http://purl.obolibrary.org/obo/GO_0035455,response to interferon-alpha +11.0199543,GO:0042546,http://purl.obolibrary.org/obo/GO_0042546,cell wall biogenesis +11.0199543,GO:0042810,http://purl.obolibrary.org/obo/GO_0042810,pheromone metabolic process +11.0199543,MONDO:0017606,http://purl.obolibrary.org/obo/MONDO_0017606,facial nerve palsy due to herpes zoster infection +11.0199543,MONDO:0020771,http://purl.obolibrary.org/obo/MONDO_0020771,"spinocerebellar ataxia, autosomal recessive, with axonal neuropathy" +11.0199543,MONDO:0024277,http://purl.obolibrary.org/obo/MONDO_0024277,neonatal thrombocytopenia +11.0199543,PR:000000070,http://purl.obolibrary.org/obo/PR_000000070,activin receptor type-2A +11.0199543,PR:000003556,http://purl.obolibrary.org/obo/PR_000003556,ATP-binding cassette sub-family C member 11 +11.0199543,PR:000007550,http://purl.obolibrary.org/obo/PR_000007550,folliculin +11.0199543,PR:000010730,http://purl.obolibrary.org/obo/PR_000010730,myotubularin +11.0199543,PR:000013190,http://purl.obolibrary.org/obo/PR_000013190,histone-lysine N-methyltransferase PRDM9 +11.0199543,PR:000023471,http://purl.obolibrary.org/obo/PR_000023471,none +11.0199543,PR:Q5ZJI9,http://purl.obolibrary.org/obo/PR_Q5ZJI9,none +11.0199543,UBERON:0001092,http://purl.obolibrary.org/obo/UBERON_0001092,vertebral bone 1 +11.0199543,UBERON:0034926,http://purl.obolibrary.org/obo/UBERON_0034926,anatomical row +11.0226033,CHEBI:51069,http://purl.obolibrary.org/obo/CHEBI_51069,organic halide salt +11.0226033,DRUGBANK:DB03410,http://purl.obolibrary.org/obo/DRUGBANK_DB03410,none +11.0226033,DRUGBANK:DB10676,http://purl.obolibrary.org/obo/DRUGBANK_DB10676,none +11.0226033,DRUGBANK:DB15750,http://purl.obolibrary.org/obo/DRUGBANK_DB15750,none +11.0226033,GO:0010563,http://purl.obolibrary.org/obo/GO_0010563,negative regulation of phosphorus metabolic process +11.0226033,GO:0038199,http://purl.obolibrary.org/obo/GO_0038199,ethylene receptor activity +11.0226033,GO:0042010,http://purl.obolibrary.org/obo/GO_0042010,interleukin-15 receptor activity +11.0226033,GO:0045936,http://purl.obolibrary.org/obo/GO_0045936,negative regulation of phosphate metabolic process +11.0226033,GO:0048364,http://purl.obolibrary.org/obo/GO_0048364,root development +11.0226033,MONDO:0008420,http://purl.obolibrary.org/obo/MONDO_0008420,seborrheic keratosis +11.0226033,MONDO:0009026,http://purl.obolibrary.org/obo/MONDO_0009026,Costello syndrome +11.0226033,NCBITaxon:10786,http://purl.obolibrary.org/obo/NCBITaxon_10786,Feline panleukopenia virus +11.0226033,PR:000004169,http://purl.obolibrary.org/obo/PR_000004169,amyloid protein-binding protein 2 +11.0226033,PR:000016092,http://purl.obolibrary.org/obo/PR_000016092,tafazzin +11.0226033,UBERON:0003987,http://purl.obolibrary.org/obo/UBERON_0003987,Hassall's corpuscle +11.0226033,UBERON:0004825,http://purl.obolibrary.org/obo/UBERON_0004825,dental lamina +11.0252593,CHEBI:18154,http://purl.obolibrary.org/obo/CHEBI_18154,polysaccharide +11.0252593,DRUGBANK:DB05088,http://purl.obolibrary.org/obo/DRUGBANK_DB05088,none +11.0252593,DRUGBANK:DB14161,http://purl.obolibrary.org/obo/DRUGBANK_DB14161,none +11.0252593,GO:0000048,http://purl.obolibrary.org/obo/GO_0000048,peptidyltransferase activity +11.0252593,GO:0006165,http://purl.obolibrary.org/obo/GO_0006165,nucleoside diphosphate phosphorylation +11.0252593,GO:0043262,http://purl.obolibrary.org/obo/GO_0043262,adenosine-diphosphatase activity +11.0252593,GO:0050242,http://purl.obolibrary.org/obo/GO_0050242,"pyruvate, phosphate dikinase activity" +11.0252593,GO:0051250,http://purl.obolibrary.org/obo/GO_0051250,negative regulation of lymphocyte activation +11.0252593,MONDO:0010592,http://purl.obolibrary.org/obo/MONDO_0010592,focal dermal hypoplasia +11.0252593,MONDO:0044786,http://purl.obolibrary.org/obo/MONDO_0044786,solid pseudopapillary neoplasm of the pancreas +11.0252593,NCBITaxon:12160,http://purl.obolibrary.org/obo/NCBITaxon_12160,none +11.0252593,NCBITaxon:138954,http://purl.obolibrary.org/obo/NCBITaxon_138954,none +11.0252593,PR:000001168,http://purl.obolibrary.org/obo/PR_000001168,5-hydroxytryptamine receptor 2C +11.0252593,PR:000004300,http://purl.obolibrary.org/obo/PR_000004300,protein ARMET +11.0252593,PR:000005529,http://purl.obolibrary.org/obo/PR_000005529,chloride channel protein 2 +11.0252593,PR:000007158,http://purl.obolibrary.org/obo/PR_000007158,erbin +11.0252593,PR:000008807,http://purl.obolibrary.org/obo/PR_000008807,heat shock-related 70 kDa protein 2 +11.0252593,PR:000009217,http://purl.obolibrary.org/obo/PR_000009217,lysine-specific demethylase 6B +11.0252593,PR:000009774,http://purl.obolibrary.org/obo/PR_000009774,galectin-7 +11.0252593,PR:000010841,http://purl.obolibrary.org/obo/PR_000010841,myosin regulatory light polypeptide 9 +11.0252593,PR:000012982,http://purl.obolibrary.org/obo/PR_000012982,DNA-directed RNA polymerase I subunit RPA1 +11.0252593,PR:000017414,http://purl.obolibrary.org/obo/PR_000017414,wolframin +11.0252593,PR:Q01514,http://purl.obolibrary.org/obo/PR_Q01514,none +11.0252593,UBERON:0002337,http://purl.obolibrary.org/obo/UBERON_0002337,endometrial stroma +11.0279224,CL:0000155,http://purl.obolibrary.org/obo/CL_0000155,peptic cell +11.0279224,DRUGBANK:DB09264,http://purl.obolibrary.org/obo/DRUGBANK_DB09264,none +11.0279224,GO:0000702,http://purl.obolibrary.org/obo/GO_0000702,oxidized base lesion DNA N-glycosylase activity +11.0279224,GO:0004476,http://purl.obolibrary.org/obo/GO_0004476,mannose-6-phosphate isomerase activity +11.0279224,GO:0042559,http://purl.obolibrary.org/obo/GO_0042559,pteridine-containing compound biosynthetic process +11.0279224,MONDO:0002425,http://purl.obolibrary.org/obo/MONDO_0002425,rectosigmoid junction cancer +11.0279224,MONDO:0002695,http://purl.obolibrary.org/obo/MONDO_0002695,sagittal sinus thrombosis +11.0279224,NCBITaxon:12293,http://purl.obolibrary.org/obo/NCBITaxon_12293,none +11.0279224,PR:000001244,http://purl.obolibrary.org/obo/PR_000001244,long-wave-sensitive opsin 1 +11.0279224,PR:000002016,http://purl.obolibrary.org/obo/PR_000002016,MHC class II histocompatibility antigen beta chain DPB1 +11.0279224,PR:000004087,http://purl.obolibrary.org/obo/PR_000004087,membrane primary amine oxidase +11.0279224,PR:000006348,http://purl.obolibrary.org/obo/PR_000006348,DNA damage-inducible transcript 4 protein +11.0279224,PR:000007833,http://purl.obolibrary.org/obo/PR_000007833,galanin-like peptide +11.0279224,PR:000008871,http://purl.obolibrary.org/obo/PR_000008871,heat shock 70 kDa protein 1A +11.0279224,PR:000010133,http://purl.obolibrary.org/obo/PR_000010133,mitogen-activated protein kinase kinase kinase 14 +11.0279224,PR:000010521,http://purl.obolibrary.org/obo/PR_000010521,protein MON2 +11.0279224,PR:000011571,http://purl.obolibrary.org/obo/PR_000011571,neurexin-1 +11.0279224,PR:G5EFH1,http://purl.obolibrary.org/obo/PR_G5EFH1,none +11.0279224,PR:P01323,http://purl.obolibrary.org/obo/PR_P01323,none +11.0279224,SO:0001204,http://purl.obolibrary.org/obo/SO_0001204,Phage_RNA_Polymerase_Promoter +11.0279224,SO:0002311,http://purl.obolibrary.org/obo/SO_0002311,viral_promoter +11.0279224,UBERON:0000355,http://purl.obolibrary.org/obo/UBERON_0000355,pharyngeal mucosa +11.0279224,UBERON:0012649,http://purl.obolibrary.org/obo/UBERON_0012649,anococcygeus muscle +11.0305927,CL:0000500,http://purl.obolibrary.org/obo/CL_0000500,follicular epithelial cell +11.0305927,DRUGBANK:DB03760,http://purl.obolibrary.org/obo/DRUGBANK_DB03760,none +11.0305927,DRUGBANK:DB04161,http://purl.obolibrary.org/obo/DRUGBANK_DB04161,none +11.0305927,DRUGBANK:DB04866,http://purl.obolibrary.org/obo/DRUGBANK_DB04866,none +11.0305927,DRUGBANK:DB06174,http://purl.obolibrary.org/obo/DRUGBANK_DB06174,none +11.0305927,GO:0008534,http://purl.obolibrary.org/obo/GO_0008534,oxidized purine nucleobase lesion DNA N-glycosylase activity +11.0305927,GO:0015732,http://purl.obolibrary.org/obo/GO_0015732,prostaglandin transport +11.0305927,GO:0018822,http://purl.obolibrary.org/obo/GO_0018822,nitrile hydratase activity +11.0305927,GO:0042008,http://purl.obolibrary.org/obo/GO_0042008,interleukin-18 receptor activity +11.0305927,MONDO:0009661,http://purl.obolibrary.org/obo/MONDO_0009661,mucopolysaccharidosis type 6 +11.0305927,MONDO:0011479,http://purl.obolibrary.org/obo/MONDO_0011479,postural orthostatic tachycardia syndrome +11.0305927,NCBITaxon:207678,http://purl.obolibrary.org/obo/NCBITaxon_207678,none +11.0305927,PR:000014746,http://purl.obolibrary.org/obo/PR_000014746,secreted frizzled-related protein 4 +11.0305927,PR:000014833,http://purl.obolibrary.org/obo/PR_000014833,SH3 and multiple ankyrin repeat domains protein 3 +11.0305927,PR:000016278,http://purl.obolibrary.org/obo/PR_000016278,tuftelin-interacting protein 11 +11.0305927,PR:000016511,http://purl.obolibrary.org/obo/PR_000016511,spermatid nuclear transition protein 1 +11.0305927,UBERON:0001381,http://purl.obolibrary.org/obo/UBERON_0001381,semimembranosus muscle +11.0305927,UBERON:0002806,http://purl.obolibrary.org/obo/UBERON_0002806,left occipital lobe +11.0305927,UBERON:0005979,http://purl.obolibrary.org/obo/UBERON_0005979,crista terminalis +11.0305927,UBERON:0010166,http://purl.obolibrary.org/obo/UBERON_0010166,coat of hair +11.03327,CL:0000820,http://purl.obolibrary.org/obo/CL_0000820,B-1a B cell +11.03327,CL:0000881,http://purl.obolibrary.org/obo/CL_0000881,perivascular macrophage +11.03327,DRUGBANK:DB06219,http://purl.obolibrary.org/obo/DRUGBANK_DB06219,none +11.03327,DRUGBANK:DB06468,http://purl.obolibrary.org/obo/DRUGBANK_DB06468,none +11.03327,DRUGBANK:DB08941,http://purl.obolibrary.org/obo/DRUGBANK_DB08941,none +11.03327,GO:0004324,http://purl.obolibrary.org/obo/GO_0004324,ferredoxin-NADP+ reductase activity +11.03327,GO:0009989,http://purl.obolibrary.org/obo/GO_0009989,cell-matrix recognition +11.03327,GO:0009990,http://purl.obolibrary.org/obo/GO_0009990,contact guidance +11.03327,GO:0016623,http://purl.obolibrary.org/obo/GO_0016623,"oxidoreductase activity, acting on the aldehyde or oxo group of donors, oxygen as acceptor" +11.03327,GO:0032570,http://purl.obolibrary.org/obo/GO_0032570,response to progesterone +11.03327,GO:0046539,http://purl.obolibrary.org/obo/GO_0046539,histamine N-methyltransferase activity +11.03327,GO:0051235,http://purl.obolibrary.org/obo/GO_0051235,maintenance of location +11.03327,GO:0060013,http://purl.obolibrary.org/obo/GO_0060013,righting reflex +11.03327,GO:1904842,http://purl.obolibrary.org/obo/GO_1904842,response to nitroglycerin +11.03327,MONDO:0006981,http://purl.obolibrary.org/obo/MONDO_0006981,subacute bacterial endocarditis +11.03327,MONDO:0017688,http://purl.obolibrary.org/obo/MONDO_0017688,disorder of glycolysis +11.03327,NCBITaxon:164860,http://purl.obolibrary.org/obo/NCBITaxon_164860,none +11.03327,PR:000001835,http://purl.obolibrary.org/obo/PR_000001835,T-box transcription factor TBX21 +11.03327,PR:000013667,http://purl.obolibrary.org/obo/PR_000013667,double-strand-break repair protein rad21 homolog +11.03327,PR:000013895,http://purl.obolibrary.org/obo/PR_000013895,proto-oncogene tyrosine-protein kinase receptor Ret +11.03327,PR:000015419,http://purl.obolibrary.org/obo/PR_000015419,transcription factor SOX-11 +11.03327,PR:000016240,http://purl.obolibrary.org/obo/PR_000016240,calcineurin B homologous protein 3 +11.03327,PR:000016301,http://purl.obolibrary.org/obo/PR_000016301,tyrosine 3-monooxygenase +11.03327,PR:P0DI07,http://purl.obolibrary.org/obo/PR_P0DI07,none +11.03327,UBERON:0001428,http://purl.obolibrary.org/obo/UBERON_0001428,intermedium +11.03327,UBERON:0008824,http://purl.obolibrary.org/obo/UBERON_0008824,duct of epididymis +11.03327,UBERON:0012126,http://purl.obolibrary.org/obo/UBERON_0012126,fibulare +11.0359546,CHEBI:49201,http://purl.obolibrary.org/obo/CHEBI_49201,anti-ulcer drug +11.0359546,CHEBI:61073,http://purl.obolibrary.org/obo/CHEBI_61073,oxygen radical +11.0359546,DRUGBANK:DB06230,http://purl.obolibrary.org/obo/DRUGBANK_DB06230,none +11.0359546,DRUGBANK:DB08620,http://purl.obolibrary.org/obo/DRUGBANK_DB08620,none +11.0359546,DRUGBANK:DB08995,http://purl.obolibrary.org/obo/DRUGBANK_DB08995,none +11.0359546,DRUGBANK:DB11363,http://purl.obolibrary.org/obo/DRUGBANK_DB11363,none +11.0359546,DRUGBANK:DB11400,http://purl.obolibrary.org/obo/DRUGBANK_DB11400,none +11.0359546,GO:0005381,http://purl.obolibrary.org/obo/GO_0005381,iron ion transmembrane transporter activity +11.0359546,GO:0070167,http://purl.obolibrary.org/obo/GO_0070167,regulation of biomineral tissue development +11.0359546,MONDO:0006041,http://purl.obolibrary.org/obo/MONDO_0006041,lung carcinoid tumor +11.0359546,MONDO:0006801,http://purl.obolibrary.org/obo/MONDO_0006801,ileal neoplasm +11.0359546,MONDO:0007309,http://purl.obolibrary.org/obo/MONDO_0007309,Charcot-Marie-Tooth disease type 1A +11.0359546,MONDO:0015068,http://purl.obolibrary.org/obo/MONDO_0015068,"neuroendocrine tumor of rectum, well differentiated, low or intermediate grade" +11.0359546,MONDO:0015209,http://purl.obolibrary.org/obo/MONDO_0015209,non-syndromic gastroduodenal malformation +11.0359546,NCBITaxon:1914297,http://purl.obolibrary.org/obo/NCBITaxon_1914297,none +11.0359546,PR:000007198,http://purl.obolibrary.org/obo/PR_000007198,S-formylglutathione hydrolase +11.0359546,PR:000008678,http://purl.obolibrary.org/obo/PR_000008678,homer protein homolog 1 +11.0359546,PR:000009928,http://purl.obolibrary.org/obo/PR_000009928,low-density lipoprotein receptor-related protein 8 +11.0359546,PR:000010084,http://purl.obolibrary.org/obo/PR_000010084,"membrane-associated guanylate kinase, WW and PDZ domain-containing protein 2" +11.0359546,PR:000010470,http://purl.obolibrary.org/obo/PR_000010470,stromelysin-2 +11.0359546,PR:000017559,http://purl.obolibrary.org/obo/PR_000017559,E3 SUMO-protein ligase ZBED1 +11.0359546,PR:P34889,http://purl.obolibrary.org/obo/PR_P34889,none +11.0359546,PR:Q38802,http://purl.obolibrary.org/obo/PR_Q38802,none +11.0359546,PR:Q9USQ5,http://purl.obolibrary.org/obo/PR_Q9USQ5,none +11.0359546,UBERON:0004723,http://purl.obolibrary.org/obo/UBERON_0004723,interlobular artery +11.0386464,DRUGBANK:DB00375,http://purl.obolibrary.org/obo/DRUGBANK_DB00375,none +11.0386464,DRUGBANK:DB03120,http://purl.obolibrary.org/obo/DRUGBANK_DB03120,none +11.0386464,DRUGBANK:DB06402,http://purl.obolibrary.org/obo/DRUGBANK_DB06402,none +11.0386464,GO:0005700,http://purl.obolibrary.org/obo/GO_0005700,polytene chromosome +11.0386464,GO:0006757,http://purl.obolibrary.org/obo/GO_0006757,ATP generation from ADP +11.0386464,GO:0016884,http://purl.obolibrary.org/obo/GO_0016884,"carbon-nitrogen ligase activity, with glutamine as amido-N-donor" +11.0386464,GO:0045216,http://purl.obolibrary.org/obo/GO_0045216,cell-cell junction organization +11.0386464,GO:0051098,http://purl.obolibrary.org/obo/GO_0051098,regulation of binding +11.0386464,GO:0060416,http://purl.obolibrary.org/obo/GO_0060416,response to growth hormone +11.0386464,HP:0001394,http://purl.obolibrary.org/obo/HP_0001394,Cirrhosis +11.0386464,MONDO:0002275,http://purl.obolibrary.org/obo/MONDO_0002275,generalized atherosclerosis +11.0386464,MONDO:0005900,http://purl.obolibrary.org/obo/MONDO_0005900,parotitis +11.0386464,MONDO:0009387,http://purl.obolibrary.org/obo/MONDO_0009387,familial lipoprotein lipase deficiency +11.0386464,MONDO:0018883,http://purl.obolibrary.org/obo/MONDO_0018883,Berardinelli-Seip congenital lipodystrophy +11.0386464,NCBITaxon:11788,http://purl.obolibrary.org/obo/NCBITaxon_11788,none +11.0386464,NCBITaxon:2560743,http://purl.obolibrary.org/obo/NCBITaxon_2560743,none +11.0386464,PR:000004712,http://purl.obolibrary.org/obo/PR_000004712,breakpoint cluster region protein +11.0386464,PR:000005655,http://purl.obolibrary.org/obo/PR_000005655,CCR4-NOT transcription complex subunit 7 +11.0386464,PR:000009001,http://purl.obolibrary.org/obo/PR_000009001,interleukin-23 receptor +11.0386464,PR:000013591,http://purl.obolibrary.org/obo/PR_000013591,Ras-related protein Rab-1A +11.0386464,PR:000014537,http://purl.obolibrary.org/obo/PR_000014537,protein LAP4 +11.0386464,PR:000015760,http://purl.obolibrary.org/obo/PR_000015760,stathmin-2 +11.0386464,PR:Q55DT8,http://purl.obolibrary.org/obo/PR_Q55DT8,none +11.0413455,CHEBI:23509,http://purl.obolibrary.org/obo/CHEBI_23509,cysteine derivative +11.0413455,CHEBI:9513,http://purl.obolibrary.org/obo/CHEBI_9513,thalidomide +11.0413455,DRUGBANK:DB09202,http://purl.obolibrary.org/obo/DRUGBANK_DB09202,none +11.0413455,DRUGBANK:DB11622,http://purl.obolibrary.org/obo/DRUGBANK_DB11622,none +11.0413455,GO:0033238,http://purl.obolibrary.org/obo/GO_0033238,regulation of cellular amine metabolic process +11.0413455,MONDO:0016028,http://purl.obolibrary.org/obo/MONDO_0016028,erythromelalgia +11.0413455,NCBITaxon:11660,http://purl.obolibrary.org/obo/NCBITaxon_11660,none +11.0413455,PR:000000673,http://purl.obolibrary.org/obo/PR_000000673,cyclic nucleotide-gated channel alpha subunit +11.0413455,PR:000006110,http://purl.obolibrary.org/obo/PR_000006110,"cytochrome P450 27, mitochondrial" +11.0413455,PR:000006283,http://purl.obolibrary.org/obo/PR_000006283,death domain-associated protein 6 +11.0413455,PR:000007168,http://purl.obolibrary.org/obo/PR_000007168,DNA excision repair protein ERCC-6 +11.0413455,PR:000010142,http://purl.obolibrary.org/obo/PR_000010142,microtubule-associated protein 4 +11.0413455,PR:000014980,http://purl.obolibrary.org/obo/PR_000014980,sodium-dependent phosphate transporter 2 +11.0413455,PR:000024027,http://purl.obolibrary.org/obo/PR_000024027,none +11.0413455,PR:Q10287,http://purl.obolibrary.org/obo/PR_Q10287,none +11.0413455,SO:0000683,http://purl.obolibrary.org/obo/SO_0000683,exonic_splice_enhancer +11.0413455,UBERON:0003404,http://purl.obolibrary.org/obo/UBERON_0003404,lobar bronchus of right lung +11.0413455,UBERON:0007149,http://purl.obolibrary.org/obo/UBERON_0007149,inferior thyroid artery +11.0440518,CL:0000565,http://purl.obolibrary.org/obo/CL_0000565,fat body cell +11.0440518,DRUGBANK:DB02691,http://purl.obolibrary.org/obo/DRUGBANK_DB02691,none +11.0440518,DRUGBANK:DB04474,http://purl.obolibrary.org/obo/DRUGBANK_DB04474,none +11.0440518,DRUGBANK:DB12821,http://purl.obolibrary.org/obo/DRUGBANK_DB12821,none +11.0440518,GO:0004325,http://purl.obolibrary.org/obo/GO_0004325,ferrochelatase activity +11.0440518,GO:0004660,http://purl.obolibrary.org/obo/GO_0004660,protein farnesyltransferase activity +11.0440518,GO:0006662,http://purl.obolibrary.org/obo/GO_0006662,glycerol ether metabolic process +11.0440518,GO:0046485,http://purl.obolibrary.org/obo/GO_0046485,ether lipid metabolic process +11.0440518,GO:0050254,http://purl.obolibrary.org/obo/GO_0050254,rhodopsin kinase activity +11.0440518,GO:0051653,http://purl.obolibrary.org/obo/GO_0051653,spindle localization +11.0440518,GO:0110149,http://purl.obolibrary.org/obo/GO_0110149,regulation of biomineralization +11.0440518,GO:1905517,http://purl.obolibrary.org/obo/GO_1905517,macrophage migration +11.0440518,MONDO:0002337,http://purl.obolibrary.org/obo/MONDO_0002337,intra-abdominal hemangioma +11.0440518,MONDO:0002805,http://purl.obolibrary.org/obo/MONDO_0002805,hidradenoma +11.0440518,MONDO:0020106,http://purl.obolibrary.org/obo/MONDO_0020106,hemolytic anemia due to a disorder of glycolytic enzymes +11.0440518,MONDO:0020586,http://purl.obolibrary.org/obo/MONDO_0020586,factor V deficiency +11.0440518,MONDO:0100014,http://purl.obolibrary.org/obo/MONDO_0100014,autoimmune retinopathy +11.0440518,PR:000001834,http://purl.obolibrary.org/obo/PR_000001834,SLAM family member 7 +11.0440518,PR:000004068,http://purl.obolibrary.org/obo/PR_000004068,anthrax toxin receptor 1 +11.0440518,PR:P49367,http://purl.obolibrary.org/obo/PR_P49367,none +11.0440518,SO:0000546,http://purl.obolibrary.org/obo/SO_0000546,designed_sequence +11.0440518,UBERON:0002766,http://purl.obolibrary.org/obo/UBERON_0002766,fusiform gyrus +11.0440518,UBERON:0006009,http://purl.obolibrary.org/obo/UBERON_0006009,cusp of cardiac valve +11.0440518,UBERON:0009471,http://purl.obolibrary.org/obo/UBERON_0009471,dorsum of tongue +11.0467655,DRUGBANK:DB10615,http://purl.obolibrary.org/obo/DRUGBANK_DB10615,none +11.0467655,GO:0008354,http://purl.obolibrary.org/obo/GO_0008354,germ cell migration +11.0467655,GO:0015824,http://purl.obolibrary.org/obo/GO_0015824,proline transport +11.0467655,GO:0016519,http://purl.obolibrary.org/obo/GO_0016519,gastric inhibitory peptide receptor activity +11.0467655,GO:0042811,http://purl.obolibrary.org/obo/GO_0042811,pheromone biosynthetic process +11.0467655,GO:0048708,http://purl.obolibrary.org/obo/GO_0048708,astrocyte differentiation +11.0467655,GO:0097187,http://purl.obolibrary.org/obo/GO_0097187,dentinogenesis +11.0467655,GO:0097462,http://purl.obolibrary.org/obo/GO_0097462,Lewy neurite +11.0467655,HP:0003498,http://purl.obolibrary.org/obo/HP_0003498,Disproportionate short stature +11.0467655,MONDO:0008018,http://purl.obolibrary.org/obo/MONDO_0008018,Muir-Torre syndrome +11.0467655,MONDO:0008737,http://purl.obolibrary.org/obo/MONDO_0008737,congenital afibrinogenemia +11.0467655,MONDO:0016611,http://purl.obolibrary.org/obo/MONDO_0016611,lipoblastoma +11.0467655,MONDO:0044344,http://purl.obolibrary.org/obo/MONDO_0044344,Schistosoma japonicum infectious disease +11.0467655,NCBITaxon:1133363,http://purl.obolibrary.org/obo/NCBITaxon_1133363,none +11.0467655,NCBITaxon:1346520,http://purl.obolibrary.org/obo/NCBITaxon_1346520,none +11.0467655,PR:000009433,http://purl.obolibrary.org/obo/PR_000009433,importin subunit alpha-1 +11.0467655,PR:000014571,http://purl.obolibrary.org/obo/PR_000014571,serine dehydratase-like +11.0467655,PR:000015236,http://purl.obolibrary.org/obo/PR_000015236,slit homolog 3 protein +11.0467655,UBERON:0005442,http://purl.obolibrary.org/obo/UBERON_0005442,abdominal external oblique muscle +11.0494866,DRUGBANK:DB10514,http://purl.obolibrary.org/obo/DRUGBANK_DB10514,none +11.0494866,GO:0002833,http://purl.obolibrary.org/obo/GO_0002833,positive regulation of response to biotic stimulus +11.0494866,GO:0006910,http://purl.obolibrary.org/obo/GO_0006910,"phagocytosis, recognition" +11.0494866,GO:0008291,http://purl.obolibrary.org/obo/GO_0008291,acetylcholine metabolic process +11.0494866,GO:0097254,http://purl.obolibrary.org/obo/GO_0097254,renal tubular secretion +11.0494866,MONDO:0003291,http://purl.obolibrary.org/obo/MONDO_0003291,leiomyoma cutis +11.0494866,MONDO:0015453,http://purl.obolibrary.org/obo/MONDO_0015453,Cogan syndrome +11.0494866,MONDO:0016696,http://purl.obolibrary.org/obo/MONDO_0016696,anaplastic oligodendroglioma +11.0494866,MONDO:0019354,http://purl.obolibrary.org/obo/MONDO_0019354,Stickler syndrome +11.0494866,PR:000001468,http://purl.obolibrary.org/obo/PR_000001468,intercellular adhesion molecule 3 +11.0494866,PR:000009664,http://purl.obolibrary.org/obo/PR_000009664,cytosol aminopeptidase +11.0494866,PR:000013436,http://purl.obolibrary.org/obo/PR_000013436,prothymosin alpha +11.0494866,PR:P13661,http://purl.obolibrary.org/obo/PR_P13661,none +11.0494866,PR:P36165,http://purl.obolibrary.org/obo/PR_P36165,none +11.0494866,UBERON:0001338,http://purl.obolibrary.org/obo/UBERON_0001338,urethral gland +11.0494866,UBERON:0004234,http://purl.obolibrary.org/obo/UBERON_0004234,iris smooth muscle +11.0522151,DRUGBANK:DB00323,http://purl.obolibrary.org/obo/DRUGBANK_DB00323,none +11.0522151,DRUGBANK:DB04845,http://purl.obolibrary.org/obo/DRUGBANK_DB04845,none +11.0522151,DRUGBANK:DB13715,http://purl.obolibrary.org/obo/DRUGBANK_DB13715,none +11.0522151,DRUGBANK:DB13777,http://purl.obolibrary.org/obo/DRUGBANK_DB13777,none +11.0522151,GO:0009685,http://purl.obolibrary.org/obo/GO_0009685,gibberellin metabolic process +11.0522151,GO:0019359,http://purl.obolibrary.org/obo/GO_0019359,nicotinamide nucleotide biosynthetic process +11.0522151,HP:0004374,http://purl.obolibrary.org/obo/HP_0004374,Hemiplegia/hemiparesis +11.0522151,MONDO:0006053,http://purl.obolibrary.org/obo/MONDO_0006053,renal leiomyoma +11.0522151,MONDO:0007818,http://purl.obolibrary.org/obo/MONDO_0007818,Hyper-IgE recurrent infection syndrome 1 +11.0522151,MONDO:0007958,http://purl.obolibrary.org/obo/MONDO_0007958,familial medullary thyroid carcinoma +11.0522151,PR:000001869,http://purl.obolibrary.org/obo/PR_000001869,interleukin-7 receptor subunit alpha +11.0522151,PR:000005034,http://purl.obolibrary.org/obo/PR_000005034,caspase recruitment domain-containing protein 11 +11.0522151,PR:000005458,http://purl.obolibrary.org/obo/PR_000005458,neuronal acetylcholine receptor subunit alpha-5 +11.0522151,PR:000008435,http://purl.obolibrary.org/obo/PR_000008435,hydroxyacylglutathione hydrolase +11.0522151,PR:000009416,http://purl.obolibrary.org/obo/PR_000009416,kallikrein-6 +11.0522151,PR:P08092,http://purl.obolibrary.org/obo/PR_P08092,none +11.0522151,PR:P27548,http://purl.obolibrary.org/obo/PR_P27548,none +11.0522151,PR:Q5A762,http://purl.obolibrary.org/obo/PR_Q5A762,none +11.0522151,PR:Q9I8D8,http://purl.obolibrary.org/obo/PR_Q9I8D8,none +11.0522151,PR:Q9Z2V2,http://purl.obolibrary.org/obo/PR_Q9Z2V2,none +11.0522151,UBERON:0000323,http://purl.obolibrary.org/obo/UBERON_0000323,late embryo +11.0522151,UBERON:0001229,http://purl.obolibrary.org/obo/UBERON_0001229,renal corpuscle +11.0522151,UBERON:0002527,http://purl.obolibrary.org/obo/UBERON_0002527,pancreatic lymph node +11.0522151,UBERON:0009889,http://purl.obolibrary.org/obo/UBERON_0009889,secondary heart field +11.0522151,UBERON:0013497,http://purl.obolibrary.org/obo/UBERON_0013497,muscularis orbicularis +11.0549511,CL:0000821,http://purl.obolibrary.org/obo/CL_0000821,B-1b B cell +11.0549511,GO:0031930,http://purl.obolibrary.org/obo/GO_0031930,mitochondria-nucleus signaling pathway +11.0549511,GO:0043457,http://purl.obolibrary.org/obo/GO_0043457,regulation of cellular respiration +11.0549511,GO:0080027,http://purl.obolibrary.org/obo/GO_0080027,response to herbivore +11.0549511,GO:0097696,http://purl.obolibrary.org/obo/GO_0097696,receptor signaling pathway via STAT +11.0549511,HP:0011387,http://purl.obolibrary.org/obo/HP_0011387,Enlarged vestibular aqueduct +11.0549511,MONDO:0008167,http://purl.obolibrary.org/obo/MONDO_0008167,dermoid cyst of ovary +11.0549511,MONDO:0013316,http://purl.obolibrary.org/obo/MONDO_0013316,occult macular dystrophy +11.0549511,MONDO:0016366,http://purl.obolibrary.org/obo/MONDO_0016366,maternal phenylketonuria +11.0549511,PR:000001316,http://purl.obolibrary.org/obo/PR_000001316,interleukin-31 +11.0549511,PR:000001820,http://purl.obolibrary.org/obo/PR_000001820,MHC class II histocompatibility antigen alpha chain +11.0549511,PR:000008254,http://purl.obolibrary.org/obo/PR_000008254,glutamate receptor-interacting protein 1 +11.0549511,PR:000009448,http://purl.obolibrary.org/obo/PR_000009448,Krev interaction trapped protein 1 +11.0549511,PR:000009871,http://purl.obolibrary.org/obo/PR_000009871,LIM homeobox transcription factor 1-beta +11.0549511,PR:000012473,http://purl.obolibrary.org/obo/PR_000012473,"cAMP-specific 3',5'-cyclic phosphodiesterase 4B" +11.0549511,PR:000022201,http://purl.obolibrary.org/obo/PR_000022201,none +11.0549511,UBERON:0002836,http://purl.obolibrary.org/obo/UBERON_0002836,lumbar dorsal root ganglion +11.0549511,UBERON:0008529,http://purl.obolibrary.org/obo/UBERON_0008529,piriformis muscle +11.0549511,UBERON:0009678,http://purl.obolibrary.org/obo/UBERON_0009678,tooth row +11.0576946,CHEBI:23114,http://purl.obolibrary.org/obo/CHEBI_23114,chloride salt +11.0576946,CHEBI:33673,http://purl.obolibrary.org/obo/CHEBI_33673,zinc group molecular entity +11.0576946,DRUGBANK:DB01228,http://purl.obolibrary.org/obo/DRUGBANK_DB01228,none +11.0576946,DRUGBANK:DB01230,http://purl.obolibrary.org/obo/DRUGBANK_DB01230,none +11.0576946,DRUGBANK:DB01738,http://purl.obolibrary.org/obo/DRUGBANK_DB01738,none +11.0576946,DRUGBANK:DB10701,http://purl.obolibrary.org/obo/DRUGBANK_DB10701,none +11.0576946,DRUGBANK:DB12293,http://purl.obolibrary.org/obo/DRUGBANK_DB12293,none +11.0576946,GO:0007531,http://purl.obolibrary.org/obo/GO_0007531,mating type determination +11.0576946,GO:0043654,http://purl.obolibrary.org/obo/GO_0043654,recognition of apoptotic cell +11.0576946,GO:0051193,http://purl.obolibrary.org/obo/GO_0051193,none +11.0576946,GO:1903311,http://purl.obolibrary.org/obo/GO_1903311,regulation of mRNA metabolic process +11.0576946,MONDO:0000859,http://purl.obolibrary.org/obo/MONDO_0000859,spina bifida occulta +11.0576946,NCBITaxon:11855,http://purl.obolibrary.org/obo/NCBITaxon_11855,none +11.0576946,NCBITaxon:91882,http://purl.obolibrary.org/obo/NCBITaxon_91882,none +11.0576946,PR:000002972,http://purl.obolibrary.org/obo/PR_000002972,macrophage mannose receptor 1 +11.0576946,PR:000004302,http://purl.obolibrary.org/obo/PR_000004302,age-related maculopathy susceptibility protein 2 +11.0576946,PR:000008826,http://purl.obolibrary.org/obo/PR_000008826,basement membrane-specific heparan sulfate proteoglycan core protein +11.0576946,PR:000010116,http://purl.obolibrary.org/obo/PR_000010116,microtubule-associated protein 1A +11.0576946,PR:000029221,http://purl.obolibrary.org/obo/PR_000029221,none +11.0576946,UBERON:0001571,http://purl.obolibrary.org/obo/UBERON_0001571,genioglossus muscle +11.0576946,UBERON:0009952,http://purl.obolibrary.org/obo/UBERON_0009952,dentate gyrus subgranular zone +11.0604456,CHEBI:24851,http://purl.obolibrary.org/obo/CHEBI_24851,insect growth regulator +11.0604456,DRUGBANK:DB01294,http://purl.obolibrary.org/obo/DRUGBANK_DB01294,none +11.0604456,DRUGBANK:DB04812,http://purl.obolibrary.org/obo/DRUGBANK_DB04812,none +11.0604456,DRUGBANK:DB11239,http://purl.obolibrary.org/obo/DRUGBANK_DB11239,none +11.0604456,DRUGBANK:DB15920,http://purl.obolibrary.org/obo/DRUGBANK_DB15920,none +11.0604456,GO:0008089,http://purl.obolibrary.org/obo/GO_0008089,anterograde axonal transport +11.0604456,GO:0015977,http://purl.obolibrary.org/obo/GO_0015977,carbon fixation +11.0604456,GO:0030870,http://purl.obolibrary.org/obo/GO_0030870,Mre11 complex +11.0604456,GO:0048580,http://purl.obolibrary.org/obo/GO_0048580,regulation of post-embryonic development +11.0604456,MONDO:0006051,http://purl.obolibrary.org/obo/MONDO_0006051,postweaning multisystemic wasting syndrome +11.0604456,PR:000005844,http://purl.obolibrary.org/obo/PR_000005844,cellular retinoic acid-binding protein 2 +11.0604456,PR:000010425,http://purl.obolibrary.org/obo/PR_000010425,proliferation marker protein Ki-67 +11.0604456,PR:000012692,http://purl.obolibrary.org/obo/PR_000012692,ATP-dependent DNA helicase PIF1 +11.0604456,PR:000013404,http://purl.obolibrary.org/obo/PR_000013404,phosphoserine phosphatase +11.0604456,PR:000014991,http://purl.obolibrary.org/obo/PR_000014991,solute carrier family 22 member 4 +11.0604456,PR:000016287,http://purl.obolibrary.org/obo/PR_000016287,transforming growth factor-beta-induced protein ig-h3 +11.0604456,PR:000016598,http://purl.obolibrary.org/obo/PR_000016598,targeting protein for Xklp2 +11.0604456,PR:000022848,http://purl.obolibrary.org/obo/PR_000022848,none +11.0604456,UBERON:0011192,http://purl.obolibrary.org/obo/UBERON_0011192,superior ophthalmic vein +11.0632043,CHEBI:63609,http://purl.obolibrary.org/obo/CHEBI_63609,mefloquine +11.0632043,DRUGBANK:DB11110,http://purl.obolibrary.org/obo/DRUGBANK_DB11110,none +11.0632043,DRUGBANK:DB14358,http://purl.obolibrary.org/obo/DRUGBANK_DB14358,none +11.0632043,GO:0000422,http://purl.obolibrary.org/obo/GO_0000422,autophagy of mitochondrion +11.0632043,GO:0006544,http://purl.obolibrary.org/obo/GO_0006544,glycine metabolic process +11.0632043,GO:0020005,http://purl.obolibrary.org/obo/GO_0020005,symbiont-containing vacuole membrane +11.0632043,GO:0030036,http://purl.obolibrary.org/obo/GO_0030036,actin cytoskeleton organization +11.0632043,GO:0051923,http://purl.obolibrary.org/obo/GO_0051923,sulfation +11.0632043,MONDO:0001128,http://purl.obolibrary.org/obo/MONDO_0001128,nasal cavity cancer +11.0632043,MONDO:0002875,http://purl.obolibrary.org/obo/MONDO_0002875,parasitic ectoparasitic infectious disease +11.0632043,MONDO:0010725,http://purl.obolibrary.org/obo/MONDO_0010725,X-linked retinoschisis +11.0632043,MONDO:0019787,http://purl.obolibrary.org/obo/MONDO_0019787,autoimmune enteropathy +11.0632043,MONDO:0022772,http://purl.obolibrary.org/obo/MONDO_0022772,classic Kaposi sarcoma +11.0632043,PR:000003214,http://purl.obolibrary.org/obo/PR_000003214,ski oncogene +11.0632043,PR:000003959,http://purl.obolibrary.org/obo/PR_000003959,polyunsaturated fatty acid lipoxygenase ALOX15 +11.0632043,PR:000008452,http://purl.obolibrary.org/obo/PR_000008452,histone acetyltransferase type B catalytic subunit +11.0632043,PR:000011529,http://purl.obolibrary.org/obo/PR_000011529,nuclear protein 1 +11.0632043,PR:000011574,http://purl.obolibrary.org/obo/PR_000011574,2'-5'-oligoadenylate synthase 1 +11.0632043,PR:000013268,http://purl.obolibrary.org/obo/PR_000013268,homeobox protein prophet of Pit-1 +11.0632043,PR:000022055,http://purl.obolibrary.org/obo/PR_000022055,none +11.0632043,SO:0000272,http://purl.obolibrary.org/obo/SO_0000272,tyrosyl_tRNA +11.0659705,CHEBI:23677,http://purl.obolibrary.org/obo/CHEBI_23677,diazole +11.0659705,CHEBI:26191,http://purl.obolibrary.org/obo/CHEBI_26191,polyol +11.0659705,DRUGBANK:DB04794,http://purl.obolibrary.org/obo/DRUGBANK_DB04794,none +11.0659705,DRUGBANK:DB06725,http://purl.obolibrary.org/obo/DRUGBANK_DB06725,none +11.0659705,DRUGBANK:DB08935,http://purl.obolibrary.org/obo/DRUGBANK_DB08935,none +11.0659705,DRUGBANK:DB10678,http://purl.obolibrary.org/obo/DRUGBANK_DB10678,none +11.0659705,DRUGBANK:DB10866,http://purl.obolibrary.org/obo/DRUGBANK_DB10866,none +11.0659705,DRUGBANK:DB15820,http://purl.obolibrary.org/obo/DRUGBANK_DB15820,none +11.0659705,GO:0003953,http://purl.obolibrary.org/obo/GO_0003953,NAD+ nucleosidase activity +11.0659705,GO:0004798,http://purl.obolibrary.org/obo/GO_0004798,thymidylate kinase activity +11.0659705,GO:0009082,http://purl.obolibrary.org/obo/GO_0009082,branched-chain amino acid biosynthetic process +11.0659705,GO:0090461,http://purl.obolibrary.org/obo/GO_0090461,glutamate homeostasis +11.0659705,MONDO:0001552,http://purl.obolibrary.org/obo/MONDO_0001552,dyscalculia +11.0659705,MONDO:0002083,http://purl.obolibrary.org/obo/MONDO_0002083,Richter syndrome +11.0659705,MONDO:0003137,http://purl.obolibrary.org/obo/MONDO_0003137,diffuse glomerulonephritis +11.0659705,MONDO:0021416,http://purl.obolibrary.org/obo/MONDO_0021416,polyp of gallbladder +11.0659705,NCBITaxon:333754,http://purl.obolibrary.org/obo/NCBITaxon_333754,none +11.0659705,NCBITaxon:7400,http://purl.obolibrary.org/obo/NCBITaxon_7400,Apocrita +11.0659705,PR:000004846,http://purl.obolibrary.org/obo/PR_000004846,protein BTG3 +11.0659705,PR:000009721,http://purl.obolibrary.org/obo/PR_000009721,lipocalin-1 +11.0659705,PR:000009894,http://purl.obolibrary.org/obo/PR_000009894,phosphatidate phosphatase LPIN1 +11.0659705,PR:000014527,http://purl.obolibrary.org/obo/PR_000014527,amiloride-sensitive sodium channel subunit alpha +11.0659705,PR:000014874,http://purl.obolibrary.org/obo/PR_000014874,melanocyte protein Pmel 17 +11.0659705,PR:000015234,http://purl.obolibrary.org/obo/PR_000015234,slit homolog 1 protein +11.0659705,PR:000015476,http://purl.obolibrary.org/obo/PR_000015476,SPARC-like protein 1 +11.0659705,PR:000017493,http://purl.obolibrary.org/obo/PR_000017493,DNA repair protein complementing XP-A cells +11.0659705,PR:000029051,http://purl.obolibrary.org/obo/PR_000029051,none +11.0659705,PR:P46639,http://purl.obolibrary.org/obo/PR_P46639,none +11.0659705,SO:0000434,http://purl.obolibrary.org/obo/SO_0000434,target_site_duplication +11.0659705,SO:0000999,http://purl.obolibrary.org/obo/SO_0000999,BAC_end +11.0659705,SO:0001268,http://purl.obolibrary.org/obo/SO_0001268,snRNA_gene +11.0659705,UBERON:0000377,http://purl.obolibrary.org/obo/UBERON_0000377,maxillary nerve +11.0659705,UBERON:0001863,http://purl.obolibrary.org/obo/UBERON_0001863,scala vestibuli +11.0659705,UBERON:0006842,http://purl.obolibrary.org/obo/UBERON_0006842,lymphatic capillary +11.0687444,DRUGBANK:DB03298,http://purl.obolibrary.org/obo/DRUGBANK_DB03298,none +11.0687444,DRUGBANK:DB09257,http://purl.obolibrary.org/obo/DRUGBANK_DB09257,none +11.0687444,GO:0001962,http://purl.obolibrary.org/obo/GO_0001962,"alpha-1,3-galactosyltransferase activity" +11.0687444,GO:0004124,http://purl.obolibrary.org/obo/GO_0004124,cysteine synthase activity +11.0687444,GO:0005793,http://purl.obolibrary.org/obo/GO_0005793,endoplasmic reticulum-Golgi intermediate compartment +11.0687444,GO:0033045,http://purl.obolibrary.org/obo/GO_0033045,regulation of sister chromatid segregation +11.0687444,GO:0036442,http://purl.obolibrary.org/obo/GO_0036442,none +11.0687444,GO:0050497,http://purl.obolibrary.org/obo/GO_0050497,alkylthioltransferase activity +11.0687444,GO:0051050,http://purl.obolibrary.org/obo/GO_0051050,positive regulation of transport +11.0687444,GO:0140104,http://purl.obolibrary.org/obo/GO_0140104,molecular carrier activity +11.0687444,HP:0001269,http://purl.obolibrary.org/obo/HP_0001269,Hemiparesis +11.0687444,MONDO:0000359,http://purl.obolibrary.org/obo/MONDO_0000359,spondylocostal dysostosis +11.0687444,MONDO:0003964,http://purl.obolibrary.org/obo/MONDO_0003964,myositis ossificans +11.0687444,MONDO:0015722,http://purl.obolibrary.org/obo/MONDO_0015722,congenital vitamin K-dependent coagulation factors deficiency +11.0687444,MONDO:0019530,http://purl.obolibrary.org/obo/MONDO_0019530,non-syndromic syndactyly +11.0687444,MONDO:0024422,http://purl.obolibrary.org/obo/MONDO_0024422,auditory perceptual disorders +11.0687444,NCBITaxon:11642,http://purl.obolibrary.org/obo/NCBITaxon_11642,none +11.0687444,PR:000003711,http://purl.obolibrary.org/obo/PR_000003711,disintegrin and metalloproteinase domain-containing protein 12 +11.0687444,PR:000006049,http://purl.obolibrary.org/obo/PR_000006049,cullin-4A +11.0687444,PR:P47998,http://purl.obolibrary.org/obo/PR_P47998,none +11.0687444,SO:0000189,http://purl.obolibrary.org/obo/SO_0000189,non_LTR_retrotransposon +11.0715261,DRUGBANK:DB06216,http://purl.obolibrary.org/obo/DRUGBANK_DB06216,none +11.0715261,DRUGBANK:DB13047,http://purl.obolibrary.org/obo/DRUGBANK_DB13047,none +11.0715261,DRUGBANK:DB16384,http://purl.obolibrary.org/obo/DRUGBANK_DB16384,none +11.0715261,GO:0001533,http://purl.obolibrary.org/obo/GO_0001533,cornified envelope +11.0715261,GO:0008653,http://purl.obolibrary.org/obo/GO_0008653,lipopolysaccharide metabolic process +11.0715261,GO:0042908,http://purl.obolibrary.org/obo/GO_0042908,xenobiotic transport +11.0715261,GO:0097402,http://purl.obolibrary.org/obo/GO_0097402,neuroblast migration +11.0715261,MONDO:0002424,http://purl.obolibrary.org/obo/MONDO_0002424,rectosigmoid carcinoma +11.0715261,MONDO:0004806,http://purl.obolibrary.org/obo/MONDO_0004806,chronic eosinophilic pneumonia +11.0715261,MONDO:0006555,http://purl.obolibrary.org/obo/MONDO_0006555,granulomatous dermatitis +11.0715261,MONDO:0009953,http://purl.obolibrary.org/obo/MONDO_0009953,leukocyte adhesion deficiency type II +11.0715261,MONDO:0010315,http://purl.obolibrary.org/obo/MONDO_0010315,T-B+ severe combined immunodeficiency due to gamma chain deficiency +11.0715261,MONDO:0012825,http://purl.obolibrary.org/obo/MONDO_0012825,extraskeletal myxoid chondrosarcoma +11.0715261,MONDO:0016471,http://purl.obolibrary.org/obo/MONDO_0016471,pachyonychia congenita +11.0715261,PR:000005215,http://purl.obolibrary.org/obo/PR_000005215,CDC45-related protein +11.0715261,PR:000006528,http://purl.obolibrary.org/obo/PR_000006528,homeobox protein DLX-2 +11.0715261,PR:000012610,http://purl.obolibrary.org/obo/PR_000012610,peptidoglycan recognition protein 1 +11.0715261,PR:000016692,http://purl.obolibrary.org/obo/PR_000016692,60 kDa SS-A/Ro ribonucleoprotein +11.0715261,PR:000028932,http://purl.obolibrary.org/obo/PR_000028932,none +11.0715261,PR:000029228,http://purl.obolibrary.org/obo/PR_000029228,none +11.0715261,PR:O76734,http://purl.obolibrary.org/obo/PR_O76734,none +11.0715261,PR:Q9FN50,http://purl.obolibrary.org/obo/PR_Q9FN50,none +11.0715261,PR:Q9UUG8,http://purl.obolibrary.org/obo/PR_Q9UUG8,none +11.0715261,UBERON:0001569,http://purl.obolibrary.org/obo/UBERON_0001569,constrictor muscle of pharynx +11.0715261,UBERON:0002206,http://purl.obolibrary.org/obo/UBERON_0002206,mammillary body +11.0743155,CHEBI:24780,http://purl.obolibrary.org/obo/CHEBI_24780,imidazoles +11.0743155,DRUGBANK:DB04177,http://purl.obolibrary.org/obo/DRUGBANK_DB04177,none +11.0743155,DRUGBANK:DB10852,http://purl.obolibrary.org/obo/DRUGBANK_DB10852,none +11.0743155,DRUGBANK:DB11198,http://purl.obolibrary.org/obo/DRUGBANK_DB11198,none +11.0743155,DRUGBANK:DB13243,http://purl.obolibrary.org/obo/DRUGBANK_DB13243,none +11.0743155,GO:0045861,http://purl.obolibrary.org/obo/GO_0045861,negative regulation of proteolysis +11.0743155,MONDO:0003278,http://purl.obolibrary.org/obo/MONDO_0003278,inner ear cancer +11.0743155,MONDO:0003337,http://purl.obolibrary.org/obo/MONDO_0003337,acute hemorrhagic encephalitis +11.0743155,MONDO:0003821,http://purl.obolibrary.org/obo/MONDO_0003821,ovarian biphasic or triphasic teratoma +11.0743155,MONDO:0004829,http://purl.obolibrary.org/obo/MONDO_0004829,Krukenberg carcinoma +11.0743155,MONDO:0011506,http://purl.obolibrary.org/obo/MONDO_0011506,familial infantile myoclonic epilepsy +11.0743155,MONDO:0019793,http://purl.obolibrary.org/obo/MONDO_0019793,autosomal dominant cerebellar ataxia type III +11.0743155,MONDO:0044638,http://purl.obolibrary.org/obo/MONDO_0044638,hypopharynx squamous cell carcinoma +11.0743155,NCBITaxon:11795,http://purl.obolibrary.org/obo/NCBITaxon_11795,none +11.0743155,PR:000002188,http://purl.obolibrary.org/obo/PR_000002188,DNA fragmentation factor subunit alpha +11.0743155,PR:000005413,http://purl.obolibrary.org/obo/PR_000005413,chromodomain-helicase-DNA-binding protein 7 +11.0743155,PR:000009413,http://purl.obolibrary.org/obo/PR_000009413,kallikrein-2 +11.0743155,PR:000009684,http://purl.obolibrary.org/obo/PR_000009684,linker for activation of T-cells family member 2 +11.0743155,PR:000010779,http://purl.obolibrary.org/obo/PR_000010779,crossover junction endonuclease MUS81 +11.0743155,PR:000013589,http://purl.obolibrary.org/obo/PR_000013589,Ras-related protein Rab-18 +11.0743155,PR:000022838,http://purl.obolibrary.org/obo/PR_000022838,none +11.0743155,PR:000029523,http://purl.obolibrary.org/obo/PR_000029523,glutathione S-transferase mu 3 +11.0743155,PR:000032280,http://purl.obolibrary.org/obo/PR_000032280,SEC14 domain and spectrin repeat-containing protein 1 +11.0743155,PR:O48686,http://purl.obolibrary.org/obo/PR_O48686,none +11.0743155,PR:Q9SRZ4,http://purl.obolibrary.org/obo/PR_Q9SRZ4,none +11.0771127,CHEBI:17956,http://purl.obolibrary.org/obo/CHEBI_17956,DNA adenine +11.0771127,CHEBI:33459,http://purl.obolibrary.org/obo/CHEBI_33459,pnictogen oxoanion +11.0771127,CL:0001006,http://purl.obolibrary.org/obo/CL_0001006,dermal dendritic cell +11.0771127,DRUGBANK:DB00092,http://purl.obolibrary.org/obo/DRUGBANK_DB00092,none +11.0771127,DRUGBANK:DB10853,http://purl.obolibrary.org/obo/DRUGBANK_DB10853,none +11.0771127,GO:0010193,http://purl.obolibrary.org/obo/GO_0010193,response to ozone +11.0771127,GO:0043112,http://purl.obolibrary.org/obo/GO_0043112,receptor metabolic process +11.0771127,GO:0048243,http://purl.obolibrary.org/obo/GO_0048243,norepinephrine secretion +11.0771127,GO:0051998,http://purl.obolibrary.org/obo/GO_0051998,protein carboxyl O-methyltransferase activity +11.0771127,MONDO:0002681,http://purl.obolibrary.org/obo/MONDO_0002681,choroid plexus cancer +11.0771127,MONDO:0003835,http://purl.obolibrary.org/obo/MONDO_0003835,gastric cardia adenocarcinoma +11.0771127,MONDO:0011716,http://purl.obolibrary.org/obo/MONDO_0011716,acute hemorrhagic leukoencephalitis +11.0771127,MONDO:0024282,http://purl.obolibrary.org/obo/MONDO_0024282,mucinous ovarian cancer +11.0771127,NCBITaxon:2732464,http://purl.obolibrary.org/obo/NCBITaxon_2732464,none +11.0771127,NCBITaxon:2732546,http://purl.obolibrary.org/obo/NCBITaxon_2732546,none +11.0771127,PR:000010526,http://purl.obolibrary.org/obo/PR_000010526,proto-oncogene serine/threonine-protein kinase mos +11.0771127,PR:000013022,http://purl.obolibrary.org/obo/PR_000013022,serum paraoxonase/arylesterase 2 +11.0771127,PR:000013339,http://purl.obolibrary.org/obo/PR_000013339,phosphoserine aminotransferase +11.0771127,PR:000014717,http://purl.obolibrary.org/obo/PR_000014717,protein SET +11.0771127,PR:000015431,http://purl.obolibrary.org/obo/PR_000015431,transcription factor SOX-5 +11.0771127,PR:000022298,http://purl.obolibrary.org/obo/PR_000022298,none +11.0771127,PR:P22237,http://purl.obolibrary.org/obo/PR_P22237,none +11.0771127,UBERON:0015234,http://purl.obolibrary.org/obo/UBERON_0015234,nucleus of ventral thalamus +11.0799177,CHEBI:33245,http://purl.obolibrary.org/obo/CHEBI_33245,organic fundamental parent +11.0799177,CHEBI:37175,http://purl.obolibrary.org/obo/CHEBI_37175,organic hydride +11.0799177,CHEBI:64365,http://purl.obolibrary.org/obo/CHEBI_64365,aralkylamino compound +11.0799177,DRUGBANK:DB00986,http://purl.obolibrary.org/obo/DRUGBANK_DB00986,none +11.0799177,GO:0009629,http://purl.obolibrary.org/obo/GO_0009629,response to gravity +11.0799177,GO:1904473,http://purl.obolibrary.org/obo/GO_1904473,response to L-dopa +11.0799177,MONDO:0006275,http://purl.obolibrary.org/obo/MONDO_0006275,lung giant cell carcinoma +11.0799177,MONDO:0017764,http://purl.obolibrary.org/obo/MONDO_0017764,disorder of zinc metabolism +11.0799177,MONDO:0024335,http://purl.obolibrary.org/obo/MONDO_0024335,retrobulbar neuritis +11.0799177,NCBITaxon:12283,http://purl.obolibrary.org/obo/NCBITaxon_12283,none +11.0799177,PR:000007372,http://purl.obolibrary.org/obo/PR_000007372,F-box/LRR-repeat protein 14 +11.0799177,PR:000008820,http://purl.obolibrary.org/obo/PR_000008820,heat shock protein beta-8 +11.0799177,PR:000009240,http://purl.obolibrary.org/obo/PR_000009240,none +11.0799177,PR:000022407,http://purl.obolibrary.org/obo/PR_000022407,none +11.0799177,PR:000028975,http://purl.obolibrary.org/obo/PR_000028975,sulfotransferase 1A3 +11.0799177,PR:Q84TI6,http://purl.obolibrary.org/obo/PR_Q84TI6,none +11.0799177,PR:Q95RW8,http://purl.obolibrary.org/obo/PR_Q95RW8,none +11.0799177,PR:Q9LVH4,http://purl.obolibrary.org/obo/PR_Q9LVH4,none +11.0799177,UBERON:0001481,http://purl.obolibrary.org/obo/UBERON_0001481,distal carpal bone +11.0799177,UBERON:0015068,http://purl.obolibrary.org/obo/UBERON_0015068,distal carpal endochondral element +11.0827307,CHEBI:66981,http://purl.obolibrary.org/obo/CHEBI_66981,ophthalmology drug +11.0827307,DRUGBANK:DB05974,http://purl.obolibrary.org/obo/DRUGBANK_DB05974,none +11.0827307,DRUGBANK:DB08917,http://purl.obolibrary.org/obo/DRUGBANK_DB08917,none +11.0827307,DRUGBANK:DB09484,http://purl.obolibrary.org/obo/DRUGBANK_DB09484,none +11.0827307,DRUGBANK:DB14534,http://purl.obolibrary.org/obo/DRUGBANK_DB14534,none +11.0827307,GO:0016102,http://purl.obolibrary.org/obo/GO_0016102,diterpenoid biosynthetic process +11.0827307,GO:0016631,http://purl.obolibrary.org/obo/GO_0016631,enoyl-[acyl-carrier-protein] reductase activity +11.0827307,GO:0022409,http://purl.obolibrary.org/obo/GO_0022409,positive regulation of cell-cell adhesion +11.0827307,GO:0032271,http://purl.obolibrary.org/obo/GO_0032271,regulation of protein polymerization +11.0827307,MONDO:0007893,http://purl.obolibrary.org/obo/MONDO_0007893,Noonan syndrome with multiple lentigines +11.0827307,MONDO:0015280,http://purl.obolibrary.org/obo/MONDO_0015280,cardiofaciocutaneous syndrome +11.0827307,PR:000007008,http://purl.obolibrary.org/obo/PR_000007008,chymotrypsin-like elastase family member 1 +11.0827307,PR:000022459,http://purl.obolibrary.org/obo/PR_000022459,none +11.0827307,PR:000023103,http://purl.obolibrary.org/obo/PR_000023103,none +11.0827307,PR:000027955,http://purl.obolibrary.org/obo/PR_000027955,none +11.0827307,PR:000033259,http://purl.obolibrary.org/obo/PR_000033259,none +11.0827307,PR:P81534,http://purl.obolibrary.org/obo/PR_P81534,beta-defensin 103 (human) +11.0827307,SO:0001886,http://purl.obolibrary.org/obo/SO_0001886,transcript_fusion +11.0827307,UBERON:0002057,http://purl.obolibrary.org/obo/UBERON_0002057,phrenic artery +11.0855516,DRUGBANK:DB00597,http://purl.obolibrary.org/obo/DRUGBANK_DB00597,none +11.0855516,DRUGBANK:DB01152,http://purl.obolibrary.org/obo/DRUGBANK_DB01152,none +11.0855516,DRUGBANK:DB09107,http://purl.obolibrary.org/obo/DRUGBANK_DB09107,none +11.0855516,DRUGBANK:DB11159,http://purl.obolibrary.org/obo/DRUGBANK_DB11159,none +11.0855516,DRUGBANK:DB11426,http://purl.obolibrary.org/obo/DRUGBANK_DB11426,none +11.0855516,GO:0006020,http://purl.obolibrary.org/obo/GO_0006020,inositol metabolic process +11.0855516,GO:0030449,http://purl.obolibrary.org/obo/GO_0030449,regulation of complement activation +11.0855516,GO:0070911,http://purl.obolibrary.org/obo/GO_0070911,global genome nucleotide-excision repair +11.0855516,MONDO:0002481,http://purl.obolibrary.org/obo/MONDO_0002481,ovarian neuroendocrine neoplasm +11.0855516,MONDO:0002854,http://purl.obolibrary.org/obo/MONDO_0002854,prostate sarcoma +11.0855516,MONDO:0003455,http://purl.obolibrary.org/obo/MONDO_0003455,bile duct papillary neoplasm +11.0855516,MONDO:0004668,http://purl.obolibrary.org/obo/MONDO_0004668,fascioliasis +11.0855516,MONDO:0004695,http://purl.obolibrary.org/obo/MONDO_0004695,liver lymphoma +11.0855516,MONDO:0006447,http://purl.obolibrary.org/obo/MONDO_0006447,testicular non-seminomatous germ cell tumor +11.0855516,MONDO:0018458,http://purl.obolibrary.org/obo/MONDO_0018458,familial hypocalciuric hypercalcemia +11.0855516,MONDO:0018894,http://purl.obolibrary.org/obo/MONDO_0018894,distal hereditary motor neuropathy +11.0855516,PR:000001204,http://purl.obolibrary.org/obo/PR_000001204,C-C chemokine receptor type 8 +11.0855516,PR:000007317,http://purl.obolibrary.org/obo/PR_000007317,acyl-CoA (8-3)-desaturase +11.0855516,PR:000007540,http://purl.obolibrary.org/obo/PR_000007540,peptidyl-prolyl cis-trans isomerase FKBP4 +11.0855516,PR:000011405,http://purl.obolibrary.org/obo/PR_000011405,COUP transcription factor 2 +11.0855516,PR:000014950,http://purl.obolibrary.org/obo/PR_000014950,monocarboxylate transporter 8 +11.0855516,PR:000015636,http://purl.obolibrary.org/obo/PR_000015636,serine racemase +11.0855516,PR:000017640,http://purl.obolibrary.org/obo/PR_000017640,mRNA decay activator protein ZFP36L1 +11.0855516,PR:000024141,http://purl.obolibrary.org/obo/PR_000024141,none +11.0855516,PR:Q5AHK2,http://purl.obolibrary.org/obo/PR_Q5AHK2,none +11.0855516,SO:0000994,http://purl.obolibrary.org/obo/SO_0000994,consensus_region +11.0855516,UBERON:0001860,http://purl.obolibrary.org/obo/UBERON_0001860,endolymphatic duct +11.0883804,DRUGBANK:DB00452,http://purl.obolibrary.org/obo/DRUGBANK_DB00452,none +11.0883804,DRUGBANK:DB00703,http://purl.obolibrary.org/obo/DRUGBANK_DB00703,none +11.0883804,DRUGBANK:DB09136,http://purl.obolibrary.org/obo/DRUGBANK_DB09136,none +11.0883804,DRUGBANK:DB11569,http://purl.obolibrary.org/obo/DRUGBANK_DB11569,none +11.0883804,GO:0004704,http://purl.obolibrary.org/obo/GO_0004704,NF-kappaB-inducing kinase activity +11.0883804,GO:0009103,http://purl.obolibrary.org/obo/GO_0009103,lipopolysaccharide biosynthetic process +11.0883804,GO:0016308,http://purl.obolibrary.org/obo/GO_0016308,1-phosphatidylinositol-4-phosphate 5-kinase activity +11.0883804,GO:2000257,http://purl.obolibrary.org/obo/GO_2000257,regulation of protein activation cascade +11.0883804,MONDO:0000599,http://purl.obolibrary.org/obo/MONDO_0000599,writing disorder +11.0883804,MONDO:0019202,http://purl.obolibrary.org/obo/MONDO_0019202,myxofibrosarcoma +11.0883804,MONDO:0041114,http://purl.obolibrary.org/obo/MONDO_0041114,peripheral ischemia +11.0883804,PR:000001014,http://purl.obolibrary.org/obo/PR_000001014,receptor-type tyrosine-protein phosphatase C isoform CD45RABC +11.0883804,PR:000001360,http://purl.obolibrary.org/obo/PR_000001360,intercellular adhesion molecule 5 +11.0883804,PR:000001708,http://purl.obolibrary.org/obo/PR_000001708,sphingosine 1-phosphate receptor 3 +11.0883804,PR:000003902,http://purl.obolibrary.org/obo/PR_000003902,aldo-keto reductase family 1 member B10 +11.0883804,PR:000009069,http://purl.obolibrary.org/obo/PR_000009069,integrator complex subunit 2 +11.0883804,PR:000010011,http://purl.obolibrary.org/obo/PR_000010011,lysosomal-trafficking regulator +11.0883804,PR:000027957,http://purl.obolibrary.org/obo/PR_000027957,none +11.0883804,UBERON:0005366,http://purl.obolibrary.org/obo/UBERON_0005366,olfactory lobe +11.0912173,DRUGBANK:DB00353,http://purl.obolibrary.org/obo/DRUGBANK_DB00353,none +11.0912173,DRUGBANK:DB01090,http://purl.obolibrary.org/obo/DRUGBANK_DB01090,none +11.0912173,DRUGBANK:DB06401,http://purl.obolibrary.org/obo/DRUGBANK_DB06401,none +11.0912173,DRUGBANK:DB10431,http://purl.obolibrary.org/obo/DRUGBANK_DB10431,none +11.0912173,DRUGBANK:DB12093,http://purl.obolibrary.org/obo/DRUGBANK_DB12093,none +11.0912173,GO:0009237,http://purl.obolibrary.org/obo/GO_0009237,siderophore metabolic process +11.0912173,GO:0010383,http://purl.obolibrary.org/obo/GO_0010383,cell wall polysaccharide metabolic process +11.0912173,GO:0035101,http://purl.obolibrary.org/obo/GO_0035101,FACT complex +11.0912173,GO:0036387,http://purl.obolibrary.org/obo/GO_0036387,pre-replicative complex +11.0912173,GO:0042887,http://purl.obolibrary.org/obo/GO_0042887,amide transmembrane transporter activity +11.0912173,GO:0044351,http://purl.obolibrary.org/obo/GO_0044351,macropinocytosis +11.0912173,GO:0072648,http://purl.obolibrary.org/obo/GO_0072648,none +11.0912173,GO:1902645,http://purl.obolibrary.org/obo/GO_1902645,tertiary alcohol biosynthetic process +11.0912173,MONDO:0003354,http://purl.obolibrary.org/obo/MONDO_0003354,heart sarcoma +11.0912173,MONDO:0005890,http://purl.obolibrary.org/obo/MONDO_0005890,osteitis fibrosa +11.0912173,MONDO:0006746,http://purl.obolibrary.org/obo/MONDO_0006746,endomyocardial fibrosis +11.0912173,NCBITaxon:38820,http://purl.obolibrary.org/obo/NCBITaxon_38820,Poales +11.0912173,PR:000001105,http://purl.obolibrary.org/obo/PR_000001105,C5a anaphylatoxin chemotactic receptor +11.0912173,PR:000003616,http://purl.obolibrary.org/obo/PR_000003616,acid-sensing ion channel 3 +11.0912173,PR:000007201,http://purl.obolibrary.org/obo/PR_000007201,separin +11.0912173,PR:000016014,http://purl.obolibrary.org/obo/PR_000016014,transcription initiation factor TFIID subunit 1 +11.0912173,SO:0001643,http://purl.obolibrary.org/obo/SO_0001643,telomerase_RNA_gene +11.0912173,UBERON:0003107,http://purl.obolibrary.org/obo/UBERON_0003107,Meckel's cartilage +11.0940622,DRUGBANK:DB00825,http://purl.obolibrary.org/obo/DRUGBANK_DB00825,none +11.0940622,DRUGBANK:DB02715,http://purl.obolibrary.org/obo/DRUGBANK_DB02715,none +11.0940622,DRUGBANK:DB09129,http://purl.obolibrary.org/obo/DRUGBANK_DB09129,none +11.0940622,DRUGBANK:DB11586,http://purl.obolibrary.org/obo/DRUGBANK_DB11586,none +11.0940622,DRUGBANK:DB12602,http://purl.obolibrary.org/obo/DRUGBANK_DB12602,none +11.0940622,GO:0010476,http://purl.obolibrary.org/obo/GO_0010476,gibberellin mediated signaling pathway +11.0940622,GO:1903362,http://purl.obolibrary.org/obo/GO_1903362,regulation of cellular protein catabolic process +11.0940622,HP:0001872,http://purl.obolibrary.org/obo/HP_0001872,Abnormal thrombocyte morphology +11.0940622,MONDO:0006086,http://purl.obolibrary.org/obo/MONDO_0006086,angiomyxoma +11.0940622,MONDO:0009187,http://purl.obolibrary.org/obo/MONDO_0009187,celiac disease-epilepsy-cerebral calcification syndrome +11.0940622,MONDO:0009974,http://purl.obolibrary.org/obo/MONDO_0009974,familial hemophagocytic lymphohistiocytosis type 1 +11.0940622,PR:000003926,http://purl.obolibrary.org/obo/PR_000003926,"aldehyde dehydrogenase, dimeric NADP-preferring" +11.0940622,PR:000005904,http://purl.obolibrary.org/obo/PR_000005904,cone-rod homeobox protein +11.0940622,PR:000009317,http://purl.obolibrary.org/obo/PR_000009317,kinesin-1 heavy chain +11.0940622,PR:000010717,http://purl.obolibrary.org/obo/PR_000010717,metal regulatory transcription factor 1 +11.0940622,PR:000011033,http://purl.obolibrary.org/obo/PR_000011033,cytoplasmic protein NCK1 +11.0940622,PR:000013263,http://purl.obolibrary.org/obo/PR_000013263,"proline dehydrogenase 1, mitochondrial" +11.0940622,PR:000015432,http://purl.obolibrary.org/obo/PR_000015432,transcription factor SOX-6 +11.0940622,SO:0001277,http://purl.obolibrary.org/obo/SO_0001277,modified_uridine +11.0940622,UBERON:0007150,http://purl.obolibrary.org/obo/UBERON_0007150,superior thyroid artery +11.0940622,UBERON:0035769,http://purl.obolibrary.org/obo/UBERON_0035769,mesenteric ganglion +11.0969153,CHEBI:16284,http://purl.obolibrary.org/obo/CHEBI_16284,dATP +11.0969153,CHEBI:495505,http://purl.obolibrary.org/obo/CHEBI_495505,dATP(3-) +11.0969153,CHEBI:61404,http://purl.obolibrary.org/obo/CHEBI_61404,dATP(4-) +11.0969153,DRUGBANK:DB01239,http://purl.obolibrary.org/obo/DRUGBANK_DB01239,none +11.0969153,DRUGBANK:DB06614,http://purl.obolibrary.org/obo/DRUGBANK_DB06614,none +11.0969153,DRUGBANK:DB11551,http://purl.obolibrary.org/obo/DRUGBANK_DB11551,none +11.0969153,DRUGBANK:DB14480,http://purl.obolibrary.org/obo/DRUGBANK_DB14480,none +11.0969153,GO:0004498,http://purl.obolibrary.org/obo/GO_0004498,calcidiol 1-monooxygenase activity +11.0969153,GO:0047184,http://purl.obolibrary.org/obo/GO_0047184,1-acylglycerophosphocholine O-acyltransferase activity +11.0969153,GO:1903039,http://purl.obolibrary.org/obo/GO_1903039,positive regulation of leukocyte cell-cell adhesion +11.0969153,MONDO:0017717,http://purl.obolibrary.org/obo/MONDO_0017717,metabolic disease due to other fatty acid oxidation disorder +11.0969153,MONDO:0043267,http://purl.obolibrary.org/obo/MONDO_0043267,rheumatoid vasculitis +11.0969153,MONDO:0045003,http://purl.obolibrary.org/obo/MONDO_0045003,scrotal disease +11.0969153,NCBITaxon:12295,http://purl.obolibrary.org/obo/NCBITaxon_12295,none +11.0969153,PR:000004386,http://purl.obolibrary.org/obo/PR_000004386,argininosuccinate synthase +11.0969153,PR:000008449,http://purl.obolibrary.org/obo/PR_000008449,hyaluronan synthase 1 +11.0969153,PR:000015247,http://purl.obolibrary.org/obo/PR_000015247,sarcolipin +11.0969153,PR:000015605,http://purl.obolibrary.org/obo/PR_000015605,steroid receptor RNA activator 1 +11.0969153,PR:000028642,http://purl.obolibrary.org/obo/PR_000028642,none +11.0969153,PR:P52014,http://purl.obolibrary.org/obo/PR_P52014,none +11.0969153,UBERON:0008803,http://purl.obolibrary.org/obo/UBERON_0008803,skin of cheek +11.0997765,CHEBI:15422,http://purl.obolibrary.org/obo/CHEBI_15422,ATP +11.0997765,CHEBI:30616,http://purl.obolibrary.org/obo/CHEBI_30616,ATP(4-) +11.0997765,CHEBI:57299,http://purl.obolibrary.org/obo/CHEBI_57299,ATP(3-) +11.0997765,DRUGBANK:DB11633,http://purl.obolibrary.org/obo/DRUGBANK_DB11633,none +11.0997765,DRUGBANK:DB14478,http://purl.obolibrary.org/obo/DRUGBANK_DB14478,none +11.0997765,GO:0006177,http://purl.obolibrary.org/obo/GO_0006177,GMP biosynthetic process +11.0997765,GO:0009740,http://purl.obolibrary.org/obo/GO_0009740,gibberellic acid mediated signaling pathway +11.0997765,GO:0030658,http://purl.obolibrary.org/obo/GO_0030658,transport vesicle membrane +11.0997765,GO:0036336,http://purl.obolibrary.org/obo/GO_0036336,dendritic cell migration +11.0997765,GO:0061136,http://purl.obolibrary.org/obo/GO_0061136,regulation of proteasomal protein catabolic process +11.0997765,GO:1903050,http://purl.obolibrary.org/obo/GO_1903050,regulation of proteolysis involved in cellular protein catabolic process +11.0997765,MONDO:0011380,http://purl.obolibrary.org/obo/MONDO_0011380,leukoencephalopathy with vanishing white matter +11.0997765,PR:000001871,http://purl.obolibrary.org/obo/PR_000001871,junctional adhesion molecule A +11.0997765,PR:000003878,http://purl.obolibrary.org/obo/PR_000003878,adenylate kinase isoenzyme 1 +11.0997765,PR:000004321,http://purl.obolibrary.org/obo/PR_000004321,arylsulfatase A +11.0997765,PR:000004499,http://purl.obolibrary.org/obo/PR_000004499,serine/threonine-protein kinase ATR +11.0997765,PR:000006043,http://purl.obolibrary.org/obo/PR_000006043,cubilin +11.0997765,PR:000008945,http://purl.obolibrary.org/obo/PR_000008945,insulin-like growth factor 2 mRNA-binding protein 3 +11.0997765,PR:000009742,http://purl.obolibrary.org/obo/PR_000009742,L-lactate dehydrogenase B chain +11.0997765,PR:000015090,http://purl.obolibrary.org/obo/PR_000015090,UDP-galactose translocator +11.0997765,PR:000016950,http://purl.obolibrary.org/obo/PR_000016950,ubiquitin-like modifier-activating enzyme 1 +11.0997765,PR:000033548,http://purl.obolibrary.org/obo/PR_000033548,none +11.0997765,SO:0000665,http://purl.obolibrary.org/obo/SO_0000665,monocistronic_transcript +11.0997765,UBERON:0001413,http://purl.obolibrary.org/obo/UBERON_0001413,brachial vein +11.102646,CHEBI:25905,http://purl.obolibrary.org/obo/CHEBI_25905,peptide hormone +11.102646,DRUGBANK:DB00015,http://purl.obolibrary.org/obo/DRUGBANK_DB00015,none +11.102646,DRUGBANK:DB02955,http://purl.obolibrary.org/obo/DRUGBANK_DB02955,none +11.102646,DRUGBANK:DB12923,http://purl.obolibrary.org/obo/DRUGBANK_DB12923,none +11.102646,DRUGBANK:DB13661,http://purl.obolibrary.org/obo/DRUGBANK_DB13661,none +11.102646,GO:0000235,http://purl.obolibrary.org/obo/GO_0000235,astral microtubule +11.102646,GO:0004676,http://purl.obolibrary.org/obo/GO_0004676,3-phosphoinositide-dependent protein kinase activity +11.102646,GO:0033041,http://purl.obolibrary.org/obo/GO_0033041,sweet taste receptor activity +11.102646,GO:0036017,http://purl.obolibrary.org/obo/GO_0036017,response to erythropoietin +11.102646,MONDO:0001754,http://purl.obolibrary.org/obo/MONDO_0001754,eclampsia +11.102646,MONDO:0003603,http://purl.obolibrary.org/obo/MONDO_0003603,non-functioning pituitary gland neoplasm +11.102646,MONDO:0011014,http://purl.obolibrary.org/obo/MONDO_0011014,pleuropulmonary blastoma +11.102646,MONDO:0018988,http://purl.obolibrary.org/obo/MONDO_0018988,iridocorneal endothelial syndrome +11.102646,NCBITaxon:37516,http://purl.obolibrary.org/obo/NCBITaxon_37516,none +11.102646,NCBITaxon:6074,http://purl.obolibrary.org/obo/NCBITaxon_6074,none +11.102646,PR:000003781,http://purl.obolibrary.org/obo/PR_000003781,pro-adrenomedullin +11.102646,PR:000005584,http://purl.obolibrary.org/obo/PR_000005584,dual specificity protein kinase CLK1 +11.102646,PR:000009769,http://purl.obolibrary.org/obo/PR_000009769,placental protein 13-like +11.102646,PR:000013562,http://purl.obolibrary.org/obo/PR_000013562,dihydropteridine reductase +11.102646,PR:000029977,http://purl.obolibrary.org/obo/PR_000029977,"6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase" +11.102646,PR:P12630,http://purl.obolibrary.org/obo/PR_P12630,none +11.102646,PR:P54609,http://purl.obolibrary.org/obo/PR_P54609,none +11.102646,PR:Q2G0B1,http://purl.obolibrary.org/obo/PR_Q2G0B1,none +11.102646,UBERON:0003153,http://purl.obolibrary.org/obo/UBERON_0003153,head capsule +11.1055237,DRUGBANK:DB04106,http://purl.obolibrary.org/obo/DRUGBANK_DB04106,none +11.1055237,DRUGBANK:DB06138,http://purl.obolibrary.org/obo/DRUGBANK_DB06138,none +11.1055237,DRUGBANK:DB10525,http://purl.obolibrary.org/obo/DRUGBANK_DB10525,none +11.1055237,DRUGBANK:DB11549,http://purl.obolibrary.org/obo/DRUGBANK_DB11549,none +11.1055237,DRUGBANK:DB15645,http://purl.obolibrary.org/obo/DRUGBANK_DB15645,none +11.1055237,GO:0016815,http://purl.obolibrary.org/obo/GO_0016815,"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in nitriles" +11.1055237,GO:0018158,http://purl.obolibrary.org/obo/GO_0018158,protein oxidation +11.1055237,GO:0043631,http://purl.obolibrary.org/obo/GO_0043631,RNA polyadenylation +11.1055237,MONDO:0002899,http://purl.obolibrary.org/obo/MONDO_0002899,differentiating neuroblastoma +11.1055237,MONDO:0009126,http://purl.obolibrary.org/obo/MONDO_0009126,duodenal atresia +11.1055237,NCBITaxon:1511906,http://purl.obolibrary.org/obo/NCBITaxon_1511906,none +11.1055237,PR:000009772,http://purl.obolibrary.org/obo/PR_000009772,galectin-3-binding protein +11.1055237,PR:000015563,http://purl.obolibrary.org/obo/PR_000015563,signal peptide peptidase-like 2A +11.1055237,PR:P17555,http://purl.obolibrary.org/obo/PR_P17555,none +11.1055237,PR:P32770,http://purl.obolibrary.org/obo/PR_P32770,none +11.1055237,PR:P53566,http://purl.obolibrary.org/obo/PR_P53566,none +11.1055237,UBERON:0000423,http://purl.obolibrary.org/obo/UBERON_0000423,eccrine sweat gland +11.1084097,CHEBI:31635,http://purl.obolibrary.org/obo/CHEBI_31635,neomycin sulfate +11.1084097,CHEBI:47923,http://purl.obolibrary.org/obo/CHEBI_47923,tripeptide +11.1084097,CL:1000452,http://purl.obolibrary.org/obo/CL_1000452,parietal epithelial cell +11.1084097,DRUGBANK:DB00261,http://purl.obolibrary.org/obo/DRUGBANK_DB00261,none +11.1084097,DRUGBANK:DB02426,http://purl.obolibrary.org/obo/DRUGBANK_DB02426,none +11.1084097,DRUGBANK:DB03811,http://purl.obolibrary.org/obo/DRUGBANK_DB03811,none +11.1084097,DRUGBANK:DB05099,http://purl.obolibrary.org/obo/DRUGBANK_DB05099,none +11.1084097,DRUGBANK:DB09019,http://purl.obolibrary.org/obo/DRUGBANK_DB09019,none +11.1084097,DRUGBANK:DB12492,http://purl.obolibrary.org/obo/DRUGBANK_DB12492,none +11.1084097,MONDO:0044880,http://purl.obolibrary.org/obo/MONDO_0044880,cystic tumor of the pancreas +11.1084097,PR:000005163,http://purl.obolibrary.org/obo/PR_000005163,CD2-associated protein +11.1084097,PR:000007576,http://purl.obolibrary.org/obo/PR_000007576,dimethylaniline monooxygenase [N-oxide-forming] 3 +11.1084097,PR:000016148,http://purl.obolibrary.org/obo/PR_000016148,T-box transcription factor TBX2 +11.1084097,PR:000033494,http://purl.obolibrary.org/obo/PR_000033494,none +11.1084097,PR:P20848,http://purl.obolibrary.org/obo/PR_P20848,none +11.1084097,SO:0000551,http://purl.obolibrary.org/obo/SO_0000551,polyA_signal_sequence +11.1084097,UBERON:0002830,http://purl.obolibrary.org/obo/UBERON_0002830,anteroventral cochlear nucleus +11.1084097,UBERON:0009552,http://purl.obolibrary.org/obo/UBERON_0009552,distal segment of manual digit +11.1084097,UBERON:0010521,http://purl.obolibrary.org/obo/UBERON_0010521,electroreceptor organ +11.1113041,CL:1000191,http://purl.obolibrary.org/obo/CL_1000191,pillar cell +11.1113041,DRUGBANK:DB00409,http://purl.obolibrary.org/obo/DRUGBANK_DB00409,none +11.1113041,DRUGBANK:DB02333,http://purl.obolibrary.org/obo/DRUGBANK_DB02333,none +11.1113041,DRUGBANK:DB08969,http://purl.obolibrary.org/obo/DRUGBANK_DB08969,none +11.1113041,GO:0000257,http://purl.obolibrary.org/obo/GO_0000257,nitrilase activity +11.1113041,GO:0003887,http://purl.obolibrary.org/obo/GO_0003887,DNA-directed DNA polymerase activity +11.1113041,GO:0004451,http://purl.obolibrary.org/obo/GO_0004451,isocitrate lyase activity +11.1113041,GO:0015914,http://purl.obolibrary.org/obo/GO_0015914,phospholipid transport +11.1113041,GO:0019855,http://purl.obolibrary.org/obo/GO_0019855,calcium channel inhibitor activity +11.1113041,GO:0030672,http://purl.obolibrary.org/obo/GO_0030672,synaptic vesicle membrane +11.1113041,GO:0032434,http://purl.obolibrary.org/obo/GO_0032434,regulation of proteasomal ubiquitin-dependent protein catabolic process +11.1113041,GO:0050304,http://purl.obolibrary.org/obo/GO_0050304,nitrous-oxide reductase activity +11.1113041,GO:0099501,http://purl.obolibrary.org/obo/GO_0099501,exocytic vesicle membrane +11.1113041,MONDO:0002464,http://purl.obolibrary.org/obo/MONDO_0002464,lacrimal gland cancer +11.1113041,MONDO:0003319,http://purl.obolibrary.org/obo/MONDO_0003319,scrotum neoplasm +11.1113041,MONDO:0008713,http://purl.obolibrary.org/obo/MONDO_0008713,acrodermatitis enteropathica +11.1113041,MONDO:0015455,http://purl.obolibrary.org/obo/MONDO_0015455,gonococcal conjunctivitis +11.1113041,MONDO:0018013,http://purl.obolibrary.org/obo/MONDO_0018013,non-immunoglobulin-mediated membranoproliferative glomerulonephritis +11.1113041,PR:000001585,http://purl.obolibrary.org/obo/PR_000001585,galanin receptor type 1 +11.1113041,PR:000001936,http://purl.obolibrary.org/obo/PR_000001936,syndecan-3 +11.1113041,PR:000008513,http://purl.obolibrary.org/obo/PR_000008513,homocysteine-responsive endoplasmic reticulum-resident ubiquitin-like domain member 1 protein +11.1113041,PR:000008701,http://purl.obolibrary.org/obo/PR_000008701,homeobox protein Hox-B4 +11.1113041,PR:000009452,http://purl.obolibrary.org/obo/PR_000009452,"keratin, type I cytoskeletal 12" +11.1113041,PR:000009880,http://purl.obolibrary.org/obo/PR_000009880,"Lon protease, mitochondrial" +11.1113041,PR:000012317,http://purl.obolibrary.org/obo/PR_000012317,paired box protein Pax-4 +11.1113041,PR:Q9LXC9,http://purl.obolibrary.org/obo/PR_Q9LXC9,none +11.1113041,PR:Q9SS04,http://purl.obolibrary.org/obo/PR_Q9SS04,none +11.1113041,UBERON:0001129,http://purl.obolibrary.org/obo/UBERON_0001129,subscapularis muscle +11.1113041,UBERON:0004618,http://purl.obolibrary.org/obo/UBERON_0004618,lumbar vertebra 2 +11.1113041,UBERON:0006761,http://purl.obolibrary.org/obo/UBERON_0006761,corneo-scleral junction +11.1142068,CHEBI:26004,http://purl.obolibrary.org/obo/CHEBI_26004,phenylpropanoid +11.1142068,DRUGBANK:DB00347,http://purl.obolibrary.org/obo/DRUGBANK_DB00347,none +11.1142068,DRUGBANK:DB01070,http://purl.obolibrary.org/obo/DRUGBANK_DB01070,none +11.1142068,DRUGBANK:DB03603,http://purl.obolibrary.org/obo/DRUGBANK_DB03603,none +11.1142068,DRUGBANK:DB09068,http://purl.obolibrary.org/obo/DRUGBANK_DB09068,none +11.1142068,DRUGBANK:DB09265,http://purl.obolibrary.org/obo/DRUGBANK_DB09265,none +11.1142068,GO:0003886,http://purl.obolibrary.org/obo/GO_0003886,DNA (cytosine-5-)-methyltransferase activity +11.1142068,GO:0004830,http://purl.obolibrary.org/obo/GO_0004830,tryptophan-tRNA ligase activity +11.1142068,GO:2000831,http://purl.obolibrary.org/obo/GO_2000831,regulation of steroid hormone secretion +11.1142068,HP:0001025,http://purl.obolibrary.org/obo/HP_0001025,Urticaria +11.1142068,MONDO:0005333,http://purl.obolibrary.org/obo/MONDO_0005333,hyperthyroxinemia +11.1142068,MONDO:0006498,http://purl.obolibrary.org/obo/MONDO_0006498,adenomatous colon polyp +11.1142068,MONDO:0006506,http://purl.obolibrary.org/obo/MONDO_0006506,congenital nonspherocytic hemolytic anemia +11.1142068,MONDO:0018231,http://purl.obolibrary.org/obo/MONDO_0018231,"primary bone dysplasia with progressive ossification of skin, skeletal muscle, fascia, tendons and ligaments" +11.1142068,MONDO:0021718,http://purl.obolibrary.org/obo/MONDO_0021718,polyneuritis +11.1142068,PR:000002003,http://purl.obolibrary.org/obo/PR_000002003,G protein-activated inward rectifier potassium channel 2 +11.1142068,PR:000004035,http://purl.obolibrary.org/obo/PR_000004035,ankyrin-3 +11.1142068,PR:000006114,http://purl.obolibrary.org/obo/PR_000006114,none +11.1142068,PR:000006350,http://purl.obolibrary.org/obo/PR_000006350,dendrin +11.1142068,PR:000007315,http://purl.obolibrary.org/obo/PR_000007315,"fatty acid-binding protein, brain" +11.1142068,PR:000008211,http://purl.obolibrary.org/obo/PR_000008211,glutathione peroxidase 2 +11.1142068,PR:000012873,http://purl.obolibrary.org/obo/PR_000012873,serine/threonine-protein kinase PLK4 +11.1142068,PR:000014436,http://purl.obolibrary.org/obo/PR_000014436,Sal-like protein 1 +11.1142068,UBERON:0004854,http://purl.obolibrary.org/obo/UBERON_0004854,gastrointestinal system mesentery +11.1142068,UBERON:0005033,http://purl.obolibrary.org/obo/UBERON_0005033,mucosa of gallbladder +11.117118,CHEBI:49323,http://purl.obolibrary.org/obo/CHEBI_49323,contraceptive drug +11.117118,DRUGBANK:DB03913,http://purl.obolibrary.org/obo/DRUGBANK_DB03913,none +11.117118,DRUGBANK:DB13648,http://purl.obolibrary.org/obo/DRUGBANK_DB13648,none +11.117118,GO:0017127,http://purl.obolibrary.org/obo/GO_0017127,none +11.117118,GO:0018271,http://purl.obolibrary.org/obo/GO_0018271,biotin-protein ligase activity +11.117118,GO:0020020,http://purl.obolibrary.org/obo/GO_0020020,food vacuole +11.117118,GO:0033280,http://purl.obolibrary.org/obo/GO_0033280,response to vitamin D +11.117118,GO:0034285,http://purl.obolibrary.org/obo/GO_0034285,response to disaccharide +11.117118,GO:2001257,http://purl.obolibrary.org/obo/GO_2001257,regulation of cation channel activity +11.117118,MONDO:0000554,http://purl.obolibrary.org/obo/MONDO_0000554,endocervical adenocarcinoma +11.117118,MONDO:0000763,http://purl.obolibrary.org/obo/MONDO_0000763,epithelial and subepithelial corneal dystrophy +11.117118,MONDO:0003389,http://purl.obolibrary.org/obo/MONDO_0003389,epithelial-myoepithelial carcinoma +11.117118,MONDO:0003655,http://purl.obolibrary.org/obo/MONDO_0003655,cerebral lymphoma +11.117118,MONDO:0005536,http://purl.obolibrary.org/obo/MONDO_0005536,pancolitis +11.117118,MONDO:0018071,http://purl.obolibrary.org/obo/MONDO_0018071,trisomy 18 +11.117118,PR:000009140,http://purl.obolibrary.org/obo/PR_000009140,integrin beta-4 +11.117118,PR:000010444,http://purl.obolibrary.org/obo/PR_000010444,mitogen-activated protein kinase kinase kinase 21 +11.117118,PR:000016700,http://purl.obolibrary.org/obo/PR_000016700,transient receptor potential cation channel subfamily M member 4 +11.117118,PR:P04800,http://purl.obolibrary.org/obo/PR_P04800,none +11.117118,SO:0001954,http://purl.obolibrary.org/obo/SO_0001954,restriction_enzyme_region +11.117118,UBERON:0000961,http://purl.obolibrary.org/obo/UBERON_0000961,thoracic ganglion +11.117118,UBERON:0002472,http://purl.obolibrary.org/obo/UBERON_0002472,stylopod +11.117118,UBERON:0007418,http://purl.obolibrary.org/obo/UBERON_0007418,neural decussation +11.117118,UBERON:0007826,http://purl.obolibrary.org/obo/UBERON_0007826,peritoneal mesentery +11.117118,UBERON:0011141,http://purl.obolibrary.org/obo/UBERON_0011141,appendicular ossicle +11.1200377,CHEBI:13193,http://purl.obolibrary.org/obo/CHEBI_13193,hydrogen acceptor +11.1200377,CHEBI:6495,http://purl.obolibrary.org/obo/CHEBI_6495,lipoprotein +11.1200377,CHEBI:67268,http://purl.obolibrary.org/obo/CHEBI_67268,HIV-1 integrase inhibitor +11.1200377,CL:0000028,http://purl.obolibrary.org/obo/CL_0000028,CNS neuron (sensu Nematoda and Protostomia) +11.1200377,CL:0000673,http://purl.obolibrary.org/obo/CL_0000673,Kenyon cell +11.1200377,DRUGBANK:DB00992,http://purl.obolibrary.org/obo/DRUGBANK_DB00992,none +11.1200377,DRUGBANK:DB11128,http://purl.obolibrary.org/obo/DRUGBANK_DB11128,none +11.1200377,GO:0034117,http://purl.obolibrary.org/obo/GO_0034117,erythrocyte aggregation +11.1200377,GO:0050524,http://purl.obolibrary.org/obo/GO_0050524,coenzyme-B sulfoethylthiotransferase activity +11.1200377,MONDO:0005697,http://purl.obolibrary.org/obo/MONDO_0005697,cerebral toxoplasmosis +11.1200377,MONDO:0007863,http://purl.obolibrary.org/obo/MONDO_0007863,Kleine-Levin syndrome +11.1200377,MONDO:0009258,http://purl.obolibrary.org/obo/MONDO_0009258,classic galactosemia +11.1200377,MONDO:0021499,http://purl.obolibrary.org/obo/MONDO_0021499,benign neoplasm of cerebellum +11.1200377,MONDO:0045058,http://purl.obolibrary.org/obo/MONDO_0045058,ACTH-producing pituitary gland neoplasm +11.1200377,NCBITaxon:11985,http://purl.obolibrary.org/obo/NCBITaxon_11985,none +11.1200377,PR:000003439,http://purl.obolibrary.org/obo/PR_000003439,CUGBP Elav-like family member 1 +11.1200377,PR:000013712,http://purl.obolibrary.org/obo/PR_000013712,E3 SUMO-protein ligase RanBP2 +11.1200377,PR:000016670,http://purl.obolibrary.org/obo/PR_000016670,Cdc42-interacting protein 4 +11.1200377,PR:000029554,http://purl.obolibrary.org/obo/PR_000029554,none +11.1200377,PR:000037384,http://purl.obolibrary.org/obo/PR_000037384,none +11.1200377,PR:Q5A8T7,http://purl.obolibrary.org/obo/PR_Q5A8T7,none +11.1200377,UBERON:0002807,http://purl.obolibrary.org/obo/UBERON_0002807,right occipital lobe +11.1200377,UBERON:0004883,http://purl.obolibrary.org/obo/UBERON_0004883,lung mesenchyme +11.122966,CL:0002192,http://purl.obolibrary.org/obo/CL_0002192,metamyelocyte +11.122966,DRUGBANK:DB00985,http://purl.obolibrary.org/obo/DRUGBANK_DB00985,none +11.122966,GO:0015780,http://purl.obolibrary.org/obo/GO_0015780,nucleotide-sugar transmembrane transport +11.122966,GO:0045851,http://purl.obolibrary.org/obo/GO_0045851,pH reduction +11.122966,MONDO:0004403,http://purl.obolibrary.org/obo/MONDO_0004403,childhood precursor T-lymphoblastic lymphoma/leukemia +11.122966,MONDO:0017017,http://purl.obolibrary.org/obo/MONDO_0017017,primary interstitial lung disease specific to childhood due to alveolar vascular disorder +11.122966,MONDO:0019475,http://purl.obolibrary.org/obo/MONDO_0019475,subcutaneous panniculitis-like T-cell lymphoma +11.122966,MONDO:0020064,http://purl.obolibrary.org/obo/MONDO_0020064,pulmonary valve agenesis +11.122966,NCBITaxon:121225,http://purl.obolibrary.org/obo/NCBITaxon_121225,Pediculus humanus +11.122966,NCBITaxon:163722,http://purl.obolibrary.org/obo/NCBITaxon_163722,none +11.122966,NCBITaxon:3826,http://purl.obolibrary.org/obo/NCBITaxon_3826,none +11.122966,NCBITaxon:3827,http://purl.obolibrary.org/obo/NCBITaxon_3827,none +11.122966,PR:000005043,http://purl.obolibrary.org/obo/PR_000005043,histone-arginine methyltransferase CARM1 +11.122966,PR:000005191,http://purl.obolibrary.org/obo/PR_000005191,M-phase inducer phosphatase 1 +11.122966,PR:000011655,http://purl.obolibrary.org/obo/PR_000011655,olfactory receptor 10A4 +11.122966,PR:000012526,http://purl.obolibrary.org/obo/PR_000012526,proenkephalin-B +11.122966,PR:000016577,http://purl.obolibrary.org/obo/PR_000016577,triosephosphate isomerase +11.122966,PR:000022797,http://purl.obolibrary.org/obo/PR_000022797,none +11.122966,PR:000032354,http://purl.obolibrary.org/obo/PR_000032354,SUN domain-containing ossification factor +11.122966,PR:F4I507,http://purl.obolibrary.org/obo/PR_F4I507,none +11.122966,PR:Q98867,http://purl.obolibrary.org/obo/PR_Q98867,none +11.122966,UBERON:0000460,http://purl.obolibrary.org/obo/UBERON_0000460,major vestibular gland +11.122966,UBERON:0002392,http://purl.obolibrary.org/obo/UBERON_0002392,nasolacrimal duct +11.122966,UBERON:0004053,http://purl.obolibrary.org/obo/UBERON_0004053,external male genitalia +11.122966,UBERON:0010377,http://purl.obolibrary.org/obo/UBERON_0010377,mesenchyme from somatopleure +11.1259029,DRUGBANK:DB06207,http://purl.obolibrary.org/obo/DRUGBANK_DB06207,none +11.1259029,DRUGBANK:DB10845,http://purl.obolibrary.org/obo/DRUGBANK_DB10845,none +11.1259029,GO:0001939,http://purl.obolibrary.org/obo/GO_0001939,female pronucleus +11.1259029,GO:0004849,http://purl.obolibrary.org/obo/GO_0004849,uridine kinase activity +11.1259029,GO:0006221,http://purl.obolibrary.org/obo/GO_0006221,pyrimidine nucleotide biosynthetic process +11.1259029,GO:0009767,http://purl.obolibrary.org/obo/GO_0009767,photosynthetic electron transport chain +11.1259029,GO:0030220,http://purl.obolibrary.org/obo/GO_0030220,platelet formation +11.1259029,GO:0031294,http://purl.obolibrary.org/obo/GO_0031294,lymphocyte costimulation +11.1259029,GO:0048229,http://purl.obolibrary.org/obo/GO_0048229,gametophyte development +11.1259029,HP:0030681,http://purl.obolibrary.org/obo/HP_0030681,Abnormal morphology of myocardial trabeculae +11.1259029,HP:0030682,http://purl.obolibrary.org/obo/HP_0030682,Left ventricular noncompaction +11.1259029,HP:0031192,http://purl.obolibrary.org/obo/HP_0031192,Abnormal morphology of left ventricular trabeculae +11.1259029,MONDO:0009877,http://purl.obolibrary.org/obo/MONDO_0009877,Laron syndrome +11.1259029,MONDO:0020517,http://purl.obolibrary.org/obo/MONDO_0020517,eosinophilic granuloma +11.1259029,SO:0000194,http://purl.obolibrary.org/obo/SO_0000194,LINE_element +11.1259029,UBERON:0001157,http://purl.obolibrary.org/obo/UBERON_0001157,transverse colon +11.1288484,DRUGBANK:DB01271,http://purl.obolibrary.org/obo/DRUGBANK_DB01271,none +11.1288484,DRUGBANK:DB03750,http://purl.obolibrary.org/obo/DRUGBANK_DB03750,none +11.1288484,DRUGBANK:DB11393,http://purl.obolibrary.org/obo/DRUGBANK_DB11393,none +11.1288484,DRUGBANK:DB11482,http://purl.obolibrary.org/obo/DRUGBANK_DB11482,none +11.1288484,DRUGBANK:DB14298,http://purl.obolibrary.org/obo/DRUGBANK_DB14298,none +11.1288484,DRUGBANK:DB15907,http://purl.obolibrary.org/obo/DRUGBANK_DB15907,none +11.1288484,GO:0009435,http://purl.obolibrary.org/obo/GO_0009435,NAD biosynthetic process +11.1288484,GO:0022612,http://purl.obolibrary.org/obo/GO_0022612,gland morphogenesis +11.1288484,GO:0030864,http://purl.obolibrary.org/obo/GO_0030864,cortical actin cytoskeleton +11.1288484,GO:0042816,http://purl.obolibrary.org/obo/GO_0042816,vitamin B6 metabolic process +11.1288484,GO:1901476,http://purl.obolibrary.org/obo/GO_1901476,none +11.1288484,GO:1902275,http://purl.obolibrary.org/obo/GO_1902275,regulation of chromatin organization +11.1288484,HP:0001597,http://purl.obolibrary.org/obo/HP_0001597,Abnormality of the nail +11.1288484,MONDO:0000755,http://purl.obolibrary.org/obo/MONDO_0000755,ectopic pregnancy +11.1288484,MONDO:0003481,http://purl.obolibrary.org/obo/MONDO_0003481,dysgerminoma of ovary +11.1288484,MONDO:0003965,http://purl.obolibrary.org/obo/MONDO_0003965,Capgras syndrome +11.1288484,MONDO:0006108,http://purl.obolibrary.org/obo/MONDO_0006108,bile duct adenoma +11.1288484,MONDO:0009662,http://purl.obolibrary.org/obo/MONDO_0009662,mucopolysaccharidosis type 7 +11.1288484,MONDO:0009904,http://purl.obolibrary.org/obo/MONDO_0009904,Gitelman syndrome +11.1288484,MONDO:0010720,http://purl.obolibrary.org/obo/MONDO_0010720,partial androgen insensitivity syndrome +11.1288484,MONDO:0018020,http://purl.obolibrary.org/obo/MONDO_0018020,mercury poisoning +11.1288484,MONDO:0018360,http://purl.obolibrary.org/obo/MONDO_0018360,neonatal lupus erythematosus +11.1288484,MONDO:0040675,http://purl.obolibrary.org/obo/MONDO_0040675,myofibroblastoma +11.1288484,NCBITaxon:12663,http://purl.obolibrary.org/obo/NCBITaxon_12663,Feline coronavirus +11.1288484,PR:000005555,http://purl.obolibrary.org/obo/PR_000005555,claudin-7 +11.1288484,PR:000007129,http://purl.obolibrary.org/obo/PR_000007129,ephrin type-B receptor 1 +11.1288484,PR:000007223,http://purl.obolibrary.org/obo/PR_000007223,ETS translocation variant 1 +11.1288484,PR:000008561,http://purl.obolibrary.org/obo/PR_000008561,histidine triad nucleotide-binding protein 1 +11.1288484,PR:000010865,http://purl.obolibrary.org/obo/PR_000010865,myosin-Va +11.1288484,PR:000012321,http://purl.obolibrary.org/obo/PR_000012321,paired box protein Pax-9 +11.1288484,PR:000012887,http://purl.obolibrary.org/obo/PR_000012887,phospholipid scramblase 4 +11.1288484,PR:000013435,http://purl.obolibrary.org/obo/PR_000013435,inactive tyrosine-protein kinase 7 +11.1288484,PR:000013719,http://purl.obolibrary.org/obo/PR_000013719,Ras-related protein Rap-1A +11.1288484,PR:000015678,http://purl.obolibrary.org/obo/PR_000015678,suppressor of tumorigenicity 14 protein +11.1288484,PR:000022656,http://purl.obolibrary.org/obo/PR_000022656,none +11.1288484,PR:Q9IBD1,http://purl.obolibrary.org/obo/PR_Q9IBD1,none +11.1288484,SO:0000265,http://purl.obolibrary.org/obo/SO_0000265,lysyl_tRNA +11.1288484,UBERON:0001464,http://purl.obolibrary.org/obo/UBERON_0001464,hip +11.1288484,UBERON:0004012,http://purl.obolibrary.org/obo/UBERON_0004012,golgi tendon organ +11.1288484,UBERON:0010329,http://purl.obolibrary.org/obo/UBERON_0010329,paired limb/fin bud mesenchyme +11.1288484,UBERON:0016446,http://purl.obolibrary.org/obo/UBERON_0016446,hair of head +11.1318026,DRUGBANK:DB01255,http://purl.obolibrary.org/obo/DRUGBANK_DB01255,none +11.1318026,DRUGBANK:DB09050,http://purl.obolibrary.org/obo/DRUGBANK_DB09050,none +11.1318026,DRUGBANK:DB13270,http://purl.obolibrary.org/obo/DRUGBANK_DB13270,none +11.1318026,DRUGBANK:DB14094,http://purl.obolibrary.org/obo/DRUGBANK_DB14094,none +11.1318026,GO:0005681,http://purl.obolibrary.org/obo/GO_0005681,spliceosomal complex +11.1318026,GO:0017053,http://purl.obolibrary.org/obo/GO_0017053,transcription repressor complex +11.1318026,GO:0034112,http://purl.obolibrary.org/obo/GO_0034112,positive regulation of homotypic cell-cell adhesion +11.1318026,GO:0043470,http://purl.obolibrary.org/obo/GO_0043470,regulation of carbohydrate catabolic process +11.1318026,GO:0043471,http://purl.obolibrary.org/obo/GO_0043471,regulation of cellular carbohydrate catabolic process +11.1318026,MONDO:0003403,http://purl.obolibrary.org/obo/MONDO_0003403,testicular non-seminomatous germ cell cancer +11.1318026,MONDO:0003633,http://purl.obolibrary.org/obo/MONDO_0003633,malignant mesenchymoma +11.1318026,MONDO:0006231,http://purl.obolibrary.org/obo/MONDO_0006231,gastrointestinal hamartoma +11.1318026,MONDO:0100283,http://purl.obolibrary.org/obo/MONDO_0100283,overgrowth syndrome and/or cerebral malformations due to abnormalities in MTOR pathway genes +11.1318026,PR:000000119,http://purl.obolibrary.org/obo/PR_000000119,retinoblastoma-like protein 2 +11.1318026,PR:000001867,http://purl.obolibrary.org/obo/PR_000001867,interleukin-5 receptor subunit alpha +11.1318026,PR:000002397,http://purl.obolibrary.org/obo/PR_000002397,caspase-10 isoform 2 +11.1318026,PR:000004396,http://purl.obolibrary.org/obo/PR_000004396,arginyl-tRNA--protein transferase 1 +11.1318026,PR:000008208,http://purl.obolibrary.org/obo/PR_000008208,alanine aminotransferase 1 +11.1318026,PR:000010127,http://purl.obolibrary.org/obo/PR_000010127,dual specificity mitogen-activated protein kinase kinase 5 +11.1318026,PR:000017355,http://purl.obolibrary.org/obo/PR_000017355,visual system homeobox 2 +11.1318026,PR:000022855,http://purl.obolibrary.org/obo/PR_000022855,none +11.1318026,PR:Q17758,http://purl.obolibrary.org/obo/PR_Q17758,none +11.1318026,PR:Q8UUW7,http://purl.obolibrary.org/obo/PR_Q8UUW7,none +11.1318026,UBERON:0006868,http://purl.obolibrary.org/obo/UBERON_0006868,seminal fluid secreting gland +11.1347655,CHEBI:35476,http://purl.obolibrary.org/obo/CHEBI_35476,antipsychotic agent +11.1347655,CHEBI:51867,http://purl.obolibrary.org/obo/CHEBI_51867,methyl ketone +11.1347655,DRUGBANK:DB04464,http://purl.obolibrary.org/obo/DRUGBANK_DB04464,none +11.1347655,DRUGBANK:DB09299,http://purl.obolibrary.org/obo/DRUGBANK_DB09299,none +11.1347655,DRUGBANK:DB16203,http://purl.obolibrary.org/obo/DRUGBANK_DB16203,none +11.1347655,DRUGBANK:DB16292,http://purl.obolibrary.org/obo/DRUGBANK_DB16292,none +11.1347655,GO:0000421,http://purl.obolibrary.org/obo/GO_0000421,autophagosome membrane +11.1347655,GO:0019290,http://purl.obolibrary.org/obo/GO_0019290,siderophore biosynthetic process +11.1347655,GO:0042285,http://purl.obolibrary.org/obo/GO_0042285,xylosyltransferase activity +11.1347655,GO:0043696,http://purl.obolibrary.org/obo/GO_0043696,dedifferentiation +11.1347655,GO:0051184,http://purl.obolibrary.org/obo/GO_0051184,none +11.1347655,MONDO:0023035,http://purl.obolibrary.org/obo/MONDO_0023035,Eagle syndrome +11.1347655,MONDO:0024415,http://purl.obolibrary.org/obo/MONDO_0024415,hemorrhagic duodenitis +11.1347655,NCBITaxon:31604,http://purl.obolibrary.org/obo/NCBITaxon_31604,Small ruminant morbillivirus +11.1347655,PR:000001237,http://purl.obolibrary.org/obo/PR_000001237,melanocortin receptor 4 +11.1347655,PR:000001864,http://purl.obolibrary.org/obo/PR_000001864,interferon-induced transmembrane protein +11.1347655,PR:000007636,http://purl.obolibrary.org/obo/PR_000007636,forkhead box protein N1 +11.1347655,PR:000008176,http://purl.obolibrary.org/obo/PR_000008176,glycosylphosphatidylinositol-anchored high density lipoprotein-binding protein 1 +11.1347655,PR:000008989,http://purl.obolibrary.org/obo/PR_000008989,interleukin-1 family member 7 +11.1347655,PR:000009337,http://purl.obolibrary.org/obo/PR_000009337,killer cell immunoglobulin-like receptor 3DL1 +11.1347655,PR:000012760,http://purl.obolibrary.org/obo/PR_000012760,pituitary homeobox 1 +11.1347655,PR:000017466,http://purl.obolibrary.org/obo/PR_000017466,WW domain-containing transcription regulator protein 1 +11.1347655,PR:000025583,http://purl.obolibrary.org/obo/PR_000025583,beta-amyloid protein 42 +11.1347655,PR:000029072,http://purl.obolibrary.org/obo/PR_000029072,none +11.1347655,PR:P54670,http://purl.obolibrary.org/obo/PR_P54670,none +11.1347655,PR:Q09146,http://purl.obolibrary.org/obo/PR_Q09146,none +11.1347655,UBERON:0002022,http://purl.obolibrary.org/obo/UBERON_0002022,insula +11.1347655,UBERON:0012082,http://purl.obolibrary.org/obo/UBERON_0012082,bronchial lumen +11.1377373,CHEBI:26822,http://purl.obolibrary.org/obo/CHEBI_26822,sulfide +11.1377373,CHEBI:83824,http://purl.obolibrary.org/obo/CHEBI_83824,L-cysteine derivative +11.1377373,DRUGBANK:DB04744,http://purl.obolibrary.org/obo/DRUGBANK_DB04744,none +11.1377373,DRUGBANK:DB13195,http://purl.obolibrary.org/obo/DRUGBANK_DB13195,none +11.1377373,GO:0004774,http://purl.obolibrary.org/obo/GO_0004774,succinate-CoA ligase activity +11.1377373,GO:0016966,http://purl.obolibrary.org/obo/GO_0016966,nitric oxide reductase activity +11.1377373,GO:0020007,http://purl.obolibrary.org/obo/GO_0020007,apical complex +11.1377373,MONDO:0002272,http://purl.obolibrary.org/obo/MONDO_0002272,polyclonal hypergammaglobulinemia +11.1377373,MONDO:0006817,http://purl.obolibrary.org/obo/MONDO_0006817,juxtacortical osteosarcoma +11.1377373,MONDO:0020135,http://purl.obolibrary.org/obo/MONDO_0020135,pontocerebellar hypoplasia +11.1377373,MONDO:0021132,http://purl.obolibrary.org/obo/MONDO_0021132,tertiary hyperparathyroidism +11.1377373,MONDO:0021487,http://purl.obolibrary.org/obo/MONDO_0021487,benign neoplasm of choroid +11.1377373,PR:000004413,http://purl.obolibrary.org/obo/PR_000004413,ubiquitin-like-conjugating enzyme ATG3 +11.1377373,PR:000005843,http://purl.obolibrary.org/obo/PR_000005843,cellular retinoic acid-binding protein 1 +11.1377373,PR:000013695,http://purl.obolibrary.org/obo/PR_000013695,Ras-related protein Ral-A +11.1377373,PR:000013706,http://purl.obolibrary.org/obo/PR_000013706,receptor activity-modifying protein 2 +11.1377373,PR:000016584,http://purl.obolibrary.org/obo/PR_000016584,thyroid peroxidase +11.1377373,PR:000029361,http://purl.obolibrary.org/obo/PR_000029361,"ATP-dependent Clp protease proteolytic subunit, mitochondrial" +11.1377373,PR:P22217,http://purl.obolibrary.org/obo/PR_P22217,none +11.1377373,PR:P34164,http://purl.obolibrary.org/obo/PR_P34164,none +11.1377373,PR:P56772,http://purl.obolibrary.org/obo/PR_P56772,none +11.1377373,UBERON:0007829,http://purl.obolibrary.org/obo/UBERON_0007829,pectoral girdle bone +11.1377373,UBERON:0010328,http://purl.obolibrary.org/obo/UBERON_0010328,limb bud mesenchyme +11.1377373,UBERON:0013725,http://purl.obolibrary.org/obo/UBERON_0013725,anterior talofibular ligament +11.1407179,CHEBI:51452,http://purl.obolibrary.org/obo/CHEBI_51452,endothelin A receptor antagonist +11.1407179,DRUGBANK:DB04620,http://purl.obolibrary.org/obo/DRUGBANK_DB04620,none +11.1407179,DRUGBANK:DB06711,http://purl.obolibrary.org/obo/DRUGBANK_DB06711,none +11.1407179,DRUGBANK:DB12905,http://purl.obolibrary.org/obo/DRUGBANK_DB12905,none +11.1407179,GO:0006266,http://purl.obolibrary.org/obo/GO_0006266,DNA ligation +11.1407179,GO:0006925,http://purl.obolibrary.org/obo/GO_0006925,inflammatory cell apoptotic process +11.1407179,GO:0008285,http://purl.obolibrary.org/obo/GO_0008285,negative regulation of cell population proliferation +11.1407179,GO:0009395,http://purl.obolibrary.org/obo/GO_0009395,phospholipid catabolic process +11.1407179,GO:0015042,http://purl.obolibrary.org/obo/GO_0015042,trypanothione-disulfide reductase activity +11.1407179,GO:0015067,http://purl.obolibrary.org/obo/GO_0015067,amidinotransferase activity +11.1407179,GO:0016672,http://purl.obolibrary.org/obo/GO_0016672,"oxidoreductase activity, acting on a sulfur group of donors, quinone or similar compound as acceptor" +11.1407179,GO:0016901,http://purl.obolibrary.org/obo/GO_0016901,"oxidoreductase activity, acting on the CH-OH group of donors, quinone or similar compound as acceptor" +11.1407179,GO:0045122,http://purl.obolibrary.org/obo/GO_0045122,aflatoxin biosynthetic process +11.1407179,GO:0050870,http://purl.obolibrary.org/obo/GO_0050870,positive regulation of T cell activation +11.1407179,GO:1902422,http://purl.obolibrary.org/obo/GO_1902422,hydrogen biosynthetic process +11.1407179,GO:1904550,http://purl.obolibrary.org/obo/GO_1904550,response to arachidonic acid +11.1407179,HP:0012125,http://purl.obolibrary.org/obo/HP_0012125,Prostate cancer +11.1407179,HP:0012835,http://purl.obolibrary.org/obo/HP_0012835,Left +11.1407179,MONDO:0000903,http://purl.obolibrary.org/obo/MONDO_0000903,myoclonus-dystonia syndrome +11.1407179,MONDO:0004628,http://purl.obolibrary.org/obo/MONDO_0004628,gastroduodenitis +11.1407179,MONDO:0005672,http://purl.obolibrary.org/obo/MONDO_0005672,blastomycosis +11.1407179,MONDO:0020102,http://purl.obolibrary.org/obo/MONDO_0020102,hereditary stomatocytosis +11.1407179,NCBITaxon:195054,http://purl.obolibrary.org/obo/NCBITaxon_195054,none +11.1407179,PR:000002063,http://purl.obolibrary.org/obo/PR_000002063,macrophage-stimulating protein receptor +11.1407179,PR:000005815,http://purl.obolibrary.org/obo/PR_000005815,carboxypeptidase N subunit 2 +11.1407179,PR:000010295,http://purl.obolibrary.org/obo/PR_000010295,mediator of RNA polymerase II transcription subunit 23 +11.1407179,PR:000015224,http://purl.obolibrary.org/obo/PR_000015224,solute carrier organic anion transporter family member 1B3 +11.1407179,PR:000031316,http://purl.obolibrary.org/obo/PR_000031316,NADH-ubiquinone oxidoreductase chain 1 +11.1407179,PR:O22446,http://purl.obolibrary.org/obo/PR_O22446,none +11.1407179,UBERON:0012076,http://purl.obolibrary.org/obo/UBERON_0012076,tibiotalar joint +11.1437075,CHEBI:70782,http://purl.obolibrary.org/obo/CHEBI_70782,PPARalpha agonist +11.1437075,CL:0000547,http://purl.obolibrary.org/obo/CL_0000547,proerythroblast +11.1437075,DRUGBANK:DB01057,http://purl.obolibrary.org/obo/DRUGBANK_DB01057,none +11.1437075,DRUGBANK:DB06800,http://purl.obolibrary.org/obo/DRUGBANK_DB06800,none +11.1437075,DRUGBANK:DB11338,http://purl.obolibrary.org/obo/DRUGBANK_DB11338,none +11.1437075,DRUGBANK:DB12313,http://purl.obolibrary.org/obo/DRUGBANK_DB12313,none +11.1437075,DRUGBANK:DB16005,http://purl.obolibrary.org/obo/DRUGBANK_DB16005,none +11.1437075,GO:0010340,http://purl.obolibrary.org/obo/GO_0010340,carboxyl-O-methyltransferase activity +11.1437075,GO:0016143,http://purl.obolibrary.org/obo/GO_0016143,S-glycoside metabolic process +11.1437075,GO:0016417,http://purl.obolibrary.org/obo/GO_0016417,S-acyltransferase activity +11.1437075,GO:0032300,http://purl.obolibrary.org/obo/GO_0032300,mismatch repair complex +11.1437075,GO:0042726,http://purl.obolibrary.org/obo/GO_0042726,flavin-containing compound metabolic process +11.1437075,GO:0070670,http://purl.obolibrary.org/obo/GO_0070670,response to interleukin-4 +11.1437075,HP:0000651,http://purl.obolibrary.org/obo/HP_0000651,Diplopia +11.1437075,HP:0003510,http://purl.obolibrary.org/obo/HP_0003510,Severe short stature +11.1437075,HP:0011514,http://purl.obolibrary.org/obo/HP_0011514,Abnormality of binocular vision +11.1437075,PR:000003580,http://purl.obolibrary.org/obo/PR_000003580,ABI gene family member 3 +11.1437075,PR:000006107,http://purl.obolibrary.org/obo/PR_000006107,cytochrome P450 26A1 +11.1437075,PR:000010836,http://purl.obolibrary.org/obo/PR_000010836,myosin light chain 4 +11.1437075,PR:000013881,http://purl.obolibrary.org/obo/PR_000013881,GTP-binding protein REM 1 +11.1437075,PR:000014898,http://purl.obolibrary.org/obo/PR_000014898,homeobox protein SIX3 +11.1437075,PR:000024083,http://purl.obolibrary.org/obo/PR_000024083,none +11.1437075,SO:0001188,http://purl.obolibrary.org/obo/SO_0001188,LNA +11.1437075,UBERON:0003357,http://purl.obolibrary.org/obo/UBERON_0003357,epithelium of tongue +11.1437075,UBERON:0003479,http://purl.obolibrary.org/obo/UBERON_0003479,thoracic cavity vein +11.1437075,UBERON:0004450,http://purl.obolibrary.org/obo/UBERON_0004450,gastric vein +11.146706,CHEBI:23636,http://purl.obolibrary.org/obo/CHEBI_23636,deoxyribonucleoside +11.146706,CL:0000901,http://purl.obolibrary.org/obo/CL_0000901,Tr1 cell +11.146706,DRUGBANK:DB03172,http://purl.obolibrary.org/obo/DRUGBANK_DB03172,none +11.146706,DRUGBANK:DB13153,http://purl.obolibrary.org/obo/DRUGBANK_DB13153,none +11.146706,GO:0004787,http://purl.obolibrary.org/obo/GO_0004787,thiamine-diphosphatase activity +11.146706,GO:0015768,http://purl.obolibrary.org/obo/GO_0015768,maltose transport +11.146706,GO:0019760,http://purl.obolibrary.org/obo/GO_0019760,glucosinolate metabolic process +11.146706,GO:0030850,http://purl.obolibrary.org/obo/GO_0030850,prostate gland development +11.146706,GO:0050884,http://purl.obolibrary.org/obo/GO_0050884,neuromuscular process controlling posture +11.146706,GO:0070662,http://purl.obolibrary.org/obo/GO_0070662,mast cell proliferation +11.146706,MONDO:0000694,http://purl.obolibrary.org/obo/MONDO_0000694,seasonal affective disorder +11.146706,MONDO:0002460,http://purl.obolibrary.org/obo/MONDO_0002460,lacrimal system cancer +11.146706,MONDO:0016718,http://purl.obolibrary.org/obo/MONDO_0016718,choroid plexus carcinoma +11.146706,MONDO:0021542,http://purl.obolibrary.org/obo/MONDO_0021542,hemangioma of choroid +11.146706,NCBITaxon:10372,http://purl.obolibrary.org/obo/NCBITaxon_10372,Human betaherpesvirus 7 +11.146706,PR:000001806,http://purl.obolibrary.org/obo/PR_000001806,C-type lectin domain family 6 member A +11.146706,PR:000005196,http://purl.obolibrary.org/obo/PR_000005196,cyclin-dependent kinase 11B +11.146706,PR:000007062,http://purl.obolibrary.org/obo/PR_000007062,epithelial membrane protein 1 +11.146706,PR:000008016,http://purl.obolibrary.org/obo/PR_000008016,eukaryotic-type beta-galactosidase +11.146706,PR:000009874,http://purl.obolibrary.org/obo/PR_000009874,leucyl-cystinyl aminopeptidase +11.146706,PR:000013343,http://purl.obolibrary.org/obo/PR_000013343,PH and SEC7 domain-containing protein 4 +11.146706,PR:000014404,http://purl.obolibrary.org/obo/PR_000014404,protein S100-A11 +11.146706,PR:000015844,http://purl.obolibrary.org/obo/PR_000015844,histone-lysine N-methyltransferase SUV39H1 +11.146706,PR:000029539,http://purl.obolibrary.org/obo/PR_000029539,lymphoid-specific helicase +11.146706,SO:0001207,http://purl.obolibrary.org/obo/SO_0001207,T7_RNA_Polymerase_Promoter +11.146706,UBERON:0002295,http://purl.obolibrary.org/obo/UBERON_0002295,scala media +11.146706,UBERON:0004087,http://purl.obolibrary.org/obo/UBERON_0004087,vena cava +11.1497135,CHEBI:48675,http://purl.obolibrary.org/obo/CHEBI_48675,antifibrinolytic drug +11.1497135,CHEBI:48676,http://purl.obolibrary.org/obo/CHEBI_48676,fibrin modulating drug +11.1497135,DRUGBANK:DB06215,http://purl.obolibrary.org/obo/DRUGBANK_DB06215,none +11.1497135,GO:0001787,http://purl.obolibrary.org/obo/GO_0001787,natural killer cell proliferation +11.1497135,GO:0035102,http://purl.obolibrary.org/obo/GO_0035102,PRC1 complex +11.1497135,GO:0047294,http://purl.obolibrary.org/obo/GO_0047294,phosphoglycerol geranylgeranyltransferase activity +11.1497135,MONDO:0002675,http://purl.obolibrary.org/obo/MONDO_0002675,neurofibrosarcoma +11.1497135,MONDO:0005221,http://purl.obolibrary.org/obo/MONDO_0005221,renal pelvis urothelial carcinoma +11.1497135,MONDO:0005962,http://purl.obolibrary.org/obo/MONDO_0005962,skeletal tuberculosis +11.1497135,MONDO:0015529,http://purl.obolibrary.org/obo/MONDO_0015529,paroxysmal Hemicrania +11.1497135,MONDO:0015708,http://purl.obolibrary.org/obo/MONDO_0015708,immuno-osseous dysplasia +11.1497135,MONDO:0017421,http://purl.obolibrary.org/obo/MONDO_0017421,non-syndromic terminal limb defects +11.1497135,PR:000005539,http://purl.obolibrary.org/obo/PR_000005539,claudin-11 +11.1497135,PR:000013361,http://purl.obolibrary.org/obo/PR_000013361,proteasome subunit alpha type-2 +11.1497135,PR:000015917,http://purl.obolibrary.org/obo/PR_000015917,E3 ubiquitin-protein ligase synoviolin +11.1497135,PR:000044407,http://purl.obolibrary.org/obo/PR_000044407,none +11.1527301,CHEBI:33566,http://purl.obolibrary.org/obo/CHEBI_33566,catechols +11.1527301,CL:0005026,http://purl.obolibrary.org/obo/CL_0005026,hepatoblast +11.1527301,DRUGBANK:DB00308,http://purl.obolibrary.org/obo/DRUGBANK_DB00308,none +11.1527301,DRUGBANK:DB04626,http://purl.obolibrary.org/obo/DRUGBANK_DB04626,none +11.1527301,GO:0006704,http://purl.obolibrary.org/obo/GO_0006704,glucocorticoid biosynthetic process +11.1527301,GO:0008974,http://purl.obolibrary.org/obo/GO_0008974,phosphoribulokinase activity +11.1527301,GO:0010573,http://purl.obolibrary.org/obo/GO_0010573,vascular endothelial growth factor production +11.1527301,GO:0015851,http://purl.obolibrary.org/obo/GO_0015851,nucleobase transport +11.1527301,GO:0044094,http://purl.obolibrary.org/obo/GO_0044094,host cell nuclear part +11.1527301,GO:0060021,http://purl.obolibrary.org/obo/GO_0060021,roof of mouth development +11.1527301,GO:0097409,http://purl.obolibrary.org/obo/GO_0097409,glial cytoplasmic inclusion +11.1527301,GO:0099601,http://purl.obolibrary.org/obo/GO_0099601,regulation of neurotransmitter receptor activity +11.1527301,GO:1901503,http://purl.obolibrary.org/obo/GO_1901503,ether biosynthetic process +11.1527301,HP:0031652,http://purl.obolibrary.org/obo/HP_0031652,Abnormal aortic valve physiology +11.1527301,MONDO:0002489,http://purl.obolibrary.org/obo/MONDO_0002489,malignant breast phyllodes tumor +11.1527301,MONDO:0006238,http://purl.obolibrary.org/obo/MONDO_0006238,growth hormone-producing pituitary gland adenoma +11.1527301,MONDO:0015062,http://purl.obolibrary.org/obo/MONDO_0015062,"gastric neuroendocrine tumor, well differentiated, low or intermediate grade" +11.1527301,PR:000001358,http://purl.obolibrary.org/obo/PR_000001358,intercellular adhesion molecule 2 +11.1527301,PR:000005805,http://purl.obolibrary.org/obo/PR_000005805,cytoplasmic polyadenylation element-binding protein 1 +11.1527301,PR:000007027,http://purl.obolibrary.org/obo/PR_000007027,ETS domain-containing protein Elk-4 +11.1527301,PR:000008222,http://purl.obolibrary.org/obo/PR_000008222,growth factor receptor-bound protein 10 +11.1527301,PR:000013838,http://purl.obolibrary.org/obo/PR_000013838,reticulocalbin-1 +11.1527301,PR:000015705,http://purl.obolibrary.org/obo/PR_000015705,cohesin subunit SA-2 +11.1527301,PR:000017865,http://purl.obolibrary.org/obo/PR_000017865,zinc finger protein 395 +11.1527301,PR:Q38861,http://purl.obolibrary.org/obo/PR_Q38861,none +11.1527301,SO:0001963,http://purl.obolibrary.org/obo/SO_0001963,modified_cytosine +11.1527301,UBERON:0001353,http://purl.obolibrary.org/obo/UBERON_0001353,anal region +11.1557558,DRUGBANK:DB01227,http://purl.obolibrary.org/obo/DRUGBANK_DB01227,none +11.1557558,DRUGBANK:DB01410,http://purl.obolibrary.org/obo/DRUGBANK_DB01410,none +11.1557558,DRUGBANK:DB05400,http://purl.obolibrary.org/obo/DRUGBANK_DB05400,none +11.1557558,DRUGBANK:DB11061,http://purl.obolibrary.org/obo/DRUGBANK_DB11061,none +11.1557558,DRUGBANK:DB14110,http://purl.obolibrary.org/obo/DRUGBANK_DB14110,none +11.1557558,GO:0015886,http://purl.obolibrary.org/obo/GO_0015886,heme transport +11.1557558,GO:0015927,http://purl.obolibrary.org/obo/GO_0015927,trehalase activity +11.1557558,GO:0045839,http://purl.obolibrary.org/obo/GO_0045839,negative regulation of mitotic nuclear division +11.1557558,GO:0048066,http://purl.obolibrary.org/obo/GO_0048066,developmental pigmentation +11.1557558,GO:0072338,http://purl.obolibrary.org/obo/GO_0072338,cellular lactam metabolic process +11.1557558,GO:1900449,http://purl.obolibrary.org/obo/GO_1900449,regulation of glutamate receptor signaling pathway +11.1557558,GO:2000310,http://purl.obolibrary.org/obo/GO_2000310,regulation of NMDA receptor activity +11.1557558,HP:0001650,http://purl.obolibrary.org/obo/HP_0001650,Aortic valve stenosis +11.1557558,MONDO:0006965,http://purl.obolibrary.org/obo/MONDO_0006965,secondary hypertrophic osteoarthropathy +11.1557558,MONDO:0043349,http://purl.obolibrary.org/obo/MONDO_0043349,intravascular papillary endothelial hyperplasia +11.1557558,NCBITaxon:11138,http://purl.obolibrary.org/obo/NCBITaxon_11138,none +11.1557558,NCBITaxon:1653,http://purl.obolibrary.org/obo/NCBITaxon_1653,Corynebacteriaceae +11.1557558,PR:000001893,http://purl.obolibrary.org/obo/PR_000001893,natural cytotoxicity triggering receptor 1 +11.1557558,PR:000006296,http://purl.obolibrary.org/obo/PR_000006296,drebrin +11.1557558,PR:000006707,http://purl.obolibrary.org/obo/PR_000006707,desmoglein-2 +11.1557558,PR:000013874,http://purl.obolibrary.org/obo/PR_000013874,proto-oncogene c-Rel +11.1557558,PR:000014659,http://purl.obolibrary.org/obo/PR_000014659,septin-7 +11.1557558,PR:000015862,http://purl.obolibrary.org/obo/PR_000015862,synaptonemal complex protein 1 +11.1557558,PR:000016322,http://purl.obolibrary.org/obo/PR_000016322,thyroid hormone-inducible hepatic protein +11.1557558,PR:000049986,http://purl.obolibrary.org/obo/PR_000049986,GABA(B) receptor protein +11.1557558,PR:Q90854,http://purl.obolibrary.org/obo/PR_Q90854,none +11.1557558,PR:Q9SLH7,http://purl.obolibrary.org/obo/PR_Q9SLH7,none +11.1557558,UBERON:0000453,http://purl.obolibrary.org/obo/UBERON_0000453,decidua basalis +11.1587907,CHEBI:51039,http://purl.obolibrary.org/obo/CHEBI_51039,dopamine uptake inhibitor +11.1587907,DRUGBANK:DB08946,http://purl.obolibrary.org/obo/DRUGBANK_DB08946,none +11.1587907,DRUGBANK:DB09015,http://purl.obolibrary.org/obo/DRUGBANK_DB09015,none +11.1587907,DRUGBANK:DB09052,http://purl.obolibrary.org/obo/DRUGBANK_DB09052,none +11.1587907,DRUGBANK:DB09063,http://purl.obolibrary.org/obo/DRUGBANK_DB09063,none +11.1587907,DRUGBANK:DB14062,http://purl.obolibrary.org/obo/DRUGBANK_DB14062,none +11.1587907,DRUGBANK:DB14159,http://purl.obolibrary.org/obo/DRUGBANK_DB14159,none +11.1587907,GO:0033047,http://purl.obolibrary.org/obo/GO_0033047,regulation of mitotic sister chromatid segregation +11.1587907,GO:0044243,http://purl.obolibrary.org/obo/GO_0044243,none +11.1587907,GO:1901162,http://purl.obolibrary.org/obo/GO_1901162,primary amino compound biosynthetic process +11.1587907,GO:1902930,http://purl.obolibrary.org/obo/GO_1902930,regulation of alcohol biosynthetic process +11.1587907,GO:2001251,http://purl.obolibrary.org/obo/GO_2001251,negative regulation of chromosome organization +11.1587907,HP:0031983,http://purl.obolibrary.org/obo/HP_0031983,Abnormal pulmonary thoracic imaging finding +11.1587907,MONDO:0015140,http://purl.obolibrary.org/obo/MONDO_0015140,early-onset autosomal dominant Alzheimer disease +11.1587907,MONDO:0044778,http://purl.obolibrary.org/obo/MONDO_0044778,nodular lymphocyte predominant Hodgkin lymphoma +11.1587907,PR:000004115,http://purl.obolibrary.org/obo/PR_000004115,amyloid-beta A4 precursor protein-binding family A member 1 +11.1587907,PR:000008982,http://purl.obolibrary.org/obo/PR_000008982,interleukin-17 receptor B +11.1587907,PR:000010998,http://purl.obolibrary.org/obo/PR_000010998,N-alpha-acetyltransferase 50 +11.1587907,PR:000012813,http://purl.obolibrary.org/obo/PR_000012813,secretory phospholipase A2 receptor +11.1587907,PR:000015717,http://purl.obolibrary.org/obo/PR_000015717,StAR-related lipid transfer protein 13 +11.1587907,PR:000023629,http://purl.obolibrary.org/obo/PR_000023629,none +11.1587907,PR:000050002,http://purl.obolibrary.org/obo/PR_000050002,melatonin receptor +11.1587907,PR:P18963,http://purl.obolibrary.org/obo/PR_P18963,none +11.1587907,PR:P27140,http://purl.obolibrary.org/obo/PR_P27140,none +11.1618349,CHEBI:33576,http://purl.obolibrary.org/obo/CHEBI_33576,sulfur-containing carboxylic acid +11.1618349,CHEBI:50864,http://purl.obolibrary.org/obo/CHEBI_50864,insulin-sensitizing drug +11.1618349,CL:0000189,http://purl.obolibrary.org/obo/CL_0000189,slow muscle cell +11.1618349,CL:0002417,http://purl.obolibrary.org/obo/CL_0002417,primitive erythroid lineage cell +11.1618349,DRUGBANK:DB09072,http://purl.obolibrary.org/obo/DRUGBANK_DB09072,none +11.1618349,DRUGBANK:DB11023,http://purl.obolibrary.org/obo/DRUGBANK_DB11023,none +11.1618349,DRUGBANK:DB11478,http://purl.obolibrary.org/obo/DRUGBANK_DB11478,none +11.1618349,DRUGBANK:DB15107,http://purl.obolibrary.org/obo/DRUGBANK_DB15107,none +11.1618349,GO:0004668,http://purl.obolibrary.org/obo/GO_0004668,protein-arginine deiminase activity +11.1618349,GO:0010965,http://purl.obolibrary.org/obo/GO_0010965,regulation of mitotic sister chromatid separation +11.1618349,GO:0042326,http://purl.obolibrary.org/obo/GO_0042326,negative regulation of phosphorylation +11.1618349,GO:0070873,http://purl.obolibrary.org/obo/GO_0070873,regulation of glycogen metabolic process +11.1618349,NCBITaxon:4479,http://purl.obolibrary.org/obo/NCBITaxon_4479,Poaceae +11.1618349,PR:000005113,http://purl.obolibrary.org/obo/PR_000005113,cerebral cavernous malformations 2 protein +11.1618349,PR:000005530,http://purl.obolibrary.org/obo/PR_000005530,H(+)/Cl(-) exchange transporter 3 +11.1618349,PR:000006914,http://purl.obolibrary.org/obo/PR_000006914,EGF-containing fibulin-like extracellular matrix protein 2 +11.1618349,PR:000014782,http://purl.obolibrary.org/obo/PR_000014782,beta-sarcoglycan +11.1618349,PR:000024959,http://purl.obolibrary.org/obo/PR_000024959,none +11.1618349,PR:000029217,http://purl.obolibrary.org/obo/PR_000029217,none +11.1618349,PR:000033658,http://purl.obolibrary.org/obo/PR_000033658,none +11.1618349,PR:Q59RR3,http://purl.obolibrary.org/obo/PR_Q59RR3,none +11.1648883,CHEBI:39456,http://purl.obolibrary.org/obo/CHEBI_39456,antiglaucoma drug +11.1648883,DRUGBANK:DB00792,http://purl.obolibrary.org/obo/DRUGBANK_DB00792,none +11.1648883,DRUGBANK:DB10441,http://purl.obolibrary.org/obo/DRUGBANK_DB10441,none +11.1648883,GO:0010821,http://purl.obolibrary.org/obo/GO_0010821,regulation of mitochondrion organization +11.1648883,GO:0015945,http://purl.obolibrary.org/obo/GO_0015945,methanol metabolic process +11.1648883,GO:0016207,http://purl.obolibrary.org/obo/GO_0016207,4-coumarate-CoA ligase activity +11.1648883,GO:0030832,http://purl.obolibrary.org/obo/GO_0030832,regulation of actin filament length +11.1648883,GO:0047150,http://purl.obolibrary.org/obo/GO_0047150,betaine-homocysteine S-methyltransferase activity +11.1648883,GO:0060081,http://purl.obolibrary.org/obo/GO_0060081,membrane hyperpolarization +11.1648883,GO:0061515,http://purl.obolibrary.org/obo/GO_0061515,myeloid cell development +11.1648883,MONDO:0008323,http://purl.obolibrary.org/obo/MONDO_0008323,Liddle syndrome +11.1648883,MONDO:0015292,http://purl.obolibrary.org/obo/MONDO_0015292,endotheliitis +11.1648883,MONDO:0017028,http://purl.obolibrary.org/obo/MONDO_0017028,secondary interstitial lung disease specific to adulthood associated with a systemic disease +11.1648883,MONDO:0017119,http://purl.obolibrary.org/obo/MONDO_0017119,syndrome with microcephaly as major feature +11.1648883,MONDO:0019516,http://purl.obolibrary.org/obo/MONDO_0019516,exudative vitreoretinopathy +11.1648883,MONDO:0020134,http://purl.obolibrary.org/obo/MONDO_0020134,cystic malformation of the posterior fossa +11.1648883,MONDO:0027749,http://purl.obolibrary.org/obo/MONDO_0027749,serpinopathy +11.1648883,MONDO:0043541,http://purl.obolibrary.org/obo/MONDO_0043541,viral conjunctivitis +11.1648883,PR:000001573,http://purl.obolibrary.org/obo/PR_000001573,P2Y purinoceptor 4 +11.1648883,PR:000002005,http://purl.obolibrary.org/obo/PR_000002005,G protein-activated inward rectifier potassium channel 4 +11.1648883,PR:000004150,http://purl.obolibrary.org/obo/PR_000004150,apolipoprotein C-I +11.1648883,PR:000006713,http://purl.obolibrary.org/obo/PR_000006713,destrin +11.1648883,PR:000009914,http://purl.obolibrary.org/obo/PR_000009914,leucine-rich repeats and immunoglobulin-like domains protein 1 +11.1648883,PR:000012030,http://purl.obolibrary.org/obo/PR_000012030,origin recognition complex subunit 1 +11.1648883,PR:P22953,http://purl.obolibrary.org/obo/PR_P22953,none +11.1648883,SO:0001002,http://purl.obolibrary.org/obo/SO_0001002,cytosolic_25S_rRNA +11.1648883,UBERON:0001082,http://purl.obolibrary.org/obo/UBERON_0001082,epicardium of ventricle +11.1648883,UBERON:0011766,http://purl.obolibrary.org/obo/UBERON_0011766,left recurrent laryngeal nerve +11.1679511,CHEBI:16856,http://purl.obolibrary.org/obo/CHEBI_16856,glutathione +11.1679511,DRUGBANK:DB06689,http://purl.obolibrary.org/obo/DRUGBANK_DB06689,none +11.1679511,DRUGBANK:DB09117,http://purl.obolibrary.org/obo/DRUGBANK_DB09117,none +11.1679511,DRUGBANK:DB12864,http://purl.obolibrary.org/obo/DRUGBANK_DB12864,none +11.1679511,DRUGBANK:DB14349,http://purl.obolibrary.org/obo/DRUGBANK_DB14349,none +11.1679511,GO:0004661,http://purl.obolibrary.org/obo/GO_0004661,protein geranylgeranyltransferase activity +11.1679511,GO:0010557,http://purl.obolibrary.org/obo/GO_0010557,positive regulation of macromolecule biosynthetic process +11.1679511,GO:0019107,http://purl.obolibrary.org/obo/GO_0019107,myristoyltransferase activity +11.1679511,HP:0030875,http://purl.obolibrary.org/obo/HP_0030875,Abnormality of pulmonary circulation +11.1679511,MONDO:0019621,http://purl.obolibrary.org/obo/MONDO_0019621,chronic pneumonitis of infancy +11.1679511,NCBITaxon:2611352,http://purl.obolibrary.org/obo/NCBITaxon_2611352,Discoba +11.1679511,PR:000008567,http://purl.obolibrary.org/obo/PR_000008567,homeodomain-interacting protein kinase 2 +11.1679511,PR:000009149,http://purl.obolibrary.org/obo/PR_000009149,inter-alpha-trypsin inhibitor heavy chain H4 +11.1679511,PR:000009205,http://purl.obolibrary.org/obo/PR_000009205,lysine-specific demethylase 5B +11.1679511,PR:000014318,http://purl.obolibrary.org/obo/PR_000014318,radical S-adenosyl methionine domain-containing protein 2 +11.1679511,PR:000015796,http://purl.obolibrary.org/obo/PR_000015796,syntaxin-4 +11.1679511,PR:000017138,http://purl.obolibrary.org/obo/PR_000017138,upstream stimulatory factor 2 +11.1679511,PR:Q812D1,http://purl.obolibrary.org/obo/PR_Q812D1,none +11.1679511,PR:Q96321,http://purl.obolibrary.org/obo/PR_Q96321,none +11.1679511,UBERON:0023943,http://purl.obolibrary.org/obo/UBERON_0023943,molecular system +11.1710233,CHEBI:18274,http://purl.obolibrary.org/obo/CHEBI_18274,2'-deoxyribonucleoside +11.1710233,CHEBI:49205,http://purl.obolibrary.org/obo/CHEBI_49205,CETP inhibitor +11.1710233,CL:0002404,http://purl.obolibrary.org/obo/CL_0002404,fetal thymocyte +11.1710233,DRUGBANK:DB00876,http://purl.obolibrary.org/obo/DRUGBANK_DB00876,none +11.1710233,DRUGBANK:DB01565,http://purl.obolibrary.org/obo/DRUGBANK_DB01565,none +11.1710233,DRUGBANK:DB13912,http://purl.obolibrary.org/obo/DRUGBANK_DB13912,none +11.1710233,DRUGBANK:DB15801,http://purl.obolibrary.org/obo/DRUGBANK_DB15801,none +11.1710233,DRUGBANK:DB15927,http://purl.obolibrary.org/obo/DRUGBANK_DB15927,none +11.1710233,GO:0016528,http://purl.obolibrary.org/obo/GO_0016528,sarcoplasm +11.1710233,GO:0016796,http://purl.obolibrary.org/obo/GO_0016796,"exonuclease activity, active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters" +11.1710233,GO:0017040,http://purl.obolibrary.org/obo/GO_0017040,N-acylsphingosine amidohydrolase activity +11.1710233,GO:0044321,http://purl.obolibrary.org/obo/GO_0044321,response to leptin +11.1710233,GO:0071709,http://purl.obolibrary.org/obo/GO_0071709,membrane assembly +11.1710233,HP:0002204,http://purl.obolibrary.org/obo/HP_0002204,Pulmonary embolism +11.1710233,MONDO:0007721,http://purl.obolibrary.org/obo/MONDO_0007721,hiatus hernia +11.1710233,MONDO:0009072,http://purl.obolibrary.org/obo/MONDO_0009072,Dandy-Walker syndrome +11.1710233,MONDO:0019005,http://purl.obolibrary.org/obo/MONDO_0019005,nephronophthisis +11.1710233,MONDO:0019187,http://purl.obolibrary.org/obo/MONDO_0019187,Axenfeld-Rieger syndrome +11.1710233,MONDO:0024334,http://purl.obolibrary.org/obo/MONDO_0024334,peripheral nerve lesion +11.1710233,NCBITaxon:32324,http://purl.obolibrary.org/obo/NCBITaxon_32324,none +11.1710233,PR:000006754,http://purl.obolibrary.org/obo/PR_000006754,dual specificity protein phosphatase 4 +11.1710233,PR:000008080,http://purl.obolibrary.org/obo/PR_000008080,guanine nucleotide-binding protein subunit alpha-11 +11.1710233,PR:000015035,http://purl.obolibrary.org/obo/PR_000015035,sulfate anion transporter 1 +11.1710233,PR:000017196,http://purl.obolibrary.org/obo/PR_000017196,ubiquitin carboxyl-terminal hydrolase 7 +11.1710233,PR:000018242,http://purl.obolibrary.org/obo/PR_000018242,zyxin +11.1710233,PR:000022746,http://purl.obolibrary.org/obo/PR_000022746,none +11.1710233,PR:P38874,http://purl.obolibrary.org/obo/PR_P38874,none +11.1710233,PR:Q39218,http://purl.obolibrary.org/obo/PR_Q39218,none +11.174105,DRUGBANK:DB05790,http://purl.obolibrary.org/obo/DRUGBANK_DB05790,none +11.174105,GO:0035770,http://purl.obolibrary.org/obo/GO_0035770,ribonucleoprotein granule +11.174105,GO:0070283,http://purl.obolibrary.org/obo/GO_0070283,none +11.174105,GO:0110053,http://purl.obolibrary.org/obo/GO_0110053,regulation of actin filament organization +11.174105,GO:1902099,http://purl.obolibrary.org/obo/GO_1902099,regulation of metaphase/anaphase transition of cell cycle +11.174105,MONDO:0002879,http://purl.obolibrary.org/obo/MONDO_0002879,uterine body mixed cancer +11.174105,MONDO:0006767,http://purl.obolibrary.org/obo/MONDO_0006767,gastric antral vascular ectasia +11.174105,MONDO:0007244,http://purl.obolibrary.org/obo/MONDO_0007244,Caffey disease +11.174105,MONDO:0009698,http://purl.obolibrary.org/obo/MONDO_0009698,Unverricht-Lundborg syndrome +11.174105,MONDO:0016255,http://purl.obolibrary.org/obo/MONDO_0016255,uterine corpus mixed epithelial and mesenchymal neoplasm +11.174105,MONDO:0017747,http://purl.obolibrary.org/obo/MONDO_0017747,disorder of fucoglycosan synthesis +11.174105,MONDO:0100008,http://purl.obolibrary.org/obo/MONDO_0100008,food protein-induced enterocolitis syndrome +11.174105,NCBITaxon:10016,http://purl.obolibrary.org/obo/NCBITaxon_10016,none +11.174105,NCBITaxon:337042,http://purl.obolibrary.org/obo/NCBITaxon_337042,none +11.174105,NCBITaxon:7241,http://purl.obolibrary.org/obo/NCBITaxon_7241,none +11.174105,PR:000001331,http://purl.obolibrary.org/obo/PR_000001331,carcinoembryonic antigen-related cell adhesion molecule 6 +11.174105,PR:000005273,http://purl.obolibrary.org/obo/PR_000005273,cyclin-dependent kinase-like 5 +11.174105,PR:000006030,http://purl.obolibrary.org/obo/PR_000006030,procathepsin L +11.174105,PR:000006312,http://purl.obolibrary.org/obo/PR_000006312,serine/threonine-protein kinase DCLK3 +11.174105,PR:000011403,http://purl.obolibrary.org/obo/PR_000011403,photoreceptor-specific nuclear receptor +11.174105,PR:000014816,http://purl.obolibrary.org/obo/PR_000014816,SH2 domain-containing protein 3C +11.174105,PR:000014926,http://purl.obolibrary.org/obo/PR_000014926,solute carrier family 12 member 3 +11.174105,PR:000036828,http://purl.obolibrary.org/obo/PR_000036828,none +11.174105,PR:Q63108,http://purl.obolibrary.org/obo/PR_Q63108,none +11.174105,UBERON:0009145,http://purl.obolibrary.org/obo/UBERON_0009145,pharyngeal region of foregut +11.174105,UBERON:0016508,http://purl.obolibrary.org/obo/UBERON_0016508,pelvic ganglion +11.1771961,CHEBI:36683,http://purl.obolibrary.org/obo/CHEBI_36683,organochlorine compound +11.1771961,CL:0002240,http://purl.obolibrary.org/obo/CL_0002240,marrow fibroblast +11.1771961,DRUGBANK:DB00962,http://purl.obolibrary.org/obo/DRUGBANK_DB00962,none +11.1771961,DRUGBANK:DB01411,http://purl.obolibrary.org/obo/DRUGBANK_DB01411,none +11.1771961,DRUGBANK:DB03201,http://purl.obolibrary.org/obo/DRUGBANK_DB03201,none +11.1771961,DRUGBANK:DB11293,http://purl.obolibrary.org/obo/DRUGBANK_DB11293,none +11.1771961,DRUGBANK:DB12173,http://purl.obolibrary.org/obo/DRUGBANK_DB12173,none +11.1771961,GO:0006771,http://purl.obolibrary.org/obo/GO_0006771,riboflavin metabolic process +11.1771961,GO:0015055,http://purl.obolibrary.org/obo/GO_0015055,secretin receptor activity +11.1771961,GO:0030219,http://purl.obolibrary.org/obo/GO_0030219,megakaryocyte differentiation +11.1771961,GO:0044450,http://purl.obolibrary.org/obo/GO_0044450,none +11.1771961,GO:0050975,http://purl.obolibrary.org/obo/GO_0050975,sensory perception of touch +11.1771961,MONDO:0000923,http://purl.obolibrary.org/obo/MONDO_0000923,interstitial emphysema +11.1771961,MONDO:0002178,http://purl.obolibrary.org/obo/MONDO_0002178,placenta cancer +11.1771961,MONDO:0007297,http://purl.obolibrary.org/obo/MONDO_0007297,ADan amyloidosis +11.1771961,MONDO:0018460,http://purl.obolibrary.org/obo/MONDO_0018460,Eales disease +11.1771961,NCBITaxon:10552,http://purl.obolibrary.org/obo/NCBITaxon_10552,none +11.1771961,PR:000001215,http://purl.obolibrary.org/obo/PR_000001215,atypical chemokine receptor 2 +11.1771961,PR:000001895,http://purl.obolibrary.org/obo/PR_000001895,natural cytotoxicity triggering receptor 3 +11.1771961,PR:000002048,http://purl.obolibrary.org/obo/PR_000002048,interferon regulatory factor 6 +11.1771961,PR:000004102,http://purl.obolibrary.org/obo/PR_000004102,AP-2 complex subunit mu +11.1771961,PR:000009353,http://purl.obolibrary.org/obo/PR_000009353,krueppel-like factor 1 +11.1771961,PR:000011060,http://purl.obolibrary.org/obo/PR_000011060,protein NDRG2 +11.1771961,PR:000012031,http://purl.obolibrary.org/obo/PR_000012031,origin recognition complex subunit 2 +11.1771961,PR:000012085,http://purl.obolibrary.org/obo/PR_000012085,homeobox protein OTX1 +11.1771961,PR:000017103,http://purl.obolibrary.org/obo/PR_000017103,homeobox protein unc-4 +11.1771961,PR:000017320,http://purl.obolibrary.org/obo/PR_000017320,vacuolar protein sorting-associated protein 13B +11.1771961,UBERON:0000095,http://purl.obolibrary.org/obo/UBERON_0000095,cardiac neural crest +11.1771961,UBERON:0004185,http://purl.obolibrary.org/obo/UBERON_0004185,endodermal part of digestive tract +11.1802969,CHEBI:22314,http://purl.obolibrary.org/obo/CHEBI_22314,alkali metal atom +11.1802969,CHEBI:22727,http://purl.obolibrary.org/obo/CHEBI_22727,benzopyran +11.1802969,CHEBI:33340,http://purl.obolibrary.org/obo/CHEBI_33340,zinc group element atom +11.1802969,CHEBI:38443,http://purl.obolibrary.org/obo/CHEBI_38443,1-benzopyran +11.1802969,CL:0000030,http://purl.obolibrary.org/obo/CL_0000030,glioblast +11.1802969,GO:0003933,http://purl.obolibrary.org/obo/GO_0003933,GTP cyclohydrolase activity +11.1802969,GO:0030600,http://purl.obolibrary.org/obo/GO_0030600,feruloyl esterase activity +11.1802969,GO:0140102,http://purl.obolibrary.org/obo/GO_0140102,"catalytic activity, acting on a rRNA" +11.1802969,GO:1902520,http://purl.obolibrary.org/obo/GO_1902520,response to doxorubicin +11.1802969,HP:0011001,http://purl.obolibrary.org/obo/HP_0011001,Increased bone mineral density +11.1802969,MONDO:0003573,http://purl.obolibrary.org/obo/MONDO_0003573,pleomorphic carcinoma +11.1802969,PR:000001479,http://purl.obolibrary.org/obo/PR_000001479,None +11.1802969,PR:000006068,http://purl.obolibrary.org/obo/PR_000006068,C-X-C motif chemokine 14 +11.1802969,PR:000006074,http://purl.obolibrary.org/obo/PR_000006074,CXXC-type zinc finger protein 1 +11.1802969,PR:000007036,http://purl.obolibrary.org/obo/PR_000007036,elongation of very long chain fatty acids protein 1 +11.1802969,PR:000016061,http://purl.obolibrary.org/obo/PR_000016061,taste receptor type 1 member 2 +11.1802969,PR:000029025,http://purl.obolibrary.org/obo/PR_000029025,none +11.1802969,PR:000044732,http://purl.obolibrary.org/obo/PR_000044732,N-acetyltransferase 8/8B +11.1802969,PR:P42737,http://purl.obolibrary.org/obo/PR_P42737,none +11.1802969,PR:Q8MM62,http://purl.obolibrary.org/obo/PR_Q8MM62,none +11.1802969,SO:0001771,http://purl.obolibrary.org/obo/SO_0001771,disease_associated_variant +11.1802969,UBERON:0001862,http://purl.obolibrary.org/obo/UBERON_0001862,vestibular labyrinth +11.1802969,UBERON:0002314,http://purl.obolibrary.org/obo/UBERON_0002314,midbrain tectum +11.1802969,UBERON:0007312,http://purl.obolibrary.org/obo/UBERON_0007312,pudendal artery +11.1802969,UBERON:0011214,http://purl.obolibrary.org/obo/UBERON_0011214,nucleus of midbrain tectum +11.1834073,CHEBI:35196,http://purl.obolibrary.org/obo/CHEBI_35196,nitrogen oxide +11.1834073,CL:0000594,http://purl.obolibrary.org/obo/CL_0000594,skeletal muscle satellite cell +11.1834073,CL:0000678,http://purl.obolibrary.org/obo/CL_0000678,commissural neuron +11.1834073,DRUGBANK:DB11935,http://purl.obolibrary.org/obo/DRUGBANK_DB11935,none +11.1834073,GO:0001782,http://purl.obolibrary.org/obo/GO_0001782,B cell homeostasis +11.1834073,GO:0004155,http://purl.obolibrary.org/obo/GO_0004155,"6,7-dihydropteridine reductase activity" +11.1834073,GO:0005614,http://purl.obolibrary.org/obo/GO_0005614,interstitial matrix +11.1834073,GO:0015755,http://purl.obolibrary.org/obo/GO_0015755,fructose transmembrane transport +11.1834073,GO:0016663,http://purl.obolibrary.org/obo/GO_0016663,"oxidoreductase activity, acting on other nitrogenous compounds as donors, oxygen as acceptor" +11.1834073,GO:0045667,http://purl.obolibrary.org/obo/GO_0045667,regulation of osteoblast differentiation +11.1834073,GO:0051985,http://purl.obolibrary.org/obo/GO_0051985,negative regulation of chromosome segregation +11.1834073,GO:0097066,http://purl.obolibrary.org/obo/GO_0097066,response to thyroid hormone +11.1834073,GO:1902100,http://purl.obolibrary.org/obo/GO_1902100,negative regulation of metaphase/anaphase transition of cell cycle +11.1834073,HP:0000286,http://purl.obolibrary.org/obo/HP_0000286,Epicanthus +11.1834073,MONDO:0001782,http://purl.obolibrary.org/obo/MONDO_0001782,mature cataract +11.1834073,MONDO:0004896,http://purl.obolibrary.org/obo/MONDO_0004896,esotropia +11.1834073,MONDO:0006254,http://purl.obolibrary.org/obo/MONDO_0006254,intestinal type adenocarcinoma +11.1834073,PR:000005201,http://purl.obolibrary.org/obo/PR_000005201,Hsp90 co-chaperone Cdc37 +11.1834073,PR:000005378,http://purl.obolibrary.org/obo/PR_000005378,complement factor H +11.1834073,PR:000008440,http://purl.obolibrary.org/obo/PR_000008440,heart- and neural crest derivatives-expressed protein 2 +11.1834073,PR:000025895,http://purl.obolibrary.org/obo/PR_000025895,beta-defensin 4A +11.1834073,PR:000029674,http://purl.obolibrary.org/obo/PR_000029674,phosphatidylinositol-binding clathrin assembly protein +11.1834073,PR:P87020,http://purl.obolibrary.org/obo/PR_P87020,none +11.1834073,SO:0000170,http://purl.obolibrary.org/obo/SO_0000170,RNApol_II_promoter +11.1834073,UBERON:0005387,http://purl.obolibrary.org/obo/UBERON_0005387,olfactory glomerulus +11.1834073,UBERON:0010522,http://purl.obolibrary.org/obo/UBERON_0010522,replacement element +11.1865275,CHEBI:63534,http://purl.obolibrary.org/obo/CHEBI_63534,monoamine +11.1865275,DRUGBANK:DB00311,http://purl.obolibrary.org/obo/DRUGBANK_DB00311,none +11.1865275,DRUGBANK:DB01194,http://purl.obolibrary.org/obo/DRUGBANK_DB01194,none +11.1865275,DRUGBANK:DB11555,http://purl.obolibrary.org/obo/DRUGBANK_DB11555,none +11.1865275,DRUGBANK:DB15668,http://purl.obolibrary.org/obo/DRUGBANK_DB15668,none +11.1865275,GO:0006884,http://purl.obolibrary.org/obo/GO_0006884,cell volume homeostasis +11.1865275,GO:0008064,http://purl.obolibrary.org/obo/GO_0008064,regulation of actin polymerization or depolymerization +11.1865275,GO:0009896,http://purl.obolibrary.org/obo/GO_0009896,positive regulation of catabolic process +11.1865275,GO:0016657,http://purl.obolibrary.org/obo/GO_0016657,"oxidoreductase activity, acting on NAD(P)H, nitrogenous group as acceptor" +11.1865275,GO:0019034,http://purl.obolibrary.org/obo/GO_0019034,viral replication complex +11.1865275,GO:0042331,http://purl.obolibrary.org/obo/GO_0042331,phototaxis +11.1865275,GO:1901991,http://purl.obolibrary.org/obo/GO_1901991,negative regulation of mitotic cell cycle phase transition +11.1865275,HP:0001608,http://purl.obolibrary.org/obo/HP_0001608,Abnormality of the voice +11.1865275,MONDO:0006243,http://purl.obolibrary.org/obo/MONDO_0006243,hepatoid adenocarcinoma +11.1865275,MONDO:0018160,http://purl.obolibrary.org/obo/MONDO_0018160,hereditary retinoblastoma +11.1865275,MONDO:0020531,http://purl.obolibrary.org/obo/MONDO_0020531,long chain acyl-CoA dehydrogenase deficiency +11.1865275,MONDO:0021168,http://purl.obolibrary.org/obo/MONDO_0021168,hibernoma +11.1865275,PR:000000068,http://purl.obolibrary.org/obo/PR_000000068,activin receptor type-1B +11.1865275,PR:000001865,http://purl.obolibrary.org/obo/PR_000001865,interleukin-3 receptor class 2 alpha chain +11.1865275,PR:000003566,http://purl.obolibrary.org/obo/PR_000003566,ATP-binding cassette sub-family D member 2 +11.1865275,PR:000005114,http://purl.obolibrary.org/obo/PR_000005114,cyclin-A1 +11.1865275,PR:000008952,http://purl.obolibrary.org/obo/PR_000008952,insulin-like growth factor-binding protein 6 +11.1865275,PR:000013543,http://purl.obolibrary.org/obo/PR_000013543,none +11.1865275,PR:000015677,http://purl.obolibrary.org/obo/PR_000015677,Hsc70-interacting protein +11.1865275,PR:000017505,http://purl.obolibrary.org/obo/PR_000017505,DNA repair protein XRCC2 +11.1865275,PR:000034444,http://purl.obolibrary.org/obo/PR_000034444,none +11.1865275,PR:O01789,http://purl.obolibrary.org/obo/PR_O01789,none +11.1865275,PR:O94383,http://purl.obolibrary.org/obo/PR_O94383,none +11.1865275,PR:Q5AD05,http://purl.obolibrary.org/obo/PR_Q5AD05,none +11.1865275,UBERON:0008420,http://purl.obolibrary.org/obo/UBERON_0008420,buccal epithelium +11.1865275,UBERON:0008611,http://purl.obolibrary.org/obo/UBERON_0008611,scalene muscle +11.1865275,UBERON:0015918,http://purl.obolibrary.org/obo/UBERON_0015918,deep lymph node +11.1865275,UBERON:0018382,http://purl.obolibrary.org/obo/UBERON_0018382,second instar larva +11.1896574,CHEBI:39022,http://purl.obolibrary.org/obo/CHEBI_39022,inclusion compound +11.1896574,CHEBI:50967,http://purl.obolibrary.org/obo/CHEBI_50967,non-covalently-bound molecular entity +11.1896574,DRUGBANK:DB01600,http://purl.obolibrary.org/obo/DRUGBANK_DB01600,none +11.1896574,DRUGBANK:DB11255,http://purl.obolibrary.org/obo/DRUGBANK_DB11255,none +11.1896574,DRUGBANK:DB11450,http://purl.obolibrary.org/obo/DRUGBANK_DB11450,none +11.1896574,GO:0019005,http://purl.obolibrary.org/obo/GO_0019005,SCF ubiquitin ligase complex +11.1896574,GO:0051340,http://purl.obolibrary.org/obo/GO_0051340,regulation of ligase activity +11.1896574,GO:0071174,http://purl.obolibrary.org/obo/GO_0071174,mitotic spindle checkpoint signaling +11.1896574,MONDO:0001966,http://purl.obolibrary.org/obo/MONDO_0001966,chronic closed-angle glaucoma +11.1896574,MONDO:0017686,http://purl.obolibrary.org/obo/MONDO_0017686,inborn aminoacylase deficiency +11.1896574,NCBITaxon:1930602,http://purl.obolibrary.org/obo/NCBITaxon_1930602,Psocodea +11.1896574,NCBITaxon:85819,http://purl.obolibrary.org/obo/NCBITaxon_85819,Phthiraptera +11.1896574,PR:000003754,http://purl.obolibrary.org/obo/PR_000003754,adenylate cyclase type 3 +11.1896574,PR:000006474,http://purl.obolibrary.org/obo/PR_000006474,ATP-dependent RNA helicase A +11.1896574,PR:000009455,http://purl.obolibrary.org/obo/PR_000009455,"keratin, type I cytoskeletal 15" +11.1896574,PR:000009802,http://purl.obolibrary.org/obo/PR_000009802,DNA ligase 4 +11.1896574,PR:000013810,http://purl.obolibrary.org/obo/PR_000013810,RNA binding protein fox-1 homolog 2 +11.1896574,PR:000016502,http://purl.obolibrary.org/obo/PR_000016502,"troponin C, slow skeletal and cardiac muscles" +11.1896574,PR:000031834,http://purl.obolibrary.org/obo/PR_000031834,protein lifeguard 4 +11.1896574,PR:Q8K1P8,http://purl.obolibrary.org/obo/PR_Q8K1P8,none +11.1896574,UBERON:0012477,http://purl.obolibrary.org/obo/UBERON_0012477,dorsal part of neck +11.1896574,UBERON:0014450,http://purl.obolibrary.org/obo/UBERON_0014450,pretectal nucleus +11.1896574,UBERON:2000165,http://purl.obolibrary.org/obo/UBERON_2000165,inferior lobe +11.1927971,CHEBI:75769,http://purl.obolibrary.org/obo/CHEBI_75769,B vitamin +11.1927971,CHEBI:76924,http://purl.obolibrary.org/obo/CHEBI_76924,plant metabolite +11.1927971,CHEBI:88184,http://purl.obolibrary.org/obo/CHEBI_88184,metal allergen +11.1927971,CL:0000903,http://purl.obolibrary.org/obo/CL_0000903,natural T-regulatory cell +11.1927971,DRUGBANK:DB00768,http://purl.obolibrary.org/obo/DRUGBANK_DB00768,none +11.1927971,DRUGBANK:DB06403,http://purl.obolibrary.org/obo/DRUGBANK_DB06403,none +11.1927971,DRUGBANK:DB11365,http://purl.obolibrary.org/obo/DRUGBANK_DB11365,none +11.1927971,DRUGBANK:DB11675,http://purl.obolibrary.org/obo/DRUGBANK_DB11675,none +11.1927971,DRUGBANK:DB12212,http://purl.obolibrary.org/obo/DRUGBANK_DB12212,none +11.1927971,GO:0004532,http://purl.obolibrary.org/obo/GO_0004532,exoribonuclease activity +11.1927971,GO:0009744,http://purl.obolibrary.org/obo/GO_0009744,response to sucrose +11.1927971,GO:0019757,http://purl.obolibrary.org/obo/GO_0019757,glycosinolate metabolic process +11.1927971,GO:0070327,http://purl.obolibrary.org/obo/GO_0070327,thyroid hormone transport +11.1927971,HP:0002113,http://purl.obolibrary.org/obo/HP_0002113,Pulmonary infiltrates +11.1927971,MONDO:0001087,http://purl.obolibrary.org/obo/MONDO_0001087,schizotypal personality disorder +11.1927971,MONDO:0006335,http://purl.obolibrary.org/obo/MONDO_0006335,ovarian endometrioid adenocarcinoma +11.1927971,MONDO:0006740,http://purl.obolibrary.org/obo/MONDO_0006740,empty sella syndrome +11.1927971,MONDO:0010079,http://purl.obolibrary.org/obo/MONDO_0010079,Canavan disease +11.1927971,MONDO:0018172,http://purl.obolibrary.org/obo/MONDO_0018172,malignant sex cord stromal tumor of ovary +11.1927971,NCBITaxon:4209,http://purl.obolibrary.org/obo/NCBITaxon_4209,none +11.1927971,PR:000005619,http://purl.obolibrary.org/obo/PR_000005619,chymase +11.1927971,PR:000007458,http://purl.obolibrary.org/obo/PR_000007458,tyrosine-protein kinase Fer +11.1927971,PR:000008302,http://purl.obolibrary.org/obo/PR_000008302,glutathione S-transferase mu 5 +11.1927971,PR:000013670,http://purl.obolibrary.org/obo/PR_000013670,UV excision repair protein RAD23 homolog B +11.1927971,PR:000017448,http://purl.obolibrary.org/obo/PR_000017448,protein Wnt-7a +11.1927971,PR:000023307,http://purl.obolibrary.org/obo/PR_000023307,none +11.1927971,PR:P31167,http://purl.obolibrary.org/obo/PR_P31167,none +11.1927971,PR:P32895,http://purl.obolibrary.org/obo/PR_P32895,none +11.1927971,PR:Q9FUT3,http://purl.obolibrary.org/obo/PR_Q9FUT3,none +11.1927971,UBERON:0001606,http://purl.obolibrary.org/obo/UBERON_0001606,muscle of iris +11.1927971,UBERON:0002996,http://purl.obolibrary.org/obo/UBERON_0002996,nucleus of optic tract +11.1959467,CHEBI:39024,http://purl.obolibrary.org/obo/CHEBI_39024,clathrate compound +11.1959467,DRUGBANK:DB10812,http://purl.obolibrary.org/obo/DRUGBANK_DB10812,none +11.1959467,GO:0002027,http://purl.obolibrary.org/obo/GO_0002027,regulation of heart rate +11.1959467,GO:0030537,http://purl.obolibrary.org/obo/GO_0030537,larval behavior +11.1959467,GO:0031331,http://purl.obolibrary.org/obo/GO_0031331,positive regulation of cellular catabolic process +11.1959467,GO:0035097,http://purl.obolibrary.org/obo/GO_0035097,histone methyltransferase complex +11.1959467,GO:0036271,http://purl.obolibrary.org/obo/GO_0036271,response to methylphenidate +11.1959467,GO:0048246,http://purl.obolibrary.org/obo/GO_0048246,macrophage chemotaxis +11.1959467,GO:0051341,http://purl.obolibrary.org/obo/GO_0051341,regulation of oxidoreductase activity +11.1959467,MONDO:0012727,http://purl.obolibrary.org/obo/MONDO_0012727,mucocutaneous lymph node syndrome +11.1959467,MONDO:0020098,http://purl.obolibrary.org/obo/MONDO_0020098,constitutional anemia due to iron metabolism disorder +11.1959467,NCBITaxon:4210,http://purl.obolibrary.org/obo/NCBITaxon_4210,none +11.1959467,PR:000003436,http://purl.obolibrary.org/obo/PR_000003436,E3 SUMO-protein ligase PIAS2 +11.1959467,PR:000006166,http://purl.obolibrary.org/obo/PR_000006166,none +11.1959467,PR:000008295,http://purl.obolibrary.org/obo/PR_000008295,glutathione S-transferase A2 +11.1959467,PR:000011382,http://purl.obolibrary.org/obo/PR_000011382,neuronal pentraxin-1 +11.1959467,PR:000011483,http://purl.obolibrary.org/obo/PR_000011483,"7,8-dihydro-8-oxoguanine triphosphatase" +11.1959467,PR:000013617,http://purl.obolibrary.org/obo/PR_000013617,Ras-related protein Rab-3A +11.1959467,PR:000014154,http://purl.obolibrary.org/obo/PR_000014154,roundabout homolog 4 +11.1959467,PR:000016295,http://purl.obolibrary.org/obo/PR_000016295,protein-glutamine gamma-glutamyltransferase 4 +11.1959467,PR:000017054,http://purl.obolibrary.org/obo/PR_000017054,none +11.1959467,PR:000022075,http://purl.obolibrary.org/obo/PR_000022075,none +11.1959467,PR:000023485,http://purl.obolibrary.org/obo/PR_000023485,none +11.1991063,CHEBI:26834,http://purl.obolibrary.org/obo/CHEBI_26834,sulfur-containing amino acid +11.1991063,CL:0000301,http://purl.obolibrary.org/obo/CL_0000301,pole cell +11.1991063,CL:1000507,http://purl.obolibrary.org/obo/CL_1000507,kidney tubule cell +11.1991063,DRUGBANK:DB00283,http://purl.obolibrary.org/obo/DRUGBANK_DB00283,none +11.1991063,DRUGBANK:DB10408,http://purl.obolibrary.org/obo/DRUGBANK_DB10408,none +11.1991063,GO:0030071,http://purl.obolibrary.org/obo/GO_0030071,regulation of mitotic metaphase/anaphase transition +11.1991063,GO:0042177,http://purl.obolibrary.org/obo/GO_0042177,negative regulation of protein catabolic process +11.1991063,GO:0043086,http://purl.obolibrary.org/obo/GO_0043086,negative regulation of catalytic activity +11.1991063,GO:1903363,http://purl.obolibrary.org/obo/GO_1903363,negative regulation of cellular protein catabolic process +11.1991063,MONDO:0004566,http://purl.obolibrary.org/obo/MONDO_0004566,postgastrectomy syndrome +11.1991063,MONDO:0005056,http://purl.obolibrary.org/obo/MONDO_0005056,keratinizing squamous cell carcinoma +11.1991063,MONDO:0015066,http://purl.obolibrary.org/obo/MONDO_0015066,"neuroendocrine tumor of the appendix, well differentiated, low or intermediate grade" +11.1991063,MONDO:0015285,http://purl.obolibrary.org/obo/MONDO_0015285,Carney complex +11.1991063,MONDO:0016259,http://purl.obolibrary.org/obo/MONDO_0016259,carcinosarcoma of the corpus uteri +11.1991063,NCBITaxon:164862,http://purl.obolibrary.org/obo/NCBITaxon_164862,none +11.1991063,NCBITaxon:33682,http://purl.obolibrary.org/obo/NCBITaxon_33682,Euglenozoa +11.1991063,NCBITaxon:7212,http://purl.obolibrary.org/obo/NCBITaxon_7212,none +11.1991063,PR:000001302,http://purl.obolibrary.org/obo/PR_000001302,CD226 molecule +11.1991063,PR:000001361,http://purl.obolibrary.org/obo/PR_000001361,interferon gamma receptor alpha chain +11.1991063,PR:000007674,http://purl.obolibrary.org/obo/PR_000007674,secreted frizzled-related protein 3 +11.1991063,PR:000008169,http://purl.obolibrary.org/obo/PR_000008169,"glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic" +11.1991063,PR:000008664,http://purl.obolibrary.org/obo/PR_000008664,heterogeneous nuclear ribonucleoprotein D0 +11.1991063,PR:000009414,http://purl.obolibrary.org/obo/PR_000009414,kallikrein-4 +11.1991063,PR:000009793,http://purl.obolibrary.org/obo/PR_000009793,LIM/homeobox protein Lhx3 +11.1991063,PR:000017387,http://purl.obolibrary.org/obo/PR_000017387,WD repeat-containing protein 1 +11.1991063,PR:000030828,http://purl.obolibrary.org/obo/PR_000030828,beclin 1-associated autophagy-related key regulator +11.1991063,PR:000032365,http://purl.obolibrary.org/obo/PR_000032365,N-acetyltransferase 8 +11.1991063,PR:Q9FJZ9,http://purl.obolibrary.org/obo/PR_Q9FJZ9,none +11.1991063,SO:0000934,http://purl.obolibrary.org/obo/SO_0000934,miRNA_target_site +11.1991063,UBERON:0001380,http://purl.obolibrary.org/obo/UBERON_0001380,vastus medialis +11.1991063,UBERON:0002280,http://purl.obolibrary.org/obo/UBERON_0002280,otolith +11.1991063,UBERON:0003848,http://purl.obolibrary.org/obo/UBERON_0003848,gonadal vein +11.1991063,UBERON:0009954,http://purl.obolibrary.org/obo/UBERON_0009954,vomeronasal system +11.1991063,UBERON:2001991,http://purl.obolibrary.org/obo/UBERON_2001991,lateral bone +11.2022758,CHEBI:26820,http://purl.obolibrary.org/obo/CHEBI_26820,sulfates +11.2022758,CHEBI:85012,http://purl.obolibrary.org/obo/CHEBI_85012,thrombopoietin receptor agonist +11.2022758,CL:0000629,http://purl.obolibrary.org/obo/CL_0000629,storage cell +11.2022758,DRUGBANK:DB00042,http://purl.obolibrary.org/obo/DRUGBANK_DB00042,none +11.2022758,DRUGBANK:DB01278,http://purl.obolibrary.org/obo/DRUGBANK_DB01278,none +11.2022758,DRUGBANK:DB04339,http://purl.obolibrary.org/obo/DRUGBANK_DB04339,none +11.2022758,DRUGBANK:DB06480,http://purl.obolibrary.org/obo/DRUGBANK_DB06480,none +11.2022758,DRUGBANK:DB10974,http://purl.obolibrary.org/obo/DRUGBANK_DB10974,none +11.2022758,DRUGBANK:DB13374,http://purl.obolibrary.org/obo/DRUGBANK_DB13374,none +11.2022758,DRUGBANK:DB15379,http://purl.obolibrary.org/obo/DRUGBANK_DB15379,none +11.2022758,DRUGBANK:DB15955,http://purl.obolibrary.org/obo/DRUGBANK_DB15955,none +11.2022758,GO:0015888,http://purl.obolibrary.org/obo/GO_0015888,thiamine transport +11.2022758,GO:0032435,http://purl.obolibrary.org/obo/GO_0032435,negative regulation of proteasomal ubiquitin-dependent protein catabolic process +11.2022758,GO:0044070,http://purl.obolibrary.org/obo/GO_0044070,regulation of anion transport +11.2022758,GO:0045548,http://purl.obolibrary.org/obo/GO_0045548,phenylalanine ammonia-lyase activity +11.2022758,GO:0048844,http://purl.obolibrary.org/obo/GO_0048844,artery morphogenesis +11.2022758,GO:0052813,http://purl.obolibrary.org/obo/GO_0052813,phosphatidylinositol bisphosphate kinase activity +11.2022758,GO:1901136,http://purl.obolibrary.org/obo/GO_1901136,carbohydrate derivative catabolic process +11.2022758,GO:1901799,http://purl.obolibrary.org/obo/GO_1901799,negative regulation of proteasomal protein catabolic process +11.2022758,GO:1903051,http://purl.obolibrary.org/obo/GO_1903051,negative regulation of proteolysis involved in cellular protein catabolic process +11.2022758,HP:0011873,http://purl.obolibrary.org/obo/HP_0011873,Abnormal platelet count +11.2022758,MONDO:0001137,http://purl.obolibrary.org/obo/MONDO_0001137,Murray valley encephalitis +11.2022758,MONDO:0001957,http://purl.obolibrary.org/obo/MONDO_0001957,critical illness polyneuropathy +11.2022758,MONDO:0006722,http://purl.obolibrary.org/obo/MONDO_0006722,dental fluorosis +11.2022758,MONDO:0008262,http://purl.obolibrary.org/obo/MONDO_0008262,Poland syndrome +11.2022758,MONDO:0015856,http://purl.obolibrary.org/obo/MONDO_0015856,syndromic breast hypoplasia/aplasia +11.2022758,NCBITaxon:11287,http://purl.obolibrary.org/obo/NCBITaxon_11287,Viral hemorrhagic septicemia virus +11.2022758,NCBITaxon:11955,http://purl.obolibrary.org/obo/NCBITaxon_11955,none +11.2022758,NCBITaxon:12154,http://purl.obolibrary.org/obo/NCBITaxon_12154,none +11.2022758,NCBITaxon:1980916,http://purl.obolibrary.org/obo/NCBITaxon_1980916,none +11.2022758,NCBITaxon:5653,http://purl.obolibrary.org/obo/NCBITaxon_5653,Kinetoplastea +11.2022758,PR:000000700,http://purl.obolibrary.org/obo/PR_000000700,intermediate conductance calcium-activated potassium channel protein 4 +11.2022758,PR:000001545,http://purl.obolibrary.org/obo/PR_000001545,prokineticin receptor +11.2022758,PR:000004530,http://purl.obolibrary.org/obo/PR_000004530,zinc-alpha-2-glycoprotein +11.2022758,PR:000006078,http://purl.obolibrary.org/obo/PR_000006078,cytochrome b5 +11.2022758,PR:000006482,http://purl.obolibrary.org/obo/PR_000006482,thyroxine 5-deiodinase +11.2022758,PR:000006554,http://purl.obolibrary.org/obo/PR_000006554,DNA replication ATP-dependent helicase/nuclease DNA2 +11.2022758,PR:000007757,http://purl.obolibrary.org/obo/PR_000007757,gamma-aminobutyric acid receptor-associated protein +11.2022758,PR:000008332,http://purl.obolibrary.org/obo/PR_000008332,GTP-binding protein 1 +11.2022758,PR:000008785,http://purl.obolibrary.org/obo/PR_000008785,3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type 1 +11.2022758,PR:000009020,http://purl.obolibrary.org/obo/PR_000009020,"Golgi-resident adenosine 3',5'-bisphosphate 3'-phosphatase" +11.2022758,PR:000012070,http://purl.obolibrary.org/obo/PR_000012070,"ornithine transcarbamylase, mitochondrial" +11.2022758,SO:0000662,http://purl.obolibrary.org/obo/SO_0000662,spliceosomal_intron +11.2022758,UBERON:0011858,http://purl.obolibrary.org/obo/UBERON_0011858,acinus of exocrine gland +11.2054555,CHEBI:16236,http://purl.obolibrary.org/obo/CHEBI_16236,ethanol +11.2054555,CHEBI:37826,http://purl.obolibrary.org/obo/CHEBI_37826,sulfuric acid derivative +11.2054555,DRUGBANK:DB00344,http://purl.obolibrary.org/obo/DRUGBANK_DB00344,none +11.2054555,DRUGBANK:DB01320,http://purl.obolibrary.org/obo/DRUGBANK_DB01320,none +11.2054555,DRUGBANK:DB02236,http://purl.obolibrary.org/obo/DRUGBANK_DB02236,none +11.2054555,DRUGBANK:DB14477,http://purl.obolibrary.org/obo/DRUGBANK_DB14477,none +11.2054555,GO:0006700,http://purl.obolibrary.org/obo/GO_0006700,C21-steroid hormone biosynthetic process +11.2054555,GO:0030574,http://purl.obolibrary.org/obo/GO_0030574,collagen catabolic process +11.2054555,GO:0030833,http://purl.obolibrary.org/obo/GO_0030833,regulation of actin filament polymerization +11.2054555,GO:0046934,http://purl.obolibrary.org/obo/GO_0046934,"phosphatidylinositol-4,5-bisphosphate 3-kinase activity" +11.2054555,GO:0051293,http://purl.obolibrary.org/obo/GO_0051293,establishment of spindle localization +11.2054555,HP:0000815,http://purl.obolibrary.org/obo/HP_0000815,Hypergonadotropic hypogonadism +11.2054555,HP:0009763,http://purl.obolibrary.org/obo/HP_0009763,Limb pain +11.2054555,MONDO:0000663,http://purl.obolibrary.org/obo/MONDO_0000663,anosognosia +11.2054555,MONDO:0001134,http://purl.obolibrary.org/obo/MONDO_0001134,essential hypertension +11.2054555,MONDO:0003487,http://purl.obolibrary.org/obo/MONDO_0003487,pseudoglandular squamous cell carcinoma +11.2054555,MONDO:0006854,http://purl.obolibrary.org/obo/MONDO_0006854,mesenchymoma +11.2054555,MONDO:0007361,http://purl.obolibrary.org/obo/MONDO_0007361,C1 inhibitor deficiency +11.2054555,MONDO:0024501,http://purl.obolibrary.org/obo/MONDO_0024501,appendix neuroendocrine neoplasm +11.2054555,PR:000005097,http://purl.obolibrary.org/obo/PR_000005097,kynurenine--oxoglutarate transaminase 1 +11.2054555,PR:000005942,http://purl.obolibrary.org/obo/PR_000005942,kappa-casein +11.2054555,PR:000007357,http://purl.obolibrary.org/obo/PR_000007357,filamin-binding LIM protein 1 +11.2054555,PR:000016879,http://purl.obolibrary.org/obo/PR_000016879,TYRO protein tyrosine kinase-binding protein +11.2054555,UBERON:0001081,http://purl.obolibrary.org/obo/UBERON_0001081,endocardium of ventricle +11.2054555,UBERON:0003647,http://purl.obolibrary.org/obo/UBERON_0003647,metacarpal bone of digit 3 +11.2054555,UBERON:0008974,http://purl.obolibrary.org/obo/UBERON_0008974,apocrine gland +11.2054555,UBERON:0015045,http://purl.obolibrary.org/obo/UBERON_0015045,manual digit 3 metacarpus endochondral element +11.2086453,DRUGBANK:DB03550,http://purl.obolibrary.org/obo/DRUGBANK_DB03550,none +11.2086453,DRUGBANK:DB03946,http://purl.obolibrary.org/obo/DRUGBANK_DB03946,none +11.2086453,DRUGBANK:DB06641,http://purl.obolibrary.org/obo/DRUGBANK_DB06641,none +11.2086453,DRUGBANK:DB08906,http://purl.obolibrary.org/obo/DRUGBANK_DB08906,none +11.2086453,DRUGBANK:DB09216,http://purl.obolibrary.org/obo/DRUGBANK_DB09216,none +11.2086453,DRUGBANK:DB11390,http://purl.obolibrary.org/obo/DRUGBANK_DB11390,none +11.2086453,DRUGBANK:DB13316,http://purl.obolibrary.org/obo/DRUGBANK_DB13316,none +11.2086453,DRUGBANK:DB15964,http://purl.obolibrary.org/obo/DRUGBANK_DB15964,none +11.2086453,GO:0006701,http://purl.obolibrary.org/obo/GO_0006701,progesterone biosynthetic process +11.2086453,GO:0007009,http://purl.obolibrary.org/obo/GO_0007009,plasma membrane organization +11.2086453,GO:0009453,http://purl.obolibrary.org/obo/GO_0009453,energy taxis +11.2086453,GO:0010496,http://purl.obolibrary.org/obo/GO_0010496,intercellular transport +11.2086453,GO:0033046,http://purl.obolibrary.org/obo/GO_0033046,negative regulation of sister chromatid segregation +11.2086453,GO:0033048,http://purl.obolibrary.org/obo/GO_0033048,negative regulation of mitotic sister chromatid segregation +11.2086453,GO:0042427,http://purl.obolibrary.org/obo/GO_0042427,serotonin biosynthetic process +11.2086453,GO:0043396,http://purl.obolibrary.org/obo/GO_0043396,corticotropin-releasing hormone secretion +11.2086453,GO:0044352,http://purl.obolibrary.org/obo/GO_0044352,pinosome +11.2086453,GO:0045841,http://purl.obolibrary.org/obo/GO_0045841,negative regulation of mitotic metaphase/anaphase transition +11.2086453,GO:0070971,http://purl.obolibrary.org/obo/GO_0070971,endoplasmic reticulum exit site +11.2086453,GO:1901618,http://purl.obolibrary.org/obo/GO_1901618,organic hydroxy compound transmembrane transporter activity +11.2086453,GO:2000816,http://purl.obolibrary.org/obo/GO_2000816,negative regulation of mitotic sister chromatid separation +11.2086453,HP:0007700,http://purl.obolibrary.org/obo/HP_0007700,Ocular anterior segment dysgenesis +11.2086453,HP:0100963,http://purl.obolibrary.org/obo/HP_0100963,Hyperesthesia +11.2086453,MONDO:0003248,http://purl.obolibrary.org/obo/MONDO_0003248,adult pineal parenchymal tumor +11.2086453,MONDO:0004191,http://purl.obolibrary.org/obo/MONDO_0004191,nephrogenic adenoma +11.2086453,MONDO:0006068,http://purl.obolibrary.org/obo/MONDO_0006068,ACTH-producing pituitary gland adenoma +11.2086453,MONDO:0009665,http://purl.obolibrary.org/obo/MONDO_0009665,biotinidase deficiency +11.2086453,MONDO:0016298,http://purl.obolibrary.org/obo/MONDO_0016298,postlingual non-syndromic genetic deafness +11.2086453,MONDO:0019719,http://purl.obolibrary.org/obo/MONDO_0019719,congenital anomaly of kidney and urinary tract +11.2086453,MONDO:0044785,http://purl.obolibrary.org/obo/MONDO_0044785,desmoplastic melanoma +11.2086453,NCBITaxon:474492,http://purl.obolibrary.org/obo/NCBITaxon_474492,none +11.2086453,NCBITaxon:7213,http://purl.obolibrary.org/obo/NCBITaxon_7213,none +11.2086453,PR:000004738,http://purl.obolibrary.org/obo/PR_000004738,class E basic helix-loop-helix protein 22 +11.2086453,PR:000006372,http://purl.obolibrary.org/obo/PR_000006372,deleted in esophageal cancer 1 +11.2086453,PR:000008147,http://purl.obolibrary.org/obo/PR_000008147,Golgi-associated PDZ and coiled-coil motif-containing protein +11.2086453,PR:000009687,http://purl.obolibrary.org/obo/PR_000009687,serine/threonine-protein kinase LATS2 +11.2086453,PR:000010053,http://purl.obolibrary.org/obo/PR_000010053,melanoma-associated antigen 1 +11.2086453,PR:O23273,http://purl.obolibrary.org/obo/PR_O23273,none +11.2086453,PR:P41909,http://purl.obolibrary.org/obo/PR_P41909,none +11.2086453,PR:Q6DGD3,http://purl.obolibrary.org/obo/PR_Q6DGD3,none +11.2086453,UBERON:0008572,http://purl.obolibrary.org/obo/UBERON_0008572,posterior crico-arytenoid +11.2118453,CHEBI:71212,http://purl.obolibrary.org/obo/CHEBI_71212,prohormone +11.2118453,DRUGBANK:DB02893,http://purl.obolibrary.org/obo/DRUGBANK_DB02893,none +11.2118453,DRUGBANK:DB03001,http://purl.obolibrary.org/obo/DRUGBANK_DB03001,none +11.2118453,DRUGBANK:DB03977,http://purl.obolibrary.org/obo/DRUGBANK_DB03977,none +11.2118453,DRUGBANK:DB08987,http://purl.obolibrary.org/obo/DRUGBANK_DB08987,none +11.2118453,DRUGBANK:DB09167,http://purl.obolibrary.org/obo/DRUGBANK_DB09167,none +11.2118453,GO:0001573,http://purl.obolibrary.org/obo/GO_0001573,ganglioside metabolic process +11.2118453,GO:0008240,http://purl.obolibrary.org/obo/GO_0008240,tripeptidyl-peptidase activity +11.2118453,GO:0010233,http://purl.obolibrary.org/obo/GO_0010233,phloem transport +11.2118453,GO:0042025,http://purl.obolibrary.org/obo/GO_0042025,host cell nucleus +11.2118453,GO:0043065,http://purl.obolibrary.org/obo/GO_0043065,positive regulation of apoptotic process +11.2118453,GO:0043647,http://purl.obolibrary.org/obo/GO_0043647,inositol phosphate metabolic process +11.2118453,MONDO:0003395,http://purl.obolibrary.org/obo/MONDO_0003395,testicular granulosa cell tumor +11.2118453,MONDO:0004286,http://purl.obolibrary.org/obo/MONDO_0004286,pancreatic intraductal papillary-mucinous neoplasm +11.2118453,MONDO:0019148,http://purl.obolibrary.org/obo/MONDO_0019148,Wolman disease +11.2118453,MONDO:0019409,http://purl.obolibrary.org/obo/MONDO_0019409,idiopathic juvenile osteoporosis +11.2118453,MOP:0000731,http://purl.obolibrary.org/obo/MOP_0000731,none +11.2118453,NCBITaxon:2704647,http://purl.obolibrary.org/obo/NCBITaxon_2704647,Metakinetoplastina +11.2118453,NCBITaxon:2704949,http://purl.obolibrary.org/obo/NCBITaxon_2704949,Trypanosomatida +11.2118453,NCBITaxon:43755,http://purl.obolibrary.org/obo/NCBITaxon_43755,Oestroidea +11.2118453,NCBITaxon:5654,http://purl.obolibrary.org/obo/NCBITaxon_5654,Trypanosomatidae +11.2118453,PR:000003691,http://purl.obolibrary.org/obo/PR_000003691,alpha-actinin-4 +11.2118453,PR:000005445,http://purl.obolibrary.org/obo/PR_000005445,cysteine and histidine-rich domain-containing protein 1 +11.2118453,PR:000005883,http://purl.obolibrary.org/obo/PR_000005883,Crk-like protein +11.2118453,PR:000006341,http://purl.obolibrary.org/obo/PR_000006341,DNA damage-binding protein 2 +11.2118453,PR:000013636,http://purl.obolibrary.org/obo/PR_000013636,Ras-related protein Rab-6A +11.2118453,PR:000014917,http://purl.obolibrary.org/obo/PR_000014917,sodium/bile acid cotransporter +11.2118453,PR:Q9FM19,http://purl.obolibrary.org/obo/PR_Q9FM19,none +11.2118453,PR:Q9LHA7,http://purl.obolibrary.org/obo/PR_Q9LHA7,none +11.2118453,PR:Q9SRH6,http://purl.obolibrary.org/obo/PR_Q9SRH6,none +11.2118453,UBERON:0005564,http://purl.obolibrary.org/obo/UBERON_0005564,gonad primordium +11.2118453,UBERON:0010152,http://purl.obolibrary.org/obo/UBERON_0010152,skin mucus +11.2150556,CHEBI:15705,http://purl.obolibrary.org/obo/CHEBI_15705,L-alpha-amino acid +11.2150556,DRUGBANK:DB02552,http://purl.obolibrary.org/obo/DRUGBANK_DB02552,none +11.2150556,DRUGBANK:DB04911,http://purl.obolibrary.org/obo/DRUGBANK_DB04911,none +11.2150556,DRUGBANK:DB05013,http://purl.obolibrary.org/obo/DRUGBANK_DB05013,none +11.2150556,DRUGBANK:DB05990,http://purl.obolibrary.org/obo/DRUGBANK_DB05990,none +11.2150556,DRUGBANK:DB11295,http://purl.obolibrary.org/obo/DRUGBANK_DB11295,none +11.2150556,DRUGBANK:DB11785,http://purl.obolibrary.org/obo/DRUGBANK_DB11785,none +11.2150556,DRUGBANK:DB12083,http://purl.obolibrary.org/obo/DRUGBANK_DB12083,none +11.2150556,DRUGBANK:DB14061,http://purl.obolibrary.org/obo/DRUGBANK_DB14061,none +11.2150556,GO:0000322,http://purl.obolibrary.org/obo/GO_0000322,storage vacuole +11.2150556,GO:0009032,http://purl.obolibrary.org/obo/GO_0009032,thymidine phosphorylase activity +11.2150556,GO:0098739,http://purl.obolibrary.org/obo/GO_0098739,import across plasma membrane +11.2150556,HP:0000657,http://purl.obolibrary.org/obo/HP_0000657,Oculomotor apraxia +11.2150556,MONDO:0003194,http://purl.obolibrary.org/obo/MONDO_0003194,hemangioma of lung +11.2150556,MONDO:0011293,http://purl.obolibrary.org/obo/MONDO_0011293,Homocysteinemia +11.2150556,MONDO:0011414,http://purl.obolibrary.org/obo/MONDO_0011414,Peters anomaly +11.2150556,MONDO:0019508,http://purl.obolibrary.org/obo/MONDO_0019508,van der Woude syndrome +11.2150556,MONDO:0020220,http://purl.obolibrary.org/obo/MONDO_0020220,corneoiridogoniodysgenesis +11.2150556,MONDO:0024813,http://purl.obolibrary.org/obo/MONDO_0024813,pulmonary sulcus neoplasm +11.2150556,NCBITaxon:6448,http://purl.obolibrary.org/obo/NCBITaxon_6448,Gastropoda +11.2150556,PR:000000361,http://purl.obolibrary.org/obo/PR_000000361,E3 ubiquitin-protein ligase SMURF1 +11.2150556,PR:000004774,http://purl.obolibrary.org/obo/PR_000004774,bone morphogenetic protein 3 +11.2150556,PR:000006750,http://purl.obolibrary.org/obo/PR_000006750,dual specificity protein phosphatase 26 +11.2150556,PR:000006781,http://purl.obolibrary.org/obo/PR_000006781,dual specificity tyrosine-phosphorylation-regulated kinase 1A +11.2150556,PR:000013451,http://purl.obolibrary.org/obo/PR_000013451,tyrosine-protein phosphatase non-receptor type 13 +11.2150556,PR:000016558,http://purl.obolibrary.org/obo/PR_000016558,TP53-binding protein 1 +11.2150556,PR:000023561,http://purl.obolibrary.org/obo/PR_000023561,none +11.2150556,PR:P46309,http://purl.obolibrary.org/obo/PR_P46309,none +11.2150556,PR:P53629,http://purl.obolibrary.org/obo/PR_P53629,none +11.2150556,PR:Q04412,http://purl.obolibrary.org/obo/PR_Q04412,none +11.2150556,PR:Q12387,http://purl.obolibrary.org/obo/PR_Q12387,none +11.2150556,PR:Q42564,http://purl.obolibrary.org/obo/PR_Q42564,none +11.2150556,SO:0000280,http://purl.obolibrary.org/obo/SO_0000280,engineered_gene +11.2150556,UBERON:0012075,http://purl.obolibrary.org/obo/UBERON_0012075,replacement bone +11.2182762,CL:0010022,http://purl.obolibrary.org/obo/CL_0010022,cardiac neuron +11.2182762,DRUGBANK:DB02925,http://purl.obolibrary.org/obo/DRUGBANK_DB02925,none +11.2182762,GO:0007320,http://purl.obolibrary.org/obo/GO_0007320,insemination +11.2182762,GO:0071107,http://purl.obolibrary.org/obo/GO_0071107,response to parathyroid hormone +11.2182762,GO:1904738,http://purl.obolibrary.org/obo/GO_1904738,vascular associated smooth muscle cell migration +11.2182762,HP:0002812,http://purl.obolibrary.org/obo/HP_0002812,Coxa vara +11.2182762,HP:0002823,http://purl.obolibrary.org/obo/HP_0002823,Abnormality of femur morphology +11.2182762,HP:0003366,http://purl.obolibrary.org/obo/HP_0003366,Abnormal femoral neck/head morphology +11.2182762,HP:0003367,http://purl.obolibrary.org/obo/HP_0003367,Abnormal femoral neck morphology +11.2182762,HP:0040069,http://purl.obolibrary.org/obo/HP_0040069,Abnormal lower limb bone morphology +11.2182762,MONDO:0002249,http://purl.obolibrary.org/obo/MONDO_0002249,thrombocytosis disease +11.2182762,MONDO:0024333,http://purl.obolibrary.org/obo/MONDO_0024333,sciatica +11.2182762,NCBITaxon:363628,http://purl.obolibrary.org/obo/NCBITaxon_363628,none +11.2182762,PR:000007642,http://purl.obolibrary.org/obo/PR_000007642,forkhead box protein O4 +11.2182762,PR:000008155,http://purl.obolibrary.org/obo/PR_000008155,pancreatic secretory granule membrane major glycoprotein GP2 +11.2182762,PR:000009237,http://purl.obolibrary.org/obo/PR_000009237,anosmin-1 +11.2182762,PR:000011212,http://purl.obolibrary.org/obo/PR_000011212,ninein +11.2182762,PR:000012690,http://purl.obolibrary.org/obo/PR_000012690,PRKCA-binding protein +11.2182762,PR:000015213,http://purl.obolibrary.org/obo/PR_000015213,sodium/hydrogen exchanger 2 +11.2182762,PR:000016536,http://purl.obolibrary.org/obo/PR_000016536,mitochondrial import receptor subunit TOM40 +11.2182762,PR:000017342,http://purl.obolibrary.org/obo/PR_000017342,vacuolar protein sorting-associated protein 4A +11.2182762,PR:000029949,http://purl.obolibrary.org/obo/PR_000029949,glutathione S-transferase omega +11.2182762,PR:P0CY27,http://purl.obolibrary.org/obo/PR_P0CY27,none +11.2215072,CL:0002165,http://purl.obolibrary.org/obo/CL_0002165,phalangeal cell +11.2215072,GO:0008033,http://purl.obolibrary.org/obo/GO_0008033,tRNA processing +11.2215072,GO:0015881,http://purl.obolibrary.org/obo/GO_0015881,creatine transmembrane transport +11.2215072,GO:0051259,http://purl.obolibrary.org/obo/GO_0051259,protein complex oligomerization +11.2215072,GO:1903038,http://purl.obolibrary.org/obo/GO_1903038,negative regulation of leukocyte cell-cell adhesion +11.2215072,GO:1903308,http://purl.obolibrary.org/obo/GO_1903308,none +11.2215072,HP:0004313,http://purl.obolibrary.org/obo/HP_0004313,Decreased circulating antibody level +11.2215072,HP:0033354,http://purl.obolibrary.org/obo/HP_0033354,Abnormal urine metabolite level +11.2215072,MONDO:0003957,http://purl.obolibrary.org/obo/MONDO_0003957,adult pineoblastoma +11.2215072,MONDO:0006071,http://purl.obolibrary.org/obo/MONDO_0006071,adenofibroma +11.2215072,MONDO:0006759,http://purl.obolibrary.org/obo/MONDO_0006759,femoral neuropathy +11.2215072,MONDO:0021722,http://purl.obolibrary.org/obo/MONDO_0021722,vulvodynia +11.2215072,NCBITaxon#:taxonomic:rank,http://purl.obolibrary.org/obo/NCBITaxon#_taxonomic_rank,none +11.2215072,PR:000005290,http://purl.obolibrary.org/obo/PR_000005290,phosphatidate cytidylyltransferase 1 +11.2215072,PR:000006693,http://purl.obolibrary.org/obo/PR_000006693,desmocollin-2 +11.2215072,PR:000008163,http://purl.obolibrary.org/obo/PR_000008163,glypican-1 +11.2215072,PR:P25843,http://purl.obolibrary.org/obo/PR_P25843,none +11.2215072,UBERON:0011117,http://purl.obolibrary.org/obo/UBERON_0011117,superior tibiofibular joint +11.2247487,CL:0000267,http://purl.obolibrary.org/obo/CL_0000267,none +11.2247487,CL:0000628,http://purl.obolibrary.org/obo/CL_0000628,photosynthetic cell +11.2247487,DRUGBANK:DB00180,http://purl.obolibrary.org/obo/DRUGBANK_DB00180,none +11.2247487,DRUGBANK:DB00980,http://purl.obolibrary.org/obo/DRUGBANK_DB00980,none +11.2247487,GO:0071806,http://purl.obolibrary.org/obo/GO_0071806,protein transmembrane transport +11.2247487,HP:0010702,http://purl.obolibrary.org/obo/HP_0010702,Increased circulating antibody level +11.2247487,MONDO:0000960,http://purl.obolibrary.org/obo/MONDO_0000960,diabetic peripheral angiopathy +11.2247487,MONDO:0003837,http://purl.obolibrary.org/obo/MONDO_0003837,TSH producing pituitary tumor +11.2247487,MONDO:0005888,http://purl.obolibrary.org/obo/MONDO_0005888,ornithosis +11.2247487,MONDO:0006312,http://purl.obolibrary.org/obo/MONDO_0006312,myofibroma +11.2247487,MONDO:0009330,http://purl.obolibrary.org/obo/MONDO_0009330,"hemangiopericytoma, malignant" +11.2247487,MONDO:0010134,http://purl.obolibrary.org/obo/MONDO_0010134,Pendred syndrome +11.2247487,PR:000001534,http://purl.obolibrary.org/obo/PR_000001534,G-protein coupled receptor 55 +11.2247487,PR:000007514,http://purl.obolibrary.org/obo/PR_000007514,four and a half LIM domains protein 2 +11.2247487,PR:000010743,http://purl.obolibrary.org/obo/PR_000010743,"protein MTO1, mitochondrial" +11.2247487,PR:000011031,http://purl.obolibrary.org/obo/PR_000011031,neutrophil cytosol factor 2 +11.2247487,PR:000013269,http://purl.obolibrary.org/obo/PR_000013269,vitamin K-dependent protein S +11.2247487,PR:000015411,http://purl.obolibrary.org/obo/PR_000015411,sortilin-related receptor +11.2247487,PR:000022037,http://purl.obolibrary.org/obo/PR_000022037,none +11.2247487,UBERON:0001819,http://purl.obolibrary.org/obo/UBERON_0001819,palpebral fissure +11.2247487,UBERON:0010186,http://purl.obolibrary.org/obo/UBERON_0010186,male urethral gland +11.2247487,UBERON:2001457,http://purl.obolibrary.org/obo/UBERON_2001457,postcranial axial cartilage +11.2280007,CHEBI:50242,http://purl.obolibrary.org/obo/CHEBI_50242,enzyme reactivator +11.2280007,CL:0002481,http://purl.obolibrary.org/obo/CL_0002481,peritubular myoid cell +11.2280007,CL:1000491,http://purl.obolibrary.org/obo/CL_1000491,mesothelial cell of pleura +11.2280007,DRUGBANK:DB12221,http://purl.obolibrary.org/obo/DRUGBANK_DB12221,none +11.2280007,DRUGBANK:DB12749,http://purl.obolibrary.org/obo/DRUGBANK_DB12749,none +11.2280007,DRUGBANK:DB15989,http://purl.obolibrary.org/obo/DRUGBANK_DB15989,none +11.2280007,GO:0004775,http://purl.obolibrary.org/obo/GO_0004775,succinate-CoA ligase (ADP-forming) activity +11.2280007,GO:0032133,http://purl.obolibrary.org/obo/GO_0032133,chromosome passenger complex +11.2280007,GO:0034111,http://purl.obolibrary.org/obo/GO_0034111,negative regulation of homotypic cell-cell adhesion +11.2280007,GO:0035966,http://purl.obolibrary.org/obo/GO_0035966,response to topologically incorrect protein +11.2280007,GO:0048562,http://purl.obolibrary.org/obo/GO_0048562,embryonic organ morphogenesis +11.2280007,GO:0070988,http://purl.obolibrary.org/obo/GO_0070988,demethylation +11.2280007,MONDO:0002274,http://purl.obolibrary.org/obo/MONDO_0002274,monoclonal paraproteinemia disease +11.2280007,MONDO:0002564,http://purl.obolibrary.org/obo/MONDO_0002564,jejunal neoplasm +11.2280007,MONDO:0019509,http://purl.obolibrary.org/obo/MONDO_0019509,cutaneous leukocytoclastic angiitis +11.2280007,NCBITaxon:11840,http://purl.obolibrary.org/obo/NCBITaxon_11840,none +11.2280007,PR:000002023,http://purl.obolibrary.org/obo/PR_000002023,NKG2-A/NKG2-B type II integral membrane protein +11.2280007,PR:000005609,http://purl.obolibrary.org/obo/PR_000005609,calsyntenin-1 +11.2280007,PR:000007023,http://purl.obolibrary.org/obo/PR_000007023,ETS-related transcription factor Elf-4 +11.2280007,PR:000007081,http://purl.obolibrary.org/obo/PR_000007081,gamma-enolase +11.2280007,PR:000012423,http://purl.obolibrary.org/obo/PR_000012423,pericentrin +11.2280007,PR:000012622,http://purl.obolibrary.org/obo/PR_000012622,membrane-associated progesterone receptor component 1 +11.2280007,PR:000012791,http://purl.obolibrary.org/obo/PR_000012791,plakophilin-2 +11.2280007,PR:000014516,http://purl.obolibrary.org/obo/PR_000014516,sodium channel and clathrin linker 1 +11.2280007,PR:000017566,http://purl.obolibrary.org/obo/PR_000017566,zinc finger and BTB domain-containing protein 17 +11.2280007,PR:000034168,http://purl.obolibrary.org/obo/PR_000034168,none +11.2280007,PR:P40379,http://purl.obolibrary.org/obo/PR_P40379,none +11.2280007,PR:Q9SM23,http://purl.obolibrary.org/obo/PR_Q9SM23,none +11.2280007,SO:0000190,http://purl.obolibrary.org/obo/SO_0000190,five_prime_intron +11.2280007,UBERON:0001747,http://purl.obolibrary.org/obo/UBERON_0001747,parenchyma of thyroid gland +11.2280007,UBERON:0003052,http://purl.obolibrary.org/obo/UBERON_0003052,midbrain-hindbrain boundary +11.2280007,UBERON:0005990,http://purl.obolibrary.org/obo/UBERON_0005990,aortic valve cusp +11.2280007,UBERON:0007367,http://purl.obolibrary.org/obo/UBERON_0007367,surface of tongue +11.2280007,UBERON:0007412,http://purl.obolibrary.org/obo/UBERON_0007412,midbrain raphe nuclei +11.2280007,UBERON:0010312,http://purl.obolibrary.org/obo/UBERON_0010312,immature eye +11.2312634,CHEBI:17089,http://purl.obolibrary.org/obo/CHEBI_17089,glycoprotein +11.2312634,CL:0001032,http://purl.obolibrary.org/obo/CL_0001032,cortical granule cell +11.2312634,DRUGBANK:DB01746,http://purl.obolibrary.org/obo/DRUGBANK_DB01746,none +11.2312634,DRUGBANK:DB04808,http://purl.obolibrary.org/obo/DRUGBANK_DB04808,none +11.2312634,DRUGBANK:DB04871,http://purl.obolibrary.org/obo/DRUGBANK_DB04871,none +11.2312634,DRUGBANK:DB07931,http://purl.obolibrary.org/obo/DRUGBANK_DB07931,none +11.2312634,DRUGBANK:DB08768,http://purl.obolibrary.org/obo/DRUGBANK_DB08768,none +11.2312634,GO:0001632,http://purl.obolibrary.org/obo/GO_0001632,leukotriene B4 receptor activity +11.2312634,GO:0001942,http://purl.obolibrary.org/obo/GO_0001942,hair follicle development +11.2312634,GO:0003983,http://purl.obolibrary.org/obo/GO_0003983,UTP:glucose-1-phosphate uridylyltransferase activity +11.2312634,GO:0007128,http://purl.obolibrary.org/obo/GO_0007128,meiotic prophase I +11.2312634,GO:0015936,http://purl.obolibrary.org/obo/GO_0015936,coenzyme A metabolic process +11.2312634,GO:0036464,http://purl.obolibrary.org/obo/GO_0036464,cytoplasmic ribonucleoprotein granule +11.2312634,GO:0042171,http://purl.obolibrary.org/obo/GO_0042171,lysophosphatidic acid acyltransferase activity +11.2312634,MONDO:0001950,http://purl.obolibrary.org/obo/MONDO_0001950,corneal ectasia +11.2312634,MONDO:0003539,http://purl.obolibrary.org/obo/MONDO_0003539,T-cell adult acute lymphocytic leukemia +11.2312634,MONDO:0008306,http://purl.obolibrary.org/obo/MONDO_0008306,ABri amyloidosis +11.2312634,MONDO:0015141,http://purl.obolibrary.org/obo/MONDO_0015141,disorder of medulla oblongata +11.2312634,MONDO:0020708,http://purl.obolibrary.org/obo/MONDO_0020708,brachial amyotrophic diplegia +11.2312634,NCBITaxon:12036,http://purl.obolibrary.org/obo/NCBITaxon_12036,none +11.2312634,NCBITaxon:12211,http://purl.obolibrary.org/obo/NCBITaxon_12211,none +11.2312634,NCBITaxon:30005,http://purl.obolibrary.org/obo/NCBITaxon_30005,Anoplura +11.2312634,PR:000002026,http://purl.obolibrary.org/obo/PR_000002026,T-cell surface glycoprotein CD1b +11.2312634,PR:000006026,http://purl.obolibrary.org/obo/PR_000006026,cathepsin E +11.2312634,PR:000009015,http://purl.obolibrary.org/obo/PR_000009015,U3 small nucleolar ribonucleoprotein protein IMP3 +11.2312634,PR:000009426,http://purl.obolibrary.org/obo/PR_000009426,killer cell lectin-like receptor subfamily G member 1 +11.2312634,PR:000010045,http://purl.obolibrary.org/obo/PR_000010045,transcription factor Maf +11.2312634,PR:000010130,http://purl.obolibrary.org/obo/PR_000010130,mitogen-activated protein kinase kinase kinase 11 +11.2312634,PR:000010246,http://purl.obolibrary.org/obo/PR_000010246,DNA replication licensing factor MCM4 +11.2312634,PR:000010406,http://purl.obolibrary.org/obo/PR_000010406,E3 ubiquitin-protein ligase Midline-1 +11.2312634,PR:000010808,http://purl.obolibrary.org/obo/PR_000010808,c-Myc-binding protein +11.2312634,PR:000010868,http://purl.obolibrary.org/obo/PR_000010868,myosin-VI +11.2312634,PR:000014593,http://purl.obolibrary.org/obo/PR_000014593,protein transport protein Sec31A +11.2312634,PR:000016832,http://purl.obolibrary.org/obo/PR_000016832,"elongation factor Tu, mitochondrial" +11.2312634,PR:000017613,http://purl.obolibrary.org/obo/PR_000017613,palmitoyltransferase ZDHHC2 +11.2312634,PR:000029533,http://purl.obolibrary.org/obo/PR_000029533,hemoglobin subunit epsilon +11.2312634,PR:P43634,http://purl.obolibrary.org/obo/PR_P43634,none +11.2312634,SO:0001974,http://purl.obolibrary.org/obo/SO_0001974,CTCF_binding_site +11.2312634,UBERON:0004344,http://purl.obolibrary.org/obo/UBERON_0004344,cardinal vein +11.2312634,UBERON:0008465,http://purl.obolibrary.org/obo/UBERON_0008465,abductor pollicis brevis muscle +11.2345367,CHEBI:18111,http://purl.obolibrary.org/obo/CHEBI_18111,ribosomal RNA +11.2345367,CL:0000269,http://purl.obolibrary.org/obo/CL_0000269,none +11.2345367,CL:1001435,http://purl.obolibrary.org/obo/CL_1001435,periglomerular cell +11.2345367,DRUGBANK:DB02831,http://purl.obolibrary.org/obo/DRUGBANK_DB02831,none +11.2345367,DRUGBANK:DB04752,http://purl.obolibrary.org/obo/DRUGBANK_DB04752,none +11.2345367,DRUGBANK:DB13358,http://purl.obolibrary.org/obo/DRUGBANK_DB13358,none +11.2345367,GO:0002164,http://purl.obolibrary.org/obo/GO_0002164,larval development +11.2345367,GO:0004361,http://purl.obolibrary.org/obo/GO_0004361,glutaryl-CoA dehydrogenase activity +11.2345367,GO:0006600,http://purl.obolibrary.org/obo/GO_0006600,creatine metabolic process +11.2345367,GO:0050868,http://purl.obolibrary.org/obo/GO_0050868,negative regulation of T cell activation +11.2345367,GO:0097366,http://purl.obolibrary.org/obo/GO_0097366,response to bronchodilator +11.2345367,GO:0099023,http://purl.obolibrary.org/obo/GO_0099023,vesicle tethering complex +11.2345367,MONDO:0007888,http://purl.obolibrary.org/obo/MONDO_0007888,hereditary leiomyomatosis and renal cell cancer +11.2345367,MONDO:0023642,http://purl.obolibrary.org/obo/MONDO_0023642,Weber syndrome +11.2345367,PR:000005734,http://purl.obolibrary.org/obo/PR_000005734,coatomer subunit beta +11.2345367,PR:000007995,http://purl.obolibrary.org/obo/PR_000007995,gap junction alpha-8 protein +11.2345367,PR:000009053,http://purl.obolibrary.org/obo/PR_000009053,"phosphatidylinositol 3,4,5-trisphosphate 5-phosphatase 2" +11.2345367,PR:000009677,http://purl.obolibrary.org/obo/PR_000009677,ceramide synthase 1 +11.2345367,PR:000011472,http://purl.obolibrary.org/obo/PR_000011472,neurotensin/neuromedin N +11.2345367,PR:000012765,http://purl.obolibrary.org/obo/PR_000012765,piwi-like protein 4 +11.2345367,PR:P26990,http://purl.obolibrary.org/obo/PR_P26990,none +11.2345367,PR:P53258,http://purl.obolibrary.org/obo/PR_P53258,none +11.2345367,PR:Q00772,http://purl.obolibrary.org/obo/PR_Q00772,none +11.2345367,PR:Q55F68,http://purl.obolibrary.org/obo/PR_Q55F68,none +11.2345367,SO:0000862,http://purl.obolibrary.org/obo/SO_0000862,capped_mRNA +11.2345367,UBERON:0002104,http://purl.obolibrary.org/obo/UBERON_0002104,visual system +11.2378208,CL:0002489,http://purl.obolibrary.org/obo/CL_0002489,double negative thymocyte +11.2378208,DRUGBANK:DB11705,http://purl.obolibrary.org/obo/DRUGBANK_DB11705,none +11.2378208,GO:0004379,http://purl.obolibrary.org/obo/GO_0004379,glycylpeptide N-tetradecanoyltransferase activity +11.2378208,GO:0008785,http://purl.obolibrary.org/obo/GO_0008785,alkyl hydroperoxide reductase activity +11.2378208,GO:0040001,http://purl.obolibrary.org/obo/GO_0040001,establishment of mitotic spindle localization +11.2378208,GO:0045174,http://purl.obolibrary.org/obo/GO_0045174,glutathione dehydrogenase (ascorbate) activity +11.2378208,GO:0050864,http://purl.obolibrary.org/obo/GO_0050864,regulation of B cell activation +11.2378208,HP:0200042,http://purl.obolibrary.org/obo/HP_0200042,Skin ulcer +11.2378208,MONDO:0015617,http://purl.obolibrary.org/obo/MONDO_0015617,genetic gastro-esophageal disease +11.2378208,MONDO:0015762,http://purl.obolibrary.org/obo/MONDO_0015762,progressive familial intrahepatic cholestasis +11.2378208,MONDO:0017326,http://purl.obolibrary.org/obo/MONDO_0017326,infective dermatitis associated with HTLV-1 +11.2378208,MONDO:0018306,http://purl.obolibrary.org/obo/MONDO_0018306,Griscelli syndrome +11.2378208,NCBITaxon:12145,http://purl.obolibrary.org/obo/NCBITaxon_12145,none +11.2378208,PR:000001670,http://purl.obolibrary.org/obo/PR_000001670,somatostatin receptor type 3 +11.2378208,PR:000008056,http://purl.obolibrary.org/obo/PR_000008056,"glutamate dehydrogenase 1, mitochondrial" +11.2378208,PR:000008451,http://purl.obolibrary.org/obo/PR_000008451,hyaluronan synthase 3 +11.2378208,PR:000010273,http://purl.obolibrary.org/obo/PR_000010273,NADP-dependent malic enzyme +11.2378208,PR:000010802,http://purl.obolibrary.org/obo/PR_000010802,Myb-related protein B +11.2378208,PR:000012705,http://purl.obolibrary.org/obo/PR_000012705,polymeric immunoglobulin receptor +11.2378208,PR:000015583,http://purl.obolibrary.org/obo/PR_000015583,protein sprouty homolog 2 +11.2378208,PR:000016509,http://purl.obolibrary.org/obo/PR_000016509,"troponin T, cardiac muscle" +11.2378208,PR:000016548,http://purl.obolibrary.org/obo/PR_000016548,DNA topoisomerase 2-binding protein 1 +11.2378208,PR:000029511,http://purl.obolibrary.org/obo/PR_000029511,GNAS gene translation product +11.2378208,PR:O24466,http://purl.obolibrary.org/obo/PR_O24466,none +11.2378208,PR:P13104,http://purl.obolibrary.org/obo/PR_P13104,none +11.2378208,SO:0000260,http://purl.obolibrary.org/obo/SO_0000260,glutamyl_tRNA +11.2378208,UBERON:0002366,http://purl.obolibrary.org/obo/UBERON_0002366,bulbo-urethral gland +11.2411157,CHEBI:16480,http://purl.obolibrary.org/obo/CHEBI_16480,nitric oxide +11.2411157,CHEBI:23016,http://purl.obolibrary.org/obo/CHEBI_23016,carbonates +11.2411157,CHEBI:46721,http://purl.obolibrary.org/obo/CHEBI_46721,carbonate salt +11.2411157,CL:0001033,http://purl.obolibrary.org/obo/CL_0001033,hippocampal granule cell +11.2411157,CL:0002079,http://purl.obolibrary.org/obo/CL_0002079,pancreatic ductal cell +11.2411157,DRUGBANK:DB04688,http://purl.obolibrary.org/obo/DRUGBANK_DB04688,none +11.2411157,DRUGBANK:DB04795,http://purl.obolibrary.org/obo/DRUGBANK_DB04795,none +11.2411157,DRUGBANK:DB06623,http://purl.obolibrary.org/obo/DRUGBANK_DB06623,none +11.2411157,GO:0004608,http://purl.obolibrary.org/obo/GO_0004608,phosphatidylethanolamine N-methyltransferase activity +11.2411157,GO:0006287,http://purl.obolibrary.org/obo/GO_0006287,"base-excision repair, gap-filling" +11.2411157,GO:0019344,http://purl.obolibrary.org/obo/GO_0019344,cysteine biosynthetic process +11.2411157,GO:0031295,http://purl.obolibrary.org/obo/GO_0031295,T cell costimulation +11.2411157,GO:0031514,http://purl.obolibrary.org/obo/GO_0031514,motile cilium +11.2411157,GO:0034332,http://purl.obolibrary.org/obo/GO_0034332,adherens junction organization +11.2411157,GO:0034333,http://purl.obolibrary.org/obo/GO_0034333,adherens junction assembly +11.2411157,GO:0071159,http://purl.obolibrary.org/obo/GO_0071159,NF-kappaB complex +11.2411157,GO:1902023,http://purl.obolibrary.org/obo/GO_1902023,none +11.2411157,MONDO:0001935,http://purl.obolibrary.org/obo/MONDO_0001935,neurogenic arthropathy +11.2411157,MONDO:0006073,http://purl.obolibrary.org/obo/MONDO_0006073,adenomatoid odontogenic tumor +11.2411157,MONDO:0006346,http://purl.obolibrary.org/obo/MONDO_0006346,pancreatic acinar cell carcinoma +11.2411157,MONDO:0044098,http://purl.obolibrary.org/obo/MONDO_0044098,ovarian ectopic pregnancy +11.2411157,MONDO:0044917,http://purl.obolibrary.org/obo/MONDO_0044917,T-lymphoblastic lymphoma +11.2411157,NCBITaxon:121222,http://purl.obolibrary.org/obo/NCBITaxon_121222,Pediculus +11.2411157,NCBITaxon:35304,http://purl.obolibrary.org/obo/NCBITaxon_35304,none +11.2411157,PR:000004192,http://purl.obolibrary.org/obo/PR_000004192,serine/threonine-protein kinase A-Raf +11.2411157,PR:000004569,http://purl.obolibrary.org/obo/PR_000004569,none +11.2411157,PR:000012037,http://purl.obolibrary.org/obo/PR_000012037,alpha-1-acid glycoprotein 1 +11.2411157,PR:000016500,http://purl.obolibrary.org/obo/PR_000016500,tenomodulin +11.2411157,PR:000029120,http://purl.obolibrary.org/obo/PR_000029120,cGMP-dependent protein kinase 1 +11.2411157,UBERON:0015172,http://purl.obolibrary.org/obo/UBERON_0015172,endometrial blood vessel +11.2411157,UBERON:0016509,http://purl.obolibrary.org/obo/UBERON_0016509,cavity of right ventricle +11.2444215,DRUGBANK:DB00689,http://purl.obolibrary.org/obo/DRUGBANK_DB00689,none +11.2444215,DRUGBANK:DB04400,http://purl.obolibrary.org/obo/DRUGBANK_DB04400,none +11.2444215,DRUGBANK:DB11880,http://purl.obolibrary.org/obo/DRUGBANK_DB11880,none +11.2444215,GO:0006297,http://purl.obolibrary.org/obo/GO_0006297,"nucleotide-excision repair, DNA gap filling" +11.2444215,GO:0022413,http://purl.obolibrary.org/obo/GO_0022413,reproductive process in single-celled organism +11.2444215,GO:0030120,http://purl.obolibrary.org/obo/GO_0030120,vesicle coat +11.2444215,GO:0061674,http://purl.obolibrary.org/obo/GO_0061674,gap filling involved in double-strand break repair via nonhomologous end joining +11.2444215,MONDO:0016073,http://purl.obolibrary.org/obo/MONDO_0016073,syndromic microphthalmia +11.2444215,MONDO:0016805,http://purl.obolibrary.org/obo/MONDO_0016805,isolated oxidative phosphorylation complex disorder +11.2444215,MONDO:0056814,http://purl.obolibrary.org/obo/MONDO_0056814,hormone-resistant prostate carcinoma +11.2444215,NCBITaxon:121221,http://purl.obolibrary.org/obo/NCBITaxon_121221,Pediculidae +11.2444215,NCBITaxon:12162,http://purl.obolibrary.org/obo/NCBITaxon_12162,none +11.2444215,PR:000001586,http://purl.obolibrary.org/obo/PR_000001586,galanin receptor type 2 +11.2444215,PR:000005233,http://purl.obolibrary.org/obo/PR_000005233,cadherin-15 +11.2444215,PR:000013884,http://purl.obolibrary.org/obo/PR_000013884,N-acylglucosamine 2-epimerase +11.2444215,PR:000014316,http://purl.obolibrary.org/obo/PR_000014316,retinoschisin +11.2444215,PR:000015340,http://purl.obolibrary.org/obo/PR_000015340,U2 small nuclear ribonucleoprotein A' +11.2444215,PR:O42930,http://purl.obolibrary.org/obo/PR_O42930,none +11.2444215,PR:P09793,http://purl.obolibrary.org/obo/PR_P09793,none +11.2444215,SO:0001158,http://purl.obolibrary.org/obo/SO_0001158,E_box_motif +11.2444215,UBERON:0008876,http://purl.obolibrary.org/obo/UBERON_0008876,hypodermis skeletal muscle layer +11.2444215,UBERON:0010230,http://purl.obolibrary.org/obo/UBERON_0010230,eyeball of camera-type eye +11.2477382,CHEBI:26188,http://purl.obolibrary.org/obo/CHEBI_26188,polyketide +11.2477382,DRUGBANK:DB01429,http://purl.obolibrary.org/obo/DRUGBANK_DB01429,none +11.2477382,DRUGBANK:DB03312,http://purl.obolibrary.org/obo/DRUGBANK_DB03312,none +11.2477382,DRUGBANK:DB14054,http://purl.obolibrary.org/obo/DRUGBANK_DB14054,none +11.2477382,GO:0004846,http://purl.obolibrary.org/obo/GO_0004846,urate oxidase activity +11.2477382,GO:0009567,http://purl.obolibrary.org/obo/GO_0009567,double fertilization forming a zygote and endosperm +11.2477382,HP:0001402,http://purl.obolibrary.org/obo/HP_0001402,Hepatocellular carcinoma +11.2477382,MONDO:0001798,http://purl.obolibrary.org/obo/MONDO_0001798,hypermobility syndrome +11.2477382,MONDO:0006298,http://purl.obolibrary.org/obo/MONDO_0006298,mediastinal malignant germ cell tumor +11.2477382,MONDO:0006690,http://purl.obolibrary.org/obo/MONDO_0006690,carotid artery thrombosis +11.2477382,MONDO:0006811,http://purl.obolibrary.org/obo/MONDO_0006811,intracranial hypotension +11.2477382,MONDO:0007233,http://purl.obolibrary.org/obo/MONDO_0007233,second branchial cleft anomaly +11.2477382,MONDO:0010161,http://purl.obolibrary.org/obo/MONDO_0010161,tyrosinemia type I +11.2477382,MONDO:0015775,http://purl.obolibrary.org/obo/MONDO_0015775,non-rhizomelic chondrodysplasia punctata +11.2477382,MONDO:0017393,http://purl.obolibrary.org/obo/MONDO_0017393,blepharophimosis - intellectual disability syndrome +11.2477382,MONDO:0019771,http://purl.obolibrary.org/obo/MONDO_0019771,oromandibular dystonia +11.2477382,MONDO:0020588,http://purl.obolibrary.org/obo/MONDO_0020588,lung PEComa +11.2477382,MONDO:0021498,http://purl.obolibrary.org/obo/MONDO_0021498,benign neoplasm of placenta +11.2477382,NCBITaxon:10015,http://purl.obolibrary.org/obo/NCBITaxon_10015,none +11.2477382,PR:000002321,http://purl.obolibrary.org/obo/PR_000002321,"cytochrome c, somatic" +11.2477382,PR:000003725,http://purl.obolibrary.org/obo/PR_000003725,disintegrin and metalloproteinase domain-containing protein 9 +11.2477382,PR:000005147,http://purl.obolibrary.org/obo/PR_000005147,copper chaperone for superoxide dismutase +11.2477382,PR:000005295,http://purl.obolibrary.org/obo/PR_000005295,homeobox protein CDX-1 +11.2477382,PR:000005746,http://purl.obolibrary.org/obo/PR_000005746,COP9 signalosome complex subunit 8 +11.2477382,PR:000007069,http://purl.obolibrary.org/obo/PR_000007069,homeobox protein EMX2 +11.2477382,PR:000007999,http://purl.obolibrary.org/obo/PR_000007999,gap junction beta-3 protein +11.2477382,PR:000011455,http://purl.obolibrary.org/obo/PR_000011455,cytosolic 5'-nucleotidase 3A +11.2477382,PR:000039979,http://purl.obolibrary.org/obo/PR_000039979,HMA and SODC domains protein +11.2477382,UBERON:0000959,http://purl.obolibrary.org/obo/UBERON_0000959,optic chiasma +11.2477382,UBERON:0001776,http://purl.obolibrary.org/obo/UBERON_0001776,optic choroid +11.2477382,UBERON:0003069,http://purl.obolibrary.org/obo/UBERON_0003069,otic placode +11.2477382,UBERON:0003461,http://purl.obolibrary.org/obo/UBERON_0003461,shoulder bone +11.2477382,UBERON:0007425,http://purl.obolibrary.org/obo/UBERON_0007425,decussation of diencephalon +11.2477382,UBERON:0015870,http://purl.obolibrary.org/obo/UBERON_0015870,lymph node of head +11.251066,CHEBI:32785,http://purl.obolibrary.org/obo/CHEBI_32785,tyrosinate(2-) +11.251066,CHEBI:50297,http://purl.obolibrary.org/obo/CHEBI_50297,canonical nucleotide residue +11.251066,DRUGBANK:DB00365,http://purl.obolibrary.org/obo/DRUGBANK_DB00365,none +11.251066,DRUGBANK:DB13925,http://purl.obolibrary.org/obo/DRUGBANK_DB13925,none +11.251066,GO:0001504,http://purl.obolibrary.org/obo/GO_0001504,neurotransmitter uptake +11.251066,GO:0004368,http://purl.obolibrary.org/obo/GO_0004368,glycerol-3-phosphate dehydrogenase (quinone) activity +11.251066,GO:0006171,http://purl.obolibrary.org/obo/GO_0006171,cAMP biosynthetic process +11.251066,GO:0007533,http://purl.obolibrary.org/obo/GO_0007533,mating type switching +11.251066,GO:0030586,http://purl.obolibrary.org/obo/GO_0030586,[methionine synthase] reductase activity +11.251066,GO:0072687,http://purl.obolibrary.org/obo/GO_0072687,meiotic spindle +11.251066,MONDO:0005757,http://purl.obolibrary.org/obo/MONDO_0005757,eumycotic mycetoma +11.251066,MONDO:0010420,http://purl.obolibrary.org/obo/MONDO_0010420,X-linked erythropoietic protoporphyria +11.251066,MONDO:0017582,http://purl.obolibrary.org/obo/MONDO_0017582,pituitary adenocarcinoma +11.251066,PR:000001060,http://purl.obolibrary.org/obo/PR_000001060,transient receptor potential cation channel TRPV3 +11.251066,PR:000001909,http://purl.obolibrary.org/obo/PR_000001909,platelet glycoprotein V +11.251066,PR:000010160,http://purl.obolibrary.org/obo/PR_000010160,C-Jun-amino-terminal kinase-interacting protein 1 +11.251066,PR:000010820,http://purl.obolibrary.org/obo/PR_000010820,myosin-1 +11.251066,PR:000012913,http://purl.obolibrary.org/obo/PR_000012913,PMS1 protein homolog 1 +11.251066,PR:000014983,http://purl.obolibrary.org/obo/PR_000014983,solute carrier family 22 member 12 +11.251066,PR:000017434,http://purl.obolibrary.org/obo/PR_000017434,serine/threonine-protein kinase WNK4 +11.251066,PR:P21588,http://purl.obolibrary.org/obo/PR_P21588,none +11.251066,PR:Q03563,http://purl.obolibrary.org/obo/PR_Q03563,none +11.251066,PR:Q61503,http://purl.obolibrary.org/obo/PR_Q61503,none +11.251066,PR:Q9FYB5,http://purl.obolibrary.org/obo/PR_Q9FYB5,none +11.251066,SO:0001764,http://purl.obolibrary.org/obo/SO_0001764,unique_variant +11.251066,UBERON:0004001,http://purl.obolibrary.org/obo/UBERON_0004001,olfactory bulb layer +11.2544049,CHEBI:27208,http://purl.obolibrary.org/obo/CHEBI_27208,unsaturated fatty acid +11.2544049,DRUGBANK:DB10706,http://purl.obolibrary.org/obo/DRUGBANK_DB10706,none +11.2544049,DRUGBANK:DB11420,http://purl.obolibrary.org/obo/DRUGBANK_DB11420,none +11.2544049,GO:0032328,http://purl.obolibrary.org/obo/GO_0032328,alanine transport +11.2544049,GO:1990124,http://purl.obolibrary.org/obo/GO_1990124,messenger ribonucleoprotein complex +11.2544049,MONDO:0000540,http://purl.obolibrary.org/obo/MONDO_0000540,small intestinal neuroendocrine tumor G1 +11.2544049,MONDO:0002354,http://purl.obolibrary.org/obo/MONDO_0002354,benign laryngeal neoplasm +11.2544049,MONDO:0007043,http://purl.obolibrary.org/obo/MONDO_0007043,Pfeiffer syndrome +11.2544049,MONDO:0011266,http://purl.obolibrary.org/obo/MONDO_0011266,myotonic dystrophy type 2 +11.2544049,MONDO:0019547,http://purl.obolibrary.org/obo/MONDO_0019547,Wells syndrome +11.2544049,MONDO:0043361,http://purl.obolibrary.org/obo/MONDO_0043361,May-Thurner syndrome +11.2544049,NCBITaxon:333761,http://purl.obolibrary.org/obo/NCBITaxon_333761,none +11.2544049,PR:000015904,http://purl.obolibrary.org/obo/PR_000015904,synaptotagmin-2 +11.2544049,PR:000016458,http://purl.obolibrary.org/obo/PR_000016458,transmembrane protease serine 4 +11.2544049,PR:000031218,http://purl.obolibrary.org/obo/PR_000031218,probable ATP-dependent RNA helicase DDX4 +11.2544049,PR:P05453,http://purl.obolibrary.org/obo/PR_P05453,none +11.2544049,PR:Q9SZH2,http://purl.obolibrary.org/obo/PR_Q9SZH2,none +11.2544049,SO:0001678,http://purl.obolibrary.org/obo/SO_0001678,regulatory_promoter_element +11.2544049,UBERON:0002278,http://purl.obolibrary.org/obo/UBERON_0002278,perilymphatic space +11.257755,CHEBI:63951,http://purl.obolibrary.org/obo/CHEBI_63951,estrogen receptor agonist +11.257755,CL:0000635,http://purl.obolibrary.org/obo/CL_0000635,Deiter's cell +11.257755,DRUGBANK:DB03604,http://purl.obolibrary.org/obo/DRUGBANK_DB03604,none +11.257755,DRUGBANK:DB08888,http://purl.obolibrary.org/obo/DRUGBANK_DB08888,none +11.257755,DRUGBANK:DB10566,http://purl.obolibrary.org/obo/DRUGBANK_DB10566,none +11.257755,DRUGBANK:DB13030,http://purl.obolibrary.org/obo/DRUGBANK_DB13030,none +11.257755,GO:0004699,http://purl.obolibrary.org/obo/GO_0004699,calcium-independent protein kinase C activity +11.257755,GO:0006768,http://purl.obolibrary.org/obo/GO_0006768,biotin metabolic process +11.257755,GO:0008660,http://purl.obolibrary.org/obo/GO_0008660,1-aminocyclopropane-1-carboxylate deaminase activity +11.257755,GO:0034436,http://purl.obolibrary.org/obo/GO_0034436,glycoprotein transport +11.257755,GO:0045598,http://purl.obolibrary.org/obo/GO_0045598,regulation of fat cell differentiation +11.257755,MONDO:0003901,http://purl.obolibrary.org/obo/MONDO_0003901,cerebellar hemangioblastoma +11.257755,MONDO:0006095,http://purl.obolibrary.org/obo/MONDO_0006095,atypical carcinoid tumor +11.257755,MONDO:0007648,http://purl.obolibrary.org/obo/MONDO_0007648,hereditary diffuse gastric adenocarcinoma +11.257755,MONDO:0007727,http://purl.obolibrary.org/obo/MONDO_0007727,autosomal dominant familial periodic fever +11.257755,MONDO:0016620,http://purl.obolibrary.org/obo/MONDO_0016620,primary hypertrophic osteoarthropathy +11.257755,MONDO:0016747,http://purl.obolibrary.org/obo/MONDO_0016747,primary melanoma of the central nervous system +11.257755,MONDO:0022140,http://purl.obolibrary.org/obo/MONDO_0022140,Charles bonnet syndrome +11.257755,NCBITaxon:11552,http://purl.obolibrary.org/obo/NCBITaxon_11552,none +11.257755,NCBITaxon:144051,http://purl.obolibrary.org/obo/NCBITaxon_144051,Cripavirus +11.257755,PR:000001127,http://purl.obolibrary.org/obo/PR_000001127,cell surface glycoprotein MUC18 +11.257755,PR:000003529,http://purl.obolibrary.org/obo/PR_000003529,"alanine--tRNA ligase, cytoplasmic" +11.257755,PR:000003917,http://purl.obolibrary.org/obo/PR_000003917,"5-aminolevulinate synthase, erythroid-specific, mitochondrial" +11.257755,PR:000004123,http://purl.obolibrary.org/obo/PR_000004123,adenomatous polyposis coli protein 2 +11.257755,PR:000006498,http://purl.obolibrary.org/obo/PR_000006498,H/ACA ribonucleoprotein complex catalytic subunit +11.257755,PR:000006767,http://purl.obolibrary.org/obo/PR_000006767,segment polarity protein dishevelled homolog DVL-2 +11.257755,PR:000010762,http://purl.obolibrary.org/obo/PR_000010762,mucin-17 +11.257755,PR:000012243,http://purl.obolibrary.org/obo/PR_000012243,serine/threonine-protein kinase PAK 4 +11.257755,PR:000013518,http://purl.obolibrary.org/obo/PR_000013518,pyrin domain-containing protein 1 +11.257755,PR:P62670,http://purl.obolibrary.org/obo/PR_P62670,none +11.257755,PR:Q59P39,http://purl.obolibrary.org/obo/PR_Q59P39,none +11.257755,PR:Q93655,http://purl.obolibrary.org/obo/PR_Q93655,none +11.257755,PR:Q96DM3,http://purl.obolibrary.org/obo/PR_Q96DM3,regulator of MON1-CCZ1 complex (human) +11.257755,UBERON:0002703,http://purl.obolibrary.org/obo/UBERON_0002703,precentral gyrus +11.257755,UBERON:0003832,http://purl.obolibrary.org/obo/UBERON_0003832,esophagus muscle +11.257755,UBERON:0006050,http://purl.obolibrary.org/obo/UBERON_0006050,digit 3 +11.257755,UBERON:0006877,http://purl.obolibrary.org/obo/UBERON_0006877,vasculature of liver +11.2611163,CHEBI:33494,http://purl.obolibrary.org/obo/CHEBI_33494,nucleosidyl group +11.2611163,CL:0002211,http://purl.obolibrary.org/obo/CL_0002211,type I muscle cell +11.2611163,CL:0002503,http://purl.obolibrary.org/obo/CL_0002503,adventitial cell +11.2611163,DRUGBANK:DB00957,http://purl.obolibrary.org/obo/DRUGBANK_DB00957,none +11.2611163,DRUGBANK:DB02237,http://purl.obolibrary.org/obo/DRUGBANK_DB02237,none +11.2611163,DRUGBANK:DB06213,http://purl.obolibrary.org/obo/DRUGBANK_DB06213,none +11.2611163,DRUGBANK:DB11876,http://purl.obolibrary.org/obo/DRUGBANK_DB11876,none +11.2611163,GO:0008195,http://purl.obolibrary.org/obo/GO_0008195,phosphatidate phosphatase activity +11.2611163,GO:0030091,http://purl.obolibrary.org/obo/GO_0030091,protein repair +11.2611163,GO:0043205,http://purl.obolibrary.org/obo/GO_0043205,none +11.2611163,GO:0050852,http://purl.obolibrary.org/obo/GO_0050852,T cell receptor signaling pathway +11.2611163,GO:0061013,http://purl.obolibrary.org/obo/GO_0061013,regulation of mRNA catabolic process +11.2611163,MONDO:0006382,http://purl.obolibrary.org/obo/MONDO_0006382,poorly differentiated thyroid gland carcinoma +11.2611163,MONDO:0021036,http://purl.obolibrary.org/obo/MONDO_0021036,keratosis pilaris +11.2611163,MOP:0000634,http://purl.obolibrary.org/obo/MOP_0000634,none +11.2611163,MOP:0000635,http://purl.obolibrary.org/obo/MOP_0000635,none +11.2611163,MOP:0004364,http://purl.obolibrary.org/obo/MOP_0004364,none +11.2611163,NCBITaxon:10244,http://purl.obolibrary.org/obo/NCBITaxon_10244,Monkeypox virus +11.2611163,NCBITaxon:197913,http://purl.obolibrary.org/obo/NCBITaxon_197913,Gammainfluenzavirus +11.2611163,PR:000003905,http://purl.obolibrary.org/obo/PR_000003905,aldo-keto reductase family 1 member C3 +11.2611163,PR:000005128,http://purl.obolibrary.org/obo/PR_000005128,cyclin-G1 +11.2611163,PR:000010205,http://purl.obolibrary.org/obo/PR_000010205,cartilage matrix protein +11.2611163,PR:000014643,http://purl.obolibrary.org/obo/PR_000014643,"selenide, water dikinase 1" +11.2611163,PR:000014894,http://purl.obolibrary.org/obo/PR_000014894,signaling threshold-regulating transmembrane adapter 1 +11.2611163,PR:000017271,http://purl.obolibrary.org/obo/PR_000017271,versican core protein +11.2611163,UBERON:0004721,http://purl.obolibrary.org/obo/UBERON_0004721,crista ampullaris +11.2611163,UBERON:0004780,http://purl.obolibrary.org/obo/UBERON_0004780,gastrointestinal system lamina propria +11.2611163,UBERON:0006654,http://purl.obolibrary.org/obo/UBERON_0006654,perineal body +11.2611163,UBERON:0011146,http://purl.obolibrary.org/obo/UBERON_0011146,silk gland +11.2611163,UBERON:0011512,http://purl.obolibrary.org/obo/UBERON_0011512,puborectalis muscle +11.2611163,UBERON:0012520,http://purl.obolibrary.org/obo/UBERON_0012520,forelimb epitrochlearis muscle +11.2611163,UBERON:0035555,http://purl.obolibrary.org/obo/UBERON_0035555,lateral line sense organ +11.264489,CHEBI:23232,http://purl.obolibrary.org/obo/CHEBI_23232,chromenes +11.264489,CHEBI:24913,http://purl.obolibrary.org/obo/CHEBI_24913,isoprenoid +11.264489,DRUGBANK:DB00496,http://purl.obolibrary.org/obo/DRUGBANK_DB00496,none +11.264489,DRUGBANK:DB04513,http://purl.obolibrary.org/obo/DRUGBANK_DB04513,none +11.264489,DRUGBANK:DB04912,http://purl.obolibrary.org/obo/DRUGBANK_DB04912,none +11.264489,DRUGBANK:DB06153,http://purl.obolibrary.org/obo/DRUGBANK_DB06153,none +11.264489,DRUGBANK:DB09231,http://purl.obolibrary.org/obo/DRUGBANK_DB09231,none +11.264489,MONDO:0000160,http://purl.obolibrary.org/obo/MONDO_0000160,"epilepsy, familial adult myoclonic" +11.264489,MONDO:0002471,http://purl.obolibrary.org/obo/MONDO_0002471,bursitis +11.264489,MONDO:0006280,http://purl.obolibrary.org/obo/MONDO_0006280,lung sclerosing hemangioma +11.264489,MONDO:0016409,http://purl.obolibrary.org/obo/MONDO_0016409,primary congenital hypothyroidism +11.264489,MONDO:0019541,http://purl.obolibrary.org/obo/MONDO_0019541,non-infectious posterior uveitis +11.264489,PR:000004147,http://purl.obolibrary.org/obo/PR_000004147,C->U-editing enzyme APOBEC-1 +11.264489,PR:000005044,http://purl.obolibrary.org/obo/PR_000005044,ubiquitin carboxyl-terminal hydrolase MINDY-3 +11.264489,PR:000007102,http://purl.obolibrary.org/obo/PR_000007102,histone acetyltransferase p300 +11.264489,PR:000011295,http://purl.obolibrary.org/obo/PR_000011295,neuromedin-U +11.264489,PR:000016581,http://purl.obolibrary.org/obo/PR_000016581,tropomyosin alpha-3 chain +11.264489,PR:000036835,http://purl.obolibrary.org/obo/PR_000036835,none +11.264489,PR:O74515,http://purl.obolibrary.org/obo/PR_O74515,none +11.264489,PR:P36583,http://purl.obolibrary.org/obo/PR_P36583,none +11.264489,UBERON:0007225,http://purl.obolibrary.org/obo/UBERON_0007225,lateral entorhinal cortex +11.264489,UBERON:0011122,http://purl.obolibrary.org/obo/UBERON_0011122,cricoarytenoid joint +11.2678731,CHEBI:37404,http://purl.obolibrary.org/obo/CHEBI_37404,elemental copper +11.2678731,DRUGBANK:DB05791,http://purl.obolibrary.org/obo/DRUGBANK_DB05791,none +11.2678731,DRUGBANK:DB10624,http://purl.obolibrary.org/obo/DRUGBANK_DB10624,none +11.2678731,DRUGBANK:DB13069,http://purl.obolibrary.org/obo/DRUGBANK_DB13069,none +11.2678731,GO:0015144,http://purl.obolibrary.org/obo/GO_0015144,carbohydrate transmembrane transporter activity +11.2678731,GO:0017157,http://purl.obolibrary.org/obo/GO_0017157,regulation of exocytosis +11.2678731,GO:1990138,http://purl.obolibrary.org/obo/GO_1990138,neuron projection extension +11.2678731,MONDO:0004374,http://purl.obolibrary.org/obo/MONDO_0004374,adult extraskeletal osteosarcoma +11.2678731,MONDO:0007536,http://purl.obolibrary.org/obo/MONDO_0007536,congenital lobar emphysema +11.2678731,MONDO:0019448,http://purl.obolibrary.org/obo/MONDO_0019448,benign adult familial myoclonic epilepsy +11.2678731,MONDO:0056802,http://purl.obolibrary.org/obo/MONDO_0056802,synovial bursa disease +11.2678731,PR:000001833,http://purl.obolibrary.org/obo/PR_000001833,SLAM family member 1 +11.2678731,PR:000001868,http://purl.obolibrary.org/obo/PR_000001868,interleukin-6 receptor subunit beta +11.2678731,PR:000004384,http://purl.obolibrary.org/obo/PR_000004384,tether containing UBX domain for GLUT4 +11.2678731,PR:000005462,http://purl.obolibrary.org/obo/PR_000005462,acetylcholine receptor subunit beta +11.2678731,PR:000007194,http://purl.obolibrary.org/obo/PR_000007194,syncytin-1 +11.2678731,PR:000008751,http://purl.obolibrary.org/obo/PR_000008751,histidine-rich glycoprotein +11.2678731,PR:000009194,http://purl.obolibrary.org/obo/PR_000009194,protein jagged-2 +11.2678731,PR:000010169,http://purl.obolibrary.org/obo/PR_000010169,mitogen-activated protein kinase scaffold protein 1 +11.2678731,PR:000013485,http://purl.obolibrary.org/obo/PR_000013485,6-pyruvoyl tetrahydrobiopterin synthase +11.2678731,PR:000015243,http://purl.obolibrary.org/obo/PR_000015243,STE20-like serine/threonine-protein kinase +11.2678731,PR:000015390,http://purl.obolibrary.org/obo/PR_000015390,sterol O-acyltransferase 2 +11.2678731,PR:000017044,http://purl.obolibrary.org/obo/PR_000017044,UDP-glucose:glycoprotein glucosyltransferase 1 +11.2678731,PR:000017659,http://purl.obolibrary.org/obo/PR_000017659,rabenosyn-5 +11.2678731,PR:000023487,http://purl.obolibrary.org/obo/PR_000023487,none +11.2678731,PR:000029236,http://purl.obolibrary.org/obo/PR_000029236,none +11.2678731,PR:000031096,http://purl.obolibrary.org/obo/PR_000031096,ATP synthase protein 8 +11.2678731,PR:P00360,http://purl.obolibrary.org/obo/PR_P00360,none +11.2678731,PR:P40472,http://purl.obolibrary.org/obo/PR_P40472,none +11.2678731,PR:Q8LFQ6,http://purl.obolibrary.org/obo/PR_Q8LFQ6,none +11.2678731,PR:Q90423,http://purl.obolibrary.org/obo/PR_Q90423,none +11.2678731,PR:Q9ZNT0,http://purl.obolibrary.org/obo/PR_Q9ZNT0,none +11.2678731,SO:0002127,http://purl.obolibrary.org/obo/SO_0002127,lncRNA_gene +11.2678731,UBERON:0002249,http://purl.obolibrary.org/obo/UBERON_0002249,median artery +11.2678731,UBERON:0004259,http://purl.obolibrary.org/obo/UBERON_0004259,lower arm blood vessel +11.2678731,UBERON:0004480,http://purl.obolibrary.org/obo/UBERON_0004480,musculature of limb +11.2678731,UBERON:0035050,http://purl.obolibrary.org/obo/UBERON_0035050,excretory duct +11.2712687,CHEBI:35443,http://purl.obolibrary.org/obo/CHEBI_35443,anthelminthic drug +11.2712687,CHEBI:35941,http://purl.obolibrary.org/obo/CHEBI_35941,serotonergic agonist +11.2712687,CHEBI:47958,http://purl.obolibrary.org/obo/CHEBI_47958,nicotinic acetylcholine receptor agonist +11.2712687,CL:1000618,http://purl.obolibrary.org/obo/CL_1000618,juxtaglomerular complex cell +11.2712687,DRUGBANK:DB00705,http://purl.obolibrary.org/obo/DRUGBANK_DB00705,none +11.2712687,DRUGBANK:DB04261,http://purl.obolibrary.org/obo/DRUGBANK_DB04261,none +11.2712687,DRUGBANK:DB12792,http://purl.obolibrary.org/obo/DRUGBANK_DB12792,none +11.2712687,DRUGBANK:DB13423,http://purl.obolibrary.org/obo/DRUGBANK_DB13423,none +11.2712687,GO:0004508,http://purl.obolibrary.org/obo/GO_0004508,steroid 17-alpha-monooxygenase activity +11.2712687,GO:0004853,http://purl.obolibrary.org/obo/GO_0004853,uroporphyrinogen decarboxylase activity +11.2712687,GO:0009690,http://purl.obolibrary.org/obo/GO_0009690,cytokinin metabolic process +11.2712687,GO:0009733,http://purl.obolibrary.org/obo/GO_0009733,response to auxin +11.2712687,GO:0010043,http://purl.obolibrary.org/obo/GO_0010043,response to zinc ion +11.2712687,GO:0045430,http://purl.obolibrary.org/obo/GO_0045430,chalcone isomerase activity +11.2712687,MONDO:0002479,http://purl.obolibrary.org/obo/MONDO_0002479,Sertoli-Leydig cell tumor +11.2712687,MONDO:0003038,http://purl.obolibrary.org/obo/MONDO_0003038,dysgraphia +11.2712687,MONDO:0010556,http://purl.obolibrary.org/obo/MONDO_0010556,X-linked chondrodysplasia punctata +11.2712687,MONDO:0015045,http://purl.obolibrary.org/obo/MONDO_0015045,alpha-heavy chain disease +11.2712687,MONDO:0100030,http://purl.obolibrary.org/obo/MONDO_0100030,adolescent/adult-onset epilepsy syndrome +11.2712687,PR:000000712,http://purl.obolibrary.org/obo/PR_000000712,small conductance calcium-activated potassium channel protein 1 +11.2712687,PR:000001088,http://purl.obolibrary.org/obo/PR_000001088,none +11.2712687,PR:000001851,http://purl.obolibrary.org/obo/PR_000001851,4F2 cell-surface antigen heavy chain +11.2712687,PR:000003875,http://purl.obolibrary.org/obo/PR_000003875,AH receptor-interacting protein +11.2712687,PR:000003970,http://purl.obolibrary.org/obo/PR_000003970,"alkaline phosphatase, germ cell type" +11.2712687,PR:000005456,http://purl.obolibrary.org/obo/PR_000005456,neuronal acetylcholine receptor subunit alpha-3 +11.2712687,PR:000006728,http://purl.obolibrary.org/obo/PR_000006728,dual oxidase 2 +11.2712687,PR:000010761,http://purl.obolibrary.org/obo/PR_000010761,mucin-16 +11.2712687,PR:Q9LN95,http://purl.obolibrary.org/obo/PR_Q9LN95,none +11.2712687,UBERON:0001779,http://purl.obolibrary.org/obo/UBERON_0001779,iris stroma +11.2712687,UBERON:0007271,http://purl.obolibrary.org/obo/UBERON_0007271,appendage musculature +11.2712687,UBERON:0010467,http://purl.obolibrary.org/obo/UBERON_0010467,teres muscle +11.2746759,CHEBI:25605,http://purl.obolibrary.org/obo/CHEBI_25605,nucleoside antibiotic +11.2746759,CL:0007021,http://purl.obolibrary.org/obo/CL_0007021,alarm substance cell +11.2746759,DRUGBANK:DB01415,http://purl.obolibrary.org/obo/DRUGBANK_DB01415,none +11.2746759,DRUGBANK:DB03880,http://purl.obolibrary.org/obo/DRUGBANK_DB03880,none +11.2746759,DRUGBANK:DB03947,http://purl.obolibrary.org/obo/DRUGBANK_DB03947,none +11.2746759,DRUGBANK:DB10667,http://purl.obolibrary.org/obo/DRUGBANK_DB10667,none +11.2746759,DRUGBANK:DB10814,http://purl.obolibrary.org/obo/DRUGBANK_DB10814,none +11.2746759,DRUGBANK:DB12278,http://purl.obolibrary.org/obo/DRUGBANK_DB12278,none +11.2746759,DRUGBANK:DB14222,http://purl.obolibrary.org/obo/DRUGBANK_DB14222,none +11.2746759,GO:0009034,http://purl.obolibrary.org/obo/GO_0009034,tryptophanase activity +11.2746759,GO:0031344,http://purl.obolibrary.org/obo/GO_0031344,regulation of cell projection organization +11.2746759,GO:0032526,http://purl.obolibrary.org/obo/GO_0032526,response to retinoic acid +11.2746759,GO:0042584,http://purl.obolibrary.org/obo/GO_0042584,chromaffin granule membrane +11.2746759,GO:0051027,http://purl.obolibrary.org/obo/GO_0051027,DNA transport +11.2746759,HP:0100806,http://purl.obolibrary.org/obo/HP_0100806,Sepsis +11.2746759,MONDO:0001896,http://purl.obolibrary.org/obo/MONDO_0001896,obstructive hydrocephalus +11.2746759,MONDO:0014888,http://purl.obolibrary.org/obo/MONDO_0014888,MIRAGE syndrome +11.2746759,PR:000013471,http://purl.obolibrary.org/obo/PR_000013471,receptor-type tyrosine-protein phosphatase H +11.2746759,PR:000014635,http://purl.obolibrary.org/obo/PR_000014635,sentrin-specific protease 1 +11.2746759,PR:000015773,http://purl.obolibrary.org/obo/PR_000015773,stimulated by retinoic acid gene 8 protein +11.2746759,PR:000030614,http://purl.obolibrary.org/obo/PR_000030614,piezo-type mechanosensitive ion channel component 1 +11.2780947,CHEBI:32250,http://purl.obolibrary.org/obo/CHEBI_32250,tramadol hydrochloride +11.2780947,CHEBI:83296,http://purl.obolibrary.org/obo/CHEBI_83296,orexin receptor antagonist +11.2780947,CL:0000528,http://purl.obolibrary.org/obo/CL_0000528,nitrergic neuron +11.2780947,DRUGBANK:DB00528,http://purl.obolibrary.org/obo/DRUGBANK_DB00528,none +11.2780947,DRUGBANK:DB01605,http://purl.obolibrary.org/obo/DRUGBANK_DB01605,none +11.2780947,DRUGBANK:DB01623,http://purl.obolibrary.org/obo/DRUGBANK_DB01623,none +11.2780947,GO:0005766,http://purl.obolibrary.org/obo/GO_0005766,primary lysosome +11.2780947,GO:0016004,http://purl.obolibrary.org/obo/GO_0016004,phospholipase activator activity +11.2780947,GO:0036157,http://purl.obolibrary.org/obo/GO_0036157,outer dynein arm +11.2780947,GO:0043488,http://purl.obolibrary.org/obo/GO_0043488,regulation of mRNA stability +11.2780947,MONDO:0000597,http://purl.obolibrary.org/obo/MONDO_0000597,Munchausen by proxy +11.2780947,MONDO:0001008,http://purl.obolibrary.org/obo/MONDO_0001008,blepharophimosis +11.2780947,MONDO:0005764,http://purl.obolibrary.org/obo/MONDO_0005764,follicular dendritic cell sarcoma +11.2780947,MONDO:0005988,http://purl.obolibrary.org/obo/MONDO_0005988,toxocariasis +11.2780947,MONDO:0015278,http://purl.obolibrary.org/obo/MONDO_0015278,familial pancreatic carcinoma +11.2780947,MONDO:0015345,http://purl.obolibrary.org/obo/MONDO_0015345,perioral myoclonia with absences +11.2780947,MONDO:0017291,http://purl.obolibrary.org/obo/MONDO_0017291,reversible cerebral vasoconstriction syndrome +11.2780947,MONDO:0019246,http://purl.obolibrary.org/obo/MONDO_0019246,inborn disorder of lysosomal amino acid transport +11.2780947,MONDO:0060783,http://purl.obolibrary.org/obo/MONDO_0060783,classic congenital adrenal hyperplasia +11.2780947,NCBITaxon:12137,http://purl.obolibrary.org/obo/NCBITaxon_12137,none +11.2780947,PR:000003597,http://purl.obolibrary.org/obo/PR_000003597,acetyl-CoA carboxylase 2 +11.2780947,PR:000005429,http://purl.obolibrary.org/obo/PR_000005429,neural cell adhesion molecule L1-like protein +11.2780947,PR:000005532,http://purl.obolibrary.org/obo/PR_000005532,H(+)/Cl(-) exchange transporter 5 +11.2780947,PR:000009885,http://purl.obolibrary.org/obo/PR_000009885,lysyl oxidase homolog 2 +11.2780947,PR:000010437,http://purl.obolibrary.org/obo/PR_000010437,membrane protein MLC1 +11.2780947,PR:000010465,http://purl.obolibrary.org/obo/PR_000010465,monocyte to macrophage differentiation protein +11.2780947,PR:000012210,http://purl.obolibrary.org/obo/PR_000012210,polyadenylate-binding protein 2 +11.2780947,PR:000016056,http://purl.obolibrary.org/obo/PR_000016056,RISC-loading complex subunit TARBP2 +11.2780947,PR:000023851,http://purl.obolibrary.org/obo/PR_000023851,none +11.2780947,UBERON:0002343,http://purl.obolibrary.org/obo/UBERON_0002343,abdomen musculature +11.2780947,UBERON:0011903,http://purl.obolibrary.org/obo/UBERON_0011903,gizzard smooth muscle +11.2815252,CHEBI:38869,http://purl.obolibrary.org/obo/CHEBI_38869,general anaesthetic +11.2815252,DRUGBANK:DB04401,http://purl.obolibrary.org/obo/DRUGBANK_DB04401,none +11.2815252,DRUGBANK:DB10865,http://purl.obolibrary.org/obo/DRUGBANK_DB10865,none +11.2815252,DRUGBANK:DB13144,http://purl.obolibrary.org/obo/DRUGBANK_DB13144,none +11.2815252,DRUGBANK:DB13151,http://purl.obolibrary.org/obo/DRUGBANK_DB13151,none +11.2815252,DRUGBANK:DB13586,http://purl.obolibrary.org/obo/DRUGBANK_DB13586,none +11.2815252,DRUGBANK:DB14536,http://purl.obolibrary.org/obo/DRUGBANK_DB14536,none +11.2815252,GO:0042743,http://purl.obolibrary.org/obo/GO_0042743,hydrogen peroxide metabolic process +11.2815252,GO:1990844,http://purl.obolibrary.org/obo/GO_1990844,none +11.2815252,MONDO:0000551,http://purl.obolibrary.org/obo/MONDO_0000551,retroperitoneal neuroblastoma +11.2815252,MONDO:0003518,http://purl.obolibrary.org/obo/MONDO_0003518,mediastinum teratoma +11.2815252,MONDO:0004729,http://purl.obolibrary.org/obo/MONDO_0004729,dyskinesia of esophagus +11.2815252,MONDO:0005610,http://purl.obolibrary.org/obo/MONDO_0005610,Kashin-Beck disease +11.2815252,MONDO:0020147,http://purl.obolibrary.org/obo/MONDO_0020147,anophthalmia-microphthalmia syndrome +11.2815252,MONDO:0020542,http://purl.obolibrary.org/obo/MONDO_0020542,malignant Sertoli-Leydig cell tumor of ovary +11.2815252,MONDO:0021812,http://purl.obolibrary.org/obo/MONDO_0021812,adnexal spiradenoma/cylindroma of a sweat gland +11.2815252,NCBITaxon:11577,http://purl.obolibrary.org/obo/NCBITaxon_11577,La Crosse virus +11.2815252,NCBITaxon:167158,http://purl.obolibrary.org/obo/NCBITaxon_167158,none +11.2815252,NCBITaxon:2560547,http://purl.obolibrary.org/obo/NCBITaxon_2560547,La Crosse orthobunyavirus +11.2815252,PR:000001386,http://purl.obolibrary.org/obo/PR_000001386,interleukin-27 subunit beta +11.2815252,PR:000002051,http://purl.obolibrary.org/obo/PR_000002051,interferon regulatory factor 9 +11.2815252,PR:000003043,http://purl.obolibrary.org/obo/PR_000003043,mitogen-activated protein kinase kinase kinase kinase 4 +11.2815252,PR:000005078,http://purl.obolibrary.org/obo/PR_000005078,carbonyl reductase [NADPH] 1 +11.2815252,PR:000007948,http://purl.obolibrary.org/obo/PR_000007948,GDNF family receptor alpha-1 +11.2815252,PR:000008074,http://purl.obolibrary.org/obo/PR_000008074,geminin +11.2815252,PR:000008532,http://purl.obolibrary.org/obo/PR_000008532,hemojuvelin +11.2815252,PR:000013264,http://purl.obolibrary.org/obo/PR_000013264,prokineticin-1 +11.2815252,PR:000014350,http://purl.obolibrary.org/obo/PR_000014350,reticulon-4 receptor +11.2815252,PR:000017356,http://purl.obolibrary.org/obo/PR_000017356,vacuolar protein sorting-associated protein VTA1 +11.2815252,PR:000044661,http://purl.obolibrary.org/obo/PR_000044661,5-HT3 receptor protein +11.2815252,PR:P78958,http://purl.obolibrary.org/obo/PR_P78958,none +11.2815252,SO:0001258,http://purl.obolibrary.org/obo/SO_0001258,octamer_motif +11.2815252,UBERON:0005988,http://purl.obolibrary.org/obo/UBERON_0005988,atrium myocardial trabecula +11.2849675,CHEBI:64571,http://purl.obolibrary.org/obo/CHEBI_64571,NMDA receptor agonist +11.2849675,DRUGBANK:DB04706,http://purl.obolibrary.org/obo/DRUGBANK_DB04706,none +11.2849675,DRUGBANK:DB14519,http://purl.obolibrary.org/obo/DRUGBANK_DB14519,none +11.2849675,GO:0043203,http://purl.obolibrary.org/obo/GO_0043203,axon hillock +11.2849675,GO:0048675,http://purl.obolibrary.org/obo/GO_0048675,axon extension +11.2849675,GO:0050738,http://purl.obolibrary.org/obo/GO_0050738,fructosyltransferase activity +11.2849675,GO:0070765,http://purl.obolibrary.org/obo/GO_0070765,gamma-secretase complex +11.2849675,HP:0001618,http://purl.obolibrary.org/obo/HP_0001618,Dysphonia +11.2849675,MONDO:0005767,http://purl.obolibrary.org/obo/MONDO_0005767,gas gangrene +11.2849675,MONDO:0016683,http://purl.obolibrary.org/obo/MONDO_0016683,gliomatosis cerebri +11.2849675,MONDO:0018559,http://purl.obolibrary.org/obo/MONDO_0018559,fetal lower urinary tract obstruction +11.2849675,MONDO:0021009,http://purl.obolibrary.org/obo/MONDO_0021009,salivary gland mucoepidermoid carcinoma +11.2849675,MONDO:0021116,http://purl.obolibrary.org/obo/MONDO_0021116,luminal A breast carcinoma +11.2849675,MONDO:0023149,http://purl.obolibrary.org/obo/MONDO_0023149,infection due to clostridium perfringens +11.2849675,MONDO:0024661,http://purl.obolibrary.org/obo/MONDO_0024661,tubulovillous adenoma +11.2849675,MOP:0000673,http://purl.obolibrary.org/obo/MOP_0000673,none +11.2849675,PR:000003445,http://purl.obolibrary.org/obo/PR_000003445,E3 SUMO-protein ligase PIAS1 +11.2849675,PR:000004691,http://purl.obolibrary.org/obo/PR_000004691,B-cell lymphoma/leukemia 11B +11.2849675,PR:000007919,http://purl.obolibrary.org/obo/PR_000007919,growth/differentiation factor 11 +11.2849675,PR:000008923,http://purl.obolibrary.org/obo/PR_000008923,interferon alpha/beta receptor 2 +11.2849675,PR:000012314,http://purl.obolibrary.org/obo/PR_000012314,paired box protein Pax-1 +11.2849675,PR:000012724,http://purl.obolibrary.org/obo/PR_000012724,phosphatidylinositol 3-kinase regulatory subunit alpha +11.2849675,PR:000014030,http://purl.obolibrary.org/obo/PR_000014030,retinaldehyde-binding protein 1 +11.2849675,PR:000015520,http://purl.obolibrary.org/obo/PR_000015520,paraplegin +11.2849675,PR:O23609,http://purl.obolibrary.org/obo/PR_O23609,none +11.2849675,PR:P19018,http://purl.obolibrary.org/obo/PR_P19018,none +11.2849675,PR:Q84TH4,http://purl.obolibrary.org/obo/PR_Q84TH4,none +11.2849675,UBERON:0004204,http://purl.obolibrary.org/obo/UBERON_0004204,outer medullary collecting duct +11.2849675,UBERON:0006591,http://purl.obolibrary.org/obo/UBERON_0006591,transformed artery +11.2849675,UBERON:0008715,http://purl.obolibrary.org/obo/UBERON_0008715,muscle tissue of prostate +11.2849675,UBERON:0016512,http://purl.obolibrary.org/obo/UBERON_0016512,lumen of duodenum +11.2884218,CHEBI:35693,http://purl.obolibrary.org/obo/CHEBI_35693,dicarboxylic acid anion +11.2884218,DRUGBANK:DB02650,http://purl.obolibrary.org/obo/DRUGBANK_DB02650,none +11.2884218,GO:0098537,http://purl.obolibrary.org/obo/GO_0098537,none +11.2884218,GO:1990638,http://purl.obolibrary.org/obo/GO_1990638,response to granulocyte colony-stimulating factor +11.2884218,HP:0000982,http://purl.obolibrary.org/obo/HP_0000982,Palmoplantar keratoderma +11.2884218,MONDO:0001615,http://purl.obolibrary.org/obo/MONDO_0001615,epidemic keratoconjunctivitis +11.2884218,MONDO:0004943,http://purl.obolibrary.org/obo/MONDO_0004943,orbit sarcoma +11.2884218,MONDO:0006603,http://purl.obolibrary.org/obo/MONDO_0006603,reactive cutaneous fibrous lesion +11.2884218,MONDO:0006883,http://purl.obolibrary.org/obo/MONDO_0006883,malignant superior sulcus neoplasm +11.2884218,MONDO:0044964,http://purl.obolibrary.org/obo/MONDO_0044964,oral cavity mucoepidermoid carcinoma +11.2884218,PR:000003824,http://purl.obolibrary.org/obo/PR_000003824,cytosolic carboxypeptidase 2 +11.2884218,PR:000006120,http://purl.obolibrary.org/obo/PR_000006120,cytochrome P450 2C9 +11.2884218,PR:000007345,http://purl.obolibrary.org/obo/PR_000007345,"phenylalanine--tRNA ligase, mitochondrial" +11.2884218,PR:000007358,http://purl.obolibrary.org/obo/PR_000007358,fibulin-1 +11.2884218,PR:000008551,http://purl.obolibrary.org/obo/PR_000008551,hypermethylated in cancer 1 protein +11.2884218,PR:000008781,http://purl.obolibrary.org/obo/PR_000008781,peroxisomal multifunctional enzyme type 2 +11.2884218,PR:000010092,http://purl.obolibrary.org/obo/PR_000010092,myelin and lymphocyte protein +11.2884218,PR:000016246,http://purl.obolibrary.org/obo/PR_000016246,methylcytosine dioxygenase TET3 +11.2884218,PR:000016699,http://purl.obolibrary.org/obo/PR_000016699,transient receptor potential cation channel subfamily M member 3 +11.2884218,PR:000031449,http://purl.obolibrary.org/obo/PR_000031449,tryptase alpha/beta-1 +11.2884218,PR:O22315,http://purl.obolibrary.org/obo/PR_O22315,none +11.2884218,PR:Q24546,http://purl.obolibrary.org/obo/PR_Q24546,none +11.2884218,SO:0000198,http://purl.obolibrary.org/obo/SO_0000198,noncoding_exon +11.2884218,UBERON:0000908,http://purl.obolibrary.org/obo/UBERON_0000908,hippocampal commissure +11.2884218,UBERON:0001822,http://purl.obolibrary.org/obo/UBERON_0001822,orbital septum +11.291888,CHEBI:28965,http://purl.obolibrary.org/obo/CHEBI_28965,dicarboxylic acid dianion +11.291888,CHEBI:33567,http://purl.obolibrary.org/obo/CHEBI_33567,catecholamine +11.291888,CHEBI:38716,http://purl.obolibrary.org/obo/CHEBI_38716,carboxylic acid dianion +11.291888,CL:0000638,http://purl.obolibrary.org/obo/CL_0000638,acidophil cell of pars distalis of adenohypophysis +11.291888,CL:1001606,http://purl.obolibrary.org/obo/CL_1001606,foreskin keratinocyte +11.291888,DRUGBANK:DB05260,http://purl.obolibrary.org/obo/DRUGBANK_DB05260,none +11.291888,DRUGBANK:DB08171,http://purl.obolibrary.org/obo/DRUGBANK_DB08171,none +11.291888,GO:0001635,http://purl.obolibrary.org/obo/GO_0001635,calcitonin gene-related peptide receptor activity +11.291888,GO:0004686,http://purl.obolibrary.org/obo/GO_0004686,elongation factor-2 kinase activity +11.291888,GO:0009606,http://purl.obolibrary.org/obo/GO_0009606,tropism +11.291888,GO:0030497,http://purl.obolibrary.org/obo/GO_0030497,fatty acid elongation +11.291888,GO:0043253,http://purl.obolibrary.org/obo/GO_0043253,chloroplast ribosome +11.291888,MONDO:0005953,http://purl.obolibrary.org/obo/MONDO_0005953,scirrhous adenocarcinoma +11.291888,MONDO:0013662,http://purl.obolibrary.org/obo/MONDO_0013662,Barrett esophagus +11.291888,MONDO:0016602,http://purl.obolibrary.org/obo/MONDO_0016602,citrin deficiency +11.291888,MONDO:0016704,http://purl.obolibrary.org/obo/MONDO_0016704,glial tumor of neuroepithelial tissue with unknown origin +11.291888,MONDO:0017314,http://purl.obolibrary.org/obo/MONDO_0017314,"Ehlers-Danlos syndrome, vascular type" +11.291888,MONDO:0021041,http://purl.obolibrary.org/obo/MONDO_0021041,pleural solitary fibrous tumor +11.291888,MONDO:0043683,http://purl.obolibrary.org/obo/MONDO_0043683,Leriche syndrome +11.291888,MONDO:0056804,http://purl.obolibrary.org/obo/MONDO_0056804,benign neoplasm of peripheral nervous system +11.291888,PR:000001583,http://purl.obolibrary.org/obo/PR_000001583,free fatty acid receptor 2 +11.291888,PR:000005195,http://purl.obolibrary.org/obo/PR_000005195,cell division cycle protein 27 +11.291888,PR:000006939,http://purl.obolibrary.org/obo/PR_000006939,early growth response protein 3 +11.291888,PR:000009977,http://purl.obolibrary.org/obo/PR_000009977,leukotriene C4 synthase +11.291888,PR:000011140,http://purl.obolibrary.org/obo/PR_000011140,neogenin +11.291888,PR:000015463,http://purl.obolibrary.org/obo/PR_000015463,C-Jun-amino-terminal kinase-interacting protein 4 +11.291888,PR:000015652,http://purl.obolibrary.org/obo/PR_000015652,protein ITPRID2 +11.291888,PR:000017051,http://purl.obolibrary.org/obo/PR_000017051,UDP-glucuronosyltransferase 1A4 +11.291888,PR:000017134,http://purl.obolibrary.org/obo/PR_000017134,uroporphyrinogen decarboxylase +11.291888,PR:000027605,http://purl.obolibrary.org/obo/PR_000027605,none +11.291888,PR:000027796,http://purl.obolibrary.org/obo/PR_000027796,trypsin-2 +11.291888,SO:1000048,http://purl.obolibrary.org/obo/SO_1000048,reciprocal_chromosomal_translocation +11.291888,UBERON:0004616,http://purl.obolibrary.org/obo/UBERON_0004616,mammalian cervical vertebra 7 +11.2953663,CHEBI:25375,http://purl.obolibrary.org/obo/CHEBI_25375,monoamine molecular messenger +11.2953663,DRUGBANK:DB04250,http://purl.obolibrary.org/obo/DRUGBANK_DB04250,none +11.2953663,DRUGBANK:DB09082,http://purl.obolibrary.org/obo/DRUGBANK_DB09082,none +11.2953663,DRUGBANK:DB11117,http://purl.obolibrary.org/obo/DRUGBANK_DB11117,none +11.2953663,DRUGBANK:DB12442,http://purl.obolibrary.org/obo/DRUGBANK_DB12442,none +11.2953663,DRUGBANK:DB13773,http://purl.obolibrary.org/obo/DRUGBANK_DB13773,none +11.2953663,DRUGBANK:DB14806,http://purl.obolibrary.org/obo/DRUGBANK_DB14806,none +11.2953663,GO:0004380,http://purl.obolibrary.org/obo/GO_0004380,glycoprotein-fucosylgalactoside alpha-N-acetylgalactosaminyltransferase activity +11.2953663,GO:0006743,http://purl.obolibrary.org/obo/GO_0006743,ubiquinone metabolic process +11.2953663,MONDO:0000284,http://purl.obolibrary.org/obo/MONDO_0000284,"Hantavirus hemorrhagic fever with renal syndrome, Puumala virus type" +11.2953663,MONDO:0000530,http://purl.obolibrary.org/obo/MONDO_0000530,rectum adenoma +11.2953663,MONDO:0002093,http://purl.obolibrary.org/obo/MONDO_0002093,acanthoma +11.2953663,MONDO:0003741,http://purl.obolibrary.org/obo/MONDO_0003741,juvenile type testicular granulosa cell tumor +11.2953663,MONDO:0009694,http://purl.obolibrary.org/obo/MONDO_0009694,myeloperoxidase deficiency +11.2953663,MONDO:0043320,http://purl.obolibrary.org/obo/MONDO_0043320,piriformis syndrome +11.2953663,NCBITaxon:1286322,http://purl.obolibrary.org/obo/NCBITaxon_1286322,none +11.2953663,NCBITaxon:358764,http://purl.obolibrary.org/obo/NCBITaxon_358764,none +11.2953663,NCBITaxon:6083,http://purl.obolibrary.org/obo/NCBITaxon_6083,none +11.2953663,PR:000001106,http://purl.obolibrary.org/obo/PR_000001106,CD166 molecule +11.2953663,PR:000003541,http://purl.obolibrary.org/obo/PR_000003541,phospholipid-transporting ATPase ABCA3 +11.2953663,PR:000005804,http://purl.obolibrary.org/obo/PR_000005804,carboxypeptidase E +11.2953663,PR:000012099,http://purl.obolibrary.org/obo/PR_000012099,serine/threonine-protein kinase OSR1 +11.2953663,PR:000013382,http://purl.obolibrary.org/obo/PR_000013382,26S proteasome regulatory subunit 6B +11.2953663,PR:000014171,http://purl.obolibrary.org/obo/PR_000014171,replication protein A 32 kDa subunit +11.2953663,PR:000015205,http://purl.obolibrary.org/obo/PR_000015205,large neutral amino acids transporter small subunit 2 +11.2953663,PR:000023627,http://purl.obolibrary.org/obo/PR_000023627,none +11.2953663,PR:000028877,http://purl.obolibrary.org/obo/PR_000028877,none +11.2953663,PR:000029094,http://purl.obolibrary.org/obo/PR_000029094,ankyrin repeat and protein kinase domain-containing protein 1 +11.2953663,PR:000029762,http://purl.obolibrary.org/obo/PR_000029762,probable global transcription activator SNF2L2 +11.2953663,PR:Q9DGE1,http://purl.obolibrary.org/obo/PR_Q9DGE1,none +11.2953663,PR:Q9DGE2,http://purl.obolibrary.org/obo/PR_Q9DGE2,none +11.2953663,UBERON:2001076,http://purl.obolibrary.org/obo/UBERON_2001076,intestinal bulb +11.2988567,CL:0000654,http://purl.obolibrary.org/obo/CL_0000654,primary oocyte +11.2988567,DRUGBANK:DB00807,http://purl.obolibrary.org/obo/DRUGBANK_DB00807,none +11.2988567,DRUGBANK:DB00892,http://purl.obolibrary.org/obo/DRUGBANK_DB00892,none +11.2988567,DRUGBANK:DB11678,http://purl.obolibrary.org/obo/DRUGBANK_DB11678,none +11.2988567,DRUGBANK:DB15289,http://purl.obolibrary.org/obo/DRUGBANK_DB15289,none +11.2988567,GO:0035173,http://purl.obolibrary.org/obo/GO_0035173,histone kinase activity +11.2988567,HP:0012832,http://purl.obolibrary.org/obo/HP_0012832,Bilateral +11.2988567,MONDO:0006375,http://purl.obolibrary.org/obo/MONDO_0006375,placental hemangioma +11.2988567,MONDO:0009050,http://purl.obolibrary.org/obo/MONDO_0009050,Cushing disease due to pituitary adenoma +11.2988567,MONDO:0011142,http://purl.obolibrary.org/obo/MONDO_0011142,"Ehlers-Danlos syndrome, musculocontractural type" +11.2988567,MONDO:0018470,http://purl.obolibrary.org/obo/MONDO_0018470,renal agenesis +11.2988567,PR:000001216,http://purl.obolibrary.org/obo/PR_000001216,cholecystokinin receptor 1 +11.2988567,PR:000001242,http://purl.obolibrary.org/obo/PR_000001242,neuromedin-K receptor +11.2988567,PR:000004806,http://purl.obolibrary.org/obo/PR_000004806,bromodomain-containing protein 2 +11.2988567,PR:000005192,http://purl.obolibrary.org/obo/PR_000005192,M-phase inducer phosphatase 2 +11.2988567,PR:000006022,http://purl.obolibrary.org/obo/PR_000006022,lysosomal protective protein +11.2988567,PR:000008492,http://purl.obolibrary.org/obo/PR_000008492,hepatoma-derived growth factor-related protein 2 +11.2988567,PR:000008734,http://purl.obolibrary.org/obo/PR_000008734,haptoglobin-related protein +11.2988567,PR:000010801,http://purl.obolibrary.org/obo/PR_000010801,Myb-related protein A +11.2988567,PR:000010829,http://purl.obolibrary.org/obo/PR_000010829,myosin-6 +11.2988567,PR:000016588,http://purl.obolibrary.org/obo/PR_000016588,nucleoprotein TPR +11.2988567,PR:000017056,http://purl.obolibrary.org/obo/PR_000017056,UDP-glucuronosyltransferase 1A9 +11.2988567,PR:000023544,http://purl.obolibrary.org/obo/PR_000023544,transcriptional regulatory protein PhoP +11.2988567,PR:Q9BMK9,http://purl.obolibrary.org/obo/PR_Q9BMK9,none +11.2988567,PR:Q9MBA1,http://purl.obolibrary.org/obo/PR_Q9MBA1,none +11.2988567,UBERON:0000389,http://purl.obolibrary.org/obo/UBERON_0000389,lens cortex +11.2988567,UBERON:0007703,http://purl.obolibrary.org/obo/UBERON_0007703,spinothalamic tract +11.2988567,UBERON:0014649,http://purl.obolibrary.org/obo/UBERON_0014649,white matter of medulla oblongata +11.2988567,UBERON:0019262,http://purl.obolibrary.org/obo/UBERON_0019262,white matter of myelencephalon +11.3023593,CHEBI:25613,http://purl.obolibrary.org/obo/CHEBI_25613,nucleotidyl group +11.3023593,CHEBI:38445,http://purl.obolibrary.org/obo/CHEBI_38445,chromenone +11.3023593,DRUGBANK:DB04546,http://purl.obolibrary.org/obo/DRUGBANK_DB04546,none +11.3023593,DRUGBANK:DB04849,http://purl.obolibrary.org/obo/DRUGBANK_DB04849,none +11.3023593,DRUGBANK:DB04878,http://purl.obolibrary.org/obo/DRUGBANK_DB04878,none +11.3023593,DRUGBANK:DB05482,http://purl.obolibrary.org/obo/DRUGBANK_DB05482,none +11.3023593,DRUGBANK:DB08887,http://purl.obolibrary.org/obo/DRUGBANK_DB08887,none +11.3023593,DRUGBANK:DB12474,http://purl.obolibrary.org/obo/DRUGBANK_DB12474,none +11.3023593,GO:0006030,http://purl.obolibrary.org/obo/GO_0006030,chitin metabolic process +11.3023593,GO:0006213,http://purl.obolibrary.org/obo/GO_0006213,pyrimidine nucleoside metabolic process +11.3023593,GO:0008865,http://purl.obolibrary.org/obo/GO_0008865,fructokinase activity +11.3023593,GO:0032153,http://purl.obolibrary.org/obo/GO_0032153,cell division site +11.3023593,GO:0048786,http://purl.obolibrary.org/obo/GO_0048786,presynaptic active zone +11.3023593,HP:0000112,http://purl.obolibrary.org/obo/HP_0000112,Nephropathy +11.3023593,MONDO:0002238,http://purl.obolibrary.org/obo/MONDO_0002238,ascending colon cancer +11.3023593,MONDO:0002537,http://purl.obolibrary.org/obo/MONDO_0002537,inverted papilloma +11.3023593,MONDO:0005905,http://purl.obolibrary.org/obo/MONDO_0005905,periodic limb movement disorder +11.3023593,MONDO:0006916,http://purl.obolibrary.org/obo/MONDO_0006916,postcholecystectomy syndrome +11.3023593,MONDO:0007014,http://purl.obolibrary.org/obo/MONDO_0007014,vibrio infectious disease +11.3023593,MONDO:0009735,http://purl.obolibrary.org/obo/MONDO_0009735,Netherton syndrome +11.3023593,MONDO:0011208,http://purl.obolibrary.org/obo/MONDO_0011208,malignant atrophic papulosis +11.3023593,MONDO:0017025,http://purl.obolibrary.org/obo/MONDO_0017025,Langerhans cell histiocytosis specific to childhood +11.3023593,MONDO:0019687,http://purl.obolibrary.org/obo/MONDO_0019687,type 11 collagen-related bone disorder +11.3023593,MONDO:0044138,http://purl.obolibrary.org/obo/MONDO_0044138,hyalitis +11.3023593,NCBITaxon:11313,http://purl.obolibrary.org/obo/NCBITaxon_11313,none +11.3023593,PR:000000730,http://purl.obolibrary.org/obo/PR_000000730,voltage-gated potassium channel subunit KCNQ3 +11.3023593,PR:000007619,http://purl.obolibrary.org/obo/PR_000007619,forkhead box protein E1 +11.3023593,PR:000009079,http://purl.obolibrary.org/obo/PR_000009079,inversin +11.3023593,PR:000012061,http://purl.obolibrary.org/obo/PR_000012061,protein odd-skipped-related 1 +11.3023593,PR:000012544,http://purl.obolibrary.org/obo/PR_000012544,proenkephalin-A +11.3023593,PR:000012828,http://purl.obolibrary.org/obo/PR_000012828,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-1" +11.3023593,PR:000017250,http://purl.obolibrary.org/obo/PR_000017250,vesicle-associated membrane protein 3 +11.3023593,PR:P0CX80,http://purl.obolibrary.org/obo/PR_P0CX80,none +11.3023593,PR:P0CX81,http://purl.obolibrary.org/obo/PR_P0CX81,none +11.3023593,PR:Q07440,http://purl.obolibrary.org/obo/PR_Q07440,none +11.3023593,UBERON:0010008,http://purl.obolibrary.org/obo/UBERON_0010008,placental cotyledon +11.3023593,UBERON:0011908,http://purl.obolibrary.org/obo/UBERON_0011908,gastrocnemius lateralis +11.3058742,CHEBI:23403,http://purl.obolibrary.org/obo/CHEBI_23403,coumarins +11.3058742,CHEBI:36094,http://purl.obolibrary.org/obo/CHEBI_36094,organic chloride salt +11.3058742,CHEBI:36873,http://purl.obolibrary.org/obo/CHEBI_36873,radical anion +11.3058742,CHEBI:36875,http://purl.obolibrary.org/obo/CHEBI_36875,radical ion +11.3058742,CL:0002504,http://purl.obolibrary.org/obo/CL_0002504,enteric smooth muscle cell +11.3058742,DRUGBANK:DB09055,http://purl.obolibrary.org/obo/DRUGBANK_DB09055,none +11.3058742,DRUGBANK:DB13510,http://purl.obolibrary.org/obo/DRUGBANK_DB13510,none +11.3058742,GO:0016671,http://purl.obolibrary.org/obo/GO_0016671,"oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor" +11.3058742,GO:0031415,http://purl.obolibrary.org/obo/GO_0031415,NatA complex +11.3058742,GO:0061351,http://purl.obolibrary.org/obo/GO_0061351,neural precursor cell proliferation +11.3058742,GO:0070012,http://purl.obolibrary.org/obo/GO_0070012,oligopeptidase activity +11.3058742,MONDO:0000550,http://purl.obolibrary.org/obo/MONDO_0000550,extra-adrenal sympathetic paraganglioma +11.3058742,MONDO:0005235,http://purl.obolibrary.org/obo/MONDO_0005235,smoldering plasma cell myeloma +11.3058742,MONDO:0010808,http://purl.obolibrary.org/obo/MONDO_0010808,fatal familial insomnia +11.3058742,MONDO:0015613,http://purl.obolibrary.org/obo/MONDO_0015613,dentin dysplasia +11.3058742,MONDO:0019485,http://purl.obolibrary.org/obo/MONDO_0019485,idiopathic hemiconvulsion-hemiplegia syndrome +11.3058742,MONDO:0019693,http://purl.obolibrary.org/obo/MONDO_0019693,multiple metaphyseal dysplasia +11.3058742,MONDO:0020323,http://purl.obolibrary.org/obo/MONDO_0020323,primary mediastinal large B-cell lymphoma +11.3058742,NCBITaxon:2170083,http://purl.obolibrary.org/obo/NCBITaxon_2170083,none +11.3058742,PR:000003690,http://purl.obolibrary.org/obo/PR_000003690,alpha-actinin-3 +11.3058742,PR:000005203,http://purl.obolibrary.org/obo/PR_000005203,pre-mRNA-processing factor 17 +11.3058742,PR:000008897,http://purl.obolibrary.org/obo/PR_000008897,radiation-inducible immediate-early gene IEX-1 +11.3058742,PR:000013288,http://purl.obolibrary.org/obo/PR_000013288,pre-mRNA-processing-splicing factor 8 +11.3058742,PR:000014724,http://purl.obolibrary.org/obo/PR_000014724,histone-lysine N-methyltransferase SETDB1 +11.3058742,PR:000031106,http://purl.obolibrary.org/obo/PR_000031106,KICSTOR complex protein SZT2 +11.3058742,PR:P78954,http://purl.obolibrary.org/obo/PR_P78954,none +11.3058742,UBERON:0006718,http://purl.obolibrary.org/obo/UBERON_0006718,medial pterygoid muscle +11.3058742,UBERON:0018376,http://purl.obolibrary.org/obo/UBERON_0018376,molar tooth 1 +11.3094016,CHEBI:33461,http://purl.obolibrary.org/obo/CHEBI_33461,phosphorus oxoanion +11.3094016,CHEBI:62049,http://purl.obolibrary.org/obo/CHEBI_62049,acyl donor +11.3094016,CHEBI:82644,http://purl.obolibrary.org/obo/CHEBI_82644,ractopamine +11.3094016,DRUGBANK:DB00634,http://purl.obolibrary.org/obo/DRUGBANK_DB00634,none +11.3094016,DRUGBANK:DB00870,http://purl.obolibrary.org/obo/DRUGBANK_DB00870,none +11.3094016,DRUGBANK:DB01106,http://purl.obolibrary.org/obo/DRUGBANK_DB01106,none +11.3094016,DRUGBANK:DB03882,http://purl.obolibrary.org/obo/DRUGBANK_DB03882,none +11.3094016,DRUGBANK:DB08974,http://purl.obolibrary.org/obo/DRUGBANK_DB08974,none +11.3094016,DRUGBANK:DB09185,http://purl.obolibrary.org/obo/DRUGBANK_DB09185,none +11.3094016,DRUGBANK:DB09212,http://purl.obolibrary.org/obo/DRUGBANK_DB09212,none +11.3094016,DRUGBANK:DB09277,http://purl.obolibrary.org/obo/DRUGBANK_DB09277,none +11.3094016,DRUGBANK:DB09397,http://purl.obolibrary.org/obo/DRUGBANK_DB09397,none +11.3094016,DRUGBANK:DB12942,http://purl.obolibrary.org/obo/DRUGBANK_DB12942,none +11.3094016,DRUGBANK:DB14208,http://purl.obolibrary.org/obo/DRUGBANK_DB14208,none +11.3094016,GO:0003951,http://purl.obolibrary.org/obo/GO_0003951,NAD+ kinase activity +11.3094016,GO:0009658,http://purl.obolibrary.org/obo/GO_0009658,chloroplast organization +11.3094016,GO:0045637,http://purl.obolibrary.org/obo/GO_0045637,regulation of myeloid cell differentiation +11.3094016,GO:0050879,http://purl.obolibrary.org/obo/GO_0050879,multicellular organismal movement +11.3094016,GO:0060048,http://purl.obolibrary.org/obo/GO_0060048,cardiac muscle contraction +11.3094016,GO:0061138,http://purl.obolibrary.org/obo/GO_0061138,morphogenesis of a branching epithelium +11.3094016,GO:1990843,http://purl.obolibrary.org/obo/GO_1990843,none +11.3094016,MONDO:0002167,http://purl.obolibrary.org/obo/MONDO_0002167,rectum malignant melanoma +11.3094016,MONDO:0005183,http://purl.obolibrary.org/obo/MONDO_0005183,ovarian cystadenoma +11.3094016,MONDO:0017213,http://purl.obolibrary.org/obo/MONDO_0017213,postorgasmic illness syndrome +11.3094016,MONDO:0019665,http://purl.obolibrary.org/obo/MONDO_0019665,monostotic fibrous dysplasia +11.3094016,NCBITaxon:10493,http://purl.obolibrary.org/obo/NCBITaxon_10493,none +11.3094016,PR:000003289,http://purl.obolibrary.org/obo/PR_000003289,ubiquitin-conjugating enzyme E2 N +11.3094016,PR:000005041,http://purl.obolibrary.org/obo/PR_000005041,caspase recruitment domain-containing protein 9 +11.3094016,PR:000009733,http://purl.obolibrary.org/obo/PR_000009733,lymphocyte cytosolic protein 2 +11.3094016,PR:000014661,http://purl.obolibrary.org/obo/PR_000014661,septin-9 +11.3094016,PR:000016121,http://purl.obolibrary.org/obo/PR_000016121,TBC1 domain family member 8 +11.3094016,PR:000029914,http://purl.obolibrary.org/obo/PR_000029914,none +11.3094016,PR:O22862,http://purl.obolibrary.org/obo/PR_O22862,none +11.3094016,PR:Q56YW9,http://purl.obolibrary.org/obo/PR_Q56YW9,none +11.3094016,UBERON:0001172,http://purl.obolibrary.org/obo/UBERON_0001172,hepatic acinus +11.3129414,CHEBI:18421,http://purl.obolibrary.org/obo/CHEBI_18421,superoxide +11.3129414,CHEBI:36876,http://purl.obolibrary.org/obo/CHEBI_36876,inorganic radical anion +11.3129414,CHEBI:36878,http://purl.obolibrary.org/obo/CHEBI_36878,inorganic radical ion +11.3129414,CHEBI:37912,http://purl.obolibrary.org/obo/CHEBI_37912,hydroxycoumarin +11.3129414,CHEBI:83813,http://purl.obolibrary.org/obo/CHEBI_83813,proteinogenic amino acid +11.3129414,DRUGBANK:DB08168,http://purl.obolibrary.org/obo/DRUGBANK_DB08168,none +11.3129414,DRUGBANK:DB11689,http://purl.obolibrary.org/obo/DRUGBANK_DB11689,none +11.3129414,GO:0060014,http://purl.obolibrary.org/obo/GO_0060014,granulosa cell differentiation +11.3129414,MONDO:0004795,http://purl.obolibrary.org/obo/MONDO_0004795,otitis externa +11.3129414,MONDO:0012155,http://purl.obolibrary.org/obo/MONDO_0012155,choanal atresia +11.3129414,MONDO:0016866,http://purl.obolibrary.org/obo/MONDO_0016866,partial deletion of chromosome 1 +11.3129414,MONDO:0018308,http://purl.obolibrary.org/obo/MONDO_0018308,liver mesenchymal hamartoma +11.3129414,MONDO:0020529,http://purl.obolibrary.org/obo/MONDO_0020529,ACTH-independent Cushing syndrome +11.3129414,NCBITaxon:10180,http://purl.obolibrary.org/obo/NCBITaxon_10180,none +11.3129414,NCBITaxon:40364,http://purl.obolibrary.org/obo/NCBITaxon_40364,none +11.3129414,PR:000003961,http://purl.obolibrary.org/obo/PR_000003961,polyunsaturated fatty acid 5-lipoxygenase +11.3129414,PR:000005973,http://purl.obolibrary.org/obo/PR_000005973,cystatin-A +11.3129414,PR:000006085,http://purl.obolibrary.org/obo/PR_000006085,cytochrome b-245 light chain +11.3129414,PR:000007269,http://purl.obolibrary.org/obo/PR_000007269,exostosin-2 +11.3129414,PR:000008425,http://purl.obolibrary.org/obo/PR_000008425,histone H3.3 +11.3129414,PR:000009924,http://purl.obolibrary.org/obo/PR_000009924,low-density lipoprotein receptor-related protein 4 +11.3129414,PR:000013039,http://purl.obolibrary.org/obo/PR_000013039,"POU domain, class 3, transcription factor 2" +11.3129414,PR:000016269,http://purl.obolibrary.org/obo/PR_000016269,transcription factor Dp-1 +11.3129414,PR:000016610,http://purl.obolibrary.org/obo/PR_000016610,"heat shock protein 75 kDa, mitochondrial" +11.3129414,PR:000017126,http://purl.obolibrary.org/obo/PR_000017126,"cytochrome b-c1 complex subunit Rieske, mitochondrial" +11.3129414,PR:000029398,http://purl.obolibrary.org/obo/PR_000029398,probable ATP-dependent RNA helicase DDX6 +11.3129414,PR:P38605,http://purl.obolibrary.org/obo/PR_P38605,none +11.3129414,PR:Q64435,http://purl.obolibrary.org/obo/PR_Q64435,none +11.3129414,SO:0000723,http://purl.obolibrary.org/obo/SO_0000723,iDNA +11.3129414,UBERON:0000220,http://purl.obolibrary.org/obo/UBERON_0000220,atlanto-occipital joint +11.3129414,UBERON:0001506,http://purl.obolibrary.org/obo/UBERON_0001506,brachialis muscle +11.3129414,UBERON:0006508,http://purl.obolibrary.org/obo/UBERON_0006508,interosseous muscle of autopod +11.3129414,UBERON:0009958,http://purl.obolibrary.org/obo/UBERON_0009958,bladder lumen +11.3129414,UBERON:0010161,http://purl.obolibrary.org/obo/UBERON_0010161,lumen of blood vessel +11.3129414,UBERON:0013699,http://purl.obolibrary.org/obo/UBERON_0013699,strand of axillary hair +11.3129414,UBERON:0016475,http://purl.obolibrary.org/obo/UBERON_0016475,skin of forehead +11.3164938,CHEBI:138015,http://purl.obolibrary.org/obo/CHEBI_138015,endocrine disruptor +11.3164938,CHEBI:51142,http://purl.obolibrary.org/obo/CHEBI_51142,amino groups +11.3164938,CHEBI:52629,http://purl.obolibrary.org/obo/CHEBI_52629,EC 3.1.26.13 (retroviral ribonuclease H) inhibitor +11.3164938,CHEBI:53756,http://purl.obolibrary.org/obo/CHEBI_53756,HIV-1 reverse transcriptase inhibitor +11.3164938,CHEBI:76785,http://purl.obolibrary.org/obo/CHEBI_76785,EC 3.1.26.* (endoribonucleases producing 5'-phosphomonoesters) inhibitor +11.3164938,CHEBI:76988,http://purl.obolibrary.org/obo/CHEBI_76988,xenoestrogen +11.3164938,DRUGBANK:DB01624,http://purl.obolibrary.org/obo/DRUGBANK_DB01624,none +11.3164938,DRUGBANK:DB02615,http://purl.obolibrary.org/obo/DRUGBANK_DB02615,none +11.3164938,DRUGBANK:DB03052,http://purl.obolibrary.org/obo/DRUGBANK_DB03052,none +11.3164938,DRUGBANK:DB04599,http://purl.obolibrary.org/obo/DRUGBANK_DB04599,none +11.3164938,DRUGBANK:DB04789,http://purl.obolibrary.org/obo/DRUGBANK_DB04789,none +11.3164938,DRUGBANK:DB07645,http://purl.obolibrary.org/obo/DRUGBANK_DB07645,none +11.3164938,GO:0006739,http://purl.obolibrary.org/obo/GO_0006739,NADP metabolic process +11.3164938,HP:0012823,http://purl.obolibrary.org/obo/HP_0012823,Clinical modifier +11.3164938,MONDO:0004405,http://purl.obolibrary.org/obo/MONDO_0004405,Barrett adenocarcinoma +11.3164938,MONDO:0015766,http://purl.obolibrary.org/obo/MONDO_0015766,cholera +11.3164938,PR:000004026,http://purl.obolibrary.org/obo/PR_000004026,angiopoietin-related protein 1 +11.3164938,PR:000011128,http://purl.obolibrary.org/obo/PR_000011128,serine/threonine-protein kinase Nek2 +11.3164938,PR:000014143,http://purl.obolibrary.org/obo/PR_000014143,ribonuclease inhibitor +11.3164938,PR:000015152,http://purl.obolibrary.org/obo/PR_000015152,multidrug and toxin extrusion protein 1 +11.3164938,PR:000016964,http://purl.obolibrary.org/obo/PR_000016964,ubiquitin D +11.3164938,PR:000022283,http://purl.obolibrary.org/obo/PR_000022283,none +11.3164938,UBERON:0001038,http://purl.obolibrary.org/obo/UBERON_0001038,chordotonal organ +11.3164938,UBERON:0018601,http://purl.obolibrary.org/obo/UBERON_0018601,lower central incisor tooth +11.3164938,UBERON:0034736,http://purl.obolibrary.org/obo/UBERON_0034736,coracoclavicular ligament +11.3200589,CHEBI:61458,http://purl.obolibrary.org/obo/CHEBI_61458,polysiloxane polymer +11.3200589,DRUGBANK:DB01150,http://purl.obolibrary.org/obo/DRUGBANK_DB01150,none +11.3200589,DRUGBANK:DB06611,http://purl.obolibrary.org/obo/DRUGBANK_DB06611,none +11.3200589,DRUGBANK:DB06823,http://purl.obolibrary.org/obo/DRUGBANK_DB06823,none +11.3200589,GO:0006578,http://purl.obolibrary.org/obo/GO_0006578,amino-acid betaine biosynthetic process +11.3200589,GO:0033165,http://purl.obolibrary.org/obo/GO_0033165,interphotoreceptor matrix +11.3200589,GO:0034699,http://purl.obolibrary.org/obo/GO_0034699,response to luteinizing hormone +11.3200589,HP:0002438,http://purl.obolibrary.org/obo/HP_0002438,Cerebellar malformation +11.3200589,HP:0008070,http://purl.obolibrary.org/obo/HP_0008070,Sparse hair +11.3200589,MONDO:0004080,http://purl.obolibrary.org/obo/MONDO_0004080,glottis squamous cell carcinoma +11.3200589,MONDO:0004641,http://purl.obolibrary.org/obo/MONDO_0004641,skin carcinoma in situ +11.3200589,MONDO:0024985,http://purl.obolibrary.org/obo/MONDO_0024985,sheep disease +11.3200589,MONDO:0043303,http://purl.obolibrary.org/obo/MONDO_0043303,hyperacusis +11.3200589,NCBITaxon:10181,http://purl.obolibrary.org/obo/NCBITaxon_10181,none +11.3200589,NCBITaxon:232799,http://purl.obolibrary.org/obo/NCBITaxon_232799,none +11.3200589,NCBITaxon:699189,http://purl.obolibrary.org/obo/NCBITaxon_699189,none +11.3200589,PR:000003288,http://purl.obolibrary.org/obo/PR_000003288,typical ubiquitin-conjugating enzyme E2 +11.3200589,PR:000004028,http://purl.obolibrary.org/obo/PR_000004028,angiopoietin-related protein 3 +11.3200589,PR:000006504,http://purl.obolibrary.org/obo/PR_000006504,"dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex, mitochondrial" +11.3200589,PR:000007438,http://purl.obolibrary.org/obo/PR_000007438,ficolin-2 +11.3200589,PR:000007717,http://purl.obolibrary.org/obo/PR_000007717,FYN-binding protein 1 +11.3200589,PR:000008964,http://purl.obolibrary.org/obo/PR_000008964,DNA-binding protein SMUBP-2 +11.3200589,PR:000009792,http://purl.obolibrary.org/obo/PR_000009792,LIM/homeobox protein Lhx2 +11.3200589,PR:000012521,http://purl.obolibrary.org/obo/PR_000012521,all trans-polyprenyl-diphosphate synthase PDSS1 +11.3200589,PR:000013265,http://purl.obolibrary.org/obo/PR_000013265,prokineticin-2 +11.3200589,PR:000016559,http://purl.obolibrary.org/obo/PR_000016559,apoptosis-stimulating of p53 protein 2 +11.3200589,PR:000022049,http://purl.obolibrary.org/obo/PR_000022049,none +11.3200589,PR:000022839,http://purl.obolibrary.org/obo/PR_000022839,none +11.3200589,PR:000032621,http://purl.obolibrary.org/obo/PR_000032621,bromodomain-containing protein 3 +11.3200589,PR:P25648,http://purl.obolibrary.org/obo/PR_P25648,none +11.3200589,PR:P84051,http://purl.obolibrary.org/obo/PR_P84051,none +11.3200589,PR:Q9ZUT8,http://purl.obolibrary.org/obo/PR_Q9ZUT8,none +11.3200589,SO:0000754,http://purl.obolibrary.org/obo/SO_0000754,lambda_vector +11.3200589,UBERON:0002902,http://purl.obolibrary.org/obo/UBERON_0002902,occipital pole +11.3200589,UBERON:0003083,http://purl.obolibrary.org/obo/UBERON_0003083,trunk neural crest +11.3236367,CL:0000355,http://purl.obolibrary.org/obo/CL_0000355,multi-potent skeletal muscle stem cell +11.3236367,CL:0002598,http://purl.obolibrary.org/obo/CL_0002598,bronchial smooth muscle cell +11.3236367,CL:0019019,http://purl.obolibrary.org/obo/CL_0019019,tracheobronchial smooth muscle cell +11.3236367,DRUGBANK:DB02600,http://purl.obolibrary.org/obo/DRUGBANK_DB02600,none +11.3236367,DRUGBANK:DB05831,http://purl.obolibrary.org/obo/DRUGBANK_DB05831,none +11.3236367,DRUGBANK:DB08808,http://purl.obolibrary.org/obo/DRUGBANK_DB08808,none +11.3236367,DRUGBANK:DB09045,http://purl.obolibrary.org/obo/DRUGBANK_DB09045,none +11.3236367,DRUGBANK:DB09160,http://purl.obolibrary.org/obo/DRUGBANK_DB09160,none +11.3236367,DRUGBANK:DB11714,http://purl.obolibrary.org/obo/DRUGBANK_DB11714,none +11.3236367,GO:0002064,http://purl.obolibrary.org/obo/GO_0002064,epithelial cell development +11.3236367,GO:0008976,http://purl.obolibrary.org/obo/GO_0008976,polyphosphate kinase activity +11.3236367,GO:0016483,http://purl.obolibrary.org/obo/GO_0016483,tryptophan hydroxylase activator activity +11.3236367,GO:0016778,http://purl.obolibrary.org/obo/GO_0016778,diphosphotransferase activity +11.3236367,GO:0017169,http://purl.obolibrary.org/obo/GO_0017169,CDP-alcohol phosphatidyltransferase activity +11.3236367,GO:0033028,http://purl.obolibrary.org/obo/GO_0033028,myeloid cell apoptotic process +11.3236367,MONDO:0002760,http://purl.obolibrary.org/obo/MONDO_0002760,bladder squamous cell carcinoma +11.3236367,MONDO:0003076,http://purl.obolibrary.org/obo/MONDO_0003076,unilateral retinoblastoma +11.3236367,MONDO:0004964,http://purl.obolibrary.org/obo/MONDO_0004964,"peripheral T-cell lymphoma, not otherwise specified" +11.3236367,MONDO:0006123,http://purl.obolibrary.org/obo/MONDO_0006123,cardiac rhabdomyoma +11.3236367,MONDO:0008283,http://purl.obolibrary.org/obo/MONDO_0008283,Cronkhite-Canada syndrome +11.3236367,MONDO:0015988,http://purl.obolibrary.org/obo/MONDO_0015988,multicystic dysplastic kidney +11.3236367,MONDO:0016156,http://purl.obolibrary.org/obo/MONDO_0016156,qualitative or quantitative defects of FKRP +11.3236367,MONDO:0019474,http://purl.obolibrary.org/obo/MONDO_0019474,hepatosplenic T-cell lymphoma +11.3236367,NCBITaxon:38662,http://purl.obolibrary.org/obo/NCBITaxon_38662,none +11.3236367,PR:000000703,http://purl.obolibrary.org/obo/PR_000000703,platelet-derived growth factor C +11.3236367,PR:000001139,http://purl.obolibrary.org/obo/PR_000001139,interleukin-17B +11.3236367,PR:000004136,http://purl.obolibrary.org/obo/PR_000004136,amyloid-like protein 1 +11.3236367,PR:000008313,http://purl.obolibrary.org/obo/PR_000008313,transcription initiation factor IIB +11.3236367,PR:000009976,http://purl.obolibrary.org/obo/PR_000009976,tumor necrosis factor receptor superfamily member 3 +11.3236367,PR:000012896,http://purl.obolibrary.org/obo/PR_000012896,plexin-B1 +11.3236367,PR:000015795,http://purl.obolibrary.org/obo/PR_000015795,syntaxin-3 +11.3236367,PR:000025991,http://purl.obolibrary.org/obo/PR_000025991,none +11.3236367,PR:P31044,http://purl.obolibrary.org/obo/PR_P31044,none +11.3236367,PR:P70296,http://purl.obolibrary.org/obo/PR_P70296,none +11.3236367,PR:Q42384,http://purl.obolibrary.org/obo/PR_Q42384,none +11.3236367,SO:0000873,http://purl.obolibrary.org/obo/SO_0000873,edited_transcript +11.3236367,UBERON:0001812,http://purl.obolibrary.org/obo/UBERON_0001812,palpebral conjunctiva +11.3236367,UBERON:0006659,http://purl.obolibrary.org/obo/UBERON_0006659,cruciate ligament of knee +11.3236367,UBERON:0012271,http://purl.obolibrary.org/obo/UBERON_0012271,major duodenal papilla +11.3236367,UBERON:0019243,http://purl.obolibrary.org/obo/UBERON_0019243,skin crease +11.3272274,CHEBI:46720,http://purl.obolibrary.org/obo/CHEBI_46720,carbonate mineral +11.3272274,DRUGBANK:DB00324,http://purl.obolibrary.org/obo/DRUGBANK_DB00324,none +11.3272274,DRUGBANK:DB00952,http://purl.obolibrary.org/obo/DRUGBANK_DB00952,none +11.3272274,DRUGBANK:DB01046,http://purl.obolibrary.org/obo/DRUGBANK_DB01046,none +11.3272274,DRUGBANK:DB08824,http://purl.obolibrary.org/obo/DRUGBANK_DB08824,none +11.3272274,DRUGBANK:DB11304,http://purl.obolibrary.org/obo/DRUGBANK_DB11304,none +11.3272274,DRUGBANK:DB11371,http://purl.obolibrary.org/obo/DRUGBANK_DB11371,none +11.3272274,DRUGBANK:DB13470,http://purl.obolibrary.org/obo/DRUGBANK_DB13470,none +11.3272274,DRUGBANK:DB13928,http://purl.obolibrary.org/obo/DRUGBANK_DB13928,none +11.3272274,DRUGBANK:DB15929,http://purl.obolibrary.org/obo/DRUGBANK_DB15929,none +11.3272274,GO:0001887,http://purl.obolibrary.org/obo/GO_0001887,selenium compound metabolic process +11.3272274,GO:0005775,http://purl.obolibrary.org/obo/GO_0005775,vacuolar lumen +11.3272274,GO:0008235,http://purl.obolibrary.org/obo/GO_0008235,metalloexopeptidase activity +11.3272274,GO:0032309,http://purl.obolibrary.org/obo/GO_0032309,icosanoid secretion +11.3272274,GO:0035873,http://purl.obolibrary.org/obo/GO_0035873,lactate transmembrane transport +11.3272274,GO:0036137,http://purl.obolibrary.org/obo/GO_0036137,kynurenine aminotransferase activity +11.3272274,GO:0097012,http://purl.obolibrary.org/obo/GO_0097012,response to granulocyte macrophage colony-stimulating factor +11.3272274,MONDO:0000171,http://purl.obolibrary.org/obo/MONDO_0000171,"muscular dystrophy-dystroglycanopathy, type A" +11.3272274,MONDO:0003519,http://purl.obolibrary.org/obo/MONDO_0003519,malignant syringoma +11.3272274,MONDO:0004777,http://purl.obolibrary.org/obo/MONDO_0004777,acute laryngitis +11.3272274,MONDO:0006085,http://purl.obolibrary.org/obo/MONDO_0006085,angiolipoma +11.3272274,MONDO:0007738,http://purl.obolibrary.org/obo/MONDO_0007738,spondyloepiphyseal dysplasia with congenital joint dislocations +11.3272274,MONDO:0016184,http://purl.obolibrary.org/obo/MONDO_0016184,qualitative or quantitative defects of protein O-mannosyltransferase 1 +11.3272274,MONDO:0019434,http://purl.obolibrary.org/obo/MONDO_0019434,systemic-onset juvenile idiopathic arthritis +11.3272274,PR:000001182,http://purl.obolibrary.org/obo/PR_000001182,adrenocorticotropic hormone receptor +11.3272274,PR:000003832,http://purl.obolibrary.org/obo/PR_000003832,glycogen debranching enzyme +11.3272274,PR:000007624,http://purl.obolibrary.org/obo/PR_000007624,forkhead box protein H1 +11.3272274,PR:000007670,http://purl.obolibrary.org/obo/PR_000007670,fibroblast growth factor receptor substrate 2 +11.3272274,PR:000012438,http://purl.obolibrary.org/obo/PR_000012438,proprotein convertase subtilisin/kexin type 6 +11.3272274,PR:000014781,http://purl.obolibrary.org/obo/PR_000014781,alpha-sarcoglycan +11.3272274,PR:000016485,http://purl.obolibrary.org/obo/PR_000016485,tumor necrosis factor receptor superfamily member 25 +11.3272274,PR:000022308,http://purl.obolibrary.org/obo/PR_000022308,none +11.3272274,PR:000023566,http://purl.obolibrary.org/obo/PR_000023566,none +11.3272274,PR:000029227,http://purl.obolibrary.org/obo/PR_000029227,none +11.3272274,PR:Q8VWG3,http://purl.obolibrary.org/obo/PR_Q8VWG3,none +11.3272274,UBERON:0002131,http://purl.obolibrary.org/obo/UBERON_0002131,anterior lobe of cerebellum +11.3272274,UBERON:0002956,http://purl.obolibrary.org/obo/UBERON_0002956,granular layer of cerebellar cortex +11.3272274,UBERON:0004486,http://purl.obolibrary.org/obo/UBERON_0004486,musculature of perineum +11.330831,CHEBI:15841,http://purl.obolibrary.org/obo/CHEBI_15841,polypeptide +11.330831,CHEBI:33966,http://purl.obolibrary.org/obo/CHEBI_33966,elemental silver +11.330831,DRUGBANK:DB06712,http://purl.obolibrary.org/obo/DRUGBANK_DB06712,none +11.330831,GO:0004074,http://purl.obolibrary.org/obo/GO_0004074,biliverdin reductase (NAD(P)+) activity +11.330831,GO:0045240,http://purl.obolibrary.org/obo/GO_0045240,dihydrolipoyl dehydrogenase complex +11.330831,GO:0052834,http://purl.obolibrary.org/obo/GO_0052834,inositol monophosphate phosphatase activity +11.330831,GO:0071884,http://purl.obolibrary.org/obo/GO_0071884,none +11.330831,MONDO:0001251,http://purl.obolibrary.org/obo/MONDO_0001251,chronic apical periodontitis +11.330831,MONDO:0003987,http://purl.obolibrary.org/obo/MONDO_0003987,lung lymphoma +11.330831,NCBITaxon:451871,http://purl.obolibrary.org/obo/NCBITaxon_451871,Eurotiomycetidae +11.330831,PR:000001502,http://purl.obolibrary.org/obo/PR_000001502,G-protein coupled receptor 1 +11.330831,PR:000002052,http://purl.obolibrary.org/obo/PR_000002052,none +11.330831,PR:000005886,http://purl.obolibrary.org/obo/PR_000005886,cytokine receptor-like factor 2 +11.330831,PR:000007360,http://purl.obolibrary.org/obo/PR_000007360,fibulin-5 +11.330831,PR:000012823,http://purl.obolibrary.org/obo/PR_000012823,zinc finger protein PLAGL1 +11.330831,PR:000013665,http://purl.obolibrary.org/obo/PR_000013665,cell cycle checkpoint protein RAD17 +11.330831,PR:000017194,http://purl.obolibrary.org/obo/PR_000017194,ubiquitin carboxyl-terminal hydrolase 6 +11.330831,PR:000027538,http://purl.obolibrary.org/obo/PR_000027538,none +11.330831,UBERON:0007521,http://purl.obolibrary.org/obo/UBERON_0007521,smooth muscle sphincter +11.330831,UBERON:0007642,http://purl.obolibrary.org/obo/UBERON_0007642,ligamentum arteriosum +11.3344476,CHEBI:15358,http://purl.obolibrary.org/obo/CHEBI_15358,histone +11.3344476,CHEBI:26873,http://purl.obolibrary.org/obo/CHEBI_26873,terpenoid +11.3344476,DRUGBANK:DB04918,http://purl.obolibrary.org/obo/DRUGBANK_DB04918,none +11.3344476,DRUGBANK:DB06281,http://purl.obolibrary.org/obo/DRUGBANK_DB06281,none +11.3344476,GO:0000325,http://purl.obolibrary.org/obo/GO_0000325,plant-type vacuole +11.3344476,GO:0035879,http://purl.obolibrary.org/obo/GO_0035879,plasma membrane lactate transport +11.3344476,GO:0045239,http://purl.obolibrary.org/obo/GO_0045239,tricarboxylic acid cycle enzyme complex +11.3344476,GO:0048754,http://purl.obolibrary.org/obo/GO_0048754,branching morphogenesis of an epithelial tube +11.3344476,MONDO:0000128,http://purl.obolibrary.org/obo/MONDO_0000128,giant axonal neuropathy +11.3344476,MONDO:0000384,http://purl.obolibrary.org/obo/MONDO_0000384,bladder benign neoplasm +11.3344476,MONDO:0001239,http://purl.obolibrary.org/obo/MONDO_0001239,anemia of prematurity +11.3344476,MONDO:0001279,http://purl.obolibrary.org/obo/MONDO_0001279,intraspinal meningioma +11.3344476,NCBITaxon:6076,http://purl.obolibrary.org/obo/NCBITaxon_6076,none +11.3344476,NCBITaxon:6080,http://purl.obolibrary.org/obo/NCBITaxon_6080,none +11.3344476,NCBITaxon:7224,http://purl.obolibrary.org/obo/NCBITaxon_7224,Drosophila hydei +11.3344476,PR:000001308,http://purl.obolibrary.org/obo/PR_000001308,CD48 molecule +11.3344476,PR:000004919,http://purl.obolibrary.org/obo/PR_000004919,carbonic anhydrase 3 +11.3344476,PR:000005002,http://purl.obolibrary.org/obo/PR_000005002,cullin-associated NEDD8-dissociated protein 1 +11.3344476,PR:000005152,http://purl.obolibrary.org/obo/PR_000005152,T-complex protein 1 subunit delta +11.3344476,PR:000006001,http://purl.obolibrary.org/obo/PR_000006001,CTD small phosphatase-like protein +11.3344476,PR:000009238,http://purl.obolibrary.org/obo/PR_000009238,kalirin +11.3344476,PR:000011441,http://purl.obolibrary.org/obo/PR_000011441,"histone-lysine N-methyltransferase, H3 lysine-36 specific" +11.3344476,PR:000014955,http://purl.obolibrary.org/obo/PR_000014955,monocarboxylate transporter 2 +11.3344476,PR:000036820,http://purl.obolibrary.org/obo/PR_000036820,none +11.3380774,CHEBI:62754,http://purl.obolibrary.org/obo/CHEBI_62754,glycine receptor antagonist +11.3380774,CHEBI:77182,http://purl.obolibrary.org/obo/CHEBI_77182,food colouring +11.3380774,DRUGBANK:DB10430,http://purl.obolibrary.org/obo/DRUGBANK_DB10430,none +11.3380774,DRUGBANK:DB10535,http://purl.obolibrary.org/obo/DRUGBANK_DB10535,none +11.3380774,DRUGBANK:DB10847,http://purl.obolibrary.org/obo/DRUGBANK_DB10847,none +11.3380774,DRUGBANK:DB13952,http://purl.obolibrary.org/obo/DRUGBANK_DB13952,none +11.3380774,DRUGBANK:DB14275,http://purl.obolibrary.org/obo/DRUGBANK_DB14275,none +11.3380774,GO:0004630,http://purl.obolibrary.org/obo/GO_0004630,phospholipase D activity +11.3380774,GO:0016977,http://purl.obolibrary.org/obo/GO_0016977,chitosanase activity +11.3380774,GO:0042542,http://purl.obolibrary.org/obo/GO_0042542,response to hydrogen peroxide +11.3380774,GO:0045229,http://purl.obolibrary.org/obo/GO_0045229,external encapsulating structure organization +11.3380774,HP:0003418,http://purl.obolibrary.org/obo/HP_0003418,Back pain +11.3380774,HP:0030222,http://purl.obolibrary.org/obo/HP_0030222,Visual agnosia +11.3380774,MONDO:0005639,http://purl.obolibrary.org/obo/MONDO_0005639,AIDS related complex +11.3380774,MONDO:0006701,http://purl.obolibrary.org/obo/MONDO_0006701,chromophobe adenoma +11.3380774,MONDO:0008682,http://purl.obolibrary.org/obo/MONDO_0008682,Denys-Drash syndrome +11.3380774,MONDO:0008695,http://purl.obolibrary.org/obo/MONDO_0008695,chorea-acanthocytosis +11.3380774,MONDO:0009068,http://purl.obolibrary.org/obo/MONDO_0009068,cytochrome-c oxidase deficiency disease +11.3380774,MONDO:0009958,http://purl.obolibrary.org/obo/MONDO_0009958,adult Refsum disease +11.3380774,MONDO:0010585,http://purl.obolibrary.org/obo/MONDO_0010585,X-linked hypohidrotic ectodermal dysplasia +11.3380774,MONDO:0019112,http://purl.obolibrary.org/obo/MONDO_0019112,cancer-associated retinopathy +11.3380774,MONDO:0019605,http://purl.obolibrary.org/obo/MONDO_0019605,immunotactoid or fibrillary glomerulopathy +11.3380774,MONDO:0100258,http://purl.obolibrary.org/obo/MONDO_0100258,phytanoyl-CoA hydroxylase deficiency +11.3380774,MONDO:0100277,http://purl.obolibrary.org/obo/MONDO_0100277,disorder of peroxisomal alpha oxidation +11.3380774,NCBITaxon:2732423,http://purl.obolibrary.org/obo/NCBITaxon_2732423,Arfiviricetes +11.3380774,PR:000001563,http://purl.obolibrary.org/obo/PR_000001563,G-protein coupled receptor MAS +11.3380774,PR:000002079,http://purl.obolibrary.org/obo/PR_000002079,potassium channel subfamily K member 9 +11.3380774,PR:000004188,http://purl.obolibrary.org/obo/PR_000004188,aquaporin-8 +11.3380774,PR:000007273,http://purl.obolibrary.org/obo/PR_000007273,eyes absent homolog 1 +11.3380774,PR:000007363,http://purl.obolibrary.org/obo/PR_000007363,fibrillin-2 +11.3380774,PR:000008976,http://purl.obolibrary.org/obo/PR_000008976,protein Red +11.3380774,PR:000012890,http://purl.obolibrary.org/obo/PR_000012890,plasmalemma vesicle-associated protein +11.3380774,PR:000013380,http://purl.obolibrary.org/obo/PR_000013380,26S proteasome regulatory subunit 6A +11.3380774,PR:000034254,http://purl.obolibrary.org/obo/PR_000034254,none +11.3380774,PR:P14093,http://purl.obolibrary.org/obo/PR_P14093,none +11.3380774,PR:P33005,http://purl.obolibrary.org/obo/PR_P33005,none +11.3380774,PR:P52925,http://purl.obolibrary.org/obo/PR_P52925,none +11.3380774,PR:P84345,http://purl.obolibrary.org/obo/PR_P84345,none +11.3380774,PR:Q05753,http://purl.obolibrary.org/obo/PR_Q05753,none +11.3380774,PR:Q9MIY6,http://purl.obolibrary.org/obo/PR_Q9MIY6,none +11.3380774,SO:0001198,http://purl.obolibrary.org/obo/SO_0001198,ds_DNA_viral_sequence +11.3380774,SO:0001647,http://purl.obolibrary.org/obo/SO_0001647,kozak_sequence +11.3417204,DRUGBANK:DB04831,http://purl.obolibrary.org/obo/DRUGBANK_DB04831,none +11.3417204,DRUGBANK:DB09496,http://purl.obolibrary.org/obo/DRUGBANK_DB09496,none +11.3417204,DRUGBANK:DB10664,http://purl.obolibrary.org/obo/DRUGBANK_DB10664,none +11.3417204,GO:0001779,http://purl.obolibrary.org/obo/GO_0001779,natural killer cell differentiation +11.3417204,GO:0002367,http://purl.obolibrary.org/obo/GO_0002367,cytokine production involved in immune response +11.3417204,MONDO:0009237,http://purl.obolibrary.org/obo/MONDO_0009237,focal epithelial hyperplasia +11.3417204,MONDO:0009678,http://purl.obolibrary.org/obo/MONDO_0009678,"muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 4" +11.3417204,MONDO:0700067,http://purl.obolibrary.org/obo/MONDO_0700067,myopathy caused by varation in FKTN +11.3417204,PR:000001454,http://purl.obolibrary.org/obo/PR_000001454,frizzled-4 +11.3417204,PR:000001472,http://purl.obolibrary.org/obo/PR_000001472,interleukin-19 +11.3417204,PR:000002223,http://purl.obolibrary.org/obo/PR_000002223,tumor necrosis factor ligand superfamily member 15 +11.3417204,PR:000006260,http://purl.obolibrary.org/obo/PR_000006260,disabled homolog 2-interacting protein +11.3417204,PR:000006371,http://purl.obolibrary.org/obo/PR_000006371,deformed epidermal autoregulatory factor 1 +11.3417204,PR:000010767,http://purl.obolibrary.org/obo/PR_000010767,mucin-3A +11.3417204,PR:000012782,http://purl.obolibrary.org/obo/PR_000012782,pyruvate kinase PKLR +11.3417204,PR:000012871,http://purl.obolibrary.org/obo/PR_000012871,serine/threonine-protein kinase PLK2 +11.3417204,PR:000013133,http://purl.obolibrary.org/obo/PR_000013133,neurabin-2 +11.3417204,PR:000014718,http://purl.obolibrary.org/obo/PR_000014718,SET-binding protein +11.3417204,PR:000016002,http://purl.obolibrary.org/obo/PR_000016002,transport and Golgi organization protein 2 +11.3417204,PR:000016455,http://purl.obolibrary.org/obo/PR_000016455,transmembrane protease serine 13 +11.3417204,PR:000032263,http://purl.obolibrary.org/obo/PR_000032263,thiosulfate:glutathione sulfurtransferase +11.3417204,PR:000032689,http://purl.obolibrary.org/obo/PR_000032689,phospholipid-transporting ATPase IC +11.3417204,PR:000034060,http://purl.obolibrary.org/obo/PR_000034060,none +11.3417204,PR:Q703I1,http://purl.obolibrary.org/obo/PR_Q703I1,none +11.3417204,UBERON:0002304,http://purl.obolibrary.org/obo/UBERON_0002304,layer of dentate gyrus +11.3453767,CHEBI:26878,http://purl.obolibrary.org/obo/CHEBI_26878,tertiary alcohol +11.3453767,CHEBI:27364,http://purl.obolibrary.org/obo/CHEBI_27364,zinc molecular entity +11.3453767,CHEBI:33366,http://purl.obolibrary.org/obo/CHEBI_33366,copper group element atom +11.3453767,CHEBI:35416,http://purl.obolibrary.org/obo/CHEBI_35416,alpha-amino-acid residue anion +11.3453767,CHEBI:64898,http://purl.obolibrary.org/obo/CHEBI_64898,anionic amino-acid residue +11.3453767,DRUGBANK:DB07101,http://purl.obolibrary.org/obo/DRUGBANK_DB07101,none +11.3453767,DRUGBANK:DB14688,http://purl.obolibrary.org/obo/DRUGBANK_DB14688,none +11.3453767,DRUGBANK:DB15243,http://purl.obolibrary.org/obo/DRUGBANK_DB15243,none +11.3453767,GO:0005861,http://purl.obolibrary.org/obo/GO_0005861,troponin complex +11.3453767,GO:0009686,http://purl.obolibrary.org/obo/GO_0009686,gibberellin biosynthetic process +11.3453767,GO:0009931,http://purl.obolibrary.org/obo/GO_0009931,calcium-dependent protein serine/threonine kinase activity +11.3453767,GO:0030653,http://purl.obolibrary.org/obo/GO_0030653,beta-lactam antibiotic metabolic process +11.3453767,GO:0042703,http://purl.obolibrary.org/obo/GO_0042703,menstruation +11.3453767,GO:2000846,http://purl.obolibrary.org/obo/GO_2000846,regulation of corticosteroid hormone secretion +11.3453767,HP:0001873,http://purl.obolibrary.org/obo/HP_0001873,Thrombocytopenia +11.3453767,MONDO:0002058,http://purl.obolibrary.org/obo/MONDO_0002058,breast adenoma +11.3453767,MONDO:0002969,http://purl.obolibrary.org/obo/MONDO_0002969,ciliary body cancer +11.3453767,MONDO:0005599,http://purl.obolibrary.org/obo/MONDO_0005599,malignant epithelioid mesothelioma +11.3453767,MONDO:0005661,http://purl.obolibrary.org/obo/MONDO_0005661,babesiosis +11.3453767,MONDO:0010631,http://purl.obolibrary.org/obo/MONDO_0010631,incontinentia pigmenti +11.3453767,MONDO:0016868,http://purl.obolibrary.org/obo/MONDO_0016868,partial deletion of chromosome 3 +11.3453767,MONDO:0017950,http://purl.obolibrary.org/obo/MONDO_0017950,microcephalic primordial dwarfism +11.3453767,MONDO:0020286,http://purl.obolibrary.org/obo/MONDO_0020286,aortic malformation +11.3453767,MONDO:0021244,http://purl.obolibrary.org/obo/MONDO_0021244,submandibular gland neoplasm +11.3453767,NCBITaxon:1385,http://purl.obolibrary.org/obo/NCBITaxon_1385,Bacillales +11.3453767,NCBITaxon:1612408,http://purl.obolibrary.org/obo/NCBITaxon_1612408,none +11.3453767,NCBITaxon:37705,http://purl.obolibrary.org/obo/NCBITaxon_37705,none +11.3453767,NCBITaxon:406427,http://purl.obolibrary.org/obo/NCBITaxon_406427,none +11.3453767,PR:000004865,http://purl.obolibrary.org/obo/PR_000004865,basic leucine zipper and W2 domain-containing protein 1 +11.3453767,PR:000006541,http://purl.obolibrary.org/obo/PR_000006541,myotonin-protein kinase +11.3453767,PR:000006677,http://purl.obolibrary.org/obo/PR_000006677,protein dpy-30 +11.3453767,PR:000006765,http://purl.obolibrary.org/obo/PR_000006765,segment polarity protein dishevelled homolog DVL-1 +11.3453767,PR:000007496,http://purl.obolibrary.org/obo/PR_000007496,fibroblast growth factor 5 +11.3453767,PR:000013442,http://purl.obolibrary.org/obo/PR_000013442,protein tyrosine phosphatase type IVA 3 +11.3453767,PR:000014606,http://purl.obolibrary.org/obo/PR_000014606,methanethiol oxidase +11.3453767,PR:000015067,http://purl.obolibrary.org/obo/PR_000015067,SLC2A4 regulator +11.3453767,PR:000015149,http://purl.obolibrary.org/obo/PR_000015149,membrane-associated transporter protein +11.3453767,PR:000016370,http://purl.obolibrary.org/obo/PR_000016370,transketolase-like protein 1 +11.3453767,PR:000017333,http://purl.obolibrary.org/obo/PR_000017333,vacuolar protein sorting-associated protein 35 +11.3453767,PR:000050062,http://purl.obolibrary.org/obo/PR_000050062,56kDa selenium binding protein +11.3453767,PR:P46587,http://purl.obolibrary.org/obo/PR_P46587,none +11.3453767,PR:Q61475,http://purl.obolibrary.org/obo/PR_Q61475,none +11.3453767,PR:Q9C0Y4,http://purl.obolibrary.org/obo/PR_Q9C0Y4,none +11.3490464,CHEBI:10033,http://purl.obolibrary.org/obo/CHEBI_10033,warfarin +11.3490464,CL:0000590,http://purl.obolibrary.org/obo/CL_0000590,small luteal cell +11.3490464,DRUGBANK:DB02948,http://purl.obolibrary.org/obo/DRUGBANK_DB02948,none +11.3490464,DRUGBANK:DB03305,http://purl.obolibrary.org/obo/DRUGBANK_DB03305,none +11.3490464,DRUGBANK:DB09214,http://purl.obolibrary.org/obo/DRUGBANK_DB09214,none +11.3490464,DRUGBANK:DB09283,http://purl.obolibrary.org/obo/DRUGBANK_DB09283,none +11.3490464,DRUGBANK:DB11171,http://purl.obolibrary.org/obo/DRUGBANK_DB11171,none +11.3490464,DRUGBANK:DB15582,http://purl.obolibrary.org/obo/DRUGBANK_DB15582,none +11.3490464,DRUGBANK:DB15774,http://purl.obolibrary.org/obo/DRUGBANK_DB15774,none +11.3490464,GO:0030808,http://purl.obolibrary.org/obo/GO_0030808,regulation of nucleotide biosynthetic process +11.3490464,GO:0051385,http://purl.obolibrary.org/obo/GO_0051385,response to mineralocorticoid +11.3490464,GO:0072538,http://purl.obolibrary.org/obo/GO_0072538,T-helper 17 type immune response +11.3490464,MONDO:0018044,http://purl.obolibrary.org/obo/MONDO_0018044,idiopathic hypersomnia +11.3490464,MONDO:0019991,http://purl.obolibrary.org/obo/MONDO_0019991,immunotactoid glomerulopathy +11.3490464,MONDO:0044843,http://purl.obolibrary.org/obo/MONDO_0044843,torsion dystonia +11.3490464,NCBITaxon:1980419,http://purl.obolibrary.org/obo/NCBITaxon_1980419,none +11.3490464,PR:000003163,http://purl.obolibrary.org/obo/PR_000003163,transforming growth factor-beta receptor-associated protein 1 +11.3490464,PR:000003985,http://purl.obolibrary.org/obo/PR_000003985,ameloblastin +11.3490464,PR:000003986,http://purl.obolibrary.org/obo/PR_000003986,protein AMBP +11.3490464,PR:000004445,http://purl.obolibrary.org/obo/PR_000004445,plasma membrane calcium-transporting ATPase 1 +11.3490464,PR:000005795,http://purl.obolibrary.org/obo/PR_000005795,carboxypeptidase A1 +11.3490464,PR:000006292,http://purl.obolibrary.org/obo/PR_000006292,protein DBF4 homolog A +11.3490464,PR:000008693,http://purl.obolibrary.org/obo/PR_000008693,homeobox protein Hox-A5 +11.3490464,PR:000012235,http://purl.obolibrary.org/obo/PR_000012235,multifunctional protein ADE2 +11.3490464,PR:000012574,http://purl.obolibrary.org/obo/PR_000012574,prefoldin subunit 4 +11.3490464,PR:000013386,http://purl.obolibrary.org/obo/PR_000013386,26S proteasome non-ATPase regulatory subunit 14 +11.3490464,PR:000013867,http://purl.obolibrary.org/obo/PR_000013867,receptor expression-enhancing protein 5 +11.3490464,PR:000014303,http://purl.obolibrary.org/obo/PR_000014303,ribosome-binding protein 1 +11.3490464,PR:000014402,http://purl.obolibrary.org/obo/PR_000014402,protein S100-A1 +11.3490464,PR:000014860,http://purl.obolibrary.org/obo/PR_000014860,E3 ubiquitin-protein ligase SIAH1 +11.3490464,PR:000022915,http://purl.obolibrary.org/obo/PR_000022915,none +11.3490464,PR:000026996,http://purl.obolibrary.org/obo/PR_000026996,microtubule-associated protein tau isoform Tau-C +11.3490464,PR:Q9M9L6,http://purl.obolibrary.org/obo/PR_Q9M9L6,none +11.3490464,SO:0000625,http://purl.obolibrary.org/obo/SO_0000625,silencer +11.3490464,UBERON:0001159,http://purl.obolibrary.org/obo/UBERON_0001159,sigmoid colon +11.3490464,UBERON:0002054,http://purl.obolibrary.org/obo/UBERON_0002054,zona fasciculata of adrenal gland +11.3527296,CHEBI:26708,http://purl.obolibrary.org/obo/CHEBI_26708,sodium atom +11.3527296,CHEBI:50299,http://purl.obolibrary.org/obo/CHEBI_50299,canonical ribonucleotide residue +11.3527296,CHEBI:63963,http://purl.obolibrary.org/obo/CHEBI_63963,metabotropic glutamate receptor antagonist +11.3527296,CL:1001569,http://purl.obolibrary.org/obo/CL_1001569,hippocampal interneuron +11.3527296,DRUGBANK:DB00504,http://purl.obolibrary.org/obo/DRUGBANK_DB00504,none +11.3527296,DRUGBANK:DB11374,http://purl.obolibrary.org/obo/DRUGBANK_DB11374,none +11.3527296,DRUGBANK:DB16015,http://purl.obolibrary.org/obo/DRUGBANK_DB16015,none +11.3527296,GO:0004698,http://purl.obolibrary.org/obo/GO_0004698,calcium-dependent protein kinase C activity +11.3527296,GO:0004723,http://purl.obolibrary.org/obo/GO_0004723,calcium-dependent protein serine/threonine phosphatase activity +11.3527296,GO:0032452,http://purl.obolibrary.org/obo/GO_0032452,histone demethylase activity +11.3527296,GO:0033192,http://purl.obolibrary.org/obo/GO_0033192,calmodulin-dependent protein phosphatase activity +11.3527296,GO:0036297,http://purl.obolibrary.org/obo/GO_0036297,interstrand cross-link repair +11.3527296,GO:0051917,http://purl.obolibrary.org/obo/GO_0051917,regulation of fibrinolysis +11.3527296,GO:0140457,http://purl.obolibrary.org/obo/GO_0140457,protein demethylase activity +11.3527296,MONDO:0001472,http://purl.obolibrary.org/obo/MONDO_0001472,testicular lymphoma +11.3527296,MONDO:0004937,http://purl.obolibrary.org/obo/MONDO_0004937,hypervitaminosis D +11.3527296,MONDO:0008223,http://purl.obolibrary.org/obo/MONDO_0008223,hypokalemic periodic paralysis +11.3527296,MONDO:0008893,http://purl.obolibrary.org/obo/MONDO_0008893,C syndrome +11.3527296,MONDO:0015306,http://purl.obolibrary.org/obo/MONDO_0015306,Lemierre syndrome +11.3527296,MONDO:0016375,http://purl.obolibrary.org/obo/MONDO_0016375,acquired peripheral movement disorder +11.3527296,MONDO:0022057,http://purl.obolibrary.org/obo/MONDO_0022057,calcifying epithelial odontogenic tumor +11.3527296,NCBITaxon:species,http://purl.obolibrary.org/obo/NCBITaxon_species,none +11.3527296,PR:000002100,http://purl.obolibrary.org/obo/PR_000002100,sodium channel protein type 4 subunit alpha +11.3527296,PR:000005240,http://purl.obolibrary.org/obo/PR_000005240,cadherin-23 +11.3527296,PR:000006916,http://purl.obolibrary.org/obo/PR_000006916,ephrin-A1 +11.3527296,PR:000007448,http://purl.obolibrary.org/obo/PR_000007448,squalene synthase +11.3527296,PR:000008604,http://purl.obolibrary.org/obo/PR_000008604,zinc finger protein 40 +11.3527296,PR:000012580,http://purl.obolibrary.org/obo/PR_000012580,"6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 3" +11.3527296,PR:000014028,http://purl.obolibrary.org/obo/PR_000014028,GTP-binding protein Rit1 +11.3527296,PR:000016701,http://purl.obolibrary.org/obo/PR_000016701,transient receptor potential cation channel subfamily M member 5 +11.3527296,PR:000029496,http://purl.obolibrary.org/obo/PR_000029496,fermitin family homolog 2 +11.3527296,PR:P22809,http://purl.obolibrary.org/obo/PR_P22809,none +11.3527296,PR:P48774,http://purl.obolibrary.org/obo/PR_P48774,none +11.3527296,PR:Q00917,http://purl.obolibrary.org/obo/PR_Q00917,none +11.3527296,UBERON:0003068,http://purl.obolibrary.org/obo/UBERON_0003068,axial mesoderm +11.3564265,CHEBI:26208,http://purl.obolibrary.org/obo/CHEBI_26208,polyunsaturated fatty acid +11.3564265,CHEBI:35740,http://purl.obolibrary.org/obo/CHEBI_35740,liposaccharide +11.3564265,CHEBI:68563,http://purl.obolibrary.org/obo/CHEBI_68563,P2Y12 receptor antagonist +11.3564265,CHEBI:91079,http://purl.obolibrary.org/obo/CHEBI_91079,purinergic receptor P2 antagonist +11.3564265,CL:0000732,http://purl.obolibrary.org/obo/CL_0000732,amoeboid cell +11.3564265,DRUGBANK:DB00486,http://purl.obolibrary.org/obo/DRUGBANK_DB00486,none +11.3564265,DRUGBANK:DB01604,http://purl.obolibrary.org/obo/DRUGBANK_DB01604,none +11.3564265,DRUGBANK:DB06271,http://purl.obolibrary.org/obo/DRUGBANK_DB06271,none +11.3564265,DRUGBANK:DB08496,http://purl.obolibrary.org/obo/DRUGBANK_DB08496,none +11.3564265,DRUGBANK:DB13033,http://purl.obolibrary.org/obo/DRUGBANK_DB13033,none +11.3564265,DRUGBANK:DB13766,http://purl.obolibrary.org/obo/DRUGBANK_DB13766,none +11.3564265,GO:0015837,http://purl.obolibrary.org/obo/GO_0015837,amine transport +11.3564265,GO:0030654,http://purl.obolibrary.org/obo/GO_0030654,beta-lactam antibiotic biosynthetic process +11.3564265,GO:0042939,http://purl.obolibrary.org/obo/GO_0042939,tripeptide transport +11.3564265,GO:0044058,http://purl.obolibrary.org/obo/GO_0044058,regulation of digestive system process +11.3564265,GO:0071772,http://purl.obolibrary.org/obo/GO_0071772,response to BMP +11.3564265,GO:1901555,http://purl.obolibrary.org/obo/GO_1901555,response to paclitaxel +11.3564265,MONDO:0002072,http://purl.obolibrary.org/obo/MONDO_0002072,melanotic neuroectodermal tumor +11.3564265,MONDO:0006272,http://purl.obolibrary.org/obo/MONDO_0006272,low grade fibromyxoid sarcoma +11.3564265,MONDO:0009726,http://purl.obolibrary.org/obo/MONDO_0009726,proteosome-associated autoinflammatory syndrome +11.3564265,MONDO:0011986,http://purl.obolibrary.org/obo/MONDO_0011986,tropical pancreatitis +11.3564265,MONDO:0016883,http://purl.obolibrary.org/obo/MONDO_0016883,partial deletion of the short arm of chromosome 1 +11.3564265,MONDO:0024377,http://purl.obolibrary.org/obo/MONDO_0024377,"circadian rhythm sleep disorder, delayed sleep phase type" +11.3564265,PR:000005866,http://purl.obolibrary.org/obo/PR_000005866,cAMP-responsive element modulator +11.3564265,PR:000007020,http://purl.obolibrary.org/obo/PR_000007020,ETS-related transcription factor Elf-1 +11.3564265,PR:000007992,http://purl.obolibrary.org/obo/PR_000007992,gap junction alpha-3 protein +11.3564265,PR:P13002,http://purl.obolibrary.org/obo/PR_P13002,none +11.3564265,PR:Q8RY59,http://purl.obolibrary.org/obo/PR_Q8RY59,none +11.3601371,DRUGBANK:DB00395,http://purl.obolibrary.org/obo/DRUGBANK_DB00395,none +11.3601371,DRUGBANK:DB10625,http://purl.obolibrary.org/obo/DRUGBANK_DB10625,none +11.3601371,DRUGBANK:DB11510,http://purl.obolibrary.org/obo/DRUGBANK_DB11510,none +11.3601371,DRUGBANK:DB15087,http://purl.obolibrary.org/obo/DRUGBANK_DB15087,none +11.3601371,GO:0001568,http://purl.obolibrary.org/obo/GO_0001568,blood vessel development +11.3601371,GO:0006661,http://purl.obolibrary.org/obo/GO_0006661,phosphatidylinositol biosynthetic process +11.3601371,GO:0042304,http://purl.obolibrary.org/obo/GO_0042304,regulation of fatty acid biosynthetic process +11.3601371,GO:0060419,http://purl.obolibrary.org/obo/GO_0060419,heart growth +11.3601371,GO:0060575,http://purl.obolibrary.org/obo/GO_0060575,intestinal epithelial cell differentiation +11.3601371,GO:0071684,http://purl.obolibrary.org/obo/GO_0071684,organism emergence from protective structure +11.3601371,MONDO:0001597,http://purl.obolibrary.org/obo/MONDO_0001597,submandibular gland disease +11.3601371,MONDO:0005255,http://purl.obolibrary.org/obo/MONDO_0005255,mild heart failure +11.3601371,MONDO:0005932,http://purl.obolibrary.org/obo/MONDO_0005932,pseudorabies +11.3601371,MONDO:0006192,http://purl.obolibrary.org/obo/MONDO_0006192,endometrial endometrioid adenocarcinoma +11.3601371,MONDO:0010896,http://purl.obolibrary.org/obo/MONDO_0010896,pigment dispersion syndrome +11.3601371,MONDO:0016434,http://purl.obolibrary.org/obo/MONDO_0016434,acquired dermis elastic tissue disorder +11.3601371,PR:000006070,http://purl.obolibrary.org/obo/PR_000006070,C-X-C motif chemokine 3 +11.3601371,PR:000009770,http://purl.obolibrary.org/obo/PR_000009770,galectin-2 +11.3601371,PR:000013900,http://purl.obolibrary.org/obo/PR_000013900,DNA polymerase zeta catalytic subunit +11.3601371,PR:000015018,http://purl.obolibrary.org/obo/PR_000015018,mitochondrial glutamate carrier 1 +11.3601371,PR:000016282,http://purl.obolibrary.org/obo/PR_000016282,transferrin receptor protein 2 +11.3601371,PR:000016383,http://purl.obolibrary.org/obo/PR_000016383,T-cell leukemia homeobox protein 1 +11.3601371,PR:000017050,http://purl.obolibrary.org/obo/PR_000017050,UDP-glucuronosyltransferase 1A3 +11.3601371,PR:000017481,http://purl.obolibrary.org/obo/PR_000017481,membrane transport protein XK +11.3601371,PR:000023341,http://purl.obolibrary.org/obo/PR_000023341,none +11.3601371,PR:O04529,http://purl.obolibrary.org/obo/PR_O04529,none +11.3601371,PR:P49775,http://purl.obolibrary.org/obo/PR_P49775,none +11.3601371,PR:Q9VR07,http://purl.obolibrary.org/obo/PR_Q9VR07,none +11.3601371,SO:0000338,http://purl.obolibrary.org/obo/SO_0000338,MITE +11.3601371,UBERON:0000376,http://purl.obolibrary.org/obo/UBERON_0000376,hindlimb stylopod +11.3601371,UBERON:0001877,http://purl.obolibrary.org/obo/UBERON_0001877,medial septal nucleus +11.3601371,UBERON:0006951,http://purl.obolibrary.org/obo/UBERON_0006951,inner dental epithelium +11.3601371,UBERON:0013493,http://purl.obolibrary.org/obo/UBERON_0013493,abdominal fascia +11.3601371,UBERON:2001118,http://purl.obolibrary.org/obo/UBERON_2001118,urogenital papilla +11.3638615,CHEBI:50858,http://purl.obolibrary.org/obo/CHEBI_50858,corticosteroid +11.3638615,CL:0000337,http://purl.obolibrary.org/obo/CL_0000337,neuroblast (sensu Vertebrata) +11.3638615,CL:0001042,http://purl.obolibrary.org/obo/CL_0001042,T-helper 22 cell +11.3638615,DRUGBANK:DB01570,http://purl.obolibrary.org/obo/DRUGBANK_DB01570,none +11.3638615,DRUGBANK:DB09225,http://purl.obolibrary.org/obo/DRUGBANK_DB09225,none +11.3638615,DRUGBANK:DB09371,http://purl.obolibrary.org/obo/DRUGBANK_DB09371,none +11.3638615,DRUGBANK:DB11742,http://purl.obolibrary.org/obo/DRUGBANK_DB11742,none +11.3638615,DRUGBANK:DB13050,http://purl.obolibrary.org/obo/DRUGBANK_DB13050,none +11.3638615,DRUGBANK:DB13616,http://purl.obolibrary.org/obo/DRUGBANK_DB13616,none +11.3638615,DRUGBANK:DB15436,http://purl.obolibrary.org/obo/DRUGBANK_DB15436,none +11.3638615,DRUGBANK:DB15794,http://purl.obolibrary.org/obo/DRUGBANK_DB15794,none +11.3638615,GO:0009295,http://purl.obolibrary.org/obo/GO_0009295,nucleoid +11.3638615,GO:0016995,http://purl.obolibrary.org/obo/GO_0016995,cholesterol oxidase activity +11.3638615,GO:0033574,http://purl.obolibrary.org/obo/GO_0033574,response to testosterone +11.3638615,GO:0072339,http://purl.obolibrary.org/obo/GO_0072339,cellular lactam biosynthetic process +11.3638615,MONDO:0000933,http://purl.obolibrary.org/obo/MONDO_0000933,subglottis neoplasm +11.3638615,MONDO:0002578,http://purl.obolibrary.org/obo/MONDO_0002578,botryoid rhabdomyosarcoma +11.3638615,MONDO:0008723,http://purl.obolibrary.org/obo/MONDO_0008723,very long chain acyl-CoA dehydrogenase deficiency +11.3638615,MONDO:0009279,http://purl.obolibrary.org/obo/MONDO_0009279,triple-A syndrome +11.3638615,MONDO:0016715,http://purl.obolibrary.org/obo/MONDO_0016715,ependymoblastoma +11.3638615,MONDO:0018638,http://purl.obolibrary.org/obo/MONDO_0018638,pseudohypoaldosteronism +11.3638615,MONDO:0044811,http://purl.obolibrary.org/obo/MONDO_0044811,idiopathic torsion dystonia +11.3638615,NCBITaxon:11861,http://purl.obolibrary.org/obo/NCBITaxon_11861,none +11.3638615,PR:000001565,http://purl.obolibrary.org/obo/PR_000001565,H4 histamine receptor +11.3638615,PR:000001596,http://purl.obolibrary.org/obo/PR_000001596,lutropin-choriogonadotropic hormone receptor +11.3638615,PR:000001667,http://purl.obolibrary.org/obo/PR_000001667,relaxin receptor 2 +11.3638615,PR:000004334,http://purl.obolibrary.org/obo/PR_000004334,homeobox protein ARX +11.3638615,PR:000006921,http://purl.obolibrary.org/obo/PR_000006921,ephrin-B1 +11.3638615,PR:000009177,http://purl.obolibrary.org/obo/PR_000009177,none +11.3638615,PR:000010429,http://purl.obolibrary.org/obo/PR_000010429,MAP kinase-interacting serine/threonine-protein kinase 1 +11.3638615,PR:000010949,http://purl.obolibrary.org/obo/PR_000010949,NGFI-A-binding protein 2 +11.3638615,PR:000014722,http://purl.obolibrary.org/obo/PR_000014722,histone-lysine N-methyltransferase SETD7 +11.3638615,UBERON:0000914,http://purl.obolibrary.org/obo/UBERON_0000914,organismal segment +11.3638615,UBERON:0002163,http://purl.obolibrary.org/obo/UBERON_0002163,inferior cerebellar peduncle +11.3638615,UBERON:0002179,http://purl.obolibrary.org/obo/UBERON_0002179,lateral funiculus of spinal cord +11.3638615,UBERON:0008337,http://purl.obolibrary.org/obo/UBERON_0008337,inguinal part of abdomen +11.3675998,CHEBI:33860,http://purl.obolibrary.org/obo/CHEBI_33860,aromatic amine +11.3675998,CL:0002376,http://purl.obolibrary.org/obo/CL_0002376,non-myelinating Schwann cell +11.3675998,DRUGBANK:DB08964,http://purl.obolibrary.org/obo/DRUGBANK_DB08964,none +11.3675998,DRUGBANK:DB12230,http://purl.obolibrary.org/obo/DRUGBANK_DB12230,none +11.3675998,DRUGBANK:DB12327,http://purl.obolibrary.org/obo/DRUGBANK_DB12327,none +11.3675998,GO:0014037,http://purl.obolibrary.org/obo/GO_0014037,Schwann cell differentiation +11.3675998,GO:0034702,http://purl.obolibrary.org/obo/GO_0034702,ion channel complex +11.3675998,MONDO:0002426,http://purl.obolibrary.org/obo/MONDO_0002426,lung sarcoma +11.3675998,MONDO:0016215,http://purl.obolibrary.org/obo/MONDO_0016215,spastic quadriplegia +11.3675998,PR:000001420,http://purl.obolibrary.org/obo/PR_000001420,GPR4-like G-protein coupled receptor +11.3675998,PR:000004784,http://purl.obolibrary.org/obo/PR_000004784,brother of CDO +11.3675998,PR:000007943,http://purl.obolibrary.org/obo/PR_000007943,"elongation factor G, mitochondrial" +11.3675998,PR:000008494,http://purl.obolibrary.org/obo/PR_000008494,vigilin +11.3675998,PR:000010447,http://purl.obolibrary.org/obo/PR_000010447,histone-lysine N-methyltransferase 2C +11.3675998,PR:000012273,http://purl.obolibrary.org/obo/PR_000012273,bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthase 1 +11.3675998,PR:000015045,http://purl.obolibrary.org/obo/PR_000015045,long-chain fatty acid transport protein 1 +11.3675998,PR:000016188,http://purl.obolibrary.org/obo/PR_000016188,transcription factor-like 5 protein +11.3675998,PR:O22056,http://purl.obolibrary.org/obo/PR_O22056,none +11.3675998,PR:O43078,http://purl.obolibrary.org/obo/PR_O43078,none +11.3675998,PR:P0A0I5,http://purl.obolibrary.org/obo/PR_P0A0I5,none +11.3675998,PR:P0A0I6,http://purl.obolibrary.org/obo/PR_P0A0I6,none +11.3675998,PR:Q60590,http://purl.obolibrary.org/obo/PR_Q60590,none +11.3675998,PR:Q9LU77,http://purl.obolibrary.org/obo/PR_Q9LU77,none +11.3675998,UBERON:0004243,http://purl.obolibrary.org/obo/UBERON_0004243,prostate gland smooth muscle +11.3675998,UBERON:0005028,http://purl.obolibrary.org/obo/UBERON_0005028,mucosa of maxillary sinus +11.3675998,UBERON:0035152,http://purl.obolibrary.org/obo/UBERON_0035152,internal cerebral vein +11.3713522,CHEBI:55324,http://purl.obolibrary.org/obo/CHEBI_55324,gastrointestinal drug +11.3713522,CHEBI:61459,http://purl.obolibrary.org/obo/CHEBI_61459,silicone polymer +11.3713522,CHEBI:64154,http://purl.obolibrary.org/obo/CHEBI_64154,H3-receptor agonist +11.3713522,CL:0000439,http://purl.obolibrary.org/obo/CL_0000439,prolactin secreting cell +11.3713522,CL:0000875,http://purl.obolibrary.org/obo/CL_0000875,non-classical monocyte +11.3713522,CL:0002397,http://purl.obolibrary.org/obo/CL_0002397,"CD14-positive, CD16-positive monocyte" +11.3713522,CL:0009000,http://purl.obolibrary.org/obo/CL_0009000,sensory neuron of spinal nerve +11.3713522,DRUGBANK:DB00366,http://purl.obolibrary.org/obo/DRUGBANK_DB00366,none +11.3713522,DRUGBANK:DB01574,http://purl.obolibrary.org/obo/DRUGBANK_DB01574,none +11.3713522,DRUGBANK:DB09290,http://purl.obolibrary.org/obo/DRUGBANK_DB09290,none +11.3713522,DRUGBANK:DB12343,http://purl.obolibrary.org/obo/DRUGBANK_DB12343,none +11.3713522,DRUGBANK:DB14335,http://purl.obolibrary.org/obo/DRUGBANK_DB14335,none +11.3713522,MONDO:0001192,http://purl.obolibrary.org/obo/MONDO_0001192,esophageal melanoma +11.3713522,MONDO:0003024,http://purl.obolibrary.org/obo/MONDO_0003024,breast angiosarcoma +11.3713522,MONDO:0005745,http://purl.obolibrary.org/obo/MONDO_0005745,Enoplea infectious disease +11.3713522,MONDO:0010684,http://purl.obolibrary.org/obo/MONDO_0010684,X-linked myopathy with excessive autophagy +11.3713522,MONDO:0020760,http://purl.obolibrary.org/obo/MONDO_0020760,skin squamous cell carcinoma in situ +11.3713522,NCBITaxon:206160,http://purl.obolibrary.org/obo/NCBITaxon_206160,none +11.3713522,NCBITaxon:2560196,http://purl.obolibrary.org/obo/NCBITaxon_2560196,none +11.3713522,PR:000004016,http://purl.obolibrary.org/obo/PR_000004016,anaphase-promoting complex subunit 2 +11.3713522,PR:000004561,http://purl.obolibrary.org/obo/PR_000004561,none +11.3713522,PR:000005179,http://purl.obolibrary.org/obo/PR_000005179,CD99 molecule-like protein 2 +11.3713522,PR:000005406,http://purl.obolibrary.org/obo/PR_000005406,chromodomain-helicase-DNA-binding protein 1 +11.3713522,PR:000008843,http://purl.obolibrary.org/obo/PR_000008843,checkpoint protein HUS1 +11.3713522,PR:000010283,http://purl.obolibrary.org/obo/PR_000010283,mediator of RNA polymerase II transcription subunit 12-like protein +11.3713522,PR:000010907,http://purl.obolibrary.org/obo/PR_000010907,none +11.3713522,PR:000013675,http://purl.obolibrary.org/obo/PR_000013675,DNA repair protein RAD51 homolog 3 +11.3713522,PR:000022906,http://purl.obolibrary.org/obo/PR_000022906,none +11.3713522,PR:000029897,http://purl.obolibrary.org/obo/PR_000029897,none +11.3713522,PR:O61735,http://purl.obolibrary.org/obo/PR_O61735,none +11.3713522,PR:Q80ZG6,http://purl.obolibrary.org/obo/PR_Q80ZG6,none +11.3713522,PR:Q99ML1,http://purl.obolibrary.org/obo/PR_Q99ML1,none +11.3713522,PR:Q9EQS3,http://purl.obolibrary.org/obo/PR_Q9EQS3,none +11.3713522,SO:0001463,http://purl.obolibrary.org/obo/SO_0001463,lincRNA +11.3713522,SO:0001781,http://purl.obolibrary.org/obo/SO_0001781,de_novo_variant +11.3713522,UBERON:0001119,http://purl.obolibrary.org/obo/UBERON_0001119,right lobe of thyroid gland +11.3751186,CHEBI:48279,http://purl.obolibrary.org/obo/CHEBI_48279,serotonergic antagonist +11.3751186,DRUGBANK:DB06412,http://purl.obolibrary.org/obo/DRUGBANK_DB06412,none +11.3751186,GO:0004392,http://purl.obolibrary.org/obo/GO_0004392,heme oxygenase (decyclizing) activity +11.3751186,GO:0046722,http://purl.obolibrary.org/obo/GO_0046722,lactic acid secretion +11.3751186,MONDO:0003805,http://purl.obolibrary.org/obo/MONDO_0003805,malignant pericardial mesothelioma +11.3751186,MONDO:0004897,http://purl.obolibrary.org/obo/MONDO_0004897,hypotropia +11.3751186,MONDO:0008183,http://purl.obolibrary.org/obo/MONDO_0008183,annular pancreas +11.3751186,MONDO:0008457,http://purl.obolibrary.org/obo/MONDO_0008457,spinocerebellar ataxia type 6 +11.3751186,MONDO:0019470,http://purl.obolibrary.org/obo/MONDO_0019470,aggressive NK-cell leukemia +11.3751186,MONDO:0024487,http://purl.obolibrary.org/obo/MONDO_0024487,nail infection +11.3751186,PR:000001685,http://purl.obolibrary.org/obo/PR_000001685,lysophosphatidic acid receptor 2 +11.3751186,PR:000002013,http://purl.obolibrary.org/obo/PR_000002013,MHC class II histocompatibility antigen alpha chain DQA1 +11.3751186,PR:000006470,http://purl.obolibrary.org/obo/PR_000006470,dehydrogenase/reductase SDR family member 9 +11.3751186,PR:000009611,http://purl.obolibrary.org/obo/PR_000009611,none +11.3751186,PR:000013938,http://purl.obolibrary.org/obo/PR_000013938,Ral guanine nucleotide dissociation stimulator-like 3 +11.3751186,PR:000018218,http://purl.obolibrary.org/obo/PR_000018218,putative U2 small nuclear ribonucleoprotein auxiliary factor 35 kDa subunit-related protein 1 +11.3751186,PR:000023403,http://purl.obolibrary.org/obo/PR_000023403,none +11.3751186,PR:000033868,http://purl.obolibrary.org/obo/PR_000033868,none +11.3751186,PR:000037485,http://purl.obolibrary.org/obo/PR_000037485,none +11.3751186,PR:P07830,http://purl.obolibrary.org/obo/PR_P07830,none +11.3751186,PR:Q9ZU50,http://purl.obolibrary.org/obo/PR_Q9ZU50,none +11.3751186,UBERON:0001120,http://purl.obolibrary.org/obo/UBERON_0001120,left lobe of thyroid gland +11.3751186,UBERON:0005096,http://purl.obolibrary.org/obo/UBERON_0005096,descending thin limb +11.3751186,UBERON:0014463,http://purl.obolibrary.org/obo/UBERON_0014463,cardiac ganglion +11.3751186,UBERON:0016481,http://purl.obolibrary.org/obo/UBERON_0016481,bronchial lymph node +11.3788994,CHEBI:22527,http://purl.obolibrary.org/obo/CHEBI_22527,aminopurine +11.3788994,DRUGBANK:DB00824,http://purl.obolibrary.org/obo/DRUGBANK_DB00824,none +11.3788994,DRUGBANK:DB10510,http://purl.obolibrary.org/obo/DRUGBANK_DB10510,none +11.3788994,DRUGBANK:DB11178,http://purl.obolibrary.org/obo/DRUGBANK_DB11178,none +11.3788994,DRUGBANK:DB11605,http://purl.obolibrary.org/obo/DRUGBANK_DB11605,none +11.3788994,DRUGBANK:DB12184,http://purl.obolibrary.org/obo/DRUGBANK_DB12184,none +11.3788994,DRUGBANK:DB15961,http://purl.obolibrary.org/obo/DRUGBANK_DB15961,none +11.3788994,GO:0005869,http://purl.obolibrary.org/obo/GO_0005869,dynactin complex +11.3788994,GO:0031056,http://purl.obolibrary.org/obo/GO_0031056,regulation of histone modification +11.3788994,GO:0042471,http://purl.obolibrary.org/obo/GO_0042471,ear morphogenesis +11.3788994,GO:0047112,http://purl.obolibrary.org/obo/GO_0047112,pyruvate oxidase activity +11.3788994,MONDO:0000316,http://purl.obolibrary.org/obo/MONDO_0000316,opportunistic bacterial infectious disease +11.3788994,MONDO:0004770,http://purl.obolibrary.org/obo/MONDO_0004770,exophthalmos +11.3788994,MONDO:0007793,http://purl.obolibrary.org/obo/MONDO_0007793,hypochondroplasia +11.3788994,MONDO:0015692,http://purl.obolibrary.org/obo/MONDO_0015692,refractory anemia with excess blasts in transformation +11.3788994,MONDO:0017776,http://purl.obolibrary.org/obo/MONDO_0017776,nocardiosis +11.3788994,MONDO:0018784,http://purl.obolibrary.org/obo/MONDO_0018784,pediatric multiple sclerosis +11.3788994,MONDO:0021453,http://purl.obolibrary.org/obo/MONDO_0021453,benign neoplasm of retina +11.3788994,NCBITaxon:11135,http://purl.obolibrary.org/obo/NCBITaxon_11135,Feline infectious peritonitis virus +11.3788994,NCBITaxon:11819,http://purl.obolibrary.org/obo/NCBITaxon_11819,none +11.3788994,PR:000001496,http://purl.obolibrary.org/obo/PR_000001496,hydroxycarboxylic acid receptor protein +11.3788994,PR:000003590,http://purl.obolibrary.org/obo/PR_000003590,actin-binding Rho-activating protein +11.3788994,PR:000004165,http://purl.obolibrary.org/obo/PR_000004165,apolipoprotein M +11.3788994,PR:000004291,http://purl.obolibrary.org/obo/PR_000004291,ADP-ribosylation factor-like protein 6-interacting protein 1 +11.3788994,PR:000009734,http://purl.obolibrary.org/obo/PR_000009734,lactase-phlorizin hydrolase +11.3788994,PR:000013405,http://purl.obolibrary.org/obo/PR_000013405,persephin +11.3788994,PR:000013730,http://purl.obolibrary.org/obo/PR_000013730,Rap guanine nucleotide exchange factor 5 +11.3788994,PR:000014850,http://purl.obolibrary.org/obo/PR_000014850,short stature homeobox protein 2 +11.3788994,PR:000015019,http://purl.obolibrary.org/obo/PR_000015019,calcium-binding mitochondrial carrier protein SCaMC-3 +11.3788994,PR:000016407,http://purl.obolibrary.org/obo/PR_000016407,tomoregulin-2 +11.3788994,PR:000017049,http://purl.obolibrary.org/obo/PR_000017049,UDP-glucuronosyltransferase 1A10 +11.3788994,PR:000017055,http://purl.obolibrary.org/obo/PR_000017055,UDP-glucuronosyltransferase 1A8 +11.3788994,PR:000017139,http://purl.obolibrary.org/obo/PR_000017139,harmonin +11.3788994,PR:000032125,http://purl.obolibrary.org/obo/PR_000032125,carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 1 +11.3788994,PR:000032844,http://purl.obolibrary.org/obo/PR_000032844,none +11.3788994,PR:Q921I1,http://purl.obolibrary.org/obo/PR_Q921I1,none +11.3788994,PR:Q9VW47,http://purl.obolibrary.org/obo/PR_Q9VW47,none +11.3788994,PR:Q9Y884,http://purl.obolibrary.org/obo/PR_Q9Y884,none +11.3788994,UBERON:0004722,http://purl.obolibrary.org/obo/UBERON_0004722,deep cervical lymph node +11.3826944,CHEBI:65023,http://purl.obolibrary.org/obo/CHEBI_65023,anti-asthmatic agent +11.3826944,CL:0000426,http://purl.obolibrary.org/obo/CL_0000426,none +11.3826944,CL:0000445,http://purl.obolibrary.org/obo/CL_0000445,apoptosis fated cell +11.3826944,DRUGBANK:DB02900,http://purl.obolibrary.org/obo/DRUGBANK_DB02900,none +11.3826944,DRUGBANK:DB15445,http://purl.obolibrary.org/obo/DRUGBANK_DB15445,none +11.3826944,GO:0002088,http://purl.obolibrary.org/obo/GO_0002088,lens development in camera-type eye +11.3826944,GO:0004473,http://purl.obolibrary.org/obo/GO_0004473,malate dehydrogenase (decarboxylating) (NADP+) activity +11.3826944,GO:0006522,http://purl.obolibrary.org/obo/GO_0006522,alanine metabolic process +11.3826944,GO:0006744,http://purl.obolibrary.org/obo/GO_0006744,ubiquinone biosynthetic process +11.3826944,GO:0033866,http://purl.obolibrary.org/obo/GO_0033866,nucleoside bisphosphate biosynthetic process +11.3826944,GO:0034030,http://purl.obolibrary.org/obo/GO_0034030,ribonucleoside bisphosphate biosynthetic process +11.3826944,GO:0034033,http://purl.obolibrary.org/obo/GO_0034033,purine nucleoside bisphosphate biosynthetic process +11.3826944,GO:0038044,http://purl.obolibrary.org/obo/GO_0038044,none +11.3826944,GO:0042759,http://purl.obolibrary.org/obo/GO_0042759,long-chain fatty acid biosynthetic process +11.3826944,GO:0045132,http://purl.obolibrary.org/obo/GO_0045132,meiotic chromosome segregation +11.3826944,MONDO:0001595,http://purl.obolibrary.org/obo/MONDO_0001595,choreatic disease +11.3826944,MONDO:0002402,http://purl.obolibrary.org/obo/MONDO_0002402,malignant giant cell tumor +11.3826944,MONDO:0004622,http://purl.obolibrary.org/obo/MONDO_0004622,chronic intestinal vascular insufficiency +11.3826944,MONDO:0017340,http://purl.obolibrary.org/obo/MONDO_0017340,juvenile nasopharyngeal angiofibroma +11.3826944,MONDO:0025385,http://purl.obolibrary.org/obo/MONDO_0025385,bluetongue +11.3826944,NCBITaxon:12163,http://purl.obolibrary.org/obo/NCBITaxon_12163,none +11.3826944,PR:000003600,http://purl.obolibrary.org/obo/PR_000003600,"long-chain specific acyl-CoA dehydrogenase, mitochondrial" +11.3826944,PR:000005268,http://purl.obolibrary.org/obo/PR_000005268,threonylcarbamoyladenosine tRNA methylthiotransferase +11.3826944,PR:000006727,http://purl.obolibrary.org/obo/PR_000006727,dual oxidase 1 +11.3826944,PR:000007450,http://purl.obolibrary.org/obo/PR_000007450,"adrenodoxin, mitochondrial" +11.3826944,PR:000007515,http://purl.obolibrary.org/obo/PR_000007515,four and a half LIM domains protein 5 +11.3826944,PR:000009330,http://purl.obolibrary.org/obo/PR_000009330,killer cell immunoglobulin-like receptor 2DL4 +11.3826944,PR:000015251,http://purl.obolibrary.org/obo/PR_000015251,secreted Ly-6/uPAR-related protein 1 +11.3826944,PR:000022740,http://purl.obolibrary.org/obo/PR_000022740,none +11.3826944,PR:000022979,http://purl.obolibrary.org/obo/PR_000022979,none +11.3826944,PR:000023676,http://purl.obolibrary.org/obo/PR_000023676,none +11.3826944,PR:000030941,http://purl.obolibrary.org/obo/PR_000030941,secreted and transmembrane protein 1 +11.3826944,PR:000034167,http://purl.obolibrary.org/obo/PR_000034167,none +11.3826944,UBERON:0003601,http://purl.obolibrary.org/obo/UBERON_0003601,neck cartilage +11.3826944,UBERON:0004364,http://purl.obolibrary.org/obo/UBERON_0004364,ectoplacental cone +11.3826944,UBERON:0008577,http://purl.obolibrary.org/obo/UBERON_0008577,vocalis muscle +11.386504,CL:0000651,http://purl.obolibrary.org/obo/CL_0000651,mucous neck cell +11.386504,CL:1000409,http://purl.obolibrary.org/obo/CL_1000409,myocyte of sinoatrial node +11.386504,DRUGBANK:DB04960,http://purl.obolibrary.org/obo/DRUGBANK_DB04960,none +11.386504,DRUGBANK:DB11641,http://purl.obolibrary.org/obo/DRUGBANK_DB11641,none +11.386504,DRUGBANK:DB11783,http://purl.obolibrary.org/obo/DRUGBANK_DB11783,none +11.386504,DRUGBANK:DB13210,http://purl.obolibrary.org/obo/DRUGBANK_DB13210,none +11.386504,DRUGBANK:DB13988,http://purl.obolibrary.org/obo/DRUGBANK_DB13988,none +11.386504,GO:0006497,http://purl.obolibrary.org/obo/GO_0006497,protein lipidation +11.386504,GO:0009886,http://purl.obolibrary.org/obo/GO_0009886,post-embryonic animal morphogenesis +11.386504,GO:0030238,http://purl.obolibrary.org/obo/GO_0030238,male sex determination +11.386504,GO:0030429,http://purl.obolibrary.org/obo/GO_0030429,kynureninase activity +11.386504,GO:0033058,http://purl.obolibrary.org/obo/GO_0033058,directional locomotion +11.386504,GO:0033840,http://purl.obolibrary.org/obo/GO_0033840,NDP-glucose-starch glucosyltransferase activity +11.386504,GO:0072512,http://purl.obolibrary.org/obo/GO_0072512,none +11.386504,GO:1990710,http://purl.obolibrary.org/obo/GO_1990710,MutS complex +11.386504,HP:0012757,http://purl.obolibrary.org/obo/HP_0012757,Abnormal neuron morphology +11.386504,MONDO:0006771,http://purl.obolibrary.org/obo/MONDO_0006771,glossitis +11.386504,MONDO:0023006,http://purl.obolibrary.org/obo/MONDO_0023006,doxorubicin induced cardiomyopathy +11.386504,NCBITaxon:40050,http://purl.obolibrary.org/obo/NCBITaxon_40050,African horse sickness virus +11.386504,PR:000000674,http://purl.obolibrary.org/obo/PR_000000674,cyclic nucleotide-gated channel beta subunit +11.386504,PR:000001323,http://purl.obolibrary.org/obo/PR_000001323,autoimmune regulator +11.386504,PR:000005725,http://purl.obolibrary.org/obo/PR_000005725,collectin-10 +11.386504,PR:000006317,http://purl.obolibrary.org/obo/PR_000006317,mRNA-decapping enzyme 1A +11.386504,PR:000006766,http://purl.obolibrary.org/obo/PR_000006766,segment polarity protein dishevelled DVL-1-like +11.386504,PR:000008267,http://purl.obolibrary.org/obo/PR_000008267,metabotropic glutamate receptor 5 +11.386504,PR:000008379,http://purl.obolibrary.org/obo/PR_000008379,protein C10 +11.386504,PR:000008456,http://purl.obolibrary.org/obo/PR_000008456,hemoglobin subunit alpha +11.386504,PR:000010193,http://purl.obolibrary.org/obo/PR_000010193,mannan-binding lectin serine protease 1 +11.386504,PR:000010243,http://purl.obolibrary.org/obo/PR_000010243,DNA replication licensing factor MCM3 +11.386504,PR:000015548,http://purl.obolibrary.org/obo/PR_000015548,BPI fold-containing family A member 2 +11.386504,PR:000015667,http://purl.obolibrary.org/obo/PR_000015667,protein SSX1 +11.386504,PR:000016580,http://purl.obolibrary.org/obo/PR_000016580,tropomyosin beta chain +11.386504,PR:000017052,http://purl.obolibrary.org/obo/PR_000017052,UDP-glucuronosyltransferase 1A5 +11.386504,UBERON:0003889,http://purl.obolibrary.org/obo/UBERON_0003889,fallopian tube +11.386504,UBERON:0004670,http://purl.obolibrary.org/obo/UBERON_0004670,ependyma +11.386504,UBERON:0011952,http://purl.obolibrary.org/obo/UBERON_0011952,non-glandular epithelium +11.386504,UBERON:0018377,http://purl.obolibrary.org/obo/UBERON_0018377,molar tooth 3 +11.3903281,CHEBI:51144,http://purl.obolibrary.org/obo/CHEBI_51144,nitrogen group +11.3903281,CHEBI:53188,http://purl.obolibrary.org/obo/CHEBI_53188,verapamil hydrochloride +11.3903281,CL:0002362,http://purl.obolibrary.org/obo/CL_0002362,granule cell precursor +11.3903281,DRUGBANK:DB00209,http://purl.obolibrary.org/obo/DRUGBANK_DB00209,none +11.3903281,DRUGBANK:DB00937,http://purl.obolibrary.org/obo/DRUGBANK_DB00937,none +11.3903281,DRUGBANK:DB00964,http://purl.obolibrary.org/obo/DRUGBANK_DB00964,none +11.3903281,DRUGBANK:DB01066,http://purl.obolibrary.org/obo/DRUGBANK_DB01066,none +11.3903281,DRUGBANK:DB12940,http://purl.obolibrary.org/obo/DRUGBANK_DB12940,none +11.3903281,DRUGBANK:DB14660,http://purl.obolibrary.org/obo/DRUGBANK_DB14660,none +11.3903281,GO:0009078,http://purl.obolibrary.org/obo/GO_0009078,pyruvate family amino acid metabolic process +11.3903281,GO:0010230,http://purl.obolibrary.org/obo/GO_0010230,alternative respiration +11.3903281,GO:0030799,http://purl.obolibrary.org/obo/GO_0030799,none +11.3903281,GO:1990077,http://purl.obolibrary.org/obo/GO_1990077,primosome complex +11.3903281,HP:0002334,http://purl.obolibrary.org/obo/HP_0002334,Abnormal cerebellar vermis morphology +11.3903281,MONDO:0001628,http://purl.obolibrary.org/obo/MONDO_0001628,tinea unguium +11.3903281,MONDO:0001852,http://purl.obolibrary.org/obo/MONDO_0001852,small intestine lymphoma +11.3903281,MONDO:0004717,http://purl.obolibrary.org/obo/MONDO_0004717,peliosis hepatis +11.3903281,MONDO:0006728,http://purl.obolibrary.org/obo/MONDO_0006728,discitis +11.3903281,MONDO:0006820,http://purl.obolibrary.org/obo/MONDO_0006820,kidney cortex necrosis +11.3903281,MONDO:0011224,http://purl.obolibrary.org/obo/MONDO_0011224,monomelic amyotrophy +11.3903281,MONDO:0021383,http://purl.obolibrary.org/obo/MONDO_0021383,neoplasm of floor of mouth +11.3903281,NCBITaxon:32353,http://purl.obolibrary.org/obo/NCBITaxon_32353,none +11.3903281,PR:000004409,http://purl.obolibrary.org/obo/PR_000004409,autophagy-related protein 16-1 +11.3903281,PR:000005693,http://purl.obolibrary.org/obo/PR_000005693,collagen alpha-1(X) chain +11.3903281,PR:000006913,http://purl.obolibrary.org/obo/PR_000006913,EGF-containing fibulin-like extracellular matrix protein 1 +11.3903281,PR:000007774,http://purl.obolibrary.org/obo/PR_000007774,gamma-aminobutyric acid receptor subunit beta-3 +11.3903281,PR:000008486,http://purl.obolibrary.org/obo/PR_000008486,histone deacetylase 7 +11.3903281,PR:000008564,http://purl.obolibrary.org/obo/PR_000008564,huntingtin-interacting protein 1 +11.3903281,PR:000008736,http://purl.obolibrary.org/obo/PR_000008736,Hermansky-Pudlak syndrome 1 protein +11.3903281,PR:000009930,http://purl.obolibrary.org/obo/PR_000009930,"leucine-rich PPR motif-containing protein, mitochondrial" +11.3903281,PR:000010453,http://purl.obolibrary.org/obo/PR_000010453,afadin +11.3903281,PR:000012822,http://purl.obolibrary.org/obo/PR_000012822,zinc finger protein PLAG1 +11.3903281,PR:000016189,http://purl.obolibrary.org/obo/PR_000016189,trichohyalin +11.3903281,PR:Q9P6L8,http://purl.obolibrary.org/obo/PR_Q9P6L8,none +11.3903281,UBERON:0001836,http://purl.obolibrary.org/obo/UBERON_0001836,saliva +11.3941668,CHEBI:18367,http://purl.obolibrary.org/obo/CHEBI_18367,phosphate(3-) +11.3941668,CHEBI:38313,http://purl.obolibrary.org/obo/CHEBI_38313,diazines +11.3941668,CHEBI:50320,http://purl.obolibrary.org/obo/CHEBI_50320,nucleoside residue +11.3941668,CHEBI:79387,http://purl.obolibrary.org/obo/CHEBI_79387,trivalent inorganic anion +11.3941668,DRUGBANK:DB15602,http://purl.obolibrary.org/obo/DRUGBANK_DB15602,none +11.3941668,GO:0015743,http://purl.obolibrary.org/obo/GO_0015743,malate transport +11.3941668,GO:0032439,http://purl.obolibrary.org/obo/GO_0032439,none +11.3941668,GO:0042735,http://purl.obolibrary.org/obo/GO_0042735,protein body +11.3941668,GO:0046983,http://purl.obolibrary.org/obo/GO_0046983,protein dimerization activity +11.3941668,GO:0048813,http://purl.obolibrary.org/obo/GO_0048813,dendrite morphogenesis +11.3941668,MONDO:0001328,http://purl.obolibrary.org/obo/MONDO_0001328,thyroid hormone resistance syndrome +11.3941668,MONDO:0003235,http://purl.obolibrary.org/obo/MONDO_0003235,optic nerve glioma +11.3941668,MONDO:0004315,http://purl.obolibrary.org/obo/MONDO_0004315,cholangiolocellular carcinoma +11.3941668,MONDO:0006702,http://purl.obolibrary.org/obo/MONDO_0006702,chronic inflammatory demyelinating polyradiculoneuropathy +11.3941668,MONDO:0017282,http://purl.obolibrary.org/obo/MONDO_0017282,alveolar echinococcosis +11.3941668,MONDO:0020660,http://purl.obolibrary.org/obo/MONDO_0020660,osteoblastic osteosarcoma +11.3941668,NCBITaxon:10812,http://purl.obolibrary.org/obo/NCBITaxon_10812,none +11.3941668,PR:000005193,http://purl.obolibrary.org/obo/PR_000005193,M-phase inducer phosphatase 3 +11.3941668,PR:000005460,http://purl.obolibrary.org/obo/PR_000005460,neuronal acetylcholine receptor subunit alpha-7 +11.3941668,PR:000011485,http://purl.obolibrary.org/obo/PR_000011485,diphosphoinositol polyphosphate phosphohydrolase 3-beta +11.3941668,PR:000015283,http://purl.obolibrary.org/obo/PR_000015283,serine/threonine-protein kinase SMG1 +11.3941668,PR:000029037,http://purl.obolibrary.org/obo/PR_000029037,none +11.3941668,PR:000029826,http://purl.obolibrary.org/obo/PR_000029826,tripartite motif-containing protein 3 +11.3941668,PR:P41820,http://purl.obolibrary.org/obo/PR_P41820,none +11.3941668,SO:0000334,http://purl.obolibrary.org/obo/SO_0000334,nc_conserved_region +11.3941668,UBERON:0000382,http://purl.obolibrary.org/obo/UBERON_0000382,apocrine sweat gland +11.3941668,UBERON:0002001,http://purl.obolibrary.org/obo/UBERON_0002001,joint of rib +11.3941668,UBERON:0005475,http://purl.obolibrary.org/obo/UBERON_0005475,sigmoid sinus +11.3941668,UBERON:0007120,http://purl.obolibrary.org/obo/UBERON_0007120,premolar tooth +11.3941668,UBERON:0007193,http://purl.obolibrary.org/obo/UBERON_0007193,orbital gyrus +11.3941668,UBERON:0008285,http://purl.obolibrary.org/obo/UBERON_0008285,rumen epithelium +11.3941668,UBERON:0010040,http://purl.obolibrary.org/obo/UBERON_0010040,stomach non-glandular epithelium +11.3980204,CL:0000644,http://purl.obolibrary.org/obo/CL_0000644,Bergmann glial cell +11.3980204,DRUGBANK:DB00491,http://purl.obolibrary.org/obo/DRUGBANK_DB00491,none +11.3980204,DRUGBANK:DB00969,http://purl.obolibrary.org/obo/DRUGBANK_DB00969,none +11.3980204,DRUGBANK:DB01081,http://purl.obolibrary.org/obo/DRUGBANK_DB01081,none +11.3980204,DRUGBANK:DB03315,http://purl.obolibrary.org/obo/DRUGBANK_DB03315,none +11.3980204,DRUGBANK:DB08931,http://purl.obolibrary.org/obo/DRUGBANK_DB08931,none +11.3980204,DRUGBANK:DB09005,http://purl.obolibrary.org/obo/DRUGBANK_DB09005,none +11.3980204,DRUGBANK:DB11161,http://purl.obolibrary.org/obo/DRUGBANK_DB11161,none +11.3980204,DRUGBANK:DB14343,http://purl.obolibrary.org/obo/DRUGBANK_DB14343,none +11.3980204,DRUGBANK:DB14659,http://purl.obolibrary.org/obo/DRUGBANK_DB14659,none +11.3980204,GO:0002081,http://purl.obolibrary.org/obo/GO_0002081,outer acrosomal membrane +11.3980204,GO:0002761,http://purl.obolibrary.org/obo/GO_0002761,regulation of myeloid leukocyte differentiation +11.3980204,GO:0008892,http://purl.obolibrary.org/obo/GO_0008892,guanine deaminase activity +11.3980204,GO:0035108,http://purl.obolibrary.org/obo/GO_0035108,limb morphogenesis +11.3980204,GO:0045066,http://purl.obolibrary.org/obo/GO_0045066,regulatory T cell differentiation +11.3980204,GO:0046721,http://purl.obolibrary.org/obo/GO_0046721,formic acid secretion +11.3980204,HP:0002450,http://purl.obolibrary.org/obo/HP_0002450,Abnormal motor neuron morphology +11.3980204,HP:0007373,http://purl.obolibrary.org/obo/HP_0007373,Motor neuron atrophy +11.3980204,MONDO:0004557,http://purl.obolibrary.org/obo/MONDO_0004557,congenital fibrosarcoma +11.3980204,MONDO:0004854,http://purl.obolibrary.org/obo/MONDO_0004854,ophthalmia neonatorum +11.3980204,MONDO:0015167,http://purl.obolibrary.org/obo/MONDO_0015167,amniotic band syndrome +11.3980204,MONDO:0018540,http://purl.obolibrary.org/obo/MONDO_0018540,PFAPA syndrome +11.3980204,MONDO:0018897,http://purl.obolibrary.org/obo/MONDO_0018897,primary cutaneous CD30+ T-cell lymphoproliferative disease +11.3980204,MONDO:0021427,http://purl.obolibrary.org/obo/MONDO_0021427,squamous cell carcinoma of lip +11.3980204,NCBITaxon:11837,http://purl.obolibrary.org/obo/NCBITaxon_11837,none +11.3980204,NCBITaxon:466544,http://purl.obolibrary.org/obo/NCBITaxon_466544,none +11.3980204,NCBITaxon:9090,http://purl.obolibrary.org/obo/NCBITaxon_9090,Coturnix +11.3980204,PR:000000069,http://purl.obolibrary.org/obo/PR_000000069,activin receptor type-1C +11.3980204,PR:000002121,http://purl.obolibrary.org/obo/PR_000002121,C-C motif chemokine 13 +11.3980204,PR:000005506,http://purl.obolibrary.org/obo/PR_000005506,Cbp/p300-interacting transactivator 2 +11.3980204,PR:000007611,http://purl.obolibrary.org/obo/PR_000007611,forkhead box protein D3 +11.3980204,PR:000008153,http://purl.obolibrary.org/obo/PR_000008153,"aspartate aminotransferase, cytoplasmic" +11.3980204,PR:000011338,http://purl.obolibrary.org/obo/PR_000011338,protein NOV +11.3980204,PR:000011480,http://purl.obolibrary.org/obo/PR_000011480,nucleobindin-2 +11.3980204,PR:000014467,http://purl.obolibrary.org/obo/PR_000014467,thialysine N-epsilon-acetyltransferase +11.3980204,PR:000015311,http://purl.obolibrary.org/obo/PR_000015311,synaptosomal-associated protein 23 +11.3980204,PR:000016015,http://purl.obolibrary.org/obo/PR_000016015,transcription initiation factor TFIID subunit 10 +11.3980204,PR:000016347,http://purl.obolibrary.org/obo/PR_000016347,mitochondrial import inner membrane translocase subunit Tim23 +11.3980204,PR:000016516,http://purl.obolibrary.org/obo/PR_000016516,tenascin-R +11.3980204,PR:000017528,http://purl.obolibrary.org/obo/PR_000017528,tyrosine-protein kinase Yes +11.3980204,PR:Q5ADX5,http://purl.obolibrary.org/obo/PR_Q5ADX5,none +11.3980204,UBERON:0001539,http://purl.obolibrary.org/obo/UBERON_0001539,dorsalis pedis artery +11.3980204,UBERON:0004290,http://purl.obolibrary.org/obo/UBERON_0004290,dermomyotome +11.4018889,CHEBI:24505,http://purl.obolibrary.org/obo/CHEBI_24505,heparins +11.4018889,CHEBI:61427,http://purl.obolibrary.org/obo/CHEBI_61427,ionomer +11.4018889,DRUGBANK:DB08950,http://purl.obolibrary.org/obo/DRUGBANK_DB08950,none +11.4018889,DRUGBANK:DB08981,http://purl.obolibrary.org/obo/DRUGBANK_DB08981,none +11.4018889,DRUGBANK:DB09268,http://purl.obolibrary.org/obo/DRUGBANK_DB09268,none +11.4018889,DRUGBANK:DB11248,http://purl.obolibrary.org/obo/DRUGBANK_DB11248,none +11.4018889,GO:0003796,http://purl.obolibrary.org/obo/GO_0003796,lysozyme activity +11.4018889,GO:0004485,http://purl.obolibrary.org/obo/GO_0004485,methylcrotonoyl-CoA carboxylase activity +11.4018889,GO:0043903,http://purl.obolibrary.org/obo/GO_0043903,regulation of biological process involved in symbiotic interaction +11.4018889,HP:0002860,http://purl.obolibrary.org/obo/HP_0002860,Squamous cell carcinoma +11.4018889,MONDO:0000482,http://purl.obolibrary.org/obo/MONDO_0000482,focal hand dystonia +11.4018889,MONDO:0004592,http://purl.obolibrary.org/obo/MONDO_0004592,impetigo +11.4018889,MONDO:0007122,http://purl.obolibrary.org/obo/MONDO_0007122,anisocoria +11.4018889,MONDO:0010765,http://purl.obolibrary.org/obo/MONDO_0010765,"46,XY complete gonadal dysgenesis" +11.4018889,MONDO:0016297,http://purl.obolibrary.org/obo/MONDO_0016297,prelingual non-syndromic genetic deafness +11.4018889,MONDO:0017634,http://purl.obolibrary.org/obo/MONDO_0017634,non-infectious anterior uveitis +11.4018889,MONDO:0021398,http://purl.obolibrary.org/obo/MONDO_0021398,polyp of rectum +11.4018889,MONDO:0022174,http://purl.obolibrary.org/obo/MONDO_0022174,chromosome 12p deletion +11.4018889,NCBITaxon:12230,http://purl.obolibrary.org/obo/NCBITaxon_12230,none +11.4018889,NCBITaxon:186801,http://purl.obolibrary.org/obo/NCBITaxon_186801,Clostridia +11.4018889,NCBITaxon:2499607,http://purl.obolibrary.org/obo/NCBITaxon_2499607,none +11.4018889,NCBITaxon:9541,http://purl.obolibrary.org/obo/NCBITaxon_9541,Macaca fascicularis +11.4018889,PR:000001173,http://purl.obolibrary.org/obo/PR_000001173,C5a anaphylatoxin chemotactic receptor 1 +11.4018889,PR:000005457,http://purl.obolibrary.org/obo/PR_000005457,neuronal acetylcholine receptor subunit alpha-4 +11.4018889,PR:000005491,http://purl.obolibrary.org/obo/PR_000005491,protein capicua +11.4018889,PR:000006879,http://purl.obolibrary.org/obo/PR_000006879,extracellular matrix protein 1 +11.4018889,PR:000008248,http://purl.obolibrary.org/obo/PR_000008248,"glutamate receptor ionotropic, NMDA 2C" +11.4018889,PR:000008343,http://purl.obolibrary.org/obo/PR_000008343,guanylyl cyclase-activating protein 1 +11.4018889,PR:000008470,http://purl.obolibrary.org/obo/PR_000008470,host cell factor 1 +11.4018889,PR:000009256,http://purl.obolibrary.org/obo/PR_000009256,potassium voltage-gated channel subfamily E member 2 +11.4018889,PR:000011162,http://purl.obolibrary.org/obo/PR_000011162,neurofascin +11.4018889,PR:000013478,http://purl.obolibrary.org/obo/PR_000013478,receptor-type tyrosine-protein phosphatase R +11.4018889,PR:000014599,http://purl.obolibrary.org/obo/PR_000014599,translocation protein SEC62 +11.4018889,PR:000016492,http://purl.obolibrary.org/obo/PR_000016492,TNFAIP3-interacting protein 1 +11.4018889,PR:000023847,http://purl.obolibrary.org/obo/PR_000023847,none +11.4018889,PR:000030246,http://purl.obolibrary.org/obo/PR_000030246,hydroxyproline dehydrogenase +11.4018889,SO:0000372,http://purl.obolibrary.org/obo/SO_0000372,enzymatic_RNA +11.4018889,UBERON:0000396,http://purl.obolibrary.org/obo/UBERON_0000396,vallate papilla +11.4018889,UBERON:0005891,http://purl.obolibrary.org/obo/UBERON_0005891,coelomic epithelium +11.4018889,UBERON:0011219,http://purl.obolibrary.org/obo/UBERON_0011219,longissimus lumborum muscle +11.4018889,UBERON:0011969,http://purl.obolibrary.org/obo/UBERON_0011969,mesotarsal joint +11.4018889,UBERON:0013582,http://purl.obolibrary.org/obo/UBERON_0013582,metapodium bone 2 +11.4018889,UBERON:0022350,http://purl.obolibrary.org/obo/UBERON_0022350,visceral serous membrane +11.4057724,CHEBI:24436,http://purl.obolibrary.org/obo/CHEBI_24436,guanidines +11.4057724,CHEBI:60804,http://purl.obolibrary.org/obo/CHEBI_60804,copolymer +11.4057724,DRUGBANK:DB01910,http://purl.obolibrary.org/obo/DRUGBANK_DB01910,none +11.4057724,DRUGBANK:DB11152,http://purl.obolibrary.org/obo/DRUGBANK_DB11152,none +11.4057724,DRUGBANK:DB12092,http://purl.obolibrary.org/obo/DRUGBANK_DB12092,none +11.4057724,DRUGBANK:DB12697,http://purl.obolibrary.org/obo/DRUGBANK_DB12697,none +11.4057724,DRUGBANK:DB13781,http://purl.obolibrary.org/obo/DRUGBANK_DB13781,none +11.4057724,DRUGBANK:DB14081,http://purl.obolibrary.org/obo/DRUGBANK_DB14081,none +11.4057724,DRUGBANK:DB14971,http://purl.obolibrary.org/obo/DRUGBANK_DB14971,none +11.4057724,GO:0031016,http://purl.obolibrary.org/obo/GO_0031016,pancreas development +11.4057724,MONDO:0001275,http://purl.obolibrary.org/obo/MONDO_0001275,spinal meningioma +11.4057724,MONDO:0001404,http://purl.obolibrary.org/obo/MONDO_0001404,ecthyma +11.4057724,MONDO:0013424,http://purl.obolibrary.org/obo/MONDO_0013424,3p- syndrome +11.4057724,MONDO:0016885,http://purl.obolibrary.org/obo/MONDO_0016885,partial deletion of the short arm of chromosome 3 +11.4057724,MONDO:0021492,http://purl.obolibrary.org/obo/MONDO_0021492,benign neoplasm of major salivary gland +11.4057724,NCBITaxon:102804,http://purl.obolibrary.org/obo/NCBITaxon_102804,none +11.4057724,NCBITaxon:227307,http://purl.obolibrary.org/obo/NCBITaxon_227307,none +11.4057724,PR:000001769,http://purl.obolibrary.org/obo/PR_000001769,mitogen-activated protein kinase kinase kinase 7-interacting protein 2/3 +11.4057724,PR:000005848,http://purl.obolibrary.org/obo/PR_000005848,protein crumbs homolog 1 +11.4057724,PR:000007761,http://purl.obolibrary.org/obo/PR_000007761,gamma-aminobutyric acid type B receptor subunit 1 +11.4057724,PR:000009832,http://purl.obolibrary.org/obo/PR_000009832,lysosomal acid lipase/cholesteryl ester hydrolase +11.4057724,PR:000014228,http://purl.obolibrary.org/obo/PR_000014228,60S ribosomal protein L4 +11.4057724,PR:000029308,http://purl.obolibrary.org/obo/PR_000029308,CUX1 gene translation product +11.4057724,PR:P17139,http://purl.obolibrary.org/obo/PR_P17139,none +11.4057724,PR:Q9FXD6,http://purl.obolibrary.org/obo/PR_Q9FXD6,none +11.4057724,SO:0000186,http://purl.obolibrary.org/obo/SO_0000186,LTR_retrotransposon +11.4057724,UBERON:0005418,http://purl.obolibrary.org/obo/UBERON_0005418,hindlimb bud +11.4057724,UBERON:0005420,http://purl.obolibrary.org/obo/UBERON_0005420,pelvic appendage bud +11.4057724,UBERON:0007252,http://purl.obolibrary.org/obo/UBERON_0007252,intervertebral disk of cervical vertebra +11.4057724,UBERON:0011964,http://purl.obolibrary.org/obo/UBERON_0011964,calcaneocuboid joint +11.4057724,UBERON:0012255,http://purl.obolibrary.org/obo/UBERON_0012255,inferior phrenic artery +11.4057724,UBERON:0015247,http://purl.obolibrary.org/obo/UBERON_0015247,bifurcation of trachea +11.409671,DRUGBANK:DB00524,http://purl.obolibrary.org/obo/DRUGBANK_DB00524,none +11.409671,DRUGBANK:DB01405,http://purl.obolibrary.org/obo/DRUGBANK_DB01405,none +11.409671,DRUGBANK:DB04296,http://purl.obolibrary.org/obo/DRUGBANK_DB04296,none +11.409671,DRUGBANK:DB11945,http://purl.obolibrary.org/obo/DRUGBANK_DB11945,none +11.409671,DRUGBANK:DB14334,http://purl.obolibrary.org/obo/DRUGBANK_DB14334,none +11.409671,GO:0002102,http://purl.obolibrary.org/obo/GO_0002102,podosome +11.409671,GO:0030047,http://purl.obolibrary.org/obo/GO_0030047,actin modification +11.409671,GO:0051130,http://purl.obolibrary.org/obo/GO_0051130,positive regulation of cellular component organization +11.409671,GO:0060042,http://purl.obolibrary.org/obo/GO_0060042,retina morphogenesis in camera-type eye +11.409671,GO:0099602,http://purl.obolibrary.org/obo/GO_0099602,neurotransmitter receptor regulator activity +11.409671,MONDO:0001661,http://purl.obolibrary.org/obo/MONDO_0001661,background diabetic retinopathy +11.409671,MONDO:0004241,http://purl.obolibrary.org/obo/MONDO_0004241,Osgood-Schlatter disease +11.409671,MONDO:0006819,http://purl.obolibrary.org/obo/MONDO_0006819,kernicterus +11.409671,MONDO:0007125,http://purl.obolibrary.org/obo/MONDO_0007125,ankyloglossia +11.409671,MONDO:0013512,http://purl.obolibrary.org/obo/MONDO_0013512,hemoglobin H disease +11.409671,MONDO:0018477,http://purl.obolibrary.org/obo/MONDO_0018477,bilirubin encephalopathy +11.409671,NCBITaxon:359160,http://purl.obolibrary.org/obo/NCBITaxon_359160,BOP clade +11.409671,PR:000001686,http://purl.obolibrary.org/obo/PR_000001686,lysophosphatidic acid receptor 3 +11.409671,PR:000003984,http://purl.obolibrary.org/obo/PR_000003984,alpha-methylacyl-CoA racemase +11.409671,PR:000008541,http://purl.obolibrary.org/obo/PR_000008541,hedgehog-interacting protein +11.409671,PR:000009327,http://purl.obolibrary.org/obo/PR_000009327,killer cell immunoglobulin-like receptor 2DL1 +11.409671,PR:000013247,http://purl.obolibrary.org/obo/PR_000013247,prolactin-releasing peptide +11.409671,PR:000016702,http://purl.obolibrary.org/obo/PR_000016702,transient receptor potential cation channel subfamily M member 6 +11.409671,PR:000016974,http://purl.obolibrary.org/obo/PR_000016974,ubiquitin-conjugating enzyme E2 G1 +11.409671,PR:000017395,http://purl.obolibrary.org/obo/PR_000017395,WD repeat-containing protein 5 +11.409671,PR:000024134,http://purl.obolibrary.org/obo/PR_000024134,none +11.409671,PR:Q9MA74,http://purl.obolibrary.org/obo/PR_Q9MA74,none +11.409671,SO:0001229,http://purl.obolibrary.org/obo/SO_0001229,pseudouridine +11.409671,SO:0002128,http://purl.obolibrary.org/obo/SO_0002128,mt_rRNA +11.409671,UBERON:0012307,http://purl.obolibrary.org/obo/UBERON_0012307,anterior cervical lymph node +11.4135849,DRUGBANK:DB00757,http://purl.obolibrary.org/obo/DRUGBANK_DB00757,none +11.4135849,DRUGBANK:DB12952,http://purl.obolibrary.org/obo/DRUGBANK_DB12952,none +11.4135849,GO:0004856,http://purl.obolibrary.org/obo/GO_0004856,xylulokinase activity +11.4135849,GO:0008611,http://purl.obolibrary.org/obo/GO_0008611,ether lipid biosynthetic process +11.4135849,GO:0016890,http://purl.obolibrary.org/obo/GO_0016890,"site-specific endodeoxyribonuclease activity, specific for altered base" +11.4135849,GO:0020003,http://purl.obolibrary.org/obo/GO_0020003,symbiont-containing vacuole +11.4135849,GO:0033892,http://purl.obolibrary.org/obo/GO_0033892,deoxyribonuclease (pyrimidine dimer) activity +11.4135849,GO:0046469,http://purl.obolibrary.org/obo/GO_0046469,platelet activating factor metabolic process +11.4135849,GO:0050678,http://purl.obolibrary.org/obo/GO_0050678,regulation of epithelial cell proliferation +11.4135849,GO:0051254,http://purl.obolibrary.org/obo/GO_0051254,positive regulation of RNA metabolic process +11.4135849,GO:0071577,http://purl.obolibrary.org/obo/GO_0071577,zinc ion transmembrane transport +11.4135849,GO:0071578,http://purl.obolibrary.org/obo/GO_0071578,zinc ion import across plasma membrane +11.4135849,GO:0098659,http://purl.obolibrary.org/obo/GO_0098659,inorganic cation import across plasma membrane +11.4135849,GO:0099587,http://purl.obolibrary.org/obo/GO_0099587,inorganic ion import across plasma membrane +11.4135849,GO:1901148,http://purl.obolibrary.org/obo/GO_1901148,gene expression involved in extracellular matrix organization +11.4135849,MONDO:0009672,http://purl.obolibrary.org/obo/MONDO_0009672,"spinal muscular atrophy, type III" +11.4135849,PR:000000362,http://purl.obolibrary.org/obo/PR_000000362,E3 ubiquitin-protein ligase SMURF2 +11.4135849,PR:000010755,http://purl.obolibrary.org/obo/PR_000010755,metaxin-1 +11.4135849,PR:000010845,http://purl.obolibrary.org/obo/PR_000010845,"myosin light chain kinase, smooth muscle" +11.4135849,PR:000011383,http://purl.obolibrary.org/obo/PR_000011383,neuronal pentraxin-2 +11.4135849,PR:000014161,http://purl.obolibrary.org/obo/PR_000014161,tyrosine-protein kinase transmembrane receptor ROR1 +11.4135849,PR:000022382,http://purl.obolibrary.org/obo/PR_000022382,none +11.4135849,PR:000029188,http://purl.obolibrary.org/obo/PR_000029188,cAMP-dependent protein kinase catalytic subunit +11.4135849,PR:P55228,http://purl.obolibrary.org/obo/PR_P55228,none +11.4135849,PR:Q07653,http://purl.obolibrary.org/obo/PR_Q07653,none +11.4135849,PR:Q8RVQ9,http://purl.obolibrary.org/obo/PR_Q8RVQ9,none +11.4135849,PR:Q9ZQ19,http://purl.obolibrary.org/obo/PR_Q9ZQ19,none +11.4135849,SO:0000269,http://purl.obolibrary.org/obo/SO_0000269,seryl_tRNA +11.4135849,SO:0000273,http://purl.obolibrary.org/obo/SO_0000273,valyl_tRNA +11.4135849,UBERON:0002867,http://purl.obolibrary.org/obo/UBERON_0002867,central gray substance of medulla +11.4135849,UBERON:0005453,http://purl.obolibrary.org/obo/UBERON_0005453,inferior mesenteric ganglion +11.4135849,UBERON:0010509,http://purl.obolibrary.org/obo/UBERON_0010509,strand of pelage hair +11.4135849,UBERON:0011078,http://purl.obolibrary.org/obo/UBERON_0011078,endolymphatic space +11.4175142,CHEBI:36807,http://purl.obolibrary.org/obo/CHEBI_36807,hydrochloride +11.4175142,CHEBI:75044,http://purl.obolibrary.org/obo/CHEBI_75044,phleomycin +11.4175142,DRUGBANK:DB00931,http://purl.obolibrary.org/obo/DRUGBANK_DB00931,none +11.4175142,DRUGBANK:DB03560,http://purl.obolibrary.org/obo/DRUGBANK_DB03560,none +11.4175142,DRUGBANK:DB03688,http://purl.obolibrary.org/obo/DRUGBANK_DB03688,none +11.4175142,DRUGBANK:DB06192,http://purl.obolibrary.org/obo/DRUGBANK_DB06192,none +11.4175142,DRUGBANK:DB13028,http://purl.obolibrary.org/obo/DRUGBANK_DB13028,none +11.4175142,DRUGBANK:DB13873,http://purl.obolibrary.org/obo/DRUGBANK_DB13873,none +11.4175142,GO:0000012,http://purl.obolibrary.org/obo/GO_0000012,single strand break repair +11.4175142,GO:0000089,http://purl.obolibrary.org/obo/GO_0000089,mitotic metaphase +11.4175142,GO:0031332,http://purl.obolibrary.org/obo/GO_0031332,RNAi effector complex +11.4175142,GO:0045596,http://purl.obolibrary.org/obo/GO_0045596,negative regulation of cell differentiation +11.4175142,GO:0046504,http://purl.obolibrary.org/obo/GO_0046504,glycerol ether biosynthetic process +11.4175142,GO:0046817,http://purl.obolibrary.org/obo/GO_0046817,chemokine receptor antagonist activity +11.4175142,GO:0048247,http://purl.obolibrary.org/obo/GO_0048247,lymphocyte chemotaxis +11.4175142,GO:0060232,http://purl.obolibrary.org/obo/GO_0060232,delamination +11.4175142,MONDO:0000535,http://purl.obolibrary.org/obo/MONDO_0000535,tonsil squamous cell carcinoma +11.4175142,MONDO:0002580,http://purl.obolibrary.org/obo/MONDO_0002580,orbit rhabdomyosarcoma +11.4175142,MONDO:0010731,http://purl.obolibrary.org/obo/MONDO_0010731,Simpson-Golabi-Behmel syndrome +11.4175142,MONDO:0016757,http://purl.obolibrary.org/obo/MONDO_0016757,malignant triton tumor +11.4175142,MONDO:0018778,http://purl.obolibrary.org/obo/MONDO_0018778,intermediate Charcot-Marie-Tooth disease +11.4175142,MONDO:0024462,http://purl.obolibrary.org/obo/MONDO_0024462,familial cutaneous melanoma +11.4175142,MONDO:0044337,http://purl.obolibrary.org/obo/MONDO_0044337,stromal sarcoma +11.4175142,NCBITaxon:327794,http://purl.obolibrary.org/obo/NCBITaxon_327794,none +11.4175142,PR:000001770,http://purl.obolibrary.org/obo/PR_000001770,TGF-beta-activated kinase 1 and MAP3K7-binding protein 1 +11.4175142,PR:000001832,http://purl.obolibrary.org/obo/PR_000001832,SIRP/SHPS-1 family protein +11.4175142,PR:000003611,http://purl.obolibrary.org/obo/PR_000003611,"acetyl-CoA acetyltransferase, cytosolic" +11.4175142,PR:000003782,http://purl.obolibrary.org/obo/PR_000003782,protein ADM2 +11.4175142,PR:000006762,http://purl.obolibrary.org/obo/PR_000006762,double homeobox protein 4 +11.4175142,PR:000010751,http://purl.obolibrary.org/obo/PR_000010751,protein MTSS 1 +11.4175142,PR:000012219,http://purl.obolibrary.org/obo/PR_000012219,protein-arginine deiminase type-1 +11.4175142,PR:000012297,http://purl.obolibrary.org/obo/PR_000012297,protein mono-ADP-ribosyltransferase PARP3 +11.4175142,PR:000012451,http://purl.obolibrary.org/obo/PR_000012451,programmed cell death protein 10 +11.4175142,PR:000014544,http://purl.obolibrary.org/obo/PR_000014544,secretin receptor +11.4175142,PR:000014916,http://purl.obolibrary.org/obo/PR_000014916,histone RNA hairpin-binding protein +11.4175142,PR:000015300,http://purl.obolibrary.org/obo/PR_000015300,submaxillary gland androgen-regulated protein 3B +11.4175142,PR:000015797,http://purl.obolibrary.org/obo/PR_000015797,syntaxin-5 +11.4175142,PR:000016215,http://purl.obolibrary.org/obo/PR_000016215,tyrosyl-DNA phosphodiesterase 1 +11.4175142,PR:000028499,http://purl.obolibrary.org/obo/PR_000028499,none +11.4175142,PR:000029844,http://purl.obolibrary.org/obo/PR_000029844,BRCA1-A complex subunit RAP80 +11.4175142,SO:0002126,http://purl.obolibrary.org/obo/SO_0002126,IG_V_gene +11.4175142,UBERON:0001564,http://purl.obolibrary.org/obo/UBERON_0001564,mylohyoid muscle +11.4175142,UBERON:0004893,http://purl.obolibrary.org/obo/UBERON_0004893,interalveolar septum +11.4175142,UBERON:0015917,http://purl.obolibrary.org/obo/UBERON_0015917,superficial lymph node +11.421459,CHEBI:15356,http://purl.obolibrary.org/obo/CHEBI_15356,cysteine +11.421459,CHEBI:25697,http://purl.obolibrary.org/obo/CHEBI_25697,organic cation +11.421459,CHEBI:48407,http://purl.obolibrary.org/obo/CHEBI_48407,antiparkinson drug +11.421459,CHEBI:64932,http://purl.obolibrary.org/obo/CHEBI_64932,cathepsin B inhibitor +11.421459,CHEBI:66956,http://purl.obolibrary.org/obo/CHEBI_66956,antidyskinesia agent +11.421459,DRUGBANK:DB00804,http://purl.obolibrary.org/obo/DRUGBANK_DB00804,none +11.421459,DRUGBANK:DB09134,http://purl.obolibrary.org/obo/DRUGBANK_DB09134,none +11.421459,DRUGBANK:DB10637,http://purl.obolibrary.org/obo/DRUGBANK_DB10637,none +11.421459,DRUGBANK:DB10671,http://purl.obolibrary.org/obo/DRUGBANK_DB10671,none +11.421459,DRUGBANK:DB11259,http://purl.obolibrary.org/obo/DRUGBANK_DB11259,none +11.421459,DRUGBANK:DB12863,http://purl.obolibrary.org/obo/DRUGBANK_DB12863,none +11.421459,DRUGBANK:DB13628,http://purl.obolibrary.org/obo/DRUGBANK_DB13628,none +11.421459,GO:0006605,http://purl.obolibrary.org/obo/GO_0006605,protein targeting +11.421459,GO:0015459,http://purl.obolibrary.org/obo/GO_0015459,potassium channel regulator activity +11.421459,GO:0015813,http://purl.obolibrary.org/obo/GO_0015813,L-glutamate transmembrane transport +11.421459,GO:0042572,http://purl.obolibrary.org/obo/GO_0042572,retinol metabolic process +11.421459,GO:0060182,http://purl.obolibrary.org/obo/GO_0060182,apelin receptor activity +11.421459,GO:0097325,http://purl.obolibrary.org/obo/GO_0097325,melanocyte proliferation +11.421459,GO:1900371,http://purl.obolibrary.org/obo/GO_1900371,regulation of purine nucleotide biosynthetic process +11.421459,HP:0000765,http://purl.obolibrary.org/obo/HP_0000765,Abnormal thorax morphology +11.421459,MONDO:0001198,http://purl.obolibrary.org/obo/MONDO_0001198,acquired thrombocytopenia +11.421459,MONDO:0003544,http://purl.obolibrary.org/obo/MONDO_0003544,spinal cord cancer +11.421459,MONDO:0006523,http://purl.obolibrary.org/obo/MONDO_0006523,acrodermatitis +11.421459,MONDO:0008244,http://purl.obolibrary.org/obo/MONDO_0008244,piebaldism +11.421459,MONDO:0011096,http://purl.obolibrary.org/obo/MONDO_0011096,autosomal agammaglobulinemia +11.421459,MONDO:0015236,http://purl.obolibrary.org/obo/MONDO_0015236,aortic arch defects +11.421459,MONDO:0017667,http://purl.obolibrary.org/obo/MONDO_0017667,isolated diffuse palmoplantar keratoderma +11.421459,MONDO:0018166,http://purl.obolibrary.org/obo/MONDO_0018166,oral submucous fibrosis +11.421459,MONDO:0022606,http://purl.obolibrary.org/obo/MONDO_0022606,branchial arch disease +11.421459,MONDO:0024287,http://purl.obolibrary.org/obo/MONDO_0024287,congenital vascular malformation +11.421459,MONDO:0044144,http://purl.obolibrary.org/obo/MONDO_0044144,panic disorder with agoraphobia +11.421459,NCBITaxon:12618,http://purl.obolibrary.org/obo/NCBITaxon_12618,Chicken anemia virus +11.421459,NCBITaxon:1914298,http://purl.obolibrary.org/obo/NCBITaxon_1914298,none +11.421459,NCBITaxon:2698737,http://purl.obolibrary.org/obo/NCBITaxon_2698737,Sar +11.421459,NCBITaxon:356,http://purl.obolibrary.org/obo/NCBITaxon_356,Hyphomicrobiales +11.421459,NCBITaxon:4852,http://purl.obolibrary.org/obo/NCBITaxon_4852,none +11.421459,NCBITaxon:5655,http://purl.obolibrary.org/obo/NCBITaxon_5655,none +11.421459,PR:000010596,http://purl.obolibrary.org/obo/PR_000010596,"39S ribosomal protein L36, mitochondrial" +11.421459,PR:000012602,http://purl.obolibrary.org/obo/PR_000012602,gastricsin +11.421459,PR:000012942,http://purl.obolibrary.org/obo/PR_000012942,patatin-like phospholipase domain-containing protein 2 +11.421459,PR:000013249,http://purl.obolibrary.org/obo/PR_000013249,sperm protamine P1 +11.421459,PR:000013422,http://purl.obolibrary.org/obo/PR_000013422,prostaglandin E synthase 2 +11.421459,PR:000016176,http://purl.obolibrary.org/obo/PR_000016176,transcription factor 12 +11.421459,PR:000022463,http://purl.obolibrary.org/obo/PR_000022463,none +11.421459,PR:000031493,http://purl.obolibrary.org/obo/PR_000031493,N-acetylneuraminate 9-O-acetyltransferase +11.421459,UBERON:0001610,http://purl.obolibrary.org/obo/UBERON_0001610,lingual artery +11.421459,UBERON:0001899,http://purl.obolibrary.org/obo/UBERON_0001899,epithalamus +11.421459,UBERON:0002372,http://purl.obolibrary.org/obo/UBERON_0002372,tonsil +11.421459,UBERON:0034696,http://purl.obolibrary.org/obo/UBERON_0034696,fold of peritoneum +11.421459,UBERON:2000083,http://purl.obolibrary.org/obo/UBERON_2000083,ventral mesoderm +11.4254194,CHEBI:39447,http://purl.obolibrary.org/obo/CHEBI_39447,pyrimidines +11.4254194,CHEBI:78152,http://purl.obolibrary.org/obo/CHEBI_78152,enzyme mimic +11.4254194,CL:0000955,http://purl.obolibrary.org/obo/CL_0000955,pre-B-II cell +11.4254194,CL:0002337,http://purl.obolibrary.org/obo/CL_0002337,keratinocyte stem cell +11.4254194,DRUGBANK:DB01246,http://purl.obolibrary.org/obo/DRUGBANK_DB01246,none +11.4254194,DRUGBANK:DB06263,http://purl.obolibrary.org/obo/DRUGBANK_DB06263,none +11.4254194,DRUGBANK:DB09418,http://purl.obolibrary.org/obo/DRUGBANK_DB09418,none +11.4254194,DRUGBANK:DB09481,http://purl.obolibrary.org/obo/DRUGBANK_DB09481,none +11.4254194,DRUGBANK:DB11405,http://purl.obolibrary.org/obo/DRUGBANK_DB11405,none +11.4254194,DRUGBANK:DB13261,http://purl.obolibrary.org/obo/DRUGBANK_DB13261,none +11.4254194,GO:0005747,http://purl.obolibrary.org/obo/GO_0005747,mitochondrial respiratory chain complex I +11.4254194,GO:0010855,http://purl.obolibrary.org/obo/GO_0010855,adenylate cyclase inhibitor activity +11.4254194,GO:0030222,http://purl.obolibrary.org/obo/GO_0030222,eosinophil differentiation +11.4254194,GO:0031411,http://purl.obolibrary.org/obo/GO_0031411,gas vesicle +11.4254194,GO:1905392,http://purl.obolibrary.org/obo/GO_1905392,plant organ morphogenesis +11.4254194,HP:0011028,http://purl.obolibrary.org/obo/HP_0011028,Abnormality of blood circulation +11.4254194,HP:0011029,http://purl.obolibrary.org/obo/HP_0011029,Internal hemorrhage +11.4254194,MONDO:0002523,http://purl.obolibrary.org/obo/MONDO_0002523,cutaneous mucinosis +11.4254194,MONDO:0004045,http://purl.obolibrary.org/obo/MONDO_0004045,pediatric intraocular retinoblastoma +11.4254194,MONDO:0005826,http://purl.obolibrary.org/obo/MONDO_0005826,lipid pneumonia +11.4254194,MONDO:0010691,http://purl.obolibrary.org/obo/MONDO_0010691,Norrie disease +11.4254194,MONDO:0012521,http://purl.obolibrary.org/obo/MONDO_0012521,herpes simplex encephalitis +11.4254194,NCBITaxon:424554,http://purl.obolibrary.org/obo/NCBITaxon_424554,none +11.4254194,NCBITaxon:95339,http://purl.obolibrary.org/obo/NCBITaxon_95339,none +11.4254194,PR:000000118,http://purl.obolibrary.org/obo/PR_000000118,retinoblastoma-like protein 1 +11.4254194,PR:000001887,http://purl.obolibrary.org/obo/PR_000001887,melanotransferrin +11.4254194,PR:000003922,http://purl.obolibrary.org/obo/PR_000003922,aldehyde dehydrogenase family 1 member A3 +11.4254194,PR:000005618,http://purl.obolibrary.org/obo/PR_000005618,"citramalyl-CoA lyase, mitochondrial" +11.4254194,PR:000008225,http://purl.obolibrary.org/obo/PR_000008225,growth factor receptor-bound protein 7 +11.4254194,PR:000008639,http://purl.obolibrary.org/obo/PR_000008639,non-histone chromosomal protein HMG-14 +11.4254194,PR:000014641,http://purl.obolibrary.org/obo/PR_000014641,sentrin-specific protease 8 +11.4254194,PR:000023466,http://purl.obolibrary.org/obo/PR_000023466,none +11.4254194,PR:000023795,http://purl.obolibrary.org/obo/PR_000023795,none +11.4254194,PR:000032986,http://purl.obolibrary.org/obo/PR_000032986,none +11.4254194,PR:Q8GYX8,http://purl.obolibrary.org/obo/PR_Q8GYX8,none +11.4254194,PR:Q9MA41,http://purl.obolibrary.org/obo/PR_Q9MA41,none +11.4254194,UBERON:0001599,http://purl.obolibrary.org/obo/UBERON_0001599,stapedius muscle +11.4254194,UBERON:0004770,http://purl.obolibrary.org/obo/UBERON_0004770,articular system +11.4254194,UBERON:0005467,http://purl.obolibrary.org/obo/UBERON_0005467,platysma +11.4254194,UBERON:0006682,http://purl.obolibrary.org/obo/UBERON_0006682,hypoglossal canal +11.4254194,UBERON:0010145,http://purl.obolibrary.org/obo/UBERON_0010145,paraurethral gland +11.4254194,UBERON:0011868,http://purl.obolibrary.org/obo/UBERON_0011868,midcarpal joint +11.4254194,UBERON:0016479,http://purl.obolibrary.org/obo/UBERON_0016479,capsule of liver +11.4293955,CL:0000987,http://purl.obolibrary.org/obo/CL_0000987,IgA plasma cell +11.4293955,DRUGBANK:DB06595,http://purl.obolibrary.org/obo/DRUGBANK_DB06595,none +11.4293955,DRUGBANK:DB09570,http://purl.obolibrary.org/obo/DRUGBANK_DB09570,none +11.4293955,GO:0006986,http://purl.obolibrary.org/obo/GO_0006986,response to unfolded protein +11.4293955,GO:0016682,http://purl.obolibrary.org/obo/GO_0016682,"oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor" +11.4293955,GO:0036314,http://purl.obolibrary.org/obo/GO_0036314,response to sterol +11.4293955,GO:0050208,http://purl.obolibrary.org/obo/GO_0050208,polysialic-acid O-acetyltransferase activity +11.4293955,MONDO:0003212,http://purl.obolibrary.org/obo/MONDO_0003212,nasal cavity carcinoma +11.4293955,MONDO:0016390,http://purl.obolibrary.org/obo/MONDO_0016390,familial hypoparathyroidism +11.4293955,MONDO:0021541,http://purl.obolibrary.org/obo/MONDO_0021541,hemangioma of retina +11.4293955,MONDO:0024251,http://purl.obolibrary.org/obo/MONDO_0024251,Minamata disease +11.4293955,NCBITaxon:11290,http://purl.obolibrary.org/obo/NCBITaxon_11290,Infectious hematopoietic necrosis virus +11.4293955,NCBITaxon:1980917,http://purl.obolibrary.org/obo/NCBITaxon_1980917,none +11.4293955,NCBITaxon:4085,http://purl.obolibrary.org/obo/NCBITaxon_4085,none +11.4293955,NCBITaxon:424562,http://purl.obolibrary.org/obo/NCBITaxon_424562,none +11.4293955,NCBITaxon:46909,http://purl.obolibrary.org/obo/NCBITaxon_46909,none +11.4293955,NCBITaxon:4851,http://purl.obolibrary.org/obo/NCBITaxon_4851,none +11.4293955,PR:000001036,http://purl.obolibrary.org/obo/PR_000001036,WW domain-containing oxidoreductase +11.4293955,PR:000003127,http://purl.obolibrary.org/obo/PR_000003127,baculoviral IAP repeat-containing protein 7 +11.4293955,PR:000004829,http://purl.obolibrary.org/obo/PR_000004829,seipin +11.4293955,PR:000008207,http://purl.obolibrary.org/obo/PR_000008207,very-long-chain enoyl-CoA reductase +11.4293955,PR:000009967,http://purl.obolibrary.org/obo/PR_000009967,lymphocyte-specific protein 1 +11.4293955,PR:000011159,http://purl.obolibrary.org/obo/PR_000011159,nexilin +11.4293955,PR:000011350,http://purl.obolibrary.org/obo/PR_000011350,neuronal PAS domain-containing protein 2 +11.4293955,PR:000023324,http://purl.obolibrary.org/obo/PR_000023324,none +11.4293955,PR:000023523,http://purl.obolibrary.org/obo/PR_000023523,none +11.4293955,PR:P35208,http://purl.obolibrary.org/obo/PR_P35208,none +11.4293955,UBERON:0001270,http://purl.obolibrary.org/obo/UBERON_0001270,bony pelvis +11.4293955,UBERON:0001455,http://purl.obolibrary.org/obo/UBERON_0001455,cuboid bone +11.4293955,UBERON:0001864,http://purl.obolibrary.org/obo/UBERON_0001864,scala tympani +11.4293955,UBERON:0012248,http://purl.obolibrary.org/obo/UBERON_0012248,cervical mucosa +11.4333876,CHEBI:53121,http://purl.obolibrary.org/obo/CHEBI_53121,adenosine A2A receptor antagonist +11.4333876,CHEBI:73190,http://purl.obolibrary.org/obo/CHEBI_73190,antimutagen +11.4333876,CL:0002343,http://purl.obolibrary.org/obo/CL_0002343,"decidual natural killer cell, human" +11.4333876,DRUGBANK:DB09023,http://purl.obolibrary.org/obo/DRUGBANK_DB09023,none +11.4333876,DRUGBANK:DB12385,http://purl.obolibrary.org/obo/DRUGBANK_DB12385,none +11.4333876,DRUGBANK:DB13385,http://purl.obolibrary.org/obo/DRUGBANK_DB13385,none +11.4333876,GO:0000076,http://purl.obolibrary.org/obo/GO_0000076,DNA replication checkpoint signaling +11.4333876,GO:0009723,http://purl.obolibrary.org/obo/GO_0009723,response to ethylene +11.4333876,GO:0015767,http://purl.obolibrary.org/obo/GO_0015767,lactose transport +11.4333876,GO:0016929,http://purl.obolibrary.org/obo/GO_0016929,SUMO-specific protease activity +11.4333876,GO:0045684,http://purl.obolibrary.org/obo/GO_0045684,positive regulation of epidermis development +11.4333876,GO:1990823,http://purl.obolibrary.org/obo/GO_1990823,response to leukemia inhibitory factor +11.4333876,HP:0006817,http://purl.obolibrary.org/obo/HP_0006817,Aplasia/Hypoplasia of the cerebellar vermis +11.4333876,MONDO:0001825,http://purl.obolibrary.org/obo/MONDO_0001825,squamous papilloma +11.4333876,MONDO:0002385,http://purl.obolibrary.org/obo/MONDO_0002385,benign cystic nephroma +11.4333876,MONDO:0007741,http://purl.obolibrary.org/obo/MONDO_0007741,congenital hydronephrosis +11.4333876,MONDO:0017210,http://purl.obolibrary.org/obo/MONDO_0017210,infectious anterior uveitis +11.4333876,MONDO:0019465,http://purl.obolibrary.org/obo/MONDO_0019465,nodal marginal zone B-cell lymphoma +11.4333876,MONDO:0021534,http://purl.obolibrary.org/obo/MONDO_0021534,rectal neuroendocrine tumor G1 +11.4333876,NCBITaxon:4853,http://purl.obolibrary.org/obo/NCBITaxon_4853,none +11.4333876,NCBITaxon:67753,http://purl.obolibrary.org/obo/NCBITaxon_67753,none +11.4333876,PR:000002084,http://purl.obolibrary.org/obo/PR_000002084,semaphorin-4D +11.4333876,PR:000003786,http://purl.obolibrary.org/obo/PR_000003786,2-aminoethanethiol dioxygenase +11.4333876,PR:000004913,http://purl.obolibrary.org/obo/PR_000004913,carbonic anhydrase-related protein 10 +11.4333876,PR:000007295,http://purl.obolibrary.org/obo/PR_000007295,coagulation factor XI +11.4333876,PR:000012777,http://purl.obolibrary.org/obo/PR_000012777,fibrocystin +11.4333876,PR:000014796,http://purl.obolibrary.org/obo/PR_000014796,phosphatidylcholine:ceramide cholinephosphotransferase 1 +11.4333876,PR:000015179,http://purl.obolibrary.org/obo/PR_000015179,sodium- and chloride-dependent GABA transporter 2 +11.4333876,PR:000015745,http://purl.obolibrary.org/obo/PR_000015745,serine/threonine-protein kinase 19 +11.4333876,PR:P25628,http://purl.obolibrary.org/obo/PR_P25628,none +11.4333876,PR:P25932,http://purl.obolibrary.org/obo/PR_P25932,none +11.4333876,PR:P40454,http://purl.obolibrary.org/obo/PR_P40454,none +11.4333876,PR:Q9DDU1,http://purl.obolibrary.org/obo/PR_Q9DDU1,none +11.4333876,PR:Q9P7N2,http://purl.obolibrary.org/obo/PR_Q9P7N2,none +11.4333876,UBERON:0006123,http://purl.obolibrary.org/obo/UBERON_0006123,horizontal limb of the diagonal band +11.4333876,UBERON:0010727,http://purl.obolibrary.org/obo/UBERON_0010727,sutural bone +11.4333876,UBERON:0014719,http://purl.obolibrary.org/obo/UBERON_0014719,intralobular duct +11.4333876,UBERON:0034873,http://purl.obolibrary.org/obo/UBERON_0034873,bodily gas +11.4333876,UBERON:0034947,http://purl.obolibrary.org/obo/UBERON_0034947,gas in respiratory system +11.4373956,CHEBI:18248,http://purl.obolibrary.org/obo/CHEBI_18248,iron atom +11.4373956,CHEBI:31633,http://purl.obolibrary.org/obo/CHEBI_31633,formoterol fumarate +11.4373956,CHEBI:33356,http://purl.obolibrary.org/obo/CHEBI_33356,iron group element atom +11.4373956,CHEBI:33702,http://purl.obolibrary.org/obo/CHEBI_33702,polyatomic cation +11.4373956,CHEBI:35274,http://purl.obolibrary.org/obo/CHEBI_35274,ammonium ion derivative +11.4373956,CHEBI:82663,http://purl.obolibrary.org/obo/CHEBI_82663,elemental iron +11.4373956,CL:0000649,http://purl.obolibrary.org/obo/CL_0000649,prickle cell +11.4373956,CL:0000776,http://purl.obolibrary.org/obo/CL_0000776,immature neutrophil +11.4373956,DRUGBANK:DB00666,http://purl.obolibrary.org/obo/DRUGBANK_DB00666,none +11.4373956,DRUGBANK:DB01812,http://purl.obolibrary.org/obo/DRUGBANK_DB01812,none +11.4373956,DRUGBANK:DB13618,http://purl.obolibrary.org/obo/DRUGBANK_DB13618,none +11.4373956,DRUGBANK:DB15611,http://purl.obolibrary.org/obo/DRUGBANK_DB15611,none +11.4373956,GO:0003934,http://purl.obolibrary.org/obo/GO_0003934,GTP cyclohydrolase I activity +11.4373956,GO:0004122,http://purl.obolibrary.org/obo/GO_0004122,cystathionine beta-synthase activity +11.4373956,GO:0004375,http://purl.obolibrary.org/obo/GO_0004375,glycine dehydrogenase (decarboxylating) activity +11.4373956,GO:0006378,http://purl.obolibrary.org/obo/GO_0006378,mRNA polyadenylation +11.4373956,GO:0007634,http://purl.obolibrary.org/obo/GO_0007634,optokinetic behavior +11.4373956,GO:0016642,http://purl.obolibrary.org/obo/GO_0016642,"oxidoreductase activity, acting on the CH-NH2 group of donors, disulfide as acceptor" +11.4373956,GO:0016896,http://purl.obolibrary.org/obo/GO_0016896,"exoribonuclease activity, producing 5'-phosphomonoesters" +11.4373956,GO:0031123,http://purl.obolibrary.org/obo/GO_0031123,RNA 3'-end processing +11.4373956,GO:0031124,http://purl.obolibrary.org/obo/GO_0031124,mRNA 3'-end processing +11.4373956,GO:0045619,http://purl.obolibrary.org/obo/GO_0045619,regulation of lymphocyte differentiation +11.4373956,GO:0060322,http://purl.obolibrary.org/obo/GO_0060322,head development +11.4373956,MONDO:0002404,http://purl.obolibrary.org/obo/MONDO_0002404,liver hemangioma +11.4373956,MONDO:0003397,http://purl.obolibrary.org/obo/MONDO_0003397,gingival hypertrophy +11.4373956,MONDO:0009287,http://purl.obolibrary.org/obo/MONDO_0009287,glycogen storage disease due to glucose-6-phosphatase deficiency type IA +11.4373956,MONDO:0009303,http://purl.obolibrary.org/obo/MONDO_0009303,anti-glomerular basement membrane disease +11.4373956,MONDO:0011512,http://purl.obolibrary.org/obo/MONDO_0011512,Brooke-Spiegler syndrome +11.4373956,MONDO:0018849,http://purl.obolibrary.org/obo/MONDO_0018849,dentinogenesis imperfecta +11.4373956,MONDO:0018993,http://purl.obolibrary.org/obo/MONDO_0018993,Charcot-Marie-Tooth disease type 2 +11.4373956,NCBITaxon:216305,http://purl.obolibrary.org/obo/NCBITaxon_216305,none +11.4373956,PR:000003679,http://purl.obolibrary.org/obo/PR_000003679,"actin, alpha cardiac muscle 1" +11.4373956,PR:000009026,http://purl.obolibrary.org/obo/PR_000009026,alpha-internexin +11.4373956,PR:000013819,http://purl.obolibrary.org/obo/PR_000013819,retinol-binding protein 2 +11.4373956,PR:000014535,http://purl.obolibrary.org/obo/PR_000014535,retinoid-inducible serine carboxypeptidase +11.4373956,PR:000014837,http://purl.obolibrary.org/obo/PR_000014837,SHC SH2 domain-binding protein 1 +11.4373956,PR:000022061,http://purl.obolibrary.org/obo/PR_000022061,adenylate kinase +11.4373956,PR:000022212,http://purl.obolibrary.org/obo/PR_000022212,none +11.4373956,PR:000030513,http://purl.obolibrary.org/obo/PR_000030513,teratocarcinoma-derived growth factor 1 +11.4373956,PR:000031777,http://purl.obolibrary.org/obo/PR_000031777,IST1 homolog +11.4373956,PR:000037423,http://purl.obolibrary.org/obo/PR_000037423,none +11.4373956,PR:Q54J83,http://purl.obolibrary.org/obo/PR_Q54J83,none +11.4373956,PR:Q94A18,http://purl.obolibrary.org/obo/PR_Q94A18,none +11.4373956,PR:Q9U1Y5,http://purl.obolibrary.org/obo/PR_Q9U1Y5,none +11.4373956,UBERON:0001724,http://purl.obolibrary.org/obo/UBERON_0001724,sphenoidal sinus +11.4414197,CHEBI:36141,http://purl.obolibrary.org/obo/CHEBI_36141,quinone +11.4414197,CL:0000353,http://purl.obolibrary.org/obo/CL_0000353,blastoderm cell +11.4414197,GO:0001781,http://purl.obolibrary.org/obo/GO_0001781,neutrophil apoptotic process +11.4414197,GO:0042635,http://purl.obolibrary.org/obo/GO_0042635,positive regulation of hair cycle +11.4414197,GO:0048818,http://purl.obolibrary.org/obo/GO_0048818,positive regulation of hair follicle maturation +11.4414197,GO:0051798,http://purl.obolibrary.org/obo/GO_0051798,positive regulation of hair follicle development +11.4414197,GO:0055035,http://purl.obolibrary.org/obo/GO_0055035,plastid thylakoid membrane +11.4414197,HP:0000989,http://purl.obolibrary.org/obo/HP_0000989,Pruritus +11.4414197,HP:0001103,http://purl.obolibrary.org/obo/HP_0001103,Abnormal macular morphology +11.4414197,MONDO:0004132,http://purl.obolibrary.org/obo/MONDO_0004132,anal canal squamous cell carcinoma +11.4414197,MONDO:0005641,http://purl.obolibrary.org/obo/MONDO_0005641,aleutian mink disease +11.4414197,MONDO:0005848,http://purl.obolibrary.org/obo/MONDO_0005848,miliary tuberculosis +11.4414197,MONDO:0007542,http://purl.obolibrary.org/obo/MONDO_0007542,Camurati-Engelmann disease +11.4414197,MONDO:0008947,http://purl.obolibrary.org/obo/MONDO_0008947,bilateral striopallidodentate calcinosis +11.4414197,MONDO:0018963,http://purl.obolibrary.org/obo/MONDO_0018963,hereditary methemoglobinemia +11.4414197,MONDO:0019451,http://purl.obolibrary.org/obo/MONDO_0019451,chronic neutrophilic leukemia +11.4414197,NCBITaxon:186802,http://purl.obolibrary.org/obo/NCBITaxon_186802,Eubacteriales +11.4414197,PR:000001198,http://purl.obolibrary.org/obo/PR_000001198,C-C chemokine receptor type 10 +11.4414197,PR:000003407,http://purl.obolibrary.org/obo/PR_000003407,none +11.4414197,PR:000005200,http://purl.obolibrary.org/obo/PR_000005200,ubiquitin-conjugating enzyme E2 R1 +11.4414197,PR:000006310,http://purl.obolibrary.org/obo/PR_000006310,serine/threonine-protein kinase DCLK1 +11.4414197,PR:000008755,http://purl.obolibrary.org/obo/PR_000008755,2-iminobutanoate/2-iminopropanoate deaminase +11.4414197,PR:000011639,http://purl.obolibrary.org/obo/PR_000011639,hepatocyte nuclear factor 6 +11.4414197,PR:000022150,http://purl.obolibrary.org/obo/PR_000022150,none +11.4414197,PR:000031996,http://purl.obolibrary.org/obo/PR_000031996,pre-mRNA-splicing factor ATP-dependent RNA helicase DHX16 +11.4414197,PR:Q5ZK92,http://purl.obolibrary.org/obo/PR_Q5ZK92,none +11.4414197,PR:Q8VYZ0,http://purl.obolibrary.org/obo/PR_Q8VYZ0,none +11.4414197,PR:Q9LDN9,http://purl.obolibrary.org/obo/PR_Q9LDN9,none +11.4414197,UBERON:0001883,http://purl.obolibrary.org/obo/UBERON_0001883,olfactory tubercle +11.4454601,CHEBI:46725,http://purl.obolibrary.org/obo/CHEBI_46725,oxide mineral +11.4454601,CHEBI:49167,http://purl.obolibrary.org/obo/CHEBI_49167,anti-asthmatic drug +11.4454601,DRUGBANK:DB02116,http://purl.obolibrary.org/obo/DRUGBANK_DB02116,none +11.4454601,DRUGBANK:DB03106,http://purl.obolibrary.org/obo/DRUGBANK_DB03106,none +11.4454601,DRUGBANK:DB08840,http://purl.obolibrary.org/obo/DRUGBANK_DB08840,none +11.4454601,DRUGBANK:DB09357,http://purl.obolibrary.org/obo/DRUGBANK_DB09357,none +11.4454601,DRUGBANK:DB10634,http://purl.obolibrary.org/obo/DRUGBANK_DB10634,none +11.4454601,DRUGBANK:DB15111,http://purl.obolibrary.org/obo/DRUGBANK_DB15111,none +11.4454601,GO:0009396,http://purl.obolibrary.org/obo/GO_0009396,folic acid-containing compound biosynthetic process +11.4454601,GO:0009526,http://purl.obolibrary.org/obo/GO_0009526,plastid envelope +11.4454601,GO:0051196,http://purl.obolibrary.org/obo/GO_0051196,none +11.4454601,HP:0000859,http://purl.obolibrary.org/obo/HP_0000859,Hyperaldosteronism +11.4454601,HP:0001320,http://purl.obolibrary.org/obo/HP_0001320,Cerebellar vermis hypoplasia +11.4454601,HP:0002717,http://purl.obolibrary.org/obo/HP_0002717,Adrenal overactivity +11.4454601,MONDO:0000610,http://purl.obolibrary.org/obo/MONDO_0000610,marantic endocarditis +11.4454601,MONDO:0001036,http://purl.obolibrary.org/obo/MONDO_0001036,hypopyon +11.4454601,MONDO:0003262,http://purl.obolibrary.org/obo/MONDO_0003262,rhabdoid meningioma +11.4454601,MONDO:0003472,http://purl.obolibrary.org/obo/MONDO_0003472,lice infestation +11.4454601,MONDO:0004934,http://purl.obolibrary.org/obo/MONDO_0004934,periostitis +11.4454601,MONDO:0010826,http://purl.obolibrary.org/obo/MONDO_0010826,childhood absence epilepsy +11.4454601,MONDO:0016236,http://purl.obolibrary.org/obo/MONDO_0016236,kaposiform hemangioendothelioma +11.4454601,MONDO:0023595,http://purl.obolibrary.org/obo/MONDO_0023595,congenital myotonic dystrophy +11.4454601,MONDO:0044203,http://purl.obolibrary.org/obo/MONDO_0044203,foveal hypoplasia +11.4454601,NCBITaxon:216307,http://purl.obolibrary.org/obo/NCBITaxon_216307,none +11.4454601,PR:000001473,http://purl.obolibrary.org/obo/PR_000001473,interleukin-20 +11.4454601,PR:000004198,http://purl.obolibrary.org/obo/PR_000004198,N-alpha-acetyltransferase 10 +11.4454601,PR:000005007,http://purl.obolibrary.org/obo/PR_000005007,adenylyl cyclase-associated protein 2 +11.4454601,PR:000005692,http://purl.obolibrary.org/obo/PR_000005692,coilin +11.4454601,PR:000006152,http://purl.obolibrary.org/obo/PR_000006152,cystin-1 +11.4454601,PR:000008301,http://purl.obolibrary.org/obo/PR_000008301,glutathione S-transferase mu 2 +11.4454601,PR:000008847,http://purl.obolibrary.org/obo/PR_000008847,hyaluronidase-1 +11.4454601,PR:000009418,http://purl.obolibrary.org/obo/PR_000009418,kallikrein-8 +11.4454601,PR:000009482,http://purl.obolibrary.org/obo/PR_000009482,"keratin, type II cytoskeletal 6A" +11.4454601,PR:000013970,http://purl.obolibrary.org/obo/PR_000013970,rhomboid-related protein 1 +11.4454601,PR:000014715,http://purl.obolibrary.org/obo/PR_000014715,sestrin-2 +11.4454601,PR:000017652,http://purl.obolibrary.org/obo/PR_000017652,zinc finger protein ZFPM1 +11.4454601,PR:000023038,http://purl.obolibrary.org/obo/PR_000023038,none +11.4454601,PR:000023859,http://purl.obolibrary.org/obo/PR_000023859,30S ribosomal protein S6 +11.4454601,PR:000034149,http://purl.obolibrary.org/obo/PR_000034149,none +11.4454601,PR:O82811,http://purl.obolibrary.org/obo/PR_O82811,none +11.4454601,PR:Q570B4,http://purl.obolibrary.org/obo/PR_Q570B4,none +11.4454601,PR:Q9C7S7,http://purl.obolibrary.org/obo/PR_Q9C7S7,none +11.4454601,SO:0000898,http://purl.obolibrary.org/obo/SO_0000898,epigenetically_modified_gene +11.4495169,DRUGBANK:DB00081,http://purl.obolibrary.org/obo/DRUGBANK_DB00081,none +11.4495169,DRUGBANK:DB02938,http://purl.obolibrary.org/obo/DRUGBANK_DB02938,none +11.4495169,DRUGBANK:DB09232,http://purl.obolibrary.org/obo/DRUGBANK_DB09232,none +11.4495169,DRUGBANK:DB10769,http://purl.obolibrary.org/obo/DRUGBANK_DB10769,none +11.4495169,DRUGBANK:DB14372,http://purl.obolibrary.org/obo/DRUGBANK_DB14372,none +11.4495169,DRUGBANK:DB14566,http://purl.obolibrary.org/obo/DRUGBANK_DB14566,none +11.4495169,DRUGBANK:DB15438,http://purl.obolibrary.org/obo/DRUGBANK_DB15438,none +11.4495169,GO:0003382,http://purl.obolibrary.org/obo/GO_0003382,epithelial cell morphogenesis +11.4495169,GO:0006353,http://purl.obolibrary.org/obo/GO_0006353,"DNA-templated transcription, termination" +11.4495169,GO:0008175,http://purl.obolibrary.org/obo/GO_0008175,tRNA methyltransferase activity +11.4495169,GO:0010463,http://purl.obolibrary.org/obo/GO_0010463,mesenchymal cell proliferation +11.4495169,GO:0010769,http://purl.obolibrary.org/obo/GO_0010769,regulation of cell morphogenesis involved in differentiation +11.4495169,GO:0015682,http://purl.obolibrary.org/obo/GO_0015682,none +11.4495169,GO:0015867,http://purl.obolibrary.org/obo/GO_0015867,ATP transport +11.4495169,GO:0016002,http://purl.obolibrary.org/obo/GO_0016002,sulfite reductase activity +11.4495169,GO:0016964,http://purl.obolibrary.org/obo/GO_0016964,alpha-2 macroglobulin receptor activity +11.4495169,GO:0032537,http://purl.obolibrary.org/obo/GO_0032537,host-seeking behavior +11.4495169,GO:0044292,http://purl.obolibrary.org/obo/GO_0044292,dendrite terminus +11.4495169,GO:0044872,http://purl.obolibrary.org/obo/GO_0044872,lipoprotein localization +11.4495169,GO:0052866,http://purl.obolibrary.org/obo/GO_0052866,phosphatidylinositol phosphate phosphatase activity +11.4495169,MONDO:0004567,http://purl.obolibrary.org/obo/MONDO_0004567,ileus +11.4495169,MONDO:0005019,http://purl.obolibrary.org/obo/MONDO_0005019,diffuse scleroderma +11.4495169,MONDO:0006798,http://purl.obolibrary.org/obo/MONDO_0006798,hypervitaminosis A +11.4495169,MONDO:0008633,http://purl.obolibrary.org/obo/MONDO_0008633,Muckle-Wells syndrome +11.4495169,MONDO:0009229,http://purl.obolibrary.org/obo/MONDO_0009229,hyaline fibromatosis syndrome +11.4495169,MONDO:0015776,http://purl.obolibrary.org/obo/MONDO_0015776,rhizomelic chondrodysplasia punctata +11.4495169,MONDO:0019123,http://purl.obolibrary.org/obo/MONDO_0019123,continuous spikes and waves during sleep +11.4495169,MONDO:0025412,http://purl.obolibrary.org/obo/MONDO_0025412,feline panleukopenia +11.4495169,MONDO:0033352,http://purl.obolibrary.org/obo/MONDO_0033352,"neuropathy, congenital hypomelinating" +11.4495169,MONDO:0041850,http://purl.obolibrary.org/obo/MONDO_0041850,pneumonia caused by gram negative bacteria +11.4495169,MONDO:0041879,http://purl.obolibrary.org/obo/MONDO_0041879,staphylococcus aureus pneumonia +11.4495169,NCBITaxon:10067,http://purl.obolibrary.org/obo/NCBITaxon_10067,none +11.4495169,NCBITaxon:115784,http://purl.obolibrary.org/obo/NCBITaxon_115784,none +11.4495169,NCBITaxon:12316,http://purl.obolibrary.org/obo/NCBITaxon_12316,none +11.4495169,NCBITaxon:143920,http://purl.obolibrary.org/obo/NCBITaxon_143920,none +11.4495169,NCBITaxon:28584,http://purl.obolibrary.org/obo/NCBITaxon_28584,none +11.4495169,NCBITaxon:8570,http://purl.obolibrary.org/obo/NCBITaxon_8570,Serpentes +11.4495169,PR:000005868,http://purl.obolibrary.org/obo/PR_000005868,corticotropin-releasing factor-binding protein +11.4495169,PR:000006300,http://purl.obolibrary.org/obo/PR_000006300,"lipoamide acyltransferase component of branched-chain alpha-keto acid dehydrogenase complex, mitochondrial" +11.4495169,PR:000006598,http://purl.obolibrary.org/obo/PR_000006598,dead end protein homolog 1 +11.4495169,PR:000008535,http://purl.obolibrary.org/obo/PR_000008535,hepatocyte growth factor activator +11.4495169,PR:000008791,http://purl.obolibrary.org/obo/PR_000008791,heat shock factor protein 2 +11.4495169,PR:000009453,http://purl.obolibrary.org/obo/PR_000009453,"keratin, type I cytoskeletal 13" +11.4495169,PR:000013418,http://purl.obolibrary.org/obo/PR_000013418,pancreas transcription factor 1 subunit alpha +11.4495169,PR:000014424,http://purl.obolibrary.org/obo/PR_000014424,none +11.4495169,PR:000015160,http://purl.obolibrary.org/obo/PR_000015160,electrogenic sodium bicarbonate cotransporter 1 +11.4495169,PR:000017357,http://purl.obolibrary.org/obo/PR_000017357,V-set domain-containing T-cell activation inhibitor 1 +11.4495169,PR:000022054,http://purl.obolibrary.org/obo/PR_000022054,none +11.4495169,PR:000032681,http://purl.obolibrary.org/obo/PR_000032681,E3 ubiquitin-protein ligase ZSWIM2 +11.4495169,PR:O23372,http://purl.obolibrary.org/obo/PR_O23372,none +11.4495169,PR:Q9SCZ4,http://purl.obolibrary.org/obo/PR_Q9SCZ4,none +11.4495169,UBERON:0000118,http://purl.obolibrary.org/obo/UBERON_0000118,lung bud +11.4495169,UBERON:0001732,http://purl.obolibrary.org/obo/UBERON_0001732,pharyngeal tonsil +11.4495169,UBERON:0003257,http://purl.obolibrary.org/obo/UBERON_0003257,yolk sac endoderm +11.4535903,CHEBI:46882,http://purl.obolibrary.org/obo/CHEBI_46882,primary amino group +11.4535903,DRUGBANK:DB00680,http://purl.obolibrary.org/obo/DRUGBANK_DB00680,none +11.4535903,DRUGBANK:DB06201,http://purl.obolibrary.org/obo/DRUGBANK_DB06201,none +11.4535903,DRUGBANK:DB11102,http://purl.obolibrary.org/obo/DRUGBANK_DB11102,none +11.4535903,DRUGBANK:DB11432,http://purl.obolibrary.org/obo/DRUGBANK_DB11432,none +11.4535903,DRUGBANK:DB12624,http://purl.obolibrary.org/obo/DRUGBANK_DB12624,none +11.4535903,DRUGBANK:DB13212,http://purl.obolibrary.org/obo/DRUGBANK_DB13212,none +11.4535903,GO:0004004,http://purl.obolibrary.org/obo/GO_0004004,none +11.4535903,GO:0004776,http://purl.obolibrary.org/obo/GO_0004776,succinate-CoA ligase (GDP-forming) activity +11.4535903,GO:0016695,http://purl.obolibrary.org/obo/GO_0016695,"oxidoreductase activity, acting on hydrogen as donor" +11.4535903,GO:0017042,http://purl.obolibrary.org/obo/GO_0017042,glycosylceramidase activity +11.4535903,GO:0030548,http://purl.obolibrary.org/obo/GO_0030548,acetylcholine receptor regulator activity +11.4535903,GO:0035357,http://purl.obolibrary.org/obo/GO_0035357,peroxisome proliferator activated receptor signaling pathway +11.4535903,GO:0051294,http://purl.obolibrary.org/obo/GO_0051294,establishment of spindle orientation +11.4535903,GO:0051348,http://purl.obolibrary.org/obo/GO_0051348,negative regulation of transferase activity +11.4535903,HP:0002239,http://purl.obolibrary.org/obo/HP_0002239,Gastrointestinal hemorrhage +11.4535903,MONDO:0000874,http://purl.obolibrary.org/obo/MONDO_0000874,T-cell childhood lymphoblastic lymphoma +11.4535903,MONDO:0006042,http://purl.obolibrary.org/obo/MONDO_0006042,meningeal tuberculosis +11.4535903,MONDO:0019261,http://purl.obolibrary.org/obo/MONDO_0019261,infantile neuronal ceroid lipofuscinosis +11.4535903,MONDO:0021316,http://purl.obolibrary.org/obo/MONDO_0021316,malignant tumor of minor salivary gland +11.4535903,NCBITaxon:4903,http://purl.obolibrary.org/obo/NCBITaxon_4903,none +11.4535903,NCBITaxon:604195,http://purl.obolibrary.org/obo/NCBITaxon_604195,none +11.4535903,NCBITaxon:8416,http://purl.obolibrary.org/obo/NCBITaxon_8416,Neobatrachia +11.4535903,PR:000003534,http://purl.obolibrary.org/obo/PR_000003534,protein AATF +11.4535903,PR:000007487,http://purl.obolibrary.org/obo/PR_000007487,fibroblast growth factor 18 +11.4535903,PR:000008649,http://purl.obolibrary.org/obo/PR_000008649,humanin +11.4535903,PR:000008986,http://purl.obolibrary.org/obo/PR_000008986,interleukin-18-binding protein +11.4535903,PR:000013729,http://purl.obolibrary.org/obo/PR_000013729,Rap guanine nucleotide exchange factor 4 +11.4535903,PR:000014997,http://purl.obolibrary.org/obo/PR_000014997,solute carrier family 23 member 2 +11.4535903,PR:000015302,http://purl.obolibrary.org/obo/PR_000015302,smoothelin +11.4535903,PR:000016045,http://purl.obolibrary.org/obo/PR_000016045,transaldolase +11.4535903,PR:000016140,http://purl.obolibrary.org/obo/PR_000016140,T-box brain protein 1 +11.4535903,PR:000022332,http://purl.obolibrary.org/obo/PR_000022332,none +11.4535903,PR:000022493,http://purl.obolibrary.org/obo/PR_000022493,none +11.4535903,PR:P46032,http://purl.obolibrary.org/obo/PR_P46032,none +11.4535903,PR:Q9FNB0,http://purl.obolibrary.org/obo/PR_Q9FNB0,none +11.4535903,UBERON:0001392,http://purl.obolibrary.org/obo/UBERON_0001392,flexor hallucis longus +11.4535903,UBERON:0003011,http://purl.obolibrary.org/obo/UBERON_0003011,facial motor nucleus +11.4535903,UBERON:0004002,http://purl.obolibrary.org/obo/UBERON_0004002,posterior lobe of cerebellum +11.4535903,UBERON:0005429,http://purl.obolibrary.org/obo/UBERON_0005429,dorsal pancreatic duct +11.4535903,UBERON:0011867,http://purl.obolibrary.org/obo/UBERON_0011867,extensor carpi radialis muscle +11.4576802,CL:0002355,http://purl.obolibrary.org/obo/CL_0002355,primitive red blood cell +11.4576802,DRUGBANK:DB06479,http://purl.obolibrary.org/obo/DRUGBANK_DB06479,none +11.4576802,DRUGBANK:DB11089,http://purl.obolibrary.org/obo/DRUGBANK_DB11089,none +11.4576802,DRUGBANK:DB11098,http://purl.obolibrary.org/obo/DRUGBANK_DB11098,none +11.4576802,DRUGBANK:DB11511,http://purl.obolibrary.org/obo/DRUGBANK_DB11511,none +11.4576802,DRUGBANK:DB13496,http://purl.obolibrary.org/obo/DRUGBANK_DB13496,none +11.4576802,DRUGBANK:DB13911,http://purl.obolibrary.org/obo/DRUGBANK_DB13911,none +11.4576802,GO:0006521,http://purl.obolibrary.org/obo/GO_0006521,regulation of cellular amino acid metabolic process +11.4576802,GO:0061842,http://purl.obolibrary.org/obo/GO_0061842,microtubule organizing center localization +11.4576802,GO:0070663,http://purl.obolibrary.org/obo/GO_0070663,regulation of leukocyte proliferation +11.4576802,GO:1901269,http://purl.obolibrary.org/obo/GO_1901269,lipooligosaccharide metabolic process +11.4576802,GO:1901271,http://purl.obolibrary.org/obo/GO_1901271,lipooligosaccharide biosynthetic process +11.4576802,GO:1990832,http://purl.obolibrary.org/obo/GO_1990832,slow axonal transport +11.4576802,HP:0000992,http://purl.obolibrary.org/obo/HP_0000992,Cutaneous photosensitivity +11.4576802,MONDO:0005535,http://purl.obolibrary.org/obo/MONDO_0005535,oral Crohn disease +11.4576802,MONDO:0006786,http://purl.obolibrary.org/obo/MONDO_0006786,hepatic vein thrombosis +11.4576802,MONDO:0007606,http://purl.obolibrary.org/obo/MONDO_0007606,fibrodysplasia ossificans progressiva +11.4576802,MONDO:0010568,http://purl.obolibrary.org/obo/MONDO_0010568,Aicardi syndrome +11.4576802,MONDO:0015337,http://purl.obolibrary.org/obo/MONDO_0015337,isolated craniosynostosis +11.4576802,MONDO:0016544,http://purl.obolibrary.org/obo/MONDO_0016544,IgG4-related mesenteritis +11.4576802,MONDO:0016703,http://purl.obolibrary.org/obo/MONDO_0016703,anaplastic oligoastrocytoma +11.4576802,MONDO:0018473,http://purl.obolibrary.org/obo/MONDO_0018473,hyperlipoproteinemia type 3 +11.4576802,NCBITaxon:11021,http://purl.obolibrary.org/obo/NCBITaxon_11021,Eastern equine encephalitis virus +11.4576802,NCBITaxon:177873,http://purl.obolibrary.org/obo/NCBITaxon_177873,none +11.4576802,NCBITaxon:5042,http://purl.obolibrary.org/obo/NCBITaxon_5042,Eurotiales +11.4576802,NCBITaxon:7524,http://purl.obolibrary.org/obo/NCBITaxon_7524,Hemiptera +11.4576802,PR:000001186,http://purl.obolibrary.org/obo/PR_000001186,alpha-2A adrenergic receptor +11.4576802,PR:000003693,http://purl.obolibrary.org/obo/PR_000003693,alpha-centractin +11.4576802,PR:000008297,http://purl.obolibrary.org/obo/PR_000008297,glutathione S-transferase A4 +11.4576802,PR:000011251,http://purl.obolibrary.org/obo/PR_000011251,homeobox protein Nkx-6.2 +11.4576802,PR:000013317,http://purl.obolibrary.org/obo/PR_000013317,paired mesoderm homeobox protein 2 +11.4576802,PR:000014035,http://purl.obolibrary.org/obo/PR_000014035,relaxin-3 +11.4576802,PR:000015601,http://purl.obolibrary.org/obo/PR_000015601,squalene monooxygenase +11.4576802,PR:000015995,http://purl.obolibrary.org/obo/PR_000015995,none +11.4576802,PR:000016749,http://purl.obolibrary.org/obo/PR_000016749,tetraspanin-33 +11.4576802,PR:000029642,http://purl.obolibrary.org/obo/PR_000029642,ribosomal RNA small subunit methyltransferase NEP1 +11.4576802,PR:P05752,http://purl.obolibrary.org/obo/PR_P05752,none +11.4576802,PR:Q8H0V4,http://purl.obolibrary.org/obo/PR_Q8H0V4,none +11.4576802,PR:Q96303,http://purl.obolibrary.org/obo/PR_Q96303,none +11.4576802,PR:Q9SCW5,http://purl.obolibrary.org/obo/PR_Q9SCW5,none +11.4576802,UBERON:3000977,http://purl.obolibrary.org/obo/UBERON_3000977,body external integument structure +11.461787,CHEBI:25000,http://purl.obolibrary.org/obo/CHEBI_25000,lactone +11.461787,CHEBI:37253,http://purl.obolibrary.org/obo/CHEBI_37253,elemental zinc +11.461787,CHEBI:68664,http://purl.obolibrary.org/obo/CHEBI_68664,DL-ethionine +11.461787,CHEBI:71173,http://purl.obolibrary.org/obo/CHEBI_71173,H1-receptor agonist +11.461787,CL:0011104,http://purl.obolibrary.org/obo/CL_0011104,interplexiform cell +11.461787,DRUGBANK:DB01646,http://purl.obolibrary.org/obo/DRUGBANK_DB01646,none +11.461787,DRUGBANK:DB12975,http://purl.obolibrary.org/obo/DRUGBANK_DB12975,none +11.461787,GO:0006566,http://purl.obolibrary.org/obo/GO_0006566,threonine metabolic process +11.461787,GO:0008456,http://purl.obolibrary.org/obo/GO_0008456,alpha-N-acetylgalactosaminidase activity +11.461787,GO:0008761,http://purl.obolibrary.org/obo/GO_0008761,UDP-N-acetylglucosamine 2-epimerase activity +11.461787,GO:0034059,http://purl.obolibrary.org/obo/GO_0034059,response to anoxia +11.461787,GO:0034293,http://purl.obolibrary.org/obo/GO_0034293,sexual sporulation +11.461787,GO:0034975,http://purl.obolibrary.org/obo/GO_0034975,protein folding in endoplasmic reticulum +11.461787,GO:0045540,http://purl.obolibrary.org/obo/GO_0045540,regulation of cholesterol biosynthetic process +11.461787,GO:0046864,http://purl.obolibrary.org/obo/GO_0046864,isoprenoid transport +11.461787,GO:0046865,http://purl.obolibrary.org/obo/GO_0046865,terpenoid transport +11.461787,GO:0060011,http://purl.obolibrary.org/obo/GO_0060011,Sertoli cell proliferation +11.461787,GO:0090181,http://purl.obolibrary.org/obo/GO_0090181,regulation of cholesterol metabolic process +11.461787,GO:0106118,http://purl.obolibrary.org/obo/GO_0106118,regulation of sterol biosynthetic process +11.461787,GO:1901563,http://purl.obolibrary.org/obo/GO_1901563,response to camptothecin +11.461787,HP:0000159,http://purl.obolibrary.org/obo/HP_0000159,Abnormal lip morphology +11.461787,MONDO:0000721,http://purl.obolibrary.org/obo/MONDO_0000721,xanthinuria +11.461787,MONDO:0003760,http://purl.obolibrary.org/obo/MONDO_0003760,pediatric ovarian germ cell tumor +11.461787,MONDO:0003772,http://purl.obolibrary.org/obo/MONDO_0003772,cerebral meningioma +11.461787,MONDO:0008195,http://purl.obolibrary.org/obo/MONDO_0008195,paramyotonia congenita of Von Eulenburg +11.461787,MONDO:0016824,http://purl.obolibrary.org/obo/MONDO_0016824,infantile myofibromatosis +11.461787,MONDO:0018932,http://purl.obolibrary.org/obo/MONDO_0018932,cirrhotic cardiomyopathy +11.461787,MONDO:0021086,http://purl.obolibrary.org/obo/MONDO_0021086,gingival neoplasm +11.461787,MONDO:0025513,http://purl.obolibrary.org/obo/MONDO_0025513,autoimmune urticaria +11.461787,MONDO:0044690,http://purl.obolibrary.org/obo/MONDO_0044690,optic perineuritis +11.461787,PR:000000785,http://purl.obolibrary.org/obo/PR_000000785,voltage-gated potassium channel KCND2 +11.461787,PR:000001240,http://purl.obolibrary.org/obo/PR_000001240,motilin receptor +11.461787,PR:000008669,http://purl.obolibrary.org/obo/PR_000008669,heterogeneous nuclear ribonucleoprotein K +11.461787,PR:000013341,http://purl.obolibrary.org/obo/PR_000013341,PH and SEC7 domain-containing protein 1 +11.461787,PR:000014866,http://purl.obolibrary.org/obo/PR_000014866,sialic acid-binding Ig-like lectin 12 +11.461787,PR:000014893,http://purl.obolibrary.org/obo/PR_000014893,NAD-dependent protein deacetylase sirtuin-7 +11.461787,PR:000015049,http://purl.obolibrary.org/obo/PR_000015049,bile acyl-CoA synthetase +11.461787,PR:000017318,http://purl.obolibrary.org/obo/PR_000017318,vacuolar protein sorting-associated protein 11 +11.461787,PR:000029552,http://purl.obolibrary.org/obo/PR_000029552,interferon-induced protein with tetratricopeptide repeats 3 +11.461787,PR:000044786,http://purl.obolibrary.org/obo/PR_000044786,hyaluronan and proteoglycan link protein +11.461787,UBERON:0002315,http://purl.obolibrary.org/obo/UBERON_0002315,gray matter of spinal cord +11.461787,UBERON:0003092,http://purl.obolibrary.org/obo/UBERON_0003092,ultimobranchial body +11.461787,UBERON:0014800,http://purl.obolibrary.org/obo/UBERON_0014800,spinotrapezius muscle +11.461787,UBERON:0015877,http://purl.obolibrary.org/obo/UBERON_0015877,parietal pelvic lymph node +11.4659107,CHEBI:18243,http://purl.obolibrary.org/obo/CHEBI_18243,dopamine +11.4659107,CHEBI:60173,http://purl.obolibrary.org/obo/CHEBI_60173,purine deoxyribonucleoside +11.4659107,DRUGBANK:DB00402,http://purl.obolibrary.org/obo/DRUGBANK_DB00402,none +11.4659107,DRUGBANK:DB01111,http://purl.obolibrary.org/obo/DRUGBANK_DB01111,none +11.4659107,DRUGBANK:DB01726,http://purl.obolibrary.org/obo/DRUGBANK_DB01726,none +11.4659107,DRUGBANK:DB02092,http://purl.obolibrary.org/obo/DRUGBANK_DB02092,none +11.4659107,DRUGBANK:DB12473,http://purl.obolibrary.org/obo/DRUGBANK_DB12473,none +11.4659107,DRUGBANK:DB15745,http://purl.obolibrary.org/obo/DRUGBANK_DB15745,none +11.4659107,GO:0004098,http://purl.obolibrary.org/obo/GO_0004098,cerebroside-sulfatase activity +11.4659107,GO:0006348,http://purl.obolibrary.org/obo/GO_0006348,none +11.4659107,GO:0006716,http://purl.obolibrary.org/obo/GO_0006716,juvenile hormone metabolic process +11.4659107,GO:0016119,http://purl.obolibrary.org/obo/GO_0016119,carotene metabolic process +11.4659107,GO:0046821,http://purl.obolibrary.org/obo/GO_0046821,extrachromosomal DNA +11.4659107,MONDO:0003912,http://purl.obolibrary.org/obo/MONDO_0003912,malignant ciliary body melanoma +11.4659107,MONDO:0006076,http://purl.obolibrary.org/obo/MONDO_0006076,adrenal gland neuroblastoma +11.4659107,MONDO:0010683,http://purl.obolibrary.org/obo/MONDO_0010683,X-linked centronuclear myopathy +11.4659107,MONDO:0013313,http://purl.obolibrary.org/obo/MONDO_0013313,ectodermal dysplasia-cutaneous syndactyly syndrome +11.4659107,MONDO:0015611,http://purl.obolibrary.org/obo/MONDO_0015611,neutral lipid storage disease +11.4659107,MONDO:0016154,http://purl.obolibrary.org/obo/MONDO_0016154,qualitative or quantitative defects of myotubularin +11.4659107,NCBITaxon:10150,http://purl.obolibrary.org/obo/NCBITaxon_10150,Chinchillidae +11.4659107,NCBITaxon:10151,http://purl.obolibrary.org/obo/NCBITaxon_10151,none +11.4659107,NCBITaxon:41937,http://purl.obolibrary.org/obo/NCBITaxon_41937,none +11.4659107,NCBITaxon:93934,http://purl.obolibrary.org/obo/NCBITaxon_93934,Coturnix japonica +11.4659107,PR:000006338,http://purl.obolibrary.org/obo/PR_000006338,"N(G),N(G)-dimethylarginine dimethylaminohydrolase 1" +11.4659107,PR:000006720,http://purl.obolibrary.org/obo/PR_000006720,E3 ubiquitin-protein ligase DTX1 +11.4659107,PR:000009056,http://purl.obolibrary.org/obo/PR_000009056,insulin-induced gene 1 protein +11.4659107,PR:000012661,http://purl.obolibrary.org/obo/PR_000012661,"phosphorylase b kinase gamma catalytic chain, skeletal muscle isoform" +11.4659107,PR:000013720,http://purl.obolibrary.org/obo/PR_000013720,Ras-related protein Rap-1b +11.4659107,PR:000016712,http://purl.obolibrary.org/obo/PR_000016712,TSC22 domain family protein 3 +11.4659107,PR:000031742,http://purl.obolibrary.org/obo/PR_000031742,pleckstrin homology domain-containing family B member 1 +11.4659107,PR:P04988,http://purl.obolibrary.org/obo/PR_P04988,none +11.4659107,PR:Q65Z91,http://purl.obolibrary.org/obo/PR_Q65Z91,none +11.4659107,PR:Q9SUT0,http://purl.obolibrary.org/obo/PR_Q9SUT0,none +11.4659107,UBERON:0001107,http://purl.obolibrary.org/obo/UBERON_0001107,sternohyoid muscle +11.4659107,UBERON:0001686,http://purl.obolibrary.org/obo/UBERON_0001686,auditory ossicle bone +11.4700515,CHEBI:142361,http://purl.obolibrary.org/obo/CHEBI_142361,purines 2'-deoxy-D-ribonucleoside +11.4700515,CHEBI:19254,http://purl.obolibrary.org/obo/CHEBI_19254,purine 2'-deoxyribonucleoside +11.4700515,CL:0000648,http://purl.obolibrary.org/obo/CL_0000648,kidney granular cell +11.4700515,DRUGBANK:DB00509,http://purl.obolibrary.org/obo/DRUGBANK_DB00509,none +11.4700515,DRUGBANK:DB03384,http://purl.obolibrary.org/obo/DRUGBANK_DB03384,none +11.4700515,DRUGBANK:DB04473,http://purl.obolibrary.org/obo/DRUGBANK_DB04473,none +11.4700515,DRUGBANK:DB06235,http://purl.obolibrary.org/obo/DRUGBANK_DB06235,none +11.4700515,DRUGBANK:DB10683,http://purl.obolibrary.org/obo/DRUGBANK_DB10683,none +11.4700515,DRUGBANK:DB14815,http://purl.obolibrary.org/obo/DRUGBANK_DB14815,none +11.4700515,GO:0000132,http://purl.obolibrary.org/obo/GO_0000132,establishment of mitotic spindle orientation +11.4700515,GO:0001642,http://purl.obolibrary.org/obo/GO_0001642,group III metabotropic glutamate receptor activity +11.4700515,GO:0008160,http://purl.obolibrary.org/obo/GO_0008160,protein tyrosine phosphatase activator activity +11.4700515,GO:0035098,http://purl.obolibrary.org/obo/GO_0035098,ESC/E(Z) complex +11.4700515,GO:0051766,http://purl.obolibrary.org/obo/GO_0051766,inositol trisphosphate kinase activity +11.4700515,GO:0060471,http://purl.obolibrary.org/obo/GO_0060471,cortical granule exocytosis +11.4700515,MONDO:0005262,http://purl.obolibrary.org/obo/MONDO_0005262,central nervous system cyst +11.4700515,MONDO:0011603,http://purl.obolibrary.org/obo/MONDO_0011603,GNE myopathy +11.4700515,MONDO:0016200,http://purl.obolibrary.org/obo/MONDO_0016200,qualitative or quantitative defects of glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase - +11.4700515,MONDO:0016487,http://purl.obolibrary.org/obo/MONDO_0016487,beta-thalassemia intermedia +11.4700515,MONDO:0017161,http://purl.obolibrary.org/obo/MONDO_0017161,frontotemporal dementia with motor neuron disease +11.4700515,MONDO:0019378,http://purl.obolibrary.org/obo/MONDO_0019378,la Crosse encephalitis +11.4700515,NCBITaxon:11976,http://purl.obolibrary.org/obo/NCBITaxon_11976,Rabbit hemorrhagic disease virus +11.4700515,NCBITaxon:186826,http://purl.obolibrary.org/obo/NCBITaxon_186826,Lactobacillales +11.4700515,NCBITaxon:368617,http://purl.obolibrary.org/obo/NCBITaxon_368617,none +11.4700515,PR:000001410,http://purl.obolibrary.org/obo/PR_000001410,C-type lectin domain family 10 member A +11.4700515,PR:000004433,http://purl.obolibrary.org/obo/PR_000004433,copper transport protein ATOX1 +11.4700515,PR:000006051,http://purl.obolibrary.org/obo/PR_000006051,cullin-5 +11.4700515,PR:000009798,http://purl.obolibrary.org/obo/PR_000009798,"lipoyl synthase, mitochondrial" +11.4700515,PR:000013676,http://purl.obolibrary.org/obo/PR_000013676,DNA repair protein RAD51 homolog 2 +11.4700515,PR:000014050,http://purl.obolibrary.org/obo/PR_000014050,ribonuclease 7 +11.4700515,PR:000015225,http://purl.obolibrary.org/obo/PR_000015225,solute carrier organic anion transporter family member 1C1 +11.4700515,PR:000015618,http://purl.obolibrary.org/obo/PR_000015618,serglycin +11.4700515,PR:000015815,http://purl.obolibrary.org/obo/PR_000015815,protein SGT1 +11.4700515,PR:000015913,http://purl.obolibrary.org/obo/PR_000015913,synaptotagmin-like protein 2 +11.4700515,PR:000015919,http://purl.obolibrary.org/obo/PR_000015919,none +11.4700515,PR:000016372,http://purl.obolibrary.org/obo/PR_000016372,transducin-like enhancer protein 1 +11.4700515,PR:000022036,http://purl.obolibrary.org/obo/PR_000022036,none +11.4700515,PR:000029441,http://purl.obolibrary.org/obo/PR_000029441,EF-hand domain-containing protein D2 +11.4700515,SO:0000257,http://purl.obolibrary.org/obo/SO_0000257,aspartyl_tRNA +11.4700515,UBERON:0015350,http://purl.obolibrary.org/obo/UBERON_0015350,saphenous artery +11.4700515,UBERON:0035130,http://purl.obolibrary.org/obo/UBERON_0035130,auditory ossicle endochondral element +11.4742095,CHEBI:32460,http://purl.obolibrary.org/obo/CHEBI_32460,cysteine residue +11.4742095,CHEBI:46717,http://purl.obolibrary.org/obo/CHEBI_46717,sulfide mineral +11.4742095,DRUGBANK:DB00918,http://purl.obolibrary.org/obo/DRUGBANK_DB00918,none +11.4742095,DRUGBANK:DB00924,http://purl.obolibrary.org/obo/DRUGBANK_DB00924,none +11.4742095,DRUGBANK:DB01185,http://purl.obolibrary.org/obo/DRUGBANK_DB01185,none +11.4742095,DRUGBANK:DB13406,http://purl.obolibrary.org/obo/DRUGBANK_DB13406,none +11.4742095,DRUGBANK:DB14029,http://purl.obolibrary.org/obo/DRUGBANK_DB14029,none +11.4742095,GO:0004331,http://purl.obolibrary.org/obo/GO_0004331,"fructose-2,6-bisphosphate 2-phosphatase activity" +11.4742095,GO:0008478,http://purl.obolibrary.org/obo/GO_0008478,pyridoxal kinase activity +11.4742095,GO:0008603,http://purl.obolibrary.org/obo/GO_0008603,cAMP-dependent protein kinase regulator activity +11.4742095,GO:0008959,http://purl.obolibrary.org/obo/GO_0008959,phosphate acetyltransferase activity +11.4742095,GO:0009535,http://purl.obolibrary.org/obo/GO_0009535,chloroplast thylakoid membrane +11.4742095,GO:0010755,http://purl.obolibrary.org/obo/GO_0010755,regulation of plasminogen activation +11.4742095,GO:0016028,http://purl.obolibrary.org/obo/GO_0016028,rhabdomere +11.4742095,GO:0036230,http://purl.obolibrary.org/obo/GO_0036230,granulocyte activation +11.4742095,GO:0080154,http://purl.obolibrary.org/obo/GO_0080154,regulation of fertilization +11.4742095,GO:0090398,http://purl.obolibrary.org/obo/GO_0090398,cellular senescence +11.4742095,HP:0001337,http://purl.obolibrary.org/obo/HP_0001337,Tremor +11.4742095,MONDO:0003250,http://purl.obolibrary.org/obo/MONDO_0003250,benign granular cell tumor +11.4742095,MONDO:0006115,http://purl.obolibrary.org/obo/MONDO_0006115,"blast phase chronic myelogenous leukemia, BCR-ABL1 positive" +11.4742095,MONDO:0009211,http://purl.obolibrary.org/obo/MONDO_0009211,congenital factor VII deficiency +11.4742095,MONDO:0017069,http://purl.obolibrary.org/obo/MONDO_0017069,spina bifida cystica +11.4742095,MONDO:0020761,http://purl.obolibrary.org/obo/MONDO_0020761,Bowen disease of the skin +11.4742095,NCBITaxon:1131492,http://purl.obolibrary.org/obo/NCBITaxon_1131492,Aspergillaceae +11.4742095,NCBITaxon:40054,http://purl.obolibrary.org/obo/NCBITaxon_40054,none +11.4742095,PR:000003661,http://purl.obolibrary.org/obo/PR_000003661,long-chain-fatty-acid--CoA ligase 4 +11.4742095,PR:000003927,http://purl.obolibrary.org/obo/PR_000003927,aldehyde dehydrogenase family 3 member A2 +11.4742095,PR:000006298,http://purl.obolibrary.org/obo/PR_000006298,D site-binding protein +11.4742095,PR:000013858,http://purl.obolibrary.org/obo/PR_000013858,meiotic recombination protein REC8 +11.4742095,PR:000013958,http://purl.obolibrary.org/obo/PR_000013958,regulator of G-protein signaling 3 +11.4742095,PR:000016008,http://purl.obolibrary.org/obo/PR_000016008,transforming acidic coiled-coil-containing protein 3 +11.4742095,PR:000029232,http://purl.obolibrary.org/obo/PR_000029232,none +11.4742095,PR:000029786,http://purl.obolibrary.org/obo/PR_000029786,alpha-globin transcription factor CP2 +11.4742095,PR:O65572,http://purl.obolibrary.org/obo/PR_O65572,none +11.4742095,PR:P35231,http://purl.obolibrary.org/obo/PR_P35231,none +11.4742095,PR:Q06389,http://purl.obolibrary.org/obo/PR_Q06389,none +11.4742095,PR:Q8W1Y3,http://purl.obolibrary.org/obo/PR_Q8W1Y3,none +11.4742095,UBERON:0002262,http://purl.obolibrary.org/obo/UBERON_0002262,celiac ganglion +11.4742095,UBERON:0004189,http://purl.obolibrary.org/obo/UBERON_0004189,glomerular endothelium +11.4742095,UBERON:0005373,http://purl.obolibrary.org/obo/UBERON_0005373,spinal cord dorsal column +11.4742095,UBERON:0005417,http://purl.obolibrary.org/obo/UBERON_0005417,forelimb bud +11.4742095,UBERON:0005419,http://purl.obolibrary.org/obo/UBERON_0005419,pectoral appendage bud +11.4742095,UBERON:0008906,http://purl.obolibrary.org/obo/UBERON_0008906,lateral line nerve +11.4783849,DRUGBANK:DB06283,http://purl.obolibrary.org/obo/DRUGBANK_DB06283,none +11.4783849,DRUGBANK:DB09238,http://purl.obolibrary.org/obo/DRUGBANK_DB09238,none +11.4783849,DRUGBANK:DB10366,http://purl.obolibrary.org/obo/DRUGBANK_DB10366,none +11.4783849,DRUGBANK:DB11440,http://purl.obolibrary.org/obo/DRUGBANK_DB11440,none +11.4783849,GO:0001565,http://purl.obolibrary.org/obo/GO_0001565,phorbol ester receptor activity +11.4783849,GO:0002067,http://purl.obolibrary.org/obo/GO_0002067,glandular epithelial cell differentiation +11.4783849,GO:0007044,http://purl.obolibrary.org/obo/GO_0007044,cell-substrate junction assembly +11.4783849,GO:0014046,http://purl.obolibrary.org/obo/GO_0014046,dopamine secretion +11.4783849,GO:0033260,http://purl.obolibrary.org/obo/GO_0033260,nuclear DNA replication +11.4783849,GO:0044304,http://purl.obolibrary.org/obo/GO_0044304,main axon +11.4783849,GO:0062013,http://purl.obolibrary.org/obo/GO_0062013,positive regulation of small molecule metabolic process +11.4783849,GO:0070259,http://purl.obolibrary.org/obo/GO_0070259,tyrosyl-DNA phosphodiesterase activity +11.4783849,GO:0150115,http://purl.obolibrary.org/obo/GO_0150115,cell-substrate junction organization +11.4783849,MONDO:0002200,http://purl.obolibrary.org/obo/MONDO_0002200,eccrine mixed tumor of skin +11.4783849,MONDO:0002361,http://purl.obolibrary.org/obo/MONDO_0002361,transverse colon cancer +11.4783849,MONDO:0007523,http://purl.obolibrary.org/obo/MONDO_0007523,"Ehlers-Danlos syndrome, hypermobility type" +11.4783849,MONDO:0008340,http://purl.obolibrary.org/obo/MONDO_0008340,congenital ptosis +11.4783849,MONDO:0018018,http://purl.obolibrary.org/obo/MONDO_0018018,wild type ATTR amyloidosis +11.4783849,MONDO:0019035,http://purl.obolibrary.org/obo/MONDO_0019035,pancreatoblastoma +11.4783849,MONDO:0021115,http://purl.obolibrary.org/obo/MONDO_0021115,luminal B breast carcinoma +11.4783849,NCBITaxon:1955251,http://purl.obolibrary.org/obo/NCBITaxon_1955251,none +11.4783849,PR:000004363,http://purl.obolibrary.org/obo/PR_000004363,achaete-scute homolog 2 +11.4783849,PR:000004448,http://purl.obolibrary.org/obo/PR_000004448,plasma membrane calcium-transporting ATPase 4 +11.4783849,PR:000006529,http://purl.obolibrary.org/obo/PR_000006529,homeobox protein DLX-3 +11.4783849,PR:000007685,http://purl.obolibrary.org/obo/PR_000007685,follistatin-related protein 1 +11.4783849,PR:000011267,http://purl.obolibrary.org/obo/PR_000011267,"NACHT, LRR and PYD domains-containing protein 12" +11.4783849,PR:000013669,http://purl.obolibrary.org/obo/PR_000013669,UV excision repair protein RAD23 homolog A +11.4783849,PR:000017222,http://purl.obolibrary.org/obo/PR_000017222,none +11.4783849,PR:000017266,http://purl.obolibrary.org/obo/PR_000017266,guanine nucleotide exchange factor VAV2 +11.4783849,PR:000022056,http://purl.obolibrary.org/obo/PR_000022056,none +11.4783849,PR:000023624,http://purl.obolibrary.org/obo/PR_000023624,none +11.4783849,PR:P51430,http://purl.obolibrary.org/obo/PR_P51430,none +11.4783849,PR:Q6PBI4,http://purl.obolibrary.org/obo/PR_Q6PBI4,none +11.4783849,UBERON:0003686,http://purl.obolibrary.org/obo/UBERON_0003686,tooth socket +11.4783849,UBERON:0008989,http://purl.obolibrary.org/obo/UBERON_0008989,submucosal esophageal gland +11.4825778,CHEBI:24400,http://purl.obolibrary.org/obo/CHEBI_24400,glycoside +11.4825778,CHEBI:26386,http://purl.obolibrary.org/obo/CHEBI_26386,purine nucleobase +11.4825778,CHEBI:38106,http://purl.obolibrary.org/obo/CHEBI_38106,organosulfur heterocyclic compound +11.4825778,CHEBI:47622,http://purl.obolibrary.org/obo/CHEBI_47622,acetate ester +11.4825778,CHEBI:61419,http://purl.obolibrary.org/obo/CHEBI_61419,hyperbranched polymer +11.4825778,CHEBI:63562,http://purl.obolibrary.org/obo/CHEBI_63562,glucocorticoid receptor agonist +11.4825778,CL:0002631,http://purl.obolibrary.org/obo/CL_0002631,epithelial cell of upper respiratory tract +11.4825778,DRUGBANK:DB00427,http://purl.obolibrary.org/obo/DRUGBANK_DB00427,none +11.4825778,DRUGBANK:DB01535,http://purl.obolibrary.org/obo/DRUGBANK_DB01535,none +11.4825778,DRUGBANK:DB04813,http://purl.obolibrary.org/obo/DRUGBANK_DB04813,none +11.4825778,DRUGBANK:DB09030,http://purl.obolibrary.org/obo/DRUGBANK_DB09030,none +11.4825778,DRUGBANK:DB10619,http://purl.obolibrary.org/obo/DRUGBANK_DB10619,none +11.4825778,DRUGBANK:DB14325,http://purl.obolibrary.org/obo/DRUGBANK_DB14325,none +11.4825778,DRUGBANK:DB14488,http://purl.obolibrary.org/obo/DRUGBANK_DB14488,none +11.4825778,GO:0030397,http://purl.obolibrary.org/obo/GO_0030397,membrane disassembly +11.4825778,GO:0030811,http://purl.obolibrary.org/obo/GO_0030811,regulation of nucleotide catabolic process +11.4825778,GO:0032878,http://purl.obolibrary.org/obo/GO_0032878,regulation of establishment or maintenance of cell polarity +11.4825778,GO:0036119,http://purl.obolibrary.org/obo/GO_0036119,response to platelet-derived growth factor +11.4825778,GO:0051642,http://purl.obolibrary.org/obo/GO_0051642,centrosome localization +11.4825778,GO:2000114,http://purl.obolibrary.org/obo/GO_2000114,regulation of establishment of cell polarity +11.4825778,HP:0000826,http://purl.obolibrary.org/obo/HP_0000826,Precocious puberty +11.4825778,HP:0100000,http://purl.obolibrary.org/obo/HP_0100000,Early onset of sexual maturation +11.4825778,MONDO:0008814,http://purl.obolibrary.org/obo/MONDO_0008814,hyperargininemia +11.4825778,MONDO:0009323,http://purl.obolibrary.org/obo/MONDO_0009323,Halothane hepatitis +11.4825778,MONDO:0011776,http://purl.obolibrary.org/obo/MONDO_0011776,CINCA syndrome +11.4825778,MONDO:0015290,http://purl.obolibrary.org/obo/MONDO_0015290,neurotrophic keratopathy +11.4825778,MONDO:0018369,http://purl.obolibrary.org/obo/MONDO_0018369,immature ovarian teratoma +11.4825778,NCBITaxon:12429,http://purl.obolibrary.org/obo/NCBITaxon_12429,none +11.4825778,PR:000004747,http://purl.obolibrary.org/obo/PR_000004747,Bcl-2-interacting killer +11.4825778,PR:000005504,http://purl.obolibrary.org/obo/PR_000005504,citron Rho-interacting kinase +11.4825778,PR:000009658,http://purl.obolibrary.org/obo/PR_000009658,laminin subunit gamma-1 +11.4825778,PR:000012617,http://purl.obolibrary.org/obo/PR_000012617,phosphoacetylglucosamine mutase +11.4825778,PR:000012784,http://purl.obolibrary.org/obo/PR_000012784,membrane-associated tyrosine- and threonine-specific cdc2-inhibitory kinase +11.4825778,PR:000013076,http://purl.obolibrary.org/obo/PR_000013076,eukaryotic peptidyl-prolyl cis-trans isomerase B +11.4825778,PR:000014025,http://purl.obolibrary.org/obo/PR_000014025,receptor-interacting serine/threonine-protein kinase 4 +11.4825778,PR:000014945,http://purl.obolibrary.org/obo/PR_000014945,monocarboxylate transporter 10 +11.4825778,PR:000015014,http://purl.obolibrary.org/obo/PR_000015014,mitochondrial thiamine pyrophosphate carrier +11.4825778,PR:000015096,http://purl.obolibrary.org/obo/PR_000015096,GDP-fucose transporter 1 +11.4825778,PR:000016460,http://purl.obolibrary.org/obo/PR_000016460,transmembrane protease serine 6 +11.4825778,PR:000016632,http://purl.obolibrary.org/obo/PR_000016632,three-prime repair exonuclease 1 +11.4825778,PR:000023855,http://purl.obolibrary.org/obo/PR_000023855,none +11.4825778,PR:000023919,http://purl.obolibrary.org/obo/PR_000023919,none +11.4825778,PR:P19158,http://purl.obolibrary.org/obo/PR_P19158,none +11.4825778,PR:P55217,http://purl.obolibrary.org/obo/PR_P55217,none +11.4825778,UBERON:0004657,http://purl.obolibrary.org/obo/UBERON_0004657,mandible condylar process +11.4825778,UBERON:0008346,http://purl.obolibrary.org/obo/UBERON_0008346,duodenal epithelium +11.4825778,UBERON:0018602,http://purl.obolibrary.org/obo/UBERON_0018602,lower lateral incisor tooth +11.4867883,CHEBI:136859,http://purl.obolibrary.org/obo/CHEBI_136859,pro-agent +11.4867883,CHEBI:142355,http://purl.obolibrary.org/obo/CHEBI_142355,purines D-ribonucleoside +11.4867883,CHEBI:50266,http://purl.obolibrary.org/obo/CHEBI_50266,prodrug +11.4867883,DRUGBANK:DB01919,http://purl.obolibrary.org/obo/DRUGBANK_DB01919,none +11.4867883,DRUGBANK:DB02945,http://purl.obolibrary.org/obo/DRUGBANK_DB02945,none +11.4867883,DRUGBANK:DB14025,http://purl.obolibrary.org/obo/DRUGBANK_DB14025,none +11.4867883,DRUGBANK:DB15587,http://purl.obolibrary.org/obo/DRUGBANK_DB15587,none +11.4867883,GO:0000105,http://purl.obolibrary.org/obo/GO_0000105,histidine biosynthetic process +11.4867883,GO:0002753,http://purl.obolibrary.org/obo/GO_0002753,cytoplasmic pattern recognition receptor signaling pathway +11.4867883,GO:0004825,http://purl.obolibrary.org/obo/GO_0004825,methionine-tRNA ligase activity +11.4867883,GO:0036275,http://purl.obolibrary.org/obo/GO_0036275,response to 5-fluorouracil +11.4867883,GO:0043158,http://purl.obolibrary.org/obo/GO_0043158,heterocyst differentiation +11.4867883,GO:0046349,http://purl.obolibrary.org/obo/GO_0046349,amino sugar biosynthetic process +11.4867883,GO:0050626,http://purl.obolibrary.org/obo/GO_0050626,trimethylamine-N-oxide reductase (cytochrome c) activity +11.4867883,GO:0097354,http://purl.obolibrary.org/obo/GO_0097354,prenylation +11.4867883,HP:0002435,http://purl.obolibrary.org/obo/HP_0002435,Meningocele +11.4867883,HP:0010651,http://purl.obolibrary.org/obo/HP_0010651,Abnormal meningeal morphology +11.4867883,MONDO:0002867,http://purl.obolibrary.org/obo/MONDO_0002867,pancreatic cystadenocarcinoma +11.4867883,MONDO:0006470,http://purl.obolibrary.org/obo/MONDO_0006470,tonsillar squamous cell carcinoma +11.4867883,MONDO:0017986,http://purl.obolibrary.org/obo/MONDO_0017986,disorder of plasmalogens biosynthesis +11.4867883,MONDO:0021494,http://purl.obolibrary.org/obo/MONDO_0021494,benign neoplasm of parotid gland +11.4867883,MONDO:0021540,http://purl.obolibrary.org/obo/MONDO_0021540,hamartoma of lung +11.4867883,NCBITaxon:10501,http://purl.obolibrary.org/obo/NCBITaxon_10501,none +11.4867883,NCBITaxon:34989,http://purl.obolibrary.org/obo/NCBITaxon_34989,Colubroidea +11.4867883,PR:000001827,http://purl.obolibrary.org/obo/PR_000001827,NADPH oxidase 5 +11.4867883,PR:000003811,http://purl.obolibrary.org/obo/PR_000003811,protein Ag2 +11.4867883,PR:000007296,http://purl.obolibrary.org/obo/PR_000007296,coagulation factor XII +11.4867883,PR:000008704,http://purl.obolibrary.org/obo/PR_000008704,homeobox protein Hox-B7 +11.4867883,PR:000008720,http://purl.obolibrary.org/obo/PR_000008720,homeobox protein Hox-D13 +11.4867883,PR:000008779,http://purl.obolibrary.org/obo/PR_000008779,17-beta-hydroxysteroid dehydrogenase type 2 +11.4867883,PR:000014709,http://purl.obolibrary.org/obo/PR_000014709,neuroserpin +11.4867883,PR:000016847,http://purl.obolibrary.org/obo/PR_000016847,twist-related protein 2 +11.4867883,PR:Q94FB9,http://purl.obolibrary.org/obo/PR_Q94FB9,none +11.4867883,SO:0001607,http://purl.obolibrary.org/obo/SO_0001607,conservative_amino_acid_substitution +11.4867883,UBERON:0006124,http://purl.obolibrary.org/obo/UBERON_0006124,vertical limb of the diagonal band +11.4867883,UBERON:0011579,http://purl.obolibrary.org/obo/UBERON_0011579,venom gland +11.4910167,CL:1001573,http://purl.obolibrary.org/obo/CL_1001573,nasopharyngeal epithelial cell +11.4910167,DRUGBANK:DB01445,http://purl.obolibrary.org/obo/DRUGBANK_DB01445,none +11.4910167,DRUGBANK:DB11828,http://purl.obolibrary.org/obo/DRUGBANK_DB11828,none +11.4910167,DRUGBANK:DB12176,http://purl.obolibrary.org/obo/DRUGBANK_DB12176,none +11.4910167,DRUGBANK:DB15350,http://purl.obolibrary.org/obo/DRUGBANK_DB15350,none +11.4910167,GO:0003007,http://purl.obolibrary.org/obo/GO_0003007,heart morphogenesis +11.4910167,GO:0006848,http://purl.obolibrary.org/obo/GO_0006848,pyruvate transport +11.4910167,GO:0010167,http://purl.obolibrary.org/obo/GO_0010167,response to nitrate +11.4910167,GO:0032310,http://purl.obolibrary.org/obo/GO_0032310,prostaglandin secretion +11.4910167,GO:0035461,http://purl.obolibrary.org/obo/GO_0035461,vitamin transmembrane transport +11.4910167,GO:0048488,http://purl.obolibrary.org/obo/GO_0048488,synaptic vesicle endocytosis +11.4910167,GO:0050115,http://purl.obolibrary.org/obo/GO_0050115,myosin-light-chain-phosphatase activity +11.4910167,GO:0071632,http://purl.obolibrary.org/obo/GO_0071632,optomotor response +11.4910167,GO:0140238,http://purl.obolibrary.org/obo/GO_0140238,presynaptic endocytosis +11.4910167,GO:1901616,http://purl.obolibrary.org/obo/GO_1901616,organic hydroxy compound catabolic process +11.4910167,HP:0006562,http://purl.obolibrary.org/obo/HP_0006562,Viral hepatitis +11.4910167,HP:0010280,http://purl.obolibrary.org/obo/HP_0010280,Stomatitis +11.4910167,MONDO:0002309,http://purl.obolibrary.org/obo/MONDO_0002309,papillary conjunctivitis +11.4910167,MONDO:0007925,http://purl.obolibrary.org/obo/MONDO_0007925,chromosome 5q deletion syndrome +11.4910167,MONDO:0008863,http://purl.obolibrary.org/obo/MONDO_0008863,sitosterolemia +11.4910167,MONDO:0019593,http://purl.obolibrary.org/obo/MONDO_0019593,"46,XX disorder of sex development induced by fetal androgens excess" +11.4910167,MONDO:0020364,http://purl.obolibrary.org/obo/MONDO_0020364,posterior polymorphous corneal dystrophy +11.4910167,PR:000006453,http://purl.obolibrary.org/obo/PR_000006453,Delta(24)-sterol reductase +11.4910167,PR:000007812,http://purl.obolibrary.org/obo/PR_000007812,UDP-glucose 4-epimerase +11.4910167,PR:000008572,http://purl.obolibrary.org/obo/PR_000008572,inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2 +11.4910167,PR:000008697,http://purl.obolibrary.org/obo/PR_000008697,homeobox protein Hox-B1 +11.4910167,PR:000009033,http://purl.obolibrary.org/obo/PR_000009033,inhibitor of growth protein 1 +11.4910167,PR:000009456,http://purl.obolibrary.org/obo/PR_000009456,"keratin, type I cytoskeletal 16" +11.4910167,PR:000010693,http://purl.obolibrary.org/obo/PR_000010693,NADH-ubiquinone oxidoreductase chain 5 +11.4910167,PR:000015348,http://purl.obolibrary.org/obo/PR_000015348,small nuclear ribonucleoprotein G +11.4910167,PR:000023218,http://purl.obolibrary.org/obo/PR_000023218,none +11.4910167,PR:000029396,http://purl.obolibrary.org/obo/PR_000029396,probable ATP-dependent RNA helicase DDX5 +11.4910167,PR:000029846,http://purl.obolibrary.org/obo/PR_000029846,probable ubiquitin carboxyl-terminal hydrolase FAF-X +11.4910167,PR:000050021,http://purl.obolibrary.org/obo/PR_000050021,CNNM protein +11.495263,CHEBI:27363,http://purl.obolibrary.org/obo/CHEBI_27363,zinc atom +11.495263,DRUGBANK:DB00764,http://purl.obolibrary.org/obo/DRUGBANK_DB00764,none +11.495263,DRUGBANK:DB04022,http://purl.obolibrary.org/obo/DRUGBANK_DB04022,none +11.495263,DRUGBANK:DB04200,http://purl.obolibrary.org/obo/DRUGBANK_DB04200,none +11.495263,DRUGBANK:DB08689,http://purl.obolibrary.org/obo/DRUGBANK_DB08689,none +11.495263,DRUGBANK:DB14569,http://purl.obolibrary.org/obo/DRUGBANK_DB14569,none +11.495263,GO:0007045,http://purl.obolibrary.org/obo/GO_0007045,none +11.495263,GO:0014854,http://purl.obolibrary.org/obo/GO_0014854,response to inactivity +11.495263,GO:0022611,http://purl.obolibrary.org/obo/GO_0022611,dormancy process +11.495263,GO:0048041,http://purl.obolibrary.org/obo/GO_0048041,focal adhesion assembly +11.495263,GO:0061665,http://purl.obolibrary.org/obo/GO_0061665,SUMO ligase activity +11.495263,GO:1901073,http://purl.obolibrary.org/obo/GO_1901073,glucosamine-containing compound biosynthetic process +11.495263,GO:1904653,http://purl.obolibrary.org/obo/GO_1904653,regulation of lung alveolus development +11.495263,MONDO:0000962,http://purl.obolibrary.org/obo/MONDO_0000962,spindle cell lipoma +11.495263,MONDO:0002307,http://purl.obolibrary.org/obo/MONDO_0002307,blepharoconjunctivitis +11.495263,MONDO:0005831,http://purl.obolibrary.org/obo/MONDO_0005831,lymph node tuberculosis +11.495263,MONDO:0016075,http://purl.obolibrary.org/obo/MONDO_0016075,filariasis +11.495263,MONDO:0019037,http://purl.obolibrary.org/obo/MONDO_0019037,progressive supranuclear palsy +11.495263,MONDO:0020743,http://purl.obolibrary.org/obo/MONDO_0020743,mixed phenotype acute leukemia +11.495263,NCBITaxon:10041,http://purl.obolibrary.org/obo/NCBITaxon_10041,none +11.495263,NCBITaxon:12037,http://purl.obolibrary.org/obo/NCBITaxon_12037,none +11.495263,NCBITaxon:2732524,http://purl.obolibrary.org/obo/NCBITaxon_2732524,none +11.495263,NCBITaxon:977775,http://purl.obolibrary.org/obo/NCBITaxon_977775,none +11.495263,PR:000000009,http://purl.obolibrary.org/obo/PR_000000009,anti-Muellerian hormone type-2 receptor +11.495263,PR:000001610,http://purl.obolibrary.org/obo/PR_000001610,melatonin receptor type 1B +11.495263,PR:000002098,http://purl.obolibrary.org/obo/PR_000002098,sodium channel protein type 2 subunit alpha +11.495263,PR:000004034,http://purl.obolibrary.org/obo/PR_000004034,ankyrin-2 +11.495263,PR:000004449,http://purl.obolibrary.org/obo/PR_000004449,calcium-transporting ATPase type 2C member 1 +11.495263,PR:000006679,http://purl.obolibrary.org/obo/PR_000006679,dihydropyrimidinase +11.495263,PR:000008231,http://purl.obolibrary.org/obo/PR_000008231,grainyhead-like protein 3 +11.495263,PR:000009014,http://purl.obolibrary.org/obo/PR_000009014,MICOS complex subunit MIC60 +11.495263,PR:000013677,http://purl.obolibrary.org/obo/PR_000013677,DNA repair protein RAD51 homolog 4 +11.495263,PR:000013707,http://purl.obolibrary.org/obo/PR_000013707,receptor activity-modifying protein 3 +11.495263,PR:000015008,http://purl.obolibrary.org/obo/PR_000015008,calcium-binding mitochondrial carrier protein Aralar2 +11.495263,PR:000015454,http://purl.obolibrary.org/obo/PR_000015454,sperm-associated antigen 11B +11.495263,PR:000015746,http://purl.obolibrary.org/obo/PR_000015746,serine/threonine-protein kinase 3 +11.495263,PR:000016178,http://purl.obolibrary.org/obo/PR_000016178,transcription factor 19 +11.495263,PR:000029244,http://purl.obolibrary.org/obo/PR_000029244,none +11.495263,PR:000035139,http://purl.obolibrary.org/obo/PR_000035139,none +11.495263,PR:Q9SUT2,http://purl.obolibrary.org/obo/PR_Q9SUT2,none +11.495263,SO:0000573,http://purl.obolibrary.org/obo/SO_0000573,rRNA_encoding +11.495263,UBERON:0001294,http://purl.obolibrary.org/obo/UBERON_0001294,inner medulla of kidney +11.4995274,CHEBI:47857,http://purl.obolibrary.org/obo/CHEBI_47857,ureas +11.4995274,DRUGBANK:DB01359,http://purl.obolibrary.org/obo/DRUGBANK_DB01359,none +11.4995274,DRUGBANK:DB04209,http://purl.obolibrary.org/obo/DRUGBANK_DB04209,none +11.4995274,DRUGBANK:DB11238,http://purl.obolibrary.org/obo/DRUGBANK_DB11238,none +11.4995274,DRUGBANK:DB13851,http://purl.obolibrary.org/obo/DRUGBANK_DB13851,none +11.4995274,DRUGBANK:DB14112,http://purl.obolibrary.org/obo/DRUGBANK_DB14112,none +11.4995274,DRUGBANK:DB14623,http://purl.obolibrary.org/obo/DRUGBANK_DB14623,none +11.4995274,GO:0000782,http://purl.obolibrary.org/obo/GO_0000782,telomere cap complex +11.4995274,GO:0004062,http://purl.obolibrary.org/obo/GO_0004062,aryl sulfotransferase activity +11.4995274,GO:0006446,http://purl.obolibrary.org/obo/GO_0006446,regulation of translational initiation +11.4995274,GO:0031110,http://purl.obolibrary.org/obo/GO_0031110,regulation of microtubule polymerization or depolymerization +11.4995274,GO:0032059,http://purl.obolibrary.org/obo/GO_0032059,bleb +11.4995274,GO:0035886,http://purl.obolibrary.org/obo/GO_0035886,vascular associated smooth muscle cell differentiation +11.4995274,GO:0050670,http://purl.obolibrary.org/obo/GO_0050670,regulation of lymphocyte proliferation +11.4995274,GO:0070929,http://purl.obolibrary.org/obo/GO_0070929,trans-translation +11.4995274,GO:1900376,http://purl.obolibrary.org/obo/GO_1900376,regulation of secondary metabolite biosynthetic process +11.4995274,MONDO:0002894,http://purl.obolibrary.org/obo/MONDO_0002894,spinal chordoma +11.4995274,MONDO:0005736,http://purl.obolibrary.org/obo/MONDO_0005736,eastern equine encephalitis +11.4995274,MONDO:0006692,http://purl.obolibrary.org/obo/MONDO_0006692,central pontine myelinolysis +11.4995274,MONDO:0019758,http://purl.obolibrary.org/obo/MONDO_0019758,midline interhemispheric variant of holoprosencephaly +11.4995274,MONDO:0020053,http://purl.obolibrary.org/obo/MONDO_0020053,total autosomal monosomy +11.4995274,MONDO:0020334,http://purl.obolibrary.org/obo/MONDO_0020334,mast cell leukemia +11.4995274,NCBITaxon:1911600,http://purl.obolibrary.org/obo/NCBITaxon_1911600,none +11.4995274,PR:000003650,http://purl.obolibrary.org/obo/PR_000003650,prostatic acid phosphatase +11.4995274,PR:000005518,http://purl.obolibrary.org/obo/PR_000005518,cyclin-dependent kinases regulatory subunit 1 +11.4995274,PR:000006903,http://purl.obolibrary.org/obo/PR_000006903,elongation factor 1-alpha 1 +11.4995274,PR:000009612,http://purl.obolibrary.org/obo/PR_000009612,none +11.4995274,PR:000011058,http://purl.obolibrary.org/obo/PR_000011058,norrin +11.4995274,PR:000012827,http://purl.obolibrary.org/obo/PR_000012827,"phospholipase B1, membrane-associated" +11.4995274,PR:000015453,http://purl.obolibrary.org/obo/PR_000015453,sperm-associated antigen 11A +11.4995274,PR:000023152,http://purl.obolibrary.org/obo/PR_000023152,none +11.4995274,PR:000027728,http://purl.obolibrary.org/obo/PR_000027728,none +11.4995274,PR:000035247,http://purl.obolibrary.org/obo/PR_000035247,none +11.4995274,PR:O04291,http://purl.obolibrary.org/obo/PR_O04291,none +11.4995274,PR:O04663,http://purl.obolibrary.org/obo/PR_O04663,none +11.4995274,PR:P38724,http://purl.obolibrary.org/obo/PR_P38724,none +11.4995274,PR:P40961,http://purl.obolibrary.org/obo/PR_P40961,none +11.4995274,PR:P53411,http://purl.obolibrary.org/obo/PR_P53411,none +11.4995274,PR:Q24152,http://purl.obolibrary.org/obo/PR_Q24152,none +11.4995274,PR:Q7T2E0,http://purl.obolibrary.org/obo/PR_Q7T2E0,none +11.4995274,PR:Q90472,http://purl.obolibrary.org/obo/PR_Q90472,none +11.4995274,PR:Q9SZJ5,http://purl.obolibrary.org/obo/PR_Q9SZJ5,none +11.4995274,UBERON:0003946,http://purl.obolibrary.org/obo/UBERON_0003946,placenta labyrinth +11.4995274,UBERON:0006650,http://purl.obolibrary.org/obo/UBERON_0006650,tunica vaginalis testis +11.4995274,UBERON:0014377,http://purl.obolibrary.org/obo/UBERON_0014377,hypothenar muscle +11.50381,CHEBI:26151,http://purl.obolibrary.org/obo/CHEBI_26151,piperidines +11.50381,CHEBI:35497,http://purl.obolibrary.org/obo/CHEBI_35497,androgen antagonist +11.50381,CHEBI:70998,http://purl.obolibrary.org/obo/CHEBI_70998,G-protein-coupled receptor agonist +11.50381,DRUGBANK:DB00022,http://purl.obolibrary.org/obo/DRUGBANK_DB00022,none +11.50381,DRUGBANK:DB00059,http://purl.obolibrary.org/obo/DRUGBANK_DB00059,none +11.50381,DRUGBANK:DB00216,http://purl.obolibrary.org/obo/DRUGBANK_DB00216,none +11.50381,DRUGBANK:DB00930,http://purl.obolibrary.org/obo/DRUGBANK_DB00930,none +11.50381,DRUGBANK:DB02717,http://purl.obolibrary.org/obo/DRUGBANK_DB02717,none +11.50381,DRUGBANK:DB03101,http://purl.obolibrary.org/obo/DRUGBANK_DB03101,none +11.50381,DRUGBANK:DB08597,http://purl.obolibrary.org/obo/DRUGBANK_DB08597,none +11.50381,DRUGBANK:DB09512,http://purl.obolibrary.org/obo/DRUGBANK_DB09512,none +11.50381,DRUGBANK:DB11376,http://purl.obolibrary.org/obo/DRUGBANK_DB11376,none +11.50381,DRUGBANK:DB12163,http://purl.obolibrary.org/obo/DRUGBANK_DB12163,none +11.50381,DRUGBANK:DB14083,http://purl.obolibrary.org/obo/DRUGBANK_DB14083,none +11.50381,DRUGBANK:DB14678,http://purl.obolibrary.org/obo/DRUGBANK_DB14678,none +11.50381,GO:0000266,http://purl.obolibrary.org/obo/GO_0000266,mitochondrial fission +11.50381,GO:0002819,http://purl.obolibrary.org/obo/GO_0002819,regulation of adaptive immune response +11.50381,GO:0012505,http://purl.obolibrary.org/obo/GO_0012505,endomembrane system +11.50381,GO:0030814,http://purl.obolibrary.org/obo/GO_0030814,none +11.50381,GO:0032944,http://purl.obolibrary.org/obo/GO_0032944,regulation of mononuclear cell proliferation +11.50381,GO:0097338,http://purl.obolibrary.org/obo/GO_0097338,response to clozapine +11.50381,HP:0000790,http://purl.obolibrary.org/obo/HP_0000790,Hematuria +11.50381,HP:0012614,http://purl.obolibrary.org/obo/HP_0012614,Abnormal urine cytology +11.50381,MONDO:0001818,http://purl.obolibrary.org/obo/MONDO_0001818,facial neuralgia +11.50381,MONDO:0008830,http://purl.obolibrary.org/obo/MONDO_0008830,aspartylglucosaminuria +11.50381,MONDO:0016436,http://purl.obolibrary.org/obo/MONDO_0016436,acquired dermis elastic tissue disorder with increased elastic tissue +11.50381,NCBITaxon:7422,http://purl.obolibrary.org/obo/NCBITaxon_7422,none +11.50381,PR:000001176,http://purl.obolibrary.org/obo/PR_000001176,D(1B) dopamine receptor +11.50381,PR:000001978,http://purl.obolibrary.org/obo/PR_000001978,ATP-sensitive inward rectifier potassium channel 1 +11.50381,PR:000003887,http://purl.obolibrary.org/obo/PR_000003887,A-kinase anchor protein 13 +11.50381,PR:000004012,http://purl.obolibrary.org/obo/PR_000004012,anaphase-promoting complex subunit 1 +11.50381,PR:000005469,http://purl.obolibrary.org/obo/PR_000005469,carbohydrate sulfotransferase 1 +11.50381,PR:000009809,http://purl.obolibrary.org/obo/PR_000009809,leukocyte immunoglobulin-like receptor subfamily B member 2 +11.50381,PR:000010978,http://purl.obolibrary.org/obo/PR_000010978,nucleosome assembly protein 1-like 4 +11.50381,PR:000011254,http://purl.obolibrary.org/obo/PR_000011254,neuroligin-1 +11.50381,PR:000011427,http://purl.obolibrary.org/obo/PR_000011427,nuclear receptor-interacting protein 1 +11.50381,PR:000012634,http://purl.obolibrary.org/obo/PR_000012634,polyhomeotic-like protein 2 +11.50381,PR:000014684,http://purl.obolibrary.org/obo/PR_000014684,kallistatin +11.50381,PR:000015784,http://purl.obolibrary.org/obo/PR_000015784,E3 ubiquitin-protein ligase CHIP +11.50381,PR:000017665,http://purl.obolibrary.org/obo/PR_000017665,zinc finger protein ZIC 1 +11.50381,PR:P22954,http://purl.obolibrary.org/obo/PR_P22954,none +11.50381,PR:Q06588,http://purl.obolibrary.org/obo/PR_Q06588,none +11.50381,PR:Q42371,http://purl.obolibrary.org/obo/PR_Q42371,none +11.50381,PR:Q8JG54,http://purl.obolibrary.org/obo/PR_Q8JG54,none +11.50381,PR:Q8RWZ1,http://purl.obolibrary.org/obo/PR_Q8RWZ1,none +11.5081111,CHEBI:78649,http://purl.obolibrary.org/obo/CHEBI_78649,edelfosine +11.5081111,DRUGBANK:DB03068,http://purl.obolibrary.org/obo/DRUGBANK_DB03068,none +11.5081111,DRUGBANK:DB11575,http://purl.obolibrary.org/obo/DRUGBANK_DB11575,none +11.5081111,GO:0008111,http://purl.obolibrary.org/obo/GO_0008111,alpha-methylacyl-CoA racemase activity +11.5081111,GO:0009902,http://purl.obolibrary.org/obo/GO_0009902,chloroplast relocation +11.5081111,GO:0015688,http://purl.obolibrary.org/obo/GO_0015688,none +11.5081111,GO:0030273,http://purl.obolibrary.org/obo/GO_0030273,melanin-concentrating hormone receptor activity +11.5081111,GO:0032365,http://purl.obolibrary.org/obo/GO_0032365,intracellular lipid transport +11.5081111,MONDO:0004727,http://purl.obolibrary.org/obo/MONDO_0004727,vestibule of mouth cancer +11.5081111,MONDO:0005976,http://purl.obolibrary.org/obo/MONDO_0005976,syphilis +11.5081111,MONDO:0006166,http://purl.obolibrary.org/obo/MONDO_0006166,columnar cell hyperplasia of the breast +11.5081111,MONDO:0006189,http://purl.obolibrary.org/obo/MONDO_0006189,eccrine porocarcinoma +11.5081111,MONDO:0015178,http://purl.obolibrary.org/obo/MONDO_0015178,congenital intestinal transport defect +11.5081111,MONDO:0015342,http://purl.obolibrary.org/obo/MONDO_0015342,acute transverse myelitis +11.5081111,MONDO:0019688,http://purl.obolibrary.org/obo/MONDO_0019688,sulfation-related bone disorder +11.5081111,NCBITaxon:272201,http://purl.obolibrary.org/obo/NCBITaxon_272201,none +11.5081111,PR:000000102,http://purl.obolibrary.org/obo/PR_000000102,lefty protein +11.5081111,PR:000001390,http://purl.obolibrary.org/obo/PR_000001390,interleukin-34 +11.5081111,PR:000001461,http://purl.obolibrary.org/obo/PR_000001461,glycophorin-B +11.5081111,PR:000001801,http://purl.obolibrary.org/obo/PR_000001801,C-C motif chemokine 25 +11.5081111,PR:000004446,http://purl.obolibrary.org/obo/PR_000004446,plasma membrane calcium-transporting ATPase 2 +11.5081111,PR:000005564,http://purl.obolibrary.org/obo/PR_000005564,C-type lectin domain family 1 member B +11.5081111,PR:000005639,http://purl.obolibrary.org/obo/PR_000005639,connector enhancer of kinase suppressor of ras 3 +11.5081111,PR:000005837,http://purl.obolibrary.org/obo/PR_000005837,"carnitine O-palmitoyltransferase 1, brain isoform" +11.5081111,PR:000006942,http://purl.obolibrary.org/obo/PR_000006942,EH domain-containing protein 1 +11.5081111,PR:000009062,http://purl.obolibrary.org/obo/PR_000009062,insulinoma-associated protein 1 +11.5081111,PR:000009862,http://purl.obolibrary.org/obo/PR_000009862,rhombotin-1 +11.5081111,PR:000013522,http://purl.obolibrary.org/obo/PR_000013522,"glycogen phosphorylase, muscle form" +11.5081111,PR:000013741,http://purl.obolibrary.org/obo/PR_000013741,phospholipase A and acyltransferase 4 +11.5081111,PR:000029550,http://purl.obolibrary.org/obo/PR_000029550,interferon-induced protein with tetratricopeptide repeats 1 +11.5081111,PR:Q9LVF0,http://purl.obolibrary.org/obo/PR_Q9LVF0,none +11.5081111,UBERON:0015474,http://purl.obolibrary.org/obo/UBERON_0015474,axilla skin +11.5124308,CL:0008014,http://purl.obolibrary.org/obo/CL_0008014,none +11.5124308,DRUGBANK:DB07918,http://purl.obolibrary.org/obo/DRUGBANK_DB07918,none +11.5124308,GO:0000101,http://purl.obolibrary.org/obo/GO_0000101,sulfur amino acid transport +11.5124308,HP:0002315,http://purl.obolibrary.org/obo/HP_0002315,Headache +11.5124308,MONDO:0001708,http://purl.obolibrary.org/obo/MONDO_0001708,pulmonary sarcoidosis +11.5124308,MONDO:0005568,http://purl.obolibrary.org/obo/MONDO_0005568,cholesterol embolism +11.5124308,MONDO:0016625,http://purl.obolibrary.org/obo/MONDO_0016625,acquired deficiency anemia +11.5124308,MONDO:0018895,http://purl.obolibrary.org/obo/MONDO_0018895,Plummer-Vinson syndrome +11.5124308,PR:000003663,http://purl.obolibrary.org/obo/PR_000003663,long-chain-fatty-acid--CoA ligase 6 +11.5124308,PR:000007135,http://purl.obolibrary.org/obo/PR_000007135,epoxide hydrolase 2 +11.5124308,PR:000007628,http://purl.obolibrary.org/obo/PR_000007628,forkhead box protein J1 +11.5124308,PR:000012695,http://purl.obolibrary.org/obo/PR_000012695,phosphatidylinositol-glycan biosynthesis class F protein +11.5124308,PR:000012938,http://purl.obolibrary.org/obo/PR_000012938,pinin +11.5124308,PR:000013685,http://purl.obolibrary.org/obo/PR_000013685,mRNA export factor +11.5124308,PR:000013698,http://purl.obolibrary.org/obo/PR_000013698,Ral guanine nucleotide dissociation stimulator +11.5124308,PR:000017465,http://purl.obolibrary.org/obo/PR_000017465,NEDD4-like E3 ubiquitin-protein ligase WWP2 +11.5124308,PR:000028468,http://purl.obolibrary.org/obo/PR_000028468,none +11.5124308,PR:000032676,http://purl.obolibrary.org/obo/PR_000032676,disintegrin and metalloproteinase domain-containing protein 33 +11.5124308,PR:000037420,http://purl.obolibrary.org/obo/PR_000037420,none +11.5124308,PR:P31166,http://purl.obolibrary.org/obo/PR_P31166,none +11.5124308,UBERON:0001241,http://purl.obolibrary.org/obo/UBERON_0001241,crypt of Lieberkuhn of small intestine +11.5124308,UBERON:0001418,http://purl.obolibrary.org/obo/UBERON_0001418,skin of thorax +11.5124308,UBERON:0002389,http://purl.obolibrary.org/obo/UBERON_0002389,manual digit +11.5124308,UBERON:0005462,http://purl.obolibrary.org/obo/UBERON_0005462,lower back +11.5124308,UBERON:0006669,http://purl.obolibrary.org/obo/UBERON_0006669,alveolar canal +11.5124308,UBERON:0007641,http://purl.obolibrary.org/obo/UBERON_0007641,trigeminal nuclear complex +11.5124308,UBERON:0009970,http://purl.obolibrary.org/obo/UBERON_0009970,epithelium of pancreatic duct +11.5124308,UBERON:0013697,http://purl.obolibrary.org/obo/UBERON_0013697,exocrine pancreas epithelium +11.5167692,CHEBI:26195,http://purl.obolibrary.org/obo/CHEBI_26195,polyphenol +11.5167692,CL:0000795,http://purl.obolibrary.org/obo/CL_0000795,"CD8-positive, alpha-beta regulatory T cell" +11.5167692,DRUGBANK:DB01556,http://purl.obolibrary.org/obo/DRUGBANK_DB01556,none +11.5167692,DRUGBANK:DB05541,http://purl.obolibrary.org/obo/DRUGBANK_DB05541,none +11.5167692,DRUGBANK:DB09011,http://purl.obolibrary.org/obo/DRUGBANK_DB09011,none +11.5167692,DRUGBANK:DB09056,http://purl.obolibrary.org/obo/DRUGBANK_DB09056,none +11.5167692,DRUGBANK:DB13872,http://purl.obolibrary.org/obo/DRUGBANK_DB13872,none +11.5167692,DRUGBANK:DB15746,http://purl.obolibrary.org/obo/DRUGBANK_DB15746,none +11.5167692,GO:0004590,http://purl.obolibrary.org/obo/GO_0004590,orotidine-5'-phosphate decarboxylase activity +11.5167692,GO:0004997,http://purl.obolibrary.org/obo/GO_0004997,thyrotropin-releasing hormone receptor activity +11.5167692,GO:0019577,http://purl.obolibrary.org/obo/GO_0019577,aldaric acid metabolic process +11.5167692,GO:0035383,http://purl.obolibrary.org/obo/GO_0035383,thioester metabolic process +11.5167692,GO:0045302,http://purl.obolibrary.org/obo/GO_0045302,choloylglycine hydrolase activity +11.5167692,GO:1990089,http://purl.obolibrary.org/obo/GO_1990089,response to nerve growth factor +11.5167692,MONDO:0002729,http://purl.obolibrary.org/obo/MONDO_0002729,rhabdoid tumor of the kidney +11.5167692,MONDO:0006802,http://purl.obolibrary.org/obo/MONDO_0006802,inappropriate ADH syndrome +11.5167692,MONDO:0008975,http://purl.obolibrary.org/obo/MONDO_0008975,otospondylomegaepiphyseal dysplasia +11.5167692,MONDO:0009175,http://purl.obolibrary.org/obo/MONDO_0009175,eosinophilic fasciitis +11.5167692,MONDO:0011676,http://purl.obolibrary.org/obo/MONDO_0011676,PHACE syndrome +11.5167692,MONDO:0019613,http://purl.obolibrary.org/obo/MONDO_0019613,non-functioning pituitary adenoma +11.5167692,MONDO:0045072,http://purl.obolibrary.org/obo/MONDO_0045072,ectopic hormone secretion syndrome associated with neoplasia +11.5167692,NCBITaxon:376911,http://purl.obolibrary.org/obo/NCBITaxon_376911,none +11.5167692,PR:000001588,http://purl.obolibrary.org/obo/PR_000001588,gonadotropin-releasing hormone I receptor +11.5167692,PR:000005959,http://purl.obolibrary.org/obo/PR_000005959,cysteine and glycine-rich protein 2 +11.5167692,PR:000007170,http://purl.obolibrary.org/obo/PR_000007170,DNA excision repair protein ERCC-8 +11.5167692,PR:000007601,http://purl.obolibrary.org/obo/PR_000007601,RNA binding protein fox-1 homolog 1 +11.5167692,PR:000007621,http://purl.obolibrary.org/obo/PR_000007621,forkhead box protein F1 +11.5167692,PR:000009165,http://purl.obolibrary.org/obo/PR_000009165,intersectin-2 +11.5167692,PR:000011461,http://purl.obolibrary.org/obo/PR_000011461,endonuclease III-like protein 1 +11.5167692,PR:000013780,http://purl.obolibrary.org/obo/PR_000013780,DNA endonuclease RBBP8 +11.5167692,PR:000015444,http://purl.obolibrary.org/obo/PR_000015444,transcription factor Sp6 +11.5167692,PR:000015644,http://purl.obolibrary.org/obo/PR_000015644,protein SSXT +11.5167692,PR:000022849,http://purl.obolibrary.org/obo/PR_000022849,none +11.5167692,PR:O49500,http://purl.obolibrary.org/obo/PR_O49500,none +11.5167692,PR:O80905,http://purl.obolibrary.org/obo/PR_O80905,none +11.5167692,PR:P35187,http://purl.obolibrary.org/obo/PR_P35187,none +11.5167692,PR:Q03338,http://purl.obolibrary.org/obo/PR_Q03338,none +11.5167692,PR:Q7YZT6,http://purl.obolibrary.org/obo/PR_Q7YZT6,none +11.5167692,PR:Q8RXG3,http://purl.obolibrary.org/obo/PR_Q8RXG3,none +11.5167692,UBERON:0002334,http://purl.obolibrary.org/obo/UBERON_0002334,submandibular duct +11.5167692,UBERON:0004013,http://purl.obolibrary.org/obo/UBERON_0004013,egg cylinder +11.5167692,UBERON:0007194,http://purl.obolibrary.org/obo/UBERON_0007194,vesicular gland +11.5167692,UBERON:0014690,http://purl.obolibrary.org/obo/UBERON_0014690,left gastric vein +11.5211265,DRUGBANK:DB05794,http://purl.obolibrary.org/obo/DRUGBANK_DB05794,none +11.5211265,DRUGBANK:DB09163,http://purl.obolibrary.org/obo/DRUGBANK_DB09163,none +11.5211265,DRUGBANK:DB11643,http://purl.obolibrary.org/obo/DRUGBANK_DB11643,none +11.5211265,DRUGBANK:DB12969,http://purl.obolibrary.org/obo/DRUGBANK_DB12969,none +11.5211265,DRUGBANK:DB14084,http://purl.obolibrary.org/obo/DRUGBANK_DB14084,none +11.5211265,GO:0004468,http://purl.obolibrary.org/obo/GO_0004468,"lysine N-acetyltransferase activity, acting on acetyl phosphate as donor" +11.5211265,GO:0015937,http://purl.obolibrary.org/obo/GO_0015937,coenzyme A biosynthetic process +11.5211265,GO:0031128,http://purl.obolibrary.org/obo/GO_0031128,developmental induction +11.5211265,GO:0036135,http://purl.obolibrary.org/obo/GO_0036135,Schwann cell migration +11.5211265,GO:0045095,http://purl.obolibrary.org/obo/GO_0045095,keratin filament +11.5211265,GO:0045182,http://purl.obolibrary.org/obo/GO_0045182,translation regulator activity +11.5211265,GO:0071767,http://purl.obolibrary.org/obo/GO_0071767,mycolic acid metabolic process +11.5211265,GO:1990099,http://purl.obolibrary.org/obo/GO_1990099,pre-primosome complex +11.5211265,MONDO:0004116,http://purl.obolibrary.org/obo/MONDO_0004116,esophageal small cell neuroendocrine carcinoma +11.5211265,MONDO:0004145,http://purl.obolibrary.org/obo/MONDO_0004145,meningothelial meningioma +11.5211265,MONDO:0005887,http://purl.obolibrary.org/obo/MONDO_0005887,oral tuberculosis +11.5211265,MONDO:0016871,http://purl.obolibrary.org/obo/MONDO_0016871,partial deletion of chromosome 6 +11.5211265,MONDO:0019548,http://purl.obolibrary.org/obo/MONDO_0019548,autosomal dominant intermediate Charcot-Marie-Tooth disease +11.5211265,NCBITaxon:30615,http://purl.obolibrary.org/obo/NCBITaxon_30615,none +11.5211265,NCBITaxon:376915,http://purl.obolibrary.org/obo/NCBITaxon_376915,Lemuriformes +11.5211265,PR:000004823,http://purl.obolibrary.org/obo/PR_000004823,serine/threonine-protein kinase BRSK1 +11.5211265,PR:000008691,http://purl.obolibrary.org/obo/PR_000008691,homeobox protein Hox-A3 +11.5211265,PR:000012457,http://purl.obolibrary.org/obo/PR_000012457,programmed cell death protein 6 +11.5211265,PR:000013194,http://purl.obolibrary.org/obo/PR_000013194,peroxiredoxin-4 +11.5211265,PR:000015257,http://purl.obolibrary.org/obo/PR_000015257,small acidic protein +11.5211265,PR:000015607,http://purl.obolibrary.org/obo/PR_000015607,3-oxo-5-alpha-steroid 4-dehydrogenase 1 +11.5211265,PR:000016381,http://purl.obolibrary.org/obo/PR_000016381,talin-1 +11.5211265,PR:000017666,http://purl.obolibrary.org/obo/PR_000017666,zinc finger protein ZIC 2 +11.5211265,PR:000025853,http://purl.obolibrary.org/obo/PR_000025853,primate-type serum amyloid A-2 protein +11.5211265,PR:000029069,http://purl.obolibrary.org/obo/PR_000029069,none +11.5211265,PR:000034986,http://purl.obolibrary.org/obo/PR_000034986,none +11.5211265,PR:P06002,http://purl.obolibrary.org/obo/PR_P06002,none +11.5211265,PR:P17512,http://purl.obolibrary.org/obo/PR_P17512,none +11.5211265,UBERON:0001206,http://purl.obolibrary.org/obo/UBERON_0001206,serosa of small intestine +11.5211265,UBERON:0002212,http://purl.obolibrary.org/obo/UBERON_0002212,macula of saccule of membranous labyrinth +11.5211265,UBERON:0005356,http://purl.obolibrary.org/obo/UBERON_0005356,Rathke's pouch +11.5211265,UBERON:0008853,http://purl.obolibrary.org/obo/UBERON_0008853,parietal yolk sac +11.5255028,DRUGBANK:DB01602,http://purl.obolibrary.org/obo/DRUGBANK_DB01602,none +11.5255028,DRUGBANK:DB09118,http://purl.obolibrary.org/obo/DRUGBANK_DB09118,none +11.5255028,DRUGBANK:DB11613,http://purl.obolibrary.org/obo/DRUGBANK_DB11613,none +11.5255028,DRUGBANK:DB11630,http://purl.obolibrary.org/obo/DRUGBANK_DB11630,none +11.5255028,DRUGBANK:DB12596,http://purl.obolibrary.org/obo/DRUGBANK_DB12596,none +11.5255028,DRUGBANK:DB13089,http://purl.obolibrary.org/obo/DRUGBANK_DB13089,none +11.5255028,DRUGBANK:DB13318,http://purl.obolibrary.org/obo/DRUGBANK_DB13318,none +11.5255028,DRUGBANK:DB13583,http://purl.obolibrary.org/obo/DRUGBANK_DB13583,none +11.5255028,DRUGBANK:DB15926,http://purl.obolibrary.org/obo/DRUGBANK_DB15926,none +11.5255028,GO:0006110,http://purl.obolibrary.org/obo/GO_0006110,regulation of glycolytic process +11.5255028,GO:0010369,http://purl.obolibrary.org/obo/GO_0010369,chromocenter +11.5255028,GO:0046656,http://purl.obolibrary.org/obo/GO_0046656,folic acid biosynthetic process +11.5255028,MONDO:0004942,http://purl.obolibrary.org/obo/MONDO_0004942,orbit lymphoma +11.5255028,MONDO:0009281,http://purl.obolibrary.org/obo/MONDO_0009281,glutaryl-CoA dehydrogenase deficiency +11.5255028,MONDO:0009595,http://purl.obolibrary.org/obo/MONDO_0009595,cartilage-hair hypoplasia +11.5255028,MONDO:0016027,http://purl.obolibrary.org/obo/MONDO_0016027,benign neonatal seizures +11.5255028,MONDO:0017269,http://purl.obolibrary.org/obo/MONDO_0017269,X-linked ichthyosis syndrome +11.5255028,MONDO:0019891,http://purl.obolibrary.org/obo/MONDO_0019891,monosomy 22 +11.5255028,NCBITaxon:12303,http://purl.obolibrary.org/obo/NCBITaxon_12303,none +11.5255028,PR:000007692,http://purl.obolibrary.org/obo/PR_000007692,ferritin light chain +11.5255028,PR:000010826,http://purl.obolibrary.org/obo/PR_000010826,myosin-2 +11.5255028,PR:000013758,http://purl.obolibrary.org/obo/PR_000013758,RAS guanyl-releasing protein 1 +11.5255028,PR:000014942,http://purl.obolibrary.org/obo/PR_000014942,solute carrier family 15 member 3 +11.5255028,PR:000023992,http://purl.obolibrary.org/obo/PR_000023992,none +11.5255028,PR:000030541,http://purl.obolibrary.org/obo/PR_000030541,NADH-ubiquinone oxidoreductase chain 4 +11.5255028,PR:Q03146,http://purl.obolibrary.org/obo/PR_Q03146,none +11.5255028,PR:Q63199,http://purl.obolibrary.org/obo/PR_Q63199,none +11.5255028,PR:Q84L30,http://purl.obolibrary.org/obo/PR_Q84L30,none +11.5255028,PR:Q90964,http://purl.obolibrary.org/obo/PR_Q90964,none +11.5255028,PR:Q9LYS2,http://purl.obolibrary.org/obo/PR_Q9LYS2,none +11.5255028,PR:Q9LZJ5,http://purl.obolibrary.org/obo/PR_Q9LZJ5,none +11.5255028,UBERON:0011971,http://purl.obolibrary.org/obo/UBERON_0011971,calcaneofibular ligament +11.5298985,DRUGBANK:DB02806,http://purl.obolibrary.org/obo/DRUGBANK_DB02806,none +11.5298985,DRUGBANK:DB03989,http://purl.obolibrary.org/obo/DRUGBANK_DB03989,none +11.5298985,DRUGBANK:DB15136,http://purl.obolibrary.org/obo/DRUGBANK_DB15136,none +11.5298985,GO:0042724,http://purl.obolibrary.org/obo/GO_0042724,thiamine-containing compound biosynthetic process +11.5298985,HP:0000846,http://purl.obolibrary.org/obo/HP_0000846,Adrenal insufficiency +11.5298985,MONDO:0002463,http://purl.obolibrary.org/obo/MONDO_0002463,lacrimal gland carcinoma +11.5298985,MONDO:0005830,http://purl.obolibrary.org/obo/MONDO_0005830,lumpy skin disease +11.5298985,MONDO:0006258,http://purl.obolibrary.org/obo/MONDO_0006258,juvenile polyp +11.5298985,MONDO:0008177,http://purl.obolibrary.org/obo/MONDO_0008177,extramammary Paget disease +11.5298985,MONDO:0013025,http://purl.obolibrary.org/obo/MONDO_0013025,chromosome 6q24-q25 deletion syndrome +11.5298985,MONDO:0016905,http://purl.obolibrary.org/obo/MONDO_0016905,partial deletion of the long arm of chromosome 6 +11.5298985,MONDO:0017598,http://purl.obolibrary.org/obo/MONDO_0017598,primary cutaneous anaplastic large cell lymphoma +11.5298985,NCBITaxon:216140,http://purl.obolibrary.org/obo/NCBITaxon_216140,none +11.5298985,NCBITaxon:326408,http://purl.obolibrary.org/obo/NCBITaxon_326408,none +11.5298985,NCBITaxon:952,http://purl.obolibrary.org/obo/NCBITaxon_952,none +11.5298985,NCBITaxon:953,http://purl.obolibrary.org/obo/NCBITaxon_953,none +11.5298985,PR:000001561,http://purl.obolibrary.org/obo/PR_000001561,urotensin-2 receptor +11.5298985,PR:000001654,http://purl.obolibrary.org/obo/PR_000001654,prokineticin receptor 2 +11.5298985,PR:000001960,http://purl.obolibrary.org/obo/PR_000001960,tumor necrosis factor receptor superfamily member 4 +11.5298985,PR:000006779,http://purl.obolibrary.org/obo/PR_000006779,dynein light chain Tctex-type 1 +11.5298985,PR:000008303,http://purl.obolibrary.org/obo/PR_000008303,glutathione S-transferase omega-1 +11.5298985,PR:000009940,http://purl.obolibrary.org/obo/PR_000009940,leucine-rich repeat-containing protein 7 +11.5298985,PR:000010058,http://purl.obolibrary.org/obo/PR_000010058,melanoma-associated antigen 3 +11.5298985,PR:000010112,http://purl.obolibrary.org/obo/PR_000010112,"glycoprotein endo-alpha-1,2-mannosidase" +11.5298985,PR:000011122,http://purl.obolibrary.org/obo/PR_000011122,endonuclease 8-like 1 +11.5298985,PR:000012667,http://purl.obolibrary.org/obo/PR_000012667,PH domain leucine-rich repeat-containing protein phosphatase +11.5298985,PR:000012882,http://purl.obolibrary.org/obo/PR_000012882,plastin-1 +11.5298985,PR:000014392,http://purl.obolibrary.org/obo/PR_000014392,none +11.5298985,PR:000014747,http://purl.obolibrary.org/obo/PR_000014747,secreted frizzled-related protein 5 +11.5298985,PR:000015178,http://purl.obolibrary.org/obo/PR_000015178,sodium- and chloride-dependent betaine transporter +11.5298985,PR:000015725,http://purl.obolibrary.org/obo/PR_000015725,statherin +11.5298985,PR:000022316,http://purl.obolibrary.org/obo/PR_000022316,none +11.5298985,PR:000022515,http://purl.obolibrary.org/obo/PR_000022515,none +11.5298985,PR:O81772,http://purl.obolibrary.org/obo/PR_O81772,none +11.5298985,PR:Q54LV1,http://purl.obolibrary.org/obo/PR_Q54LV1,none +11.5298985,PR:Q84L31,http://purl.obolibrary.org/obo/PR_Q84L31,none +11.5298985,PR:Q84L32,http://purl.obolibrary.org/obo/PR_Q84L32,none +11.5298985,PR:Q84L33,http://purl.obolibrary.org/obo/PR_Q84L33,none +11.5298985,PR:Q8T390,http://purl.obolibrary.org/obo/PR_Q8T390,none +11.5298985,SO:0001491,http://purl.obolibrary.org/obo/SO_0001491,finished_genome +11.5298985,SO:0001499,http://purl.obolibrary.org/obo/SO_0001499,whole_genome_sequence_status +11.5298985,UBERON:0001731,http://purl.obolibrary.org/obo/UBERON_0001731,cavity of pharynx +11.5298985,UBERON:0001995,http://purl.obolibrary.org/obo/UBERON_0001995,fibrocartilage +11.5298985,UBERON:0002600,http://purl.obolibrary.org/obo/UBERON_0002600,limbic lobe +11.5343135,DRUGBANK:DB01277,http://purl.obolibrary.org/obo/DRUGBANK_DB01277,none +11.5343135,DRUGBANK:DB06199,http://purl.obolibrary.org/obo/DRUGBANK_DB06199,none +11.5343135,DRUGBANK:DB06328,http://purl.obolibrary.org/obo/DRUGBANK_DB06328,none +11.5343135,DRUGBANK:DB08374,http://purl.obolibrary.org/obo/DRUGBANK_DB08374,none +11.5343135,DRUGBANK:DB14491,http://purl.obolibrary.org/obo/DRUGBANK_DB14491,none +11.5343135,DRUGBANK:DB14836,http://purl.obolibrary.org/obo/DRUGBANK_DB14836,none +11.5343135,GO:0006637,http://purl.obolibrary.org/obo/GO_0006637,acyl-CoA metabolic process +11.5343135,GO:0008440,http://purl.obolibrary.org/obo/GO_0008440,"inositol-1,4,5-trisphosphate 3-kinase activity" +11.5343135,GO:0015793,http://purl.obolibrary.org/obo/GO_0015793,glycerol transport +11.5343135,GO:0015909,http://purl.obolibrary.org/obo/GO_0015909,long-chain fatty acid transport +11.5343135,GO:0016442,http://purl.obolibrary.org/obo/GO_0016442,RISC complex +11.5343135,GO:0016805,http://purl.obolibrary.org/obo/GO_0016805,dipeptidase activity +11.5343135,GO:0018662,http://purl.obolibrary.org/obo/GO_0018662,phenol 2-monooxygenase activity +11.5343135,GO:0072657,http://purl.obolibrary.org/obo/GO_0072657,protein localization to membrane +11.5343135,GO:1990868,http://purl.obolibrary.org/obo/GO_1990868,response to chemokine +11.5343135,MONDO:0007414,http://purl.obolibrary.org/obo/MONDO_0007414,Gorham-Stout disease +11.5343135,MONDO:0013481,http://purl.obolibrary.org/obo/MONDO_0013481,chromosome 13q14 deletion syndrome +11.5343135,MONDO:0019611,http://purl.obolibrary.org/obo/MONDO_0019611,TSH-secreting pituitary adenoma +11.5343135,MONDO:0020583,http://purl.obolibrary.org/obo/MONDO_0020583,chromosome 17 abnormality +11.5343135,NCBITaxon:1107380,http://purl.obolibrary.org/obo/NCBITaxon_1107380,none +11.5343135,NCBITaxon:6308,http://purl.obolibrary.org/obo/NCBITaxon_6308,Strongylida +11.5343135,NCBITaxon:941326,http://purl.obolibrary.org/obo/NCBITaxon_941326,none +11.5343135,PR:000001246,http://purl.obolibrary.org/obo/PR_000001246,substance-K receptor +11.5343135,PR:000001548,http://purl.obolibrary.org/obo/PR_000001548,prostaglandin E2 receptor EP4 subtype +11.5343135,PR:000001896,http://purl.obolibrary.org/obo/PR_000001896,natural killer cell receptor 2B4 +11.5343135,PR:000001937,http://purl.obolibrary.org/obo/PR_000001937,tartrate-resistant acid phosphatase type 5 +11.5343135,PR:000002118,http://purl.obolibrary.org/obo/PR_000002118,voltage-dependent P/Q-type calcium channel subunit alpha-1A +11.5343135,PR:000002184,http://purl.obolibrary.org/obo/PR_000002184,Bcl2-associated agonist of cell death +11.5343135,PR:000004856,http://purl.obolibrary.org/obo/PR_000004856,mitotic checkpoint protein BUB3 +11.5343135,PR:000006885,http://purl.obolibrary.org/obo/PR_000006885,protein ECT2 +11.5343135,PR:000008901,http://purl.obolibrary.org/obo/PR_000008901,gamma-interferon-inducible protein 16 +11.5343135,PR:000009651,http://purl.obolibrary.org/obo/PR_000009651,laminin subunit alpha-2 +11.5343135,PR:000009915,http://purl.obolibrary.org/obo/PR_000009915,"leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 1" +11.5343135,PR:000010237,http://purl.obolibrary.org/obo/PR_000010237,proto-oncogene DBL +11.5343135,PR:000014694,http://purl.obolibrary.org/obo/PR_000014694,serpin B3 +11.5343135,PR:000023212,http://purl.obolibrary.org/obo/PR_000023212,none +11.5343135,PR:000024155,http://purl.obolibrary.org/obo/PR_000024155,none +11.5343135,PR:P48445,http://purl.obolibrary.org/obo/PR_P48445,none +11.5343135,PR:P55853,http://purl.obolibrary.org/obo/PR_P55853,none +11.5343135,PR:Q06429,http://purl.obolibrary.org/obo/PR_Q06429,none +11.5343135,PR:Q20024,http://purl.obolibrary.org/obo/PR_Q20024,none +11.5343135,PR:Q23122,http://purl.obolibrary.org/obo/PR_Q23122,none +11.5343135,PR:Q9FI23,http://purl.obolibrary.org/obo/PR_Q9FI23,none +11.5343135,PR:Q9LQ98,http://purl.obolibrary.org/obo/PR_Q9LQ98,none +11.5343135,SO:0000263,http://purl.obolibrary.org/obo/SO_0000263,isoleucyl_tRNA +11.5343135,UBERON:0002489,http://purl.obolibrary.org/obo/UBERON_0002489,coronal suture +11.5343135,UBERON:0002974,http://purl.obolibrary.org/obo/UBERON_0002974,molecular layer of cerebellar cortex +11.5343135,UBERON:0005426,http://purl.obolibrary.org/obo/UBERON_0005426,lens vesicle +11.5387481,CHEBI:50699,http://purl.obolibrary.org/obo/CHEBI_50699,oligosaccharide +11.5387481,DRUGBANK:DB01328,http://purl.obolibrary.org/obo/DRUGBANK_DB01328,none +11.5387481,DRUGBANK:DB06159,http://purl.obolibrary.org/obo/DRUGBANK_DB06159,none +11.5387481,DRUGBANK:DB11988,http://purl.obolibrary.org/obo/DRUGBANK_DB11988,none +11.5387481,DRUGBANK:DB13540,http://purl.obolibrary.org/obo/DRUGBANK_DB13540,none +11.5387481,DRUGBANK:DB13987,http://purl.obolibrary.org/obo/DRUGBANK_DB13987,none +11.5387481,GO:0006111,http://purl.obolibrary.org/obo/GO_0006111,regulation of gluconeogenesis +11.5387481,GO:0017174,http://purl.obolibrary.org/obo/GO_0017174,glycine N-methyltransferase activity +11.5387481,GO:0022626,http://purl.obolibrary.org/obo/GO_0022626,cytosolic ribosome +11.5387481,GO:0045329,http://purl.obolibrary.org/obo/GO_0045329,carnitine biosynthetic process +11.5387481,GO:0072564,http://purl.obolibrary.org/obo/GO_0072564,blood microparticle formation +11.5387481,MONDO:0000811,http://purl.obolibrary.org/obo/MONDO_0000811,anomalous left coronary artery from the pulmonary artery +11.5387481,MONDO:0003598,http://purl.obolibrary.org/obo/MONDO_0003598,median nerve neuropathy +11.5387481,MONDO:0004832,http://purl.obolibrary.org/obo/MONDO_0004832,esophagus leiomyoma +11.5387481,MONDO:0004978,http://purl.obolibrary.org/obo/MONDO_0004978,aortic stenosis +11.5387481,MONDO:0006633,http://purl.obolibrary.org/obo/MONDO_0006633,acalculous cholecystitis +11.5387481,MONDO:0010621,http://purl.obolibrary.org/obo/MONDO_0010621,CHILD syndrome +11.5387481,MONDO:0016208,http://purl.obolibrary.org/obo/MONDO_0016208,solitary rectal ulcer syndrome +11.5387481,MONDO:0022754,http://purl.obolibrary.org/obo/MONDO_0022754,chromosome 17p deletion +11.5387481,MONDO:0022794,http://purl.obolibrary.org/obo/MONDO_0022794,chromosome 8 deletion +11.5387481,MONDO:0022965,http://purl.obolibrary.org/obo/MONDO_0022965,desmoplastic infantile ganglioglioma +11.5387481,NCBITaxon:13149,http://purl.obolibrary.org/obo/NCBITaxon_13149,none +11.5387481,NCBITaxon:1325907,http://purl.obolibrary.org/obo/NCBITaxon_1325907,none +11.5387481,PR:000000166,http://purl.obolibrary.org/obo/PR_000000166,BMP5 +11.5387481,PR:000003386,http://purl.obolibrary.org/obo/PR_000003386,collagen type VI alpha chain +11.5387481,PR:000008833,http://purl.obolibrary.org/obo/PR_000008833,5-hydroxytryptamine receptor 3A +11.5387481,PR:000009417,http://purl.obolibrary.org/obo/PR_000009417,kallikrein-7 +11.5387481,PR:000009431,http://purl.obolibrary.org/obo/PR_000009431,kinetochore-associated protein 1 +11.5387481,PR:000009736,http://purl.obolibrary.org/obo/PR_000009736,LIM domain-binding protein 1 +11.5387481,PR:000010384,http://purl.obolibrary.org/obo/PR_000010384,"alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase A" +11.5387481,PR:000011196,http://purl.obolibrary.org/obo/PR_000011196,peptide-N(4)-(N-acetyl-beta-glucosaminyl)asparagine amidase +11.5387481,PR:000012747,http://purl.obolibrary.org/obo/PR_000012747,1-phosphatidylinositol 3-phosphate 5-kinase +11.5387481,PR:000012872,http://purl.obolibrary.org/obo/PR_000012872,serine/threonine-protein kinase PLK3 +11.5387481,PR:000014330,http://purl.obolibrary.org/obo/PR_000014330,R-spondin-1 +11.5387481,PR:000014875,http://purl.obolibrary.org/obo/PR_000014875,single-minded homolog 1 +11.5387481,PR:000014891,http://purl.obolibrary.org/obo/PR_000014891,NAD-dependent deacetylase sirtuin-5 +11.5387481,PR:000015050,http://purl.obolibrary.org/obo/PR_000015050,long-chain fatty acid transport protein 6 +11.5387481,PR:000017267,http://purl.obolibrary.org/obo/PR_000017267,guanine nucleotide exchange factor VAV3 +11.5387481,PR:000029254,http://purl.obolibrary.org/obo/PR_000029254,DNA dC->dU-editing enzyme APOBEC-3B +11.5387481,PR:P20720,http://purl.obolibrary.org/obo/PR_P20720,none +11.5387481,PR:P36038,http://purl.obolibrary.org/obo/PR_P36038,none +11.5387481,PR:P42760,http://purl.obolibrary.org/obo/PR_P42760,none +11.5387481,PR:Q9SKT3,http://purl.obolibrary.org/obo/PR_Q9SKT3,none +11.5387481,SO:0002138,http://purl.obolibrary.org/obo/SO_0002138,predicted_transcript +11.5387481,UBERON:0001283,http://purl.obolibrary.org/obo/UBERON_0001283,bile canaliculus +11.5387481,UBERON:0002515,http://purl.obolibrary.org/obo/UBERON_0002515,periosteum +11.5387481,UBERON:0005394,http://purl.obolibrary.org/obo/UBERON_0005394,cortical layer V +11.5387481,UBERON:0005669,http://purl.obolibrary.org/obo/UBERON_0005669,peritoneal cavity mesothelium +11.5387481,UBERON:0014608,http://purl.obolibrary.org/obo/UBERON_0014608,inferior occipital gyrus +11.5387481,UBERON:0034920,http://purl.obolibrary.org/obo/UBERON_0034920,infant stage +11.5432024,DRUGBANK:DB04836,http://purl.obolibrary.org/obo/DRUGBANK_DB04836,none +11.5432024,DRUGBANK:DB10442,http://purl.obolibrary.org/obo/DRUGBANK_DB10442,none +11.5432024,DRUGBANK:DB11574,http://purl.obolibrary.org/obo/DRUGBANK_DB11574,none +11.5432024,DRUGBANK:DB13467,http://purl.obolibrary.org/obo/DRUGBANK_DB13467,none +11.5432024,GO:0015757,http://purl.obolibrary.org/obo/GO_0015757,galactose transmembrane transport +11.5432024,GO:0035967,http://purl.obolibrary.org/obo/GO_0035967,cellular response to topologically incorrect protein +11.5432024,GO:0045995,http://purl.obolibrary.org/obo/GO_0045995,regulation of embryonic development +11.5432024,GO:0046320,http://purl.obolibrary.org/obo/GO_0046320,regulation of fatty acid oxidation +11.5432024,GO:0051670,http://purl.obolibrary.org/obo/GO_0051670,inulinase activity +11.5432024,HP:0000766,http://purl.obolibrary.org/obo/HP_0000766,Abnormal sternum morphology +11.5432024,HP:0012126,http://purl.obolibrary.org/obo/HP_0012126,Stomach cancer +11.5432024,MONDO:0004514,http://purl.obolibrary.org/obo/MONDO_0004514,chronic rhinitis +11.5432024,MONDO:0006586,http://purl.obolibrary.org/obo/MONDO_0006586,neurotic excoriation +11.5432024,MONDO:0007964,http://purl.obolibrary.org/obo/MONDO_0007964,dysplastic nevus syndrome +11.5432024,MONDO:0016356,http://purl.obolibrary.org/obo/MONDO_0016356,diffuse cutaneous systemic sclerosis +11.5432024,MONDO:0018873,http://purl.obolibrary.org/obo/MONDO_0018873,anterior cutaneous nerve entrapment syndrome +11.5432024,MONDO:0018878,http://purl.obolibrary.org/obo/MONDO_0018878,branchiootic syndrome +11.5432024,MONDO:0019114,http://purl.obolibrary.org/obo/MONDO_0019114,psychogenic movement disorders +11.5432024,MONDO:0022735,http://purl.obolibrary.org/obo/MONDO_0022735,choroid plexus cyst +11.5432024,PR:000001745,http://purl.obolibrary.org/obo/PR_000001745,translocation-associated membrane protein 1 +11.5432024,PR:000003886,http://purl.obolibrary.org/obo/PR_000003886,A-kinase anchor protein 12 +11.5432024,PR:000005599,http://purl.obolibrary.org/obo/PR_000005599,caseinolytic peptidase B protein +11.5432024,PR:000006527,http://purl.obolibrary.org/obo/PR_000006527,homeobox protein DLX-1 +11.5432024,PR:000007208,http://purl.obolibrary.org/obo/PR_000007208,steroid hormone receptor ERR1 +11.5432024,PR:000010227,http://purl.obolibrary.org/obo/PR_000010227,lysophospholipid acyltransferase 7 +11.5432024,PR:000011360,http://purl.obolibrary.org/obo/PR_000011360,puromycin-sensitive aminopeptidase +11.5432024,PR:000012301,http://purl.obolibrary.org/obo/PR_000012301,protein mono-ADP-ribosyltransferase PARP9 +11.5432024,PR:000013581,http://purl.obolibrary.org/obo/PR_000013581,Rab11 family-interacting protein 1 +11.5432024,PR:O22822,http://purl.obolibrary.org/obo/PR_O22822,none +11.5432024,PR:P08430,http://purl.obolibrary.org/obo/PR_P08430,none +11.5432024,PR:P54658,http://purl.obolibrary.org/obo/PR_P54658,none +11.5432024,PR:Q62452,http://purl.obolibrary.org/obo/PR_Q62452,none +11.5432024,PR:Q64633,http://purl.obolibrary.org/obo/PR_Q64633,none +11.5432024,PR:Q64634,http://purl.obolibrary.org/obo/PR_Q64634,none +11.5432024,PR:Q64637,http://purl.obolibrary.org/obo/PR_Q64637,none +11.5432024,PR:Q64638,http://purl.obolibrary.org/obo/PR_Q64638,none +11.5432024,PR:Q8VYF9,http://purl.obolibrary.org/obo/PR_Q8VYF9,none +11.5432024,PR:Q9LR44,http://purl.obolibrary.org/obo/PR_Q9LR44,none +11.5432024,PR:Q9W1L5,http://purl.obolibrary.org/obo/PR_Q9W1L5,none +11.5432024,SO:0000590,http://purl.obolibrary.org/obo/SO_0000590,SRP_RNA +11.5432024,SO:0001797,http://purl.obolibrary.org/obo/SO_0001797,centromeric_repeat +11.5432024,UBERON:0004702,http://purl.obolibrary.org/obo/UBERON_0004702,respiratory system blood vessel endothelium +11.5432024,UBERON:0010137,http://purl.obolibrary.org/obo/UBERON_0010137,polarized epithelium +11.5432024,UBERON:0010370,http://purl.obolibrary.org/obo/UBERON_0010370,tibial vein +11.5432024,UBERON:0013479,http://purl.obolibrary.org/obo/UBERON_0013479,lung endothelium +11.5432024,UBERON:0013618,http://purl.obolibrary.org/obo/UBERON_0013618,secondary molar tooth +11.5476767,CHEBI:15904,http://purl.obolibrary.org/obo/CHEBI_15904,long-chain fatty acid +11.5476767,CHEBI:25355,http://purl.obolibrary.org/obo/CHEBI_25355,mitochondrial respiratory-chain inhibitor +11.5476767,CHEBI:82519,http://purl.obolibrary.org/obo/CHEBI_82519,Nylon 6 +11.5476767,DRUGBANK:DB06240,http://purl.obolibrary.org/obo/DRUGBANK_DB06240,none +11.5476767,DRUGBANK:DB10385,http://purl.obolibrary.org/obo/DRUGBANK_DB10385,none +11.5476767,DRUGBANK:DB10788,http://purl.obolibrary.org/obo/DRUGBANK_DB10788,none +11.5476767,DRUGBANK:DB11458,http://purl.obolibrary.org/obo/DRUGBANK_DB11458,none +11.5476767,DRUGBANK:DB12667,http://purl.obolibrary.org/obo/DRUGBANK_DB12667,none +11.5476767,GO:0004322,http://purl.obolibrary.org/obo/GO_0004322,ferroxidase activity +11.5476767,GO:0005879,http://purl.obolibrary.org/obo/GO_0005879,axonemal microtubule +11.5476767,GO:0009555,http://purl.obolibrary.org/obo/GO_0009555,pollen development +11.5476767,GO:0016724,http://purl.obolibrary.org/obo/GO_0016724,"oxidoreductase activity, acting on metal ions, oxygen as acceptor" +11.5476767,GO:0018454,http://purl.obolibrary.org/obo/GO_0018454,acetoacetyl-CoA reductase activity +11.5476767,GO:0030731,http://purl.obolibrary.org/obo/GO_0030731,guanidinoacetate N-methyltransferase activity +11.5476767,GO:0032386,http://purl.obolibrary.org/obo/GO_0032386,regulation of intracellular transport +11.5476767,GO:0032606,http://purl.obolibrary.org/obo/GO_0032606,type I interferon production +11.5476767,GO:0042360,http://purl.obolibrary.org/obo/GO_0042360,vitamin E metabolic process +11.5476767,GO:0048827,http://purl.obolibrary.org/obo/GO_0048827,phyllome development +11.5476767,GO:0097576,http://purl.obolibrary.org/obo/GO_0097576,vacuole fusion +11.5476767,HP:0000646,http://purl.obolibrary.org/obo/HP_0000646,Amblyopia +11.5476767,MONDO:0002645,http://purl.obolibrary.org/obo/MONDO_0002645,cerebritis +11.5476767,MONDO:0007163,http://purl.obolibrary.org/obo/MONDO_0007163,episodic ataxia type 2 +11.5476767,MONDO:0010004,http://purl.obolibrary.org/obo/MONDO_0010004,EEC syndrome +11.5476767,MONDO:0020160,http://purl.obolibrary.org/obo/MONDO_0020160,secondary entropion +11.5476767,NCBITaxon:11938,http://purl.obolibrary.org/obo/NCBITaxon_11938,none +11.5476767,PR:000001772,http://purl.obolibrary.org/obo/PR_000001772,TGF-beta-activated kinase 1 and MAP3K7-binding protein 2 +11.5476767,PR:000003842,http://purl.obolibrary.org/obo/PR_000003842,"alkyldihydroxyacetonephosphate synthase, peroxisomal" +11.5476767,PR:000005739,http://purl.obolibrary.org/obo/PR_000005739,COP9 signalosome complex subunit 2 +11.5476767,PR:000006021,http://purl.obolibrary.org/obo/PR_000006021,chymotrypsin-like protease CTRL-1 +11.5476767,PR:000008455,http://purl.obolibrary.org/obo/PR_000008455,HCLS1-associated protein X-1 +11.5476767,PR:000009683,http://purl.obolibrary.org/obo/PR_000009683,linker for activation of T-cells family member 1 +11.5476767,PR:000010033,http://purl.obolibrary.org/obo/PR_000010033,perilipin-3 +11.5476767,PR:000013530,http://purl.obolibrary.org/obo/PR_000013530,none +11.5476767,PR:000022425,http://purl.obolibrary.org/obo/PR_000022425,none +11.5476767,PR:P39715,http://purl.obolibrary.org/obo/PR_P39715,none +11.5476767,PR:P40341,http://purl.obolibrary.org/obo/PR_P40341,none +11.5476767,PR:Q8GSA7,http://purl.obolibrary.org/obo/PR_Q8GSA7,none +11.5476767,PR:Q9LF61,http://purl.obolibrary.org/obo/PR_Q9LF61,none +11.5476767,UBERON:0001996,http://purl.obolibrary.org/obo/UBERON_0001996,elastic cartilage tissue +11.5476767,UBERON:0006568,http://purl.obolibrary.org/obo/UBERON_0006568,hypothalamic nucleus +11.5476767,UBERON:0006932,http://purl.obolibrary.org/obo/UBERON_0006932,vestibular epithelium +11.5476767,UBERON:0008945,http://purl.obolibrary.org/obo/UBERON_0008945,extraembryonic endoderm +11.5521711,CHEBI:35204,http://purl.obolibrary.org/obo/CHEBI_35204,tracer +11.5521711,CHEBI:73417,http://purl.obolibrary.org/obo/CHEBI_73417,CB2 receptor antagonist +11.5521711,DRUGBANK:DB00737,http://purl.obolibrary.org/obo/DRUGBANK_DB00737,none +11.5521711,DRUGBANK:DB00786,http://purl.obolibrary.org/obo/DRUGBANK_DB00786,none +11.5521711,DRUGBANK:DB02281,http://purl.obolibrary.org/obo/DRUGBANK_DB02281,none +11.5521711,DRUGBANK:DB04828,http://purl.obolibrary.org/obo/DRUGBANK_DB04828,none +11.5521711,DRUGBANK:DB08890,http://purl.obolibrary.org/obo/DRUGBANK_DB08890,none +11.5521711,DRUGBANK:DB12040,http://purl.obolibrary.org/obo/DRUGBANK_DB12040,none +11.5521711,DRUGBANK:DB13791,http://purl.obolibrary.org/obo/DRUGBANK_DB13791,none +11.5521711,DRUGBANK:DB13917,http://purl.obolibrary.org/obo/DRUGBANK_DB13917,none +11.5521711,GO:0036015,http://purl.obolibrary.org/obo/GO_0036015,response to interleukin-3 +11.5521711,GO:0046324,http://purl.obolibrary.org/obo/GO_0046324,regulation of glucose import +11.5521711,MONDO:0003668,http://purl.obolibrary.org/obo/MONDO_0003668,extragonadal seminoma +11.5521711,MONDO:0005487,http://purl.obolibrary.org/obo/MONDO_0005487,schizoaffective disorder +11.5521711,MONDO:0017385,http://purl.obolibrary.org/obo/MONDO_0017385,malignant migrating partial seizures of infancy +11.5521711,MONDO:0021144,http://purl.obolibrary.org/obo/MONDO_0021144,ovarian clear cell tumor +11.5521711,MONDO:0022220,http://purl.obolibrary.org/obo/MONDO_0022220,Parinaud syndrome +11.5521711,NCBITaxon:12222,http://purl.obolibrary.org/obo/NCBITaxon_12222,none +11.5521711,PR:000003792,http://purl.obolibrary.org/obo/PR_000003792,beta-adrenergic receptor kinase 2 +11.5521711,PR:000004331,http://purl.obolibrary.org/obo/PR_000004331,artemin +11.5521711,PR:000004618,http://purl.obolibrary.org/obo/PR_000004618,transcription regulator protein BACH2 +11.5521711,PR:000007037,http://purl.obolibrary.org/obo/PR_000007037,elongation of very long chain fatty acids protein 2 +11.5521711,PR:000008698,http://purl.obolibrary.org/obo/PR_000008698,homeobox protein Hox-B13 +11.5521711,PR:000008874,http://purl.obolibrary.org/obo/PR_000008874,isoamyl acetate-hydrolyzing esterase 1 +11.5521711,PR:000008944,http://purl.obolibrary.org/obo/PR_000008944,insulin-like growth factor 2 mRNA-binding protein 2 +11.5521711,PR:000009483,http://purl.obolibrary.org/obo/PR_000009483,"keratin, type II cytoskeletal 6B" +11.5521711,PR:000010202,http://purl.obolibrary.org/obo/PR_000010202,S-adenosylmethionine synthetase isoform type-2 +11.5521711,PR:000014438,http://purl.obolibrary.org/obo/PR_000014438,Sal-like protein 3 +11.5521711,PR:000014673,http://purl.obolibrary.org/obo/PR_000014673,serine incorporator 3 +11.5521711,PR:000014810,http://purl.obolibrary.org/obo/PR_000014810,SH2B adapter protein 2 +11.5521711,PR:000015572,http://purl.obolibrary.org/obo/PR_000015572,cornifin-A +11.5521711,PR:000022925,http://purl.obolibrary.org/obo/PR_000022925,none +11.5521711,PR:000031802,http://purl.obolibrary.org/obo/PR_000031802,MaFF-interacting protein +11.5521711,PR:O24495,http://purl.obolibrary.org/obo/PR_O24495,none +11.5521711,PR:Q06677,http://purl.obolibrary.org/obo/PR_Q06677,none +11.5521711,UBERON:0000400,http://purl.obolibrary.org/obo/UBERON_0000400,jejunal epithelium +11.5521711,UBERON:0002590,http://purl.obolibrary.org/obo/UBERON_0002590,prepyriform area +11.5521711,UBERON:0003064,http://purl.obolibrary.org/obo/UBERON_0003064,intermediate mesoderm +11.5521711,UBERON:0003650,http://purl.obolibrary.org/obo/UBERON_0003650,metatarsal bone of digit 1 +11.5521711,UBERON:0012311,http://purl.obolibrary.org/obo/UBERON_0012311,deep anterior cervical lymph node +11.5521711,UBERON:0015037,http://purl.obolibrary.org/obo/UBERON_0015037,pedal digit 1 metatarsal endochondral element +11.5521711,UBERON:0015869,http://purl.obolibrary.org/obo/UBERON_0015869,retropharyngeal lymph node +11.5566858,CL:0000750,http://purl.obolibrary.org/obo/CL_0000750,OFF-bipolar cell +11.5566858,DRUGBANK:DB00053,http://purl.obolibrary.org/obo/DRUGBANK_DB00053,none +11.5566858,DRUGBANK:DB11835,http://purl.obolibrary.org/obo/DRUGBANK_DB11835,none +11.5566858,DRUGBANK:DB14304,http://purl.obolibrary.org/obo/DRUGBANK_DB14304,none +11.5566858,GO:0003827,http://purl.obolibrary.org/obo/GO_0003827,"alpha-1,3-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity" +11.5566858,GO:0003844,http://purl.obolibrary.org/obo/GO_0003844,"1,4-alpha-glucan branching enzyme activity" +11.5566858,GO:0004075,http://purl.obolibrary.org/obo/GO_0004075,biotin carboxylase activity +11.5566858,GO:0004334,http://purl.obolibrary.org/obo/GO_0004334,fumarylacetoacetase activity +11.5566858,GO:0005375,http://purl.obolibrary.org/obo/GO_0005375,copper ion transmembrane transporter activity +11.5566858,GO:0097352,http://purl.obolibrary.org/obo/GO_0097352,autophagosome maturation +11.5566858,HP:0000421,http://purl.obolibrary.org/obo/HP_0000421,Epistaxis +11.5566858,MONDO:0012819,http://purl.obolibrary.org/obo/MONDO_0012819,diabetic ketoacidosis +11.5566858,MONDO:0013189,http://purl.obolibrary.org/obo/MONDO_0013189,trichotillomania +11.5566858,MONDO:0013321,http://purl.obolibrary.org/obo/MONDO_0013321,forsythe-wakeling syndrome +11.5566858,MONDO:0016700,http://purl.obolibrary.org/obo/MONDO_0016700,anaplastic ependymoma +11.5566858,MONDO:0017167,http://purl.obolibrary.org/obo/MONDO_0017167,malignant epithelial tumor of salivary glands +11.5566858,MONDO:0018714,http://purl.obolibrary.org/obo/MONDO_0018714,primary intralymphatic angioendothelioma +11.5566858,MONDO:0021320,http://purl.obolibrary.org/obo/MONDO_0021320,malignant tumor of floor of mouth +11.5566858,NCBITaxon:11590,http://purl.obolibrary.org/obo/NCBITaxon_11590,none +11.5566858,NCBITaxon:11657,http://purl.obolibrary.org/obo/NCBITaxon_11657,none +11.5566858,NCBITaxon:186628,http://purl.obolibrary.org/obo/NCBITaxon_186628,none +11.5566858,NCBITaxon:2734478,http://purl.obolibrary.org/obo/NCBITaxon_2734478,none +11.5566858,NCBITaxon:43753,http://purl.obolibrary.org/obo/NCBITaxon_43753,none +11.5566858,PR:000001813,http://purl.obolibrary.org/obo/PR_000001813,EGF-like module-containing mucin-like hormone receptor-like 1 +11.5566858,PR:000003567,http://purl.obolibrary.org/obo/PR_000003567,ATP-binding cassette sub-family D member 3 +11.5566858,PR:000005085,http://purl.obolibrary.org/obo/PR_000005085,E3 SUMO-protein ligase CBX4 +11.5566858,PR:000009296,http://purl.obolibrary.org/obo/PR_000009296,kinesin-like protein KIF1B +11.5566858,PR:000010722,http://purl.obolibrary.org/obo/PR_000010722,"C-1-tetrahydrofolate synthase, cytoplasmic" +11.5566858,PR:000012537,http://purl.obolibrary.org/obo/PR_000012537,retrotransposon-derived protein PEG10 +11.5566858,PR:000013469,http://purl.obolibrary.org/obo/PR_000013469,receptor-type tyrosine-protein phosphatase F +11.5566858,PR:000023474,http://purl.obolibrary.org/obo/PR_000023474,none +11.5566858,PR:000023964,http://purl.obolibrary.org/obo/PR_000023964,none +11.5566858,SO:0000003,http://purl.obolibrary.org/obo/SO_0000003,G_quartet +11.5566858,UBERON:0003234,http://purl.obolibrary.org/obo/UBERON_0003234,extensor pollicis longus muscle +11.5566858,UBERON:0005020,http://purl.obolibrary.org/obo/UBERON_0005020,mucosa of tongue +11.5566858,UBERON:0005922,http://purl.obolibrary.org/obo/UBERON_0005922,inferior nasal concha +11.5566858,UBERON:0011589,http://purl.obolibrary.org/obo/UBERON_0011589,non-mineralized cartilage tissue +11.5612209,CHEBI:24473,http://purl.obolibrary.org/obo/CHEBI_24473,halogen +11.5612209,CHEBI:25830,http://purl.obolibrary.org/obo/CHEBI_25830,p-quinones +11.5612209,DRUGBANK:DB08932,http://purl.obolibrary.org/obo/DRUGBANK_DB08932,none +11.5612209,DRUGBANK:DB09311,http://purl.obolibrary.org/obo/DRUGBANK_DB09311,none +11.5612209,DRUGBANK:DB11521,http://purl.obolibrary.org/obo/DRUGBANK_DB11521,none +11.5612209,DRUGBANK:DB15246,http://purl.obolibrary.org/obo/DRUGBANK_DB15246,none +11.5612209,GO:0000922,http://purl.obolibrary.org/obo/GO_0000922,spindle pole +11.5612209,GO:0001706,http://purl.obolibrary.org/obo/GO_0001706,endoderm formation +11.5612209,GO:0016167,http://purl.obolibrary.org/obo/GO_0016167,glial cell-derived neurotrophic factor receptor activity +11.5612209,GO:0016236,http://purl.obolibrary.org/obo/GO_0016236,macroautophagy +11.5612209,GO:0032768,http://purl.obolibrary.org/obo/GO_0032768,regulation of monooxygenase activity +11.5612209,GO:0034695,http://purl.obolibrary.org/obo/GO_0034695,response to prostaglandin E +11.5612209,GO:0038198,http://purl.obolibrary.org/obo/GO_0038198,auxin receptor activity +11.5612209,GO:0042953,http://purl.obolibrary.org/obo/GO_0042953,lipoprotein transport +11.5612209,GO:0071768,http://purl.obolibrary.org/obo/GO_0071768,mycolic acid biosynthetic process +11.5612209,MONDO:0000685,http://purl.obolibrary.org/obo/MONDO_0000685,visual agnosia +11.5612209,MONDO:0001539,http://purl.obolibrary.org/obo/MONDO_0001539,retinal perforation +11.5612209,MONDO:0003767,http://purl.obolibrary.org/obo/MONDO_0003767,mitral valve disease +11.5612209,MONDO:0011599,http://purl.obolibrary.org/obo/MONDO_0011599,birdshot chorioretinopathy +11.5612209,MONDO:0044782,http://purl.obolibrary.org/obo/MONDO_0044782,esophageal ulcer +11.5612209,PR:000001239,http://purl.obolibrary.org/obo/PR_000001239,melanocyte-stimulating hormone receptor +11.5612209,PR:000005187,http://purl.obolibrary.org/obo/PR_000005187,cell division cycle protein 16 +11.5612209,PR:000007719,http://purl.obolibrary.org/obo/PR_000007719,frizzled-2 +11.5612209,PR:000009591,http://purl.obolibrary.org/obo/PR_000009591,kinase suppressor of Ras 1 +11.5612209,PR:000012713,http://purl.obolibrary.org/obo/PR_000012713,GPI mannosyltransferase 4 +11.5612209,PR:000014961,http://purl.obolibrary.org/obo/PR_000014961,sialin +11.5612209,PR:000015177,http://purl.obolibrary.org/obo/PR_000015177,sodium- and chloride-dependent GABA transporter 3 +11.5612209,PR:000022894,http://purl.obolibrary.org/obo/PR_000022894,none +11.5612209,PR:000033559,http://purl.obolibrary.org/obo/PR_000033559,none +11.5612209,UBERON:0005244,http://purl.obolibrary.org/obo/UBERON_0005244,lobar bronchus of right lung cranial lobe +11.5657767,CHEBI:50298,http://purl.obolibrary.org/obo/CHEBI_50298,canonical deoxyribonucleotide residue +11.5657767,DRUGBANK:DB01319,http://purl.obolibrary.org/obo/DRUGBANK_DB01319,none +11.5657767,DRUGBANK:DB02180,http://purl.obolibrary.org/obo/DRUGBANK_DB02180,none +11.5657767,DRUGBANK:DB11125,http://purl.obolibrary.org/obo/DRUGBANK_DB11125,none +11.5657767,DRUGBANK:DB14197,http://purl.obolibrary.org/obo/DRUGBANK_DB14197,none +11.5657767,DRUGBANK:DB14337,http://purl.obolibrary.org/obo/DRUGBANK_DB14337,none +11.5657767,GO:0004653,http://purl.obolibrary.org/obo/GO_0004653,polypeptide N-acetylgalactosaminyltransferase activity +11.5657767,GO:0032432,http://purl.obolibrary.org/obo/GO_0032432,actin filament bundle +11.5657767,GO:0033650,http://purl.obolibrary.org/obo/GO_0033650,host cell mitochondrion +11.5657767,GO:0042938,http://purl.obolibrary.org/obo/GO_0042938,dipeptide transport +11.5657767,GO:0060072,http://purl.obolibrary.org/obo/GO_0060072,large conductance calcium-activated potassium channel activity +11.5657767,GO:0060914,http://purl.obolibrary.org/obo/GO_0060914,heart formation +11.5657767,GO:0071503,http://purl.obolibrary.org/obo/GO_0071503,response to heparin +11.5657767,MONDO:0002035,http://purl.obolibrary.org/obo/MONDO_0002035,colon lymphoma +11.5657767,MONDO:0002089,http://purl.obolibrary.org/obo/MONDO_0002089,retinal vascular occlusion +11.5657767,MONDO:0002113,http://purl.obolibrary.org/obo/MONDO_0002113,peritoneal carcinoma +11.5657767,MONDO:0002605,http://purl.obolibrary.org/obo/MONDO_0002605,hepatic angiomyolipoma +11.5657767,MONDO:0002693,http://purl.obolibrary.org/obo/MONDO_0002693,lateral sinus thrombosis +11.5657767,MONDO:0008090,http://purl.obolibrary.org/obo/MONDO_0008090,cyclic hematopoiesis +11.5657767,MONDO:0011909,http://purl.obolibrary.org/obo/MONDO_0011909,Charcot-Marie-Tooth disease dominant intermediate D +11.5657767,MONDO:0016525,http://purl.obolibrary.org/obo/MONDO_0016525,familial hyperaldosteronism +11.5657767,MONDO:0019162,http://purl.obolibrary.org/obo/MONDO_0019162,pseudohypoaldosteronism type 2 +11.5657767,MONDO:0037745,http://purl.obolibrary.org/obo/MONDO_0037745,fibromyxoid tumor +11.5657767,MONDO:0044740,http://purl.obolibrary.org/obo/MONDO_0044740,salivary gland squamous cell carcinoma +11.5657767,MONDO:0045046,http://purl.obolibrary.org/obo/MONDO_0045046,inherited thyroid metabolism disease +11.5657767,NCBITaxon:32347,http://purl.obolibrary.org/obo/NCBITaxon_32347,none +11.5657767,PR:000001152,http://purl.obolibrary.org/obo/PR_000001152,Toll-like receptor 10 +11.5657767,PR:000005767,http://purl.obolibrary.org/obo/PR_000005767,cortistatin +11.5657767,PR:000006342,http://purl.obolibrary.org/obo/PR_000006342,aromatic-L-amino-acid decarboxylase +11.5657767,PR:000007068,http://purl.obolibrary.org/obo/PR_000007068,homeobox protein EMX1 +11.5657767,PR:000007574,http://purl.obolibrary.org/obo/PR_000007574,dimethylaniline monooxygenase [N-oxide-forming] 1 +11.5657767,PR:000009644,http://purl.obolibrary.org/obo/PR_000009644,AFG1-like ATPase +11.5657767,PR:000013250,http://purl.obolibrary.org/obo/PR_000013250,protamine-2 +11.5657767,PR:000022570,http://purl.obolibrary.org/obo/PR_000022570,none +11.5657767,PR:P93017,http://purl.obolibrary.org/obo/PR_P93017,none +11.5657767,PR:Q02804,http://purl.obolibrary.org/obo/PR_Q02804,none +11.5657767,PR:Q24306,http://purl.obolibrary.org/obo/PR_Q24306,none +11.5657767,PR:Q54I79,http://purl.obolibrary.org/obo/PR_Q54I79,none +11.5657767,PR:Q90660,http://purl.obolibrary.org/obo/PR_Q90660,none +11.5657767,PR:Q9SFD8,http://purl.obolibrary.org/obo/PR_Q9SFD8,none +11.5657767,UBERON:0005391,http://purl.obolibrary.org/obo/UBERON_0005391,cortical layer II +11.5657767,UBERON:0007147,http://purl.obolibrary.org/obo/UBERON_0007147,lumen of midgut +11.5657767,UBERON:0011962,http://purl.obolibrary.org/obo/UBERON_0011962,transverse tarsal joint +11.5703534,CL:0000261,http://purl.obolibrary.org/obo/CL_0000261,none +11.5703534,DRUGBANK:DB00508,http://purl.obolibrary.org/obo/DRUGBANK_DB00508,none +11.5703534,DRUGBANK:DB02187,http://purl.obolibrary.org/obo/DRUGBANK_DB02187,none +11.5703534,DRUGBANK:DB07402,http://purl.obolibrary.org/obo/DRUGBANK_DB07402,none +11.5703534,DRUGBANK:DB11890,http://purl.obolibrary.org/obo/DRUGBANK_DB11890,none +11.5703534,DRUGBANK:DB13478,http://purl.obolibrary.org/obo/DRUGBANK_DB13478,none +11.5703534,DRUGBANK:DB15549,http://purl.obolibrary.org/obo/DRUGBANK_DB15549,none +11.5703534,DRUGBANK:DB15980,http://purl.obolibrary.org/obo/DRUGBANK_DB15980,none +11.5703534,GO:0004831,http://purl.obolibrary.org/obo/GO_0004831,tyrosine-tRNA ligase activity +11.5703534,GO:0004845,http://purl.obolibrary.org/obo/GO_0004845,uracil phosphoribosyltransferase activity +11.5703534,GO:0007252,http://purl.obolibrary.org/obo/GO_0007252,I-kappaB phosphorylation +11.5703534,GO:0010657,http://purl.obolibrary.org/obo/GO_0010657,muscle cell apoptotic process +11.5703534,GO:0020002,http://purl.obolibrary.org/obo/GO_0020002,host cell plasma membrane +11.5703534,GO:0034390,http://purl.obolibrary.org/obo/GO_0034390,smooth muscle cell apoptotic process +11.5703534,GO:0042727,http://purl.obolibrary.org/obo/GO_0042727,flavin-containing compound biosynthetic process +11.5703534,GO:0070258,http://purl.obolibrary.org/obo/GO_0070258,inner membrane pellicle complex +11.5703534,GO:1902680,http://purl.obolibrary.org/obo/GO_1902680,positive regulation of RNA biosynthetic process +11.5703534,MONDO:0002707,http://purl.obolibrary.org/obo/MONDO_0002707,breast mucinous carcinoma +11.5703534,MONDO:0005500,http://purl.obolibrary.org/obo/MONDO_0005500,congenital disorder of glycosylation type I +11.5703534,MONDO:0006190,http://purl.obolibrary.org/obo/MONDO_0006190,endolymphatic sac tumor +11.5703534,MONDO:0011885,http://purl.obolibrary.org/obo/MONDO_0011885,tubulointerstitial nephritis and uveitis syndrome +11.5703534,PR:000003446,http://purl.obolibrary.org/obo/PR_000003446,E3 SUMO-protein ligase PIAS3 +11.5703534,PR:000006090,http://purl.obolibrary.org/obo/PR_000006090,cytoplasmic FMR1-interacting protein 1 +11.5703534,PR:000010171,http://purl.obolibrary.org/obo/PR_000010171,microtubule-associated protein RP/EB family member 2 +11.5703534,PR:000010247,http://purl.obolibrary.org/obo/PR_000010247,DNA replication licensing factor MCM5 +11.5703534,PR:000010678,http://purl.obolibrary.org/obo/PR_000010678,beta-microseminoprotein +11.5703534,PR:000012908,http://purl.obolibrary.org/obo/PR_000012908,phosphomannomutase 2 +11.5703534,PR:000014139,http://purl.obolibrary.org/obo/PR_000014139,E3 ubiquitin-protein ligase RNF5 +11.5703534,PR:000014511,http://purl.obolibrary.org/obo/PR_000014511,secretoglobin family 3A member 1 +11.5703534,PR:000015020,http://purl.obolibrary.org/obo/PR_000015020,calcium-binding mitochondrial carrier protein SCaMC-1 +11.5703534,PR:000022568,http://purl.obolibrary.org/obo/PR_000022568,none +11.5703534,PR:000023800,http://purl.obolibrary.org/obo/PR_000023800,none +11.5703534,PR:000035789,http://purl.obolibrary.org/obo/PR_000035789,none +11.5703534,PR:P26783,http://purl.obolibrary.org/obo/PR_P26783,none +11.5703534,PR:P47180,http://purl.obolibrary.org/obo/PR_P47180,none +11.5703534,PR:Q9SAY1,http://purl.obolibrary.org/obo/PR_Q9SAY1,none +11.5703534,UBERON:0004367,http://purl.obolibrary.org/obo/UBERON_0004367,Descemet's membrane +11.5703534,UBERON:0004622,http://purl.obolibrary.org/obo/UBERON_0004622,sacral vertebra 1 +11.5703534,UBERON:0005445,http://purl.obolibrary.org/obo/UBERON_0005445,segment of pes +11.5749511,CHEBI:64911,http://purl.obolibrary.org/obo/CHEBI_64911,antimitotic +11.5749511,CL:0002261,http://purl.obolibrary.org/obo/CL_0002261,endothelial cell of viscerocranial mucosa +11.5749511,CL:0002336,http://purl.obolibrary.org/obo/CL_0002336,buccal mucosa cell +11.5749511,CL:0002379,http://purl.obolibrary.org/obo/CL_0002379,meningothelial cell +11.5749511,DRUGBANK:DB09563,http://purl.obolibrary.org/obo/DRUGBANK_DB09563,none +11.5749511,DRUGBANK:DB11190,http://purl.obolibrary.org/obo/DRUGBANK_DB11190,none +11.5749511,DRUGBANK:DB11491,http://purl.obolibrary.org/obo/DRUGBANK_DB11491,none +11.5749511,GO:0000783,http://purl.obolibrary.org/obo/GO_0000783,nuclear telomere cap complex +11.5749511,GO:0002262,http://purl.obolibrary.org/obo/GO_0002262,myeloid cell homeostasis +11.5749511,GO:0004769,http://purl.obolibrary.org/obo/GO_0004769,steroid delta-isomerase activity +11.5749511,GO:0004799,http://purl.obolibrary.org/obo/GO_0004799,thymidylate synthase activity +11.5749511,GO:0008901,http://purl.obolibrary.org/obo/GO_0008901,ferredoxin hydrogenase activity +11.5749511,GO:0010252,http://purl.obolibrary.org/obo/GO_0010252,auxin homeostasis +11.5749511,GO:0016699,http://purl.obolibrary.org/obo/GO_0016699,"oxidoreductase activity, acting on hydrogen as donor, iron-sulfur protein as acceptor" +11.5749511,GO:0032465,http://purl.obolibrary.org/obo/GO_0032465,regulation of cytokinesis +11.5749511,GO:0034249,http://purl.obolibrary.org/obo/GO_0034249,negative regulation of cellular amide metabolic process +11.5749511,GO:0042083,http://purl.obolibrary.org/obo/GO_0042083,"5,10-methylenetetrahydrofolate-dependent methyltransferase activity" +11.5749511,GO:0042712,http://purl.obolibrary.org/obo/GO_0042712,paternal behavior +11.5749511,GO:0050798,http://purl.obolibrary.org/obo/GO_0050798,activated T cell proliferation +11.5749511,GO:1903717,http://purl.obolibrary.org/obo/GO_1903717,none +11.5749511,MONDO:0006526,http://purl.obolibrary.org/obo/MONDO_0006526,allergic urticaria +11.5749511,MONDO:0007307,http://purl.obolibrary.org/obo/MONDO_0007307,Charcot-Marie-Tooth disease type 1B +11.5749511,MONDO:0016730,http://purl.obolibrary.org/obo/MONDO_0016730,gangliocytoma +11.5749511,MONDO:0018447,http://purl.obolibrary.org/obo/MONDO_0018447,chondromyxoid fibroma +11.5749511,MONDO:0019533,http://purl.obolibrary.org/obo/MONDO_0019533,paroxysmal cold hemoglobinuria +11.5749511,NCBITaxon:181083,http://purl.obolibrary.org/obo/NCBITaxon_181083,none +11.5749511,NCBITaxon:376918,http://purl.obolibrary.org/obo/NCBITaxon_376918,Aotidae +11.5749511,NCBITaxon:9504,http://purl.obolibrary.org/obo/NCBITaxon_9504,Aotus +11.5749511,PR:000001297,http://purl.obolibrary.org/obo/PR_000001297,CD177 molecule +11.5749511,PR:000003349,http://purl.obolibrary.org/obo/PR_000003349,collagen alpha-1(VII) chain +11.5749511,PR:000005158,http://purl.obolibrary.org/obo/PR_000005158,CD151 molecule +11.5749511,PR:000009491,http://purl.obolibrary.org/obo/PR_000009491,"keratin, type II cytoskeletal 2 oral" +11.5749511,PR:000013360,http://purl.obolibrary.org/obo/PR_000013360,proteasome subunit alpha type-1 +11.5749511,PR:000015274,http://purl.obolibrary.org/obo/PR_000015274,structural maintenance of chromosomes protein 5 +11.5749511,PR:000015816,http://purl.obolibrary.org/obo/PR_000015816,extracellular sulfatase Sulf-1 +11.5749511,PR:000023955,http://purl.obolibrary.org/obo/PR_000023955,none +11.5749511,PR:000030638,http://purl.obolibrary.org/obo/PR_000030638,"CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase 4" +11.5749511,PR:P21238,http://purl.obolibrary.org/obo/PR_P21238,none +11.5749511,PR:Q91WG0,http://purl.obolibrary.org/obo/PR_Q91WG0,none +11.5749511,PR:Q99440,http://purl.obolibrary.org/obo/PR_Q99440,uncharacterized protein encoded by LINC01587 (human) +11.5749511,UBERON:0001460,http://purl.obolibrary.org/obo/UBERON_0001460,arm +11.5749511,UBERON:0009655,http://purl.obolibrary.org/obo/UBERON_0009655,auricular artery +11.5749511,UBERON:0015171,http://purl.obolibrary.org/obo/UBERON_0015171,uterine spiral artery +11.5749511,UBERON:0015231,http://purl.obolibrary.org/obo/UBERON_0015231,circulatory system dorsal vessel +11.5749511,UBERON:0015472,http://purl.obolibrary.org/obo/UBERON_0015472,tracheobronchial lymph node +11.5795701,CHEBI:29987,http://purl.obolibrary.org/obo/CHEBI_29987,glutamate(2-) +11.5795701,CHEBI:33904,http://purl.obolibrary.org/obo/CHEBI_33904,molluscicide +11.5795701,CHEBI:59202,http://purl.obolibrary.org/obo/CHEBI_59202,straight-chain fatty acid +11.5795701,CL:0000641,http://purl.obolibrary.org/obo/CL_0000641,chromophobe cell +11.5795701,DRUGBANK:DB01021,http://purl.obolibrary.org/obo/DRUGBANK_DB01021,none +11.5795701,DRUGBANK:DB01338,http://purl.obolibrary.org/obo/DRUGBANK_DB01338,none +11.5795701,DRUGBANK:DB13954,http://purl.obolibrary.org/obo/DRUGBANK_DB13954,none +11.5795701,GO:0004123,http://purl.obolibrary.org/obo/GO_0004123,cystathionine gamma-lyase activity +11.5795701,GO:0004319,http://purl.obolibrary.org/obo/GO_0004319,"enoyl-[acyl-carrier-protein] reductase (NADPH, B-specific) activity" +11.5795701,GO:0006940,http://purl.obolibrary.org/obo/GO_0006940,regulation of smooth muscle contraction +11.5795701,GO:0009001,http://purl.obolibrary.org/obo/GO_0009001,serine O-acetyltransferase activity +11.5795701,GO:0009228,http://purl.obolibrary.org/obo/GO_0009228,thiamine biosynthetic process +11.5795701,GO:0015891,http://purl.obolibrary.org/obo/GO_0015891,siderophore transport +11.5795701,GO:0016412,http://purl.obolibrary.org/obo/GO_0016412,serine O-acyltransferase activity +11.5795701,GO:0031127,http://purl.obolibrary.org/obo/GO_0031127,"alpha-(1,2)-fucosyltransferase activity" +11.5795701,GO:0051667,http://purl.obolibrary.org/obo/GO_0051667,establishment of plastid localization +11.5795701,GO:0060453,http://purl.obolibrary.org/obo/GO_0060453,regulation of gastric acid secretion +11.5795701,GO:0070671,http://purl.obolibrary.org/obo/GO_0070671,response to interleukin-12 +11.5795701,GO:0071407,http://purl.obolibrary.org/obo/GO_0071407,cellular response to organic cyclic compound +11.5795701,HP:0002486,http://purl.obolibrary.org/obo/HP_0002486,Myotonia +11.5795701,MONDO:0000479,http://purl.obolibrary.org/obo/MONDO_0000479,segmental dystonia +11.5795701,MONDO:0001634,http://purl.obolibrary.org/obo/MONDO_0001634,bladder leiomyoma +11.5795701,MONDO:0003012,http://purl.obolibrary.org/obo/MONDO_0003012,sarcomatoid renal cell carcinoma +11.5795701,MONDO:0003754,http://purl.obolibrary.org/obo/MONDO_0003754,Brown-Sequard syndrome +11.5795701,MONDO:0006079,http://purl.obolibrary.org/obo/MONDO_0006079,ameloblastic carcinoma +11.5795701,MONDO:0017046,http://purl.obolibrary.org/obo/MONDO_0017046,neuroepithelioma +11.5795701,MONDO:0017303,http://purl.obolibrary.org/obo/MONDO_0017303,qualitative or quantitative defects of tropomyosin +11.5795701,MONDO:0018068,http://purl.obolibrary.org/obo/MONDO_0018068,trisomy 13 +11.5795701,MONDO:0019013,http://purl.obolibrary.org/obo/MONDO_0019013,non-histaminic angioedema +11.5795701,MONDO:0020180,http://purl.obolibrary.org/obo/MONDO_0020180,palpebral piliary tumor +11.5795701,NCBITaxon:163734,http://purl.obolibrary.org/obo/NCBITaxon_163734,none +11.5795701,NCBITaxon:2233854,http://purl.obolibrary.org/obo/NCBITaxon_2233854,none +11.5795701,NCBITaxon:68887,http://purl.obolibrary.org/obo/NCBITaxon_68887,none +11.5795701,PR:000001837,http://purl.obolibrary.org/obo/PR_000001837,CD6 molecule +11.5795701,PR:000001907,http://purl.obolibrary.org/obo/PR_000001907,platelet glycoprotein Ib alpha chain +11.5795701,PR:000002222,http://purl.obolibrary.org/obo/PR_000002222,tumor necrosis factor ligand superfamily member 14 +11.5795701,PR:000010902,http://purl.obolibrary.org/obo/PR_000010902,none +11.5795701,PR:000014340,http://purl.obolibrary.org/obo/PR_000014340,regulator of telomere elongation helicase 1 +11.5795701,PR:000014742,http://purl.obolibrary.org/obo/PR_000014742,14-3-3 protein sigma +11.5795701,PR:000016504,http://purl.obolibrary.org/obo/PR_000016504,"troponin I, slow skeletal muscle" +11.5795701,PR:000016525,http://purl.obolibrary.org/obo/PR_000016525,protein Tob1 +11.5795701,PR:000023914,http://purl.obolibrary.org/obo/PR_000023914,none +11.5795701,PR:000031746,http://purl.obolibrary.org/obo/PR_000031746,serine protease HTRA3 +11.5795701,PR:000033733,http://purl.obolibrary.org/obo/PR_000033733,none +11.5795701,PR:000035389,http://purl.obolibrary.org/obo/PR_000035389,none +11.5795701,PR:Q9CAD0,http://purl.obolibrary.org/obo/PR_Q9CAD0,none +11.5795701,SO:0000034,http://purl.obolibrary.org/obo/SO_0000034,morpholino_oligo +11.5795701,UBERON:0001298,http://purl.obolibrary.org/obo/UBERON_0001298,psoas major muscle +11.5795701,UBERON:0003212,http://purl.obolibrary.org/obo/UBERON_0003212,gustatory organ +11.5795701,UBERON:0007315,http://purl.obolibrary.org/obo/UBERON_0007315,internal pudendal artery +11.5842104,CHEBI:16449,http://purl.obolibrary.org/obo/CHEBI_16449,alanine +11.5842104,DRUGBANK:DB07373,http://purl.obolibrary.org/obo/DRUGBANK_DB07373,none +11.5842104,DRUGBANK:DB09352,http://purl.obolibrary.org/obo/DRUGBANK_DB09352,none +11.5842104,DRUGBANK:DB15779,http://purl.obolibrary.org/obo/DRUGBANK_DB15779,none +11.5842104,GO:0016144,http://purl.obolibrary.org/obo/GO_0016144,S-glycoside biosynthetic process +11.5842104,GO:0043331,http://purl.obolibrary.org/obo/GO_0043331,response to dsRNA +11.5842104,GO:0047173,http://purl.obolibrary.org/obo/GO_0047173,phosphatidylcholine-retinol O-acyltransferase activity +11.5842104,GO:0072710,http://purl.obolibrary.org/obo/GO_0072710,response to hydroxyurea +11.5842104,GO:1901656,http://purl.obolibrary.org/obo/GO_1901656,glycoside transport +11.5842104,MONDO:0004058,http://purl.obolibrary.org/obo/MONDO_0004058,pancreatic cholera +11.5842104,MONDO:0004605,http://purl.obolibrary.org/obo/MONDO_0004605,chronic ulcer of skin +11.5842104,MONDO:0004665,http://purl.obolibrary.org/obo/MONDO_0004665,nodular sclerosis classical Hodgkin lymphoma +11.5842104,MONDO:0005881,http://purl.obolibrary.org/obo/MONDO_0005881,oligohydramnios +11.5842104,MONDO:0005945,http://purl.obolibrary.org/obo/MONDO_0005945,rhinoscleroma +11.5842104,MONDO:0006301,http://purl.obolibrary.org/obo/MONDO_0006301,metanephric adenoma +11.5842104,MONDO:0006317,http://purl.obolibrary.org/obo/MONDO_0006317,neurothekeoma +11.5842104,MONDO:0007316,http://purl.obolibrary.org/obo/MONDO_0007316,Chiari malformation type I +11.5842104,MONDO:0009043,http://purl.obolibrary.org/obo/MONDO_0009043,generalized resistance to thyroid hormone +11.5842104,MONDO:0018233,http://purl.obolibrary.org/obo/MONDO_0018233,otopalatodigital syndrome spectrum disorder +11.5842104,NCBITaxon:114498,http://purl.obolibrary.org/obo/NCBITaxon_114498,none +11.5842104,PR:000001750,http://purl.obolibrary.org/obo/PR_000001750,TIR domain-containing adapter molecule 2 +11.5842104,PR:000003868,http://purl.obolibrary.org/obo/PR_000003868,"apoptosis-inducing factor 1, mitochondrial" +11.5842104,PR:000006413,http://purl.obolibrary.org/obo/PR_000006413,sphingolipid Delta(4)-desaturase DES1 +11.5842104,PR:000006806,http://purl.obolibrary.org/obo/PR_000006806,none +11.5842104,PR:000011043,http://purl.obolibrary.org/obo/PR_000011043,nuclear receptor coactivator 4 +11.5842104,PR:000012242,http://purl.obolibrary.org/obo/PR_000012242,serine/threonine-protein kinase PAK 3 +11.5842104,PR:000013365,http://purl.obolibrary.org/obo/PR_000013365,proteasome subunit alpha type-6 +11.5842104,PR:000015625,http://purl.obolibrary.org/obo/PR_000015625,signal recognition particle 54 kDa protein +11.5842104,PR:000015698,http://purl.obolibrary.org/obo/PR_000015698,"CMP-N-acetylneuraminate-poly-alpha-2,8-sialyltransferase" +11.5842104,PR:000015966,http://purl.obolibrary.org/obo/PR_000015966,none +11.5842104,PR:000017087,http://purl.obolibrary.org/obo/PR_000017087,protein unc-13 homolog B +11.5842104,PR:000023514,http://purl.obolibrary.org/obo/PR_000023514,none +11.5842104,PR:P53939,http://purl.obolibrary.org/obo/PR_P53939,none +11.5842104,PR:P61971,http://purl.obolibrary.org/obo/PR_P61971,none +11.5842104,PR:Q9LMZ9,http://purl.obolibrary.org/obo/PR_Q9LMZ9,none +11.5842104,UBERON:0001746,http://purl.obolibrary.org/obo/UBERON_0001746,capsule of thyroid gland +11.5842104,UBERON:0002112,http://purl.obolibrary.org/obo/UBERON_0002112,smooth muscle of esophagus +11.5842104,UBERON:0004612,http://purl.obolibrary.org/obo/UBERON_0004612,mammalian cervical vertebra 3 +11.5842104,UBERON:0005933,http://purl.obolibrary.org/obo/UBERON_0005933,hair root sheath +11.5842104,UBERON:0009978,http://purl.obolibrary.org/obo/UBERON_0009978,epicondyle +11.5842104,UBERON:0020550,http://purl.obolibrary.org/obo/UBERON_0020550,auricular blood vessel +11.5888725,CHEBI:39141,http://purl.obolibrary.org/obo/CHEBI_39141,Bronsted acid +11.5888725,CL:0000040,http://purl.obolibrary.org/obo/CL_0000040,monoblast +11.5888725,DRUGBANK:DB00886,http://purl.obolibrary.org/obo/DRUGBANK_DB00886,none +11.5888725,DRUGBANK:DB01283,http://purl.obolibrary.org/obo/DRUGBANK_DB01283,none +11.5888725,DRUGBANK:DB01729,http://purl.obolibrary.org/obo/DRUGBANK_DB01729,none +11.5888725,DRUGBANK:DB06530,http://purl.obolibrary.org/obo/DRUGBANK_DB06530,none +11.5888725,DRUGBANK:DB11637,http://purl.obolibrary.org/obo/DRUGBANK_DB11637,none +11.5888725,DRUGBANK:DB13437,http://purl.obolibrary.org/obo/DRUGBANK_DB13437,none +11.5888725,DRUGBANK:DB13503,http://purl.obolibrary.org/obo/DRUGBANK_DB13503,none +11.5888725,DRUGBANK:DB14933,http://purl.obolibrary.org/obo/DRUGBANK_DB14933,none +11.5888725,GO:0004097,http://purl.obolibrary.org/obo/GO_0004097,catechol oxidase activity +11.5888725,GO:0015616,http://purl.obolibrary.org/obo/GO_0015616,DNA translocase activity +11.5888725,GO:0043651,http://purl.obolibrary.org/obo/GO_0043651,linoleic acid metabolic process +11.5888725,GO:0048639,http://purl.obolibrary.org/obo/GO_0048639,positive regulation of developmental growth +11.5888725,MONDO:0003795,http://purl.obolibrary.org/obo/MONDO_0003795,ovarian small cell carcinoma +11.5888725,MONDO:0003885,http://purl.obolibrary.org/obo/MONDO_0003885,colorectal lipoma +11.5888725,MONDO:0007481,http://purl.obolibrary.org/obo/MONDO_0007481,Leri-Weill dyschondrosteosis +11.5888725,MONDO:0008523,http://purl.obolibrary.org/obo/MONDO_0008523,Blau syndrome +11.5888725,MONDO:0019224,http://purl.obolibrary.org/obo/MONDO_0019224,inborn disorder of gamma-aminobutyric acid metabolism +11.5888725,NCBITaxon:11608,http://purl.obolibrary.org/obo/NCBITaxon_11608,none +11.5888725,NCBITaxon:1511762,http://purl.obolibrary.org/obo/NCBITaxon_1511762,none +11.5888725,NCBITaxon:30608,http://purl.obolibrary.org/obo/NCBITaxon_30608,none +11.5888725,PR:000001584,http://purl.obolibrary.org/obo/PR_000001584,free fatty acid receptor 3 +11.5888725,PR:000001952,http://purl.obolibrary.org/obo/PR_000001952,tumor necrosis factor receptor superfamily member 10C +11.5888725,PR:000001965,http://purl.obolibrary.org/obo/PR_000001965,tumor necrosis factor receptor superfamily member 9 +11.5888725,PR:000005567,http://purl.obolibrary.org/obo/PR_000005567,tetranectin +11.5888725,PR:000006149,http://purl.obolibrary.org/obo/PR_000006149,cytochrome P450 7B1 +11.5888725,PR:000007136,http://purl.obolibrary.org/obo/PR_000007136,laforin +11.5888725,PR:000007177,http://purl.obolibrary.org/obo/PR_000007177,enhancer of rudimentary +11.5888725,PR:000011309,http://purl.obolibrary.org/obo/PR_000011309,nucleolar protein 12 +11.5888725,PR:000014141,http://purl.obolibrary.org/obo/PR_000014141,E3 ubiquitin-protein ligase RNF8 +11.5888725,PR:000015836,http://purl.obolibrary.org/obo/PR_000015836,transcription elongation factor SPT5 +11.5888725,PR:000016638,http://purl.obolibrary.org/obo/PR_000016638,tribbles homolog 1 +11.5888725,UBERON:0003342,http://purl.obolibrary.org/obo/UBERON_0003342,mucosa of anal canal +11.5888725,UBERON:0009885,http://purl.obolibrary.org/obo/UBERON_0009885,interlobar artery +11.5888725,UBERON:0018115,http://purl.obolibrary.org/obo/UBERON_0018115,left renal pelvis +11.5935563,CHEBI:26895,http://purl.obolibrary.org/obo/CHEBI_26895,tetracyclines +11.5935563,DRUGBANK:DB06486,http://purl.obolibrary.org/obo/DRUGBANK_DB06486,none +11.5935563,DRUGBANK:DB11296,http://purl.obolibrary.org/obo/DRUGBANK_DB11296,none +11.5935563,DRUGBANK:DB14665,http://purl.obolibrary.org/obo/DRUGBANK_DB14665,none +11.5935563,DRUGBANK:DB15904,http://purl.obolibrary.org/obo/DRUGBANK_DB15904,none +11.5935563,GO:0004559,http://purl.obolibrary.org/obo/GO_0004559,alpha-mannosidase activity +11.5935563,GO:0019392,http://purl.obolibrary.org/obo/GO_0019392,glucarate metabolic process +11.5935563,GO:0019766,http://purl.obolibrary.org/obo/GO_0019766,IgA receptor activity +11.5935563,GO:0019912,http://purl.obolibrary.org/obo/GO_0019912,cyclin-dependent protein kinase activating kinase activity +11.5935563,GO:0032104,http://purl.obolibrary.org/obo/GO_0032104,regulation of response to extracellular stimulus +11.5935563,GO:0032107,http://purl.obolibrary.org/obo/GO_0032107,regulation of response to nutrient levels +11.5935563,GO:0072349,http://purl.obolibrary.org/obo/GO_0072349,modified amino acid transmembrane transporter activity +11.5935563,MONDO:0001437,http://purl.obolibrary.org/obo/MONDO_0001437,pulmonary alveolar proteinosis +11.5935563,MONDO:0006983,http://purl.obolibrary.org/obo/MONDO_0006983,subclavian steal syndrome +11.5935563,MONDO:0012197,http://purl.obolibrary.org/obo/MONDO_0012197,idiopathic aplastic anemia +11.5935563,MONDO:0016933,http://purl.obolibrary.org/obo/MONDO_0016933,partial trisomy/tetrasomy of the short arm of chromosome 12 +11.5935563,MONDO:0017602,http://purl.obolibrary.org/obo/MONDO_0017602,ALK-positive anaplastic large cell lymphoma +11.5935563,MONDO:0042968,http://purl.obolibrary.org/obo/MONDO_0042968,partial duplication of chromosome 12 +11.5935563,PR:000006057,http://purl.obolibrary.org/obo/PR_000006057,CUB and zona pellucida-like domain-containing protein 1 +11.5935563,PR:000006190,http://purl.obolibrary.org/obo/PR_000006190,none +11.5935563,PR:000009328,http://purl.obolibrary.org/obo/PR_000009328,killer cell immunoglobulin-like receptor 2DL2 +11.5935563,PR:000009810,http://purl.obolibrary.org/obo/PR_000009810,leukocyte immunoglobulin-like receptor subfamily B member 3 +11.5935563,PR:000011178,http://purl.obolibrary.org/obo/PR_000011178,nuclear factor NF-kappa-B p100 subunit +11.5935563,PR:000015871,http://purl.obolibrary.org/obo/PR_000015871,synapsin-2 +11.5935563,PR:000015875,http://purl.obolibrary.org/obo/PR_000015875,nesprin-1 +11.5935563,PR:000017253,http://purl.obolibrary.org/obo/PR_000017253,vesicle-associated membrane protein 7 +11.5935563,PR:000023159,http://purl.obolibrary.org/obo/PR_000023159,none +11.5935563,PR:Q9ZV43,http://purl.obolibrary.org/obo/PR_Q9ZV43,none +11.5935563,SO:0000611,http://purl.obolibrary.org/obo/SO_0000611,branch_site +11.5935563,UBERON:0004184,http://purl.obolibrary.org/obo/UBERON_0004184,prostate gland stroma +11.5935563,UBERON:0009022,http://purl.obolibrary.org/obo/UBERON_0009022,right uterine horn +11.5935563,UBERON:0034750,http://purl.obolibrary.org/obo/UBERON_0034750,visual association cortex +11.5982622,CHEBI:52395,http://purl.obolibrary.org/obo/CHEBI_52395,oxyketone +11.5982622,CHEBI:52396,http://purl.obolibrary.org/obo/CHEBI_52396,alpha-oxyketone +11.5982622,DRUGBANK:DB04454,http://purl.obolibrary.org/obo/DRUGBANK_DB04454,none +11.5982622,DRUGBANK:DB08215,http://purl.obolibrary.org/obo/DRUGBANK_DB08215,none +11.5982622,DRUGBANK:DB12877,http://purl.obolibrary.org/obo/DRUGBANK_DB12877,none +11.5982622,GO:0003015,http://purl.obolibrary.org/obo/GO_0003015,heart process +11.5982622,GO:0004989,http://purl.obolibrary.org/obo/GO_0004989,octopamine receptor activity +11.5982622,GO:0005988,http://purl.obolibrary.org/obo/GO_0005988,lactose metabolic process +11.5982622,GO:0008126,http://purl.obolibrary.org/obo/GO_0008126,acetylesterase activity +11.5982622,GO:0030802,http://purl.obolibrary.org/obo/GO_0030802,none +11.5982622,GO:0032334,http://purl.obolibrary.org/obo/GO_0032334,inhibin secretion +11.5982622,GO:0032898,http://purl.obolibrary.org/obo/GO_0032898,neurotrophin production +11.5982622,GO:0034620,http://purl.obolibrary.org/obo/GO_0034620,cellular response to unfolded protein +11.5982622,GO:0035188,http://purl.obolibrary.org/obo/GO_0035188,hatching +11.5982622,GO:0036102,http://purl.obolibrary.org/obo/GO_0036102,leukotriene B4 metabolic process +11.5982622,GO:0042844,http://purl.obolibrary.org/obo/GO_0042844,glycol metabolic process +11.5982622,GO:0048236,http://purl.obolibrary.org/obo/GO_0048236,plant-type sporogenesis +11.5982622,GO:0060441,http://purl.obolibrary.org/obo/GO_0060441,epithelial tube branching involved in lung morphogenesis +11.5982622,MONDO:0005601,http://purl.obolibrary.org/obo/MONDO_0005601,ovarian mucinous adenocarcinoma +11.5982622,MONDO:0006126,http://purl.obolibrary.org/obo/MONDO_0006126,cecum neuroendocrine tumor G1 +11.5982622,MONDO:0018615,http://purl.obolibrary.org/obo/MONDO_0018615,hemicrania continua +11.5982622,MONDO:0022013,http://purl.obolibrary.org/obo/MONDO_0022013,Boerhaave syndrome +11.5982622,MONDO:0025598,http://purl.obolibrary.org/obo/MONDO_0025598,pneumonia caused by chlamydia +11.5982622,MONDO:0044889,http://purl.obolibrary.org/obo/MONDO_0044889,high grade B-cell lymphoma +11.5982622,PR:000001557,http://purl.obolibrary.org/obo/PR_000001557,thyrotropin-releasing hormone receptor type 1 +11.5982622,PR:000003212,http://purl.obolibrary.org/obo/PR_000003212,serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B +11.5982622,PR:000004951,http://purl.obolibrary.org/obo/PR_000004951,voltage-dependent calcium channel gamma-2 subunit +11.5982622,PR:000005896,http://purl.obolibrary.org/obo/PR_000005896,peroxisomal carnitine O-octanoyltransferase +11.5982622,PR:000007723,http://purl.obolibrary.org/obo/PR_000007723,frizzled-7 +11.5982622,PR:000008998,http://purl.obolibrary.org/obo/PR_000008998,interleukin-21 receptor +11.5982622,PR:000010540,http://purl.obolibrary.org/obo/PR_000010540,mannose-6-phosphate isomerase +11.5982622,PR:000011389,http://purl.obolibrary.org/obo/PR_000011389,ribosyldihydronicotinamide dehydrogenase [quinone] +11.5982622,PR:000011391,http://purl.obolibrary.org/obo/PR_000011391,nuclear receptor subfamily 0 group B member 2 +11.5982622,PR:000012471,http://purl.obolibrary.org/obo/PR_000012471,"cGMP-inhibited 3',5'-cyclic phosphodiesterase B" +11.5982622,PR:000012897,http://purl.obolibrary.org/obo/PR_000012897,plexin-B2 +11.5982622,PR:000013383,http://purl.obolibrary.org/obo/PR_000013383,26S proteasome regulatory subunit 8 +11.5982622,PR:000023630,http://purl.obolibrary.org/obo/PR_000023630,none +11.5982622,PR:000026014,http://purl.obolibrary.org/obo/PR_000026014,prorelaxin H1 +11.5982622,PR:000027614,http://purl.obolibrary.org/obo/PR_000027614,none +11.5982622,PR:000050029,http://purl.obolibrary.org/obo/PR_000050029,thyrotropin-releasing hormone receptor +11.5982622,PR:P53048,http://purl.obolibrary.org/obo/PR_P53048,none +11.5982622,PR:P61829,http://purl.obolibrary.org/obo/PR_P61829,none +11.5982622,PR:Q9FNY2,http://purl.obolibrary.org/obo/PR_Q9FNY2,none +11.5982622,SO:0001115,http://purl.obolibrary.org/obo/SO_0001115,left_handed_peptide_helix +11.5982622,UBERON:0005619,http://purl.obolibrary.org/obo/UBERON_0005619,secondary palatal shelf +11.5982622,UBERON:0008837,http://purl.obolibrary.org/obo/UBERON_0008837,palmar/plantar part of autopod +11.6029903,CHEBI:139588,http://purl.obolibrary.org/obo/CHEBI_139588,alpha-hydroxy ketone +11.6029903,CHEBI:23443,http://purl.obolibrary.org/obo/CHEBI_23443,cyclic amide +11.6029903,CHEBI:24995,http://purl.obolibrary.org/obo/CHEBI_24995,lactam +11.6029903,CHEBI:32058,http://purl.obolibrary.org/obo/CHEBI_32058,proglumide +11.6029903,DRUGBANK:DB00830,http://purl.obolibrary.org/obo/DRUGBANK_DB00830,none +11.6029903,DRUGBANK:DB01751,http://purl.obolibrary.org/obo/DRUGBANK_DB01751,none +11.6029903,DRUGBANK:DB11730,http://purl.obolibrary.org/obo/DRUGBANK_DB11730,none +11.6029903,DRUGBANK:DB12349,http://purl.obolibrary.org/obo/DRUGBANK_DB12349,none +11.6029903,DRUGBANK:DB14251,http://purl.obolibrary.org/obo/DRUGBANK_DB14251,none +11.6029903,GO:0008408,http://purl.obolibrary.org/obo/GO_0008408,3'-5' exonuclease activity +11.6029903,GO:0036449,http://purl.obolibrary.org/obo/GO_0036449,microtubule minus-end +11.6029903,GO:0048730,http://purl.obolibrary.org/obo/GO_0048730,epidermis morphogenesis +11.6029903,GO:2000736,http://purl.obolibrary.org/obo/GO_2000736,regulation of stem cell differentiation +11.6029903,HP:0011314,http://purl.obolibrary.org/obo/HP_0011314,Abnormality of long bone morphology +11.6029903,MONDO:0000548,http://purl.obolibrary.org/obo/MONDO_0000548,ovarian clear cell cancer +11.6029903,MONDO:0004026,http://purl.obolibrary.org/obo/MONDO_0004026,skin tag +11.6029903,MONDO:0010584,http://purl.obolibrary.org/obo/MONDO_0010584,"dyskeratosis congenita, X-linked" +11.6029903,MONDO:0015687,http://purl.obolibrary.org/obo/MONDO_0015687,chronic eosinophilic leukemia +11.6029903,MONDO:0043549,http://purl.obolibrary.org/obo/MONDO_0043549,crush syndrome +11.6029903,NCBITaxon:10278,http://purl.obolibrary.org/obo/NCBITaxon_10278,Molluscipoxvirus +11.6029903,NCBITaxon:138949,http://purl.obolibrary.org/obo/NCBITaxon_138949,Enterovirus B +11.6029903,PR:000002113,http://purl.obolibrary.org/obo/PR_000002113,voltage-dependent L-type calcium channel subunit alpha-1C +11.6029903,PR:000002350,http://purl.obolibrary.org/obo/PR_000002350,serine/threonine-protein kinase 25 +11.6029903,PR:000005057,http://purl.obolibrary.org/obo/PR_000005057,calsequestrin-2 +11.6029903,PR:000005994,http://purl.obolibrary.org/obo/PR_000005994,C-terminal-binding protein 1 +11.6029903,PR:000008117,http://purl.obolibrary.org/obo/PR_000008117,guanine nucleotide-binding protein-like 3 +11.6029903,PR:000009913,http://purl.obolibrary.org/obo/PR_000009913,leucine-rich alpha-2-glycoprotein +11.6029903,PR:000010710,http://purl.obolibrary.org/obo/PR_000010710,S-methyl-5'-thioadenosine phosphorylase +11.6029903,PR:000011189,http://purl.obolibrary.org/obo/PR_000011189,nuclear transcription factor Y subunit beta +11.6029903,PR:000012568,http://purl.obolibrary.org/obo/PR_000012568,peroxisomal targeting signal 2 receptor +11.6029903,PR:000012799,http://purl.obolibrary.org/obo/PR_000012799,"phospholipase A2, membrane associated" +11.6029903,PR:000013038,http://purl.obolibrary.org/obo/PR_000013038,"POU domain, class 3, transcription factor 1" +11.6029903,PR:000015072,http://purl.obolibrary.org/obo/PR_000015072,"solute carrier family 2, facilitated glucose transporter member 9" +11.6029903,PR:000017687,http://purl.obolibrary.org/obo/PR_000017687,zinc finger MYM-type protein 2 +11.6029903,PR:000031809,http://purl.obolibrary.org/obo/PR_000031809,"1,5-anhydro-D-fructose reductase" +11.6029903,PR:P52840,http://purl.obolibrary.org/obo/PR_P52840,none +11.6029903,PR:P59889,http://purl.obolibrary.org/obo/PR_P59889,none +11.6029903,PR:P84040,http://purl.obolibrary.org/obo/PR_P84040,none +11.6029903,PR:Q8QHL5,http://purl.obolibrary.org/obo/PR_Q8QHL5,none +11.6029903,SO:0000262,http://purl.obolibrary.org/obo/SO_0000262,histidyl_tRNA +11.6029903,UBERON:0002740,http://purl.obolibrary.org/obo/UBERON_0002740,posterior cingulate gyrus +11.6077409,CHEBI:17478,http://purl.obolibrary.org/obo/CHEBI_17478,aldehyde +11.6077409,CHEBI:33246,http://purl.obolibrary.org/obo/CHEBI_33246,inorganic group +11.6077409,CL:0002628,http://purl.obolibrary.org/obo/CL_0002628,immature microglial cell +11.6077409,CL:0010021,http://purl.obolibrary.org/obo/CL_0010021,cardiac myoblast +11.6077409,DRUGBANK:DB02123,http://purl.obolibrary.org/obo/DRUGBANK_DB02123,none +11.6077409,DRUGBANK:DB06160,http://purl.obolibrary.org/obo/DRUGBANK_DB06160,none +11.6077409,GO:0004181,http://purl.obolibrary.org/obo/GO_0004181,metallocarboxypeptidase activity +11.6077409,GO:0034341,http://purl.obolibrary.org/obo/GO_0034341,response to interferon-gamma +11.6077409,GO:0050873,http://purl.obolibrary.org/obo/GO_0050873,brown fat cell differentiation +11.6077409,GO:0051885,http://purl.obolibrary.org/obo/GO_0051885,positive regulation of timing of anagen +11.6077409,GO:0060151,http://purl.obolibrary.org/obo/GO_0060151,peroxisome localization +11.6077409,GO:0070293,http://purl.obolibrary.org/obo/GO_0070293,renal absorption +11.6077409,GO:0099024,http://purl.obolibrary.org/obo/GO_0099024,plasma membrane invagination +11.6077409,GO:1904565,http://purl.obolibrary.org/obo/GO_1904565,response to 1-oleoyl-sn-glycerol 3-phosphate +11.6077409,HP:0000608,http://purl.obolibrary.org/obo/HP_0000608,Macular degeneration +11.6077409,MONDO:0000698,http://purl.obolibrary.org/obo/MONDO_0000698,gamma-amino butyric acid metabolism disorder +11.6077409,MONDO:0003640,http://purl.obolibrary.org/obo/MONDO_0003640,verruciform xanthoma of skin +11.6077409,MONDO:0005116,http://purl.obolibrary.org/obo/MONDO_0005116,Whipple disease +11.6077409,MONDO:0006489,http://purl.obolibrary.org/obo/MONDO_0006489,vaginal melanoma +11.6077409,MONDO:0017715,http://purl.obolibrary.org/obo/MONDO_0017715,3-hydroxyacyl-CoA dehydrogenase deficiency +11.6077409,MONDO:0019404,http://purl.obolibrary.org/obo/MONDO_0019404,perineurioma +11.6077409,MONDO:0020544,http://purl.obolibrary.org/obo/MONDO_0020544,streptococcal toxic-shock syndrome +11.6077409,MONDO:0021343,http://purl.obolibrary.org/obo/MONDO_0021343,carcinoma of floor of mouth +11.6077409,MONDO:0044988,http://purl.obolibrary.org/obo/MONDO_0044988,hip region disease +11.6077409,NCBITaxon:1213379,http://purl.obolibrary.org/obo/NCBITaxon_1213379,none +11.6077409,NCBITaxon:129951,http://purl.obolibrary.org/obo/NCBITaxon_129951,none +11.6077409,PR:000001212,http://purl.obolibrary.org/obo/PR_000001212,chemokine XC receptor 1 +11.6077409,PR:000001918,http://purl.obolibrary.org/obo/PR_000001918,pre T-cell antigen receptor alpha +11.6077409,PR:000004558,http://purl.obolibrary.org/obo/PR_000004558,none +11.6077409,PR:000006648,http://purl.obolibrary.org/obo/PR_000006648,dipeptidase 3 +11.6077409,PR:000006904,http://purl.obolibrary.org/obo/PR_000006904,elongation factor 1-alpha 2 +11.6077409,PR:000010248,http://purl.obolibrary.org/obo/PR_000010248,DNA replication licensing factor MCM6 +11.6077409,PR:000011392,http://purl.obolibrary.org/obo/PR_000011392,nuclear receptor subfamily 1 group D member 1 +11.6077409,PR:000015086,http://purl.obolibrary.org/obo/PR_000015086,sodium-dependent phosphate transport protein 2A +11.6077409,PR:000015542,http://purl.obolibrary.org/obo/PR_000015542,Kunitz-type protease inhibitor 1 +11.6077409,PR:000016417,http://purl.obolibrary.org/obo/PR_000016417,transmembrane protein 173 +11.6077409,PR:000016917,http://purl.obolibrary.org/obo/PR_000016917,none +11.6077409,PR:000017653,http://purl.obolibrary.org/obo/PR_000017653,zinc finger protein ZFPM2 +11.6077409,PR:P21702,http://purl.obolibrary.org/obo/PR_P21702,none +11.6077409,PR:P37106,http://purl.obolibrary.org/obo/PR_P37106,none +11.6077409,PR:Q680I0,http://purl.obolibrary.org/obo/PR_Q680I0,none +11.6077409,SO:0000633,http://purl.obolibrary.org/obo/SO_0000633,monocistronic_mRNA +11.6077409,UBERON:0004615,http://purl.obolibrary.org/obo/UBERON_0004615,mammalian cervical vertebra 6 +11.6077409,UBERON:0005456,http://purl.obolibrary.org/obo/UBERON_0005456,jugular foramen +11.6077409,UBERON:0018321,http://purl.obolibrary.org/obo/UBERON_0018321,foramen for glossopharyngeal nerve +11.6125142,CHEBI:22153,http://purl.obolibrary.org/obo/CHEBI_22153,acaricide +11.6125142,CHEBI:26044,http://purl.obolibrary.org/obo/CHEBI_26044,phosphinic acids +11.6125142,CHEBI:32484,http://purl.obolibrary.org/obo/CHEBI_32484,glutamate residue +11.6125142,CHEBI:33248,http://purl.obolibrary.org/obo/CHEBI_33248,hydrocarbyl group +11.6125142,DRUGBANK:DB00963,http://purl.obolibrary.org/obo/DRUGBANK_DB00963,none +11.6125142,DRUGBANK:DB01049,http://purl.obolibrary.org/obo/DRUGBANK_DB01049,none +11.6125142,DRUGBANK:DB01215,http://purl.obolibrary.org/obo/DRUGBANK_DB01215,none +11.6125142,DRUGBANK:DB05284,http://purl.obolibrary.org/obo/DRUGBANK_DB05284,none +11.6125142,DRUGBANK:DB12833,http://purl.obolibrary.org/obo/DRUGBANK_DB12833,none +11.6125142,GO:0007498,http://purl.obolibrary.org/obo/GO_0007498,mesoderm development +11.6125142,GO:0008184,http://purl.obolibrary.org/obo/GO_0008184,glycogen phosphorylase activity +11.6125142,GO:0016656,http://purl.obolibrary.org/obo/GO_0016656,monodehydroascorbate reductase (NADH) activity +11.6125142,GO:0034338,http://purl.obolibrary.org/obo/GO_0034338,short-chain carboxylesterase activity +11.6125142,GO:0035472,http://purl.obolibrary.org/obo/GO_0035472,choriogonadotropin hormone receptor activity +11.6125142,GO:0060047,http://purl.obolibrary.org/obo/GO_0060047,heart contraction +11.6125142,GO:0070341,http://purl.obolibrary.org/obo/GO_0070341,fat cell proliferation +11.6125142,GO:0120035,http://purl.obolibrary.org/obo/GO_0120035,regulation of plasma membrane bounded cell projection organization +11.6125142,GO:1903508,http://purl.obolibrary.org/obo/GO_1903508,positive regulation of nucleic acid-templated transcription +11.6125142,MONDO:0001378,http://purl.obolibrary.org/obo/MONDO_0001378,urachus cancer +11.6125142,MONDO:0002892,http://purl.obolibrary.org/obo/MONDO_0002892,skull base chordoma +11.6125142,MONDO:0003145,http://purl.obolibrary.org/obo/MONDO_0003145,supratentorial primitive neuroectodermal tumor +11.6125142,MONDO:0004646,http://purl.obolibrary.org/obo/MONDO_0004646,decubitus ulcer +11.6125142,MONDO:0010665,http://purl.obolibrary.org/obo/MONDO_0010665,Wilson-Turner syndrome +11.6125142,MONDO:0017874,http://purl.obolibrary.org/obo/MONDO_0017874,Argentine hemorrhagic fever +11.6125142,MONDO:0020115,http://purl.obolibrary.org/obo/MONDO_0020115,secondary polycythemia +11.6125142,MONDO:0020153,http://purl.obolibrary.org/obo/MONDO_0020153,cryptophthalmia +11.6125142,MONDO:0020513,http://purl.obolibrary.org/obo/MONDO_0020513,spermatocytic seminoma +11.6125142,NCBITaxon:10279,http://purl.obolibrary.org/obo/NCBITaxon_10279,Molluscum contagiosum virus +11.6125142,NCBITaxon:198112,http://purl.obolibrary.org/obo/NCBITaxon_198112,none +11.6125142,PR:000003110,http://purl.obolibrary.org/obo/PR_000003110,TGF-beta receptor type-3 +11.6125142,PR:000004498,http://purl.obolibrary.org/obo/PR_000004498,"ATPase inhibitor, mitochondrial" +11.6125142,PR:000005683,http://purl.obolibrary.org/obo/PR_000005683,cochlin +11.6125142,PR:000006625,http://purl.obolibrary.org/obo/PR_000006625,dedicator of cytokinesis protein 8 +11.6125142,PR:000009354,http://purl.obolibrary.org/obo/PR_000009354,krueppel-like factor 10 +11.6125142,PR:000009359,http://purl.obolibrary.org/obo/PR_000009359,krueppel-like factor 15 +11.6125142,PR:000010274,http://purl.obolibrary.org/obo/PR_000010274,"NAD-dependent malic enzyme, mitochondrial" +11.6125142,PR:000014616,http://purl.obolibrary.org/obo/PR_000014616,semaphorin-3B +11.6125142,PR:O18191,http://purl.obolibrary.org/obo/PR_O18191,none +11.6125142,PR:Q9URV2,http://purl.obolibrary.org/obo/PR_Q9URV2,none +11.6125142,UBERON:0001914,http://purl.obolibrary.org/obo/UBERON_0001914,colostrum +11.6125142,UBERON:0002689,http://purl.obolibrary.org/obo/UBERON_0002689,supraoptic crest +11.6125142,UBERON:0010390,http://purl.obolibrary.org/obo/UBERON_0010390,lumen of urethra +11.6173104,CHEBI:83820,http://purl.obolibrary.org/obo/CHEBI_83820,non-proteinogenic amino acid +11.6173104,CL:0002070,http://purl.obolibrary.org/obo/CL_0002070,type I vestibular sensory cell +11.6173104,DRUGBANK:DB01728,http://purl.obolibrary.org/obo/DRUGBANK_DB01728,none +11.6173104,DRUGBANK:DB03955,http://purl.obolibrary.org/obo/DRUGBANK_DB03955,none +11.6173104,DRUGBANK:DB04711,http://purl.obolibrary.org/obo/DRUGBANK_DB04711,none +11.6173104,DRUGBANK:DB11727,http://purl.obolibrary.org/obo/DRUGBANK_DB11727,none +11.6173104,DRUGBANK:DB11994,http://purl.obolibrary.org/obo/DRUGBANK_DB11994,none +11.6173104,GO:0006117,http://purl.obolibrary.org/obo/GO_0006117,acetaldehyde metabolic process +11.6173104,GO:0006911,http://purl.obolibrary.org/obo/GO_0006911,"phagocytosis, engulfment" +11.6173104,GO:0008428,http://purl.obolibrary.org/obo/GO_0008428,ribonuclease inhibitor activity +11.6173104,GO:0010152,http://purl.obolibrary.org/obo/GO_0010152,pollen maturation +11.6173104,GO:0019761,http://purl.obolibrary.org/obo/GO_0019761,glucosinolate biosynthetic process +11.6173104,GO:0033076,http://purl.obolibrary.org/obo/GO_0033076,isoquinoline alkaloid metabolic process +11.6173104,GO:0042555,http://purl.obolibrary.org/obo/GO_0042555,MCM complex +11.6173104,GO:0045893,http://purl.obolibrary.org/obo/GO_0045893,"positive regulation of transcription, DNA-templated" +11.6173104,GO:0051952,http://purl.obolibrary.org/obo/GO_0051952,regulation of amine transport +11.6173104,HP:0002475,http://purl.obolibrary.org/obo/HP_0002475,Myelomeningocele +11.6173104,MONDO:0005470,http://purl.obolibrary.org/obo/MONDO_0005470,postprandial hypotension +11.6173104,MONDO:0009107,http://purl.obolibrary.org/obo/MONDO_0009107,diastrophic dysplasia +11.6173104,MONDO:0009685,http://purl.obolibrary.org/obo/MONDO_0009685,Miyoshi myopathy +11.6173104,MONDO:0010336,http://purl.obolibrary.org/obo/MONDO_0010336,orofaciodigital syndrome VIII +11.6173104,MONDO:0015999,http://purl.obolibrary.org/obo/MONDO_0015999,primary pigmented nodular adrenocortical disease +11.6173104,MONDO:0016763,http://purl.obolibrary.org/obo/MONDO_0016763,spondylometaphyseal dysplasia +11.6173104,MONDO:0018025,http://purl.obolibrary.org/obo/MONDO_0018025,chronic actinic dermatitis +11.6173104,MONDO:0021139,http://purl.obolibrary.org/obo/MONDO_0021139,congenital or acquired +11.6173104,NCBITaxon:11988,http://purl.obolibrary.org/obo/NCBITaxon_11988,none +11.6173104,NCBITaxon:33630,http://purl.obolibrary.org/obo/NCBITaxon_33630,Alveolata +11.6173104,NCBITaxon:452284,http://purl.obolibrary.org/obo/NCBITaxon_452284,Ustilaginomycotina +11.6173104,NCBITaxon:46607,http://purl.obolibrary.org/obo/NCBITaxon_46607,none +11.6173104,PR:000004760,http://purl.obolibrary.org/obo/PR_000004760,bleomycin hydrolase +11.6173104,PR:000005120,http://purl.obolibrary.org/obo/PR_000005120,cyclin-C +11.6173104,PR:000006716,http://purl.obolibrary.org/obo/PR_000006716,denticleless protein +11.6173104,PR:000007073,http://purl.obolibrary.org/obo/PR_000007073,enamelin +11.6173104,PR:000008076,http://purl.obolibrary.org/obo/PR_000008076,mannose-1-phosphate guanyltransferase beta +11.6173104,PR:000008490,http://purl.obolibrary.org/obo/PR_000008490,hepatoma-derived growth factor +11.6173104,PR:000010287,http://purl.obolibrary.org/obo/PR_000010287,mediator of RNA polymerase II transcription subunit 15 +11.6173104,PR:000013089,http://purl.obolibrary.org/obo/PR_000013089,periplakin +11.6173104,PR:000015685,http://purl.obolibrary.org/obo/PR_000015685,"beta-galactoside alpha-2,6-sialyltransferase 1" +11.6173104,PR:000015737,http://purl.obolibrary.org/obo/PR_000015737,stromal interaction molecule 2 +11.6173104,PR:000016065,http://purl.obolibrary.org/obo/PR_000016065,taste receptor type 2 member 13 +11.6173104,PR:000016704,http://purl.obolibrary.org/obo/PR_000016704,zinc finger transcription factor Trps1 +11.6173104,PR:000022760,http://purl.obolibrary.org/obo/PR_000022760,none +11.6173104,PR:O82498,http://purl.obolibrary.org/obo/PR_O82498,none +11.6173104,SO:0001172,http://purl.obolibrary.org/obo/SO_0001172,tRNA_region +11.6173104,UBERON:0000977,http://purl.obolibrary.org/obo/UBERON_0000977,pleura +11.6173104,UBERON:0006717,http://purl.obolibrary.org/obo/UBERON_0006717,autopodial skeleton +11.6173104,UBERON:0010410,http://purl.obolibrary.org/obo/UBERON_0010410,inguinal fat pad +11.6173104,UBERON:0035110,http://purl.obolibrary.org/obo/UBERON_0035110,lateral plantar nerve +11.6221297,CHEBI:14321,http://purl.obolibrary.org/obo/CHEBI_14321,glutamate(1-) +11.6221297,CHEBI:32441,http://purl.obolibrary.org/obo/CHEBI_32441,alanine residue +11.6221297,CHEBI:39026,http://purl.obolibrary.org/obo/CHEBI_39026,low-density lipoprotein +11.6221297,CHEBI:52136,http://purl.obolibrary.org/obo/CHEBI_52136,glufosinate +11.6221297,DRUGBANK:DB00003,http://purl.obolibrary.org/obo/DRUGBANK_DB00003,none +11.6221297,DRUGBANK:DB01763,http://purl.obolibrary.org/obo/DRUGBANK_DB01763,none +11.6221297,DRUGBANK:DB03523,http://purl.obolibrary.org/obo/DRUGBANK_DB03523,none +11.6221297,DRUGBANK:DB04819,http://purl.obolibrary.org/obo/DRUGBANK_DB04819,none +11.6221297,DRUGBANK:DB09230,http://purl.obolibrary.org/obo/DRUGBANK_DB09230,none +11.6221297,DRUGBANK:DB14026,http://purl.obolibrary.org/obo/DRUGBANK_DB14026,none +11.6221297,DRUGBANK:DB14170,http://purl.obolibrary.org/obo/DRUGBANK_DB14170,none +11.6221297,GO:0004080,http://purl.obolibrary.org/obo/GO_0004080,biotin-[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase activity +11.6221297,GO:0007124,http://purl.obolibrary.org/obo/GO_0007124,pseudohyphal growth +11.6221297,GO:0015819,http://purl.obolibrary.org/obo/GO_0015819,lysine transport +11.6221297,GO:0016241,http://purl.obolibrary.org/obo/GO_0016241,regulation of macroautophagy +11.6221297,GO:0034514,http://purl.obolibrary.org/obo/GO_0034514,mitochondrial unfolded protein response +11.6221297,GO:0043652,http://purl.obolibrary.org/obo/GO_0043652,engulfment of apoptotic cell +11.6221297,GO:0043754,http://purl.obolibrary.org/obo/GO_0043754,dihydrolipoyllysine-residue (2-methylpropanoyl)transferase activity +11.6221297,GO:0045981,http://purl.obolibrary.org/obo/GO_0045981,positive regulation of nucleotide metabolic process +11.6221297,GO:0046920,http://purl.obolibrary.org/obo/GO_0046920,alpha-(1->3)-fucosyltransferase activity +11.6221297,GO:0050707,http://purl.obolibrary.org/obo/GO_0050707,none +11.6221297,GO:0050886,http://purl.obolibrary.org/obo/GO_0050886,endocrine process +11.6221297,GO:0098827,http://purl.obolibrary.org/obo/GO_0098827,endoplasmic reticulum subcompartment +11.6221297,MONDO:0004930,http://purl.obolibrary.org/obo/MONDO_0004930,steroid-induced glaucoma +11.6221297,MONDO:0008636,http://purl.obolibrary.org/obo/MONDO_0008636,double uterus-hemivagina-renal agenesis syndrome +11.6221297,MONDO:0017022,http://purl.obolibrary.org/obo/MONDO_0017022,secondary interstitial lung disease specific to childhood associated with a systemic vasculitis +11.6221297,MONDO:0017313,http://purl.obolibrary.org/obo/MONDO_0017313,disorder of folate metabolism and transport +11.6221297,MONDO:0019167,http://purl.obolibrary.org/obo/MONDO_0019167,immunoglobulin a vasculitis +11.6221297,MONDO:0019399,http://purl.obolibrary.org/obo/MONDO_0019399,Isaac syndrome +11.6221297,NCBITaxon:12326,http://purl.obolibrary.org/obo/NCBITaxon_12326,none +11.6221297,NCBITaxon:4097,http://purl.obolibrary.org/obo/NCBITaxon_4097,none +11.6221297,PR:000000101,http://purl.obolibrary.org/obo/PR_000000101,latent TGF-beta-binding protein 1 +11.6221297,PR:000003528,http://purl.obolibrary.org/obo/PR_000003528,serotonin N-acetyltransferase +11.6221297,PR:000004338,http://purl.obolibrary.org/obo/PR_000004338,"Arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 1" +11.6221297,PR:000005873,http://purl.obolibrary.org/obo/PR_000005873,cysteine-rich protein 1 +11.6221297,PR:000006319,http://purl.obolibrary.org/obo/PR_000006319,m7GpppN-mRNA hydrolase +11.6221297,PR:000009768,http://purl.obolibrary.org/obo/PR_000009768,galactoside-binding soluble lectin 13 +11.6221297,PR:000013646,http://purl.obolibrary.org/obo/PR_000013646,prenylated Rab acceptor protein 1 +11.6221297,PR:000014396,http://purl.obolibrary.org/obo/PR_000014396,none +11.6221297,PR:000015173,http://purl.obolibrary.org/obo/PR_000015173,high affinity choline transporter 1 +11.6221297,PR:000016623,http://purl.obolibrary.org/obo/PR_000016623,triadin +11.6221297,PR:000029803,http://purl.obolibrary.org/obo/PR_000029803,transmembrane protein 201 +11.6221297,PR:P57097,http://purl.obolibrary.org/obo/PR_P57097,none +11.6221297,PR:Q60805,http://purl.obolibrary.org/obo/PR_Q60805,none +11.6221297,UBERON:0002448,http://purl.obolibrary.org/obo/UBERON_0002448,fungiform papilla +11.6221297,UBERON:0005193,http://purl.obolibrary.org/obo/UBERON_0005193,ethmoidal artery +11.6221297,UBERON:0015859,http://purl.obolibrary.org/obo/UBERON_0015859,hepatic lymph node +11.6221297,UBERON:0035111,http://purl.obolibrary.org/obo/UBERON_0035111,medial plantar nerve +11.6269723,DRUGBANK:DB00423,http://purl.obolibrary.org/obo/DRUGBANK_DB00423,none +11.6269723,DRUGBANK:DB01214,http://purl.obolibrary.org/obo/DRUGBANK_DB01214,none +11.6269723,DRUGBANK:DB01713,http://purl.obolibrary.org/obo/DRUGBANK_DB01713,none +11.6269723,DRUGBANK:DB04284,http://purl.obolibrary.org/obo/DRUGBANK_DB04284,none +11.6269723,DRUGBANK:DB09089,http://purl.obolibrary.org/obo/DRUGBANK_DB09089,none +11.6269723,DRUGBANK:DB13139,http://purl.obolibrary.org/obo/DRUGBANK_DB13139,none +11.6269723,DRUGBANK:DB13345,http://purl.obolibrary.org/obo/DRUGBANK_DB13345,none +11.6269723,GO:0004078,http://purl.obolibrary.org/obo/GO_0004078,biotin-[methylcrotonoyl-CoA-carboxylase] ligase activity +11.6269723,GO:0004453,http://purl.obolibrary.org/obo/GO_0004453,juvenile-hormone esterase activity +11.6269723,GO:0004862,http://purl.obolibrary.org/obo/GO_0004862,cAMP-dependent protein kinase inhibitor activity +11.6269723,GO:0006718,http://purl.obolibrary.org/obo/GO_0006718,juvenile hormone biosynthetic process +11.6269723,GO:0008169,http://purl.obolibrary.org/obo/GO_0008169,C-methyltransferase activity +11.6269723,GO:0010638,http://purl.obolibrary.org/obo/GO_0010638,positive regulation of organelle organization +11.6269723,GO:0019532,http://purl.obolibrary.org/obo/GO_0019532,oxalate transport +11.6269723,GO:0030315,http://purl.obolibrary.org/obo/GO_0030315,T-tubule +11.6269723,GO:0042638,http://purl.obolibrary.org/obo/GO_0042638,exogen +11.6269723,GO:0044026,http://purl.obolibrary.org/obo/GO_0044026,DNA hypermethylation +11.6269723,GO:0046685,http://purl.obolibrary.org/obo/GO_0046685,response to arsenic-containing substance +11.6269723,GO:0048515,http://purl.obolibrary.org/obo/GO_0048515,spermatid differentiation +11.6269723,GO:1904612,http://purl.obolibrary.org/obo/GO_1904612,"response to 2,3,7,8-tetrachlorodibenzodioxine" +11.6269723,MONDO:0003532,http://purl.obolibrary.org/obo/MONDO_0003532,breast papillary carcinoma +11.6269723,MONDO:0009902,http://purl.obolibrary.org/obo/MONDO_0009902,cutaneous porphyria +11.6269723,MONDO:0013304,http://purl.obolibrary.org/obo/MONDO_0013304,von Willebrand disease 2 +11.6269723,MONDO:0015207,http://purl.obolibrary.org/obo/MONDO_0015207,non-syndromic esophageal malformation +11.6269723,MONDO:0016093,http://purl.obolibrary.org/obo/MONDO_0016093,borderline epithelial tumor of ovary +11.6269723,MONDO:0019380,http://purl.obolibrary.org/obo/MONDO_0019380,western equine encephalitis +11.6269723,MONDO:0019384,http://purl.obolibrary.org/obo/MONDO_0019384,encephalitis lethargica +11.6269723,NCBITaxon:37762,http://purl.obolibrary.org/obo/NCBITaxon_37762,none +11.6269723,PR:000005010,http://purl.obolibrary.org/obo/PR_000005010,calpain-10 +11.6269723,PR:000006973,http://purl.obolibrary.org/obo/PR_000006973,eukaryotic translation initiation factor 3 subunit A +11.6269723,PR:000008991,http://purl.obolibrary.org/obo/PR_000008991,interleukin-1 receptor accessory protein +11.6269723,PR:000009204,http://purl.obolibrary.org/obo/PR_000009204,lysine-specific demethylase 5A +11.6269723,PR:000010216,http://purl.obolibrary.org/obo/PR_000010216,methyl-CpG-binding domain protein 3 +11.6269723,PR:000010231,http://purl.obolibrary.org/obo/PR_000010231,"malonyl-CoA-acyl carrier protein transacylase, mitochondrial" +11.6269723,PR:000010467,http://purl.obolibrary.org/obo/PR_000010467,membrane metallo-endopeptidase-like 1 +11.6269723,PR:000012484,http://purl.obolibrary.org/obo/PR_000012484,"high affinity cAMP-specific 3',5'-cyclic phosphodiesterase 7A" +11.6269723,PR:000013859,http://purl.obolibrary.org/obo/PR_000013859,reversion-inducing cysteine-rich protein with Kazal motifs +11.6269723,PR:000016358,http://purl.obolibrary.org/obo/PR_000016358,TERF1-interacting nuclear factor 2 +11.6269723,PR:000016481,http://purl.obolibrary.org/obo/PR_000016481,tumor necrosis factor receptor superfamily member 14 +11.6269723,PR:000017212,http://purl.obolibrary.org/obo/PR_000017212,lysine-specific demethylase 6A +11.6269723,PR:000022830,http://purl.obolibrary.org/obo/PR_000022830,none +11.6269723,PR:P05318,http://purl.obolibrary.org/obo/PR_P05318,none +11.6269723,PR:P17476,http://purl.obolibrary.org/obo/PR_P17476,none +11.6269723,PR:Q84M24,http://purl.obolibrary.org/obo/PR_Q84M24,none +11.6269723,PR:Q9LQ08,http://purl.obolibrary.org/obo/PR_Q9LQ08,none +11.6269723,UBERON:0003588,http://purl.obolibrary.org/obo/UBERON_0003588,forelimb connective tissue +11.6269723,UBERON:0005452,http://purl.obolibrary.org/obo/UBERON_0005452,hepatic cord +11.6269723,UBERON:0008778,http://purl.obolibrary.org/obo/UBERON_0008778,epaxial musculature +11.6269723,UBERON:0013759,http://purl.obolibrary.org/obo/UBERON_0013759,internal cervical os +11.6269723,UBERON:0015216,http://purl.obolibrary.org/obo/UBERON_0015216,nasal meatus +11.6318385,CL:0000287,http://purl.obolibrary.org/obo/CL_0000287,eye photoreceptor cell +11.6318385,DRUGBANK:DB01561,http://purl.obolibrary.org/obo/DRUGBANK_DB01561,none +11.6318385,DRUGBANK:DB04884,http://purl.obolibrary.org/obo/DRUGBANK_DB04884,none +11.6318385,DRUGBANK:DB10656,http://purl.obolibrary.org/obo/DRUGBANK_DB10656,none +11.6318385,DRUGBANK:DB16210,http://purl.obolibrary.org/obo/DRUGBANK_DB16210,none +11.6318385,GO:0004796,http://purl.obolibrary.org/obo/GO_0004796,thromboxane-A synthase activity +11.6318385,GO:0008517,http://purl.obolibrary.org/obo/GO_0008517,folic acid transmembrane transporter activity +11.6318385,GO:0016229,http://purl.obolibrary.org/obo/GO_0016229,steroid dehydrogenase activity +11.6318385,GO:0019870,http://purl.obolibrary.org/obo/GO_0019870,potassium channel inhibitor activity +11.6318385,GO:0030604,http://purl.obolibrary.org/obo/GO_0030604,1-deoxy-D-xylulose-5-phosphate reductoisomerase activity +11.6318385,GO:0031069,http://purl.obolibrary.org/obo/GO_0031069,hair follicle morphogenesis +11.6318385,GO:0036460,http://purl.obolibrary.org/obo/GO_0036460,cellular response to cell envelope stress +11.6318385,MONDO:0001558,http://purl.obolibrary.org/obo/MONDO_0001558,Potter sequence +11.6318385,MONDO:0005013,http://purl.obolibrary.org/obo/MONDO_0005013,dedifferentiated chondrosarcoma +11.6318385,MONDO:0007203,http://purl.obolibrary.org/obo/MONDO_0007203,blue rubber bleb nevus +11.6318385,MONDO:0007369,http://purl.obolibrary.org/obo/MONDO_0007369,hereditary coproporphyria +11.6318385,MONDO:0008514,http://purl.obolibrary.org/obo/MONDO_0008514,syndactyly type 3 +11.6318385,MONDO:0011724,http://purl.obolibrary.org/obo/MONDO_0011724,encephalopathy due to GLUT1 deficiency +11.6318385,MONDO:0012208,http://purl.obolibrary.org/obo/MONDO_0012208,congenital reticular ichthyosiform erythroderma +11.6318385,PR:000004424,http://purl.obolibrary.org/obo/PR_000004424,atlastin-1 +11.6318385,PR:000008260,http://purl.obolibrary.org/obo/PR_000008260,G protein-coupled receptor kinase 6 +11.6318385,PR:000009659,http://purl.obolibrary.org/obo/PR_000009659,laminin subunit gamma-2 +11.6318385,PR:000009692,http://purl.obolibrary.org/obo/PR_000009692,Delta(14)-sterol reductase LBR +11.6318385,PR:000010800,http://purl.obolibrary.org/obo/PR_000010800,Myb-binding protein 1A +11.6318385,PR:000022392,http://purl.obolibrary.org/obo/PR_000022392,none +11.6318385,PR:000031429,http://purl.obolibrary.org/obo/PR_000031429,zinc finger HIT domain-containing protein 2 +11.6318385,PR:Q12168,http://purl.obolibrary.org/obo/PR_Q12168,none +11.6318385,UBERON:0011582,http://purl.obolibrary.org/obo/UBERON_0011582,paired limb/fin skeleton +11.6367285,CHEBI:25810,http://purl.obolibrary.org/obo/CHEBI_25810,oxopurine +11.6367285,CHEBI:29016,http://purl.obolibrary.org/obo/CHEBI_29016,arginine +11.6367285,DRUGBANK:DB01618,http://purl.obolibrary.org/obo/DRUGBANK_DB01618,none +11.6367285,DRUGBANK:DB01749,http://purl.obolibrary.org/obo/DRUGBANK_DB01749,none +11.6367285,DRUGBANK:DB04053,http://purl.obolibrary.org/obo/DRUGBANK_DB04053,none +11.6367285,DRUGBANK:DB11737,http://purl.obolibrary.org/obo/DRUGBANK_DB11737,none +11.6367285,DRUGBANK:DB13871,http://purl.obolibrary.org/obo/DRUGBANK_DB13871,none +11.6367285,GO:0009231,http://purl.obolibrary.org/obo/GO_0009231,riboflavin biosynthetic process +11.6367285,GO:0009856,http://purl.obolibrary.org/obo/GO_0009856,pollination +11.6367285,GO:0043682,http://purl.obolibrary.org/obo/GO_0043682,P-type divalent copper transporter activity +11.6367285,GO:0050080,http://purl.obolibrary.org/obo/GO_0050080,malonyl-CoA decarboxylase activity +11.6367285,GO:1900544,http://purl.obolibrary.org/obo/GO_1900544,positive regulation of purine nucleotide metabolic process +11.6367285,GO:1901558,http://purl.obolibrary.org/obo/GO_1901558,response to metformin +11.6367285,MONDO:0001091,http://purl.obolibrary.org/obo/MONDO_0001091,lipoma of colon +11.6367285,MONDO:0003930,http://purl.obolibrary.org/obo/MONDO_0003930,non-invasive bladder urothelial carcinoma +11.6367285,MONDO:0004703,http://purl.obolibrary.org/obo/MONDO_0004703,bladder carcinoma in situ +11.6367285,MONDO:0006111,http://purl.obolibrary.org/obo/MONDO_0006111,bladder flat intraepithelial lesion +11.6367285,MONDO:0007500,http://purl.obolibrary.org/obo/MONDO_0007500,ear malformation +11.6367285,NCBITaxon:10988,http://purl.obolibrary.org/obo/NCBITaxon_10988,none +11.6367285,NCBITaxon:2743694,http://purl.obolibrary.org/obo/NCBITaxon_2743694,Cyprininae +11.6367285,PR:000004958,http://purl.obolibrary.org/obo/PR_000004958,calcyclin-binding protein +11.6367285,PR:000007595,http://purl.obolibrary.org/obo/PR_000007595,folate receptor beta +11.6367285,PR:000009963,http://purl.obolibrary.org/obo/PR_000009963,U6 snRNA-associated Sm-like protein LSm5 +11.6367285,PR:000010397,http://purl.obolibrary.org/obo/PR_000010397,E3 ubiquitin-protein ligase MIB2 +11.6367285,PR:000012624,http://purl.obolibrary.org/obo/PR_000012624,"CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase, mitochondrial" +11.6367285,PR:000013225,http://purl.obolibrary.org/obo/PR_000013225,5'-AMP-activated protein kinase subunit gamma-1 +11.6367285,PR:000015150,http://purl.obolibrary.org/obo/PR_000015150,proton-coupled folate transporter +11.6367285,PR:000015494,http://purl.obolibrary.org/obo/PR_000015494,spermatogenesis-associated protein 6 +11.6367285,PR:000016127,http://purl.obolibrary.org/obo/PR_000016127,tubulin-specific chaperone C +11.6367285,PR:000017281,http://purl.obolibrary.org/obo/PR_000017281,voltage-dependent anion-selective channel protein 2 +11.6367285,PR:O80760,http://purl.obolibrary.org/obo/PR_O80760,none +11.6367285,PR:P17207,http://purl.obolibrary.org/obo/PR_P17207,none +11.6367285,PR:Q1ZXE6,http://purl.obolibrary.org/obo/PR_Q1ZXE6,none +11.6367285,UBERON:0004262,http://purl.obolibrary.org/obo/UBERON_0004262,upper leg skin +11.6367285,UBERON:0004673,http://purl.obolibrary.org/obo/UBERON_0004673,trigeminal nerve root +11.6416425,CHEBI:16412,http://purl.obolibrary.org/obo/CHEBI_16412,lipopolysaccharide +11.6416425,CHEBI:26764,http://purl.obolibrary.org/obo/CHEBI_26764,steroid hormone +11.6416425,CHEBI:5119,http://purl.obolibrary.org/obo/CHEBI_5119,fluoxetine hydrochloride +11.6416425,DRUGBANK:DB02414,http://purl.obolibrary.org/obo/DRUGBANK_DB02414,none +11.6416425,DRUGBANK:DB04207,http://purl.obolibrary.org/obo/DRUGBANK_DB04207,none +11.6416425,DRUGBANK:DB06317,http://purl.obolibrary.org/obo/DRUGBANK_DB06317,none +11.6416425,DRUGBANK:DB06694,http://purl.obolibrary.org/obo/DRUGBANK_DB06694,none +11.6416425,DRUGBANK:DB06707,http://purl.obolibrary.org/obo/DRUGBANK_DB06707,none +11.6416425,DRUGBANK:DB11181,http://purl.obolibrary.org/obo/DRUGBANK_DB11181,none +11.6416425,DRUGBANK:DB12712,http://purl.obolibrary.org/obo/DRUGBANK_DB12712,none +11.6416425,DRUGBANK:DB13740,http://purl.obolibrary.org/obo/DRUGBANK_DB13740,none +11.6416425,DRUGBANK:DB15167,http://purl.obolibrary.org/obo/DRUGBANK_DB15167,none +11.6416425,GO:0007409,http://purl.obolibrary.org/obo/GO_0007409,axonogenesis +11.6416425,GO:0015245,http://purl.obolibrary.org/obo/GO_0015245,fatty acid transmembrane transporter activity +11.6416425,GO:0090385,http://purl.obolibrary.org/obo/GO_0090385,phagosome-lysosome fusion +11.6416425,GO:1990911,http://purl.obolibrary.org/obo/GO_1990911,response to psychosocial stress +11.6416425,HP:0000274,http://purl.obolibrary.org/obo/HP_0000274,Small face +11.6416425,HP:0002383,http://purl.obolibrary.org/obo/HP_0002383,Infectious encephalitis +11.6416425,MONDO:0001441,http://purl.obolibrary.org/obo/MONDO_0001441,pica disease +11.6416425,MONDO:0001858,http://purl.obolibrary.org/obo/MONDO_0001858,Tietze syndrome +11.6416425,MONDO:0003098,http://purl.obolibrary.org/obo/MONDO_0003098,mediastinal neural neoplasm +11.6416425,MONDO:0004201,http://purl.obolibrary.org/obo/MONDO_0004201,pituitary hypoplasia +11.6416425,MONDO:0008485,http://purl.obolibrary.org/obo/MONDO_0008485,sebocystomatosis +11.6416425,MONDO:0010094,http://purl.obolibrary.org/obo/MONDO_0010094,spondylocarpotarsal synostosis syndrome +11.6416425,MONDO:0025514,http://purl.obolibrary.org/obo/MONDO_0025514,livedoid vasculopathy +11.6416425,NCBITaxon:7956,http://purl.obolibrary.org/obo/NCBITaxon_7956,none +11.6416425,NCBITaxon:7957,http://purl.obolibrary.org/obo/NCBITaxon_7957,Carassius auratus +11.6416425,PR:000001629,http://purl.obolibrary.org/obo/PR_000001629,hydroxycarboxylic acid receptor 2 +11.6416425,PR:000001836,http://purl.obolibrary.org/obo/PR_000001836,CD7 molecule +11.6416425,PR:000001995,http://purl.obolibrary.org/obo/PR_000001995,C-C motif chemokine 23 +11.6416425,PR:000004859,http://purl.obolibrary.org/obo/PR_000004859,blood vessel epicardial substance +11.6416425,PR:000004883,http://purl.obolibrary.org/obo/PR_000004883,complement C1q tumor necrosis factor-related protein 1 +11.6416425,PR:000007147,http://purl.obolibrary.org/obo/PR_000007147,epidermal growth factor receptor kinase substrate 8 +11.6416425,PR:000007718,http://purl.obolibrary.org/obo/PR_000007718,frizzled-1 +11.6416425,PR:000008444,http://purl.obolibrary.org/obo/PR_000008444,hyaluronan and proteoglycan link protein 1 +11.6416425,PR:000008489,http://purl.obolibrary.org/obo/PR_000008489,histidine decarboxylase +11.6416425,PR:000009755,http://purl.obolibrary.org/obo/PR_000009755,inner nuclear membrane protein Man1 +11.6416425,PR:000010036,http://purl.obolibrary.org/obo/PR_000010036,metastasis-associated in colon cancer protein 1 +11.6416425,PR:000010099,http://purl.obolibrary.org/obo/PR_000010099,mastermind-like protein 2 +11.6416425,PR:000011432,http://purl.obolibrary.org/obo/PR_000011432,neural retina-specific leucine zipper protein +11.6416425,PR:000011631,http://purl.obolibrary.org/obo/PR_000011631,oligodendrocyte transcription factor 1 +11.6416425,PR:000012530,http://purl.obolibrary.org/obo/PR_000012530,astrocytic phosphoprotein PEA-15 +11.6416425,PR:000016827,http://purl.obolibrary.org/obo/PR_000016827,gamma-tubulin complex component 2 +11.6416425,PR:000023289,http://purl.obolibrary.org/obo/PR_000023289,none +11.6416425,PR:O23530,http://purl.obolibrary.org/obo/PR_O23530,none +11.6416425,PR:Q3BCU4,http://purl.obolibrary.org/obo/PR_Q3BCU4,none +11.6416425,PR:Q59SN8,http://purl.obolibrary.org/obo/PR_Q59SN8,none +11.6416425,SO:0001042,http://purl.obolibrary.org/obo/SO_0001042,phage_sequence +11.6416425,UBERON:0005868,http://purl.obolibrary.org/obo/UBERON_0005868,maxillary prominence +11.6416425,UBERON:0014386,http://purl.obolibrary.org/obo/UBERON_0014386,vertebral endplate +11.6416425,UBERON:4000162,http://purl.obolibrary.org/obo/UBERON_4000162,median fin +11.6465808,CHEBI:33240,http://purl.obolibrary.org/obo/CHEBI_33240,coordination entity +11.6465808,CHEBI:35267,http://purl.obolibrary.org/obo/CHEBI_35267,quaternary ammonium ion +11.6465808,CHEBI:68557,http://purl.obolibrary.org/obo/CHEBI_68557,bradykinin receptor antagonist +11.6465808,DRUGBANK:DB01250,http://purl.obolibrary.org/obo/DRUGBANK_DB01250,none +11.6465808,DRUGBANK:DB02074,http://purl.obolibrary.org/obo/DRUGBANK_DB02074,none +11.6465808,DRUGBANK:DB13249,http://purl.obolibrary.org/obo/DRUGBANK_DB13249,none +11.6465808,DRUGBANK:DB13965,http://purl.obolibrary.org/obo/DRUGBANK_DB13965,none +11.6465808,DRUGBANK:DB15541,http://purl.obolibrary.org/obo/DRUGBANK_DB15541,none +11.6465808,GO:0001774,http://purl.obolibrary.org/obo/GO_0001774,microglial cell activation +11.6465808,GO:0043129,http://purl.obolibrary.org/obo/GO_0043129,surfactant homeostasis +11.6465808,GO:0044302,http://purl.obolibrary.org/obo/GO_0044302,dentate gyrus mossy fiber +11.6465808,GO:0047429,http://purl.obolibrary.org/obo/GO_0047429,nucleoside-triphosphate diphosphatase activity +11.6465808,GO:0048875,http://purl.obolibrary.org/obo/GO_0048875,chemical homeostasis within a tissue +11.6465808,GO:0050892,http://purl.obolibrary.org/obo/GO_0050892,intestinal absorption +11.6465808,GO:0051794,http://purl.obolibrary.org/obo/GO_0051794,regulation of timing of catagen +11.6465808,GO:2000855,http://purl.obolibrary.org/obo/GO_2000855,regulation of mineralocorticoid secretion +11.6465808,MONDO:0001207,http://purl.obolibrary.org/obo/MONDO_0001207,neonatal respiratory failure +11.6465808,MONDO:0001567,http://purl.obolibrary.org/obo/MONDO_0001567,nephrocalcinosis +11.6465808,MONDO:0003079,http://purl.obolibrary.org/obo/MONDO_0003079,mastocytoma +11.6465808,MONDO:0003232,http://purl.obolibrary.org/obo/MONDO_0003232,alcoholic pancreatitis +11.6465808,MONDO:0003512,http://purl.obolibrary.org/obo/MONDO_0003512,mediastinal mesenchymal tumor +11.6465808,MONDO:0015779,http://purl.obolibrary.org/obo/MONDO_0015779,"45,X/46,XY mixed gonadal dysgenesis" +11.6465808,NCBITaxon:5052,http://purl.obolibrary.org/obo/NCBITaxon_5052,Aspergillus +11.6465808,PR:000000132,http://purl.obolibrary.org/obo/PR_000000132,thrombospondin-4 +11.6465808,PR:000006274,http://purl.obolibrary.org/obo/PR_000006274,death-associated protein 1 +11.6465808,PR:000007896,http://purl.obolibrary.org/obo/PR_000007896,glucokinase regulatory protein +11.6465808,PR:000009973,http://purl.obolibrary.org/obo/PR_000009973,latent-transforming growth factor beta-binding protein 2 +11.6465808,PR:000017685,http://purl.obolibrary.org/obo/PR_000017685,CAAX prenyl protease 1 +11.6465808,PR:P40495,http://purl.obolibrary.org/obo/PR_P40495,none +11.6465808,PR:Q9LF04,http://purl.obolibrary.org/obo/PR_Q9LF04,none +11.6465808,UBERON:0002581,http://purl.obolibrary.org/obo/UBERON_0002581,postcentral gyrus +11.6465808,UBERON:0003409,http://purl.obolibrary.org/obo/UBERON_0003409,gland of tongue +11.6465808,UBERON:0006804,http://purl.obolibrary.org/obo/UBERON_0006804,reticular tissue +11.6465808,UBERON:0008338,http://purl.obolibrary.org/obo/UBERON_0008338,plantar part of pes +11.6465808,UBERON:0010722,http://purl.obolibrary.org/obo/UBERON_0010722,accessory bone +11.6465808,UBERON:0014525,http://purl.obolibrary.org/obo/UBERON_0014525,limb of internal capsule of telencephalon +11.6515436,CHEBI:33415,http://purl.obolibrary.org/obo/CHEBI_33415,elemental carbon +11.6515436,DRUGBANK:DB00827,http://purl.obolibrary.org/obo/DRUGBANK_DB00827,none +11.6515436,DRUGBANK:DB01399,http://purl.obolibrary.org/obo/DRUGBANK_DB01399,none +11.6515436,DRUGBANK:DB06470,http://purl.obolibrary.org/obo/DRUGBANK_DB06470,none +11.6515436,DRUGBANK:DB11434,http://purl.obolibrary.org/obo/DRUGBANK_DB11434,none +11.6515436,GO:0008504,http://purl.obolibrary.org/obo/GO_0008504,monoamine transmembrane transporter activity +11.6515436,GO:0009022,http://purl.obolibrary.org/obo/GO_0009022,tRNA nucleotidyltransferase activity +11.6515436,GO:0009310,http://purl.obolibrary.org/obo/GO_0009310,amine catabolic process +11.6515436,GO:0009962,http://purl.obolibrary.org/obo/GO_0009962,regulation of flavonoid biosynthetic process +11.6515436,GO:0046473,http://purl.obolibrary.org/obo/GO_0046473,phosphatidic acid metabolic process +11.6515436,GO:1990773,http://purl.obolibrary.org/obo/GO_1990773,matrix metallopeptidase secretion +11.6515436,GO:2000027,http://purl.obolibrary.org/obo/GO_2000027,regulation of animal organ morphogenesis +11.6515436,HP:0001718,http://purl.obolibrary.org/obo/HP_0001718,Mitral stenosis +11.6515436,HP:0031481,http://purl.obolibrary.org/obo/HP_0031481,Abnormal mitral valve physiology +11.6515436,HP:0031650,http://purl.obolibrary.org/obo/HP_0031650,Abnormal atrioventricular valve physiology +11.6515436,MONDO:0001408,http://purl.obolibrary.org/obo/MONDO_0001408,ischemic neuropathy +11.6515436,MONDO:0003122,http://purl.obolibrary.org/obo/MONDO_0003122,striatonigral degeneration +11.6515436,MONDO:0004233,http://purl.obolibrary.org/obo/MONDO_0004233,childhood pleomorphic rhabdomyosarcoma +11.6515436,MONDO:0004766,http://purl.obolibrary.org/obo/MONDO_0004766,status asthmaticus +11.6515436,MONDO:0011230,http://purl.obolibrary.org/obo/MONDO_0011230,ossification of the posterior longitudinal ligament of the spine +11.6515436,MONDO:0017740,http://purl.obolibrary.org/obo/MONDO_0017740,disorder of protein N-glycosylation +11.6515436,MONDO:0018978,http://purl.obolibrary.org/obo/MONDO_0018978,IgG4-related mediastinitis +11.6515436,MONDO:0021605,http://purl.obolibrary.org/obo/MONDO_0021605,benign eyelid neoplasm +11.6515436,NCBITaxon:11656,http://purl.obolibrary.org/obo/NCBITaxon_11656,none +11.6515436,NCBITaxon:11772,http://purl.obolibrary.org/obo/NCBITaxon_11772,none +11.6515436,PR:000001305,http://purl.obolibrary.org/obo/PR_000001305,CD302 molecule +11.6515436,PR:000001367,http://purl.obolibrary.org/obo/PR_000001367,interleukin-12 receptor subunit beta-1 +11.6515436,PR:000005180,http://purl.obolibrary.org/obo/PR_000005180,cytidine deaminase +11.6515436,PR:000006335,http://purl.obolibrary.org/obo/PR_000006335,neuronal migration protein doublecortin +11.6515436,PR:000007511,http://purl.obolibrary.org/obo/PR_000007511,"fumarate hydratase, mitochondrial" +11.6515436,PR:000008209,http://purl.obolibrary.org/obo/PR_000008209,alanine aminotransferase 2 +11.6515436,PR:000010225,http://purl.obolibrary.org/obo/PR_000010225,lysophospholipid acyltransferase 2 +11.6515436,PR:000012615,http://purl.obolibrary.org/obo/PR_000012615,phosphoglucomutase-2 +11.6515436,PR:000013034,http://purl.obolibrary.org/obo/PR_000013034,POU domain class 2-associating factor 1 +11.6515436,PR:000014034,http://purl.obolibrary.org/obo/PR_000014034,prorelaxin H2 +11.6515436,PR:000015331,http://purl.obolibrary.org/obo/PR_000015331,SNF-related serine/threonine-protein kinase +11.6515436,PR:000017316,http://purl.obolibrary.org/obo/PR_000017316,DDB1- and CUL4-associated factor 1 +11.6515436,PR:000017373,http://purl.obolibrary.org/obo/PR_000017373,Wiskott-Aldrich syndrome protein family member 2 +11.6515436,PR:000023798,http://purl.obolibrary.org/obo/PR_000023798,none +11.6515436,PR:000029521,http://purl.obolibrary.org/obo/PR_000029521,gasdermin-D +11.6515436,PR:000050470,http://purl.obolibrary.org/obo/PR_000050470,none +11.6515436,PR:P28817,http://purl.obolibrary.org/obo/PR_P28817,none +11.6515436,PR:Q3B724,http://purl.obolibrary.org/obo/PR_Q3B724,none +11.6515436,PR:Q58FX0,http://purl.obolibrary.org/obo/PR_Q58FX0,none +11.6515436,PR:Q7GB25,http://purl.obolibrary.org/obo/PR_Q7GB25,none +11.6515436,PR:Q92398,http://purl.obolibrary.org/obo/PR_Q92398,none +11.6515436,PR:Q9C554,http://purl.obolibrary.org/obo/PR_Q9C554,none +11.6515436,SO:0000749,http://purl.obolibrary.org/obo/SO_0000749,plasmid_location +11.6515436,UBERON:0001170,http://purl.obolibrary.org/obo/UBERON_0001170,mesentery of small intestine +11.6515436,UBERON:0003088,http://purl.obolibrary.org/obo/UBERON_0003088,caudal vein +11.6515436,UBERON:0014761,http://purl.obolibrary.org/obo/UBERON_0014761,spinal trigeminal tract +11.6515436,UBERON:2001612,http://purl.obolibrary.org/obo/UBERON_2001612,sensory canal +11.6565311,DRUGBANK:DB01176,http://purl.obolibrary.org/obo/DRUGBANK_DB01176,none +11.6565311,DRUGBANK:DB01438,http://purl.obolibrary.org/obo/DRUGBANK_DB01438,none +11.6565311,DRUGBANK:DB03791,http://purl.obolibrary.org/obo/DRUGBANK_DB03791,none +11.6565311,DRUGBANK:DB10630,http://purl.obolibrary.org/obo/DRUGBANK_DB10630,none +11.6565311,DRUGBANK:DB11770,http://purl.obolibrary.org/obo/DRUGBANK_DB11770,none +11.6565311,DRUGBANK:DB13603,http://purl.obolibrary.org/obo/DRUGBANK_DB13603,none +11.6565311,GO:0010712,http://purl.obolibrary.org/obo/GO_0010712,regulation of collagen metabolic process +11.6565311,GO:0018237,http://purl.obolibrary.org/obo/GO_0018237,urease activator activity +11.6565311,GO:0019013,http://purl.obolibrary.org/obo/GO_0019013,viral nucleocapsid +11.6565311,GO:0019578,http://purl.obolibrary.org/obo/GO_0019578,aldaric acid biosynthetic process +11.6565311,GO:0019758,http://purl.obolibrary.org/obo/GO_0019758,glycosinolate biosynthetic process +11.6565311,GO:0022884,http://purl.obolibrary.org/obo/GO_0022884,macromolecule transmembrane transporter activity +11.6565311,GO:0042316,http://purl.obolibrary.org/obo/GO_0042316,penicillin metabolic process +11.6565311,GO:0045455,http://purl.obolibrary.org/obo/GO_0045455,ecdysteroid metabolic process +11.6565311,GO:0045913,http://purl.obolibrary.org/obo/GO_0045913,positive regulation of carbohydrate metabolic process +11.6565311,GO:0046164,http://purl.obolibrary.org/obo/GO_0046164,alcohol catabolic process +11.6565311,GO:0090568,http://purl.obolibrary.org/obo/GO_0090568,none +11.6565311,GO:1901879,http://purl.obolibrary.org/obo/GO_1901879,regulation of protein depolymerization +11.6565311,HP:0002242,http://purl.obolibrary.org/obo/HP_0002242,Abnormal intestine morphology +11.6565311,MONDO:0002154,http://purl.obolibrary.org/obo/MONDO_0002154,trichomoniasis +11.6565311,MONDO:0010523,http://purl.obolibrary.org/obo/MONDO_0010523,X-linked reticulate pigmentary disorder +11.6565311,MONDO:0015418,http://purl.obolibrary.org/obo/MONDO_0015418,lateral facial cleft +11.6565311,MONDO:0019232,http://purl.obolibrary.org/obo/MONDO_0019232,inborn disorder of peptide metabolism +11.6565311,MONDO:0021104,http://purl.obolibrary.org/obo/MONDO_0021104,alcoholic fatty liver disease +11.6565311,MONDO:0021578,http://purl.obolibrary.org/obo/MONDO_0021578,sternal neoplasm +11.6565311,NCBITaxon:12329,http://purl.obolibrary.org/obo/NCBITaxon_12329,none +11.6565311,NCBITaxon:147367,http://purl.obolibrary.org/obo/NCBITaxon_147367,none +11.6565311,NCBITaxon:147380,http://purl.obolibrary.org/obo/NCBITaxon_147380,none +11.6565311,NCBITaxon:1648021,http://purl.obolibrary.org/obo/NCBITaxon_1648021,none +11.6565311,NCBITaxon:4527,http://purl.obolibrary.org/obo/NCBITaxon_4527,none +11.6565311,PR:000003545,http://purl.obolibrary.org/obo/PR_000003545,phospholipid-transporting ATPase ABCA7 +11.6565311,PR:000005453,http://purl.obolibrary.org/obo/PR_000005453,acetylcholine receptor subunit alpha +11.6565311,PR:000007051,http://purl.obolibrary.org/obo/PR_000007051,crossover junction endonuclease EME1 +11.6565311,PR:000008131,http://purl.obolibrary.org/obo/PR_000008131,golgin subfamily A member 2 +11.6565311,PR:000009322,http://purl.obolibrary.org/obo/PR_000009322,kinesin-associated protein 3 +11.6565311,PR:000009743,http://purl.obolibrary.org/obo/PR_000009743,L-lactate dehydrogenase C chain +11.6565311,PR:000011047,http://purl.obolibrary.org/obo/PR_000011047,nuclear receptor corepressor 1 +11.6565311,PR:000012269,http://purl.obolibrary.org/obo/PR_000012269,poly(A) polymerase gamma +11.6565311,PR:000014429,http://purl.obolibrary.org/obo/PR_000014429,phosphatidylinositol-3-phosphatase SAC1 +11.6565311,PR:000017254,http://purl.obolibrary.org/obo/PR_000017254,vesicle-associated membrane protein 8 +11.6565311,PR:000023509,http://purl.obolibrary.org/obo/PR_000023509,none +11.6565311,PR:000044434,http://purl.obolibrary.org/obo/PR_000044434,none +11.6565311,PR:000044783,http://purl.obolibrary.org/obo/PR_000044783,leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein +11.6565311,PR:O22609,http://purl.obolibrary.org/obo/PR_O22609,none +11.6565311,PR:O88777,http://purl.obolibrary.org/obo/PR_O88777,none +11.6565311,SO:0000306,http://purl.obolibrary.org/obo/SO_0000306,methylated_DNA_base_feature +11.6565311,UBERON:0004626,http://purl.obolibrary.org/obo/UBERON_0004626,thoracic vertebra 1 +11.6615436,CHEBI:79046,http://purl.obolibrary.org/obo/CHEBI_79046,melatonin receptor agonist +11.6615436,DRUGBANK:DB00576,http://purl.obolibrary.org/obo/DRUGBANK_DB00576,none +11.6615436,DRUGBANK:DB03699,http://purl.obolibrary.org/obo/DRUGBANK_DB03699,none +11.6615436,DRUGBANK:DB04816,http://purl.obolibrary.org/obo/DRUGBANK_DB04816,none +11.6615436,DRUGBANK:DB09495,http://purl.obolibrary.org/obo/DRUGBANK_DB09495,none +11.6615436,DRUGBANK:DB12710,http://purl.obolibrary.org/obo/DRUGBANK_DB12710,none +11.6615436,GO:0008320,http://purl.obolibrary.org/obo/GO_0008320,protein transmembrane transporter activity +11.6615436,GO:0042318,http://purl.obolibrary.org/obo/GO_0042318,penicillin biosynthetic process +11.6615436,GO:0045670,http://purl.obolibrary.org/obo/GO_0045670,regulation of osteoclast differentiation +11.6615436,GO:0048366,http://purl.obolibrary.org/obo/GO_0048366,leaf development +11.6615436,GO:0071479,http://purl.obolibrary.org/obo/GO_0071479,cellular response to ionizing radiation +11.6615436,HP:0000553,http://purl.obolibrary.org/obo/HP_0000553,Abnormal uvea morphology +11.6615436,HP:0000811,http://purl.obolibrary.org/obo/HP_0000811,Abnormal external genitalia +11.6615436,HP:0100851,http://purl.obolibrary.org/obo/HP_0100851,Abnormal emotion/affect behavior +11.6615436,MONDO:0001040,http://purl.obolibrary.org/obo/MONDO_0001040,nasopharyngitis +11.6615436,MONDO:0002482,http://purl.obolibrary.org/obo/MONDO_0002482,nipple neoplasm +11.6615436,MONDO:0004033,http://purl.obolibrary.org/obo/MONDO_0004033,familial ovarian carcinoma +11.6615436,MONDO:0006056,http://purl.obolibrary.org/obo/MONDO_0006056,squamous cell breast carcinoma +11.6615436,MONDO:0006227,http://purl.obolibrary.org/obo/MONDO_0006227,gastric neuroendocrine tumor G1 +11.6615436,MONDO:0006344,http://purl.obolibrary.org/obo/MONDO_0006344,ovarian yolk sac tumor +11.6615436,MONDO:0018593,http://purl.obolibrary.org/obo/MONDO_0018593,primary polyarteritis nodosa +11.6615436,MONDO:0019342,http://purl.obolibrary.org/obo/MONDO_0019342,Seckel syndrome +11.6615436,MONDO:0019390,http://purl.obolibrary.org/obo/MONDO_0019390,Susac syndrome +11.6615436,MONDO:0022963,http://purl.obolibrary.org/obo/MONDO_0022963,desmoplastic infantile astrocytoma +11.6615436,NCBITaxon:10555,http://purl.obolibrary.org/obo/NCBITaxon_10555,none +11.6615436,PR:000001375,http://purl.obolibrary.org/obo/PR_000001375,interleukin-17 receptor A +11.6615436,PR:000002399,http://purl.obolibrary.org/obo/PR_000002399,caspase-10 isoform 4 +11.6615436,PR:000003614,http://purl.obolibrary.org/obo/PR_000003614,acid-sensing ion channel 2 +11.6615436,PR:000003911,http://purl.obolibrary.org/obo/PR_000003911,proline-rich AKT1 substrate 1 +11.6615436,PR:000005656,http://purl.obolibrary.org/obo/PR_000005656,CCR4-NOT transcription complex subunit 8 +11.6615436,PR:000006124,http://purl.obolibrary.org/obo/PR_000006124,cytochrome P450 2J2 +11.6615436,PR:000007041,http://purl.obolibrary.org/obo/PR_000007041,elongation of very long chain fatty acids protein 6 +11.6615436,PR:000007682,http://purl.obolibrary.org/obo/PR_000007682,follitropin subunit beta +11.6615436,PR:000008480,http://purl.obolibrary.org/obo/PR_000008480,histone deacetylase 11 +11.6615436,PR:000008848,http://purl.obolibrary.org/obo/PR_000008848,hyaluronidase-2 +11.6615436,PR:000014409,http://purl.obolibrary.org/obo/PR_000014409,protein S100-A2 +11.6615436,PR:000016697,http://purl.obolibrary.org/obo/PR_000016697,transient receptor potential cation channel subfamily M member 1 +11.6615436,PR:000024026,http://purl.obolibrary.org/obo/PR_000024026,none +11.6615436,PR:000029214,http://purl.obolibrary.org/obo/PR_000029214,none +11.6615436,PR:000031005,http://purl.obolibrary.org/obo/PR_000031005,autophagy-related protein 13 +11.6615436,PR:000044665,http://purl.obolibrary.org/obo/PR_000044665,glycine receptor protein +11.6615436,PR:Q9FK72,http://purl.obolibrary.org/obo/PR_Q9FK72,none +11.6615436,SO:0000571,http://purl.obolibrary.org/obo/SO_0000571,miRNA_encoding +11.6615436,SO:0001503,http://purl.obolibrary.org/obo/SO_0001503,processed_transcript +11.6615436,SO:0001687,http://purl.obolibrary.org/obo/SO_0001687,restriction_enzyme_recognition_site +11.6615436,UBERON:0000401,http://purl.obolibrary.org/obo/UBERON_0000401,mandibular ramus +11.6615436,UBERON:0003922,http://purl.obolibrary.org/obo/UBERON_0003922,pancreatic epithelial bud +11.6615436,UBERON:0010411,http://purl.obolibrary.org/obo/UBERON_0010411,retroperitoneal fat pad +11.6615436,UBERON:0018116,http://purl.obolibrary.org/obo/UBERON_0018116,right renal pelvis +11.6665814,CHEBI:24127,http://purl.obolibrary.org/obo/CHEBI_24127,fungicide +11.6665814,CL:0000448,http://purl.obolibrary.org/obo/CL_0000448,white fat cell +11.6665814,DRUGBANK:DB05015,http://purl.obolibrary.org/obo/DRUGBANK_DB05015,none +11.6665814,DRUGBANK:DB12160,http://purl.obolibrary.org/obo/DRUGBANK_DB12160,none +11.6665814,DRUGBANK:DB13841,http://purl.obolibrary.org/obo/DRUGBANK_DB13841,none +11.6665814,DRUGBANK:DB15488,http://purl.obolibrary.org/obo/DRUGBANK_DB15488,none +11.6665814,DRUGBANK:DB16364,http://purl.obolibrary.org/obo/DRUGBANK_DB16364,none +11.6665814,GO:0004151,http://purl.obolibrary.org/obo/GO_0004151,dihydroorotase activity +11.6665814,GO:0005333,http://purl.obolibrary.org/obo/GO_0005333,none +11.6665814,GO:0007041,http://purl.obolibrary.org/obo/GO_0007041,lysosomal transport +11.6665814,GO:0008815,http://purl.obolibrary.org/obo/GO_0008815,citrate (pro-3S)-lyase activity +11.6665814,GO:0010351,http://purl.obolibrary.org/obo/GO_0010351,lithium ion transport +11.6665814,GO:0010412,http://purl.obolibrary.org/obo/GO_0010412,mannan metabolic process +11.6665814,GO:0016710,http://purl.obolibrary.org/obo/GO_0016710,trans-cinnamate 4-monooxygenase activity +11.6665814,GO:0031052,http://purl.obolibrary.org/obo/GO_0031052,chromosome breakage +11.6665814,GO:0034204,http://purl.obolibrary.org/obo/GO_0034204,lipid translocation +11.6665814,GO:0035315,http://purl.obolibrary.org/obo/GO_0035315,hair cell differentiation +11.6665814,GO:0044246,http://purl.obolibrary.org/obo/GO_0044246,none +11.6665814,GO:0046556,http://purl.obolibrary.org/obo/GO_0046556,alpha-L-arabinofuranosidase activity +11.6665814,GO:0070189,http://purl.obolibrary.org/obo/GO_0070189,kynurenine metabolic process +11.6665814,GO:1901986,http://purl.obolibrary.org/obo/GO_1901986,response to ketamine +11.6665814,GO:1903725,http://purl.obolibrary.org/obo/GO_1903725,regulation of phospholipid metabolic process +11.6665814,MONDO:0002852,http://purl.obolibrary.org/obo/MONDO_0002852,mediastinum sarcoma +11.6665814,MONDO:0004875,http://purl.obolibrary.org/obo/MONDO_0004875,xanthogranulomatous cholecystitis +11.6665814,MONDO:0018649,http://purl.obolibrary.org/obo/MONDO_0018649,cerebral visual impairment +11.6665814,MONDO:0019149,http://purl.obolibrary.org/obo/MONDO_0019149,cholesteryl ester storage disease +11.6665814,MONDO:0019561,http://purl.obolibrary.org/obo/MONDO_0019561,lupus erythematosus panniculitis +11.6665814,MONDO:0020920,http://purl.obolibrary.org/obo/MONDO_0020920,escherichia coli infection +11.6665814,MONDO:0100164,http://purl.obolibrary.org/obo/MONDO_0100164,permanent neonatal diabetes mellitus +11.6665814,PR:000001476,http://purl.obolibrary.org/obo/PR_000001476,interleukin-29 +11.6665814,PR:000006179,http://purl.obolibrary.org/obo/PR_000006179,none +11.6665814,PR:000006692,http://purl.obolibrary.org/obo/PR_000006692,desmocollin-1 +11.6665814,PR:000011362,http://purl.obolibrary.org/obo/PR_000011362,nephrocystin-1 +11.6665814,PR:000012256,http://purl.obolibrary.org/obo/PR_000012256,"pantothenate kinase 2, mitochondrial" +11.6665814,PR:000013131,http://purl.obolibrary.org/obo/PR_000013131,nuclear inhibitor of protein phosphatase 1 +11.6665814,PR:000013965,http://purl.obolibrary.org/obo/PR_000013965,regulator of G-protein signaling 9 +11.6665814,PR:000014258,http://purl.obolibrary.org/obo/PR_000014258,40S ribosomal protein S16 +11.6665814,PR:000015038,http://purl.obolibrary.org/obo/PR_000015038,chloride anion exchanger +11.6665814,PR:000015798,http://purl.obolibrary.org/obo/PR_000015798,syntaxin-6 +11.6665814,PR:000029346,http://purl.obolibrary.org/obo/PR_000029346,coiled-coil domain-containing protein 6 +11.6665814,PR:000029695,http://purl.obolibrary.org/obo/PR_000029695,proline-rich transmembrane protein 2 +11.6665814,PR:O54839,http://purl.obolibrary.org/obo/PR_O54839,none +11.6665814,PR:P04989,http://purl.obolibrary.org/obo/PR_P04989,none +11.6665814,PR:P41000,http://purl.obolibrary.org/obo/PR_P41000,none +11.6665814,UBERON:0003055,http://purl.obolibrary.org/obo/UBERON_0003055,periderm +11.6665814,UBERON:0004641,http://purl.obolibrary.org/obo/UBERON_0004641,spleen capsule +11.6665814,UBERON:0005610,http://purl.obolibrary.org/obo/UBERON_0005610,iliac vein +11.6665814,UBERON:0006596,http://purl.obolibrary.org/obo/UBERON_0006596,presumptive blood +11.6665814,UBERON:0015878,http://purl.obolibrary.org/obo/UBERON_0015878,common iliac lymph node +11.6716447,CHEBI:22331,http://purl.obolibrary.org/obo/CHEBI_22331,alkylamines +11.6716447,CHEBI:48343,http://purl.obolibrary.org/obo/CHEBI_48343,disulfide +11.6716447,CHEBI:86029,http://purl.obolibrary.org/obo/CHEBI_86029,liver X receptor agonist +11.6716447,DRUGBANK:DB03897,http://purl.obolibrary.org/obo/DRUGBANK_DB03897,none +11.6716447,DRUGBANK:DB06705,http://purl.obolibrary.org/obo/DRUGBANK_DB06705,none +11.6716447,DRUGBANK:DB07232,http://purl.obolibrary.org/obo/DRUGBANK_DB07232,none +11.6716447,DRUGBANK:DB11464,http://purl.obolibrary.org/obo/DRUGBANK_DB11464,none +11.6716447,DRUGBANK:DB11776,http://purl.obolibrary.org/obo/DRUGBANK_DB11776,none +11.6716447,DRUGBANK:DB14016,http://purl.obolibrary.org/obo/DRUGBANK_DB14016,none +11.6716447,GO:0004794,http://purl.obolibrary.org/obo/GO_0004794,L-threonine ammonia-lyase activity +11.6716447,GO:0006096,http://purl.obolibrary.org/obo/GO_0006096,glycolytic process +11.6716447,GO:0008112,http://purl.obolibrary.org/obo/GO_0008112,nicotinamide N-methyltransferase activity +11.6716447,GO:0014003,http://purl.obolibrary.org/obo/GO_0014003,oligodendrocyte development +11.6716447,GO:0030112,http://purl.obolibrary.org/obo/GO_0030112,glycocalyx +11.6716447,GO:0033609,http://purl.obolibrary.org/obo/GO_0033609,oxalate metabolic process +11.6716447,GO:0042402,http://purl.obolibrary.org/obo/GO_0042402,cellular biogenic amine catabolic process +11.6716447,GO:0048069,http://purl.obolibrary.org/obo/GO_0048069,eye pigmentation +11.6716447,GO:2000858,http://purl.obolibrary.org/obo/GO_2000858,regulation of aldosterone secretion +11.6716447,HP:0002014,http://purl.obolibrary.org/obo/HP_0002014,Diarrhea +11.6716447,HP:0004298,http://purl.obolibrary.org/obo/HP_0004298,Abnormality of the abdominal wall +11.6716447,HP:0012824,http://purl.obolibrary.org/obo/HP_0012824,Severity +11.6716447,MONDO:0000415,http://purl.obolibrary.org/obo/MONDO_0000415,adolescence-adult electroclinical syndrome +11.6716447,MONDO:0004751,http://purl.obolibrary.org/obo/MONDO_0004751,disease of orbital part of eye adnexa +11.6716447,MONDO:0005160,http://purl.obolibrary.org/obo/MONDO_0005160,aortic aneurysm +11.6716447,MONDO:0010771,http://purl.obolibrary.org/obo/MONDO_0010771,histiocytoid cardiomyopathy +11.6716447,MONDO:0011426,http://purl.obolibrary.org/obo/MONDO_0011426,aceruloplasminemia +11.6716447,MONDO:0015700,http://purl.obolibrary.org/obo/MONDO_0015700,immunodeficiency due to a late component of complement deficiency +11.6716447,MONDO:0018072,http://purl.obolibrary.org/obo/MONDO_0018072,persistent truncus arteriosus +11.6716447,MONDO:0018695,http://purl.obolibrary.org/obo/MONDO_0018695,avian influenza +11.6716447,MONDO:0021123,http://purl.obolibrary.org/obo/MONDO_0021123,Ewing sarcoma/peripheral primitive neuroectodermal tumor of bone +11.6716447,NCBITaxon:11808,http://purl.obolibrary.org/obo/NCBITaxon_11808,none +11.6716447,NCBITaxon:23513,http://purl.obolibrary.org/obo/NCBITaxon_23513,none +11.6716447,PR:000002290,http://purl.obolibrary.org/obo/PR_000002290,TNF receptor-associated factor 4 +11.6716447,PR:000004282,http://purl.obolibrary.org/obo/PR_000004282,ADP-ribosylation factor-like protein 2 +11.6716447,PR:000005701,http://purl.obolibrary.org/obo/PR_000005701,collagen alpha-1(XVII) chain +11.6716447,PR:000006628,http://purl.obolibrary.org/obo/PR_000006628,docking protein 1 +11.6716447,PR:000008498,http://purl.obolibrary.org/obo/PR_000008498,HEAT repeat-containing protein 6 +11.6716447,PR:000009415,http://purl.obolibrary.org/obo/PR_000009415,kallikrein-5 +11.6716447,PR:000009603,http://purl.obolibrary.org/obo/PR_000009603,none +11.6716447,PR:000011356,http://purl.obolibrary.org/obo/PR_000011356,NPC1-like intracellular cholesterol transporter 1 +11.6716447,PR:000013179,http://purl.obolibrary.org/obo/PR_000013179,lysosomal Pro-X carboxypeptidase +11.6716447,PR:000013434,http://purl.obolibrary.org/obo/PR_000013434,protein-tyrosine kinase 6 +11.6716447,PR:000022234,http://purl.obolibrary.org/obo/PR_000022234,none +11.6716447,PR:000027842,http://purl.obolibrary.org/obo/PR_000027842,p53 complex +11.6716447,PR:Q8VXV4,http://purl.obolibrary.org/obo/PR_Q8VXV4,none +11.6716447,PR:Q9C826,http://purl.obolibrary.org/obo/PR_Q9C826,none +11.6716447,UBERON:0004381,http://purl.obolibrary.org/obo/UBERON_0004381,skeleton of limb +11.6716447,UBERON:0005492,http://purl.obolibrary.org/obo/UBERON_0005492,hyaloid vessel +11.6716447,UBERON:0009497,http://purl.obolibrary.org/obo/UBERON_0009497,epithelium of foregut-midgut junction +11.6716447,UBERON:0016914,http://purl.obolibrary.org/obo/UBERON_0016914,lamina lucida +11.6767338,DRUGBANK:DB01210,http://purl.obolibrary.org/obo/DRUGBANK_DB01210,none +11.6767338,DRUGBANK:DB09017,http://purl.obolibrary.org/obo/DRUGBANK_DB09017,none +11.6767338,DRUGBANK:DB11377,http://purl.obolibrary.org/obo/DRUGBANK_DB11377,none +11.6767338,DRUGBANK:DB16052,http://purl.obolibrary.org/obo/DRUGBANK_DB16052,none +11.6767338,GO:0003011,http://purl.obolibrary.org/obo/GO_0003011,involuntary skeletal muscle contraction +11.6767338,GO:0005992,http://purl.obolibrary.org/obo/GO_0005992,trehalose biosynthetic process +11.6767338,GO:0006891,http://purl.obolibrary.org/obo/GO_0006891,intra-Golgi vesicle-mediated transport +11.6767338,GO:0007020,http://purl.obolibrary.org/obo/GO_0007020,microtubule nucleation +11.6767338,GO:0030082,http://purl.obolibrary.org/obo/GO_0030082,B800-850 antenna complex +11.6767338,GO:0035623,http://purl.obolibrary.org/obo/GO_0035623,renal glucose absorption +11.6767338,GO:0042573,http://purl.obolibrary.org/obo/GO_0042573,retinoic acid metabolic process +11.6767338,GO:0042762,http://purl.obolibrary.org/obo/GO_0042762,regulation of sulfur metabolic process +11.6767338,GO:0043543,http://purl.obolibrary.org/obo/GO_0043543,protein acylation +11.6767338,GO:0044462,http://purl.obolibrary.org/obo/GO_0044462,none +11.6767338,GO:0051119,http://purl.obolibrary.org/obo/GO_0051119,sugar transmembrane transporter activity +11.6767338,GO:0071559,http://purl.obolibrary.org/obo/GO_0071559,response to transforming growth factor beta +11.6767338,GO:0098810,http://purl.obolibrary.org/obo/GO_0098810,neurotransmitter reuptake +11.6767338,GO:1902475,http://purl.obolibrary.org/obo/GO_1902475,L-alpha-amino acid transmembrane transport +11.6767338,HP:0011147,http://purl.obolibrary.org/obo/HP_0011147,Typical absence seizure +11.6767338,MONDO:0001704,http://purl.obolibrary.org/obo/MONDO_0001704,vaginal glandular neoplasm +11.6767338,MONDO:0003144,http://purl.obolibrary.org/obo/MONDO_0003144,medulloepithelioma +11.6767338,MONDO:0006091,http://purl.obolibrary.org/obo/MONDO_0006091,appendix neuroendocrine tumor G1 +11.6767338,MONDO:0008635,http://purl.obolibrary.org/obo/MONDO_0008635,uterine anomalies +11.6767338,MONDO:0009519,http://purl.obolibrary.org/obo/MONDO_0009519,letterer-Siwe disease +11.6767338,MONDO:0010012,http://purl.obolibrary.org/obo/MONDO_0010012,autoimmune polyendocrinopathy type 2 +11.6767338,MONDO:0016440,http://purl.obolibrary.org/obo/MONDO_0016440,elastofibroma dorsi +11.6767338,MONDO:0037743,http://purl.obolibrary.org/obo/MONDO_0037743,mediastinal soft tissue cancer +11.6767338,NCBITaxon:1903414,http://purl.obolibrary.org/obo/NCBITaxon_1903414,Morganellaceae +11.6767338,NCBITaxon:911341,http://purl.obolibrary.org/obo/NCBITaxon_911341,none +11.6767338,PR:000005836,http://purl.obolibrary.org/obo/PR_000005836,"carnitine O-palmitoyltransferase 1, muscle isoform" +11.6767338,PR:000006004,http://purl.obolibrary.org/obo/PR_000006004,cystathionine gamma-lyase +11.6767338,PR:000006438,http://purl.obolibrary.org/obo/PR_000006438,integral membrane protein DGCR2/IDD +11.6767338,PR:000006479,http://purl.obolibrary.org/obo/PR_000006479,death-inducer obliterator 1 +11.6767338,PR:000007872,http://purl.obolibrary.org/obo/PR_000007872,Golgi-specific brefeldin A-resistance guanine nucleotide exchange factor 1 +11.6767338,PR:000008531,http://purl.obolibrary.org/obo/PR_000008531,hereditary hemochromatosis protein +11.6767338,PR:000009430,http://purl.obolibrary.org/obo/PR_000009430,kininogen-1 +11.6767338,PR:000009652,http://purl.obolibrary.org/obo/PR_000009652,laminin subunit alpha-3 +11.6767338,PR:000015391,http://purl.obolibrary.org/obo/PR_000015391,sine oculis-binding protein +11.6767338,PR:000016631,http://purl.obolibrary.org/obo/PR_000016631,transcriptional-regulating factor 1 +11.6767338,PR:000016731,http://purl.obolibrary.org/obo/PR_000016731,translin +11.6767338,PR:000017330,http://purl.obolibrary.org/obo/PR_000017330,vacuolar protein sorting-associated protein 29 +11.6767338,PR:000023591,http://purl.obolibrary.org/obo/PR_000023591,none +11.6767338,PR:000023972,http://purl.obolibrary.org/obo/PR_000023972,none +11.6767338,PR:O81235,http://purl.obolibrary.org/obo/PR_O81235,none +11.6767338,PR:P00759,http://purl.obolibrary.org/obo/PR_P00759,none +11.6767338,PR:P15947,http://purl.obolibrary.org/obo/PR_P15947,none +11.6767338,SO:0000687,http://purl.obolibrary.org/obo/SO_0000687,deletion_junction +11.6767338,UBERON:0014378,http://purl.obolibrary.org/obo/UBERON_0014378,intrinsic muscle of pes +11.6767338,UBERON:0018550,http://purl.obolibrary.org/obo/UBERON_0018550,secondary incisor tooth +11.6818489,CL:0005024,http://purl.obolibrary.org/obo/CL_0005024,somatomotor neuron +11.6818489,DRUGBANK:DB14352,http://purl.obolibrary.org/obo/DRUGBANK_DB14352,none +11.6818489,GO:0014016,http://purl.obolibrary.org/obo/GO_0014016,neuroblast differentiation +11.6818489,GO:0014076,http://purl.obolibrary.org/obo/GO_0014076,response to fluoxetine +11.6818489,GO:0034312,http://purl.obolibrary.org/obo/GO_0034312,diol biosynthetic process +11.6818489,GO:0045111,http://purl.obolibrary.org/obo/GO_0045111,intermediate filament cytoskeleton +11.6818489,GO:0050649,http://purl.obolibrary.org/obo/GO_0050649,testosterone 6-beta-hydroxylase activity +11.6818489,GO:0051339,http://purl.obolibrary.org/obo/GO_0051339,regulation of lyase activity +11.6818489,GO:0071782,http://purl.obolibrary.org/obo/GO_0071782,endoplasmic reticulum tubular network +11.6818489,HP:0000777,http://purl.obolibrary.org/obo/HP_0000777,Abnormality of the thymus +11.6818489,MONDO:0000309,http://purl.obolibrary.org/obo/MONDO_0000309,aniseikonia +11.6818489,MONDO:0004572,http://purl.obolibrary.org/obo/MONDO_0004572,cyclothymic disorder +11.6818489,MONDO:0008797,http://purl.obolibrary.org/obo/MONDO_0008797,anodontia +11.6818489,MONDO:0009443,http://purl.obolibrary.org/obo/MONDO_0009443,autosomal recessive congenital ichthyosis 4B +11.6818489,MONDO:0010890,http://purl.obolibrary.org/obo/MONDO_0010890,acrocardiofacial syndrome +11.6818489,MONDO:0011026,http://purl.obolibrary.org/obo/MONDO_0011026,autosomal recessive congenital ichthyosis 4A +11.6818489,MONDO:0011438,http://purl.obolibrary.org/obo/MONDO_0011438,acne +11.6818489,MONDO:0015589,http://purl.obolibrary.org/obo/MONDO_0015589,paraneoplastic limbic encephalitis +11.6818489,MONDO:0016723,http://purl.obolibrary.org/obo/MONDO_0016723,pineocytoma +11.6818489,MONDO:0019365,http://purl.obolibrary.org/obo/MONDO_0019365,scrub typhus +11.6818489,MONDO:0600003,http://purl.obolibrary.org/obo/MONDO_0600003,bacterial hemorrhagic fever +11.6818489,NCBITaxon:1489892,http://purl.obolibrary.org/obo/NCBITaxon_1489892,none +11.6818489,NCBITaxon:4530,http://purl.obolibrary.org/obo/NCBITaxon_4530,none +11.6818489,PR:000001988,http://purl.obolibrary.org/obo/PR_000001988,C-C motif chemokine 16 +11.6818489,PR:000005247,http://purl.obolibrary.org/obo/PR_000005247,cadherin-6 +11.6818489,PR:000005427,http://purl.obolibrary.org/obo/PR_000005427,choline kinase alpha +11.6818489,PR:000006047,http://purl.obolibrary.org/obo/PR_000006047,cullin-2 +11.6818489,PR:000007526,http://purl.obolibrary.org/obo/PR_000007526,pre-mRNA 3'-end-processing factor FIP1 +11.6818489,PR:000010005,http://purl.obolibrary.org/obo/PR_000010005,acyl-protein thioesterase 1 +11.6818489,PR:000013024,http://purl.obolibrary.org/obo/PR_000013024,ribonucleases P/MRP protein subunit POP1 +11.6818489,PR:000013944,http://purl.obolibrary.org/obo/PR_000013944,regulator of G-protein signaling 1 +11.6818489,PR:000014213,http://purl.obolibrary.org/obo/PR_000014213,60S ribosomal protein L30 +11.6818489,PR:000014655,http://purl.obolibrary.org/obo/PR_000014655,neuronal-specific septin-3 +11.6818489,PR:000014723,http://purl.obolibrary.org/obo/PR_000014723,N-lysine methyltransferase KMT5A +11.6818489,PR:000015585,http://purl.obolibrary.org/obo/PR_000015585,protein sprouty homolog 4 +11.6818489,PR:000016969,http://purl.obolibrary.org/obo/PR_000016969,ubiquitin-conjugating enzyme E2 D2 +11.6818489,PR:000018234,http://purl.obolibrary.org/obo/PR_000018234,zinc finger SWIM domain-containing protein 7 +11.6818489,PR:000022297,http://purl.obolibrary.org/obo/PR_000022297,chaperone protein ClpB +11.6818489,PR:000027964,http://purl.obolibrary.org/obo/PR_000027964,none +11.6818489,PR:000029711,http://purl.obolibrary.org/obo/PR_000029711,RNA-binding protein 3 +11.6818489,PR:P54623,http://purl.obolibrary.org/obo/PR_P54623,none +11.6818489,PR:Q8IRY7,http://purl.obolibrary.org/obo/PR_Q8IRY7,none +11.6818489,SO:0001036,http://purl.obolibrary.org/obo/SO_0001036,arginyl_tRNA +11.6818489,UBERON:0002454,http://purl.obolibrary.org/obo/UBERON_0002454,dorsal metacarpal artery +11.6818489,UBERON:0002967,http://purl.obolibrary.org/obo/UBERON_0002967,cingulate gyrus +11.6818489,UBERON:0004161,http://purl.obolibrary.org/obo/UBERON_0004161,septum transversum +11.6818489,UBERON:0013585,http://purl.obolibrary.org/obo/UBERON_0013585,metapodium bone 5 +11.6818489,UBERON:0016404,http://purl.obolibrary.org/obo/UBERON_0016404,cervical vertebral arch joint +11.6869903,CHEBI:37739,http://purl.obolibrary.org/obo/CHEBI_37739,glycerophospholipid +11.6869903,CHEBI:73296,http://purl.obolibrary.org/obo/CHEBI_73296,cholecystokinin antagonist +11.6869903,DRUGBANK:DB01620,http://purl.obolibrary.org/obo/DRUGBANK_DB01620,none +11.6869903,DRUGBANK:DB06699,http://purl.obolibrary.org/obo/DRUGBANK_DB06699,none +11.6869903,DRUGBANK:DB09487,http://purl.obolibrary.org/obo/DRUGBANK_DB09487,none +11.6869903,DRUGBANK:DB13524,http://purl.obolibrary.org/obo/DRUGBANK_DB13524,none +11.6869903,GO:0000326,http://purl.obolibrary.org/obo/GO_0000326,protein storage vacuole +11.6869903,GO:0002086,http://purl.obolibrary.org/obo/GO_0002086,diaphragm contraction +11.6869903,GO:0002347,http://purl.obolibrary.org/obo/GO_0002347,response to tumor cell +11.6869903,GO:0003016,http://purl.obolibrary.org/obo/GO_0003016,respiratory system process +11.6869903,GO:0008859,http://purl.obolibrary.org/obo/GO_0008859,exoribonuclease II activity +11.6869903,GO:0016647,http://purl.obolibrary.org/obo/GO_0016647,"oxidoreductase activity, acting on the CH-NH group of donors, oxygen as acceptor" +11.6869903,GO:0019068,http://purl.obolibrary.org/obo/GO_0019068,virion assembly +11.6869903,GO:0031114,http://purl.obolibrary.org/obo/GO_0031114,regulation of microtubule depolymerization +11.6869903,GO:0042119,http://purl.obolibrary.org/obo/GO_0042119,neutrophil activation +11.6869903,GO:0051090,http://purl.obolibrary.org/obo/GO_0051090,regulation of DNA-binding transcription factor activity +11.6869903,GO:1900620,http://purl.obolibrary.org/obo/GO_1900620,acetate ester biosynthetic process +11.6869903,HP:0000005,http://purl.obolibrary.org/obo/HP_0000005,Mode of inheritance +11.6869903,HP:0010866,http://purl.obolibrary.org/obo/HP_0010866,Abdominal wall defect +11.6869903,MONDO:0000241,http://purl.obolibrary.org/obo/MONDO_0000241,Keshan disease +11.6869903,MONDO:0002937,http://purl.obolibrary.org/obo/MONDO_0002937,nodular basal cell carcinoma +11.6869903,MONDO:0007753,http://purl.obolibrary.org/obo/MONDO_0007753,Frey syndrome +11.6869903,MONDO:0011146,http://purl.obolibrary.org/obo/MONDO_0011146,tetrasomy 12p +11.6869903,MONDO:0015975,http://purl.obolibrary.org/obo/MONDO_0015975,hyper-IgM syndrome with susceptibility to opportunistic infections +11.6869903,MONDO:0019339,http://purl.obolibrary.org/obo/MONDO_0019339,"47,XYY syndrome" +11.6869903,MONDO:0024892,http://purl.obolibrary.org/obo/MONDO_0024892,soft tissue amyloid neoplasm +11.6869903,NCBITaxon:29261,http://purl.obolibrary.org/obo/NCBITaxon_29261,none +11.6869903,NCBITaxon:35567,http://purl.obolibrary.org/obo/NCBITaxon_35567,none +11.6869903,PR:000001171,http://purl.obolibrary.org/obo/PR_000001171,B1 bradykinin receptor +11.6869903,PR:000001184,http://purl.obolibrary.org/obo/PR_000001184,alpha-1B adrenergic receptor +11.6869903,PR:000001287,http://purl.obolibrary.org/obo/PR_000001287,CD72 molecule +11.6869903,PR:000004148,http://purl.obolibrary.org/obo/PR_000004148,DNA dC->dU-editing enzyme APOBEC-3F +11.6869903,PR:000004651,http://purl.obolibrary.org/obo/PR_000004651,large proline-rich protein BAT3 +11.6869903,PR:000007084,http://purl.obolibrary.org/obo/PR_000007084,mitochondrial enolase superfamily member 1 +11.6869903,PR:000010007,http://purl.obolibrary.org/obo/PR_000010007,phospholipase A2 group XV +11.6869903,PR:000010334,http://purl.obolibrary.org/obo/PR_000010334,mesoderm-specific transcript protein +11.6869903,PR:000012976,http://purl.obolibrary.org/obo/PR_000012976,DNA polymerase iota +11.6869903,PR:000012983,http://purl.obolibrary.org/obo/PR_000012983,DNA-directed RNA polymerase I subunit RPA2 +11.6869903,PR:000013527,http://purl.obolibrary.org/obo/PR_000013527,pregnancy zone protein +11.6869903,PR:000014809,http://purl.obolibrary.org/obo/PR_000014809,SH2B adapter protein 1 +11.6869903,PR:000023789,http://purl.obolibrary.org/obo/PR_000023789,none +11.6869903,PR:000023965,http://purl.obolibrary.org/obo/PR_000023965,none +11.6869903,PR:000029416,http://purl.obolibrary.org/obo/PR_000029416,DnaJ homolog subfamily B member 11 +11.6869903,PR:P12411,http://purl.obolibrary.org/obo/PR_P12411,none +11.6869903,PR:P21276,http://purl.obolibrary.org/obo/PR_P21276,none +11.6869903,PR:P27697,http://purl.obolibrary.org/obo/PR_P27697,none +11.6869903,PR:P52808,http://purl.obolibrary.org/obo/PR_P52808,none +11.6869903,PR:P80276,http://purl.obolibrary.org/obo/PR_P80276,none +11.6869903,PR:Q6AZ28,http://purl.obolibrary.org/obo/PR_Q6AZ28,none +11.6869903,SO:0000259,http://purl.obolibrary.org/obo/SO_0000259,glutaminyl_tRNA +11.6869903,SO:0001856,http://purl.obolibrary.org/obo/SO_0001856,CCAAT_motif +11.6869903,UBERON:0001029,http://purl.obolibrary.org/obo/UBERON_0001029,none +11.6869903,UBERON:0003073,http://purl.obolibrary.org/obo/UBERON_0003073,lens placode +11.6869903,UBERON:0005728,http://purl.obolibrary.org/obo/UBERON_0005728,extraembryonic mesoderm +11.6869903,UBERON:0005975,http://purl.obolibrary.org/obo/UBERON_0005975,hair follicle bulge +11.6869903,UBERON:0009919,http://purl.obolibrary.org/obo/UBERON_0009919,ureter smooth muscle +11.6869903,UBERON:0018680,http://purl.obolibrary.org/obo/UBERON_0018680,greater splanchnic nerve +11.6921583,CHEBI:33515,http://purl.obolibrary.org/obo/CHEBI_33515,transition element cation +11.6921583,CHEBI:83317,http://purl.obolibrary.org/obo/CHEBI_83317,sterol biosynthesis inhibitor +11.6921583,DRUGBANK:DB00039,http://purl.obolibrary.org/obo/DRUGBANK_DB00039,none +11.6921583,DRUGBANK:DB04461,http://purl.obolibrary.org/obo/DRUGBANK_DB04461,none +11.6921583,DRUGBANK:DB06268,http://purl.obolibrary.org/obo/DRUGBANK_DB06268,none +11.6921583,DRUGBANK:DB10980,http://purl.obolibrary.org/obo/DRUGBANK_DB10980,none +11.6921583,DRUGBANK:DB12466,http://purl.obolibrary.org/obo/DRUGBANK_DB12466,none +11.6921583,DRUGBANK:DB12766,http://purl.obolibrary.org/obo/DRUGBANK_DB12766,none +11.6921583,DRUGBANK:DB13882,http://purl.obolibrary.org/obo/DRUGBANK_DB13882,none +11.6921583,DRUGBANK:DB15304,http://purl.obolibrary.org/obo/DRUGBANK_DB15304,none +11.6921583,DRUGBANK:DB15461,http://purl.obolibrary.org/obo/DRUGBANK_DB15461,none +11.6921583,GO:0002114,http://purl.obolibrary.org/obo/GO_0002114,interleukin-33 receptor activity +11.6921583,GO:0008049,http://purl.obolibrary.org/obo/GO_0008049,male courtship behavior +11.6921583,GO:0046068,http://purl.obolibrary.org/obo/GO_0046068,cGMP metabolic process +11.6921583,GO:0050920,http://purl.obolibrary.org/obo/GO_0050920,regulation of chemotaxis +11.6921583,GO:1990007,http://purl.obolibrary.org/obo/GO_1990007,membrane stack +11.6921583,MONDO:0001301,http://purl.obolibrary.org/obo/MONDO_0001301,rumination disorder +11.6921583,MONDO:0002314,http://purl.obolibrary.org/obo/MONDO_0002314,chronic conjunctivitis +11.6921583,MONDO:0016794,http://purl.obolibrary.org/obo/MONDO_0016794,maternally-inherited mitochondrial myopathy +11.6921583,MONDO:0020653,http://purl.obolibrary.org/obo/MONDO_0020653,vaginal adenocarcinoma +11.6921583,MONDO:0100059,http://purl.obolibrary.org/obo/MONDO_0100059,hypereosinophilia of undetermined significance +11.6921583,NCBITaxon:1489900,http://purl.obolibrary.org/obo/NCBITaxon_1489900,none +11.6921583,NCBITaxon:64286,http://purl.obolibrary.org/obo/NCBITaxon_64286,none +11.6921583,PR:000001455,http://purl.obolibrary.org/obo/PR_000001455,frizzled-9 +11.6921583,PR:000005574,http://purl.obolibrary.org/obo/PR_000005574,chloride intracellular channel protein 1 +11.6921583,PR:000005803,http://purl.obolibrary.org/obo/PR_000005803,carboxypeptidase D +11.6921583,PR:000009057,http://purl.obolibrary.org/obo/PR_000009057,insulin-induced gene 2 protein +11.6921583,PR:000009457,http://purl.obolibrary.org/obo/PR_000009457,"keratin, type I cytoskeletal 17" +11.6921583,PR:000012734,http://purl.obolibrary.org/obo/PR_000012734,serine/threonine-protein kinase Pim-3 +11.6921583,PR:000014890,http://purl.obolibrary.org/obo/PR_000014890,"NAD-dependent protein lipoamidase sirtuin-4, mitochondrial" +11.6921583,PR:000015069,http://purl.obolibrary.org/obo/PR_000015069,"solute carrier family 2, facilitated glucose transporter member 6" +11.6921583,PR:000015802,http://purl.obolibrary.org/obo/PR_000015802,syntaxin-binding protein 3 +11.6921583,PR:000016524,http://purl.obolibrary.org/obo/PR_000016524,tenascin-X +11.6921583,PR:000029373,http://purl.obolibrary.org/obo/PR_000029373,cytospin-B +11.6921583,PR:000031520,http://purl.obolibrary.org/obo/PR_000031520,trafficking protein particle complex subunit 11 +11.6921583,PR:000032719,http://purl.obolibrary.org/obo/PR_000032719,OTU domain-containing protein 4 +11.6921583,PR:P0C644,http://purl.obolibrary.org/obo/PR_P0C644,none +11.6921583,PR:P34160,http://purl.obolibrary.org/obo/PR_P34160,none +11.6921583,PR:Q9M591,http://purl.obolibrary.org/obo/PR_Q9M591,none +11.6921583,PR:Q9SE50,http://purl.obolibrary.org/obo/PR_Q9SE50,none +11.6921583,UBERON:0001429,http://purl.obolibrary.org/obo/UBERON_0001429,pisiform +11.6921583,UBERON:0004186,http://purl.obolibrary.org/obo/UBERON_0004186,olfactory bulb mitral cell layer +11.6921583,UBERON:0006949,http://purl.obolibrary.org/obo/UBERON_0006949,cervical loop +11.6921583,UBERON:0007997,http://purl.obolibrary.org/obo/UBERON_0007997,sesamoid bone of manus +11.6921583,UBERON:0008861,http://purl.obolibrary.org/obo/UBERON_0008861,pyloric gastric gland +11.6921583,UBERON:3010603,http://purl.obolibrary.org/obo/UBERON_3010603,body gland +11.6973531,CHEBI:17790,http://purl.obolibrary.org/obo/CHEBI_17790,methanol +11.6973531,CL:0002069,http://purl.obolibrary.org/obo/CL_0002069,type II vestibular sensory cell +11.6973531,CL:0002259,http://purl.obolibrary.org/obo/CL_0002259,neuroepithelial stem cell +11.6973531,DRUGBANK:DB01433,http://purl.obolibrary.org/obo/DRUGBANK_DB01433,none +11.6973531,DRUGBANK:DB01588,http://purl.obolibrary.org/obo/DRUGBANK_DB01588,none +11.6973531,DRUGBANK:DB02935,http://purl.obolibrary.org/obo/DRUGBANK_DB02935,none +11.6973531,DRUGBANK:DB04946,http://purl.obolibrary.org/obo/DRUGBANK_DB04946,none +11.6973531,DRUGBANK:DB06274,http://purl.obolibrary.org/obo/DRUGBANK_DB06274,none +11.6973531,DRUGBANK:DB10822,http://purl.obolibrary.org/obo/DRUGBANK_DB10822,none +11.6973531,GO:0002685,http://purl.obolibrary.org/obo/GO_0002685,regulation of leukocyte migration +11.6973531,GO:0009044,http://purl.obolibrary.org/obo/GO_0009044,"xylan 1,4-beta-xylosidase activity" +11.6973531,GO:0009245,http://purl.obolibrary.org/obo/GO_0009245,lipid A biosynthetic process +11.6973531,GO:0010224,http://purl.obolibrary.org/obo/GO_0010224,response to UV-B +11.6973531,GO:0016728,http://purl.obolibrary.org/obo/GO_0016728,"oxidoreductase activity, acting on CH or CH2 groups, disulfide as acceptor" +11.6973531,GO:0031670,http://purl.obolibrary.org/obo/GO_0031670,cellular response to nutrient +11.6973531,GO:0032541,http://purl.obolibrary.org/obo/GO_0032541,cortical endoplasmic reticulum +11.6973531,GO:0045124,http://purl.obolibrary.org/obo/GO_0045124,regulation of bone resorption +11.6973531,GO:0045979,http://purl.obolibrary.org/obo/GO_0045979,positive regulation of nucleoside metabolic process +11.6973531,GO:0046493,http://purl.obolibrary.org/obo/GO_0046493,lipid A metabolic process +11.6973531,GO:0070187,http://purl.obolibrary.org/obo/GO_0070187,shelterin complex +11.6973531,GO:1903580,http://purl.obolibrary.org/obo/GO_1903580,positive regulation of ATP metabolic process +11.6973531,MONDO:0002625,http://purl.obolibrary.org/obo/MONDO_0002625,Ewing sarcoma of bone +11.6973531,MONDO:0005563,http://purl.obolibrary.org/obo/MONDO_0005563,nut midline carcinoma +11.6973531,MONDO:0005968,http://purl.obolibrary.org/obo/MONDO_0005968,sporotrichosis +11.6973531,MONDO:0006650,http://purl.obolibrary.org/obo/MONDO_0006650,anterior spinal artery syndrome +11.6973531,MONDO:0008346,http://purl.obolibrary.org/obo/MONDO_0008346,pulmonary hemosiderosis +11.6973531,MONDO:0008769,http://purl.obolibrary.org/obo/MONDO_0008769,neuronal ceroid lipofuscinosis 2 +11.6973531,MONDO:0010626,http://purl.obolibrary.org/obo/MONDO_0010626,hyper-IgM syndrome type 1 +11.6973531,MONDO:0013869,http://purl.obolibrary.org/obo/MONDO_0013869,adenine phosphoribosyltransferase deficiency +11.6973531,NCBITaxon:291027,http://purl.obolibrary.org/obo/NCBITaxon_291027,none +11.6973531,NCBITaxon:3804,http://purl.obolibrary.org/obo/NCBITaxon_3804,none +11.6973531,PR:000000696,http://purl.obolibrary.org/obo/PR_000000696,cyclic nucleotide-gated cation channel alpha-3 +11.6973531,PR:000001185,http://purl.obolibrary.org/obo/PR_000001185,alpha-1D adrenergic receptor +11.6973531,PR:000004118,http://purl.obolibrary.org/obo/PR_000004118,amyloid-beta A4 precursor protein-binding family B member 1 +11.6973531,PR:000005523,http://purl.obolibrary.org/obo/PR_000005523,calcium-activated chloride channel regulator 1 +11.6973531,PR:000007882,http://purl.obolibrary.org/obo/PR_000007882,homeobox protein GBX-2 +11.6973531,PR:000008474,http://purl.obolibrary.org/obo/PR_000008474,hematopoietic lineage cell-specific protein +11.6973531,PR:000009656,http://purl.obolibrary.org/obo/PR_000009656,laminin subunit beta-3 +11.6973531,PR:000009775,http://purl.obolibrary.org/obo/PR_000009775,galectin-8 +11.6973531,PR:000010158,http://purl.obolibrary.org/obo/PR_000010158,mitogen-activated protein kinase 6 +11.6973531,PR:000010706,http://purl.obolibrary.org/obo/PR_000010706,metallothionein-4 +11.6973531,PR:000011224,http://purl.obolibrary.org/obo/PR_000011224,deaminated glutathione amidase +11.6973531,PR:000011402,http://purl.obolibrary.org/obo/PR_000011402,nuclear receptor subfamily 2 group E member 1 +11.6973531,PR:000023588,http://purl.obolibrary.org/obo/PR_000023588,none +11.6973531,PR:000029908,http://purl.obolibrary.org/obo/PR_000029908,none +11.6973531,PR:000030420,http://purl.obolibrary.org/obo/PR_000030420,probable ribonuclease ZC3H12D +11.6973531,PR:P32454,http://purl.obolibrary.org/obo/PR_P32454,none +11.6973531,PR:P97449,http://purl.obolibrary.org/obo/PR_P97449,none +11.6973531,PR:Q92072,http://purl.obolibrary.org/obo/PR_Q92072,none +11.6973531,SO:0001219,http://purl.obolibrary.org/obo/SO_0001219,retrogene +11.6973531,UBERON:0001214,http://purl.obolibrary.org/obo/UBERON_0001214,pancreatic tributary of splenic vein +11.6973531,UBERON:0003405,http://purl.obolibrary.org/obo/UBERON_0003405,lobar bronchus of left lung +11.6973531,UBERON:0008772,http://purl.obolibrary.org/obo/UBERON_0008772,proximal epiphysis of tibia +11.6973531,UBERON:0010437,http://purl.obolibrary.org/obo/UBERON_0010437,zygomaticus muscle +11.702575,CHEBI:32439,http://purl.obolibrary.org/obo/CHEBI_32439,alaninate +11.702575,CHEBI:36872,http://purl.obolibrary.org/obo/CHEBI_36872,organic radical +11.702575,CHEBI:50905,http://purl.obolibrary.org/obo/CHEBI_50905,teratogenic agent +11.702575,CHEBI:60646,http://purl.obolibrary.org/obo/CHEBI_60646,chiral reagent +11.702575,DRUGBANK:DB10670,http://purl.obolibrary.org/obo/DRUGBANK_DB10670,none +11.702575,DRUGBANK:DB10808,http://purl.obolibrary.org/obo/DRUGBANK_DB10808,none +11.702575,DRUGBANK:DB14622,http://purl.obolibrary.org/obo/DRUGBANK_DB14622,none +11.702575,GO:0001532,http://purl.obolibrary.org/obo/GO_0001532,interleukin-21 receptor activity +11.702575,GO:0004044,http://purl.obolibrary.org/obo/GO_0004044,amidophosphoribosyltransferase activity +11.702575,GO:0008228,http://purl.obolibrary.org/obo/GO_0008228,opsonization +11.702575,GO:0009654,http://purl.obolibrary.org/obo/GO_0009654,photosystem II oxygen evolving complex +11.702575,GO:0010676,http://purl.obolibrary.org/obo/GO_0010676,positive regulation of cellular carbohydrate metabolic process +11.702575,GO:0015068,http://purl.obolibrary.org/obo/GO_0015068,glycine amidinotransferase activity +11.702575,GO:0015882,http://purl.obolibrary.org/obo/GO_0015882,L-ascorbic acid transmembrane transport +11.702575,GO:0030817,http://purl.obolibrary.org/obo/GO_0030817,none +11.702575,GO:0034651,http://purl.obolibrary.org/obo/GO_0034651,cortisol biosynthetic process +11.702575,GO:0042150,http://purl.obolibrary.org/obo/GO_0042150,plasmid recombination +11.702575,GO:0042540,http://purl.obolibrary.org/obo/GO_0042540,hemoglobin catabolic process +11.702575,GO:0042603,http://purl.obolibrary.org/obo/GO_0042603,capsule +11.702575,GO:0043293,http://purl.obolibrary.org/obo/GO_0043293,apoptosome +11.702575,GO:0090136,http://purl.obolibrary.org/obo/GO_0090136,epithelial cell-cell adhesion +11.702575,MONDO:0000514,http://purl.obolibrary.org/obo/MONDO_0000514,bone squamous cell carcinoma +11.702575,MONDO:0002181,http://purl.obolibrary.org/obo/MONDO_0002181,exostosis +11.702575,MONDO:0006583,http://purl.obolibrary.org/obo/MONDO_0006583,necrobiosis lipoidica +11.702575,MONDO:0025449,http://purl.obolibrary.org/obo/MONDO_0025449,paratuberculosis +11.702575,NCBITaxon:12327,http://purl.obolibrary.org/obo/NCBITaxon_12327,none +11.702575,NCBITaxon:452283,http://purl.obolibrary.org/obo/NCBITaxon_452283,none +11.702575,PR:000003387,http://purl.obolibrary.org/obo/PR_000003387,collagen type V alpha chain +11.702575,PR:000006500,http://purl.obolibrary.org/obo/PR_000006500,dickkopf-related protein 2 +11.702575,PR:000007512,http://purl.obolibrary.org/obo/PR_000007512,bis(5'-adenosyl)-triphosphatase +11.702575,PR:000008511,http://purl.obolibrary.org/obo/PR_000008511,hephaestin +11.702575,PR:000009250,http://purl.obolibrary.org/obo/PR_000009250,voltage-gated potassium channel subunit KCNA1 +11.702575,PR:000009326,http://purl.obolibrary.org/obo/PR_000009326,DNA/RNA-binding protein KIN17 +11.702575,PR:000010791,http://purl.obolibrary.org/obo/PR_000010791,max dimerization protein 3 +11.702575,PR:000011626,http://purl.obolibrary.org/obo/PR_000011626,olfactomedin-4 +11.702575,PR:000012785,http://purl.obolibrary.org/obo/PR_000012785,serine/threonine-protein kinase N1 +11.702575,PR:000013875,http://purl.obolibrary.org/obo/PR_000013875,transcription factor p65 +11.702575,PR:000014063,http://purl.obolibrary.org/obo/PR_000014063,Rho-related GTP-binding protein RhoE +11.702575,PR:000014307,http://purl.obolibrary.org/obo/PR_000014307,ribonucleoside-diphosphate reductase subunit M2 B +11.702575,PR:000014943,http://purl.obolibrary.org/obo/PR_000014943,solute carrier family 15 member 4 +11.702575,PR:000015729,http://purl.obolibrary.org/obo/PR_000015729,stanniocalcin-2 +11.702575,PR:000023326,http://purl.obolibrary.org/obo/PR_000023326,none +11.702575,UBERON:0001158,http://purl.obolibrary.org/obo/UBERON_0001158,descending colon +11.702575,UBERON:0001607,http://purl.obolibrary.org/obo/UBERON_0001607,sphincter pupillae +11.702575,UBERON:0002520,http://purl.obolibrary.org/obo/UBERON_0002520,submandibular lymph node +11.702575,UBERON:0007005,http://purl.obolibrary.org/obo/UBERON_0007005,cardiogenic splanchnic mesoderm +11.7078244,DRUGBANK:DB03554,http://purl.obolibrary.org/obo/DRUGBANK_DB03554,none +11.7078244,DRUGBANK:DB11841,http://purl.obolibrary.org/obo/DRUGBANK_DB11841,none +11.7078244,GO:0006858,http://purl.obolibrary.org/obo/GO_0006858,extracellular transport +11.7078244,GO:0015864,http://purl.obolibrary.org/obo/GO_0015864,pyrimidine nucleoside transport +11.7078244,GO:0018658,http://purl.obolibrary.org/obo/GO_0018658,salicylate 1-monooxygenase activity +11.7078244,GO:0030174,http://purl.obolibrary.org/obo/GO_0030174,regulation of DNA-dependent DNA replication initiation +11.7078244,GO:0035061,http://purl.obolibrary.org/obo/GO_0035061,interchromatin granule +11.7078244,GO:0097186,http://purl.obolibrary.org/obo/GO_0097186,amelogenesis +11.7078244,GO:0097281,http://purl.obolibrary.org/obo/GO_0097281,immune complex formation +11.7078244,GO:1990403,http://purl.obolibrary.org/obo/GO_1990403,embryonic brain development +11.7078244,GO:1990705,http://purl.obolibrary.org/obo/GO_1990705,cholangiocyte proliferation +11.7078244,HP:0001654,http://purl.obolibrary.org/obo/HP_0001654,Abnormal heart valve morphology +11.7078244,MONDO:0004569,http://purl.obolibrary.org/obo/MONDO_0004569,brachial plexus neuropathy from injury +11.7078244,MONDO:0005857,http://purl.obolibrary.org/obo/MONDO_0005857,morbillivirus infectious disease +11.7078244,MONDO:0006277,http://purl.obolibrary.org/obo/MONDO_0006277,lung lymphangioleiomyomatosis +11.7078244,MONDO:0006836,http://purl.obolibrary.org/obo/MONDO_0006836,Listeria meningitis +11.7078244,MONDO:0009675,http://purl.obolibrary.org/obo/MONDO_0009675,autosomal recessive limb-girdle muscular dystrophy type 2A +11.7078244,MONDO:0016152,http://purl.obolibrary.org/obo/MONDO_0016152,qualitative or quantitative defects of calpain +11.7078244,MONDO:0017057,http://purl.obolibrary.org/obo/MONDO_0017057,hereditary thrombocytopenia with normal platelets +11.7078244,MONDO:0018439,http://purl.obolibrary.org/obo/MONDO_0018439,eosinophilic colitis +11.7078244,PR:000000731,http://purl.obolibrary.org/obo/PR_000000731,voltage-gated potassium channel subunit KCNQ4 +11.7078244,PR:000002233,http://purl.obolibrary.org/obo/PR_000002233,tumor necrosis factor receptor type 1-associated DEATH domain protein +11.7078244,PR:000003655,http://purl.obolibrary.org/obo/PR_000003655,long-chain-fatty-acid--CoA ligase ACSBG1 +11.7078244,PR:000003752,http://purl.obolibrary.org/obo/PR_000003752,adenylate cyclase type 10 +11.7078244,PR:000003892,http://purl.obolibrary.org/obo/PR_000003892,A-kinase anchor protein 5 +11.7078244,PR:000004203,http://purl.obolibrary.org/obo/PR_000004203,ADP-ribosylation factor 4 +11.7078244,PR:000005713,http://purl.obolibrary.org/obo/PR_000005713,collagen alpha-1(IV) chain +11.7078244,PR:000007340,http://purl.obolibrary.org/obo/PR_000007340,prolyl endopeptidase FAP +11.7078244,PR:000007437,http://purl.obolibrary.org/obo/PR_000007437,ficolin-1 +11.7078244,PR:000010255,http://purl.obolibrary.org/obo/PR_000010255,microcephalin +11.7078244,PR:000010708,http://purl.obolibrary.org/obo/PR_000010708,metastasis-associated protein MTA2 +11.7078244,PR:000010966,http://purl.obolibrary.org/obo/PR_000010966,baculoviral IAP repeat-containing protein 1 +11.7078244,PR:000011146,http://purl.obolibrary.org/obo/PR_000011146,sialidase-2 +11.7078244,PR:000013111,http://purl.obolibrary.org/obo/PR_000013111,RelA-associated inhibitor +11.7078244,PR:000013157,http://purl.obolibrary.org/obo/PR_000013157,serine/threonine-protein phosphatase 5 +11.7078244,PR:000014658,http://purl.obolibrary.org/obo/PR_000014658,septin-6 +11.7078244,PR:000016650,http://purl.obolibrary.org/obo/PR_000016650,E3 ubiquitin/ISG15 ligase TRIM25 +11.7078244,PR:000023265,http://purl.obolibrary.org/obo/PR_000023265,none +11.7078244,PR:000023457,http://purl.obolibrary.org/obo/PR_000023457,none +11.7078244,PR:P55852,http://purl.obolibrary.org/obo/PR_P55852,none +11.7078244,PR:Q84VW9,http://purl.obolibrary.org/obo/PR_Q84VW9,none +11.7078244,PR:Q8LSZ4,http://purl.obolibrary.org/obo/PR_Q8LSZ4,none +11.7078244,PR:Q9FIF5,http://purl.obolibrary.org/obo/PR_Q9FIF5,none +11.7078244,SO:0000643,http://purl.obolibrary.org/obo/SO_0000643,minisatellite +11.7078244,SO:0001573,http://purl.obolibrary.org/obo/SO_0001573,intron_gain_variant +11.7078244,UBERON:0003598,http://purl.obolibrary.org/obo/UBERON_0003598,manus connective tissue +11.7131015,CHEBI:17822,http://purl.obolibrary.org/obo/CHEBI_17822,serine +11.7131015,CHEBI:22506,http://purl.obolibrary.org/obo/CHEBI_22506,aminoglycan +11.7131015,CHEBI:33306,http://purl.obolibrary.org/obo/CHEBI_33306,carbon group element atom +11.7131015,DRUGBANK:DB01247,http://purl.obolibrary.org/obo/DRUGBANK_DB01247,none +11.7131015,DRUGBANK:DB01529,http://purl.obolibrary.org/obo/DRUGBANK_DB01529,none +11.7131015,DRUGBANK:DB04958,http://purl.obolibrary.org/obo/DRUGBANK_DB04958,none +11.7131015,DRUGBANK:DB08799,http://purl.obolibrary.org/obo/DRUGBANK_DB08799,none +11.7131015,DRUGBANK:DB08819,http://purl.obolibrary.org/obo/DRUGBANK_DB08819,none +11.7131015,DRUGBANK:DB11372,http://purl.obolibrary.org/obo/DRUGBANK_DB11372,none +11.7131015,DRUGBANK:DB11603,http://purl.obolibrary.org/obo/DRUGBANK_DB11603,none +11.7131015,DRUGBANK:DB12577,http://purl.obolibrary.org/obo/DRUGBANK_DB12577,none +11.7131015,DRUGBANK:DB14359,http://purl.obolibrary.org/obo/DRUGBANK_DB14359,none +11.7131015,GO:0000077,http://purl.obolibrary.org/obo/GO_0000077,DNA damage checkpoint signaling +11.7131015,GO:0005816,http://purl.obolibrary.org/obo/GO_0005816,spindle pole body +11.7131015,GO:0008308,http://purl.obolibrary.org/obo/GO_0008308,voltage-gated anion channel activity +11.7131015,GO:0009102,http://purl.obolibrary.org/obo/GO_0009102,biotin biosynthetic process +11.7131015,GO:0010174,http://purl.obolibrary.org/obo/GO_0010174,"nucleoside transmembrane transporter activity, against a concentration gradient" +11.7131015,GO:0010975,http://purl.obolibrary.org/obo/GO_0010975,regulation of neuron projection development +11.7131015,GO:0016618,http://purl.obolibrary.org/obo/GO_0016618,hydroxypyruvate reductase activity +11.7131015,GO:0097035,http://purl.obolibrary.org/obo/GO_0097035,regulation of membrane lipid distribution +11.7131015,GO:2000188,http://purl.obolibrary.org/obo/GO_2000188,none +11.7131015,MONDO:0001969,http://purl.obolibrary.org/obo/MONDO_0001969,mixed gonadal dysgenesis +11.7131015,MONDO:0002225,http://purl.obolibrary.org/obo/MONDO_0002225,ovarian sarcoma +11.7131015,MONDO:0003283,http://purl.obolibrary.org/obo/MONDO_0003283,epididymal neoplasm +11.7131015,MONDO:0004187,http://purl.obolibrary.org/obo/MONDO_0004187,nodular fasciitis +11.7131015,MONDO:0006350,http://purl.obolibrary.org/obo/MONDO_0006350,papillary transitional cell carcinoma +11.7131015,MONDO:0007924,http://purl.obolibrary.org/obo/MONDO_0007924,Bannayan-Riley-Ruvalcaba syndrome +11.7131015,MONDO:0007970,http://purl.obolibrary.org/obo/MONDO_0007970,melorheostosis +11.7131015,MONDO:0016466,http://purl.obolibrary.org/obo/MONDO_0016466,asbestosis +11.7131015,MONDO:0018959,http://purl.obolibrary.org/obo/MONDO_0018959,potassium-aggravated myotonia +11.7131015,MONDO:0045069,http://purl.obolibrary.org/obo/MONDO_0045069,minor salivary gland carcinoma +11.7131015,NCBITaxon:35568,http://purl.obolibrary.org/obo/NCBITaxon_35568,none +11.7131015,NCBITaxon:50370,http://purl.obolibrary.org/obo/NCBITaxon_50370,none +11.7131015,PR:000001365,http://purl.obolibrary.org/obo/PR_000001365,interleukin-10 receptor subunit alpha +11.7131015,PR:000002103,http://purl.obolibrary.org/obo/PR_000002103,sodium channel protein type 8 subunit alpha +11.7131015,PR:000003410,http://purl.obolibrary.org/obo/PR_000003410,heat shock protein 105 kDa +11.7131015,PR:000003579,http://purl.obolibrary.org/obo/PR_000003579,Abl interactor 2 +11.7131015,PR:000003860,http://purl.obolibrary.org/obo/PR_000003860,activator of 90 kDa heat shock protein ATPase homolog 1 +11.7131015,PR:000003943,http://purl.obolibrary.org/obo/PR_000003943,"alpha-1,3/1,6-mannosyltransferase ALG2" +11.7131015,PR:000007125,http://purl.obolibrary.org/obo/PR_000007125,ephrin type-A receptor 5 +11.7131015,PR:000007162,http://purl.obolibrary.org/obo/PR_000007162,ERC protein 2 +11.7131015,PR:000008717,http://purl.obolibrary.org/obo/PR_000008717,homeobox protein Hox-D10 +11.7131015,PR:000009904,http://purl.obolibrary.org/obo/PR_000009904,phospholipid phosphatase-related protein type 2 +11.7131015,PR:000011584,http://purl.obolibrary.org/obo/PR_000011584,SOSS complex subunit B1 +11.7131015,PR:000013023,http://purl.obolibrary.org/obo/PR_000013023,serum paraoxonase/lactonase 3 +11.7131015,PR:000014016,http://purl.obolibrary.org/obo/PR_000014016,E3 ubiquitin-protein ligase RING1 +11.7131015,PR:000014620,http://purl.obolibrary.org/obo/PR_000014620,semaphorin-3F +11.7131015,PR:000014938,http://purl.obolibrary.org/obo/PR_000014938,urea transporter 1 +11.7131015,PR:000015754,http://purl.obolibrary.org/obo/PR_000015754,serine/threonine-protein kinase 38 +11.7131015,PR:000016344,http://purl.obolibrary.org/obo/PR_000016344,mitochondrial import inner membrane translocase subunit Tim17-A +11.7131015,PR:000016839,http://purl.obolibrary.org/obo/PR_000016839,tumor suppressor candidate 2 +11.7131015,PR:000024044,http://purl.obolibrary.org/obo/PR_000024044,none +11.7131015,PR:000029052,http://purl.obolibrary.org/obo/PR_000029052,none +11.7131015,PR:000033649,http://purl.obolibrary.org/obo/PR_000033649,none +11.7131015,PR:Q9ZT96,http://purl.obolibrary.org/obo/PR_Q9ZT96,none +11.7131015,SO:0000374,http://purl.obolibrary.org/obo/SO_0000374,ribozyme +11.7131015,UBERON:0000359,http://purl.obolibrary.org/obo/UBERON_0000359,preputial gland +11.7131015,UBERON:0009708,http://purl.obolibrary.org/obo/UBERON_0009708,dorsal pancreas +11.7184065,CL:0000862,http://purl.obolibrary.org/obo/CL_0000862,suppressor macrophage +11.7184065,DRUGBANK:DB05708,http://purl.obolibrary.org/obo/DRUGBANK_DB05708,none +11.7184065,DRUGBANK:DB11459,http://purl.obolibrary.org/obo/DRUGBANK_DB11459,none +11.7184065,DRUGBANK:DB11789,http://purl.obolibrary.org/obo/DRUGBANK_DB11789,none +11.7184065,DRUGBANK:DB13981,http://purl.obolibrary.org/obo/DRUGBANK_DB13981,none +11.7184065,GO:0002832,http://purl.obolibrary.org/obo/GO_0002832,negative regulation of response to biotic stimulus +11.7184065,GO:0071000,http://purl.obolibrary.org/obo/GO_0071000,response to magnetism +11.7184065,GO:0097251,http://purl.obolibrary.org/obo/GO_0097251,leukotriene B4 biosynthetic process +11.7184065,HP:0030358,http://purl.obolibrary.org/obo/HP_0030358,Non-small cell lung carcinoma +11.7184065,MONDO:0000489,http://purl.obolibrary.org/obo/MONDO_0000489,diabetic encephalopathy +11.7184065,MONDO:0002477,http://purl.obolibrary.org/obo/MONDO_0002477,prostate neuroendocrine neoplasm +11.7184065,MONDO:0006411,http://purl.obolibrary.org/obo/MONDO_0006411,sinonasal undifferentiated carcinoma +11.7184065,MONDO:0008813,http://purl.obolibrary.org/obo/MONDO_0008813,arachnoid cyst +11.7184065,MONDO:0009275,http://purl.obolibrary.org/obo/MONDO_0009275,neonatal hemochromatosis +11.7184065,MONDO:0009696,http://purl.obolibrary.org/obo/MONDO_0009696,juvenile myoclonic epilepsy +11.7184065,MONDO:0009950,http://purl.obolibrary.org/obo/MONDO_0009950,pyruvate kinase deficiency of red cells +11.7184065,MONDO:0015679,http://purl.obolibrary.org/obo/MONDO_0015679,autosomal thrombocytopenia with normal platelets +11.7184065,MONDO:0017163,http://purl.obolibrary.org/obo/MONDO_0017163,hemolytic disease due to fetomaternal alloimmunization +11.7184065,MONDO:0023158,http://purl.obolibrary.org/obo/MONDO_0023158,Fitz-Hugh-Curtis syndrome +11.7184065,PR:000002203,http://purl.obolibrary.org/obo/PR_000002203,glycylpeptide N-tetradecanoyltransferase 1 +11.7184065,PR:000003802,http://purl.obolibrary.org/obo/PR_000003802,actin filament-associated protein 1 +11.7184065,PR:000004844,http://purl.obolibrary.org/obo/PR_000004844,protein BTG1 +11.7184065,PR:000004920,http://purl.obolibrary.org/obo/PR_000004920,carbonic anhydrase 4 +11.7184065,PR:000005254,http://purl.obolibrary.org/obo/PR_000005254,cyclin-dependent kinase 2-associated protein 1 +11.7184065,PR:000005716,http://purl.obolibrary.org/obo/PR_000005716,ceramide transfer protein +11.7184065,PR:000007017,http://purl.obolibrary.org/obo/PR_000007017,ELAV-like protein 2 +11.7184065,PR:000009295,http://purl.obolibrary.org/obo/PR_000009295,kinesin-like protein KIF1A +11.7184065,PR:000009466,http://purl.obolibrary.org/obo/PR_000009466,"keratin, type I cytoskeletal 27" +11.7184065,PR:000009468,http://purl.obolibrary.org/obo/PR_000009468,"keratin, type II cytoskeletal 3" +11.7184065,PR:000011142,http://purl.obolibrary.org/obo/PR_000011142,neuroepithelial cell-transforming gene 1 protein +11.7184065,PR:000014522,http://purl.obolibrary.org/obo/PR_000014522,sodium channel subunit beta-1 +11.7184065,PR:000015131,http://purl.obolibrary.org/obo/PR_000015131,zinc transporter ZIP4 +11.7184065,PR:000016125,http://purl.obolibrary.org/obo/PR_000016125,tubulin-specific chaperone A +11.7184065,PR:000016286,http://purl.obolibrary.org/obo/PR_000016286,transforming growth factor beta-1-induced transcript 1 protein +11.7184065,PR:Q9XPI8,http://purl.obolibrary.org/obo/PR_Q9XPI8,none +11.7184065,UBERON:0003575,http://purl.obolibrary.org/obo/UBERON_0003575,wrist connective tissue +11.7184065,UBERON:0004406,http://purl.obolibrary.org/obo/UBERON_0004406,distal epiphysis of femur +11.7184065,UBERON:0004639,http://purl.obolibrary.org/obo/UBERON_0004639,renal afferent arteriole +11.7184065,UBERON:0016496,http://purl.obolibrary.org/obo/UBERON_0016496,tendon of palmaris longus +11.7237399,CHEBI:18085,http://purl.obolibrary.org/obo/CHEBI_18085,glycosaminoglycan +11.7237399,DRUGBANK:DB00483,http://purl.obolibrary.org/obo/DRUGBANK_DB00483,none +11.7237399,DRUGBANK:DB01282,http://purl.obolibrary.org/obo/DRUGBANK_DB01282,none +11.7237399,DRUGBANK:DB09473,http://purl.obolibrary.org/obo/DRUGBANK_DB09473,none +11.7237399,DRUGBANK:DB10580,http://purl.obolibrary.org/obo/DRUGBANK_DB10580,none +11.7237399,DRUGBANK:DB11429,http://purl.obolibrary.org/obo/DRUGBANK_DB11429,none +11.7237399,DRUGBANK:DB11474,http://purl.obolibrary.org/obo/DRUGBANK_DB11474,none +11.7237399,DRUGBANK:DB11739,http://purl.obolibrary.org/obo/DRUGBANK_DB11739,none +11.7237399,DRUGBANK:DB14367,http://purl.obolibrary.org/obo/DRUGBANK_DB14367,none +11.7237399,GO:0009988,http://purl.obolibrary.org/obo/GO_0009988,cell-cell recognition +11.7237399,GO:0031264,http://purl.obolibrary.org/obo/GO_0031264,death-inducing signaling complex +11.7237399,GO:0036156,http://purl.obolibrary.org/obo/GO_0036156,inner dynein arm +11.7237399,GO:0044316,http://purl.obolibrary.org/obo/GO_0044316,cone cell pedicle +11.7237399,HP:0001928,http://purl.obolibrary.org/obo/HP_0001928,Abnormality of coagulation +11.7237399,HP:0008047,http://purl.obolibrary.org/obo/HP_0008047,Abnormality of the vasculature of the eye +11.7237399,HP:0025337,http://purl.obolibrary.org/obo/HP_0025337,Red eye +11.7237399,MONDO:0003275,http://purl.obolibrary.org/obo/MONDO_0003275,middle ear cancer +11.7237399,MONDO:0003725,http://purl.obolibrary.org/obo/MONDO_0003725,breast adenosis +11.7237399,MONDO:0006645,http://purl.obolibrary.org/obo/MONDO_0006645,alcoholic polyneuropathy +11.7237399,MONDO:0008260,http://purl.obolibrary.org/obo/MONDO_0008260,Kindler syndrome +11.7237399,MONDO:0010520,http://purl.obolibrary.org/obo/MONDO_0010520,X-linked Alport syndrome +11.7237399,MONDO:0012295,http://purl.obolibrary.org/obo/MONDO_0012295,complement component 5 deficiency +11.7237399,MONDO:0013417,http://purl.obolibrary.org/obo/MONDO_0013417,complement component 3 deficiency +11.7237399,MONDO:0015721,http://purl.obolibrary.org/obo/MONDO_0015721,mild hemophilia A +11.7237399,MONDO:0015819,http://purl.obolibrary.org/obo/MONDO_0015819,indolent primary cutaneous B-cell lymphoma +11.7237399,NCBITaxon:1538075,http://purl.obolibrary.org/obo/NCBITaxon_1538075,Malasseziomycetes +11.7237399,NCBITaxon:162474,http://purl.obolibrary.org/obo/NCBITaxon_162474,Malasseziales +11.7237399,NCBITaxon:28216,http://purl.obolibrary.org/obo/NCBITaxon_28216,Betaproteobacteria +11.7237399,NCBITaxon:55193,http://purl.obolibrary.org/obo/NCBITaxon_55193,Malassezia +11.7237399,NCBITaxon:70566,http://purl.obolibrary.org/obo/NCBITaxon_70566,none +11.7237399,NCBITaxon:742845,http://purl.obolibrary.org/obo/NCBITaxon_742845,Malasseziaceae +11.7237399,PR:000001384,http://purl.obolibrary.org/obo/PR_000001384,interleukin-23 subunit alpha +11.7237399,PR:000005426,http://purl.obolibrary.org/obo/PR_000005426,chitotriosidase-1 +11.7237399,PR:000005627,http://purl.obolibrary.org/obo/PR_000005627,cellular nucleic acid-binding protein +11.7237399,PR:000006896,http://purl.obolibrary.org/obo/PR_000006896,EGF-like repeat and discoidin I-like domain-containing protein 3 +11.7237399,PR:000007860,http://purl.obolibrary.org/obo/PR_000007860,transcription factor GATA-5 +11.7237399,PR:000008689,http://purl.obolibrary.org/obo/PR_000008689,homeobox protein Hox-A13 +11.7237399,PR:000008694,http://purl.obolibrary.org/obo/PR_000008694,homeobox protein Hox-A6 +11.7237399,PR:000008842,http://purl.obolibrary.org/obo/PR_000008842,hormonally up-regulated neu tumor-associated kinase +11.7237399,PR:000010796,http://purl.obolibrary.org/obo/PR_000010796,matrix remodeling-associated protein 8 +11.7237399,PR:000012225,http://purl.obolibrary.org/obo/PR_000012225,PCNA-associated factor +11.7237399,PR:000012812,http://purl.obolibrary.org/obo/PR_000012812,platelet-activating factor acetylhydrolase +11.7237399,PR:000014559,http://purl.obolibrary.org/obo/PR_000014559,serologically defined colon cancer antigen 8 +11.7237399,PR:000023331,http://purl.obolibrary.org/obo/PR_000023331,none +11.7237399,PR:000023711,http://purl.obolibrary.org/obo/PR_000023711,none +11.7237399,PR:P40989,http://purl.obolibrary.org/obo/PR_P40989,none +11.7237399,PR:Q39034,http://purl.obolibrary.org/obo/PR_Q39034,none +11.7237399,PR:Q54DY1,http://purl.obolibrary.org/obo/PR_Q54DY1,none +11.7237399,PR:Q90941,http://purl.obolibrary.org/obo/PR_Q90941,none +11.7237399,UBERON:0002409,http://purl.obolibrary.org/obo/UBERON_0002409,pericardial fluid +11.7237399,UBERON:0007802,http://purl.obolibrary.org/obo/UBERON_0007802,uropygial gland +11.7237399,UBERON:0015153,http://purl.obolibrary.org/obo/UBERON_0015153,medial gland of ocular region +11.7237399,UBERON:0034933,http://purl.obolibrary.org/obo/UBERON_0034933,layer of smooth muscle tissue +11.7291018,CHEBI:32457,http://purl.obolibrary.org/obo/CHEBI_32457,cysteinate(2-) +11.7291018,CHEBI:59544,http://purl.obolibrary.org/obo/CHEBI_59544,phosphoantigen +11.7291018,DRUGBANK:DB00004,http://purl.obolibrary.org/obo/DRUGBANK_DB00004,none +11.7291018,DRUGBANK:DB00890,http://purl.obolibrary.org/obo/DRUGBANK_DB00890,none +11.7291018,DRUGBANK:DB01007,http://purl.obolibrary.org/obo/DRUGBANK_DB01007,none +11.7291018,DRUGBANK:DB03385,http://purl.obolibrary.org/obo/DRUGBANK_DB03385,none +11.7291018,DRUGBANK:DB03761,http://purl.obolibrary.org/obo/DRUGBANK_DB03761,none +11.7291018,DRUGBANK:DB04132,http://purl.obolibrary.org/obo/DRUGBANK_DB04132,none +11.7291018,DRUGBANK:DB04726,http://purl.obolibrary.org/obo/DRUGBANK_DB04726,none +11.7291018,DRUGBANK:DB11114,http://purl.obolibrary.org/obo/DRUGBANK_DB11114,none +11.7291018,DRUGBANK:DB11254,http://purl.obolibrary.org/obo/DRUGBANK_DB11254,none +11.7291018,DRUGBANK:DB13307,http://purl.obolibrary.org/obo/DRUGBANK_DB13307,none +11.7291018,DRUGBANK:DB13602,http://purl.obolibrary.org/obo/DRUGBANK_DB13602,none +11.7291018,GO:0003917,http://purl.obolibrary.org/obo/GO_0003917,"DNA topoisomerase type I (single strand cut, ATP-independent) activity" +11.7291018,GO:0007259,http://purl.obolibrary.org/obo/GO_0007259,receptor signaling pathway via JAK-STAT +11.7291018,GO:0008260,http://purl.obolibrary.org/obo/GO_0008260,3-oxoacid CoA-transferase activity +11.7291018,GO:0009036,http://purl.obolibrary.org/obo/GO_0009036,type II site-specific deoxyribonuclease activity +11.7291018,GO:0016784,http://purl.obolibrary.org/obo/GO_0016784,3-mercaptopyruvate sulfurtransferase activity +11.7291018,GO:0018664,http://purl.obolibrary.org/obo/GO_0018664,benzoate 4-monooxygenase activity +11.7291018,GO:0019393,http://purl.obolibrary.org/obo/GO_0019393,glucarate biosynthetic process +11.7291018,GO:0036479,http://purl.obolibrary.org/obo/GO_0036479,peroxidase inhibitor activity +11.7291018,GO:0045683,http://purl.obolibrary.org/obo/GO_0045683,negative regulation of epidermis development +11.7291018,GO:0048010,http://purl.obolibrary.org/obo/GO_0048010,vascular endothelial growth factor receptor signaling pathway +11.7291018,MONDO:0001298,http://purl.obolibrary.org/obo/MONDO_0001298,congenital mitral valve insufficiency +11.7291018,MONDO:0001979,http://purl.obolibrary.org/obo/MONDO_0001979,dumping syndrome +11.7291018,MONDO:0003529,http://purl.obolibrary.org/obo/MONDO_0003529,acute pyelonephritis +11.7291018,MONDO:0004587,http://purl.obolibrary.org/obo/MONDO_0004587,hereditary night blindness +11.7291018,MONDO:0006840,http://purl.obolibrary.org/obo/MONDO_0006840,lymphangiectasis +11.7291018,MONDO:0016128,http://purl.obolibrary.org/obo/MONDO_0016128,parasitic myositis +11.7291018,MONDO:0100091,http://purl.obolibrary.org/obo/MONDO_0100091,inherited pseudoxanthoma elasticum +11.7291018,MOP:0000567,http://purl.obolibrary.org/obo/MOP_0000567,none +11.7291018,MOP:0000780,http://purl.obolibrary.org/obo/MOP_0000780,none +11.7291018,NCBITaxon:11079,http://purl.obolibrary.org/obo/NCBITaxon_11079,Murray Valley encephalitis virus +11.7291018,NCBITaxon:11083,http://purl.obolibrary.org/obo/NCBITaxon_11083,Powassan virus +11.7291018,NCBITaxon:12205,http://purl.obolibrary.org/obo/NCBITaxon_12205,none +11.7291018,NCBITaxon:2733256,http://purl.obolibrary.org/obo/NCBITaxon_2733256,none +11.7291018,NCBITaxon:32352,http://purl.obolibrary.org/obo/NCBITaxon_32352,none +11.7291018,NCBITaxon:7392,http://purl.obolibrary.org/obo/NCBITaxon_7392,none +11.7291018,NCBITaxon:7393,http://purl.obolibrary.org/obo/NCBITaxon_7393,none +11.7291018,PR:000002024,http://purl.obolibrary.org/obo/PR_000002024,NKG2-C type II integral membrane protein +11.7291018,PR:000002314,http://purl.obolibrary.org/obo/PR_000002314,caspase-5 +11.7291018,PR:000006116,http://purl.obolibrary.org/obo/PR_000006116,cytochrome P450 2B6 +11.7291018,PR:000006150,http://purl.obolibrary.org/obo/PR_000006150,cytochrome P450 8B1 +11.7291018,PR:000006577,http://purl.obolibrary.org/obo/PR_000006577,DnaJ homolog subfamily B member 7 +11.7291018,PR:000007463,http://purl.obolibrary.org/obo/PR_000007463,tyrosine-protein kinase Fes/Fps +11.7291018,PR:000010136,http://purl.obolibrary.org/obo/PR_000010136,mitogen-activated protein kinase kinase kinase 3 +11.7291018,PR:000010323,http://purl.obolibrary.org/obo/PR_000010323,homeobox protein MOX-2 +11.7291018,PR:000010834,http://purl.obolibrary.org/obo/PR_000010834,"myosin regulatory light chain 2, ventricular/cardiac muscle isoform" +11.7291018,PR:000013266,http://purl.obolibrary.org/obo/PR_000013266,opiorphin prepropeptide +11.7291018,PR:000013876,http://purl.obolibrary.org/obo/PR_000013876,transcription factor RelB +11.7291018,PR:000015034,http://purl.obolibrary.org/obo/PR_000015034,ADP/ATP translocase 3 +11.7291018,PR:000015043,http://purl.obolibrary.org/obo/PR_000015043,testis anion transporter 1 +11.7291018,PR:000015276,http://purl.obolibrary.org/obo/PR_000015276,sperm mitochondrial-associated cysteine-rich protein +11.7291018,PR:000032742,http://purl.obolibrary.org/obo/PR_000032742,probable ATP-dependent RNA helicase DHX58 +11.7291018,PR:P79724,http://purl.obolibrary.org/obo/PR_P79724,none +11.7291018,PR:Q9FRV4,http://purl.obolibrary.org/obo/PR_Q9FRV4,none +11.7344926,CHEBI:64370,http://purl.obolibrary.org/obo/CHEBI_64370,glutamate transporter activator +11.7344926,CHEBI:64371,http://purl.obolibrary.org/obo/CHEBI_64371,neurotransmitter transporter modulator +11.7344926,CL:0000800,http://purl.obolibrary.org/obo/CL_0000800,mature gamma-delta T cell +11.7344926,DRUGBANK:DB04070,http://purl.obolibrary.org/obo/DRUGBANK_DB04070,none +11.7344926,DRUGBANK:DB11619,http://purl.obolibrary.org/obo/DRUGBANK_DB11619,none +11.7344926,DRUGBANK:DB12017,http://purl.obolibrary.org/obo/DRUGBANK_DB12017,none +11.7344926,DRUGBANK:DB14499,http://purl.obolibrary.org/obo/DRUGBANK_DB14499,none +11.7344926,GO:0004138,http://purl.obolibrary.org/obo/GO_0004138,deoxyguanosine kinase activity +11.7344926,GO:0004859,http://purl.obolibrary.org/obo/GO_0004859,phospholipase inhibitor activity +11.7344926,GO:0005042,http://purl.obolibrary.org/obo/GO_0005042,netrin receptor activity +11.7344926,GO:0005814,http://purl.obolibrary.org/obo/GO_0005814,centriole +11.7344926,GO:0009112,http://purl.obolibrary.org/obo/GO_0009112,nucleobase metabolic process +11.7344926,GO:0009691,http://purl.obolibrary.org/obo/GO_0009691,cytokinin biosynthetic process +11.7344926,GO:0019769,http://purl.obolibrary.org/obo/GO_0019769,low-affinity IgE receptor activity +11.7344926,GO:0030570,http://purl.obolibrary.org/obo/GO_0030570,pectate lyase activity +11.7344926,GO:0032587,http://purl.obolibrary.org/obo/GO_0032587,ruffle membrane +11.7344926,GO:0032885,http://purl.obolibrary.org/obo/GO_0032885,regulation of polysaccharide biosynthetic process +11.7344926,GO:0033067,http://purl.obolibrary.org/obo/GO_0033067,macrolide metabolic process +11.7344926,GO:0035872,http://purl.obolibrary.org/obo/GO_0035872,"nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway" +11.7344926,GO:0042770,http://purl.obolibrary.org/obo/GO_0042770,signal transduction in response to DNA damage +11.7344926,GO:0051060,http://purl.obolibrary.org/obo/GO_0051060,pullulanase activity +11.7344926,GO:0060008,http://purl.obolibrary.org/obo/GO_0060008,Sertoli cell differentiation +11.7344926,GO:0061656,http://purl.obolibrary.org/obo/GO_0061656,SUMO conjugating enzyme activity +11.7344926,GO:0090150,http://purl.obolibrary.org/obo/GO_0090150,establishment of protein localization to membrane +11.7344926,MONDO:0002373,http://purl.obolibrary.org/obo/MONDO_0002373,benign mesothelioma +11.7344926,MONDO:0005063,http://purl.obolibrary.org/obo/MONDO_0005063,medullary breast carcinoma +11.7344926,MONDO:0007639,http://purl.obolibrary.org/obo/MONDO_0007639,fundus albipunctatus +11.7344926,MONDO:0016488,http://purl.obolibrary.org/obo/MONDO_0016488,beta-thalassemia associated with another hemoglobin anomaly +11.7344926,NCBITaxon:1513233,http://purl.obolibrary.org/obo/NCBITaxon_1513233,none +11.7344926,PR:000001853,http://purl.obolibrary.org/obo/PR_000001853,ecto-ADP-ribosyltransferase 4 +11.7344926,PR:000005130,http://purl.obolibrary.org/obo/PR_000005130,cyclin-H +11.7344926,PR:000005776,http://purl.obolibrary.org/obo/PR_000005776,"cytochrome c oxidase subunit 4 isoform 1, mitochondrial" +11.7344926,PR:000006125,http://purl.obolibrary.org/obo/PR_000006125,vitamin D 25-hydroxylase +11.7344926,PR:000006339,http://purl.obolibrary.org/obo/PR_000006339,"N(G),N(G)-dimethylarginine dimethylaminohydrolase 2" +11.7344926,PR:000007072,http://purl.obolibrary.org/obo/PR_000007072,protein enabled +11.7344926,PR:000007497,http://purl.obolibrary.org/obo/PR_000007497,fibroblast growth factor 6 +11.7344926,PR:000007557,http://purl.obolibrary.org/obo/PR_000007557,filamin-C +11.7344926,PR:000007898,http://purl.obolibrary.org/obo/PR_000007898,glutamate--cysteine ligase regulatory subunit +11.7344926,PR:000009060,http://purl.obolibrary.org/obo/PR_000009060,insulin-like peptide INSL5 +11.7344926,PR:000009369,http://purl.obolibrary.org/obo/PR_000009369,krueppel-like factor 9 +11.7344926,PR:000010895,http://purl.obolibrary.org/obo/PR_000010895,myeloid zinc finger 1 +11.7344926,PR:000014368,http://purl.obolibrary.org/obo/PR_000014368,RuvB-like 1 +11.7344926,PR:000014765,http://purl.obolibrary.org/obo/PR_000014765,"splicing factor, arginine/serine-rich 8" +11.7344926,PR:000015048,http://purl.obolibrary.org/obo/PR_000015048,long-chain fatty acid transport protein 4 +11.7344926,PR:000015756,http://purl.obolibrary.org/obo/PR_000015756,STE20/SPS1-related proline-alanine-rich protein kinase +11.7344926,PR:000017045,http://purl.obolibrary.org/obo/PR_000017045,UDP-glucose:glycoprotein glucosyltransferase 2 +11.7344926,PR:000017231,http://purl.obolibrary.org/obo/PR_000017231,none +11.7344926,PR:000022781,http://purl.obolibrary.org/obo/PR_000022781,none +11.7344926,PR:P14922,http://purl.obolibrary.org/obo/PR_P14922,none +11.7344926,PR:Q10428,http://purl.obolibrary.org/obo/PR_Q10428,none +11.7344926,UBERON:0002033,http://purl.obolibrary.org/obo/UBERON_0002033,arrector muscle of hair +11.7344926,UBERON:0003931,http://purl.obolibrary.org/obo/UBERON_0003931,diencephalic white matter +11.7344926,UBERON:0014481,http://purl.obolibrary.org/obo/UBERON_0014481,sex skin +11.7344926,UBERON:0034752,http://purl.obolibrary.org/obo/UBERON_0034752,secondary auditory cortex +11.7399127,CHEBI:25704,http://purl.obolibrary.org/obo/CHEBI_25704,organic sulfate +11.7399127,CHEBI:32848,http://purl.obolibrary.org/obo/CHEBI_32848,serine residue +11.7399127,CHEBI:48357,http://purl.obolibrary.org/obo/CHEBI_48357,aprotic solvent +11.7399127,CHEBI:50177,http://purl.obolibrary.org/obo/CHEBI_50177,dermatologic drug +11.7399127,CHEBI:53339,http://purl.obolibrary.org/obo/CHEBI_53339,olefinic fatty acid +11.7399127,CHEBI:7686,http://purl.obolibrary.org/obo/CHEBI_7686,O-Methylated RNA +11.7399127,CL:0000295,http://purl.obolibrary.org/obo/CL_0000295,somatotropin secreting cell +11.7399127,DRUGBANK:DB00933,http://purl.obolibrary.org/obo/DRUGBANK_DB00933,none +11.7399127,DRUGBANK:DB02458,http://purl.obolibrary.org/obo/DRUGBANK_DB02458,none +11.7399127,DRUGBANK:DB06630,http://purl.obolibrary.org/obo/DRUGBANK_DB06630,none +11.7399127,DRUGBANK:DB06802,http://purl.obolibrary.org/obo/DRUGBANK_DB06802,none +11.7399127,DRUGBANK:DB06816,http://purl.obolibrary.org/obo/DRUGBANK_DB06816,none +11.7399127,DRUGBANK:DB08897,http://purl.obolibrary.org/obo/DRUGBANK_DB08897,none +11.7399127,DRUGBANK:DB10681,http://purl.obolibrary.org/obo/DRUGBANK_DB10681,none +11.7399127,DRUGBANK:DB13105,http://purl.obolibrary.org/obo/DRUGBANK_DB13105,none +11.7399127,GO:0001771,http://purl.obolibrary.org/obo/GO_0001771,immunological synapse formation +11.7399127,GO:0002079,http://purl.obolibrary.org/obo/GO_0002079,inner acrosomal membrane +11.7399127,GO:0006549,http://purl.obolibrary.org/obo/GO_0006549,isoleucine metabolic process +11.7399127,GO:0009002,http://purl.obolibrary.org/obo/GO_0009002,serine-type D-Ala-D-Ala carboxypeptidase activity +11.7399127,GO:0017014,http://purl.obolibrary.org/obo/GO_0017014,protein nitrosylation +11.7399127,GO:0031252,http://purl.obolibrary.org/obo/GO_0031252,cell leading edge +11.7399127,GO:0032144,http://purl.obolibrary.org/obo/GO_0032144,4-aminobutyrate transaminase complex +11.7399127,GO:0035812,http://purl.obolibrary.org/obo/GO_0035812,renal sodium excretion +11.7399127,GO:0036160,http://purl.obolibrary.org/obo/GO_0036160,melanocyte-stimulating hormone secretion +11.7399127,GO:0042636,http://purl.obolibrary.org/obo/GO_0042636,negative regulation of hair cycle +11.7399127,GO:0048817,http://purl.obolibrary.org/obo/GO_0048817,negative regulation of hair follicle maturation +11.7399127,GO:0051799,http://purl.obolibrary.org/obo/GO_0051799,negative regulation of hair follicle development +11.7399127,GO:0097531,http://purl.obolibrary.org/obo/GO_0097531,mast cell migration +11.7399127,GO:1901998,http://purl.obolibrary.org/obo/GO_1901998,toxin transport +11.7399127,GO:1990343,http://purl.obolibrary.org/obo/GO_1990343,heterochromatin domain +11.7399127,HP:0000502,http://purl.obolibrary.org/obo/HP_0000502,Abnormal conjunctiva morphology +11.7399127,HP:0000509,http://purl.obolibrary.org/obo/HP_0000509,Conjunctivitis +11.7399127,HP:0000944,http://purl.obolibrary.org/obo/HP_0000944,Abnormality of the metaphysis +11.7399127,HP:0100255,http://purl.obolibrary.org/obo/HP_0100255,Metaphyseal dysplasia +11.7399127,MONDO:0002375,http://purl.obolibrary.org/obo/MONDO_0002375,sebaceous adenoma +11.7399127,MONDO:0003185,http://purl.obolibrary.org/obo/MONDO_0003185,adenoid cystic breast carcinoma +11.7399127,MONDO:0005751,http://purl.obolibrary.org/obo/MONDO_0005751,epidemic pleurodynia +11.7399127,MONDO:0009934,http://purl.obolibrary.org/obo/MONDO_0009934,alveolar capillary dysplasia with misalignment of pulmonary veins +11.7399127,MONDO:0010122,http://purl.obolibrary.org/obo/MONDO_0010122,congenital thrombotic thrombocytopenic purpura +11.7399127,MONDO:0011060,http://purl.obolibrary.org/obo/MONDO_0011060,early-onset non-syndromic cataract +11.7399127,MONDO:0015508,http://purl.obolibrary.org/obo/MONDO_0015508,genetic parenchymatous liver disease +11.7399127,MONDO:0018465,http://purl.obolibrary.org/obo/MONDO_0018465,insulin autoimmune syndrome +11.7399127,MONDO:0018701,http://purl.obolibrary.org/obo/MONDO_0018701,congenital nemaline myopathy +11.7399127,MONDO:0019560,http://purl.obolibrary.org/obo/MONDO_0019560,lupus erythematosus tumidus +11.7399127,MONDO:0021241,http://purl.obolibrary.org/obo/MONDO_0021241,buccal mucosa neoplasm +11.7399127,MONDO:0023232,http://purl.obolibrary.org/obo/MONDO_0023232,giant cell myocarditis +11.7399127,NCBITaxon:12075,http://purl.obolibrary.org/obo/NCBITaxon_12075,none +11.7399127,NCBITaxon:12287,http://purl.obolibrary.org/obo/NCBITaxon_12287,none +11.7399127,NCBITaxon:143901,http://purl.obolibrary.org/obo/NCBITaxon_143901,none +11.7399127,NCBITaxon:1933178,http://purl.obolibrary.org/obo/NCBITaxon_1933178,none +11.7399127,NCBITaxon:1980413,http://purl.obolibrary.org/obo/NCBITaxon_1980413,Hantaviridae +11.7399127,NCBITaxon:2560074,http://purl.obolibrary.org/obo/NCBITaxon_2560074,Mammantavirinae +11.7399127,NCBITaxon:35303,http://purl.obolibrary.org/obo/NCBITaxon_35303,none +11.7399127,PR:000000287,http://purl.obolibrary.org/obo/PR_000000287,lefty 1 +11.7399127,PR:000004267,http://purl.obolibrary.org/obo/PR_000004267,AT-rich interactive domain-containing protein 4A +11.7399127,PR:000005623,http://purl.obolibrary.org/obo/PR_000005623,C-Maf-inducing protein +11.7399127,PR:000005727,http://purl.obolibrary.org/obo/PR_000005727,collectin-12 +11.7399127,PR:000012859,http://purl.obolibrary.org/obo/PR_000012859,pleckstrin homology domain-containing family F member 1 +11.7399127,PR:000013042,http://purl.obolibrary.org/obo/PR_000013042,"POU domain, class 4, transcription factor 2" +11.7399127,PR:000013960,http://purl.obolibrary.org/obo/PR_000013960,regulator of G-protein signaling 5 +11.7399127,PR:000014215,http://purl.obolibrary.org/obo/PR_000014215,60S ribosomal protein L32 +11.7399127,PR:000016547,http://purl.obolibrary.org/obo/PR_000016547,DNA topoisomerase 3-beta-1 +11.7399127,PR:000023458,http://purl.obolibrary.org/obo/PR_000023458,none +11.7399127,PR:000029216,http://purl.obolibrary.org/obo/PR_000029216,none +11.7399127,PR:O93366,http://purl.obolibrary.org/obo/PR_O93366,none +11.7399127,PR:P97797,http://purl.obolibrary.org/obo/PR_P97797,none +11.7399127,PR:Q9F663,http://purl.obolibrary.org/obo/PR_Q9F663,none +11.7399127,SO:0001220,http://purl.obolibrary.org/obo/SO_0001220,silenced_by_RNA_interference +11.7399127,UBERON:0001100,http://purl.obolibrary.org/obo/UBERON_0001100,pectoralis minor +11.7399127,UBERON:0004187,http://purl.obolibrary.org/obo/UBERON_0004187,Harderian gland +11.7399127,UBERON:0006238,http://purl.obolibrary.org/obo/UBERON_0006238,future brain +11.7399127,UBERON:0009883,http://purl.obolibrary.org/obo/UBERON_0009883,medullary ray +11.7453623,CHEBI:26650,http://purl.obolibrary.org/obo/CHEBI_26650,serine family amino acid +11.7453623,CHEBI:26819,http://purl.obolibrary.org/obo/CHEBI_26819,sulfuric ester +11.7453623,CHEBI:27594,http://purl.obolibrary.org/obo/CHEBI_27594,carbon atom +11.7453623,CHEBI:37395,http://purl.obolibrary.org/obo/CHEBI_37395,mucopolysaccharide +11.7453623,CL:0002626,http://purl.obolibrary.org/obo/CL_0002626,immature astrocyte +11.7453623,DRUGBANK:DB00447,http://purl.obolibrary.org/obo/DRUGBANK_DB00447,none +11.7453623,DRUGBANK:DB00665,http://purl.obolibrary.org/obo/DRUGBANK_DB00665,none +11.7453623,DRUGBANK:DB00837,http://purl.obolibrary.org/obo/DRUGBANK_DB00837,none +11.7453623,DRUGBANK:DB03006,http://purl.obolibrary.org/obo/DRUGBANK_DB03006,none +11.7453623,DRUGBANK:DB04948,http://purl.obolibrary.org/obo/DRUGBANK_DB04948,none +11.7453623,DRUGBANK:DB08632,http://purl.obolibrary.org/obo/DRUGBANK_DB08632,none +11.7453623,DRUGBANK:DB11771,http://purl.obolibrary.org/obo/DRUGBANK_DB11771,none +11.7453623,DRUGBANK:DB13896,http://purl.obolibrary.org/obo/DRUGBANK_DB13896,none +11.7453623,DRUGBANK:DB14339,http://purl.obolibrary.org/obo/DRUGBANK_DB14339,none +11.7453623,DRUGBANK:DB14351,http://purl.obolibrary.org/obo/DRUGBANK_DB14351,none +11.7453623,DRUGBANK:DB14930,http://purl.obolibrary.org/obo/DRUGBANK_DB14930,none +11.7453623,DRUGBANK:DB15977,http://purl.obolibrary.org/obo/DRUGBANK_DB15977,none +11.7453623,GO:0001605,http://purl.obolibrary.org/obo/GO_0001605,adrenomedullin receptor activity +11.7453623,GO:0004843,http://purl.obolibrary.org/obo/GO_0004843,thiol-dependent deubiquitinase +11.7453623,GO:0009074,http://purl.obolibrary.org/obo/GO_0009074,aromatic amino acid family catabolic process +11.7453623,GO:0009262,http://purl.obolibrary.org/obo/GO_0009262,deoxyribonucleotide metabolic process +11.7453623,GO:0016556,http://purl.obolibrary.org/obo/GO_0016556,mRNA modification +11.7453623,GO:0018119,http://purl.obolibrary.org/obo/GO_0018119,peptidyl-cysteine S-nitrosylation +11.7453623,GO:0018198,http://purl.obolibrary.org/obo/GO_0018198,peptidyl-cysteine modification +11.7453623,GO:0019321,http://purl.obolibrary.org/obo/GO_0019321,pentose metabolic process +11.7453623,GO:0036272,http://purl.obolibrary.org/obo/GO_0036272,response to gemcitabine +11.7453623,GO:0036459,http://purl.obolibrary.org/obo/GO_0036459,none +11.7453623,GO:0042084,http://purl.obolibrary.org/obo/GO_0042084,5-methyltetrahydrofolate-dependent methyltransferase activity +11.7453623,GO:0042574,http://purl.obolibrary.org/obo/GO_0042574,retinal metabolic process +11.7453623,GO:0051205,http://purl.obolibrary.org/obo/GO_0051205,protein insertion into membrane +11.7453623,GO:0098776,http://purl.obolibrary.org/obo/GO_0098776,protein transport across the cell outer membrane +11.7453623,GO:1990563,http://purl.obolibrary.org/obo/GO_1990563,extracellular exosome complex +11.7453623,HP:0002733,http://purl.obolibrary.org/obo/HP_0002733,Abnormality of the lymph nodes +11.7453623,MONDO:0003842,http://purl.obolibrary.org/obo/MONDO_0003842,childhood cerebellar astrocytic neoplasm +11.7453623,MONDO:0006446,http://purl.obolibrary.org/obo/MONDO_0006446,testicular embryonal carcinoma +11.7453623,MONDO:0006747,http://purl.obolibrary.org/obo/MONDO_0006747,enterotoxemia +11.7453623,MONDO:0010083,http://purl.obolibrary.org/obo/MONDO_0010083,succinic semialdehyde dehydrogenase deficiency +11.7453623,MONDO:0018626,http://purl.obolibrary.org/obo/MONDO_0018626,paratyphoid fever +11.7453623,NCBITaxon:11746,http://purl.obolibrary.org/obo/NCBITaxon_11746,none +11.7453623,NCBITaxon:158449,http://purl.obolibrary.org/obo/NCBITaxon_158449,none +11.7453623,NCBITaxon:270602,http://purl.obolibrary.org/obo/NCBITaxon_270602,none +11.7453623,PR:000005151,http://purl.obolibrary.org/obo/PR_000005151,T-complex protein 1 subunit gamma +11.7453623,PR:000005874,http://purl.obolibrary.org/obo/PR_000005874,cysteine-rich protein 2 +11.7453623,PR:000006155,http://purl.obolibrary.org/obo/PR_000006155,cytohesin-3 +11.7453623,PR:000007341,http://purl.obolibrary.org/obo/PR_000007341,fatty acyl-CoA reductase 1 +11.7453623,PR:000007695,http://purl.obolibrary.org/obo/PR_000007695,far upstream element-binding protein 1 +11.7453623,PR:000008846,http://purl.obolibrary.org/obo/PR_000008846,voltage-gated hydrogen channel 1 +11.7453623,PR:000015004,http://purl.obolibrary.org/obo/PR_000015004,"tricarboxylate transport protein, mitochondrial" +11.7453623,PR:000015582,http://purl.obolibrary.org/obo/PR_000015582,protein sprouty homolog 1 +11.7453623,PR:000015629,http://purl.obolibrary.org/obo/PR_000015629,SRSF protein kinase 1 +11.7453623,PR:000016004,http://purl.obolibrary.org/obo/PR_000016004,tachykinin-3 +11.7453623,PR:000017150,http://purl.obolibrary.org/obo/PR_000017150,ubiquitin carboxyl-terminal hydrolase 14 +11.7453623,PR:000017179,http://purl.obolibrary.org/obo/PR_000017179,ubiquitin carboxyl-terminal hydrolase 4 +11.7453623,PR:000022679,http://purl.obolibrary.org/obo/PR_000022679,none +11.7453623,PR:000022841,http://purl.obolibrary.org/obo/PR_000022841,none +11.7453623,PR:000023590,http://purl.obolibrary.org/obo/PR_000023590,none +11.7453623,PR:000029363,http://purl.obolibrary.org/obo/PR_000029363,centriolin +11.7453623,PR:000029775,http://purl.obolibrary.org/obo/PR_000029775,"histidine--tRNA ligase, mitochondrial" +11.7453623,PR:000031869,http://purl.obolibrary.org/obo/PR_000031869,"inactive L-threonine 3-dehydrogenase, mitochondrial" +11.7453623,PR:000044659,http://purl.obolibrary.org/obo/PR_000044659,voltage-gated proton channel protein +11.7453623,PR:Q9W497,http://purl.obolibrary.org/obo/PR_Q9W497,none +11.7453623,SO:0000114,http://purl.obolibrary.org/obo/SO_0000114,methylated_cytosine +11.7453623,UBERON:0003222,http://purl.obolibrary.org/obo/UBERON_0003222,flexor digitorum superficialis +11.7453623,UBERON:0007324,http://purl.obolibrary.org/obo/UBERON_0007324,pancreatic lobule +11.7453623,UBERON:0034697,http://purl.obolibrary.org/obo/UBERON_0034697,inflow tract +11.7508418,CHEBI:38147,http://purl.obolibrary.org/obo/CHEBI_38147,cardiotonic drug +11.7508418,DRUGBANK:DB00414,http://purl.obolibrary.org/obo/DRUGBANK_DB00414,none +11.7508418,DRUGBANK:DB03382,http://purl.obolibrary.org/obo/DRUGBANK_DB03382,none +11.7508418,DRUGBANK:DB08951,http://purl.obolibrary.org/obo/DRUGBANK_DB08951,none +11.7508418,DRUGBANK:DB09535,http://purl.obolibrary.org/obo/DRUGBANK_DB09535,none +11.7508418,DRUGBANK:DB11817,http://purl.obolibrary.org/obo/DRUGBANK_DB11817,none +11.7508418,DRUGBANK:DB13124,http://purl.obolibrary.org/obo/DRUGBANK_DB13124,none +11.7508418,GO:0008705,http://purl.obolibrary.org/obo/GO_0008705,methionine synthase activity +11.7508418,GO:0008792,http://purl.obolibrary.org/obo/GO_0008792,arginine decarboxylase activity +11.7508418,GO:0015066,http://purl.obolibrary.org/obo/GO_0015066,alpha-amylase inhibitor activity +11.7508418,GO:0016152,http://purl.obolibrary.org/obo/GO_0016152,mercury (II) reductase activity +11.7508418,GO:0030856,http://purl.obolibrary.org/obo/GO_0030856,regulation of epithelial cell differentiation +11.7508418,GO:0030867,http://purl.obolibrary.org/obo/GO_0030867,rough endoplasmic reticulum membrane +11.7508418,GO:0042362,http://purl.obolibrary.org/obo/GO_0042362,fat-soluble vitamin biosynthetic process +11.7508418,GO:0048592,http://purl.obolibrary.org/obo/GO_0048592,eye morphogenesis +11.7508418,GO:0051961,http://purl.obolibrary.org/obo/GO_0051961,negative regulation of nervous system development +11.7508418,MONDO:0002114,http://purl.obolibrary.org/obo/MONDO_0002114,pancreas lymphoma +11.7508418,MONDO:0004765,http://purl.obolibrary.org/obo/MONDO_0004765,intrinsic asthma +11.7508418,MONDO:0009925,http://purl.obolibrary.org/obo/MONDO_0009925,autosomal recessive inherited pseudoxanthoma elasticum +11.7508418,MONDO:0011338,http://purl.obolibrary.org/obo/MONDO_0011338,Omenn syndrome +11.7508418,MONDO:0016163,http://purl.obolibrary.org/obo/MONDO_0016163,autosomal dominant cerebellar ataxia type II +11.7508418,MONDO:0017784,http://purl.obolibrary.org/obo/MONDO_0017784,Epstein-Barr virus-associated gastric carcinoma +11.7508418,MONDO:0020418,http://purl.obolibrary.org/obo/MONDO_0020418,dysphagia lusoria +11.7508418,MONDO:0023833,http://purl.obolibrary.org/obo/MONDO_0023833,multifocal choroiditis +11.7508418,MONDO:0045056,http://purl.obolibrary.org/obo/MONDO_0045056,grade II meningioma +11.7508418,NCBITaxon:31979,http://purl.obolibrary.org/obo/NCBITaxon_31979,Clostridiaceae +11.7508418,NCBITaxon:43754,http://purl.obolibrary.org/obo/NCBITaxon_43754,none +11.7508418,NCBITaxon:47144,http://purl.obolibrary.org/obo/NCBITaxon_47144,none +11.7508418,PR:000001591,http://purl.obolibrary.org/obo/PR_000001591,leucine-rich repeat-containing G-protein coupled receptor 4 +11.7508418,PR:000002349,http://purl.obolibrary.org/obo/PR_000002349,serine/threonine-protein kinase 24 +11.7508418,PR:000007131,http://purl.obolibrary.org/obo/PR_000007131,ephrin type-B receptor 3 +11.7508418,PR:000007778,http://purl.obolibrary.org/obo/PR_000007778,gamma-aminobutyric acid receptor subunit gamma-2 +11.7508418,PR:000008308,http://purl.obolibrary.org/obo/PR_000008308,GS homeobox 1 +11.7508418,PR:000009164,http://purl.obolibrary.org/obo/PR_000009164,intersectin-1 +11.7508418,PR:000009231,http://purl.obolibrary.org/obo/PR_000009231,protein ajuba +11.7508418,PR:000011508,http://purl.obolibrary.org/obo/PR_000011508,nuclear pore complex protein Nup153 +11.7508418,PR:000014230,http://purl.obolibrary.org/obo/PR_000014230,60S ribosomal protein L5 +11.7508418,PR:000015535,http://purl.obolibrary.org/obo/PR_000015535,serine protease inhibitor Kazal-type 5 +11.7508418,PR:000016624,http://purl.obolibrary.org/obo/PR_000016624,trehalase +11.7508418,PR:000016635,http://purl.obolibrary.org/obo/PR_000016635,pro-thyrotropin-releasing hormone +11.7508418,PR:000016788,http://purl.obolibrary.org/obo/PR_000016788,tubulin--tyrosine ligase +11.7508418,PR:000022069,http://purl.obolibrary.org/obo/PR_000022069,none +11.7508418,PR:000022238,http://purl.obolibrary.org/obo/PR_000022238,none +11.7508418,PR:000023073,http://purl.obolibrary.org/obo/PR_000023073,none +11.7508418,PR:P38631,http://purl.obolibrary.org/obo/PR_P38631,none +11.7508418,PR:P52839,http://purl.obolibrary.org/obo/PR_P52839,none +11.7508418,PR:Q06411,http://purl.obolibrary.org/obo/PR_Q06411,none +11.7508418,PR:Q5AF41,http://purl.obolibrary.org/obo/PR_Q5AF41,none +11.7508418,PR:Q9SHG6,http://purl.obolibrary.org/obo/PR_Q9SHG6,none +11.7508418,UBERON:0006800,http://purl.obolibrary.org/obo/UBERON_0006800,anatomical line +11.7508418,UBERON:0008904,http://purl.obolibrary.org/obo/UBERON_0008904,neuromast +11.7508418,UBERON:0034971,http://purl.obolibrary.org/obo/UBERON_0034971,aortic body +11.7563514,CL:0002482,http://purl.obolibrary.org/obo/CL_0002482,dermal melanocyte +11.7563514,DRUGBANK:DB00100,http://purl.obolibrary.org/obo/DRUGBANK_DB00100,none +11.7563514,DRUGBANK:DB00751,http://purl.obolibrary.org/obo/DRUGBANK_DB00751,none +11.7563514,DRUGBANK:DB04801,http://purl.obolibrary.org/obo/DRUGBANK_DB04801,none +11.7563514,DRUGBANK:DB09516,http://purl.obolibrary.org/obo/DRUGBANK_DB09516,none +11.7563514,DRUGBANK:DB10691,http://purl.obolibrary.org/obo/DRUGBANK_DB10691,none +11.7563514,DRUGBANK:DB12637,http://purl.obolibrary.org/obo/DRUGBANK_DB12637,none +11.7563514,DRUGBANK:DB13569,http://purl.obolibrary.org/obo/DRUGBANK_DB13569,none +11.7563514,DRUGBANK:DB15918,http://purl.obolibrary.org/obo/DRUGBANK_DB15918,none +11.7563514,GO:0004662,http://purl.obolibrary.org/obo/GO_0004662,CAAX-protein geranylgeranyltransferase activity +11.7563514,GO:0005251,http://purl.obolibrary.org/obo/GO_0005251,delayed rectifier potassium channel activity +11.7563514,GO:0008353,http://purl.obolibrary.org/obo/GO_0008353,RNA polymerase II CTD heptapeptide repeat kinase activity +11.7563514,GO:0010543,http://purl.obolibrary.org/obo/GO_0010543,regulation of platelet activation +11.7563514,GO:0044853,http://purl.obolibrary.org/obo/GO_0044853,plasma membrane raft +11.7563514,GO:0045824,http://purl.obolibrary.org/obo/GO_0045824,negative regulation of innate immune response +11.7563514,GO:0051194,http://purl.obolibrary.org/obo/GO_0051194,none +11.7563514,GO:0060374,http://purl.obolibrary.org/obo/GO_0060374,mast cell differentiation +11.7563514,MONDO:0001410,http://purl.obolibrary.org/obo/MONDO_0001410,postmenopausal atrophic vaginitis +11.7563514,MONDO:0008221,http://purl.obolibrary.org/obo/MONDO_0008221,prolidase deficiency +11.7563514,MONDO:0008222,http://purl.obolibrary.org/obo/MONDO_0008222,Andersen-Tawil syndrome +11.7563514,MONDO:0009106,http://purl.obolibrary.org/obo/MONDO_0009106,diastematomyelia +11.7563514,MONDO:0011240,http://purl.obolibrary.org/obo/MONDO_0011240,megalencephaly-capillary malformation-polymicrogyria syndrome +11.7563514,MONDO:0011731,http://purl.obolibrary.org/obo/MONDO_0011731,glucose-galactose malabsorption +11.7563514,MONDO:0020055,http://purl.obolibrary.org/obo/MONDO_0020055,autosomal uniparental disomy +11.7563514,MONDO:0020148,http://purl.obolibrary.org/obo/MONDO_0020148,syndromic aniridia +11.7563514,MONDO:0022518,http://purl.obolibrary.org/obo/MONDO_0022518,autoimmune inner ear disease +11.7563514,NCBITaxon:10985,http://purl.obolibrary.org/obo/NCBITaxon_10985,none +11.7563514,NCBITaxon:31721,http://purl.obolibrary.org/obo/NCBITaxon_31721,none +11.7563514,PR:000000375,http://purl.obolibrary.org/obo/PR_000000375,smad9 +11.7563514,PR:000001544,http://purl.obolibrary.org/obo/PR_000001544,programmed cell death 1 ligand 2 +11.7563514,PR:000001578,http://purl.obolibrary.org/obo/PR_000001578,adenosine receptor A3 +11.7563514,PR:000003800,http://purl.obolibrary.org/obo/PR_000003800,TLE family member 5 +11.7563514,PR:000004069,http://purl.obolibrary.org/obo/PR_000004069,anthrax toxin receptor 2 +11.7563514,PR:000004782,http://purl.obolibrary.org/obo/PR_000004782,BCL2/adenovirus E1B 19 kDa protein-interacting protein 3-like +11.7563514,PR:000006011,http://purl.obolibrary.org/obo/PR_000006011,beta-catenin-like protein 1 +11.7563514,PR:000006488,http://purl.obolibrary.org/obo/PR_000006488,GTP-binding protein Di-Ras3 +11.7563514,PR:000008244,http://purl.obolibrary.org/obo/PR_000008244,"glutamate receptor ionotropic, kainate 5" +11.7563514,PR:000008353,http://purl.obolibrary.org/obo/PR_000008353,retinal guanylyl cyclase 1 +11.7563514,PR:000009208,http://purl.obolibrary.org/obo/PR_000009208,protein Jumonji +11.7563514,PR:000009821,http://purl.obolibrary.org/obo/PR_000009821,protein lin-28 homolog B +11.7563514,PR:000010152,http://purl.obolibrary.org/obo/PR_000010152,mitogen-activated protein kinase 11 +11.7563514,PR:000011421,http://purl.obolibrary.org/obo/PR_000011421,nardilysin +11.7563514,PR:000012346,http://purl.obolibrary.org/obo/PR_000012346,protocadherin-15 +11.7563514,PR:000013414,http://purl.obolibrary.org/obo/PR_000013414,patched domain-containing protein 3 +11.7563514,PR:000014255,http://purl.obolibrary.org/obo/PR_000014255,40S ribosomal protein S14 +11.7563514,PR:000015325,http://purl.obolibrary.org/obo/PR_000015325,gamma-synuclein +11.7563514,PR:000015876,http://purl.obolibrary.org/obo/PR_000015876,nesprin-2 +11.7563514,PR:000016508,http://purl.obolibrary.org/obo/PR_000016508,"troponin T, slow skeletal muscle" +11.7563514,PR:000022164,http://purl.obolibrary.org/obo/PR_000022164,none +11.7563514,PR:000023209,http://purl.obolibrary.org/obo/PR_000023209,none +11.7563514,PR:000023969,http://purl.obolibrary.org/obo/PR_000023969,none +11.7563514,PR:000029569,http://purl.obolibrary.org/obo/PR_000029569,histone acetyltransferase KAT8 +11.7563514,PR:P21750,http://purl.obolibrary.org/obo/PR_P21750,none +11.7563514,PR:Q02972,http://purl.obolibrary.org/obo/PR_Q02972,none +11.7563514,PR:Q9FJT8,http://purl.obolibrary.org/obo/PR_Q9FJT8,none +11.7563514,SO:0000343,http://purl.obolibrary.org/obo/SO_0000343,match +11.7563514,SO:0000936,http://purl.obolibrary.org/obo/SO_0000936,vertebrate_immunoglobulin_T_cell_receptor_rearranged_segment +11.7563514,UBERON:0001471,http://purl.obolibrary.org/obo/UBERON_0001471,skin of prepuce of penis +11.7563514,UBERON:0004193,http://purl.obolibrary.org/obo/UBERON_0004193,loop of Henle ascending limb thin segment +11.7563514,UBERON:0025589,http://purl.obolibrary.org/obo/UBERON_0025589,catecholamine system +11.7618916,CHEBI:35493,http://purl.obolibrary.org/obo/CHEBI_35493,antipyretic +11.7618916,CL:0002393,http://purl.obolibrary.org/obo/CL_0002393,intermediate monocyte +11.7618916,DRUGBANK:DB02383,http://purl.obolibrary.org/obo/DRUGBANK_DB02383,none +11.7618916,DRUGBANK:DB04566,http://purl.obolibrary.org/obo/DRUGBANK_DB04566,none +11.7618916,DRUGBANK:DB13409,http://purl.obolibrary.org/obo/DRUGBANK_DB13409,none +11.7618916,GO:0001574,http://purl.obolibrary.org/obo/GO_0001574,ganglioside biosynthetic process +11.7618916,GO:0002191,http://purl.obolibrary.org/obo/GO_0002191,cap-dependent translational initiation +11.7618916,GO:0006654,http://purl.obolibrary.org/obo/GO_0006654,phosphatidic acid biosynthetic process +11.7618916,GO:0009884,http://purl.obolibrary.org/obo/GO_0009884,cytokinin receptor activity +11.7618916,GO:0009941,http://purl.obolibrary.org/obo/GO_0009941,chloroplast envelope +11.7618916,GO:0015145,http://purl.obolibrary.org/obo/GO_0015145,monosaccharide transmembrane transporter activity +11.7618916,GO:0016213,http://purl.obolibrary.org/obo/GO_0016213,linoleoyl-CoA desaturase activity +11.7618916,GO:0016581,http://purl.obolibrary.org/obo/GO_0016581,NuRD complex +11.7618916,GO:0019934,http://purl.obolibrary.org/obo/GO_0019934,cGMP-mediated signaling +11.7618916,GO:0035671,http://purl.obolibrary.org/obo/GO_0035671,enone reductase activity +11.7618916,GO:0042589,http://purl.obolibrary.org/obo/GO_0042589,zymogen granule membrane +11.7618916,GO:0048148,http://purl.obolibrary.org/obo/GO_0048148,behavioral response to cocaine +11.7618916,GO:0071173,http://purl.obolibrary.org/obo/GO_0071173,spindle assembly checkpoint signaling +11.7618916,GO:0090545,http://purl.obolibrary.org/obo/GO_0090545,CHD-type complex +11.7618916,GO:1903703,http://purl.obolibrary.org/obo/GO_1903703,enterocyte differentiation +11.7618916,HP:0010674,http://purl.obolibrary.org/obo/HP_0010674,Abnormality of the curvature of the vertebral column +11.7618916,MONDO:0005992,http://purl.obolibrary.org/obo/MONDO_0005992,trichinosis +11.7618916,MONDO:0006390,http://purl.obolibrary.org/obo/MONDO_0006390,prostate small cell carcinoma +11.7618916,MONDO:0008168,http://purl.obolibrary.org/obo/MONDO_0008168,ovarian fibroma +11.7618916,MONDO:0009297,http://purl.obolibrary.org/obo/MONDO_0009297,familial renal glucosuria +11.7618916,MONDO:0010281,http://purl.obolibrary.org/obo/MONDO_0010281,Danon disease +11.7618916,MONDO:0015465,http://purl.obolibrary.org/obo/MONDO_0015465,craniometaphyseal dysplasia +11.7618916,MONDO:0016071,http://purl.obolibrary.org/obo/MONDO_0016071,juvenile hyaline fibromatosis +11.7618916,MONDO:0016880,http://purl.obolibrary.org/obo/MONDO_0016880,partial deletion of chromosome 18 +11.7618916,MONDO:0019444,http://purl.obolibrary.org/obo/MONDO_0019444,Trichinellosis +11.7618916,MONDO:0037938,http://purl.obolibrary.org/obo/MONDO_0037938,inborn disorder of aspartate family metabolism +11.7618916,NCBITaxon:10580,http://purl.obolibrary.org/obo/NCBITaxon_10580,none +11.7618916,PR:000001604,http://purl.obolibrary.org/obo/PR_000001604,mas-related G-protein coupled receptor F +11.7618916,PR:000003737,http://purl.obolibrary.org/obo/PR_000003737,a disintegrin and metalloproteinase with thrombospondin motifs 9 +11.7618916,PR:000003841,http://purl.obolibrary.org/obo/PR_000003841,glycerol-3-phosphate acyltransferase 3 +11.7618916,PR:000003848,http://purl.obolibrary.org/obo/PR_000003848,cytosolic carboxypeptidase 1 +11.7618916,PR:000004001,http://purl.obolibrary.org/obo/PR_000004001,AMP deaminase 1 +11.7618916,PR:000004901,http://purl.obolibrary.org/obo/PR_000004901,complement C4-A +11.7618916,PR:000005161,http://purl.obolibrary.org/obo/PR_000005161,cell surface glycoprotein CD200 receptor 1 +11.7618916,PR:000006165,http://purl.obolibrary.org/obo/PR_000006165,none +11.7618916,PR:000007290,http://purl.obolibrary.org/obo/PR_000007290,none +11.7618916,PR:000008977,http://purl.obolibrary.org/obo/PR_000008977,elongator complex protein 1 +11.7618916,PR:000010192,http://purl.obolibrary.org/obo/PR_000010192,MARVEL domain-containing protein 2 +11.7618916,PR:000010317,http://purl.obolibrary.org/obo/PR_000010317,homeobox protein Meis2 +11.7618916,PR:000010621,http://purl.obolibrary.org/obo/PR_000010621,"28S ribosomal protein S14, mitochondrial" +11.7618916,PR:000012332,http://purl.obolibrary.org/obo/PR_000012332,histone acetyltransferase KAT2B +11.7618916,PR:000013068,http://purl.obolibrary.org/obo/PR_000013068,liprin-alpha-1 +11.7618916,PR:000014532,http://purl.obolibrary.org/obo/PR_000014532,"protein SCO2, mitochondrial" +11.7618916,PR:000015642,http://purl.obolibrary.org/obo/PR_000015642,sulfiredoxin-1 +11.7618916,PR:000015735,http://purl.obolibrary.org/obo/PR_000015735,SCL-interrupting locus protein +11.7618916,PR:000015810,http://purl.obolibrary.org/obo/PR_000015810,activated RNA polymerase II transcriptional coactivator p15 +11.7618916,PR:000015840,http://purl.obolibrary.org/obo/PR_000015840,surfeit locus protein 1 +11.7618916,PR:000016392,http://purl.obolibrary.org/obo/PR_000016392,transmembrane channel-like protein 1 +11.7618916,PR:000022702,http://purl.obolibrary.org/obo/PR_000022702,none +11.7618916,PR:000022865,http://purl.obolibrary.org/obo/PR_000022865,none +11.7618916,PR:000032270,http://purl.obolibrary.org/obo/PR_000032270,DNA dC->dU-editing enzyme APOBEC-3A +11.7618916,PR:P25157,http://purl.obolibrary.org/obo/PR_P25157,none +11.7618916,PR:P62839,http://purl.obolibrary.org/obo/PR_P62839,none +11.7618916,PR:Q9SV13,http://purl.obolibrary.org/obo/PR_Q9SV13,none +11.7618916,UBERON:0002169,http://purl.obolibrary.org/obo/UBERON_0002169,alveolar sac +11.7618916,UBERON:0006012,http://purl.obolibrary.org/obo/UBERON_0006012,interdigital region +11.7618916,UBERON:0006517,http://purl.obolibrary.org/obo/UBERON_0006517,kidney calyx +11.7618916,UBERON:0006691,http://purl.obolibrary.org/obo/UBERON_0006691,tentorium cerebelli +11.7618916,UBERON:0011206,http://purl.obolibrary.org/obo/UBERON_0011206,hinge joint +11.7618916,UBERON:0012247,http://purl.obolibrary.org/obo/UBERON_0012247,cervical gland +11.7674627,DRUGBANK:DB00525,http://purl.obolibrary.org/obo/DRUGBANK_DB00525,none +11.7674627,DRUGBANK:DB01231,http://purl.obolibrary.org/obo/DRUGBANK_DB01231,none +11.7674627,DRUGBANK:DB06217,http://purl.obolibrary.org/obo/DRUGBANK_DB06217,none +11.7674627,DRUGBANK:DB06838,http://purl.obolibrary.org/obo/DRUGBANK_DB06838,none +11.7674627,DRUGBANK:DB08822,http://purl.obolibrary.org/obo/DRUGBANK_DB08822,none +11.7674627,DRUGBANK:DB09034,http://purl.obolibrary.org/obo/DRUGBANK_DB09034,none +11.7674627,DRUGBANK:DB11219,http://purl.obolibrary.org/obo/DRUGBANK_DB11219,none +11.7674627,DRUGBANK:DB12191,http://purl.obolibrary.org/obo/DRUGBANK_DB12191,none +11.7674627,DRUGBANK:DB12498,http://purl.obolibrary.org/obo/DRUGBANK_DB12498,none +11.7674627,DRUGBANK:DB14297,http://purl.obolibrary.org/obo/DRUGBANK_DB14297,none +11.7674627,DRUGBANK:DB15589,http://purl.obolibrary.org/obo/DRUGBANK_DB15589,none +11.7674627,GO:0004132,http://purl.obolibrary.org/obo/GO_0004132,dCMP deaminase activity +11.7674627,GO:0006997,http://purl.obolibrary.org/obo/GO_0006997,nucleus organization +11.7674627,GO:0008861,http://purl.obolibrary.org/obo/GO_0008861,formate C-acetyltransferase activity +11.7674627,GO:0009441,http://purl.obolibrary.org/obo/GO_0009441,glycolate metabolic process +11.7674627,GO:0034635,http://purl.obolibrary.org/obo/GO_0034635,glutathione transport +11.7674627,GO:0045862,http://purl.obolibrary.org/obo/GO_0045862,positive regulation of proteolysis +11.7674627,GO:0051610,http://purl.obolibrary.org/obo/GO_0051610,serotonin uptake +11.7674627,GO:0060174,http://purl.obolibrary.org/obo/GO_0060174,limb bud formation +11.7674627,MONDO:0000938,http://purl.obolibrary.org/obo/MONDO_0000938,gastric leiomyoma +11.7674627,MONDO:0001121,http://purl.obolibrary.org/obo/MONDO_0001121,frontal sinusitis +11.7674627,MONDO:0001895,http://purl.obolibrary.org/obo/MONDO_0001895,acute retrobulbar neuritis +11.7674627,MONDO:0002808,http://purl.obolibrary.org/obo/MONDO_0002808,pancreatic serous cystadenoma +11.7674627,MONDO:0006857,http://purl.obolibrary.org/obo/MONDO_0006857,middle cerebral artery infarction +11.7674627,MONDO:0008111,http://purl.obolibrary.org/obo/MONDO_0008111,oculodentodigital dysplasia +11.7674627,MONDO:0009578,http://purl.obolibrary.org/obo/MONDO_0009578,neurocutaneous melanocytosis +11.7674627,MONDO:0015665,http://purl.obolibrary.org/obo/MONDO_0015665,scleromyxedema +11.7674627,MONDO:0018432,http://purl.obolibrary.org/obo/MONDO_0018432,lichen myxedematosus +11.7674627,MONDO:0018640,http://purl.obolibrary.org/obo/MONDO_0018640,secondary vasculitis +11.7674627,MONDO:0700086,http://purl.obolibrary.org/obo/MONDO_0700086,uniparental disomy +11.7674627,MOP:0001028,http://purl.obolibrary.org/obo/MOP_0001028,none +11.7674627,MOP:0001029,http://purl.obolibrary.org/obo/MOP_0001029,none +11.7674627,MOP:0001479,http://purl.obolibrary.org/obo/MOP_0001479,none +11.7674627,NCBITaxon:10094,http://purl.obolibrary.org/obo/NCBITaxon_10094,none +11.7674627,NCBITaxon:11641,http://purl.obolibrary.org/obo/NCBITaxon_11641,none +11.7674627,NCBITaxon:30083,http://purl.obolibrary.org/obo/NCBITaxon_30083,none +11.7674627,NCBITaxon:33341,http://purl.obolibrary.org/obo/NCBITaxon_33341,none +11.7674627,NCBITaxon:862511,http://purl.obolibrary.org/obo/NCBITaxon_862511,none +11.7674627,PR:000003192,http://purl.obolibrary.org/obo/PR_000003192,E3 ubiquitin-protein ligase Itchy +11.7674627,PR:000007127,http://purl.obolibrary.org/obo/PR_000007127,ephrin type-A receptor 7 +11.7674627,PR:000007918,http://purl.obolibrary.org/obo/PR_000007918,BMP3B +11.7674627,PR:000009613,http://purl.obolibrary.org/obo/PR_000009613,none +11.7674627,PR:000011300,http://purl.obolibrary.org/obo/PR_000011300,RNA-binding protein NOB1 +11.7674627,PR:000016546,http://purl.obolibrary.org/obo/PR_000016546,DNA topoisomerase 3-alpha +11.7674627,PR:000022247,http://purl.obolibrary.org/obo/PR_000022247,none +11.7674627,PR:000023072,http://purl.obolibrary.org/obo/PR_000023072,none +11.7674627,PR:000023575,http://purl.obolibrary.org/obo/PR_000023575,none +11.7674627,PR:000029171,http://purl.obolibrary.org/obo/PR_000029171,none +11.7674627,PR:000029262,http://purl.obolibrary.org/obo/PR_000029262,AF4/FMR2 family member 1 +11.7674627,PR:000031171,http://purl.obolibrary.org/obo/PR_000031171,polyamine-transporting ATPase 13A2 +11.7674627,PR:000050008,http://purl.obolibrary.org/obo/PR_000050008,ELMO protein +11.7674627,PR:O23657,http://purl.obolibrary.org/obo/PR_O23657,none +11.7674627,PR:O74476,http://purl.obolibrary.org/obo/PR_O74476,none +11.7674627,PR:O82772,http://purl.obolibrary.org/obo/PR_O82772,none +11.7674627,PR:P00758,http://purl.obolibrary.org/obo/PR_P00758,none +11.7674627,PR:P05319,http://purl.obolibrary.org/obo/PR_P05319,none +11.7674627,PR:Q42569,http://purl.obolibrary.org/obo/PR_Q42569,none +11.7674627,PR:Q8GUG7,http://purl.obolibrary.org/obo/PR_Q8GUG7,none +11.7674627,UBERON:0002899,http://purl.obolibrary.org/obo/UBERON_0002899,hippocampal sulcus +11.7674627,UBERON:0016570,http://purl.obolibrary.org/obo/UBERON_0016570,lamina of gray matter of spinal cord +11.7674627,UBERON:0018537,http://purl.obolibrary.org/obo/UBERON_0018537,tail feather +11.7730649,CHEBI:86323,http://purl.obolibrary.org/obo/CHEBI_86323,conazole antifungal agent +11.7730649,CHEBI:8872,http://purl.obolibrary.org/obo/CHEBI_8872,ritodrine +11.7730649,CHEBI:9652,http://purl.obolibrary.org/obo/CHEBI_9652,tranylcypromine +11.7730649,CL:0000831,http://purl.obolibrary.org/obo/CL_0000831,mast cell progenitor +11.7730649,CL:0000972,http://purl.obolibrary.org/obo/CL_0000972,class switched memory B cell +11.7730649,DRUGBANK:DB09309,http://purl.obolibrary.org/obo/DRUGBANK_DB09309,none +11.7730649,GO:0004821,http://purl.obolibrary.org/obo/GO_0004821,histidine-tRNA ligase activity +11.7730649,GO:0006473,http://purl.obolibrary.org/obo/GO_0006473,protein acetylation +11.7730649,GO:0007405,http://purl.obolibrary.org/obo/GO_0007405,neuroblast proliferation +11.7730649,GO:0008120,http://purl.obolibrary.org/obo/GO_0008120,ceramide glucosyltransferase activity +11.7730649,GO:0016639,http://purl.obolibrary.org/obo/GO_0016639,"oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor" +11.7730649,GO:0032450,http://purl.obolibrary.org/obo/GO_0032450,maltose alpha-glucosidase activity +11.7730649,GO:0044158,http://purl.obolibrary.org/obo/GO_0044158,host cell wall +11.7730649,GO:0060318,http://purl.obolibrary.org/obo/GO_0060318,definitive erythrocyte differentiation +11.7730649,GO:0098610,http://purl.obolibrary.org/obo/GO_0098610,adhesion between unicellular organisms +11.7730649,GO:1904044,http://purl.obolibrary.org/obo/GO_1904044,response to aldosterone +11.7730649,MONDO:0001195,http://purl.obolibrary.org/obo/MONDO_0001195,spotted fever +11.7730649,MONDO:0002411,http://purl.obolibrary.org/obo/MONDO_0002411,narcissistic personality disorder +11.7730649,MONDO:0003826,http://purl.obolibrary.org/obo/MONDO_0003826,mediastinum seminoma +11.7730649,MONDO:0005787,http://purl.obolibrary.org/obo/MONDO_0005787,hepatic tuberculosis +11.7730649,MONDO:0006743,http://purl.obolibrary.org/obo/MONDO_0006743,endocrine tuberculosis +11.7730649,MONDO:0009046,http://purl.obolibrary.org/obo/MONDO_0009046,Fraser syndrome +11.7730649,MONDO:0017575,http://purl.obolibrary.org/obo/MONDO_0017575,mitochondrial neurogastrointestinal encephalomyopathy +11.7730649,MONDO:0021088,http://purl.obolibrary.org/obo/MONDO_0021088,papillary meningioma +11.7730649,MOP:0001162,http://purl.obolibrary.org/obo/MOP_0001162,none +11.7730649,NCBITaxon:118969,http://purl.obolibrary.org/obo/NCBITaxon_118969,Legionellales +11.7730649,NCBITaxon:33343,http://purl.obolibrary.org/obo/NCBITaxon_33343,Prosorrhyncha +11.7730649,NCBITaxon:33345,http://purl.obolibrary.org/obo/NCBITaxon_33345,Heteroptera +11.7730649,NCBITaxon:99883,http://purl.obolibrary.org/obo/NCBITaxon_99883,none +11.7730649,PR:000001671,http://purl.obolibrary.org/obo/PR_000001671,somatostatin receptor type 4 +11.7730649,PR:000004557,http://purl.obolibrary.org/obo/PR_000004557,none +11.7730649,PR:000005208,http://purl.obolibrary.org/obo/PR_000005208,Cdc42 effector protein 1 +11.7730649,PR:000005534,http://purl.obolibrary.org/obo/PR_000005534,H(+)/Cl(-) exchange transporter 7 +11.7730649,PR:000005668,http://purl.obolibrary.org/obo/PR_000005668,contactin-3 +11.7730649,PR:000006480,http://purl.obolibrary.org/obo/PR_000006480,type I iodothyronine deiodinase +11.7730649,PR:000007707,http://purl.obolibrary.org/obo/PR_000007707,"alpha-(1,6)-fucosyltransferase" +11.7730649,PR:000009484,http://purl.obolibrary.org/obo/PR_000009484,"keratin, type II cytoskeletal 6C" +11.7730649,PR:000009676,http://purl.obolibrary.org/obo/PR_000009676,LIM and SH3 domain protein 1 +11.7730649,PR:000010265,http://purl.obolibrary.org/obo/PR_000010265,midkine +11.7730649,PR:000010297,http://purl.obolibrary.org/obo/PR_000010297,mediator of RNA polymerase II transcription subunit 25 +11.7730649,PR:000012419,http://purl.obolibrary.org/obo/PR_000012419,pericentriolar material 1 protein +11.7730649,PR:000013466,http://purl.obolibrary.org/obo/PR_000013466,protein tyrosine phosphatase receptor type C-associated protein +11.7730649,PR:000014771,http://purl.obolibrary.org/obo/PR_000014771,pulmonary surfactant-associated protein A1 +11.7730649,PR:000015061,http://purl.obolibrary.org/obo/PR_000015061,"solute carrier family 2, facilitated glucose transporter member 12" +11.7730649,PR:000015526,http://purl.obolibrary.org/obo/PR_000015526,transcription factor Spi-C +11.7730649,PR:000016512,http://purl.obolibrary.org/obo/PR_000016512,nuclear transition protein 2 +11.7730649,PR:000017499,http://purl.obolibrary.org/obo/PR_000017499,exportin-5 +11.7730649,PR:000023620,http://purl.obolibrary.org/obo/PR_000023620,none +11.7730649,PR:000032289,http://purl.obolibrary.org/obo/PR_000032289,structure-specific endonuclease subunit SLX4 +11.7730649,PR:000044710,http://purl.obolibrary.org/obo/PR_000044710,none +11.7730649,PR:P35621,http://purl.obolibrary.org/obo/PR_P35621,none +11.7730649,PR:P40969,http://purl.obolibrary.org/obo/PR_P40969,none +11.7730649,PR:P47171,http://purl.obolibrary.org/obo/PR_P47171,none +11.7730649,PR:Q9P7H1,http://purl.obolibrary.org/obo/PR_Q9P7H1,none +11.7730649,PR:Q9U1H0,http://purl.obolibrary.org/obo/PR_Q9U1H0,none +11.7730649,SO:0001210,http://purl.obolibrary.org/obo/SO_0001210,translational_frameshift +11.7730649,SO:0001808,http://purl.obolibrary.org/obo/SO_0001808,mitochondrial_targeting_signal +11.7730649,SO:0002027,http://purl.obolibrary.org/obo/SO_0002027,uORF +11.7730649,UBERON:0000348,http://purl.obolibrary.org/obo/UBERON_0000348,ophthalmic nerve +11.7730649,UBERON:0001196,http://purl.obolibrary.org/obo/UBERON_0001196,middle colic artery +11.7730649,UBERON:0001293,http://purl.obolibrary.org/obo/UBERON_0001293,outer medulla of kidney +11.7730649,UBERON:0022469,http://purl.obolibrary.org/obo/UBERON_0022469,primary olfactory cortex +11.7786987,CHEBI:35618,http://purl.obolibrary.org/obo/CHEBI_35618,aromatic ether +11.7786987,CHEBI:51959,http://purl.obolibrary.org/obo/CHEBI_51959,organic tricyclic compound +11.7786987,DRUGBANK:DB00707,http://purl.obolibrary.org/obo/DRUGBANK_DB00707,none +11.7786987,DRUGBANK:DB02832,http://purl.obolibrary.org/obo/DRUGBANK_DB02832,none +11.7786987,DRUGBANK:DB03514,http://purl.obolibrary.org/obo/DRUGBANK_DB03514,none +11.7786987,DRUGBANK:DB04881,http://purl.obolibrary.org/obo/DRUGBANK_DB04881,none +11.7786987,DRUGBANK:DB11121,http://purl.obolibrary.org/obo/DRUGBANK_DB11121,none +11.7786987,DRUGBANK:DB11881,http://purl.obolibrary.org/obo/DRUGBANK_DB11881,none +11.7786987,DRUGBANK:DB15912,http://purl.obolibrary.org/obo/DRUGBANK_DB15912,none +11.7786987,DRUGBANK:DB15973,http://purl.obolibrary.org/obo/DRUGBANK_DB15973,none +11.7786987,GO:0004419,http://purl.obolibrary.org/obo/GO_0004419,hydroxymethylglutaryl-CoA lyase activity +11.7786987,GO:0009737,http://purl.obolibrary.org/obo/GO_0009737,response to abscisic acid +11.7786987,GO:0032039,http://purl.obolibrary.org/obo/GO_0032039,integrator complex +11.7786987,GO:0033897,http://purl.obolibrary.org/obo/GO_0033897,ribonuclease T2 activity +11.7786987,GO:0043615,http://purl.obolibrary.org/obo/GO_0043615,astrocyte cell migration +11.7786987,GO:0048705,http://purl.obolibrary.org/obo/GO_0048705,skeletal system morphogenesis +11.7786987,GO:0051958,http://purl.obolibrary.org/obo/GO_0051958,methotrexate transport +11.7786987,MONDO:0001613,http://purl.obolibrary.org/obo/MONDO_0001613,vertebrobasilar insufficiency +11.7786987,MONDO:0005562,http://purl.obolibrary.org/obo/MONDO_0005562,age-related hearing impairment +11.7786987,MONDO:0009804,http://purl.obolibrary.org/obo/MONDO_0009804,osteogenesis imperfecta type 3 +11.7786987,MONDO:0011374,http://purl.obolibrary.org/obo/MONDO_0011374,"hypercholesterolemia, familial, 4" +11.7786987,MONDO:0013860,http://purl.obolibrary.org/obo/MONDO_0013860,idiopathic membranous glomerulonephritis +11.7786987,MONDO:0015392,http://purl.obolibrary.org/obo/MONDO_0015392,nasal glial heterotopia +11.7786987,MONDO:0016101,http://purl.obolibrary.org/obo/MONDO_0016101,neurolymphomatosis +11.7786987,MONDO:0100150,http://purl.obolibrary.org/obo/MONDO_0100150,RYR1-related myopathy +11.7786987,NCBITaxon:1489908,http://purl.obolibrary.org/obo/NCBITaxon_1489908,Ovalentaria +11.7786987,NCBITaxon:33347,http://purl.obolibrary.org/obo/NCBITaxon_33347,Euheteroptera +11.7786987,NCBITaxon:33349,http://purl.obolibrary.org/obo/NCBITaxon_33349,Neoheteroptera +11.7786987,NCBITaxon:33351,http://purl.obolibrary.org/obo/NCBITaxon_33351,Panheteroptera +11.7786987,NCBITaxon:64293,http://purl.obolibrary.org/obo/NCBITaxon_64293,none +11.7786987,PR:000003552,http://purl.obolibrary.org/obo/PR_000003552,"ATP-binding cassette sub-family B member 7, mitochondrial" +11.7786987,PR:000004812,http://purl.obolibrary.org/obo/PR_000004812,transcription factor IIIB 90 kDa subunit +11.7786987,PR:000009209,http://purl.obolibrary.org/obo/PR_000009209,juxtaposed with another zinc finger protein 1 +11.7786987,PR:000009316,http://purl.obolibrary.org/obo/PR_000009316,kinesin heavy chain isoform 5A +11.7786987,PR:000010547,http://purl.obolibrary.org/obo/PR_000010547,MAGUK p55 subfamily member 7 +11.7786987,PR:000012041,http://purl.obolibrary.org/obo/PR_000012041,ORM1-like protein 3 +11.7786987,PR:000013186,http://purl.obolibrary.org/obo/PR_000013186,PR domain zinc finger protein 2 +11.7786987,PR:000013709,http://purl.obolibrary.org/obo/PR_000013709,Ran-specific GTPase-activating protein +11.7786987,PR:000016673,http://purl.obolibrary.org/obo/PR_000016673,activating signal cointegrator 1 +11.7786987,PR:000017109,http://purl.obolibrary.org/obo/PR_000017109,regulator of nonsense transcripts 2 +11.7786987,PR:000017372,http://purl.obolibrary.org/obo/PR_000017372,Wiskott-Aldrich syndrome protein family member 1 +11.7786987,PR:000017631,http://purl.obolibrary.org/obo/PR_000017631,zinc finger protein 106 +11.7786987,PR:000023555,http://purl.obolibrary.org/obo/PR_000023555,none +11.7786987,PR:000023580,http://purl.obolibrary.org/obo/PR_000023580,none +11.7786987,PR:000024101,http://purl.obolibrary.org/obo/PR_000024101,none +11.7786987,PR:P07185,http://purl.obolibrary.org/obo/PR_P07185,none +11.7786987,SO:1000154,http://purl.obolibrary.org/obo/SO_1000154,insertional_duplication +11.7786987,UBERON:0001366,http://purl.obolibrary.org/obo/UBERON_0001366,parietal peritoneum +11.7786987,UBERON:0006966,http://purl.obolibrary.org/obo/UBERON_0006966,coronary capillary +11.7786987,UBERON:0010858,http://purl.obolibrary.org/obo/UBERON_0010858,inter limb-segment region +11.7786987,UBERON:0013696,http://purl.obolibrary.org/obo/UBERON_0013696,tonsil epithelium +11.7843645,CHEBI:37163,http://purl.obolibrary.org/obo/CHEBI_37163,glucan +11.7843645,CHEBI:37164,http://purl.obolibrary.org/obo/CHEBI_37164,homopolysaccharide +11.7843645,CHEBI:59740,http://purl.obolibrary.org/obo/CHEBI_59740,nucleophilic reagent +11.7843645,CHEBI:86420,http://purl.obolibrary.org/obo/CHEBI_86420,imidazole antifungal agent +11.7843645,CHEBI:87069,http://purl.obolibrary.org/obo/CHEBI_87069,imidazole antifungal drug +11.7843645,CL:1000494,http://purl.obolibrary.org/obo/CL_1000494,nephron tubule epithelial cell +11.7843645,DRUGBANK:DB01047,http://purl.obolibrary.org/obo/DRUGBANK_DB01047,none +11.7843645,DRUGBANK:DB02417,http://purl.obolibrary.org/obo/DRUGBANK_DB02417,none +11.7843645,DRUGBANK:DB04214,http://purl.obolibrary.org/obo/DRUGBANK_DB04214,none +11.7843645,DRUGBANK:DB15293,http://purl.obolibrary.org/obo/DRUGBANK_DB15293,none +11.7843645,GO:0002028,http://purl.obolibrary.org/obo/GO_0002028,regulation of sodium ion transport +11.7843645,GO:0006031,http://purl.obolibrary.org/obo/GO_0006031,chitin biosynthetic process +11.7843645,GO:0016855,http://purl.obolibrary.org/obo/GO_0016855,"racemase and epimerase activity, acting on amino acids and derivatives" +11.7843645,GO:0019781,http://purl.obolibrary.org/obo/GO_0019781,NEDD8 activating enzyme activity +11.7843645,GO:0030880,http://purl.obolibrary.org/obo/GO_0030880,RNA polymerase complex +11.7843645,GO:0035162,http://purl.obolibrary.org/obo/GO_0035162,embryonic hemopoiesis +11.7843645,GO:0048831,http://purl.obolibrary.org/obo/GO_0048831,regulation of shoot system development +11.7843645,GO:0097431,http://purl.obolibrary.org/obo/GO_0097431,mitotic spindle pole +11.7843645,HP:0001396,http://purl.obolibrary.org/obo/HP_0001396,Cholestasis +11.7843645,MONDO:0004645,http://purl.obolibrary.org/obo/MONDO_0004645,cheek mucosa cancer +11.7843645,MONDO:0006596,http://purl.obolibrary.org/obo/MONDO_0006596,photoallergic dermatitis +11.7843645,MONDO:0015821,http://purl.obolibrary.org/obo/MONDO_0015821,mycosis fungoides and variants +11.7843645,MONDO:0043678,http://purl.obolibrary.org/obo/MONDO_0043678,chromosome inversion +11.7843645,NCBITaxon:8578,http://purl.obolibrary.org/obo/NCBITaxon_8578,Colubridae +11.7843645,PR:000001656,http://purl.obolibrary.org/obo/PR_000001656,prostaglandin D2 receptor +11.7843645,PR:000002172,http://purl.obolibrary.org/obo/PR_000002172,zinc finger protein Helios +11.7843645,PR:000003179,http://purl.obolibrary.org/obo/PR_000003179,SHC-transforming protein 4 +11.7843645,PR:000003971,http://purl.obolibrary.org/obo/PR_000003971,alsin +11.7843645,PR:000004559,http://purl.obolibrary.org/obo/PR_000004559,none +11.7843645,PR:000004809,http://purl.obolibrary.org/obo/PR_000004809,bromodomain-containing protein 8 +11.7843645,PR:000005086,http://purl.obolibrary.org/obo/PR_000005086,chromobox protein homolog 5 +11.7843645,PR:000005405,http://purl.obolibrary.org/obo/PR_000005405,mitochondrial intermembrane space import and assembly protein 40 +11.7843645,PR:000005800,http://purl.obolibrary.org/obo/PR_000005800,carboxypeptidase A6 +11.7843645,PR:000007200,http://purl.obolibrary.org/obo/PR_000007200,endothelial cell-specific molecule 1 +11.7843645,PR:000008271,http://purl.obolibrary.org/obo/PR_000008271,progranulin +11.7843645,PR:000008660,http://purl.obolibrary.org/obo/PR_000008660,heterogeneous nuclear ribonucleoproteins A2/B1 +11.7843645,PR:000008690,http://purl.obolibrary.org/obo/PR_000008690,homeobox protein Hox-A2 +11.7843645,PR:000010492,http://purl.obolibrary.org/obo/PR_000010492,multimerin-1 +11.7843645,PR:000010680,http://purl.obolibrary.org/obo/PR_000010680,peptide methionine sulfoxide reductase +11.7843645,PR:000015199,http://purl.obolibrary.org/obo/PR_000015199,cationic amino acid transporter 3 +11.7843645,PR:000023223,http://purl.obolibrary.org/obo/PR_000023223,none +11.7843645,PR:000023565,http://purl.obolibrary.org/obo/PR_000023565,none +11.7843645,PR:000024067,http://purl.obolibrary.org/obo/PR_000024067,none +11.7843645,PR:P02640,http://purl.obolibrary.org/obo/PR_P02640,none +11.7843645,PR:P13773,http://purl.obolibrary.org/obo/PR_P13773,none +11.7843645,PR:Q8L5Y6,http://purl.obolibrary.org/obo/PR_Q8L5Y6,none +11.7843645,PR:Q9U1H9,http://purl.obolibrary.org/obo/PR_Q9U1H9,none +11.7843645,PR:Q9VS48,http://purl.obolibrary.org/obo/PR_Q9VS48,none +11.7843645,SO:0001413,http://purl.obolibrary.org/obo/SO_0001413,translocation_breakpoint +11.7843645,UBERON:0002134,http://purl.obolibrary.org/obo/UBERON_0002134,tricuspid valve +11.7843645,UBERON:0005208,http://purl.obolibrary.org/obo/UBERON_0005208,right atrium valve +11.7843645,UBERON:0005316,http://purl.obolibrary.org/obo/UBERON_0005316,endocardial endothelium +11.7843645,UBERON:0007776,http://purl.obolibrary.org/obo/UBERON_0007776,unerupted tooth +11.7843645,UBERON:0010207,http://purl.obolibrary.org/obo/UBERON_0010207,nictitating membrane +11.7900625,CHEBI:24632,http://purl.obolibrary.org/obo/CHEBI_24632,hydrocarbon +11.7900625,CL:0000916,http://purl.obolibrary.org/obo/CL_0000916,dendritic epidermal T cell +11.7900625,CL:0002520,http://purl.obolibrary.org/obo/CL_0002520,nephrocyte +11.7900625,CL:1001509,http://purl.obolibrary.org/obo/CL_1001509,glycinergic neuron +11.7900625,DRUGBANK:DB02054,http://purl.obolibrary.org/obo/DRUGBANK_DB02054,none +11.7900625,DRUGBANK:DB06413,http://purl.obolibrary.org/obo/DRUGBANK_DB06413,none +11.7900625,DRUGBANK:DB09221,http://purl.obolibrary.org/obo/DRUGBANK_DB09221,none +11.7900625,DRUGBANK:DB10641,http://purl.obolibrary.org/obo/DRUGBANK_DB10641,none +11.7900625,DRUGBANK:DB12087,http://purl.obolibrary.org/obo/DRUGBANK_DB12087,none +11.7900625,GO:0005247,http://purl.obolibrary.org/obo/GO_0005247,voltage-gated chloride channel activity +11.7900625,GO:0006663,http://purl.obolibrary.org/obo/GO_0006663,platelet activating factor biosynthetic process +11.7900625,GO:0014821,http://purl.obolibrary.org/obo/GO_0014821,phasic smooth muscle contraction +11.7900625,GO:0015628,http://purl.obolibrary.org/obo/GO_0015628,protein secretion by the type II secretion system +11.7900625,GO:0030254,http://purl.obolibrary.org/obo/GO_0030254,protein secretion by the type III secretion system +11.7900625,GO:0038177,http://purl.obolibrary.org/obo/GO_0038177,death receptor agonist activity +11.7900625,GO:0050755,http://purl.obolibrary.org/obo/GO_0050755,none +11.7900625,GO:0051197,http://purl.obolibrary.org/obo/GO_0051197,none +11.7900625,GO:0060349,http://purl.obolibrary.org/obo/GO_0060349,bone morphogenesis +11.7900625,GO:0097194,http://purl.obolibrary.org/obo/GO_0097194,execution phase of apoptosis +11.7900625,MONDO:0001649,http://purl.obolibrary.org/obo/MONDO_0001649,fungal esophagitis +11.7900625,MONDO:0003367,http://purl.obolibrary.org/obo/MONDO_0003367,gastric leiomyosarcoma +11.7900625,MONDO:0010580,http://purl.obolibrary.org/obo/MONDO_0010580,immune dysregulation-polyendocrinopathy-enteropathy-X-linked syndrome +11.7900625,MONDO:0011818,http://purl.obolibrary.org/obo/MONDO_0011818,isolated focal cortical dysplasia type II +11.7900625,MONDO:0017362,http://purl.obolibrary.org/obo/MONDO_0017362,neuralgic amyotrophy +11.7900625,MONDO:0027766,http://purl.obolibrary.org/obo/MONDO_0027766,generalized lipodystrophy +11.7900625,NCBITaxon:12045,http://purl.obolibrary.org/obo/NCBITaxon_12045,none +11.7900625,NCBITaxon:12232,http://purl.obolibrary.org/obo/NCBITaxon_12232,none +11.7900625,PR:000006164,http://purl.obolibrary.org/obo/PR_000006164,none +11.7900625,PR:000006620,http://purl.obolibrary.org/obo/PR_000006620,dedicator of cytokinesis protein 3 +11.7900625,PR:000007191,http://purl.obolibrary.org/obo/PR_000007191,ERBB receptor feedback inhibitor 1 +11.7900625,PR:000009830,http://purl.obolibrary.org/obo/PR_000009830,leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 1 +11.7900625,PR:000010390,http://purl.obolibrary.org/obo/PR_000010390,microsomal glutathione S-transferase 1 +11.7900625,PR:000011223,http://purl.obolibrary.org/obo/PR_000011223,nischarin +11.7900625,PR:000011324,http://purl.obolibrary.org/obo/PR_000011324,nucleolar protein 56 +11.7900625,PR:000011525,http://purl.obolibrary.org/obo/PR_000011525,nuclear pore complex protein Nup93 +11.7900625,PR:000014985,http://purl.obolibrary.org/obo/PR_000014985,solute carrier family 22 member 16 +11.7900625,PR:000015586,http://purl.obolibrary.org/obo/PR_000015586,SPRY domain-containing SOCS box protein 1 +11.7900625,PR:000022393,http://purl.obolibrary.org/obo/PR_000022393,none +11.7900625,PR:000023325,http://purl.obolibrary.org/obo/PR_000023325,none +11.7900625,PR:000023838,http://purl.obolibrary.org/obo/PR_000023838,none +11.7900625,PR:000031675,http://purl.obolibrary.org/obo/PR_000031675,chromatin-remodeling ATPase INO80 +11.7900625,PR:P87158,http://purl.obolibrary.org/obo/PR_P87158,none +11.7900625,PR:P98154,http://purl.obolibrary.org/obo/PR_P98154,none +11.7900625,PR:Q9FLY5,http://purl.obolibrary.org/obo/PR_Q9FLY5,none +11.7900625,PR:Q9FY54,http://purl.obolibrary.org/obo/PR_Q9FY54,none +11.7900625,SO:0000636,http://purl.obolibrary.org/obo/SO_0000636,spliced_leader_RNA +11.7900625,SO:0000751,http://purl.obolibrary.org/obo/SO_0000751,proviral_location +11.7900625,SO:0000903,http://purl.obolibrary.org/obo/SO_0000903,endogenous_retroviral_sequence +11.7900625,UBERON:0001053,http://purl.obolibrary.org/obo/UBERON_0001053,arthropod neurohemal organ +11.7900625,UBERON:0001056,http://purl.obolibrary.org/obo/UBERON_0001056,corpus cardiacum +11.7900625,UBERON:0001315,http://purl.obolibrary.org/obo/UBERON_0001315,superior gluteal artery +11.7900625,UBERON:0002011,http://purl.obolibrary.org/obo/UBERON_0002011,thoracodorsal artery +11.7900625,UBERON:0002292,http://purl.obolibrary.org/obo/UBERON_0002292,costovertebral joint +11.7900625,UBERON:0009020,http://purl.obolibrary.org/obo/UBERON_0009020,left uterine horn +11.7900625,UBERON:0010368,http://purl.obolibrary.org/obo/UBERON_0010368,pulmonary lobule +11.7900625,UBERON:0015238,http://purl.obolibrary.org/obo/UBERON_0015238,pineal complex +11.7900625,UBERON:0018674,http://purl.obolibrary.org/obo/UBERON_0018674,heart vasculature +11.7900625,UBERON:0035040,http://purl.obolibrary.org/obo/UBERON_0035040,superior rectal artery +11.7957932,CHEBI:10034,http://purl.obolibrary.org/obo/CHEBI_10034,warfarin sodium +11.7957932,CHEBI:50525,http://purl.obolibrary.org/obo/CHEBI_50525,phenolate anion +11.7957932,CHEBI:79020,http://purl.obolibrary.org/obo/CHEBI_79020,"alpha,beta-unsaturated monocarboxylic acid" +11.7957932,CHEBI:83925,http://purl.obolibrary.org/obo/CHEBI_83925,non-proteinogenic alpha-amino acid +11.7957932,CHEBI:87071,http://purl.obolibrary.org/obo/CHEBI_87071,conazole antifungal drug +11.7957932,DRUGBANK:DB01324,http://purl.obolibrary.org/obo/DRUGBANK_DB01324,none +11.7957932,DRUGBANK:DB01541,http://purl.obolibrary.org/obo/DRUGBANK_DB01541,none +11.7957932,DRUGBANK:DB04345,http://purl.obolibrary.org/obo/DRUGBANK_DB04345,none +11.7957932,DRUGBANK:DB08937,http://purl.obolibrary.org/obo/DRUGBANK_DB08937,none +11.7957932,DRUGBANK:DB13189,http://purl.obolibrary.org/obo/DRUGBANK_DB13189,none +11.7957932,DRUGBANK:DB13392,http://purl.obolibrary.org/obo/DRUGBANK_DB13392,none +11.7957932,GO:0001578,http://purl.obolibrary.org/obo/GO_0001578,microtubule bundle formation +11.7957932,GO:0042645,http://purl.obolibrary.org/obo/GO_0042645,mitochondrial nucleoid +11.7957932,GO:0045486,http://purl.obolibrary.org/obo/GO_0045486,naringenin 3-dioxygenase activity +11.7957932,GO:0050334,http://purl.obolibrary.org/obo/GO_0050334,thiaminase activity +11.7957932,GO:0051875,http://purl.obolibrary.org/obo/GO_0051875,pigment granule localization +11.7957932,GO:0072603,http://purl.obolibrary.org/obo/GO_0072603,none +11.7957932,GO:0140414,http://purl.obolibrary.org/obo/GO_0140414,phosphopantetheine-dependent carrier activity +11.7957932,MONDO:0000478,http://purl.obolibrary.org/obo/MONDO_0000478,multifocal dystonia +11.7957932,MONDO:0001648,http://purl.obolibrary.org/obo/MONDO_0001648,esophageal candidiasis +11.7957932,MONDO:0009937,http://purl.obolibrary.org/obo/MONDO_0009937,pulmonary venoocclusive disease +11.7957932,MONDO:0010613,http://purl.obolibrary.org/obo/MONDO_0010613,inborn glycerol kinase deficiency +11.7957932,MONDO:0017993,http://purl.obolibrary.org/obo/MONDO_0017993,cerebral sinovenous thrombosis +11.7957932,MONDO:0018554,http://purl.obolibrary.org/obo/MONDO_0018554,pulmonary veno-occlusive disease and/or pulmonary capillary haemangiomatosis +11.7957932,MONDO:0024797,http://purl.obolibrary.org/obo/MONDO_0024797,adult brain stem neoplasm +11.7957932,NCBITaxon:11039,http://purl.obolibrary.org/obo/NCBITaxon_11039,Western equine encephalitis virus +11.7957932,PR:000002291,http://purl.obolibrary.org/obo/PR_000002291,TNF receptor-associated factor 5 +11.7957932,PR:000004415,http://purl.obolibrary.org/obo/PR_000004415,cysteine protease ATG4B +11.7957932,PR:000005628,http://purl.obolibrary.org/obo/PR_000005628,beta-Ala-His dipeptidase +11.7957932,PR:000007156,http://purl.obolibrary.org/obo/PR_000007156,endoplasmic reticulum aminopeptidase 2 +11.7957932,PR:000008984,http://purl.obolibrary.org/obo/PR_000008984,interleukin-17 receptor D +11.7957932,PR:000009910,http://purl.obolibrary.org/obo/PR_000009910,lipopolysaccharide-responsive and beige-like anchor protein +11.7957932,PR:000011606,http://purl.obolibrary.org/obo/PR_000011606,teneurin-1 +11.7957932,PR:000012505,http://purl.obolibrary.org/obo/PR_000012505,"[pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 2, mitochondrial" +11.7957932,PR:000013321,http://purl.obolibrary.org/obo/PR_000013321,testisin +11.7957932,PR:000014798,http://purl.obolibrary.org/obo/PR_000014798,shugoshin 1 +11.7957932,PR:000015598,http://purl.obolibrary.org/obo/PR_000015598,serine palmitoyltransferase 3 +11.7957932,PR:000015718,http://purl.obolibrary.org/obo/PR_000015718,StAR-related lipid transfer protein 3 +11.7957932,PR:000017248,http://purl.obolibrary.org/obo/PR_000017248,vesicle-associated membrane protein 1 +11.7957932,PR:000022000,http://purl.obolibrary.org/obo/PR_000022000,none +11.7957932,PR:000029388,http://purl.obolibrary.org/obo/PR_000029388,probable ATP-dependent RNA helicase DDX41 +11.7957932,SO:0000254,http://purl.obolibrary.org/obo/SO_0000254,alanyl_tRNA +11.7957932,SO:0001431,http://purl.obolibrary.org/obo/SO_0001431,cryptic_gene +11.7957932,UBERON:0001162,http://purl.obolibrary.org/obo/UBERON_0001162,cardia of stomach +11.7957932,UBERON:0001600,http://purl.obolibrary.org/obo/UBERON_0001600,tensor tympani +11.7957932,UBERON:0003054,http://purl.obolibrary.org/obo/UBERON_0003054,roof plate +11.7957932,UBERON:0008464,http://purl.obolibrary.org/obo/UBERON_0008464,abductor hallucis muscle +11.7957932,UBERON:0009897,http://purl.obolibrary.org/obo/UBERON_0009897,right auditory cortex +11.7957932,UBERON:0011199,http://purl.obolibrary.org/obo/UBERON_0011199,prostatic utricle +11.7957932,UBERON:0012314,http://purl.obolibrary.org/obo/UBERON_0012314,embryonic facial prominence +11.7957932,UBERON:0015813,http://purl.obolibrary.org/obo/UBERON_0015813,middle ear epithelium +11.8015569,CHEBI:20854,http://purl.obolibrary.org/obo/CHEBI_20854,ATP synthase inhibitor +11.8015569,DRUGBANK:DB00663,http://purl.obolibrary.org/obo/DRUGBANK_DB00663,none +11.8015569,DRUGBANK:DB01982,http://purl.obolibrary.org/obo/DRUGBANK_DB01982,none +11.8015569,DRUGBANK:DB02896,http://purl.obolibrary.org/obo/DRUGBANK_DB02896,none +11.8015569,DRUGBANK:DB03896,http://purl.obolibrary.org/obo/DRUGBANK_DB03896,none +11.8015569,DRUGBANK:DB09092,http://purl.obolibrary.org/obo/DRUGBANK_DB09092,none +11.8015569,DRUGBANK:DB09483,http://purl.obolibrary.org/obo/DRUGBANK_DB09483,none +11.8015569,DRUGBANK:DB14732,http://purl.obolibrary.org/obo/DRUGBANK_DB14732,none +11.8015569,DRUGBANK:DB15923,http://purl.obolibrary.org/obo/DRUGBANK_DB15923,none +11.8015569,GO:0010117,http://purl.obolibrary.org/obo/GO_0010117,photoprotection +11.8015569,GO:0017148,http://purl.obolibrary.org/obo/GO_0017148,negative regulation of translation +11.8015569,GO:0032890,http://purl.obolibrary.org/obo/GO_0032890,regulation of organic acid transport +11.8015569,GO:0038179,http://purl.obolibrary.org/obo/GO_0038179,neurotrophin signaling pathway +11.8015569,GO:0098599,http://purl.obolibrary.org/obo/GO_0098599,palmitoyl hydrolase activity +11.8015569,MONDO:0003153,http://purl.obolibrary.org/obo/MONDO_0003153,adult brainstem glioma +11.8015569,MONDO:0003827,http://purl.obolibrary.org/obo/MONDO_0003827,transient hypogammaglobulinemia +11.8015569,MONDO:0005437,http://purl.obolibrary.org/obo/MONDO_0005437,testicular dysgenesis syndrome +11.8015569,MONDO:0007345,http://purl.obolibrary.org/obo/MONDO_0007345,aorta coarctation +11.8015569,MONDO:0007489,http://purl.obolibrary.org/obo/MONDO_0007489,dysplasia epiphysealis hemimelica +11.8015569,MONDO:0012173,http://purl.obolibrary.org/obo/MONDO_0012173,long chain 3-hydroxyacyl-CoA dehydrogenase deficiency +11.8015569,MONDO:0015446,http://purl.obolibrary.org/obo/MONDO_0015446,atypical coarctation of aorta +11.8015569,MONDO:0015515,http://purl.obolibrary.org/obo/MONDO_0015515,carnitine palmitoyltransferase II deficiency +11.8015569,MONDO:0019241,http://purl.obolibrary.org/obo/MONDO_0019241,inborn disorder of the gamma-glutamyl cycle +11.8015569,MONDO:0022636,http://purl.obolibrary.org/obo/MONDO_0022636,candida glabrata infection +11.8015569,MOP:0000686,http://purl.obolibrary.org/obo/MOP_0000686,none +11.8015569,NCBITaxon:10128,http://purl.obolibrary.org/obo/NCBITaxon_10128,Apodemus +11.8015569,NCBITaxon:10265,http://purl.obolibrary.org/obo/NCBITaxon_10265,none +11.8015569,NCBITaxon:11137,http://purl.obolibrary.org/obo/NCBITaxon_11137,none +11.8015569,NCBITaxon:2509480,http://purl.obolibrary.org/obo/NCBITaxon_2509480,none +11.8015569,NCBITaxon:32365,http://purl.obolibrary.org/obo/NCBITaxon_32365,none +11.8015569,NCBITaxon:6199,http://purl.obolibrary.org/obo/NCBITaxon_6199,Cestoda +11.8015569,NCBITaxon:6200,http://purl.obolibrary.org/obo/NCBITaxon_6200,Eucestoda +11.8015569,PR:000004858,http://purl.obolibrary.org/obo/PR_000004858,protein BUD31 +11.8015569,PR:000005740,http://purl.obolibrary.org/obo/PR_000005740,COP9 signalosome complex subunit 3 +11.8015569,PR:000006291,http://purl.obolibrary.org/obo/PR_000006291,BMP/retinoic acid-inducible neural-specific protein 1 +11.8015569,PR:000008051,http://purl.obolibrary.org/obo/PR_000008051,"glutaminase kidney isoform, mitochondrial" +11.8015569,PR:000008536,http://purl.obolibrary.org/obo/PR_000008536,hepatocyte growth factor-regulated tyrosine kinase substrate +11.8015569,PR:000008714,http://purl.obolibrary.org/obo/PR_000008714,homeobox protein Hox-C8 +11.8015569,PR:000009036,http://purl.obolibrary.org/obo/PR_000009036,inhibitor of growth protein 4 +11.8015569,PR:000010793,http://purl.obolibrary.org/obo/PR_000010793,max-interacting protein 1 +11.8015569,PR:000012566,http://purl.obolibrary.org/obo/PR_000012566,PEX5-related protein +11.8015569,PR:000013061,http://purl.obolibrary.org/obo/PR_000013061,amidophosphoribosyltransferase +11.8015569,PR:000014654,http://purl.obolibrary.org/obo/PR_000014654,septin-2 +11.8015569,PR:000014880,http://purl.obolibrary.org/obo/PR_000014880,signal-induced proliferation-associated protein 1 +11.8015569,PR:000015335,http://purl.obolibrary.org/obo/PR_000015335,U11/U12 small nuclear ribonucleoprotein 35 kDa protein +11.8015569,PR:000018204,http://purl.obolibrary.org/obo/PR_000018204,zinc finger HIT domain-containing protein 1 +11.8015569,PR:000023675,http://purl.obolibrary.org/obo/PR_000023675,none +11.8015569,PR:000029175,http://purl.obolibrary.org/obo/PR_000029175,none +11.8015569,PR:000031137,http://purl.obolibrary.org/obo/PR_000031137,polyphosphoinositide phosphatase +11.8015569,PR:O88466,http://purl.obolibrary.org/obo/PR_O88466,none +11.8015569,PR:P08094,http://purl.obolibrary.org/obo/PR_P08094,none +11.8015569,PR:P52172,http://purl.obolibrary.org/obo/PR_P52172,none +11.8015569,PR:Q0V7X4,http://purl.obolibrary.org/obo/PR_Q0V7X4,none +11.8015569,PR:Q7ZYZ9,http://purl.obolibrary.org/obo/PR_Q7ZYZ9,none +11.8015569,UBERON:0001521,http://purl.obolibrary.org/obo/UBERON_0001521,flexor carpi radialis muscle +11.8015569,UBERON:0009977,http://purl.obolibrary.org/obo/UBERON_0009977,natal tooth +11.8015569,UBERON:0012333,http://purl.obolibrary.org/obo/UBERON_0012333,ovarian bursa +11.807354,CL:0008015,http://purl.obolibrary.org/obo/CL_0008015,inhibitory motor neuron +11.807354,DRUGBANK:DB01927,http://purl.obolibrary.org/obo/DRUGBANK_DB01927,none +11.807354,DRUGBANK:DB13725,http://purl.obolibrary.org/obo/DRUGBANK_DB13725,none +11.807354,DRUGBANK:DB14008,http://purl.obolibrary.org/obo/DRUGBANK_DB14008,none +11.807354,GO:0000307,http://purl.obolibrary.org/obo/GO_0000307,cyclin-dependent protein kinase holoenzyme complex +11.807354,GO:0003998,http://purl.obolibrary.org/obo/GO_0003998,acylphosphatase activity +11.807354,GO:0008474,http://purl.obolibrary.org/obo/GO_0008474,palmitoyl-(protein) hydrolase activity +11.807354,GO:0030549,http://purl.obolibrary.org/obo/GO_0030549,acetylcholine receptor activator activity +11.807354,GO:0030813,http://purl.obolibrary.org/obo/GO_0030813,positive regulation of nucleotide catabolic process +11.807354,GO:0031279,http://purl.obolibrary.org/obo/GO_0031279,regulation of cyclase activity +11.807354,GO:0043198,http://purl.obolibrary.org/obo/GO_0043198,dendritic shaft +11.807354,GO:0045456,http://purl.obolibrary.org/obo/GO_0045456,ecdysteroid biosynthetic process +11.807354,GO:0045821,http://purl.obolibrary.org/obo/GO_0045821,positive regulation of glycolytic process +11.807354,GO:0050853,http://purl.obolibrary.org/obo/GO_0050853,B cell receptor signaling pathway +11.807354,GO:0051048,http://purl.obolibrary.org/obo/GO_0051048,negative regulation of secretion +11.807354,GO:0070585,http://purl.obolibrary.org/obo/GO_0070585,protein localization to mitochondrion +11.807354,GO:0070723,http://purl.obolibrary.org/obo/GO_0070723,response to cholesterol +11.807354,MONDO:0002376,http://purl.obolibrary.org/obo/MONDO_0002376,spleen angiosarcoma +11.807354,MONDO:0002910,http://purl.obolibrary.org/obo/MONDO_0002910,peroneal neuropathy +11.807354,MONDO:0003927,http://purl.obolibrary.org/obo/MONDO_0003927,posterior uveal melanoma +11.807354,MONDO:0004022,http://purl.obolibrary.org/obo/MONDO_0004022,parasagittal meningioma +11.807354,MONDO:0004114,http://purl.obolibrary.org/obo/MONDO_0004114,urinary bladder small cell neuroendocrine carcinoma +11.807354,MONDO:0004753,http://purl.obolibrary.org/obo/MONDO_0004753,mechanical strabismus +11.807354,MONDO:0005710,http://purl.obolibrary.org/obo/MONDO_0005710,composite lymphoma +11.807354,MONDO:0008369,http://purl.obolibrary.org/obo/MONDO_0008369,proximal renal tubular acidosis +11.807354,MONDO:0010792,http://purl.obolibrary.org/obo/MONDO_0010792,lethal infantile mitochondrial myopathy +11.807354,MONDO:0014624,http://purl.obolibrary.org/obo/MONDO_0014624,Brown syndrome +11.807354,NCBITaxon:1489923,http://purl.obolibrary.org/obo/NCBITaxon_1489923,none +11.807354,NCBITaxon:170944,http://purl.obolibrary.org/obo/NCBITaxon_170944,none +11.807354,NCBITaxon:504493,http://purl.obolibrary.org/obo/NCBITaxon_504493,none +11.807354,PR:000004817,http://purl.obolibrary.org/obo/PR_000004817,breast cancer metastasis-suppressor 1 +11.807354,PR:000006683,http://purl.obolibrary.org/obo/PR_000006683,dihydropyrimidinase-related protein 5 +11.807354,PR:000006931,http://purl.obolibrary.org/obo/PR_000006931,epidermal growth factor-like protein 7 +11.807354,PR:000007743,http://purl.obolibrary.org/obo/PR_000007743,Ras GTPase-activating protein-binding protein 1 +11.807354,PR:000007888,http://purl.obolibrary.org/obo/PR_000007888,"glutaryl-CoA dehydrogenase, mitochondrial" +11.807354,PR:000007972,http://purl.obolibrary.org/obo/PR_000007972,growth hormone-releasing hormone receptor +11.807354,PR:000008057,http://purl.obolibrary.org/obo/PR_000008057,"glutamate dehydrogenase 2, mitochondrial" +11.807354,PR:000009861,http://purl.obolibrary.org/obo/PR_000009861,lamin-B2 +11.807354,PR:000011055,http://purl.obolibrary.org/obo/PR_000011055,necdin +11.807354,PR:000011260,http://purl.obolibrary.org/obo/PR_000011260,"neurolysin, mitochondrial" +11.807354,PR:000012575,http://purl.obolibrary.org/obo/PR_000012575,prefoldin subunit 5 +11.807354,PR:000013717,http://purl.obolibrary.org/obo/PR_000013717,Ran GTPase-activating protein 1 +11.807354,PR:000014772,http://purl.obolibrary.org/obo/PR_000014772,pulmonary surfactant-associated protein A2 +11.807354,PR:000015073,http://purl.obolibrary.org/obo/PR_000015073,zinc transporter 1 +11.807354,PR:000017016,http://purl.obolibrary.org/obo/PR_000017016,E3 ubiquitin-protein ligase UBR5 +11.807354,PR:000022572,http://purl.obolibrary.org/obo/PR_000022572,none +11.807354,PR:000029315,http://purl.obolibrary.org/obo/PR_000029315,coiled-coil domain-containing protein 130 +11.807354,PR:000030426,http://purl.obolibrary.org/obo/PR_000030426,histone-lysine N-methyltransferase NSD2 +11.807354,PR:000032161,http://purl.obolibrary.org/obo/PR_000032161,antizyme inhibitor 2 +11.807354,PR:000037426,http://purl.obolibrary.org/obo/PR_000037426,none +11.807354,PR:Q9ZVY5,http://purl.obolibrary.org/obo/PR_Q9ZVY5,none +11.807354,UBERON:0001682,http://purl.obolibrary.org/obo/UBERON_0001682,palatine bone +11.807354,UBERON:0006678,http://purl.obolibrary.org/obo/UBERON_0006678,foramen secundum +11.807354,UBERON:0008596,http://purl.obolibrary.org/obo/UBERON_0008596,mentalis muscle +11.807354,UBERON:0013646,http://purl.obolibrary.org/obo/UBERON_0013646,buccal nerve +11.8131849,CHEBI:33861,http://purl.obolibrary.org/obo/CHEBI_33861,transition element coordination entity +11.8131849,CHEBI:73310,http://purl.obolibrary.org/obo/CHEBI_73310,adenosine A2A receptor agonist +11.8131849,CL:0000116,http://purl.obolibrary.org/obo/CL_0000116,pioneer neuron +11.8131849,DRUGBANK:DB00998,http://purl.obolibrary.org/obo/DRUGBANK_DB00998,none +11.8131849,DRUGBANK:DB02465,http://purl.obolibrary.org/obo/DRUGBANK_DB02465,none +11.8131849,DRUGBANK:DB06440,http://purl.obolibrary.org/obo/DRUGBANK_DB06440,none +11.8131849,DRUGBANK:DB13399,http://purl.obolibrary.org/obo/DRUGBANK_DB13399,none +11.8131849,GO:0002432,http://purl.obolibrary.org/obo/GO_0002432,granuloma formation +11.8131849,GO:0008745,http://purl.obolibrary.org/obo/GO_0008745,N-acetylmuramoyl-L-alanine amidase activity +11.8131849,GO:0008933,http://purl.obolibrary.org/obo/GO_0008933,lytic transglycosylase activity +11.8131849,GO:0043288,http://purl.obolibrary.org/obo/GO_0043288,apocarotenoid metabolic process +11.8131849,GO:0043500,http://purl.obolibrary.org/obo/GO_0043500,muscle adaptation +11.8131849,GO:0070423,http://purl.obolibrary.org/obo/GO_0070423,nucleotide-binding oligomerization domain containing signaling pathway +11.8131849,HP:0003241,http://purl.obolibrary.org/obo/HP_0003241,External genital hypoplasia +11.8131849,MONDO:0000138,http://purl.obolibrary.org/obo/MONDO_0000138,metaphyseal chondrodysplasia +11.8131849,MONDO:0001490,http://purl.obolibrary.org/obo/MONDO_0001490,corneal granular dystrophy +11.8131849,MONDO:0003960,http://purl.obolibrary.org/obo/MONDO_0003960,pulmonary large cell neuroendocrine carcinoma +11.8131849,MONDO:0004030,http://purl.obolibrary.org/obo/MONDO_0004030,ureter transitional cell carcinoma +11.8131849,MONDO:0006094,http://purl.obolibrary.org/obo/MONDO_0006094,Askin tumor +11.8131849,MONDO:0006255,http://purl.obolibrary.org/obo/MONDO_0006255,intimal sarcoma +11.8131849,MONDO:0006450,http://purl.obolibrary.org/obo/MONDO_0006450,therapy-related myeloid neoplasm +11.8131849,MONDO:0008411,http://purl.obolibrary.org/obo/MONDO_0008411,ulnar-mammary syndrome +11.8131849,MONDO:0009997,http://purl.obolibrary.org/obo/MONDO_0009997,Roberts syndrome +11.8131849,MONDO:0015599,http://purl.obolibrary.org/obo/MONDO_0015599,atopic keratoconjunctivitis +11.8131849,MONDO:0015663,http://purl.obolibrary.org/obo/MONDO_0015663,diencephalic syndrome +11.8131849,MONDO:0017588,http://purl.obolibrary.org/obo/MONDO_0017588,nail tumor +11.8131849,MONDO:0018288,http://purl.obolibrary.org/obo/MONDO_0018288,congenital disorder of glycosylation with hepatic involvement +11.8131849,MONDO:0018680,http://purl.obolibrary.org/obo/MONDO_0018680,cutaneous pseudolymphoma +11.8131849,MONDO:0020512,http://purl.obolibrary.org/obo/MONDO_0020512,precursor T-cell acute lymphoblastic leukemia +11.8131849,MONDO:0043317,http://purl.obolibrary.org/obo/MONDO_0043317,amyopathic dermatomyositis +11.8131849,MONDO:0044705,http://purl.obolibrary.org/obo/MONDO_0044705,paranasal sinus squamous cell carcinoma +11.8131849,MONDO:0100253,http://purl.obolibrary.org/obo/MONDO_0100253,Roberts-SC phocomelia syndrome +11.8131849,NCBITaxon:11836,http://purl.obolibrary.org/obo/NCBITaxon_11836,none +11.8131849,NCBITaxon:6843,http://purl.obolibrary.org/obo/NCBITaxon_6843,Chelicerata +11.8131849,PR:000001183,http://purl.obolibrary.org/obo/PR_000001183,alpha-1A adrenergic receptor +11.8131849,PR:000004019,http://purl.obolibrary.org/obo/PR_000004019,anaphase-promoting complex subunit 7 +11.8131849,PR:000006866,http://purl.obolibrary.org/obo/PR_000006866,receptor-binding cancer antigen expressed on SiSo cells +11.8131849,PR:000008845,http://purl.obolibrary.org/obo/PR_000008845,E3 ubiquitin-protein ligase HUWE1 +11.8131849,PR:000009662,http://purl.obolibrary.org/obo/PR_000009662,LanC-like protein 2 +11.8131849,PR:000009847,http://purl.obolibrary.org/obo/PR_000009847,lethal(2) giant larvae protein homolog 1 +11.8131849,PR:000012543,http://purl.obolibrary.org/obo/PR_000012543,phosphatidylethanolamine N-methyltransferase +11.8131849,PR:000013362,http://purl.obolibrary.org/obo/PR_000013362,proteasome subunit alpha type-3 +11.8131849,PR:000015137,http://purl.obolibrary.org/obo/PR_000015137,neutral and basic amino acid transport protein rBAT +11.8131849,PR:000016265,http://purl.obolibrary.org/obo/PR_000016265,transcription factor AP-2 gamma +11.8131849,PR:000017086,http://purl.obolibrary.org/obo/PR_000017086,protein unc-13 homolog A +11.8131849,PR:000017156,http://purl.obolibrary.org/obo/PR_000017156,Ubl carboxyl-terminal hydrolase 18 +11.8131849,PR:P01120,http://purl.obolibrary.org/obo/PR_P01120,none +11.8131849,PR:P11035,http://purl.obolibrary.org/obo/PR_P11035,none +11.8131849,PR:P40646,http://purl.obolibrary.org/obo/PR_P40646,none +11.8131849,PR:Q54NW7,http://purl.obolibrary.org/obo/PR_Q54NW7,none +11.8131849,PR:Q66HV9,http://purl.obolibrary.org/obo/PR_Q66HV9,none +11.8131849,SO:0000579,http://purl.obolibrary.org/obo/SO_0000579,edited_transcript_feature +11.8131849,UBERON:0006783,http://purl.obolibrary.org/obo/UBERON_0006783,layer of superior colliculus +11.8131849,UBERON:0006821,http://purl.obolibrary.org/obo/UBERON_0006821,cutaneous muscle +11.8131849,UBERON:0010419,http://purl.obolibrary.org/obo/UBERON_0010419,vibrissa follicle +11.81905,CHEBI:33700,http://purl.obolibrary.org/obo/CHEBI_33700,proteinogenic amino-acid residue +11.81905,DRUGBANK:DB00965,http://purl.obolibrary.org/obo/DRUGBANK_DB00965,none +11.81905,DRUGBANK:DB05528,http://purl.obolibrary.org/obo/DRUGBANK_DB05528,none +11.81905,DRUGBANK:DB06826,http://purl.obolibrary.org/obo/DRUGBANK_DB06826,none +11.81905,DRUGBANK:DB09043,http://purl.obolibrary.org/obo/DRUGBANK_DB09043,none +11.81905,DRUGBANK:DB11424,http://purl.obolibrary.org/obo/DRUGBANK_DB11424,none +11.81905,DRUGBANK:DB12082,http://purl.obolibrary.org/obo/DRUGBANK_DB12082,none +11.81905,DRUGBANK:DB13824,http://purl.obolibrary.org/obo/DRUGBANK_DB13824,none +11.81905,DRUGBANK:DB13996,http://purl.obolibrary.org/obo/DRUGBANK_DB13996,none +11.81905,DRUGBANK:DB14649,http://purl.obolibrary.org/obo/DRUGBANK_DB14649,none +11.81905,DRUGBANK:DB15477,http://purl.obolibrary.org/obo/DRUGBANK_DB15477,none +11.81905,GO:0004430,http://purl.obolibrary.org/obo/GO_0004430,1-phosphatidylinositol 4-kinase activity +11.81905,GO:0006734,http://purl.obolibrary.org/obo/GO_0006734,NADH metabolic process +11.81905,GO:0008118,http://purl.obolibrary.org/obo/GO_0008118,"N-acetyllactosaminide alpha-2,3-sialyltransferase activity" +11.81905,GO:0008649,http://purl.obolibrary.org/obo/GO_0008649,rRNA methyltransferase activity +11.81905,GO:0033068,http://purl.obolibrary.org/obo/GO_0033068,macrolide biosynthetic process +11.81905,GO:0046337,http://purl.obolibrary.org/obo/GO_0046337,phosphatidylethanolamine metabolic process +11.81905,GO:0048854,http://purl.obolibrary.org/obo/GO_0048854,brain morphogenesis +11.81905,GO:0050999,http://purl.obolibrary.org/obo/GO_0050999,regulation of nitric-oxide synthase activity +11.81905,MONDO:0002627,http://purl.obolibrary.org/obo/MONDO_0002627,chondroblastic osteosarcoma +11.81905,MONDO:0002997,http://purl.obolibrary.org/obo/MONDO_0002997,anterior cranial fossa meningioma +11.81905,MONDO:0004900,http://purl.obolibrary.org/obo/MONDO_0004900,peripheral vertigo +11.81905,MONDO:0008120,http://purl.obolibrary.org/obo/MONDO_0008120,spinocerebellar ataxia type 7 +11.81905,MONDO:0010138,http://purl.obolibrary.org/obo/MONDO_0010138,thyrotoxicosis +11.81905,MONDO:0011284,http://purl.obolibrary.org/obo/MONDO_0011284,astigmatism +11.81905,MONDO:0013171,http://purl.obolibrary.org/obo/MONDO_0013171,purine nucleoside phosphorylase deficiency +11.81905,MONDO:0016240,http://purl.obolibrary.org/obo/MONDO_0016240,hemimelia +11.81905,NCBITaxon:3744,http://purl.obolibrary.org/obo/NCBITaxon_3744,Rosales +11.81905,NCBITaxon:3807,http://purl.obolibrary.org/obo/NCBITaxon_3807,none +11.81905,NCBITaxon:4055,http://purl.obolibrary.org/obo/NCBITaxon_4055,none +11.81905,PR:000001953,http://purl.obolibrary.org/obo/PR_000001953,tumor necrosis factor receptor superfamily member 10D +11.81905,PR:000004436,http://purl.obolibrary.org/obo/PR_000004436,sodium/potassium-transporting ATPase subunit alpha-2 +11.81905,PR:000004740,http://purl.obolibrary.org/obo/PR_000004740,class E basic helix-loop-helix protein 40 +11.81905,PR:000008744,http://purl.obolibrary.org/obo/PR_000008744,lysine-specific demethylase hairless +11.81905,PR:000008961,http://purl.obolibrary.org/obo/PR_000008961,immunoglobulin heavy constant gamma 3 +11.81905,PR:000009261,http://purl.obolibrary.org/obo/PR_000009261,Kv channel-interacting protein 2 +11.81905,PR:000012240,http://purl.obolibrary.org/obo/PR_000012240,p21-activated protein kinase-interacting protein 1 +11.81905,PR:000012639,http://purl.obolibrary.org/obo/PR_000012639,PHD finger protein 12 +11.81905,PR:000013603,http://purl.obolibrary.org/obo/PR_000013603,Ras-related protein Rab-2A +11.81905,PR:000014639,http://purl.obolibrary.org/obo/PR_000014639,sentrin-specific protease 6 +11.81905,PR:000014964,http://purl.obolibrary.org/obo/PR_000014964,vesicular glutamate transporter 3 +11.81905,PR:000015055,http://purl.obolibrary.org/obo/PR_000015055,equilibrative nucleoside transporter 2 +11.81905,PR:000015433,http://purl.obolibrary.org/obo/PR_000015433,transcription factor SOX-7 +11.81905,PR:000023472,http://purl.obolibrary.org/obo/PR_000023472,none +11.81905,PR:P93026,http://purl.obolibrary.org/obo/PR_P93026,none +11.81905,PR:Q24307,http://purl.obolibrary.org/obo/PR_Q24307,none +11.81905,PR:Q4V3C8,http://purl.obolibrary.org/obo/PR_Q4V3C8,none +11.81905,UBERON:0005441,http://purl.obolibrary.org/obo/UBERON_0005441,external intercostal muscle +11.81905,UBERON:0006332,http://purl.obolibrary.org/obo/UBERON_0006332,nasal capsule +11.81905,UBERON:2002105,http://purl.obolibrary.org/obo/UBERON_2002105,electrosensory lateral line lobe +11.8249498,CHEBI:15428,http://purl.obolibrary.org/obo/CHEBI_15428,glycine +11.8249498,CHEBI:25094,http://purl.obolibrary.org/obo/CHEBI_25094,lysine +11.8249498,CHEBI:26607,http://purl.obolibrary.org/obo/CHEBI_26607,saturated fatty acid +11.8249498,CHEBI:29947,http://purl.obolibrary.org/obo/CHEBI_29947,glycine residue +11.8249498,CHEBI:34762,http://purl.obolibrary.org/obo/CHEBI_34762,Ferric gluconate +11.8249498,CL:0000633,http://purl.obolibrary.org/obo/CL_0000633,Hensen cell +11.8249498,CL:0005006,http://purl.obolibrary.org/obo/CL_0005006,ionocyte +11.8249498,DRUGBANK:DB00735,http://purl.obolibrary.org/obo/DRUGBANK_DB00735,none +11.8249498,DRUGBANK:DB01309,http://purl.obolibrary.org/obo/DRUGBANK_DB01309,none +11.8249498,DRUGBANK:DB09288,http://purl.obolibrary.org/obo/DRUGBANK_DB09288,none +11.8249498,DRUGBANK:DB09494,http://purl.obolibrary.org/obo/DRUGBANK_DB09494,none +11.8249498,DRUGBANK:DB13166,http://purl.obolibrary.org/obo/DRUGBANK_DB13166,none +11.8249498,GO:0006684,http://purl.obolibrary.org/obo/GO_0006684,sphingomyelin metabolic process +11.8249498,GO:0015712,http://purl.obolibrary.org/obo/GO_0015712,hexose phosphate transport +11.8249498,GO:0016271,http://purl.obolibrary.org/obo/GO_0016271,none +11.8249498,GO:0030435,http://purl.obolibrary.org/obo/GO_0030435,sporulation resulting in formation of a cellular spore +11.8249498,GO:0031400,http://purl.obolibrary.org/obo/GO_0031400,negative regulation of protein modification process +11.8249498,GO:0032366,http://purl.obolibrary.org/obo/GO_0032366,intracellular sterol transport +11.8249498,GO:0033484,http://purl.obolibrary.org/obo/GO_0033484,nitric oxide homeostasis +11.8249498,GO:0042033,http://purl.obolibrary.org/obo/GO_0042033,none +11.8249498,GO:0046857,http://purl.obolibrary.org/obo/GO_0046857,"oxidoreductase activity, acting on other nitrogenous compounds as donors, with NAD or NADP as acceptor" +11.8249498,GO:0051790,http://purl.obolibrary.org/obo/GO_0051790,short-chain fatty acid biosynthetic process +11.8249498,GO:1904251,http://purl.obolibrary.org/obo/GO_1904251,regulation of bile acid metabolic process +11.8249498,HP:0000528,http://purl.obolibrary.org/obo/HP_0000528,Anophthalmia +11.8249498,MONDO:0002027,http://purl.obolibrary.org/obo/MONDO_0002027,avoidant personality disorder +11.8249498,MONDO:0003691,http://purl.obolibrary.org/obo/MONDO_0003691,childhood malignant mesenchymoma +11.8249498,MONDO:0003692,http://purl.obolibrary.org/obo/MONDO_0003692,adult malignant mesenchymoma +11.8249498,MONDO:0009315,http://purl.obolibrary.org/obo/MONDO_0009315,congenital factor XII deficiency +11.8249498,MONDO:0016293,http://purl.obolibrary.org/obo/MONDO_0016293,congenital stationary night blindness +11.8249498,MONDO:0016593,http://purl.obolibrary.org/obo/MONDO_0016593,acquired ataxia +11.8249498,NCBITaxon:102814,http://purl.obolibrary.org/obo/NCBITaxon_102814,none +11.8249498,NCBITaxon:1728959,http://purl.obolibrary.org/obo/NCBITaxon_1728959,none +11.8249498,PR:000004863,http://purl.obolibrary.org/obo/PR_000004863,peripheral-type benzodiazepine receptor-associated protein 1 +11.8249498,PR:000007048,http://purl.obolibrary.org/obo/PR_000007048,embigin +11.8249498,PR:000008426,http://purl.obolibrary.org/obo/PR_000008426,GDH/6PGL endoplasmic bifunctional protein +11.8249498,PR:000008695,http://purl.obolibrary.org/obo/PR_000008695,homeobox protein Hox-A7 +11.8249498,PR:000009002,http://purl.obolibrary.org/obo/PR_000009002,interleukin-27 receptor subunit alpha +11.8249498,PR:000009688,http://purl.obolibrary.org/obo/PR_000009688,lymphocyte transmembrane adapter 1 +11.8249498,PR:000009749,http://purl.obolibrary.org/obo/PR_000009749,chondromodulin-1 +11.8249498,PR:000010040,http://purl.obolibrary.org/obo/PR_000010040,mitotic spindle assembly checkpoint protein MAD2B +11.8249498,PR:000010501,http://purl.obolibrary.org/obo/PR_000010501,motor neuron and pancreas homeobox protein 1 +11.8249498,PR:000011168,http://purl.obolibrary.org/obo/PR_000011168,transcription factor NF-E2 45 kDa subunit +11.8249498,PR:000011176,http://purl.obolibrary.org/obo/PR_000011176,nuclear factor interleukin-3-regulated protein +11.8249498,PR:000013978,http://purl.obolibrary.org/obo/PR_000013978,Rho-related GTP-binding protein RhoC +11.8249498,PR:000015324,http://purl.obolibrary.org/obo/PR_000015324,beta-synuclein +11.8249498,PR:000015414,http://purl.obolibrary.org/obo/PR_000015414,son of sevenless homolog 2 +11.8249498,PR:000016522,http://purl.obolibrary.org/obo/PR_000016522,tensin-3 +11.8249498,PR:000016592,http://purl.obolibrary.org/obo/PR_000016592,tryptase beta-2 +11.8249498,PR:000016936,http://purl.obolibrary.org/obo/PR_000016936,none +11.8249498,PR:O04017,http://purl.obolibrary.org/obo/PR_O04017,none +11.8249498,PR:O15743,http://purl.obolibrary.org/obo/PR_O15743,none +11.8249498,PR:P11455,http://purl.obolibrary.org/obo/PR_P11455,none +11.8249498,PR:P42158,http://purl.obolibrary.org/obo/PR_P42158,none +11.8249498,PR:Q9YH13,http://purl.obolibrary.org/obo/PR_Q9YH13,none +11.8249498,SO:0001624,http://purl.obolibrary.org/obo/SO_0001624,3_prime_UTR_variant +11.8249498,UBERON:0010928,http://purl.obolibrary.org/obo/UBERON_0010928,cricopharyngeus muscle +11.8249498,UBERON:0014733,http://purl.obolibrary.org/obo/UBERON_0014733,dorsal ventricular ridge of pallium +11.8249498,UBERON:0018412,http://purl.obolibrary.org/obo/UBERON_0018412,vidian nerve +11.8308845,DRUGBANK:DB03953,http://purl.obolibrary.org/obo/DRUGBANK_DB03953,none +11.8308845,DRUGBANK:DB10819,http://purl.obolibrary.org/obo/DRUGBANK_DB10819,none +11.8308845,DRUGBANK:DB13806,http://purl.obolibrary.org/obo/DRUGBANK_DB13806,none +11.8308845,DRUGBANK:DB14087,http://purl.obolibrary.org/obo/DRUGBANK_DB14087,none +11.8308845,GO:0005662,http://purl.obolibrary.org/obo/GO_0005662,DNA replication factor A complex +11.8308845,GO:0016520,http://purl.obolibrary.org/obo/GO_0016520,growth hormone-releasing hormone receptor activity +11.8308845,GO:0016748,http://purl.obolibrary.org/obo/GO_0016748,succinyltransferase activity +11.8308845,GO:0016925,http://purl.obolibrary.org/obo/GO_0016925,protein sumoylation +11.8308845,GO:1903487,http://purl.obolibrary.org/obo/GO_1903487,regulation of lactation +11.8308845,GO:1903576,http://purl.obolibrary.org/obo/GO_1903576,response to L-arginine +11.8308845,HP:0002164,http://purl.obolibrary.org/obo/HP_0002164,Nail dysplasia +11.8308845,HP:0003307,http://purl.obolibrary.org/obo/HP_0003307,Hyperlordosis +11.8308845,MONDO:0000630,http://purl.obolibrary.org/obo/MONDO_0000630,immune system organ benign neoplasm +11.8308845,MONDO:0002308,http://purl.obolibrary.org/obo/MONDO_0002308,giant papillary conjunctivitis +11.8308845,MONDO:0003394,http://purl.obolibrary.org/obo/MONDO_0003394,dental pulp disease +11.8308845,MONDO:0003448,http://purl.obolibrary.org/obo/MONDO_0003448,benign spiradenoma +11.8308845,MONDO:0003557,http://purl.obolibrary.org/obo/MONDO_0003557,optic nerve sheath meningioma +11.8308845,MONDO:0006368,http://purl.obolibrary.org/obo/MONDO_0006368,phosphaturic mesenchymal tumor +11.8308845,MONDO:0006598,http://purl.obolibrary.org/obo/MONDO_0006598,phototoxic dermatitis +11.8308845,MONDO:0017002,http://purl.obolibrary.org/obo/MONDO_0017002,polysomy of X chromosome +11.8308845,MONDO:0019853,http://purl.obolibrary.org/obo/MONDO_0019853,congenital hypothyroidism due to developmental anomaly +11.8308845,MONDO:0021562,http://purl.obolibrary.org/obo/MONDO_0021562,omphalitis +11.8308845,MONDO:0045044,http://purl.obolibrary.org/obo/MONDO_0045044,ligament disease +11.8308845,NCBITaxon:11048,http://purl.obolibrary.org/obo/NCBITaxon_11048,none +11.8308845,NCBITaxon:11077,http://purl.obolibrary.org/obo/NCBITaxon_11077,Kunjin virus +11.8308845,NCBITaxon:135613,http://purl.obolibrary.org/obo/NCBITaxon_135613,none +11.8308845,NCBITaxon:2499675,http://purl.obolibrary.org/obo/NCBITaxon_2499675,none +11.8308845,NCBITaxon:2499678,http://purl.obolibrary.org/obo/NCBITaxon_2499678,none +11.8308845,PR:000002178,http://purl.obolibrary.org/obo/PR_000002178,26S proteasome non-ATPase regulatory subunit 12 +11.8308845,PR:000003587,http://purl.obolibrary.org/obo/PR_000003587,histo-blood group ABO system transferase +11.8308845,PR:000003806,http://purl.obolibrary.org/obo/PR_000003806,AF4/FMR2 family member 4 +11.8308845,PR:000008742,http://purl.obolibrary.org/obo/PR_000008742,heparanase-2 +11.8308845,PR:000011546,http://purl.obolibrary.org/obo/PR_000011546,NTF2-related export protein 1 +11.8308845,PR:000011635,http://purl.obolibrary.org/obo/PR_000011635,"metalloendopeptidase OMA1, mitochondrial" +11.8308845,PR:000013526,http://purl.obolibrary.org/obo/PR_000013526,peptide YY +11.8308845,PR:000013644,http://purl.obolibrary.org/obo/PR_000013644,Ras-related protein Rab-9A +11.8308845,PR:000013762,http://purl.obolibrary.org/obo/PR_000013762,Ras-interacting protein 1 +11.8308845,PR:000013774,http://purl.obolibrary.org/obo/PR_000013774,RB1-inducible coiled-coil protein 1 +11.8308845,PR:000013786,http://purl.obolibrary.org/obo/PR_000013786,RNA-binding protein 14 +11.8308845,PR:000015425,http://purl.obolibrary.org/obo/PR_000015425,transcription factor SOX-18 +11.8308845,PR:000017471,http://purl.obolibrary.org/obo/PR_000017471,XIAP-associated factor 1 +11.8308845,PR:000022843,http://purl.obolibrary.org/obo/PR_000022843,none +11.8308845,PR:000031215,http://purl.obolibrary.org/obo/PR_000031215,fermitin family homolog 1 +11.8308845,PR:000032584,http://purl.obolibrary.org/obo/PR_000032584,E3 ubiquitin-protein ligase NHLRC1 +11.8308845,PR:000035499,http://purl.obolibrary.org/obo/PR_000035499,none +11.8308845,PR:000035746,http://purl.obolibrary.org/obo/PR_000035746,none +11.8308845,PR:P0CX85,http://purl.obolibrary.org/obo/PR_P0CX85,none +11.8308845,UBERON:0002859,http://purl.obolibrary.org/obo/UBERON_0002859,fifth lumbar dorsal root ganglion +11.8368547,CHEBI:20706,http://purl.obolibrary.org/obo/CHEBI_20706,6-aminopurines +11.8368547,CL:0000512,http://purl.obolibrary.org/obo/CL_0000512,paracrine cell +11.8368547,DRUGBANK:DB01762,http://purl.obolibrary.org/obo/DRUGBANK_DB01762,none +11.8368547,DRUGBANK:DB04830,http://purl.obolibrary.org/obo/DRUGBANK_DB04830,none +11.8368547,DRUGBANK:DB08814,http://purl.obolibrary.org/obo/DRUGBANK_DB08814,none +11.8368547,DRUGBANK:DB09076,http://purl.obolibrary.org/obo/DRUGBANK_DB09076,none +11.8368547,DRUGBANK:DB13601,http://purl.obolibrary.org/obo/DRUGBANK_DB13601,none +11.8368547,DRUGBANK:DB13667,http://purl.obolibrary.org/obo/DRUGBANK_DB13667,none +11.8368547,DRUGBANK:DB13677,http://purl.obolibrary.org/obo/DRUGBANK_DB13677,none +11.8368547,DRUGBANK:DB16107,http://purl.obolibrary.org/obo/DRUGBANK_DB16107,none +11.8368547,GO:0000036,http://purl.obolibrary.org/obo/GO_0000036,acyl carrier activity +11.8368547,GO:0004088,http://purl.obolibrary.org/obo/GO_0004088,carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity +11.8368547,GO:0005798,http://purl.obolibrary.org/obo/GO_0005798,Golgi-associated vesicle +11.8368547,GO:0009926,http://purl.obolibrary.org/obo/GO_0009926,auxin polar transport +11.8368547,GO:0016010,http://purl.obolibrary.org/obo/GO_0016010,dystrophin-associated glycoprotein complex +11.8368547,GO:0036337,http://purl.obolibrary.org/obo/GO_0036337,Fas signaling pathway +11.8368547,GO:0044620,http://purl.obolibrary.org/obo/GO_0044620,ACP phosphopantetheine attachment site binding +11.8368547,GO:0046292,http://purl.obolibrary.org/obo/GO_0046292,formaldehyde metabolic process +11.8368547,GO:0048037,http://purl.obolibrary.org/obo/GO_0048037,none +11.8368547,GO:0051192,http://purl.obolibrary.org/obo/GO_0051192,prosthetic group binding +11.8368547,GO:1904090,http://purl.obolibrary.org/obo/GO_1904090,peptidase inhibitor complex +11.8368547,MONDO:0003443,http://purl.obolibrary.org/obo/MONDO_0003443,papillary urothelial neoplasm +11.8368547,MONDO:0004431,http://purl.obolibrary.org/obo/MONDO_0004431,hemarthrosis +11.8368547,MONDO:0005742,http://purl.obolibrary.org/obo/MONDO_0005742,emphysematous cholecystitis +11.8368547,MONDO:0006604,http://purl.obolibrary.org/obo/MONDO_0006604,rosacea +11.8368547,MONDO:0006976,http://purl.obolibrary.org/obo/MONDO_0006976,somatostatinoma +11.8368547,MONDO:0007032,http://purl.obolibrary.org/obo/MONDO_0007032,prune belly syndrome +11.8368547,MONDO:0007766,http://purl.obolibrary.org/obo/MONDO_0007766,Morgagni-Stewart-Morel syndrome +11.8368547,MONDO:0015584,http://purl.obolibrary.org/obo/MONDO_0015584,febrile infection-related epilepsy syndrome +11.8368547,MONDO:0016686,http://purl.obolibrary.org/obo/MONDO_0016686,diffuse astrocytoma +11.8368547,MONDO:0037252,http://purl.obolibrary.org/obo/MONDO_0037252,thecoma +11.8368547,MONDO:0043458,http://purl.obolibrary.org/obo/MONDO_0043458,radiation injury +11.8368547,NCBITaxon:1980442,http://purl.obolibrary.org/obo/NCBITaxon_1980442,Orthohantavirus +11.8368547,NCBITaxon:346674,http://purl.obolibrary.org/obo/NCBITaxon_346674,none +11.8368547,NCBITaxon:6854,http://purl.obolibrary.org/obo/NCBITaxon_6854,Arachnida +11.8368547,PR:000000719,http://purl.obolibrary.org/obo/PR_000000719,voltage-gated potassium channel Eag alpha subunit +11.8368547,PR:000005543,http://purl.obolibrary.org/obo/PR_000005543,claudin-16 +11.8368547,PR:000005672,http://purl.obolibrary.org/obo/PR_000005672,contactin-associated protein 1 +11.8368547,PR:000006516,http://purl.obolibrary.org/obo/PR_000006516,disks large-associated protein 1 +11.8368547,PR:000006570,http://purl.obolibrary.org/obo/PR_000006570,DnaJ homolog subfamily A member 1 +11.8368547,PR:000007767,http://purl.obolibrary.org/obo/PR_000007767,gamma-aminobutyric acid receptor subunit alpha-2 +11.8368547,PR:000009274,http://purl.obolibrary.org/obo/PR_000009274,ER lumen protein-retaining receptor 2 +11.8368547,PR:000010859,http://purl.obolibrary.org/obo/PR_000010859,myosin-Ie +11.8368547,PR:000011256,http://purl.obolibrary.org/obo/PR_000011256,neuroligin-3 +11.8368547,PR:000014482,http://purl.obolibrary.org/obo/PR_000014482,"splicing factor, arginine/serine-rich 19" +11.8368547,PR:000015195,http://purl.obolibrary.org/obo/PR_000015195,asc-type amino acid transporter 1 +11.8368547,PR:000015710,http://purl.obolibrary.org/obo/PR_000015710,signal transducing adapter molecule 2 +11.8368547,PR:000017074,http://purl.obolibrary.org/obo/PR_000017074,UL16-binding protein 1 +11.8368547,PR:000017089,http://purl.obolibrary.org/obo/PR_000017089,protein unc-13 homolog D +11.8368547,PR:000017353,http://purl.obolibrary.org/obo/PR_000017353,visinin-like protein 1 +11.8368547,PR:000017735,http://purl.obolibrary.org/obo/PR_000017735,zinc finger protein 185 +11.8368547,PR:000022334,http://purl.obolibrary.org/obo/PR_000022334,none +11.8368547,SO:0000347,http://purl.obolibrary.org/obo/SO_0000347,nucleotide_match +11.8368547,UBERON:0001121,http://purl.obolibrary.org/obo/UBERON_0001121,longus colli muscle +11.8368547,UBERON:0001544,http://purl.obolibrary.org/obo/UBERON_0001544,popliteal vein +11.8368547,UBERON:0008816,http://purl.obolibrary.org/obo/UBERON_0008816,embryonic head +11.8368547,UBERON:0010176,http://purl.obolibrary.org/obo/UBERON_0010176,nutrient foramen artery +11.8368547,UBERON:4000078,http://purl.obolibrary.org/obo/UBERON_4000078,chondroid tissue +11.8428607,CHEBI:33721,http://purl.obolibrary.org/obo/CHEBI_33721,carbohydrate acid anion +11.8428607,CHEBI:64106,http://purl.obolibrary.org/obo/CHEBI_64106,protein kinase agonist +11.8428607,CL:0000484,http://purl.obolibrary.org/obo/CL_0000484,connective tissue type mast cell +11.8428607,DRUGBANK:DB00387,http://purl.obolibrary.org/obo/DRUGBANK_DB00387,none +11.8428607,DRUGBANK:DB02240,http://purl.obolibrary.org/obo/DRUGBANK_DB02240,none +11.8428607,DRUGBANK:DB04074,http://purl.obolibrary.org/obo/DRUGBANK_DB04074,none +11.8428607,DRUGBANK:DB13960,http://purl.obolibrary.org/obo/DRUGBANK_DB13960,none +11.8428607,GO:0000796,http://purl.obolibrary.org/obo/GO_0000796,condensin complex +11.8428607,GO:0016120,http://purl.obolibrary.org/obo/GO_0016120,carotene biosynthetic process +11.8428607,GO:0018659,http://purl.obolibrary.org/obo/GO_0018659,4-hydroxybenzoate 3-monooxygenase activity +11.8428607,GO:0018910,http://purl.obolibrary.org/obo/GO_0018910,benzene metabolic process +11.8428607,GO:0097179,http://purl.obolibrary.org/obo/GO_0097179,protease inhibitor complex +11.8428607,MONDO:0004619,http://purl.obolibrary.org/obo/MONDO_0004619,measles +11.8428607,MONDO:0004724,http://purl.obolibrary.org/obo/MONDO_0004724,submandibular gland cancer +11.8428607,MONDO:0005533,http://purl.obolibrary.org/obo/MONDO_0005533,distal colitis +11.8428607,MONDO:0005644,http://purl.obolibrary.org/obo/MONDO_0005644,amebiasis +11.8428607,MONDO:0006260,http://purl.obolibrary.org/obo/MONDO_0006260,kidney medullary carcinoma +11.8428607,MONDO:0009737,http://purl.obolibrary.org/obo/MONDO_0009737,galactosialidosis +11.8428607,MONDO:0018675,http://purl.obolibrary.org/obo/MONDO_0018675,IgG4-related ophthalmic disease +11.8428607,NCBITaxon:1046,http://purl.obolibrary.org/obo/NCBITaxon_1046,none +11.8428607,NCBITaxon:10507,http://purl.obolibrary.org/obo/NCBITaxon_10507,none +11.8428607,NCBITaxon:163487,http://purl.obolibrary.org/obo/NCBITaxon_163487,none +11.8428607,NCBITaxon:445,http://purl.obolibrary.org/obo/NCBITaxon_445,Legionella +11.8428607,NCBITaxon:72276,http://purl.obolibrary.org/obo/NCBITaxon_72276,none +11.8428607,NCBITaxon:73496,http://purl.obolibrary.org/obo/NCBITaxon_73496,none +11.8428607,PR:000001167,http://purl.obolibrary.org/obo/PR_000001167,5-hydroxytryptamine receptor 2B +11.8428607,PR:000001368,http://purl.obolibrary.org/obo/PR_000001368,interleukin-12 subunit alpha +11.8428607,PR:000003059,http://purl.obolibrary.org/obo/PR_000003059,protein kinase C beta type +11.8428607,PR:000003775,http://purl.obolibrary.org/obo/PR_000003775,"1,2-dihydroxy-3-keto-5-methylthiopentene dioxygenase" +11.8428607,PR:000003936,http://purl.obolibrary.org/obo/PR_000003936,fructose-bisphosphate aldolase C +11.8428607,PR:000005969,http://purl.obolibrary.org/obo/PR_000005969,cystatin-F +11.8428607,PR:000006133,http://purl.obolibrary.org/obo/PR_000006133,cytochrome P450 3A7 +11.8428607,PR:000007766,http://purl.obolibrary.org/obo/PR_000007766,gamma-aminobutyric acid receptor subunit alpha-1 +11.8428607,PR:000008052,http://purl.obolibrary.org/obo/PR_000008052,"glutaminase liver isoform, mitochondrial" +11.8428607,PR:000008749,http://purl.obolibrary.org/obo/PR_000008749,sarcoplasmic reticulum histidine-rich calcium-binding protein +11.8428607,PR:000009262,http://purl.obolibrary.org/obo/PR_000009262,calsenilin +11.8428607,PR:000009302,http://purl.obolibrary.org/obo/PR_000009302,kinesin-like protein KIF23 +11.8428607,PR:000009595,http://purl.obolibrary.org/obo/PR_000009595,kinectin +11.8428607,PR:000010557,http://purl.obolibrary.org/obo/PR_000010557,melanocortin-2 receptor accessory protein +11.8428607,PR:000012875,http://purl.obolibrary.org/obo/PR_000012875,cardiac phospholamban +11.8428607,PR:000013600,http://purl.obolibrary.org/obo/PR_000013600,Ras-related protein Rab-27A +11.8428607,PR:000013708,http://purl.obolibrary.org/obo/PR_000013708,GTP-binding nuclear protein Ran +11.8428607,PR:000014240,http://purl.obolibrary.org/obo/PR_000014240,dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 +11.8428607,PR:000015209,http://purl.obolibrary.org/obo/PR_000015209,sodium/calcium exchanger 3 +11.8428607,PR:000017099,http://purl.obolibrary.org/obo/PR_000017099,SUN domain-containing protein 1 +11.8428607,PR:000017331,http://purl.obolibrary.org/obo/PR_000017331,vacuolar protein sorting-associated protein 33A +11.8428607,PR:P24276,http://purl.obolibrary.org/obo/PR_P24276,none +11.8428607,PR:P92963,http://purl.obolibrary.org/obo/PR_P92963,none +11.8428607,PR:Q90987,http://purl.obolibrary.org/obo/PR_Q90987,none +11.8428607,PR:Q949U1,http://purl.obolibrary.org/obo/PR_Q949U1,none +11.8428607,PR:Q9AT76,http://purl.obolibrary.org/obo/PR_Q9AT76,none +11.8428607,PR:Q9I8P2,http://purl.obolibrary.org/obo/PR_Q9I8P2,none +11.8428607,PR:Q9M0L0,http://purl.obolibrary.org/obo/PR_Q9M0L0,none +11.8428607,PR:Q9SD40,http://purl.obolibrary.org/obo/PR_Q9SD40,none +11.8428607,SO:0001681,http://purl.obolibrary.org/obo/SO_0001681,recombination_regulatory_region +11.8428607,UBERON:0001753,http://purl.obolibrary.org/obo/UBERON_0001753,cementum +11.8428607,UBERON:0003646,http://purl.obolibrary.org/obo/UBERON_0003646,metacarpal bone of digit 2 +11.8428607,UBERON:0009898,http://purl.obolibrary.org/obo/UBERON_0009898,left auditory cortex +11.8428607,UBERON:0015044,http://purl.obolibrary.org/obo/UBERON_0015044,manual digit 2 metacarpus endochondral element +11.8428607,UBERON:0034905,http://purl.obolibrary.org/obo/UBERON_0034905,gland lumen +11.848903,CHEBI:4696,http://purl.obolibrary.org/obo/CHEBI_4696,donepezil hydrochloride +11.848903,CL:0000549,http://purl.obolibrary.org/obo/CL_0000549,basophilic erythroblast +11.848903,CL:0005012,http://purl.obolibrary.org/obo/CL_0005012,multi-ciliated epithelial cell +11.848903,DRUGBANK:DB00189,http://purl.obolibrary.org/obo/DRUGBANK_DB00189,none +11.848903,DRUGBANK:DB02121,http://purl.obolibrary.org/obo/DRUGBANK_DB02121,none +11.848903,DRUGBANK:DB04669,http://purl.obolibrary.org/obo/DRUGBANK_DB04669,none +11.848903,DRUGBANK:DB05057,http://purl.obolibrary.org/obo/DRUGBANK_DB05057,none +11.848903,DRUGBANK:DB08329,http://purl.obolibrary.org/obo/DRUGBANK_DB08329,none +11.848903,GO:0001604,http://purl.obolibrary.org/obo/GO_0001604,urotensin II receptor activity +11.848903,GO:0003922,http://purl.obolibrary.org/obo/GO_0003922,GMP synthase (glutamine-hydrolyzing) activity +11.848903,GO:0004416,http://purl.obolibrary.org/obo/GO_0004416,hydroxyacylglutathione hydrolase activity +11.848903,GO:0010623,http://purl.obolibrary.org/obo/GO_0010623,programmed cell death involved in cell development +11.848903,GO:0015862,http://purl.obolibrary.org/obo/GO_0015862,uridine transport +11.848903,GO:0018826,http://purl.obolibrary.org/obo/GO_0018826,methionine gamma-lyase activity +11.848903,GO:0032607,http://purl.obolibrary.org/obo/GO_0032607,interferon-alpha production +11.848903,GO:0036179,http://purl.obolibrary.org/obo/GO_0036179,osteoclast maturation +11.848903,GO:0043855,http://purl.obolibrary.org/obo/GO_0043855,cyclic nucleotide-gated ion channel activity +11.848903,GO:0080007,http://purl.obolibrary.org/obo/GO_0080007,S-nitrosoglutathione reductase activity +11.848903,GO:0097443,http://purl.obolibrary.org/obo/GO_0097443,sorting endosome +11.848903,HP:0001933,http://purl.obolibrary.org/obo/HP_0001933,Subcutaneous hemorrhage +11.848903,MONDO:0002650,http://purl.obolibrary.org/obo/MONDO_0002650,scrotal carcinoma +11.848903,MONDO:0008675,http://purl.obolibrary.org/obo/MONDO_0008675,freeman-Sheldon syndrome +11.848903,MONDO:0015347,http://purl.obolibrary.org/obo/MONDO_0015347,multicentric reticulohistiocytosis +11.848903,MONDO:0016745,http://purl.obolibrary.org/obo/MONDO_0016745,diffuse leptomeningeal melanocytosis +11.848903,MONDO:0018735,http://purl.obolibrary.org/obo/MONDO_0018735,multifocal lymphangioendotheliomatosis-thrombocytopenia syndrome +11.848903,MONDO:0023601,http://purl.obolibrary.org/obo/MONDO_0023601,non-classic congenital adrenal hyperplasia +11.848903,MONDO:0023757,http://purl.obolibrary.org/obo/MONDO_0023757,meralgia paresthetica +11.848903,MOP:0000734,http://purl.obolibrary.org/obo/MOP_0000734,none +11.848903,NCBITaxon:12253,http://purl.obolibrary.org/obo/NCBITaxon_12253,none +11.848903,NCBITaxon:156207,http://purl.obolibrary.org/obo/NCBITaxon_156207,none +11.848903,NCBITaxon:7245,http://purl.obolibrary.org/obo/NCBITaxon_7245,none +11.848903,NCBITaxon:7366,http://purl.obolibrary.org/obo/NCBITaxon_7366,none +11.848903,NCBITaxon:9542,http://purl.obolibrary.org/obo/NCBITaxon_9542,none +11.848903,PR:000001595,http://purl.obolibrary.org/obo/PR_000001595,leukotriene B4 receptor 2 +11.848903,PR:000007024,http://purl.obolibrary.org/obo/PR_000007024,ETS-related transcription factor Elf-5 +11.848903,PR:000009504,http://purl.obolibrary.org/obo/PR_000009504,keratin-associated protein 1-1 +11.848903,PR:000009817,http://purl.obolibrary.org/obo/PR_000009817,LIM domain kinase 2 +11.848903,PR:000010443,http://purl.obolibrary.org/obo/PR_000010443,DNA mismatch repair protein Mlh3 +11.848903,PR:000012456,http://purl.obolibrary.org/obo/PR_000012456,programmed cell death protein 5 +11.848903,PR:000014565,http://purl.obolibrary.org/obo/PR_000014565,"succinate dehydrogenase cytochrome b560 subunit, mitochondrial" +11.848903,PR:000015081,http://purl.obolibrary.org/obo/PR_000015081,zinc transporter 8 +11.848903,PR:000016391,http://purl.obolibrary.org/obo/PR_000016391,Bax inhibitor 1 +11.848903,PR:000017075,http://purl.obolibrary.org/obo/PR_000017075,UL16-binding protein 2 +11.848903,PR:000022052,http://purl.obolibrary.org/obo/PR_000022052,none +11.848903,PR:Q43872,http://purl.obolibrary.org/obo/PR_Q43872,none +11.848903,PR:Q9JKF4,http://purl.obolibrary.org/obo/PR_Q9JKF4,none +11.848903,PR:Q9LSP0,http://purl.obolibrary.org/obo/PR_Q9LSP0,none +11.848903,PR:Q9NGQ2,http://purl.obolibrary.org/obo/PR_Q9NGQ2,none +11.848903,PR:Q9Y7U5,http://purl.obolibrary.org/obo/PR_Q9Y7U5,none +11.848903,UBERON:0000331,http://purl.obolibrary.org/obo/UBERON_0000331,ileal mucosa +11.848903,UBERON:0000996,http://purl.obolibrary.org/obo/UBERON_0000996,vagina +11.848903,UBERON:0001195,http://purl.obolibrary.org/obo/UBERON_0001195,inferior pancreaticoduodenal artery +11.848903,UBERON:0004816,http://purl.obolibrary.org/obo/UBERON_0004816,larynx epithelium +11.848903,UBERON:0009713,http://purl.obolibrary.org/obo/UBERON_0009713,endocardium of left ventricle +11.848903,UBERON:2000250,http://purl.obolibrary.org/obo/UBERON_2000250,opercle +11.854982,CHEBI:23132,http://purl.obolibrary.org/obo/CHEBI_23132,chlorobenzenes +11.854982,CHEBI:25701,http://purl.obolibrary.org/obo/CHEBI_25701,organic oxide +11.854982,CHEBI:32845,http://purl.obolibrary.org/obo/CHEBI_32845,serinate +11.854982,CHEBI:33964,http://purl.obolibrary.org/obo/CHEBI_33964,silver molecular entity +11.854982,CHEBI:50910,http://purl.obolibrary.org/obo/CHEBI_50910,neurotoxin +11.854982,CL:0002375,http://purl.obolibrary.org/obo/CL_0002375,Schwann cell precursor +11.854982,CL:1001609,http://purl.obolibrary.org/obo/CL_1001609,muscle fibroblast +11.854982,DRUGBANK:DB02209,http://purl.obolibrary.org/obo/DRUGBANK_DB02209,none +11.854982,DRUGBANK:DB05239,http://purl.obolibrary.org/obo/DRUGBANK_DB05239,none +11.854982,DRUGBANK:DB06683,http://purl.obolibrary.org/obo/DRUGBANK_DB06683,none +11.854982,DRUGBANK:DB06684,http://purl.obolibrary.org/obo/DRUGBANK_DB06684,none +11.854982,DRUGBANK:DB09281,http://purl.obolibrary.org/obo/DRUGBANK_DB09281,none +11.854982,DRUGBANK:DB11366,http://purl.obolibrary.org/obo/DRUGBANK_DB11366,none +11.854982,DRUGBANK:DB11604,http://purl.obolibrary.org/obo/DRUGBANK_DB11604,none +11.854982,DRUGBANK:DB13296,http://purl.obolibrary.org/obo/DRUGBANK_DB13296,none +11.854982,DRUGBANK:DB14213,http://purl.obolibrary.org/obo/DRUGBANK_DB14213,none +11.854982,GO:0006059,http://purl.obolibrary.org/obo/GO_0006059,hexitol metabolic process +11.854982,GO:0008284,http://purl.obolibrary.org/obo/GO_0008284,positive regulation of cell population proliferation +11.854982,GO:0009225,http://purl.obolibrary.org/obo/GO_0009225,nucleotide-sugar metabolic process +11.854982,GO:0015798,http://purl.obolibrary.org/obo/GO_0015798,myo-inositol transport +11.854982,GO:0036270,http://purl.obolibrary.org/obo/GO_0036270,response to diuretic +11.854982,GO:0042436,http://purl.obolibrary.org/obo/GO_0042436,indole-containing compound catabolic process +11.854982,GO:0046982,http://purl.obolibrary.org/obo/GO_0046982,protein heterodimerization activity +11.854982,GO:0047117,http://purl.obolibrary.org/obo/GO_0047117,"enoyl-[acyl-carrier-protein] reductase (NADPH, A-specific) activity" +11.854982,GO:0048599,http://purl.obolibrary.org/obo/GO_0048599,oocyte development +11.854982,HP:0000023,http://purl.obolibrary.org/obo/HP_0000023,Inguinal hernia +11.854982,HP:0000093,http://purl.obolibrary.org/obo/HP_0000093,Proteinuria +11.854982,HP:0004299,http://purl.obolibrary.org/obo/HP_0004299,Hernia of the abdominal wall +11.854982,HP:0020129,http://purl.obolibrary.org/obo/HP_0020129,Abnormal urine protein level +11.854982,MONDO:0001260,http://purl.obolibrary.org/obo/MONDO_0001260,cercarial dermatitis +11.854982,MONDO:0001927,http://purl.obolibrary.org/obo/MONDO_0001927,pulmonary valve insufficiency +11.854982,MONDO:0003628,http://purl.obolibrary.org/obo/MONDO_0003628,pulmonary valve disease +11.854982,MONDO:0004653,http://purl.obolibrary.org/obo/MONDO_0004653,"atypical chronic myeloid leukemia, BCR-ABL1 negative" +11.854982,MONDO:0005846,http://purl.obolibrary.org/obo/MONDO_0005846,microsporidiosis +11.854982,MONDO:0008999,http://purl.obolibrary.org/obo/MONDO_0008999,Cohen syndrome +11.854982,MONDO:0009903,http://purl.obolibrary.org/obo/MONDO_0009903,postaxial acrofacial dysostosis +11.854982,MONDO:0015903,http://purl.obolibrary.org/obo/MONDO_0015903,hyperalphalipoproteinemia +11.854982,MONDO:0020312,http://purl.obolibrary.org/obo/MONDO_0020312,atypical chronic myeloid leukemia +11.854982,MONDO:0043465,http://purl.obolibrary.org/obo/MONDO_0043465,achlorhydria +11.854982,MOP:0000782,http://purl.obolibrary.org/obo/MOP_0000782,none +11.854982,NCBITaxon:2638829,http://purl.obolibrary.org/obo/NCBITaxon_2638829,none +11.854982,NCBITaxon:326176,http://purl.obolibrary.org/obo/NCBITaxon_326176,none +11.854982,NCBITaxon:444,http://purl.obolibrary.org/obo/NCBITaxon_444,Legionellaceae +11.854982,NCBITaxon:49082,http://purl.obolibrary.org/obo/NCBITaxon_49082,none +11.854982,NCBITaxon:49118,http://purl.obolibrary.org/obo/NCBITaxon_49118,none +11.854982,PR:000001494,http://purl.obolibrary.org/obo/PR_000001494,neuropeptide Y receptor type 5 +11.854982,PR:000001915,http://purl.obolibrary.org/obo/PR_000001915,potassium channel subfamily K member 5 +11.854982,PR:000002011,http://purl.obolibrary.org/obo/PR_000002011,MHC class I histocompatibility antigen C alpha chain +11.854982,PR:000004383,http://purl.obolibrary.org/obo/PR_000004383,retroviral-like aspartic protease 1 +11.854982,PR:000005246,http://purl.obolibrary.org/obo/PR_000005246,cadherin-4 +11.854982,PR:000005640,http://purl.obolibrary.org/obo/PR_000005640,calponin-1 +11.854982,PR:000006422,http://purl.obolibrary.org/obo/PR_000006422,derlin-1 +11.854982,PR:000007803,http://purl.obolibrary.org/obo/PR_000007803,G antigen 7 +11.854982,PR:000008183,http://purl.obolibrary.org/obo/PR_000008183,transmembrane glycoprotein NMB +11.854982,PR:000009018,http://purl.obolibrary.org/obo/PR_000009018,inositol monophosphatase 2 +11.854982,PR:000009202,http://purl.obolibrary.org/obo/PR_000009202,junctional adhesion molecule C +11.854982,PR:000009960,http://purl.obolibrary.org/obo/PR_000009960,U6 snRNA-associated Sm-like protein LSm2 +11.854982,PR:000011200,http://purl.obolibrary.org/obo/PR_000011200,helix-loop-helix protein 1 +11.854982,PR:000011369,http://purl.obolibrary.org/obo/PR_000011369,nuclear protein localization protein 4 +11.854982,PR:000013739,http://purl.obolibrary.org/obo/PR_000013739,retinoic acid receptor responder protein 1 +11.854982,PR:000016133,http://purl.obolibrary.org/obo/PR_000016133,F-box-like/WD repeat-containing protein TBL1XR1 +11.854982,PR:000023112,http://purl.obolibrary.org/obo/PR_000023112,none +11.854982,PR:000029551,http://purl.obolibrary.org/obo/PR_000029551,interferon-induced protein with tetratricopeptide repeats 2 +11.854982,PR:P26359,http://purl.obolibrary.org/obo/PR_P26359,none +11.854982,PR:P48349,http://purl.obolibrary.org/obo/PR_P48349,none +11.854982,PR:Q12043,http://purl.obolibrary.org/obo/PR_Q12043,none +11.854982,PR:Q43870,http://purl.obolibrary.org/obo/PR_Q43870,none +11.854982,PR:Q9SA52,http://purl.obolibrary.org/obo/PR_Q9SA52,none +11.854982,SO:0000606,http://purl.obolibrary.org/obo/SO_0000606,editing_domain +11.854982,SO:0000948,http://purl.obolibrary.org/obo/SO_0000948,inversion_site +11.854982,SO:0002059,http://purl.obolibrary.org/obo/SO_0002059,recombination_enhancer +11.854982,UBERON:0000047,http://purl.obolibrary.org/obo/UBERON_0000047,simple eye +11.854982,UBERON:0002492,http://purl.obolibrary.org/obo/UBERON_0002492,sagittal suture +11.854982,UBERON:0003085,http://purl.obolibrary.org/obo/UBERON_0003085,ventral aorta +11.854982,UBERON:0003592,http://purl.obolibrary.org/obo/UBERON_0003592,bronchus connective tissue +11.854982,UBERON:0003645,http://purl.obolibrary.org/obo/UBERON_0003645,metacarpal bone of digit 1 +11.854982,UBERON:0007026,http://purl.obolibrary.org/obo/UBERON_0007026,presumptive gut +11.854982,UBERON:0015043,http://purl.obolibrary.org/obo/UBERON_0015043,manual digit 1 metacarpus endochondral element +11.854982,UBERON:0019143,http://purl.obolibrary.org/obo/UBERON_0019143,intramuscular adipose tissue +11.8610983,CHEBI:59739,http://purl.obolibrary.org/obo/CHEBI_59739,electrophilic reagent +11.8610983,CL:0000429,http://purl.obolibrary.org/obo/CL_0000429,imaginal disc cell +11.8610983,CL:0000708,http://purl.obolibrary.org/obo/CL_0000708,leptomeningeal cell +11.8610983,DRUGBANK:DB02245,http://purl.obolibrary.org/obo/DRUGBANK_DB02245,none +11.8610983,DRUGBANK:DB03728,http://purl.obolibrary.org/obo/DRUGBANK_DB03728,none +11.8610983,DRUGBANK:DB04198,http://purl.obolibrary.org/obo/DRUGBANK_DB04198,none +11.8610983,DRUGBANK:DB09280,http://purl.obolibrary.org/obo/DRUGBANK_DB09280,none +11.8610983,DRUGBANK:DB11398,http://purl.obolibrary.org/obo/DRUGBANK_DB11398,none +11.8610983,DRUGBANK:DB11698,http://purl.obolibrary.org/obo/DRUGBANK_DB11698,none +11.8610983,DRUGBANK:DB12148,http://purl.obolibrary.org/obo/DRUGBANK_DB12148,none +11.8610983,DRUGBANK:DB12515,http://purl.obolibrary.org/obo/DRUGBANK_DB12515,none +11.8610983,DRUGBANK:DB12672,http://purl.obolibrary.org/obo/DRUGBANK_DB12672,none +11.8610983,DRUGBANK:DB13456,http://purl.obolibrary.org/obo/DRUGBANK_DB13456,none +11.8610983,DRUGBANK:DB13729,http://purl.obolibrary.org/obo/DRUGBANK_DB13729,none +11.8610983,DRUGBANK:DB13864,http://purl.obolibrary.org/obo/DRUGBANK_DB13864,none +11.8610983,DRUGBANK:DB14565,http://purl.obolibrary.org/obo/DRUGBANK_DB14565,none +11.8610983,GO:0003841,http://purl.obolibrary.org/obo/GO_0003841,1-acylglycerol-3-phosphate O-acyltransferase activity +11.8610983,GO:0006573,http://purl.obolibrary.org/obo/GO_0006573,valine metabolic process +11.8610983,GO:0008389,http://purl.obolibrary.org/obo/GO_0008389,coumarin 7-hydroxylase activity +11.8610983,GO:0009297,http://purl.obolibrary.org/obo/GO_0009297,pilus assembly +11.8610983,GO:0009386,http://purl.obolibrary.org/obo/GO_0009386,translational attenuation +11.8610983,GO:0015229,http://purl.obolibrary.org/obo/GO_0015229,L-ascorbic acid transmembrane transporter activity +11.8610983,GO:0032965,http://purl.obolibrary.org/obo/GO_0032965,regulation of collagen biosynthetic process +11.8610983,GO:0038128,http://purl.obolibrary.org/obo/GO_0038128,ERBB2 signaling pathway +11.8610983,GO:0046149,http://purl.obolibrary.org/obo/GO_0046149,pigment catabolic process +11.8610983,GO:0051091,http://purl.obolibrary.org/obo/GO_0051091,positive regulation of DNA-binding transcription factor activity +11.8610983,GO:0051904,http://purl.obolibrary.org/obo/GO_0051904,pigment granule transport +11.8610983,HP:0008386,http://purl.obolibrary.org/obo/HP_0008386,Aplasia/Hypoplasia of the nails +11.8610983,MONDO:0000816,http://purl.obolibrary.org/obo/MONDO_0000816,abdominal obesity-metabolic syndrome +11.8610983,MONDO:0021112,http://purl.obolibrary.org/obo/MONDO_0021112,scrotum cancer +11.8610983,MONDO:0022823,http://purl.obolibrary.org/obo/MONDO_0022823,congenital contractures +11.8610983,MONDO:0037002,http://purl.obolibrary.org/obo/MONDO_0037002,benign phyllodes tumor +11.8610983,MOP:0000730,http://purl.obolibrary.org/obo/MOP_0000730,none +11.8610983,NCBITaxon:1933179,http://purl.obolibrary.org/obo/NCBITaxon_1933179,none +11.8610983,NCBITaxon:33354,http://purl.obolibrary.org/obo/NCBITaxon_33354,Cimicomorpha +11.8610983,NCBITaxon:545632,http://purl.obolibrary.org/obo/NCBITaxon_545632,none +11.8610983,NCBITaxon:6525,http://purl.obolibrary.org/obo/NCBITaxon_6525,none +11.8610983,NCBITaxon:977779,http://purl.obolibrary.org/obo/NCBITaxon_977779,none +11.8610983,PR:000010500,http://purl.obolibrary.org/obo/PR_000010500,Max-binding protein MNT +11.8610983,PR:000012335,http://purl.obolibrary.org/obo/PR_000012335,poly(rC)-binding protein 1 +11.8610983,PR:000012441,http://purl.obolibrary.org/obo/PR_000012441,cyclin-dependent kinase 16 +11.8610983,PR:000012493,http://purl.obolibrary.org/obo/PR_000012493,"pyruvate dehydrogenase E1 component subunit alpha, somatic form, mitochondrial" +11.8610983,PR:000012835,http://purl.obolibrary.org/obo/PR_000012835,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase epsilon-1" +11.8610983,PR:000013503,http://purl.obolibrary.org/obo/PR_000013503,nectin-4 +11.8610983,PR:000013578,http://purl.obolibrary.org/obo/PR_000013578,Ras-related protein Rab-10 +11.8610983,PR:000014041,http://purl.obolibrary.org/obo/PR_000014041,unconventional prefoldin RPB5 interactor 1 +11.8610983,PR:000014275,http://purl.obolibrary.org/obo/PR_000014275,40S ribosomal protein S3 +11.8610983,PR:000016497,http://purl.obolibrary.org/obo/PR_000016497,poly [ADP-ribose] polymerase tankyrase-1 +11.8610983,PR:000017450,http://purl.obolibrary.org/obo/PR_000017450,protein Wnt-8a +11.8610983,PR:000023484,http://purl.obolibrary.org/obo/PR_000023484,none +11.8610983,PR:000028348,http://purl.obolibrary.org/obo/PR_000028348,none +11.8610983,PR:000029123,http://purl.obolibrary.org/obo/PR_000029123,mixed lineage kinase domain-like protein +11.8610983,PR:000030635,http://purl.obolibrary.org/obo/PR_000030635,"alpha-(1,3)-fucosyltransferase 7" +11.8610983,PR:000031820,http://purl.obolibrary.org/obo/PR_000031820,DNA repair protein SWI5 homolog +11.8610983,PR:P32784,http://purl.obolibrary.org/obo/PR_P32784,none +11.8610983,PR:P43072,http://purl.obolibrary.org/obo/PR_P43072,none +11.8610983,PR:P92208,http://purl.obolibrary.org/obo/PR_P92208,none +11.8610983,PR:Q9SCY0,http://purl.obolibrary.org/obo/PR_Q9SCY0,none +11.8610983,UBERON:0001956,http://purl.obolibrary.org/obo/UBERON_0001956,cartilage of bronchus +11.8610983,UBERON:0005203,http://purl.obolibrary.org/obo/UBERON_0005203,trachea gland +11.8610983,UBERON:0009121,http://purl.obolibrary.org/obo/UBERON_0009121,vomeronasal nerve +11.8672521,CHEBI:33859,http://purl.obolibrary.org/obo/CHEBI_33859,aromatic carboxylic acid +11.8672521,CHEBI:77962,http://purl.obolibrary.org/obo/CHEBI_77962,food antioxidant +11.8672521,CL:0000692,http://purl.obolibrary.org/obo/CL_0000692,terminal Schwann cell +11.8672521,CL:0000827,http://purl.obolibrary.org/obo/CL_0000827,pro-T cell +11.8672521,DRUGBANK:DB01525,http://purl.obolibrary.org/obo/DRUGBANK_DB01525,none +11.8672521,DRUGBANK:DB02591,http://purl.obolibrary.org/obo/DRUGBANK_DB02591,none +11.8672521,DRUGBANK:DB04222,http://purl.obolibrary.org/obo/DRUGBANK_DB04222,none +11.8672521,DRUGBANK:DB06016,http://purl.obolibrary.org/obo/DRUGBANK_DB06016,none +11.8672521,DRUGBANK:DB13504,http://purl.obolibrary.org/obo/DRUGBANK_DB13504,none +11.8672521,DRUGBANK:DB13886,http://purl.obolibrary.org/obo/DRUGBANK_DB13886,none +11.8672521,DRUGBANK:DB15953,http://purl.obolibrary.org/obo/DRUGBANK_DB15953,none +11.8672521,GO:0004647,http://purl.obolibrary.org/obo/GO_0004647,none +11.8672521,GO:0010216,http://purl.obolibrary.org/obo/GO_0010216,maintenance of DNA methylation +11.8672521,GO:0015827,http://purl.obolibrary.org/obo/GO_0015827,tryptophan transport +11.8672521,GO:0019915,http://purl.obolibrary.org/obo/GO_0019915,lipid storage +11.8672521,GO:0030904,http://purl.obolibrary.org/obo/GO_0030904,retromer complex +11.8672521,GO:0032800,http://purl.obolibrary.org/obo/GO_0032800,none +11.8672521,GO:0035834,http://purl.obolibrary.org/obo/GO_0035834,indole alkaloid metabolic process +11.8672521,GO:0051494,http://purl.obolibrary.org/obo/GO_0051494,negative regulation of cytoskeleton organization +11.8672521,GO:0051905,http://purl.obolibrary.org/obo/GO_0051905,establishment of pigment granule localization +11.8672521,GO:0071626,http://purl.obolibrary.org/obo/GO_0071626,mastication +11.8672521,HP:0001710,http://purl.obolibrary.org/obo/HP_0001710,Conotruncal defect +11.8672521,HP:0001792,http://purl.obolibrary.org/obo/HP_0001792,Small nail +11.8672521,HP:0002716,http://purl.obolibrary.org/obo/HP_0002716,Lymphadenopathy +11.8672521,HP:0011545,http://purl.obolibrary.org/obo/HP_0011545,Abnormal connection of the cardiac segments +11.8672521,HP:0011563,http://purl.obolibrary.org/obo/HP_0011563,Abnormal ventriculoarterial connection +11.8672521,MONDO:0001427,http://purl.obolibrary.org/obo/MONDO_0001427,Dieulafoy lesion +11.8672521,MONDO:0001601,http://purl.obolibrary.org/obo/MONDO_0001601,Plasmodium ovale malaria +11.8672521,MONDO:0003252,http://purl.obolibrary.org/obo/MONDO_0003252,granular cell cancer +11.8672521,MONDO:0008029,http://purl.obolibrary.org/obo/MONDO_0008029,Bethlem myopathy +11.8672521,MONDO:0013301,http://purl.obolibrary.org/obo/MONDO_0013301,aromatase deficiency +11.8672521,MONDO:0016513,http://purl.obolibrary.org/obo/MONDO_0016513,alpha-thalassemia-related diseases +11.8672521,MONDO:0017962,http://purl.obolibrary.org/obo/MONDO_0017962,"46,XX disorder of sex development induced by fetoplacental androgens excess" +11.8672521,MOP:0000709,http://purl.obolibrary.org/obo/MOP_0000709,none +11.8672521,NCBITaxon:21013,http://purl.obolibrary.org/obo/NCBITaxon_21013,none +11.8672521,NCBITaxon:216441,http://purl.obolibrary.org/obo/NCBITaxon_216441,none +11.8672521,NCBITaxon:6524,http://purl.obolibrary.org/obo/NCBITaxon_6524,none +11.8672521,NCBITaxon:6526,http://purl.obolibrary.org/obo/NCBITaxon_6526,none +11.8672521,NCBITaxon:977780,http://purl.obolibrary.org/obo/NCBITaxon_977780,none +11.8672521,NCBITaxon:981071,http://purl.obolibrary.org/obo/NCBITaxon_981071,none +11.8672521,PR:000004821,http://purl.obolibrary.org/obo/PR_000004821,brain protein 44-like protein +11.8672521,PR:000005477,http://purl.obolibrary.org/obo/PR_000005477,carbohydrate sulfotransferase 4 +11.8672521,PR:000008467,http://purl.obolibrary.org/obo/PR_000008467,hemoglobin subunit zeta +11.8672521,PR:000009870,http://purl.obolibrary.org/obo/PR_000009870,LIM homeobox transcription factor 1-alpha +11.8672521,PR:000012470,http://purl.obolibrary.org/obo/PR_000012470,"cGMP-inhibited 3',5'-cyclic phosphodiesterase A" +11.8672521,PR:000012564,http://purl.obolibrary.org/obo/PR_000012564,peroxisomal biogenesis factor 3 +11.8672521,PR:000012704,http://purl.obolibrary.org/obo/PR_000012704,phosphatidylinositol N-acetylglucosaminyltransferase subunit Q +11.8672521,PR:000013028,http://purl.obolibrary.org/obo/PR_000013028,popeye domain-containing protein 2 +11.8672521,PR:000013440,http://purl.obolibrary.org/obo/PR_000013440,protein tyrosine phosphatase type IVA 1 +11.8672521,PR:000016648,http://purl.obolibrary.org/obo/PR_000016648,E3 ubiquitin-protein ligase TRIM23 +11.8672521,PR:000022473,http://purl.obolibrary.org/obo/PR_000022473,none +11.8672521,PR:000022816,http://purl.obolibrary.org/obo/PR_000022816,serine hydroxymethyltransferase +11.8672521,PR:O24520,http://purl.obolibrary.org/obo/PR_O24520,none +11.8672521,PR:O24629,http://purl.obolibrary.org/obo/PR_O24629,none +11.8672521,PR:P20081,http://purl.obolibrary.org/obo/PR_P20081,none +11.8672521,PR:Q08891,http://purl.obolibrary.org/obo/PR_Q08891,none +11.8672521,PR:Q5S2C4,http://purl.obolibrary.org/obo/PR_Q5S2C4,none +11.8672521,PR:Q9UW13,http://purl.obolibrary.org/obo/PR_Q9UW13,none +11.8672521,SO:0000270,http://purl.obolibrary.org/obo/SO_0000270,threonyl_tRNA +11.8672521,SO:0000326,http://purl.obolibrary.org/obo/SO_0000326,SAGE_tag +11.8672521,SO:0001978,http://purl.obolibrary.org/obo/SO_0001978,signature +11.8672521,UBERON:0001903,http://purl.obolibrary.org/obo/UBERON_0001903,thalamic reticular nucleus +11.8672521,UBERON:0004613,http://purl.obolibrary.org/obo/UBERON_0004613,mammalian cervical vertebra 4 +11.8672521,UBERON:0004998,http://purl.obolibrary.org/obo/UBERON_0004998,mucosa of pylorus +11.8672521,UBERON:0006086,http://purl.obolibrary.org/obo/UBERON_0006086,stria medullaris +11.8672521,UBERON:0009149,http://purl.obolibrary.org/obo/UBERON_0009149,foramen primum +11.8672521,UBERON:0010512,http://purl.obolibrary.org/obo/UBERON_0010512,strand of guard hair +11.8672521,UBERON:0022232,http://purl.obolibrary.org/obo/UBERON_0022232,secondary visual cortex +11.8672521,UBERON:0034893,http://purl.obolibrary.org/obo/UBERON_0034893,agranular insular cortex +11.8734441,CHEBI:22723,http://purl.obolibrary.org/obo/CHEBI_22723,benzoic acids +11.8734441,CHEBI:23014,http://purl.obolibrary.org/obo/CHEBI_23014,carbon oxide +11.8734441,CHEBI:25481,http://purl.obolibrary.org/obo/CHEBI_25481,naphthoquinone +11.8734441,CHEBI:25940,http://purl.obolibrary.org/obo/CHEBI_25940,peroxides +11.8734441,CHEBI:78031,http://purl.obolibrary.org/obo/CHEBI_78031,Wnt signalling inhibitor +11.8734441,CL:0008019,http://purl.obolibrary.org/obo/CL_0008019,mesenchymal cell +11.8734441,DRUGBANK:DB04944,http://purl.obolibrary.org/obo/DRUGBANK_DB04944,none +11.8734441,DRUGBANK:DB06246,http://purl.obolibrary.org/obo/DRUGBANK_DB06246,none +11.8734441,DRUGBANK:DB13161,http://purl.obolibrary.org/obo/DRUGBANK_DB13161,none +11.8734441,DRUGBANK:DB14241,http://purl.obolibrary.org/obo/DRUGBANK_DB14241,none +11.8734441,DRUGBANK:DB15986,http://purl.obolibrary.org/obo/DRUGBANK_DB15986,none +11.8734441,GO:0004819,http://purl.obolibrary.org/obo/GO_0004819,glutamine-tRNA ligase activity +11.8734441,GO:0006569,http://purl.obolibrary.org/obo/GO_0006569,tryptophan catabolic process +11.8734441,GO:0009166,http://purl.obolibrary.org/obo/GO_0009166,nucleotide catabolic process +11.8734441,GO:0015266,http://purl.obolibrary.org/obo/GO_0015266,none +11.8734441,GO:0033363,http://purl.obolibrary.org/obo/GO_0033363,secretory granule organization +11.8734441,GO:0043711,http://purl.obolibrary.org/obo/GO_0043711,pilus organization +11.8734441,GO:0046218,http://purl.obolibrary.org/obo/GO_0046218,indolalkylamine catabolic process +11.8734441,GO:0051187,http://purl.obolibrary.org/obo/GO_0051187,none +11.8734441,HP:0001913,http://purl.obolibrary.org/obo/HP_0001913,Granulocytopenia +11.8734441,HP:0004319,http://purl.obolibrary.org/obo/HP_0004319,Decreased circulating aldosterone level +11.8734441,HP:0008207,http://purl.obolibrary.org/obo/HP_0008207,Primary adrenal insufficiency +11.8734441,HP:0012219,http://purl.obolibrary.org/obo/HP_0012219,Erythema nodosum +11.8734441,MONDO:0006770,http://purl.obolibrary.org/obo/MONDO_0006770,giant cell reparative granuloma +11.8734441,MONDO:0007029,http://purl.obolibrary.org/obo/MONDO_0007029,branchio-oto-renal syndrome +11.8734441,MONDO:0015243,http://purl.obolibrary.org/obo/MONDO_0015243,allergic bronchopulmonary aspergillosis +11.8734441,MONDO:0016893,http://purl.obolibrary.org/obo/MONDO_0016893,partial deletion of the short arm of chromosome 11 +11.8734441,MONDO:0021140,http://purl.obolibrary.org/obo/MONDO_0021140,congenital +11.8734441,NCBITaxon:7217,http://purl.obolibrary.org/obo/NCBITaxon_7217,none +11.8734441,PR:000001825,http://purl.obolibrary.org/obo/PR_000001825,NADPH oxidase 3 +11.8734441,PR:000003520,http://purl.obolibrary.org/obo/PR_000003520,arylacetamide deacetylase +11.8734441,PR:000004382,http://purl.obolibrary.org/obo/PR_000004382,asporin +11.8734441,PR:000004741,http://purl.obolibrary.org/obo/PR_000004741,class E basic helix-loop-helix protein 41 +11.8734441,PR:000005475,http://purl.obolibrary.org/obo/PR_000005475,carbohydrate sulfotransferase 2 +11.8734441,PR:000006688,http://purl.obolibrary.org/obo/PR_000006688,developmentally-regulated GTP-binding protein 1 +11.8734441,PR:000008025,http://purl.obolibrary.org/obo/PR_000008025,Golgi apparatus protein 1 +11.8734441,PR:000008172,http://purl.obolibrary.org/obo/PR_000008172,glycoprotein hormone alpha-2 +11.8734441,PR:000010460,http://purl.obolibrary.org/obo/PR_000010460,carbohydrate-responsive element-binding protein +11.8734441,PR:000011048,http://purl.obolibrary.org/obo/PR_000011048,nuclear receptor corepressor 2 +11.8734441,PR:000012553,http://purl.obolibrary.org/obo/PR_000012553,peroxisome biogenesis factor 1 +11.8734441,PR:000013750,http://purl.obolibrary.org/obo/PR_000013750,dexamethasone-induced Ras-related protein 1 +11.8734441,PR:000014190,http://purl.obolibrary.org/obo/PR_000014190,60S ribosomal protein L11 +11.8734441,PR:000014601,http://purl.obolibrary.org/obo/PR_000014601,selenocysteine insertion sequence-binding protein 2 +11.8734441,PR:000014912,http://purl.obolibrary.org/obo/PR_000014912,Src-like-adapter 2 +11.8734441,PR:000014977,http://purl.obolibrary.org/obo/PR_000014977,excitatory amino acid transporter 4 +11.8734441,PR:000015187,http://purl.obolibrary.org/obo/PR_000015187,sodium- and chloride-dependent transporter XTRP3 +11.8734441,PR:000015307,http://purl.obolibrary.org/obo/PR_000015307,histone-lysine N-methyltransferase SMYD3 +11.8734441,PR:000015571,http://purl.obolibrary.org/obo/PR_000015571,shadow of prion protein +11.8734441,PR:000015834,http://purl.obolibrary.org/obo/PR_000015834,FACT complex subunit SPT16 +11.8734441,PR:000017447,http://purl.obolibrary.org/obo/PR_000017447,protein Wnt-6 +11.8734441,PR:000022867,http://purl.obolibrary.org/obo/PR_000022867,none +11.8734441,PR:000022887,http://purl.obolibrary.org/obo/PR_000022887,none +11.8734441,PR:000029215,http://purl.obolibrary.org/obo/PR_000029215,none +11.8734441,PR:P35729,http://purl.obolibrary.org/obo/PR_P35729,none +11.8734441,PR:P40020,http://purl.obolibrary.org/obo/PR_P40020,none +11.8734441,PR:Q84KJ5,http://purl.obolibrary.org/obo/PR_Q84KJ5,none +11.8734441,SO:0000626,http://purl.obolibrary.org/obo/SO_0000626,chromosomal_regulatory_element +11.8734441,UBERON:0006724,http://purl.obolibrary.org/obo/UBERON_0006724,osseus spiral lamina +11.8734441,UBERON:0007227,http://purl.obolibrary.org/obo/UBERON_0007227,superior vestibular nucleus +11.8734441,UBERON:0008802,http://purl.obolibrary.org/obo/UBERON_0008802,cheek pouch +11.8734441,UBERON:0010940,http://purl.obolibrary.org/obo/UBERON_0010940,muscle of digastric group +11.8796747,CHEBI:22928,http://purl.obolibrary.org/obo/CHEBI_22928,bromine molecular entity +11.8796747,CHEBI:24458,http://purl.obolibrary.org/obo/CHEBI_24458,guanosines +11.8796747,CHEBI:50925,http://purl.obolibrary.org/obo/CHEBI_50925,EC 2.7.11.1 (non-specific serine/threonine protein kinase) inhibitor +11.8796747,CHEBI:75047,http://purl.obolibrary.org/obo/CHEBI_75047,B-Raf inhibitor +11.8796747,CL:0000889,http://purl.obolibrary.org/obo/CL_0000889,myeloid suppressor cell +11.8796747,CL:0002561,http://purl.obolibrary.org/obo/CL_0002561,outer root sheath cell +11.8796747,DRUGBANK:DB05273,http://purl.obolibrary.org/obo/DRUGBANK_DB05273,none +11.8796747,DRUGBANK:DB06796,http://purl.obolibrary.org/obo/DRUGBANK_DB06796,none +11.8796747,DRUGBANK:DB08836,http://purl.obolibrary.org/obo/DRUGBANK_DB08836,none +11.8796747,DRUGBANK:DB09022,http://purl.obolibrary.org/obo/DRUGBANK_DB09022,none +11.8796747,DRUGBANK:DB09300,http://purl.obolibrary.org/obo/DRUGBANK_DB09300,none +11.8796747,GO:0003884,http://purl.obolibrary.org/obo/GO_0003884,D-amino-acid oxidase activity +11.8796747,GO:0004751,http://purl.obolibrary.org/obo/GO_0004751,ribose-5-phosphate isomerase activity +11.8796747,GO:0007076,http://purl.obolibrary.org/obo/GO_0007076,mitotic chromosome condensation +11.8796747,GO:0009098,http://purl.obolibrary.org/obo/GO_0009098,leucine biosynthetic process +11.8796747,GO:0009625,http://purl.obolibrary.org/obo/GO_0009625,response to insect +11.8796747,GO:0030212,http://purl.obolibrary.org/obo/GO_0030212,hyaluronan metabolic process +11.8796747,GO:0030308,http://purl.obolibrary.org/obo/GO_0030308,negative regulation of cell growth +11.8796747,GO:0042373,http://purl.obolibrary.org/obo/GO_0042373,vitamin K metabolic process +11.8796747,GO:0045761,http://purl.obolibrary.org/obo/GO_0045761,regulation of adenylate cyclase activity +11.8796747,GO:0048640,http://purl.obolibrary.org/obo/GO_0048640,negative regulation of developmental growth +11.8796747,GO:0050764,http://purl.obolibrary.org/obo/GO_0050764,regulation of phagocytosis +11.8796747,GO:0070122,http://purl.obolibrary.org/obo/GO_0070122,isopeptidase activity +11.8796747,GO:1901292,http://purl.obolibrary.org/obo/GO_1901292,nucleoside phosphate catabolic process +11.8796747,HP:0002883,http://purl.obolibrary.org/obo/HP_0002883,Hyperventilation +11.8796747,MONDO:0000290,http://purl.obolibrary.org/obo/MONDO_0000290,primary amebic meningoencephalitis +11.8796747,MONDO:0002168,http://purl.obolibrary.org/obo/MONDO_0002168,rectum sarcoma +11.8796747,MONDO:0003257,http://purl.obolibrary.org/obo/MONDO_0003257,posterior pituitary gland neoplasm +11.8796747,MONDO:0004008,http://purl.obolibrary.org/obo/MONDO_0004008,flat ductal epithelial atypia +11.8796747,MONDO:0006142,http://purl.obolibrary.org/obo/MONDO_0006142,cervical small cell carcinoma +11.8796747,MONDO:0006230,http://purl.obolibrary.org/obo/MONDO_0006230,gastric squamous cell carcinoma +11.8796747,MONDO:0010562,http://purl.obolibrary.org/obo/MONDO_0010562,colonic atresia +11.8796747,MONDO:0018683,http://purl.obolibrary.org/obo/MONDO_0018683,acquired ichthyosis +11.8796747,PR:000003392,http://purl.obolibrary.org/obo/PR_000003392,microsomal triglyceride transfer protein large subunit +11.8796747,PR:000003720,http://purl.obolibrary.org/obo/PR_000003720,disintegrin and metalloproteinase domain-containing protein 28 +11.8796747,PR:000003812,http://purl.obolibrary.org/obo/PR_000003812,N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase +11.8796747,PR:000004263,http://purl.obolibrary.org/obo/PR_000004263,AT-rich interactive domain-containing protein 1B +11.8796747,PR:000005643,http://purl.obolibrary.org/obo/PR_000005643,metal transporter CNNM1 +11.8796747,PR:000006108,http://purl.obolibrary.org/obo/PR_000006108,cytochrome P450 26B1 +11.8796747,PR:000006263,http://purl.obolibrary.org/obo/PR_000006263,dapper homolog 1 +11.8796747,PR:000007076,http://purl.obolibrary.org/obo/PR_000007076,"endonuclease G, mitochondrial" +11.8796747,PR:000008048,http://purl.obolibrary.org/obo/PR_000008048,"glutaredoxin-2, mitochondrial" +11.8796747,PR:000009479,http://purl.obolibrary.org/obo/PR_000009479,"keratin, type II cytoskeletal 4" +11.8796747,PR:000010682,http://purl.obolibrary.org/obo/PR_000010682,"methionine-R-sulfoxide reductase B3, mitochondrial" +11.8796747,PR:000011192,http://purl.obolibrary.org/obo/PR_000011192,neuroguidin +11.8796747,PR:000012090,http://purl.obolibrary.org/obo/PR_000012090,oviduct-specific glycoprotein +11.8796747,PR:000012715,http://purl.obolibrary.org/obo/PR_000012715,phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit alpha +11.8796747,PR:000013453,http://purl.obolibrary.org/obo/PR_000013453,tyrosine-protein phosphatase non-receptor type 18 +11.8796747,PR:000013595,http://purl.obolibrary.org/obo/PR_000013595,Ras-related protein Rab-22A +11.8796747,PR:000013979,http://purl.obolibrary.org/obo/PR_000013979,Rho-related GTP-binding protein RhoD +11.8796747,PR:000015271,http://purl.obolibrary.org/obo/PR_000015271,structural maintenance of chromosomes protein 2 +11.8796747,PR:000017287,http://purl.obolibrary.org/obo/PR_000017287,vascular endothelial zinc finger 1 +11.8796747,PR:000022971,http://purl.obolibrary.org/obo/PR_000022971,none +11.8796747,PR:000024111,http://purl.obolibrary.org/obo/PR_000024111,none +11.8796747,PR:000028506,http://purl.obolibrary.org/obo/PR_000028506,none +11.8796747,PR:000029261,http://purl.obolibrary.org/obo/PR_000029261,acylamino-acid-releasing enzyme +11.8796747,PR:O04479,http://purl.obolibrary.org/obo/PR_O04479,none +11.8796747,PR:O35430,http://purl.obolibrary.org/obo/PR_O35430,none +11.8796747,PR:P37292,http://purl.obolibrary.org/obo/PR_P37292,none +11.8796747,SO:0001832,http://purl.obolibrary.org/obo/SO_0001832,immunoglobulin_region +11.8796747,UBERON:0004997,http://purl.obolibrary.org/obo/UBERON_0004997,mucosa of pyloric antrum +11.8796747,UBERON:0008978,http://purl.obolibrary.org/obo/UBERON_0008978,anal sac +11.8796747,UBERON:0009687,http://purl.obolibrary.org/obo/UBERON_0009687,middle cardiac vein +11.8796747,UBERON:0011189,http://purl.obolibrary.org/obo/UBERON_0011189,lamina propria of large intestine +11.8859443,CHEBI:32700,http://purl.obolibrary.org/obo/CHEBI_32700,arginine residue +11.8859443,DRUGBANK:DB02431,http://purl.obolibrary.org/obo/DRUGBANK_DB02431,none +11.8859443,DRUGBANK:DB11383,http://purl.obolibrary.org/obo/DRUGBANK_DB11383,none +11.8859443,DRUGBANK:DB12190,http://purl.obolibrary.org/obo/DRUGBANK_DB12190,none +11.8859443,DRUGBANK:DB13209,http://purl.obolibrary.org/obo/DRUGBANK_DB13209,none +11.8859443,DRUGBANK:DB13427,http://purl.obolibrary.org/obo/DRUGBANK_DB13427,none +11.8859443,DRUGBANK:DB14000,http://purl.obolibrary.org/obo/DRUGBANK_DB14000,none +11.8859443,GO:0005484,http://purl.obolibrary.org/obo/GO_0005484,SNAP receptor activity +11.8859443,GO:0006825,http://purl.obolibrary.org/obo/GO_0006825,copper ion transport +11.8859443,GO:0035381,http://purl.obolibrary.org/obo/GO_0035381,ATP-gated ion channel activity +11.8859443,GO:0042744,http://purl.obolibrary.org/obo/GO_0042744,hydrogen peroxide catabolic process +11.8859443,GO:0044194,http://purl.obolibrary.org/obo/GO_0044194,cytolytic granule +11.8859443,GO:0047787,http://purl.obolibrary.org/obo/GO_0047787,delta4-3-oxosteroid 5beta-reductase activity +11.8859443,GO:0071738,http://purl.obolibrary.org/obo/GO_0071738,IgD immunoglobulin complex +11.8859443,GO:0090425,http://purl.obolibrary.org/obo/GO_0090425,acinar cell differentiation +11.8859443,GO:1903715,http://purl.obolibrary.org/obo/GO_1903715,regulation of aerobic respiration +11.8859443,HP:0002584,http://purl.obolibrary.org/obo/HP_0002584,Intestinal bleeding +11.8859443,MONDO:0006151,http://purl.obolibrary.org/obo/MONDO_0006151,colon dysplasia +11.8859443,MONDO:0008587,http://purl.obolibrary.org/obo/MONDO_0008587,tracheobronchopathia osteochondroplastica +11.8859443,MONDO:0009318,http://purl.obolibrary.org/obo/MONDO_0009318,Hallermann-Streiff syndrome +11.8859443,MONDO:0015715,http://purl.obolibrary.org/obo/MONDO_0015715,severe hemophilia B +11.8859443,MONDO:0018106,http://purl.obolibrary.org/obo/MONDO_0018106,hereditary xanthinuria +11.8859443,NCBITaxon:2706,http://purl.obolibrary.org/obo/NCBITaxon_2706,none +11.8859443,NCBITaxon:33958,http://purl.obolibrary.org/obo/NCBITaxon_33958,none +11.8859443,NCBITaxon:4143,http://purl.obolibrary.org/obo/NCBITaxon_4143,none +11.8859443,NCBITaxon:76306,http://purl.obolibrary.org/obo/NCBITaxon_76306,none +11.8859443,PR:000003220,http://purl.obolibrary.org/obo/PR_000003220,myosin light chain 3 +11.8859443,PR:000004429,http://purl.obolibrary.org/obo/PR_000004429,atrophin-1 +11.8859443,PR:000005410,http://purl.obolibrary.org/obo/PR_000005410,chromodomain-helicase-DNA-binding protein 4 +11.8859443,PR:000007912,http://purl.obolibrary.org/obo/PR_000007912,ganglioside-induced differentiation-associated protein 1 +11.8859443,PR:000007986,http://purl.obolibrary.org/obo/PR_000007986,gastric inhibitory polypeptide +11.8859443,PR:000008421,http://purl.obolibrary.org/obo/PR_000008421,histone H2A.Z +11.8859443,PR:000009281,http://purl.obolibrary.org/obo/PR_000009281,"KH domain-containing, RNA-binding, signal transduction-associated protein 3" +11.8859443,PR:000012877,http://purl.obolibrary.org/obo/PR_000012877,"procollagen-lysine,2-oxoglutarate 5-dioxygenase 2" +11.8859443,PR:000014700,http://purl.obolibrary.org/obo/PR_000014700,serpin B9 +11.8859443,PR:000015398,http://purl.obolibrary.org/obo/PR_000015398,suppressor of cytokine signaling 7 +11.8859443,PR:000015568,http://purl.obolibrary.org/obo/PR_000015568,"sprouty-related, EVH1 domain-containing protein 1" +11.8859443,PR:000016155,http://purl.obolibrary.org/obo/PR_000016155,thromboxane-A synthase +11.8859443,PR:000016606,http://purl.obolibrary.org/obo/PR_000016606,E3 ubiquitin-protein ligase TRAIP +11.8859443,PR:000017787,http://purl.obolibrary.org/obo/PR_000017787,zinc finger protein 260 +11.8859443,PR:000030622,http://purl.obolibrary.org/obo/PR_000030622,protein wntless homolog +11.8859443,PR:000031667,http://purl.obolibrary.org/obo/PR_000031667,"succinate dehydrogenase assembly factor 2, mitochondrial" +11.8859443,PR:000032228,http://purl.obolibrary.org/obo/PR_000032228,doublecortin domain-containing protein 2 +11.8859443,PR:O77203,http://purl.obolibrary.org/obo/PR_O77203,none +11.8859443,PR:P17967,http://purl.obolibrary.org/obo/PR_P17967,none +11.8859443,PR:P37271,http://purl.obolibrary.org/obo/PR_P37271,none +11.8859443,PR:P55965,http://purl.obolibrary.org/obo/PR_P55965,none +11.8859443,PR:Q02948,http://purl.obolibrary.org/obo/PR_Q02948,none +11.8859443,PR:Q1EBV7,http://purl.obolibrary.org/obo/PR_Q1EBV7,none +11.8859443,PR:Q55CC5,http://purl.obolibrary.org/obo/PR_Q55CC5,none +11.8859443,PR:Q63661,http://purl.obolibrary.org/obo/PR_Q63661,none +11.8859443,PR:Q9LHQ6,http://purl.obolibrary.org/obo/PR_Q9LHQ6,none +11.8859443,SO:0001646,http://purl.obolibrary.org/obo/SO_0001646,DArT_marker +11.8859443,UBERON:0002721,http://purl.obolibrary.org/obo/UBERON_0002721,lateral sulcus +11.8859443,UBERON:0004250,http://purl.obolibrary.org/obo/UBERON_0004250,upper arm bone +11.8859443,UBERON:0005497,http://purl.obolibrary.org/obo/UBERON_0005497,non-neural ectoderm +11.8859443,UBERON:0009026,http://purl.obolibrary.org/obo/UBERON_0009026,iliac circumflex artery +11.8922534,CHEBI:132142,http://purl.obolibrary.org/obo/CHEBI_132142,"1,4-naphthoquinones" +11.8922534,CHEBI:24261,http://purl.obolibrary.org/obo/CHEBI_24261,glucocorticoid +11.8922534,CHEBI:50408,http://purl.obolibrary.org/obo/CHEBI_50408,visual indicator +11.8922534,CHEBI:50410,http://purl.obolibrary.org/obo/CHEBI_50410,colour indicator +11.8922534,DRUGBANK:DB00103,http://purl.obolibrary.org/obo/DRUGBANK_DB00103,none +11.8922534,DRUGBANK:DB02041,http://purl.obolibrary.org/obo/DRUGBANK_DB02041,none +11.8922534,DRUGBANK:DB03515,http://purl.obolibrary.org/obo/DRUGBANK_DB03515,none +11.8922534,DRUGBANK:DB04459,http://purl.obolibrary.org/obo/DRUGBANK_DB04459,none +11.8922534,DRUGBANK:DB06685,http://purl.obolibrary.org/obo/DRUGBANK_DB06685,none +11.8922534,DRUGBANK:DB09344,http://purl.obolibrary.org/obo/DRUGBANK_DB09344,none +11.8922534,DRUGBANK:DB11375,http://purl.obolibrary.org/obo/DRUGBANK_DB11375,none +11.8922534,DRUGBANK:DB13481,http://purl.obolibrary.org/obo/DRUGBANK_DB13481,none +11.8922534,DRUGBANK:DB13775,http://purl.obolibrary.org/obo/DRUGBANK_DB13775,none +11.8922534,GO:0004455,http://purl.obolibrary.org/obo/GO_0004455,ketol-acid reductoisomerase activity +11.8922534,GO:0004644,http://purl.obolibrary.org/obo/GO_0004644,phosphoribosylglycinamide formyltransferase activity +11.8922534,GO:0005640,http://purl.obolibrary.org/obo/GO_0005640,nuclear outer membrane +11.8922534,GO:0009120,http://purl.obolibrary.org/obo/GO_0009120,deoxyribonucleoside metabolic process +11.8922534,GO:0016832,http://purl.obolibrary.org/obo/GO_0016832,aldehyde-lyase activity +11.8922534,GO:0033355,http://purl.obolibrary.org/obo/GO_0033355,ascorbate glutathione cycle +11.8922534,GO:0034993,http://purl.obolibrary.org/obo/GO_0034993,meiotic nuclear membrane microtubule tethering complex +11.8922534,GO:0035835,http://purl.obolibrary.org/obo/GO_0035835,indole alkaloid biosynthetic process +11.8922534,GO:0050318,http://purl.obolibrary.org/obo/GO_0050318,tannase activity +11.8922534,GO:0071272,http://purl.obolibrary.org/obo/GO_0071272,morphine metabolic process +11.8922534,GO:0106083,http://purl.obolibrary.org/obo/GO_0106083,nuclear membrane protein complex +11.8922534,GO:0106094,http://purl.obolibrary.org/obo/GO_0106094,nuclear membrane microtubule tethering complex +11.8922534,HP:0030050,http://purl.obolibrary.org/obo/HP_0030050,Narcolepsy +11.8922534,MONDO:0002844,http://purl.obolibrary.org/obo/MONDO_0002844,lymphocytic gastritis +11.8922534,MONDO:0002903,http://purl.obolibrary.org/obo/MONDO_0002903,articulation disorder +11.8922534,MONDO:0006121,http://purl.obolibrary.org/obo/MONDO_0006121,calcifying fibrous tumor +11.8922534,MONDO:0006402,http://purl.obolibrary.org/obo/MONDO_0006402,salivary gland basal cell adenocarcinoma +11.8922534,MONDO:0008165,http://purl.obolibrary.org/obo/MONDO_0008165,southeast Asian ovalocytosis +11.8922534,MONDO:0008637,http://purl.obolibrary.org/obo/MONDO_0008637,bifid uvula +11.8922534,MONDO:0009560,http://purl.obolibrary.org/obo/MONDO_0009560,oculotrichoanal syndrome +11.8922534,MONDO:0010778,http://purl.obolibrary.org/obo/MONDO_0010778,cyclic vomiting syndrome +11.8922534,MONDO:0015504,http://purl.obolibrary.org/obo/MONDO_0015504,larynx anomaly +11.8922534,MONDO:0016421,http://purl.obolibrary.org/obo/MONDO_0016421,toxic oil syndrome +11.8922534,MONDO:0017687,http://purl.obolibrary.org/obo/MONDO_0017687,disorder of neutral amino acid transport +11.8922534,MONDO:0019335,http://purl.obolibrary.org/obo/MONDO_0019335,mild hyperphenylalaninemia +11.8922534,MONDO:0019500,http://purl.obolibrary.org/obo/MONDO_0019500,extragonadal teratoma +11.8922534,MONDO:0020476,http://purl.obolibrary.org/obo/MONDO_0020476,mesial temporal lobe epilepsy with hippocampal sclerosis +11.8922534,MONDO:0043919,http://purl.obolibrary.org/obo/MONDO_0043919,radiation pneumonitis +11.8922534,MONDO:0100196,http://purl.obolibrary.org/obo/MONDO_0100196,TPM2-related myopathy +11.8922534,NCBITaxon:7995,http://purl.obolibrary.org/obo/NCBITaxon_7995,Siluriformes +11.8922534,PR:000001224,http://purl.obolibrary.org/obo/PR_000001224,medium-wave-sensitive opsin +11.8922534,PR:000001481,http://purl.obolibrary.org/obo/PR_000001481,low affinity immunoglobulin gamma Fc region receptor II-b +11.8922534,PR:000004008,http://purl.obolibrary.org/obo/PR_000004008,alpha-amylase 2A +11.8922534,PR:000007359,http://purl.obolibrary.org/obo/PR_000007359,fibulin-2 +11.8922534,PR:000007952,http://purl.obolibrary.org/obo/PR_000007952,ADP-ribosylation factor-binding protein GGA1 +11.8922534,PR:000012763,http://purl.obolibrary.org/obo/PR_000012763,piwi-like protein 2 +11.8922534,PR:000012892,http://purl.obolibrary.org/obo/PR_000012892,plexin-A1 +11.8922534,PR:000013465,http://purl.obolibrary.org/obo/PR_000013465,receptor-type tyrosine-protein phosphatase beta +11.8922534,PR:000014861,http://purl.obolibrary.org/obo/PR_000014861,E3 ubiquitin-protein ligase SIAH2 +11.8922534,PR:000014870,http://purl.obolibrary.org/obo/PR_000014870,serine/threonine-protein kinase SIK1 +11.8922534,PR:000015033,http://purl.obolibrary.org/obo/PR_000015033,ADP/ATP translocase 2 +11.8922534,PR:000015764,http://purl.obolibrary.org/obo/PR_000015764,stomatin-like protein 1 +11.8922534,PR:000017313,http://purl.obolibrary.org/obo/PR_000017313,pantetheinase +11.8922534,PR:000017773,http://purl.obolibrary.org/obo/PR_000017773,zinc finger and BTB domain-containing protein 18 +11.8922534,PR:000023379,http://purl.obolibrary.org/obo/PR_000023379,none +11.8922534,PR:000029265,http://purl.obolibrary.org/obo/PR_000029265,aldehyde dehydrogenase family 3 member B2 +11.8922534,PR:Q86ME2,http://purl.obolibrary.org/obo/PR_Q86ME2,none +11.8922534,PR:Q9S7T7,http://purl.obolibrary.org/obo/PR_Q9S7T7,none +11.8922534,SO:0000036,http://purl.obolibrary.org/obo/SO_0000036,matrix_attachment_site +11.8922534,SO:0000405,http://purl.obolibrary.org/obo/SO_0000405,Y_RNA +11.8922534,SO:0001501,http://purl.obolibrary.org/obo/SO_0001501,peptide_collection +11.8922534,UBERON:0009857,http://purl.obolibrary.org/obo/UBERON_0009857,cavum septum pellucidum +11.8986027,CHEBI:28384,http://purl.obolibrary.org/obo/CHEBI_28384,vitamin K +11.8986027,CHEBI:32568,http://purl.obolibrary.org/obo/CHEBI_32568,lysine residue +11.8986027,CHEBI:38560,http://purl.obolibrary.org/obo/CHEBI_38560,simple protein +11.8986027,CHEBI:50816,http://purl.obolibrary.org/obo/CHEBI_50816,iron oxide +11.8986027,DRUGBANK:DB00534,http://purl.obolibrary.org/obo/DRUGBANK_DB00534,none +11.8986027,DRUGBANK:DB11386,http://purl.obolibrary.org/obo/DRUGBANK_DB11386,none +11.8986027,GO:0006475,http://purl.obolibrary.org/obo/GO_0006475,internal protein amino acid acetylation +11.8986027,GO:0006817,http://purl.obolibrary.org/obo/GO_0006817,phosphate ion transport +11.8986027,GO:0008360,http://purl.obolibrary.org/obo/GO_0008360,regulation of cell shape +11.8986027,GO:0016573,http://purl.obolibrary.org/obo/GO_0016573,histone acetylation +11.8986027,GO:0018393,http://purl.obolibrary.org/obo/GO_0018393,internal peptidyl-lysine acetylation +11.8986027,GO:0018394,http://purl.obolibrary.org/obo/GO_0018394,peptidyl-lysine acetylation +11.8986027,GO:0033327,http://purl.obolibrary.org/obo/GO_0033327,Leydig cell differentiation +11.8986027,GO:0033764,http://purl.obolibrary.org/obo/GO_0033764,"steroid dehydrogenase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor" +11.8986027,GO:0047661,http://purl.obolibrary.org/obo/GO_0047661,amino-acid racemase activity +11.8986027,GO:0050463,http://purl.obolibrary.org/obo/GO_0050463,nitrate reductase [NAD(P)H] activity +11.8986027,GO:0051002,http://purl.obolibrary.org/obo/GO_0051002,"ligase activity, forming nitrogen-metal bonds" +11.8986027,GO:0051003,http://purl.obolibrary.org/obo/GO_0051003,"ligase activity, forming nitrogen-metal bonds, forming coordination complexes" +11.8986027,GO:0098725,http://purl.obolibrary.org/obo/GO_0098725,symmetric cell division +11.8986027,GO:1902115,http://purl.obolibrary.org/obo/GO_1902115,regulation of organelle assembly +11.8986027,GO:1990542,http://purl.obolibrary.org/obo/GO_1990542,mitochondrial transmembrane transport +11.8986027,MONDO:0000255,http://purl.obolibrary.org/obo/MONDO_0000255,subcutaneous mycosis +11.8986027,MONDO:0001381,http://purl.obolibrary.org/obo/MONDO_0001381,bladder lymphoma +11.8986027,MONDO:0007294,http://purl.obolibrary.org/obo/MONDO_0007294,central core myopathy +11.8986027,MONDO:0009265,http://purl.obolibrary.org/obo/MONDO_0009265,Gaucher disease type I +11.8986027,MONDO:0017037,http://purl.obolibrary.org/obo/MONDO_0017037,secondary interstitial lung disease in childhood and adulthood associated with a metabolic disease +11.8986027,MONDO:0018164,http://purl.obolibrary.org/obo/MONDO_0018164,arterial thoracic outlet syndrome +11.8986027,MONDO:0020675,http://purl.obolibrary.org/obo/MONDO_0020675,ischemic bowel disease +11.8986027,MONDO:0021372,http://purl.obolibrary.org/obo/MONDO_0021372,neoplasm of temporal lobe +11.8986027,MONDO:0023297,http://purl.obolibrary.org/obo/MONDO_0023297,guttate psoriasis +11.8986027,MONDO:0024674,http://purl.obolibrary.org/obo/MONDO_0024674,Pancoast syndrome +11.8986027,MONDO:0041775,http://purl.obolibrary.org/obo/MONDO_0041775,intraoperative floppy iris syndrome +11.8986027,NCBITaxon:12107,http://purl.obolibrary.org/obo/NCBITaxon_12107,none +11.8986027,NCBITaxon:2560796,http://purl.obolibrary.org/obo/NCBITaxon_2560796,none +11.8986027,NCBITaxon:31741,http://purl.obolibrary.org/obo/NCBITaxon_31741,none +11.8986027,NCBITaxon:32367,http://purl.obolibrary.org/obo/NCBITaxon_32367,none +11.8986027,NCBITaxon:39442,http://purl.obolibrary.org/obo/NCBITaxon_39442,none +11.8986027,NCBITaxon:45270,http://purl.obolibrary.org/obo/NCBITaxon_45270,none +11.8986027,PR:000005096,http://purl.obolibrary.org/obo/PR_000005096,collagen and calcium-binding EGF domain-containing protein 1 +11.8986027,PR:000007043,http://purl.obolibrary.org/obo/PR_000007043,elongator complex protein 2 +11.8986027,PR:000007548,http://purl.obolibrary.org/obo/PR_000007548,fukutin +11.8986027,PR:000007720,http://purl.obolibrary.org/obo/PR_000007720,frizzled-3 +11.8986027,PR:000008243,http://purl.obolibrary.org/obo/PR_000008243,"glutamate receptor ionotropic, kainate 4" +11.8986027,PR:000008463,http://purl.obolibrary.org/obo/PR_000008463,HMG box-containing protein 1 +11.8986027,PR:000009678,http://purl.obolibrary.org/obo/PR_000009678,ceramide synthase 2 +11.8986027,PR:000012489,http://purl.obolibrary.org/obo/PR_000012489,"peptide deformylase, mitochondrial" +11.8986027,PR:000013226,http://purl.obolibrary.org/obo/PR_000013226,5'-AMP-activated protein kinase subunit gamma-2 +11.8986027,PR:000014397,http://purl.obolibrary.org/obo/PR_000014397,none +11.8986027,PR:000014689,http://purl.obolibrary.org/obo/PR_000014689,leukocyte elastase inhibitor +11.8986027,PR:000015492,http://purl.obolibrary.org/obo/PR_000015492,ATPase family protein 2 homolog +11.8986027,PR:000015817,http://purl.obolibrary.org/obo/PR_000015817,extracellular sulfatase Sulf-2 +11.8986027,PR:000016496,http://purl.obolibrary.org/obo/PR_000016496,activated CDC42 kinase 1 +11.8986027,PR:000016719,http://purl.obolibrary.org/obo/PR_000016719,tumor susceptibility gene 101 protein +11.8986027,PR:000022700,http://purl.obolibrary.org/obo/PR_000022700,none +11.8986027,PR:000022851,http://purl.obolibrary.org/obo/PR_000022851,inosine-5'-monophosphate dehydrogenase +11.8986027,PR:000023140,http://purl.obolibrary.org/obo/PR_000023140,none +11.8986027,PR:000023153,http://purl.obolibrary.org/obo/PR_000023153,none +11.8986027,PR:000027569,http://purl.obolibrary.org/obo/PR_000027569,none +11.8986027,PR:Q12060,http://purl.obolibrary.org/obo/PR_Q12060,none +11.8986027,PR:Q39214,http://purl.obolibrary.org/obo/PR_Q39214,none +11.8986027,PR:Q8VY10,http://purl.obolibrary.org/obo/PR_Q8VY10,none +11.8986027,PR:Q9FKN7,http://purl.obolibrary.org/obo/PR_Q9FKN7,none +11.8986027,UBERON:0002191,http://purl.obolibrary.org/obo/UBERON_0002191,subiculum +11.8986027,UBERON:0002487,http://purl.obolibrary.org/obo/UBERON_0002487,tooth cavity +11.8986027,UBERON:0003579,http://purl.obolibrary.org/obo/UBERON_0003579,shoulder connective tissue +11.8986027,UBERON:0006777,http://purl.obolibrary.org/obo/UBERON_0006777,tectal plate +11.8986027,UBERON:0008345,http://purl.obolibrary.org/obo/UBERON_0008345,ileal epithelium +11.8986027,UBERON:0011321,http://purl.obolibrary.org/obo/UBERON_0011321,masseteric nerve +11.8986027,UBERON:2000475,http://purl.obolibrary.org/obo/UBERON_2000475,paraventricular organ +11.8986027,UBERON:4000163,http://purl.obolibrary.org/obo/UBERON_4000163,anal fin +11.9049925,CHEBI:24384,http://purl.obolibrary.org/obo/CHEBI_24384,glycogens +11.9049925,CHEBI:32695,http://purl.obolibrary.org/obo/CHEBI_32695,argininate +11.9049925,DRUGBANK:DB00651,http://purl.obolibrary.org/obo/DRUGBANK_DB00651,none +11.9049925,DRUGBANK:DB00872,http://purl.obolibrary.org/obo/DRUGBANK_DB00872,none +11.9049925,DRUGBANK:DB04370,http://purl.obolibrary.org/obo/DRUGBANK_DB04370,none +11.9049925,DRUGBANK:DB04957,http://purl.obolibrary.org/obo/DRUGBANK_DB04957,none +11.9049925,DRUGBANK:DB06558,http://purl.obolibrary.org/obo/DRUGBANK_DB06558,none +11.9049925,DRUGBANK:DB08639,http://purl.obolibrary.org/obo/DRUGBANK_DB08639,none +11.9049925,DRUGBANK:DB09080,http://purl.obolibrary.org/obo/DRUGBANK_DB09080,none +11.9049925,DRUGBANK:DB11302,http://purl.obolibrary.org/obo/DRUGBANK_DB11302,none +11.9049925,DRUGBANK:DB12789,http://purl.obolibrary.org/obo/DRUGBANK_DB12789,none +11.9049925,GO:0014902,http://purl.obolibrary.org/obo/GO_0014902,myotube differentiation +11.9049925,GO:0016418,http://purl.obolibrary.org/obo/GO_0016418,S-acetyltransferase activity +11.9049925,GO:0019089,http://purl.obolibrary.org/obo/GO_0019089,none +11.9049925,GO:0032350,http://purl.obolibrary.org/obo/GO_0032350,regulation of hormone metabolic process +11.9049925,GO:0032400,http://purl.obolibrary.org/obo/GO_0032400,melanosome localization +11.9049925,GO:0036361,http://purl.obolibrary.org/obo/GO_0036361,"racemase activity, acting on amino acids and derivatives" +11.9049925,GO:0042120,http://purl.obolibrary.org/obo/GO_0042120,alginic acid metabolic process +11.9049925,GO:0044007,http://purl.obolibrary.org/obo/GO_0044007,none +11.9049925,GO:0046030,http://purl.obolibrary.org/obo/GO_0046030,inositol trisphosphate phosphatase activity +11.9049925,GO:0048245,http://purl.obolibrary.org/obo/GO_0048245,eosinophil chemotaxis +11.9049925,GO:0051821,http://purl.obolibrary.org/obo/GO_0051821,none +11.9049925,GO:0061731,http://purl.obolibrary.org/obo/GO_0061731,ribonucleoside-diphosphate reductase activity +11.9049925,GO:0072507,http://purl.obolibrary.org/obo/GO_0072507,divalent inorganic cation homeostasis +11.9049925,GO:1990867,http://purl.obolibrary.org/obo/GO_1990867,response to gastrin +11.9049925,MONDO:0001308,http://purl.obolibrary.org/obo/MONDO_0001308,corneal deposit +11.9049925,MONDO:0003471,http://purl.obolibrary.org/obo/MONDO_0003471,Pediculus humanus capitis infestation +11.9049925,MONDO:0004293,http://purl.obolibrary.org/obo/MONDO_0004293,supraglottis squamous cell carcinoma +11.9049925,MONDO:0008450,http://purl.obolibrary.org/obo/MONDO_0008450,spinal arachnoiditis +11.9049925,MONDO:0016070,http://purl.obolibrary.org/obo/MONDO_0016070,hereditary gingival fibromatosis +11.9049925,MONDO:0016426,http://purl.obolibrary.org/obo/MONDO_0016426,fusariosis +11.9049925,MONDO:0016591,http://purl.obolibrary.org/obo/MONDO_0016591,sporadic adult-onset ataxia of unknown etiology +11.9049925,MONDO:0016592,http://purl.obolibrary.org/obo/MONDO_0016592,non-hereditary degenerative ataxia +11.9049925,MONDO:0018592,http://purl.obolibrary.org/obo/MONDO_0018592,cutaneous polyarteritis nodosa +11.9049925,MONDO:0019641,http://purl.obolibrary.org/obo/MONDO_0019641,pauci-immune glomerulonephritis +11.9049925,MONDO:0019725,http://purl.obolibrary.org/obo/MONDO_0019725,pediatric systemic lupus erythematosus +11.9049925,MONDO:0021501,http://purl.obolibrary.org/obo/MONDO_0021501,benign neoplasm of small intestine +11.9049925,MOP:0000575,http://purl.obolibrary.org/obo/MOP_0000575,none +11.9049925,NCBITaxon:1545897,http://purl.obolibrary.org/obo/NCBITaxon_1545897,none +11.9049925,NCBITaxon:7264,http://purl.obolibrary.org/obo/NCBITaxon_7264,none +11.9049925,PR:000001442,http://purl.obolibrary.org/obo/PR_000001442,blood group Rh(D) polypeptide +11.9049925,PR:000001489,http://purl.obolibrary.org/obo/PR_000001489,neuromedin-U receptor +11.9049925,PR:000004656,http://purl.obolibrary.org/obo/PR_000004656,basic leucine zipper transcriptional factor ATF-like 3 +11.9049925,PR:000006681,http://purl.obolibrary.org/obo/PR_000006681,dihydropyrimidinase-related protein 3 +11.9049925,PR:000007788,http://purl.obolibrary.org/obo/PR_000007788,growth arrest and DNA damage-inducible protein GADD45 beta +11.9049925,PR:000007836,http://purl.obolibrary.org/obo/PR_000007836,gigaxonin +11.9049925,PR:000007987,http://purl.obolibrary.org/obo/PR_000007987,PDZ domain-containing protein GIPC1 +11.9049925,PR:000012038,http://purl.obolibrary.org/obo/PR_000012038,alpha-1-acid glycoprotein 2 +11.9049925,PR:000012671,http://purl.obolibrary.org/obo/PR_000012671,paired mesoderm homeobox protein 2A +11.9049925,PR:000014662,http://purl.obolibrary.org/obo/PR_000014662,selenoprotein W +11.9049925,PR:000014699,http://purl.obolibrary.org/obo/PR_000014699,serpin B8 +11.9049925,PR:000014994,http://purl.obolibrary.org/obo/PR_000014994,solute carrier family 22 member 7 +11.9049925,PR:000016666,http://purl.obolibrary.org/obo/PR_000016666,E3 ubiquitin-protein ligase TRIM71 +11.9049925,PR:000031514,http://purl.obolibrary.org/obo/PR_000031514,UbiA prenyltransferase domain-containing protein 1 +11.9049925,PR:P10080,http://purl.obolibrary.org/obo/PR_P10080,none +11.9049925,PR:Q12234,http://purl.obolibrary.org/obo/PR_Q12234,none +11.9049925,SO:0000079,http://purl.obolibrary.org/obo/SO_0000079,dicistronic_transcript +11.9049925,SO:0001273,http://purl.obolibrary.org/obo/SO_0001273,modified_adenosine +11.9049925,UBERON:0001078,http://purl.obolibrary.org/obo/UBERON_0001078,pedicle of vertebra +11.9049925,UBERON:0003228,http://purl.obolibrary.org/obo/UBERON_0003228,supinator muscle +11.9049925,UBERON:0007777,http://purl.obolibrary.org/obo/UBERON_0007777,umbilical vein endothelium +11.9049925,UBERON:0012250,http://purl.obolibrary.org/obo/UBERON_0012250,cervix glandular epithelium +11.9049925,UBERON:0012252,http://purl.obolibrary.org/obo/UBERON_0012252,endocervical epithelium +11.9049925,UBERON:2000188,http://purl.obolibrary.org/obo/UBERON_2000188,corpus cerebelli +11.9114234,CHEBI:22323,http://purl.obolibrary.org/obo/CHEBI_22323,alkyl group +11.9114234,CHEBI:23824,http://purl.obolibrary.org/obo/CHEBI_23824,diol +11.9114234,CHEBI:35987,http://purl.obolibrary.org/obo/CHEBI_35987,diamino acid +11.9114234,CHEBI:36699,http://purl.obolibrary.org/obo/CHEBI_36699,corticosteroid hormone +11.9114234,CHEBI:70728,http://purl.obolibrary.org/obo/CHEBI_70728,actin polymerisation inhibitor +11.9114234,CL:0002615,http://purl.obolibrary.org/obo/CL_0002615,adipocyte of omentum tissue +11.9114234,DRUGBANK:DB01669,http://purl.obolibrary.org/obo/DRUGBANK_DB01669,none +11.9114234,DRUGBANK:DB09414,http://purl.obolibrary.org/obo/DRUGBANK_DB09414,none +11.9114234,DRUGBANK:DB14193,http://purl.obolibrary.org/obo/DRUGBANK_DB14193,none +11.9114234,DRUGBANK:DB16369,http://purl.obolibrary.org/obo/DRUGBANK_DB16369,none +11.9114234,GO:0000229,http://purl.obolibrary.org/obo/GO_0000229,cytoplasmic chromosome +11.9114234,GO:0002082,http://purl.obolibrary.org/obo/GO_0002082,regulation of oxidative phosphorylation +11.9114234,GO:0003830,http://purl.obolibrary.org/obo/GO_0003830,"beta-1,4-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity" +11.9114234,GO:0009384,http://purl.obolibrary.org/obo/GO_0009384,N-acylmannosamine kinase activity +11.9114234,GO:0010166,http://purl.obolibrary.org/obo/GO_0010166,wax metabolic process +11.9114234,GO:0030611,http://purl.obolibrary.org/obo/GO_0030611,arsenate reductase activity +11.9114234,GO:0031540,http://purl.obolibrary.org/obo/GO_0031540,regulation of anthocyanin biosynthetic process +11.9114234,GO:0034069,http://purl.obolibrary.org/obo/GO_0034069,aminoglycoside N-acetyltransferase activity +11.9114234,GO:0042750,http://purl.obolibrary.org/obo/GO_0042750,hibernation +11.9114234,GO:0045552,http://purl.obolibrary.org/obo/GO_0045552,dihydrokaempferol 4-reductase activity +11.9114234,GO:0051886,http://purl.obolibrary.org/obo/GO_0051886,negative regulation of timing of anagen +11.9114234,GO:1902065,http://purl.obolibrary.org/obo/GO_1902065,response to L-glutamate +11.9114234,HP:0000737,http://purl.obolibrary.org/obo/HP_0000737,Irritability +11.9114234,MONDO:0001074,http://purl.obolibrary.org/obo/MONDO_0001074,chronic tic disorder +11.9114234,MONDO:0001804,http://purl.obolibrary.org/obo/MONDO_0001804,anterior scleritis +11.9114234,MONDO:0006602,http://purl.obolibrary.org/obo/MONDO_0006602,porokeratosis +11.9114234,MONDO:0015268,http://purl.obolibrary.org/obo/MONDO_0015268,medullary sponge kidney +11.9114234,MONDO:0016239,http://purl.obolibrary.org/obo/MONDO_0016239,cystinosis +11.9114234,MONDO:0016787,http://purl.obolibrary.org/obo/MONDO_0016787,epithelioid trophoblastic tumor +11.9114234,MONDO:0017062,http://purl.obolibrary.org/obo/MONDO_0017062,spina bifida aperta +11.9114234,MONDO:0018856,http://purl.obolibrary.org/obo/MONDO_0018856,lichen amyloidosis +11.9114234,MONDO:0024500,http://purl.obolibrary.org/obo/MONDO_0024500,duodenal neuroendocrine neoplasm +11.9114234,NCBITaxon:1401444,http://purl.obolibrary.org/obo/NCBITaxon_1401444,none +11.9114234,PR:000001532,http://purl.obolibrary.org/obo/PR_000001532,G-protein coupled receptor 39 +11.9114234,PR:000001581,http://purl.obolibrary.org/obo/PR_000001581,follitropin receptor +11.9114234,PR:000001882,http://purl.obolibrary.org/obo/PR_000001882,lysosome-associated membrane glycoprotein 3 +11.9114234,PR:000002057,http://purl.obolibrary.org/obo/PR_000002057,inward rectifier potassium channel 4 +11.9114234,PR:000003828,http://purl.obolibrary.org/obo/PR_000003828,advanced glycosylation end product-specific receptor +11.9114234,PR:000004245,http://purl.obolibrary.org/obo/PR_000004245,Rho guanine nucleotide exchange factor 1 +11.9114234,PR:000004431,http://purl.obolibrary.org/obo/PR_000004431,protein atonal homolog 7 +11.9114234,PR:000004444,http://purl.obolibrary.org/obo/PR_000004444,sarcoplasmic/endoplasmic reticulum calcium ATPase 3 +11.9114234,PR:000004663,http://purl.obolibrary.org/obo/PR_000004663,Bardet-Biedl syndrome 1 protein +11.9114234,PR:000008189,http://purl.obolibrary.org/obo/PR_000008189,adhesion G-protein coupled receptor G1 +11.9114234,PR:000009213,http://purl.obolibrary.org/obo/PR_000009213,lysine-specific demethylase 4A +11.9114234,PR:000009407,http://purl.obolibrary.org/obo/PR_000009407,kallikrein-10 +11.9114234,PR:000011015,http://purl.obolibrary.org/obo/PR_000011015,next to BRCA1 gene 1 protein +11.9114234,PR:000013962,http://purl.obolibrary.org/obo/PR_000013962,regulator of G-protein signaling 7 +11.9114234,PR:000014253,http://purl.obolibrary.org/obo/PR_000014253,40S ribosomal protein S12 +11.9114234,PR:000015912,http://purl.obolibrary.org/obo/PR_000015912,synaptotagmin-like protein 1 +11.9114234,PR:000024121,http://purl.obolibrary.org/obo/PR_000024121,none +11.9114234,PR:000026243,http://purl.obolibrary.org/obo/PR_000026243,calcipressin-1 isoform 1 +11.9114234,PR:000029845,http://purl.obolibrary.org/obo/PR_000029845,fermitin family homolog 3 +11.9114234,PR:000033990,http://purl.obolibrary.org/obo/PR_000033990,none +11.9114234,PR:P07213,http://purl.obolibrary.org/obo/PR_P07213,none +11.9114234,PR:P36618,http://purl.obolibrary.org/obo/PR_P36618,none +11.9114234,PR:P53777,http://purl.obolibrary.org/obo/PR_P53777,none +11.9114234,PR:Q55AX2,http://purl.obolibrary.org/obo/PR_Q55AX2,none +11.9114234,PR:Q7TNY3,http://purl.obolibrary.org/obo/PR_Q7TNY3,none +11.9114234,SO:0001870,http://purl.obolibrary.org/obo/SO_0001870,enhancerRNA +11.9114234,UBERON:0002768,http://purl.obolibrary.org/obo/UBERON_0002768,vestibulospinal tract +11.9114234,UBERON:0004614,http://purl.obolibrary.org/obo/UBERON_0004614,mammalian cervical vertebra 5 +11.9178959,CHEBI:31345,http://purl.obolibrary.org/obo/CHEBI_31345,Calcium pantothenate +11.9178959,CHEBI:46883,http://purl.obolibrary.org/obo/CHEBI_46883,carboxy group +11.9178959,DRUGBANK:DB01837,http://purl.obolibrary.org/obo/DRUGBANK_DB01837,none +11.9178959,DRUGBANK:DB03615,http://purl.obolibrary.org/obo/DRUGBANK_DB03615,none +11.9178959,DRUGBANK:DB04938,http://purl.obolibrary.org/obo/DRUGBANK_DB04938,none +11.9178959,DRUGBANK:DB06670,http://purl.obolibrary.org/obo/DRUGBANK_DB06670,none +11.9178959,DRUGBANK:DB08801,http://purl.obolibrary.org/obo/DRUGBANK_DB08801,none +11.9178959,DRUGBANK:DB11552,http://purl.obolibrary.org/obo/DRUGBANK_DB11552,none +11.9178959,DRUGBANK:DB12249,http://purl.obolibrary.org/obo/DRUGBANK_DB12249,none +11.9178959,DRUGBANK:DB13878,http://purl.obolibrary.org/obo/DRUGBANK_DB13878,none +11.9178959,DRUGBANK:DB13879,http://purl.obolibrary.org/obo/DRUGBANK_DB13879,none +11.9178959,DRUGBANK:DB13916,http://purl.obolibrary.org/obo/DRUGBANK_DB13916,none +11.9178959,GO:0009065,http://purl.obolibrary.org/obo/GO_0009065,glutamine family amino acid catabolic process +11.9178959,GO:0016162,http://purl.obolibrary.org/obo/GO_0016162,"cellulose 1,4-beta-cellobiosidase activity" +11.9178959,GO:0034703,http://purl.obolibrary.org/obo/GO_0034703,cation channel complex +11.9178959,GO:0043574,http://purl.obolibrary.org/obo/GO_0043574,peroxisomal transport +11.9178959,GO:0051345,http://purl.obolibrary.org/obo/GO_0051345,positive regulation of hydrolase activity +11.9178959,GO:1903320,http://purl.obolibrary.org/obo/GO_1903320,regulation of protein modification by small protein conjugation or removal +11.9178959,HP:0030724,http://purl.obolibrary.org/obo/HP_0030724,Central nervous system cyst +11.9178959,MONDO:0002746,http://purl.obolibrary.org/obo/MONDO_0002746,fallopian tube adenocarcinoma +11.9178959,MONDO:0002804,http://purl.obolibrary.org/obo/MONDO_0002804,apocrine adenoma +11.9178959,MONDO:0003103,http://purl.obolibrary.org/obo/MONDO_0003103,nerve root neoplasm +11.9178959,MONDO:0006328,http://purl.obolibrary.org/obo/MONDO_0006328,odontogenic cyst +11.9178959,MONDO:0007906,http://purl.obolibrary.org/obo/MONDO_0007906,"familial partial lipodystrophy, Dunnigan type" +11.9178959,MONDO:0008371,http://purl.obolibrary.org/obo/MONDO_0008371,Dowling-Degos disease +11.9178959,MONDO:0008471,http://purl.obolibrary.org/obo/MONDO_0008471,spondyloepiphyseal dysplasia congenita +11.9178959,MONDO:0015524,http://purl.obolibrary.org/obo/MONDO_0015524,hyperplastic polyposis syndrome +11.9178959,MONDO:0018193,http://purl.obolibrary.org/obo/MONDO_0018193,testicular teratoma +11.9178959,MOP:0005162,http://purl.obolibrary.org/obo/MOP_0005162,none +11.9178959,NCBITaxon:33745,http://purl.obolibrary.org/obo/NCBITaxon_33745,none +11.9178959,PR:000000796,http://purl.obolibrary.org/obo/PR_000000796,voltage-gated potassium channel KCNH7 +11.9178959,PR:000005278,http://purl.obolibrary.org/obo/PR_000005278,cyclin-dependent kinase 4 inhibitor C +11.9178959,PR:000005425,http://purl.obolibrary.org/obo/PR_000005425,acidic mammalian chitinase +11.9178959,PR:000005669,http://purl.obolibrary.org/obo/PR_000005669,contactin-4 +11.9178959,PR:000012762,http://purl.obolibrary.org/obo/PR_000012762,piwi-like protein 1 +11.9178959,PR:000013283,http://purl.obolibrary.org/obo/PR_000013283,U4/U6 small nuclear ribonucleoprotein Prp4 +11.9178959,PR:000013385,http://purl.obolibrary.org/obo/PR_000013385,26S proteasome non-ATPase regulatory subunit 10 +11.9178959,PR:000015087,http://purl.obolibrary.org/obo/PR_000015087,sodium-dependent phosphate transport protein 2B +11.9178959,PR:000016379,http://purl.obolibrary.org/obo/PR_000016379,tolloid-like protein 1 +11.9178959,PR:000017295,http://purl.obolibrary.org/obo/PR_000017295,von Hippel-Lindau-like protein +11.9178959,PR:000017344,http://purl.obolibrary.org/obo/PR_000017344,vacuolar protein sorting-associated protein 52 +11.9178959,PR:000017441,http://purl.obolibrary.org/obo/PR_000017441,protein Wnt-2b +11.9178959,PR:000022432,http://purl.obolibrary.org/obo/PR_000022432,none +11.9178959,PR:000022673,http://purl.obolibrary.org/obo/PR_000022673,none +11.9178959,PR:000028875,http://purl.obolibrary.org/obo/PR_000028875,none +11.9178959,PR:000029230,http://purl.obolibrary.org/obo/PR_000029230,none +11.9178959,PR:P32831,http://purl.obolibrary.org/obo/PR_P32831,none +11.9178959,PR:P32836,http://purl.obolibrary.org/obo/PR_P32836,none +11.9178959,PR:P40910,http://purl.obolibrary.org/obo/PR_P40910,none +11.9178959,PR:Q22037,http://purl.obolibrary.org/obo/PR_Q22037,none +11.9178959,PR:Q54XF7,http://purl.obolibrary.org/obo/PR_Q54XF7,none +11.9178959,PR:Q8CH84,http://purl.obolibrary.org/obo/PR_Q8CH84,none +11.9178959,SO:0000880,http://purl.obolibrary.org/obo/SO_0000880,polycistronic +11.9178959,UBERON:0000976,http://purl.obolibrary.org/obo/UBERON_0000976,humerus +11.9178959,UBERON:0001396,http://purl.obolibrary.org/obo/UBERON_0001396,lateral thoracic artery +11.9178959,UBERON:0003425,http://purl.obolibrary.org/obo/UBERON_0003425,renal lymph node +11.9178959,UBERON:0003680,http://purl.obolibrary.org/obo/UBERON_0003680,posterior cruciate ligament of knee joint +11.9178959,UBERON:0004240,http://purl.obolibrary.org/obo/UBERON_0004240,gall bladder smooth muscle +11.9178959,UBERON:0007146,http://purl.obolibrary.org/obo/UBERON_0007146,posterior spinal artery +11.9178959,UBERON:0011767,http://purl.obolibrary.org/obo/UBERON_0011767,right recurrent laryngeal nerve +11.9178959,UBERON:0015053,http://purl.obolibrary.org/obo/UBERON_0015053,humerus endochondral element +11.9244105,CHEBI:17256,http://purl.obolibrary.org/obo/CHEBI_17256,2'-deoxyadenosine +11.9244105,CHEBI:176839,http://purl.obolibrary.org/obo/CHEBI_176839,vitamin B3 +11.9244105,CHEBI:23100,http://purl.obolibrary.org/obo/CHEBI_23100,chitin synthesis inhibitor +11.9244105,CL:0002127,http://purl.obolibrary.org/obo/CL_0002127,innate effector T cell +11.9244105,DRUGBANK:DB03469,http://purl.obolibrary.org/obo/DRUGBANK_DB03469,none +11.9244105,DRUGBANK:DB04952,http://purl.obolibrary.org/obo/DRUGBANK_DB04952,none +11.9244105,DRUGBANK:DB06244,http://purl.obolibrary.org/obo/DRUGBANK_DB06244,none +11.9244105,DRUGBANK:DB11748,http://purl.obolibrary.org/obo/DRUGBANK_DB11748,none +11.9244105,DRUGBANK:DB11829,http://purl.obolibrary.org/obo/DRUGBANK_DB11829,none +11.9244105,DRUGBANK:DB12332,http://purl.obolibrary.org/obo/DRUGBANK_DB12332,none +11.9244105,DRUGBANK:DB12730,http://purl.obolibrary.org/obo/DRUGBANK_DB12730,none +11.9244105,GO:0000310,http://purl.obolibrary.org/obo/GO_0000310,xanthine phosphoribosyltransferase activity +11.9244105,GO:0001819,http://purl.obolibrary.org/obo/GO_0001819,positive regulation of cytokine production +11.9244105,GO:0005913,http://purl.obolibrary.org/obo/GO_0005913,none +11.9244105,GO:0006740,http://purl.obolibrary.org/obo/GO_0006740,NADPH regeneration +11.9244105,GO:0008292,http://purl.obolibrary.org/obo/GO_0008292,acetylcholine biosynthetic process +11.9244105,GO:0016851,http://purl.obolibrary.org/obo/GO_0016851,magnesium chelatase activity +11.9244105,GO:0031537,http://purl.obolibrary.org/obo/GO_0031537,regulation of anthocyanin metabolic process +11.9244105,GO:0034404,http://purl.obolibrary.org/obo/GO_0034404,nucleobase-containing small molecule biosynthetic process +11.9244105,GO:0044752,http://purl.obolibrary.org/obo/GO_0044752,response to human chorionic gonadotropin +11.9244105,GO:0048806,http://purl.obolibrary.org/obo/GO_0048806,genitalia development +11.9244105,GO:0051593,http://purl.obolibrary.org/obo/GO_0051593,response to folic acid +11.9244105,GO:0060148,http://purl.obolibrary.org/obo/GO_0060148,positive regulation of posttranscriptional gene silencing +11.9244105,GO:0072647,http://purl.obolibrary.org/obo/GO_0072647,interferon-epsilon production +11.9244105,GO:0090287,http://purl.obolibrary.org/obo/GO_0090287,regulation of cellular response to growth factor stimulus +11.9244105,GO:1904936,http://purl.obolibrary.org/obo/GO_1904936,interneuron migration +11.9244105,HP:0032535,http://purl.obolibrary.org/obo/HP_0032535,Cervical (neck) +11.9244105,MONDO:0002612,http://purl.obolibrary.org/obo/MONDO_0002612,frontal lobe epilepsy +11.9244105,MONDO:0003414,http://purl.obolibrary.org/obo/MONDO_0003414,skin pilomatrix carcinoma +11.9244105,MONDO:0003531,http://purl.obolibrary.org/obo/MONDO_0003531,papillary eccrine carcinoma +11.9244105,MONDO:0005539,http://purl.obolibrary.org/obo/MONDO_0005539,small bowel Crohn disease +11.9244105,MONDO:0006182,http://purl.obolibrary.org/obo/MONDO_0006182,digestive system mixed adenoneuroendocrine carcinoma +11.9244105,MONDO:0006286,http://purl.obolibrary.org/obo/MONDO_0006286,major salivary gland mucoepidermoid carcinoma +11.9244105,MONDO:0006374,http://purl.obolibrary.org/obo/MONDO_0006374,placental choriocarcinoma +11.9244105,MONDO:0006877,http://purl.obolibrary.org/obo/MONDO_0006877,oophoritis +11.9244105,MONDO:0010831,http://purl.obolibrary.org/obo/MONDO_0010831,familial caudal dysgenesis +11.9244105,MONDO:0012579,http://purl.obolibrary.org/obo/MONDO_0012579,autoimmune pulmonary alveolar proteinosis +11.9244105,MONDO:0015412,http://purl.obolibrary.org/obo/MONDO_0015412,median facial cleft +11.9244105,NCBITaxon:33355,http://purl.obolibrary.org/obo/NCBITaxon_33355,none +11.9244105,PR:000001458,http://purl.obolibrary.org/obo/PR_000001458,glutathione hydrolase 1 proenzyme +11.9244105,PR:000001574,http://purl.obolibrary.org/obo/PR_000001574,P2Y purinoceptor 6 +11.9244105,PR:000001979,http://purl.obolibrary.org/obo/PR_000001979,ATP-sensitive inward rectifier potassium channel 10 +11.9244105,PR:000004242,http://purl.obolibrary.org/obo/PR_000004242,Rho GDP-dissociation inhibitor 1 +11.9244105,PR:000006532,http://purl.obolibrary.org/obo/PR_000006532,homeobox protein DLX-6 +11.9244105,PR:000006910,http://purl.obolibrary.org/obo/PR_000006910,elongation factor 2 kinase +11.9244105,PR:000008499,http://purl.obolibrary.org/obo/PR_000008499,heme-binding protein 1 +11.9244105,PR:000010046,http://purl.obolibrary.org/obo/PR_000010046,repressor of RNA polymerase III transcription MAF1 +11.9244105,PR:000012592,http://purl.obolibrary.org/obo/PR_000012592,phosphoglycerate mutase 1 +11.9244105,PR:000013370,http://purl.obolibrary.org/obo/PR_000013370,proteasome subunit beta type-10 +11.9244105,PR:000013950,http://purl.obolibrary.org/obo/PR_000013950,regulator of G-protein signaling 16 +11.9244105,PR:000014116,http://purl.obolibrary.org/obo/PR_000014116,E3 ubiquitin-protein ligase BRE1A +11.9244105,PR:000015543,http://purl.obolibrary.org/obo/PR_000015543,Kunitz-type protease inhibitor 2 +11.9244105,PR:000017628,http://purl.obolibrary.org/obo/PR_000017628,zinc finger homeobox protein 3 +11.9244105,PR:000022109,http://purl.obolibrary.org/obo/PR_000022109,none +11.9244105,PR:000022774,http://purl.obolibrary.org/obo/PR_000022774,none +11.9244105,PR:000024182,http://purl.obolibrary.org/obo/PR_000024182,none +11.9244105,PR:000031824,http://purl.obolibrary.org/obo/PR_000031824,probable serine carboxypeptidase CPVL +11.9244105,PR:000039818,http://purl.obolibrary.org/obo/PR_000039818,cell cycle and apoptosis regulator protein 2 +11.9244105,PR:O82291,http://purl.obolibrary.org/obo/PR_O82291,none +11.9244105,SO:0005854,http://purl.obolibrary.org/obo/SO_0005854,gene_cassette_array +11.9244105,UBERON:0002055,http://purl.obolibrary.org/obo/UBERON_0002055,zona reticularis of adrenal gland +11.9309679,CHEBI:16027,http://purl.obolibrary.org/obo/CHEBI_16027,adenosine 5'-monophosphate +11.9309679,CHEBI:17319,http://purl.obolibrary.org/obo/CHEBI_17319,5'-deoxyadenosine +11.9309679,CHEBI:23377,http://purl.obolibrary.org/obo/CHEBI_23377,copper molecular entity +11.9309679,CHEBI:36988,http://purl.obolibrary.org/obo/CHEBI_36988,5'-deoxyribonucleoside +11.9309679,CHEBI:62885,http://purl.obolibrary.org/obo/CHEBI_62885,adenosine residue +11.9309679,CL:0000642,http://purl.obolibrary.org/obo/CL_0000642,folliculostellate cell +11.9309679,CL:0000814,http://purl.obolibrary.org/obo/CL_0000814,mature NK T cell +11.9309679,CL:0001008,http://purl.obolibrary.org/obo/CL_0001008,Kit and Sca1-positive hematopoietic stem cell +11.9309679,DRUGBANK:DB00449,http://purl.obolibrary.org/obo/DRUGBANK_DB00449,none +11.9309679,DRUGBANK:DB00823,http://purl.obolibrary.org/obo/DRUGBANK_DB00823,none +11.9309679,DRUGBANK:DB01148,http://purl.obolibrary.org/obo/DRUGBANK_DB01148,none +11.9309679,DRUGBANK:DB05384,http://purl.obolibrary.org/obo/DRUGBANK_DB05384,none +11.9309679,DRUGBANK:DB08652,http://purl.obolibrary.org/obo/DRUGBANK_DB08652,none +11.9309679,DRUGBANK:DB10918,http://purl.obolibrary.org/obo/DRUGBANK_DB10918,none +11.9309679,DRUGBANK:DB11185,http://purl.obolibrary.org/obo/DRUGBANK_DB11185,none +11.9309679,DRUGBANK:DB12001,http://purl.obolibrary.org/obo/DRUGBANK_DB12001,none +11.9309679,DRUGBANK:DB13689,http://purl.obolibrary.org/obo/DRUGBANK_DB13689,none +11.9309679,DRUGBANK:DB14162,http://purl.obolibrary.org/obo/DRUGBANK_DB14162,none +11.9309679,DRUGBANK:DB14370,http://purl.obolibrary.org/obo/DRUGBANK_DB14370,none +11.9309679,GO:0004170,http://purl.obolibrary.org/obo/GO_0004170,dUTP diphosphatase activity +11.9309679,GO:0004622,http://purl.obolibrary.org/obo/GO_0004622,lysophospholipase activity +11.9309679,GO:0008488,http://purl.obolibrary.org/obo/GO_0008488,gamma-glutamyl carboxylase activity +11.9309679,GO:0008923,http://purl.obolibrary.org/obo/GO_0008923,lysine decarboxylase activity +11.9309679,GO:0016286,http://purl.obolibrary.org/obo/GO_0016286,small conductance calcium-activated potassium channel activity +11.9309679,GO:0017081,http://purl.obolibrary.org/obo/GO_0017081,chloride channel regulator activity +11.9309679,GO:0030597,http://purl.obolibrary.org/obo/GO_0030597,RNA glycosylase activity +11.9309679,GO:0030598,http://purl.obolibrary.org/obo/GO_0030598,rRNA N-glycosylase activity +11.9309679,GO:0032428,http://purl.obolibrary.org/obo/GO_0032428,beta-N-acetylgalactosaminidase activity +11.9309679,GO:0051955,http://purl.obolibrary.org/obo/GO_0051955,regulation of amino acid transport +11.9309679,GO:0071071,http://purl.obolibrary.org/obo/GO_0071071,regulation of phospholipid biosynthetic process +11.9309679,GO:1900019,http://purl.obolibrary.org/obo/GO_1900019,regulation of protein kinase C activity +11.9309679,GO:1900370,http://purl.obolibrary.org/obo/GO_1900370,positive regulation of RNA interference +11.9309679,MONDO:0001116,http://purl.obolibrary.org/obo/MONDO_0001116,mesenteric lymphadenitis +11.9309679,MONDO:0002253,http://purl.obolibrary.org/obo/MONDO_0002253,spondylosis +11.9309679,MONDO:0002585,http://purl.obolibrary.org/obo/MONDO_0002585,"breast fibrocystic change, proliferative type" +11.9309679,MONDO:0005526,http://purl.obolibrary.org/obo/MONDO_0005526,tetanus +11.9309679,MONDO:0008076,http://purl.obolibrary.org/obo/MONDO_0008076,amyotrophic neuralgia +11.9309679,MONDO:0010121,http://purl.obolibrary.org/obo/MONDO_0010121,thrombocytopenia-absent radius syndrome +11.9309679,MONDO:0016484,http://purl.obolibrary.org/obo/MONDO_0016484,Usher syndrome type 2 +11.9309679,MONDO:0018639,http://purl.obolibrary.org/obo/MONDO_0018639,caudal regression-sirenomelia spectrum +11.9309679,MONDO:0019368,http://purl.obolibrary.org/obo/MONDO_0019368,florid cemento-osseous dysplasia +11.9309679,MONDO:0020525,http://purl.obolibrary.org/obo/MONDO_0020525,transient neonatal diabetes mellitus +11.9309679,MONDO:0040566,http://purl.obolibrary.org/obo/MONDO_0040566,inherited glutathione metabolism disease +11.9309679,NCBITaxon:3646,http://purl.obolibrary.org/obo/NCBITaxon_3646,none +11.9309679,NCBITaxon:45617,http://purl.obolibrary.org/obo/NCBITaxon_45617,none +11.9309679,PR:000003166,http://purl.obolibrary.org/obo/PR_000003166,"spectrin beta chain, non-erythrocytic 1" +11.9309679,PR:000003550,http://purl.obolibrary.org/obo/PR_000003550,ATP-binding cassette sub-family B member 5 +11.9309679,PR:000004679,http://purl.obolibrary.org/obo/PR_000004679,pre-mRNA-splicing factor SPF27 +11.9309679,PR:000004802,http://purl.obolibrary.org/obo/PR_000004802,BRCA1-associated protein +11.9309679,PR:000008041,http://purl.obolibrary.org/obo/PR_000008041,glucagon-like peptide 2 receptor +11.9309679,PR:000009650,http://purl.obolibrary.org/obo/PR_000009650,laminin subunit alpha-1 +11.9309679,PR:000010573,http://purl.obolibrary.org/obo/PR_000010573,"39S ribosomal protein L11, mitochondrial" +11.9309679,PR:000011167,http://purl.obolibrary.org/obo/PR_000011167,"nuclear factor of activated T-cells, cytoplasmic 4" +11.9309679,PR:000011596,http://purl.obolibrary.org/obo/PR_000011596,ornithine decarboxylase +11.9309679,PR:000012829,http://purl.obolibrary.org/obo/PR_000012829,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-2" +11.9309679,PR:000014142,http://purl.obolibrary.org/obo/PR_000014142,mRNA-capping enzyme +11.9309679,PR:000014794,http://purl.obolibrary.org/obo/PR_000014794,serine/threonine-protein kinase Sgk3 +11.9309679,PR:000014828,http://purl.obolibrary.org/obo/PR_000014828,SH3 domain-containing kinase-binding protein 1 +11.9309679,PR:000015206,http://purl.obolibrary.org/obo/PR_000015206,"b(0,+)-type amino acid transporter 1" +11.9309679,PR:000015227,http://purl.obolibrary.org/obo/PR_000015227,solute carrier organic anion transporter family member 2B1 +11.9309679,PR:000016154,http://purl.obolibrary.org/obo/PR_000016154,T-box transcription factor TBX6 +11.9309679,PR:000016339,http://purl.obolibrary.org/obo/PR_000016339,T-cell immunoglobulin and mucin domain-containing protein 4 +11.9309679,PR:000017553,http://purl.obolibrary.org/obo/PR_000017553,transcriptional repressor protein YY1 +11.9309679,PR:000022682,http://purl.obolibrary.org/obo/PR_000022682,none +11.9309679,PR:000029440,http://purl.obolibrary.org/obo/PR_000029440,EF-hand domain-containing protein D1 +11.9309679,PR:000029541,http://purl.obolibrary.org/obo/PR_000029541,E3 ubiquitin-protein ligase HERC2 +11.9309679,PR:000035858,http://purl.obolibrary.org/obo/PR_000035858,none +11.9309679,PR:000036003,http://purl.obolibrary.org/obo/PR_000036003,LY96:TLR4 complex +11.9309679,PR:P94111,http://purl.obolibrary.org/obo/PR_P94111,none +11.9309679,PR:Q6NV25,http://purl.obolibrary.org/obo/PR_Q6NV25,none +11.9309679,PR:Q9FMH6,http://purl.obolibrary.org/obo/PR_Q9FMH6,none +11.9309679,SO:0000261,http://purl.obolibrary.org/obo/SO_0000261,glycyl_tRNA +11.9309679,UBERON:0001442,http://purl.obolibrary.org/obo/UBERON_0001442,skeleton of manus +11.9309679,UBERON:0001523,http://purl.obolibrary.org/obo/UBERON_0001523,flexor digitorum profundus +11.9309679,UBERON:0002363,http://purl.obolibrary.org/obo/UBERON_0002363,dura mater +11.9309679,UBERON:0004805,http://purl.obolibrary.org/obo/UBERON_0004805,seminal vesicle epithelium +11.9309679,UBERON:0004869,http://purl.obolibrary.org/obo/UBERON_0004869,parietal organ +11.9309679,UBERON:0012063,http://purl.obolibrary.org/obo/UBERON_0012063,lobar bronchus of right lung middle lobe +11.9309679,UBERON:0018231,http://purl.obolibrary.org/obo/UBERON_0018231,labyrinthine artery +11.9309679,UBERON:0019250,http://purl.obolibrary.org/obo/UBERON_0019250,4-8 cell stage embryo +11.9309679,UBERON:2000526,http://purl.obolibrary.org/obo/UBERON_2000526,intermuscular bone +11.9375686,CHEBI:16335,http://purl.obolibrary.org/obo/CHEBI_16335,adenosine +11.9375686,CHEBI:16708,http://purl.obolibrary.org/obo/CHEBI_16708,adenine +11.9375686,CHEBI:22263,http://purl.obolibrary.org/obo/CHEBI_22263,5'-adenylyl group +11.9375686,CHEBI:24646,http://purl.obolibrary.org/obo/CHEBI_24646,hydroquinones +11.9375686,CHEBI:30756,http://purl.obolibrary.org/obo/CHEBI_30756,adenin-9-yl group +11.9375686,CHEBI:33505,http://purl.obolibrary.org/obo/CHEBI_33505,adenosyl group +11.9375686,CHEBI:50306,http://purl.obolibrary.org/obo/CHEBI_50306,adenosine 5'-monophosphate residue +11.9375686,CHEBI:50323,http://purl.obolibrary.org/obo/CHEBI_50323,2'-deoxyadenosine 5'-monophosphate residue +11.9375686,CHEBI:53098,http://purl.obolibrary.org/obo/CHEBI_53098,AMP 5'-end residue +11.9375686,CHEBI:53099,http://purl.obolibrary.org/obo/CHEBI_53099,dAMP 5'-end residue +11.9375686,CHEBI:53112,http://purl.obolibrary.org/obo/CHEBI_53112,AMP 3'-end residue +11.9375686,CHEBI:53113,http://purl.obolibrary.org/obo/CHEBI_53113,dAMP 3'-end residue +11.9375686,CL:0000485,http://purl.obolibrary.org/obo/CL_0000485,mucosal type mast cell +11.9375686,DRUGBANK:DB00839,http://purl.obolibrary.org/obo/DRUGBANK_DB00839,none +11.9375686,DRUGBANK:DB04147,http://purl.obolibrary.org/obo/DRUGBANK_DB04147,none +11.9375686,DRUGBANK:DB04879,http://purl.obolibrary.org/obo/DRUGBANK_DB04879,none +11.9375686,DRUGBANK:DB09111,http://purl.obolibrary.org/obo/DRUGBANK_DB09111,none +11.9375686,DRUGBANK:DB09508,http://purl.obolibrary.org/obo/DRUGBANK_DB09508,none +11.9375686,DRUGBANK:DB10708,http://purl.obolibrary.org/obo/DRUGBANK_DB10708,none +11.9375686,DRUGBANK:DB13985,http://purl.obolibrary.org/obo/DRUGBANK_DB13985,none +11.9375686,DRUGBANK:DB14002,http://purl.obolibrary.org/obo/DRUGBANK_DB14002,none +11.9375686,DRUGBANK:DB15210,http://purl.obolibrary.org/obo/DRUGBANK_DB15210,none +11.9375686,DRUGBANK:DB15614,http://purl.obolibrary.org/obo/DRUGBANK_DB15614,none +11.9375686,DRUGBANK:DB15838,http://purl.obolibrary.org/obo/DRUGBANK_DB15838,none +11.9375686,DRUGBANK:DB16021,http://purl.obolibrary.org/obo/DRUGBANK_DB16021,none +11.9375686,GO:0001694,http://purl.obolibrary.org/obo/GO_0001694,histamine biosynthetic process +11.9375686,GO:0002703,http://purl.obolibrary.org/obo/GO_0002703,regulation of leukocyte mediated immunity +11.9375686,GO:0004921,http://purl.obolibrary.org/obo/GO_0004921,interleukin-11 receptor activity +11.9375686,GO:0008657,http://purl.obolibrary.org/obo/GO_0008657,"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) inhibitor activity" +11.9375686,GO:0016072,http://purl.obolibrary.org/obo/GO_0016072,rRNA metabolic process +11.9375686,GO:0019853,http://purl.obolibrary.org/obo/GO_0019853,L-ascorbic acid biosynthetic process +11.9375686,GO:0030014,http://purl.obolibrary.org/obo/GO_0030014,CCR4-NOT complex +11.9375686,GO:0046327,http://purl.obolibrary.org/obo/GO_0046327,glycerol biosynthetic process from pyruvate +11.9375686,GO:0055076,http://purl.obolibrary.org/obo/GO_0055076,transition metal ion homeostasis +11.9375686,GO:0071838,http://purl.obolibrary.org/obo/GO_0071838,cell proliferation in bone marrow +11.9375686,GO:0072586,http://purl.obolibrary.org/obo/GO_0072586,"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) regulator activity" +11.9375686,GO:1902518,http://purl.obolibrary.org/obo/GO_1902518,response to cyclophosphamide +11.9375686,MONDO:0005950,http://purl.obolibrary.org/obo/MONDO_0005950,Salmonella gastroenteritis +11.9375686,MONDO:0009475,http://purl.obolibrary.org/obo/MONDO_0009475,isovaleric acidemia +11.9375686,MONDO:0009691,http://purl.obolibrary.org/obo/MONDO_0009691,mycosis fungoides +11.9375686,MONDO:0012809,http://purl.obolibrary.org/obo/MONDO_0012809,"histiocytoma, Angiomatoid fibrous" +11.9375686,MONDO:0015063,http://purl.obolibrary.org/obo/MONDO_0015063,"duodenal neuroendocrine tumor, well differentiated, low or intermediate grade" +11.9375686,MONDO:0018852,http://purl.obolibrary.org/obo/MONDO_0018852,achromatopsia +11.9375686,MONDO:0019228,http://purl.obolibrary.org/obo/MONDO_0019228,inborn disorder of histidine metabolism +11.9375686,MONDO:0019740,http://purl.obolibrary.org/obo/MONDO_0019740,acquired thrombotic thrombocytopenic purpura +11.9375686,MONDO:0020105,http://purl.obolibrary.org/obo/MONDO_0020105,hemolytic anemia due to hexose monophosphate shunt and glutathione metabolism anomalies +11.9375686,MONDO:0021527,http://purl.obolibrary.org/obo/MONDO_0021527,benign neoplasm of meninges +11.9375686,MONDO:0021633,http://purl.obolibrary.org/obo/MONDO_0021633,cerebral astrocytoma +11.9375686,NCBITaxon:12331,http://purl.obolibrary.org/obo/NCBITaxon_12331,none +11.9375686,NCBITaxon:7387,http://purl.obolibrary.org/obo/NCBITaxon_7387,Oestridae +11.9375686,PR:000001196,http://purl.obolibrary.org/obo/PR_000001196,bombesin receptor subtype-3 +11.9375686,PR:000001421,http://purl.obolibrary.org/obo/PR_000001421,GPR6-like G-protein coupled receptor +11.9375686,PR:000003863,http://purl.obolibrary.org/obo/PR_000003863,alpha-hemoglobin-stabilizing protein +11.9375686,PR:000005505,http://purl.obolibrary.org/obo/PR_000005505,Cbp/p300-interacting transactivator 1 +11.9375686,PR:000006266,http://purl.obolibrary.org/obo/PR_000006266,dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit DAD1 +11.9375686,PR:000007609,http://purl.obolibrary.org/obo/PR_000007609,forkhead box protein D1 +11.9375686,PR:000007752,http://purl.obolibrary.org/obo/PR_000007752,lysosomal alpha-glucosidase +11.9375686,PR:000008771,http://purl.obolibrary.org/obo/PR_000008771,hydroxysteroid 11-beta-dehydrogenase 1-like protein +11.9375686,PR:000009310,http://purl.obolibrary.org/obo/PR_000009310,kinesin-like protein KIF2C +11.9375686,PR:000011398,http://purl.obolibrary.org/obo/PR_000011398,nuclear receptor subfamily 1 group I member 3 +11.9375686,PR:000014201,http://purl.obolibrary.org/obo/PR_000014201,60S ribosomal protein L22 +11.9375686,PR:000016093,http://purl.obolibrary.org/obo/PR_000016093,TBC1 domain family member 1 +11.9375686,PR:000016264,http://purl.obolibrary.org/obo/PR_000016264,transcription factor AP-2-beta +11.9375686,PR:000016288,http://purl.obolibrary.org/obo/PR_000016288,homeobox protein TGIF1 +11.9375686,PR:000016486,http://purl.obolibrary.org/obo/PR_000016486,tumor necrosis factor receptor superfamily member 6B +11.9375686,PR:000016672,http://purl.obolibrary.org/obo/PR_000016672,thyroid receptor-interacting protein 13 +11.9375686,PR:000017560,http://purl.obolibrary.org/obo/PR_000017560,Z-DNA-binding protein 1 +11.9375686,PR:000022086,http://purl.obolibrary.org/obo/PR_000022086,none +11.9375686,PR:000029152,http://purl.obolibrary.org/obo/PR_000029152,none +11.9375686,PR:000029225,http://purl.obolibrary.org/obo/PR_000029225,none +11.9375686,PR:000031112,http://purl.obolibrary.org/obo/PR_000031112,leucine zipper putative tumor suppressor 1 +11.9375686,PR:000031415,http://purl.obolibrary.org/obo/PR_000031415,MAU2 chromatid cohesion factor homolog +11.9375686,PR:000045383,http://purl.obolibrary.org/obo/PR_000045383,"protein kinase C, iota-like" +11.9375686,PR:A1YKT1,http://purl.obolibrary.org/obo/PR_A1YKT1,none +11.9375686,PR:P21576,http://purl.obolibrary.org/obo/PR_P21576,none +11.9375686,PR:P24004,http://purl.obolibrary.org/obo/PR_P24004,none +11.9375686,PR:P79742,http://purl.obolibrary.org/obo/PR_P79742,none +11.9375686,PR:Q03262,http://purl.obolibrary.org/obo/PR_Q03262,none +11.9375686,PR:Q22592,http://purl.obolibrary.org/obo/PR_Q22592,none +11.9375686,PR:Q63042,http://purl.obolibrary.org/obo/PR_Q63042,none +11.9375686,PR:Q9ZAH5,http://purl.obolibrary.org/obo/PR_Q9ZAH5,none +11.9375686,UBERON:0000457,http://purl.obolibrary.org/obo/UBERON_0000457,cavernous artery +11.9375686,UBERON:0005980,http://purl.obolibrary.org/obo/UBERON_0005980,pectinate muscle +11.9375686,UBERON:0006444,http://purl.obolibrary.org/obo/UBERON_0006444,annulus fibrosus +11.9442132,CHEBI:16199,http://purl.obolibrary.org/obo/CHEBI_16199,urea +11.9442132,CL:0000487,http://purl.obolibrary.org/obo/CL_0000487,oenocyte +11.9442132,DRUGBANK:DB09128,http://purl.obolibrary.org/obo/DRUGBANK_DB09128,none +11.9442132,DRUGBANK:DB10930,http://purl.obolibrary.org/obo/DRUGBANK_DB10930,none +11.9442132,DRUGBANK:DB11543,http://purl.obolibrary.org/obo/DRUGBANK_DB11543,none +11.9442132,DRUGBANK:DB12752,http://purl.obolibrary.org/obo/DRUGBANK_DB12752,none +11.9442132,GO:0001675,http://purl.obolibrary.org/obo/GO_0001675,acrosome assembly +11.9442132,GO:0006863,http://purl.obolibrary.org/obo/GO_0006863,purine nucleobase transport +11.9442132,GO:0009243,http://purl.obolibrary.org/obo/GO_0009243,O antigen biosynthetic process +11.9442132,GO:0030523,http://purl.obolibrary.org/obo/GO_0030523,dihydrolipoamide S-acyltransferase activity +11.9442132,GO:0043030,http://purl.obolibrary.org/obo/GO_0043030,regulation of macrophage activation +11.9442132,GO:0043114,http://purl.obolibrary.org/obo/GO_0043114,regulation of vascular permeability +11.9442132,GO:0046402,http://purl.obolibrary.org/obo/GO_0046402,O antigen metabolic process +11.9442132,GO:0070278,http://purl.obolibrary.org/obo/GO_0070278,extracellular matrix constituent secretion +11.9442132,HP:0010461,http://purl.obolibrary.org/obo/HP_0010461,Abnormality of the male genitalia +11.9442132,HP:0012234,http://purl.obolibrary.org/obo/HP_0012234,Agranulocytosis +11.9442132,MONDO:0001930,http://purl.obolibrary.org/obo/MONDO_0001930,acute cholangitis +11.9442132,MONDO:0002438,http://purl.obolibrary.org/obo/MONDO_0002438,acquired polycythemia +11.9442132,MONDO:0004738,http://purl.obolibrary.org/obo/MONDO_0004738,histidine metabolism disease +11.9442132,MONDO:0019517,http://purl.obolibrary.org/obo/MONDO_0019517,Waardenburg syndrome type 2 +11.9442132,NCBITaxon:11085,http://purl.obolibrary.org/obo/NCBITaxon_11085,none +11.9442132,NCBITaxon:11630,http://purl.obolibrary.org/obo/NCBITaxon_11630,none +11.9442132,PR:000000790,http://purl.obolibrary.org/obo/PR_000000790,voltage-gated potassium channel KCNH1 +11.9442132,PR:000003956,http://purl.obolibrary.org/obo/PR_000003956,Alstrom syndrome protein 1 +11.9442132,PR:000004202,http://purl.obolibrary.org/obo/PR_000004202,ADP-ribosylation factor 3 +11.9442132,PR:000004734,http://purl.obolibrary.org/obo/PR_000004734,phakinin +11.9442132,PR:000005832,http://purl.obolibrary.org/obo/PR_000005832,cleavage and polyadenylation specificity factor subunit 4 +11.9442132,PR:000005912,http://purl.obolibrary.org/obo/PR_000005912,beta-crystallin B2 +11.9442132,PR:000006491,http://purl.obolibrary.org/obo/PR_000006491,exosome complex exonuclease RRP44 +11.9442132,PR:000007039,http://purl.obolibrary.org/obo/PR_000007039,elongation of very long chain fatty acids protein 4 +11.9442132,PR:000008202,http://purl.obolibrary.org/obo/PR_000008202,COP9 signalosome complex subunit 1 +11.9442132,PR:000008999,http://purl.obolibrary.org/obo/PR_000008999,interleukin-22 receptor subunit alpha-1 +11.9442132,PR:000011479,http://purl.obolibrary.org/obo/PR_000011479,nucleobindin-1 +11.9442132,PR:000012889,http://purl.obolibrary.org/obo/PR_000012889,BPI fold-containing family A member 1 +11.9442132,PR:000013663,http://purl.obolibrary.org/obo/PR_000013663,Rac GTPase-activating protein 1 +11.9442132,PR:000014586,http://purl.obolibrary.org/obo/PR_000014586,protein transport protein Sec23A +11.9442132,PR:000014840,http://purl.obolibrary.org/obo/PR_000014840,26S proteasome complex subunit DSS1 +11.9442132,PR:000023032,http://purl.obolibrary.org/obo/PR_000023032,none +11.9442132,PR:000023411,http://purl.obolibrary.org/obo/PR_000023411,none +11.9442132,PR:000023962,http://purl.obolibrary.org/obo/PR_000023962,none +11.9442132,PR:000024073,http://purl.obolibrary.org/obo/PR_000024073,transketolase 2 +11.9442132,PR:P07361,http://purl.obolibrary.org/obo/PR_P07361,none +11.9442132,PR:P50615,http://purl.obolibrary.org/obo/PR_P50615,none +11.9442132,PR:Q9LY14,http://purl.obolibrary.org/obo/PR_Q9LY14,none +11.9442132,PR:Q9S7U9,http://purl.obolibrary.org/obo/PR_Q9S7U9,none +11.9442132,UBERON:0002252,http://purl.obolibrary.org/obo/UBERON_0002252,splenius +11.9442132,UBERON:0003523,http://purl.obolibrary.org/obo/UBERON_0003523,manus blood vessel +11.9442132,UBERON:0004732,http://purl.obolibrary.org/obo/UBERON_0004732,segmental subdivision of nervous system +11.9442132,UBERON:0006378,http://purl.obolibrary.org/obo/UBERON_0006378,strand of vibrissa hair +11.9442132,UBERON:0012181,http://purl.obolibrary.org/obo/UBERON_0012181,tonsil crypt +11.9509022,CHEBI:22918,http://purl.obolibrary.org/obo/CHEBI_22918,branched-chain amino acid +11.9509022,CHEBI:5699,http://purl.obolibrary.org/obo/CHEBI_5699,Hexadimethrine bromide +11.9509022,CL:0000589,http://purl.obolibrary.org/obo/CL_0000589,cochlear inner hair cell +11.9509022,DRUGBANK:DB02216,http://purl.obolibrary.org/obo/DRUGBANK_DB02216,none +11.9509022,DRUGBANK:DB05022,http://purl.obolibrary.org/obo/DRUGBANK_DB05022,none +11.9509022,DRUGBANK:DB11244,http://purl.obolibrary.org/obo/DRUGBANK_DB11244,none +11.9509022,DRUGBANK:DB11963,http://purl.obolibrary.org/obo/DRUGBANK_DB11963,none +11.9509022,DRUGBANK:DB12787,http://purl.obolibrary.org/obo/DRUGBANK_DB12787,none +11.9509022,DRUGBANK:DB12832,http://purl.obolibrary.org/obo/DRUGBANK_DB12832,none +11.9509022,DRUGBANK:DB13865,http://purl.obolibrary.org/obo/DRUGBANK_DB13865,none +11.9509022,DRUGBANK:DB14524,http://purl.obolibrary.org/obo/DRUGBANK_DB14524,none +11.9509022,GO:0004818,http://purl.obolibrary.org/obo/GO_0004818,glutamate-tRNA ligase activity +11.9509022,GO:0005986,http://purl.obolibrary.org/obo/GO_0005986,sucrose biosynthetic process +11.9509022,GO:0009556,http://purl.obolibrary.org/obo/GO_0009556,microsporogenesis +11.9509022,GO:0009687,http://purl.obolibrary.org/obo/GO_0009687,abscisic acid metabolic process +11.9509022,GO:0022027,http://purl.obolibrary.org/obo/GO_0022027,interkinetic nuclear migration +11.9509022,GO:0030119,http://purl.obolibrary.org/obo/GO_0030119,AP-type membrane coat adaptor complex +11.9509022,GO:0031910,http://purl.obolibrary.org/obo/GO_0031910,cytostome +11.9509022,GO:0043240,http://purl.obolibrary.org/obo/GO_0043240,Fanconi anaemia nuclear complex +11.9509022,MONDO:0000087,http://purl.obolibrary.org/obo/MONDO_0000087,polymicrogyria +11.9509022,MONDO:0001462,http://purl.obolibrary.org/obo/MONDO_0001462,descending colon cancer +11.9509022,MONDO:0003264,http://purl.obolibrary.org/obo/MONDO_0003264,basosquamous carcinoma +11.9509022,MONDO:0004344,http://purl.obolibrary.org/obo/MONDO_0004344,childhood malignant hemangiopericytoma +11.9509022,MONDO:0005349,http://purl.obolibrary.org/obo/MONDO_0005349,otosclerosis +11.9509022,MONDO:0009352,http://purl.obolibrary.org/obo/MONDO_0009352,classic homocystinuria +11.9509022,MONDO:0012110,http://purl.obolibrary.org/obo/MONDO_0012110,growth delay due to insulin-like growth factor type 1 deficiency +11.9509022,MONDO:0015089,http://purl.obolibrary.org/obo/MONDO_0015089,autosomal recessive complex spastic paraplegia +11.9509022,MONDO:0015303,http://purl.obolibrary.org/obo/MONDO_0015303,macular amyloidosis +11.9509022,MONDO:0019227,http://purl.obolibrary.org/obo/MONDO_0019227,inborn disorder of glycerol metabolism +11.9509022,MONDO:0037807,http://purl.obolibrary.org/obo/MONDO_0037807,glycerol metabolism disease +11.9509022,NCBITaxon:59301,http://purl.obolibrary.org/obo/NCBITaxon_59301,none +11.9509022,PR:000000041,http://purl.obolibrary.org/obo/PR_000000041,DNA-binding protein inhibitor ID-3 +11.9509022,PR:000001100,http://purl.obolibrary.org/obo/PR_000001100,5-hydroxytryptamine receptor 4 +11.9509022,PR:000001129,http://purl.obolibrary.org/obo/PR_000001129,chemokine receptor-like protein CMKLR1 +11.9509022,PR:000001371,http://purl.obolibrary.org/obo/PR_000001371,interleukin-13 receptor subunit alpha-1 +11.9509022,PR:000001608,http://purl.obolibrary.org/obo/PR_000001608,mas-related G-protein coupled receptor X +11.9509022,PR:000001682,http://purl.obolibrary.org/obo/PR_000001682,vasopressin V1b receptor +11.9509022,PR:000005875,http://purl.obolibrary.org/obo/PR_000005875,cysteine-rich protein 3 +11.9509022,PR:000007031,http://purl.obolibrary.org/obo/PR_000007031,engulfment and cell motility protein 1 +11.9509022,PR:000009004,http://purl.obolibrary.org/obo/PR_000009004,interleukin-31 receptor A +11.9509022,PR:000009757,http://purl.obolibrary.org/obo/PR_000009757,RNA polymerase-associated protein LEO1 +11.9509022,PR:000009954,http://purl.obolibrary.org/obo/PR_000009954,U6 snRNA-associated Sm-like protein LSm1 +11.9509022,PR:000010143,http://purl.obolibrary.org/obo/PR_000010143,mitogen-activated protein kinase kinase kinase kinase 1 +11.9509022,PR:000010241,http://purl.obolibrary.org/obo/PR_000010241,protein MCM10 +11.9509022,PR:000010546,http://purl.obolibrary.org/obo/PR_000010546,MAGUK p55 subfamily member 5 +11.9509022,PR:000011278,http://purl.obolibrary.org/obo/PR_000011278,NLR family member X1 +11.9509022,PR:000012790,http://purl.obolibrary.org/obo/PR_000012790,plakophilin-1 +11.9509022,PR:000012883,http://purl.obolibrary.org/obo/PR_000012883,plastin-3 +11.9509022,PR:000013218,http://purl.obolibrary.org/obo/PR_000013218,5'-AMP-activated protein kinase catalytic subunit alpha-1 +11.9509022,PR:000013475,http://purl.obolibrary.org/obo/PR_000013475,receptor-type tyrosine-protein phosphatase N2 +11.9509022,PR:000015517,http://purl.obolibrary.org/obo/PR_000015517,spatacsin +11.9509022,PR:000016139,http://purl.obolibrary.org/obo/PR_000016139,TATA box-binding protein-like 2 +11.9509022,PR:000016156,http://purl.obolibrary.org/obo/PR_000016156,telethonin +11.9509022,PR:000016348,http://purl.obolibrary.org/obo/PR_000016348,mitochondrial import inner membrane translocase subunit TIM44 +11.9509022,PR:000022999,http://purl.obolibrary.org/obo/PR_000022999,none +11.9509022,PR:000031347,http://purl.obolibrary.org/obo/PR_000031347,RNA guanine-N7 methyltransferase activating subunit +11.9509022,PR:O61643,http://purl.obolibrary.org/obo/PR_O61643,none +11.9509022,PR:P20795,http://purl.obolibrary.org/obo/PR_P20795,none +11.9509022,PR:Q0VIL3,http://purl.obolibrary.org/obo/PR_Q0VIL3,none +11.9509022,PR:Q9LX93,http://purl.obolibrary.org/obo/PR_Q9LX93,none +11.9509022,SO:0000099,http://purl.obolibrary.org/obo/SO_0000099,proviral_gene +11.9509022,SO:0001224,http://purl.obolibrary.org/obo/SO_0001224,gene_silenced_by_RNA_interference +11.9509022,UBERON:0001547,http://purl.obolibrary.org/obo/UBERON_0001547,small saphenous vein +11.9509022,UBERON:0002943,http://purl.obolibrary.org/obo/UBERON_0002943,lingual gyrus +11.9509022,UBERON:0002948,http://purl.obolibrary.org/obo/UBERON_0002948,superior occipital gyrus +11.9509022,UBERON:0004154,http://purl.obolibrary.org/obo/UBERON_0004154,atrial septum primum +11.9509022,UBERON:0004340,http://purl.obolibrary.org/obo/UBERON_0004340,allantois +11.9509022,UBERON:0005742,http://purl.obolibrary.org/obo/UBERON_0005742,adventitia +11.9509022,UBERON:0011011,http://purl.obolibrary.org/obo/UBERON_0011011,brachioradialis +11.9509022,UBERON:0014380,http://purl.obolibrary.org/obo/UBERON_0014380,flexor digitorum brevis muscle +11.9509022,UBERON:0014527,http://purl.obolibrary.org/obo/UBERON_0014527,posterior limb of internal capsule +11.9509022,UBERON:0016462,http://purl.obolibrary.org/obo/UBERON_0016462,periorbital skin +11.9509022,UBERON:0023869,http://purl.obolibrary.org/obo/UBERON_0023869,none +11.9509022,UBERON:2005270,http://purl.obolibrary.org/obo/UBERON_2005270,depressor muscle +11.9576362,CHEBI:28694,http://purl.obolibrary.org/obo/CHEBI_28694,copper atom +11.9576362,CHEBI:49319,http://purl.obolibrary.org/obo/CHEBI_49319,carbocyclic antibiotic +11.9576362,CL:0015000,http://purl.obolibrary.org/obo/CL_0015000,cranial motor neuron +11.9576362,DRUGBANK:DB00954,http://purl.obolibrary.org/obo/DRUGBANK_DB00954,none +11.9576362,DRUGBANK:DB02877,http://purl.obolibrary.org/obo/DRUGBANK_DB02877,none +11.9576362,DRUGBANK:DB06602,http://purl.obolibrary.org/obo/DRUGBANK_DB06602,none +11.9576362,DRUGBANK:DB06608,http://purl.obolibrary.org/obo/DRUGBANK_DB06608,none +11.9576362,DRUGBANK:DB11534,http://purl.obolibrary.org/obo/DRUGBANK_DB11534,none +11.9576362,DRUGBANK:DB12023,http://purl.obolibrary.org/obo/DRUGBANK_DB12023,none +11.9576362,DRUGBANK:DB12545,http://purl.obolibrary.org/obo/DRUGBANK_DB12545,none +11.9576362,DRUGBANK:DB13691,http://purl.obolibrary.org/obo/DRUGBANK_DB13691,none +11.9576362,DRUGBANK:DB14099,http://purl.obolibrary.org/obo/DRUGBANK_DB14099,none +11.9576362,DRUGBANK:DB15631,http://purl.obolibrary.org/obo/DRUGBANK_DB15631,none +11.9576362,GO:0009994,http://purl.obolibrary.org/obo/GO_0009994,oocyte differentiation +11.9576362,GO:0032367,http://purl.obolibrary.org/obo/GO_0032367,intracellular cholesterol transport +11.9576362,GO:0046131,http://purl.obolibrary.org/obo/GO_0046131,pyrimidine ribonucleoside metabolic process +11.9576362,GO:0046448,http://purl.obolibrary.org/obo/GO_0046448,tropane alkaloid metabolic process +11.9576362,GO:0051459,http://purl.obolibrary.org/obo/GO_0051459,regulation of corticotropin secretion +11.9576362,GO:0052314,http://purl.obolibrary.org/obo/GO_0052314,phytoalexin metabolic process +11.9576362,HP:0000979,http://purl.obolibrary.org/obo/HP_0000979,Purpura +11.9576362,MONDO:0001461,http://purl.obolibrary.org/obo/MONDO_0001461,tinea corporis +11.9576362,MONDO:0003420,http://purl.obolibrary.org/obo/MONDO_0003420,bile duct cystadenoma +11.9576362,MONDO:0005208,http://purl.obolibrary.org/obo/MONDO_0005208,amelanotic skin melanoma +11.9576362,MONDO:0006744,http://purl.obolibrary.org/obo/MONDO_0006744,endolymphatic hydrops +11.9576362,MONDO:0015298,http://purl.obolibrary.org/obo/MONDO_0015298,pellucid marginal degeneration +11.9576362,MONDO:0015908,http://purl.obolibrary.org/obo/MONDO_0015908,chromomycosis +11.9576362,MONDO:0016140,http://purl.obolibrary.org/obo/MONDO_0016140,sarcoglycanopathy +11.9576362,MONDO:0016359,http://purl.obolibrary.org/obo/MONDO_0016359,limited systemic sclerosis +11.9576362,MONDO:0018890,http://purl.obolibrary.org/obo/MONDO_0018890,Lyell syndrome +11.9576362,MONDO:0020500,http://purl.obolibrary.org/obo/MONDO_0020500,Marburg hemorrhagic fever +11.9576362,NCBITaxon:11908,http://purl.obolibrary.org/obo/NCBITaxon_11908,Human T-cell leukemia virus type I +11.9576362,NCBITaxon:119486,http://purl.obolibrary.org/obo/NCBITaxon_119486,none +11.9576362,NCBITaxon:119487,http://purl.obolibrary.org/obo/NCBITaxon_119487,none +11.9576362,NCBITaxon:119488,http://purl.obolibrary.org/obo/NCBITaxon_119488,none +11.9576362,NCBITaxon:194440,http://purl.obolibrary.org/obo/NCBITaxon_194440,Primate T-lymphotropic virus 1 +11.9576362,PR:000001187,http://purl.obolibrary.org/obo/PR_000001187,alpha-2B adrenergic receptor +11.9576362,PR:000001485,http://purl.obolibrary.org/obo/PR_000001485,low affinity immunoglobulin gamma Fc region receptor III-B +11.9576362,PR:000001490,http://purl.obolibrary.org/obo/PR_000001490,neuropeptide FF/neuropeptide AF receptor +11.9576362,PR:000002200,http://purl.obolibrary.org/obo/PR_000002200,cytoplasmic tyrosine-protein kinase BMX +11.9576362,PR:000003643,http://purl.obolibrary.org/obo/PR_000003643,peroxisomal acyl-coenzyme A oxidase 2 +11.9576362,PR:000003689,http://purl.obolibrary.org/obo/PR_000003689,alpha-actinin-2 +11.9576362,PR:000004435,http://purl.obolibrary.org/obo/PR_000004435,sodium/potassium-transporting ATPase subunit alpha-1 +11.9576362,PR:000004831,http://purl.obolibrary.org/obo/PR_000004831,barttin +11.9576362,PR:000005465,http://purl.obolibrary.org/obo/PR_000005465,neuronal acetylcholine receptor subunit beta-4 +11.9576362,PR:000005729,http://purl.obolibrary.org/obo/PR_000005729,COMM domain-containing protein 1 +11.9576362,PR:000007246,http://purl.obolibrary.org/obo/PR_000007246,exocyst complex component 1 +11.9576362,PR:000007314,http://purl.obolibrary.org/obo/PR_000007314,gastrotropin +11.9576362,PR:000008265,http://purl.obolibrary.org/obo/PR_000008265,metabotropic glutamate receptor 3 +11.9576362,PR:000008940,http://purl.obolibrary.org/obo/PR_000008940,intraflagellar transport protein 88 +11.9576362,PR:000012522,http://purl.obolibrary.org/obo/PR_000012522,all trans-polyprenyl-diphosphate synthase PDSS2 +11.9576362,PR:000013425,http://purl.obolibrary.org/obo/PR_000013425,prostaglandin reductase 1 +11.9576362,PR:000013564,http://purl.obolibrary.org/obo/PR_000013564,protein quaking +11.9576362,PR:000014832,http://purl.obolibrary.org/obo/PR_000014832,SH3 and multiple ankyrin repeat domains protein 2 +11.9576362,PR:000015071,http://purl.obolibrary.org/obo/PR_000015071,"solute carrier family 2, facilitated glucose transporter member 8" +11.9576362,PR:000015301,http://purl.obolibrary.org/obo/PR_000015301,spermine synthase +11.9576362,PR:000015505,http://purl.obolibrary.org/obo/PR_000015505,signal peptidase complex subunit 1 +11.9576362,PR:000015566,http://purl.obolibrary.org/obo/PR_000015566,signal peptide peptidase-like 3 +11.9576362,PR:000017114,http://purl.obolibrary.org/obo/PR_000017114,uroplakin-2 +11.9576362,PR:000022195,http://purl.obolibrary.org/obo/PR_000022195,none +11.9576362,PR:000023146,http://purl.obolibrary.org/obo/PR_000023146,none +11.9576362,PR:000029535,http://purl.obolibrary.org/obo/PR_000029535,pseudouridine-5'-phosphatase +11.9576362,PR:000050045,http://purl.obolibrary.org/obo/PR_000050045,NOVA protein +11.9576362,PR:F4JIN3,http://purl.obolibrary.org/obo/PR_F4JIN3,none +11.9576362,PR:P26364,http://purl.obolibrary.org/obo/PR_P26364,none +11.9576362,PR:P38116,http://purl.obolibrary.org/obo/PR_P38116,none +11.9576362,PR:P42747,http://purl.obolibrary.org/obo/PR_P42747,none +11.9576362,PR:Q5A6T5,http://purl.obolibrary.org/obo/PR_Q5A6T5,none +11.9576362,SO:0000350,http://purl.obolibrary.org/obo/SO_0000350,FRT_site +11.9576362,UBERON:0003932,http://purl.obolibrary.org/obo/UBERON_0003932,cartilage element of chondrocranium +11.9576362,UBERON:0008586,http://purl.obolibrary.org/obo/UBERON_0008586,tensor veli palatini +11.9576362,UBERON:0011252,http://purl.obolibrary.org/obo/UBERON_0011252,scent gland +11.9576362,UBERON:0022776,http://purl.obolibrary.org/obo/UBERON_0022776,composite part spanning multiple base regional parts of brain +11.9576362,UBERON:0024151,http://purl.obolibrary.org/obo/UBERON_0024151,tegmentum +11.9644159,CHEBI:30052,http://purl.obolibrary.org/obo/CHEBI_30052,copper(0) +11.9644159,CL:0000419,http://purl.obolibrary.org/obo/CL_0000419,seam cell +11.9644159,CL:0000663,http://purl.obolibrary.org/obo/CL_0000663,valve cell +11.9644159,DRUGBANK:DB01133,http://purl.obolibrary.org/obo/DRUGBANK_DB01133,none +11.9644159,DRUGBANK:DB03849,http://purl.obolibrary.org/obo/DRUGBANK_DB03849,none +11.9644159,DRUGBANK:DB05889,http://purl.obolibrary.org/obo/DRUGBANK_DB05889,none +11.9644159,DRUGBANK:DB06795,http://purl.obolibrary.org/obo/DRUGBANK_DB06795,none +11.9644159,DRUGBANK:DB11438,http://purl.obolibrary.org/obo/DRUGBANK_DB11438,none +11.9644159,DRUGBANK:DB12834,http://purl.obolibrary.org/obo/DRUGBANK_DB12834,none +11.9644159,DRUGBANK:DB13116,http://purl.obolibrary.org/obo/DRUGBANK_DB13116,none +11.9644159,DRUGBANK:DB13287,http://purl.obolibrary.org/obo/DRUGBANK_DB13287,none +11.9644159,DRUGBANK:DB13726,http://purl.obolibrary.org/obo/DRUGBANK_DB13726,none +11.9644159,DRUGBANK:DB14596,http://purl.obolibrary.org/obo/DRUGBANK_DB14596,none +11.9644159,GO:0001818,http://purl.obolibrary.org/obo/GO_0001818,negative regulation of cytokine production +11.9644159,GO:0004609,http://purl.obolibrary.org/obo/GO_0004609,phosphatidylserine decarboxylase activity +11.9644159,GO:0006646,http://purl.obolibrary.org/obo/GO_0006646,phosphatidylethanolamine biosynthetic process +11.9644159,GO:0009965,http://purl.obolibrary.org/obo/GO_0009965,leaf morphogenesis +11.9644159,GO:0010330,http://purl.obolibrary.org/obo/GO_0010330,cellulose synthase complex +11.9644159,GO:0016459,http://purl.obolibrary.org/obo/GO_0016459,myosin complex +11.9644159,GO:0018551,http://purl.obolibrary.org/obo/GO_0018551,hydrogensulfite reductase activity +11.9644159,GO:0032197,http://purl.obolibrary.org/obo/GO_0032197,"transposition, RNA-mediated" +11.9644159,GO:0034318,http://purl.obolibrary.org/obo/GO_0034318,alcohol O-acyltransferase activity +11.9644159,GO:0052315,http://purl.obolibrary.org/obo/GO_0052315,phytoalexin biosynthetic process +11.9644159,GO:0060562,http://purl.obolibrary.org/obo/GO_0060562,epithelial tube morphogenesis +11.9644159,GO:0097643,http://purl.obolibrary.org/obo/GO_0097643,amylin receptor activity +11.9644159,GO:1902562,http://purl.obolibrary.org/obo/GO_1902562,H4 histone acetyltransferase complex +11.9644159,GO:1904249,http://purl.obolibrary.org/obo/GO_1904249,negative regulation of age-related resistance +11.9644159,MONDO:0002987,http://purl.obolibrary.org/obo/MONDO_0002987,spongiotic dermatitis +11.9644159,MONDO:0003190,http://purl.obolibrary.org/obo/MONDO_0003190,middle ear carcinoma +11.9644159,MONDO:0003762,http://purl.obolibrary.org/obo/MONDO_0003762,malignant leptomeningeal tumor +11.9644159,MONDO:0004762,http://purl.obolibrary.org/obo/MONDO_0004762,Taylor syndrome +11.9644159,MONDO:0004822,http://purl.obolibrary.org/obo/MONDO_0004822,bronchiectasis +11.9644159,MONDO:0006661,http://purl.obolibrary.org/obo/MONDO_0006661,ascorbic acid deficiency +11.9644159,MONDO:0009345,http://purl.obolibrary.org/obo/MONDO_0009345,histidinemia +11.9644159,MONDO:0010148,http://purl.obolibrary.org/obo/MONDO_0010148,Mounier-Kuhn syndrome +11.9644159,MONDO:0024279,http://purl.obolibrary.org/obo/MONDO_0024279,chronic endometritis +11.9644159,NCBITaxon:10385,http://purl.obolibrary.org/obo/NCBITaxon_10385,none +11.9644159,NCBITaxon:188539,http://purl.obolibrary.org/obo/NCBITaxon_188539,none +11.9644159,NCBITaxon:39733,http://purl.obolibrary.org/obo/NCBITaxon_39733,Astroviridae +11.9644159,PR:000001987,http://purl.obolibrary.org/obo/PR_000001987,C-C motif chemokine 15 +11.9644159,PR:000003903,http://purl.obolibrary.org/obo/PR_000003903,aldo-keto reductase family 1 member C1 +11.9644159,PR:000004775,http://purl.obolibrary.org/obo/PR_000004775,BMP-binding endothelial regulator protein +11.9644159,PR:000005054,http://purl.obolibrary.org/obo/PR_000005054,caspase-14 +11.9644159,PR:000006948,http://purl.obolibrary.org/obo/PR_000006948,"histone-lysine N-methyltransferase, H3 lysine-9 specific 5" +11.9644159,PR:000007172,http://purl.obolibrary.org/obo/PR_000007172,ETS domain-containing transcription factor ERF +11.9644159,PR:000007277,http://purl.obolibrary.org/obo/PR_000007277,histone-lysine N-methyltransferase EZH1 +11.9644159,PR:000007814,http://purl.obolibrary.org/obo/PR_000007814,N-acetylgalactosamine kinase +11.9644159,PR:000007944,http://purl.obolibrary.org/obo/PR_000007944,"elongation factor G 2, mitochondrial" +11.9644159,PR:000007946,http://purl.obolibrary.org/obo/PR_000007946,glutamine--fructose-6-phosphate aminotransferase [isomerizing] 1 +11.9644159,PR:000008142,http://purl.obolibrary.org/obo/PR_000008142,Golgi phosphoprotein 3 +11.9644159,PR:000008269,http://purl.obolibrary.org/obo/PR_000008269,metabotropic glutamate receptor 7 +11.9644159,PR:000008428,http://purl.obolibrary.org/obo/PR_000008428,hyaluronan-binding protein 2 +11.9644159,PR:000011153,http://purl.obolibrary.org/obo/PR_000011153,neurogenic differentiation factor 2 +11.9644159,PR:000011225,http://purl.obolibrary.org/obo/PR_000011225,omega-amidase NIT2 +11.9644159,PR:000011263,http://purl.obolibrary.org/obo/PR_000011263,protein NLRC5 +11.9644159,PR:000012674,http://purl.obolibrary.org/obo/PR_000012674,"phytanoyl-CoA dioxygenase, peroxisomal" +11.9644159,PR:000014304,http://purl.obolibrary.org/obo/PR_000014304,Ras-responsive element-binding protein 1 +11.9644159,PR:000014792,http://purl.obolibrary.org/obo/PR_000014792,serine/threonine-protein kinase Sgk2 +11.9644159,PR:000014966,http://purl.obolibrary.org/obo/PR_000014966,chromaffin granule amine transporter +11.9644159,PR:000016529,http://purl.obolibrary.org/obo/PR_000016529,target of Myb protein 1 +11.9644159,PR:000022320,http://purl.obolibrary.org/obo/PR_000022320,none +11.9644159,PR:000022482,http://purl.obolibrary.org/obo/PR_000022482,none +11.9644159,PR:000022507,http://purl.obolibrary.org/obo/PR_000022507,none +11.9644159,PR:000032708,http://purl.obolibrary.org/obo/PR_000032708,piezo-type mechanosensitive ion channel component 2 +11.9644159,PR:000034652,http://purl.obolibrary.org/obo/PR_000034652,none +11.9644159,PR:P22977,http://purl.obolibrary.org/obo/PR_P22977,none +11.9644159,PR:Q9QZM4,http://purl.obolibrary.org/obo/PR_Q9QZM4,none +11.9644159,SO:0001668,http://purl.obolibrary.org/obo/SO_0001668,proximal_promoter_element +11.9644159,UBERON:0002027,http://purl.obolibrary.org/obo/UBERON_0002027,stratum corneum of epidermis +11.9644159,UBERON:0002502,http://purl.obolibrary.org/obo/UBERON_0002502,round window of inner ear +11.9644159,UBERON:0004092,http://purl.obolibrary.org/obo/UBERON_0004092,hypothalamus-pituitary axis +11.9644159,UBERON:0008593,http://purl.obolibrary.org/obo/UBERON_0008593,zygomaticus major muscle +11.9644159,UBERON:0009670,http://purl.obolibrary.org/obo/UBERON_0009670,rectal lumen +11.9644159,UBERON:0016517,http://purl.obolibrary.org/obo/UBERON_0016517,lumen of jejunum +11.9712418,CHEBI:50404,http://purl.obolibrary.org/obo/CHEBI_50404,lipoprotein cholesterol +11.9712418,CL:0002311,http://purl.obolibrary.org/obo/CL_0002311,mammotroph +11.9712418,DRUGBANK:DB03444,http://purl.obolibrary.org/obo/DRUGBANK_DB03444,none +11.9712418,DRUGBANK:DB04908,http://purl.obolibrary.org/obo/DRUGBANK_DB04908,none +11.9712418,DRUGBANK:DB05220,http://purl.obolibrary.org/obo/DRUGBANK_DB05220,none +11.9712418,DRUGBANK:DB05266,http://purl.obolibrary.org/obo/DRUGBANK_DB05266,none +11.9712418,DRUGBANK:DB08900,http://purl.obolibrary.org/obo/DRUGBANK_DB08900,none +11.9712418,DRUGBANK:DB08922,http://purl.obolibrary.org/obo/DRUGBANK_DB08922,none +11.9712418,DRUGBANK:DB12554,http://purl.obolibrary.org/obo/DRUGBANK_DB12554,none +11.9712418,GO:0001729,http://purl.obolibrary.org/obo/GO_0001729,ceramide kinase activity +11.9712418,GO:0003948,http://purl.obolibrary.org/obo/GO_0003948,N4-(beta-N-acetylglucosaminyl)-L-asparaginase activity +11.9712418,GO:0030478,http://purl.obolibrary.org/obo/GO_0030478,actin cap +11.9712418,GO:0042018,http://purl.obolibrary.org/obo/GO_0042018,interleukin-22 receptor activity +11.9712418,GO:0051047,http://purl.obolibrary.org/obo/GO_0051047,positive regulation of secretion +11.9712418,GO:0051899,http://purl.obolibrary.org/obo/GO_0051899,membrane depolarization +11.9712418,MONDO:0000758,http://purl.obolibrary.org/obo/MONDO_0000758,bacillary angiomatosis +11.9712418,MONDO:0001943,http://purl.obolibrary.org/obo/MONDO_0001943,Plasmodium malariae malaria +11.9712418,MONDO:0002475,http://purl.obolibrary.org/obo/MONDO_0002475,lacrimal gland adenocarcinoma +11.9712418,MONDO:0002620,http://purl.obolibrary.org/obo/MONDO_0002620,localized osteosarcoma +11.9712418,MONDO:0004394,http://purl.obolibrary.org/obo/MONDO_0004394,maxillary sinus squamous cell carcinoma +11.9712418,MONDO:0005952,http://purl.obolibrary.org/obo/MONDO_0005952,scarlet fever +11.9712418,MONDO:0006363,http://purl.obolibrary.org/obo/MONDO_0006363,peritoneal multicystic mesothelioma +11.9712418,MONDO:0006423,http://purl.obolibrary.org/obo/MONDO_0006423,soft tissue chondroma +11.9712418,MONDO:0006969,http://purl.obolibrary.org/obo/MONDO_0006969,sialadenitis +11.9712418,MONDO:0007056,http://purl.obolibrary.org/obo/MONDO_0007056,acroosteolysis +11.9712418,MONDO:0007921,http://purl.obolibrary.org/obo/MONDO_0007921,yellow nail syndrome +11.9712418,MONDO:0015537,http://purl.obolibrary.org/obo/MONDO_0015537,necrobiotic xanthogranuloma +11.9712418,MONDO:0016667,http://purl.obolibrary.org/obo/MONDO_0016667,sickle cell disease associated with an other hemoglobin anomaly +11.9712418,MONDO:0018096,http://purl.obolibrary.org/obo/MONDO_0018096,Weill-Marchesani syndrome +11.9712418,MONDO:0020779,http://purl.obolibrary.org/obo/MONDO_0020779,cartilage development disorder +11.9712418,MONDO:0100152,http://purl.obolibrary.org/obo/MONDO_0100152,DKC1-related disorder +11.9712418,NCBITaxon:2732551,http://purl.obolibrary.org/obo/NCBITaxon_2732551,Stellavirales +11.9712418,PR:000001552,http://purl.obolibrary.org/obo/PR_000001552,relaxin-3 receptor 1 +11.9712418,PR:000002070,http://purl.obolibrary.org/obo/PR_000002070,nectin-3 +11.9712418,PR:000004947,http://purl.obolibrary.org/obo/PR_000004947,voltage-dependent L-type calcium channel subunit beta-2 +11.9712418,PR:000006046,http://purl.obolibrary.org/obo/PR_000006046,CUGBP Elav-like family member 2 +11.9712418,PR:000007942,http://purl.obolibrary.org/obo/PR_000007942,zinc finger protein Gfi-1b +11.9712418,PR:000009052,http://purl.obolibrary.org/obo/PR_000009052,inositol polyphosphate 5-phosphatase K +11.9712418,PR:000009602,http://purl.obolibrary.org/obo/PR_000009602,none +11.9712418,PR:000009750,http://purl.obolibrary.org/obo/PR_000009750,leukocyte cell-derived chemotaxin-2 +11.9712418,PR:000011373,http://purl.obolibrary.org/obo/PR_000011373,nephronectin +11.9712418,PR:000013082,http://purl.obolibrary.org/obo/PR_000013082,peptidyl-prolyl cis-trans isomerase H +11.9712418,PR:000015129,http://purl.obolibrary.org/obo/PR_000015129,zinc transporter ZIP2 +11.9712418,PR:000015434,http://purl.obolibrary.org/obo/PR_000015434,transcription factor SOX-8 +11.9712418,PR:000015514,http://purl.obolibrary.org/obo/PR_000015514,Msx2-interacting protein +11.9712418,PR:000017375,http://purl.obolibrary.org/obo/PR_000017375,neural Wiskott-Aldrich syndrome protein +11.9712418,PR:000022747,http://purl.obolibrary.org/obo/PR_000022747,none +11.9712418,PR:000026157,http://purl.obolibrary.org/obo/PR_000026157,"isocitrate dehydrogenase [NAD], mitochondrial" +11.9712418,PR:P04167,http://purl.obolibrary.org/obo/PR_P04167,none +11.9712418,PR:Q10659,http://purl.obolibrary.org/obo/PR_Q10659,none +11.9712418,PR:Q1JPY4,http://purl.obolibrary.org/obo/PR_Q1JPY4,none +11.9712418,PR:Q7Z6K5,http://purl.obolibrary.org/obo/PR_Q7Z6K5,arpin (human) +11.9712418,UBERON:0001369,http://purl.obolibrary.org/obo/UBERON_0001369,iliacus muscle +11.9712418,UBERON:0001522,http://purl.obolibrary.org/obo/UBERON_0001522,flexor carpi ulnaris muscle +11.9712418,UBERON:0005170,http://purl.obolibrary.org/obo/UBERON_0005170,granulosa cell layer +11.9712418,UBERON:0005297,http://purl.obolibrary.org/obo/UBERON_0005297,testis sex cord +11.9712418,UBERON:0006048,http://purl.obolibrary.org/obo/UBERON_0006048,digit 1 +11.9712418,UBERON:0008231,http://purl.obolibrary.org/obo/UBERON_0008231,dorsal thoracic segment of trunk +11.9712418,UBERON:0016493,http://purl.obolibrary.org/obo/UBERON_0016493,palmaris longus muscle +11.9712418,UBERON:0017648,http://purl.obolibrary.org/obo/UBERON_0017648,ventral body wall +11.9781147,CHEBI:139592,http://purl.obolibrary.org/obo/CHEBI_139592,tertiary alpha-hydroxy ketone +11.9781147,CHEBI:24839,http://purl.obolibrary.org/obo/CHEBI_24839,inorganic salt +11.9781147,CL:0000918,http://purl.obolibrary.org/obo/CL_0000918,Tc2 cell +11.9781147,CL:0001052,http://purl.obolibrary.org/obo/CL_0001052,"CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell" +11.9781147,DRUGBANK:DB00849,http://purl.obolibrary.org/obo/DRUGBANK_DB00849,none +11.9781147,DRUGBANK:DB00991,http://purl.obolibrary.org/obo/DRUGBANK_DB00991,none +11.9781147,DRUGBANK:DB01408,http://purl.obolibrary.org/obo/DRUGBANK_DB01408,none +11.9781147,DRUGBANK:DB04145,http://purl.obolibrary.org/obo/DRUGBANK_DB04145,none +11.9781147,DRUGBANK:DB08827,http://purl.obolibrary.org/obo/DRUGBANK_DB08827,none +11.9781147,DRUGBANK:DB10919,http://purl.obolibrary.org/obo/DRUGBANK_DB10919,none +11.9781147,DRUGBANK:DB13455,http://purl.obolibrary.org/obo/DRUGBANK_DB13455,none +11.9781147,DRUGBANK:DB13943,http://purl.obolibrary.org/obo/DRUGBANK_DB13943,none +11.9781147,DRUGBANK:DB14059,http://purl.obolibrary.org/obo/DRUGBANK_DB14059,none +11.9781147,DRUGBANK:DB14327,http://purl.obolibrary.org/obo/DRUGBANK_DB14327,none +11.9781147,DRUGBANK:DB16023,http://purl.obolibrary.org/obo/DRUGBANK_DB16023,none +11.9781147,GO:0004020,http://purl.obolibrary.org/obo/GO_0004020,adenylylsulfate kinase activity +11.9781147,GO:0010507,http://purl.obolibrary.org/obo/GO_0010507,negative regulation of autophagy +11.9781147,GO:0014850,http://purl.obolibrary.org/obo/GO_0014850,response to muscle activity +11.9781147,GO:0016122,http://purl.obolibrary.org/obo/GO_0016122,xanthophyll metabolic process +11.9781147,GO:0016530,http://purl.obolibrary.org/obo/GO_0016530,metallochaperone activity +11.9781147,GO:0030433,http://purl.obolibrary.org/obo/GO_0030433,ubiquitin-dependent ERAD pathway +11.9781147,GO:0043242,http://purl.obolibrary.org/obo/GO_0043242,negative regulation of protein-containing complex disassembly +11.9781147,GO:0044341,http://purl.obolibrary.org/obo/GO_0044341,sodium-dependent phosphate transport +11.9781147,GO:0070098,http://purl.obolibrary.org/obo/GO_0070098,chemokine-mediated signaling pathway +11.9781147,GO:1903429,http://purl.obolibrary.org/obo/GO_1903429,regulation of cell maturation +11.9781147,MONDO:0002570,http://purl.obolibrary.org/obo/MONDO_0002570,high pressure neurological syndrome +11.9781147,MONDO:0003715,http://purl.obolibrary.org/obo/MONDO_0003715,bladder urachal carcinoma +11.9781147,MONDO:0010130,http://purl.obolibrary.org/obo/MONDO_0010130,dihydropyrimidine dehydrogenase deficiency +11.9781147,MONDO:0010668,http://purl.obolibrary.org/obo/MONDO_0010668,skeletal dysplasia-intellectual disability syndrome +11.9781147,MONDO:0017909,http://purl.obolibrary.org/obo/MONDO_0017909,inherited glutathione synthetase deficiency +11.9781147,MONDO:0019975,http://purl.obolibrary.org/obo/MONDO_0019975,pellagra +11.9781147,MONDO:0020944,http://purl.obolibrary.org/obo/MONDO_0020944,fungal infection of eye +11.9781147,MONDO:0024278,http://purl.obolibrary.org/obo/MONDO_0024278,proctocolitis +11.9781147,MONDO:0044990,http://purl.obolibrary.org/obo/MONDO_0044990,hand disease +11.9781147,NCBITaxon:11807,http://purl.obolibrary.org/obo/NCBITaxon_11807,none +11.9781147,NCBITaxon:8417,http://purl.obolibrary.org/obo/NCBITaxon_8417,none +11.9781147,NCBITaxon:95340,http://purl.obolibrary.org/obo/NCBITaxon_95340,none +11.9781147,PR:000003334,http://purl.obolibrary.org/obo/PR_000003334,collagen alpha-5(IV) chain +11.9781147,PR:000003784,http://purl.obolibrary.org/obo/PR_000003784,activity-dependent neuroprotector homeobox protein +11.9781147,PR:000010098,http://purl.obolibrary.org/obo/PR_000010098,mastermind-like protein 1 +11.9781147,PR:000013040,http://purl.obolibrary.org/obo/PR_000013040,"POU domain, class 3, transcription factor 4" +11.9781147,PR:000013519,http://purl.obolibrary.org/obo/PR_000013519,pyrin domain-containing protein 2 +11.9781147,PR:000014762,http://purl.obolibrary.org/obo/PR_000014762,serine/arginine-rich splicing factor 5 +11.9781147,PR:000015516,http://purl.obolibrary.org/obo/PR_000015516,sperm equatorial segment protein 1 +11.9781147,PR:000015767,http://purl.obolibrary.org/obo/PR_000015767,stonin-1 +11.9781147,PR:000022428,http://purl.obolibrary.org/obo/PR_000022428,none +11.9781147,PR:000023578,http://purl.obolibrary.org/obo/PR_000023578,none +11.9781147,PR:000025977,http://purl.obolibrary.org/obo/PR_000025977,none +11.9781147,PR:000032428,http://purl.obolibrary.org/obo/PR_000032428,zinc finger FYVE domain-containing protein 1 +11.9781147,PR:000037075,http://purl.obolibrary.org/obo/PR_000037075,myristoylated protein +11.9781147,PR:G5EBN9,http://purl.obolibrary.org/obo/PR_G5EBN9,none +11.9781147,PR:P30815,http://purl.obolibrary.org/obo/PR_P30815,none +11.9781147,PR:Q5AGC4,http://purl.obolibrary.org/obo/PR_Q5AGC4,none +11.9781147,PR:Q5AK54,http://purl.obolibrary.org/obo/PR_Q5AK54,none +11.9781147,PR:Q9LFQ9,http://purl.obolibrary.org/obo/PR_Q9LFQ9,none +11.9781147,PR:Q9P7W4,http://purl.obolibrary.org/obo/PR_Q9P7W4,none +11.9781147,UBERON:0001809,http://purl.obolibrary.org/obo/UBERON_0001809,enteric ganglion +11.9781147,UBERON:0006672,http://purl.obolibrary.org/obo/UBERON_0006672,incisive canal +11.9781147,UBERON:0010165,http://purl.obolibrary.org/obo/UBERON_0010165,collection of hair on face +11.9781147,UBERON:0014382,http://purl.obolibrary.org/obo/UBERON_0014382,collection of hairs on head or neck +11.9781147,UBERON:0019252,http://purl.obolibrary.org/obo/UBERON_0019252,8-cell stage embryo +11.9781147,UBERON:2001371,http://purl.obolibrary.org/obo/UBERON_2001371,pancreatic system +11.9850352,CHEBI:64915,http://purl.obolibrary.org/obo/CHEBI_64915,antiplasmodial drug +11.9850352,CL:0000428,http://purl.obolibrary.org/obo/CL_0000428,yolk cell +11.9850352,DRUGBANK:DB00971,http://purl.obolibrary.org/obo/DRUGBANK_DB00971,none +11.9850352,DRUGBANK:DB03407,http://purl.obolibrary.org/obo/DRUGBANK_DB03407,none +11.9850352,DRUGBANK:DB04920,http://purl.obolibrary.org/obo/DRUGBANK_DB04920,none +11.9850352,DRUGBANK:DB09224,http://purl.obolibrary.org/obo/DRUGBANK_DB09224,none +11.9850352,DRUGBANK:DB11154,http://purl.obolibrary.org/obo/DRUGBANK_DB11154,none +11.9850352,DRUGBANK:DB11644,http://purl.obolibrary.org/obo/DRUGBANK_DB11644,none +11.9850352,DRUGBANK:DB13653,http://purl.obolibrary.org/obo/DRUGBANK_DB13653,none +11.9850352,DRUGBANK:DB14585,http://purl.obolibrary.org/obo/DRUGBANK_DB14585,none +11.9850352,GO:0000819,http://purl.obolibrary.org/obo/GO_0000819,sister chromatid segregation +11.9850352,GO:0005827,http://purl.obolibrary.org/obo/GO_0005827,polar microtubule +11.9850352,GO:0007172,http://purl.obolibrary.org/obo/GO_0007172,signal complex assembly +11.9850352,GO:0016165,http://purl.obolibrary.org/obo/GO_0016165,linoleate 13S-lipoxygenase activity +11.9850352,GO:0023041,http://purl.obolibrary.org/obo/GO_0023041,neuronal signal transduction +11.9850352,GO:0033015,http://purl.obolibrary.org/obo/GO_0033015,tetrapyrrole catabolic process +11.9850352,GO:0035434,http://purl.obolibrary.org/obo/GO_0035434,copper ion transmembrane transport +11.9850352,GO:0042121,http://purl.obolibrary.org/obo/GO_0042121,alginic acid biosynthetic process +11.9850352,GO:0050053,http://purl.obolibrary.org/obo/GO_0050053,levansucrase activity +11.9850352,GO:0050792,http://purl.obolibrary.org/obo/GO_0050792,regulation of viral process +11.9850352,GO:0060218,http://purl.obolibrary.org/obo/GO_0060218,hematopoietic stem cell differentiation +11.9850352,GO:0070992,http://purl.obolibrary.org/obo/GO_0070992,translation initiation complex +11.9850352,GO:0080166,http://purl.obolibrary.org/obo/GO_0080166,stomium development +11.9850352,GO:1901343,http://purl.obolibrary.org/obo/GO_1901343,negative regulation of vasculature development +11.9850352,MONDO:0004331,http://purl.obolibrary.org/obo/MONDO_0004331,bladder urachal adenocarcinoma +11.9850352,MONDO:0006753,http://purl.obolibrary.org/obo/MONDO_0006753,Escherichia coli meningitis +11.9850352,MONDO:0008777,http://purl.obolibrary.org/obo/MONDO_0008777,gelatinous drop-like corneal dystrophy +11.9850352,MONDO:0011565,http://purl.obolibrary.org/obo/MONDO_0011565,metabolic syndrome X +11.9850352,MONDO:0011855,http://purl.obolibrary.org/obo/MONDO_0011855,granular corneal dystrophy type II +11.9850352,MONDO:0013614,http://purl.obolibrary.org/obo/MONDO_0013614,hypertelorism-preauricular sinus-punctual pits-deafness syndrome +11.9850352,MONDO:0017194,http://purl.obolibrary.org/obo/MONDO_0017194,Blount disease +11.9850352,MONDO:0019257,http://purl.obolibrary.org/obo/MONDO_0019257,hemochromatosis type 2 +11.9850352,MONDO:0023419,http://purl.obolibrary.org/obo/MONDO_0023419,hyperprolinemia +11.9850352,MONDO:0033821,http://purl.obolibrary.org/obo/MONDO_0033821,fungal keratitis +11.9850352,MONDO:0100306,http://purl.obolibrary.org/obo/MONDO_0100306,disorder of defective peroxisome oxidative status +11.9850352,NCBITaxon:10017,http://purl.obolibrary.org/obo/NCBITaxon_10017,none +11.9850352,NCBITaxon:12282,http://purl.obolibrary.org/obo/NCBITaxon_12282,none +11.9850352,NCBITaxon:19013,http://purl.obolibrary.org/obo/NCBITaxon_19013,none +11.9850352,PR:000005592,http://purl.obolibrary.org/obo/PR_000005592,ceroid-lipofuscinosis neuronal protein 5 +11.9850352,PR:000006035,http://purl.obolibrary.org/obo/PR_000006035,cathepsin Z +11.9850352,PR:000006221,http://purl.obolibrary.org/obo/PR_000006221,none +11.9850352,PR:000006434,http://purl.obolibrary.org/obo/PR_000006434,acyl-CoA wax alcohol acyltransferase 1 +11.9850352,PR:000006755,http://purl.obolibrary.org/obo/PR_000006755,dual specificity protein phosphatase 5 +11.9850352,PR:000007973,http://purl.obolibrary.org/obo/PR_000007973,appetite-regulating hormone +11.9850352,PR:000008556,http://purl.obolibrary.org/obo/PR_000008556,hypoxia-inducible factor 1-alpha inhibitor +11.9850352,PR:000008811,http://purl.obolibrary.org/obo/PR_000008811,heat shock 70 kDa protein 6 +11.9850352,PR:000009864,http://purl.obolibrary.org/obo/PR_000009864,LIM domain transcription factor LMO4 +11.9850352,PR:000010376,http://purl.obolibrary.org/obo/PR_000010376,MAX gene-associated protein +11.9850352,PR:000012990,http://purl.obolibrary.org/obo/PR_000012990,DNA-directed RNA polymerase II subunit RPB4 +11.9850352,PR:000013387,http://purl.obolibrary.org/obo/PR_000013387,26S proteasome non-ATPase regulatory subunit 3 +11.9850352,PR:000013923,http://purl.obolibrary.org/obo/PR_000013923,MHC class II regulatory factor RFX1 +11.9850352,PR:000015261,http://purl.obolibrary.org/obo/PR_000015261,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A-like protein 1 +11.9850352,PR:000015397,http://purl.obolibrary.org/obo/PR_000015397,suppressor of cytokine signaling 6 +11.9850352,PR:000016149,http://purl.obolibrary.org/obo/PR_000016149,T-box transcription factor TBX20 +11.9850352,PR:000016534,http://purl.obolibrary.org/obo/PR_000016534,mitochondrial import receptor subunit TOM22 +11.9850352,PR:000018212,http://purl.obolibrary.org/obo/PR_000018212,zona pellucida sperm-binding protein 3 +11.9850352,PR:000023656,http://purl.obolibrary.org/obo/PR_000023656,pyruvate kinase I +11.9850352,PR:000029218,http://purl.obolibrary.org/obo/PR_000029218,none +11.9850352,PR:O74856,http://purl.obolibrary.org/obo/PR_O74856,none +11.9850352,PR:P34760,http://purl.obolibrary.org/obo/PR_P34760,none +11.9850352,PR:P92985,http://purl.obolibrary.org/obo/PR_P92985,none +11.9850352,PR:P93022,http://purl.obolibrary.org/obo/PR_P93022,none +11.9850352,PR:Q8S528,http://purl.obolibrary.org/obo/PR_Q8S528,none +11.9850352,PR:Q9FH02,http://purl.obolibrary.org/obo/PR_Q9FH02,none +11.9850352,PR:Q9SNB9,http://purl.obolibrary.org/obo/PR_Q9SNB9,none +11.9850352,PR:Q9ZNZ7,http://purl.obolibrary.org/obo/PR_Q9ZNZ7,none +11.9850352,SO:0001015,http://purl.obolibrary.org/obo/SO_0001015,wobble_base_pair +11.9850352,SO:0001623,http://purl.obolibrary.org/obo/SO_0001623,5_prime_UTR_variant +11.9850352,UBERON:0001356,http://purl.obolibrary.org/obo/UBERON_0001356,medial circumflex femoral artery +11.9850352,UBERON:0002589,http://purl.obolibrary.org/obo/UBERON_0002589,lateral corticospinal tract +11.9920038,CHEBI:13643,http://purl.obolibrary.org/obo/CHEBI_13643,glycol +11.9920038,CHEBI:49023,http://purl.obolibrary.org/obo/CHEBI_49023,prostaglandin antagonist +11.9920038,CHEBI:50407,http://purl.obolibrary.org/obo/CHEBI_50407,acid-base indicator +11.9920038,CL:0002312,http://purl.obolibrary.org/obo/CL_0002312,somatotroph +11.9920038,DRUGBANK:DB00739,http://purl.obolibrary.org/obo/DRUGBANK_DB00739,none +11.9920038,DRUGBANK:DB03727,http://purl.obolibrary.org/obo/DRUGBANK_DB03727,none +11.9920038,DRUGBANK:DB04221,http://purl.obolibrary.org/obo/DRUGBANK_DB04221,none +11.9920038,DRUGBANK:DB06999,http://purl.obolibrary.org/obo/DRUGBANK_DB06999,none +11.9920038,DRUGBANK:DB07347,http://purl.obolibrary.org/obo/DRUGBANK_DB07347,none +11.9920038,DRUGBANK:DB10418,http://purl.obolibrary.org/obo/DRUGBANK_DB10418,none +11.9920038,DRUGBANK:DB12248,http://purl.obolibrary.org/obo/DRUGBANK_DB12248,none +11.9920038,DRUGBANK:DB12484,http://purl.obolibrary.org/obo/DRUGBANK_DB12484,none +11.9920038,DRUGBANK:DB14365,http://purl.obolibrary.org/obo/DRUGBANK_DB14365,none +11.9920038,GO:0004156,http://purl.obolibrary.org/obo/GO_0004156,dihydropteroate synthase activity +11.9920038,GO:0004742,http://purl.obolibrary.org/obo/GO_0004742,dihydrolipoyllysine-residue acetyltransferase activity +11.9920038,GO:0006787,http://purl.obolibrary.org/obo/GO_0006787,porphyrin-containing compound catabolic process +11.9920038,GO:0008073,http://purl.obolibrary.org/obo/GO_0008073,ornithine decarboxylase inhibitor activity +11.9920038,GO:0031638,http://purl.obolibrary.org/obo/GO_0031638,zymogen activation +11.9920038,GO:0032902,http://purl.obolibrary.org/obo/GO_0032902,nerve growth factor production +11.9920038,GO:0038060,http://purl.obolibrary.org/obo/GO_0038060,nitric oxide-cGMP-mediated signaling pathway +11.9920038,GO:0043076,http://purl.obolibrary.org/obo/GO_0043076,megasporocyte nucleus +11.9920038,GO:0043078,http://purl.obolibrary.org/obo/GO_0043078,polar nucleus +11.9920038,GO:0050826,http://purl.obolibrary.org/obo/GO_0050826,response to freezing +11.9920038,GO:1900746,http://purl.obolibrary.org/obo/GO_1900746,regulation of vascular endothelial growth factor signaling pathway +11.9920038,GO:1902547,http://purl.obolibrary.org/obo/GO_1902547,regulation of cellular response to vascular endothelial growth factor stimulus +11.9920038,GO:1990054,http://purl.obolibrary.org/obo/GO_1990054,response to temozolomide +11.9920038,MONDO:0003078,http://purl.obolibrary.org/obo/MONDO_0003078,extraocular retinoblastoma +11.9920038,MONDO:0011457,http://purl.obolibrary.org/obo/MONDO_0011457,ataxia-telangiectasia-like disorder +11.9920038,MONDO:0016873,http://purl.obolibrary.org/obo/MONDO_0016873,partial deletion of chromosome 8 +11.9920038,MONDO:0016907,http://purl.obolibrary.org/obo/MONDO_0016907,partial deletion of the long arm of chromosome 8 +11.9920038,MONDO:0017416,http://purl.obolibrary.org/obo/MONDO_0017416,postpoliomyelitis syndrome +11.9920038,MONDO:0019009,http://purl.obolibrary.org/obo/MONDO_0019009,isolated focal cortical dysplasia +11.9920038,MONDO:0019366,http://purl.obolibrary.org/obo/MONDO_0019366,free sialic acid storage disease +11.9920038,MONDO:0020235,http://purl.obolibrary.org/obo/MONDO_0020235,lens size anomaly +11.9920038,MONDO:0022454,http://purl.obolibrary.org/obo/MONDO_0022454,angiosarcoma of the scalp +11.9920038,MONDO:0044627,http://purl.obolibrary.org/obo/MONDO_0044627,acute macular neuroretinopathy +11.9920038,NCBITaxon:10019,http://purl.obolibrary.org/obo/NCBITaxon_10019,none +11.9920038,NCBITaxon:1437180,http://purl.obolibrary.org/obo/NCBITaxon_1437180,none +11.9920038,NCBITaxon:338152,http://purl.obolibrary.org/obo/NCBITaxon_338152,none +11.9920038,NCBITaxon:9681,http://purl.obolibrary.org/obo/NCBITaxon_9681,Felidae +11.9920038,PR:000003688,http://purl.obolibrary.org/obo/PR_000003688,alpha-actinin-1 +11.9920038,PR:000003855,http://purl.obolibrary.org/obo/PR_000003855,jouberin +11.9920038,PR:000006013,http://purl.obolibrary.org/obo/PR_000006013,catenin delta-2 +11.9920038,PR:000009206,http://purl.obolibrary.org/obo/PR_000009206,lysine-specific demethylase 5C +11.9920038,PR:000009503,http://purl.obolibrary.org/obo/PR_000009503,"keratin, type I cytoskeletal 9" +11.9920038,PR:000010081,http://purl.obolibrary.org/obo/PR_000010081,melanoma-associated antigen H1 +11.9920038,PR:000010207,http://purl.obolibrary.org/obo/PR_000010207,matrilin-3 +11.9920038,PR:000010327,http://purl.obolibrary.org/obo/PR_000010327,matrix extracellular phosphoglycoprotein +11.9920038,PR:000010391,http://purl.obolibrary.org/obo/PR_000010391,microsomal glutathione S-transferase 2 +11.9920038,PR:000010786,http://purl.obolibrary.org/obo/PR_000010786,mevalonate kinase +11.9920038,PR:000010855,http://purl.obolibrary.org/obo/PR_000010855,myosin-Ia +11.9920038,PR:000011352,http://purl.obolibrary.org/obo/PR_000011352,neuronal PAS domain-containing protein 4 +11.9920038,PR:000011404,http://purl.obolibrary.org/obo/PR_000011404,COUP transcription factor 1 +11.9920038,PR:000012463,http://purl.obolibrary.org/obo/PR_000012463,"cAMP and cAMP-inhibited cGMP 3',5'-cyclic phosphodiesterase 10A" +11.9920038,PR:000012560,http://purl.obolibrary.org/obo/PR_000012560,peroxisomal membrane protein PEX14 +11.9920038,PR:000012663,http://purl.obolibrary.org/obo/PR_000012663,pleckstrin homology-like domain family A member 1 +11.9920038,PR:000012811,http://purl.obolibrary.org/obo/PR_000012811,85/88 kDa calcium-independent phospholipase A2 +11.9920038,PR:000013541,http://purl.obolibrary.org/obo/PR_000013541,none +11.9920038,PR:000013596,http://purl.obolibrary.org/obo/PR_000013596,Ras-related protein Rab-23 +11.9920038,PR:000014531,http://purl.obolibrary.org/obo/PR_000014531,"protein SCO1, mitochondrial" +11.9920038,PR:000014760,http://purl.obolibrary.org/obo/PR_000014760,serine/arginine-rich splicing factor 3 +11.9920038,PR:000015443,http://purl.obolibrary.org/obo/PR_000015443,transcription factor Sp5 +11.9920038,PR:000016593,http://purl.obolibrary.org/obo/PR_000016593,tryptase gamma +11.9920038,PR:000023285,http://purl.obolibrary.org/obo/PR_000023285,none +11.9920038,PR:000023607,http://purl.obolibrary.org/obo/PR_000023607,none +11.9920038,PR:000032307,http://purl.obolibrary.org/obo/PR_000032307,mastermind-like domain-containing protein 1 +11.9920038,PR:000033861,http://purl.obolibrary.org/obo/PR_000033861,none +11.9920038,PR:F4I562,http://purl.obolibrary.org/obo/PR_F4I562,none +11.9920038,PR:O94457,http://purl.obolibrary.org/obo/PR_O94457,none +11.9920038,PR:P20227,http://purl.obolibrary.org/obo/PR_P20227,none +11.9920038,PR:P31378,http://purl.obolibrary.org/obo/PR_P31378,none +11.9920038,PR:P40215,http://purl.obolibrary.org/obo/PR_P40215,none +11.9920038,PR:P40941,http://purl.obolibrary.org/obo/PR_P40941,none +11.9920038,PR:Q07832,http://purl.obolibrary.org/obo/PR_Q07832,none +11.9920038,PR:Q59RQ2,http://purl.obolibrary.org/obo/PR_Q59RQ2,none +11.9920038,PR:Q5AD13,http://purl.obolibrary.org/obo/PR_Q5AD13,none +11.9920038,PR:Q8VZP1,http://purl.obolibrary.org/obo/PR_Q8VZP1,none +11.9920038,PR:Q949N0,http://purl.obolibrary.org/obo/PR_Q949N0,none +11.9920038,PR:Q9FE79,http://purl.obolibrary.org/obo/PR_Q9FE79,none +11.9920038,SO:0001695,http://purl.obolibrary.org/obo/SO_0001695,restriction_enzyme_single_strand_overhang +11.9920038,UBERON:0001238,http://purl.obolibrary.org/obo/UBERON_0001238,lamina propria of small intestine +11.9920038,UBERON:0002313,http://purl.obolibrary.org/obo/UBERON_0002313,hippocampus pyramidal layer +11.9920038,UBERON:0003041,http://purl.obolibrary.org/obo/UBERON_0003041,trigeminal nerve fibers +11.9920038,UBERON:0005393,http://purl.obolibrary.org/obo/UBERON_0005393,cortical layer IV +11.9920038,UBERON:0006008,http://purl.obolibrary.org/obo/UBERON_0006008,fibrous ring of heart +11.9920038,UBERON:0007375,http://purl.obolibrary.org/obo/UBERON_0007375,roof of mouth +11.9920038,UBERON:0009877,http://purl.obolibrary.org/obo/UBERON_0009877,metapodium region +11.9920038,UBERON:0009959,http://purl.obolibrary.org/obo/UBERON_0009959,lumen of oropharynx +11.9920038,UBERON:0011151,http://purl.obolibrary.org/obo/UBERON_0011151,jaw depressor muscle +11.9990214,CHEBI:23449,http://purl.obolibrary.org/obo/CHEBI_23449,cyclic peptide +11.9990214,CHEBI:37247,http://purl.obolibrary.org/obo/CHEBI_37247,elemental potassium +11.9990214,CHEBI:51422,http://purl.obolibrary.org/obo/CHEBI_51422,organodiyl group +11.9990214,CHEBI:51446,http://purl.obolibrary.org/obo/CHEBI_51446,organic divalent group +11.9990214,CHEBI:83403,http://purl.obolibrary.org/obo/CHEBI_83403,monochlorobenzenes +11.9990214,CL:0000524,http://purl.obolibrary.org/obo/CL_0000524,spheroplast +11.9990214,DRUGBANK:DB00372,http://purl.obolibrary.org/obo/DRUGBANK_DB00372,none +11.9990214,DRUGBANK:DB00430,http://purl.obolibrary.org/obo/DRUGBANK_DB00430,none +11.9990214,DRUGBANK:DB03590,http://purl.obolibrary.org/obo/DRUGBANK_DB03590,none +11.9990214,DRUGBANK:DB04331,http://purl.obolibrary.org/obo/DRUGBANK_DB04331,none +11.9990214,DRUGBANK:DB04334,http://purl.obolibrary.org/obo/DRUGBANK_DB04334,none +11.9990214,DRUGBANK:DB05787,http://purl.obolibrary.org/obo/DRUGBANK_DB05787,none +11.9990214,DRUGBANK:DB06439,http://purl.obolibrary.org/obo/DRUGBANK_DB06439,none +11.9990214,DRUGBANK:DB06785,http://purl.obolibrary.org/obo/DRUGBANK_DB06785,none +11.9990214,DRUGBANK:DB11519,http://purl.obolibrary.org/obo/DRUGBANK_DB11519,none +11.9990214,DRUGBANK:DB12181,http://purl.obolibrary.org/obo/DRUGBANK_DB12181,none +11.9990214,DRUGBANK:DB13693,http://purl.obolibrary.org/obo/DRUGBANK_DB13693,none +11.9990214,GO:0004549,http://purl.obolibrary.org/obo/GO_0004549,tRNA-specific ribonuclease activity +11.9990214,GO:0009279,http://purl.obolibrary.org/obo/GO_0009279,cell outer membrane +11.9990214,GO:0009845,http://purl.obolibrary.org/obo/GO_0009845,seed germination +11.9990214,GO:0010025,http://purl.obolibrary.org/obo/GO_0010025,wax biosynthetic process +11.9990214,GO:0038093,http://purl.obolibrary.org/obo/GO_0038093,Fc receptor signaling pathway +11.9990214,GO:0070461,http://purl.obolibrary.org/obo/GO_0070461,SAGA-type complex +11.9990214,GO:1904631,http://purl.obolibrary.org/obo/GO_1904631,response to glucoside +11.9990214,GO:1990922,http://purl.obolibrary.org/obo/GO_1990922,hepatic stellate cell proliferation +11.9990214,HP:0000233,http://purl.obolibrary.org/obo/HP_0000233,Thin vermilion border +11.9990214,HP:0000556,http://purl.obolibrary.org/obo/HP_0000556,Retinal dystrophy +11.9990214,MONDO:0001849,http://purl.obolibrary.org/obo/MONDO_0001849,chronic orbital inflammation +11.9990214,MONDO:0003084,http://purl.obolibrary.org/obo/MONDO_0003084,uremic neuropathy +11.9990214,MONDO:0003681,http://purl.obolibrary.org/obo/MONDO_0003681,myxoid chondrosarcoma +11.9990214,MONDO:0006570,http://purl.obolibrary.org/obo/MONDO_0006570,lichen disease +11.9990214,MONDO:0007768,http://purl.obolibrary.org/obo/MONDO_0007768,hyperparathyroidism 2 with jaw tumors +11.9990214,MONDO:0010168,http://purl.obolibrary.org/obo/MONDO_0010168,Usher syndrome type 1 +11.9990214,MONDO:0011610,http://purl.obolibrary.org/obo/MONDO_0011610,dimethylglycine dehydrogenase deficiency +11.9990214,MONDO:0019392,http://purl.obolibrary.org/obo/MONDO_0019392,syringocystadenoma papilliferum +11.9990214,MONDO:0019726,http://purl.obolibrary.org/obo/MONDO_0019726,type II mixed cryoglobulinemia +11.9990214,MONDO:0020348,http://purl.obolibrary.org/obo/MONDO_0020348,acute motor and sensory axonal neuropathy +11.9990214,NCBITaxon:2172821,http://purl.obolibrary.org/obo/NCBITaxon_2172821,Multicrustacea +11.9990214,NCBITaxon:31631,http://purl.obolibrary.org/obo/NCBITaxon_31631,none +11.9990214,NCBITaxon:9682,http://purl.obolibrary.org/obo/NCBITaxon_9682,Felis +11.9990214,PR:000000810,http://purl.obolibrary.org/obo/PR_000000810,voltage-gated potassium channel subunit KCNA2 +11.9990214,PR:000001784,http://purl.obolibrary.org/obo/PR_000001784,interleukin-1 receptor-associated kinase 3 +11.9990214,PR:000001877,http://purl.obolibrary.org/obo/PR_000001877,leukocyte-associated immunoglobulin-like receptor 1 +11.9990214,PR:000003660,http://purl.obolibrary.org/obo/PR_000003660,long-chain-fatty-acid--CoA ligase 3 +11.9990214,PR:000004176,http://purl.obolibrary.org/obo/PR_000004176,aprataxin +11.9990214,PR:000006050,http://purl.obolibrary.org/obo/PR_000006050,cullin-4B +11.9990214,PR:000006261,http://purl.obolibrary.org/obo/PR_000006261,dachshund homolog 1 +11.9990214,PR:000006970,http://purl.obolibrary.org/obo/PR_000006970,protein argonaute-4 +11.9990214,PR:000007706,http://purl.obolibrary.org/obo/PR_000007706,3-galactosyl-N-acetylglucosaminide 4-alpha-L-fucosyltransferase FUT3 +11.9990214,PR:000007759,http://purl.obolibrary.org/obo/PR_000007759,gamma-aminobutyric acid receptor-associated protein-like 2 +11.9990214,PR:000008005,http://purl.obolibrary.org/obo/PR_000008005,gap junction gamma-2 protein +11.9990214,PR:000008309,http://purl.obolibrary.org/obo/PR_000008309,GS homeobox 2 +11.9990214,PR:000010838,http://purl.obolibrary.org/obo/PR_000010838,myosin light polypeptide 6 +11.9990214,PR:000011255,http://purl.obolibrary.org/obo/PR_000011255,neuroligin-2 +11.9990214,PR:000013692,http://purl.obolibrary.org/obo/PR_000013692,retinoic acid-induced protein 1 +11.9990214,PR:000014261,http://purl.obolibrary.org/obo/PR_000014261,40S ribosomal protein S19 +11.9990214,PR:000014376,http://purl.obolibrary.org/obo/PR_000014376,tyrosine-protein kinase RYK +11.9990214,PR:000016146,http://purl.obolibrary.org/obo/PR_000016146,T-box transcription factor TBX18 +11.9990214,PR:000016651,http://purl.obolibrary.org/obo/PR_000016651,zinc finger protein RFP +11.9990214,PR:000016748,http://purl.obolibrary.org/obo/PR_000016748,tetraspanin-32 +11.9990214,PR:000017439,http://purl.obolibrary.org/obo/PR_000017439,protein Wnt-16 +11.9990214,PR:000022175,http://purl.obolibrary.org/obo/PR_000022175,none +11.9990214,PR:000022676,http://purl.obolibrary.org/obo/PR_000022676,none +11.9990214,PR:000023515,http://purl.obolibrary.org/obo/PR_000023515,none +11.9990214,PR:F4JNA9,http://purl.obolibrary.org/obo/PR_F4JNA9,none +11.9990214,PR:O02073,http://purl.obolibrary.org/obo/PR_O02073,none +11.9990214,PR:P84228,http://purl.obolibrary.org/obo/PR_P84228,none +11.9990214,PR:P87053,http://purl.obolibrary.org/obo/PR_P87053,none +11.9990214,PR:Q96243,http://purl.obolibrary.org/obo/PR_Q96243,none +11.9990214,PR:Q9FGY1,http://purl.obolibrary.org/obo/PR_Q9FGY1,none +11.9990214,UBERON:0001200,http://purl.obolibrary.org/obo/UBERON_0001200,submucosa of stomach +11.9990214,UBERON:0003547,http://purl.obolibrary.org/obo/UBERON_0003547,brain meninx +11.9990214,UBERON:0004412,http://purl.obolibrary.org/obo/UBERON_0004412,proximal epiphysis of femur +11.9990214,UBERON:0006073,http://purl.obolibrary.org/obo/UBERON_0006073,thoracic region of vertebral column +11.9990214,UBERON:0016527,http://purl.obolibrary.org/obo/UBERON_0016527,white matter of cerebral lobe +11.9990214,UBERON:0019249,http://purl.obolibrary.org/obo/UBERON_0019249,2-cell stage embryo +12.0060886,CL:0000533,http://purl.obolibrary.org/obo/CL_0000533,primary motor neuron +12.0060886,CL:1001451,http://purl.obolibrary.org/obo/CL_1001451,sensory neuron of dorsal root ganglion +12.0060886,DRUGBANK:DB05827,http://purl.obolibrary.org/obo/DRUGBANK_DB05827,none +12.0060886,DRUGBANK:DB06406,http://purl.obolibrary.org/obo/DRUGBANK_DB06406,none +12.0060886,DRUGBANK:DB09235,http://purl.obolibrary.org/obo/DRUGBANK_DB09235,none +12.0060886,DRUGBANK:DB10661,http://purl.obolibrary.org/obo/DRUGBANK_DB10661,none +12.0060886,DRUGBANK:DB15729,http://purl.obolibrary.org/obo/DRUGBANK_DB15729,none +12.0060886,GO:0000070,http://purl.obolibrary.org/obo/GO_0000070,mitotic sister chromatid segregation +12.0060886,GO:0001793,http://purl.obolibrary.org/obo/GO_0001793,IgM receptor activity +12.0060886,GO:0002190,http://purl.obolibrary.org/obo/GO_0002190,cap-independent translational initiation +12.0060886,GO:0003940,http://purl.obolibrary.org/obo/GO_0003940,L-iduronidase activity +12.0060886,GO:0010048,http://purl.obolibrary.org/obo/GO_0010048,vernalization response +12.0060886,GO:0010165,http://purl.obolibrary.org/obo/GO_0010165,response to X-ray +12.0060886,GO:0016420,http://purl.obolibrary.org/obo/GO_0016420,malonyltransferase activity +12.0060886,GO:0016525,http://purl.obolibrary.org/obo/GO_0016525,negative regulation of angiogenesis +12.0060886,GO:0031644,http://purl.obolibrary.org/obo/GO_0031644,regulation of nervous system process +12.0060886,GO:0032401,http://purl.obolibrary.org/obo/GO_0032401,establishment of melanosome localization +12.0060886,GO:0032402,http://purl.obolibrary.org/obo/GO_0032402,melanosome transport +12.0060886,GO:0035567,http://purl.obolibrary.org/obo/GO_0035567,non-canonical Wnt signaling pathway +12.0060886,GO:0043020,http://purl.obolibrary.org/obo/GO_0043020,NADPH oxidase complex +12.0060886,GO:1902521,http://purl.obolibrary.org/obo/GO_1902521,response to etoposide +12.0060886,GO:2000181,http://purl.obolibrary.org/obo/GO_2000181,negative regulation of blood vessel morphogenesis +12.0060886,MONDO:0001272,http://purl.obolibrary.org/obo/MONDO_0001272,functional diarrhea +12.0060886,MONDO:0001414,http://purl.obolibrary.org/obo/MONDO_0001414,osteopoikilosis +12.0060886,MONDO:0002868,http://purl.obolibrary.org/obo/MONDO_0002868,bile duct mucinous cystic neoplasm with an associated invasive carcinoma +12.0060886,MONDO:0003054,http://purl.obolibrary.org/obo/MONDO_0003054,benign meningioma +12.0060886,MONDO:0005204,http://purl.obolibrary.org/obo/MONDO_0005204,primary antiphospholipid syndrome +12.0060886,MONDO:0005498,http://purl.obolibrary.org/obo/MONDO_0005498,botulism +12.0060886,MONDO:0009659,http://purl.obolibrary.org/obo/MONDO_0009659,mucopolysaccharidosis type 4A +12.0060886,MONDO:0012897,http://purl.obolibrary.org/obo/MONDO_0012897,congenital factor XI deficiency +12.0060886,MONDO:0018304,http://purl.obolibrary.org/obo/MONDO_0018304,Schnitzler syndrome +12.0060886,MONDO:0018325,http://purl.obolibrary.org/obo/MONDO_0018325,juvenile myasthenia gravis +12.0060886,NCBITaxon:10018,http://purl.obolibrary.org/obo/NCBITaxon_10018,none +12.0060886,NCBITaxon:9685,http://purl.obolibrary.org/obo/NCBITaxon_9685,Felis catus +12.0060886,PR:000003540,http://purl.obolibrary.org/obo/PR_000003540,ATP-binding cassette sub-family A member 2 +12.0060886,PR:000005050,http://purl.obolibrary.org/obo/PR_000005050,kinetochore scaffold 1 +12.0060886,PR:000005479,http://purl.obolibrary.org/obo/PR_000005479,carbohydrate sulfotransferase 6 +12.0060886,PR:000005527,http://purl.obolibrary.org/obo/PR_000005527,cardiotrophin-like cytokine factor 1 +12.0060886,PR:000005879,http://purl.obolibrary.org/obo/PR_000005879,cysteine-rich secretory protein 2 +12.0060886,PR:000006005,http://purl.obolibrary.org/obo/PR_000006005,collagen triple helix repeat-containing protein 1 +12.0060886,PR:000006249,http://purl.obolibrary.org/obo/PR_000006249,none +12.0060886,PR:000006768,http://purl.obolibrary.org/obo/PR_000006768,segment polarity protein dishevelled DVL-3 +12.0060886,PR:000008171,http://purl.obolibrary.org/obo/PR_000008171,"glycerol-3-phosphate dehydrogenase, mitochondrial" +12.0060886,PR:000008258,http://purl.obolibrary.org/obo/PR_000008258,G protein-coupled receptor kinase 4 +12.0060886,PR:000008459,http://purl.obolibrary.org/obo/PR_000008459,proheparin-binding EGF-like growth factor +12.0060886,PR:000008616,http://purl.obolibrary.org/obo/PR_000008616,"MHC class I histocompatibility antigen, alpha chain G" +12.0060886,PR:000008793,http://purl.obolibrary.org/obo/PR_000008793,heat shock factor protein 4 +12.0060886,PR:000010135,http://purl.obolibrary.org/obo/PR_000010135,mitogen-activated protein kinase kinase kinase 2 +12.0060886,PR:000010377,http://purl.obolibrary.org/obo/PR_000010377,"maltase-glucoamylase, intestinal" +12.0060886,PR:000011147,http://purl.obolibrary.org/obo/PR_000011147,sialidase-3 +12.0060886,PR:000011184,http://purl.obolibrary.org/obo/PR_000011184,"cysteine desulfurase, mitochondrial" +12.0060886,PR:000012567,http://purl.obolibrary.org/obo/PR_000012567,peroxisome assembly factor 2 +12.0060886,PR:000014134,http://purl.obolibrary.org/obo/PR_000014134,E3 ubiquitin-protein ligase RNF4 +12.0060886,PR:000015406,http://purl.obolibrary.org/obo/PR_000015406,SON protein +12.0060886,PR:000017428,http://purl.obolibrary.org/obo/PR_000017428,cellular communication network factor 6 +12.0060886,PR:000023753,http://purl.obolibrary.org/obo/PR_000023753,none +12.0060886,PR:000050020,http://purl.obolibrary.org/obo/PR_000050020,CLASP protein +12.0060886,PR:O14062,http://purl.obolibrary.org/obo/PR_O14062,none +12.0060886,UBERON:0001108,http://purl.obolibrary.org/obo/UBERON_0001108,omohyoid muscle +12.0060886,UBERON:0001721,http://purl.obolibrary.org/obo/UBERON_0001721,inferior vestibular nucleus +12.0060886,UBERON:0007177,http://purl.obolibrary.org/obo/UBERON_0007177,lamina propria of mucosa of colon +12.0060886,UBERON:0008939,http://purl.obolibrary.org/obo/UBERON_0008939,pedal ganglion +12.0060886,UBERON:0027239,http://purl.obolibrary.org/obo/UBERON_0027239,dopaminergic system +12.013206,CHEBI:35724,http://purl.obolibrary.org/obo/CHEBI_35724,carbohydrate sulfate +12.013206,CHEBI:46663,http://purl.obolibrary.org/obo/CHEBI_46663,silicate mineral +12.013206,CHEBI:48433,http://purl.obolibrary.org/obo/CHEBI_48433,angiotensin +12.013206,CHEBI:51372,http://purl.obolibrary.org/obo/CHEBI_51372,neuromuscular agent +12.013206,CHEBI:7754,http://purl.obolibrary.org/obo/CHEBI_7754,oligonucleotide +12.013206,DRUGBANK:DB03223,http://purl.obolibrary.org/obo/DRUGBANK_DB03223,none +12.013206,DRUGBANK:DB07080,http://purl.obolibrary.org/obo/DRUGBANK_DB07080,none +12.013206,DRUGBANK:DB08913,http://purl.obolibrary.org/obo/DRUGBANK_DB08913,none +12.013206,DRUGBANK:DB08957,http://purl.obolibrary.org/obo/DRUGBANK_DB08957,none +12.013206,DRUGBANK:DB11380,http://purl.obolibrary.org/obo/DRUGBANK_DB11380,none +12.013206,DRUGBANK:DB11479,http://purl.obolibrary.org/obo/DRUGBANK_DB11479,none +12.013206,DRUGBANK:DB12401,http://purl.obolibrary.org/obo/DRUGBANK_DB12401,none +12.013206,DRUGBANK:DB12774,http://purl.obolibrary.org/obo/DRUGBANK_DB12774,none +12.013206,GO:0000212,http://purl.obolibrary.org/obo/GO_0000212,meiotic spindle organization +12.013206,GO:0009269,http://purl.obolibrary.org/obo/GO_0009269,response to desiccation +12.013206,GO:0010818,http://purl.obolibrary.org/obo/GO_0010818,T cell chemotaxis +12.013206,GO:0015279,http://purl.obolibrary.org/obo/GO_0015279,store-operated calcium channel activity +12.013206,GO:0031933,http://purl.obolibrary.org/obo/GO_0031933,none +12.013206,GO:0045298,http://purl.obolibrary.org/obo/GO_0045298,tubulin complex +12.013206,GO:0099504,http://purl.obolibrary.org/obo/GO_0099504,synaptic vesicle cycle +12.013206,GO:1902904,http://purl.obolibrary.org/obo/GO_1902904,negative regulation of supramolecular fiber organization +12.013206,HP:0003745,http://purl.obolibrary.org/obo/HP_0003745,Sporadic +12.013206,MONDO:0000707,http://purl.obolibrary.org/obo/MONDO_0000707,diversion colitis +12.013206,MONDO:0002002,http://purl.obolibrary.org/obo/MONDO_0002002,postsurgical hypothyroidism +12.013206,MONDO:0005597,http://purl.obolibrary.org/obo/MONDO_0005597,cystic renal cell carcinoma +12.013206,MONDO:0005598,http://purl.obolibrary.org/obo/MONDO_0005598,dopaminergic neuroblastoma +12.013206,MONDO:0006536,http://purl.obolibrary.org/obo/MONDO_0006536,congenital generalized lipodystrophy +12.013206,MONDO:0008733,http://purl.obolibrary.org/obo/MONDO_0008733,familial glucocorticoid deficiency +12.013206,MONDO:0009105,http://purl.obolibrary.org/obo/MONDO_0009105,trichohepatoenteric syndrome +12.013206,MONDO:0009479,http://purl.obolibrary.org/obo/MONDO_0009479,Johanson-Blizzard syndrome +12.013206,MONDO:0012017,http://purl.obolibrary.org/obo/MONDO_0012017,Parkes Weber syndrome +12.013206,MONDO:0020646,http://purl.obolibrary.org/obo/MONDO_0020646,ocular adnexal lymphoma +12.013206,NCBITaxon:9498,http://purl.obolibrary.org/obo/NCBITaxon_9498,Cebidae +12.013206,NCBITaxon:96491,http://purl.obolibrary.org/obo/NCBITaxon_96491,none +12.013206,PR:000004659,http://purl.obolibrary.org/obo/PR_000004659,bromodomain adjacent to zinc finger domain protein 2A +12.013206,PR:000005409,http://purl.obolibrary.org/obo/PR_000005409,chromodomain-helicase-DNA-binding protein 3 +12.013206,PR:000006694,http://purl.obolibrary.org/obo/PR_000006694,desmocollin-3 +12.013206,PR:000008640,http://purl.obolibrary.org/obo/PR_000008640,non-histone chromosomal protein HMG-17 +12.013206,PR:000010424,http://purl.obolibrary.org/obo/PR_000010424,homeobox protein MIXL1 +12.013206,PR:000011298,http://purl.obolibrary.org/obo/PR_000011298,"NAD(P) transhydrogenase, mitochondrial" +12.013206,PR:000012542,http://purl.obolibrary.org/obo/PR_000012542,"proline-, glutamic acid- and leucine-rich protein 1" +12.013206,PR:000015135,http://purl.obolibrary.org/obo/PR_000015135,metal cation symporter ZIP8 +12.013206,PR:000015909,http://purl.obolibrary.org/obo/PR_000015909,synaptotagmin-7 +12.013206,PR:000016017,http://purl.obolibrary.org/obo/PR_000016017,transcription initiation factor TFIID subunit 12 +12.013206,PR:000016118,http://purl.obolibrary.org/obo/PR_000016118,TBC1 domain family member 4 +12.013206,PR:000016192,http://purl.obolibrary.org/obo/PR_000016192,V-type proton ATPase 116 kDa subunit a3 +12.013206,PR:000016385,http://purl.obolibrary.org/obo/PR_000016385,T-cell leukemia homeobox protein 3 +12.013206,PR:000022786,http://purl.obolibrary.org/obo/PR_000022786,none +12.013206,PR:000023253,http://purl.obolibrary.org/obo/PR_000023253,none +12.013206,PR:000023710,http://purl.obolibrary.org/obo/PR_000023710,none +12.013206,PR:000032246,http://purl.obolibrary.org/obo/PR_000032246,integral membrane protein 2B +12.013206,PR:Q21219,http://purl.obolibrary.org/obo/PR_Q21219,none +12.013206,PR:Q96320,http://purl.obolibrary.org/obo/PR_Q96320,none +12.013206,PR:Q9C9P4,http://purl.obolibrary.org/obo/PR_Q9C9P4,none +12.013206,UBERON:0001376,http://purl.obolibrary.org/obo/UBERON_0001376,tensor fasciae latae muscle +12.013206,UBERON:0001546,http://purl.obolibrary.org/obo/UBERON_0001546,posterior tibial vein +12.013206,UBERON:0001582,http://purl.obolibrary.org/obo/UBERON_0001582,buccinator muscle +12.013206,UBERON:0004023,http://purl.obolibrary.org/obo/UBERON_0004023,ganglionic eminence +12.013206,UBERON:0013235,http://purl.obolibrary.org/obo/UBERON_0013235,ventrum +12.013206,UBERON:3010524,http://purl.obolibrary.org/obo/UBERON_3010524,bronchial tube +12.0203745,CL:0002167,http://purl.obolibrary.org/obo/CL_0002167,olfactory epithelial cell +12.0203745,DRUGBANK:DB02758,http://purl.obolibrary.org/obo/DRUGBANK_DB02758,none +12.0203745,DRUGBANK:DB04842,http://purl.obolibrary.org/obo/DRUGBANK_DB04842,none +12.0203745,DRUGBANK:DB05103,http://purl.obolibrary.org/obo/DRUGBANK_DB05103,none +12.0203745,DRUGBANK:DB05875,http://purl.obolibrary.org/obo/DRUGBANK_DB05875,none +12.0203745,DRUGBANK:DB09343,http://purl.obolibrary.org/obo/DRUGBANK_DB09343,none +12.0203745,DRUGBANK:DB11074,http://purl.obolibrary.org/obo/DRUGBANK_DB11074,none +12.0203745,DRUGBANK:DB12127,http://purl.obolibrary.org/obo/DRUGBANK_DB12127,none +12.0203745,DRUGBANK:DB13398,http://purl.obolibrary.org/obo/DRUGBANK_DB13398,none +12.0203745,DRUGBANK:DB13587,http://purl.obolibrary.org/obo/DRUGBANK_DB13587,none +12.0203745,DRUGBANK:DB13605,http://purl.obolibrary.org/obo/DRUGBANK_DB13605,none +12.0203745,GO:0000331,http://purl.obolibrary.org/obo/GO_0000331,contractile vacuole +12.0203745,GO:0004576,http://purl.obolibrary.org/obo/GO_0004576,oligosaccharyl transferase activity +12.0203745,GO:0004719,http://purl.obolibrary.org/obo/GO_0004719,protein-L-isoaspartate (D-aspartate) O-methyltransferase activity +12.0203745,GO:0008804,http://purl.obolibrary.org/obo/GO_0008804,carbamate kinase activity +12.0203745,GO:0009644,http://purl.obolibrary.org/obo/GO_0009644,response to high light intensity +12.0203745,GO:0015684,http://purl.obolibrary.org/obo/GO_0015684,none +12.0203745,GO:0031111,http://purl.obolibrary.org/obo/GO_0031111,negative regulation of microtubule polymerization or depolymerization +12.0203745,GO:0036305,http://purl.obolibrary.org/obo/GO_0036305,ameloblast differentiation +12.0203745,GO:0043249,http://purl.obolibrary.org/obo/GO_0043249,erythrocyte maturation +12.0203745,GO:0046885,http://purl.obolibrary.org/obo/GO_0046885,regulation of hormone biosynthetic process +12.0203745,GO:0048269,http://purl.obolibrary.org/obo/GO_0048269,methionine adenosyltransferase complex +12.0203745,GO:0051445,http://purl.obolibrary.org/obo/GO_0051445,regulation of meiotic cell cycle +12.0203745,GO:0060231,http://purl.obolibrary.org/obo/GO_0060231,mesenchymal to epithelial transition +12.0203745,GO:0071425,http://purl.obolibrary.org/obo/GO_0071425,hematopoietic stem cell proliferation +12.0203745,GO:0071763,http://purl.obolibrary.org/obo/GO_0071763,nuclear membrane organization +12.0203745,GO:1901880,http://purl.obolibrary.org/obo/GO_1901880,negative regulation of protein depolymerization +12.0203745,HP:0001600,http://purl.obolibrary.org/obo/HP_0001600,Abnormality of the larynx +12.0203745,MONDO:0000926,http://purl.obolibrary.org/obo/MONDO_0000926,eye accommodation disease +12.0203745,MONDO:0002960,http://purl.obolibrary.org/obo/MONDO_0002960,polyradiculopathy +12.0203745,MONDO:0006389,http://purl.obolibrary.org/obo/MONDO_0006389,prostate rhabdomyosarcoma +12.0203745,MONDO:0007558,http://purl.obolibrary.org/obo/MONDO_0007558,benign occipital epilepsy +12.0203745,MONDO:0008681,http://purl.obolibrary.org/obo/MONDO_0008681,WAGR syndrome +12.0203745,MONDO:0013571,http://purl.obolibrary.org/obo/MONDO_0013571,acatalasia +12.0203745,MONDO:0015212,http://purl.obolibrary.org/obo/MONDO_0015212,syndromic intestinal malformation +12.0203745,MONDO:0017330,http://purl.obolibrary.org/obo/MONDO_0017330,malignancy diagnosed during pregnancy +12.0203745,MONDO:0019461,http://purl.obolibrary.org/obo/MONDO_0019461,B-cell prolymphocytic leukemia +12.0203745,MONDO:0019667,http://purl.obolibrary.org/obo/MONDO_0019667,spondyloepiphyseal dysplasia tarda +12.0203745,MONDO:0020754,http://purl.obolibrary.org/obo/MONDO_0020754,visceral myopathy +12.0203745,NCBITaxon:43867,http://purl.obolibrary.org/obo/NCBITaxon_43867,none +12.0203745,NCBITaxon:44088,http://purl.obolibrary.org/obo/NCBITaxon_44088,Canarypox virus +12.0203745,PR:000000131,http://purl.obolibrary.org/obo/PR_000000131,thrombospondin-3 +12.0203745,PR:000002096,http://purl.obolibrary.org/obo/PR_000002096,sodium channel protein type 10 subunit alpha +12.0203745,PR:000003598,http://purl.obolibrary.org/obo/PR_000003598,"isobutyryl-CoA dehydrogenase, mitochondrial" +12.0203745,PR:000004391,http://purl.obolibrary.org/obo/PR_000004391,"ankyrin repeat, SAM and basic leucine zipper domain-containing protein 1" +12.0203745,PR:000005520,http://purl.obolibrary.org/obo/PR_000005520,CLIP-associating protein 1 +12.0203745,PR:000007713,http://purl.obolibrary.org/obo/PR_000007713,phospholemman +12.0203745,PR:000008242,http://purl.obolibrary.org/obo/PR_000008242,"glutamate receptor ionotropic, kainate 3" +12.0203745,PR:000009008,http://purl.obolibrary.org/obo/PR_000009008,interleukin enhancer-binding factor 3 +12.0203745,PR:000010088,http://purl.obolibrary.org/obo/PR_000010088,magnesium transporter protein 1 +12.0203745,PR:000011027,http://purl.obolibrary.org/obo/PR_000011027,nuclear cap-binding protein subunit 2 +12.0203745,PR:000011174,http://purl.obolibrary.org/obo/PR_000011174,nuclear factor 1 B-type +12.0203745,PR:000011344,http://purl.obolibrary.org/obo/PR_000011344,purine nucleoside phosphorylase +12.0203745,PR:000011434,http://purl.obolibrary.org/obo/PR_000011434,neuritin +12.0203745,PR:000013776,http://purl.obolibrary.org/obo/PR_000013776,histone-binding protein RBBP4 +12.0203745,PR:000014881,http://purl.obolibrary.org/obo/PR_000014881,signal-induced proliferation-associated 1-like protein 1 +12.0203745,PR:000015052,http://purl.obolibrary.org/obo/PR_000015052,sodium/nucleoside cotransporter 2 +12.0203745,PR:000015765,http://purl.obolibrary.org/obo/PR_000015765,stomatin-like protein 2 +12.0203745,PR:000015882,http://purl.obolibrary.org/obo/PR_000015882,synaptojanin-1 +12.0203745,PR:000017012,http://purl.obolibrary.org/obo/PR_000017012,E3 ubiquitin-protein ligase UBR1 +12.0203745,PR:000017349,http://purl.obolibrary.org/obo/PR_000017349,serine/threonine-protein kinase VRK1 +12.0203745,PR:000017598,http://purl.obolibrary.org/obo/PR_000017598,endoribonuclease ZC3H12A +12.0203745,PR:000028484,http://purl.obolibrary.org/obo/PR_000028484,none +12.0203745,PR:000031301,http://purl.obolibrary.org/obo/PR_000031301,TOX high mobility group box family member 3 +12.0203745,PR:000034302,http://purl.obolibrary.org/obo/PR_000034302,none +12.0203745,PR:P32332,http://purl.obolibrary.org/obo/PR_P32332,none +12.0203745,PR:Q05515,http://purl.obolibrary.org/obo/PR_Q05515,none +12.0203745,PR:Q07830,http://purl.obolibrary.org/obo/PR_Q07830,none +12.0203745,PR:Q9P6L5,http://purl.obolibrary.org/obo/PR_Q9P6L5,none +12.0203745,SO:0000417,http://purl.obolibrary.org/obo/SO_0000417,polypeptide_domain +12.0203745,SO:0001918,http://purl.obolibrary.org/obo/SO_0001918,5_methylcytosine +12.0203745,UBERON:0004674,http://purl.obolibrary.org/obo/UBERON_0004674,facial nerve root +12.0203745,UBERON:0005942,http://purl.obolibrary.org/obo/UBERON_0005942,hair outer root sheath +12.0275948,CHEBI:131927,http://purl.obolibrary.org/obo/CHEBI_131927,dicarboxylic acids and O-substituted derivatives +12.0275948,CHEBI:25480,http://purl.obolibrary.org/obo/CHEBI_25480,naphthohydroquinone antibiotic +12.0275948,CHEBI:32563,http://purl.obolibrary.org/obo/CHEBI_32563,lysinate +12.0275948,CHEBI:51371,http://purl.obolibrary.org/obo/CHEBI_51371,muscle relaxant +12.0275948,CHEBI:51475,http://purl.obolibrary.org/obo/CHEBI_51475,naphthohydroquinone +12.0275948,CHEBI:52271,http://purl.obolibrary.org/obo/CHEBI_52271,squaraine dye +12.0275948,CHEBI:53784,http://purl.obolibrary.org/obo/CHEBI_53784,antispasmodic drug +12.0275948,DRUGBANK:DB00241,http://purl.obolibrary.org/obo/DRUGBANK_DB00241,none +12.0275948,DRUGBANK:DB01933,http://purl.obolibrary.org/obo/DRUGBANK_DB01933,none +12.0275948,DRUGBANK:DB09046,http://purl.obolibrary.org/obo/DRUGBANK_DB09046,none +12.0275948,DRUGBANK:DB11516,http://purl.obolibrary.org/obo/DRUGBANK_DB11516,none +12.0275948,DRUGBANK:DB12930,http://purl.obolibrary.org/obo/DRUGBANK_DB12930,none +12.0275948,DRUGBANK:DB13312,http://purl.obolibrary.org/obo/DRUGBANK_DB13312,none +12.0275948,DRUGBANK:DB13792,http://purl.obolibrary.org/obo/DRUGBANK_DB13792,none +12.0275948,DRUGBANK:DB14172,http://purl.obolibrary.org/obo/DRUGBANK_DB14172,none +12.0275948,DRUGBANK:DB15778,http://purl.obolibrary.org/obo/DRUGBANK_DB15778,none +12.0275948,GO:0003416,http://purl.obolibrary.org/obo/GO_0003416,endochondral bone growth +12.0275948,GO:0004666,http://purl.obolibrary.org/obo/GO_0004666,prostaglandin-endoperoxide synthase activity +12.0275948,GO:0004942,http://purl.obolibrary.org/obo/GO_0004942,none +12.0275948,GO:0005796,http://purl.obolibrary.org/obo/GO_0005796,Golgi lumen +12.0275948,GO:0006797,http://purl.obolibrary.org/obo/GO_0006797,polyphosphate metabolic process +12.0275948,GO:0007026,http://purl.obolibrary.org/obo/GO_0007026,negative regulation of microtubule depolymerization +12.0275948,GO:0008733,http://purl.obolibrary.org/obo/GO_0008733,L-arabinose isomerase activity +12.0275948,GO:0015297,http://purl.obolibrary.org/obo/GO_0015297,antiporter activity +12.0275948,GO:0015912,http://purl.obolibrary.org/obo/GO_0015912,short-chain fatty acid transport +12.0275948,GO:0032635,http://purl.obolibrary.org/obo/GO_0032635,interleukin-6 production +12.0275948,GO:0033202,http://purl.obolibrary.org/obo/GO_0033202,DNA helicase complex +12.0275948,GO:0034196,http://purl.obolibrary.org/obo/GO_0034196,acylglycerol transport +12.0275948,GO:0034197,http://purl.obolibrary.org/obo/GO_0034197,triglyceride transport +12.0275948,GO:0050171,http://purl.obolibrary.org/obo/GO_0050171,phenol beta-glucosyltransferase activity +12.0275948,GO:0051092,http://purl.obolibrary.org/obo/GO_0051092,positive regulation of NF-kappaB transcription factor activity +12.0275948,GO:0061647,http://purl.obolibrary.org/obo/GO_0061647,histone H3-K9 modification +12.0275948,GO:0097189,http://purl.obolibrary.org/obo/GO_0097189,apoptotic body +12.0275948,GO:0098760,http://purl.obolibrary.org/obo/GO_0098760,response to interleukin-7 +12.0275948,HP:0002087,http://purl.obolibrary.org/obo/HP_0002087,Abnormality of the upper respiratory tract +12.0275948,MONDO:0002110,http://purl.obolibrary.org/obo/MONDO_0002110,adrenal rest tumor +12.0275948,MONDO:0002166,http://purl.obolibrary.org/obo/MONDO_0002166,rectum lymphoma +12.0275948,MONDO:0006081,http://purl.obolibrary.org/obo/MONDO_0006081,anal melanoma +12.0275948,MONDO:0007057,http://purl.obolibrary.org/obo/MONDO_0007057,acroosteolysis dominant type +12.0275948,MONDO:0007089,http://purl.obolibrary.org/obo/MONDO_0007089,Alzheimer disease 2 +12.0275948,MONDO:0007875,http://purl.obolibrary.org/obo/MONDO_0007875,Larsen syndrome +12.0275948,MONDO:0013808,http://purl.obolibrary.org/obo/MONDO_0013808,Maffucci syndrome +12.0275948,MONDO:0015699,http://purl.obolibrary.org/obo/MONDO_0015699,immunodeficiency due to a classical component pathway complement deficiency +12.0275948,MONDO:0018115,http://purl.obolibrary.org/obo/MONDO_0018115,epidermal nevus syndrome +12.0275948,MONDO:0018456,http://purl.obolibrary.org/obo/MONDO_0018456,polyarticular juvenile idiopathic arthritis +12.0275948,MONDO:0019258,http://purl.obolibrary.org/obo/MONDO_0019258,mild phenylketonuria +12.0275948,MONDO:0020069,http://purl.obolibrary.org/obo/MONDO_0020069,chronic encephalitis +12.0275948,MONDO:0020307,http://purl.obolibrary.org/obo/MONDO_0020307,"benign childhood occipital epilepsy, Panayiotopoulos type" +12.0275948,MONDO:0100064,http://purl.obolibrary.org/obo/MONDO_0100064,tyrosine hydroxylase deficiency +12.0275948,NCBITaxon:104431,http://purl.obolibrary.org/obo/NCBITaxon_104431,Obtectomera +12.0275948,NCBITaxon:5794,http://purl.obolibrary.org/obo/NCBITaxon_5794,Apicomplexa +12.0275948,NCBITaxon:7509,http://purl.obolibrary.org/obo/NCBITaxon_7509,Siphonaptera +12.0275948,PR:000000677,http://purl.obolibrary.org/obo/PR_000000677,shab-related voltage-gated potassium channel alpha subunit +12.0275948,PR:000001428,http://purl.obolibrary.org/obo/PR_000001428,none +12.0275948,PR:000001560,http://purl.obolibrary.org/obo/PR_000001560,uracil nucleotide/cysteinyl leukotriene receptor +12.0275948,PR:000003712,http://purl.obolibrary.org/obo/PR_000003712,disintegrin and metalloproteinase domain-containing protein 15 +12.0275948,PR:000005666,http://purl.obolibrary.org/obo/PR_000005666,contactin-1 +12.0275948,PR:000007079,http://purl.obolibrary.org/obo/PR_000007079,adropin +12.0275948,PR:000008230,http://purl.obolibrary.org/obo/PR_000008230,grainyhead-like protein 2 +12.0275948,PR:000008465,http://purl.obolibrary.org/obo/PR_000008465,HBS1-like protein +12.0275948,PR:000009665,http://purl.obolibrary.org/obo/PR_000009665,lysosomal-associated transmembrane protein 4A +12.0275948,PR:000010312,http://purl.obolibrary.org/obo/PR_000010312,myocyte-specific enhancer factor 2D +12.0275948,PR:000010461,http://purl.obolibrary.org/obo/PR_000010461,"malonyl-CoA decarboxylase, mitochondrial" +12.0275948,PR:000010480,http://purl.obolibrary.org/obo/PR_000010480,matrix metalloproteinase-20 +12.0275948,PR:000010891,http://purl.obolibrary.org/obo/PR_000010891,histone acetyltransferase KAT6B +12.0275948,PR:000010988,http://purl.obolibrary.org/obo/PR_000010988,cytosolic iron-sulfur assembly component 3 +12.0275948,PR:000011272,http://purl.obolibrary.org/obo/PR_000011272,"NACHT, LRR and PYD domains-containing protein 4" +12.0275948,PR:000011637,http://purl.obolibrary.org/obo/PR_000011637,oligodendrocyte-myelin glycoprotein +12.0275948,PR:000012472,http://purl.obolibrary.org/obo/PR_000012472,"cAMP-specific 3',5'-cyclic phosphodiesterase 4A" +12.0275948,PR:000013279,http://purl.obolibrary.org/obo/PR_000013279,U4/U6 small nuclear ribonucleoprotein Prp31 +12.0275948,PR:000013924,http://purl.obolibrary.org/obo/PR_000013924,DNA-binding protein RFX2 +12.0275948,PR:000014930,http://purl.obolibrary.org/obo/PR_000014930,solute carrier family 12 member 7 +12.0275948,PR:000015508,http://purl.obolibrary.org/obo/PR_000015508,SAM pointed domain-containing Ets transcription factor +12.0275948,PR:000017006,http://purl.obolibrary.org/obo/PR_000017006,upstream-binding protein 1 +12.0275948,PR:000017094,http://purl.obolibrary.org/obo/PR_000017094,netrin receptor UNC5B +12.0275948,PR:000017158,http://purl.obolibrary.org/obo/PR_000017158,ubiquitin carboxyl-terminal hydrolase 2 +12.0275948,PR:000022504,http://purl.obolibrary.org/obo/PR_000022504,none +12.0275948,PR:000023872,http://purl.obolibrary.org/obo/PR_000023872,none +12.0275948,PR:000033489,http://purl.obolibrary.org/obo/PR_000033489,none +12.0275948,PR:O49255,http://purl.obolibrary.org/obo/PR_O49255,none +12.0275948,PR:O80337,http://purl.obolibrary.org/obo/PR_O80337,none +12.0275948,PR:P08516,http://purl.obolibrary.org/obo/PR_P08516,none +12.0275948,PR:Q8CDJ8,http://purl.obolibrary.org/obo/PR_Q8CDJ8,none +12.0275948,PR:Q8LDC8,http://purl.obolibrary.org/obo/PR_Q8LDC8,none +12.0275948,PR:Q9SWW6,http://purl.obolibrary.org/obo/PR_Q9SWW6,none +12.0275948,UBERON:0004044,http://purl.obolibrary.org/obo/UBERON_0004044,anterior visceral endoderm +12.0275948,UBERON:0005562,http://purl.obolibrary.org/obo/UBERON_0005562,thymus primordium +12.0275948,UBERON:0016513,http://purl.obolibrary.org/obo/UBERON_0016513,cavity of left atrium +12.0348675,CHEBI:35692,http://purl.obolibrary.org/obo/CHEBI_35692,dicarboxylic acid +12.0348675,CL:0002034,http://purl.obolibrary.org/obo/CL_0002034,long term hematopoietic stem cell +12.0348675,DRUGBANK:DB08980,http://purl.obolibrary.org/obo/DRUGBANK_DB08980,none +12.0348675,DRUGBANK:DB11204,http://purl.obolibrary.org/obo/DRUGBANK_DB11204,none +12.0348675,DRUGBANK:DB11866,http://purl.obolibrary.org/obo/DRUGBANK_DB11866,none +12.0348675,DRUGBANK:DB13359,http://purl.obolibrary.org/obo/DRUGBANK_DB13359,none +12.0348675,DRUGBANK:DB13411,http://purl.obolibrary.org/obo/DRUGBANK_DB13411,none +12.0348675,DRUGBANK:DB13752,http://purl.obolibrary.org/obo/DRUGBANK_DB13752,none +12.0348675,DRUGBANK:DB14122,http://purl.obolibrary.org/obo/DRUGBANK_DB14122,none +12.0348675,GO:0004027,http://purl.obolibrary.org/obo/GO_0004027,alcohol sulfotransferase activity +12.0348675,GO:0004823,http://purl.obolibrary.org/obo/GO_0004823,leucine-tRNA ligase activity +12.0348675,GO:0006505,http://purl.obolibrary.org/obo/GO_0006505,GPI anchor metabolic process +12.0348675,GO:0015889,http://purl.obolibrary.org/obo/GO_0015889,cobalamin transport +12.0348675,GO:0030432,http://purl.obolibrary.org/obo/GO_0030432,peristalsis +12.0348675,GO:0035914,http://purl.obolibrary.org/obo/GO_0035914,skeletal muscle cell differentiation +12.0348675,GO:0043248,http://purl.obolibrary.org/obo/GO_0043248,proteasome assembly +12.0348675,GO:0051651,http://purl.obolibrary.org/obo/GO_0051651,maintenance of location in cell +12.0348675,GO:0055089,http://purl.obolibrary.org/obo/GO_0055089,fatty acid homeostasis +12.0348675,GO:0060123,http://purl.obolibrary.org/obo/GO_0060123,regulation of growth hormone secretion +12.0348675,GO:0060443,http://purl.obolibrary.org/obo/GO_0060443,mammary gland morphogenesis +12.0348675,GO:0061458,http://purl.obolibrary.org/obo/GO_0061458,reproductive system development +12.0348675,GO:0062014,http://purl.obolibrary.org/obo/GO_0062014,negative regulation of small molecule metabolic process +12.0348675,MONDO:0004334,http://purl.obolibrary.org/obo/MONDO_0004334,non-functional pancreatic neuroendocrine tumor +12.0348675,MONDO:0005006,http://purl.obolibrary.org/obo/MONDO_0005006,clear cell sarcoma of kidney +12.0348675,MONDO:0005067,http://purl.obolibrary.org/obo/MONDO_0005067,monophasic synovial sarcoma +12.0348675,MONDO:0005866,http://purl.obolibrary.org/obo/MONDO_0005866,mycobacterium avium complex disease +12.0348675,MONDO:0006444,http://purl.obolibrary.org/obo/MONDO_0006444,teratoma with malignant transformation +12.0348675,MONDO:0006986,http://purl.obolibrary.org/obo/MONDO_0006986,substernal goiter +12.0348675,MONDO:0007462,http://purl.obolibrary.org/obo/MONDO_0007462,"multiple sclerosis, susceptibility to" +12.0348675,MONDO:0008516,http://purl.obolibrary.org/obo/MONDO_0008516,syndactyly type 5 +12.0348675,MONDO:0009096,http://purl.obolibrary.org/obo/MONDO_0009096,hereditary diffuse leukoencephalopathy with axonal spheroids and pigmented glia +12.0348675,MONDO:0009944,http://purl.obolibrary.org/obo/MONDO_0009944,pyloric atresia +12.0348675,MONDO:0011182,http://purl.obolibrary.org/obo/MONDO_0011182,trimethylaminuria +12.0348675,MONDO:0017279,http://purl.obolibrary.org/obo/MONDO_0017279,young-onset Parkinson disease +12.0348675,MONDO:0019270,http://purl.obolibrary.org/obo/MONDO_0019270,erythrokeratoderma +12.0348675,MONDO:0043343,http://purl.obolibrary.org/obo/MONDO_0043343,Chilaiditi syndrome +12.0348675,MONDO:0045049,http://purl.obolibrary.org/obo/MONDO_0045049,hypermature cataract +12.0348675,NCBITaxon:251095,http://purl.obolibrary.org/obo/NCBITaxon_251095,none +12.0348675,NCBITaxon:2732536,http://purl.obolibrary.org/obo/NCBITaxon_2732536,Cirlivirales +12.0348675,NCBITaxon:39725,http://purl.obolibrary.org/obo/NCBITaxon_39725,Circovirus +12.0348675,NCBITaxon:71178,http://purl.obolibrary.org/obo/NCBITaxon_71178,none +12.0348675,NCBITaxon:71179,http://purl.obolibrary.org/obo/NCBITaxon_71179,none +12.0348675,PR:000000124,http://purl.obolibrary.org/obo/PR_000000124,ribosomal protein S6 kinase beta-2 +12.0348675,PR:000005632,http://purl.obolibrary.org/obo/PR_000005632,cyclic nucleotide-gated cation channel beta-1 +12.0348675,PR:000006014,http://purl.obolibrary.org/obo/PR_000006014,cystinosin +12.0348675,PR:000006729,http://purl.obolibrary.org/obo/PR_000006729,dual oxidase maturation factor 1 +12.0348675,PR:000006998,http://purl.obolibrary.org/obo/PR_000006998,eukaryotic translation initiation factor 4 gamma 1 +12.0348675,PR:000009022,http://purl.obolibrary.org/obo/PR_000009022,inosine-5'-monophosphate dehydrogenase 2 +12.0348675,PR:000010969,http://purl.obolibrary.org/obo/PR_000010969,homeobox protein NANOGP8 +12.0348675,PR:000011385,http://purl.obolibrary.org/obo/PR_000011385,FMRFamide-related neuropeptide VF +12.0348675,PR:000013408,http://purl.obolibrary.org/obo/PR_000013408,proline-serine-threonine phosphatase-interacting protein 1 +12.0348675,PR:000013481,http://purl.obolibrary.org/obo/PR_000013481,receptor-type tyrosine-protein phosphatase U +12.0348675,PR:000013716,http://purl.obolibrary.org/obo/PR_000013716,Ran-binding protein 9 +12.0348675,PR:000014764,http://purl.obolibrary.org/obo/PR_000014764,serine/arginine-rich splicing factor 7 +12.0348675,PR:000016578,http://purl.obolibrary.org/obo/PR_000016578,thiamin pyrophosphokinase 1 +12.0348675,PR:000017007,http://purl.obolibrary.org/obo/PR_000017007,ubiquilin-1 +12.0348675,PR:000022853,http://purl.obolibrary.org/obo/PR_000022853,none +12.0348675,PR:000022899,http://purl.obolibrary.org/obo/PR_000022899,none +12.0348675,PR:000022938,http://purl.obolibrary.org/obo/PR_000022938,none +12.0348675,PR:000023030,http://purl.obolibrary.org/obo/PR_000023030,none +12.0348675,PR:000023541,http://purl.obolibrary.org/obo/PR_000023541,none +12.0348675,PR:O42766,http://purl.obolibrary.org/obo/PR_O42766,none +12.0348675,PR:P11872,http://purl.obolibrary.org/obo/PR_P11872,none +12.0348675,PR:P18106,http://purl.obolibrary.org/obo/PR_P18106,none +12.0348675,PR:P21269,http://purl.obolibrary.org/obo/PR_P21269,none +12.0348675,PR:P35679,http://purl.obolibrary.org/obo/PR_P35679,none +12.0348675,PR:P54675,http://purl.obolibrary.org/obo/PR_P54675,none +12.0348675,PR:P54704,http://purl.obolibrary.org/obo/PR_P54704,none +12.0348675,PR:Q38853,http://purl.obolibrary.org/obo/PR_Q38853,none +12.0348675,PR:Q8CGK6,http://purl.obolibrary.org/obo/PR_Q8CGK6,none +12.0348675,PR:Q9W6A8,http://purl.obolibrary.org/obo/PR_Q9W6A8,none +12.0348675,UBERON:0001608,http://purl.obolibrary.org/obo/UBERON_0001608,dilatator pupillae +12.0348675,UBERON:0002446,http://purl.obolibrary.org/obo/UBERON_0002446,patella +12.0348675,UBERON:0003975,http://purl.obolibrary.org/obo/UBERON_0003975,internal female genitalia +12.0348675,UBERON:0009709,http://purl.obolibrary.org/obo/UBERON_0009709,ventral pancreas +12.0348675,UBERON:0011270,http://purl.obolibrary.org/obo/UBERON_0011270,dorsal trunk +12.0348675,UBERON:0012324,http://purl.obolibrary.org/obo/UBERON_0012324,transverse cervical artery +12.0421936,CHEBI:35552,http://purl.obolibrary.org/obo/CHEBI_35552,heterocyclic organic fundamental parent +12.0421936,CL:0000468,http://purl.obolibrary.org/obo/CL_0000468,neuroglioblast (sensu Nematoda and Protostomia) +12.0421936,CL:0000704,http://purl.obolibrary.org/obo/CL_0000704,endothelial tip cell +12.0421936,DRUGBANK:DB00256,http://purl.obolibrary.org/obo/DRUGBANK_DB00256,none +12.0421936,DRUGBANK:DB01608,http://purl.obolibrary.org/obo/DRUGBANK_DB01608,none +12.0421936,DRUGBANK:DB01622,http://purl.obolibrary.org/obo/DRUGBANK_DB01622,none +12.0421936,DRUGBANK:DB04575,http://purl.obolibrary.org/obo/DRUGBANK_DB04575,none +12.0421936,DRUGBANK:DB06202,http://purl.obolibrary.org/obo/DRUGBANK_DB06202,none +12.0421936,DRUGBANK:DB08985,http://purl.obolibrary.org/obo/DRUGBANK_DB08985,none +12.0421936,DRUGBANK:DB11024,http://purl.obolibrary.org/obo/DRUGBANK_DB11024,none +12.0421936,DRUGBANK:DB11869,http://purl.obolibrary.org/obo/DRUGBANK_DB11869,none +12.0421936,DRUGBANK:DB13742,http://purl.obolibrary.org/obo/DRUGBANK_DB13742,none +12.0421936,DRUGBANK:DB14506,http://purl.obolibrary.org/obo/DRUGBANK_DB14506,none +12.0421936,DRUGBANK:DB14645,http://purl.obolibrary.org/obo/DRUGBANK_DB14645,none +12.0421936,GO:0001895,http://purl.obolibrary.org/obo/GO_0001895,retina homeostasis +12.0421936,GO:0003846,http://purl.obolibrary.org/obo/GO_0003846,2-acylglycerol O-acyltransferase activity +12.0421936,GO:0006706,http://purl.obolibrary.org/obo/GO_0006706,steroid catabolic process +12.0421936,GO:0015878,http://purl.obolibrary.org/obo/GO_0015878,biotin transport +12.0421936,GO:0016574,http://purl.obolibrary.org/obo/GO_0016574,histone ubiquitination +12.0421936,GO:0030131,http://purl.obolibrary.org/obo/GO_0030131,clathrin adaptor complex +12.0421936,GO:0030900,http://purl.obolibrary.org/obo/GO_0030900,forebrain development +12.0421936,GO:0031262,http://purl.obolibrary.org/obo/GO_0031262,Ndc80 complex +12.0421936,GO:0043092,http://purl.obolibrary.org/obo/GO_0043092,none +12.0421936,GO:0060319,http://purl.obolibrary.org/obo/GO_0060319,primitive erythrocyte differentiation +12.0421936,GO:0071836,http://purl.obolibrary.org/obo/GO_0071836,nectar secretion +12.0421936,GO:1904880,http://purl.obolibrary.org/obo/GO_1904880,response to hydrogen sulfide +12.0421936,MONDO:0001265,http://purl.obolibrary.org/obo/MONDO_0001265,schizophreniform disorder +12.0421936,MONDO:0002583,http://purl.obolibrary.org/obo/MONDO_0002583,mucinous ovarian cystadenoma +12.0421936,MONDO:0009055,http://purl.obolibrary.org/obo/MONDO_0009055,cutis marmorata telangiectatica congenita +12.0421936,MONDO:0009341,http://purl.obolibrary.org/obo/MONDO_0009341,Mowat-Wilson syndrome +12.0421936,MONDO:0021020,http://purl.obolibrary.org/obo/MONDO_0021020,Crigler-Najjar syndrome type 1 +12.0421936,MONDO:0021437,http://purl.obolibrary.org/obo/MONDO_0021437,lipoma of stomach +12.0421936,NCBITaxon:2732538,http://purl.obolibrary.org/obo/NCBITaxon_2732538,none +12.0421936,NCBITaxon:38525,http://purl.obolibrary.org/obo/NCBITaxon_38525,Avian metapneumovirus +12.0421936,PR:000001304,http://purl.obolibrary.org/obo/PR_000001304,CD300 molecule-like protein +12.0421936,PR:000004306,http://purl.obolibrary.org/obo/PR_000004306,aryl hydrocarbon receptor nuclear translocator-like protein 2 +12.0421936,PR:000005066,http://purl.obolibrary.org/obo/PR_000005066,"calcium uptake protein 1, mitochondrial" +12.0421936,PR:000005446,http://purl.obolibrary.org/obo/PR_000005446,calcineurin B homologous protein 1 +12.0421936,PR:000006666,http://purl.obolibrary.org/obo/PR_000006666,developmental pluripotency-associated protein 3 +12.0421936,PR:000007639,http://purl.obolibrary.org/obo/PR_000007639,forkhead box protein N4 +12.0421936,PR:000009323,http://purl.obolibrary.org/obo/PR_000009323,kinesin-like protein KIFC1 +12.0421936,PR:000009971,http://purl.obolibrary.org/obo/PR_000009971,target of rapamycin complex subunit LST8 +12.0421936,PR:000011623,http://purl.obolibrary.org/obo/PR_000011623,noelin +12.0421936,PR:000012481,http://purl.obolibrary.org/obo/PR_000012481,"retinal rod rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit delta" +12.0421936,PR:000014009,http://purl.obolibrary.org/obo/PR_000014009,regulating synaptic membrane exocytosis protein 1 +12.0421936,PR:000014297,http://purl.obolibrary.org/obo/PR_000014297,Ras-related GTP-binding protein A +12.0421936,PR:000014477,http://purl.obolibrary.org/obo/PR_000014477,protein strawberry notch homolog 2 +12.0421936,PR:000014645,http://purl.obolibrary.org/obo/PR_000014645,selenoprotein N +12.0421936,PR:000014663,http://purl.obolibrary.org/obo/PR_000014663,methionine-R-sulfoxide reductase B1 +12.0421936,PR:000015260,http://purl.obolibrary.org/obo/PR_000015260,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 5 +12.0421936,PR:000015464,http://purl.obolibrary.org/obo/PR_000015464,hyaluronidase PH-20 +12.0421936,PR:000015772,http://purl.obolibrary.org/obo/PR_000015772,receptor for retinol uptake STRA6 +12.0421936,PR:000016152,http://purl.obolibrary.org/obo/PR_000016152,T-box transcription factor TBX4 +12.0421936,PR:000016959,http://purl.obolibrary.org/obo/PR_000016959,ubiquitin-associated protein 2 +12.0421936,PR:000017260,http://purl.obolibrary.org/obo/PR_000017260,tubulinyl-Tyr carboxypeptidase 1 +12.0421936,PR:000023323,http://purl.obolibrary.org/obo/PR_000023323,none +12.0421936,PR:000023499,http://purl.obolibrary.org/obo/PR_000023499,none +12.0421936,PR:000024199,http://purl.obolibrary.org/obo/PR_000024199,none +12.0421936,PR:000031095,http://purl.obolibrary.org/obo/PR_000031095,iroquois-class homeodomain protein IRX-3 +12.0421936,PR:F4K0E8,http://purl.obolibrary.org/obo/PR_F4K0E8,none +12.0421936,PR:P58234,http://purl.obolibrary.org/obo/PR_P58234,none +12.0421936,PR:Q23889,http://purl.obolibrary.org/obo/PR_Q23889,none +12.0421936,PR:Q38866,http://purl.obolibrary.org/obo/PR_Q38866,none +12.0421936,PR:Q7KS38,http://purl.obolibrary.org/obo/PR_Q7KS38,none +12.0421936,PR:Q8CFD9,http://purl.obolibrary.org/obo/PR_Q8CFD9,none +12.0421936,PR:Q941L0,http://purl.obolibrary.org/obo/PR_Q941L0,none +12.0421936,PR:Q9VQ93,http://purl.obolibrary.org/obo/PR_Q9VQ93,none +12.0421936,SO:0000768,http://purl.obolibrary.org/obo/SO_0000768,episome +12.0421936,SO:0000828,http://purl.obolibrary.org/obo/SO_0000828,nuclear_chromosome +12.0421936,SO:0000840,http://purl.obolibrary.org/obo/SO_0000840,repeat_component +12.0421936,UBERON:0001565,http://purl.obolibrary.org/obo/UBERON_0001565,geniohyoid muscle +12.0421936,UBERON:0001907,http://purl.obolibrary.org/obo/UBERON_0001907,zona incerta +12.0421936,UBERON:0009971,http://purl.obolibrary.org/obo/UBERON_0009971,principal gastric gland +12.0421936,UBERON:0010943,http://purl.obolibrary.org/obo/UBERON_0010943,anterior digastric muscle +12.0495737,DRUGBANK:DB00217,http://purl.obolibrary.org/obo/DRUGBANK_DB00217,none +12.0495737,DRUGBANK:DB04165,http://purl.obolibrary.org/obo/DRUGBANK_DB04165,none +12.0495737,DRUGBANK:DB04785,http://purl.obolibrary.org/obo/DRUGBANK_DB04785,none +12.0495737,DRUGBANK:DB04838,http://purl.obolibrary.org/obo/DRUGBANK_DB04838,none +12.0495737,DRUGBANK:DB05105,http://purl.obolibrary.org/obo/DRUGBANK_DB05105,none +12.0495737,DRUGBANK:DB06738,http://purl.obolibrary.org/obo/DRUGBANK_DB06738,none +12.0495737,DRUGBANK:DB11892,http://purl.obolibrary.org/obo/DRUGBANK_DB11892,none +12.0495737,DRUGBANK:DB12235,http://purl.obolibrary.org/obo/DRUGBANK_DB12235,none +12.0495737,DRUGBANK:DB12704,http://purl.obolibrary.org/obo/DRUGBANK_DB12704,none +12.0495737,DRUGBANK:DB13722,http://purl.obolibrary.org/obo/DRUGBANK_DB13722,none +12.0495737,DRUGBANK:DB15329,http://purl.obolibrary.org/obo/DRUGBANK_DB15329,none +12.0495737,DRUGBANK:DB15949,http://purl.obolibrary.org/obo/DRUGBANK_DB15949,none +12.0495737,GO:0004615,http://purl.obolibrary.org/obo/GO_0004615,phosphomannomutase activity +12.0495737,GO:0006892,http://purl.obolibrary.org/obo/GO_0006892,post-Golgi vesicle-mediated transport +12.0495737,GO:0017085,http://purl.obolibrary.org/obo/GO_0017085,response to insecticide +12.0495737,GO:0036005,http://purl.obolibrary.org/obo/GO_0036005,response to macrophage colony-stimulating factor +12.0495737,GO:0071345,http://purl.obolibrary.org/obo/GO_0071345,cellular response to cytokine stimulus +12.0495737,GO:0097571,http://purl.obolibrary.org/obo/GO_0097571,left nucleus +12.0495737,GO:1990008,http://purl.obolibrary.org/obo/GO_1990008,neurosecretory vesicle +12.0495737,HP:0002072,http://purl.obolibrary.org/obo/HP_0002072,Chorea +12.0495737,MONDO:0003513,http://purl.obolibrary.org/obo/MONDO_0003513,gastric teratoma +12.0495737,MONDO:0005973,http://purl.obolibrary.org/obo/MONDO_0005973,Strongylida infectious disease +12.0495737,MONDO:0006471,http://purl.obolibrary.org/obo/MONDO_0006471,tracheal adenoid cystic carcinoma +12.0495737,MONDO:0006611,http://purl.obolibrary.org/obo/MONDO_0006611,skin sarcoidosis +12.0495737,MONDO:0006682,http://purl.obolibrary.org/obo/MONDO_0006682,brachial plexus neuritis +12.0495737,MONDO:0015274,http://purl.obolibrary.org/obo/MONDO_0015274,chronic beryllium disease +12.0495737,MONDO:0015535,http://purl.obolibrary.org/obo/MONDO_0015535,xanthoma disseminatum +12.0495737,MONDO:0015932,http://purl.obolibrary.org/obo/MONDO_0015932,non-syndromic urogenital tract malformation of female +12.0495737,MONDO:0016980,http://purl.obolibrary.org/obo/MONDO_0016980,ATR-X-related syndrome +12.0495737,MONDO:0017886,http://purl.obolibrary.org/obo/MONDO_0017886,MIT family translocation renal cell carcinoma +12.0495737,MONDO:0018535,http://purl.obolibrary.org/obo/MONDO_0018535,biliary cystadenocarcinoma +12.0495737,MONDO:0018690,http://purl.obolibrary.org/obo/MONDO_0018690,Holmes-Adie syndrome +12.0495737,MONDO:0020093,http://purl.obolibrary.org/obo/MONDO_0020093,autosomal dominant isolated diffuse palmoplantar keratoderma +12.0495737,NCBITaxon:6933,http://purl.obolibrary.org/obo/NCBITaxon_6933,Acari +12.0495737,PR:000001180,http://purl.obolibrary.org/obo/PR_000001180,opsin-5 +12.0495737,PR:000003539,http://purl.obolibrary.org/obo/PR_000003539,ATP-binding cassette sub-family A member 12 +12.0495737,PR:000004128,http://purl.obolibrary.org/obo/PR_000004128,DNA-(apurinic or apyrimidinic site) endonuclease 2 +12.0495737,PR:000005199,http://purl.obolibrary.org/obo/PR_000005199,cyclin-dependent kinase 19 +12.0495737,PR:000006599,http://purl.obolibrary.org/obo/PR_000006599,delta and Notch-like epidermal growth factor-related receptor +12.0495737,PR:000007604,http://purl.obolibrary.org/obo/PR_000007604,hepatocyte nuclear factor 3-gamma +12.0495737,PR:000008885,http://purl.obolibrary.org/obo/PR_000008885,immature colon carcinoma transcript 1 protein +12.0495737,PR:000010332,http://purl.obolibrary.org/obo/PR_000010332,mesoderm posterior protein 1 +12.0495737,PR:000010672,http://purl.obolibrary.org/obo/PR_000010672,RNA-binding protein Musashi homolog 2 +12.0495737,PR:000010944,http://purl.obolibrary.org/obo/PR_000010944,N-acylethanolamine-hydrolyzing acid amidase +12.0495737,PR:000010953,http://purl.obolibrary.org/obo/PR_000010953,nucleus accumbens-associated protein 1 +12.0495737,PR:000011605,http://purl.obolibrary.org/obo/PR_000011605,protein odr-4 +12.0495737,PR:000015358,http://purl.obolibrary.org/obo/PR_000015358,sorting nexin-1 +12.0495737,PR:000015701,http://purl.obolibrary.org/obo/PR_000015701,stabilin-1 +12.0495737,PR:000015741,http://purl.obolibrary.org/obo/PR_000015741,serine/threonine-protein kinase 11-interacting protein +12.0495737,PR:000022878,http://purl.obolibrary.org/obo/PR_000022878,none +12.0495737,PR:000023597,http://purl.obolibrary.org/obo/PR_000023597,none +12.0495737,PR:000023631,http://purl.obolibrary.org/obo/PR_000023631,none +12.0495737,PR:000032283,http://purl.obolibrary.org/obo/PR_000032283,KN motif and ankyrin repeat domain-containing protein 2 +12.0495737,PR:Q39102,http://purl.obolibrary.org/obo/PR_Q39102,none +12.0495737,PR:Q3LHH8,http://purl.obolibrary.org/obo/PR_Q3LHH8,none +12.0495737,SO:0001834,http://purl.obolibrary.org/obo/SO_0001834,C_region +12.0495737,UBERON:0002093,http://purl.obolibrary.org/obo/UBERON_0002093,spinal dura mater +12.0495737,UBERON:0002260,http://purl.obolibrary.org/obo/UBERON_0002260,ventral root of spinal cord +12.0495737,UBERON:0002397,http://purl.obolibrary.org/obo/UBERON_0002397,maxilla +12.0495737,UBERON:0004070,http://purl.obolibrary.org/obo/UBERON_0004070,cerebellum vermis lobule +12.0495737,UBERON:0012449,http://purl.obolibrary.org/obo/UBERON_0012449,mechanoreceptor +12.0495737,UBERON:1000023,http://purl.obolibrary.org/obo/UBERON_1000023,spleen pulp +12.0570087,CHEBI:17022,http://purl.obolibrary.org/obo/CHEBI_17022,tRNA guanine +12.0570087,CHEBI:33969,http://purl.obolibrary.org/obo/CHEBI_33969,gold molecular entity +12.0570087,CHEBI:35722,http://purl.obolibrary.org/obo/CHEBI_35722,sulfated glycosaminoglycan +12.0570087,CHEBI:48356,http://purl.obolibrary.org/obo/CHEBI_48356,protic solvent +12.0570087,CHEBI:59549,http://purl.obolibrary.org/obo/CHEBI_59549,essential fatty acid +12.0570087,CHEBI:60649,http://purl.obolibrary.org/obo/CHEBI_60649,glucagon receptor antagonist +12.0570087,CL:0000345,http://purl.obolibrary.org/obo/CL_0000345,dental papilla cell +12.0570087,CL:0002128,http://purl.obolibrary.org/obo/CL_0002128,Tc17 cell +12.0570087,DRUGBANK:DB01209,http://purl.obolibrary.org/obo/DRUGBANK_DB01209,none +12.0570087,DRUGBANK:DB01251,http://purl.obolibrary.org/obo/DRUGBANK_DB01251,none +12.0570087,DRUGBANK:DB01336,http://purl.obolibrary.org/obo/DRUGBANK_DB01336,none +12.0570087,DRUGBANK:DB04498,http://purl.obolibrary.org/obo/DRUGBANK_DB04498,none +12.0570087,DRUGBANK:DB11127,http://purl.obolibrary.org/obo/DRUGBANK_DB11127,none +12.0570087,DRUGBANK:DB12340,http://purl.obolibrary.org/obo/DRUGBANK_DB12340,none +12.0570087,DRUGBANK:DB13483,http://purl.obolibrary.org/obo/DRUGBANK_DB13483,none +12.0570087,DRUGBANK:DB14303,http://purl.obolibrary.org/obo/DRUGBANK_DB14303,none +12.0570087,GO:0004561,http://purl.obolibrary.org/obo/GO_0004561,alpha-N-acetylglucosaminidase activity +12.0570087,GO:0004757,http://purl.obolibrary.org/obo/GO_0004757,sepiapterin reductase activity +12.0570087,GO:0006506,http://purl.obolibrary.org/obo/GO_0006506,GPI anchor biosynthetic process +12.0570087,GO:0007043,http://purl.obolibrary.org/obo/GO_0007043,cell-cell junction assembly +12.0570087,GO:0008897,http://purl.obolibrary.org/obo/GO_0008897,holo-[acyl-carrier-protein] synthase activity +12.0570087,GO:0014044,http://purl.obolibrary.org/obo/GO_0014044,Schwann cell development +12.0570087,GO:0015750,http://purl.obolibrary.org/obo/GO_0015750,pentose transmembrane transport +12.0570087,GO:0015817,http://purl.obolibrary.org/obo/GO_0015817,histidine transport +12.0570087,GO:0032218,http://purl.obolibrary.org/obo/GO_0032218,riboflavin transport +12.0570087,GO:0032371,http://purl.obolibrary.org/obo/GO_0032371,regulation of sterol transport +12.0570087,GO:0043142,http://purl.obolibrary.org/obo/GO_0043142,none +12.0570087,GO:0060191,http://purl.obolibrary.org/obo/GO_0060191,regulation of lipase activity +12.0570087,MONDO:0003761,http://purl.obolibrary.org/obo/MONDO_0003761,leptomeningeal melanoma +12.0570087,MONDO:0004769,http://purl.obolibrary.org/obo/MONDO_0004769,orbital plasma cell granuloma +12.0570087,MONDO:0005543,http://purl.obolibrary.org/obo/MONDO_0005543,autoimmune hepatitis type 1 +12.0570087,MONDO:0010913,http://purl.obolibrary.org/obo/MONDO_0010913,Caroli disease +12.0570087,MONDO:0012725,http://purl.obolibrary.org/obo/MONDO_0012725,lipoprotein glomerulopathy +12.0570087,MONDO:0016746,http://purl.obolibrary.org/obo/MONDO_0016746,meningeal melanocytoma +12.0570087,NCBITaxon:10634,http://purl.obolibrary.org/obo/NCBITaxon_10634,none +12.0570087,NCBITaxon:35246,http://purl.obolibrary.org/obo/NCBITaxon_35246,none +12.0570087,PR:000003353,http://purl.obolibrary.org/obo/PR_000003353,collagen alpha-1(VI) chain +12.0570087,PR:000003904,http://purl.obolibrary.org/obo/PR_000003904,aldo-keto reductase family 1 member C2 +12.0570087,PR:000005082,http://purl.obolibrary.org/obo/PR_000005082,chromobox protein homolog 1 +12.0570087,PR:000005608,http://purl.obolibrary.org/obo/PR_000005608,claspin +12.0570087,PR:000006578,http://purl.obolibrary.org/obo/PR_000006578,DnaJ homolog subfamily B member 9 +12.0570087,PR:000007015,http://purl.obolibrary.org/obo/PR_000007015,zinc phosphodiesterase ELAC protein 2 +12.0570087,PR:000009794,http://purl.obolibrary.org/obo/PR_000009794,LIM/homeobox protein Lhx4 +12.0570087,PR:000010222,http://purl.obolibrary.org/obo/PR_000010222,muscleblind-like protein 2 +12.0570087,PR:000012653,http://purl.obolibrary.org/obo/PR_000012653,PHD finger protein 6 +12.0570087,PR:000014811,http://purl.obolibrary.org/obo/PR_000014811,SH2B adapter protein 3 +12.0570087,PR:000014927,http://purl.obolibrary.org/obo/PR_000014927,solute carrier family 12 member 4 +12.0570087,PR:000015208,http://purl.obolibrary.org/obo/PR_000015208,sodium/calcium exchanger 2 +12.0570087,PR:000015299,http://purl.obolibrary.org/obo/PR_000015299,submaxillary gland androgen-regulated protein 3A +12.0570087,PR:000016303,http://purl.obolibrary.org/obo/PR_000016303,THAP domain-containing protein 1 +12.0570087,PR:000017294,http://purl.obolibrary.org/obo/PR_000017294,von Hippel-Lindau disease tumor suppressor +12.0570087,PR:000022500,http://purl.obolibrary.org/obo/PR_000022500,none +12.0570087,PR:000022876,http://purl.obolibrary.org/obo/PR_000022876,none +12.0570087,PR:000023930,http://purl.obolibrary.org/obo/PR_000023930,none +12.0570087,PR:000023961,http://purl.obolibrary.org/obo/PR_000023961,none +12.0570087,PR:000024048,http://purl.obolibrary.org/obo/PR_000024048,none +12.0570087,PR:000029794,http://purl.obolibrary.org/obo/PR_000029794,mitochondrial import inner membrane translocase subunit Tim8 A +12.0570087,PR:O48963,http://purl.obolibrary.org/obo/PR_O48963,none +12.0570087,PR:P17679,http://purl.obolibrary.org/obo/PR_P17679,none +12.0570087,PR:Q42202,http://purl.obolibrary.org/obo/PR_Q42202,none +12.0570087,PR:Q54DT1,http://purl.obolibrary.org/obo/PR_Q54DT1,none +12.0570087,PR:Q9SCX8,http://purl.obolibrary.org/obo/PR_Q9SCX8,none +12.0570087,UBERON:0000480,http://purl.obolibrary.org/obo/UBERON_0000480,anatomical group +12.0570087,UBERON:0001237,http://purl.obolibrary.org/obo/UBERON_0001237,paraaortic body +12.0570087,UBERON:0002649,http://purl.obolibrary.org/obo/UBERON_0002649,dorsolateral fasciculus of medulla +12.0570087,UBERON:0006534,http://purl.obolibrary.org/obo/UBERON_0006534,renal convoluted tubule +12.0570087,UBERON:0006651,http://purl.obolibrary.org/obo/UBERON_0006651,appendix testis +12.0570087,UBERON:0012279,http://purl.obolibrary.org/obo/UBERON_0012279,chromaffin paraganglion +12.0570087,UBERON:0013139,http://purl.obolibrary.org/obo/UBERON_0013139,ligament of liver +12.0570087,UBERON:2005144,http://purl.obolibrary.org/obo/UBERON_2005144,ampullary nerve +12.0644993,CHEBI:27136,http://purl.obolibrary.org/obo/CHEBI_27136,triol +12.0644993,CL:0000246,http://purl.obolibrary.org/obo/CL_0000246,Mauthner neuron +12.0644993,DRUGBANK:DB01144,http://purl.obolibrary.org/obo/DRUGBANK_DB01144,none +12.0644993,DRUGBANK:DB01348,http://purl.obolibrary.org/obo/DRUGBANK_DB01348,none +12.0644993,DRUGBANK:DB13511,http://purl.obolibrary.org/obo/DRUGBANK_DB13511,none +12.0644993,DRUGBANK:DB15832,http://purl.obolibrary.org/obo/DRUGBANK_DB15832,none +12.0644993,GO:0000930,http://purl.obolibrary.org/obo/GO_0000930,gamma-tubulin complex +12.0644993,GO:0002369,http://purl.obolibrary.org/obo/GO_0002369,T cell cytokine production +12.0644993,GO:0002431,http://purl.obolibrary.org/obo/GO_0002431,Fc receptor mediated stimulatory signaling pathway +12.0644993,GO:0004127,http://purl.obolibrary.org/obo/GO_0004127,cytidylate kinase activity +12.0644993,GO:0010410,http://purl.obolibrary.org/obo/GO_0010410,hemicellulose metabolic process +12.0644993,GO:0015026,http://purl.obolibrary.org/obo/GO_0015026,coreceptor activity +12.0644993,GO:0015760,http://purl.obolibrary.org/obo/GO_0015760,glucose-6-phosphate transport +12.0644993,GO:0019530,http://purl.obolibrary.org/obo/GO_0019530,taurine metabolic process +12.0644993,GO:0019694,http://purl.obolibrary.org/obo/GO_0019694,alkanesulfonate metabolic process +12.0644993,GO:0043062,http://purl.obolibrary.org/obo/GO_0043062,extracellular structure organization +12.0644993,GO:0061448,http://purl.obolibrary.org/obo/GO_0061448,connective tissue development +12.0644993,GO:0061501,http://purl.obolibrary.org/obo/GO_0061501,"2',3'-cyclic GMP-AMP synthase activity" +12.0644993,GO:0072384,http://purl.obolibrary.org/obo/GO_0072384,organelle transport along microtubule +12.0644993,GO:0075259,http://purl.obolibrary.org/obo/GO_0075259,spore-bearing structure development +12.0644993,GO:0140699,http://purl.obolibrary.org/obo/GO_0140699,cyclic GMP-AMP synthase activity +12.0644993,GO:1903900,http://purl.obolibrary.org/obo/GO_1903900,regulation of viral life cycle +12.0644993,HP:0000966,http://purl.obolibrary.org/obo/HP_0000966,Hypohidrosis +12.0644993,MONDO:0000212,http://purl.obolibrary.org/obo/MONDO_0000212,"hypercalcemia, infantile" +12.0644993,MONDO:0005418,http://purl.obolibrary.org/obo/MONDO_0005418,non-compaction cardiomyopathy +12.0644993,MONDO:0006045,http://purl.obolibrary.org/obo/MONDO_0006045,ovarian clear cell adenocarcinoma +12.0644993,MONDO:0007319,http://purl.obolibrary.org/obo/MONDO_0007319,chondrocalcinosis 2 +12.0644993,MONDO:0011652,http://purl.obolibrary.org/obo/MONDO_0011652,Phelan-McDermid syndrome +12.0644993,MONDO:0013343,http://purl.obolibrary.org/obo/MONDO_0013343,C1Q deficiency +12.0644993,MONDO:0017272,http://purl.obolibrary.org/obo/MONDO_0017272,autosomal ichthyosis syndrome with prominent neurologics signs +12.0644993,MONDO:0017759,http://purl.obolibrary.org/obo/MONDO_0017759,disorder of catecholamine synthesis +12.0644993,MONDO:0018066,http://purl.obolibrary.org/obo/MONDO_0018066,trisomy X +12.0644993,MONDO:0018162,http://purl.obolibrary.org/obo/MONDO_0018162,neurometabolic disorder due to serine deficiency +12.0644993,MONDO:0019085,http://purl.obolibrary.org/obo/MONDO_0019085,vernal keratoconjunctivitis +12.0644993,MONDO:0019595,http://purl.obolibrary.org/obo/MONDO_0019595,"46,XY disorder of sex development due to adrenal and testicular steroidogenesis defect" +12.0644993,NCBITaxon:31552,http://purl.obolibrary.org/obo/NCBITaxon_31552,none +12.0644993,NCBITaxon:7371,http://purl.obolibrary.org/obo/NCBITaxon_7371,Calliphoridae +12.0644993,PR:000001658,http://purl.obolibrary.org/obo/PR_000001658,prostaglandin E2 receptor EP2 subtype +12.0644993,PR:000001680,http://purl.obolibrary.org/obo/PR_000001680,trace amine-associated receptor 6-9 +12.0644993,PR:000005502,http://purl.obolibrary.org/obo/PR_000005502,CDGSH iron-sulfur domain-containing protein 2 +12.0644993,PR:000005996,http://purl.obolibrary.org/obo/PR_000005996,di-N-acetylchitobiase +12.0644993,PR:000007811,http://purl.obolibrary.org/obo/PR_000007811,galactocerebrosidase +12.0644993,PR:000007825,http://purl.obolibrary.org/obo/PR_000007825,polypeptide N-acetylgalactosaminyltransferase 3 +12.0644993,PR:000007899,http://purl.obolibrary.org/obo/PR_000007899,chorion-specific transcription factor GCMa +12.0644993,PR:000008042,http://purl.obolibrary.org/obo/PR_000008042,glycine receptor subunit alpha-1 +12.0644993,PR:000009979,http://purl.obolibrary.org/obo/PR_000009979,leukocyte tyrosine kinase receptor +12.0644993,PR:000010145,http://purl.obolibrary.org/obo/PR_000010145,mitogen-activated protein kinase kinase kinase kinase 3 +12.0644993,PR:000014636,http://purl.obolibrary.org/obo/PR_000014636,sentrin-specific protease 2 +12.0644993,PR:000014901,http://purl.obolibrary.org/obo/PR_000014901,homeobox protein SIX6 +12.0644993,PR:000015323,http://purl.obolibrary.org/obo/PR_000015323,synphilin-1 +12.0644993,PR:000015935,http://purl.obolibrary.org/obo/PR_000015935,none +12.0644993,PR:000023622,http://purl.obolibrary.org/obo/PR_000023622,none +12.0644993,PR:000025843,http://purl.obolibrary.org/obo/PR_000025843,copine +12.0644993,PR:000029822,http://purl.obolibrary.org/obo/PR_000029822,E3 ubiquitin-protein ligase TRIM39 +12.0644993,PR:000031407,http://purl.obolibrary.org/obo/PR_000031407,"POU domain, class 3, transcription factor 3" +12.0644993,PR:P40376,http://purl.obolibrary.org/obo/PR_P40376,none +12.0644993,PR:Q0WNX9,http://purl.obolibrary.org/obo/PR_Q0WNX9,none +12.0644993,PR:Q12421,http://purl.obolibrary.org/obo/PR_Q12421,none +12.0644993,PR:Q98917,http://purl.obolibrary.org/obo/PR_Q98917,none +12.0644993,PR:Q9C7B1,http://purl.obolibrary.org/obo/PR_Q9C7B1,none +12.0644993,PR:Q9LYN8,http://purl.obolibrary.org/obo/PR_Q9LYN8,none +12.0644993,SO:0001014,http://purl.obolibrary.org/obo/SO_0001014,intron_domain +12.0644993,UBERON:0004758,http://purl.obolibrary.org/obo/UBERON_0004758,salt gland +12.0644993,UBERON:0006318,http://purl.obolibrary.org/obo/UBERON_0006318,orbitalis muscle +12.0644993,UBERON:0007628,http://purl.obolibrary.org/obo/UBERON_0007628,lateral septal complex +12.0644993,UBERON:0012118,http://purl.obolibrary.org/obo/UBERON_0012118,infraspinatus tendon +12.0644993,UBERON:0015599,http://purl.obolibrary.org/obo/UBERON_0015599,genu of corpus callosum +12.0720465,CHEBI:36233,http://purl.obolibrary.org/obo/CHEBI_36233,disaccharide +12.0720465,CHEBI:64018,http://purl.obolibrary.org/obo/CHEBI_64018,protein kinase C agonist +12.0720465,DRUGBANK:DB02189,http://purl.obolibrary.org/obo/DRUGBANK_DB02189,none +12.0720465,DRUGBANK:DB04328,http://purl.obolibrary.org/obo/DRUGBANK_DB04328,none +12.0720465,DRUGBANK:DB04604,http://purl.obolibrary.org/obo/DRUGBANK_DB04604,none +12.0720465,DRUGBANK:DB04657,http://purl.obolibrary.org/obo/DRUGBANK_DB04657,none +12.0720465,DRUGBANK:DB05316,http://purl.obolibrary.org/obo/DRUGBANK_DB05316,none +12.0720465,DRUGBANK:DB08688,http://purl.obolibrary.org/obo/DRUGBANK_DB08688,none +12.0720465,DRUGBANK:DB09116,http://purl.obolibrary.org/obo/DRUGBANK_DB09116,none +12.0720465,DRUGBANK:DB09527,http://purl.obolibrary.org/obo/DRUGBANK_DB09527,none +12.0720465,DRUGBANK:DB12364,http://purl.obolibrary.org/obo/DRUGBANK_DB12364,none +12.0720465,DRUGBANK:DB12791,http://purl.obolibrary.org/obo/DRUGBANK_DB12791,none +12.0720465,GO:0001716,http://purl.obolibrary.org/obo/GO_0001716,L-amino-acid oxidase activity +12.0720465,GO:0004613,http://purl.obolibrary.org/obo/GO_0004613,phosphoenolpyruvate carboxykinase (GTP) activity +12.0720465,GO:0004835,http://purl.obolibrary.org/obo/GO_0004835,tubulin-tyrosine ligase activity +12.0720465,GO:0008196,http://purl.obolibrary.org/obo/GO_0008196,vitellogenin receptor activity +12.0720465,GO:0030198,http://purl.obolibrary.org/obo/GO_0030198,extracellular matrix organization +12.0720465,GO:0042910,http://purl.obolibrary.org/obo/GO_0042910,xenobiotic transmembrane transporter activity +12.0720465,GO:0043692,http://purl.obolibrary.org/obo/GO_0043692,monoterpene metabolic process +12.0720465,GO:0046992,http://purl.obolibrary.org/obo/GO_0046992,"oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond" +12.0720465,GO:0051654,http://purl.obolibrary.org/obo/GO_0051654,establishment of mitochondrion localization +12.0720465,GO:0070451,http://purl.obolibrary.org/obo/GO_0070451,cell hair +12.0720465,GO:0070592,http://purl.obolibrary.org/obo/GO_0070592,cell wall polysaccharide biosynthetic process +12.0720465,GO:0090497,http://purl.obolibrary.org/obo/GO_0090497,mesenchymal cell migration +12.0720465,GO:0097314,http://purl.obolibrary.org/obo/GO_0097314,apoptosome assembly +12.0720465,GO:0098801,http://purl.obolibrary.org/obo/GO_0098801,regulation of renal system process +12.0720465,GO:1903575,http://purl.obolibrary.org/obo/GO_1903575,cornified envelope assembly +12.0720465,GO:1990637,http://purl.obolibrary.org/obo/GO_1990637,response to prolactin +12.0720465,HP:0002719,http://purl.obolibrary.org/obo/HP_0002719,Recurrent infections +12.0720465,MONDO:0000355,http://purl.obolibrary.org/obo/MONDO_0000355,Ullrich congenital muscular dystrophy +12.0720465,MONDO:0002370,http://purl.obolibrary.org/obo/MONDO_0002370,ovarian Brenner tumor +12.0720465,MONDO:0005894,http://purl.obolibrary.org/obo/MONDO_0005894,paracoccidioidomycosis +12.0720465,MONDO:0008199,http://purl.obolibrary.org/obo/MONDO_0008199,late-onset Parkinson disease +12.0720465,MONDO:0015420,http://purl.obolibrary.org/obo/MONDO_0015420,cleft lip and alveolus +12.0720465,MONDO:0021280,http://purl.obolibrary.org/obo/MONDO_0021280,mucoepidermoid carcinoma of parotid gland +12.0720465,MONDO:0024965,http://purl.obolibrary.org/obo/MONDO_0024965,"muscular dystrophy, non-human animal" +12.0720465,MONDO:0025139,http://purl.obolibrary.org/obo/MONDO_0025139,white muscle disease +12.0720465,MOP:0000639,http://purl.obolibrary.org/obo/MOP_0000639,none +12.0720465,NCBITaxon:32603,http://purl.obolibrary.org/obo/NCBITaxon_32603,none +12.0720465,NCBITaxon:32604,http://purl.obolibrary.org/obo/NCBITaxon_32604,none +12.0720465,NCBITaxon:32613,http://purl.obolibrary.org/obo/NCBITaxon_32613,none +12.0720465,PR:000000704,http://purl.obolibrary.org/obo/PR_000000704,platelet-derived growth factor D +12.0720465,PR:000001372,http://purl.obolibrary.org/obo/PR_000001372,interleukin-13 receptor subunit alpha-2 +12.0720465,PR:000001587,http://purl.obolibrary.org/obo/PR_000001587,galanin receptor type 3 +12.0720465,PR:000003980,http://purl.obolibrary.org/obo/PR_000003980,homeobox protein aristaless-like 4 +12.0720465,PR:000003998,http://purl.obolibrary.org/obo/PR_000003998,angiomotin +12.0720465,PR:000004091,http://purl.obolibrary.org/obo/PR_000004091,AP-1 complex subunit gamma-1 +12.0720465,PR:000005371,http://purl.obolibrary.org/obo/PR_000005371,centrin-2 +12.0720465,PR:000007924,http://purl.obolibrary.org/obo/PR_000007924,growth/differentiation factor 6 +12.0720465,PR:000008524,http://purl.obolibrary.org/obo/PR_000008524,beta-hexosaminidase subunit alpha +12.0720465,PR:000009340,http://purl.obolibrary.org/obo/PR_000009340,killer cell immunoglobulin-like receptor 3DS1 +12.0720465,PR:000010190,http://purl.obolibrary.org/obo/PR_000010190,"methionine--tRNA ligase, cytoplasmic" +12.0720465,PR:000011099,http://purl.obolibrary.org/obo/PR_000011099,"NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial" +12.0720465,PR:000011376,http://purl.obolibrary.org/obo/PR_000011376,C-type natriuretic peptide +12.0720465,PR:000013011,http://purl.obolibrary.org/obo/PR_000013011,terminal nucleotidyltransferase 4A +12.0720465,PR:000013121,http://purl.obolibrary.org/obo/PR_000013121,protein phosphatase 1 regulatory subunit 1B +12.0720465,PR:000016294,http://purl.obolibrary.org/obo/PR_000016294,protein-glutamine gamma-glutamyltransferase E +12.0720465,PR:000016754,http://purl.obolibrary.org/obo/PR_000016754,tetraspanin-8 +12.0720465,PR:000017008,http://purl.obolibrary.org/obo/PR_000017008,ubiquilin-2 +12.0720465,PR:000017197,http://purl.obolibrary.org/obo/PR_000017197,ubiquitin carboxyl-terminal hydrolase 8 +12.0720465,PR:000022647,http://purl.obolibrary.org/obo/PR_000022647,none +12.0720465,PR:000029824,http://purl.obolibrary.org/obo/PR_000029824,E3 ubiquitin-protein ligase TRIM47 +12.0720465,PR:000032013,http://purl.obolibrary.org/obo/PR_000032013,leucine-rich repeats and immunoglobulin-like domains protein 3 +12.0720465,PR:000032118,http://purl.obolibrary.org/obo/PR_000032118,sodium-dependent lysophosphatidylcholine symporter 1 +12.0720465,PR:P40940,http://purl.obolibrary.org/obo/PR_P40940,none +12.0720465,PR:Q5FV35,http://purl.obolibrary.org/obo/PR_Q5FV35,none +12.0720465,PR:Q9FII7,http://purl.obolibrary.org/obo/PR_Q9FII7,none +12.0720465,SO:0000574,http://purl.obolibrary.org/obo/SO_0000574,VDJ_gene_segment +12.0720465,UBERON:0000090,http://purl.obolibrary.org/obo/UBERON_0000090,blastocele +12.0720465,UBERON:0001716,http://purl.obolibrary.org/obo/UBERON_0001716,secondary palate +12.0720465,UBERON:0004366,http://purl.obolibrary.org/obo/UBERON_0004366,extraembryonic ectoderm +12.0720465,UBERON:0004679,http://purl.obolibrary.org/obo/UBERON_0004679,dentate gyrus molecular layer +12.0720465,UBERON:0013473,http://purl.obolibrary.org/obo/UBERON_0013473,lower esophagus +12.0796511,CL:0002196,http://purl.obolibrary.org/obo/CL_0002196,hepatic oval stem cell +12.0796511,CL:0002576,http://purl.obolibrary.org/obo/CL_0002576,perineural cell +12.0796511,CL:1001428,http://purl.obolibrary.org/obo/CL_1001428,bladder urothelial cell +12.0796511,DRUGBANK:DB00348,http://purl.obolibrary.org/obo/DRUGBANK_DB00348,none +12.0796511,DRUGBANK:DB01178,http://purl.obolibrary.org/obo/DRUGBANK_DB01178,none +12.0796511,DRUGBANK:DB01727,http://purl.obolibrary.org/obo/DRUGBANK_DB01727,none +12.0796511,DRUGBANK:DB03775,http://purl.obolibrary.org/obo/DRUGBANK_DB03775,none +12.0796511,DRUGBANK:DB04447,http://purl.obolibrary.org/obo/DRUGBANK_DB04447,none +12.0796511,DRUGBANK:DB08807,http://purl.obolibrary.org/obo/DRUGBANK_DB08807,none +12.0796511,DRUGBANK:DB11793,http://purl.obolibrary.org/obo/DRUGBANK_DB11793,none +12.0796511,DRUGBANK:DB12736,http://purl.obolibrary.org/obo/DRUGBANK_DB12736,none +12.0796511,DRUGBANK:DB12802,http://purl.obolibrary.org/obo/DRUGBANK_DB12802,none +12.0796511,DRUGBANK:DB13136,http://purl.obolibrary.org/obo/DRUGBANK_DB13136,none +12.0796511,DRUGBANK:DB13707,http://purl.obolibrary.org/obo/DRUGBANK_DB13707,none +12.0796511,DRUGBANK:DB13717,http://purl.obolibrary.org/obo/DRUGBANK_DB13717,none +12.0796511,DRUGBANK:DB13787,http://purl.obolibrary.org/obo/DRUGBANK_DB13787,none +12.0796511,DRUGBANK:DB14073,http://purl.obolibrary.org/obo/DRUGBANK_DB14073,none +12.0796511,DRUGBANK:DB14199,http://purl.obolibrary.org/obo/DRUGBANK_DB14199,none +12.0796511,DRUGBANK:DB14575,http://purl.obolibrary.org/obo/DRUGBANK_DB14575,none +12.0796511,GO:0004142,http://purl.obolibrary.org/obo/GO_0004142,diacylglycerol cholinephosphotransferase activity +12.0796511,GO:0004765,http://purl.obolibrary.org/obo/GO_0004765,shikimate kinase activity +12.0796511,GO:0006144,http://purl.obolibrary.org/obo/GO_0006144,purine nucleobase metabolic process +12.0796511,GO:0008031,http://purl.obolibrary.org/obo/GO_0008031,eclosion hormone activity +12.0796511,GO:0035800,http://purl.obolibrary.org/obo/GO_0035800,deubiquitinase activator activity +12.0796511,GO:0042405,http://purl.obolibrary.org/obo/GO_0042405,nuclear inclusion body +12.0796511,GO:0048531,http://purl.obolibrary.org/obo/GO_0048531,"beta-1,3-galactosyltransferase activity" +12.0796511,GO:0070576,http://purl.obolibrary.org/obo/GO_0070576,vitamin D 24-hydroxylase activity +12.0796511,GO:0071229,http://purl.obolibrary.org/obo/GO_0071229,cellular response to acid chemical +12.0796511,GO:0072347,http://purl.obolibrary.org/obo/GO_0072347,response to anesthetic +12.0796511,MONDO:0002558,http://purl.obolibrary.org/obo/MONDO_0002558,melanotic neurilemmoma +12.0796511,MONDO:0003164,http://purl.obolibrary.org/obo/MONDO_0003164,cauda equina neoplasm +12.0796511,MONDO:0006839,http://purl.obolibrary.org/obo/MONDO_0006839,Lutembacher syndrome +12.0796511,MONDO:0007098,http://purl.obolibrary.org/obo/MONDO_0007098,ACys amyloidosis +12.0796511,MONDO:0007972,http://purl.obolibrary.org/obo/MONDO_0007972,Meniere disease +12.0796511,MONDO:0009653,http://purl.obolibrary.org/obo/MONDO_0009653,mucolipidosis type IV +12.0796511,MONDO:0015698,http://purl.obolibrary.org/obo/MONDO_0015698,transient hypogammaglobulinemia of infancy +12.0796511,MONDO:0015796,http://purl.obolibrary.org/obo/MONDO_0015796,acute lung injury +12.0796511,NCBITaxon:199703,http://purl.obolibrary.org/obo/NCBITaxon_199703,none +12.0796511,NCBITaxon:199704,http://purl.obolibrary.org/obo/NCBITaxon_199704,none +12.0796511,NCBITaxon:2499402,http://purl.obolibrary.org/obo/NCBITaxon_2499402,none +12.0796511,NCBITaxon:2501984,http://purl.obolibrary.org/obo/NCBITaxon_2501984,none +12.0796511,NCBITaxon:2509515,http://purl.obolibrary.org/obo/NCBITaxon_2509515,none +12.0796511,NCBITaxon:28285,http://purl.obolibrary.org/obo/NCBITaxon_28285,none +12.0796511,NCBITaxon:6274,http://purl.obolibrary.org/obo/NCBITaxon_6274,Spirurina +12.0796511,PR:000001653,http://purl.obolibrary.org/obo/PR_000001653,prokineticin receptor 1 +12.0796511,PR:000001860,http://purl.obolibrary.org/obo/PR_000001860,inducible T-cell costimulator +12.0796511,PR:000004017,http://purl.obolibrary.org/obo/PR_000004017,anaphase-promoting complex subunit 4 +12.0796511,PR:000005393,http://purl.obolibrary.org/obo/PR_000005393,cingulin +12.0796511,PR:000005545,http://purl.obolibrary.org/obo/PR_000005545,claudin-18 +12.0796511,PR:000008638,http://purl.obolibrary.org/obo/PR_000008638,"hydroxymethylglutaryl-CoA synthase, mitochondrial" +12.0796511,PR:000009320,http://purl.obolibrary.org/obo/PR_000009320,kinesin-like protein KIF7 +12.0796511,PR:000009427,http://purl.obolibrary.org/obo/PR_000009427,kynurenine 3-monooxygenase +12.0796511,PR:000009811,http://purl.obolibrary.org/obo/PR_000009811,leukocyte immunoglobulin-like receptor subfamily B member 4 +12.0796511,PR:000010162,http://purl.obolibrary.org/obo/PR_000010162,C-Jun-amino-terminal kinase-interacting protein 3 +12.0796511,PR:000010893,http://purl.obolibrary.org/obo/PR_000010893,myelin transcription factor 1-like protein +12.0796511,PR:000011413,http://purl.obolibrary.org/obo/PR_000011413,nuclear receptor subfamily 6 group A member 1 +12.0796511,PR:000012333,http://purl.obolibrary.org/obo/PR_000012333,pterin-4-alpha-carbinolamine dehydratase +12.0796511,PR:000012417,http://purl.obolibrary.org/obo/PR_000012417,"phosphoenolpyruvate carboxykinase [GTP], mitochondrial" +12.0796511,PR:000012520,http://purl.obolibrary.org/obo/PR_000012520,sister chromatid cohesion protein PDS5 homolog B +12.0796511,PR:000012606,http://purl.obolibrary.org/obo/PR_000012606,geranylgeranyl transferase type-1 subunit beta +12.0796511,PR:000012880,http://purl.obolibrary.org/obo/PR_000012880,proteolipid protein 2 +12.0796511,PR:000013048,http://purl.obolibrary.org/obo/PR_000013048,inorganic pyrophosphatase +12.0796511,PR:000013460,http://purl.obolibrary.org/obo/PR_000013460,tyrosine-protein phosphatase non-receptor type 5 +12.0796511,PR:000013560,http://purl.obolibrary.org/obo/PR_000013560,none +12.0796511,PR:000014546,http://purl.obolibrary.org/obo/PR_000014546,basic helix-loop-helix transcription factor scleraxis +12.0796511,PR:000014566,http://purl.obolibrary.org/obo/PR_000014566,"succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial" +12.0796511,PR:000015357,http://purl.obolibrary.org/obo/PR_000015357,SNW domain-containing protein 1 +12.0796511,PR:000016654,http://purl.obolibrary.org/obo/PR_000016654,E3 ubiquitin-protein ligase TRIM32 +12.0796511,PR:000017107,http://purl.obolibrary.org/obo/PR_000017107,beta-ureidopropionase +12.0796511,PR:000017667,http://purl.obolibrary.org/obo/PR_000017667,zinc finger protein ZIC 3 +12.0796511,PR:000022108,http://purl.obolibrary.org/obo/PR_000022108,none +12.0796511,PR:000023080,http://purl.obolibrary.org/obo/PR_000023080,none +12.0796511,PR:000023621,http://purl.obolibrary.org/obo/PR_000023621,none +12.0796511,PR:000028489,http://purl.obolibrary.org/obo/PR_000028489,none +12.0796511,PR:000044518,http://purl.obolibrary.org/obo/PR_000044518,protocadherin gamma +12.0796511,PR:P02825,http://purl.obolibrary.org/obo/PR_P02825,none +12.0796511,PR:P82910,http://purl.obolibrary.org/obo/PR_P82910,none +12.0796511,PR:Q02953,http://purl.obolibrary.org/obo/PR_Q02953,none +12.0796511,PR:Q04868,http://purl.obolibrary.org/obo/PR_Q04868,none +12.0796511,PR:Q5AFA2,http://purl.obolibrary.org/obo/PR_Q5AFA2,none +12.0796511,PR:Q64612,http://purl.obolibrary.org/obo/PR_Q64612,none +12.0796511,PR:Q8RWL0,http://purl.obolibrary.org/obo/PR_Q8RWL0,none +12.0796511,PR:Q940H6,http://purl.obolibrary.org/obo/PR_Q940H6,none +12.0796511,PR:Q9M2X3,http://purl.obolibrary.org/obo/PR_Q9M2X3,none +12.0796511,SO:0000593,http://purl.obolibrary.org/obo/SO_0000593,C_D_box_snoRNA +12.0796511,UBERON:0001288,http://purl.obolibrary.org/obo/UBERON_0001288,loop of Henle +12.0796511,UBERON:2005051,http://purl.obolibrary.org/obo/UBERON_2005051,communicating vessel palatocerebral artery +12.087314,CHEBI:58187,http://purl.obolibrary.org/obo/CHEBI_58187,alginate +12.087314,CL:0002304,http://purl.obolibrary.org/obo/CL_0002304,non-pigmented ciliary epithelial cell +12.087314,DRUGBANK:DB00767,http://purl.obolibrary.org/obo/DRUGBANK_DB00767,none +12.087314,DRUGBANK:DB01071,http://purl.obolibrary.org/obo/DRUGBANK_DB01071,none +12.087314,DRUGBANK:DB01589,http://purl.obolibrary.org/obo/DRUGBANK_DB01589,none +12.087314,DRUGBANK:DB02232,http://purl.obolibrary.org/obo/DRUGBANK_DB02232,none +12.087314,DRUGBANK:DB06272,http://purl.obolibrary.org/obo/DRUGBANK_DB06272,none +12.087314,DRUGBANK:DB06619,http://purl.obolibrary.org/obo/DRUGBANK_DB06619,none +12.087314,DRUGBANK:DB06654,http://purl.obolibrary.org/obo/DRUGBANK_DB06654,none +12.087314,DRUGBANK:DB06743,http://purl.obolibrary.org/obo/DRUGBANK_DB06743,none +12.087314,DRUGBANK:DB11614,http://purl.obolibrary.org/obo/DRUGBANK_DB11614,none +12.087314,DRUGBANK:DB13532,http://purl.obolibrary.org/obo/DRUGBANK_DB13532,none +12.087314,DRUGBANK:DB13876,http://purl.obolibrary.org/obo/DRUGBANK_DB13876,none +12.087314,DRUGBANK:DB16114,http://purl.obolibrary.org/obo/DRUGBANK_DB16114,none +12.087314,GO:0004824,http://purl.obolibrary.org/obo/GO_0004824,lysine-tRNA ligase activity +12.087314,GO:0006277,http://purl.obolibrary.org/obo/GO_0006277,DNA amplification +12.087314,GO:0007492,http://purl.obolibrary.org/obo/GO_0007492,endoderm development +12.087314,GO:0007624,http://purl.obolibrary.org/obo/GO_0007624,ultradian rhythm +12.087314,GO:0008046,http://purl.obolibrary.org/obo/GO_0008046,axon guidance receptor activity +12.087314,GO:0009413,http://purl.obolibrary.org/obo/GO_0009413,response to flooding +12.087314,GO:0014013,http://purl.obolibrary.org/obo/GO_0014013,regulation of gliogenesis +12.087314,GO:0034722,http://purl.obolibrary.org/obo/GO_0034722,gamma-glutamyl-peptidase activity +12.087314,GO:0045597,http://purl.obolibrary.org/obo/GO_0045597,positive regulation of cell differentiation +12.087314,GO:0046134,http://purl.obolibrary.org/obo/GO_0046134,pyrimidine nucleoside biosynthetic process +12.087314,GO:0052547,http://purl.obolibrary.org/obo/GO_0052547,regulation of peptidase activity +12.087314,GO:0070857,http://purl.obolibrary.org/obo/GO_0070857,regulation of bile acid biosynthetic process +12.087314,GO:1901682,http://purl.obolibrary.org/obo/GO_1901682,sulfur compound transmembrane transporter activity +12.087314,MONDO:0002008,http://purl.obolibrary.org/obo/MONDO_0002008,labyrinthitis +12.087314,MONDO:0002205,http://purl.obolibrary.org/obo/MONDO_0002205,vulvar melanoma +12.087314,MONDO:0003169,http://purl.obolibrary.org/obo/MONDO_0003169,diencephalic astrocytomas +12.087314,MONDO:0004144,http://purl.obolibrary.org/obo/MONDO_0004144,fibrous meningioma +12.087314,MONDO:0004771,http://purl.obolibrary.org/obo/MONDO_0004771,Fuchs' heterochromic uveitis +12.087314,MONDO:0006922,http://purl.obolibrary.org/obo/MONDO_0006922,Anaplasmataceae infectious disease +12.087314,MONDO:0007128,http://purl.obolibrary.org/obo/MONDO_0007128,annular erythema +12.087314,MONDO:0011583,http://purl.obolibrary.org/obo/MONDO_0011583,"cerebral amyloid angiopathy, APP-related" +12.087314,MONDO:0015033,http://purl.obolibrary.org/obo/MONDO_0015033,"ABeta amyloidosis, dutch type" +12.087314,NCBITaxon:135614,http://purl.obolibrary.org/obo/NCBITaxon_135614,none +12.087314,NCBITaxon:32033,http://purl.obolibrary.org/obo/NCBITaxon_32033,none +12.087314,NCBITaxon:7226,http://purl.obolibrary.org/obo/NCBITaxon_7226,none +12.087314,PR:000001085,http://purl.obolibrary.org/obo/PR_000001085,T-cell surface glycoprotein CD8 beta chain +12.087314,PR:000001609,http://purl.obolibrary.org/obo/PR_000001609,melatonin receptor type 1A +12.087314,PR:000004218,http://purl.obolibrary.org/obo/PR_000004218,Rho GTPase-activating protein 1 +12.087314,PR:000005891,http://purl.obolibrary.org/obo/PR_000005891,cornulin +12.087314,PR:000006036,http://purl.obolibrary.org/obo/PR_000006036,Src substrate cortactin +12.087314,PR:000006140,http://purl.obolibrary.org/obo/PR_000006140,cytochrome P450 4F2 +12.087314,PR:000007248,http://purl.obolibrary.org/obo/PR_000007248,exocyst complex component 3 +12.087314,PR:000007721,http://purl.obolibrary.org/obo/PR_000007721,frizzled-5 +12.087314,PR:000008192,http://purl.obolibrary.org/obo/PR_000008192,G-protein coupled receptor-associated sorting protein 1 +12.087314,PR:000009363,http://purl.obolibrary.org/obo/PR_000009363,krueppel-like factor 3 +12.087314,PR:000010388,http://purl.obolibrary.org/obo/PR_000010388,methylated-DNA--protein-cysteine methyltransferase +12.087314,PR:000010668,http://purl.obolibrary.org/obo/PR_000010668,MutS protein homolog 4 +12.087314,PR:000010681,http://purl.obolibrary.org/obo/PR_000010681,"methionine-R-sulfoxide reductase B2, mitochondrial" +12.087314,PR:000010974,http://purl.obolibrary.org/obo/PR_000010974,sialic acid synthase +12.087314,PR:000012788,http://purl.obolibrary.org/obo/PR_000012788,homeobox protein PKNOX1 +12.087314,PR:000013164,http://purl.obolibrary.org/obo/PR_000013164,pancreatic prohormone +12.087314,PR:000013598,http://purl.obolibrary.org/obo/PR_000013598,Ras-related protein Rab-25 +12.087314,PR:000014260,http://purl.obolibrary.org/obo/PR_000014260,40S ribosomal protein S18 +12.087314,PR:000014846,http://purl.obolibrary.org/obo/PR_000014846,SH3KBP1-binding protein 1 +12.087314,PR:000015326,http://purl.obolibrary.org/obo/PR_000015326,staphylococcal nuclease domain-containing protein 1 +12.087314,PR:000015704,http://purl.obolibrary.org/obo/PR_000015704,cohesin subunit SA-1 +12.087314,PR:000016091,http://purl.obolibrary.org/obo/PR_000016091,Tax1-binding protein 3 +12.087314,PR:000016169,http://purl.obolibrary.org/obo/PR_000016169,elongin-B +12.087314,PR:000016571,http://purl.obolibrary.org/obo/PR_000016571,tumor protein D52 +12.087314,PR:000016802,http://purl.obolibrary.org/obo/PR_000016802,tyrosyl-DNA phosphodiesterase 2 +12.087314,PR:000017422,http://purl.obolibrary.org/obo/PR_000017422,WAS/WASL-interacting protein family member 1 +12.087314,PR:000017454,http://purl.obolibrary.org/obo/PR_000017454,tryptophan-rich protein +12.087314,PR:000022281,http://purl.obolibrary.org/obo/PR_000022281,none +12.087314,PR:P21826,http://purl.obolibrary.org/obo/PR_P21826,none +12.087314,PR:Q8RX79,http://purl.obolibrary.org/obo/PR_Q8RX79,none +12.087314,PR:Q90470,http://purl.obolibrary.org/obo/PR_Q90470,none +12.087314,PR:Q9FFY9,http://purl.obolibrary.org/obo/PR_Q9FFY9,none +12.087314,PR:Q9LIK0,http://purl.obolibrary.org/obo/PR_Q9LIK0,none +12.087314,PR:Q9M658,http://purl.obolibrary.org/obo/PR_Q9M658,none +12.087314,SO:0000169,http://purl.obolibrary.org/obo/SO_0000169,RNApol_I_promoter +12.087314,SO:0000376,http://purl.obolibrary.org/obo/SO_0000376,RNA_6S +12.087314,SO:0000954,http://purl.obolibrary.org/obo/SO_0000954,DNA_chromosome +12.087314,SO:0001267,http://purl.obolibrary.org/obo/SO_0001267,snoRNA_gene +12.087314,UBERON:0002401,http://purl.obolibrary.org/obo/UBERON_0002401,visceral pleura +12.087314,UBERON:0002562,http://purl.obolibrary.org/obo/UBERON_0002562,superior frontal sulcus +12.087314,UBERON:0003906,http://purl.obolibrary.org/obo/UBERON_0003906,cardiac jelly +12.087314,UBERON:0005164,http://purl.obolibrary.org/obo/UBERON_0005164,ascending limb of loop of Henle +12.087314,UBERON:0008777,http://purl.obolibrary.org/obo/UBERON_0008777,hypaxial musculature +12.087314,UBERON:0010526,http://purl.obolibrary.org/obo/UBERON_0010526,fibularis brevis +12.087314,UBERON:0016528,http://purl.obolibrary.org/obo/UBERON_0016528,white matter of frontal lobe +12.087314,UBERON:0016564,http://purl.obolibrary.org/obo/UBERON_0016564,deep cerebral vein +12.0950361,CHEBI:16240,http://purl.obolibrary.org/obo/CHEBI_16240,hydrogen peroxide +12.0950361,CHEBI:17992,http://purl.obolibrary.org/obo/CHEBI_17992,sucrose +12.0950361,CHEBI:24407,http://purl.obolibrary.org/obo/CHEBI_24407,glycosyl glycoside +12.0950361,CHEBI:24837,http://purl.obolibrary.org/obo/CHEBI_24837,inorganic peroxide +12.0950361,CHEBI:28304,http://purl.obolibrary.org/obo/CHEBI_28304,heparin +12.0950361,CHEBI:32508,http://purl.obolibrary.org/obo/CHEBI_32508,glycinate +12.0950361,CHEBI:38295,http://purl.obolibrary.org/obo/CHEBI_38295,azabicycloalkane +12.0950361,CHEBI:67229,http://purl.obolibrary.org/obo/CHEBI_67229,conduritol B epoxide +12.0950361,CHEBI:68509,http://purl.obolibrary.org/obo/CHEBI_68509,glutathione depleting agent +12.0950361,DRUGBANK:DB01486,http://purl.obolibrary.org/obo/DRUGBANK_DB01486,none +12.0950361,DRUGBANK:DB04917,http://purl.obolibrary.org/obo/DRUGBANK_DB04917,none +12.0950361,DRUGBANK:DB06234,http://purl.obolibrary.org/obo/DRUGBANK_DB06234,none +12.0950361,DRUGBANK:DB09286,http://purl.obolibrary.org/obo/DRUGBANK_DB09286,none +12.0950361,DRUGBANK:DB10620,http://purl.obolibrary.org/obo/DRUGBANK_DB10620,none +12.0950361,DRUGBANK:DB10811,http://purl.obolibrary.org/obo/DRUGBANK_DB10811,none +12.0950361,DRUGBANK:DB10842,http://purl.obolibrary.org/obo/DRUGBANK_DB10842,none +12.0950361,DRUGBANK:DB13655,http://purl.obolibrary.org/obo/DRUGBANK_DB13655,none +12.0950361,DRUGBANK:DB14316,http://purl.obolibrary.org/obo/DRUGBANK_DB14316,none +12.0950361,GO:0004349,http://purl.obolibrary.org/obo/GO_0004349,glutamate 5-kinase activity +12.0950361,GO:0009218,http://purl.obolibrary.org/obo/GO_0009218,pyrimidine ribonucleotide metabolic process +12.0950361,GO:0014873,http://purl.obolibrary.org/obo/GO_0014873,response to muscle activity involved in regulation of muscle adaptation +12.0950361,GO:0014874,http://purl.obolibrary.org/obo/GO_0014874,response to stimulus involved in regulation of muscle adaptation +12.0950361,GO:0016362,http://purl.obolibrary.org/obo/GO_0016362,"activin receptor activity, type II" +12.0950361,GO:0030279,http://purl.obolibrary.org/obo/GO_0030279,negative regulation of ossification +12.0950361,GO:0043289,http://purl.obolibrary.org/obo/GO_0043289,apocarotenoid biosynthetic process +12.0950361,GO:0045703,http://purl.obolibrary.org/obo/GO_0045703,ketoreductase activity +12.0950361,GO:0048259,http://purl.obolibrary.org/obo/GO_0048259,regulation of receptor-mediated endocytosis +12.0950361,GO:0048660,http://purl.obolibrary.org/obo/GO_0048660,regulation of smooth muscle cell proliferation +12.0950361,GO:0061035,http://purl.obolibrary.org/obo/GO_0061035,regulation of cartilage development +12.0950361,GO:1901658,http://purl.obolibrary.org/obo/GO_1901658,glycosyl compound catabolic process +12.0950361,GO:2000021,http://purl.obolibrary.org/obo/GO_2000021,none +12.0950361,HP:0000458,http://purl.obolibrary.org/obo/HP_0000458,Anosmia +12.0950361,HP:0004408,http://purl.obolibrary.org/obo/HP_0004408,Abnormality of the sense of smell +12.0950361,MONDO:0002141,http://purl.obolibrary.org/obo/MONDO_0002141,cutaneous undifferentiated pleomorphic sarcoma +12.0950361,MONDO:0003227,http://purl.obolibrary.org/obo/MONDO_0003227,prosopagnosia +12.0950361,MONDO:0006250,http://purl.obolibrary.org/obo/MONDO_0006250,ileal neuroendocrine tumor G1 +12.0950361,MONDO:0006815,http://purl.obolibrary.org/obo/MONDO_0006815,jejunal cancer +12.0950361,MONDO:0006996,http://purl.obolibrary.org/obo/MONDO_0006996,thyroid crisis +12.0950361,MONDO:0007790,http://purl.obolibrary.org/obo/MONDO_0007790,Charcot-Marie-Tooth disease type 3 +12.0950361,MONDO:0007838,http://purl.obolibrary.org/obo/MONDO_0007838,Jacobsen syndrome +12.0950361,MONDO:0008988,http://purl.obolibrary.org/obo/MONDO_0008988,citrullinemia type I +12.0950361,MONDO:0015065,http://purl.obolibrary.org/obo/MONDO_0015065,"ileal neuroendocrine tumor, well differentiated, low or intermediate grade" +12.0950361,MONDO:0018227,http://purl.obolibrary.org/obo/MONDO_0018227,hypocomplementemic urticarial vasculitis +12.0950361,MONDO:0018850,http://purl.obolibrary.org/obo/MONDO_0018850,proliferating trichilemmal cyst +12.0950361,NCBITaxon:10652,http://purl.obolibrary.org/obo/NCBITaxon_10652,none +12.0950361,NCBITaxon:158455,http://purl.obolibrary.org/obo/NCBITaxon_158455,none +12.0950361,NCBITaxon:158456,http://purl.obolibrary.org/obo/NCBITaxon_158456,none +12.0950361,NCBITaxon:77856,http://purl.obolibrary.org/obo/NCBITaxon_77856,none +12.0950361,PR:000000697,http://purl.obolibrary.org/obo/PR_000000697,cyclic nucleotide-gated cation channel beta-3 +12.0950361,PR:000001417,http://purl.obolibrary.org/obo/PR_000001417,free fatty acid receptor 4 +12.0950361,PR:000003568,http://purl.obolibrary.org/obo/PR_000003568,ATP-binding cassette sub-family E member 1 +12.0950361,PR:000004304,http://purl.obolibrary.org/obo/PR_000004304,aryl hydrocarbon receptor nuclear translocator 2 +12.0950361,PR:000005138,http://purl.obolibrary.org/obo/PR_000005138,cyclin-O +12.0950361,PR:000005593,http://purl.obolibrary.org/obo/PR_000005593,ceroid-lipofuscinosis neuronal protein 6 +12.0950361,PR:000007961,http://purl.obolibrary.org/obo/PR_000007961,geranylgeranyl pyrophosphate synthase +12.0950361,PR:000008223,http://purl.obolibrary.org/obo/PR_000008223,growth factor receptor-bound protein 14 +12.0950361,PR:000009332,http://purl.obolibrary.org/obo/PR_000009332,killer cell immunoglobulin-like receptor 2DS1 +12.0950361,PR:000010900,http://purl.obolibrary.org/obo/PR_000010900,none +12.0950361,PR:000011121,http://purl.obolibrary.org/obo/PR_000011121,neuronal growth regulator 1 +12.0950361,PR:000011209,http://purl.obolibrary.org/obo/PR_000011209,nidogen-2 +12.0950361,PR:000011320,http://purl.obolibrary.org/obo/PR_000011320,non-POU domain-containing octamer-binding protein +12.0950361,PR:000012244,http://purl.obolibrary.org/obo/PR_000012244,serine/threonine-protein kinase PAK 6 +12.0950361,PR:000012465,http://purl.obolibrary.org/obo/PR_000012465,"2',5'-phosphodiesterase 12" +12.0950361,PR:000012608,http://purl.obolibrary.org/obo/PR_000012608,phosphoglycerate kinase 2 +12.0950361,PR:000013431,http://purl.obolibrary.org/obo/PR_000013431,tuberoinfundibular peptide of 39 residues +12.0950361,PR:000013620,http://purl.obolibrary.org/obo/PR_000013620,Ras-related protein Rab-3D +12.0950361,PR:000015793,http://purl.obolibrary.org/obo/PR_000015793,syntaxin-1B +12.0950361,PR:000017117,http://purl.obolibrary.org/obo/PR_000017117,uridine phosphorylase 1 +12.0950361,PR:000017289,http://purl.obolibrary.org/obo/PR_000017289,neurosecretory protein VGF +12.0950361,PR:000022041,http://purl.obolibrary.org/obo/PR_000022041,none +12.0950361,PR:000022494,http://purl.obolibrary.org/obo/PR_000022494,none +12.0950361,PR:O04019,http://purl.obolibrary.org/obo/PR_O04019,none +12.0950361,PR:O09037,http://purl.obolibrary.org/obo/PR_O09037,none +12.0950361,PR:P34100,http://purl.obolibrary.org/obo/PR_P34100,none +12.0950361,PR:Q61838,http://purl.obolibrary.org/obo/PR_Q61838,none +12.0950361,PR:Q8GY61,http://purl.obolibrary.org/obo/PR_Q8GY61,none +12.0950361,PR:Q96VH5,http://purl.obolibrary.org/obo/PR_Q96VH5,none +12.0950361,PR:Q9FGC7,http://purl.obolibrary.org/obo/PR_Q9FGC7,none +12.0950361,PR:Q9SEI2,http://purl.obolibrary.org/obo/PR_Q9SEI2,none +12.0950361,PR:Q9VC44,http://purl.obolibrary.org/obo/PR_Q9VC44,none +12.0950361,PR:Q9XI60,http://purl.obolibrary.org/obo/PR_Q9XI60,none +12.0950361,PR:Q9ZSY8,http://purl.obolibrary.org/obo/PR_Q9ZSY8,none +12.0950361,PR:Q9ZTC3,http://purl.obolibrary.org/obo/PR_Q9ZTC3,none +12.0950361,UBERON:0002176,http://purl.obolibrary.org/obo/UBERON_0002176,lateral cervical nucleus +12.0950361,UBERON:0002761,http://purl.obolibrary.org/obo/UBERON_0002761,inferior frontal sulcus +12.0950361,UBERON:0006755,http://purl.obolibrary.org/obo/UBERON_0006755,inferior parathyroid gland +12.0950361,UBERON:0008522,http://purl.obolibrary.org/obo/UBERON_0008522,nasal muscle +12.0950361,UBERON:0008807,http://purl.obolibrary.org/obo/UBERON_0008807,coagulating gland +12.0950361,UBERON:0013491,http://purl.obolibrary.org/obo/UBERON_0013491,cervical fascia +12.0950361,UBERON:0035105,http://purl.obolibrary.org/obo/UBERON_0035105,sac of scrotum +12.0950361,UBERON:2000376,http://purl.obolibrary.org/obo/UBERON_2000376,infraorbital +12.1028182,CHEBI:25248,http://purl.obolibrary.org/obo/CHEBI_25248,methyl ester +12.1028182,CHEBI:76662,http://purl.obolibrary.org/obo/CHEBI_76662,EC 2.4.* (glycosyltransferase) inhibitor +12.1028182,CL:0002633,http://purl.obolibrary.org/obo/CL_0002633,respiratory basal cell +12.1028182,DRUGBANK:DB00664,http://purl.obolibrary.org/obo/DRUGBANK_DB00664,none +12.1028182,DRUGBANK:DB01365,http://purl.obolibrary.org/obo/DRUGBANK_DB01365,none +12.1028182,DRUGBANK:DB01571,http://purl.obolibrary.org/obo/DRUGBANK_DB01571,none +12.1028182,DRUGBANK:DB05983,http://purl.obolibrary.org/obo/DRUGBANK_DB05983,none +12.1028182,DRUGBANK:DB06458,http://purl.obolibrary.org/obo/DRUGBANK_DB06458,none +12.1028182,DRUGBANK:DB08956,http://purl.obolibrary.org/obo/DRUGBANK_DB08956,none +12.1028182,DRUGBANK:DB12843,http://purl.obolibrary.org/obo/DRUGBANK_DB12843,none +12.1028182,DRUGBANK:DB14562,http://purl.obolibrary.org/obo/DRUGBANK_DB14562,none +12.1028182,DRUGBANK:DB15748,http://purl.obolibrary.org/obo/DRUGBANK_DB15748,none +12.1028182,GO:0004412,http://purl.obolibrary.org/obo/GO_0004412,homoserine dehydrogenase activity +12.1028182,GO:0010962,http://purl.obolibrary.org/obo/GO_0010962,regulation of glucan biosynthetic process +12.1028182,GO:0016670,http://purl.obolibrary.org/obo/GO_0016670,"oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor" +12.1028182,GO:0030137,http://purl.obolibrary.org/obo/GO_0030137,COPI-coated vesicle +12.1028182,GO:0032374,http://purl.obolibrary.org/obo/GO_0032374,regulation of cholesterol transport +12.1028182,GO:0042126,http://purl.obolibrary.org/obo/GO_0042126,nitrate metabolic process +12.1028182,GO:0042129,http://purl.obolibrary.org/obo/GO_0042129,regulation of T cell proliferation +12.1028182,GO:0042245,http://purl.obolibrary.org/obo/GO_0042245,RNA repair +12.1028182,GO:0044068,http://purl.obolibrary.org/obo/GO_0044068,modulation by symbiont of host cellular process +12.1028182,GO:0046146,http://purl.obolibrary.org/obo/GO_0046146,tetrahydrobiopterin metabolic process +12.1028182,GO:0051567,http://purl.obolibrary.org/obo/GO_0051567,histone H3-K9 methylation +12.1028182,GO:0060993,http://purl.obolibrary.org/obo/GO_0060993,kidney morphogenesis +12.1028182,GO:0072611,http://purl.obolibrary.org/obo/GO_0072611,none +12.1028182,GO:1902025,http://purl.obolibrary.org/obo/GO_1902025,nitrate import +12.1028182,GO:1903555,http://purl.obolibrary.org/obo/GO_1903555,regulation of tumor necrosis factor superfamily cytokine production +12.1028182,HP:0003121,http://purl.obolibrary.org/obo/HP_0003121,Limb joint contracture +12.1028182,MONDO:0000518,http://purl.obolibrary.org/obo/MONDO_0000518,sacrum chordoma +12.1028182,MONDO:0003008,http://purl.obolibrary.org/obo/MONDO_0003008,hereditary renal cell carcinoma +12.1028182,MONDO:0003806,http://purl.obolibrary.org/obo/MONDO_0003806,thyroid hyalinizing trabecular adenoma +12.1028182,MONDO:0004367,http://purl.obolibrary.org/obo/MONDO_0004367,petroclival meningioma +12.1028182,MONDO:0006758,http://purl.obolibrary.org/obo/MONDO_0006758,female genital tuberculosis +12.1028182,MONDO:0007197,http://purl.obolibrary.org/obo/MONDO_0007197,bladder diverticulum +12.1028182,MONDO:0010797,http://purl.obolibrary.org/obo/MONDO_0010797,Pearson syndrome +12.1028182,MONDO:0015374,http://purl.obolibrary.org/obo/MONDO_0015374,primary central nervous system vasculitis +12.1028182,MONDO:0021301,http://purl.obolibrary.org/obo/MONDO_0021301,adenoma of nipple +12.1028182,MONDO:0044339,http://purl.obolibrary.org/obo/MONDO_0044339,lumbar disc degenerative disorder +12.1028182,NCBITaxon:356114,http://purl.obolibrary.org/obo/NCBITaxon_356114,none +12.1028182,PR:000000288,http://purl.obolibrary.org/obo/PR_000000288,lefty 2 +12.1028182,PR:000001344,http://purl.obolibrary.org/obo/PR_000001344,ectonucleotide pyrophosphatase/phosphodiesterase family member 3 +12.1028182,PR:000001491,http://purl.obolibrary.org/obo/PR_000001491,neuropeptide S receptor +12.1028182,PR:000003960,http://purl.obolibrary.org/obo/PR_000003960,polyunsaturated fatty acid lipoxygenase ALOX15B +12.1028182,PR:000004761,http://purl.obolibrary.org/obo/PR_000004761,B-cell linker protein +12.1028182,PR:000007018,http://purl.obolibrary.org/obo/PR_000007018,ELAV-like protein 3 +12.1028182,PR:000007366,http://purl.obolibrary.org/obo/PR_000007366,"fructose-1,6-bisphosphatase isozyme 2" +12.1028182,PR:000007646,http://purl.obolibrary.org/obo/PR_000007646,forkhead box protein Q1 +12.1028182,PR:000008780,http://purl.obolibrary.org/obo/PR_000008780,testosterone 17-beta-dehydrogenase 3 +12.1028182,PR:000008786,http://purl.obolibrary.org/obo/PR_000008786,3 beta-hydroxysteroid dehydrogenase/Delta 5-->4-isomerase type 2 +12.1028182,PR:000009800,http://purl.obolibrary.org/obo/PR_000009800,DNA ligase 1 +12.1028182,PR:000011052,http://purl.obolibrary.org/obo/PR_000011052,nuclear distribution protein nudE-like 1 +12.1028182,PR:000011500,http://purl.obolibrary.org/obo/PR_000011500,kinetochore protein Nuf2 +12.1028182,PR:000011594,http://purl.obolibrary.org/obo/PR_000011594,inositol polyphosphate 5-phosphatase OCRL +12.1028182,PR:000012444,http://purl.obolibrary.org/obo/PR_000012444,phosphatidylcholine transfer protein +12.1028182,PR:000012876,http://purl.obolibrary.org/obo/PR_000012876,"procollagen-lysine,2-oxoglutarate 5-dioxygenase 1" +12.1028182,PR:000013046,http://purl.obolibrary.org/obo/PR_000013046,"POU domain, class 6, transcription factor 1" +12.1028182,PR:000013253,http://purl.obolibrary.org/obo/PR_000013253,protein arginine N-methyltransferase 2 +12.1028182,PR:000015350,http://purl.obolibrary.org/obo/PR_000015350,alpha-1-syntrophin +12.1028182,PR:000016198,http://purl.obolibrary.org/obo/PR_000016198,treacle protein +12.1028182,PR:000016528,http://purl.obolibrary.org/obo/PR_000016528,Toll-interacting protein +12.1028182,PR:000024066,http://purl.obolibrary.org/obo/PR_000024066,none +12.1028182,PR:000027523,http://purl.obolibrary.org/obo/PR_000027523,none +12.1028182,PR:000032800,http://purl.obolibrary.org/obo/PR_000032800,zinc finger CCCH-type with G patch domain-containing protein +12.1028182,PR:P21183,http://purl.obolibrary.org/obo/PR_P21183,none +12.1028182,PR:P27091,http://purl.obolibrary.org/obo/PR_P27091,none +12.1028182,PR:P33891,http://purl.obolibrary.org/obo/PR_P33891,none +12.1028182,PR:P40208,http://purl.obolibrary.org/obo/PR_P40208,none +12.1028182,PR:Q38950,http://purl.obolibrary.org/obo/PR_Q38950,none +12.1028182,PR:Q52T38,http://purl.obolibrary.org/obo/PR_Q52T38,none +12.1028182,PR:Q7PC88,http://purl.obolibrary.org/obo/PR_Q7PC88,none +12.1028182,PR:Q9M8W7,http://purl.obolibrary.org/obo/PR_Q9M8W7,none +12.1028182,SO:0000894,http://purl.obolibrary.org/obo/SO_0000894,silenced_by_DNA_modification +12.1028182,SO:0000895,http://purl.obolibrary.org/obo/SO_0000895,silenced_by_DNA_methylation +12.1028182,UBERON:0001595,http://purl.obolibrary.org/obo/UBERON_0001595,auricular muscle +12.1028182,UBERON:0003713,http://purl.obolibrary.org/obo/UBERON_0003713,splenic vein +12.1028182,UBERON:0003886,http://purl.obolibrary.org/obo/UBERON_0003886,future coelemic cavity lumen +12.1028182,UBERON:0004733,http://purl.obolibrary.org/obo/UBERON_0004733,segmental subdivision of hindbrain +12.1028182,UBERON:0005483,http://purl.obolibrary.org/obo/UBERON_0005483,thymus lobe +12.1028182,UBERON:0006015,http://purl.obolibrary.org/obo/UBERON_0006015,webbed interdigital region +12.1028182,UBERON:0018545,http://purl.obolibrary.org/obo/UBERON_0018545,nucleus of the bulbocavernosus +12.1028182,UBERON:2000507,http://purl.obolibrary.org/obo/UBERON_2000507,epineural +12.1106614,CHEBI:26979,http://purl.obolibrary.org/obo/CHEBI_26979,organic heterotricyclic compound +12.1106614,CHEBI:35568,http://purl.obolibrary.org/obo/CHEBI_35568,mancude ring +12.1106614,CHEBI:35573,http://purl.obolibrary.org/obo/CHEBI_35573,organic mancude parent +12.1106614,CHEBI:36688,http://purl.obolibrary.org/obo/CHEBI_36688,heterotricyclic compound +12.1106614,CHEBI:67126,http://purl.obolibrary.org/obo/CHEBI_67126,colorimetric reagent +12.1106614,CHEBI:9467,http://purl.obolibrary.org/obo/CHEBI_9467,tetrabenazine +12.1106614,DRUGBANK:DB01422,http://purl.obolibrary.org/obo/DRUGBANK_DB01422,none +12.1106614,DRUGBANK:DB01931,http://purl.obolibrary.org/obo/DRUGBANK_DB01931,none +12.1106614,DRUGBANK:DB03329,http://purl.obolibrary.org/obo/DRUGBANK_DB03329,none +12.1106614,DRUGBANK:DB03380,http://purl.obolibrary.org/obo/DRUGBANK_DB03380,none +12.1106614,DRUGBANK:DB03733,http://purl.obolibrary.org/obo/DRUGBANK_DB03733,none +12.1106614,DRUGBANK:DB04425,http://purl.obolibrary.org/obo/DRUGBANK_DB04425,none +12.1106614,DRUGBANK:DB06195,http://purl.obolibrary.org/obo/DRUGBANK_DB06195,none +12.1106614,DRUGBANK:DB06548,http://purl.obolibrary.org/obo/DRUGBANK_DB06548,none +12.1106614,DRUGBANK:DB06701,http://purl.obolibrary.org/obo/DRUGBANK_DB06701,none +12.1106614,DRUGBANK:DB09097,http://purl.obolibrary.org/obo/DRUGBANK_DB09097,none +12.1106614,DRUGBANK:DB09147,http://purl.obolibrary.org/obo/DRUGBANK_DB09147,none +12.1106614,DRUGBANK:DB11805,http://purl.obolibrary.org/obo/DRUGBANK_DB11805,none +12.1106614,DRUGBANK:DB11834,http://purl.obolibrary.org/obo/DRUGBANK_DB11834,none +12.1106614,DRUGBANK:DB13783,http://purl.obolibrary.org/obo/DRUGBANK_DB13783,none +12.1106614,DRUGBANK:DB14293,http://purl.obolibrary.org/obo/DRUGBANK_DB14293,none +12.1106614,DRUGBANK:DB16120,http://purl.obolibrary.org/obo/DRUGBANK_DB16120,none +12.1106614,GO:0001778,http://purl.obolibrary.org/obo/GO_0001778,plasma membrane repair +12.1106614,GO:0004788,http://purl.obolibrary.org/obo/GO_0004788,thiamine diphosphokinase activity +12.1106614,GO:0007630,http://purl.obolibrary.org/obo/GO_0007630,jump response +12.1106614,GO:0009638,http://purl.obolibrary.org/obo/GO_0009638,phototropism +12.1106614,GO:0010205,http://purl.obolibrary.org/obo/GO_0010205,photoinhibition +12.1106614,GO:0016692,http://purl.obolibrary.org/obo/GO_0016692,NADH peroxidase activity +12.1106614,GO:0019035,http://purl.obolibrary.org/obo/GO_0019035,viral integration complex +12.1106614,GO:0019058,http://purl.obolibrary.org/obo/GO_0019058,viral life cycle +12.1106614,GO:0038182,http://purl.obolibrary.org/obo/GO_0038182,G protein-coupled bile acid receptor activity +12.1106614,GO:0042548,http://purl.obolibrary.org/obo/GO_0042548,"regulation of photosynthesis, light reaction" +12.1106614,GO:0043155,http://purl.obolibrary.org/obo/GO_0043155,"negative regulation of photosynthesis, light reaction" +12.1106614,GO:1905156,http://purl.obolibrary.org/obo/GO_1905156,negative regulation of photosynthesis +12.1106614,HP:0001882,http://purl.obolibrary.org/obo/HP_0001882,Leukopenia +12.1106614,HP:0005561,http://purl.obolibrary.org/obo/HP_0005561,Abnormality of bone marrow cell morphology +12.1106614,HP:0012145,http://purl.obolibrary.org/obo/HP_0012145,Abnormality of multiple cell lineages in the bone marrow +12.1106614,HP:0031797,http://purl.obolibrary.org/obo/HP_0031797,Clinical course +12.1106614,MONDO:0000261,http://purl.obolibrary.org/obo/MONDO_0000261,adenoiditis +12.1106614,MONDO:0002493,http://purl.obolibrary.org/obo/MONDO_0002493,prostatic acinar adenocarcinoma +12.1106614,MONDO:0002618,http://purl.obolibrary.org/obo/MONDO_0002618,undifferentiated high grade pleomorphic sarcoma of bone +12.1106614,MONDO:0007150,http://purl.obolibrary.org/obo/MONDO_0007150,arcus senilis +12.1106614,MONDO:0009253,http://purl.obolibrary.org/obo/MONDO_0009253,Fryns syndrome +12.1106614,MONDO:0009324,http://purl.obolibrary.org/obo/MONDO_0009324,Hartnup disease +12.1106614,MONDO:0009480,http://purl.obolibrary.org/obo/MONDO_0009480,Joubert syndrome with oculorenal defect +12.1106614,MONDO:0017881,http://purl.obolibrary.org/obo/MONDO_0017881,Kyasanur forest disease +12.1106614,NCBITaxon:28585,http://purl.obolibrary.org/obo/NCBITaxon_28585,none +12.1106614,NCBITaxon:43898,http://purl.obolibrary.org/obo/NCBITaxon_43898,none +12.1106614,PR:000001660,http://purl.obolibrary.org/obo/PR_000001660,prostaglandin F2-alpha receptor +12.1106614,PR:000003345,http://purl.obolibrary.org/obo/PR_000003345,collagen alpha-1(V) chain +12.1106614,PR:000005227,http://purl.obolibrary.org/obo/PR_000005227,CUB domain-containing protein 1 +12.1106614,PR:000005443,http://purl.obolibrary.org/obo/PR_000005443,beta-chimaerin +12.1106614,PR:000006520,http://purl.obolibrary.org/obo/PR_000006520,disks large-associated protein 5 +12.1106614,PR:000006972,http://purl.obolibrary.org/obo/PR_000006972,eukaryotic translation initiation factor 2 subunit 2 +12.1106614,PR:000008036,http://purl.obolibrary.org/obo/PR_000008036,zinc finger protein GLIS3 +12.1106614,PR:000008829,http://purl.obolibrary.org/obo/PR_000008829,oxidoreductase HTATIP2 +12.1106614,PR:000009314,http://purl.obolibrary.org/obo/PR_000009314,chromosome-associated kinesin KIF4A +12.1106614,PR:000009795,http://purl.obolibrary.org/obo/PR_000009795,LIM/homeobox protein Lhx5 +12.1106614,PR:000010286,http://purl.obolibrary.org/obo/PR_000010286,mediator of RNA polymerase II transcription subunit 14 +12.1106614,PR:000010712,http://purl.obolibrary.org/obo/PR_000010712,mitochondrial carrier homolog 1 +12.1106614,PR:000012439,http://purl.obolibrary.org/obo/PR_000012439,proprotein convertase subtilisin/kexin type 7 +12.1106614,PR:000013506,http://purl.obolibrary.org/obo/PR_000013506,peroxidasin +12.1106614,PR:000013873,http://purl.obolibrary.org/obo/PR_000013873,regenerating islet-derived protein 4 +12.1106614,PR:000014241,http://purl.obolibrary.org/obo/PR_000014241,dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 +12.1106614,PR:000015013,http://purl.obolibrary.org/obo/PR_000015013,mitochondrial glutamate carrier 2 +12.1106614,PR:000016478,http://purl.obolibrary.org/obo/PR_000016478,tumor necrosis factor alpha-induced protein 8-like protein 2 +12.1106614,PR:000023582,http://purl.obolibrary.org/obo/PR_000023582,none +12.1106614,PR:000023799,http://purl.obolibrary.org/obo/PR_000023799,ribonuclease R +12.1106614,PR:000029200,http://purl.obolibrary.org/obo/PR_000029200,none +12.1106614,PR:O13351,http://purl.obolibrary.org/obo/PR_O13351,none +12.1106614,PR:P40260,http://purl.obolibrary.org/obo/PR_P40260,none +12.1106614,PR:Q38919,http://purl.obolibrary.org/obo/PR_Q38919,none +12.1106614,UBERON:0001041,http://purl.obolibrary.org/obo/UBERON_0001041,foregut +12.1106614,UBERON:0002299,http://purl.obolibrary.org/obo/UBERON_0002299,alveolus of lung +12.1106614,UBERON:0002434,http://purl.obolibrary.org/obo/UBERON_0002434,pituitary stalk +12.1106614,UBERON:0010333,http://purl.obolibrary.org/obo/UBERON_0010333,extraembryonic membrane mesenchyme +12.1106614,UBERON:0013211,http://purl.obolibrary.org/obo/UBERON_0013211,cerumen gland +12.1106614,UBERON:0015156,http://purl.obolibrary.org/obo/UBERON_0015156,terminal branch of ophthalmic artery +12.1106614,UBERON:0016549,http://purl.obolibrary.org/obo/UBERON_0016549,central nervous system white matter layer +12.1185666,CHEBI:23217,http://purl.obolibrary.org/obo/CHEBI_23217,cholines +12.1185666,CHEBI:47885,http://purl.obolibrary.org/obo/CHEBI_47885,dinucleotide +12.1185666,CHEBI:55351,http://purl.obolibrary.org/obo/CHEBI_55351,substance P receptor antagonist +12.1185666,CHEBI:59886,http://purl.obolibrary.org/obo/CHEBI_59886,HIV fusion inhibitor +12.1185666,DRUGBANK:DB00185,http://purl.obolibrary.org/obo/DRUGBANK_DB00185,none +12.1185666,DRUGBANK:DB04029,http://purl.obolibrary.org/obo/DRUGBANK_DB04029,none +12.1185666,DRUGBANK:DB04151,http://purl.obolibrary.org/obo/DRUGBANK_DB04151,none +12.1185666,DRUGBANK:DB04555,http://purl.obolibrary.org/obo/DRUGBANK_DB04555,none +12.1185666,DRUGBANK:DB09223,http://purl.obolibrary.org/obo/DRUGBANK_DB09223,none +12.1185666,DRUGBANK:DB10370,http://purl.obolibrary.org/obo/DRUGBANK_DB10370,none +12.1185666,DRUGBANK:DB13082,http://purl.obolibrary.org/obo/DRUGBANK_DB13082,none +12.1185666,DRUGBANK:DB13273,http://purl.obolibrary.org/obo/DRUGBANK_DB13273,none +12.1185666,DRUGBANK:DB13346,http://purl.obolibrary.org/obo/DRUGBANK_DB13346,none +12.1185666,DRUGBANK:DB14217,http://purl.obolibrary.org/obo/DRUGBANK_DB14217,none +12.1185666,GO:0004502,http://purl.obolibrary.org/obo/GO_0004502,kynurenine 3-monooxygenase activity +12.1185666,GO:0004507,http://purl.obolibrary.org/obo/GO_0004507,steroid 11-beta-monooxygenase activity +12.1185666,GO:0007538,http://purl.obolibrary.org/obo/GO_0007538,primary sex determination +12.1185666,GO:0016127,http://purl.obolibrary.org/obo/GO_0016127,sterol catabolic process +12.1185666,GO:0031983,http://purl.obolibrary.org/obo/GO_0031983,vesicle lumen +12.1185666,GO:0032797,http://purl.obolibrary.org/obo/GO_0032797,SMN complex +12.1185666,GO:0042178,http://purl.obolibrary.org/obo/GO_0042178,xenobiotic catabolic process +12.1185666,GO:0042197,http://purl.obolibrary.org/obo/GO_0042197,halogenated hydrocarbon metabolic process +12.1185666,GO:0043038,http://purl.obolibrary.org/obo/GO_0043038,amino acid activation +12.1185666,MONDO:0000351,http://purl.obolibrary.org/obo/MONDO_0000351,disorder of methionine catabolism +12.1185666,MONDO:0003435,http://purl.obolibrary.org/obo/MONDO_0003435,microcystic adenoma +12.1185666,MONDO:0004339,http://purl.obolibrary.org/obo/MONDO_0004339,tuberculum sellae meningioma +12.1185666,MONDO:0006000,http://purl.obolibrary.org/obo/MONDO_0006000,tuberculous peritonitis +12.1185666,MONDO:0008436,http://purl.obolibrary.org/obo/MONDO_0008436,Sneddon syndrome +12.1185666,MONDO:0009353,http://purl.obolibrary.org/obo/MONDO_0009353,homocystinuria due to methylene tetrahydrofolate reductase deficiency +12.1185666,MONDO:0013300,http://purl.obolibrary.org/obo/MONDO_0013300,commissural facial cleft +12.1185666,MONDO:0016485,http://purl.obolibrary.org/obo/MONDO_0016485,Usher syndrome type 3 +12.1185666,MONDO:0016523,http://purl.obolibrary.org/obo/MONDO_0016523,bronchogenic cyst +12.1185666,MONDO:0016570,http://purl.obolibrary.org/obo/MONDO_0016570,primary pulmonary lymphoma +12.1185666,MONDO:0017297,http://purl.obolibrary.org/obo/MONDO_0017297,chronic lymphocytic inflammation with pontine perivascular enhancement responsive to steroids +12.1185666,MONDO:0018029,http://purl.obolibrary.org/obo/MONDO_0018029,congenital factor XIII deficiency +12.1185666,MONDO:0018109,http://purl.obolibrary.org/obo/MONDO_0018109,fulminant viral hepatitis +12.1185666,MONDO:0018781,http://purl.obolibrary.org/obo/MONDO_0018781,KID syndrome +12.1185666,MONDO:0019964,http://purl.obolibrary.org/obo/MONDO_0019964,thymic neuroendocrine tumor +12.1185666,MONDO:0020300,http://purl.obolibrary.org/obo/MONDO_0020300,autosomal dominant nocturnal frontal lobe epilepsy +12.1185666,NCBITaxon:668369,http://purl.obolibrary.org/obo/NCBITaxon_668369,none +12.1185666,NCBITaxon:768,http://purl.obolibrary.org/obo/NCBITaxon_768,Anaplasma +12.1185666,PR:000001364,http://purl.obolibrary.org/obo/PR_000001364,interleukin-1 receptor type II +12.1185666,PR:000004899,http://purl.obolibrary.org/obo/PR_000004899,complement C2 +12.1185666,PR:000005170,http://purl.obolibrary.org/obo/PR_000005170,CD37 molecule +12.1185666,PR:000005733,http://purl.obolibrary.org/obo/PR_000005733,coatomer subunit alpha +12.1185666,PR:000006020,http://purl.obolibrary.org/obo/PR_000006020,chymotrypsin-C +12.1185666,PR:000006944,http://purl.obolibrary.org/obo/PR_000006944,EH domain-containing protein 3 +12.1185666,PR:000007442,http://purl.obolibrary.org/obo/PR_000007442,Fc receptor-like protein 3 +12.1185666,PR:000008191,http://purl.obolibrary.org/obo/PR_000008191,adhesion G-protein coupled receptor V1 +12.1185666,PR:000008713,http://purl.obolibrary.org/obo/PR_000008713,homeobox protein Hox-C6 +12.1185666,PR:000008946,http://purl.obolibrary.org/obo/PR_000008946,insulin-like growth factor-binding protein complex acid labile chain +12.1185666,PR:000009132,http://purl.obolibrary.org/obo/PR_000009132,integrin alpha-7 +12.1185666,PR:000009745,http://purl.obolibrary.org/obo/PR_000009745,low density lipoprotein receptor adapter protein 1 +12.1185666,PR:000010137,http://purl.obolibrary.org/obo/PR_000010137,mitogen-activated protein kinase kinase kinase 4 +12.1185666,PR:000010452,http://purl.obolibrary.org/obo/PR_000010452,protein AF-9 +12.1185666,PR:000010694,http://purl.obolibrary.org/obo/PR_000010694,NADH-ubiquinone oxidoreductase chain 6 +12.1185666,PR:000010889,http://purl.obolibrary.org/obo/PR_000010889,histone acetyltransferase KAT7 +12.1185666,PR:000011372,http://purl.obolibrary.org/obo/PR_000011372,nucleoplasmin-3 +12.1185666,PR:000012750,http://purl.obolibrary.org/obo/PR_000012750,pirin +12.1185666,PR:000013691,http://purl.obolibrary.org/obo/PR_000013691,MAPK/MAK/MRK overlapping kinase +12.1185666,PR:000014369,http://purl.obolibrary.org/obo/PR_000014369,RuvB-like 2 +12.1185666,PR:000014695,http://purl.obolibrary.org/obo/PR_000014695,serpin B4 +12.1185666,PR:000014936,http://purl.obolibrary.org/obo/PR_000014936,solute carrier family 13 member 4 +12.1185666,PR:000015128,http://purl.obolibrary.org/obo/PR_000015128,metal cation symporter ZIP14 +12.1185666,PR:000016675,http://purl.obolibrary.org/obo/PR_000016675,eukaryotic tRNA dimethylallyltransferase +12.1185666,PR:000016747,http://purl.obolibrary.org/obo/PR_000016747,tetraspanin-31 +12.1185666,PR:000017641,http://purl.obolibrary.org/obo/PR_000017641,mRNA decay activator protein ZFP36L2 +12.1185666,PR:000023979,http://purl.obolibrary.org/obo/PR_000023979,none +12.1185666,PR:000026164,http://purl.obolibrary.org/obo/PR_000026164,none +12.1185666,PR:000029588,http://purl.obolibrary.org/obo/PR_000029588,lysosomal-associated transmembrane protein 4B +12.1185666,PR:000032347,http://purl.obolibrary.org/obo/PR_000032347,nucleoside diphosphate-linked moiety X motif 6 +12.1185666,PR:000035993,http://purl.obolibrary.org/obo/PR_000035993,none +12.1185666,PR:F4HY56,http://purl.obolibrary.org/obo/PR_F4HY56,none +12.1185666,PR:O74477,http://purl.obolibrary.org/obo/PR_O74477,none +12.1185666,PR:P10379,http://purl.obolibrary.org/obo/PR_P10379,none +12.1185666,PR:Q5ANI6,http://purl.obolibrary.org/obo/PR_Q5ANI6,none +12.1185666,PR:Q9C793,http://purl.obolibrary.org/obo/PR_Q9C793,none +12.1185666,PR:Q9CQV6,http://purl.obolibrary.org/obo/PR_Q9CQV6,none +12.1185666,PR:Q9FGN8,http://purl.obolibrary.org/obo/PR_Q9FGN8,none +12.1185666,UBERON:0001076,http://purl.obolibrary.org/obo/UBERON_0001076,neural spine +12.1185666,UBERON:0001077,http://purl.obolibrary.org/obo/UBERON_0001077,transverse process of vertebra +12.1185666,UBERON:0001793,http://purl.obolibrary.org/obo/UBERON_0001793,nerve fiber layer of retina +12.1185666,UBERON:0001828,http://purl.obolibrary.org/obo/UBERON_0001828,gingiva +12.1185666,UBERON:0002076,http://purl.obolibrary.org/obo/UBERON_0002076,cuticle of hair +12.1185666,UBERON:0002467,http://purl.obolibrary.org/obo/UBERON_0002467,filiform papilla +12.1185666,UBERON:0003078,http://purl.obolibrary.org/obo/UBERON_0003078,epibranchial placode +12.1185666,UBERON:0003249,http://purl.obolibrary.org/obo/UBERON_0003249,epithelium of otic placode +12.1185666,UBERON:0003568,http://purl.obolibrary.org/obo/UBERON_0003568,neck connective tissue +12.1185666,UBERON:0004851,http://purl.obolibrary.org/obo/UBERON_0004851,aorta endothelium +12.1185666,UBERON:0014731,http://purl.obolibrary.org/obo/UBERON_0014731,haversian canal +12.1185666,UBERON:2001571,http://purl.obolibrary.org/obo/UBERON_2001571,postovulatory follicle +12.1265347,CHEBI:26271,http://purl.obolibrary.org/obo/CHEBI_26271,proline +12.1265347,CHEBI:35499,http://purl.obolibrary.org/obo/CHEBI_35499,hallucinogen +12.1265347,CHEBI:35571,http://purl.obolibrary.org/obo/CHEBI_35571,mancude organic heterocyclic parent +12.1265347,CHEBI:50857,http://purl.obolibrary.org/obo/CHEBI_50857,anti-allergic agent +12.1265347,CHEBI:55367,http://purl.obolibrary.org/obo/CHEBI_55367,deoxyribonucleotide residue +12.1265347,DRUGBANK:DB01153,http://purl.obolibrary.org/obo/DRUGBANK_DB01153,none +12.1265347,DRUGBANK:DB09316,http://purl.obolibrary.org/obo/DRUGBANK_DB09316,none +12.1265347,DRUGBANK:DB10771,http://purl.obolibrary.org/obo/DRUGBANK_DB10771,none +12.1265347,DRUGBANK:DB13528,http://purl.obolibrary.org/obo/DRUGBANK_DB13528,none +12.1265347,DRUGBANK:DB14729,http://purl.obolibrary.org/obo/DRUGBANK_DB14729,none +12.1265347,GO:0003855,http://purl.obolibrary.org/obo/GO_0003855,3-dehydroquinate dehydratase activity +12.1265347,GO:0004800,http://purl.obolibrary.org/obo/GO_0004800,thyroxine 5'-deiodinase activity +12.1265347,GO:0005942,http://purl.obolibrary.org/obo/GO_0005942,phosphatidylinositol 3-kinase complex +12.1265347,GO:0006591,http://purl.obolibrary.org/obo/GO_0006591,ornithine metabolic process +12.1265347,GO:0009097,http://purl.obolibrary.org/obo/GO_0009097,isoleucine biosynthetic process +12.1265347,GO:0019806,http://purl.obolibrary.org/obo/GO_0019806,bromide peroxidase activity +12.1265347,GO:0030340,http://purl.obolibrary.org/obo/GO_0030340,hyaluronate lyase activity +12.1265347,GO:0030428,http://purl.obolibrary.org/obo/GO_0030428,cell septum +12.1265347,GO:0042158,http://purl.obolibrary.org/obo/GO_0042158,lipoprotein biosynthetic process +12.1265347,GO:0042196,http://purl.obolibrary.org/obo/GO_0042196,chlorinated hydrocarbon metabolic process +12.1265347,GO:0051054,http://purl.obolibrary.org/obo/GO_0051054,positive regulation of DNA metabolic process +12.1265347,GO:0070506,http://purl.obolibrary.org/obo/GO_0070506,high-density lipoprotein particle receptor activity +12.1265347,GO:0090009,http://purl.obolibrary.org/obo/GO_0090009,primitive streak formation +12.1265347,GO:0090342,http://purl.obolibrary.org/obo/GO_0090342,regulation of cell aging +12.1265347,GO:0097346,http://purl.obolibrary.org/obo/GO_0097346,INO80-type complex +12.1265347,GO:0097572,http://purl.obolibrary.org/obo/GO_0097572,right nucleus +12.1265347,HP:0003674,http://purl.obolibrary.org/obo/HP_0003674,Onset +12.1265347,MONDO:0000509,http://purl.obolibrary.org/obo/MONDO_0000509,non-syndromic intellectual disability +12.1265347,MONDO:0002485,http://purl.obolibrary.org/obo/MONDO_0002485,breast neuroendocrine neoplasm +12.1265347,MONDO:0006372,http://purl.obolibrary.org/obo/MONDO_0006372,pituicytoma +12.1265347,MONDO:0006593,http://purl.obolibrary.org/obo/MONDO_0006593,pelvic lipomatosis +12.1265347,MONDO:0008982,http://purl.obolibrary.org/obo/MONDO_0008982,central areolar choroidal dystrophy +12.1265347,MONDO:0009295,http://purl.obolibrary.org/obo/MONDO_0009295,glycogen storage disease VII +12.1265347,MONDO:0017998,http://purl.obolibrary.org/obo/MONDO_0017998,PLA2G6-associated neurodegeneration +12.1265347,MONDO:0021114,http://purl.obolibrary.org/obo/MONDO_0021114,Bartholin gland neoplasm +12.1265347,MONDO:0045018,http://purl.obolibrary.org/obo/MONDO_0045018,creatine biosynthetic process disease +12.1265347,NCBITaxon:1354736,http://purl.obolibrary.org/obo/NCBITaxon_1354736,none +12.1265347,NCBITaxon:280050,http://purl.obolibrary.org/obo/NCBITaxon_280050,none +12.1265347,NCBITaxon:28304,http://purl.obolibrary.org/obo/NCBITaxon_28304,none +12.1265347,NCBITaxon:32304,http://purl.obolibrary.org/obo/NCBITaxon_32304,none +12.1265347,NCBITaxon:38173,http://purl.obolibrary.org/obo/NCBITaxon_38173,none +12.1265347,NCBITaxon:73145,http://purl.obolibrary.org/obo/NCBITaxon_73145,none +12.1265347,PR:000001441,http://purl.obolibrary.org/obo/PR_000001441,blood group Rh(CE) polypeptide +12.1265347,PR:000004675,http://purl.obolibrary.org/obo/PR_000004675,B-cell receptor-associated protein 31 +12.1265347,PR:000005442,http://purl.obolibrary.org/obo/PR_000005442,N-chimaerin +12.1265347,PR:000005509,http://purl.obolibrary.org/obo/PR_000005509,cytoskeleton-associated protein 2 +12.1265347,PR:000005999,http://purl.obolibrary.org/obo/PR_000005999,RNA polymerase II subunit A C-terminal domain phosphatase +12.1265347,PR:000007552,http://purl.obolibrary.org/obo/PR_000007552,filaggrin-2 +12.1265347,PR:000008878,http://purl.obolibrary.org/obo/PR_000008878,bone sialoprotein 2 +12.1265347,PR:000009283,http://purl.obolibrary.org/obo/PR_000009283,far upstream element-binding protein 2 +12.1265347,PR:000009796,http://purl.obolibrary.org/obo/PR_000009796,LIM/homeobox protein Lhx8 +12.1265347,PR:000010238,http://purl.obolibrary.org/obo/PR_000010238,guanine nucleotide exchange factor DBS +12.1265347,PR:000010348,http://purl.obolibrary.org/obo/PR_000010348,N6-adenosine-methyltransferase catalytic subunit +12.1265347,PR:000010849,http://purl.obolibrary.org/obo/PR_000010849,myosin-X +12.1265347,PR:000011611,http://purl.obolibrary.org/obo/PR_000011611,oral-facial-digital syndrome 1 protein +12.1265347,PR:000013259,http://purl.obolibrary.org/obo/PR_000013259,prion-like protein doppel +12.1265347,PR:000013441,http://purl.obolibrary.org/obo/PR_000013441,protein tyrosine phosphatase type IVA 2 +12.1265347,PR:000014379,http://purl.obolibrary.org/obo/PR_000014379,ryanodine receptor 3 +12.1265347,PR:000014528,http://purl.obolibrary.org/obo/PR_000014528,amiloride-sensitive sodium channel subunit beta +12.1265347,PR:000014633,http://purl.obolibrary.org/obo/PR_000014633,semenogelin-1 +12.1265347,PR:000015021,http://purl.obolibrary.org/obo/PR_000015021,calcium-binding mitochondrial carrier protein SCaMC-2 +12.1265347,PR:000016168,http://purl.obolibrary.org/obo/PR_000016168,elongin-C +12.1265347,PR:000029632,http://purl.obolibrary.org/obo/PR_000029632,transcriptional activator MN1 +12.1265347,PR:O64399,http://purl.obolibrary.org/obo/PR_O64399,none +12.1265347,PR:O80823,http://purl.obolibrary.org/obo/PR_O80823,none +12.1265347,PR:Q04377,http://purl.obolibrary.org/obo/PR_Q04377,none +12.1265347,PR:Q39110,http://purl.obolibrary.org/obo/PR_Q39110,none +12.1265347,PR:Q9LDT3,http://purl.obolibrary.org/obo/PR_Q9LDT3,none +12.1265347,PR:Q9SYS6,http://purl.obolibrary.org/obo/PR_Q9SYS6,none +12.1265347,SO:0000888,http://purl.obolibrary.org/obo/SO_0000888,maternally_imprinted_gene +12.1265347,SO:0001175,http://purl.obolibrary.org/obo/SO_0001175,CCA_tail +12.1265347,UBERON:0002077,http://purl.obolibrary.org/obo/UBERON_0002077,cortex of hair +12.1265347,UBERON:0002695,http://purl.obolibrary.org/obo/UBERON_0002695,parieto-occipital sulcus +12.1265347,UBERON:0003888,http://purl.obolibrary.org/obo/UBERON_0003888,extraembryonic coelomic cavity +12.1265347,UBERON:0004462,http://purl.obolibrary.org/obo/UBERON_0004462,musculature of body wall +12.1265347,UBERON:0009292,http://purl.obolibrary.org/obo/UBERON_0009292,embryonic nasal process +12.1265347,UBERON:0018246,http://purl.obolibrary.org/obo/UBERON_0018246,thyroid vein +12.1345669,CHEBI:33453,http://purl.obolibrary.org/obo/CHEBI_33453,organic heterocyclyl group +12.1345669,CHEBI:36059,http://purl.obolibrary.org/obo/CHEBI_36059,hydroxy monocarboxylic acid anion +12.1345669,CHEBI:48271,http://purl.obolibrary.org/obo/CHEBI_48271,heterocyclyl group +12.1345669,CHEBI:51253,http://purl.obolibrary.org/obo/CHEBI_51253,cyclyl group +12.1345669,CHEBI:76946,http://purl.obolibrary.org/obo/CHEBI_76946,fungal metabolite +12.1345669,CHEBI:85425,http://purl.obolibrary.org/obo/CHEBI_85425,glycine transporter inhibitor +12.1345669,DRUGBANK:DB04679,http://purl.obolibrary.org/obo/DRUGBANK_DB04679,none +12.1345669,DRUGBANK:DB05928,http://purl.obolibrary.org/obo/DRUGBANK_DB05928,none +12.1345669,DRUGBANK:DB06717,http://purl.obolibrary.org/obo/DRUGBANK_DB06717,none +12.1345669,DRUGBANK:DB09312,http://purl.obolibrary.org/obo/DRUGBANK_DB09312,none +12.1345669,DRUGBANK:DB10913,http://purl.obolibrary.org/obo/DRUGBANK_DB10913,none +12.1345669,DRUGBANK:DB12086,http://purl.obolibrary.org/obo/DRUGBANK_DB12086,none +12.1345669,DRUGBANK:DB12223,http://purl.obolibrary.org/obo/DRUGBANK_DB12223,none +12.1345669,DRUGBANK:DB12989,http://purl.obolibrary.org/obo/DRUGBANK_DB12989,none +12.1345669,DRUGBANK:DB13340,http://purl.obolibrary.org/obo/DRUGBANK_DB13340,none +12.1345669,DRUGBANK:DB16102,http://purl.obolibrary.org/obo/DRUGBANK_DB16102,none +12.1345669,GO:0002706,http://purl.obolibrary.org/obo/GO_0002706,regulation of lymphocyte mediated immunity +12.1345669,GO:0006084,http://purl.obolibrary.org/obo/GO_0006084,acetyl-CoA metabolic process +12.1345669,GO:0009041,http://purl.obolibrary.org/obo/GO_0009041,uridylate kinase activity +12.1345669,GO:0015707,http://purl.obolibrary.org/obo/GO_0015707,nitrite transport +12.1345669,GO:0016726,http://purl.obolibrary.org/obo/GO_0016726,"oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor" +12.1345669,GO:0030894,http://purl.obolibrary.org/obo/GO_0030894,replisome +12.1345669,GO:0032680,http://purl.obolibrary.org/obo/GO_0032680,regulation of tumor necrosis factor production +12.1345669,GO:0033798,http://purl.obolibrary.org/obo/GO_0033798,thyroxine 5-deiodinase activity +12.1345669,GO:0046339,http://purl.obolibrary.org/obo/GO_0046339,diacylglycerol metabolic process +12.1345669,GO:0046797,http://purl.obolibrary.org/obo/GO_0046797,viral procapsid maturation +12.1345669,GO:0051588,http://purl.obolibrary.org/obo/GO_0051588,regulation of neurotransmitter transport +12.1345669,GO:0052621,http://purl.obolibrary.org/obo/GO_0052621,diguanylate cyclase activity +12.1345669,GO:1904636,http://purl.obolibrary.org/obo/GO_1904636,response to ionomycin +12.1345669,MONDO:0002299,http://purl.obolibrary.org/obo/MONDO_0002299,glomangioma +12.1345669,MONDO:0003073,http://purl.obolibrary.org/obo/MONDO_0003073,trilateral retinoblastoma +12.1345669,MONDO:0003497,http://purl.obolibrary.org/obo/MONDO_0003497,renal pelvis squamous cell carcinoma +12.1345669,MONDO:0003820,http://purl.obolibrary.org/obo/MONDO_0003820,mature ovarian teratoma +12.1345669,MONDO:0011023,http://purl.obolibrary.org/obo/MONDO_0011023,hereditary mixed polyposis syndrome +12.1345669,MONDO:0013577,http://purl.obolibrary.org/obo/MONDO_0013577,Lipedema +12.1345669,MONDO:0017322,http://purl.obolibrary.org/obo/MONDO_0017322,disorders of vitamin D metabolism +12.1345669,MONDO:0017689,http://purl.obolibrary.org/obo/MONDO_0017689,disorder of fructose metabolism +12.1345669,MONDO:0020487,http://purl.obolibrary.org/obo/MONDO_0020487,Pontiac fever +12.1345669,MONDO:0024483,http://purl.obolibrary.org/obo/MONDO_0024483,urothelial hyperplasia +12.1345669,MONDO:0044921,http://purl.obolibrary.org/obo/MONDO_0044921,atypical lymphoproliferative disorder +12.1345669,MONDO:0060782,http://purl.obolibrary.org/obo/MONDO_0060782,premalignant hematological system disease +12.1345669,NCBITaxon:101358,http://purl.obolibrary.org/obo/NCBITaxon_101358,none +12.1345669,NCBITaxon:8363,http://purl.obolibrary.org/obo/NCBITaxon_8363,none +12.1345669,PR:000001829,http://purl.obolibrary.org/obo/PR_000001829,OX-2 membrane glycoprotein +12.1345669,PR:000003605,http://purl.obolibrary.org/obo/PR_000003605,adipocyte adhesion molecule +12.1345669,PR:000004310,http://purl.obolibrary.org/obo/PR_000004310,actin-related protein 2/3 complex subunit 2 +12.1345669,PR:000004732,http://purl.obolibrary.org/obo/PR_000004732,bifunctional apoptosis regulator +12.1345669,PR:000004894,http://purl.obolibrary.org/obo/PR_000004894,complement C1s subcomponent +12.1345669,PR:000005129,http://purl.obolibrary.org/obo/PR_000005129,cyclin-G2 +12.1345669,PR:000005958,http://purl.obolibrary.org/obo/PR_000005958,cysteine and glycine-rich protein 1 +12.1345669,PR:000006119,http://purl.obolibrary.org/obo/PR_000006119,cytochrome P450 2C8 +12.1345669,PR:000006555,http://purl.obolibrary.org/obo/PR_000006555,"dynein heavy chain 1, axonemal" +12.1345669,PR:000007010,http://purl.obolibrary.org/obo/PR_000007010,chymotrypsin-like elastase family member 2A +12.1345669,PR:000007439,http://purl.obolibrary.org/obo/PR_000007439,ficolin-3 +12.1345669,PR:000008262,http://purl.obolibrary.org/obo/PR_000008262,Rho GTPase-activating protein 35 +12.1345669,PR:000009210,http://purl.obolibrary.org/obo/PR_000009210,Jun dimerization protein 2 +12.1345669,PR:000009968,http://purl.obolibrary.org/obo/PR_000009968,lipolysis-stimulated lipoprotein receptor +12.1345669,PR:000009987,http://purl.obolibrary.org/obo/PR_000009987,latexin +12.1345669,PR:000010170,http://purl.obolibrary.org/obo/PR_000010170,microtubule-associated protein RP/EB family member 1 +12.1345669,PR:000011539,http://purl.obolibrary.org/obo/PR_000011539,nucleoredoxin +12.1345669,PR:000011617,http://purl.obolibrary.org/obo/PR_000011617,mimecan +12.1345669,PR:000012248,http://purl.obolibrary.org/obo/PR_000012248,palladin +12.1345669,PR:000012832,http://purl.obolibrary.org/obo/PR_000012832,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-1" +12.1345669,PR:000013152,http://purl.obolibrary.org/obo/PR_000013152,serine/threonine-protein phosphatase 4 catalytic subunit +12.1345669,PR:000013183,http://purl.obolibrary.org/obo/PR_000013183,PR domain zinc finger protein 14 +12.1345669,PR:000013277,http://purl.obolibrary.org/obo/PR_000013277,pre-mRNA-processing factor 19 +12.1345669,PR:000013611,http://purl.obolibrary.org/obo/PR_000013611,Ras-related protein Rab-35 +12.1345669,PR:000013721,http://purl.obolibrary.org/obo/PR_000013721,Rap1 GTPase-activating protein 1 +12.1345669,PR:000014600,http://purl.obolibrary.org/obo/PR_000014600,translocation protein SEC63 +12.1345669,PR:000022116,http://purl.obolibrary.org/obo/PR_000022116,none +12.1345669,PR:000023040,http://purl.obolibrary.org/obo/PR_000023040,none +12.1345669,PR:000029548,http://purl.obolibrary.org/obo/PR_000029548,high mobility group nucleosome-binding domain-containing protein 4 +12.1345669,PR:000040087,http://purl.obolibrary.org/obo/PR_000040087,neurexin-3 +12.1345669,PR:A5PHT0,http://purl.obolibrary.org/obo/PR_A5PHT0,none +12.1345669,PR:P10633,http://purl.obolibrary.org/obo/PR_P10633,none +12.1345669,PR:P25302,http://purl.obolibrary.org/obo/PR_P25302,none +12.1345669,PR:P27202,http://purl.obolibrary.org/obo/PR_P27202,none +12.1345669,PR:P32351,http://purl.obolibrary.org/obo/PR_P32351,none +12.1345669,PR:Q05533,http://purl.obolibrary.org/obo/PR_Q05533,none +12.1345669,PR:Q5F3T7,http://purl.obolibrary.org/obo/PR_Q5F3T7,none +12.1345669,PR:Q84TE6,http://purl.obolibrary.org/obo/PR_Q84TE6,none +12.1345669,PR:Q8TGM6,http://purl.obolibrary.org/obo/PR_Q8TGM6,none +12.1345669,PR:Q9C5D0,http://purl.obolibrary.org/obo/PR_Q9C5D0,none +12.1345669,SO:0001215,http://purl.obolibrary.org/obo/SO_0001215,coding_region_of_exon +12.1345669,UBERON:0001002,http://purl.obolibrary.org/obo/UBERON_0001002,cuticle +12.1345669,UBERON:0007699,http://purl.obolibrary.org/obo/UBERON_0007699,tract of spinal cord +12.1345669,UBERON:0034698,http://purl.obolibrary.org/obo/UBERON_0034698,inflow tract of ventricle +12.1426641,CHEBI:24859,http://purl.obolibrary.org/obo/CHEBI_24859,iodine atom +12.1426641,CHEBI:25108,http://purl.obolibrary.org/obo/CHEBI_25108,magnesium molecular entity +12.1426641,CHEBI:26469,http://purl.obolibrary.org/obo/CHEBI_26469,quaternary nitrogen compound +12.1426641,CL:0000469,http://purl.obolibrary.org/obo/CL_0000469,ganglion mother cell +12.1426641,CL:0011020,http://purl.obolibrary.org/obo/CL_0011020,neural progenitor cell +12.1426641,CL:1001561,http://purl.obolibrary.org/obo/CL_1001561,vomeronasal sensory neuron +12.1426641,DRUGBANK:DB04910,http://purl.obolibrary.org/obo/DRUGBANK_DB04910,none +12.1426641,DRUGBANK:DB04924,http://purl.obolibrary.org/obo/DRUGBANK_DB04924,none +12.1426641,DRUGBANK:DB06794,http://purl.obolibrary.org/obo/DRUGBANK_DB06794,none +12.1426641,DRUGBANK:DB11409,http://purl.obolibrary.org/obo/DRUGBANK_DB11409,none +12.1426641,DRUGBANK:DB11531,http://purl.obolibrary.org/obo/DRUGBANK_DB11531,none +12.1426641,DRUGBANK:DB11629,http://purl.obolibrary.org/obo/DRUGBANK_DB11629,none +12.1426641,DRUGBANK:DB11882,http://purl.obolibrary.org/obo/DRUGBANK_DB11882,none +12.1426641,DRUGBANK:DB14063,http://purl.obolibrary.org/obo/DRUGBANK_DB14063,none +12.1426641,DRUGBANK:DB15357,http://purl.obolibrary.org/obo/DRUGBANK_DB15357,none +12.1426641,DRUGBANK:DB15464,http://purl.obolibrary.org/obo/DRUGBANK_DB15464,none +12.1426641,GO:0008609,http://purl.obolibrary.org/obo/GO_0008609,alkylglycerone-phosphate synthase activity +12.1426641,GO:0016210,http://purl.obolibrary.org/obo/GO_0016210,naringenin-chalcone synthase activity +12.1426641,GO:0019685,http://purl.obolibrary.org/obo/GO_0019685,"photosynthesis, dark reaction" +12.1426641,GO:0030582,http://purl.obolibrary.org/obo/GO_0030582,reproductive fruiting body development +12.1426641,GO:0043462,http://purl.obolibrary.org/obo/GO_0043462,regulation of ATPase activity +12.1426641,GO:0046618,http://purl.obolibrary.org/obo/GO_0046618,xenobiotic export +12.1426641,GO:0098751,http://purl.obolibrary.org/obo/GO_0098751,bone cell development +12.1426641,GO:1901983,http://purl.obolibrary.org/obo/GO_1901983,regulation of protein acetylation +12.1426641,HP:0001977,http://purl.obolibrary.org/obo/HP_0001977,Abnormal thrombosis +12.1426641,HP:0010972,http://purl.obolibrary.org/obo/HP_0010972,Anemia of inadequate production +12.1426641,MONDO:0000421,http://purl.obolibrary.org/obo/MONDO_0000421,inborn serine deficiency +12.1426641,MONDO:0000487,http://purl.obolibrary.org/obo/MONDO_0000487,hemidystonia +12.1426641,MONDO:0000543,http://purl.obolibrary.org/obo/MONDO_0000543,ovarian melanoma +12.1426641,MONDO:0000608,http://purl.obolibrary.org/obo/MONDO_0000608,familial juvenile hyperuricemic nephropathy +12.1426641,MONDO:0002834,http://purl.obolibrary.org/obo/MONDO_0002834,primary prostate urothelial carcinoma +12.1426641,MONDO:0005288,http://purl.obolibrary.org/obo/MONDO_0005288,intestinal polyp +12.1426641,MONDO:0005827,http://purl.obolibrary.org/obo/MONDO_0005827,lipoatrophic diabetes +12.1426641,MONDO:0006330,http://purl.obolibrary.org/obo/MONDO_0006330,ossifying fibromyxoid tumor +12.1426641,MONDO:0008803,http://purl.obolibrary.org/obo/MONDO_0008803,Antley-Bixler syndrome +12.1426641,MONDO:0021474,http://purl.obolibrary.org/obo/MONDO_0021474,benign neoplasm of ear +12.1426641,MONDO:0021497,http://purl.obolibrary.org/obo/MONDO_0021497,benign neoplasm of cerebrum +12.1426641,NCBITaxon:11303,http://purl.obolibrary.org/obo/NCBITaxon_11303,none +12.1426641,NCBITaxon:1972593,http://purl.obolibrary.org/obo/NCBITaxon_1972593,none +12.1426641,PR:000001644,http://purl.obolibrary.org/obo/PR_000001644,G-protein coupled receptor 4 +12.1426641,PR:000001912,http://purl.obolibrary.org/obo/PR_000001912,potassium channel subfamily K member 10 +12.1426641,PR:000003174,http://purl.obolibrary.org/obo/PR_000003174,NEDD4-like E3 ubiquitin-protein ligase WWP1 +12.1426641,PR:000003484,http://purl.obolibrary.org/obo/PR_000003484,none +12.1426641,PR:000003931,http://purl.obolibrary.org/obo/PR_000003931,alpha-aminoadipic semialdehyde dehydrogenase +12.1426641,PR:000004897,http://purl.obolibrary.org/obo/PR_000004897,none +12.1426641,PR:000005226,http://purl.obolibrary.org/obo/PR_000005226,borealin +12.1426641,PR:000005361,http://purl.obolibrary.org/obo/PR_000005361,cerberus +12.1426641,PR:000005388,http://purl.obolibrary.org/obo/PR_000005388,glycoprotein hormones alpha chain +12.1426641,PR:000005435,http://purl.obolibrary.org/obo/PR_000005435,charged multivesicular body protein 2b +12.1426641,PR:000005720,http://purl.obolibrary.org/obo/PR_000005720,collagen alpha-1(VIII) chain +12.1426641,PR:000006031,http://purl.obolibrary.org/obo/PR_000006031,cathepsin L2 +12.1426641,PR:000006323,http://purl.obolibrary.org/obo/PR_000006323,dynactin subunit 1 +12.1426641,PR:000006927,http://purl.obolibrary.org/obo/PR_000006927,116 kDa U5 small nuclear ribonucleoprotein component +12.1426641,PR:000009257,http://purl.obolibrary.org/obo/PR_000009257,potassium voltage-gated channel subfamily E member 3 +12.1426641,PR:000009355,http://purl.obolibrary.org/obo/PR_000009355,krueppel-like factor 11 +12.1426641,PR:000010754,http://purl.obolibrary.org/obo/PR_000010754,mitochondrial tumor suppressor 1 +12.1426641,PR:000010866,http://purl.obolibrary.org/obo/PR_000010866,myosin-Vb +12.1426641,PR:000011063,http://purl.obolibrary.org/obo/PR_000011063,bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 1 +12.1426641,PR:000011399,http://purl.obolibrary.org/obo/PR_000011399,nuclear receptor subfamily 2 group C member 1 +12.1426641,PR:000011524,http://purl.obolibrary.org/obo/PR_000011524,nuclear pore complex protein Nup88 +12.1426641,PR:000011532,http://purl.obolibrary.org/obo/PR_000011532,NUT family member 1 +12.1426641,PR:000013043,http://purl.obolibrary.org/obo/PR_000013043,"POU domain, class 4, transcription factor 3" +12.1426641,PR:000014403,http://purl.obolibrary.org/obo/PR_000014403,protein S100-A10 +12.1426641,PR:000014515,http://purl.obolibrary.org/obo/PR_000014515,adseverin +12.1426641,PR:000014575,http://purl.obolibrary.org/obo/PR_000014575,protein SEC13 +12.1426641,PR:000014975,http://purl.obolibrary.org/obo/PR_000014975,neutral amino acid transporter A +12.1426641,PR:000014996,http://purl.obolibrary.org/obo/PR_000014996,solute carrier family 23 member 1 +12.1426641,PR:000015051,http://purl.obolibrary.org/obo/PR_000015051,sodium/nucleoside cotransporter 1 +12.1426641,PR:000016966,http://purl.obolibrary.org/obo/PR_000016966,ubiquitin-conjugating enzyme E2 B +12.1426641,PR:000022026,http://purl.obolibrary.org/obo/PR_000022026,none +12.1426641,PR:000022502,http://purl.obolibrary.org/obo/PR_000022502,none +12.1426641,PR:000023368,http://purl.obolibrary.org/obo/PR_000023368,none +12.1426641,PR:000023402,http://purl.obolibrary.org/obo/PR_000023402,none +12.1426641,PR:000023786,http://purl.obolibrary.org/obo/PR_000023786,none +12.1426641,PR:000029023,http://purl.obolibrary.org/obo/PR_000029023,none +12.1426641,PR:000029154,http://purl.obolibrary.org/obo/PR_000029154,none +12.1426641,PR:000030299,http://purl.obolibrary.org/obo/PR_000030299,transcription elongation factor SPT4 +12.1426641,PR:000031390,http://purl.obolibrary.org/obo/PR_000031390,V-set and immunoglobulin domain-containing protein 1 +12.1426641,PR:000034745,http://purl.obolibrary.org/obo/PR_000034745,none +12.1426641,PR:F4KIB2,http://purl.obolibrary.org/obo/PR_F4KIB2,none +12.1426641,PR:P15862,http://purl.obolibrary.org/obo/PR_P15862,none +12.1426641,PR:P24815,http://purl.obolibrary.org/obo/PR_P24815,none +12.1426641,PR:P27364,http://purl.obolibrary.org/obo/PR_P27364,none +12.1426641,PR:P83779,http://purl.obolibrary.org/obo/PR_P83779,none +12.1426641,PR:Q18680,http://purl.obolibrary.org/obo/PR_Q18680,none +12.1426641,PR:Q5U5Q9,http://purl.obolibrary.org/obo/PR_Q5U5Q9,none +12.1426641,SO:0000268,http://purl.obolibrary.org/obo/SO_0000268,prolyl_tRNA +12.1426641,UBERON:0000303,http://purl.obolibrary.org/obo/UBERON_0000303,adductor longus +12.1426641,UBERON:0002132,http://purl.obolibrary.org/obo/UBERON_0002132,dentate nucleus +12.1426641,UBERON:0003143,http://purl.obolibrary.org/obo/UBERON_0003143,pupa +12.1426641,UBERON:0003522,http://purl.obolibrary.org/obo/UBERON_0003522,manual digit blood vessel +12.1426641,UBERON:0006141,http://purl.obolibrary.org/obo/UBERON_0006141,palmar digital artery +12.1426641,UBERON:0006544,http://purl.obolibrary.org/obo/UBERON_0006544,kidney vasculature +12.1426641,UBERON:0006601,http://purl.obolibrary.org/obo/UBERON_0006601,presumptive ectoderm +12.1426641,UBERON:0022300,http://purl.obolibrary.org/obo/UBERON_0022300,nasociliary nerve +12.1508274,CHEBI:38877,http://purl.obolibrary.org/obo/CHEBI_38877,intravenous anaesthetic +12.1508274,DRUGBANK:DB01134,http://purl.obolibrary.org/obo/DRUGBANK_DB01134,none +12.1508274,DRUGBANK:DB02113,http://purl.obolibrary.org/obo/DRUGBANK_DB02113,none +12.1508274,DRUGBANK:DB05311,http://purl.obolibrary.org/obo/DRUGBANK_DB05311,none +12.1508274,DRUGBANK:DB09091,http://purl.obolibrary.org/obo/DRUGBANK_DB09091,none +12.1508274,DRUGBANK:DB09149,http://purl.obolibrary.org/obo/DRUGBANK_DB09149,none +12.1508274,DRUGBANK:DB11394,http://purl.obolibrary.org/obo/DRUGBANK_DB11394,none +12.1508274,DRUGBANK:DB11774,http://purl.obolibrary.org/obo/DRUGBANK_DB11774,none +12.1508274,DRUGBANK:DB13228,http://purl.obolibrary.org/obo/DRUGBANK_DB13228,none +12.1508274,DRUGBANK:DB13767,http://purl.obolibrary.org/obo/DRUGBANK_DB13767,none +12.1508274,DRUGBANK:DB14205,http://purl.obolibrary.org/obo/DRUGBANK_DB14205,none +12.1508274,DRUGBANK:DB14646,http://purl.obolibrary.org/obo/DRUGBANK_DB14646,none +12.1508274,DRUGBANK:DB15993,http://purl.obolibrary.org/obo/DRUGBANK_DB15993,none +12.1508274,GO:0004741,http://purl.obolibrary.org/obo/GO_0004741,[pyruvate dehydrogenase (lipoamide)] phosphatase activity +12.1508274,GO:0006400,http://purl.obolibrary.org/obo/GO_0006400,tRNA modification +12.1508274,GO:0009236,http://purl.obolibrary.org/obo/GO_0009236,cobalamin biosynthetic process +12.1508274,GO:0016273,http://purl.obolibrary.org/obo/GO_0016273,arginine N-methyltransferase activity +12.1508274,GO:0016287,http://purl.obolibrary.org/obo/GO_0016287,glycerone-phosphate O-acyltransferase activity +12.1508274,GO:0035510,http://purl.obolibrary.org/obo/GO_0035510,DNA dealkylation +12.1508274,GO:0043937,http://purl.obolibrary.org/obo/GO_0043937,regulation of sporulation +12.1508274,GO:0046125,http://purl.obolibrary.org/obo/GO_0046125,pyrimidine deoxyribonucleoside metabolic process +12.1508274,GO:0046416,http://purl.obolibrary.org/obo/GO_0046416,D-amino acid metabolic process +12.1508274,GO:0046592,http://purl.obolibrary.org/obo/GO_0046592,polyamine oxidase activity +12.1508274,GO:0080184,http://purl.obolibrary.org/obo/GO_0080184,response to phenylpropanoid +12.1508274,MONDO:0000252,http://purl.obolibrary.org/obo/MONDO_0000252,inflammatory diarrhea +12.1508274,MONDO:0000662,http://purl.obolibrary.org/obo/MONDO_0000662,amusia +12.1508274,MONDO:0001186,http://purl.obolibrary.org/obo/MONDO_0001186,depersonalization disorder +12.1508274,MONDO:0002939,http://purl.obolibrary.org/obo/MONDO_0002939,skin pigmented basal cell carcinoma +12.1508274,MONDO:0006672,http://purl.obolibrary.org/obo/MONDO_0006672,balanitis +12.1508274,MONDO:0007758,http://purl.obolibrary.org/obo/MONDO_0007758,epidermolytic palmoplantar keratoderma +12.1508274,MONDO:0008075,http://purl.obolibrary.org/obo/MONDO_0008075,neurofibromatosis type 3 +12.1508274,MONDO:0009676,http://purl.obolibrary.org/obo/MONDO_0009676,autosomal recessive limb-girdle muscular dystrophy type 2B +12.1508274,MONDO:0010210,http://purl.obolibrary.org/obo/MONDO_0010210,xeroderma pigmentosum group A +12.1508274,MONDO:0011377,http://purl.obolibrary.org/obo/MONDO_0011377,long QT syndrome 3 +12.1508274,MONDO:0012031,http://purl.obolibrary.org/obo/MONDO_0012031,platelet-type bleeding disorder 10 +12.1508274,MONDO:0013892,http://purl.obolibrary.org/obo/MONDO_0013892,C3 glomerulonephritis +12.1508274,MONDO:0016543,http://purl.obolibrary.org/obo/MONDO_0016543,hyperphenylalaninemia due to tetrahydrobiopterin deficiency +12.1508274,MONDO:0017323,http://purl.obolibrary.org/obo/MONDO_0017323,hypocalcemic rickets +12.1508274,MONDO:0018987,http://purl.obolibrary.org/obo/MONDO_0018987,granulomatous mastitis +12.1508274,MONDO:0024502,http://purl.obolibrary.org/obo/MONDO_0024502,gallbladder neuroendocrine neoplasm +12.1508274,MONDO:0042494,http://purl.obolibrary.org/obo/MONDO_0042494,childhood malignant melanoma +12.1508274,NCBITaxon:1003835,http://purl.obolibrary.org/obo/NCBITaxon_1003835,none +12.1508274,NCBITaxon:28327,http://purl.obolibrary.org/obo/NCBITaxon_28327,none +12.1508274,NCBITaxon:337664,http://purl.obolibrary.org/obo/NCBITaxon_337664,none +12.1508274,NCBITaxon:3524,http://purl.obolibrary.org/obo/NCBITaxon_3524,none +12.1508274,NCBITaxon:35323,http://purl.obolibrary.org/obo/NCBITaxon_35323,none +12.1508274,NCBITaxon:7434,http://purl.obolibrary.org/obo/NCBITaxon_7434,"Aculeata " +12.1508274,PR:000001292,http://purl.obolibrary.org/obo/PR_000001292,C-type lectin domain family 4 member C +12.1508274,PR:000001925,http://purl.obolibrary.org/obo/PR_000001925,scavenger receptor cysteine-rich type 1 protein M130 +12.1508274,PR:000003200,http://purl.obolibrary.org/obo/PR_000003200,calcium/calmodulin-dependent protein kinase type II subunit beta +12.1508274,PR:000003594,http://purl.obolibrary.org/obo/PR_000003594,"3-ketoacyl-CoA thiolase, peroxisomal" +12.1508274,PR:000003699,http://purl.obolibrary.org/obo/PR_000003699,actin-related protein 6 +12.1508274,PR:000004898,http://purl.obolibrary.org/obo/PR_000004898,none +12.1508274,PR:000004971,http://purl.obolibrary.org/obo/PR_000004971,calcium-binding and coiled-coil domain-containing protein 2 +12.1508274,PR:000005939,http://purl.obolibrary.org/obo/PR_000005939,CUB and sushi domain-containing protein 1 +12.1508274,PR:000007251,http://purl.obolibrary.org/obo/PR_000007251,exocyst complex component 4 +12.1508274,PR:000007722,http://purl.obolibrary.org/obo/PR_000007722,frizzled-6 +12.1508274,PR:000008139,http://purl.obolibrary.org/obo/PR_000008139,golgin subfamily B member 1 +12.1508274,PR:000009223,http://purl.obolibrary.org/obo/PR_000009223,junctophilin-2 +12.1508274,PR:000009660,http://purl.obolibrary.org/obo/PR_000009660,laminin subunit gamma-3 +12.1508274,PR:000010827,http://purl.obolibrary.org/obo/PR_000010827,myosin-3 +12.1508274,PR:000014906,http://purl.obolibrary.org/obo/PR_000014906,ski-like protein +12.1508274,PR:000016583,http://purl.obolibrary.org/obo/PR_000016583,thiopurine S-methyltransferase +12.1508274,PR:000016990,http://purl.obolibrary.org/obo/PR_000016990,ubiquitin-conjugating enzyme E2 variant 2 +12.1508274,PR:000017161,http://purl.obolibrary.org/obo/PR_000017161,ubiquitin carboxyl-terminal hydrolase 22 +12.1508274,PR:000022268,http://purl.obolibrary.org/obo/PR_000022268,none +12.1508274,PR:000024126,http://purl.obolibrary.org/obo/PR_000024126,none +12.1508274,PR:000027571,http://purl.obolibrary.org/obo/PR_000027571,none +12.1508274,PR:P07866,http://purl.obolibrary.org/obo/PR_P07866,none +12.1508274,PR:P0DH97,http://purl.obolibrary.org/obo/PR_P0DH97,none +12.1508274,PR:P29465,http://purl.obolibrary.org/obo/PR_P29465,none +12.1508274,PR:P39515,http://purl.obolibrary.org/obo/PR_P39515,none +12.1508274,PR:P52015,http://purl.obolibrary.org/obo/PR_P52015,none +12.1508274,PR:P56778,http://purl.obolibrary.org/obo/PR_P56778,none +12.1508274,PR:Q02770,http://purl.obolibrary.org/obo/PR_Q02770,none +12.1508274,PR:Q38854,http://purl.obolibrary.org/obo/PR_Q38854,none +12.1508274,PR:Q5U3Q6,http://purl.obolibrary.org/obo/PR_Q5U3Q6,none +12.1508274,PR:Q8LCA1,http://purl.obolibrary.org/obo/PR_Q8LCA1,none +12.1508274,PR:Q9XIA9,http://purl.obolibrary.org/obo/PR_Q9XIA9,none +12.1508274,UBERON:0001245,http://purl.obolibrary.org/obo/UBERON_0001245,anus +12.1508274,UBERON:0001390,http://purl.obolibrary.org/obo/UBERON_0001390,sural artery +12.1508274,UBERON:0002059,http://purl.obolibrary.org/obo/UBERON_0002059,submandibular ganglion +12.1508274,UBERON:0002443,http://purl.obolibrary.org/obo/UBERON_0002443,choroidal blood vessel +12.1508274,UBERON:0002718,http://purl.obolibrary.org/obo/UBERON_0002718,solitary tract +12.1508274,UBERON:0003671,http://purl.obolibrary.org/obo/UBERON_0003671,anterior cruciate ligament of knee joint +12.1508274,UBERON:0011043,http://purl.obolibrary.org/obo/UBERON_0011043,obturator muscle +12.1508274,UBERON:0011768,http://purl.obolibrary.org/obo/UBERON_0011768,pineal gland stalk +12.1508274,UBERON:0014716,http://purl.obolibrary.org/obo/UBERON_0014716,interlobular duct +12.1590579,CHEBI:47779,http://purl.obolibrary.org/obo/CHEBI_47779,aminoglycoside +12.1590579,CL:0002150,http://purl.obolibrary.org/obo/CL_0002150,epithelioid macrophage +12.1590579,DRUGBANK:DB01957,http://purl.obolibrary.org/obo/DRUGBANK_DB01957,none +12.1590579,DRUGBANK:DB04045,http://purl.obolibrary.org/obo/DRUGBANK_DB04045,none +12.1590579,DRUGBANK:DB06399,http://purl.obolibrary.org/obo/DRUGBANK_DB06399,none +12.1590579,DRUGBANK:DB06448,http://purl.obolibrary.org/obo/DRUGBANK_DB06448,none +12.1590579,DRUGBANK:DB09333,http://purl.obolibrary.org/obo/DRUGBANK_DB09333,none +12.1590579,DRUGBANK:DB11495,http://purl.obolibrary.org/obo/DRUGBANK_DB11495,none +12.1590579,DRUGBANK:DB11950,http://purl.obolibrary.org/obo/DRUGBANK_DB11950,none +12.1590579,DRUGBANK:DB12621,http://purl.obolibrary.org/obo/DRUGBANK_DB12621,none +12.1590579,DRUGBANK:DB12700,http://purl.obolibrary.org/obo/DRUGBANK_DB12700,none +12.1590579,DRUGBANK:DB13553,http://purl.obolibrary.org/obo/DRUGBANK_DB13553,none +12.1590579,DRUGBANK:DB15641,http://purl.obolibrary.org/obo/DRUGBANK_DB15641,none +12.1590579,GO:0004038,http://purl.obolibrary.org/obo/GO_0004038,allantoinase activity +12.1590579,GO:0006707,http://purl.obolibrary.org/obo/GO_0006707,cholesterol catabolic process +12.1590579,GO:0007264,http://purl.obolibrary.org/obo/GO_0007264,small GTPase mediated signal transduction +12.1590579,GO:0010363,http://purl.obolibrary.org/obo/GO_0010363,regulation of plant-type hypersensitive response +12.1590579,GO:0016621,http://purl.obolibrary.org/obo/GO_0016621,cinnamoyl-CoA reductase activity +12.1590579,GO:0020025,http://purl.obolibrary.org/obo/GO_0020025,subpellicular microtubule +12.1590579,GO:0031224,http://purl.obolibrary.org/obo/GO_0031224,intrinsic component of membrane +12.1590579,GO:0033299,http://purl.obolibrary.org/obo/GO_0033299,secretion of lysosomal enzymes +12.1590579,GO:0043401,http://purl.obolibrary.org/obo/GO_0043401,steroid hormone mediated signaling pathway +12.1590579,GO:0072505,http://purl.obolibrary.org/obo/GO_0072505,divalent inorganic anion homeostasis +12.1590579,GO:0098758,http://purl.obolibrary.org/obo/GO_0098758,response to interleukin-8 +12.1590579,HP:0001907,http://purl.obolibrary.org/obo/HP_0001907,Thromboembolism +12.1590579,HP:0003680,http://purl.obolibrary.org/obo/HP_0003680,Nonprogressive +12.1590579,HP:0010576,http://purl.obolibrary.org/obo/HP_0010576,Intracranial cystic lesion +12.1590579,HP:0011002,http://purl.obolibrary.org/obo/HP_0011002,Osteopetrosis +12.1590579,MONDO:0002316,http://purl.obolibrary.org/obo/MONDO_0002316,motor peripheral neuropathy +12.1590579,MONDO:0002542,http://purl.obolibrary.org/obo/MONDO_0002542,spinal cord glioma +12.1590579,MONDO:0004050,http://purl.obolibrary.org/obo/MONDO_0004050,telangiectatic osteogenic sarcoma +12.1590579,MONDO:0004772,http://purl.obolibrary.org/obo/MONDO_0004772,glaucomatocyclitic crisis +12.1590579,MONDO:0009218,http://purl.obolibrary.org/obo/MONDO_0009218,Farber lipogranulomatosis +12.1590579,MONDO:0010160,http://purl.obolibrary.org/obo/MONDO_0010160,tyrosinemia type II +12.1590579,MONDO:0016707,http://purl.obolibrary.org/obo/MONDO_0016707,astroblastoma +12.1590579,MONDO:0020782,http://purl.obolibrary.org/obo/MONDO_0020782,chronic gingivitis +12.1590579,MONDO:0023868,http://purl.obolibrary.org/obo/MONDO_0023868,melanoma associated retinopathy +12.1590579,NCBITaxon:11272,http://purl.obolibrary.org/obo/NCBITaxon_11272,none +12.1590579,NCBITaxon:118882,http://purl.obolibrary.org/obo/NCBITaxon_118882,Brucellaceae +12.1590579,NCBITaxon:1972576,http://purl.obolibrary.org/obo/NCBITaxon_1972576,none +12.1590579,NCBITaxon:234,http://purl.obolibrary.org/obo/NCBITaxon_234,Brucella +12.1590579,NCBITaxon:2826938,http://purl.obolibrary.org/obo/NCBITaxon_2826938,Brucella/Ochrobactrum group +12.1590579,NCBITaxon:40271,http://purl.obolibrary.org/obo/NCBITaxon_40271,none +12.1590579,NCBITaxon:6580,http://purl.obolibrary.org/obo/NCBITaxon_6580,none +12.1590579,PR:000001397,http://purl.obolibrary.org/obo/PR_000001397,interleukin-9 receptor +12.1590579,PR:000001675,http://purl.obolibrary.org/obo/PR_000001675,sphingosylphosphorylcholine receptor +12.1590579,PR:000002351,http://purl.obolibrary.org/obo/PR_000002351,serine/threonine-protein kinase 26 +12.1590579,PR:000003916,http://purl.obolibrary.org/obo/PR_000003916,"5-aminolevulinate synthase, nonspecific, mitochondrial" +12.1590579,PR:000004454,http://purl.obolibrary.org/obo/PR_000004454,"ATP synthase subunit beta, mitochondrial" +12.1590579,PR:000005327,http://purl.obolibrary.org/obo/PR_000005327,centromere protein F +12.1590579,PR:000005624,http://purl.obolibrary.org/obo/PR_000005624,UMP-CMP kinase +12.1590579,PR:000005849,http://purl.obolibrary.org/obo/PR_000005849,protein crumbs homolog 2 +12.1590579,PR:000005989,http://purl.obolibrary.org/obo/PR_000005989,cancer/testis antigen 2 +12.1590579,PR:000007758,http://purl.obolibrary.org/obo/PR_000007758,gamma-aminobutyric acid receptor-associated protein-like 1 +12.1590579,PR:000007865,http://purl.obolibrary.org/obo/PR_000007865,"glycine amidinotransferase, mitochondrial" +12.1590579,PR:000008618,http://purl.obolibrary.org/obo/PR_000008618,hepatic leukemia factor +12.1590579,PR:000008706,http://purl.obolibrary.org/obo/PR_000008706,homeobox protein Hox-B9 +12.1590579,PR:000009214,http://purl.obolibrary.org/obo/PR_000009214,lysine-specific demethylase 4B +12.1590579,PR:000010209,http://purl.obolibrary.org/obo/PR_000010209,matrin-3 +12.1590579,PR:000011123,http://purl.obolibrary.org/obo/PR_000011123,endonuclease 8-like 2 +12.1590579,PR:000011339,http://purl.obolibrary.org/obo/PR_000011339,RNA-binding protein Nova-1 +12.1590579,PR:000012072,http://purl.obolibrary.org/obo/PR_000012072,otoferlin +12.1590579,PR:000012430,http://purl.obolibrary.org/obo/PR_000012430,Purkinje cell protein 2 +12.1590579,PR:000013439,http://purl.obolibrary.org/obo/PR_000013439,prostate tumor-overexpressed gene 1 protein +12.1590579,PR:000014004,http://purl.obolibrary.org/obo/PR_000014004,RIMS-binding protein 2 +12.1590579,PR:000014137,http://purl.obolibrary.org/obo/PR_000014137,E3 ubiquitin-protein ligase RNF43 +12.1590579,PR:000014431,http://purl.obolibrary.org/obo/PR_000014431,SUMO-activating enzyme subunit 1 +12.1590579,PR:000015046,http://purl.obolibrary.org/obo/PR_000015046,very long-chain acyl-CoA synthetase +12.1590579,PR:000017026,http://purl.obolibrary.org/obo/PR_000017026,ubiquitin carboxyl-terminal hydrolase isozyme L5 +12.1590579,PR:000023848,http://purl.obolibrary.org/obo/PR_000023848,none +12.1590579,PR:000025471,http://purl.obolibrary.org/obo/PR_000025471,none +12.1590579,PR:000036328,http://purl.obolibrary.org/obo/PR_000036328,none +12.1590579,PR:Q09826,http://purl.obolibrary.org/obo/PR_Q09826,none +12.1590579,PR:Q5XPJ9,http://purl.obolibrary.org/obo/PR_Q5XPJ9,none +12.1590579,UBERON:0001089,http://purl.obolibrary.org/obo/UBERON_0001089,sweat +12.1590579,UBERON:0006952,http://purl.obolibrary.org/obo/UBERON_0006952,outer dental epithelium +12.1590579,UBERON:0009010,http://purl.obolibrary.org/obo/UBERON_0009010,periurethral tissue +12.1590579,UBERON:0010228,http://purl.obolibrary.org/obo/UBERON_0010228,ruminal fluid +12.1590579,UBERON:0012299,http://purl.obolibrary.org/obo/UBERON_0012299,mucosa of urethra +12.1590579,UBERON:0014697,http://purl.obolibrary.org/obo/UBERON_0014697,posterior choroidal artery +12.1590579,UBERON:0035508,http://purl.obolibrary.org/obo/UBERON_0035508,branch of posterior cerebral artery +12.1673567,CHEBI:26440,http://purl.obolibrary.org/obo/CHEBI_26440,pyrimidine nucleoside +12.1673567,CHEBI:50795,http://purl.obolibrary.org/obo/CHEBI_50795,nanostructure +12.1673567,DRUGBANK:DB00392,http://purl.obolibrary.org/obo/DRUGBANK_DB00392,none +12.1673567,DRUGBANK:DB01280,http://purl.obolibrary.org/obo/DRUGBANK_DB01280,none +12.1673567,DRUGBANK:DB03646,http://purl.obolibrary.org/obo/DRUGBANK_DB03646,none +12.1673567,DRUGBANK:DB04143,http://purl.obolibrary.org/obo/DRUGBANK_DB04143,none +12.1673567,DRUGBANK:DB05295,http://purl.obolibrary.org/obo/DRUGBANK_DB05295,none +12.1673567,DRUGBANK:DB05559,http://purl.obolibrary.org/obo/DRUGBANK_DB05559,none +12.1673567,DRUGBANK:DB06781,http://purl.obolibrary.org/obo/DRUGBANK_DB06781,none +12.1673567,DRUGBANK:DB09040,http://purl.obolibrary.org/obo/DRUGBANK_DB09040,none +12.1673567,DRUGBANK:DB12553,http://purl.obolibrary.org/obo/DRUGBANK_DB12553,none +12.1673567,DRUGBANK:DB13049,http://purl.obolibrary.org/obo/DRUGBANK_DB13049,none +12.1673567,DRUGBANK:DB13084,http://purl.obolibrary.org/obo/DRUGBANK_DB13084,none +12.1673567,DRUGBANK:DB13152,http://purl.obolibrary.org/obo/DRUGBANK_DB13152,none +12.1673567,DRUGBANK:DB13472,http://purl.obolibrary.org/obo/DRUGBANK_DB13472,none +12.1673567,DRUGBANK:DB13758,http://purl.obolibrary.org/obo/DRUGBANK_DB13758,none +12.1673567,DRUGBANK:DB14148,http://purl.obolibrary.org/obo/DRUGBANK_DB14148,none +12.1673567,DRUGBANK:DB14310,http://purl.obolibrary.org/obo/DRUGBANK_DB14310,none +12.1673567,GO:0004805,http://purl.obolibrary.org/obo/GO_0004805,trehalose-phosphatase activity +12.1673567,GO:0009760,http://purl.obolibrary.org/obo/GO_0009760,C4 photosynthesis +12.1673567,GO:0010509,http://purl.obolibrary.org/obo/GO_0010509,polyamine homeostasis +12.1673567,GO:0015739,http://purl.obolibrary.org/obo/GO_0015739,sialic acid transport +12.1673567,GO:0019605,http://purl.obolibrary.org/obo/GO_0019605,butyrate metabolic process +12.1673567,GO:0022618,http://purl.obolibrary.org/obo/GO_0022618,ribonucleoprotein complex assembly +12.1673567,GO:0043270,http://purl.obolibrary.org/obo/GO_0043270,positive regulation of ion transport +12.1673567,GO:0046581,http://purl.obolibrary.org/obo/GO_0046581,intercellular canaliculus +12.1673567,GO:0048437,http://purl.obolibrary.org/obo/GO_0048437,floral organ development +12.1673567,GO:0052548,http://purl.obolibrary.org/obo/GO_0052548,regulation of endopeptidase activity +12.1673567,GO:0070640,http://purl.obolibrary.org/obo/GO_0070640,vitamin D3 metabolic process +12.1673567,GO:0071826,http://purl.obolibrary.org/obo/GO_0071826,ribonucleoprotein complex subunit organization +12.1673567,GO:1902349,http://purl.obolibrary.org/obo/GO_1902349,response to chloroquine +12.1673567,HP:0002653,http://purl.obolibrary.org/obo/HP_0002653,Bone pain +12.1673567,MONDO:0001374,http://purl.obolibrary.org/obo/MONDO_0001374,bladder sarcoma +12.1673567,MONDO:0002829,http://purl.obolibrary.org/obo/MONDO_0002829,bartholin gland carcinoma +12.1673567,MONDO:0007874,http://purl.obolibrary.org/obo/MONDO_0007874,trichorhinophalangeal syndrome type II +12.1673567,MONDO:0008305,http://purl.obolibrary.org/obo/MONDO_0008305,Currarino triad +12.1673567,MONDO:0012775,http://purl.obolibrary.org/obo/MONDO_0012775,thrombocytopenia 4 +12.1673567,MONDO:0017423,http://purl.obolibrary.org/obo/MONDO_0017423,split hand or/and split foot malformation +12.1673567,MONDO:0019395,http://purl.obolibrary.org/obo/MONDO_0019395,Hinman syndrome +12.1673567,MONDO:0020056,http://purl.obolibrary.org/obo/MONDO_0020056,uniparental disomy of maternal origin +12.1673567,MONDO:0021470,http://purl.obolibrary.org/obo/MONDO_0021470,benign neoplasm of pancreas +12.1673567,MONDO:0025303,http://purl.obolibrary.org/obo/MONDO_0025303,anaplasmosis +12.1673567,MOP:0000646,http://purl.obolibrary.org/obo/MOP_0000646,none +12.1673567,NCBITaxon:106179,http://purl.obolibrary.org/obo/NCBITaxon_106179,phagocytophilum group +12.1673567,NCBITaxon:3313,http://purl.obolibrary.org/obo/NCBITaxon_3313,none +12.1673567,NCBITaxon:34725,http://purl.obolibrary.org/obo/NCBITaxon_34725,none +12.1673567,NCBITaxon:58019,http://purl.obolibrary.org/obo/NCBITaxon_58019,none +12.1673567,NCBITaxon:948,http://purl.obolibrary.org/obo/NCBITaxon_948,Anaplasma phagocytophilum +12.1673567,PR:000001219,http://purl.obolibrary.org/obo/PR_000001219,cysteinyl leukotriene receptor 2 +12.1673567,PR:000003978,http://purl.obolibrary.org/obo/PR_000003978,ALX homeobox protein 1 +12.1673567,PR:000004116,http://purl.obolibrary.org/obo/PR_000004116,amyloid-beta A4 precursor protein-binding family A member 2 +12.1673567,PR:000004204,http://purl.obolibrary.org/obo/PR_000004204,ADP-ribosylation factor 5 +12.1673567,PR:000005040,http://purl.obolibrary.org/obo/PR_000005040,caspase recruitment domain-containing protein 8 +12.1673567,PR:000005372,http://purl.obolibrary.org/obo/PR_000005372,centrin-3 +12.1673567,PR:000005554,http://purl.obolibrary.org/obo/PR_000005554,claudin-6 +12.1673567,PR:000007082,http://purl.obolibrary.org/obo/PR_000007082,beta-enolase +12.1673567,PR:000008065,http://purl.obolibrary.org/obo/PR_000008065,germ cell-less protein-like 1 +12.1673567,PR:000008226,http://purl.obolibrary.org/obo/PR_000008226,protein GREB1 +12.1673567,PR:000010187,http://purl.obolibrary.org/obo/PR_000010187,serine/threonine-protein kinase MARK2 +12.1673567,PR:000012349,http://purl.obolibrary.org/obo/PR_000012349,protocadherin-19 +12.1673567,PR:000013018,http://purl.obolibrary.org/obo/PR_000013018,protein O-mannosyl-transferase 1 +12.1673567,PR:000013689,http://purl.obolibrary.org/obo/PR_000013689,sugar transporter SWEET1 +12.1673567,PR:000014157,http://purl.obolibrary.org/obo/PR_000014157,rod outer segment membrane protein 1 +12.1673567,PR:000015819,http://purl.obolibrary.org/obo/PR_000015819,sulfotransferase 1A2 +12.1673567,PR:000015872,http://purl.obolibrary.org/obo/PR_000015872,synapsin-3 +12.1673567,PR:000016019,http://purl.obolibrary.org/obo/PR_000016019,TATA-binding protein-associated factor 2N +12.1673567,PR:000016040,http://purl.obolibrary.org/obo/PR_000016040,transgelin-2 +12.1673567,PR:000016050,http://purl.obolibrary.org/obo/PR_000016050,serine/threonine-protein kinase TAO3 +12.1673567,PR:000017095,http://purl.obolibrary.org/obo/PR_000017095,netrin receptor UNC5C +12.1673567,PR:000017255,http://purl.obolibrary.org/obo/PR_000017255,Vang-like protein 1 +12.1673567,PR:000029219,http://purl.obolibrary.org/obo/PR_000029219,none +12.1673567,PR:P87206,http://purl.obolibrary.org/obo/PR_P87206,none +12.1673567,PR:Q03212,http://purl.obolibrary.org/obo/PR_Q03212,none +12.1673567,PR:Q39043,http://purl.obolibrary.org/obo/PR_Q39043,none +12.1673567,PR:Q6PHH3,http://purl.obolibrary.org/obo/PR_Q6PHH3,none +12.1673567,PR:Q9S7C9,http://purl.obolibrary.org/obo/PR_Q9S7C9,none +12.1673567,SO:0000393,http://purl.obolibrary.org/obo/SO_0000393,U4_snRNA +12.1673567,UBERON:0001433,http://purl.obolibrary.org/obo/UBERON_0001433,distal carpal bone 4 +12.1673567,UBERON:0001868,http://purl.obolibrary.org/obo/UBERON_0001868,skin of chest +12.1673567,UBERON:0011677,http://purl.obolibrary.org/obo/UBERON_0011677,trunk vertebra +12.1673567,UBERON:0015093,http://purl.obolibrary.org/obo/UBERON_0015093,distal carpal bone 4 endochondral element +12.1673567,UBERON:3000701,http://purl.obolibrary.org/obo/UBERON_3000701,intervertebral space +12.175725,DRUGBANK:DB01414,http://purl.obolibrary.org/obo/DRUGBANK_DB01414,none +12.175725,DRUGBANK:DB08589,http://purl.obolibrary.org/obo/DRUGBANK_DB08589,none +12.175725,DRUGBANK:DB09307,http://purl.obolibrary.org/obo/DRUGBANK_DB09307,none +12.175725,DRUGBANK:DB13324,http://purl.obolibrary.org/obo/DRUGBANK_DB13324,none +12.175725,GO:0002433,http://purl.obolibrary.org/obo/GO_0002433,immune response-regulating cell surface receptor signaling pathway involved in phagocytosis +12.175725,GO:0004316,http://purl.obolibrary.org/obo/GO_0004316,3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity +12.175725,GO:0004506,http://purl.obolibrary.org/obo/GO_0004506,squalene monooxygenase activity +12.175725,GO:0004747,http://purl.obolibrary.org/obo/GO_0004747,ribokinase activity +12.175725,GO:0009445,http://purl.obolibrary.org/obo/GO_0009445,putrescine metabolic process +12.175725,GO:0010045,http://purl.obolibrary.org/obo/GO_0010045,response to nickel cation +12.175725,GO:0014031,http://purl.obolibrary.org/obo/GO_0014031,mesenchymal cell development +12.175725,GO:0015976,http://purl.obolibrary.org/obo/GO_0015976,carbon utilization +12.175725,GO:0031931,http://purl.obolibrary.org/obo/GO_0031931,TORC1 complex +12.175725,GO:0038094,http://purl.obolibrary.org/obo/GO_0038094,Fc-gamma receptor signaling pathway +12.175725,GO:0038096,http://purl.obolibrary.org/obo/GO_0038096,Fc-gamma receptor signaling pathway involved in phagocytosis +12.175725,GO:0042641,http://purl.obolibrary.org/obo/GO_0042641,actomyosin +12.175725,GO:0050407,http://purl.obolibrary.org/obo/GO_0050407,[glycogen-synthase-D] phosphatase activity +12.175725,GO:0090698,http://purl.obolibrary.org/obo/GO_0090698,post-embryonic plant morphogenesis +12.175725,HP:0003249,http://purl.obolibrary.org/obo/HP_0003249,Genital ulcers +12.175725,MONDO:0001234,http://purl.obolibrary.org/obo/MONDO_0001234,adhesive otitis media +12.175725,MONDO:0006241,http://purl.obolibrary.org/obo/MONDO_0006241,hepatic granuloma +12.175725,MONDO:0009292,http://purl.obolibrary.org/obo/MONDO_0009292,glycogen storage disease due to glycogen branching enzyme deficiency +12.175725,MONDO:0019562,http://purl.obolibrary.org/obo/MONDO_0019562,localized scleroderma +12.175725,MONDO:0021482,http://purl.obolibrary.org/obo/MONDO_0021482,benign neoplasm of middle ear +12.175725,MONDO:0027772,http://purl.obolibrary.org/obo/MONDO_0027772,lung colloid adenocarcinoma +12.175725,NCBITaxon:333922,http://purl.obolibrary.org/obo/NCBITaxon_333922,none +12.175725,PR:000003156,http://purl.obolibrary.org/obo/PR_000003156,ubiquitin-conjugating enzyme E2 D1 +12.175725,PR:000004036,http://purl.obolibrary.org/obo/PR_000004036,progressive ankylosis protein +12.175725,PR:000004704,http://purl.obolibrary.org/obo/PR_000004704,B-cell CLL/lymphoma 9 protein +12.175725,PR:000005126,http://purl.obolibrary.org/obo/PR_000005126,G1/S-specific cyclin-E2 +12.175725,PR:000005251,http://purl.obolibrary.org/obo/PR_000005251,CDP-diacylglycerol--inositol 3-phosphatidyltransferase +12.175725,PR:000005463,http://purl.obolibrary.org/obo/PR_000005463,neuronal acetylcholine receptor subunit beta-2 +12.175725,PR:000005597,http://purl.obolibrary.org/obo/PR_000005597,circadian locomoter output cycles protein kaput +12.175725,PR:000006663,http://purl.obolibrary.org/obo/PR_000006663,dipeptidyl peptidase 8 +12.175725,PR:000006895,http://purl.obolibrary.org/obo/PR_000006895,endothelial differentiation-related factor 1 +12.175725,PR:000007466,http://purl.obolibrary.org/obo/PR_000007466,fasciculation and elongation protein zeta-1 +12.175725,PR:000007577,http://purl.obolibrary.org/obo/PR_000007577,dimethylaniline monooxygenase [N-oxide-forming] 4 +12.175725,PR:000008278,http://purl.obolibrary.org/obo/PR_000008278,homeobox protein goosecoid +12.175725,PR:000008344,http://purl.obolibrary.org/obo/PR_000008344,guanylyl cyclase-activating protein 2 +12.175725,PR:000008705,http://purl.obolibrary.org/obo/PR_000008705,homeobox protein Hox-B8 +12.175725,PR:000010089,http://purl.obolibrary.org/obo/PR_000010089,serine/threonine-protein kinase MAK +12.175725,PR:000010962,http://purl.obolibrary.org/obo/PR_000010962,alpha-N-acetylglucosaminidase +12.175725,PR:000013556,http://purl.obolibrary.org/obo/PR_000013556,none +12.175725,PR:000013766,http://purl.obolibrary.org/obo/PR_000013766,Ras association domain-containing protein 5 +12.175725,PR:000013862,http://purl.obolibrary.org/obo/PR_000013862,ATP-dependent DNA helicase Q5 +12.175725,PR:000014491,http://purl.obolibrary.org/obo/PR_000014491,scavenger receptor class A member 3 +12.175725,PR:000015158,http://purl.obolibrary.org/obo/PR_000015158,anion exchange protein 2 +12.175725,PR:000015557,http://purl.obolibrary.org/obo/PR_000015557,spondin-1 +12.175725,PR:000022304,http://purl.obolibrary.org/obo/PR_000022304,none +12.175725,PR:000022462,http://purl.obolibrary.org/obo/PR_000022462,none +12.175725,PR:000022707,http://purl.obolibrary.org/obo/PR_000022707,none +12.175725,PR:000034361,http://purl.obolibrary.org/obo/PR_000034361,none +12.175725,PR:O64740,http://purl.obolibrary.org/obo/PR_O64740,none +12.175725,PR:Q2KNE5,http://purl.obolibrary.org/obo/PR_Q2KNE5,none +12.175725,PR:Q5XVF0,http://purl.obolibrary.org/obo/PR_Q5XVF0,none +12.175725,PR:Q6NKZ8,http://purl.obolibrary.org/obo/PR_Q6NKZ8,none +12.175725,PR:Q9SJG4,http://purl.obolibrary.org/obo/PR_Q9SJG4,none +12.175725,PR:Q9VFX1,http://purl.obolibrary.org/obo/PR_Q9VFX1,none +12.175725,SO:1000036,http://purl.obolibrary.org/obo/SO_1000036,inversion +12.175725,UBERON:0002180,http://purl.obolibrary.org/obo/UBERON_0002180,ventral funiculus of spinal cord +12.175725,UBERON:0002453,http://purl.obolibrary.org/obo/UBERON_0002453,ethmoid sinus +12.175725,UBERON:0003367,http://purl.obolibrary.org/obo/UBERON_0003367,epithelium of vomeronasal organ +12.175725,UBERON:0004553,http://purl.obolibrary.org/obo/UBERON_0004553,forelimb digital artery +12.175725,UBERON:0006841,http://purl.obolibrary.org/obo/UBERON_0006841,central vein of liver +12.1841638,CHEBI:35881,http://purl.obolibrary.org/obo/CHEBI_35881,pnictogen hydride +12.1841638,CHEBI:81571,http://purl.obolibrary.org/obo/CHEBI_81571,Leptin +12.1841638,CL:0002260,http://purl.obolibrary.org/obo/CL_0002260,epithelial cell of parathyroid gland +12.1841638,CL:1001593,http://purl.obolibrary.org/obo/CL_1001593,parathyroid glandular cell +12.1841638,DRUGBANK:DB00265,http://purl.obolibrary.org/obo/DRUGBANK_DB00265,none +12.1841638,DRUGBANK:DB01490,http://purl.obolibrary.org/obo/DRUGBANK_DB01490,none +12.1841638,DRUGBANK:DB03002,http://purl.obolibrary.org/obo/DRUGBANK_DB03002,none +12.1841638,DRUGBANK:DB06233,http://purl.obolibrary.org/obo/DRUGBANK_DB06233,none +12.1841638,DRUGBANK:DB07338,http://purl.obolibrary.org/obo/DRUGBANK_DB07338,none +12.1841638,DRUGBANK:DB08958,http://purl.obolibrary.org/obo/DRUGBANK_DB08958,none +12.1841638,DRUGBANK:DB12873,http://purl.obolibrary.org/obo/DRUGBANK_DB12873,none +12.1841638,DRUGBANK:DB15737,http://purl.obolibrary.org/obo/DRUGBANK_DB15737,none +12.1841638,GO:0000963,http://purl.obolibrary.org/obo/GO_0000963,mitochondrial RNA processing +12.1841638,GO:0002822,http://purl.obolibrary.org/obo/GO_0002822,regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains +12.1841638,GO:0004631,http://purl.obolibrary.org/obo/GO_0004631,phosphomevalonate kinase activity +12.1841638,GO:0004735,http://purl.obolibrary.org/obo/GO_0004735,pyrroline-5-carboxylate reductase activity +12.1841638,GO:0014029,http://purl.obolibrary.org/obo/GO_0014029,neural crest formation +12.1841638,GO:0016161,http://purl.obolibrary.org/obo/GO_0016161,beta-amylase activity +12.1841638,GO:0016278,http://purl.obolibrary.org/obo/GO_0016278,lysine N-methyltransferase activity +12.1841638,GO:0032609,http://purl.obolibrary.org/obo/GO_0032609,interferon-gamma production +12.1841638,GO:0035303,http://purl.obolibrary.org/obo/GO_0035303,regulation of dephosphorylation +12.1841638,GO:0038131,http://purl.obolibrary.org/obo/GO_0038131,neuregulin receptor activity +12.1841638,GO:0042095,http://purl.obolibrary.org/obo/GO_0042095,none +12.1841638,GO:0042396,http://purl.obolibrary.org/obo/GO_0042396,phosphagen biosynthetic process +12.1841638,GO:0042883,http://purl.obolibrary.org/obo/GO_0042883,cysteine transport +12.1841638,GO:0045580,http://purl.obolibrary.org/obo/GO_0045580,regulation of T cell differentiation +12.1841638,GO:0070306,http://purl.obolibrary.org/obo/GO_0070306,lens fiber cell differentiation +12.1841638,GO:0090713,http://purl.obolibrary.org/obo/GO_0090713,immunological memory process +12.1841638,GO:0090715,http://purl.obolibrary.org/obo/GO_0090715,immunological memory formation process +12.1841638,GO:0140053,http://purl.obolibrary.org/obo/GO_0140053,mitochondrial gene expression +12.1841638,GO:1901401,http://purl.obolibrary.org/obo/GO_1901401,regulation of tetrapyrrole metabolic process +12.1841638,HP:0001700,http://purl.obolibrary.org/obo/HP_0001700,Myocardial necrosis +12.1841638,MONDO:0001049,http://purl.obolibrary.org/obo/MONDO_0001049,Dressler syndrome +12.1841638,MONDO:0004446,http://purl.obolibrary.org/obo/MONDO_0004446,olfactory groove meningioma +12.1841638,MONDO:0004804,http://purl.obolibrary.org/obo/MONDO_0004804,dacryoadenitis +12.1841638,MONDO:0005119,http://purl.obolibrary.org/obo/MONDO_0005119,anthrax infection +12.1841638,MONDO:0006407,http://purl.obolibrary.org/obo/MONDO_0006407,sarcomatoid mesothelioma +12.1841638,MONDO:0006923,http://purl.obolibrary.org/obo/MONDO_0006923,Bacillaceae infectious disease +12.1841638,MONDO:0007104,http://purl.obolibrary.org/obo/MONDO_0007104,amyotrophic lateral sclerosis-parkinsonism-dementia complex +12.1841638,MONDO:0007614,http://purl.obolibrary.org/obo/MONDO_0007614,congenital fibrosis of extraocular muscles +12.1841638,MONDO:0009395,http://purl.obolibrary.org/obo/MONDO_0009395,hyperostosis corticalis generalisata +12.1841638,MONDO:0009451,http://purl.obolibrary.org/obo/MONDO_0009451,Nezelof syndrome +12.1841638,MONDO:0010169,http://purl.obolibrary.org/obo/MONDO_0010169,Usher syndrome type 2A +12.1841638,MONDO:0010979,http://purl.obolibrary.org/obo/MONDO_0010979,Timothy syndrome +12.1841638,MONDO:0011292,http://purl.obolibrary.org/obo/MONDO_0011292,"dermatitis, atopic" +12.1841638,MONDO:0015059,http://purl.obolibrary.org/obo/MONDO_0015059,progressive non-fluent aphasia +12.1841638,MONDO:0015814,http://purl.obolibrary.org/obo/MONDO_0015814,primary cutaneous follicle center lymphoma +12.1841638,MONDO:0017612,http://purl.obolibrary.org/obo/MONDO_0017612,junctional epidermolysis bullosa +12.1841638,MONDO:0018901,http://purl.obolibrary.org/obo/MONDO_0018901,left ventricular noncompaction +12.1841638,MONDO:0019191,http://purl.obolibrary.org/obo/MONDO_0019191,IgG4-related dacryoadenitis and sialadenitis +12.1841638,MONDO:0019253,http://purl.obolibrary.org/obo/MONDO_0019253,metabolic disease involving other neurotransmitter deficiency +12.1841638,MONDO:0019527,http://purl.obolibrary.org/obo/MONDO_0019527,undifferentiated connective tissue syndrome +12.1841638,MONDO:0020547,http://purl.obolibrary.org/obo/MONDO_0020547,chronic graft versus host disease +12.1841638,MONDO:0022907,http://purl.obolibrary.org/obo/MONDO_0022907,cutaneous sclerosis +12.1841638,NCBITaxon:10821,http://purl.obolibrary.org/obo/NCBITaxon_10821,none +12.1841638,NCBITaxon:10831,http://purl.obolibrary.org/obo/NCBITaxon_10831,none +12.1841638,NCBITaxon:35497,http://purl.obolibrary.org/obo/NCBITaxon_35497,Suina +12.1841638,NCBITaxon:39745,http://purl.obolibrary.org/obo/NCBITaxon_39745,none +12.1841638,NCBITaxon:4027,http://purl.obolibrary.org/obo/NCBITaxon_4027,none +12.1841638,NCBITaxon:41943,http://purl.obolibrary.org/obo/NCBITaxon_41943,none +12.1841638,NCBITaxon:57486,http://purl.obolibrary.org/obo/NCBITaxon_57486,none +12.1841638,PR:000001475,http://purl.obolibrary.org/obo/PR_000001475,interleukin-26 +12.1841638,PR:000001783,http://purl.obolibrary.org/obo/PR_000001783,interleukin-1 receptor-associated kinase-like 2 +12.1841638,PR:000004500,http://purl.obolibrary.org/obo/PR_000004500,ATR-interacting protein +12.1841638,PR:000005569,http://purl.obolibrary.org/obo/PR_000005569,C-type lectin domain family 4 member D +12.1841638,PR:000005610,http://purl.obolibrary.org/obo/PR_000005610,calsyntenin-2 +12.1841638,PR:000006134,http://purl.obolibrary.org/obo/PR_000006134,cytochrome P450 46A1 +12.1841638,PR:000006610,http://purl.obolibrary.org/obo/PR_000006610,aspartyl aminopeptidase +12.1841638,PR:000007321,http://purl.obolibrary.org/obo/PR_000007321,FAS-associated factor 1 +12.1841638,PR:000007323,http://purl.obolibrary.org/obo/PR_000007323,fumarylacetoacetase +12.1841638,PR:000007988,http://purl.obolibrary.org/obo/PR_000007988,gastric inhibitory polypeptide receptor +12.1841638,PR:000011166,http://purl.obolibrary.org/obo/PR_000011166,"nuclear factor of activated T-cells, cytoplasmic 3" +12.1841638,PR:000012221,http://purl.obolibrary.org/obo/PR_000012221,protein-arginine deiminase type-3 +12.1841638,PR:000013325,http://purl.obolibrary.org/obo/PR_000013325,trypsin-3 +12.1841638,PR:000013679,http://purl.obolibrary.org/obo/PR_000013679,DNA repair and recombination protein RAD54B +12.1841638,PR:000013751,http://purl.obolibrary.org/obo/PR_000013751,GTP-binding protein Rhes +12.1841638,PR:000014212,http://purl.obolibrary.org/obo/PR_000014212,60S ribosomal protein L3 +12.1841638,PR:000014293,http://purl.obolibrary.org/obo/PR_000014293,40S ribosomal protein SA +12.1841638,PR:000015204,http://purl.obolibrary.org/obo/PR_000015204,Y+L amino acid transporter 1 +12.1841638,PR:000016462,http://purl.obolibrary.org/obo/PR_000016462,thymosin beta-10 +12.1841638,PR:000017496,http://purl.obolibrary.org/obo/PR_000017496,Xaa-Pro aminopeptidase 2 +12.1841638,PR:000017556,http://purl.obolibrary.org/obo/PR_000017556,zinc-activated ligand-gated ion channel +12.1841638,PR:000024853,http://purl.obolibrary.org/obo/PR_000024853,none +12.1841638,PR:000032533,http://purl.obolibrary.org/obo/PR_000032533,LIM/homeobox protein Lhx6 +12.1841638,PR:000032571,http://purl.obolibrary.org/obo/PR_000032571,CST complex subunit TEN1 +12.1841638,PR:000044438,http://purl.obolibrary.org/obo/PR_000044438,none +12.1841638,PR:F4HW02,http://purl.obolibrary.org/obo/PR_F4HW02,none +12.1841638,PR:P48002,http://purl.obolibrary.org/obo/PR_P48002,none +12.1841638,PR:Q5AAU5,http://purl.obolibrary.org/obo/PR_Q5AAU5,none +12.1841638,PR:Q6DC84,http://purl.obolibrary.org/obo/PR_Q6DC84,none +12.1841638,PR:Q84K47,http://purl.obolibrary.org/obo/PR_Q84K47,none +12.1841638,UBERON:0002753,http://purl.obolibrary.org/obo/UBERON_0002753,posterior spinocerebellar tract +12.1841638,UBERON:0004455,http://purl.obolibrary.org/obo/UBERON_0004455,neurula embryo +12.1841638,UBERON:0005750,http://purl.obolibrary.org/obo/UBERON_0005750,glomerular parietal epithelium +12.1841638,UBERON:0012318,http://purl.obolibrary.org/obo/UBERON_0012318,anterior ethmoidal artery +12.1841638,UBERON:0014694,http://purl.obolibrary.org/obo/UBERON_0014694,posterior auricular artery +12.1926745,CHEBI:32874,http://purl.obolibrary.org/obo/CHEBI_32874,proline residue +12.1926745,CL:0000247,http://purl.obolibrary.org/obo/CL_0000247,Rohon-Beard neuron +12.1926745,DRUGBANK:DB01025,http://purl.obolibrary.org/obo/DRUGBANK_DB01025,none +12.1926745,DRUGBANK:DB01291,http://purl.obolibrary.org/obo/DRUGBANK_DB01291,none +12.1926745,DRUGBANK:DB02570,http://purl.obolibrary.org/obo/DRUGBANK_DB02570,none +12.1926745,DRUGBANK:DB03348,http://purl.obolibrary.org/obo/DRUGBANK_DB03348,none +12.1926745,DRUGBANK:DB04075,http://purl.obolibrary.org/obo/DRUGBANK_DB04075,none +12.1926745,DRUGBANK:DB05428,http://purl.obolibrary.org/obo/DRUGBANK_DB05428,none +12.1926745,DRUGBANK:DB07565,http://purl.obolibrary.org/obo/DRUGBANK_DB07565,none +12.1926745,DRUGBANK:DB08407,http://purl.obolibrary.org/obo/DRUGBANK_DB08407,none +12.1926745,DRUGBANK:DB09090,http://purl.obolibrary.org/obo/DRUGBANK_DB09090,none +12.1926745,DRUGBANK:DB09208,http://purl.obolibrary.org/obo/DRUGBANK_DB09208,none +12.1926745,DRUGBANK:DB12939,http://purl.obolibrary.org/obo/DRUGBANK_DB12939,none +12.1926745,DRUGBANK:DB13207,http://purl.obolibrary.org/obo/DRUGBANK_DB13207,none +12.1926745,DRUGBANK:DB13488,http://purl.obolibrary.org/obo/DRUGBANK_DB13488,none +12.1926745,GO:0001554,http://purl.obolibrary.org/obo/GO_0001554,luteolysis +12.1926745,GO:0004567,http://purl.obolibrary.org/obo/GO_0004567,beta-mannosidase activity +12.1926745,GO:0008212,http://purl.obolibrary.org/obo/GO_0008212,mineralocorticoid metabolic process +12.1926745,GO:0009233,http://purl.obolibrary.org/obo/GO_0009233,menaquinone metabolic process +12.1926745,GO:0031023,http://purl.obolibrary.org/obo/GO_0031023,microtubule organizing center organization +12.1926745,GO:0035638,http://purl.obolibrary.org/obo/GO_0035638,none +12.1926745,GO:0051101,http://purl.obolibrary.org/obo/GO_0051101,regulation of DNA binding +12.1926745,GO:0051451,http://purl.obolibrary.org/obo/GO_0051451,myoblast migration +12.1926745,GO:0055091,http://purl.obolibrary.org/obo/GO_0055091,phospholipid homeostasis +12.1926745,GO:0060281,http://purl.obolibrary.org/obo/GO_0060281,regulation of oocyte development +12.1926745,GO:1902555,http://purl.obolibrary.org/obo/GO_1902555,endoribonuclease complex +12.1926745,GO:1904250,http://purl.obolibrary.org/obo/GO_1904250,positive regulation of age-related resistance +12.1926745,GO:2000772,http://purl.obolibrary.org/obo/GO_2000772,regulation of cellular senescence +12.1926745,HP:0030645,http://purl.obolibrary.org/obo/HP_0030645,Central +12.1926745,MONDO:0001902,http://purl.obolibrary.org/obo/MONDO_0001902,congenital agammaglobulinemia +12.1926745,MONDO:0003525,http://purl.obolibrary.org/obo/MONDO_0003525,pancreatic gastrin-producing neuroendocrine tumor +12.1926745,MONDO:0003684,http://purl.obolibrary.org/obo/MONDO_0003684,clear cell chondrosarcoma +12.1926745,MONDO:0005616,http://purl.obolibrary.org/obo/MONDO_0005616,pulmonary mucoepidermoid carcinoma +12.1926745,MONDO:0007375,http://purl.obolibrary.org/obo/MONDO_0007375,epithelial basement membrane dystrophy +12.1926745,MONDO:0008668,http://purl.obolibrary.org/obo/MONDO_0008668,von Willebrand disease 1 +12.1926745,MONDO:0011842,http://purl.obolibrary.org/obo/MONDO_0011842,Grn-related frontotemporal lobar degeneration with Tdp43 inclusions +12.1926745,MONDO:0013028,http://purl.obolibrary.org/obo/MONDO_0013028,adenosine monophosphate deaminase deficiency +12.1926745,MONDO:0016668,http://purl.obolibrary.org/obo/MONDO_0016668,sickle cell-beta-thalassemia disease syndrome +12.1926745,MONDO:0016699,http://purl.obolibrary.org/obo/MONDO_0016699,myxopapillary ependymoma +12.1926745,MONDO:0018521,http://purl.obolibrary.org/obo/MONDO_0018521,squamous cell carcinoma of pancreas +12.1926745,MONDO:0018745,http://purl.obolibrary.org/obo/MONDO_0018745,superficial pemphigus +12.1926745,MONDO:0022904,http://purl.obolibrary.org/obo/MONDO_0022904,cryofibrinogenemia +12.1926745,NCBITaxon:10991,http://purl.obolibrary.org/obo/NCBITaxon_10991,none +12.1926745,NCBITaxon:186817,http://purl.obolibrary.org/obo/NCBITaxon_186817,Bacillaceae +12.1926745,NCBITaxon:198037,http://purl.obolibrary.org/obo/NCBITaxon_198037,none +12.1926745,NCBITaxon:7863,http://purl.obolibrary.org/obo/NCBITaxon_7863,Holocephali +12.1926745,NCBITaxon:7864,http://purl.obolibrary.org/obo/NCBITaxon_7864,Chimaeriformes +12.1926745,NCBITaxon:96029,http://purl.obolibrary.org/obo/NCBITaxon_96029,none +12.1926745,NCBITaxon:9821,http://purl.obolibrary.org/obo/NCBITaxon_9821,Suidae +12.1926745,PR:000003140,http://purl.obolibrary.org/obo/PR_000003140,protein pellino +12.1926745,PR:000003835,http://purl.obolibrary.org/obo/PR_000003835,1-acyl-sn-glycerol-3-phosphate acyltransferase beta +12.1926745,PR:000003876,http://purl.obolibrary.org/obo/PR_000003876,aryl-hydrocarbon-interacting protein-like 1 +12.1926745,PR:000003879,http://purl.obolibrary.org/obo/PR_000003879,"adenylate kinase 2, mitochondrial" +12.1926745,PR:000004376,http://purl.obolibrary.org/obo/PR_000004376,ATPase GET3 +12.1926745,PR:000004504,http://purl.obolibrary.org/obo/PR_000004504,ataxin-10 +12.1926745,PR:000004769,http://purl.obolibrary.org/obo/PR_000004769,Bcl-2-modifying factor +12.1926745,PR:000006477,http://purl.obolibrary.org/obo/PR_000006477,protein diaphanous homolog 3 +12.1926745,PR:000006661,http://purl.obolibrary.org/obo/PR_000006661,dipeptidyl aminopeptidase-like protein 6 +12.1926745,PR:000006871,http://purl.obolibrary.org/obo/PR_000006871,emopamil-binding protein-like +12.1926745,PR:000007232,http://purl.obolibrary.org/obo/PR_000007232,Ellis-van Creveld syndrome protein +12.1926745,PR:000007368,http://purl.obolibrary.org/obo/PR_000007368,lysine-specific demethylase 2B +12.1926745,PR:000010856,http://purl.obolibrary.org/obo/PR_000010856,myosin-Ib +12.1926745,PR:000011188,http://purl.obolibrary.org/obo/PR_000011188,nuclear transcription factor Y subunit alpha +12.1926745,PR:000011528,http://purl.obolibrary.org/obo/PR_000011528,nucleoporin NUP42 +12.1926745,PR:000012603,http://purl.obolibrary.org/obo/PR_000012603,carboxypeptidase Q +12.1926745,PR:000013202,http://purl.obolibrary.org/obo/PR_000013202,"phosphatidylinositol 3,4,5-trisphosphate-dependent Rac exchanger 1 protein" +12.1926745,PR:000013783,http://purl.obolibrary.org/obo/PR_000013783,RNA-binding protein 10 +12.1926745,PR:000014235,http://purl.obolibrary.org/obo/PR_000014235,60S ribosomal protein L8 +12.1926745,PR:000015559,http://purl.obolibrary.org/obo/PR_000015559,speckle-type POZ protein +12.1926745,PR:000022826,http://purl.obolibrary.org/obo/PR_000022826,none +12.1926745,PR:000022840,http://purl.obolibrary.org/obo/PR_000022840,none +12.1926745,PR:000022929,http://purl.obolibrary.org/obo/PR_000022929,none +12.1926745,PR:000027997,http://purl.obolibrary.org/obo/PR_000027997,none +12.1926745,PR:000029923,http://purl.obolibrary.org/obo/PR_000029923,none +12.1926745,PR:000034002,http://purl.obolibrary.org/obo/PR_000034002,none +12.1926745,PR:000050197,http://purl.obolibrary.org/obo/PR_000050197,none +12.1926745,PR:Q961D9,http://purl.obolibrary.org/obo/PR_Q961D9,none +12.1926745,PR:Q9FVJ3,http://purl.obolibrary.org/obo/PR_Q9FVJ3,none +12.1926745,PR:Q9SLH3,http://purl.obolibrary.org/obo/PR_Q9SLH3,none +12.1926745,SO:0000395,http://purl.obolibrary.org/obo/SO_0000395,U5_snRNA +12.1926745,UBERON:0000124,http://purl.obolibrary.org/obo/UBERON_0000124,epineurium +12.1926745,UBERON:0003354,http://purl.obolibrary.org/obo/UBERON_0003354,epithelium of rectum +12.1926745,UBERON:0005432,http://purl.obolibrary.org/obo/UBERON_0005432,aortic sac +12.1926745,UBERON:0009117,http://purl.obolibrary.org/obo/UBERON_0009117,indifferent gonad +12.1926745,UBERON:0016885,http://purl.obolibrary.org/obo/UBERON_0016885,epithelium of terminal part of digestive tract +12.1926745,UBERON:0035049,http://purl.obolibrary.org/obo/UBERON_0035049,excretory duct of salivary gland +12.1926745,UBERON:2001898,http://purl.obolibrary.org/obo/UBERON_2001898,ceratobranchial element +12.2012583,CHEBI:35504,http://purl.obolibrary.org/obo/CHEBI_35504,addition compound +12.2012583,CHEBI:35505,http://purl.obolibrary.org/obo/CHEBI_35505,hydrate +12.2012583,CL:0002290,http://purl.obolibrary.org/obo/CL_0002290,Y chromosome-bearing sperm cell +12.2012583,DRUGBANK:DB00272,http://purl.obolibrary.org/obo/DRUGBANK_DB00272,none +12.2012583,DRUGBANK:DB03516,http://purl.obolibrary.org/obo/DRUGBANK_DB03516,none +12.2012583,DRUGBANK:DB10434,http://purl.obolibrary.org/obo/DRUGBANK_DB10434,none +12.2012583,DRUGBANK:DB11256,http://purl.obolibrary.org/obo/DRUGBANK_DB11256,none +12.2012583,DRUGBANK:DB12902,http://purl.obolibrary.org/obo/DRUGBANK_DB12902,none +12.2012583,DRUGBANK:DB13772,http://purl.obolibrary.org/obo/DRUGBANK_DB13772,none +12.2012583,GO:0000128,http://purl.obolibrary.org/obo/GO_0000128,flocculation +12.2012583,GO:0000375,http://purl.obolibrary.org/obo/GO_0000375,"RNA splicing, via transesterification reactions" +12.2012583,GO:0006531,http://purl.obolibrary.org/obo/GO_0006531,aspartate metabolic process +12.2012583,GO:0008053,http://purl.obolibrary.org/obo/GO_0008053,mitochondrial fusion +12.2012583,GO:0008470,http://purl.obolibrary.org/obo/GO_0008470,isovaleryl-CoA dehydrogenase activity +12.2012583,GO:0009220,http://purl.obolibrary.org/obo/GO_0009220,pyrimidine ribonucleotide biosynthetic process +12.2012583,GO:0030899,http://purl.obolibrary.org/obo/GO_0030899,calcium-dependent ATPase activity +12.2012583,GO:0031396,http://purl.obolibrary.org/obo/GO_0031396,regulation of protein ubiquitination +12.2012583,GO:0034696,http://purl.obolibrary.org/obo/GO_0034696,response to prostaglandin F +12.2012583,GO:0036215,http://purl.obolibrary.org/obo/GO_0036215,response to stem cell factor +12.2012583,GO:0043271,http://purl.obolibrary.org/obo/GO_0043271,negative regulation of ion transport +12.2012583,GO:0045787,http://purl.obolibrary.org/obo/GO_0045787,positive regulation of cell cycle +12.2012583,GO:0047654,http://purl.obolibrary.org/obo/GO_0047654,alliin lyase activity +12.2012583,GO:0051938,http://purl.obolibrary.org/obo/GO_0051938,L-glutamate import +12.2012583,GO:0061082,http://purl.obolibrary.org/obo/GO_0061082,myeloid leukocyte cytokine production +12.2012583,GO:0070588,http://purl.obolibrary.org/obo/GO_0070588,calcium ion transmembrane transport +12.2012583,GO:0080111,http://purl.obolibrary.org/obo/GO_0080111,DNA demethylation +12.2012583,GO:0097503,http://purl.obolibrary.org/obo/GO_0097503,sialylation +12.2012583,HP:0000074,http://purl.obolibrary.org/obo/HP_0000074,Ureteropelvic junction obstruction +12.2012583,HP:0002063,http://purl.obolibrary.org/obo/HP_0002063,Rigidity +12.2012583,HP:0030692,http://purl.obolibrary.org/obo/HP_0030692,Brain neoplasm +12.2012583,MONDO:0000979,http://purl.obolibrary.org/obo/MONDO_0000979,pinta disease +12.2012583,MONDO:0001031,http://purl.obolibrary.org/obo/MONDO_0001031,purulent acute otitis media +12.2012583,MONDO:0001946,http://purl.obolibrary.org/obo/MONDO_0001946,hyperestrogenism +12.2012583,MONDO:0002721,http://purl.obolibrary.org/obo/MONDO_0002721,necrosis of pituitary +12.2012583,MONDO:0003707,http://purl.obolibrary.org/obo/MONDO_0003707,distal biliary tract carcinoma +12.2012583,MONDO:0004923,http://purl.obolibrary.org/obo/MONDO_0004923,chronic inflammation of lacrimal passage +12.2012583,MONDO:0005605,http://purl.obolibrary.org/obo/MONDO_0005605,transitional cell papilloma +12.2012583,MONDO:0005717,http://purl.obolibrary.org/obo/MONDO_0005717,contagious pustular dermatitis +12.2012583,MONDO:0007099,http://purl.obolibrary.org/obo/MONDO_0007099,familial visceral amyloidosis +12.2012583,MONDO:0008157,http://purl.obolibrary.org/obo/MONDO_0008157,Buschke-Ollendorff syndrome +12.2012583,MONDO:0008926,http://purl.obolibrary.org/obo/MONDO_0008926,COFS syndrome +12.2012583,MONDO:0009940,http://purl.obolibrary.org/obo/MONDO_0009940,pycnodysostosis +12.2012583,MONDO:0010180,http://purl.obolibrary.org/obo/MONDO_0010180,autosomal recessive spondylocostal dysostosis +12.2012583,MONDO:0012956,http://purl.obolibrary.org/obo/MONDO_0012956,"multiple sclerosis, susceptibility to, 2" +12.2012583,MONDO:0015807,http://purl.obolibrary.org/obo/MONDO_0015807,myopic macular degeneration +12.2012583,MONDO:0017160,http://purl.obolibrary.org/obo/MONDO_0017160,behavioral variant of frontotemporal dementia +12.2012583,MONDO:0017593,http://purl.obolibrary.org/obo/MONDO_0017593,juvenile amyotrophic lateral sclerosis +12.2012583,MONDO:0018624,http://purl.obolibrary.org/obo/MONDO_0018624,spontaneous intracranial hypotension +12.2012583,MONDO:0019415,http://purl.obolibrary.org/obo/MONDO_0019415,fetal and neonatal alloimmune thrombocytopenia +12.2012583,MONDO:0041806,http://purl.obolibrary.org/obo/MONDO_0041806,drug-resistant tuberculosis +12.2012583,NCBITaxon:10817,http://purl.obolibrary.org/obo/NCBITaxon_10817,none +12.2012583,NCBITaxon:11240,http://purl.obolibrary.org/obo/NCBITaxon_11240,none +12.2012583,PR:000001174,http://purl.obolibrary.org/obo/PR_000001174,C5a anaphylatoxin chemotactic receptor 2 +12.2012583,PR:000004453,http://purl.obolibrary.org/obo/PR_000004453,"ATP synthase subunit alpha, mitochondrial" +12.2012583,PR:000005925,http://purl.obolibrary.org/obo/PR_000005925,cysteine sulfinic acid decarboxylase +12.2012583,PR:000006717,http://purl.obolibrary.org/obo/PR_000006717,dystrobrevin alpha +12.2012583,PR:000007006,http://purl.obolibrary.org/obo/PR_000007006,eukaryotic translation initiation factor 5B +12.2012583,PR:000007110,http://purl.obolibrary.org/obo/PR_000007110,band 4.1-like protein 3 +12.2012583,PR:000007247,http://purl.obolibrary.org/obo/PR_000007247,exocyst complex component 2 +12.2012583,PR:000010147,http://purl.obolibrary.org/obo/PR_000010147,microtubule-associated protein 6 +12.2012583,PR:000012028,http://purl.obolibrary.org/obo/PR_000012028,protein orai-3 +12.2012583,PR:000013733,http://purl.obolibrary.org/obo/PR_000013733,Ras-associated and pleckstrin homology domains-containing protein 1 +12.2012583,PR:000015416,http://purl.obolibrary.org/obo/PR_000015416,sclerostin domain-containing protein 1 +12.2012583,PR:000016806,http://purl.obolibrary.org/obo/PR_000016806,tubby protein +12.2012583,PR:000022034,http://purl.obolibrary.org/obo/PR_000022034,none +12.2012583,PR:000031183,http://purl.obolibrary.org/obo/PR_000031183,transmembrane protein 171 +12.2012583,PR:000032415,http://purl.obolibrary.org/obo/PR_000032415,CHRNA7-FAM7A fusion protein +12.2012583,PR:000032616,http://purl.obolibrary.org/obo/PR_000032616,ubiquitin-conjugating enzyme E2 L3 +12.2012583,PR:O23237,http://purl.obolibrary.org/obo/PR_O23237,none +12.2012583,PR:O59838,http://purl.obolibrary.org/obo/PR_O59838,none +12.2012583,PR:P28186,http://purl.obolibrary.org/obo/PR_P28186,none +12.2012583,PR:Q06598,http://purl.obolibrary.org/obo/PR_Q06598,none +12.2012583,PR:Q5A961,http://purl.obolibrary.org/obo/PR_Q5A961,none +12.2012583,PR:Q9V4P1,http://purl.obolibrary.org/obo/PR_Q9V4P1,none +12.2012583,PR:Q9Y7X6,http://purl.obolibrary.org/obo/PR_Q9Y7X6,none +12.2012583,SO:0000929,http://purl.obolibrary.org/obo/SO_0000929,edited_mRNA +12.2012583,UBERON:0000371,http://purl.obolibrary.org/obo/UBERON_0000371,syncytiotrophoblast +12.2012583,UBERON:0001508,http://purl.obolibrary.org/obo/UBERON_0001508,arch of aorta +12.2012583,UBERON:0002243,http://purl.obolibrary.org/obo/UBERON_0002243,cutaneous vein +12.2012583,UBERON:0003614,http://purl.obolibrary.org/obo/UBERON_0003614,blood vessel elastic tissue +12.2012583,UBERON:0011389,http://purl.obolibrary.org/obo/UBERON_0011389,bulbospongiosus muscle +12.2012583,UBERON:0012317,http://purl.obolibrary.org/obo/UBERON_0012317,vagina orifice +12.2012583,UBERON:0019251,http://purl.obolibrary.org/obo/UBERON_0019251,4-cell stage embryo +12.2012583,UBERON:2001293,http://purl.obolibrary.org/obo/UBERON_2001293,posterior kidney +12.2012583,UBERON:3010636,http://purl.obolibrary.org/obo/UBERON_3010636,egg capsule +12.2099163,CHEBI:16539,http://purl.obolibrary.org/obo/CHEBI_16539,depurinated DNA +12.2099163,CHEBI:33599,http://purl.obolibrary.org/obo/CHEBI_33599,spiro compound +12.2099163,CHEBI:38070,http://purl.obolibrary.org/obo/CHEBI_38070,anti-arrhythmia drug +12.2099163,CHEBI:60247,http://purl.obolibrary.org/obo/CHEBI_60247,silver ion +12.2099163,CHEBI:64626,http://purl.obolibrary.org/obo/CHEBI_64626,teichuronic acid +12.2099163,CHEBI:72813,http://purl.obolibrary.org/obo/CHEBI_72813,exopolysaccharide +12.2099163,CL:0000446,http://purl.obolibrary.org/obo/CL_0000446,chief cell of parathyroid gland +12.2099163,CL:0000655,http://purl.obolibrary.org/obo/CL_0000655,secondary oocyte +12.2099163,DRUGBANK:DB00093,http://purl.obolibrary.org/obo/DRUGBANK_DB00093,none +12.2099163,DRUGBANK:DB06372,http://purl.obolibrary.org/obo/DRUGBANK_DB06372,none +12.2099163,DRUGBANK:DB06764,http://purl.obolibrary.org/obo/DRUGBANK_DB06764,none +12.2099163,DRUGBANK:DB10545,http://purl.obolibrary.org/obo/DRUGBANK_DB10545,none +12.2099163,DRUGBANK:DB12314,http://purl.obolibrary.org/obo/DRUGBANK_DB12314,none +12.2099163,DRUGBANK:DB12523,http://purl.obolibrary.org/obo/DRUGBANK_DB12523,none +12.2099163,DRUGBANK:DB13404,http://purl.obolibrary.org/obo/DRUGBANK_DB13404,none +12.2099163,DRUGBANK:DB13574,http://purl.obolibrary.org/obo/DRUGBANK_DB13574,none +12.2099163,DRUGBANK:DB14669,http://purl.obolibrary.org/obo/DRUGBANK_DB14669,none +12.2099163,DRUGBANK:DB16014,http://purl.obolibrary.org/obo/DRUGBANK_DB16014,none +12.2099163,GO:0002181,http://purl.obolibrary.org/obo/GO_0002181,cytoplasmic translation +12.2099163,GO:0003859,http://purl.obolibrary.org/obo/GO_0003859,3-hydroxybutyryl-CoA dehydratase activity +12.2099163,GO:0006545,http://purl.obolibrary.org/obo/GO_0006545,glycine biosynthetic process +12.2099163,GO:0008479,http://purl.obolibrary.org/obo/GO_0008479,queuine tRNA-ribosyltransferase activity +12.2099163,GO:0008531,http://purl.obolibrary.org/obo/GO_0008531,riboflavin kinase activity +12.2099163,GO:0016131,http://purl.obolibrary.org/obo/GO_0016131,brassinosteroid metabolic process +12.2099163,GO:0016279,http://purl.obolibrary.org/obo/GO_0016279,protein-lysine N-methyltransferase activity +12.2099163,GO:0021885,http://purl.obolibrary.org/obo/GO_0021885,forebrain cell migration +12.2099163,GO:0031647,http://purl.obolibrary.org/obo/GO_0031647,regulation of protein stability +12.2099163,GO:0034433,http://purl.obolibrary.org/obo/GO_0034433,steroid esterification +12.2099163,GO:0036322,http://purl.obolibrary.org/obo/GO_0036322,pancreatic polypeptide secretion +12.2099163,GO:0043159,http://purl.obolibrary.org/obo/GO_0043159,acrosomal matrix +12.2099163,GO:0043683,http://purl.obolibrary.org/obo/GO_0043683,type IV pilus assembly +12.2099163,GO:0070471,http://purl.obolibrary.org/obo/GO_0070471,uterine smooth muscle contraction +12.2099163,GO:0071739,http://purl.obolibrary.org/obo/GO_0071739,"IgD immunoglobulin complex, circulating" +12.2099163,GO:0072490,http://purl.obolibrary.org/obo/GO_0072490,toluene-containing compound metabolic process +12.2099163,GO:0085029,http://purl.obolibrary.org/obo/GO_0085029,extracellular matrix assembly +12.2099163,GO:0098552,http://purl.obolibrary.org/obo/GO_0098552,side of membrane +12.2099163,HP:0001096,http://purl.obolibrary.org/obo/HP_0001096,Keratoconjunctivitis +12.2099163,HP:0004306,http://purl.obolibrary.org/obo/HP_0004306,Abnormal endocardium morphology +12.2099163,HP:0030646,http://purl.obolibrary.org/obo/HP_0030646,Peripheral +12.2099163,MONDO:0001050,http://purl.obolibrary.org/obo/MONDO_0001050,malignant otitis externa +12.2099163,MONDO:0001730,http://purl.obolibrary.org/obo/MONDO_0001730,urethral syndrome +12.2099163,MONDO:0003010,http://purl.obolibrary.org/obo/MONDO_0003010,multilocular clear cell renal cell carcinoma +12.2099163,MONDO:0003426,http://purl.obolibrary.org/obo/MONDO_0003426,clear cell adenoma +12.2099163,MONDO:0003643,http://purl.obolibrary.org/obo/MONDO_0003643,giant hemangioma +12.2099163,MONDO:0005645,http://purl.obolibrary.org/obo/MONDO_0005645,ancylostomiasis +12.2099163,MONDO:0006223,http://purl.obolibrary.org/obo/MONDO_0006223,gastric diffuse large B-cell lymphoma +12.2099163,MONDO:0006553,http://purl.obolibrary.org/obo/MONDO_0006553,Fox-Fordyce disease +12.2099163,MONDO:0007096,http://purl.obolibrary.org/obo/MONDO_0007096,amenorrhea-galactorrhea syndrome +12.2099163,MONDO:0008583,http://purl.obolibrary.org/obo/MONDO_0008583,inherited torticollis +12.2099163,MONDO:0016603,http://purl.obolibrary.org/obo/MONDO_0016603,citrullinemia type II +12.2099163,MONDO:0016682,http://purl.obolibrary.org/obo/MONDO_0016682,giant cell glioblastoma +12.2099163,MONDO:0017800,http://purl.obolibrary.org/obo/MONDO_0017800,pseudo-Meigs syndrome +12.2099163,MONDO:0019640,http://purl.obolibrary.org/obo/MONDO_0019640,posterior urethral valve +12.2099163,NCBITaxon:1344963,http://purl.obolibrary.org/obo/NCBITaxon_1344963,none +12.2099163,NCBITaxon:169863,http://purl.obolibrary.org/obo/NCBITaxon_169863,none +12.2099163,PR:000001334,http://purl.obolibrary.org/obo/PR_000001334,choline transporter-like protein 1 +12.2099163,PR:000001615,http://purl.obolibrary.org/obo/PR_000001615,muscarinic acetylcholine receptor M3 +12.2099163,PR:000002097,http://purl.obolibrary.org/obo/PR_000002097,sodium channel protein type 11 subunit alpha +12.2099163,PR:000003934,http://purl.obolibrary.org/obo/PR_000003934,fructose-bisphosphate aldolase A +12.2099163,PR:000004031,http://purl.obolibrary.org/obo/PR_000004031,angiopoietin-related protein 6 +12.2099163,PR:000004749,http://purl.obolibrary.org/obo/PR_000004749,bridging integrator 2 +12.2099163,PR:000005150,http://purl.obolibrary.org/obo/PR_000005150,T-complex protein 1 subunit beta +12.2099163,PR:000005326,http://purl.obolibrary.org/obo/PR_000005326,centromere-associated protein E +12.2099163,PR:000005598,http://purl.obolibrary.org/obo/PR_000005598,pre-mRNA cleavage complex II protein Clp1 +12.2099163,PR:000005751,http://purl.obolibrary.org/obo/PR_000005751,"4-hydroxybenzoate polyprenyltransferase, mitochondrial" +12.2099163,PR:000005884,http://purl.obolibrary.org/obo/PR_000005884,cyclin-dependent kinase 12 +12.2099163,PR:000006643,http://purl.obolibrary.org/obo/PR_000006643,UDP-N-acetylglucosamine--dolichyl-phosphate N-acetylglucosaminephosphotransferase +12.2099163,PR:000007417,http://purl.obolibrary.org/obo/PR_000007417,F-box only protein 5 +12.2099163,PR:000008398,http://purl.obolibrary.org/obo/PR_000008398,none +12.2099163,PR:000008700,http://purl.obolibrary.org/obo/PR_000008700,homeobox protein Hox-B3 +12.2099163,PR:000009655,http://purl.obolibrary.org/obo/PR_000009655,laminin subunit beta-2 +12.2099163,PR:000009920,http://purl.obolibrary.org/obo/PR_000009920,low-density lipoprotein receptor-related protein 1B +12.2099163,PR:000010579,http://purl.obolibrary.org/obo/PR_000010579,"39S ribosomal protein L17, mitochondrial" +12.2099163,PR:000010674,http://purl.obolibrary.org/obo/PR_000010674,E3 ubiquitin-protein ligase MSL2 +12.2099163,PR:000012274,http://purl.obolibrary.org/obo/PR_000012274,bifunctional 3'-phosphoadenosine 5'-phosphosulfate synthase 2 +12.2099163,PR:000012975,http://purl.obolibrary.org/obo/PR_000012975,DNA polymerase eta +12.2099163,PR:000013329,http://purl.obolibrary.org/obo/PR_000013329,enteropeptidase +12.2099163,PR:000014322,http://purl.obolibrary.org/obo/PR_000014322,remodeling and spacing factor 1 +12.2099163,PR:000014421,http://purl.obolibrary.org/obo/PR_000014421,protein S100-P +12.2099163,PR:000014657,http://purl.obolibrary.org/obo/PR_000014657,septin-5 +12.2099163,PR:000014918,http://purl.obolibrary.org/obo/PR_000014918,ileal sodium/bile acid cotransporter +12.2099163,PR:000014929,http://purl.obolibrary.org/obo/PR_000014929,solute carrier family 12 member 6 +12.2099163,PR:000015347,http://purl.obolibrary.org/obo/PR_000015347,small nuclear ribonucleoprotein F +12.2099163,PR:000017110,http://purl.obolibrary.org/obo/PR_000017110,regulator of nonsense transcripts 3A +12.2099163,PR:000017669,http://purl.obolibrary.org/obo/PR_000017669,zinc finger protein ZIC 5 +12.2099163,PR:000018176,http://purl.obolibrary.org/obo/PR_000018176,zinc finger protein 823 +12.2099163,PR:000021958,http://purl.obolibrary.org/obo/PR_000021958,none +12.2099163,PR:000022248,http://purl.obolibrary.org/obo/PR_000022248,none +12.2099163,PR:000023242,http://purl.obolibrary.org/obo/PR_000023242,none +12.2099163,PR:000024153,http://purl.obolibrary.org/obo/PR_000024153,none +12.2099163,PR:000029116,http://purl.obolibrary.org/obo/PR_000029116,HMG domain-containing protein 3 +12.2099163,PR:000029402,http://purl.obolibrary.org/obo/PR_000029402,neutrophil defensin 3 +12.2099163,PR:000032758,http://purl.obolibrary.org/obo/PR_000032758,AF4/FMR2 family member 2 +12.2099163,PR:000033214,http://purl.obolibrary.org/obo/PR_000033214,none +12.2099163,PR:000035241,http://purl.obolibrary.org/obo/PR_000035241,none +12.2099163,PR:000050099,http://purl.obolibrary.org/obo/PR_000050099,Boreoeutherial-type ATP-dependent 6-phosphofructokinase +12.2099163,PR:P00358,http://purl.obolibrary.org/obo/PR_P00358,none +12.2099163,PR:P11938,http://purl.obolibrary.org/obo/PR_P11938,none +12.2099163,PR:P13711,http://purl.obolibrary.org/obo/PR_P13711,none +12.2099163,PR:Q7ZT82,http://purl.obolibrary.org/obo/PR_Q7ZT82,none +12.2099163,PR:Q9SIY8,http://purl.obolibrary.org/obo/PR_Q9SIY8,none +12.2099163,SO:0000716,http://purl.obolibrary.org/obo/SO_0000716,dicistronic_mRNA +12.2099163,SO:0000815,http://purl.obolibrary.org/obo/SO_0000815,mini_gene +12.2099163,SO:0001050,http://purl.obolibrary.org/obo/SO_0001050,repeat_fragment +12.2099163,SO:0001276,http://purl.obolibrary.org/obo/SO_0001276,modified_guanosine +12.2099163,SO:0001902,http://purl.obolibrary.org/obo/SO_0001902,splice_region +12.2099163,UBERON:0001296,http://purl.obolibrary.org/obo/UBERON_0001296,myometrium +12.2099163,UBERON:0003613,http://purl.obolibrary.org/obo/UBERON_0003613,cardiovascular system elastic tissue +12.2099163,UBERON:0004662,http://purl.obolibrary.org/obo/UBERON_0004662,vertebra lamina +12.2099163,UBERON:0012348,http://purl.obolibrary.org/obo/UBERON_0012348,autopod pad +12.2099163,UBERON:0019303,http://purl.obolibrary.org/obo/UBERON_0019303,occipital sulcus +12.21865,CHEBI:29805,http://purl.obolibrary.org/obo/CHEBI_29805,glycolate +12.21865,CHEBI:37948,http://purl.obolibrary.org/obo/CHEBI_37948,oxaspiro compound +12.21865,CHEBI:4056,http://purl.obolibrary.org/obo/CHEBI_4056,cytochrome +12.21865,CHEBI:51076,http://purl.obolibrary.org/obo/CHEBI_51076,antifouling biocide +12.21865,CL:0000550,http://purl.obolibrary.org/obo/CL_0000550,polychromatophilic erythroblast +12.21865,CL:0000866,http://purl.obolibrary.org/obo/CL_0000866,thymic macrophage +12.21865,CL:0002254,http://purl.obolibrary.org/obo/CL_0002254,epithelial cell of small intestine +12.21865,DRUGBANK:DB01621,http://purl.obolibrary.org/obo/DRUGBANK_DB01621,none +12.21865,DRUGBANK:DB03938,http://purl.obolibrary.org/obo/DRUGBANK_DB03938,none +12.21865,DRUGBANK:DB03940,http://purl.obolibrary.org/obo/DRUGBANK_DB03940,none +12.21865,DRUGBANK:DB04996,http://purl.obolibrary.org/obo/DRUGBANK_DB04996,none +12.21865,DRUGBANK:DB08927,http://purl.obolibrary.org/obo/DRUGBANK_DB08927,none +12.21865,DRUGBANK:DB09143,http://purl.obolibrary.org/obo/DRUGBANK_DB09143,none +12.21865,DRUGBANK:DB11179,http://purl.obolibrary.org/obo/DRUGBANK_DB11179,none +12.21865,DRUGBANK:DB12070,http://purl.obolibrary.org/obo/DRUGBANK_DB12070,none +12.21865,DRUGBANK:DB12200,http://purl.obolibrary.org/obo/DRUGBANK_DB12200,none +12.21865,DRUGBANK:DB12679,http://purl.obolibrary.org/obo/DRUGBANK_DB12679,none +12.21865,DRUGBANK:DB13811,http://purl.obolibrary.org/obo/DRUGBANK_DB13811,none +12.21865,DRUGBANK:DB15532,http://purl.obolibrary.org/obo/DRUGBANK_DB15532,none +12.21865,GO:0004045,http://purl.obolibrary.org/obo/GO_0004045,aminoacyl-tRNA hydrolase activity +12.21865,GO:0004087,http://purl.obolibrary.org/obo/GO_0004087,carbamoyl-phosphate synthase (ammonia) activity +12.21865,GO:0004826,http://purl.obolibrary.org/obo/GO_0004826,phenylalanine-tRNA ligase activity +12.21865,GO:0004924,http://purl.obolibrary.org/obo/GO_0004924,oncostatin-M receptor activity +12.21865,GO:0006364,http://purl.obolibrary.org/obo/GO_0006364,rRNA processing +12.21865,GO:0014855,http://purl.obolibrary.org/obo/GO_0014855,striated muscle cell proliferation +12.21865,GO:0015920,http://purl.obolibrary.org/obo/GO_0015920,lipopolysaccharide transport +12.21865,GO:0016068,http://purl.obolibrary.org/obo/GO_0016068,type I hypersensitivity +12.21865,GO:0016401,http://purl.obolibrary.org/obo/GO_0016401,palmitoyl-CoA oxidase activity +12.21865,GO:0019156,http://purl.obolibrary.org/obo/GO_0019156,isoamylase activity +12.21865,GO:0022029,http://purl.obolibrary.org/obo/GO_0022029,telencephalon cell migration +12.21865,GO:0030647,http://purl.obolibrary.org/obo/GO_0030647,aminoglycoside antibiotic metabolic process +12.21865,GO:0034434,http://purl.obolibrary.org/obo/GO_0034434,sterol esterification +12.21865,GO:0042167,http://purl.obolibrary.org/obo/GO_0042167,heme catabolic process +12.21865,GO:0042575,http://purl.obolibrary.org/obo/GO_0042575,DNA polymerase complex +12.21865,GO:0042891,http://purl.obolibrary.org/obo/GO_0042891,none +12.21865,GO:0051297,http://purl.obolibrary.org/obo/GO_0051297,none +12.21865,GO:0051322,http://purl.obolibrary.org/obo/GO_0051322,anaphase +12.21865,GO:0051495,http://purl.obolibrary.org/obo/GO_0051495,positive regulation of cytoskeleton organization +12.21865,GO:0060571,http://purl.obolibrary.org/obo/GO_0060571,morphogenesis of an epithelial fold +12.21865,GO:0070553,http://purl.obolibrary.org/obo/GO_0070553,nicotinic acid receptor activity +12.21865,GO:0097068,http://purl.obolibrary.org/obo/GO_0097068,response to thyroxine +12.21865,GO:0097166,http://purl.obolibrary.org/obo/GO_0097166,lens epithelial cell proliferation +12.21865,GO:1903531,http://purl.obolibrary.org/obo/GO_1903531,negative regulation of secretion by cell +12.21865,MONDO:0000709,http://purl.obolibrary.org/obo/MONDO_0000709,Crohn ileitis +12.21865,MONDO:0001688,http://purl.obolibrary.org/obo/MONDO_0001688,toxic optic neuropathy +12.21865,MONDO:0003251,http://purl.obolibrary.org/obo/MONDO_0003251,esophageal granular cell tumor +12.21865,MONDO:0003841,http://purl.obolibrary.org/obo/MONDO_0003841,heart lipoma +12.21865,MONDO:0007510,http://purl.obolibrary.org/obo/MONDO_0007510,Clouston syndrome +12.21865,MONDO:0009857,http://purl.obolibrary.org/obo/MONDO_0009857,persistent Mullerian duct syndrome +12.21865,MONDO:0010857,http://purl.obolibrary.org/obo/MONDO_0010857,semantic dementia +12.21865,MONDO:0015505,http://purl.obolibrary.org/obo/MONDO_0015505,tracheal anomaly +12.21865,MONDO:0016989,http://purl.obolibrary.org/obo/MONDO_0016989,Fuchs heterochromic iridocyclitis +12.21865,MONDO:0021303,http://purl.obolibrary.org/obo/MONDO_0021303,adenoma of small intestine +12.21865,MONDO:0040678,http://purl.obolibrary.org/obo/MONDO_0040678,infiltrating urothelial carcinoma +12.21865,NCBITaxon:12139,http://purl.obolibrary.org/obo/NCBITaxon_12139,none +12.21865,NCBITaxon:1280412,http://purl.obolibrary.org/obo/NCBITaxon_1280412,Conoidasida +12.21865,NCBITaxon:129369,http://purl.obolibrary.org/obo/NCBITaxon_129369,Pulicoidea +12.21865,NCBITaxon:140693,http://purl.obolibrary.org/obo/NCBITaxon_140693,Pulicomorpha +12.21865,NCBITaxon:2509512,http://purl.obolibrary.org/obo/NCBITaxon_2509512,none +12.21865,NCBITaxon:2748958,http://purl.obolibrary.org/obo/NCBITaxon_2748958,none +12.21865,NCBITaxon:277944,http://purl.obolibrary.org/obo/NCBITaxon_277944,none +12.21865,NCBITaxon:337343,http://purl.obolibrary.org/obo/NCBITaxon_337343,none +12.21865,NCBITaxon:549779,http://purl.obolibrary.org/obo/NCBITaxon_549779,none +12.21865,NCBITaxon:5796,http://purl.obolibrary.org/obo/NCBITaxon_5796,Coccidia +12.21865,NCBITaxon:6681,http://purl.obolibrary.org/obo/NCBITaxon_6681,Malacostraca +12.21865,NCBITaxon:72041,http://purl.obolibrary.org/obo/NCBITaxon_72041,Eumalacostraca +12.21865,NCBITaxon:7511,http://purl.obolibrary.org/obo/NCBITaxon_7511,Pulicidae +12.21865,NCBITaxon:75739,http://purl.obolibrary.org/obo/NCBITaxon_75739,Eucoccidiorida +12.21865,PR:000000795,http://purl.obolibrary.org/obo/PR_000000795,voltage-gated potassium channel KCNH6 +12.21865,PR:000001103,http://purl.obolibrary.org/obo/PR_000001103,5-hydroxytryptamine receptor 7 +12.21865,PR:000001504,http://purl.obolibrary.org/obo/PR_000001504,probable G-protein coupled receptor 132 +12.21865,PR:000001619,http://purl.obolibrary.org/obo/PR_000001619,neuromedin-U receptor 2 +12.21865,PR:000004367,http://purl.obolibrary.org/obo/PR_000004367,histone chaperone ASF1A +12.21865,PR:000004707,http://purl.obolibrary.org/obo/PR_000004707,"beta,beta-carotene 15,15'-dioxygenase" +12.21865,PR:000005074,http://purl.obolibrary.org/obo/PR_000005074,cerebellin-1 +12.21865,PR:000005842,http://purl.obolibrary.org/obo/PR_000005842,complement component receptor 1-like protein +12.21865,PR:000005968,http://purl.obolibrary.org/obo/PR_000005968,cystatin-M +12.21865,PR:000006634,http://purl.obolibrary.org/obo/PR_000006634,protein Dok-7 +12.21865,PR:000007255,http://purl.obolibrary.org/obo/PR_000007255,exocyst complex component 7 +12.21865,PR:000007610,http://purl.obolibrary.org/obo/PR_000007610,forkhead box protein D2 +12.21865,PR:000007762,http://purl.obolibrary.org/obo/PR_000007762,gamma-aminobutyric acid type B receptor subunit 2 +12.21865,PR:000008296,http://purl.obolibrary.org/obo/PR_000008296,glutathione S-transferase A3 +12.21865,PR:000008679,http://purl.obolibrary.org/obo/PR_000008679,homer protein homolog 2 +12.21865,PR:000009092,http://purl.obolibrary.org/obo/PR_000009092,actin-binding protein IPP +12.21865,PR:000010157,http://purl.obolibrary.org/obo/PR_000010157,mitogen-activated protein kinase 4 +12.21865,PR:000010669,http://purl.obolibrary.org/obo/PR_000010669,MutS protein homolog 5 +12.21865,PR:000012354,http://purl.obolibrary.org/obo/PR_000012354,protocadherin-8 +12.21865,PR:000014618,http://purl.obolibrary.org/obo/PR_000014618,semaphorin-3D +12.21865,PR:000015786,http://purl.obolibrary.org/obo/PR_000015786,syntaxin-11 +12.21865,PR:000016411,http://purl.obolibrary.org/obo/PR_000016411,transmembrane protein 132A +12.21865,PR:000017630,http://purl.obolibrary.org/obo/PR_000017630,zinc finger protein 1 +12.21865,PR:000023081,http://purl.obolibrary.org/obo/PR_000023081,none +12.21865,PR:000029115,http://purl.obolibrary.org/obo/PR_000029115,E3 ISG15--protein ligase HERC5 +12.21865,PR:000030524,http://purl.obolibrary.org/obo/PR_000030524,transmembrane protein 18 +12.21865,PR:000032355,http://purl.obolibrary.org/obo/PR_000032355,quinone oxidoreductase PIG3 +12.21865,PR:000036196,http://purl.obolibrary.org/obo/PR_000036196,archaeal protein +12.21865,PR:000044432,http://purl.obolibrary.org/obo/PR_000044432,none +12.21865,PR:O04492,http://purl.obolibrary.org/obo/PR_O04492,none +12.21865,PR:P41043,http://purl.obolibrary.org/obo/PR_P41043,none +12.21865,PR:Q39013,http://purl.obolibrary.org/obo/PR_Q39013,none +12.21865,SO:0001962,http://purl.obolibrary.org/obo/SO_0001962,modified_adenine +12.21865,UBERON:0006786,http://purl.obolibrary.org/obo/UBERON_0006786,white matter of superior colliculus +12.21865,UBERON:0011876,http://purl.obolibrary.org/obo/UBERON_0011876,body of tongue +12.21865,UBERON:0011915,http://purl.obolibrary.org/obo/UBERON_0011915,cerebellar glomerulus +12.2274607,CHEBI:24002,http://purl.obolibrary.org/obo/CHEBI_24002,ethylene releasers +12.2274607,CHEBI:30512,http://purl.obolibrary.org/obo/CHEBI_30512,silver atom +12.2274607,CHEBI:33971,http://purl.obolibrary.org/obo/CHEBI_33971,gold coordination entity +12.2274607,CHEBI:33973,http://purl.obolibrary.org/obo/CHEBI_33973,elemental magnesium +12.2274607,CHEBI:38456,http://purl.obolibrary.org/obo/CHEBI_38456,ecdysone agonist +12.2274607,DRUGBANK:DB01952,http://purl.obolibrary.org/obo/DRUGBANK_DB01952,none +12.2274607,DRUGBANK:DB02742,http://purl.obolibrary.org/obo/DRUGBANK_DB02742,none +12.2274607,DRUGBANK:DB03424,http://purl.obolibrary.org/obo/DRUGBANK_DB03424,none +12.2274607,DRUGBANK:DB06267,http://purl.obolibrary.org/obo/DRUGBANK_DB06267,none +12.2274607,DRUGBANK:DB07447,http://purl.obolibrary.org/obo/DRUGBANK_DB07447,none +12.2274607,DRUGBANK:DB08936,http://purl.obolibrary.org/obo/DRUGBANK_DB08936,none +12.2274607,DRUGBANK:DB08997,http://purl.obolibrary.org/obo/DRUGBANK_DB08997,none +12.2274607,DRUGBANK:DB11350,http://purl.obolibrary.org/obo/DRUGBANK_DB11350,none +12.2274607,DRUGBANK:DB11579,http://purl.obolibrary.org/obo/DRUGBANK_DB11579,none +12.2274607,DRUGBANK:DB12010,http://purl.obolibrary.org/obo/DRUGBANK_DB12010,none +12.2274607,DRUGBANK:DB15527,http://purl.obolibrary.org/obo/DRUGBANK_DB15527,none +12.2274607,GO:0000124,http://purl.obolibrary.org/obo/GO_0000124,SAGA complex +12.2274607,GO:0010119,http://purl.obolibrary.org/obo/GO_0010119,regulation of stomatal movement +12.2274607,GO:0016134,http://purl.obolibrary.org/obo/GO_0016134,saponin metabolic process +12.2274607,GO:0016711,http://purl.obolibrary.org/obo/GO_0016711,flavonoid 3'-monooxygenase activity +12.2274607,GO:0030684,http://purl.obolibrary.org/obo/GO_0030684,preribosome +12.2274607,GO:0033344,http://purl.obolibrary.org/obo/GO_0033344,cholesterol efflux +12.2274607,GO:0034340,http://purl.obolibrary.org/obo/GO_0034340,response to type I interferon +12.2274607,GO:0043281,http://purl.obolibrary.org/obo/GO_0043281,regulation of cysteine-type endopeptidase activity involved in apoptotic process +12.2274607,GO:0044273,http://purl.obolibrary.org/obo/GO_0044273,sulfur compound catabolic process +12.2274607,GO:1901856,http://purl.obolibrary.org/obo/GO_1901856,negative regulation of cellular respiration +12.2274607,GO:1902905,http://purl.obolibrary.org/obo/GO_1902905,positive regulation of supramolecular fiber organization +12.2274607,GO:2000116,http://purl.obolibrary.org/obo/GO_2000116,regulation of cysteine-type endopeptidase activity +12.2274607,MONDO:0002918,http://purl.obolibrary.org/obo/MONDO_0002918,clear cell meningioma +12.2274607,MONDO:0015633,http://purl.obolibrary.org/obo/MONDO_0015633,Bazex syndrome +12.2274607,MONDO:0016019,http://purl.obolibrary.org/obo/MONDO_0016019,Rasmussen subacute encephalitis +12.2274607,MONDO:0020156,http://purl.obolibrary.org/obo/MONDO_0020156,syndromic ankyloblepharon +12.2274607,MONDO:0021431,http://purl.obolibrary.org/obo/MONDO_0021431,squamous cell carcinoma of buccal mucosa +12.2274607,MONDO:0021530,http://purl.obolibrary.org/obo/MONDO_0021530,benign neoplasm of subglottis +12.2274607,MONDO:0024307,http://purl.obolibrary.org/obo/MONDO_0024307,prothrombin deficiency +12.2274607,NCBITaxon:12136,http://purl.obolibrary.org/obo/NCBITaxon_12136,none +12.2274607,NCBITaxon:2732554,http://purl.obolibrary.org/obo/NCBITaxon_2732554,none +12.2274607,NCBITaxon:634468,http://purl.obolibrary.org/obo/NCBITaxon_634468,none +12.2274607,PR:000001531,http://purl.obolibrary.org/obo/PR_000001531,G-protein coupled receptor 35 +12.2274607,PR:000001709,http://purl.obolibrary.org/obo/PR_000001709,sphingosine 1-phosphate receptor 4 +12.2274607,PR:000001873,http://purl.obolibrary.org/obo/PR_000001873,kell blood group glycoprotein +12.2274607,PR:000005281,http://purl.obolibrary.org/obo/PR_000005281,cysteine dioxygenase type 1 +12.2274607,PR:000005431,http://purl.obolibrary.org/obo/PR_000005431,Rab proteins geranylgeranyltransferase component A 2 +12.2274607,PR:000006664,http://purl.obolibrary.org/obo/PR_000006664,dipeptidyl peptidase 9 +12.2274607,PR:000006783,http://purl.obolibrary.org/obo/PR_000006783,dual specificity tyrosine-phosphorylation-regulated kinase 2 +12.2274607,PR:000007019,http://purl.obolibrary.org/obo/PR_000007019,ELAV-like protein 4 +12.2274607,PR:000008264,http://purl.obolibrary.org/obo/PR_000008264,metabotropic glutamate receptor 2 +12.2274607,PR:000009211,http://purl.obolibrary.org/obo/PR_000009211,lysine-specific demethylase 3A +12.2274607,PR:000011578,http://purl.obolibrary.org/obo/PR_000011578,"ornithine aminotransferase, mitochondrial" +12.2274607,PR:000012620,http://purl.obolibrary.org/obo/PR_000012620,pyroglutamyl-peptidase 1 +12.2274607,PR:000012904,http://purl.obolibrary.org/obo/PR_000012904,protein TMEPAI +12.2274607,PR:000013256,http://purl.obolibrary.org/obo/PR_000013256,protein arginine N-methyltransferase 6 +12.2274607,PR:000014182,http://purl.obolibrary.org/obo/PR_000014182,X-linked retinitis pigmentosa GTPase regulator-interacting protein 1 +12.2274607,PR:000014569,http://purl.obolibrary.org/obo/PR_000014569,caveolae-associated protein 2 +12.2274607,PR:000015121,http://purl.obolibrary.org/obo/PR_000015121,sodium-coupled neutral amino acid transporter 4 +12.2274607,PR:000015922,http://purl.obolibrary.org/obo/PR_000015922,none +12.2274607,PR:000016389,http://purl.obolibrary.org/obo/PR_000016389,dendritic cell-specific transmembrane protein +12.2274607,PR:000022077,http://purl.obolibrary.org/obo/PR_000022077,none +12.2274607,PR:000022789,http://purl.obolibrary.org/obo/PR_000022789,none +12.2274607,PR:000022944,http://purl.obolibrary.org/obo/PR_000022944,none +12.2274607,PR:000030629,http://purl.obolibrary.org/obo/PR_000030629,serine--pyruvate aminotransferase +12.2274607,PR:000031554,http://purl.obolibrary.org/obo/PR_000031554,endonuclease V +12.2274607,PR:000032078,http://purl.obolibrary.org/obo/PR_000032078,leucine-rich repeat protein SHOC-2 +12.2274607,PR:000032134,http://purl.obolibrary.org/obo/PR_000032134,"probable leucine--tRNA ligase, mitochondrial" +12.2274607,PR:P53076,http://purl.obolibrary.org/obo/PR_P53076,none +12.2274607,PR:P53955,http://purl.obolibrary.org/obo/PR_P53955,none +12.2274607,UBERON:0002297,http://purl.obolibrary.org/obo/UBERON_0002297,cerumen +12.2274607,UBERON:0004627,http://purl.obolibrary.org/obo/UBERON_0004627,thoracic vertebra 2 +12.2274607,UBERON:0010130,http://purl.obolibrary.org/obo/UBERON_0010130,embryonic autopod plate +12.2274607,UBERON:0010223,http://purl.obolibrary.org/obo/UBERON_0010223,left pupil +12.2274607,UBERON:0010496,http://purl.obolibrary.org/obo/UBERON_0010496,teres minor muscle +12.2274607,UBERON:0015143,http://purl.obolibrary.org/obo/UBERON_0015143,mesenteric fat pad +12.2363496,CHEBI:16526,http://purl.obolibrary.org/obo/CHEBI_16526,carbon dioxide +12.2363496,CHEBI:22978,http://purl.obolibrary.org/obo/CHEBI_22978,cadmium molecular entity +12.2363496,CHEBI:24533,http://purl.obolibrary.org/obo/CHEBI_24533,heterodetic cyclic peptide +12.2363496,CHEBI:50803,http://purl.obolibrary.org/obo/CHEBI_50803,nanoparticle +12.2363496,CHEBI:52855,http://purl.obolibrary.org/obo/CHEBI_52855,inorganic nanoparticle +12.2363496,CHEBI:5516,http://purl.obolibrary.org/obo/CHEBI_5516,sodium aurothiomalate +12.2363496,CHEBI:63471,http://purl.obolibrary.org/obo/CHEBI_63471,branched-chain amino-acid anion +12.2363496,DRUGBANK:DB02381,http://purl.obolibrary.org/obo/DRUGBANK_DB02381,none +12.2363496,DRUGBANK:DB02751,http://purl.obolibrary.org/obo/DRUGBANK_DB02751,none +12.2363496,DRUGBANK:DB03438,http://purl.obolibrary.org/obo/DRUGBANK_DB03438,none +12.2363496,DRUGBANK:DB03666,http://purl.obolibrary.org/obo/DRUGBANK_DB03666,none +12.2363496,DRUGBANK:DB06152,http://purl.obolibrary.org/obo/DRUGBANK_DB06152,none +12.2363496,DRUGBANK:DB06511,http://purl.obolibrary.org/obo/DRUGBANK_DB06511,none +12.2363496,DRUGBANK:DB08942,http://purl.obolibrary.org/obo/DRUGBANK_DB08942,none +12.2363496,DRUGBANK:DB10410,http://purl.obolibrary.org/obo/DRUGBANK_DB10410,none +12.2363496,DRUGBANK:DB11542,http://purl.obolibrary.org/obo/DRUGBANK_DB11542,none +12.2363496,DRUGBANK:DB13505,http://purl.obolibrary.org/obo/DRUGBANK_DB13505,none +12.2363496,DRUGBANK:DB13710,http://purl.obolibrary.org/obo/DRUGBANK_DB13710,none +12.2363496,DRUGBANK:DB14347,http://purl.obolibrary.org/obo/DRUGBANK_DB14347,none +12.2363496,DRUGBANK:DB15763,http://purl.obolibrary.org/obo/DRUGBANK_DB15763,none +12.2363496,GO:0005901,http://purl.obolibrary.org/obo/GO_0005901,caveola +12.2363496,GO:0008063,http://purl.obolibrary.org/obo/GO_0008063,Toll signaling pathway +12.2363496,GO:0009234,http://purl.obolibrary.org/obo/GO_0009234,menaquinone biosynthetic process +12.2363496,GO:0009751,http://purl.obolibrary.org/obo/GO_0009751,response to salicylic acid +12.2363496,GO:0021795,http://purl.obolibrary.org/obo/GO_0021795,cerebral cortex cell migration +12.2363496,GO:0021799,http://purl.obolibrary.org/obo/GO_0021799,cerebral cortex radially oriented cell migration +12.2363496,GO:0022842,http://purl.obolibrary.org/obo/GO_0022842,narrow pore channel activity +12.2363496,GO:0034435,http://purl.obolibrary.org/obo/GO_0034435,cholesterol esterification +12.2363496,GO:0035230,http://purl.obolibrary.org/obo/GO_0035230,cytoneme +12.2363496,GO:0038147,http://purl.obolibrary.org/obo/GO_0038147,C-X-C motif chemokine 12 receptor activity +12.2363496,GO:0046039,http://purl.obolibrary.org/obo/GO_0046039,GTP metabolic process +12.2363496,GO:0072487,http://purl.obolibrary.org/obo/GO_0072487,MSL complex +12.2363496,GO:0080009,http://purl.obolibrary.org/obo/GO_0080009,mRNA methylation +12.2363496,GO:1901463,http://purl.obolibrary.org/obo/GO_1901463,regulation of tetrapyrrole biosynthetic process +12.2363496,HP:0003003,http://purl.obolibrary.org/obo/HP_0003003,Colon cancer +12.2363496,MONDO:0000748,http://purl.obolibrary.org/obo/MONDO_0000748,mastoiditis +12.2363496,MONDO:0000961,http://purl.obolibrary.org/obo/MONDO_0000961,endobronchial lipoma +12.2363496,MONDO:0002140,http://purl.obolibrary.org/obo/MONDO_0002140,vagina sarcoma +12.2363496,MONDO:0003115,http://purl.obolibrary.org/obo/MONDO_0003115,subglottic hemangioma +12.2363496,MONDO:0003637,http://purl.obolibrary.org/obo/MONDO_0003637,clear cell-sugar-tumor of the lung +12.2363496,MONDO:0005534,http://purl.obolibrary.org/obo/MONDO_0005534,ileocolitis +12.2363496,MONDO:0005750,http://purl.obolibrary.org/obo/MONDO_0005750,ephemeral fever +12.2363496,MONDO:0007635,http://purl.obolibrary.org/obo/MONDO_0007635,Frasier syndrome +12.2363496,MONDO:0007672,http://purl.obolibrary.org/obo/MONDO_0007672,glomuvenous malformation +12.2363496,MONDO:0010519,http://purl.obolibrary.org/obo/MONDO_0010519,alpha thalassemia-X-linked intellectual disability syndrome +12.2363496,MONDO:0017372,http://purl.obolibrary.org/obo/MONDO_0017372,congenital varicella syndrome +12.2363496,NCBITaxon:1489913,http://purl.obolibrary.org/obo/NCBITaxon_1489913,Atherinomorphae +12.2363496,NCBITaxon:2732458,http://purl.obolibrary.org/obo/NCBITaxon_2732458,none +12.2363496,NCBITaxon:2732540,http://purl.obolibrary.org/obo/NCBITaxon_2732540,none +12.2363496,NCBITaxon:423054,http://purl.obolibrary.org/obo/NCBITaxon_423054,Eimeriorina +12.2363496,NCBITaxon:621278,http://purl.obolibrary.org/obo/NCBITaxon_621278,none +12.2363496,PR:000001010,http://purl.obolibrary.org/obo/PR_000001010,integrin alpha-E +12.2363496,PR:000001643,http://purl.obolibrary.org/obo/PR_000001643,G-protein coupled receptor 3 +12.2363496,PR:000002039,http://purl.obolibrary.org/obo/PR_000002039,glutamyl aminopeptidase +12.2363496,PR:000002180,http://purl.obolibrary.org/obo/PR_000002180,26S proteasome non-ATPase regulatory subunit 2 +12.2363496,PR:000003525,http://purl.obolibrary.org/obo/PR_000003525,"kynurenine/alpha-aminoadipate aminotransferase, mitochondrial" +12.2363496,PR:000003844,http://purl.obolibrary.org/obo/PR_000003844,anterior gradient protein 3 +12.2363496,PR:000003944,http://purl.obolibrary.org/obo/PR_000003944,dolichyl-P-Man:Man(5)GlcNAc(2)-PP-dolichyl mannosyltransferase +12.2363496,PR:000004475,http://purl.obolibrary.org/obo/PR_000004475,V-type proton ATPase 16 kDa proteolipid subunit +12.2363496,PR:000004725,http://purl.obolibrary.org/obo/PR_000004725,BET1 homolog +12.2363496,PR:000004733,http://purl.obolibrary.org/obo/PR_000004733,filensin +12.2363496,PR:000004759,http://purl.obolibrary.org/obo/PR_000004759,Bloom syndrome protein +12.2363496,PR:000004849,http://purl.obolibrary.org/obo/PR_000004849,butyrophilin-like protein 2 +12.2363496,PR:000005058,http://purl.obolibrary.org/obo/PR_000005058,extracellular calcium-sensing receptor +12.2363496,PR:000005084,http://purl.obolibrary.org/obo/PR_000005084,chromobox protein homolog 3 +12.2363496,PR:000005172,http://purl.obolibrary.org/obo/PR_000005172,CD53 molecule +12.2363496,PR:000005414,http://purl.obolibrary.org/obo/PR_000005414,chromodomain-helicase-DNA-binding protein 8 +12.2363496,PR:000005558,http://purl.obolibrary.org/obo/PR_000005558,C-type lectin domain family 11 member A +12.2363496,PR:000005715,http://purl.obolibrary.org/obo/PR_000005715,collagen alpha-3(IV) chain +12.2363496,PR:000005885,http://purl.obolibrary.org/obo/PR_000005885,cytokine receptor-like factor 1 +12.2363496,PR:000006224,http://purl.obolibrary.org/obo/PR_000006224,none +12.2363496,PR:000006576,http://purl.obolibrary.org/obo/PR_000006576,DnaJ homolog subfamily B member 6 +12.2363496,PR:000006955,http://purl.obolibrary.org/obo/PR_000006955,eukaryotic translation initiation factor 1 +12.2363496,PR:000007224,http://purl.obolibrary.org/obo/PR_000007224,ETS translocation variant 2 +12.2363496,PR:000007532,http://purl.obolibrary.org/obo/PR_000007532,peptidyl-prolyl cis-trans isomerase FKBP10 +12.2363496,PR:000007740,http://purl.obolibrary.org/obo/PR_000007740,none +12.2363496,PR:000008520,http://purl.obolibrary.org/obo/PR_000008520,transcription cofactor HES-6 +12.2363496,PR:000008702,http://purl.obolibrary.org/obo/PR_000008702,homeobox protein Hox-B5 +12.2363496,PR:000009031,http://purl.obolibrary.org/obo/PR_000009031,"indoleamine 2,3-dioxygenase 2" +12.2363496,PR:000009848,http://purl.obolibrary.org/obo/PR_000009848,LLGL scribble cell polarity complex component 2 +12.2363496,PR:000011051,http://purl.obolibrary.org/obo/PR_000011051,nuclear distribution protein nudE homolog 1 +12.2363496,PR:000012511,http://purl.obolibrary.org/obo/PR_000012511,PDZ and LIM domain protein 5 +12.2363496,PR:000012664,http://purl.obolibrary.org/obo/PR_000012664,pleckstrin homology-like domain family A member 2 +12.2363496,PR:000013197,http://purl.obolibrary.org/obo/PR_000013197,prolactin regulatory element-binding protein +12.2363496,PR:000013217,http://purl.obolibrary.org/obo/PR_000013217,proline-rich membrane anchor 1 +12.2363496,PR:000013340,http://purl.obolibrary.org/obo/PR_000013340,prostate stem cell antigen +12.2363496,PR:000013927,http://purl.obolibrary.org/obo/PR_000013927,DNA-binding protein RFX5 +12.2363496,PR:000014331,http://purl.obolibrary.org/obo/PR_000014331,R-spondin-2 +12.2363496,PR:000015447,http://purl.obolibrary.org/obo/PR_000015447,sperm surface protein Sp17 +12.2363496,PR:000015906,http://purl.obolibrary.org/obo/PR_000015906,synaptotagmin-4 +12.2363496,PR:000016239,http://purl.obolibrary.org/obo/PR_000016239,testin +12.2363496,PR:000017100,http://purl.obolibrary.org/obo/PR_000017100,SUN domain-containing protein 2 +12.2363496,PR:000017515,http://purl.obolibrary.org/obo/PR_000017515,xylosyltransferase 1 +12.2363496,PR:000017592,http://purl.obolibrary.org/obo/PR_000017592,zinc finger and BTB domain-containing protein 7A +12.2363496,PR:000022222,http://purl.obolibrary.org/obo/PR_000022222,none +12.2363496,PR:000023127,http://purl.obolibrary.org/obo/PR_000023127,none +12.2363496,PR:000023451,http://purl.obolibrary.org/obo/PR_000023451,none +12.2363496,PR:000031459,http://purl.obolibrary.org/obo/PR_000031459,G0/G1 switch protein 2 +12.2363496,PR:000033265,http://purl.obolibrary.org/obo/PR_000033265,none +12.2363496,PR:P14693,http://purl.obolibrary.org/obo/PR_P14693,none +12.2363496,PR:Q02647,http://purl.obolibrary.org/obo/PR_Q02647,none +12.2363496,PR:Q08920,http://purl.obolibrary.org/obo/PR_Q08920,none +12.2363496,PR:Q8VX13,http://purl.obolibrary.org/obo/PR_Q8VX13,none +12.2363496,PR:Q9PWR4,http://purl.obolibrary.org/obo/PR_Q9PWR4,none +12.2363496,PR:Q9W5U2,http://purl.obolibrary.org/obo/PR_Q9W5U2,none +12.2363496,SO:0000017,http://purl.obolibrary.org/obo/SO_0000017,PSE_motif +12.2363496,UBERON:0001512,http://purl.obolibrary.org/obo/UBERON_0001512,skin of ankle +12.2363496,UBERON:0003948,http://purl.obolibrary.org/obo/UBERON_0003948,blood-air barrier +12.2363496,UBERON:0004809,http://purl.obolibrary.org/obo/UBERON_0004809,salivary gland epithelium +12.2363496,UBERON:0005479,http://purl.obolibrary.org/obo/UBERON_0005479,superior mesenteric ganglion +12.2363496,UBERON:3010007,http://purl.obolibrary.org/obo/UBERON_3010007,pit organ +12.2453183,CHEBI:13850,http://purl.obolibrary.org/obo/CHEBI_13850,apoprotein +12.2453183,CHEBI:16862,http://purl.obolibrary.org/obo/CHEBI_16862,nucleoside diphosphate +12.2453183,CHEBI:33362,http://purl.obolibrary.org/obo/CHEBI_33362,nickel group element atom +12.2453183,CHEBI:35489,http://purl.obolibrary.org/obo/CHEBI_35489,organic disulfide +12.2453183,CHEBI:39015,http://purl.obolibrary.org/obo/CHEBI_39015,apolipoprotein +12.2453183,CHEBI:51087,http://purl.obolibrary.org/obo/CHEBI_51087,protecting group +12.2453183,CL:0002492,http://purl.obolibrary.org/obo/CL_0002492,strial marginal cell +12.2453183,DRUGBANK:DB01252,http://purl.obolibrary.org/obo/DRUGBANK_DB01252,none +12.2453183,DRUGBANK:DB02174,http://purl.obolibrary.org/obo/DRUGBANK_DB02174,none +12.2453183,DRUGBANK:DB03397,http://purl.obolibrary.org/obo/DRUGBANK_DB03397,none +12.2453183,DRUGBANK:DB03533,http://purl.obolibrary.org/obo/DRUGBANK_DB03533,none +12.2453183,DRUGBANK:DB04628,http://purl.obolibrary.org/obo/DRUGBANK_DB04628,none +12.2453183,DRUGBANK:DB05668,http://purl.obolibrary.org/obo/DRUGBANK_DB05668,none +12.2453183,DRUGBANK:DB06775,http://purl.obolibrary.org/obo/DRUGBANK_DB06775,none +12.2453183,DRUGBANK:DB09095,http://purl.obolibrary.org/obo/DRUGBANK_DB09095,none +12.2453183,DRUGBANK:DB10317,http://purl.obolibrary.org/obo/DRUGBANK_DB10317,none +12.2453183,DRUGBANK:DB11414,http://purl.obolibrary.org/obo/DRUGBANK_DB11414,none +12.2453183,DRUGBANK:DB16223,http://purl.obolibrary.org/obo/DRUGBANK_DB16223,none +12.2453183,GO:0004055,http://purl.obolibrary.org/obo/GO_0004055,argininosuccinate synthase activity +12.2453183,GO:0004919,http://purl.obolibrary.org/obo/GO_0004919,interleukin-9 receptor activity +12.2453183,GO:0006601,http://purl.obolibrary.org/obo/GO_0006601,creatine biosynthetic process +12.2453183,GO:0008045,http://purl.obolibrary.org/obo/GO_0008045,motor neuron axon guidance +12.2453183,GO:0009274,http://purl.obolibrary.org/obo/GO_0009274,peptidoglycan-based cell wall +12.2453183,GO:0010145,http://purl.obolibrary.org/obo/GO_0010145,fructan metabolic process +12.2453183,GO:0015928,http://purl.obolibrary.org/obo/GO_0015928,fucosidase activity +12.2453183,GO:0022010,http://purl.obolibrary.org/obo/GO_0022010,central nervous system myelination +12.2453183,GO:0022840,http://purl.obolibrary.org/obo/GO_0022840,leak channel activity +12.2453183,GO:0030518,http://purl.obolibrary.org/obo/GO_0030518,intracellular steroid hormone receptor signaling pathway +12.2453183,GO:0032291,http://purl.obolibrary.org/obo/GO_0032291,axon ensheathment in central nervous system +12.2453183,GO:0035456,http://purl.obolibrary.org/obo/GO_0035456,response to interferon-beta +12.2453183,GO:0042421,http://purl.obolibrary.org/obo/GO_0042421,norepinephrine biosynthetic process +12.2453183,GO:0046503,http://purl.obolibrary.org/obo/GO_0046503,glycerolipid catabolic process +12.2453183,GO:0048367,http://purl.obolibrary.org/obo/GO_0048367,shoot system development +12.2453183,GO:0050605,http://purl.obolibrary.org/obo/GO_0050605,superoxide reductase activity +12.2453183,GO:0060632,http://purl.obolibrary.org/obo/GO_0060632,regulation of microtubule-based movement +12.2453183,GO:0070643,http://purl.obolibrary.org/obo/GO_0070643,vitamin D 25-hydroxylase activity +12.2453183,MONDO:0002448,http://purl.obolibrary.org/obo/MONDO_0002448,laryngeal sarcoma +12.2453183,MONDO:0003096,http://purl.obolibrary.org/obo/MONDO_0003096,deep hemangioma +12.2453183,MONDO:0003895,http://purl.obolibrary.org/obo/MONDO_0003895,periosteal osteogenic sarcoma +12.2453183,MONDO:0003936,http://purl.obolibrary.org/obo/MONDO_0003936,invasive tubular breast carcinoma +12.2453183,MONDO:0006262,http://purl.obolibrary.org/obo/MONDO_0006262,lacrimal gland adenoid cystic carcinoma +12.2453183,MONDO:0008660,http://purl.obolibrary.org/obo/MONDO_0008660,autosomal dominant hypophosphatemic rickets +12.2453183,MONDO:0010170,http://purl.obolibrary.org/obo/MONDO_0010170,Usher syndrome type 3A +12.2453183,MONDO:0016025,http://purl.obolibrary.org/obo/MONDO_0016025,myoclonic-astastic epilepsy +12.2453183,MONDO:0016644,http://purl.obolibrary.org/obo/MONDO_0016644,logopenic progressive aphasia +12.2453183,MONDO:0018151,http://purl.obolibrary.org/obo/MONDO_0018151,coenzyme Q10 deficiency +12.2453183,MONDO:0018845,http://purl.obolibrary.org/obo/MONDO_0018845,focal myositis +12.2453183,MONDO:0018927,http://purl.obolibrary.org/obo/MONDO_0018927,SUNCT syndrome +12.2453183,MONDO:0022672,http://purl.obolibrary.org/obo/MONDO_0022672,autosomal dominant cataract +12.2453183,NCBITaxon:1045010,http://purl.obolibrary.org/obo/NCBITaxon_1045010,none +12.2453183,NCBITaxon:10813,http://purl.obolibrary.org/obo/NCBITaxon_10813,none +12.2453183,NCBITaxon:11086,http://purl.obolibrary.org/obo/NCBITaxon_11086,Louping ill virus +12.2453183,NCBITaxon:232347,http://purl.obolibrary.org/obo/NCBITaxon_232347,none +12.2453183,PR:000001621,http://purl.obolibrary.org/obo/PR_000001621,neuropeptide FF receptor 2 +12.2453183,PR:000001976,http://purl.obolibrary.org/obo/PR_000001976,zinc finger protein Aiolos +12.2453183,PR:000002117,http://purl.obolibrary.org/obo/PR_000002117,voltage-dependent N-type calcium channel subunit alpha-1B +12.2453183,PR:000004682,http://purl.obolibrary.org/obo/PR_000004682,"branched-chain-amino-acid aminotransferase, cytosolic" +12.2453183,PR:000005809,http://purl.obolibrary.org/obo/PR_000005809,complexin-1 +12.2453183,PR:000005922,http://purl.obolibrary.org/obo/PR_000005922,quinone oxidoreductase +12.2453183,PR:000006256,http://purl.obolibrary.org/obo/PR_000006256,disheveled-associated activator of morphogenesis 1 +12.2453183,PR:000006616,http://purl.obolibrary.org/obo/PR_000006616,dedicator of cytokinesis protein 1 +12.2453183,PR:000006969,http://purl.obolibrary.org/obo/PR_000006969,protein argonaute-3 +12.2453183,PR:000007547,http://purl.obolibrary.org/obo/PR_000007547,fukutin-related protein +12.2453183,PR:000007922,http://purl.obolibrary.org/obo/PR_000007922,growth/differentiation factor 3 +12.2453183,PR:000008198,http://purl.obolibrary.org/obo/PR_000008198,G-protein coupled receptor family C group 6 member A +12.2453183,PR:000008692,http://purl.obolibrary.org/obo/PR_000008692,homeobox protein Hox-A4 +12.2453183,PR:000009032,http://purl.obolibrary.org/obo/PR_000009032,inverted formin-2 +12.2453183,PR:000009063,http://purl.obolibrary.org/obo/PR_000009063,insulinoma-associated protein 2 +12.2453183,PR:000009828,http://purl.obolibrary.org/obo/PR_000009828,lin-9 +12.2453183,PR:000009909,http://purl.obolibrary.org/obo/PR_000009909,lecithin retinol acyltransferase +12.2453183,PR:000010153,http://purl.obolibrary.org/obo/PR_000010153,mitogen-activated protein kinase 12 +12.2453183,PR:000011290,http://purl.obolibrary.org/obo/PR_000011290,nicotinamide/nicotinic acid mononucleotide adenylyltransferase 1 +12.2453183,PR:000012180,http://purl.obolibrary.org/obo/PR_000012180,none +12.2453183,PR:000013432,http://purl.obolibrary.org/obo/PR_000013432,parathyroid hormone 2 receptor +12.2453183,PR:000014036,http://purl.obolibrary.org/obo/PR_000014036,RecQ-mediated genome instability protein 1 +12.2453183,PR:000014835,http://purl.obolibrary.org/obo/PR_000014835,SH2 domain-containing adapter protein B +12.2453183,PR:000015153,http://purl.obolibrary.org/obo/PR_000015153,multidrug and toxin extrusion protein 2 +12.2453183,PR:000015162,http://purl.obolibrary.org/obo/PR_000015162,sodium bicarbonate cotransporter 3 +12.2453183,PR:000015174,http://purl.obolibrary.org/obo/PR_000015174,sodium-coupled monocarboxylate transporter 1 +12.2453183,PR:000015551,http://purl.obolibrary.org/obo/PR_000015551,protein spinster homolog 2 +12.2453183,PR:000016786,http://purl.obolibrary.org/obo/PR_000016786,transcription termination factor 2 +12.2453183,PR:000022187,http://purl.obolibrary.org/obo/PR_000022187,none +12.2453183,PR:000022783,http://purl.obolibrary.org/obo/PR_000022783,none +12.2453183,PR:000023828,http://purl.obolibrary.org/obo/PR_000023828,none +12.2453183,PR:000029124,http://purl.obolibrary.org/obo/PR_000029124,MAGUK p55 subfamily member 2 +12.2453183,PR:000029894,http://purl.obolibrary.org/obo/PR_000029894,RING finger and CHY zinc finger domain-containing protein 1 +12.2453183,PR:000037074,http://purl.obolibrary.org/obo/PR_000037074,methylated protein +12.2453183,PR:000038631,http://purl.obolibrary.org/obo/PR_000038631,"fructose-2,6-bisphosphatase TIGAR" +12.2453183,PR:F4JP36,http://purl.obolibrary.org/obo/PR_F4JP36,none +12.2453183,PR:O21032,http://purl.obolibrary.org/obo/PR_O21032,none +12.2453183,PR:O80504,http://purl.obolibrary.org/obo/PR_O80504,none +12.2453183,PR:O80567,http://purl.obolibrary.org/obo/PR_O80567,none +12.2453183,PR:P32386,http://purl.obolibrary.org/obo/PR_P32386,none +12.2453183,PR:P49691,http://purl.obolibrary.org/obo/PR_P49691,none +12.2453183,PR:P53632,http://purl.obolibrary.org/obo/PR_P53632,none +12.2453183,PR:Q6DGH9,http://purl.obolibrary.org/obo/PR_Q6DGH9,none +12.2453183,PR:Q8L7C9,http://purl.obolibrary.org/obo/PR_Q8L7C9,none +12.2453183,PR:Q9ESN2,http://purl.obolibrary.org/obo/PR_Q9ESN2,none +12.2453183,UBERON:0000312,http://purl.obolibrary.org/obo/UBERON_0000312,inner cambium layer of periosteum +12.2453183,UBERON:0001209,http://purl.obolibrary.org/obo/UBERON_0001209,serosa of large intestine +12.2453183,UBERON:0002407,http://purl.obolibrary.org/obo/UBERON_0002407,pericardium +12.2453183,UBERON:0002827,http://purl.obolibrary.org/obo/UBERON_0002827,vestibulocochlear ganglion +12.2453183,UBERON:0005390,http://purl.obolibrary.org/obo/UBERON_0005390,cortical layer I +12.2453183,UBERON:0006813,http://purl.obolibrary.org/obo/UBERON_0006813,nasal skeleton +12.2453183,UBERON:0013584,http://purl.obolibrary.org/obo/UBERON_0013584,metapodium bone 4 +12.2543681,CHEBI:50325,http://purl.obolibrary.org/obo/CHEBI_50325,proteinogenic amino-acid side-chain group +12.2543681,CHEBI:63610,http://purl.obolibrary.org/obo/CHEBI_63610,misoprostol +12.2543681,CL:0000033,http://purl.obolibrary.org/obo/CL_0000033,apocrine cell +12.2543681,CL:0002484,http://purl.obolibrary.org/obo/CL_0002484,epithelial melanocyte +12.2543681,DRUGBANK:DB00894,http://purl.obolibrary.org/obo/DRUGBANK_DB00894,none +12.2543681,DRUGBANK:DB01301,http://purl.obolibrary.org/obo/DRUGBANK_DB01301,none +12.2543681,DRUGBANK:DB01642,http://purl.obolibrary.org/obo/DRUGBANK_DB01642,none +12.2543681,DRUGBANK:DB04256,http://purl.obolibrary.org/obo/DRUGBANK_DB04256,none +12.2543681,DRUGBANK:DB06261,http://purl.obolibrary.org/obo/DRUGBANK_DB06261,none +12.2543681,DRUGBANK:DB07718,http://purl.obolibrary.org/obo/DRUGBANK_DB07718,none +12.2543681,DRUGBANK:DB12232,http://purl.obolibrary.org/obo/DRUGBANK_DB12232,none +12.2543681,DRUGBANK:DB12860,http://purl.obolibrary.org/obo/DRUGBANK_DB12860,none +12.2543681,DRUGBANK:DB13803,http://purl.obolibrary.org/obo/DRUGBANK_DB13803,none +12.2543681,DRUGBANK:DB16287,http://purl.obolibrary.org/obo/DRUGBANK_DB16287,none +12.2543681,GO:0004134,http://purl.obolibrary.org/obo/GO_0004134,4-alpha-glucanotransferase activity +12.2543681,GO:0006968,http://purl.obolibrary.org/obo/GO_0006968,cellular defense response +12.2543681,GO:0008158,http://purl.obolibrary.org/obo/GO_0008158,hedgehog receptor activity +12.2543681,GO:0008180,http://purl.obolibrary.org/obo/GO_0008180,COP9 signalosome +12.2543681,GO:0009095,http://purl.obolibrary.org/obo/GO_0009095,"aromatic amino acid family biosynthetic process, prephenate pathway" +12.2543681,GO:0009688,http://purl.obolibrary.org/obo/GO_0009688,abscisic acid biosynthetic process +12.2543681,GO:0009703,http://purl.obolibrary.org/obo/GO_0009703,nitrate reductase (NADH) activity +12.2543681,GO:0009777,http://purl.obolibrary.org/obo/GO_0009777,photosynthetic phosphorylation +12.2543681,GO:0015665,http://purl.obolibrary.org/obo/GO_0015665,alcohol transmembrane transporter activity +12.2543681,GO:0016123,http://purl.obolibrary.org/obo/GO_0016123,xanthophyll biosynthetic process +12.2543681,GO:0016274,http://purl.obolibrary.org/obo/GO_0016274,protein-arginine N-methyltransferase activity +12.2543681,GO:0030134,http://purl.obolibrary.org/obo/GO_0030134,COPII-coated ER to Golgi transport vesicle +12.2543681,GO:0030648,http://purl.obolibrary.org/obo/GO_0030648,aminoglycoside antibiotic biosynthetic process +12.2543681,GO:0033568,http://purl.obolibrary.org/obo/GO_0033568,lactoferrin receptor activity +12.2543681,GO:0034633,http://purl.obolibrary.org/obo/GO_0034633,retinol transport +12.2543681,GO:0035065,http://purl.obolibrary.org/obo/GO_0035065,regulation of histone acetylation +12.2543681,GO:0036324,http://purl.obolibrary.org/obo/GO_0036324,vascular endothelial growth factor receptor-2 signaling pathway +12.2543681,GO:0052859,http://purl.obolibrary.org/obo/GO_0052859,"glucan endo-1,4-beta-glucosidase activity" +12.2543681,GO:0060206,http://purl.obolibrary.org/obo/GO_0060206,estrous cycle phase +12.2543681,GO:0070124,http://purl.obolibrary.org/obo/GO_0070124,mitochondrial translational initiation +12.2543681,GO:1901588,http://purl.obolibrary.org/obo/GO_1901588,dendritic microtubule +12.2543681,GO:1903707,http://purl.obolibrary.org/obo/GO_1903707,negative regulation of hemopoiesis +12.2543681,GO:2000756,http://purl.obolibrary.org/obo/GO_2000756,regulation of peptidyl-lysine acetylation +12.2543681,HP:0008873,http://purl.obolibrary.org/obo/HP_0008873,Disproportionate short-limb short stature +12.2543681,HP:0100279,http://purl.obolibrary.org/obo/HP_0100279,Ulcerative colitis +12.2543681,HP:0100659,http://purl.obolibrary.org/obo/HP_0100659,Abnormal cerebral vascular morphology +12.2543681,MONDO:0001774,http://purl.obolibrary.org/obo/MONDO_0001774,posterior scleritis +12.2543681,MONDO:0003568,http://purl.obolibrary.org/obo/MONDO_0003568,disorder of optic chiasm +12.2543681,MONDO:0003849,http://purl.obolibrary.org/obo/MONDO_0003849,clivus chordoma +12.2543681,MONDO:0004544,http://purl.obolibrary.org/obo/MONDO_0004544,chordoid meningioma +12.2543681,MONDO:0005913,http://purl.obolibrary.org/obo/MONDO_0005913,phlebotomus fever +12.2543681,MONDO:0006040,http://purl.obolibrary.org/obo/MONDO_0006040,lactic acidosis +12.2543681,MONDO:0006396,http://purl.obolibrary.org/obo/MONDO_0006396,rectal villous adenoma +12.2543681,MONDO:0007565,http://purl.obolibrary.org/obo/MONDO_0007565,familial cylindromatosis +12.2543681,MONDO:0008670,http://purl.obolibrary.org/obo/MONDO_0008670,Waardenburg syndrome type 1 +12.2543681,MONDO:0009530,http://purl.obolibrary.org/obo/MONDO_0009530,lipoid proteinosis +12.2543681,MONDO:0011147,http://purl.obolibrary.org/obo/MONDO_0011147,chromosome 18q deletion syndrome +12.2543681,MONDO:0016916,http://purl.obolibrary.org/obo/MONDO_0016916,partial deletion of the long arm of chromosome 18 +12.2543681,MONDO:0019323,http://purl.obolibrary.org/obo/MONDO_0019323,pemphigus erythematosus +12.2543681,MONDO:0020226,http://purl.obolibrary.org/obo/MONDO_0020226,chromosomal anomaly with cataract +12.2543681,NCBITaxon:12224,http://purl.obolibrary.org/obo/NCBITaxon_12224,none +12.2543681,NCBITaxon:12274,http://purl.obolibrary.org/obo/NCBITaxon_12274,none +12.2543681,NCBITaxon:39731,http://purl.obolibrary.org/obo/NCBITaxon_39731,none +12.2543681,NCBITaxon:51290,http://purl.obolibrary.org/obo/NCBITaxon_51290,none +12.2543681,NCBITaxon:59300,http://purl.obolibrary.org/obo/NCBITaxon_59300,none +12.2543681,NCBITaxon:7260,http://purl.obolibrary.org/obo/NCBITaxon_7260,none +12.2543681,PR:000000714,http://purl.obolibrary.org/obo/PR_000000714,small conductance calcium-activated potassium channel protein 3 +12.2543681,PR:000002080,http://purl.obolibrary.org/obo/PR_000002080,potassium channel subfamily T member 1 +12.2543681,PR:000002085,http://purl.obolibrary.org/obo/PR_000002085,semaphorin-7A +12.2543681,PR:000003987,http://purl.obolibrary.org/obo/PR_000003987,activating molecule in BECN1-regulated autophagy protein 1 +12.2543681,PR:000004061,http://purl.obolibrary.org/obo/PR_000004061,anoctamin-6 +12.2543681,PR:000004779,http://purl.obolibrary.org/obo/PR_000004779,vesicle transport protein SEC20 +12.2543681,PR:000005088,http://purl.obolibrary.org/obo/PR_000005088,chromobox protein homolog 7 +12.2543681,PR:000005351,http://purl.obolibrary.org/obo/PR_000005351,centrosomal protein of 55 kDa +12.2543681,PR:000005375,http://purl.obolibrary.org/obo/PR_000005375,cryptic protein +12.2543681,PR:000005384,http://purl.obolibrary.org/obo/PR_000005384,complement factor I +12.2543681,PR:000005851,http://purl.obolibrary.org/obo/PR_000005851,protein cereblon +12.2543681,PR:000005995,http://purl.obolibrary.org/obo/PR_000005995,C-terminal-binding protein 2 +12.2543681,PR:000006355,http://purl.obolibrary.org/obo/PR_000006355,ATP-dependent RNA helicase DDX1 +12.2543681,PR:000006882,http://purl.obolibrary.org/obo/PR_000006882,"vesicular, overexpressed in cancer, prosurvival protein 1" +12.2543681,PR:000007206,http://purl.obolibrary.org/obo/PR_000007206,epithelial splicing regulatory protein 1 +12.2543681,PR:000008064,http://purl.obolibrary.org/obo/PR_000008064,ganglioside GM2 activator +12.2543681,PR:000008158,http://purl.obolibrary.org/obo/PR_000008158,glycosylphosphatidylinositol anchor attachment 1 protein +12.2543681,PR:000008617,http://purl.obolibrary.org/obo/PR_000008617,biotin--protein ligase +12.2543681,PR:000008699,http://purl.obolibrary.org/obo/PR_000008699,homeobox protein Hox-B2 +12.2543681,PR:000009234,http://purl.obolibrary.org/obo/PR_000009234,transcription factor jun-D +12.2543681,PR:000009338,http://purl.obolibrary.org/obo/PR_000009338,killer cell immunoglobulin-like receptor 3DL2 +12.2543681,PR:000010379,http://purl.obolibrary.org/obo/PR_000010379,"alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase" +12.2543681,PR:000010789,http://purl.obolibrary.org/obo/PR_000010789,interferon-induced GTP-binding protein Mx2 +12.2543681,PR:000011343,http://purl.obolibrary.org/obo/PR_000011343,NADPH oxidase organizer 1 +12.2543681,PR:000013090,http://purl.obolibrary.org/obo/PR_000013090,protein phosphatase 1A +12.2543681,PR:000013112,http://purl.obolibrary.org/obo/PR_000013112,protein phosphatase 1 regulatory subunit 14A +12.2543681,PR:000013860,http://purl.obolibrary.org/obo/PR_000013860,ATP-dependent DNA helicase Q1 +12.2543681,PR:000015702,http://purl.obolibrary.org/obo/PR_000015702,stabilin-2 +12.2543681,PR:000015733,http://purl.obolibrary.org/obo/PR_000015733,metalloreductase STEAP4 +12.2543681,PR:000016214,http://purl.obolibrary.org/obo/PR_000016214,"tryptophan 2,3-dioxygenase" +12.2543681,PR:000016374,http://purl.obolibrary.org/obo/PR_000016374,transducin-like enhancer protein 3 +12.2543681,PR:000016444,http://purl.obolibrary.org/obo/PR_000016444,tropomodulin-1 +12.2543681,PR:000016967,http://purl.obolibrary.org/obo/PR_000016967,ubiquitin-conjugating enzyme E2 C +12.2543681,PR:000017875,http://purl.obolibrary.org/obo/PR_000017875,zinc finger protein 410 +12.2543681,PR:000024198,http://purl.obolibrary.org/obo/PR_000024198,none +12.2543681,PR:000035393,http://purl.obolibrary.org/obo/PR_000035393,none +12.2543681,PR:O13858,http://purl.obolibrary.org/obo/PR_O13858,none +12.2543681,PR:O88941,http://purl.obolibrary.org/obo/PR_O88941,none +12.2543681,PR:P08456,http://purl.obolibrary.org/obo/PR_P08456,none +12.2543681,PR:P93002,http://purl.obolibrary.org/obo/PR_P93002,none +12.2543681,PR:Q54WR9,http://purl.obolibrary.org/obo/PR_Q54WR9,none +12.2543681,PR:Q7XA74,http://purl.obolibrary.org/obo/PR_Q7XA74,none +12.2543681,PR:Q8RYD9,http://purl.obolibrary.org/obo/PR_Q8RYD9,none +12.2543681,PR:Q9FTA2,http://purl.obolibrary.org/obo/PR_Q9FTA2,none +12.2543681,PR:Q9SB52,http://purl.obolibrary.org/obo/PR_Q9SB52,none +12.2543681,PR:Q9SJ11,http://purl.obolibrary.org/obo/PR_Q9SJ11,none +12.2543681,SO:0000671,http://purl.obolibrary.org/obo/SO_0000671,internal_eliminated_sequence +12.2543681,UBERON:0001065,http://purl.obolibrary.org/obo/UBERON_0001065,parotid main excretory duct +12.2543681,UBERON:0001197,http://purl.obolibrary.org/obo/UBERON_0001197,ileocolic artery +12.2543681,UBERON:0002070,http://purl.obolibrary.org/obo/UBERON_0002070,superior pancreaticoduodenal artery +12.2543681,UBERON:0004671,http://purl.obolibrary.org/obo/UBERON_0004671,gyrus rectus +12.2543681,UBERON:0005760,http://purl.obolibrary.org/obo/UBERON_0005760,urorectal septum +12.2543681,UBERON:0006376,http://purl.obolibrary.org/obo/UBERON_0006376,premacula segment of distal straight tubule +12.2543681,UBERON:0006947,http://purl.obolibrary.org/obo/UBERON_0006947,male genital duct +12.2543681,UBERON:0008858,http://purl.obolibrary.org/obo/UBERON_0008858,pyloric canal +12.2543681,UBERON:0011594,http://purl.obolibrary.org/obo/UBERON_0011594,dentary tooth +12.2543681,UBERON:0013483,http://purl.obolibrary.org/obo/UBERON_0013483,crypt of Lieberkuhn of jejunum +12.2543681,UBERON:0014530,http://purl.obolibrary.org/obo/UBERON_0014530,white matter lamina of neuraxis +12.2543681,UBERON:0035048,http://purl.obolibrary.org/obo/UBERON_0035048,parotid gland excretory duct +12.2543681,UBERON:2000297,http://purl.obolibrary.org/obo/UBERON_2000297,vagal lobe +12.2635006,CHEBI:16350,http://purl.obolibrary.org/obo/CHEBI_16350,2'-deoxyribonucleoside 5'-diphosphate +12.2635006,CHEBI:17668,http://purl.obolibrary.org/obo/CHEBI_17668,ribonucleoside diphosphate +12.2635006,CHEBI:17955,http://purl.obolibrary.org/obo/CHEBI_17955,2'-deoxyribonucleoside diphosphate +12.2635006,CHEBI:24531,http://purl.obolibrary.org/obo/CHEBI_24531,heterocyclic antibiotic +12.2635006,CHEBI:25107,http://purl.obolibrary.org/obo/CHEBI_25107,magnesium atom +12.2635006,CHEBI:28874,http://purl.obolibrary.org/obo/CHEBI_28874,phosphatidylinositol +12.2635006,CHEBI:37075,http://purl.obolibrary.org/obo/CHEBI_37075,ribonucleoside 5'-diphosphate +12.2635006,CHEBI:37581,http://purl.obolibrary.org/obo/CHEBI_37581,gamma-lactone +12.2635006,CHEBI:57930,http://purl.obolibrary.org/obo/CHEBI_57930,nucleoside 5'-diphosphate(3-) +12.2635006,CL:0000920,http://purl.obolibrary.org/obo/CL_0000920,"CD8-positive, CD28-negative, alpha-beta regulatory T cell" +12.2635006,DRUGBANK:DB01996,http://purl.obolibrary.org/obo/DRUGBANK_DB01996,none +12.2635006,DRUGBANK:DB04581,http://purl.obolibrary.org/obo/DRUGBANK_DB04581,none +12.2635006,DRUGBANK:DB04967,http://purl.obolibrary.org/obo/DRUGBANK_DB04967,none +12.2635006,DRUGBANK:DB09320,http://purl.obolibrary.org/obo/DRUGBANK_DB09320,none +12.2635006,DRUGBANK:DB09369,http://purl.obolibrary.org/obo/DRUGBANK_DB09369,none +12.2635006,DRUGBANK:DB10696,http://purl.obolibrary.org/obo/DRUGBANK_DB10696,none +12.2635006,DRUGBANK:DB11220,http://purl.obolibrary.org/obo/DRUGBANK_DB11220,none +12.2635006,DRUGBANK:DB11526,http://purl.obolibrary.org/obo/DRUGBANK_DB11526,none +12.2635006,DRUGBANK:DB11725,http://purl.obolibrary.org/obo/DRUGBANK_DB11725,none +12.2635006,DRUGBANK:DB11942,http://purl.obolibrary.org/obo/DRUGBANK_DB11942,none +12.2635006,DRUGBANK:DB12172,http://purl.obolibrary.org/obo/DRUGBANK_DB12172,none +12.2635006,DRUGBANK:DB12890,http://purl.obolibrary.org/obo/DRUGBANK_DB12890,none +12.2635006,DRUGBANK:DB13190,http://purl.obolibrary.org/obo/DRUGBANK_DB13190,none +12.2635006,DRUGBANK:DB13462,http://purl.obolibrary.org/obo/DRUGBANK_DB13462,none +12.2635006,DRUGBANK:DB13973,http://purl.obolibrary.org/obo/DRUGBANK_DB13973,none +12.2635006,DRUGBANK:DB16008,http://purl.obolibrary.org/obo/DRUGBANK_DB16008,none +12.2635006,GO:0000820,http://purl.obolibrary.org/obo/GO_0000820,regulation of glutamine family amino acid metabolic process +12.2635006,GO:0001955,http://purl.obolibrary.org/obo/GO_0001955,blood vessel maturation +12.2635006,GO:0002700,http://purl.obolibrary.org/obo/GO_0002700,regulation of production of molecular mediator of immune response +12.2635006,GO:0004454,http://purl.obolibrary.org/obo/GO_0004454,ketohexokinase activity +12.2635006,GO:0008883,http://purl.obolibrary.org/obo/GO_0008883,glutamyl-tRNA reductase activity +12.2635006,GO:0009275,http://purl.obolibrary.org/obo/GO_0009275,Gram-positive-bacterium-type cell wall +12.2635006,GO:0015730,http://purl.obolibrary.org/obo/GO_0015730,propanoate transport +12.2635006,GO:0016132,http://purl.obolibrary.org/obo/GO_0016132,brassinosteroid biosynthetic process +12.2635006,GO:0035195,http://purl.obolibrary.org/obo/GO_0035195,gene silencing by miRNA +12.2635006,GO:0043435,http://purl.obolibrary.org/obo/GO_0043435,response to corticotropin-releasing hormone +12.2635006,GO:0055001,http://purl.obolibrary.org/obo/GO_0055001,muscle cell development +12.2635006,GO:0071216,http://purl.obolibrary.org/obo/GO_0071216,cellular response to biotic stimulus +12.2635006,GO:0072091,http://purl.obolibrary.org/obo/GO_0072091,regulation of stem cell proliferation +12.2635006,GO:0097546,http://purl.obolibrary.org/obo/GO_0097546,ciliary base +12.2635006,GO:1904578,http://purl.obolibrary.org/obo/GO_1904578,response to thapsigargin +12.2635006,GO:2000273,http://purl.obolibrary.org/obo/GO_2000273,positive regulation of signaling receptor activity +12.2635006,GO:2000828,http://purl.obolibrary.org/obo/GO_2000828,regulation of parathyroid hormone secretion +12.2635006,HP:0001297,http://purl.obolibrary.org/obo/HP_0001297,Stroke +12.2635006,HP:0003076,http://purl.obolibrary.org/obo/HP_0003076,Glycosuria +12.2635006,HP:0011016,http://purl.obolibrary.org/obo/HP_0011016,Abnormality of urine glucose concentration +12.2635006,MONDO:0003223,http://purl.obolibrary.org/obo/MONDO_0003223,meninges hemangiopericytoma +12.2635006,MONDO:0003453,http://purl.obolibrary.org/obo/MONDO_0003453,conjunctival intraepithelial neoplasm +12.2635006,MONDO:0004146,http://purl.obolibrary.org/obo/MONDO_0004146,transitional meningioma +12.2635006,MONDO:0005688,http://purl.obolibrary.org/obo/MONDO_0005688,campylobacteriosis +12.2635006,MONDO:0008907,http://purl.obolibrary.org/obo/MONDO_0008907,PMM2-CDG +12.2635006,MONDO:0009964,http://purl.obolibrary.org/obo/MONDO_0009964,short-rib thoracic dysplasia 9 with or without polydactyly +12.2635006,MONDO:0010790,http://purl.obolibrary.org/obo/MONDO_0010790,MERRF syndrome +12.2635006,MONDO:0011979,http://purl.obolibrary.org/obo/MONDO_0011979,adult-onset foveomacular vitelliform dystrophy +12.2635006,MONDO:0016711,http://purl.obolibrary.org/obo/MONDO_0016711,desmoplastic/nodular medulloblastoma +12.2635006,MONDO:0017915,http://purl.obolibrary.org/obo/MONDO_0017915,pure or complex autosomal recessive spastic paraplegia +12.2635006,MONDO:0019518,http://purl.obolibrary.org/obo/MONDO_0019518,Waardenburg-Shah syndrome +12.2635006,MONDO:0021191,http://purl.obolibrary.org/obo/MONDO_0021191,malignant ependymoma +12.2635006,MONDO:0044113,http://purl.obolibrary.org/obo/MONDO_0044113,bullous systemic lupus erythematosus +12.2635006,NCBITaxon:34879,http://purl.obolibrary.org/obo/NCBITaxon_34879,none +12.2635006,NCBITaxon:6341,http://purl.obolibrary.org/obo/NCBITaxon_6341,Polychaeta +12.2635006,NCBITaxon:7230,http://purl.obolibrary.org/obo/NCBITaxon_7230,none +12.2635006,PR:000000686,http://purl.obolibrary.org/obo/PR_000000686,cGMP-gated cation channel alpha-1 +12.2635006,PR:000000732,http://purl.obolibrary.org/obo/PR_000000732,voltage-gated potassium channel subunit KCNQ5 +12.2635006,PR:000001628,http://purl.obolibrary.org/obo/PR_000001628,neurotensin receptor type 2 +12.2635006,PR:000001703,http://purl.obolibrary.org/obo/PR_000001703,mas-related G-protein coupled receptor X2 +12.2635006,PR:000003555,http://purl.obolibrary.org/obo/PR_000003555,ATP-binding cassette sub-family C member 10 +12.2635006,PR:000003794,http://purl.obolibrary.org/obo/PR_000003794,adenylosuccinate lyase +12.2635006,PR:000005408,http://purl.obolibrary.org/obo/PR_000005408,chromodomain-helicase-DNA-binding protein 2 +12.2635006,PR:000005412,http://purl.obolibrary.org/obo/PR_000005412,chromodomain-helicase-DNA-binding protein 6 +12.2635006,PR:000007592,http://purl.obolibrary.org/obo/PR_000007592,protein farnesyltransferase subunit beta +12.2635006,PR:000008249,http://purl.obolibrary.org/obo/PR_000008249,"glutamate receptor ionotropic, NMDA 2D" +12.2635006,PR:000009599,http://purl.obolibrary.org/obo/PR_000009599,KIF-binding protein +12.2635006,PR:000009693,http://purl.obolibrary.org/obo/PR_000009693,transcription factor LBX1 +12.2635006,PR:000011587,http://purl.obolibrary.org/obo/PR_000011587,obscurin +12.2635006,PR:000012328,http://purl.obolibrary.org/obo/PR_000012328,pre-B-cell leukemia transcription factor 3 +12.2635006,PR:000013459,http://purl.obolibrary.org/obo/PR_000013459,tyrosine-protein phosphatase non-receptor type 4 +12.2635006,PR:000015663,http://purl.obolibrary.org/obo/PR_000015663,FACT complex subunit SSRP1 +12.2635006,PR:000017574,http://purl.obolibrary.org/obo/PR_000017574,zinc finger and BTB domain-containing protein 32 +12.2635006,PR:000022174,http://purl.obolibrary.org/obo/PR_000022174,none +12.2635006,PR:000022215,http://purl.obolibrary.org/obo/PR_000022215,none +12.2635006,PR:000022943,http://purl.obolibrary.org/obo/PR_000022943,none +12.2635006,PR:000031039,http://purl.obolibrary.org/obo/PR_000031039,D-ribitol-5-phosphate cytidylyltransferase +12.2635006,PR:000031412,http://purl.obolibrary.org/obo/PR_000031412,"transmembrane protein 11, mitochondrial" +12.2635006,PR:000031436,http://purl.obolibrary.org/obo/PR_000031436,microtubule-actin cross-linking factor 1 +12.2635006,PR:P16045,http://purl.obolibrary.org/obo/PR_P16045,none +12.2635006,PR:P19659,http://purl.obolibrary.org/obo/PR_P19659,none +12.2635006,PR:P32588,http://purl.obolibrary.org/obo/PR_P32588,none +12.2635006,PR:Q86H98,http://purl.obolibrary.org/obo/PR_Q86H98,none +12.2635006,SO:0000020,http://purl.obolibrary.org/obo/SO_0000020,RNA_internal_loop +12.2635006,UBERON:0001507,http://purl.obolibrary.org/obo/UBERON_0001507,biceps brachii +12.2635006,UBERON:0003065,http://purl.obolibrary.org/obo/UBERON_0003065,ciliary marginal zone +12.2635006,UBERON:0003654,http://purl.obolibrary.org/obo/UBERON_0003654,metatarsal bone of digit 5 +12.2635006,UBERON:0004359,http://purl.obolibrary.org/obo/UBERON_0004359,corpus epididymis +12.2635006,UBERON:0005030,http://purl.obolibrary.org/obo/UBERON_0005030,mucosa of paranasal sinus +12.2635006,UBERON:0005734,http://purl.obolibrary.org/obo/UBERON_0005734,tunica adventitia of blood vessel +12.2635006,UBERON:0005991,http://purl.obolibrary.org/obo/UBERON_0005991,aortic valve anulus +12.2635006,UBERON:0006603,http://purl.obolibrary.org/obo/UBERON_0006603,presumptive mesoderm +12.2635006,UBERON:0008573,http://purl.obolibrary.org/obo/UBERON_0008573,lateral crico-arytenoid +12.2635006,UBERON:0015041,http://purl.obolibrary.org/obo/UBERON_0015041,pedal digit 5 metatarsal endochondral element +12.2727172,CHEBI:20702,http://purl.obolibrary.org/obo/CHEBI_20702,2-aminopurines +12.2727172,CHEBI:22977,http://purl.obolibrary.org/obo/CHEBI_22977,cadmium atom +12.2727172,CHEBI:25558,http://purl.obolibrary.org/obo/CHEBI_25558,organonitrogen heterocyclic antibiotic +12.2727172,CHEBI:35106,http://purl.obolibrary.org/obo/CHEBI_35106,nitrogen hydride +12.2727172,CHEBI:35412,http://purl.obolibrary.org/obo/CHEBI_35412,aminal +12.2727172,CHEBI:35846,http://purl.obolibrary.org/obo/CHEBI_35846,renal agent +12.2727172,CHEBI:37249,http://purl.obolibrary.org/obo/CHEBI_37249,elemental cadmium +12.2727172,CHEBI:59814,http://purl.obolibrary.org/obo/CHEBI_59814,L-alpha-amino acid anion +12.2727172,CHEBI:63063,http://purl.obolibrary.org/obo/CHEBI_63063,cadmium cation +12.2727172,CHEBI:63726,http://purl.obolibrary.org/obo/CHEBI_63726,neuroprotective agent +12.2727172,CHEBI:73316,http://purl.obolibrary.org/obo/CHEBI_73316,2'-deoxyribonucleoside 5'-diphosphate(3-) +12.2727172,DRUGBANK:DB01256,http://purl.obolibrary.org/obo/DRUGBANK_DB01256,none +12.2727172,DRUGBANK:DB01431,http://purl.obolibrary.org/obo/DRUGBANK_DB01431,none +12.2727172,DRUGBANK:DB02057,http://purl.obolibrary.org/obo/DRUGBANK_DB02057,none +12.2727172,DRUGBANK:DB02632,http://purl.obolibrary.org/obo/DRUGBANK_DB02632,none +12.2727172,DRUGBANK:DB03661,http://purl.obolibrary.org/obo/DRUGBANK_DB03661,none +12.2727172,DRUGBANK:DB03745,http://purl.obolibrary.org/obo/DRUGBANK_DB03745,none +12.2727172,DRUGBANK:DB05786,http://purl.obolibrary.org/obo/DRUGBANK_DB05786,none +12.2727172,DRUGBANK:DB09010,http://purl.obolibrary.org/obo/DRUGBANK_DB09010,none +12.2727172,DRUGBANK:DB09166,http://purl.obolibrary.org/obo/DRUGBANK_DB09166,none +12.2727172,DRUGBANK:DB11335,http://purl.obolibrary.org/obo/DRUGBANK_DB11335,none +12.2727172,DRUGBANK:DB13403,http://purl.obolibrary.org/obo/DRUGBANK_DB13403,none +12.2727172,DRUGBANK:DB14068,http://purl.obolibrary.org/obo/DRUGBANK_DB14068,none +12.2727172,DRUGBANK:DB14631,http://purl.obolibrary.org/obo/DRUGBANK_DB14631,none +12.2727172,DRUGBANK:DB14644,http://purl.obolibrary.org/obo/DRUGBANK_DB14644,none +12.2727172,DRUGBANK:DB15677,http://purl.obolibrary.org/obo/DRUGBANK_DB15677,none +12.2727172,GO:0005937,http://purl.obolibrary.org/obo/GO_0005937,mating projection +12.2727172,GO:0009263,http://purl.obolibrary.org/obo/GO_0009263,deoxyribonucleotide biosynthetic process +12.2727172,GO:0010034,http://purl.obolibrary.org/obo/GO_0010034,response to acetate +12.2727172,GO:0016708,http://purl.obolibrary.org/obo/GO_0016708,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of two atoms of oxygen into one donor" +12.2727172,GO:0017154,http://purl.obolibrary.org/obo/GO_0017154,semaphorin receptor activity +12.2727172,GO:0021549,http://purl.obolibrary.org/obo/GO_0021549,cerebellum development +12.2727172,GO:0021675,http://purl.obolibrary.org/obo/GO_0021675,nerve development +12.2727172,GO:0030008,http://purl.obolibrary.org/obo/GO_0030008,TRAPP complex +12.2727172,GO:0035304,http://purl.obolibrary.org/obo/GO_0035304,regulation of protein dephosphorylation +12.2727172,GO:0035926,http://purl.obolibrary.org/obo/GO_0035926,none +12.2727172,GO:0036343,http://purl.obolibrary.org/obo/GO_0036343,psychomotor behavior +12.2727172,GO:0042431,http://purl.obolibrary.org/obo/GO_0042431,indole metabolic process +12.2727172,GO:0043181,http://purl.obolibrary.org/obo/GO_0043181,vacuolar sequestering +12.2727172,GO:0043589,http://purl.obolibrary.org/obo/GO_0043589,skin morphogenesis +12.2727172,GO:0046379,http://purl.obolibrary.org/obo/GO_0046379,extracellular polysaccharide metabolic process +12.2727172,GO:0050702,http://purl.obolibrary.org/obo/GO_0050702,none +12.2727172,GO:0061684,http://purl.obolibrary.org/obo/GO_0061684,chaperone-mediated autophagy +12.2727172,GO:1904018,http://purl.obolibrary.org/obo/GO_1904018,positive regulation of vasculature development +12.2727172,GO:1905939,http://purl.obolibrary.org/obo/GO_1905939,regulation of gonad development +12.2727172,GO:2000024,http://purl.obolibrary.org/obo/GO_2000024,regulation of leaf development +12.2727172,HP:0000927,http://purl.obolibrary.org/obo/HP_0000927,Abnormality of skeletal maturation +12.2727172,HP:0002750,http://purl.obolibrary.org/obo/HP_0002750,Delayed skeletal maturation +12.2727172,HP:0031058,http://purl.obolibrary.org/obo/HP_0031058,Impairment of activities of daily living +12.2727172,MONDO:0001293,http://purl.obolibrary.org/obo/MONDO_0001293,subglottis cancer +12.2727172,MONDO:0002010,http://purl.obolibrary.org/obo/MONDO_0002010,FG syndrome +12.2727172,MONDO:0004129,http://purl.obolibrary.org/obo/MONDO_0004129,cloacogenic carcinoma +12.2727172,MONDO:0005279,http://purl.obolibrary.org/obo/MONDO_0005279,pulmonary embolism +12.2727172,MONDO:0006077,http://purl.obolibrary.org/obo/MONDO_0006077,adrenal medullary hyperplasia +12.2727172,MONDO:0006527,http://purl.obolibrary.org/obo/MONDO_0006527,anhidrosis +12.2727172,MONDO:0011449,http://purl.obolibrary.org/obo/MONDO_0011449,Salla disease +12.2727172,MONDO:0011876,http://purl.obolibrary.org/obo/MONDO_0011876,juvenile absence epilepsy +12.2727172,MONDO:0013858,http://purl.obolibrary.org/obo/MONDO_0013858,pontine tegmental cap dysplasia +12.2727172,MONDO:0021221,http://purl.obolibrary.org/obo/MONDO_0021221,vestibulocochlear nerve neoplasm +12.2727172,MONDO:0100133,http://purl.obolibrary.org/obo/MONDO_0100133,mitochondrial complex I deficiency +12.2727172,NCBITaxon:2585030,http://purl.obolibrary.org/obo/NCBITaxon_2585030,unclassified Riboviria +12.2727172,NCBITaxon:337673,http://purl.obolibrary.org/obo/NCBITaxon_337673,none +12.2727172,NCBITaxon:34880,http://purl.obolibrary.org/obo/NCBITaxon_34880,none +12.2727172,NCBITaxon:439490,http://purl.obolibrary.org/obo/NCBITaxon_439490,unclassified ssRNA viruses +12.2727172,NCBITaxon:446045,http://purl.obolibrary.org/obo/NCBITaxon_446045,none +12.2727172,NCBITaxon:7745,http://purl.obolibrary.org/obo/NCBITaxon_7745,Petromyzontiformes +12.2727172,NCBITaxon:7746,http://purl.obolibrary.org/obo/NCBITaxon_7746,none +12.2727172,PR:000000722,http://purl.obolibrary.org/obo/PR_000000722,voltage-gated potassium channel KCNB1 +12.2727172,PR:000001311,http://purl.obolibrary.org/obo/PR_000001311,adhesion G protein-coupled receptor E5 +12.2727172,PR:000001622,http://purl.obolibrary.org/obo/PR_000001622,neuropeptide Y receptor type 1 +12.2727172,PR:000003780,http://purl.obolibrary.org/obo/PR_000003780,adenosine kinase +12.2727172,PR:000004667,http://purl.obolibrary.org/obo/PR_000004667,Bardet-Biedl syndrome 4 protein +12.2727172,PR:000006518,http://purl.obolibrary.org/obo/PR_000006518,disks large-associated protein 3 +12.2727172,PR:000010129,http://purl.obolibrary.org/obo/PR_000010129,mitogen-activated protein kinase kinase kinase 10 +12.2727172,PR:000010890,http://purl.obolibrary.org/obo/PR_000010890,histone acetyltransferase KAT6A +12.2727172,PR:000011275,http://purl.obolibrary.org/obo/PR_000011275,"NACHT, LRR and PYD domains-containing protein 7" +12.2727172,PR:000011598,http://purl.obolibrary.org/obo/PR_000011598,outer dense fiber protein 2 +12.2727172,PR:000012327,http://purl.obolibrary.org/obo/PR_000012327,pre-B-cell leukemia transcription factor 2 +12.2727172,PR:000012495,http://purl.obolibrary.org/obo/PR_000012495,"pyruvate dehydrogenase E1 component subunit beta, mitochondrial" +12.2727172,PR:000012561,http://purl.obolibrary.org/obo/PR_000012561,peroxisomal membrane protein PEX16 +12.2727172,PR:000013233,http://purl.obolibrary.org/obo/PR_000013233,protein kinase C iota type +12.2727172,PR:000014380,http://purl.obolibrary.org/obo/PR_000014380,Ras-related protein Rab-12 +12.2727172,PR:000014461,http://purl.obolibrary.org/obo/PR_000014461,U4/U6.U5 tri-snRNP-associated protein 1 +12.2727172,PR:000014563,http://purl.obolibrary.org/obo/PR_000014563,"succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial" +12.2727172,PR:000014604,http://purl.obolibrary.org/obo/PR_000014604,protein sel-1 homolog 1 +12.2727172,PR:000014617,http://purl.obolibrary.org/obo/PR_000014617,semaphorin-3C +12.2727172,PR:000014743,http://purl.obolibrary.org/obo/PR_000014743,"splicing factor, proline- and glutamine-rich" +12.2727172,PR:000015133,http://purl.obolibrary.org/obo/PR_000015133,zinc transporter ZIP6 +12.2727172,PR:000015602,http://purl.obolibrary.org/obo/PR_000015602,"sulfide:quinone oxidoreductase, mitochondrial" +12.2727172,PR:000022189,http://purl.obolibrary.org/obo/PR_000022189,none +12.2727172,PR:000023069,http://purl.obolibrary.org/obo/PR_000023069,none +12.2727172,PR:000023191,http://purl.obolibrary.org/obo/PR_000023191,none +12.2727172,PR:000023286,http://purl.obolibrary.org/obo/PR_000023286,none +12.2727172,PR:000023345,http://purl.obolibrary.org/obo/PR_000023345,none +12.2727172,PR:000025852,http://purl.obolibrary.org/obo/PR_000025852,defensin-5 +12.2727172,PR:000028479,http://purl.obolibrary.org/obo/PR_000028479,none +12.2727172,PR:A2A6M5,http://purl.obolibrary.org/obo/PR_A2A6M5,none +12.2727172,PR:P07271,http://purl.obolibrary.org/obo/PR_P07271,none +12.2727172,PR:P40319,http://purl.obolibrary.org/obo/PR_P40319,none +12.2727172,PR:P42529,http://purl.obolibrary.org/obo/PR_P42529,none +12.2727172,PR:Q59LY1,http://purl.obolibrary.org/obo/PR_Q59LY1,none +12.2727172,PR:Q8S948,http://purl.obolibrary.org/obo/PR_Q8S948,none +12.2727172,SO:0001540,http://purl.obolibrary.org/obo/SO_0001540,level_of_transcript_variant +12.2727172,UBERON:0001588,http://purl.obolibrary.org/obo/UBERON_0001588,vertebral vein +12.2727172,UBERON:0002270,http://purl.obolibrary.org/obo/UBERON_0002270,hyaloid artery +12.2727172,UBERON:0005317,http://purl.obolibrary.org/obo/UBERON_0005317,pulmonary artery endothelium +12.2727172,UBERON:0006779,http://purl.obolibrary.org/obo/UBERON_0006779,superficial white layer of superior colliculus +12.2727172,UBERON:0006791,http://purl.obolibrary.org/obo/UBERON_0006791,superficial layer of superior colliculus +12.2727172,UBERON:0011639,http://purl.obolibrary.org/obo/UBERON_0011639,frontoparietal bone +12.2727172,UBERON:0013525,http://purl.obolibrary.org/obo/UBERON_0013525,stomach lumen +12.2727172,UBERON:0014430,http://purl.obolibrary.org/obo/UBERON_0014430,sciatic notch +12.2727172,UBERON:2000223,http://purl.obolibrary.org/obo/UBERON_2000223,infraorbital 1 +12.2727172,UBERON:2000488,http://purl.obolibrary.org/obo/UBERON_2000488,ceratobranchial bone +12.2727172,UBERON:3000972,http://purl.obolibrary.org/obo/UBERON_3000972,head external integument structure +12.2820196,CHEBI:26387,http://purl.obolibrary.org/obo/CHEBI_26387,purine 2'-deoxyribonucleoside diphosphate +12.2820196,CHEBI:26391,http://purl.obolibrary.org/obo/CHEBI_26391,purine nucleoside diphosphate +12.2820196,CHEBI:26396,http://purl.obolibrary.org/obo/CHEBI_26396,purine ribonucleoside diphosphate +12.2820196,CHEBI:35841,http://purl.obolibrary.org/obo/CHEBI_35841,uricosuric drug +12.2820196,CHEBI:35845,http://purl.obolibrary.org/obo/CHEBI_35845,gout suppressant +12.2820196,CHEBI:37036,http://purl.obolibrary.org/obo/CHEBI_37036,purine 2'-deoxyribonucleoside 5'-diphosphate +12.2820196,CHEBI:37038,http://purl.obolibrary.org/obo/CHEBI_37038,purine ribonucleoside 5'-diphosphate +12.2820196,CHEBI:37141,http://purl.obolibrary.org/obo/CHEBI_37141,organobromine compound +12.2820196,CHEBI:38164,http://purl.obolibrary.org/obo/CHEBI_38164,organic heteropentacyclic compound +12.2820196,CHEBI:71253,http://purl.obolibrary.org/obo/CHEBI_71253,asenapine +12.2820196,CHEBI:72588,http://purl.obolibrary.org/obo/CHEBI_72588,semisynthetic derivative +12.2820196,CL:0002450,http://purl.obolibrary.org/obo/CL_0002450,tether cell +12.2820196,DRUGBANK:DB01000,http://purl.obolibrary.org/obo/DRUGBANK_DB01000,none +12.2820196,DRUGBANK:DB04725,http://purl.obolibrary.org/obo/DRUGBANK_DB04725,none +12.2820196,DRUGBANK:DB05084,http://purl.obolibrary.org/obo/DRUGBANK_DB05084,none +12.2820196,DRUGBANK:DB10690,http://purl.obolibrary.org/obo/DRUGBANK_DB10690,none +12.2820196,DRUGBANK:DB12047,http://purl.obolibrary.org/obo/DRUGBANK_DB12047,none +12.2820196,DRUGBANK:DB13266,http://purl.obolibrary.org/obo/DRUGBANK_DB13266,none +12.2820196,DRUGBANK:DB16423,http://purl.obolibrary.org/obo/DRUGBANK_DB16423,none +12.2820196,GO:0003352,http://purl.obolibrary.org/obo/GO_0003352,regulation of cilium movement +12.2820196,GO:0008783,http://purl.obolibrary.org/obo/GO_0008783,agmatinase activity +12.2820196,GO:0010114,http://purl.obolibrary.org/obo/GO_0010114,response to red light +12.2820196,GO:0010950,http://purl.obolibrary.org/obo/GO_0010950,positive regulation of endopeptidase activity +12.2820196,GO:0010952,http://purl.obolibrary.org/obo/GO_0010952,positive regulation of peptidase activity +12.2820196,GO:0014032,http://purl.obolibrary.org/obo/GO_0014032,neural crest cell development +12.2820196,GO:0032814,http://purl.obolibrary.org/obo/GO_0032814,regulation of natural killer cell activation +12.2820196,GO:0033196,http://purl.obolibrary.org/obo/GO_0033196,tryparedoxin peroxidase activity +12.2820196,GO:0033823,http://purl.obolibrary.org/obo/GO_0033823,procollagen glucosyltransferase activity +12.2820196,GO:0035295,http://purl.obolibrary.org/obo/GO_0035295,tube development +12.2820196,GO:0043393,http://purl.obolibrary.org/obo/GO_0043393,regulation of protein binding +12.2820196,GO:0045226,http://purl.obolibrary.org/obo/GO_0045226,extracellular polysaccharide biosynthetic process +12.2820196,GO:0045509,http://purl.obolibrary.org/obo/GO_0045509,interleukin-27 receptor activity +12.2820196,GO:0046104,http://purl.obolibrary.org/obo/GO_0046104,thymidine metabolic process +12.2820196,GO:0046447,http://purl.obolibrary.org/obo/GO_0046447,terpenoid indole alkaloid metabolic process +12.2820196,GO:0050174,http://purl.obolibrary.org/obo/GO_0050174,phenylalanine decarboxylase activity +12.2820196,GO:0061450,http://purl.obolibrary.org/obo/GO_0061450,trophoblast cell migration +12.2820196,HP:0002651,http://purl.obolibrary.org/obo/HP_0002651,Spondyloepimetaphyseal dysplasia +12.2820196,HP:0031064,http://purl.obolibrary.org/obo/HP_0031064,Impaired continence +12.2820196,MONDO:0003423,http://purl.obolibrary.org/obo/MONDO_0003423,middle ear adenoma +12.2820196,MONDO:0003468,http://purl.obolibrary.org/obo/MONDO_0003468,biphasic synovial sarcoma +12.2820196,MONDO:0003792,http://purl.obolibrary.org/obo/MONDO_0003792,ovarian carcinosarcoma +12.2820196,MONDO:0005720,http://purl.obolibrary.org/obo/MONDO_0005720,cowpox +12.2820196,MONDO:0009058,http://purl.obolibrary.org/obo/MONDO_0009058,cystathioninuria +12.2820196,MONDO:0009799,http://purl.obolibrary.org/obo/MONDO_0009799,pachydermoperiostosis +12.2820196,MONDO:0015046,http://purl.obolibrary.org/obo/MONDO_0015046,gamma-heavy chain disease +12.2820196,MONDO:0018251,http://purl.obolibrary.org/obo/MONDO_0018251,glycogen storage disease due to phosphorylase kinase deficiency +12.2820196,MONDO:0037253,http://purl.obolibrary.org/obo/MONDO_0037253,ovarian thecoma +12.2820196,MONDO:0043836,http://purl.obolibrary.org/obo/MONDO_0043836,"tuberculosis, spinal" +12.2820196,NCBITaxon:11631,http://purl.obolibrary.org/obo/NCBITaxon_11631,none +12.2820196,NCBITaxon:137757,http://purl.obolibrary.org/obo/NCBITaxon_137757,none +12.2820196,NCBITaxon:38070,http://purl.obolibrary.org/obo/NCBITaxon_38070,none +12.2820196,NCBITaxon:43914,http://purl.obolibrary.org/obo/NCBITaxon_43914,none +12.2820196,NCBITaxon:7374,http://purl.obolibrary.org/obo/NCBITaxon_7374,none +12.2820196,PR:000003764,http://purl.obolibrary.org/obo/PR_000003764,beta-adducin +12.2820196,PR:000004885,http://purl.obolibrary.org/obo/PR_000004885,complement C1q tumor necrosis factor-related protein 3 +12.2820196,PR:000005695,http://purl.obolibrary.org/obo/PR_000005695,collagen alpha-2(XI) chain +12.2820196,PR:000005773,http://purl.obolibrary.org/obo/PR_000005773,cytochrome c oxidase copper chaperone +12.2820196,PR:000007770,http://purl.obolibrary.org/obo/PR_000007770,gamma-aminobutyric acid receptor subunit alpha-5 +12.2820196,PR:000007938,http://purl.obolibrary.org/obo/PR_000007938,flap endonuclease GEN homolog 1 +12.2820196,PR:000008304,http://purl.obolibrary.org/obo/PR_000008304,glutathione S-transferase omega-2 +12.2820196,PR:000008307,http://purl.obolibrary.org/obo/PR_000008307,maleylacetoacetate isomerase +12.2820196,PR:000008376,http://purl.obolibrary.org/obo/PR_000008376,none +12.2820196,PR:000009850,http://purl.obolibrary.org/obo/PR_000009850,protein ERGIC-53 +12.2820196,PR:000010230,http://purl.obolibrary.org/obo/PR_000010230,membrane-bound transcription factor site-2 protease +12.2820196,PR:000010408,http://purl.obolibrary.org/obo/PR_000010408,midline-2 +12.2820196,PR:000012862,http://purl.obolibrary.org/obo/PR_000012862,pleckstrin homology domain-containing family G member 5 +12.2820196,PR:000012901,http://purl.obolibrary.org/obo/PR_000012901,pro-MCH +12.2820196,PR:000014831,http://purl.obolibrary.org/obo/PR_000014831,SH3 and multiple ankyrin repeat domains protein 1 +12.2820196,PR:000015026,http://purl.obolibrary.org/obo/PR_000015026,"phosphate carrier protein, mitochondrial" +12.2820196,PR:000016582,http://purl.obolibrary.org/obo/PR_000016582,tropomyosin alpha-4 chain +12.2820196,PR:000022156,http://purl.obolibrary.org/obo/PR_000022156,none +12.2820196,PR:000030960,http://purl.obolibrary.org/obo/PR_000030960,GATOR complex protein DEPDC5 +12.2820196,PR:000031046,http://purl.obolibrary.org/obo/PR_000031046,nucleotide triphosphate diphosphatase +12.2820196,PR:O04292,http://purl.obolibrary.org/obo/PR_O04292,none +12.2820196,PR:P11832,http://purl.obolibrary.org/obo/PR_P11832,none +12.2820196,PR:P33400,http://purl.obolibrary.org/obo/PR_P33400,none +12.2820196,PR:Q63961,http://purl.obolibrary.org/obo/PR_Q63961,none +12.2820196,PR:Q8AXL1,http://purl.obolibrary.org/obo/PR_Q8AXL1,none +12.2820196,PR:Q8L7E3,http://purl.obolibrary.org/obo/PR_Q8L7E3,none +12.2820196,PR:Q94CE4,http://purl.obolibrary.org/obo/PR_Q94CE4,none +12.2820196,PR:Q9C9M6,http://purl.obolibrary.org/obo/PR_Q9C9M6,none +12.2820196,PR:Q9LSE2,http://purl.obolibrary.org/obo/PR_Q9LSE2,none +12.2820196,PR:Q9QUM4,http://purl.obolibrary.org/obo/PR_Q9QUM4,none +12.2820196,SO:0001820,http://purl.obolibrary.org/obo/SO_0001820,inframe_indel +12.2820196,UBERON:0003080,http://purl.obolibrary.org/obo/UBERON_0003080,anterior neural tube +12.2820196,UBERON:0003468,http://purl.obolibrary.org/obo/UBERON_0003468,ureteric segment of renal artery +12.2820196,UBERON:0011113,http://purl.obolibrary.org/obo/UBERON_0011113,inferior tibiofibular joint +12.2914094,CHEBI:456216,http://purl.obolibrary.org/obo/CHEBI_456216,ADP(3-) +12.2914094,CHEBI:50893,http://purl.obolibrary.org/obo/CHEBI_50893,azaarene +12.2914094,CHEBI:85267,http://purl.obolibrary.org/obo/CHEBI_85267,flumequine +12.2914094,CL:1000615,http://purl.obolibrary.org/obo/CL_1000615,kidney cortex tubule cell +12.2914094,DRUGBANK:DB00732,http://purl.obolibrary.org/obo/DRUGBANK_DB00732,none +12.2914094,DRUGBANK:DB00774,http://purl.obolibrary.org/obo/DRUGBANK_DB00774,none +12.2914094,DRUGBANK:DB04707,http://purl.obolibrary.org/obo/DRUGBANK_DB04707,none +12.2914094,DRUGBANK:DB06185,http://purl.obolibrary.org/obo/DRUGBANK_DB06185,none +12.2914094,DRUGBANK:DB09036,http://purl.obolibrary.org/obo/DRUGBANK_DB09036,none +12.2914094,DRUGBANK:DB11757,http://purl.obolibrary.org/obo/DRUGBANK_DB11757,none +12.2914094,DRUGBANK:DB14074,http://purl.obolibrary.org/obo/DRUGBANK_DB14074,none +12.2914094,DRUGBANK:DB14156,http://purl.obolibrary.org/obo/DRUGBANK_DB14156,none +12.2914094,DRUGBANK:DB15928,http://purl.obolibrary.org/obo/DRUGBANK_DB15928,none +12.2914094,GO:0001777,http://purl.obolibrary.org/obo/GO_0001777,T cell homeostatic proliferation +12.2914094,GO:0004514,http://purl.obolibrary.org/obo/GO_0004514,nicotinate-nucleotide diphosphorylase (carboxylating) activity +12.2914094,GO:0005095,http://purl.obolibrary.org/obo/GO_0005095,GTPase inhibitor activity +12.2914094,GO:0008716,http://purl.obolibrary.org/obo/GO_0008716,D-alanine-D-alanine ligase activity +12.2914094,GO:0008793,http://purl.obolibrary.org/obo/GO_0008793,aromatic-amino-acid:2-oxoglutarate aminotransferase activity +12.2914094,GO:0009694,http://purl.obolibrary.org/obo/GO_0009694,jasmonic acid metabolic process +12.2914094,GO:0015781,http://purl.obolibrary.org/obo/GO_0015781,none +12.2914094,GO:0016135,http://purl.obolibrary.org/obo/GO_0016135,saponin biosynthetic process +12.2914094,GO:0019882,http://purl.obolibrary.org/obo/GO_0019882,antigen processing and presentation +12.2914094,GO:0033597,http://purl.obolibrary.org/obo/GO_0033597,mitotic checkpoint complex +12.2914094,GO:0043280,http://purl.obolibrary.org/obo/GO_0043280,positive regulation of cysteine-type endopeptidase activity involved in apoptotic process +12.2914094,GO:0047849,http://purl.obolibrary.org/obo/GO_0047849,dextransucrase activity +12.2914094,GO:0050025,http://purl.obolibrary.org/obo/GO_0050025,L-glutamate oxidase activity +12.2914094,GO:0050913,http://purl.obolibrary.org/obo/GO_0050913,sensory perception of bitter taste +12.2914094,GO:0051602,http://purl.obolibrary.org/obo/GO_0051602,response to electrical stimulus +12.2914094,GO:0071514,http://purl.obolibrary.org/obo/GO_0071514,genetic imprinting +12.2914094,GO:0090288,http://purl.obolibrary.org/obo/GO_0090288,negative regulation of cellular response to growth factor stimulus +12.2914094,GO:2001056,http://purl.obolibrary.org/obo/GO_2001056,positive regulation of cysteine-type endopeptidase activity +12.2914094,HP:0000050,http://purl.obolibrary.org/obo/HP_0000050,Hypoplastic male external genitalia +12.2914094,HP:0002607,http://purl.obolibrary.org/obo/HP_0002607,Bowel incontinence +12.2914094,HP:0006530,http://purl.obolibrary.org/obo/HP_0006530,Abnormal pulmonary interstitial morphology +12.2914094,HP:0012700,http://purl.obolibrary.org/obo/HP_0012700,Abnormal large intestine physiology +12.2914094,MONDO:0003373,http://purl.obolibrary.org/obo/MONDO_0003373,kidney leiomyosarcoma +12.2914094,MONDO:0005253,http://purl.obolibrary.org/obo/MONDO_0005253,high output heart failure +12.2914094,MONDO:0005960,http://purl.obolibrary.org/obo/MONDO_0005960,silicosis +12.2914094,MONDO:0006868,http://purl.obolibrary.org/obo/MONDO_0006868,neurogenic bowel +12.2914094,MONDO:0008855,http://purl.obolibrary.org/obo/MONDO_0008855,MHC class II deficiency +12.2914094,MONDO:0009255,http://purl.obolibrary.org/obo/MONDO_0009255,galactokinase deficiency +12.2914094,MONDO:0010193,http://purl.obolibrary.org/obo/MONDO_0010193,Weaver syndrome +12.2914094,MONDO:0011796,http://purl.obolibrary.org/obo/MONDO_0011796,"epilepsy, partial, with pericentral spikes" +12.2914094,MONDO:0013367,http://purl.obolibrary.org/obo/MONDO_0013367,long QT syndrome 2 +12.2914094,MONDO:0014535,http://purl.obolibrary.org/obo/MONDO_0014535,hyperproinsulinemia +12.2914094,MONDO:0017603,http://purl.obolibrary.org/obo/MONDO_0017603,ALK-negative anaplastic large cell lymphoma +12.2914094,MONDO:0017609,http://purl.obolibrary.org/obo/MONDO_0017609,renal tubular dysgenesis +12.2914094,MONDO:0017790,http://purl.obolibrary.org/obo/MONDO_0017790,gastric adenocarcinoma and proximal polyposis of the stomach +12.2914094,MONDO:0019173,http://purl.obolibrary.org/obo/MONDO_0019173,rabies +12.2914094,MONDO:0019588,http://purl.obolibrary.org/obo/MONDO_0019588,"deafness, autosomal recessive" +12.2914094,NCBITaxon:10091,http://purl.obolibrary.org/obo/NCBITaxon_10091,none +12.2914094,NCBITaxon:7238,http://purl.obolibrary.org/obo/NCBITaxon_7238,none +12.2914094,PR:000001418,http://purl.obolibrary.org/obo/PR_000001418,G-protein coupled receptor 15 +12.2914094,PR:000001484,http://purl.obolibrary.org/obo/PR_000001484,low affinity immunoglobulin gamma Fc region receptor III-A +12.2914094,PR:000002071,http://purl.obolibrary.org/obo/PR_000002071,potassium channel subfamily K member 1 +12.2914094,PR:000003896,http://purl.obolibrary.org/obo/PR_000003896,A-kinase anchor protein 9 +12.2914094,PR:000005190,http://purl.obolibrary.org/obo/PR_000005190,cell division cycle protein 23 +12.2914094,PR:000005512,http://purl.obolibrary.org/obo/PR_000005512,cytoskeleton-associated protein 5 +12.2914094,PR:000005594,http://purl.obolibrary.org/obo/PR_000005594,protein CLN8 +12.2914094,PR:000005694,http://purl.obolibrary.org/obo/PR_000005694,collagen alpha-1(XI) chain +12.2914094,PR:000006515,http://purl.obolibrary.org/obo/PR_000006515,disks large homolog 5 +12.2914094,PR:000007824,http://purl.obolibrary.org/obo/PR_000007824,polypeptide N-acetylgalactosaminyltransferase 2 +12.2914094,PR:000008204,http://purl.obolibrary.org/obo/PR_000008204,G-protein-signaling modulator 1 +12.2914094,PR:000008806,http://purl.obolibrary.org/obo/PR_000008806,heat shock 70 kDa protein 1-like +12.2914094,PR:000009029,http://purl.obolibrary.org/obo/PR_000009029,inner centromere protein +12.2914094,PR:000009432,http://purl.obolibrary.org/obo/PR_000009432,importin subunit alpha-5 +12.2914094,PR:000010212,http://purl.obolibrary.org/obo/PR_000010212,Myc-associated zinc finger protein +12.2914094,PR:000010821,http://purl.obolibrary.org/obo/PR_000010821,myosin-10 +12.2914094,PR:000011185,http://purl.obolibrary.org/obo/PR_000011185,"NFU1 iron-sulfur cluster scaffold, mitochondrial" +12.2914094,PR:000011575,http://purl.obolibrary.org/obo/PR_000011575,2'-5'-oligoadenylate synthase 2 +12.2914094,PR:000012886,http://purl.obolibrary.org/obo/PR_000012886,phospholipid scramblase 3 +12.2914094,PR:000013241,http://purl.obolibrary.org/obo/PR_000013241,interferon-inducible double-stranded RNA-dependent protein kinase activator A +12.2914094,PR:000013384,http://purl.obolibrary.org/obo/PR_000013384,26S proteasome regulatory subunit 10B +12.2914094,PR:000013811,http://purl.obolibrary.org/obo/PR_000013811,"RNA-binding motif, single-stranded-interacting protein 1" +12.2914094,PR:000013854,http://purl.obolibrary.org/obo/PR_000013854,retinol dehydrogenase 5 +12.2914094,PR:000013919,http://purl.obolibrary.org/obo/PR_000013919,protein RFT1 +12.2914094,PR:000014612,http://purl.obolibrary.org/obo/PR_000014612,selenoprotein S +12.2914094,PR:000014640,http://purl.obolibrary.org/obo/PR_000014640,sentrin-specific protease 7 +12.2914094,PR:000014919,http://purl.obolibrary.org/obo/PR_000014919,P3 protein +12.2914094,PR:000015305,http://purl.obolibrary.org/obo/PR_000015305,single-strand selective monofunctional uracil DNA glycosylase +12.2914094,PR:000015530,http://purl.obolibrary.org/obo/PR_000015530,spindlin-3 +12.2914094,PR:000016431,http://purl.obolibrary.org/obo/PR_000016431,vacuole membrane protein 1 +12.2914094,PR:000016587,http://purl.obolibrary.org/obo/PR_000016587,tubulin polymerization-promoting protein +12.2914094,PR:000017301,http://purl.obolibrary.org/obo/PR_000017301,vasoactive intestinal polypeptide receptor 2 +12.2914094,PR:000017354,http://purl.obolibrary.org/obo/PR_000017354,visual system homeobox 1 +12.2914094,PR:000023116,http://purl.obolibrary.org/obo/PR_000023116,none +12.2914094,PR:000023560,http://purl.obolibrary.org/obo/PR_000023560,none +12.2914094,PR:000029748,http://purl.obolibrary.org/obo/PR_000029748,sodium- and chloride-dependent taurine transporter +12.2914094,PR:000037023,http://purl.obolibrary.org/obo/PR_000037023,none +12.2914094,PR:O36024,http://purl.obolibrary.org/obo/PR_O36024,none +12.2914094,PR:P10863,http://purl.obolibrary.org/obo/PR_P10863,none +12.2914094,PR:P17095,http://purl.obolibrary.org/obo/PR_P17095,none +12.2914094,PR:P33442,http://purl.obolibrary.org/obo/PR_P33442,none +12.2914094,PR:P34208,http://purl.obolibrary.org/obo/PR_P34208,none +12.2914094,PR:P38041,http://purl.obolibrary.org/obo/PR_P38041,none +12.2914094,PR:Q02910,http://purl.obolibrary.org/obo/PR_Q02910,none +12.2914094,PR:Q8VWJ1,http://purl.obolibrary.org/obo/PR_Q8VWJ1,none +12.2914094,PR:Q9FIH8,http://purl.obolibrary.org/obo/PR_Q9FIH8,none +12.2914094,UBERON:0003652,http://purl.obolibrary.org/obo/UBERON_0003652,metatarsal bone of digit 3 +12.2914094,UBERON:0004777,http://purl.obolibrary.org/obo/UBERON_0004777,respiratory system submucosa +12.2914094,UBERON:0006345,http://purl.obolibrary.org/obo/UBERON_0006345,stapedial artery +12.2914094,UBERON:0006677,http://purl.obolibrary.org/obo/UBERON_0006677,surface of epithelium +12.2914094,UBERON:0008847,http://purl.obolibrary.org/obo/UBERON_0008847,ovarian ligament +12.2914094,UBERON:0009646,http://purl.obolibrary.org/obo/UBERON_0009646,lumbar sympathetic nerve trunk +12.2914094,UBERON:0013278,http://purl.obolibrary.org/obo/UBERON_0013278,canal of Nuck +12.2914094,UBERON:0015039,http://purl.obolibrary.org/obo/UBERON_0015039,pedal digit 3 metatarsal endochondral element +12.2914094,UBERON:0018621,http://purl.obolibrary.org/obo/UBERON_0018621,upper canine tooth +12.3008881,CHEBI:16174,http://purl.obolibrary.org/obo/CHEBI_16174,dADP +12.3008881,CHEBI:16761,http://purl.obolibrary.org/obo/CHEBI_16761,ADP +12.3008881,CHEBI:23849,http://purl.obolibrary.org/obo/CHEBI_23849,diterpenoid +12.3008881,CHEBI:26658,http://purl.obolibrary.org/obo/CHEBI_26658,sesquiterpenoid +12.3008881,CHEBI:38180,http://purl.obolibrary.org/obo/CHEBI_38180,polycyclic heteroarene +12.3008881,CHEBI:38338,http://purl.obolibrary.org/obo/CHEBI_38338,aminopyrimidine +12.3008881,CHEBI:57667,http://purl.obolibrary.org/obo/CHEBI_57667,dADP(3-) +12.3008881,CHEBI:73474,http://purl.obolibrary.org/obo/CHEBI_73474,acetylenic compound +12.3008881,CHEBI:81572,http://purl.obolibrary.org/obo/CHEBI_81572,Adiponectin +12.3008881,CL:0000142,http://purl.obolibrary.org/obo/CL_0000142,hyalocyte +12.3008881,CL:0001053,http://purl.obolibrary.org/obo/CL_0001053,IgD-negative memory B cell +12.3008881,DRUGBANK:DB01537,http://purl.obolibrary.org/obo/DRUGBANK_DB01537,none +12.3008881,DRUGBANK:DB01874,http://purl.obolibrary.org/obo/DRUGBANK_DB01874,none +12.3008881,DRUGBANK:DB05029,http://purl.obolibrary.org/obo/DRUGBANK_DB05029,none +12.3008881,DRUGBANK:DB06607,http://purl.obolibrary.org/obo/DRUGBANK_DB06607,none +12.3008881,DRUGBANK:DB06652,http://purl.obolibrary.org/obo/DRUGBANK_DB06652,none +12.3008881,DRUGBANK:DB07109,http://purl.obolibrary.org/obo/DRUGBANK_DB07109,none +12.3008881,DRUGBANK:DB08869,http://purl.obolibrary.org/obo/DRUGBANK_DB08869,none +12.3008881,DRUGBANK:DB09209,http://purl.obolibrary.org/obo/DRUGBANK_DB09209,none +12.3008881,DRUGBANK:DB13265,http://purl.obolibrary.org/obo/DRUGBANK_DB13265,none +12.3008881,DRUGBANK:DB13638,http://purl.obolibrary.org/obo/DRUGBANK_DB13638,none +12.3008881,DRUGBANK:DB13923,http://purl.obolibrary.org/obo/DRUGBANK_DB13923,none +12.3008881,DRUGBANK:DB14071,http://purl.obolibrary.org/obo/DRUGBANK_DB14071,none +12.3008881,GO:0003996,http://purl.obolibrary.org/obo/GO_0003996,none +12.3008881,GO:0008889,http://purl.obolibrary.org/obo/GO_0008889,glycerophosphodiester phosphodiesterase activity +12.3008881,GO:0010494,http://purl.obolibrary.org/obo/GO_0010494,cytoplasmic stress granule +12.3008881,GO:0038109,http://purl.obolibrary.org/obo/GO_0038109,Kit signaling pathway +12.3008881,GO:0047486,http://purl.obolibrary.org/obo/GO_0047486,chondroitin ABC lyase activity +12.3008881,GO:0060323,http://purl.obolibrary.org/obo/GO_0060323,head morphogenesis +12.3008881,GO:0072523,http://purl.obolibrary.org/obo/GO_0072523,purine-containing compound catabolic process +12.3008881,GO:0090069,http://purl.obolibrary.org/obo/GO_0090069,regulation of ribosome biogenesis +12.3008881,GO:0090567,http://purl.obolibrary.org/obo/GO_0090567,reproductive shoot system development +12.3008881,GO:0097441,http://purl.obolibrary.org/obo/GO_0097441,basal dendrite +12.3008881,GO:1901355,http://purl.obolibrary.org/obo/GO_1901355,response to rapamycin +12.3008881,GO:1903491,http://purl.obolibrary.org/obo/GO_1903491,response to simvastatin +12.3008881,HP:0000032,http://purl.obolibrary.org/obo/HP_0000032,Abnormality of male external genitalia +12.3008881,HP:0000554,http://purl.obolibrary.org/obo/HP_0000554,Uveitis +12.3008881,MONDO:0001175,http://purl.obolibrary.org/obo/MONDO_0001175,immature cataract +12.3008881,MONDO:0001330,http://purl.obolibrary.org/obo/MONDO_0001330,presbyopia +12.3008881,MONDO:0001421,http://purl.obolibrary.org/obo/MONDO_0001421,frontal lobe neoplasm +12.3008881,MONDO:0001871,http://purl.obolibrary.org/obo/MONDO_0001871,acute diffuse glomerulonephritis +12.3008881,MONDO:0003379,http://purl.obolibrary.org/obo/MONDO_0003379,rectum leiomyosarcoma +12.3008881,MONDO:0005813,http://purl.obolibrary.org/obo/MONDO_0005813,interdigitating dendritic cell sarcoma +12.3008881,MONDO:0006790,http://purl.obolibrary.org/obo/MONDO_0006790,hypercementosis +12.3008881,MONDO:0009656,http://purl.obolibrary.org/obo/MONDO_0009656,Sanfilippo syndrome type B +12.3008881,MONDO:0015376,http://purl.obolibrary.org/obo/MONDO_0015376,first branchial cleft anomaly +12.3008881,MONDO:0018543,http://purl.obolibrary.org/obo/MONDO_0018543,autosomal dominant hypocalcemia +12.3008881,MONDO:0020172,http://purl.obolibrary.org/obo/MONDO_0020172,palpebral epidermal tumor +12.3008881,MONDO:0044349,http://purl.obolibrary.org/obo/MONDO_0044349,acquired hemoglobinopathy +12.3008881,MONDO:0045030,http://purl.obolibrary.org/obo/MONDO_0045030,non-infectious diarrheal disease +12.3008881,NCBITaxon:10784,http://purl.obolibrary.org/obo/NCBITaxon_10784,none +12.3008881,NCBITaxon:12215,http://purl.obolibrary.org/obo/NCBITaxon_12215,none +12.3008881,NCBITaxon:1511873,http://purl.obolibrary.org/obo/NCBITaxon_1511873,none +12.3008881,NCBITaxon:232365,http://purl.obolibrary.org/obo/NCBITaxon_232365,none +12.3008881,NCBITaxon:339351,http://purl.obolibrary.org/obo/NCBITaxon_339351,none +12.3008881,NCBITaxon:435433,http://purl.obolibrary.org/obo/NCBITaxon_435433,none +12.3008881,NCBITaxon:686606,http://purl.obolibrary.org/obo/NCBITaxon_686606,none +12.3008881,NCBITaxon:9513,http://purl.obolibrary.org/obo/NCBITaxon_9513,none +12.3008881,PR:000001556,http://purl.obolibrary.org/obo/PR_000001556,succinate receptor 1 +12.3008881,PR:000001577,http://purl.obolibrary.org/obo/PR_000001577,adenosine receptor A2b +12.3008881,PR:000003682,http://purl.obolibrary.org/obo/PR_000003682,actin-like protein 6A +12.3008881,PR:000004649,http://purl.obolibrary.org/obo/PR_000004649,large proline-rich protein BAT2 +12.3008881,PR:000004785,http://purl.obolibrary.org/obo/PR_000004785,Bcl-2-related ovarian killer protein +12.3008881,PR:000006428,http://purl.obolibrary.org/obo/PR_000006428,DET1 +12.3008881,PR:000006745,http://purl.obolibrary.org/obo/PR_000006745,dual specificity protein phosphatase 19 +12.3008881,PR:000007490,http://purl.obolibrary.org/obo/PR_000007490,fibroblast growth factor 20 +12.3008881,PR:000007844,http://purl.obolibrary.org/obo/PR_000007844,H/ACA ribonucleoprotein complex subunit 1 +12.3008881,PR:000007900,http://purl.obolibrary.org/obo/PR_000007900,chorion-specific transcription factor GCMb +12.3008881,PR:000009075,http://purl.obolibrary.org/obo/PR_000009075,integrator complex subunit 6 +12.3008881,PR:000009235,http://purl.obolibrary.org/obo/PR_000009235,junction plakoglobin +12.3008881,PR:000009886,http://purl.obolibrary.org/obo/PR_000009886,lysyl oxidase homolog 3 +12.3008881,PR:000010324,http://purl.obolibrary.org/obo/PR_000010324,meprin A subunit alpha +12.3008881,PR:000010361,http://purl.obolibrary.org/obo/PR_000010361,microfibrillar-associated protein 2 +12.3008881,PR:000010456,http://purl.obolibrary.org/obo/PR_000010456,melanophilin +12.3008881,PR:000010532,http://purl.obolibrary.org/obo/PR_000010532,multiple PDZ domain protein +12.3008881,PR:000010551,http://purl.obolibrary.org/obo/PR_000010551,protein Mpv17 +12.3008881,PR:000010561,http://purl.obolibrary.org/obo/PR_000010561,C-type mannose receptor 2 +12.3008881,PR:000011521,http://purl.obolibrary.org/obo/PR_000011521,nuclear pore glycoprotein p62 +12.3008881,PR:000011622,http://purl.obolibrary.org/obo/PR_000011622,"S-acyl fatty acid synthase thioesterase, medium chain" +12.3008881,PR:000012437,http://purl.obolibrary.org/obo/PR_000012437,proprotein convertase subtilisin/kexin type 5 +12.3008881,PR:000013120,http://purl.obolibrary.org/obo/PR_000013120,protein phosphatase 1 regulatory subunit 1A +12.3008881,PR:000013735,http://purl.obolibrary.org/obo/PR_000013735,regulatory-associated protein of mTOR +12.3008881,PR:000013835,http://purl.obolibrary.org/obo/PR_000013835,CAAX prenyl protease 2 +12.3008881,PR:000014656,http://purl.obolibrary.org/obo/PR_000014656,septin-4 +12.3008881,PR:000014876,http://purl.obolibrary.org/obo/PR_000014876,single-minded homolog 2 +12.3008881,PR:000015388,http://purl.obolibrary.org/obo/PR_000015388,sorting nexin-9 +12.3008881,PR:000016476,http://purl.obolibrary.org/obo/PR_000016476,tumor necrosis factor alpha-induced protein 8 +12.3008881,PR:000016738,http://purl.obolibrary.org/obo/PR_000016738,tetraspanin-12 +12.3008881,PR:000022518,http://purl.obolibrary.org/obo/PR_000022518,enolase +12.3008881,PR:000022842,http://purl.obolibrary.org/obo/PR_000022842,none +12.3008881,PR:000025584,http://purl.obolibrary.org/obo/PR_000025584,beta-amyloid protein 40 +12.3008881,PR:O14261,http://purl.obolibrary.org/obo/PR_O14261,none +12.3008881,PR:O80476,http://purl.obolibrary.org/obo/PR_O80476,none +12.3008881,PR:O80482,http://purl.obolibrary.org/obo/PR_O80482,none +12.3008881,PR:P0CG63,http://purl.obolibrary.org/obo/PR_P0CG63,none +12.3008881,PR:P32768,http://purl.obolibrary.org/obo/PR_P32768,none +12.3008881,PR:P34331,http://purl.obolibrary.org/obo/PR_P34331,none +12.3008881,PR:P38925,http://purl.obolibrary.org/obo/PR_P38925,none +12.3008881,PR:P42734,http://purl.obolibrary.org/obo/PR_P42734,none +12.3008881,PR:P54657,http://purl.obolibrary.org/obo/PR_P54657,none +12.3008881,PR:Q09926,http://purl.obolibrary.org/obo/PR_Q09926,none +12.3008881,PR:Q8LF21,http://purl.obolibrary.org/obo/PR_Q8LF21,none +12.3008881,PR:Q9EZ08,http://purl.obolibrary.org/obo/PR_Q9EZ08,none +12.3008881,PR:Q9LR30,http://purl.obolibrary.org/obo/PR_Q9LR30,none +12.3008881,PR:Q9M9G6,http://purl.obolibrary.org/obo/PR_Q9M9G6,none +12.3008881,PR:Q9S7Z3,http://purl.obolibrary.org/obo/PR_Q9S7Z3,none +12.3008881,SO:0001760,http://purl.obolibrary.org/obo/SO_0001760,non_processed_pseudogene +12.3008881,SO:0001912,http://purl.obolibrary.org/obo/SO_0001912,copy_number_decrease +12.3008881,UBERON:0001505,http://purl.obolibrary.org/obo/UBERON_0001505,coracobrachialis muscle +12.3008881,UBERON:0004360,http://purl.obolibrary.org/obo/UBERON_0004360,cauda epididymis +12.3008881,UBERON:0006679,http://purl.obolibrary.org/obo/UBERON_0006679,carina of trachea +12.3008881,UBERON:0006922,http://purl.obolibrary.org/obo/UBERON_0006922,cervix squamous epithelium +12.3008881,UBERON:0008975,http://purl.obolibrary.org/obo/UBERON_0008975,oviduct shell gland +12.3008881,UBERON:0012187,http://purl.obolibrary.org/obo/UBERON_0012187,frontal artery +12.3008881,UBERON:0012306,http://purl.obolibrary.org/obo/UBERON_0012306,lateral cervical lymph node +12.3008881,UBERON:0018348,http://purl.obolibrary.org/obo/UBERON_0018348,petrosal bone +12.3104576,CHEBI:17522,http://purl.obolibrary.org/obo/CHEBI_17522,alditol +12.3104576,CHEBI:33552,http://purl.obolibrary.org/obo/CHEBI_33552,sulfonic acid derivative +12.3104576,CHEBI:35205,http://purl.obolibrary.org/obo/CHEBI_35205,chemical tracer +12.3104576,CHEBI:38068,http://purl.obolibrary.org/obo/CHEBI_38068,antimalarial +12.3104576,CHEBI:51151,http://purl.obolibrary.org/obo/CHEBI_51151,dipolar compound +12.3104576,CHEBI:63794,http://purl.obolibrary.org/obo/CHEBI_63794,retinoid X receptor agonist +12.3104576,CL:0000198,http://purl.obolibrary.org/obo/CL_0000198,pain receptor cell +12.3104576,DRUGBANK:DB00805,http://purl.obolibrary.org/obo/DRUGBANK_DB00805,none +12.3104576,DRUGBANK:DB01425,http://purl.obolibrary.org/obo/DRUGBANK_DB01425,none +12.3104576,DRUGBANK:DB01650,http://purl.obolibrary.org/obo/DRUGBANK_DB01650,none +12.3104576,DRUGBANK:DB03381,http://purl.obolibrary.org/obo/DRUGBANK_DB03381,none +12.3104576,DRUGBANK:DB04537,http://purl.obolibrary.org/obo/DRUGBANK_DB04537,none +12.3104576,DRUGBANK:DB05087,http://purl.obolibrary.org/obo/DRUGBANK_DB05087,none +12.3104576,DRUGBANK:DB05540,http://purl.obolibrary.org/obo/DRUGBANK_DB05540,none +12.3104576,DRUGBANK:DB06311,http://purl.obolibrary.org/obo/DRUGBANK_DB06311,none +12.3104576,DRUGBANK:DB07610,http://purl.obolibrary.org/obo/DRUGBANK_DB07610,none +12.3104576,DRUGBANK:DB11362,http://purl.obolibrary.org/obo/DRUGBANK_DB11362,none +12.3104576,DRUGBANK:DB11525,http://purl.obolibrary.org/obo/DRUGBANK_DB11525,none +12.3104576,DRUGBANK:DB12406,http://purl.obolibrary.org/obo/DRUGBANK_DB12406,none +12.3104576,DRUGBANK:DB13158,http://purl.obolibrary.org/obo/DRUGBANK_DB13158,none +12.3104576,DRUGBANK:DB13550,http://purl.obolibrary.org/obo/DRUGBANK_DB13550,none +12.3104576,DRUGBANK:DB13832,http://purl.obolibrary.org/obo/DRUGBANK_DB13832,none +12.3104576,DRUGBANK:DB13855,http://purl.obolibrary.org/obo/DRUGBANK_DB13855,none +12.3104576,GO:0004445,http://purl.obolibrary.org/obo/GO_0004445,inositol-polyphosphate 5-phosphatase activity +12.3104576,GO:0010717,http://purl.obolibrary.org/obo/GO_0010717,regulation of epithelial to mesenchymal transition +12.3104576,GO:0032047,http://purl.obolibrary.org/obo/GO_0032047,mitosome +12.3104576,GO:0035328,http://purl.obolibrary.org/obo/GO_0035328,transcriptionally silent chromatin +12.3104576,GO:0044342,http://purl.obolibrary.org/obo/GO_0044342,type B pancreatic cell proliferation +12.3104576,GO:0046415,http://purl.obolibrary.org/obo/GO_0046415,urate metabolic process +12.3104576,GO:0050694,http://purl.obolibrary.org/obo/GO_0050694,galactose 3-O-sulfotransferase activity +12.3104576,GO:0055074,http://purl.obolibrary.org/obo/GO_0055074,calcium ion homeostasis +12.3104576,GO:0055090,http://purl.obolibrary.org/obo/GO_0055090,acylglycerol homeostasis +12.3104576,GO:0060623,http://purl.obolibrary.org/obo/GO_0060623,regulation of chromosome condensation +12.3104576,GO:0070328,http://purl.obolibrary.org/obo/GO_0070328,triglyceride homeostasis +12.3104576,GO:0097061,http://purl.obolibrary.org/obo/GO_0097061,dendritic spine organization +12.3104576,GO:0097336,http://purl.obolibrary.org/obo/GO_0097336,response to risperidone +12.3104576,GO:0097550,http://purl.obolibrary.org/obo/GO_0097550,transcription preinitiation complex +12.3104576,GO:0099173,http://purl.obolibrary.org/obo/GO_0099173,postsynapse organization +12.3104576,GO:0106027,http://purl.obolibrary.org/obo/GO_0106027,neuron projection organization +12.3104576,GO:1900193,http://purl.obolibrary.org/obo/GO_1900193,regulation of oocyte maturation +12.3104576,GO:1900747,http://purl.obolibrary.org/obo/GO_1900747,negative regulation of vascular endothelial growth factor signaling pathway +12.3104576,GO:1902548,http://purl.obolibrary.org/obo/GO_1902548,negative regulation of cellular response to vascular endothelial growth factor stimulus +12.3104576,GO:1990020,http://purl.obolibrary.org/obo/GO_1990020,recurrent axon collateral +12.3104576,GO:2000279,http://purl.obolibrary.org/obo/GO_2000279,negative regulation of DNA biosynthetic process +12.3104576,MONDO:0001940,http://purl.obolibrary.org/obo/MONDO_0001940,pleuropneumonia +12.3104576,MONDO:0002483,http://purl.obolibrary.org/obo/MONDO_0002483,breast myoepithelial tumor +12.3104576,MONDO:0002871,http://purl.obolibrary.org/obo/MONDO_0002871,testicular trophoblastic tumor +12.3104576,MONDO:0003331,http://purl.obolibrary.org/obo/MONDO_0003331,ovarian monodermal teratoma +12.3104576,MONDO:0005424,http://purl.obolibrary.org/obo/MONDO_0005424,elephantiasis +12.3104576,MONDO:0005671,http://purl.obolibrary.org/obo/MONDO_0005671,Blastocystis infectious disease +12.3104576,MONDO:0007293,http://purl.obolibrary.org/obo/MONDO_0007293,leukocyte adhesion deficiency 1 +12.3104576,MONDO:0018826,http://purl.obolibrary.org/obo/MONDO_0018826,Lewis-Sumner syndrome +12.3104576,MONDO:0019696,http://purl.obolibrary.org/obo/MONDO_0019696,acromesomelic dysplasia +12.3104576,MONDO:0100007,http://purl.obolibrary.org/obo/MONDO_0100007,chronic inflammatory demyelinating polyneuropathy +12.3104576,NCBITaxon:11885,http://purl.obolibrary.org/obo/NCBITaxon_11885,none +12.3104576,NCBITaxon:11946,http://purl.obolibrary.org/obo/NCBITaxon_11946,none +12.3104576,NCBITaxon:1386,http://purl.obolibrary.org/obo/NCBITaxon_1386,Bacillus +12.3104576,NCBITaxon:200795,http://purl.obolibrary.org/obo/NCBITaxon_200795,none +12.3104576,NCBITaxon:204428,http://purl.obolibrary.org/obo/NCBITaxon_204428,Chlamydiae +12.3104576,NCBITaxon:39686,http://purl.obolibrary.org/obo/NCBITaxon_39686,none +12.3104576,NCBITaxon:7020,http://purl.obolibrary.org/obo/NCBITaxon_7020,none +12.3104576,PR:000001916,http://purl.obolibrary.org/obo/PR_000001916,potassium channel subfamily T +12.3104576,PR:000003532,http://purl.obolibrary.org/obo/PR_000003532,"alpha-aminoadipic semialdehyde synthase, mitochondrial" +12.3104576,PR:000005798,http://purl.obolibrary.org/obo/PR_000005798,carboxypeptidase A4 +12.3104576,PR:000006619,http://purl.obolibrary.org/obo/PR_000006619,dedicator of cytokinesis protein 2 +12.3104576,PR:000007544,http://purl.obolibrary.org/obo/PR_000007544,peptidyl-prolyl cis-trans isomerase FKBP8 +12.3104576,PR:000007875,http://purl.obolibrary.org/obo/PR_000007875,guanylate-binding protein 2 +12.3104576,PR:000008853,http://purl.obolibrary.org/obo/PR_000008853,hypoxia up-regulated protein 1 +12.3104576,PR:000008892,http://purl.obolibrary.org/obo/PR_000008892,isopentenyl-diphosphate Delta-isomerase 1 +12.3104576,PR:000009252,http://purl.obolibrary.org/obo/PR_000009252,voltage-gated potassium channel subunit beta-2 +12.3104576,PR:000009349,http://purl.obolibrary.org/obo/PR_000009349,kinesin light chain 1 +12.3104576,PR:000009411,http://purl.obolibrary.org/obo/PR_000009411,kallikrein-14 +12.3104576,PR:000009781,http://purl.obolibrary.org/obo/PR_000009781,lengsin +12.3104576,PR:000010300,http://purl.obolibrary.org/obo/PR_000010300,mediator of RNA polymerase II transcription subunit 28 +12.3104576,PR:000011473,http://purl.obolibrary.org/obo/PR_000011473,NUAK family SNF1-like kinase 1 +12.3104576,PR:000012552,http://purl.obolibrary.org/obo/PR_000012552,pescadillo +12.3104576,PR:000012738,http://purl.obolibrary.org/obo/PR_000012738,pin2-interacting protein X1 +12.3104576,PR:000013172,http://purl.obolibrary.org/obo/PR_000013172,basic salivary proline-rich protein 1 +12.3104576,PR:000013484,http://purl.obolibrary.org/obo/PR_000013484,"peptidyl-tRNA hydrolase 2, mitochondrial" +12.3104576,PR:000013493,http://purl.obolibrary.org/obo/PR_000013493,pumilio homolog 2 +12.3104576,PR:000014592,http://purl.obolibrary.org/obo/PR_000014592,protein transport protein Sec24D +12.3104576,PR:000014819,http://purl.obolibrary.org/obo/PR_000014819,SH3 domain-binding protein 2 +12.3104576,PR:000016639,http://purl.obolibrary.org/obo/PR_000016639,tribbles homolog 2 +12.3104576,PR:000016996,http://purl.obolibrary.org/obo/PR_000016996,ubiquitin conjugation factor E4 B +12.3104576,PR:000022266,http://purl.obolibrary.org/obo/PR_000022266,none +12.3104576,PR:000023439,http://purl.obolibrary.org/obo/PR_000023439,none +12.3104576,PR:000024104,http://purl.obolibrary.org/obo/PR_000024104,none +12.3104576,PR:000034317,http://purl.obolibrary.org/obo/PR_000034317,none +12.3104576,PR:000044650,http://purl.obolibrary.org/obo/PR_000044650,sodium-activated potassium channel protein +12.3104576,PR:O22287,http://purl.obolibrary.org/obo/PR_O22287,none +12.3104576,PR:O49607,http://purl.obolibrary.org/obo/PR_O49607,none +12.3104576,PR:P07267,http://purl.obolibrary.org/obo/PR_P07267,none +12.3104576,PR:P16550,http://purl.obolibrary.org/obo/PR_P16550,none +12.3104576,PR:P39742,http://purl.obolibrary.org/obo/PR_P39742,none +12.3104576,PR:P46892,http://purl.obolibrary.org/obo/PR_P46892,none +12.3104576,PR:P48565,http://purl.obolibrary.org/obo/PR_P48565,none +12.3104576,PR:P51807,http://purl.obolibrary.org/obo/PR_P51807,none +12.3104576,PR:Q09702,http://purl.obolibrary.org/obo/PR_Q09702,none +12.3104576,PR:Q38832,http://purl.obolibrary.org/obo/PR_Q38832,none +12.3104576,PR:Q66GQ6,http://purl.obolibrary.org/obo/PR_Q66GQ6,none +12.3104576,PR:Q99N50,http://purl.obolibrary.org/obo/PR_Q99N50,none +12.3104576,PR:Q9FYL2,http://purl.obolibrary.org/obo/PR_Q9FYL2,none +12.3104576,PR:Q9ZWC5,http://purl.obolibrary.org/obo/PR_Q9ZWC5,none +12.3104576,SO:0000663,http://purl.obolibrary.org/obo/SO_0000663,tRNA_encoding +12.3104576,SO:0001541,http://purl.obolibrary.org/obo/SO_0001541,decreased_transcript_level_variant +12.3104576,UBERON:0001093,http://purl.obolibrary.org/obo/UBERON_0001093,vertebral bone 2 +12.3104576,UBERON:0001797,http://purl.obolibrary.org/obo/UBERON_0001797,vitreous humor +12.3104576,UBERON:0002065,http://purl.obolibrary.org/obo/UBERON_0002065,posterior cardinal vein +12.3104576,UBERON:0004239,http://purl.obolibrary.org/obo/UBERON_0004239,small intestine smooth muscle +12.3104576,UBERON:0005212,http://purl.obolibrary.org/obo/UBERON_0005212,Leydig cell region of testis +12.3104576,UBERON:0015871,http://purl.obolibrary.org/obo/UBERON_0015871,facial lymph node +12.3104576,UBERON:3010602,http://purl.obolibrary.org/obo/UBERON_3010602,granular gland +12.3201195,CHEBI:36009,http://purl.obolibrary.org/obo/CHEBI_36009,omega-6 fatty acid +12.3201195,CHEBI:38702,http://purl.obolibrary.org/obo/CHEBI_38702,inorganic sodium salt +12.3201195,CHEBI:68472,http://purl.obolibrary.org/obo/CHEBI_68472,pyrimidine deoxyribonucleoside +12.3201195,CL:0000523,http://purl.obolibrary.org/obo/CL_0000523,mononuclear cytotrophoblast cell +12.3201195,CL:0000823,http://purl.obolibrary.org/obo/CL_0000823,immature natural killer cell +12.3201195,CL:0000868,http://purl.obolibrary.org/obo/CL_0000868,lymph node macrophage +12.3201195,CL:0001082,http://purl.obolibrary.org/obo/CL_0001082,immature innate lymphoid cell +12.3201195,CL:0002364,http://purl.obolibrary.org/obo/CL_0002364,cortical thymic epithelial cell +12.3201195,DRUGBANK:DB01856,http://purl.obolibrary.org/obo/DRUGBANK_DB01856,none +12.3201195,DRUGBANK:DB03314,http://purl.obolibrary.org/obo/DRUGBANK_DB03314,none +12.3201195,DRUGBANK:DB03695,http://purl.obolibrary.org/obo/DRUGBANK_DB03695,none +12.3201195,DRUGBANK:DB04655,http://purl.obolibrary.org/obo/DRUGBANK_DB04655,none +12.3201195,DRUGBANK:DB05351,http://purl.obolibrary.org/obo/DRUGBANK_DB05351,none +12.3201195,DRUGBANK:DB06748,http://purl.obolibrary.org/obo/DRUGBANK_DB06748,none +12.3201195,DRUGBANK:DB11620,http://purl.obolibrary.org/obo/DRUGBANK_DB11620,none +12.3201195,DRUGBANK:DB12779,http://purl.obolibrary.org/obo/DRUGBANK_DB12779,none +12.3201195,DRUGBANK:DB12967,http://purl.obolibrary.org/obo/DRUGBANK_DB12967,none +12.3201195,DRUGBANK:DB14583,http://purl.obolibrary.org/obo/DRUGBANK_DB14583,none +12.3201195,DRUGBANK:DB14820,http://purl.obolibrary.org/obo/DRUGBANK_DB14820,none +12.3201195,DRUGBANK:DB14938,http://purl.obolibrary.org/obo/DRUGBANK_DB14938,none +12.3201195,DRUGBANK:DB15879,http://purl.obolibrary.org/obo/DRUGBANK_DB15879,none +12.3201195,GO:0004046,http://purl.obolibrary.org/obo/GO_0004046,aminoacylase activity +12.3201195,GO:0004342,http://purl.obolibrary.org/obo/GO_0004342,glucosamine-6-phosphate deaminase activity +12.3201195,GO:0004753,http://purl.obolibrary.org/obo/GO_0004753,saccharopine dehydrogenase activity +12.3201195,GO:0016869,http://purl.obolibrary.org/obo/GO_0016869,"intramolecular transferase activity, transferring amino groups" +12.3201195,GO:0030488,http://purl.obolibrary.org/obo/GO_0030488,tRNA methylation +12.3201195,GO:0032330,http://purl.obolibrary.org/obo/GO_0032330,regulation of chondrocyte differentiation +12.3201195,GO:0033781,http://purl.obolibrary.org/obo/GO_0033781,cholesterol 24-hydroxylase activity +12.3201195,GO:0034021,http://purl.obolibrary.org/obo/GO_0034021,response to silicon dioxide +12.3201195,GO:0034201,http://purl.obolibrary.org/obo/GO_0034201,response to oleic acid +12.3201195,GO:0045766,http://purl.obolibrary.org/obo/GO_0045766,positive regulation of angiogenesis +12.3201195,GO:0046858,http://purl.obolibrary.org/obo/GO_0046858,chlorosome +12.3201195,GO:0050783,http://purl.obolibrary.org/obo/GO_0050783,cocaine metabolic process +12.3201195,GO:0051147,http://purl.obolibrary.org/obo/GO_0051147,regulation of muscle cell differentiation +12.3201195,GO:0051568,http://purl.obolibrary.org/obo/GO_0051568,histone H3-K4 methylation +12.3201195,GO:0060295,http://purl.obolibrary.org/obo/GO_0060295,regulation of cilium movement involved in cell motility +12.3201195,GO:0060997,http://purl.obolibrary.org/obo/GO_0060997,dendritic spine morphogenesis +12.3201195,GO:0071975,http://purl.obolibrary.org/obo/GO_0071975,cell swimming +12.3201195,GO:0072679,http://purl.obolibrary.org/obo/GO_0072679,thymocyte migration +12.3201195,GO:1901317,http://purl.obolibrary.org/obo/GO_1901317,regulation of flagellated sperm motility +12.3201195,GO:1902019,http://purl.obolibrary.org/obo/GO_1902019,regulation of cilium-dependent cell motility +12.3201195,GO:1990030,http://purl.obolibrary.org/obo/GO_1990030,pericellular basket +12.3201195,HP:0007313,http://purl.obolibrary.org/obo/HP_0007313,Cerebral degeneration +12.3201195,HP:0045014,http://purl.obolibrary.org/obo/HP_0045014,Hypolipidemia +12.3201195,MONDO:0000250,http://purl.obolibrary.org/obo/MONDO_0000250,osmotic diarrheal disease +12.3201195,MONDO:0001626,http://purl.obolibrary.org/obo/MONDO_0001626,traumatic glaucoma +12.3201195,MONDO:0002066,http://purl.obolibrary.org/obo/MONDO_0002066,breast adenomyoepithelioma +12.3201195,MONDO:0003200,http://purl.obolibrary.org/obo/MONDO_0003200,urethra adenocarcinoma +12.3201195,MONDO:0003508,http://purl.obolibrary.org/obo/MONDO_0003508,choriocarcinoma of testis +12.3201195,MONDO:0010570,http://purl.obolibrary.org/obo/MONDO_0010570,craniofrontonasal syndrome +12.3201195,MONDO:0011539,http://purl.obolibrary.org/obo/MONDO_0011539,nemaline myopathy 5 +12.3201195,MONDO:0013199,http://purl.obolibrary.org/obo/MONDO_0013199,tuberous sclerosis 2 +12.3201195,MONDO:0015792,http://purl.obolibrary.org/obo/MONDO_0015792,transient congenital hypothyroidism +12.3201195,MONDO:0017302,http://purl.obolibrary.org/obo/MONDO_0017302,qualitative or quantitative defects of troponin +12.3201195,MONDO:0017429,http://purl.obolibrary.org/obo/MONDO_0017429,joint formation defects +12.3201195,MONDO:0019536,http://purl.obolibrary.org/obo/MONDO_0019536,typical hemolytic-uremic syndrome +12.3201195,MONDO:0019859,http://purl.obolibrary.org/obo/MONDO_0019859,congenital thyroid malformation without hypothyroidism +12.3201195,MONDO:0043452,http://purl.obolibrary.org/obo/MONDO_0043452,"chromosome 8, trisomy" +12.3201195,NCBITaxon:105389,http://purl.obolibrary.org/obo/NCBITaxon_105389,Sedentaria +12.3201195,NCBITaxon:11049,http://purl.obolibrary.org/obo/NCBITaxon_11049,none +12.3201195,NCBITaxon:11569,http://purl.obolibrary.org/obo/NCBITaxon_11569,none +12.3201195,NCBITaxon:173680,http://purl.obolibrary.org/obo/NCBITaxon_173680,none +12.3201195,NCBITaxon:1965066,http://purl.obolibrary.org/obo/NCBITaxon_1965066,none +12.3201195,NCBITaxon:236659,http://purl.obolibrary.org/obo/NCBITaxon_236659,none +12.3201195,NCBITaxon:2499674,http://purl.obolibrary.org/obo/NCBITaxon_2499674,none +12.3201195,NCBITaxon:2499679,http://purl.obolibrary.org/obo/NCBITaxon_2499679,none +12.3201195,NCBITaxon:2499680,http://purl.obolibrary.org/obo/NCBITaxon_2499680,none +12.3201195,NCBITaxon:28883,http://purl.obolibrary.org/obo/NCBITaxon_28883,none +12.3201195,NCBITaxon:308906,http://purl.obolibrary.org/obo/NCBITaxon_308906,none +12.3201195,NCBITaxon:3725,http://purl.obolibrary.org/obo/NCBITaxon_3725,none +12.3201195,NCBITaxon:626,http://purl.obolibrary.org/obo/NCBITaxon_626,none +12.3201195,PR:000001859,http://purl.obolibrary.org/obo/PR_000001859,immunoglobulin lambda-like polypeptide 1 +12.3201195,PR:000003209,http://purl.obolibrary.org/obo/PR_000003209,serine/threonine-protein phosphatase PP1-alpha catalytic subunit +12.3201195,PR:000003662,http://purl.obolibrary.org/obo/PR_000003662,long-chain-fatty-acid--CoA ligase 5 +12.3201195,PR:000003703,http://purl.obolibrary.org/obo/PR_000003703,aminoacylase-1 +12.3201195,PR:000003756,http://purl.obolibrary.org/obo/PR_000003756,adenylate cyclase type 5 +12.3201195,PR:000003988,http://purl.obolibrary.org/obo/PR_000003988,"amelogenin, X isoform" +12.3201195,PR:000004501,http://purl.obolibrary.org/obo/PR_000004501,attractin +12.3201195,PR:000006062,http://purl.obolibrary.org/obo/PR_000006062,coxsackievirus and adenovirus receptor +12.3201195,PR:000006137,http://purl.obolibrary.org/obo/PR_000006137,cytochrome P450 4B1 +12.3201195,PR:000006153,http://purl.obolibrary.org/obo/PR_000006153,cytohesin-1 +12.3201195,PR:000006571,http://purl.obolibrary.org/obo/PR_000006571,DnaJ homolog subfamily A member 2 +12.3201195,PR:000006918,http://purl.obolibrary.org/obo/PR_000006918,ephrin-A3 +12.3201195,PR:000007353,http://purl.obolibrary.org/obo/PR_000007353,protocadherin Fat 4 +12.3201195,PR:000008728,http://purl.obolibrary.org/obo/PR_000008728,hippocalcin-like protein 1 +12.3201195,PR:000009598,http://purl.obolibrary.org/obo/PR_000009598,kynureninase +12.3201195,PR:000012097,http://purl.obolibrary.org/obo/PR_000012097,oxidation resistance protein 1 +12.3201195,PR:000012245,http://purl.obolibrary.org/obo/PR_000012245,serine/threonine-protein kinase PAK 5 +12.3201195,PR:000012909,http://purl.obolibrary.org/obo/PR_000012909,myelin P2 protein +12.3201195,PR:000013492,http://purl.obolibrary.org/obo/PR_000013492,pumilio homolog 1 +12.3201195,PR:000013760,http://purl.obolibrary.org/obo/PR_000013760,Ras guanyl-releasing protein 3 +12.3201195,PR:000013937,http://purl.obolibrary.org/obo/PR_000013937,Ral guanine nucleotide dissociation stimulator-like 2 +12.3201195,PR:000014500,http://purl.obolibrary.org/obo/PR_000014500,Sec1 family domain-containing protein 1 +12.3201195,PR:000014510,http://purl.obolibrary.org/obo/PR_000014510,mammaglobin-A +12.3201195,PR:000015395,http://purl.obolibrary.org/obo/PR_000015395,suppressor of cytokine signaling 4 +12.3201195,PR:000015634,http://purl.obolibrary.org/obo/PR_000015634,sushi repeat-containing protein SRPX +12.3201195,PR:000022749,http://purl.obolibrary.org/obo/PR_000022749,none +12.3201195,PR:000023328,http://purl.obolibrary.org/obo/PR_000023328,none +12.3201195,PR:000025865,http://purl.obolibrary.org/obo/PR_000025865,bacterial glutaminase +12.3201195,PR:000031350,http://purl.obolibrary.org/obo/PR_000031350,"probable arginine--tRNA ligase, mitochondrial" +12.3201195,PR:F4HTM3,http://purl.obolibrary.org/obo/PR_F4HTM3,none +12.3201195,PR:Q07998,http://purl.obolibrary.org/obo/PR_Q07998,none +12.3201195,PR:Q54V07,http://purl.obolibrary.org/obo/PR_Q54V07,none +12.3201195,PR:Q6XL73,http://purl.obolibrary.org/obo/PR_Q6XL73,none +12.3201195,PR:Q9JJL3,http://purl.obolibrary.org/obo/PR_Q9JJL3,none +12.3201195,PR:Q9M2Z8,http://purl.obolibrary.org/obo/PR_Q9M2Z8,none +12.3201195,UBERON:0001930,http://purl.obolibrary.org/obo/UBERON_0001930,paraventricular nucleus of hypothalamus +12.3201195,UBERON:0003829,http://purl.obolibrary.org/obo/UBERON_0003829,urethra muscle tissue +12.3201195,UBERON:0008836,http://purl.obolibrary.org/obo/UBERON_0008836,liver bud +12.3201195,UBERON:0009114,http://purl.obolibrary.org/obo/UBERON_0009114,cervical thymus +12.3201195,UBERON:0014835,http://purl.obolibrary.org/obo/UBERON_0014835,serratus muscle +12.3201195,UBERON:0018373,http://purl.obolibrary.org/obo/UBERON_0018373,vidian canal +12.3201195,UBERON:0018398,http://purl.obolibrary.org/obo/UBERON_0018398,superior alveolar nerve +12.3201195,UBERON:0025903,http://purl.obolibrary.org/obo/UBERON_0025903,principal sulcus +12.3201195,UBERON:2005010,http://purl.obolibrary.org/obo/UBERON_2005010,mid cerebral vein +12.3298757,CHEBI:139590,http://purl.obolibrary.org/obo/CHEBI_139590,primary alpha-hydroxy ketone +12.3298757,CHEBI:17051,http://purl.obolibrary.org/obo/CHEBI_17051,fluoride +12.3298757,CHEBI:36892,http://purl.obolibrary.org/obo/CHEBI_36892,elemental fluorine +12.3298757,CHEBI:36895,http://purl.obolibrary.org/obo/CHEBI_36895,monoatomic fluorine +12.3298757,CHEBI:51134,http://purl.obolibrary.org/obo/CHEBI_51134,acrylic macromolecule +12.3298757,DRUGBANK:DB00221,http://purl.obolibrary.org/obo/DRUGBANK_DB00221,none +12.3298757,DRUGBANK:DB02015,http://purl.obolibrary.org/obo/DRUGBANK_DB02015,none +12.3298757,DRUGBANK:DB02021,http://purl.obolibrary.org/obo/DRUGBANK_DB02021,none +12.3298757,DRUGBANK:DB05695,http://purl.obolibrary.org/obo/DRUGBANK_DB05695,none +12.3298757,DRUGBANK:DB08948,http://purl.obolibrary.org/obo/DRUGBANK_DB08948,none +12.3298757,DRUGBANK:DB09062,http://purl.obolibrary.org/obo/DRUGBANK_DB09062,none +12.3298757,DRUGBANK:DB09087,http://purl.obolibrary.org/obo/DRUGBANK_DB09087,none +12.3298757,DRUGBANK:DB09259,http://purl.obolibrary.org/obo/DRUGBANK_DB09259,none +12.3298757,DRUGBANK:DB09263,http://purl.obolibrary.org/obo/DRUGBANK_DB09263,none +12.3298757,DRUGBANK:DB13167,http://purl.obolibrary.org/obo/DRUGBANK_DB13167,none +12.3298757,DRUGBANK:DB13801,http://purl.obolibrary.org/obo/DRUGBANK_DB13801,none +12.3298757,DRUGBANK:DB14259,http://purl.obolibrary.org/obo/DRUGBANK_DB14259,none +12.3298757,DRUGBANK:DB14295,http://purl.obolibrary.org/obo/DRUGBANK_DB14295,none +12.3298757,DRUGBANK:DB14734,http://purl.obolibrary.org/obo/DRUGBANK_DB14734,none +12.3298757,DRUGBANK:DB15237,http://purl.obolibrary.org/obo/DRUGBANK_DB15237,none +12.3298757,DRUGBANK:DB15919,http://purl.obolibrary.org/obo/DRUGBANK_DB15919,none +12.3298757,DRUGBANK:DB15924,http://purl.obolibrary.org/obo/DRUGBANK_DB15924,none +12.3298757,GO:0003835,http://purl.obolibrary.org/obo/GO_0003835,"beta-galactoside alpha-2,6-sialyltransferase activity" +12.3298757,GO:0004820,http://purl.obolibrary.org/obo/GO_0004820,glycine-tRNA ligase activity +12.3298757,GO:0004958,http://purl.obolibrary.org/obo/GO_0004958,prostaglandin F receptor activity +12.3298757,GO:0005225,http://purl.obolibrary.org/obo/GO_0005225,volume-sensitive anion channel activity +12.3298757,GO:0009704,http://purl.obolibrary.org/obo/GO_0009704,de-etiolation +12.3298757,GO:0015691,http://purl.obolibrary.org/obo/GO_0015691,cadmium ion transport +12.3298757,GO:0015823,http://purl.obolibrary.org/obo/GO_0015823,phenylalanine transport +12.3298757,GO:0019807,http://purl.obolibrary.org/obo/GO_0019807,aspartoacylase activity +12.3298757,GO:0030407,http://purl.obolibrary.org/obo/GO_0030407,none +12.3298757,GO:0031149,http://purl.obolibrary.org/obo/GO_0031149,sorocarp stalk cell differentiation +12.3298757,GO:0031218,http://purl.obolibrary.org/obo/GO_0031218,"arabinogalactan endo-1,4-beta-galactosidase activity" +12.3298757,GO:0031261,http://purl.obolibrary.org/obo/GO_0031261,DNA replication preinitiation complex +12.3298757,GO:0033862,http://purl.obolibrary.org/obo/GO_0033862,UMP kinase activity +12.3298757,GO:0043504,http://purl.obolibrary.org/obo/GO_0043504,mitochondrial DNA repair +12.3298757,GO:0044539,http://purl.obolibrary.org/obo/GO_0044539,long-chain fatty acid import into cell +12.3298757,GO:0045577,http://purl.obolibrary.org/obo/GO_0045577,regulation of B cell differentiation +12.3298757,GO:0046691,http://purl.obolibrary.org/obo/GO_0046691,intracellular canaliculus +12.3298757,GO:0048149,http://purl.obolibrary.org/obo/GO_0048149,behavioral response to ethanol +12.3298757,GO:0060491,http://purl.obolibrary.org/obo/GO_0060491,regulation of cell projection assembly +12.3298757,GO:0090131,http://purl.obolibrary.org/obo/GO_0090131,mesenchyme migration +12.3298757,GO:0140354,http://purl.obolibrary.org/obo/GO_0140354,lipid import into cell +12.3298757,MONDO:0000327,http://purl.obolibrary.org/obo/MONDO_0000327,Buruli ulcer disease +12.3298757,MONDO:0001998,http://purl.obolibrary.org/obo/MONDO_0001998,Foster-Kennedy syndrome +12.3298757,MONDO:0002212,http://purl.obolibrary.org/obo/MONDO_0002212,pneumonic tularemia +12.3298757,MONDO:0002359,http://purl.obolibrary.org/obo/MONDO_0002359,periosteal chondroma +12.3298757,MONDO:0002754,http://purl.obolibrary.org/obo/MONDO_0002754,extramedullary plasmacytoma +12.3298757,MONDO:0003493,http://purl.obolibrary.org/obo/MONDO_0003493,thymus squamous cell carcinoma +12.3298757,MONDO:0003954,http://purl.obolibrary.org/obo/MONDO_0003954,angiokeratoma of Fordyce +12.3298757,MONDO:0004189,http://purl.obolibrary.org/obo/MONDO_0004189,esophageal tuberculosis +12.3298757,MONDO:0007068,http://purl.obolibrary.org/obo/MONDO_0007068,adenylosuccinate lyase deficiency +12.3298757,MONDO:0009458,http://purl.obolibrary.org/obo/MONDO_0009458,Schimke immuno-osseous dysplasia +12.3298757,MONDO:0015877,http://purl.obolibrary.org/obo/MONDO_0015877,malformative syndrome with dentinogenesis imperfecta +12.3298757,MONDO:0016576,http://purl.obolibrary.org/obo/MONDO_0016576,split hand-foot malformation +12.3298757,MONDO:0016580,http://purl.obolibrary.org/obo/MONDO_0016580,congenital pulmonary airway malformation +12.3298757,MONDO:0017734,http://purl.obolibrary.org/obo/MONDO_0017734,sialidosis +12.3298757,MONDO:0017961,http://purl.obolibrary.org/obo/MONDO_0017961,"46,XX disorder of gonadal development" +12.3298757,MONDO:0018466,http://purl.obolibrary.org/obo/MONDO_0018466,hereditary late onset Parkinson disease +12.3298757,MONDO:0019861,http://purl.obolibrary.org/obo/MONDO_0019861,thyroid hypoplasia +12.3298757,MONDO:0022435,http://purl.obolibrary.org/obo/MONDO_0022435,Mauriac syndrome +12.3298757,MONDO:0045063,http://purl.obolibrary.org/obo/MONDO_0045063,major salivary gland adenoid cystic carcinoma +12.3298757,NCBITaxon:12239,http://purl.obolibrary.org/obo/NCBITaxon_12239,none +12.3298757,NCBITaxon:146500,http://purl.obolibrary.org/obo/NCBITaxon_146500,none +12.3298757,NCBITaxon:196403,http://purl.obolibrary.org/obo/NCBITaxon_196403,none +12.3298757,PR:000001027,http://purl.obolibrary.org/obo/PR_000001027,CD247 +12.3298757,PR:000001906,http://purl.obolibrary.org/obo/PR_000001906,platelet glycoprotein IX +12.3298757,PR:000003957,http://purl.obolibrary.org/obo/PR_000003957,polyunsaturated fatty acid lipoxygenase ALOX12 +12.3298757,PR:000004210,http://purl.obolibrary.org/obo/PR_000004210,brefeldin A-inhibited guanine nucleotide-exchange protein 2 +12.3298757,PR:000004232,http://purl.obolibrary.org/obo/PR_000004232,Rho GTPase-activating protein 26 +12.3298757,PR:000004284,http://purl.obolibrary.org/obo/PR_000004284,ADP-ribosylation factor-like protein 3 +12.3298757,PR:000004736,http://purl.obolibrary.org/obo/PR_000004736,class A basic helix-loop-helix protein 15 +12.3298757,PR:000005262,http://purl.obolibrary.org/obo/PR_000005262,CDK5 regulatory subunit-associated protein 2 +12.3298757,PR:000005478,http://purl.obolibrary.org/obo/PR_000005478,carbohydrate sulfotransferase 5 +12.3298757,PR:000005671,http://purl.obolibrary.org/obo/PR_000005671,contactin-6 +12.3298757,PR:000006642,http://purl.obolibrary.org/obo/PR_000006642,"histone-lysine N-methyltransferase, H3 lysine-79 specific" +12.3298757,PR:000007004,http://purl.obolibrary.org/obo/PR_000007004,eukaryotic translation initiation factor 5A-2 +12.3298757,PR:000007230,http://purl.obolibrary.org/obo/PR_000007230,transcription factor ETV7 +12.3298757,PR:000008574,http://purl.obolibrary.org/obo/PR_000008574,histone H1.1 +12.3298757,PR:000008980,http://purl.obolibrary.org/obo/PR_000008980,interleukin-12 receptor subunit beta-2 +12.3298757,PR:000009312,http://purl.obolibrary.org/obo/PR_000009312,kinesin-like protein KIF3B +12.3298757,PR:000009997,http://purl.obolibrary.org/obo/PR_000009997,lymphocyte antigen 86 +12.3298757,PR:000010093,http://purl.obolibrary.org/obo/PR_000010093,protein MAL2 +12.3298757,PR:000010380,http://purl.obolibrary.org/obo/PR_000010380,"beta-1,4-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase" +12.3298757,PR:000011013,http://purl.obolibrary.org/obo/PR_000011013,neuroblastoma suppressor of tumorigenicity 1 +12.3298757,PR:000011062,http://purl.obolibrary.org/obo/PR_000011062,protein NDRG4 +12.3298757,PR:000011249,http://purl.obolibrary.org/obo/PR_000011249,homeobox protein Nkx-3.2 +12.3298757,PR:000012080,http://purl.obolibrary.org/obo/PR_000012080,ubiquitin thioesterase OTUB1 +12.3298757,PR:000012656,http://purl.obolibrary.org/obo/PR_000012656,D-3-phosphoglycerate dehydrogenase +12.3298757,PR:000014060,http://purl.obolibrary.org/obo/PR_000014060,ribonuclease T2 +12.3298757,PR:000015226,http://purl.obolibrary.org/obo/PR_000015226,solute carrier organic anion transporter family member 2A1 +12.3298757,PR:000015693,http://purl.obolibrary.org/obo/PR_000015693,suppressor of tumorigenicity 7 protein +12.3298757,PR:000015778,http://purl.obolibrary.org/obo/PR_000015778,striatin +12.3298757,PR:000016225,http://purl.obolibrary.org/obo/PR_000016225,thyrotroph embryonic factor +12.3298757,PR:000016634,http://purl.obolibrary.org/obo/PR_000016634,T cell receptor gamma variable 3 +12.3298757,PR:000016705,http://purl.obolibrary.org/obo/PR_000016705,tRNA 2'-phosphotransferase 1 +12.3298757,PR:000017282,http://purl.obolibrary.org/obo/PR_000017282,voltage-dependent anion-selective channel protein 3 +12.3298757,PR:000017594,http://purl.obolibrary.org/obo/PR_000017594,zinc finger and BTB domain-containing protein 7C +12.3298757,PR:000022088,http://purl.obolibrary.org/obo/PR_000022088,none +12.3298757,PR:000029125,http://purl.obolibrary.org/obo/PR_000029125,MAGUK p55 subfamily member 3 +12.3298757,PR:000029412,http://purl.obolibrary.org/obo/PR_000029412,pre-mRNA-splicing factor ATP-dependent RNA helicase DHX15 +12.3298757,PR:000029583,http://purl.obolibrary.org/obo/PR_000029583,laminin subunit beta-1 +12.3298757,PR:000034304,http://purl.obolibrary.org/obo/PR_000034304,none +12.3298757,PR:000035849,http://purl.obolibrary.org/obo/PR_000035849,histone-lysine N-methyltransferase MECOM +12.3298757,PR:000037073,http://purl.obolibrary.org/obo/PR_000037073,acetylated protein +12.3298757,PR:000044418,http://purl.obolibrary.org/obo/PR_000044418,none +12.3298757,PR:O74560,http://purl.obolibrary.org/obo/PR_O74560,none +12.3298757,PR:P22282,http://purl.obolibrary.org/obo/PR_P22282,none +12.3298757,PR:P25853,http://purl.obolibrary.org/obo/PR_P25853,none +12.3298757,PR:P55229,http://purl.obolibrary.org/obo/PR_P55229,none +12.3298757,PR:P56261,http://purl.obolibrary.org/obo/PR_P56261,none +12.3298757,PR:Q06850,http://purl.obolibrary.org/obo/PR_Q06850,none +12.3298757,PR:Q38845,http://purl.obolibrary.org/obo/PR_Q38845,none +12.3298757,PR:Q5Y4N8,http://purl.obolibrary.org/obo/PR_Q5Y4N8,none +12.3298757,PR:Q61549,http://purl.obolibrary.org/obo/PR_Q61549,none +12.3298757,PR:Q6QLQ5,http://purl.obolibrary.org/obo/PR_Q6QLQ5,none +12.3298757,PR:Q9LJQ9,http://purl.obolibrary.org/obo/PR_Q9LJQ9,none +12.3298757,PR:Q9SIE1,http://purl.obolibrary.org/obo/PR_Q9SIE1,none +12.3298757,SO:0000550,http://purl.obolibrary.org/obo/SO_0000550,aneuploid_chromosome +12.3298757,SO:0000581,http://purl.obolibrary.org/obo/SO_0000581,cap +12.3298757,UBERON:0001314,http://purl.obolibrary.org/obo/UBERON_0001314,obturator artery +12.3298757,UBERON:0004200,http://purl.obolibrary.org/obo/UBERON_0004200,kidney pyramid +12.3298757,UBERON:0005061,http://purl.obolibrary.org/obo/UBERON_0005061,neural groove +12.3298757,UBERON:0006686,http://purl.obolibrary.org/obo/UBERON_0006686,spinal vein +12.3298757,UBERON:0008805,http://purl.obolibrary.org/obo/UBERON_0008805,gingival groove +12.3298757,UBERON:0012066,http://purl.obolibrary.org/obo/UBERON_0012066,lobar bronchus of left lung lower lobe +12.3298757,UBERON:0013128,http://purl.obolibrary.org/obo/UBERON_0013128,bulb of penis +12.3298757,UBERON:0014399,http://purl.obolibrary.org/obo/UBERON_0014399,sinusoidal space +12.3298757,UBERON:2001239,http://purl.obolibrary.org/obo/UBERON_2001239,ceratobranchial 5 bone +12.3298757,UBERON:2001903,http://purl.obolibrary.org/obo/UBERON_2001903,ceratobranchial 5 element +12.339728,CHEBI:24942,http://purl.obolibrary.org/obo/CHEBI_24942,juvenile hormone mimic +12.339728,CHEBI:27369,http://purl.obolibrary.org/obo/CHEBI_27369,zwitterion +12.339728,CHEBI:36315,http://purl.obolibrary.org/obo/CHEBI_36315,glycerophosphoinositol +12.339728,CHEBI:39077,http://purl.obolibrary.org/obo/CHEBI_39077,eosin b +12.339728,CHEBI:52053,http://purl.obolibrary.org/obo/CHEBI_52053,eosin YS dye +12.339728,CHEBI:68617,http://purl.obolibrary.org/obo/CHEBI_68617,eosin b(2-) +12.339728,CL:0001007,http://purl.obolibrary.org/obo/CL_0001007,interstitial dendritic cell +12.339728,DRUGBANK:DB00817,http://purl.obolibrary.org/obo/DRUGBANK_DB00817,none +12.339728,DRUGBANK:DB01130,http://purl.obolibrary.org/obo/DRUGBANK_DB01130,none +12.339728,DRUGBANK:DB01187,http://purl.obolibrary.org/obo/DRUGBANK_DB01187,none +12.339728,DRUGBANK:DB01979,http://purl.obolibrary.org/obo/DRUGBANK_DB01979,none +12.339728,DRUGBANK:DB03790,http://purl.obolibrary.org/obo/DRUGBANK_DB03790,none +12.339728,DRUGBANK:DB04834,http://purl.obolibrary.org/obo/DRUGBANK_DB04834,none +12.339728,DRUGBANK:DB06478,http://purl.obolibrary.org/obo/DRUGBANK_DB06478,none +12.339728,DRUGBANK:DB06751,http://purl.obolibrary.org/obo/DRUGBANK_DB06751,none +12.339728,DRUGBANK:DB06797,http://purl.obolibrary.org/obo/DRUGBANK_DB06797,none +12.339728,DRUGBANK:DB08517,http://purl.obolibrary.org/obo/DRUGBANK_DB08517,none +12.339728,DRUGBANK:DB09013,http://purl.obolibrary.org/obo/DRUGBANK_DB09013,none +12.339728,DRUGBANK:DB11666,http://purl.obolibrary.org/obo/DRUGBANK_DB11666,none +12.339728,DRUGBANK:DB13327,http://purl.obolibrary.org/obo/DRUGBANK_DB13327,none +12.339728,DRUGBANK:DB15743,http://purl.obolibrary.org/obo/DRUGBANK_DB15743,none +12.339728,GO:0004413,http://purl.obolibrary.org/obo/GO_0004413,homoserine kinase activity +12.339728,GO:0004423,http://purl.obolibrary.org/obo/GO_0004423,iduronate-2-sulfatase activity +12.339728,GO:0005795,http://purl.obolibrary.org/obo/GO_0005795,Golgi stack +12.339728,GO:0008192,http://purl.obolibrary.org/obo/GO_0008192,RNA guanylyltransferase activity +12.339728,GO:0009035,http://purl.obolibrary.org/obo/GO_0009035,type I site-specific deoxyribonuclease activity +12.339728,GO:0010921,http://purl.obolibrary.org/obo/GO_0010921,regulation of phosphatase activity +12.339728,GO:0016403,http://purl.obolibrary.org/obo/GO_0016403,dimethylargininase activity +12.339728,GO:0016996,http://purl.obolibrary.org/obo/GO_0016996,"endo-alpha-(2,8)-sialidase activity" +12.339728,GO:0021802,http://purl.obolibrary.org/obo/GO_0021802,somal translocation +12.339728,GO:0042461,http://purl.obolibrary.org/obo/GO_0042461,photoreceptor cell development +12.339728,GO:0042640,http://purl.obolibrary.org/obo/GO_0042640,anagen +12.339728,GO:0043656,http://purl.obolibrary.org/obo/GO_0043656,host intracellular region +12.339728,GO:0045332,http://purl.obolibrary.org/obo/GO_0045332,phospholipid translocation +12.339728,GO:0045454,http://purl.obolibrary.org/obo/GO_0045454,cell redox homeostasis +12.339728,GO:0046132,http://purl.obolibrary.org/obo/GO_0046132,pyrimidine ribonucleoside biosynthetic process +12.339728,GO:0080050,http://purl.obolibrary.org/obo/GO_0080050,regulation of seed development +12.339728,GO:0101031,http://purl.obolibrary.org/obo/GO_0101031,chaperone complex +12.339728,HP:0000035,http://purl.obolibrary.org/obo/HP_0000035,Abnormal testis morphology +12.339728,HP:0008734,http://purl.obolibrary.org/obo/HP_0008734,Decreased testicular size +12.339728,HP:0010468,http://purl.obolibrary.org/obo/HP_0010468,Aplasia/Hypoplasia of the testes +12.339728,HP:0045058,http://purl.obolibrary.org/obo/HP_0045058,Abnormality of the testis size +12.339728,MONDO:0000152,http://purl.obolibrary.org/obo/MONDO_0000152,thiamine-responsive dysfunction syndrome +12.339728,MONDO:0001806,http://purl.obolibrary.org/obo/MONDO_0001806,vaginal squamous tumor +12.339728,MONDO:0003755,http://purl.obolibrary.org/obo/MONDO_0003755,urinary tract non-invasive transitional cell neoplasm +12.339728,MONDO:0006490,http://purl.obolibrary.org/obo/MONDO_0006490,vaginal squamous cell carcinoma +12.339728,MONDO:0006980,http://purl.obolibrary.org/obo/MONDO_0006980,struma ovarii +12.339728,MONDO:0008823,http://purl.obolibrary.org/obo/MONDO_0008823,"arthrogryposis multiplex congenita 2, neurogenic type" +12.339728,MONDO:0009746,http://purl.obolibrary.org/obo/MONDO_0009746,hereditary sensory and autonomic neuropathy type 4 +12.339728,MONDO:0015496,http://purl.obolibrary.org/obo/MONDO_0015496,macroglossia +12.339728,MONDO:0015777,http://purl.obolibrary.org/obo/MONDO_0015777,adult hypothyroidism +12.339728,MONDO:0016553,http://purl.obolibrary.org/obo/MONDO_0016553,isolated congenital hypogonadotropic hypogonadism +12.339728,MONDO:0016706,http://purl.obolibrary.org/obo/MONDO_0016706,chordoid glioma of the third ventricle +12.339728,MONDO:0017578,http://purl.obolibrary.org/obo/MONDO_0017578,disorder of thiamine metabolism and transport +12.339728,MONDO:0018702,http://purl.obolibrary.org/obo/MONDO_0018702,Castleman-Kojima disease +12.339728,MONDO:0021235,http://purl.obolibrary.org/obo/MONDO_0021235,external ear neoplasm +12.339728,MONDO:0021473,http://purl.obolibrary.org/obo/MONDO_0021473,benign neoplasm of epididymis +12.339728,MONDO:0023282,http://purl.obolibrary.org/obo/MONDO_0023282,granulomatous hypophysitis +12.339728,MONDO:0042982,http://purl.obolibrary.org/obo/MONDO_0042982,GATA2 deficiency with susceptibility to MDS/AML +12.339728,NCBITaxon:12196,http://purl.obolibrary.org/obo/NCBITaxon_12196,none +12.339728,NCBITaxon:1678141,http://purl.obolibrary.org/obo/NCBITaxon_1678141,Orthohepevirus +12.339728,NCBITaxon:2731618,http://purl.obolibrary.org/obo/NCBITaxon_2731618,none +12.339728,NCBITaxon:2731619,http://purl.obolibrary.org/obo/NCBITaxon_2731619,none +12.339728,NCBITaxon:64950,http://purl.obolibrary.org/obo/NCBITaxon_64950,none +12.339728,NCBITaxon:8365,http://purl.obolibrary.org/obo/NCBITaxon_8365,none +12.339728,PR:000004065,http://purl.obolibrary.org/obo/PR_000004065,acidic leucine-rich nuclear phosphoprotein 32 family member A +12.339728,PR:000004647,http://purl.obolibrary.org/obo/PR_000004647,brain acid soluble protein 1 +12.339728,PR:000005318,http://purl.obolibrary.org/obo/PR_000005318,cadherin EGF LAG seven-pass G-type receptor 1 +12.339728,PR:000005577,http://purl.obolibrary.org/obo/PR_000005577,chloride intracellular channel protein 4 +12.339728,PR:000005601,http://purl.obolibrary.org/obo/PR_000005601,colipase +12.339728,PR:000007884,http://purl.obolibrary.org/obo/PR_000007884,grancalcin +12.339728,PR:000011341,http://purl.obolibrary.org/obo/PR_000011341,NADPH oxidase activator 1 +12.339728,PR:000012431,http://purl.obolibrary.org/obo/PR_000012431,calmodulin regulator protein PCP4 +12.339728,PR:000012488,http://purl.obolibrary.org/obo/PR_000012488,"high affinity cGMP-specific 3',5'-cyclic phosphodiesterase 9A" +12.339728,PR:000012501,http://purl.obolibrary.org/obo/PR_000012501,protein disulfide-isomerase A6 +12.339728,PR:000012555,http://purl.obolibrary.org/obo/PR_000012555,peroxisomal membrane protein 11A +12.339728,PR:000013240,http://purl.obolibrary.org/obo/PR_000013240,cGMP-dependent protein kinase 2 +12.339728,PR:000013278,http://purl.obolibrary.org/obo/PR_000013278,U4/U6 small nuclear ribonucleoprotein Prp3 +12.339728,PR:000013403,http://purl.obolibrary.org/obo/PR_000013403,paraspeckle component 1 +12.339728,PR:000013594,http://purl.obolibrary.org/obo/PR_000013594,Ras-related protein Rab-21 +12.339728,PR:000013647,http://purl.obolibrary.org/obo/PR_000013647,Rab GTPase-binding effector protein 1 +12.339728,PR:000014462,http://purl.obolibrary.org/obo/PR_000014462,squamous cell carcinoma antigen recognized by T-cells 3 +12.339728,PR:000014637,http://purl.obolibrary.org/obo/PR_000014637,sentrin-specific protease 3 +12.339728,PR:000014642,http://purl.obolibrary.org/obo/PR_000014642,selenoprotein F +12.339728,PR:000014797,http://purl.obolibrary.org/obo/PR_000014797,phosphatidylcholine:ceramide cholinephosphotransferase 2 +12.339728,PR:000014899,http://purl.obolibrary.org/obo/PR_000014899,homeobox protein SIX4 +12.339728,PR:000015495,http://purl.obolibrary.org/obo/PR_000015495,spermatogenesis-associated protein 7 +12.339728,PR:000015562,http://purl.obolibrary.org/obo/PR_000015562,secreted phosphoprotein 24 +12.339728,PR:000022464,http://purl.obolibrary.org/obo/PR_000022464,none +12.339728,PR:000022672,http://purl.obolibrary.org/obo/PR_000022672,none +12.339728,PR:000023611,http://purl.obolibrary.org/obo/PR_000023611,none +12.339728,PR:000029153,http://purl.obolibrary.org/obo/PR_000029153,none +12.339728,PR:000029301,http://purl.obolibrary.org/obo/PR_000029301,bromodomain-containing protein 1 +12.339728,PR:000030227,http://purl.obolibrary.org/obo/PR_000030227,"inactive N-acetyllactosaminide alpha-1,3-galactosyltransferase" +12.339728,PR:000030591,http://purl.obolibrary.org/obo/PR_000030591,structural maintenance of chromosomes flexible hinge domain-containing protein 1 +12.339728,PR:000034225,http://purl.obolibrary.org/obo/PR_000034225,none +12.339728,PR:O65390,http://purl.obolibrary.org/obo/PR_O65390,none +12.339728,PR:O81223,http://purl.obolibrary.org/obo/PR_O81223,none +12.339728,PR:P33085,http://purl.obolibrary.org/obo/PR_P33085,none +12.339728,PR:Q12375,http://purl.obolibrary.org/obo/PR_Q12375,none +12.339728,PR:Q8NDZ4,http://purl.obolibrary.org/obo/PR_Q8NDZ4,divergent protein kinase domain 2A (human) +12.339728,PR:Q93WJ9,http://purl.obolibrary.org/obo/PR_Q93WJ9,none +12.339728,PR:Q99332,http://purl.obolibrary.org/obo/PR_Q99332,none +12.339728,UBERON:0000121,http://purl.obolibrary.org/obo/UBERON_0000121,perineurium +12.339728,UBERON:0000983,http://purl.obolibrary.org/obo/UBERON_0000983,metatarsus region +12.339728,UBERON:0004346,http://purl.obolibrary.org/obo/UBERON_0004346,gubernaculum (male or female) +12.339728,UBERON:0006666,http://purl.obolibrary.org/obo/UBERON_0006666,great cerebral vein +12.339728,UBERON:0009841,http://purl.obolibrary.org/obo/UBERON_0009841,upper rhombic lip +12.339728,UBERON:2000088,http://purl.obolibrary.org/obo/UBERON_2000088,yolk syncytial layer +12.3496783,CHEBI:18245,http://purl.obolibrary.org/obo/CHEBI_18245,carboxylato group +12.3496783,CHEBI:29681,http://purl.obolibrary.org/obo/CHEBI_29681,surfactin +12.3496783,CHEBI:38870,http://purl.obolibrary.org/obo/CHEBI_38870,inhalation anaesthetic +12.3496783,DRUGBANK:DB00033,http://purl.obolibrary.org/obo/DRUGBANK_DB00033,none +12.3496783,DRUGBANK:DB01441,http://purl.obolibrary.org/obo/DRUGBANK_DB01441,none +12.3496783,DRUGBANK:DB01472,http://purl.obolibrary.org/obo/DRUGBANK_DB01472,none +12.3496783,DRUGBANK:DB01873,http://purl.obolibrary.org/obo/DRUGBANK_DB01873,none +12.3496783,DRUGBANK:DB03111,http://purl.obolibrary.org/obo/DRUGBANK_DB03111,none +12.3496783,DRUGBANK:DB05871,http://purl.obolibrary.org/obo/DRUGBANK_DB05871,none +12.3496783,DRUGBANK:DB08943,http://purl.obolibrary.org/obo/DRUGBANK_DB08943,none +12.3496783,DRUGBANK:DB08971,http://purl.obolibrary.org/obo/DRUGBANK_DB08971,none +12.3496783,DRUGBANK:DB11756,http://purl.obolibrary.org/obo/DRUGBANK_DB11756,none +12.3496783,DRUGBANK:DB13233,http://purl.obolibrary.org/obo/DRUGBANK_DB13233,none +12.3496783,DRUGBANK:DB13551,http://purl.obolibrary.org/obo/DRUGBANK_DB13551,none +12.3496783,GO:0005903,http://purl.obolibrary.org/obo/GO_0005903,brush border +12.3496783,GO:0009709,http://purl.obolibrary.org/obo/GO_0009709,terpenoid indole alkaloid biosynthetic process +12.3496783,GO:0044163,http://purl.obolibrary.org/obo/GO_0044163,host cytoskeleton +12.3496783,GO:0046184,http://purl.obolibrary.org/obo/GO_0046184,aldehyde biosynthetic process +12.3496783,GO:0048507,http://purl.obolibrary.org/obo/GO_0048507,meristem development +12.3496783,GO:0052597,http://purl.obolibrary.org/obo/GO_0052597,diamine oxidase activity +12.3496783,GO:0071241,http://purl.obolibrary.org/obo/GO_0071241,cellular response to inorganic substance +12.3496783,GO:0071938,http://purl.obolibrary.org/obo/GO_0071938,vitamin A transport +12.3496783,GO:0090433,http://purl.obolibrary.org/obo/GO_0090433,palmitoyl-CoA ligase activity +12.3496783,GO:0098862,http://purl.obolibrary.org/obo/GO_0098862,cluster of actin-based cell projections +12.3496783,HP:0000157,http://purl.obolibrary.org/obo/HP_0000157,Abnormality of the tongue +12.3496783,HP:0002797,http://purl.obolibrary.org/obo/HP_0002797,Osteolysis +12.3496783,MONDO:0002975,http://purl.obolibrary.org/obo/MONDO_0002975,malignant breast melanoma +12.3496783,MONDO:0003362,http://purl.obolibrary.org/obo/MONDO_0003362,cutaneous leiomyosarcoma +12.3496783,MONDO:0004838,http://purl.obolibrary.org/obo/MONDO_0004838,orthostatic proteinuria +12.3496783,MONDO:0005907,http://purl.obolibrary.org/obo/MONDO_0005907,persian gulf syndrome +12.3496783,MONDO:0006145,http://purl.obolibrary.org/obo/MONDO_0006145,chondroid chordoma +12.3496783,MONDO:0006193,http://purl.obolibrary.org/obo/MONDO_0006193,endometrial hyperplasia without atypia +12.3496783,MONDO:0008153,http://purl.obolibrary.org/obo/MONDO_0008153,progressive osseous heteroplasia +12.3496783,MONDO:0015193,http://purl.obolibrary.org/obo/MONDO_0015193,hydrops fetalis +12.3496783,MONDO:0016491,http://purl.obolibrary.org/obo/MONDO_0016491,hemoglobin E-beta-thalassemia syndrome +12.3496783,MONDO:0017718,http://purl.obolibrary.org/obo/MONDO_0017718,mitochondrial disorder due to a defect in assembly or maturation of the respiratory chain complexes +12.3496783,MONDO:0018740,http://purl.obolibrary.org/obo/MONDO_0018740,drug-induced methemoglobinemia +12.3496783,MONDO:0043519,http://purl.obolibrary.org/obo/MONDO_0043519,burn +12.3496783,NCBITaxon:105711,http://purl.obolibrary.org/obo/NCBITaxon_105711,none +12.3496783,NCBITaxon:10990,http://purl.obolibrary.org/obo/NCBITaxon_10990,none +12.3496783,NCBITaxon:11813,http://purl.obolibrary.org/obo/NCBITaxon_11813,none +12.3496783,NCBITaxon:121224,http://purl.obolibrary.org/obo/NCBITaxon_121224,Pediculus humanus corporis +12.3496783,NCBITaxon:12197,http://purl.obolibrary.org/obo/NCBITaxon_12197,none +12.3496783,NCBITaxon:30084,http://purl.obolibrary.org/obo/NCBITaxon_30084,none +12.3496783,NCBITaxon:315393,http://purl.obolibrary.org/obo/NCBITaxon_315393,none +12.3496783,NCBITaxon:45950,http://purl.obolibrary.org/obo/NCBITaxon_45950,none +12.3496783,NCBITaxon:45951,http://purl.obolibrary.org/obo/NCBITaxon_45951,none +12.3496783,NCBITaxon:59509,http://purl.obolibrary.org/obo/NCBITaxon_59509,none +12.3496783,NCBITaxon:723806,http://purl.obolibrary.org/obo/NCBITaxon_723806,none +12.3496783,NCBITaxon:723807,http://purl.obolibrary.org/obo/NCBITaxon_723807,none +12.3496783,PR:000001576,http://purl.obolibrary.org/obo/PR_000001576,adenosine receptor A2a +12.3496783,PR:000002234,http://purl.obolibrary.org/obo/PR_000002234,none +12.3496783,PR:000004206,http://purl.obolibrary.org/obo/PR_000004206,ADP-ribosylation factor GTPase-activating protein 1 +12.3496783,PR:000004808,http://purl.obolibrary.org/obo/PR_000004808,bromodomain-containing protein 7 +12.3496783,PR:000004933,http://purl.obolibrary.org/obo/PR_000004933,calcium-binding protein 1 +12.3496783,PR:000005000,http://purl.obolibrary.org/obo/PR_000005000,calmodulin-binding transcription activator 1 +12.3496783,PR:000005381,http://purl.obolibrary.org/obo/PR_000005381,complement factor H-related protein 3 +12.3496783,PR:000005900,http://purl.obolibrary.org/obo/PR_000005900,cartilage-associated protein +12.3496783,PR:000007484,http://purl.obolibrary.org/obo/PR_000007484,fibroblast growth factor 14 +12.3496783,PR:000008365,http://purl.obolibrary.org/obo/PR_000008365,"glycogen [starch] synthase, muscle" +12.3496783,PR:000008710,http://purl.obolibrary.org/obo/PR_000008710,homeobox protein Hox-C13 +12.3496783,PR:000008716,http://purl.obolibrary.org/obo/PR_000008716,homeobox protein Hox-D1 +12.3496783,PR:000009950,http://purl.obolibrary.org/obo/PR_000009950,E3 ubiquitin-protein ligase LRSAM1 +12.3496783,PR:000010533,http://purl.obolibrary.org/obo/PR_000010533,macrophage-expressed gene 1 protein +12.3496783,PR:000013415,http://purl.obolibrary.org/obo/PR_000013415,phosphatidylserine synthase 1 +12.3496783,PR:000013782,http://purl.obolibrary.org/obo/PR_000013782,ribokinase +12.3496783,PR:000013983,http://purl.obolibrary.org/obo/PR_000013983,Rho-related GTP-binding protein RhoJ +12.3496783,PR:000015641,http://purl.obolibrary.org/obo/PR_000015641,serrate RNA effector molecule +12.3496783,PR:000015653,http://purl.obolibrary.org/obo/PR_000015653,protein phosphatase Slingshot homolog 1 +12.3496783,PR:000015766,http://purl.obolibrary.org/obo/PR_000015766,stomatin-like protein 3 +12.3496783,PR:000016205,http://purl.obolibrary.org/obo/PR_000016205,T cell receptor beta variable 7-9 +12.3496783,PR:000016484,http://purl.obolibrary.org/obo/PR_000016484,tumor necrosis factor receptor superfamily member 21 +12.3496783,PR:000017200,http://purl.obolibrary.org/obo/PR_000017200,undifferentiated embryonic cell transcription factor 1 +12.3496783,PR:000017327,http://purl.obolibrary.org/obo/PR_000017327,vacuolar protein sorting-associated protein 26A +12.3496783,PR:000017453,http://purl.obolibrary.org/obo/PR_000017453,protein Wnt-9b +12.3496783,PR:000023445,http://purl.obolibrary.org/obo/PR_000023445,none +12.3496783,PR:000024076,http://purl.obolibrary.org/obo/PR_000024076,none +12.3496783,PR:000032971,http://purl.obolibrary.org/obo/PR_000032971,none +12.3496783,PR:O18373,http://purl.obolibrary.org/obo/PR_O18373,none +12.3496783,PR:P46310,http://purl.obolibrary.org/obo/PR_P46310,none +12.3496783,PR:P48451,http://purl.obolibrary.org/obo/PR_P48451,none +12.3496783,PR:Q03792,http://purl.obolibrary.org/obo/PR_Q03792,none +12.3496783,PR:Q8RXN0,http://purl.obolibrary.org/obo/PR_Q8RXN0,none +12.3496783,PR:Q9LVM1,http://purl.obolibrary.org/obo/PR_Q9LVM1,none +12.3496783,SO:0001179,http://purl.obolibrary.org/obo/SO_0001179,U3_snoRNA +12.3496783,UBERON:0001432,http://purl.obolibrary.org/obo/UBERON_0001432,distal carpal bone 3 +12.3496783,UBERON:0004369,http://purl.obolibrary.org/obo/UBERON_0004369,Reichert's membrane +12.3496783,UBERON:0004887,http://purl.obolibrary.org/obo/UBERON_0004887,left lung hilus +12.3496783,UBERON:0005413,http://purl.obolibrary.org/obo/UBERON_0005413,spinocerebellar tract +12.3496783,UBERON:0005630,http://purl.obolibrary.org/obo/UBERON_0005630,fetal membrane +12.3496783,UBERON:0006670,http://purl.obolibrary.org/obo/UBERON_0006670,central tendon of diaphragm +12.3496783,UBERON:0006820,http://purl.obolibrary.org/obo/UBERON_0006820,body of sternum +12.3496783,UBERON:0006856,http://purl.obolibrary.org/obo/UBERON_0006856,interrenal gland +12.3496783,UBERON:0007240,http://purl.obolibrary.org/obo/UBERON_0007240,tunica adventitia of artery +12.3496783,UBERON:0008404,http://purl.obolibrary.org/obo/UBERON_0008404,proximal tubular epithelium +12.3496783,UBERON:0015090,http://purl.obolibrary.org/obo/UBERON_0015090,distal carpal bone 3 endochondral element +12.3496783,UBERON:0018608,http://purl.obolibrary.org/obo/UBERON_0018608,permanent molar tooth 1 +12.3597286,CHEBI:15355,http://purl.obolibrary.org/obo/CHEBI_15355,acetylcholine +12.3597286,CHEBI:17172,http://purl.obolibrary.org/obo/CHEBI_17172,2'-deoxyguanosine +12.3597286,CHEBI:24669,http://purl.obolibrary.org/obo/CHEBI_24669,hydroxy carboxylic acid +12.3597286,CHEBI:35281,http://purl.obolibrary.org/obo/CHEBI_35281,onium betaine +12.3597286,CHEBI:35287,http://purl.obolibrary.org/obo/CHEBI_35287,acylcholine +12.3597286,CHEBI:35294,http://purl.obolibrary.org/obo/CHEBI_35294,carbopolycyclic compound +12.3597286,CHEBI:35295,http://purl.obolibrary.org/obo/CHEBI_35295,homopolycyclic compound +12.3597286,CHEBI:35627,http://purl.obolibrary.org/obo/CHEBI_35627,beta-lactam +12.3597286,CHEBI:38181,http://purl.obolibrary.org/obo/CHEBI_38181,pyridinemonocarboxylate +12.3597286,CHEBI:47775,http://purl.obolibrary.org/obo/CHEBI_47775,high-density lipoprotein cholesterol +12.3597286,CHEBI:80343,http://purl.obolibrary.org/obo/CHEBI_80343,Insulin-like growth factor I +12.3597286,CL:0000922,http://purl.obolibrary.org/obo/CL_0000922,type II NK T cell +12.3597286,DRUGBANK:DB01014,http://purl.obolibrary.org/obo/DRUGBANK_DB01014,none +12.3597286,DRUGBANK:DB01107,http://purl.obolibrary.org/obo/DRUGBANK_DB01107,none +12.3597286,DRUGBANK:DB01901,http://purl.obolibrary.org/obo/DRUGBANK_DB01901,none +12.3597286,DRUGBANK:DB04314,http://purl.obolibrary.org/obo/DRUGBANK_DB04314,none +12.3597286,DRUGBANK:DB06264,http://purl.obolibrary.org/obo/DRUGBANK_DB06264,none +12.3597286,DRUGBANK:DB07496,http://purl.obolibrary.org/obo/DRUGBANK_DB07496,none +12.3597286,DRUGBANK:DB13817,http://purl.obolibrary.org/obo/DRUGBANK_DB13817,none +12.3597286,DRUGBANK:DB13881,http://purl.obolibrary.org/obo/DRUGBANK_DB13881,none +12.3597286,DRUGBANK:DB13918,http://purl.obolibrary.org/obo/DRUGBANK_DB13918,none +12.3597286,DRUGBANK:DB14302,http://purl.obolibrary.org/obo/DRUGBANK_DB14302,none +12.3597286,DRUGBANK:DB14689,http://purl.obolibrary.org/obo/DRUGBANK_DB14689,none +12.3597286,DRUGBANK:DB15058,http://purl.obolibrary.org/obo/DRUGBANK_DB15058,none +12.3597286,GO:0000154,http://purl.obolibrary.org/obo/GO_0000154,rRNA modification +12.3597286,GO:0001847,http://purl.obolibrary.org/obo/GO_0001847,opsonin receptor activity +12.3597286,GO:0002158,http://purl.obolibrary.org/obo/GO_0002158,osteoclast proliferation +12.3597286,GO:0004117,http://purl.obolibrary.org/obo/GO_0004117,calmodulin-dependent cyclic-nucleotide phosphodiesterase activity +12.3597286,GO:0006013,http://purl.obolibrary.org/obo/GO_0006013,mannose metabolic process +12.3597286,GO:0008887,http://purl.obolibrary.org/obo/GO_0008887,glycerate kinase activity +12.3597286,GO:0009695,http://purl.obolibrary.org/obo/GO_0009695,jasmonic acid biosynthetic process +12.3597286,GO:0009798,http://purl.obolibrary.org/obo/GO_0009798,axis specification +12.3597286,GO:0010934,http://purl.obolibrary.org/obo/GO_0010934,macrophage cytokine production +12.3597286,GO:0016012,http://purl.obolibrary.org/obo/GO_0016012,sarcoglycan complex +12.3597286,GO:0033011,http://purl.obolibrary.org/obo/GO_0033011,perinuclear theca +12.3597286,GO:0042618,http://purl.obolibrary.org/obo/GO_0042618,poly-hydroxybutyrate metabolic process +12.3597286,GO:0043202,http://purl.obolibrary.org/obo/GO_0043202,lysosomal lumen +12.3597286,GO:0043661,http://purl.obolibrary.org/obo/GO_0043661,peribacteroid membrane +12.3597286,GO:0046316,http://purl.obolibrary.org/obo/GO_0046316,gluconokinase activity +12.3597286,GO:0047663,http://purl.obolibrary.org/obo/GO_0047663,aminoglycoside 6'-N-acetyltransferase activity +12.3597286,GO:0050746,http://purl.obolibrary.org/obo/GO_0050746,regulation of lipoprotein metabolic process +12.3597286,GO:0051903,http://purl.obolibrary.org/obo/GO_0051903,S-(hydroxymethyl)glutathione dehydrogenase activity +12.3597286,GO:2000194,http://purl.obolibrary.org/obo/GO_2000194,regulation of female gonad development +12.3597286,HP:0000177,http://purl.obolibrary.org/obo/HP_0000177,Abnormality of upper lip +12.3597286,HP:0000219,http://purl.obolibrary.org/obo/HP_0000219,Thin upper lip vermilion +12.3597286,HP:0011339,http://purl.obolibrary.org/obo/HP_0011339,Abnormality of upper lip vermillion +12.3597286,MONDO:0001113,http://purl.obolibrary.org/obo/MONDO_0001113,Fiedler's myocarditis +12.3597286,MONDO:0003370,http://purl.obolibrary.org/obo/MONDO_0003370,retroperitoneal leiomyosarcoma +12.3597286,MONDO:0003802,http://purl.obolibrary.org/obo/MONDO_0003802,cornea cancer +12.3597286,MONDO:0004710,http://purl.obolibrary.org/obo/MONDO_0004710,uterus carcinoma in situ +12.3597286,MONDO:0004925,http://purl.obolibrary.org/obo/MONDO_0004925,chronic dacryocystitis +12.3597286,MONDO:0005614,http://purl.obolibrary.org/obo/MONDO_0005614,pancreatic adenosquamous carcinoma +12.3597286,MONDO:0006863,http://purl.obolibrary.org/obo/MONDO_0006863,myxosarcoma +12.3597286,MONDO:0006937,http://purl.obolibrary.org/obo/MONDO_0006937,pulpitis +12.3597286,MONDO:0008287,http://purl.obolibrary.org/obo/MONDO_0008287,Greig cephalopolysyndactyly syndrome +12.3597286,MONDO:0009928,http://purl.obolibrary.org/obo/MONDO_0009928,pulmonary alveolar microlithiasis +12.3597286,MONDO:0011871,http://purl.obolibrary.org/obo/MONDO_0011871,Niemann-Pick disease type B +12.3597286,MONDO:0013496,http://purl.obolibrary.org/obo/MONDO_0013496,"IgA nephropathy, susceptibility to, 2" +12.3597286,MONDO:0016056,http://purl.obolibrary.org/obo/MONDO_0016056,isolated congenital microcephaly +12.3597286,MONDO:0016736,http://purl.obolibrary.org/obo/MONDO_0016736,rosette-forming glioneuronal tumor of fourth ventricule +12.3597286,MONDO:0019358,http://purl.obolibrary.org/obo/MONDO_0019358,encephalopathy due to sulfite oxidase deficiency +12.3597286,MONDO:0020731,http://purl.obolibrary.org/obo/MONDO_0020731,arbovirus infection +12.3597286,MONDO:0021022,http://purl.obolibrary.org/obo/MONDO_0021022,hereditary hyperekplexia +12.3597286,MONDO:0021500,http://purl.obolibrary.org/obo/MONDO_0021500,benign neoplasm of spleen +12.3597286,MONDO:0044746,http://purl.obolibrary.org/obo/MONDO_0044746,zoonotic bacterial infection +12.3597286,MONDO:0044791,http://purl.obolibrary.org/obo/MONDO_0044791,combined hepatocellular carcinoma and cholangiocarcinoma +12.3597286,MOP:0000581,http://purl.obolibrary.org/obo/MOP_0000581,none +12.3597286,NCBITaxon:167160,http://purl.obolibrary.org/obo/NCBITaxon_167160,none +12.3597286,NCBITaxon:204429,http://purl.obolibrary.org/obo/NCBITaxon_204429,Chlamydiia +12.3597286,NCBITaxon:213547,http://purl.obolibrary.org/obo/NCBITaxon_213547,none +12.3597286,NCBITaxon:34489,http://purl.obolibrary.org/obo/NCBITaxon_34489,none +12.3597286,NCBITaxon:35612,http://purl.obolibrary.org/obo/NCBITaxon_35612,none +12.3597286,NCBITaxon:45954,http://purl.obolibrary.org/obo/NCBITaxon_45954,none +12.3597286,NCBITaxon:50650,http://purl.obolibrary.org/obo/NCBITaxon_50650,none +12.3597286,NCBITaxon:51291,http://purl.obolibrary.org/obo/NCBITaxon_51291,Chlamydiales +12.3597286,NCBITaxon:689759,http://purl.obolibrary.org/obo/NCBITaxon_689759,none +12.3597286,NCBITaxon:70796,http://purl.obolibrary.org/obo/NCBITaxon_70796,Tremovirus A +12.3597286,NCBITaxon:80840,http://purl.obolibrary.org/obo/NCBITaxon_80840,Burkholderiales +12.3597286,PR:000000678,http://purl.obolibrary.org/obo/PR_000000678,sodium leak channel non-selective protein +12.3597286,PR:000001575,http://purl.obolibrary.org/obo/PR_000001575,adenosine receptor A1 +12.3597286,PR:000003714,http://purl.obolibrary.org/obo/PR_000003714,disintegrin and metalloproteinase domain-containing protein 19 +12.3597286,PR:000004270,http://purl.obolibrary.org/obo/PR_000004270,AT-rich interactive domain-containing protein 5B +12.3597286,PR:000005234,http://purl.obolibrary.org/obo/PR_000005234,cadherin-16 +12.3597286,PR:000005238,http://purl.obolibrary.org/obo/PR_000005238,cadherin-20 +12.3597286,PR:000005248,http://purl.obolibrary.org/obo/PR_000005248,cadherin-7 +12.3597286,PR:000006476,http://purl.obolibrary.org/obo/PR_000006476,protein diaphanous homolog 2 +12.3597286,PR:000007210,http://purl.obolibrary.org/obo/PR_000007210,estrogen-related receptor gamma +12.3597286,PR:000008115,http://purl.obolibrary.org/obo/PR_000008115,guanine nucleotide-binding protein-like 1 +12.3597286,PR:000008441,http://purl.obolibrary.org/obo/PR_000008441,hydroxyacid oxidase 1 +12.3597286,PR:000008817,http://purl.obolibrary.org/obo/PR_000008817,heat shock protein beta-3 +12.3597286,PR:000008818,http://purl.obolibrary.org/obo/PR_000008818,heat shock protein beta-6 +12.3597286,PR:000009134,http://purl.obolibrary.org/obo/PR_000009134,integrin alpha-9 +12.3597286,PR:000009368,http://purl.obolibrary.org/obo/PR_000009368,krueppel-like factor 8 +12.3597286,PR:000010410,http://purl.obolibrary.org/obo/PR_000010410,mesoderm induction early response protein 1 +12.3597286,PR:000010929,http://purl.obolibrary.org/obo/PR_000010929,none +12.3597286,PR:000011026,http://purl.obolibrary.org/obo/PR_000011026,nuclear cap-binding protein subunit 1 +12.3597286,PR:000014056,http://purl.obolibrary.org/obo/PR_000014056,ribonuclease H2 subunit C +12.3597286,PR:000014292,http://purl.obolibrary.org/obo/PR_000014292,40S ribosomal protein S9 +12.3597286,PR:000014458,http://purl.obolibrary.org/obo/PR_000014458,NAD(+) hydrolase SARM1 +12.3597286,PR:000014634,http://purl.obolibrary.org/obo/PR_000014634,semenogelin-2 +12.3597286,PR:000014763,http://purl.obolibrary.org/obo/PR_000014763,serine/arginine-rich splicing factor 6 +12.3597286,PR:000014920,http://purl.obolibrary.org/obo/PR_000014920,sodium/bile acid cotransporter 4 +12.3597286,PR:000015306,http://purl.obolibrary.org/obo/PR_000015306,histone-lysine N-methyltransferase SMYD1 +12.3597286,PR:000015835,http://purl.obolibrary.org/obo/PR_000015835,transcription initiation protein SPT3 +12.3597286,PR:000016711,http://purl.obolibrary.org/obo/PR_000016711,TSC22 domain family protein 1 +12.3597286,PR:000022301,http://purl.obolibrary.org/obo/PR_000022301,none +12.3597286,PR:000022694,http://purl.obolibrary.org/obo/PR_000022694,none +12.3597286,PR:000023542,http://purl.obolibrary.org/obo/PR_000023542,none +12.3597286,PR:000023634,http://purl.obolibrary.org/obo/PR_000023634,none +12.3597286,PR:000024028,http://purl.obolibrary.org/obo/PR_000024028,none +12.3597286,PR:000029155,http://purl.obolibrary.org/obo/PR_000029155,none +12.3597286,PR:000029169,http://purl.obolibrary.org/obo/PR_000029169,none +12.3597286,PR:000029245,http://purl.obolibrary.org/obo/PR_000029245,none +12.3597286,PR:000031605,http://purl.obolibrary.org/obo/PR_000031605,probable helicase senataxin +12.3597286,PR:O16844,http://purl.obolibrary.org/obo/PR_O16844,none +12.3597286,PR:O22993,http://purl.obolibrary.org/obo/PR_O22993,none +12.3597286,PR:P05067,http://purl.obolibrary.org/obo/PR_P05067,amyloid-beta precursor protein (human) +12.3597286,PR:P06212,http://purl.obolibrary.org/obo/PR_P06212,none +12.3597286,PR:Q84MA5,http://purl.obolibrary.org/obo/PR_Q84MA5,none +12.3597286,PR:Q9LSP8,http://purl.obolibrary.org/obo/PR_Q9LSP8,none +12.3597286,UBERON:0000929,http://purl.obolibrary.org/obo/UBERON_0000929,pharyngeal branch of vagus nerve +12.3597286,UBERON:0001701,http://purl.obolibrary.org/obo/UBERON_0001701,glossopharyngeal ganglion +12.3597286,UBERON:0003667,http://purl.obolibrary.org/obo/UBERON_0003667,lower jaw molar +12.3597286,UBERON:0004249,http://purl.obolibrary.org/obo/UBERON_0004249,manual digit bone +12.3597286,UBERON:0006878,http://purl.obolibrary.org/obo/UBERON_0006878,decidua parietalis +12.369881,CHEBI:17754,http://purl.obolibrary.org/obo/CHEBI_17754,glycerol +12.369881,CHEBI:25017,http://purl.obolibrary.org/obo/CHEBI_25017,leucine +12.369881,CHEBI:32544,http://purl.obolibrary.org/obo/CHEBI_32544,nicotinate +12.369881,CHEBI:37997,http://purl.obolibrary.org/obo/CHEBI_37997,homopolymer macromolecule +12.369881,CHEBI:85540,http://purl.obolibrary.org/obo/CHEBI_85540,thromboxane A2 antagonist +12.369881,DRUGBANK:DB00546,http://purl.obolibrary.org/obo/DRUGBANK_DB00546,none +12.369881,DRUGBANK:DB01739,http://purl.obolibrary.org/obo/DRUGBANK_DB01739,none +12.369881,DRUGBANK:DB04735,http://purl.obolibrary.org/obo/DRUGBANK_DB04735,none +12.369881,DRUGBANK:DB10904,http://purl.obolibrary.org/obo/DRUGBANK_DB10904,none +12.369881,DRUGBANK:DB10917,http://purl.obolibrary.org/obo/DRUGBANK_DB10917,none +12.369881,DRUGBANK:DB11364,http://purl.obolibrary.org/obo/DRUGBANK_DB11364,none +12.369881,DRUGBANK:DB11696,http://purl.obolibrary.org/obo/DRUGBANK_DB11696,none +12.369881,DRUGBANK:DB12130,http://purl.obolibrary.org/obo/DRUGBANK_DB12130,none +12.369881,DRUGBANK:DB12615,http://purl.obolibrary.org/obo/DRUGBANK_DB12615,none +12.369881,DRUGBANK:DB12770,http://purl.obolibrary.org/obo/DRUGBANK_DB12770,none +12.369881,DRUGBANK:DB13066,http://purl.obolibrary.org/obo/DRUGBANK_DB13066,none +12.369881,DRUGBANK:DB13679,http://purl.obolibrary.org/obo/DRUGBANK_DB13679,none +12.369881,DRUGBANK:DB14078,http://purl.obolibrary.org/obo/DRUGBANK_DB14078,none +12.369881,GO:0002188,http://purl.obolibrary.org/obo/GO_0002188,translation reinitiation +12.369881,GO:0003071,http://purl.obolibrary.org/obo/GO_0003071,renal system process involved in regulation of systemic arterial blood pressure +12.369881,GO:0005483,http://purl.obolibrary.org/obo/GO_0005483,soluble NSF attachment protein activity +12.369881,GO:0006183,http://purl.obolibrary.org/obo/GO_0006183,GTP biosynthetic process +12.369881,GO:0006393,http://purl.obolibrary.org/obo/GO_0006393,termination of mitochondrial transcription +12.369881,GO:0006476,http://purl.obolibrary.org/obo/GO_0006476,protein deacetylation +12.369881,GO:0006875,http://purl.obolibrary.org/obo/GO_0006875,cellular metal ion homeostasis +12.369881,GO:0008967,http://purl.obolibrary.org/obo/GO_0008967,phosphoglycolate phosphatase activity +12.369881,GO:0009106,http://purl.obolibrary.org/obo/GO_0009106,lipoate metabolic process +12.369881,GO:0009630,http://purl.obolibrary.org/obo/GO_0009630,gravitropism +12.369881,GO:0015723,http://purl.obolibrary.org/obo/GO_0015723,bilirubin transport +12.369881,GO:0015797,http://purl.obolibrary.org/obo/GO_0015797,mannitol transport +12.369881,GO:0015808,http://purl.obolibrary.org/obo/GO_0015808,L-alanine transport +12.369881,GO:0019692,http://purl.obolibrary.org/obo/GO_0019692,deoxyribose phosphate metabolic process +12.369881,GO:0019869,http://purl.obolibrary.org/obo/GO_0019869,chloride channel inhibitor activity +12.369881,GO:0034701,http://purl.obolibrary.org/obo/GO_0034701,tripeptidase activity +12.369881,GO:0035601,http://purl.obolibrary.org/obo/GO_0035601,protein deacylation +12.369881,GO:0038202,http://purl.obolibrary.org/obo/GO_0038202,TORC1 signaling +12.369881,GO:0042045,http://purl.obolibrary.org/obo/GO_0042045,epithelial fluid transport +12.369881,GO:0051303,http://purl.obolibrary.org/obo/GO_0051303,establishment of chromosome localization +12.369881,GO:0090601,http://purl.obolibrary.org/obo/GO_0090601,enucleation +12.369881,GO:0098732,http://purl.obolibrary.org/obo/GO_0098732,macromolecule deacylation +12.369881,GO:1900140,http://purl.obolibrary.org/obo/GO_1900140,regulation of seedling development +12.369881,GO:1901440,http://purl.obolibrary.org/obo/GO_1901440,poly(hydroxyalkanoate) metabolic process +12.369881,GO:2001279,http://purl.obolibrary.org/obo/GO_2001279,regulation of unsaturated fatty acid biosynthetic process +12.369881,HP:0001370,http://purl.obolibrary.org/obo/HP_0001370,Rheumatoid arthritis +12.369881,MONDO:0000743,http://purl.obolibrary.org/obo/MONDO_0000743,oral hairy leukoplakia +12.369881,MONDO:0001534,http://purl.obolibrary.org/obo/MONDO_0001534,ocular hyperemia +12.369881,MONDO:0002047,http://purl.obolibrary.org/obo/MONDO_0002047,pulmonary systemic sclerosis +12.369881,MONDO:0002343,http://purl.obolibrary.org/obo/MONDO_0002343,splenic hemangioma +12.369881,MONDO:0009124,http://purl.obolibrary.org/obo/MONDO_0009124,Dubowitz syndrome +12.369881,MONDO:0009210,http://purl.obolibrary.org/obo/MONDO_0009210,congenital factor V deficiency +12.369881,MONDO:0011927,http://purl.obolibrary.org/obo/MONDO_0011927,tufted angioma +12.369881,MONDO:0016621,http://purl.obolibrary.org/obo/MONDO_0016621,juvenile Huntington disease +12.369881,MONDO:0016660,http://purl.obolibrary.org/obo/MONDO_0016660,autosomal recessive primary microcephaly +12.369881,MONDO:0017415,http://purl.obolibrary.org/obo/MONDO_0017415,multiple pterygium syndrome +12.369881,MONDO:0018931,http://purl.obolibrary.org/obo/MONDO_0018931,mucolipidosis type III +12.369881,MONDO:0019125,http://purl.obolibrary.org/obo/MONDO_0019125,relapsing polychondritis +12.369881,MONDO:0019587,http://purl.obolibrary.org/obo/MONDO_0019587,autosomal dominant nonsyndromic deafness +12.369881,MONDO:0022666,http://purl.obolibrary.org/obo/MONDO_0022666,cassavism +12.369881,NCBITaxon:105391,http://purl.obolibrary.org/obo/NCBITaxon_105391,Canalipalpata +12.369881,NCBITaxon:12266,http://purl.obolibrary.org/obo/NCBITaxon_12266,none +12.369881,NCBITaxon:2370,http://purl.obolibrary.org/obo/NCBITaxon_2370,none +12.369881,NCBITaxon:3726,http://purl.obolibrary.org/obo/NCBITaxon_3726,none +12.369881,NCBITaxon:50638,http://purl.obolibrary.org/obo/NCBITaxon_50638,none +12.369881,NCBITaxon:7438,http://purl.obolibrary.org/obo/NCBITaxon_7438,none +12.369881,NCBITaxon:998453,http://purl.obolibrary.org/obo/NCBITaxon_998453,none +12.369881,PR:000003872,http://purl.obolibrary.org/obo/PR_000003872,beta/gamma crystallin domain-containing protein 1 +12.369881,PR:000004057,http://purl.obolibrary.org/obo/PR_000004057,anoctamin-2 +12.369881,PR:000004105,http://purl.obolibrary.org/obo/PR_000004105,AP-3 complex subunit beta-2 +12.369881,PR:000004248,http://purl.obolibrary.org/obo/PR_000004248,Rho guanine nucleotide exchange factor 11 +12.369881,PR:000004620,http://purl.obolibrary.org/obo/PR_000004620,BAG family molecular chaperone regulator 2 +12.369881,PR:000004728,http://purl.obolibrary.org/obo/PR_000004728,protein BEX1 +12.369881,PR:000005476,http://purl.obolibrary.org/obo/PR_000005476,carbohydrate sulfotransferase 3 +12.369881,PR:000006336,http://purl.obolibrary.org/obo/PR_000006336,L-xylulose reductase +12.369881,PR:000007537,http://purl.obolibrary.org/obo/PR_000007537,peptidyl-prolyl cis-trans isomerase FKBP1B +12.369881,PR:000007575,http://purl.obolibrary.org/obo/PR_000007575,dimethylaniline monooxygenase [N-oxide-forming] 2 +12.369881,PR:000007620,http://purl.obolibrary.org/obo/PR_000007620,forkhead box protein E3 +12.369881,PR:000007664,http://purl.obolibrary.org/obo/PR_000007664,tyrosine-protein kinase FRK +12.369881,PR:000008050,http://purl.obolibrary.org/obo/PR_000008050,glutaredoxin-related protein 5 +12.369881,PR:000008121,http://purl.obolibrary.org/obo/PR_000008121,dihydroxyacetone phosphate acyltransferase +12.369881,PR:000008797,http://purl.obolibrary.org/obo/PR_000008797,hematopoietic SH2 domain-containing protein +12.369881,PR:000009021,http://purl.obolibrary.org/obo/PR_000009021,inosine-5'-monophosphate dehydrogenase 1 +12.369881,PR:000009142,http://purl.obolibrary.org/obo/PR_000009142,integrin beta-6 +12.369881,PR:000010172,http://purl.obolibrary.org/obo/PR_000010172,microtubule-associated protein RP/EB family member 3 +12.369881,PR:000010226,http://purl.obolibrary.org/obo/PR_000010226,ghrelin O-acyltransferase +12.369881,PR:000010736,http://purl.obolibrary.org/obo/PR_000010736,myotubularin-related protein 2 +12.369881,PR:000013211,http://purl.obolibrary.org/obo/PR_000013211,prickle-like protein 1 +12.369881,PR:000014061,http://purl.obolibrary.org/obo/PR_000014061,Rho-related GTP-binding protein Rho6 +12.369881,PR:000014714,http://purl.obolibrary.org/obo/PR_000014714,sestrin-1 +12.369881,PR:000015396,http://purl.obolibrary.org/obo/PR_000015396,suppressor of cytokine signaling 5 +12.369881,PR:000015788,http://purl.obolibrary.org/obo/PR_000015788,syntaxin-16 +12.369881,PR:000016859,http://purl.obolibrary.org/obo/PR_000016859,thioredoxin domain-containing protein 17 +12.369881,PR:000017437,http://purl.obolibrary.org/obo/PR_000017437,protein Wnt-10b +12.369881,PR:000022031,http://purl.obolibrary.org/obo/PR_000022031,none +12.369881,PR:000022064,http://purl.obolibrary.org/obo/PR_000022064,none +12.369881,PR:000023298,http://purl.obolibrary.org/obo/PR_000023298,none +12.369881,PR:000023953,http://purl.obolibrary.org/obo/PR_000023953,none +12.369881,PR:P19812,http://purl.obolibrary.org/obo/PR_P19812,none +12.369881,PR:P39724,http://purl.obolibrary.org/obo/PR_P39724,none +12.369881,PR:Q07763,http://purl.obolibrary.org/obo/PR_Q07763,none +12.369881,PR:Q08601,http://purl.obolibrary.org/obo/PR_Q08601,none +12.369881,PR:Q84W66,http://purl.obolibrary.org/obo/PR_Q84W66,none +12.369881,PR:Q9C103,http://purl.obolibrary.org/obo/PR_Q9C103,none +12.369881,PR:Q9JLM2,http://purl.obolibrary.org/obo/PR_Q9JLM2,none +12.369881,PR:Q9M390,http://purl.obolibrary.org/obo/PR_Q9M390,none +12.369881,PR:Q9M8K7,http://purl.obolibrary.org/obo/PR_Q9M8K7,none +12.369881,PR:Q9PW71,http://purl.obolibrary.org/obo/PR_Q9PW71,none +12.369881,PR:Q9S7W5,http://purl.obolibrary.org/obo/PR_Q9S7W5,none +12.369881,PR:Q9SA38,http://purl.obolibrary.org/obo/PR_Q9SA38,none +12.369881,UBERON:0002194,http://purl.obolibrary.org/obo/UBERON_0002194,capsule of lymph node +12.369881,UBERON:0009836,http://purl.obolibrary.org/obo/UBERON_0009836,fronto-orbital gyrus +12.369881,UBERON:0010168,http://purl.obolibrary.org/obo/UBERON_0010168,collection of eyelashes +12.3801375,CHEBI:19255,http://purl.obolibrary.org/obo/CHEBI_19255,pyrimidine 2'-deoxyribonucleoside +12.3801375,CHEBI:26348,http://purl.obolibrary.org/obo/CHEBI_26348,prosthetic group +12.3801375,CHEBI:31867,http://purl.obolibrary.org/obo/CHEBI_31867,mosapride citrate dihydrate +12.3801375,CHEBI:7819,http://purl.obolibrary.org/obo/CHEBI_7819,oxamniquine +12.3801375,CHEBI:80273,http://purl.obolibrary.org/obo/CHEBI_80273,none +12.3801375,CL:0000396,http://purl.obolibrary.org/obo/CL_0000396,lamellocyte +12.3801375,DRUGBANK:DB01462,http://purl.obolibrary.org/obo/DRUGBANK_DB01462,none +12.3801375,DRUGBANK:DB03776,http://purl.obolibrary.org/obo/DRUGBANK_DB03776,none +12.3801375,DRUGBANK:DB05018,http://purl.obolibrary.org/obo/DRUGBANK_DB05018,none +12.3801375,DRUGBANK:DB06200,http://purl.obolibrary.org/obo/DRUGBANK_DB06200,none +12.3801375,DRUGBANK:DB09066,http://purl.obolibrary.org/obo/DRUGBANK_DB09066,none +12.3801375,DRUGBANK:DB09258,http://purl.obolibrary.org/obo/DRUGBANK_DB09258,none +12.3801375,DRUGBANK:DB09429,http://purl.obolibrary.org/obo/DRUGBANK_DB09429,none +12.3801375,DRUGBANK:DB10850,http://purl.obolibrary.org/obo/DRUGBANK_DB10850,none +12.3801375,DRUGBANK:DB11560,http://purl.obolibrary.org/obo/DRUGBANK_DB11560,none +12.3801375,DRUGBANK:DB13256,http://purl.obolibrary.org/obo/DRUGBANK_DB13256,none +12.3801375,DRUGBANK:DB14204,http://purl.obolibrary.org/obo/DRUGBANK_DB14204,none +12.3801375,GO:0006108,http://purl.obolibrary.org/obo/GO_0006108,malate metabolic process +12.3801375,GO:0006735,http://purl.obolibrary.org/obo/GO_0006735,NADH regeneration +12.3801375,GO:0006919,http://purl.obolibrary.org/obo/GO_0006919,activation of cysteine-type endopeptidase activity involved in apoptotic process +12.3801375,GO:0007265,http://purl.obolibrary.org/obo/GO_0007265,Ras protein signal transduction +12.3801375,GO:0009394,http://purl.obolibrary.org/obo/GO_0009394,2'-deoxyribonucleotide metabolic process +12.3801375,GO:0009750,http://purl.obolibrary.org/obo/GO_0009750,response to fructose +12.3801375,GO:0010721,http://purl.obolibrary.org/obo/GO_0010721,negative regulation of cell development +12.3801375,GO:0016575,http://purl.obolibrary.org/obo/GO_0016575,histone deacetylation +12.3801375,GO:0018024,http://purl.obolibrary.org/obo/GO_0018024,histone-lysine N-methyltransferase activity +12.3801375,GO:0035885,http://purl.obolibrary.org/obo/GO_0035885,exochitinase activity +12.3801375,GO:0051974,http://purl.obolibrary.org/obo/GO_0051974,negative regulation of telomerase activity +12.3801375,GO:0090140,http://purl.obolibrary.org/obo/GO_0090140,regulation of mitochondrial fission +12.3801375,GO:0097202,http://purl.obolibrary.org/obo/GO_0097202,activation of cysteine-type endopeptidase activity +12.3801375,GO:0120032,http://purl.obolibrary.org/obo/GO_0120032,regulation of plasma membrane bounded cell projection assembly +12.3801375,GO:1990478,http://purl.obolibrary.org/obo/GO_1990478,response to ultrasound +12.3801375,HP:0000006,http://purl.obolibrary.org/obo/HP_0000006,Autosomal dominant inheritance +12.3801375,HP:0005584,http://purl.obolibrary.org/obo/HP_0005584,Renal cell carcinoma +12.3801375,HP:0025423,http://purl.obolibrary.org/obo/HP_0025423,Abnormal larynx morphology +12.3801375,MONDO:0001204,http://purl.obolibrary.org/obo/MONDO_0001204,esophagus sarcoma +12.3801375,MONDO:0002198,http://purl.obolibrary.org/obo/MONDO_0002198,vulvar glandular neoplasm +12.3801375,MONDO:0002772,http://purl.obolibrary.org/obo/MONDO_0002772,intraventricular meningioma +12.3801375,MONDO:0005350,http://purl.obolibrary.org/obo/MONDO_0005350,abdominal aortic aneurysm +12.3801375,MONDO:0005621,http://purl.obolibrary.org/obo/MONDO_0005621,vascular brain injury +12.3801375,MONDO:0005922,http://purl.obolibrary.org/obo/MONDO_0005922,pleural tuberculosis +12.3801375,MONDO:0006410,http://purl.obolibrary.org/obo/MONDO_0006410,simple endometrial hyperplasia +12.3801375,MONDO:0007097,http://purl.obolibrary.org/obo/MONDO_0007097,Finnish type amyloidosis +12.3801375,MONDO:0007124,http://purl.obolibrary.org/obo/MONDO_0007124,ankyloblepharon-ectodermal defects-cleft lip/palate syndrome +12.3801375,MONDO:0008720,http://purl.obolibrary.org/obo/MONDO_0008720,congenital isolated adrenocorticotropic hormone deficiency +12.3801375,MONDO:0009254,http://purl.obolibrary.org/obo/MONDO_0009254,fucosidosis +12.3801375,MONDO:0009820,http://purl.obolibrary.org/obo/MONDO_0009820,osteoporosis-pseudoglioma syndrome +12.3801375,MONDO:0010089,http://purl.obolibrary.org/obo/MONDO_0010089,isolated sulfite oxidase deficiency +12.3801375,MONDO:0010952,http://purl.obolibrary.org/obo/MONDO_0010952,hereditary hyperferritinemia with congenital cataracts +12.3801375,MONDO:0011469,http://purl.obolibrary.org/obo/MONDO_0011469,congenital amegakaryocytic thrombocytopenia +12.3801375,MONDO:0011634,http://purl.obolibrary.org/obo/MONDO_0011634,rippling muscle disease +12.3801375,MONDO:0015624,http://purl.obolibrary.org/obo/MONDO_0015624,diazoxide-sensitive diffuse hyperinsulinism +12.3801375,MONDO:0018154,http://purl.obolibrary.org/obo/MONDO_0018154,Madelung deformity +12.3801375,MONDO:0020369,http://purl.obolibrary.org/obo/MONDO_0020369,Chandler syndrome +12.3801375,NCBITaxon:11306,http://purl.obolibrary.org/obo/NCBITaxon_11306,none +12.3801375,NCBITaxon:11865,http://purl.obolibrary.org/obo/NCBITaxon_11865,none +12.3801375,NCBITaxon:12235,http://purl.obolibrary.org/obo/NCBITaxon_12235,none +12.3801375,NCBITaxon:223997,http://purl.obolibrary.org/obo/NCBITaxon_223997,none +12.3801375,NCBITaxon:2371,http://purl.obolibrary.org/obo/NCBITaxon_2371,none +12.3801375,NCBITaxon:2560078,http://purl.obolibrary.org/obo/NCBITaxon_2560078,none +12.3801375,NCBITaxon:261007,http://purl.obolibrary.org/obo/NCBITaxon_261007,none +12.3801375,NCBITaxon:262150,http://purl.obolibrary.org/obo/NCBITaxon_262150,none +12.3801375,NCBITaxon:4410,http://purl.obolibrary.org/obo/NCBITaxon_4410,none +12.3801375,NCBITaxon:523721,http://purl.obolibrary.org/obo/NCBITaxon_523721,none +12.3801375,NCBITaxon:523864,http://purl.obolibrary.org/obo/NCBITaxon_523864,none +12.3801375,NCBITaxon:524420,http://purl.obolibrary.org/obo/NCBITaxon_524420,none +12.3801375,NCBITaxon:55086,http://purl.obolibrary.org/obo/NCBITaxon_55086,none +12.3801375,NCBITaxon:55087,http://purl.obolibrary.org/obo/NCBITaxon_55087,none +12.3801375,NCBITaxon:6201,http://purl.obolibrary.org/obo/NCBITaxon_6201,Cyclophyllidea +12.3801375,NCBITaxon:8111,http://purl.obolibrary.org/obo/NCBITaxon_8111,Perciformes +12.3801375,PR:000000163,http://purl.obolibrary.org/obo/PR_000000163,BMP10 +12.3801375,PR:000001235,http://purl.obolibrary.org/obo/PR_000001235,adhesion G protein-coupled receptor L3 +12.3801375,PR:000001381,http://purl.obolibrary.org/obo/PR_000001381,interleukin-2 receptor subunit beta +12.3801375,PR:000003730,http://purl.obolibrary.org/obo/PR_000003730,a disintegrin and metalloproteinase with thrombospondin motifs 2 +12.3801375,PR:000003762,http://purl.obolibrary.org/obo/PR_000003762,pituitary adenylate cyclase-activating polypeptide type I receptor +12.3801375,PR:000003793,http://purl.obolibrary.org/obo/PR_000003793,proteasomal ubiquitin receptor ADRM1 +12.3801375,PR:000004018,http://purl.obolibrary.org/obo/PR_000004018,anaphase-promoting complex subunit 5 +12.3801375,PR:000005386,http://purl.obolibrary.org/obo/PR_000005386,cofilin-2 +12.3801375,PR:000006497,http://purl.obolibrary.org/obo/PR_000006497,dixin +12.3801375,PR:000007471,http://purl.obolibrary.org/obo/PR_000007471,fibrinogen alpha chain +12.3801375,PR:000007612,http://purl.obolibrary.org/obo/PR_000007612,forkhead box protein D4 +12.3801375,PR:000007911,http://purl.obolibrary.org/obo/PR_000007911,guanine deaminase +12.3801375,PR:000008096,http://purl.obolibrary.org/obo/PR_000008096,guanine nucleotide-binding protein subunit beta-like protein 1 +12.3801375,PR:000008229,http://purl.obolibrary.org/obo/PR_000008229,grainyhead-like protein 1 +12.3801375,PR:000009298,http://purl.obolibrary.org/obo/PR_000009298,kinesin-like protein KIF20A +12.3801375,PR:000009813,http://purl.obolibrary.org/obo/PR_000009813,lens fiber membrane intrinsic protein +12.3801375,PR:000010001,http://purl.obolibrary.org/obo/PR_000010001,protein lyl-1 +12.3801375,PR:000010043,http://purl.obolibrary.org/obo/PR_000010043,E3 ubiquitin-protein transferase MAEA +12.3801375,PR:000010434,http://purl.obolibrary.org/obo/PR_000010434,Meckel syndrome type 1 protein +12.3801375,PR:000010957,http://purl.obolibrary.org/obo/PR_000010957,NEDD8-activating enzyme E1 regulatory subunit +12.3801375,PR:000011203,http://purl.obolibrary.org/obo/PR_000011203,NHP2-like protein 1 +12.3801375,PR:000011648,http://purl.obolibrary.org/obo/PR_000011648,oligophrenin-1 +12.3801375,PR:000012323,http://purl.obolibrary.org/obo/PR_000012323,lymphokine-activated killer T-cell-originated protein kinase +12.3801375,PR:000012727,http://purl.obolibrary.org/obo/PR_000012727,phosphoinositide 3-kinase regulatory subunit 4 +12.3801375,PR:000013019,http://purl.obolibrary.org/obo/PR_000013019,protein O-mannosyl-transferase 2 +12.3801375,PR:000013759,http://purl.obolibrary.org/obo/PR_000013759,RAS guanyl-releasing protein 2 +12.3801375,PR:000013764,http://purl.obolibrary.org/obo/PR_000013764,Ras association domain-containing protein 2 +12.3801375,PR:000013953,http://purl.obolibrary.org/obo/PR_000013953,regulator of G-protein signaling 19 +12.3801375,PR:000013985,http://purl.obolibrary.org/obo/PR_000013985,mitochondrial Rho GTPase 1 +12.3801375,PR:000014256,http://purl.obolibrary.org/obo/PR_000014256,40S ribosomal protein S15 +12.3801375,PR:000014922,http://purl.obolibrary.org/obo/PR_000014922,solute carrier family 10 member 6 +12.3801375,PR:000015408,http://purl.obolibrary.org/obo/PR_000015408,sorbin and SH3 domain-containing protein 2 +12.3801375,PR:000016807,http://purl.obolibrary.org/obo/PR_000016807,tubulin alpha-1A chain +12.3801375,PR:000022154,http://purl.obolibrary.org/obo/PR_000022154,none +12.3801375,PR:000023895,http://purl.obolibrary.org/obo/PR_000023895,none +12.3801375,PR:000031091,http://purl.obolibrary.org/obo/PR_000031091,CST complex subunit CTC1 +12.3801375,PR:000032150,http://purl.obolibrary.org/obo/PR_000032150,1-acylglycerol-3-phosphate O-acyltransferase ABHD5 +12.3801375,PR:000049990,http://purl.obolibrary.org/obo/PR_000049990,cytochrome P450 2A +12.3801375,PR:P0A3H5,http://purl.obolibrary.org/obo/PR_P0A3H5,none +12.3801375,PR:P23542,http://purl.obolibrary.org/obo/PR_P23542,none +12.3801375,PR:P34537,http://purl.obolibrary.org/obo/PR_P34537,none +12.3801375,PR:P82280,http://purl.obolibrary.org/obo/PR_P82280,none +12.3801375,PR:Q06596,http://purl.obolibrary.org/obo/PR_Q06596,none +12.3801375,PR:Q08558,http://purl.obolibrary.org/obo/PR_Q08558,none +12.3801375,PR:Q9XIM0,http://purl.obolibrary.org/obo/PR_Q9XIM0,none +12.3801375,SO:0000766,http://purl.obolibrary.org/obo/SO_0000766,pyrrolysyl_tRNA +12.3801375,SO:0000819,http://purl.obolibrary.org/obo/SO_0000819,mitochondrial_chromosome +12.3801375,SO:0001506,http://purl.obolibrary.org/obo/SO_0001506,variant_genome +12.3801375,UBERON:0004032,http://purl.obolibrary.org/obo/UBERON_0004032,podocyte slit diaphragm +12.3801375,UBERON:0004209,http://purl.obolibrary.org/obo/UBERON_0004209,renal vesicle +12.3801375,UBERON:0009746,http://purl.obolibrary.org/obo/UBERON_0009746,head fold of embryonic disc +12.3801375,UBERON:0011966,http://purl.obolibrary.org/obo/UBERON_0011966,manubriosternal joint +12.3801375,UBERON:0012349,http://purl.obolibrary.org/obo/UBERON_0012349,digital pad +12.3801375,UBERON:2007012,http://purl.obolibrary.org/obo/UBERON_2007012,lateral forebrain bundle +12.3801375,UBERON:3000903,http://purl.obolibrary.org/obo/UBERON_3000903,tibial crest +12.3905003,CHEBI:35868,http://purl.obolibrary.org/obo/CHEBI_35868,hydroxy monocarboxylic acid +12.3905003,DRUGBANK:DB00090,http://purl.obolibrary.org/obo/DRUGBANK_DB00090,none +12.3905003,DRUGBANK:DB00239,http://purl.obolibrary.org/obo/DRUGBANK_DB00239,none +12.3905003,DRUGBANK:DB01260,http://purl.obolibrary.org/obo/DRUGBANK_DB01260,none +12.3905003,DRUGBANK:DB04512,http://purl.obolibrary.org/obo/DRUGBANK_DB04512,none +12.3905003,DRUGBANK:DB04646,http://purl.obolibrary.org/obo/DRUGBANK_DB04646,none +12.3905003,DRUGBANK:DB06713,http://purl.obolibrary.org/obo/DRUGBANK_DB06713,none +12.3905003,DRUGBANK:DB06821,http://purl.obolibrary.org/obo/DRUGBANK_DB06821,none +12.3905003,DRUGBANK:DB09308,http://purl.obolibrary.org/obo/DRUGBANK_DB09308,none +12.3905003,DRUGBANK:DB09488,http://purl.obolibrary.org/obo/DRUGBANK_DB09488,none +12.3905003,DRUGBANK:DB11812,http://purl.obolibrary.org/obo/DRUGBANK_DB11812,none +12.3905003,DRUGBANK:DB11940,http://purl.obolibrary.org/obo/DRUGBANK_DB11940,none +12.3905003,DRUGBANK:DB12267,http://purl.obolibrary.org/obo/DRUGBANK_DB12267,none +12.3905003,DRUGBANK:DB12407,http://purl.obolibrary.org/obo/DRUGBANK_DB12407,none +12.3905003,DRUGBANK:DB14039,http://purl.obolibrary.org/obo/DRUGBANK_DB14039,none +12.3905003,DRUGBANK:DB14064,http://purl.obolibrary.org/obo/DRUGBANK_DB14064,none +12.3905003,DRUGBANK:DB14284,http://purl.obolibrary.org/obo/DRUGBANK_DB14284,none +12.3905003,GO:0003401,http://purl.obolibrary.org/obo/GO_0003401,axis elongation +12.3905003,GO:0004353,http://purl.obolibrary.org/obo/GO_0004353,glutamate dehydrogenase [NAD(P)+] activity +12.3905003,GO:0004371,http://purl.obolibrary.org/obo/GO_0004371,glycerone kinase activity +12.3905003,GO:0005960,http://purl.obolibrary.org/obo/GO_0005960,glycine cleavage complex +12.3905003,GO:0006195,http://purl.obolibrary.org/obo/GO_0006195,purine nucleotide catabolic process +12.3905003,GO:0007280,http://purl.obolibrary.org/obo/GO_0007280,pole cell migration +12.3905003,GO:0010576,http://purl.obolibrary.org/obo/GO_0010576,none +12.3905003,GO:0015049,http://purl.obolibrary.org/obo/GO_0015049,methane monooxygenase activity +12.3905003,GO:0015744,http://purl.obolibrary.org/obo/GO_0015744,succinate transport +12.3905003,GO:0016625,http://purl.obolibrary.org/obo/GO_0016625,"oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor" +12.3905003,GO:0016838,http://purl.obolibrary.org/obo/GO_0016838,"carbon-oxygen lyase activity, acting on phosphates" +12.3905003,GO:0030491,http://purl.obolibrary.org/obo/GO_0030491,heteroduplex formation +12.3905003,GO:0032411,http://purl.obolibrary.org/obo/GO_0032411,positive regulation of transporter activity +12.3905003,GO:0033061,http://purl.obolibrary.org/obo/GO_0033061,DNA recombinase mediator complex +12.3905003,GO:0034764,http://purl.obolibrary.org/obo/GO_0034764,positive regulation of transmembrane transport +12.3905003,GO:0038025,http://purl.obolibrary.org/obo/GO_0038025,reelin receptor activity +12.3905003,GO:0044807,http://purl.obolibrary.org/obo/GO_0044807,macrophage migration inhibitory factor production +12.3905003,GO:0047256,http://purl.obolibrary.org/obo/GO_0047256,"lactosylceramide 1,3-N-acetyl-beta-D-glucosaminyltransferase activity" +12.3905003,GO:0051414,http://purl.obolibrary.org/obo/GO_0051414,response to cortisol +12.3905003,GO:0052646,http://purl.obolibrary.org/obo/GO_0052646,alditol phosphate metabolic process +12.3905003,GO:0090306,http://purl.obolibrary.org/obo/GO_0090306,meiotic spindle assembly +12.3905003,GO:0106345,http://purl.obolibrary.org/obo/GO_0106345,glyoxylate reductase activity +12.3905003,GO:1990498,http://purl.obolibrary.org/obo/GO_1990498,mitotic spindle microtubule +12.3905003,GO:2000272,http://purl.obolibrary.org/obo/GO_2000272,negative regulation of signaling receptor activity +12.3905003,GO:2001222,http://purl.obolibrary.org/obo/GO_2001222,regulation of neuron migration +12.3905003,HP:0001931,http://purl.obolibrary.org/obo/HP_0001931,Hypochromic anemia +12.3905003,MONDO:0000751,http://purl.obolibrary.org/obo/MONDO_0000751,cervical polyp +12.3905003,MONDO:0000871,http://purl.obolibrary.org/obo/MONDO_0000871,T-cell childhood acute lymphocytic leukemia +12.3905003,MONDO:0006755,http://purl.obolibrary.org/obo/MONDO_0006755,euthyroid sick syndrome +12.3905003,MONDO:0014448,http://purl.obolibrary.org/obo/MONDO_0014448,"hyperthyroxinemia, familial dysalbuminemic" +12.3905003,MONDO:0017029,http://purl.obolibrary.org/obo/MONDO_0017029,Langerhans cell histiocytosis specific to adulthood +12.3905003,MONDO:0018597,http://purl.obolibrary.org/obo/MONDO_0018597,plastic bronchitis +12.3905003,MONDO:0020466,http://purl.obolibrary.org/obo/MONDO_0020466,monosomy X +12.3905003,MONDO:0021952,http://purl.obolibrary.org/obo/MONDO_0021952,autoimmune progesterone dermatitis +12.3905003,MONDO:0024336,http://purl.obolibrary.org/obo/MONDO_0024336,vulvar adenocarcinoma +12.3905003,NCBITaxon:11006,http://purl.obolibrary.org/obo/NCBITaxon_11006,none +12.3905003,NCBITaxon:1578,http://purl.obolibrary.org/obo/NCBITaxon_1578,none +12.3905003,NCBITaxon:180170,http://purl.obolibrary.org/obo/NCBITaxon_180170,none +12.3905003,NCBITaxon:336871,http://purl.obolibrary.org/obo/NCBITaxon_336871,none +12.3905003,NCBITaxon:39030,http://purl.obolibrary.org/obo/NCBITaxon_39030,Apodemus agrarius +12.3905003,NCBITaxon:650418,http://purl.obolibrary.org/obo/NCBITaxon_650418,none +12.3905003,NCBITaxon:6682,http://purl.obolibrary.org/obo/NCBITaxon_6682,Eucarida +12.3905003,NCBITaxon:6683,http://purl.obolibrary.org/obo/NCBITaxon_6683,Decapoda +12.3905003,NCBITaxon:89463,http://purl.obolibrary.org/obo/NCBITaxon_89463,none +12.3905003,PR:000001434,http://purl.obolibrary.org/obo/PR_000001434,none +12.3905003,PR:000003324,http://purl.obolibrary.org/obo/PR_000003324,suppressor of fused homolog +12.3905003,PR:000003533,http://purl.obolibrary.org/obo/PR_000003533,cilia- and flagella-associated protein 91 +12.3905003,PR:000004186,http://purl.obolibrary.org/obo/PR_000004186,aquaporin-6 +12.3905003,PR:000004946,http://purl.obolibrary.org/obo/PR_000004946,voltage-dependent L-type calcium channel subunit beta-1 +12.3905003,PR:000005363,http://purl.obolibrary.org/obo/PR_000005363,ceramide kinase +12.3905003,PR:000005556,http://purl.obolibrary.org/obo/PR_000005556,claudin-8 +12.3905003,PR:000005731,http://purl.obolibrary.org/obo/PR_000005731,catechol O-methyltransferase +12.3905003,PR:000005943,http://purl.obolibrary.org/obo/PR_000005943,casein kinase I isoform alpha +12.3905003,PR:000006358,http://purl.obolibrary.org/obo/PR_000006358,ATP-dependent RNA helicase DDX19B +12.3905003,PR:000006382,http://purl.obolibrary.org/obo/PR_000006382,beta-defensin 104 +12.3905003,PR:000007763,http://purl.obolibrary.org/obo/PR_000007763,GA-binding protein alpha chain +12.3905003,PR:000008479,http://purl.obolibrary.org/obo/PR_000008479,polyamine deacetylase HDAC10 +12.3905003,PR:000009682,http://purl.obolibrary.org/obo/PR_000009682,ceramide synthase 6 +12.3905003,PR:000009825,http://purl.obolibrary.org/obo/PR_000009825,protein lin-7 homolog A +12.3905003,PR:000010082,http://purl.obolibrary.org/obo/PR_000010082,MAGE-like protein 2 +12.3905003,PR:000010232,http://purl.obolibrary.org/obo/PR_000010232,colorectal mutant cancer protein +12.3905003,PR:000010420,http://purl.obolibrary.org/obo/PR_000010420,protein MIS12 +12.3905003,PR:000011211,http://purl.obolibrary.org/obo/PR_000011211,serine/threonine-protein kinase NIM1 +12.3905003,PR:000011296,http://purl.obolibrary.org/obo/PR_000011296,neuronatin +12.3905003,PR:000012342,http://purl.obolibrary.org/obo/PR_000012342,protocadherin-10 +12.3905003,PR:000012519,http://purl.obolibrary.org/obo/PR_000012519,sister chromatid cohesion protein PDS5 homolog A +12.3905003,PR:000012623,http://purl.obolibrary.org/obo/PR_000012623,membrane-associated progesterone receptor component 2 +12.3905003,PR:000012929,http://purl.obolibrary.org/obo/PR_000012929,paraneoplastic antigen Ma1 +12.3905003,PR:000012937,http://purl.obolibrary.org/obo/PR_000012937,phenylethanolamine N-methyltransferase +12.3905003,PR:000013230,http://purl.obolibrary.org/obo/PR_000013230,cAMP-dependent protein kinase type II-alpha regulatory subunit +12.3905003,PR:000014619,http://purl.obolibrary.org/obo/PR_000014619,semaphorin-3E +12.3905003,PR:000016436,http://purl.obolibrary.org/obo/PR_000016436,meckelin +12.3905003,PR:000017526,http://purl.obolibrary.org/obo/PR_000017526,Y-box-binding protein 2 +12.3905003,PR:000022046,http://purl.obolibrary.org/obo/PR_000022046,none +12.3905003,PR:000022092,http://purl.obolibrary.org/obo/PR_000022092,none +12.3905003,PR:000032260,http://purl.obolibrary.org/obo/PR_000032260,N-lysine methyltransferase SMYD2 +12.3905003,PR:000041443,http://purl.obolibrary.org/obo/PR_000041443,none +12.3905003,PR:O13775,http://purl.obolibrary.org/obo/PR_O13775,none +12.3905003,PR:P07334,http://purl.obolibrary.org/obo/PR_P07334,none +12.3905003,PR:P32494,http://purl.obolibrary.org/obo/PR_P32494,none +12.3905003,PR:P34137,http://purl.obolibrary.org/obo/PR_P34137,none +12.3905003,PR:Q9SI37,http://purl.obolibrary.org/obo/PR_Q9SI37,none +12.3905003,UBERON:0001680,http://purl.obolibrary.org/obo/UBERON_0001680,lacrimal bone +12.3905003,UBERON:0006581,http://purl.obolibrary.org/obo/UBERON_0006581,mantle muscle +12.3905003,UBERON:0015857,http://purl.obolibrary.org/obo/UBERON_0015857,parotid lymph node +12.3905003,UBERON:0018261,http://purl.obolibrary.org/obo/UBERON_0018261,muscular coat of digestive tract +12.3905003,UBERON:0018393,http://purl.obolibrary.org/obo/UBERON_0018393,low-pressure baroreceptor +12.3905003,UBERON:0018606,http://purl.obolibrary.org/obo/UBERON_0018606,molar tooth 2 +12.3905003,UBERON:2005085,http://purl.obolibrary.org/obo/UBERON_2005085,nasal artery +12.3905003,UBERON:2005170,http://purl.obolibrary.org/obo/UBERON_2005170,extrahepatic duct +12.4009716,CHEBI:26217,http://purl.obolibrary.org/obo/CHEBI_26217,potassium molecular entity +12.4009716,CHEBI:26218,http://purl.obolibrary.org/obo/CHEBI_26218,potassium salt +12.4009716,CHEBI:53225,http://purl.obolibrary.org/obo/CHEBI_53225,poly(alkylene) macromolecule +12.4009716,DRUGBANK:DB02127,http://purl.obolibrary.org/obo/DRUGBANK_DB02127,none +12.4009716,DRUGBANK:DB02249,http://purl.obolibrary.org/obo/DRUGBANK_DB02249,none +12.4009716,DRUGBANK:DB04545,http://purl.obolibrary.org/obo/DRUGBANK_DB04545,none +12.4009716,DRUGBANK:DB06410,http://purl.obolibrary.org/obo/DRUGBANK_DB06410,none +12.4009716,DRUGBANK:DB06415,http://purl.obolibrary.org/obo/DRUGBANK_DB06415,none +12.4009716,DRUGBANK:DB11264,http://purl.obolibrary.org/obo/DRUGBANK_DB11264,none +12.4009716,DRUGBANK:DB11715,http://purl.obolibrary.org/obo/DRUGBANK_DB11715,none +12.4009716,DRUGBANK:DB13244,http://purl.obolibrary.org/obo/DRUGBANK_DB13244,none +12.4009716,DRUGBANK:DB13262,http://purl.obolibrary.org/obo/DRUGBANK_DB13262,none +12.4009716,DRUGBANK:DB13277,http://purl.obolibrary.org/obo/DRUGBANK_DB13277,none +12.4009716,DRUGBANK:DB13814,http://purl.obolibrary.org/obo/DRUGBANK_DB13814,none +12.4009716,DRUGBANK:DB14540,http://purl.obolibrary.org/obo/DRUGBANK_DB14540,none +12.4009716,DRUGBANK:DB14590,http://purl.obolibrary.org/obo/DRUGBANK_DB14590,none +12.4009716,DRUGBANK:DB15542,http://purl.obolibrary.org/obo/DRUGBANK_DB15542,none +12.4009716,GO:0004314,http://purl.obolibrary.org/obo/GO_0004314,[acyl-carrier-protein] S-malonyltransferase activity +12.4009716,GO:0005854,http://purl.obolibrary.org/obo/GO_0005854,nascent polypeptide-associated complex +12.4009716,GO:0005899,http://purl.obolibrary.org/obo/GO_0005899,insulin receptor complex +12.4009716,GO:0005979,http://purl.obolibrary.org/obo/GO_0005979,regulation of glycogen biosynthetic process +12.4009716,GO:0006571,http://purl.obolibrary.org/obo/GO_0006571,tyrosine biosynthetic process +12.4009716,GO:0006942,http://purl.obolibrary.org/obo/GO_0006942,regulation of striated muscle contraction +12.4009716,GO:0008797,http://purl.obolibrary.org/obo/GO_0008797,aspartate ammonia-lyase activity +12.4009716,GO:0009527,http://purl.obolibrary.org/obo/GO_0009527,plastid outer membrane +12.4009716,GO:0009593,http://purl.obolibrary.org/obo/GO_0009593,detection of chemical stimulus +12.4009716,GO:0014047,http://purl.obolibrary.org/obo/GO_0014047,glutamate secretion +12.4009716,GO:0016419,http://purl.obolibrary.org/obo/GO_0016419,S-malonyltransferase activity +12.4009716,GO:0031167,http://purl.obolibrary.org/obo/GO_0031167,rRNA methylation +12.4009716,GO:0038122,http://purl.obolibrary.org/obo/GO_0038122,C-C motif chemokine 5 receptor activity +12.4009716,GO:0038159,http://purl.obolibrary.org/obo/GO_0038159,C-X-C chemokine receptor CXCR4 signaling pathway +12.4009716,GO:0040020,http://purl.obolibrary.org/obo/GO_0040020,regulation of meiotic nuclear division +12.4009716,GO:0045806,http://purl.obolibrary.org/obo/GO_0045806,negative regulation of endocytosis +12.4009716,GO:0050253,http://purl.obolibrary.org/obo/GO_0050253,retinyl-palmitate esterase activity +12.4009716,GO:1903998,http://purl.obolibrary.org/obo/GO_1903998,regulation of eating behavior +12.4009716,HP:0002624,http://purl.obolibrary.org/obo/HP_0002624,Abnormal venous morphology +12.4009716,MONDO:0001910,http://purl.obolibrary.org/obo/MONDO_0001910,ochronosis disorder +12.4009716,MONDO:0002128,http://purl.obolibrary.org/obo/MONDO_0002128,mononeuritis multiplex +12.4009716,MONDO:0002630,http://purl.obolibrary.org/obo/MONDO_0002630,small cell osteogenic sarcoma +12.4009716,MONDO:0003340,http://purl.obolibrary.org/obo/MONDO_0003340,malignant glomus tumor +12.4009716,MONDO:0003607,http://purl.obolibrary.org/obo/MONDO_0003607,neuritis of upper limb +12.4009716,MONDO:0012999,http://purl.obolibrary.org/obo/MONDO_0012999,guanidinoacetate methyltransferase deficiency +12.4009716,MONDO:0015713,http://purl.obolibrary.org/obo/MONDO_0015713,idiopathic central precocious puberty +12.4009716,MONDO:0016724,http://purl.obolibrary.org/obo/MONDO_0016724,papillary tumor of the pineal region +12.4009716,MONDO:0016727,http://purl.obolibrary.org/obo/MONDO_0016727,extraventricular neurocytoma +12.4009716,MONDO:0017779,http://purl.obolibrary.org/obo/MONDO_0017779,alpha-N-acetylgalactosaminidase deficiency +12.4009716,MONDO:0018673,http://purl.obolibrary.org/obo/MONDO_0018673,IgG4-related pachymeningitis +12.4009716,MONDO:0018892,http://purl.obolibrary.org/obo/MONDO_0018892,Wyburn-Mason syndrome +12.4009716,MONDO:0019284,http://purl.obolibrary.org/obo/MONDO_0019284,inherited isolated nail anomaly +12.4009716,MONDO:0020182,http://purl.obolibrary.org/obo/MONDO_0020182,palpebral tumor with a vascular malformation +12.4009716,MONDO:0021902,http://purl.obolibrary.org/obo/MONDO_0021902,aortopulmonary window +12.4009716,MONDO:0040674,http://purl.obolibrary.org/obo/MONDO_0040674,orgasm disorder +12.4009716,MONDO:0043985,http://purl.obolibrary.org/obo/MONDO_0043985,central nervous system lupus +12.4009716,NCBITaxon:10654,http://purl.obolibrary.org/obo/NCBITaxon_10654,none +12.4009716,NCBITaxon:11591,http://purl.obolibrary.org/obo/NCBITaxon_11591,none +12.4009716,NCBITaxon:1511891,http://purl.obolibrary.org/obo/NCBITaxon_1511891,none +12.4009716,NCBITaxon:187212,http://purl.obolibrary.org/obo/NCBITaxon_187212,none +12.4009716,NCBITaxon:1922209,http://purl.obolibrary.org/obo/NCBITaxon_1922209,none +12.4009716,NCBITaxon:1986491,http://purl.obolibrary.org/obo/NCBITaxon_1986491,none +12.4009716,NCBITaxon:2499403,http://purl.obolibrary.org/obo/NCBITaxon_2499403,Tornidovirineae +12.4009716,NCBITaxon:2508209,http://purl.obolibrary.org/obo/NCBITaxon_2508209,Tobaniviridae +12.4009716,NCBITaxon:6692,http://purl.obolibrary.org/obo/NCBITaxon_6692,Pleocyemata +12.4009716,NCBITaxon:691956,http://purl.obolibrary.org/obo/NCBITaxon_691956,Avihepatovirus A +12.4009716,NCBITaxon:694017,http://purl.obolibrary.org/obo/NCBITaxon_694017,Torovirinae +12.4009716,NCBITaxon:7375,http://purl.obolibrary.org/obo/NCBITaxon_7375,none +12.4009716,NCBITaxon:8354,http://purl.obolibrary.org/obo/NCBITaxon_8354,none +12.4009716,PR:000001634,http://purl.obolibrary.org/obo/PR_000001634,orexin receptor type 2 +12.4009716,PR:000001956,http://purl.obolibrary.org/obo/PR_000001956,tumor necrosis factor receptor superfamily member 13B +12.4009716,PR:000002119,http://purl.obolibrary.org/obo/PR_000002119,voltage-dependent R-type calcium channel subunit alpha-1E +12.4009716,PR:000002181,http://purl.obolibrary.org/obo/PR_000002181,26S proteasome non-ATPase regulatory subunit 4 +12.4009716,PR:000003236,http://purl.obolibrary.org/obo/PR_000003236,14-3-3 protein zeta/delta +12.4009716,PR:000004179,http://purl.obolibrary.org/obo/PR_000004179,aquaporin-11 +12.4009716,PR:000004292,http://purl.obolibrary.org/obo/PR_000004292,ADP-ribosylation factor-like protein 6-interacting protein 4 +12.4009716,PR:000004877,http://purl.obolibrary.org/obo/PR_000004877,"complement component 1 Q subcomponent-binding protein, mitochondrial" +12.4009716,PR:000005108,http://purl.obolibrary.org/obo/PR_000005108,coiled-coil alpha-helical rod protein 1 +12.4009716,PR:000005174,http://purl.obolibrary.org/obo/PR_000005174,CD5 molecule-like +12.4009716,PR:000005407,http://purl.obolibrary.org/obo/PR_000005407,chromodomain-helicase-DNA-binding protein 1-like +12.4009716,PR:000005796,http://purl.obolibrary.org/obo/PR_000005796,carboxypeptidase A2 +12.4009716,PR:000005962,http://purl.obolibrary.org/obo/PR_000005962,cystatin-SN +12.4009716,PR:000007281,http://purl.obolibrary.org/obo/PR_000007281,none +12.4009716,PR:000007849,http://purl.obolibrary.org/obo/PR_000007849,growth arrest-specific protein 2 +12.4009716,PR:000007954,http://purl.obolibrary.org/obo/PR_000007954,ADP-ribosylation factor-binding protein GGA3 +12.4009716,PR:000008650,http://purl.obolibrary.org/obo/PR_000008650,jupiter microtubule associated homolog 1 +12.4009716,PR:000009034,http://purl.obolibrary.org/obo/PR_000009034,inhibitor of growth protein 2 +12.4009716,PR:000009347,http://purl.obolibrary.org/obo/PR_000009347,klotho +12.4009716,PR:000009614,http://purl.obolibrary.org/obo/PR_000009614,none +12.4009716,PR:000010780,http://purl.obolibrary.org/obo/PR_000010780,"muscle, skeletal receptor tyrosine-protein kinase" +12.4009716,PR:000011368,http://purl.obolibrary.org/obo/PR_000011368,N-acetylneuraminate lyase +12.4009716,PR:000012208,http://purl.obolibrary.org/obo/PR_000012208,polyadenylate-binding protein 4 +12.4009716,PR:000012668,http://purl.obolibrary.org/obo/PR_000012668,PH domain leucine-rich repeat-containing protein phosphatase 2 +12.4009716,PR:000012819,http://purl.obolibrary.org/obo/PR_000012819,placenta-specific gene 8 protein +12.4009716,PR:000012993,http://purl.obolibrary.org/obo/PR_000012993,DNA-directed RNA polymerase II subunit RPB7 +12.4009716,PR:000013347,http://purl.obolibrary.org/obo/PR_000013347,pregnancy-specific beta-1-glycoprotein 1 +12.4009716,PR:000014679,http://purl.obolibrary.org/obo/PR_000014679,protein Z-dependent protease inhibitor +12.4009716,PR:000016366,http://purl.obolibrary.org/obo/PR_000016366,tight junction protein ZO-3 +12.4009716,PR:000016515,http://purl.obolibrary.org/obo/PR_000016515,transportin-3 +12.4009716,PR:000017268,http://purl.obolibrary.org/obo/PR_000017268,ventral anterior homeobox 1 +12.4009716,PR:000022048,http://purl.obolibrary.org/obo/PR_000022048,none +12.4009716,PR:000022063,http://purl.obolibrary.org/obo/PR_000022063,none +12.4009716,PR:000022335,http://purl.obolibrary.org/obo/PR_000022335,none +12.4009716,PR:000022666,http://purl.obolibrary.org/obo/PR_000022666,none +12.4009716,PR:000022874,http://purl.obolibrary.org/obo/PR_000022874,none +12.4009716,PR:000023335,http://purl.obolibrary.org/obo/PR_000023335,none +12.4009716,PR:000023970,http://purl.obolibrary.org/obo/PR_000023970,none +12.4009716,PR:000024226,http://purl.obolibrary.org/obo/PR_000024226,none +12.4009716,PR:000031318,http://purl.obolibrary.org/obo/PR_000031318,E3 ubiquitin-protein ligase TRIM22 +12.4009716,PR:000036067,http://purl.obolibrary.org/obo/PR_000036067,caspase-8 complex +12.4009716,PR:000044416,http://purl.obolibrary.org/obo/PR_000044416,none +12.4009716,PR:O45782,http://purl.obolibrary.org/obo/PR_O45782,none +12.4009716,PR:O45876,http://purl.obolibrary.org/obo/PR_O45876,none +12.4009716,PR:P32361,http://purl.obolibrary.org/obo/PR_P32361,none +12.4009716,PR:P92978,http://purl.obolibrary.org/obo/PR_P92978,none +12.4009716,PR:P93313,http://purl.obolibrary.org/obo/PR_P93313,none +12.4009716,PR:Q04739,http://purl.obolibrary.org/obo/PR_Q04739,none +12.4009716,PR:Q20574,http://purl.obolibrary.org/obo/PR_Q20574,none +12.4009716,PR:Q804T6,http://purl.obolibrary.org/obo/PR_Q804T6,none +12.4009716,PR:Q93V43,http://purl.obolibrary.org/obo/PR_Q93V43,none +12.4009716,SO:0000446,http://purl.obolibrary.org/obo/SO_0000446,UTR_intron +12.4009716,UBERON:0001109,http://purl.obolibrary.org/obo/UBERON_0001109,sternothyroid muscle +12.4009716,UBERON:0002831,http://purl.obolibrary.org/obo/UBERON_0002831,posteroventral cochlear nucleus +12.4009716,UBERON:0003122,http://purl.obolibrary.org/obo/UBERON_0003122,pharyngeal arch artery 5 +12.4009716,UBERON:0004202,http://purl.obolibrary.org/obo/UBERON_0004202,kidney outer medulla outer stripe +12.4009716,UBERON:0008885,http://purl.obolibrary.org/obo/UBERON_0008885,right putamen +12.4009716,UBERON:0012278,http://purl.obolibrary.org/obo/UBERON_0012278,gland of nasal mucosa +12.4009716,UBERON:0014567,http://purl.obolibrary.org/obo/UBERON_0014567,layer of hippocampal field +12.4009716,UBERON:0016458,http://purl.obolibrary.org/obo/UBERON_0016458,esophageal hiatus +12.4115537,CHEBI:29191,http://purl.obolibrary.org/obo/CHEBI_29191,hydroxyl +12.4115537,CHEBI:32630,http://purl.obolibrary.org/obo/CHEBI_32630,leucine residue +12.4115537,CHEBI:53226,http://purl.obolibrary.org/obo/CHEBI_53226,polyethylene macromolecule +12.4115537,CHEBI:53242,http://purl.obolibrary.org/obo/CHEBI_53242,vinyl polymer macromolecule +12.4115537,CHEBI:62887,http://purl.obolibrary.org/obo/CHEBI_62887,tankyrase inhibitor +12.4115537,CHEBI:64102,http://purl.obolibrary.org/obo/CHEBI_64102,AMPA receptor agonist +12.4115537,CHEBI:72768,http://purl.obolibrary.org/obo/CHEBI_72768,aryl hydrocarbon receptor agonist +12.4115537,CL:0000078,http://purl.obolibrary.org/obo/CL_0000078,peridermal cell +12.4115537,CL:0000846,http://purl.obolibrary.org/obo/CL_0000846,vestibular dark cell +12.4115537,DRUGBANK:DB03656,http://purl.obolibrary.org/obo/DRUGBANK_DB03656,none +12.4115537,DRUGBANK:DB05385,http://purl.obolibrary.org/obo/DRUGBANK_DB05385,none +12.4115537,DRUGBANK:DB05403,http://purl.obolibrary.org/obo/DRUGBANK_DB05403,none +12.4115537,DRUGBANK:DB08872,http://purl.obolibrary.org/obo/DRUGBANK_DB08872,none +12.4115537,DRUGBANK:DB09227,http://purl.obolibrary.org/obo/DRUGBANK_DB09227,none +12.4115537,DRUGBANK:DB12874,http://purl.obolibrary.org/obo/DRUGBANK_DB12874,none +12.4115537,DRUGBANK:DB13418,http://purl.obolibrary.org/obo/DRUGBANK_DB13418,none +12.4115537,DRUGBANK:DB13514,http://purl.obolibrary.org/obo/DRUGBANK_DB13514,none +12.4115537,DRUGBANK:DB13620,http://purl.obolibrary.org/obo/DRUGBANK_DB13620,none +12.4115537,DRUGBANK:DB14695,http://purl.obolibrary.org/obo/DRUGBANK_DB14695,none +12.4115537,DRUGBANK:DB15300,http://purl.obolibrary.org/obo/DRUGBANK_DB15300,none +12.4115537,GO:0006182,http://purl.obolibrary.org/obo/GO_0006182,cGMP biosynthetic process +12.4115537,GO:0008721,http://purl.obolibrary.org/obo/GO_0008721,D-serine ammonia-lyase activity +12.4115537,GO:0009735,http://purl.obolibrary.org/obo/GO_0009735,response to cytokinin +12.4115537,GO:0010029,http://purl.obolibrary.org/obo/GO_0010029,regulation of seed germination +12.4115537,GO:0015166,http://purl.obolibrary.org/obo/GO_0015166,polyol transmembrane transporter activity +12.4115537,GO:0016290,http://purl.obolibrary.org/obo/GO_0016290,palmitoyl-CoA hydrolase activity +12.4115537,GO:0016636,http://purl.obolibrary.org/obo/GO_0016636,"oxidoreductase activity, acting on the CH-CH group of donors, iron-sulfur protein as acceptor" +12.4115537,GO:0018849,http://purl.obolibrary.org/obo/GO_0018849,muconate cycloisomerase activity +12.4115537,GO:0031032,http://purl.obolibrary.org/obo/GO_0031032,actomyosin structure organization +12.4115537,GO:0032633,http://purl.obolibrary.org/obo/GO_0032633,interleukin-4 production +12.4115537,GO:0033772,http://purl.obolibrary.org/obo/GO_0033772,"flavonoid 3',5'-hydroxylase activity" +12.4115537,GO:0035266,http://purl.obolibrary.org/obo/GO_0035266,meristem growth +12.4115537,GO:0042793,http://purl.obolibrary.org/obo/GO_0042793,plastid transcription +12.4115537,GO:0042819,http://purl.obolibrary.org/obo/GO_0042819,vitamin B6 biosynthetic process +12.4115537,GO:0046471,http://purl.obolibrary.org/obo/GO_0046471,phosphatidylglycerol metabolic process +12.4115537,GO:0046500,http://purl.obolibrary.org/obo/GO_0046500,S-adenosylmethionine metabolic process +12.4115537,GO:0046834,http://purl.obolibrary.org/obo/GO_0046834,lipid phosphorylation +12.4115537,GO:0051541,http://purl.obolibrary.org/obo/GO_0051541,elastin metabolic process +12.4115537,GO:1905818,http://purl.obolibrary.org/obo/GO_1905818,regulation of chromosome separation +12.4115537,HP:0002861,http://purl.obolibrary.org/obo/HP_0002861,Melanoma +12.4115537,MONDO:0000005,http://purl.obolibrary.org/obo/MONDO_0000005,"alopecia, isolated" +12.4115537,MONDO:0001238,http://purl.obolibrary.org/obo/MONDO_0001238,polycythemia neonatorum +12.4115537,MONDO:0001863,http://purl.obolibrary.org/obo/MONDO_0001863,aorta atresia +12.4115537,MONDO:0004905,http://purl.obolibrary.org/obo/MONDO_0004905,intestinal disaccharidase deficiency +12.4115537,MONDO:0005507,http://purl.obolibrary.org/obo/MONDO_0005507,gingival cancer +12.4115537,MONDO:0006169,http://purl.obolibrary.org/obo/MONDO_0006169,complex endometrial hyperplasia +12.4115537,MONDO:0006685,http://purl.obolibrary.org/obo/MONDO_0006685,brain hypoxia - ischemia +12.4115537,MONDO:0009752,http://purl.obolibrary.org/obo/MONDO_0009752,"neuropathy, painful" +12.4115537,MONDO:0011638,http://purl.obolibrary.org/obo/MONDO_0011638,neuroferritinopathy +12.4115537,MONDO:0015149,http://purl.obolibrary.org/obo/MONDO_0015149,pure hereditary spastic paraplegia +12.4115537,MONDO:0016052,http://purl.obolibrary.org/obo/MONDO_0016052,atypical autism +12.4115537,MONDO:0017600,http://purl.obolibrary.org/obo/MONDO_0017600,hairy cell leukemia variant +12.4115537,MONDO:0021107,http://purl.obolibrary.org/obo/MONDO_0021107,narcolepsy +12.4115537,MONDO:0043300,http://purl.obolibrary.org/obo/MONDO_0043300,actinic cheilitis +12.4115537,MONDO:0400000,http://purl.obolibrary.org/obo/MONDO_0400000,small intestinal bacterial overgrowth +12.4115537,NCBITaxon:11020,http://purl.obolibrary.org/obo/NCBITaxon_11020,Barmah Forest virus +12.4115537,NCBITaxon:11099,http://purl.obolibrary.org/obo/NCBITaxon_11099,Bovine viral diarrhea virus 1 +12.4115537,NCBITaxon:11155,http://purl.obolibrary.org/obo/NCBITaxon_11155,Torovirus +12.4115537,NCBITaxon:12260,http://purl.obolibrary.org/obo/NCBITaxon_12260,none +12.4115537,NCBITaxon:142102,http://purl.obolibrary.org/obo/NCBITaxon_142102,none +12.4115537,NCBITaxon:1783257,http://purl.obolibrary.org/obo/NCBITaxon_1783257,PVC group +12.4115537,NCBITaxon:249589,http://purl.obolibrary.org/obo/NCBITaxon_249589,none +12.4115537,NCBITaxon:4420,http://purl.obolibrary.org/obo/NCBITaxon_4420,none +12.4115537,NCBITaxon:691955,http://purl.obolibrary.org/obo/NCBITaxon_691955,none +12.4115537,PR:000001188,http://purl.obolibrary.org/obo/PR_000001188,alpha-2C adrenergic receptor +12.4115537,PR:000001241,http://purl.obolibrary.org/obo/PR_000001241,neuromedin-B receptor +12.4115537,PR:000001546,http://purl.obolibrary.org/obo/PR_000001546,prolactin-releasing peptide receptor +12.4115537,PR:000001665,http://purl.obolibrary.org/obo/PR_000001665,psychosine receptor +12.4115537,PR:000003891,http://purl.obolibrary.org/obo/PR_000003891,A-kinase anchor protein 4 +12.4115537,PR:000004209,http://purl.obolibrary.org/obo/PR_000004209,brefeldin A-inhibited guanine nucleotide-exchange protein 1 +12.4115537,PR:000005035,http://purl.obolibrary.org/obo/PR_000005035,caspase recruitment domain-containing protein 14 +12.4115537,PR:000005810,http://purl.obolibrary.org/obo/PR_000005810,complexin-2 +12.4115537,PR:000008238,http://purl.obolibrary.org/obo/PR_000008238,"glutamate receptor ionotropic, delta-2" +12.4115537,PR:000008461,http://purl.obolibrary.org/obo/PR_000008461,hemoglobin subunit gamma-2 +12.4115537,PR:000009096,http://purl.obolibrary.org/obo/PR_000009096,Ras GTPase-activating-like protein IQGAP2 +12.4115537,PR:000010057,http://purl.obolibrary.org/obo/PR_000010057,melanoma-associated antigen 2 +12.4115537,PR:000010154,http://purl.obolibrary.org/obo/PR_000010154,mitogen-activated protein kinase 13 +12.4115537,PR:000011175,http://purl.obolibrary.org/obo/PR_000011175,nuclear factor 1 C-type +12.4115537,PR:000013017,http://purl.obolibrary.org/obo/PR_000013017,proteasome maturation protein +12.4115537,PR:000013126,http://purl.obolibrary.org/obo/PR_000013126,protein phosphatase 1 regulatory subunit 3C +12.4115537,PR:000013227,http://purl.obolibrary.org/obo/PR_000013227,5'-AMP-activated protein kinase subunit gamma-3 +12.4115537,PR:000013982,http://purl.obolibrary.org/obo/PR_000013982,Rho-related GTP-binding protein RhoH +12.4115537,PR:000015197,http://purl.obolibrary.org/obo/PR_000015197,solute carrier family 7 member 13 +12.4115537,PR:000016013,http://purl.obolibrary.org/obo/PR_000016013,transcriptional adapter 3 +12.4115537,PR:000022186,http://purl.obolibrary.org/obo/PR_000022186,none +12.4115537,PR:000022337,http://purl.obolibrary.org/obo/PR_000022337,none +12.4115537,PR:000022941,http://purl.obolibrary.org/obo/PR_000022941,none +12.4115537,PR:000024099,http://purl.obolibrary.org/obo/PR_000024099,none +12.4115537,PR:000030952,http://purl.obolibrary.org/obo/PR_000030952,kelch domain-containing protein 8B +12.4115537,PR:P0CY34,http://purl.obolibrary.org/obo/PR_P0CY34,none +12.4115537,PR:P11146,http://purl.obolibrary.org/obo/PR_P11146,none +12.4115537,PR:P20791,http://purl.obolibrary.org/obo/PR_P20791,none +12.4115537,PR:P26952,http://purl.obolibrary.org/obo/PR_P26952,none +12.4115537,PR:P32800,http://purl.obolibrary.org/obo/PR_P32800,none +12.4115537,PR:P46248,http://purl.obolibrary.org/obo/PR_P46248,none +12.4115537,PR:Q39231,http://purl.obolibrary.org/obo/PR_Q39231,none +12.4115537,PR:Q8H1Z0,http://purl.obolibrary.org/obo/PR_Q8H1Z0,none +12.4115537,PR:Q8LPK5,http://purl.obolibrary.org/obo/PR_Q8LPK5,none +12.4115537,SO:0000258,http://purl.obolibrary.org/obo/SO_0000258,cysteinyl_tRNA +12.4115537,SO:0000327,http://purl.obolibrary.org/obo/SO_0000327,coding_end +12.4115537,SO:0001216,http://purl.obolibrary.org/obo/SO_0001216,endonuclease_spliced_intron +12.4115537,UBERON:0002353,http://purl.obolibrary.org/obo/UBERON_0002353,bundle of His +12.4115537,UBERON:0002445,http://purl.obolibrary.org/obo/UBERON_0002445,ulnare +12.4115537,UBERON:0002989,http://purl.obolibrary.org/obo/UBERON_0002989,anconeus muscle +12.4115537,UBERON:0003448,http://purl.obolibrary.org/obo/UBERON_0003448,manus nerve +12.4115537,UBERON:0004690,http://purl.obolibrary.org/obo/UBERON_0004690,pancreaticoduodenal vein +12.4115537,UBERON:0010396,http://purl.obolibrary.org/obo/UBERON_0010396,afferent lymphatic vessel +12.4115537,UBERON:0011050,http://purl.obolibrary.org/obo/UBERON_0011050,thoracic vertebra 8 +12.4115537,UBERON:0011392,http://purl.obolibrary.org/obo/UBERON_0011392,blood vessel internal elastic membrane +12.422249,CHEBI:26513,http://purl.obolibrary.org/obo/CHEBI_26513,quinolines +12.422249,CHEBI:27570,http://purl.obolibrary.org/obo/CHEBI_27570,histidine +12.422249,CHEBI:32627,http://purl.obolibrary.org/obo/CHEBI_32627,leucinate +12.422249,CHEBI:38337,http://purl.obolibrary.org/obo/CHEBI_38337,pyrimidone +12.422249,CHEBI:39418,http://purl.obolibrary.org/obo/CHEBI_39418,straight-chain saturated fatty acid +12.422249,CHEBI:50630,http://purl.obolibrary.org/obo/CHEBI_50630,cyclooxygenase 1 inhibitor +12.422249,CL:1001225,http://purl.obolibrary.org/obo/CL_1001225,kidney collecting duct cell +12.422249,CL:2000005,http://purl.obolibrary.org/obo/CL_2000005,brain macroglial cell +12.422249,DRUGBANK:DB00511,http://purl.obolibrary.org/obo/DRUGBANK_DB00511,none +12.422249,DRUGBANK:DB00691,http://purl.obolibrary.org/obo/DRUGBANK_DB00691,none +12.422249,DRUGBANK:DB02406,http://purl.obolibrary.org/obo/DRUGBANK_DB02406,none +12.422249,DRUGBANK:DB03700,http://purl.obolibrary.org/obo/DRUGBANK_DB03700,none +12.422249,DRUGBANK:DB04380,http://purl.obolibrary.org/obo/DRUGBANK_DB04380,none +12.422249,DRUGBANK:DB08848,http://purl.obolibrary.org/obo/DRUGBANK_DB08848,none +12.422249,DRUGBANK:DB09049,http://purl.obolibrary.org/obo/DRUGBANK_DB09049,none +12.422249,DRUGBANK:DB09539,http://purl.obolibrary.org/obo/DRUGBANK_DB09539,none +12.422249,DRUGBANK:DB10867,http://purl.obolibrary.org/obo/DRUGBANK_DB10867,none +12.422249,DRUGBANK:DB11131,http://purl.obolibrary.org/obo/DRUGBANK_DB11131,none +12.422249,DRUGBANK:DB11396,http://purl.obolibrary.org/obo/DRUGBANK_DB11396,none +12.422249,DRUGBANK:DB11537,http://purl.obolibrary.org/obo/DRUGBANK_DB11537,none +12.422249,DRUGBANK:DB11906,http://purl.obolibrary.org/obo/DRUGBANK_DB11906,none +12.422249,DRUGBANK:DB12107,http://purl.obolibrary.org/obo/DRUGBANK_DB12107,none +12.422249,DRUGBANK:DB12247,http://purl.obolibrary.org/obo/DRUGBANK_DB12247,none +12.422249,GO:0000394,http://purl.obolibrary.org/obo/GO_0000394,"RNA splicing, via endonucleolytic cleavage and ligation" +12.422249,GO:0008420,http://purl.obolibrary.org/obo/GO_0008420,RNA polymerase II CTD heptapeptide repeat phosphatase activity +12.422249,GO:0010044,http://purl.obolibrary.org/obo/GO_0010044,response to aluminum ion +12.422249,GO:0010508,http://purl.obolibrary.org/obo/GO_0010508,positive regulation of autophagy +12.422249,GO:0015670,http://purl.obolibrary.org/obo/GO_0015670,carbon dioxide transport +12.422249,GO:0016603,http://purl.obolibrary.org/obo/GO_0016603,glutaminyl-peptide cyclotransferase activity +12.422249,GO:0019542,http://purl.obolibrary.org/obo/GO_0019542,propionate biosynthetic process +12.422249,GO:0030969,http://purl.obolibrary.org/obo/GO_0030969,none +12.422249,GO:0031011,http://purl.obolibrary.org/obo/GO_0031011,Ino80 complex +12.422249,GO:0031645,http://purl.obolibrary.org/obo/GO_0031645,negative regulation of nervous system process +12.422249,GO:0047964,http://purl.obolibrary.org/obo/GO_0047964,glyoxylate reductase (NAD+) activity +12.422249,GO:0051224,http://purl.obolibrary.org/obo/GO_0051224,negative regulation of protein transport +12.422249,GO:0070054,http://purl.obolibrary.org/obo/GO_0070054,"mRNA splicing, via endonucleolytic cleavage and ligation" +12.422249,GO:0071542,http://purl.obolibrary.org/obo/GO_0071542,dopaminergic neuron differentiation +12.422249,GO:1904950,http://purl.obolibrary.org/obo/GO_1904950,negative regulation of establishment of protein localization +12.422249,GO:2000369,http://purl.obolibrary.org/obo/GO_2000369,regulation of clathrin-dependent endocytosis +12.422249,GO:2000762,http://purl.obolibrary.org/obo/GO_2000762,regulation of phenylpropanoid metabolic process +12.422249,HP:0009725,http://purl.obolibrary.org/obo/HP_0009725,Bladder neoplasm +12.422249,HP:0010550,http://purl.obolibrary.org/obo/HP_0010550,Paraplegia +12.422249,HP:0010551,http://purl.obolibrary.org/obo/HP_0010551,Paraplegia/paraparesis +12.422249,HP:0100276,http://purl.obolibrary.org/obo/HP_0100276,Skin pit +12.422249,MONDO:0000944,http://purl.obolibrary.org/obo/MONDO_0000944,cerebral artery occlusion +12.422249,MONDO:0001938,http://purl.obolibrary.org/obo/MONDO_0001938,vulvar dystrophy +12.422249,MONDO:0003088,http://purl.obolibrary.org/obo/MONDO_0003088,intramuscular hemangioma +12.422249,MONDO:0004075,http://purl.obolibrary.org/obo/MONDO_0004075,infiltrating lipoma +12.422249,MONDO:0005547,http://purl.obolibrary.org/obo/MONDO_0005547,desmoplastic medulloblastoma +12.422249,MONDO:0005819,http://purl.obolibrary.org/obo/MONDO_0005819,laryngeal tuberculosis +12.422249,MONDO:0006216,http://purl.obolibrary.org/obo/MONDO_0006216,gallbladder adenoma +12.422249,MONDO:0008047,http://purl.obolibrary.org/obo/MONDO_0008047,episodic ataxia type 1 +12.422249,MONDO:0009114,http://purl.obolibrary.org/obo/MONDO_0009114,congenital sucrase-isomaltase deficiency +12.422249,MONDO:0010747,http://purl.obolibrary.org/obo/MONDO_0010747,X-linked dystonia-parkinsonism +12.422249,MONDO:0011760,http://purl.obolibrary.org/obo/MONDO_0011760,Scheie syndrome +12.422249,MONDO:0015526,http://purl.obolibrary.org/obo/MONDO_0015526,cold-induced sweating syndrome +12.422249,MONDO:0015852,http://purl.obolibrary.org/obo/MONDO_0015852,excess breast volume or number +12.422249,MONDO:0016664,http://purl.obolibrary.org/obo/MONDO_0016664,drug-induced vasculitis +12.422249,MONDO:0017123,http://purl.obolibrary.org/obo/MONDO_0017123,arthrogryposis-renal dysfunction-cholestasis syndrome +12.422249,MONDO:0018585,http://purl.obolibrary.org/obo/MONDO_0018585,pediatric arterial ischemic stroke +12.422249,MONDO:0019526,http://purl.obolibrary.org/obo/MONDO_0019526,erythema elevatum diutinum +12.422249,MONDO:0019668,http://purl.obolibrary.org/obo/MONDO_0019668,adenoma of pancreas +12.422249,MONDO:0019804,http://purl.obolibrary.org/obo/MONDO_0019804,tracheomalacia +12.422249,MONDO:0020377,http://purl.obolibrary.org/obo/MONDO_0020377,early-onset partial cataract +12.422249,MONDO:0021659,http://purl.obolibrary.org/obo/MONDO_0021659,combined carcinoid and adenocarcinoma +12.422249,MONDO:0024981,http://purl.obolibrary.org/obo/MONDO_0024981,rodent disease +12.422249,NCBITaxon:11216,http://purl.obolibrary.org/obo/NCBITaxon_11216,Human respirovirus 3 +12.422249,NCBITaxon:12441,http://purl.obolibrary.org/obo/NCBITaxon_12441,none +12.422249,NCBITaxon:336962,http://purl.obolibrary.org/obo/NCBITaxon_336962,none +12.422249,NCBITaxon:694009,http://purl.obolibrary.org/obo/NCBITaxon_694009,Severe acute respiratory syndrome-related coronavirus +12.422249,NCBITaxon:809,http://purl.obolibrary.org/obo/NCBITaxon_809,Chlamydiaceae +12.422249,PR:000000698,http://purl.obolibrary.org/obo/PR_000000698,cyclic nucleotide-gated olfactory channel +12.422249,PR:000001495,http://purl.obolibrary.org/obo/PR_000001495,neuropeptides B/W receptor +12.422249,PR:000001567,http://purl.obolibrary.org/obo/PR_000001567,N-formyl peptide receptor 3 +12.422249,PR:000001659,http://purl.obolibrary.org/obo/PR_000001659,prostaglandin E2 receptor EP3 subtype +12.422249,PR:000001966,http://purl.obolibrary.org/obo/PR_000001966,two pore calcium channel protein 2 +12.422249,PR:000003290,http://purl.obolibrary.org/obo/PR_000003290,ubiquitin-conjugating enzyme variant +12.422249,PR:000003718,http://purl.obolibrary.org/obo/PR_000003718,disintegrin and metalloproteinase domain-containing protein 22 +12.422249,PR:000004129,http://purl.obolibrary.org/obo/PR_000004129,gamma-secretase subunit APH-1A +12.422249,PR:000004516,http://purl.obolibrary.org/obo/PR_000004516,aurora kinase A-interacting protein +12.422249,PR:000004568,http://purl.obolibrary.org/obo/PR_000004568,E3 ubiquitin-protein ligase AMFR +12.422249,PR:000004873,http://purl.obolibrary.org/obo/PR_000004873,glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 +12.422249,PR:000005370,http://purl.obolibrary.org/obo/PR_000005370,centrin-1 +12.422249,PR:000005538,http://purl.obolibrary.org/obo/PR_000005538,claudin-10 +12.422249,PR:000005572,http://purl.obolibrary.org/obo/PR_000005572,C-type lectin domain family 5 member A +12.422249,PR:000005629,http://purl.obolibrary.org/obo/PR_000005629,cytosolic non-specific dipeptidase +12.422249,PR:000006052,http://purl.obolibrary.org/obo/PR_000006052,cullin-7 +12.422249,PR:000006135,http://purl.obolibrary.org/obo/PR_000006135,cytochrome P450 4A11 +12.422249,PR:000006502,http://purl.obolibrary.org/obo/PR_000006502,dickkopf-related protein 4 +12.422249,PR:000006614,http://purl.obolibrary.org/obo/PR_000006614,double C2-like domain-containing protein alpha +12.422249,PR:000007063,http://purl.obolibrary.org/obo/PR_000007063,epithelial membrane protein 2 +12.422249,PR:000007571,http://purl.obolibrary.org/obo/PR_000007571,formin-like protein 1 +12.422249,PR:000007953,http://purl.obolibrary.org/obo/PR_000007953,ADP-ribosylation factor-binding protein GGA2 +12.422249,PR:000008053,http://purl.obolibrary.org/obo/PR_000008053,glycolipid transfer protein +12.422249,PR:000008091,http://purl.obolibrary.org/obo/PR_000008091,guanine nucleotide-binding protein G(t) subunit alpha-1 +12.422249,PR:000008149,http://purl.obolibrary.org/obo/PR_000008149,Golgi reassembly-stacking protein 1 +12.422249,PR:000008784,http://purl.obolibrary.org/obo/PR_000008784,estradiol 17-beta-dehydrogenase 8 +12.422249,PR:000009109,http://purl.obolibrary.org/obo/PR_000009109,insulin receptor substrate 4 +12.422249,PR:000009141,http://purl.obolibrary.org/obo/PR_000009141,integrin beta-5 +12.422249,PR:000012550,http://purl.obolibrary.org/obo/PR_000012550,post-GPI attachment to proteins factor 3 +12.422249,PR:000012774,http://purl.obolibrary.org/obo/PR_000012774,polycystic kidney disease 2-like 1 protein +12.422249,PR:000012927,http://purl.obolibrary.org/obo/PR_000012927,pancreatic lipase-related protein 2 +12.422249,PR:000012930,http://purl.obolibrary.org/obo/PR_000012930,paraneoplastic antigen Ma2 +12.422249,PR:000013806,http://purl.obolibrary.org/obo/PR_000013806,RNA-binding protein 5 +12.422249,PR:000014530,http://purl.obolibrary.org/obo/PR_000014530,amiloride-sensitive sodium channel subunit gamma +12.422249,PR:000014554,http://purl.obolibrary.org/obo/PR_000014554,syntenin-1 +12.422249,PR:000014824,http://purl.obolibrary.org/obo/PR_000014824,endophilin-A1 +12.422249,PR:000014933,http://purl.obolibrary.org/obo/PR_000014933,solute carrier family 13 member 1 +12.422249,PR:000015554,http://purl.obolibrary.org/obo/PR_000015554,testican-1 +12.422249,PR:000015558,http://purl.obolibrary.org/obo/PR_000015558,spondin-2 +12.422249,PR:000015824,http://purl.obolibrary.org/obo/PR_000015824,sulfotransferase 2B1 +12.422249,PR:000016939,http://purl.obolibrary.org/obo/PR_000016939,none +12.422249,PR:000016972,http://purl.obolibrary.org/obo/PR_000016972,ubiquitin-conjugating enzyme E2 E2 +12.422249,PR:000022942,http://purl.obolibrary.org/obo/PR_000022942,none +12.422249,PR:000022988,http://purl.obolibrary.org/obo/PR_000022988,none +12.422249,PR:000023170,http://purl.obolibrary.org/obo/PR_000023170,none +12.422249,PR:000023366,http://purl.obolibrary.org/obo/PR_000023366,none +12.422249,PR:000029238,http://purl.obolibrary.org/obo/PR_000029238,none +12.422249,PR:000032290,http://purl.obolibrary.org/obo/PR_000032290,iroquois-class homeodomain protein IRX-1 +12.422249,PR:000032600,http://purl.obolibrary.org/obo/PR_000032600,iroquois-class homeodomain protein IRX-2 +12.422249,PR:000034961,http://purl.obolibrary.org/obo/PR_000034961,none +12.422249,PR:O62618,http://purl.obolibrary.org/obo/PR_O62618,none +12.422249,PR:Q6Q760,http://purl.obolibrary.org/obo/PR_Q6Q760,none +12.422249,PR:Q9M8S8,http://purl.obolibrary.org/obo/PR_Q9M8S8,none +12.422249,UBERON:0000980,http://purl.obolibrary.org/obo/UBERON_0000980,trochanter +12.422249,UBERON:0004010,http://purl.obolibrary.org/obo/UBERON_0004010,primary muscle spindle +12.422249,UBERON:0004631,http://purl.obolibrary.org/obo/UBERON_0004631,thoracic vertebra 6 +12.422249,UBERON:0004796,http://purl.obolibrary.org/obo/UBERON_0004796,prostate gland secretion +12.422249,UBERON:0009199,http://purl.obolibrary.org/obo/UBERON_0009199,facial suture +12.422249,UBERON:0014531,http://purl.obolibrary.org/obo/UBERON_0014531,white matter lamina of diencephalon +12.422249,UBERON:0014533,http://purl.obolibrary.org/obo/UBERON_0014533,medullary lamina of thalamus +12.422249,UBERON:2001811,http://purl.obolibrary.org/obo/UBERON_2001811,infraorbital sensory canal +12.4330599,CHEBI:32535,http://purl.obolibrary.org/obo/CHEBI_32535,histidine residue +12.4330599,CHEBI:35259,http://purl.obolibrary.org/obo/CHEBI_35259,benzofurans +12.4330599,CHEBI:38261,http://purl.obolibrary.org/obo/CHEBI_38261,imidazolidines +12.4330599,CHEBI:38835,http://purl.obolibrary.org/obo/CHEBI_38835,xanthenes +12.4330599,CHEBI:39203,http://purl.obolibrary.org/obo/CHEBI_39203,dibenzopyran +12.4330599,CHEBI:47774,http://purl.obolibrary.org/obo/CHEBI_47774,low-density lipoprotein cholesterol +12.4330599,CHEBI:51026,http://purl.obolibrary.org/obo/CHEBI_51026,macrocycle +12.4330599,DRUGBANK:DB02255,http://purl.obolibrary.org/obo/DRUGBANK_DB02255,none +12.4330599,DRUGBANK:DB03742,http://purl.obolibrary.org/obo/DRUGBANK_DB03742,none +12.4330599,DRUGBANK:DB05265,http://purl.obolibrary.org/obo/DRUGBANK_DB05265,none +12.4330599,DRUGBANK:DB05472,http://purl.obolibrary.org/obo/DRUGBANK_DB05472,none +12.4330599,DRUGBANK:DB06461,http://purl.obolibrary.org/obo/DRUGBANK_DB06461,none +12.4330599,DRUGBANK:DB06761,http://purl.obolibrary.org/obo/DRUGBANK_DB06761,none +12.4330599,DRUGBANK:DB08962,http://purl.obolibrary.org/obo/DRUGBANK_DB08962,none +12.4330599,DRUGBANK:DB10499,http://purl.obolibrary.org/obo/DRUGBANK_DB10499,none +12.4330599,DRUGBANK:DB11183,http://purl.obolibrary.org/obo/DRUGBANK_DB11183,none +12.4330599,DRUGBANK:DB11760,http://purl.obolibrary.org/obo/DRUGBANK_DB11760,none +12.4330599,DRUGBANK:DB12869,http://purl.obolibrary.org/obo/DRUGBANK_DB12869,none +12.4330599,DRUGBANK:DB15730,http://purl.obolibrary.org/obo/DRUGBANK_DB15730,none +12.4330599,GO:0001977,http://purl.obolibrary.org/obo/GO_0001977,renal system process involved in regulation of blood volume +12.4330599,GO:0006851,http://purl.obolibrary.org/obo/GO_0006851,mitochondrial calcium ion transmembrane transport +12.4330599,GO:0007517,http://purl.obolibrary.org/obo/GO_0007517,muscle organ development +12.4330599,GO:0009553,http://purl.obolibrary.org/obo/GO_0009553,embryo sac development +12.4330599,GO:0015821,http://purl.obolibrary.org/obo/GO_0015821,methionine transport +12.4330599,GO:0032414,http://purl.obolibrary.org/obo/GO_0032414,positive regulation of ion transmembrane transporter activity +12.4330599,GO:0032663,http://purl.obolibrary.org/obo/GO_0032663,regulation of interleukin-2 production +12.4330599,GO:0034767,http://purl.obolibrary.org/obo/GO_0034767,positive regulation of ion transmembrane transport +12.4330599,GO:0036395,http://purl.obolibrary.org/obo/GO_0036395,pancreatic amylase secretion +12.4330599,GO:0045230,http://purl.obolibrary.org/obo/GO_0045230,capsule organization +12.4330599,GO:0045833,http://purl.obolibrary.org/obo/GO_0045833,negative regulation of lipid metabolic process +12.4330599,GO:0047804,http://purl.obolibrary.org/obo/GO_0047804,cysteine-S-conjugate beta-lyase activity +12.4330599,GO:0050768,http://purl.obolibrary.org/obo/GO_0050768,negative regulation of neurogenesis +12.4330599,GO:0051438,http://purl.obolibrary.org/obo/GO_0051438,regulation of ubiquitin-protein transferase activity +12.4330599,GO:0071230,http://purl.obolibrary.org/obo/GO_0071230,cellular response to amino acid stimulus +12.4330599,GO:0072559,http://purl.obolibrary.org/obo/GO_0072559,NLRP3 inflammasome complex +12.4330599,GO:0072655,http://purl.obolibrary.org/obo/GO_0072655,establishment of protein localization to mitochondrion +12.4330599,GO:1904064,http://purl.obolibrary.org/obo/GO_1904064,positive regulation of cation transmembrane transport +12.4330599,HP:0001876,http://purl.obolibrary.org/obo/HP_0001876,Pancytopenia +12.4330599,HP:0032322,http://purl.obolibrary.org/obo/HP_0032322,Healthy +12.4330599,HP:0100242,http://purl.obolibrary.org/obo/HP_0100242,Sarcoma +12.4330599,MONDO:0002701,http://purl.obolibrary.org/obo/MONDO_0002701,ovarian mucinous cystadenocarcinoma +12.4330599,MONDO:0004041,http://purl.obolibrary.org/obo/MONDO_0004041,urothelial papilloma +12.4330599,MONDO:0005773,http://purl.obolibrary.org/obo/MONDO_0005773,Gerstmann syndrome +12.4330599,MONDO:0005868,http://purl.obolibrary.org/obo/MONDO_0005868,myelophthisic anemia +12.4330599,MONDO:0007354,http://purl.obolibrary.org/obo/MONDO_0007354,coloboma of optic nerve +12.4330599,MONDO:0009744,http://purl.obolibrary.org/obo/MONDO_0009744,neuronal ceroid lipofuscinosis 1 +12.4330599,MONDO:0011393,http://purl.obolibrary.org/obo/MONDO_0011393,"hypoalphalipoproteinemia, primary, 1" +12.4330599,MONDO:0011872,http://purl.obolibrary.org/obo/MONDO_0011872,Griscelli syndrome type 2 +12.4330599,MONDO:0016692,http://purl.obolibrary.org/obo/MONDO_0016692,pilomyxoid astrocytoma +12.4330599,MONDO:0018169,http://purl.obolibrary.org/obo/MONDO_0018169,morning glory syndrome +12.4330599,MONDO:0018491,http://purl.obolibrary.org/obo/MONDO_0018491,3-phosphoglycerate dehydrogenase deficiency +12.4330599,MONDO:0019480,http://purl.obolibrary.org/obo/MONDO_0019480,Langerhans cell sarcoma +12.4330599,MONDO:0019838,http://purl.obolibrary.org/obo/MONDO_0019838,adenohypophysitis +12.4330599,MONDO:0021005,http://purl.obolibrary.org/obo/MONDO_0021005,faciodigitogenital syndrome +12.4330599,MONDO:0021521,http://purl.obolibrary.org/obo/MONDO_0021521,benign neoplasm of mediastinum +12.4330599,MONDO:0023011,http://purl.obolibrary.org/obo/MONDO_0023011,Wilson-Mikity syndrome +12.4330599,MONDO:0100189,http://purl.obolibrary.org/obo/MONDO_0100189,apolipoprotein A-I deficiency +12.4330599,NCBITaxon:1678143,http://purl.obolibrary.org/obo/NCBITaxon_1678143,Orthohepevirus A +12.4330599,NCBITaxon:222543,http://purl.obolibrary.org/obo/NCBITaxon_222543,Hypocreomycetidae +12.4330599,NCBITaxon:2734594,http://purl.obolibrary.org/obo/NCBITaxon_2734594,none +12.4330599,NCBITaxon:2749936,http://purl.obolibrary.org/obo/NCBITaxon_2749936,none +12.4330599,NCBITaxon:40276,http://purl.obolibrary.org/obo/NCBITaxon_40276,none +12.4330599,NCBITaxon:43910,http://purl.obolibrary.org/obo/NCBITaxon_43910,none +12.4330599,NCBITaxon:498388,http://purl.obolibrary.org/obo/NCBITaxon_498388,none +12.4330599,PR:000001090,http://purl.obolibrary.org/obo/PR_000001090,immunoglobulin superfamily member 8 +12.4330599,PR:000003681,http://purl.obolibrary.org/obo/PR_000003681,"actin, gamma-enteric smooth muscle" +12.4330599,PR:000004101,http://purl.obolibrary.org/obo/PR_000004101,AP-2 complex subunit beta +12.4330599,PR:000004264,http://purl.obolibrary.org/obo/PR_000004264,AT-rich interactive domain-containing protein 2 +12.4330599,PR:000004531,http://purl.obolibrary.org/obo/PR_000004531,centrosomal protein of 131 kDa +12.4330599,PR:000004592,http://purl.obolibrary.org/obo/PR_000004592,"N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase 2" +12.4330599,PR:000004995,http://purl.obolibrary.org/obo/PR_000004995,calcium/calmodulin-dependent protein kinase kinase 2 +12.4330599,PR:000005056,http://purl.obolibrary.org/obo/PR_000005056,calsequestrin-1 +12.4330599,PR:000006415,http://purl.obolibrary.org/obo/PR_000006415,protein DEK +12.4330599,PR:000006888,http://purl.obolibrary.org/obo/PR_000006888,tumor necrosis factor receptor superfamily member EDAR +12.4330599,PR:000007622,http://purl.obolibrary.org/obo/PR_000007622,forkhead box protein F2 +12.4330599,PR:000008718,http://purl.obolibrary.org/obo/PR_000008718,homeobox protein Hox-D11 +12.4330599,PR:000009329,http://purl.obolibrary.org/obo/PR_000009329,killer cell immunoglobulin-like receptor 2DL3 +12.4330599,PR:000009833,http://purl.obolibrary.org/obo/PR_000009833,hepatic triacylglycerol lipase +12.4330599,PR:000009902,http://purl.obolibrary.org/obo/PR_000009902,lipoma-preferred partner +12.4330599,PR:000010746,http://purl.obolibrary.org/obo/PR_000010746,myotrophin +12.4330599,PR:000011032,http://purl.obolibrary.org/obo/PR_000011032,neutrophil cytosol factor 4 +12.4330599,PR:000011034,http://purl.obolibrary.org/obo/PR_000011034,cytoplasmic protein NCK2 +12.4330599,PR:000011135,http://purl.obolibrary.org/obo/PR_000011135,serine/threonine-protein kinase Nek9 +12.4330599,PR:000012562,http://purl.obolibrary.org/obo/PR_000012562,peroxisomal biogenesis factor 19 +12.4330599,PR:000012831,http://purl.obolibrary.org/obo/PR_000012831,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-4" +12.4330599,PR:000013450,http://purl.obolibrary.org/obo/PR_000013450,tyrosine-protein phosphatase non-receptor type 12 +12.4330599,PR:000014251,http://purl.obolibrary.org/obo/PR_000014251,40S ribosomal protein S10 +12.4330599,PR:000014459,http://purl.obolibrary.org/obo/PR_000014459,"serine--tRNA ligase, cytoplasmic" +12.4330599,PR:000015056,http://purl.obolibrary.org/obo/PR_000015056,equilibrative nucleoside transporter 3 +12.4330599,PR:000016375,http://purl.obolibrary.org/obo/PR_000016375,transducin-like enhancer protein 4 +12.4330599,PR:000016724,http://purl.obolibrary.org/obo/PR_000016724,thyrotropin subunit beta +12.4330599,PR:000022607,http://purl.obolibrary.org/obo/PR_000022607,none +12.4330599,PR:000023275,http://purl.obolibrary.org/obo/PR_000023275,none +12.4330599,PR:000023697,http://purl.obolibrary.org/obo/PR_000023697,none +12.4330599,PR:000023915,http://purl.obolibrary.org/obo/PR_000023915,none +12.4330599,PR:000029235,http://purl.obolibrary.org/obo/PR_000029235,none +12.4330599,PR:000029832,http://purl.obolibrary.org/obo/PR_000029832,tetratricopeptide repeat protein 1 +12.4330599,PR:000029849,http://purl.obolibrary.org/obo/PR_000029849,vesicle-associated membrane protein-associated protein B/C +12.4330599,PR:000040123,http://purl.obolibrary.org/obo/PR_000040123,GTPase IMAP family member +12.4330599,PR:O88298,http://purl.obolibrary.org/obo/PR_O88298,none +12.4330599,PR:P34907,http://purl.obolibrary.org/obo/PR_P34907,none +12.4330599,PR:P40468,http://purl.obolibrary.org/obo/PR_P40468,none +12.4330599,PR:Q24186,http://purl.obolibrary.org/obo/PR_Q24186,none +12.4330599,PR:Q54XQ2,http://purl.obolibrary.org/obo/PR_Q54XQ2,none +12.4330599,PR:Q63203,http://purl.obolibrary.org/obo/PR_Q63203,none +12.4330599,PR:Q8CF94,http://purl.obolibrary.org/obo/PR_Q8CF94,none +12.4330599,PR:Q94BQ2,http://purl.obolibrary.org/obo/PR_Q94BQ2,none +12.4330599,PR:Q9FMG1,http://purl.obolibrary.org/obo/PR_Q9FMG1,none +12.4330599,PR:Q9FMU6,http://purl.obolibrary.org/obo/PR_Q9FMU6,none +12.4330599,PR:Q9VFE4,http://purl.obolibrary.org/obo/PR_Q9VFE4,none +12.4330599,UBERON:0001395,http://purl.obolibrary.org/obo/UBERON_0001395,thoraco-acromial artery +12.4330599,UBERON:0001585,http://purl.obolibrary.org/obo/UBERON_0001585,anterior vena cava +12.4330599,UBERON:0002225,http://purl.obolibrary.org/obo/UBERON_0002225,costal arch +12.4330599,UBERON:0002457,http://purl.obolibrary.org/obo/UBERON_0002457,intersomitic artery +12.4330599,UBERON:0003335,http://purl.obolibrary.org/obo/UBERON_0003335,serosa of colon +12.4330599,UBERON:0003651,http://purl.obolibrary.org/obo/UBERON_0003651,metatarsal bone of digit 2 +12.4330599,UBERON:0003903,http://purl.obolibrary.org/obo/UBERON_0003903,bursa of Fabricius +12.4330599,UBERON:0004358,http://purl.obolibrary.org/obo/UBERON_0004358,caput epididymis +12.4330599,UBERON:0004917,http://purl.obolibrary.org/obo/UBERON_0004917,urethral sphincter +12.4330599,UBERON:0009657,http://purl.obolibrary.org/obo/UBERON_0009657,artery of lip +12.4330599,UBERON:0011322,http://purl.obolibrary.org/obo/UBERON_0011322,mylohyoid nerve +12.4330599,UBERON:0011510,http://purl.obolibrary.org/obo/UBERON_0011510,cloacal bursa +12.4330599,UBERON:0015038,http://purl.obolibrary.org/obo/UBERON_0015038,pedal digit 2 metatarsal endochondral element +12.4330599,UBERON:0016851,http://purl.obolibrary.org/obo/UBERON_0016851,renal fascia +12.4330599,UBERON:0034907,http://purl.obolibrary.org/obo/UBERON_0034907,pineal parenchyma +12.4330599,UBERON:3000896,http://purl.obolibrary.org/obo/UBERON_3000896,foveal depression +12.443989,CHEBI:18070,http://purl.obolibrary.org/obo/CHEBI_18070,cytochrome c +12.443989,CHEBI:27933,http://purl.obolibrary.org/obo/CHEBI_27933,beta-lactam antibiotic +12.443989,CHEBI:35175,http://purl.obolibrary.org/obo/CHEBI_35175,sulfate salt +12.443989,CHEBI:35477,http://purl.obolibrary.org/obo/CHEBI_35477,antimanic drug +12.443989,CHEBI:35620,http://purl.obolibrary.org/obo/CHEBI_35620,vasodilator agent +12.443989,CHEBI:36987,http://purl.obolibrary.org/obo/CHEBI_36987,3'-deoxyribonucleoside +12.443989,CHEBI:38304,http://purl.obolibrary.org/obo/CHEBI_38304,diazolidine +12.443989,CHEBI:38831,http://purl.obolibrary.org/obo/CHEBI_38831,2-benzofurans +12.443989,CHEBI:39874,http://purl.obolibrary.org/obo/CHEBI_39874,3'-deoxyguanosine +12.443989,CHEBI:60801,http://purl.obolibrary.org/obo/CHEBI_60801,guanyl deoxyribonucleotide residue +12.443989,CHEBI:63114,http://purl.obolibrary.org/obo/CHEBI_63114,sphingosine-1-phosphate receptor agonist +12.443989,CL:0008018,http://purl.obolibrary.org/obo/CL_0008018,somatic muscle myoblast +12.443989,DRUGBANK:DB00547,http://purl.obolibrary.org/obo/DRUGBANK_DB00547,none +12.443989,DRUGBANK:DB01303,http://purl.obolibrary.org/obo/DRUGBANK_DB01303,none +12.443989,DRUGBANK:DB01670,http://purl.obolibrary.org/obo/DRUGBANK_DB01670,none +12.443989,DRUGBANK:DB02897,http://purl.obolibrary.org/obo/DRUGBANK_DB02897,none +12.443989,DRUGBANK:DB03966,http://purl.obolibrary.org/obo/DRUGBANK_DB03966,none +12.443989,DRUGBANK:DB04194,http://purl.obolibrary.org/obo/DRUGBANK_DB04194,none +12.443989,DRUGBANK:DB04457,http://purl.obolibrary.org/obo/DRUGBANK_DB04457,none +12.443989,DRUGBANK:DB04594,http://purl.obolibrary.org/obo/DRUGBANK_DB04594,none +12.443989,DRUGBANK:DB04672,http://purl.obolibrary.org/obo/DRUGBANK_DB04672,none +12.443989,DRUGBANK:DB05143,http://purl.obolibrary.org/obo/DRUGBANK_DB05143,none +12.443989,DRUGBANK:DB08371,http://purl.obolibrary.org/obo/DRUGBANK_DB08371,none +12.443989,DRUGBANK:DB08772,http://purl.obolibrary.org/obo/DRUGBANK_DB08772,none +12.443989,DRUGBANK:DB08961,http://purl.obolibrary.org/obo/DRUGBANK_DB08961,none +12.443989,DRUGBANK:DB10848,http://purl.obolibrary.org/obo/DRUGBANK_DB10848,none +12.443989,DRUGBANK:DB12460,http://purl.obolibrary.org/obo/DRUGBANK_DB12460,none +12.443989,DRUGBANK:DB12867,http://purl.obolibrary.org/obo/DRUGBANK_DB12867,none +12.443989,DRUGBANK:DB13131,http://purl.obolibrary.org/obo/DRUGBANK_DB13131,none +12.443989,DRUGBANK:DB13279,http://purl.obolibrary.org/obo/DRUGBANK_DB13279,none +12.443989,DRUGBANK:DB13501,http://purl.obolibrary.org/obo/DRUGBANK_DB13501,none +12.443989,DRUGBANK:DB14011,http://purl.obolibrary.org/obo/DRUGBANK_DB14011,none +12.443989,DRUGBANK:DB14340,http://purl.obolibrary.org/obo/DRUGBANK_DB14340,none +12.443989,DRUGBANK:DB15526,http://purl.obolibrary.org/obo/DRUGBANK_DB15526,none +12.443989,DRUGBANK:DB15742,http://purl.obolibrary.org/obo/DRUGBANK_DB15742,none +12.443989,GO:0003851,http://purl.obolibrary.org/obo/GO_0003851,2-hydroxyacylsphingosine 1-beta-galactosyltransferase activity +12.443989,GO:0004448,http://purl.obolibrary.org/obo/GO_0004448,isocitrate dehydrogenase activity +12.443989,GO:0005704,http://purl.obolibrary.org/obo/GO_0005704,polytene chromosome band +12.443989,GO:0006729,http://purl.obolibrary.org/obo/GO_0006729,tetrahydrobiopterin biosynthetic process +12.443989,GO:0009446,http://purl.obolibrary.org/obo/GO_0009446,putrescine biosynthetic process +12.443989,GO:0009624,http://purl.obolibrary.org/obo/GO_0009624,response to nematode +12.443989,GO:0017119,http://purl.obolibrary.org/obo/GO_0017119,Golgi transport complex +12.443989,GO:0019153,http://purl.obolibrary.org/obo/GO_0019153,protein-disulfide reductase (glutathione) activity +12.443989,GO:0031397,http://purl.obolibrary.org/obo/GO_0031397,negative regulation of protein ubiquitination +12.443989,GO:0031559,http://purl.obolibrary.org/obo/GO_0031559,oxidosqualene cyclase activity +12.443989,GO:0031642,http://purl.obolibrary.org/obo/GO_0031642,negative regulation of myelination +12.443989,GO:0034643,http://purl.obolibrary.org/obo/GO_0034643,"establishment of mitochondrion localization, microtubule-mediated" +12.443989,GO:0035690,http://purl.obolibrary.org/obo/GO_0035690,none +12.443989,GO:0042827,http://purl.obolibrary.org/obo/GO_0042827,platelet dense granule +12.443989,GO:0043039,http://purl.obolibrary.org/obo/GO_0043039,tRNA aminoacylation +12.443989,GO:0043676,http://purl.obolibrary.org/obo/GO_0043676,tectum +12.443989,GO:0045227,http://purl.obolibrary.org/obo/GO_0045227,capsule polysaccharide biosynthetic process +12.443989,GO:0047497,http://purl.obolibrary.org/obo/GO_0047497,mitochondrion transport along microtubule +12.443989,GO:0048266,http://purl.obolibrary.org/obo/GO_0048266,behavioral response to pain +12.443989,GO:0060325,http://purl.obolibrary.org/obo/GO_0060325,face morphogenesis +12.443989,GO:0061526,http://purl.obolibrary.org/obo/GO_0061526,acetylcholine secretion +12.443989,GO:0070380,http://purl.obolibrary.org/obo/GO_0070380,high mobility group box 1 receptor activity +12.443989,GO:1903036,http://purl.obolibrary.org/obo/GO_1903036,positive regulation of response to wounding +12.443989,GO:1903321,http://purl.obolibrary.org/obo/GO_1903321,negative regulation of protein modification by small protein conjugation or removal +12.443989,GO:1905819,http://purl.obolibrary.org/obo/GO_1905819,negative regulation of chromosome separation +12.443989,HP:0000525,http://purl.obolibrary.org/obo/HP_0000525,Abnormality iris morphology +12.443989,MONDO:0000541,http://purl.obolibrary.org/obo/MONDO_0000541,jejunal adenocarcinoma +12.443989,MONDO:0001266,http://purl.obolibrary.org/obo/MONDO_0001266,erysipelas +12.443989,MONDO:0002622,http://purl.obolibrary.org/obo/MONDO_0002622,multifocal osteogenic sarcoma +12.443989,MONDO:0005551,http://purl.obolibrary.org/obo/MONDO_0005551,eye allergy +12.443989,MONDO:0005969,http://purl.obolibrary.org/obo/MONDO_0005969,st. Louis encephalitis +12.443989,MONDO:0008410,http://purl.obolibrary.org/obo/MONDO_0008410,Scheuermann disease +12.443989,MONDO:0009019,http://purl.obolibrary.org/obo/MONDO_0009019,congenital hereditary endothelial dystrophy of cornea +12.443989,MONDO:0011490,http://purl.obolibrary.org/obo/MONDO_0011490,diffuse panbronchiolitis +12.443989,MONDO:0016803,http://purl.obolibrary.org/obo/MONDO_0016803,unspecified inborn mitochondrial disorder +12.443989,MONDO:0017137,http://purl.obolibrary.org/obo/MONDO_0017137,onchocerciasis +12.443989,MONDO:0018214,http://purl.obolibrary.org/obo/MONDO_0018214,generalized epilepsy with febrile seizures plus +12.443989,MONDO:0018453,http://purl.obolibrary.org/obo/MONDO_0018453,familial atypical multiple mole melanoma syndrome +12.443989,MONDO:0025487,http://purl.obolibrary.org/obo/MONDO_0025487,murine acquired immunodeficiency syndrome +12.443989,NCBITaxon:1113537,http://purl.obolibrary.org/obo/NCBITaxon_1113537,Chlamydia/Chlamydophila group +12.443989,NCBITaxon:11628,http://purl.obolibrary.org/obo/NCBITaxon_11628,Machupo mammarenavirus +12.443989,NCBITaxon:1637,http://purl.obolibrary.org/obo/NCBITaxon_1637,Listeria +12.443989,NCBITaxon:186820,http://purl.obolibrary.org/obo/NCBITaxon_186820,Listeriaceae +12.443989,NCBITaxon:204441,http://purl.obolibrary.org/obo/NCBITaxon_204441,none +12.443989,NCBITaxon:2323,http://purl.obolibrary.org/obo/NCBITaxon_2323,none +12.443989,NCBITaxon:324913,http://purl.obolibrary.org/obo/NCBITaxon_324913,none +12.443989,NCBITaxon:42520,http://purl.obolibrary.org/obo/NCBITaxon_42520,none +12.443989,NCBITaxon:55987,http://purl.obolibrary.org/obo/NCBITaxon_55987,Salmon isavirus +12.443989,NCBITaxon:620,http://purl.obolibrary.org/obo/NCBITaxon_620,Shigella +12.443989,NCBITaxon:64279,http://purl.obolibrary.org/obo/NCBITaxon_64279,Drosophila C virus +12.443989,NCBITaxon:64948,http://purl.obolibrary.org/obo/NCBITaxon_64948,none +12.443989,NCBITaxon:6946,http://purl.obolibrary.org/obo/NCBITaxon_6946,Acariformes +12.443989,PR:000004328,http://purl.obolibrary.org/obo/PR_000004328,arylsulfatase I +12.443989,PR:000004666,http://purl.obolibrary.org/obo/PR_000004666,Bardet-Biedl syndrome 2 protein +12.443989,PR:000005494,http://purl.obolibrary.org/obo/PR_000005494,cell death activator CIDE-3 +12.443989,PR:000005541,http://purl.obolibrary.org/obo/PR_000005541,claudin-14 +12.443989,PR:000006770,http://purl.obolibrary.org/obo/PR_000006770,cytoplasmic dynein 1 heavy chain 1 +12.443989,PR:000006878,http://purl.obolibrary.org/obo/PR_000006878,"enoyl-CoA hydratase, mitochondrial" +12.443989,PR:000007747,http://purl.obolibrary.org/obo/PR_000007747,glucose-6-phosphatase 2 +12.443989,PR:000007871,http://purl.obolibrary.org/obo/PR_000007871,"1,4-alpha-glucan-branching enzyme" +12.443989,PR:000010430,http://purl.obolibrary.org/obo/PR_000010430,MAP kinase-interacting serine/threonine-protein kinase 2 +12.443989,PR:000010475,http://purl.obolibrary.org/obo/PR_000010475,matrix metalloproteinase-15 +12.443989,PR:000011202,http://purl.obolibrary.org/obo/PR_000011202,H/ACA ribonucleoprotein complex subunit 2 +12.443989,PR:000013075,http://purl.obolibrary.org/obo/PR_000013075,peptidyl-prolyl cis-trans isomerase A +12.443989,PR:000013366,http://purl.obolibrary.org/obo/PR_000013366,proteasome subunit alpha type-7 +12.443989,PR:000013482,http://purl.obolibrary.org/obo/PR_000013482,receptor-type tyrosine-protein phosphatase zeta +12.443989,PR:000013949,http://purl.obolibrary.org/obo/PR_000013949,regulator of G-protein signaling 14 +12.443989,PR:000014172,http://purl.obolibrary.org/obo/PR_000014172,replication protein A 14 kDa subunit +12.443989,PR:000014570,http://purl.obolibrary.org/obo/PR_000014570,L-serine dehydratase/L-threonine deaminase +12.443989,PR:000014982,http://purl.obolibrary.org/obo/PR_000014982,solute carrier family 22 member 11 +12.443989,PR:000015506,http://purl.obolibrary.org/obo/PR_000015506,signal peptidase complex subunit 2 +12.443989,PR:000015580,http://purl.obolibrary.org/obo/PR_000015580,small proline-rich protein 3 +12.443989,PR:000015645,http://purl.obolibrary.org/obo/PR_000015645,calcium-responsive transactivator +12.443989,PR:000015789,http://purl.obolibrary.org/obo/PR_000015789,syntaxin-17 +12.443989,PR:000015877,http://purl.obolibrary.org/obo/PR_000015877,Ras/Rap GTPase-activating protein SynGAP +12.443989,PR:000016270,http://purl.obolibrary.org/obo/PR_000016270,transcription factor Dp-2 +12.443989,PR:000016586,http://purl.obolibrary.org/obo/PR_000016586,tripeptidyl-peptidase 2 +12.443989,PR:000016849,http://purl.obolibrary.org/obo/PR_000016849,twisted gastrulation protein homolog 1 +12.443989,PR:000017343,http://purl.obolibrary.org/obo/PR_000017343,vacuolar protein sorting-associated protein 4B +12.443989,PR:000017359,http://purl.obolibrary.org/obo/PR_000017359,vesicle transport through interaction with t-SNAREs homolog 1B +12.443989,PR:000023319,http://purl.obolibrary.org/obo/PR_000023319,none +12.443989,PR:000023495,http://purl.obolibrary.org/obo/PR_000023495,none +12.443989,PR:000024140,http://purl.obolibrary.org/obo/PR_000024140,none +12.443989,PR:000029525,http://purl.obolibrary.org/obo/PR_000029525,glutathione S-transferase theta-2B +12.443989,PR:000029734,http://purl.obolibrary.org/obo/PR_000029734,solute carrier family 25 member 46 +12.443989,PR:000029776,http://purl.obolibrary.org/obo/PR_000029776,transmembrane protein 106B +12.443989,PR:000031892,http://purl.obolibrary.org/obo/PR_000031892,terminal uridylyltransferase 7 +12.443989,PR:000032372,http://purl.obolibrary.org/obo/PR_000032372,COX assembly mitochondrial protein 2 homolog +12.443989,PR:000034220,http://purl.obolibrary.org/obo/PR_000034220,none +12.443989,PR:O48786,http://purl.obolibrary.org/obo/PR_O48786,none +12.443989,PR:O80434,http://purl.obolibrary.org/obo/PR_O80434,none +12.443989,PR:P20816,http://purl.obolibrary.org/obo/PR_P20816,none +12.443989,PR:P23776,http://purl.obolibrary.org/obo/PR_P23776,none +12.443989,PR:P32521,http://purl.obolibrary.org/obo/PR_P32521,none +12.443989,PR:P35189,http://purl.obolibrary.org/obo/PR_P35189,none +12.443989,PR:Q05931,http://purl.obolibrary.org/obo/PR_Q05931,none +12.443989,PR:Q08562,http://purl.obolibrary.org/obo/PR_Q08562,none +12.443989,PR:Q0WUI9,http://purl.obolibrary.org/obo/PR_Q0WUI9,none +12.443989,PR:Q54VV5,http://purl.obolibrary.org/obo/PR_Q54VV5,none +12.443989,PR:Q6TPH1,http://purl.obolibrary.org/obo/PR_Q6TPH1,none +12.443989,PR:Q7SZE8,http://purl.obolibrary.org/obo/PR_Q7SZE8,none +12.443989,PR:Q8RUW5,http://purl.obolibrary.org/obo/PR_Q8RUW5,none +12.443989,PR:Q95UP9,http://purl.obolibrary.org/obo/PR_Q95UP9,none +12.443989,PR:Q9EQ21,http://purl.obolibrary.org/obo/PR_Q9EQ21,none +12.443989,PR:Q9FPJ4,http://purl.obolibrary.org/obo/PR_Q9FPJ4,none +12.443989,PR:Q9LZI2,http://purl.obolibrary.org/obo/PR_Q9LZI2,none +12.443989,PR:Q9SAR5,http://purl.obolibrary.org/obo/PR_Q9SAR5,none +12.443989,PR:Q9SG80,http://purl.obolibrary.org/obo/PR_Q9SG80,none +12.443989,PR:Q9XEX2,http://purl.obolibrary.org/obo/PR_Q9XEX2,none +12.443989,SO:0000889,http://purl.obolibrary.org/obo/SO_0000889,paternally_imprinted_gene +12.443989,UBERON:0001856,http://purl.obolibrary.org/obo/UBERON_0001856,semicircular duct +12.443989,UBERON:0002506,http://purl.obolibrary.org/obo/UBERON_0002506,iris epithelium +12.443989,UBERON:0002714,http://purl.obolibrary.org/obo/UBERON_0002714,rubrospinal tract +12.443989,UBERON:0003396,http://purl.obolibrary.org/obo/UBERON_0003396,mesentery of colon +12.443989,UBERON:0003438,http://purl.obolibrary.org/obo/UBERON_0003438,iris nerve +12.443989,UBERON:0003710,http://purl.obolibrary.org/obo/UBERON_0003710,vasa vasorum +12.443989,UBERON:0003722,http://purl.obolibrary.org/obo/UBERON_0003722,middle cranial fossa +12.443989,UBERON:0003982,http://purl.obolibrary.org/obo/UBERON_0003982,mature ovarian follicle +12.443989,UBERON:0004629,http://purl.obolibrary.org/obo/UBERON_0004629,thoracic vertebra 4 +12.443989,UBERON:0006329,http://purl.obolibrary.org/obo/UBERON_0006329,superior pharyngeal constrictor +12.443989,UBERON:0007311,http://purl.obolibrary.org/obo/UBERON_0007311,sputum +12.443989,UBERON:0008814,http://purl.obolibrary.org/obo/UBERON_0008814,pharyngeal arch system +12.443989,UBERON:0018146,http://purl.obolibrary.org/obo/UBERON_0018146,transverse process of lumbar vertebra +12.4550388,CHEBI:26441,http://purl.obolibrary.org/obo/CHEBI_26441,pyrimidine nucleotide +12.4550388,CHEBI:35284,http://purl.obolibrary.org/obo/CHEBI_35284,ammonium betaine +12.4550388,CHEBI:37929,http://purl.obolibrary.org/obo/CHEBI_37929,xanthene dye +12.4550388,CHEBI:55370,http://purl.obolibrary.org/obo/CHEBI_55370,imidazolidinone +12.4550388,CL:0010009,http://purl.obolibrary.org/obo/CL_0010009,camera-type eye photoreceptor cell +12.4550388,CL:1000426,http://purl.obolibrary.org/obo/CL_1000426,chromaffin cell of adrenal gland +12.4550388,DRUGBANK:DB01694,http://purl.obolibrary.org/obo/DRUGBANK_DB01694,none +12.4550388,DRUGBANK:DB03866,http://purl.obolibrary.org/obo/DRUGBANK_DB03866,none +12.4550388,DRUGBANK:DB04949,http://purl.obolibrary.org/obo/DRUGBANK_DB04949,none +12.4550388,DRUGBANK:DB09048,http://purl.obolibrary.org/obo/DRUGBANK_DB09048,none +12.4550388,DRUGBANK:DB09124,http://purl.obolibrary.org/obo/DRUGBANK_DB09124,none +12.4550388,DRUGBANK:DB09273,http://purl.obolibrary.org/obo/DRUGBANK_DB09273,none +12.4550388,DRUGBANK:DB11499,http://purl.obolibrary.org/obo/DRUGBANK_DB11499,none +12.4550388,DRUGBANK:DB11591,http://purl.obolibrary.org/obo/DRUGBANK_DB11591,none +12.4550388,DRUGBANK:DB14274,http://purl.obolibrary.org/obo/DRUGBANK_DB14274,none +12.4550388,GO:0000773,http://purl.obolibrary.org/obo/GO_0000773,phosphatidyl-N-methylethanolamine N-methyltransferase activity +12.4550388,GO:0001730,http://purl.obolibrary.org/obo/GO_0001730,2'-5'-oligoadenylate synthetase activity +12.4550388,GO:0002040,http://purl.obolibrary.org/obo/GO_0002040,sprouting angiogenesis +12.4550388,GO:0004815,http://purl.obolibrary.org/obo/GO_0004815,aspartate-tRNA ligase activity +12.4550388,GO:0008336,http://purl.obolibrary.org/obo/GO_0008336,gamma-butyrobetaine dioxygenase activity +12.4550388,GO:0008936,http://purl.obolibrary.org/obo/GO_0008936,nicotinamidase activity +12.4550388,GO:0009696,http://purl.obolibrary.org/obo/GO_0009696,salicylic acid metabolic process +12.4550388,GO:0015168,http://purl.obolibrary.org/obo/GO_0015168,glycerol transmembrane transporter activity +12.4550388,GO:0015254,http://purl.obolibrary.org/obo/GO_0015254,glycerol channel activity +12.4550388,GO:0016297,http://purl.obolibrary.org/obo/GO_0016297,acyl-[acyl-carrier-protein] hydrolase activity +12.4550388,GO:0031297,http://purl.obolibrary.org/obo/GO_0031297,replication fork processing +12.4550388,GO:0031963,http://purl.obolibrary.org/obo/GO_0031963,cortisol receptor activity +12.4550388,GO:0032958,http://purl.obolibrary.org/obo/GO_0032958,inositol phosphate biosynthetic process +12.4550388,GO:0033391,http://purl.obolibrary.org/obo/GO_0033391,chromatoid body +12.4550388,GO:0034386,http://purl.obolibrary.org/obo/GO_0034386,4-aminobutyrate:2-oxoglutarate transaminase activity +12.4550388,GO:0034705,http://purl.obolibrary.org/obo/GO_0034705,potassium channel complex +12.4550388,GO:0034751,http://purl.obolibrary.org/obo/GO_0034751,aryl hydrocarbon receptor complex +12.4550388,GO:0034979,http://purl.obolibrary.org/obo/GO_0034979,NAD-dependent protein deacetylase activity +12.4550388,GO:0035073,http://purl.obolibrary.org/obo/GO_0035073,pupariation +12.4550388,GO:0035942,http://purl.obolibrary.org/obo/GO_0035942,dehydroepiandrosterone secretion +12.4550388,GO:0036277,http://purl.obolibrary.org/obo/GO_0036277,response to anticonvulsant +12.4550388,GO:0036454,http://purl.obolibrary.org/obo/GO_0036454,growth factor complex +12.4550388,GO:0047334,http://purl.obolibrary.org/obo/GO_0047334,diphosphate-fructose-6-phosphate 1-phosphotransferase activity +12.4550388,GO:0061701,http://purl.obolibrary.org/obo/GO_0061701,bacterial outer membrane vesicle +12.4550388,GO:0071025,http://purl.obolibrary.org/obo/GO_0071025,RNA surveillance +12.4550388,GO:0080039,http://purl.obolibrary.org/obo/GO_0080039,none +12.4550388,GO:1990840,http://purl.obolibrary.org/obo/GO_1990840,response to lectin +12.4550388,HP:0001438,http://purl.obolibrary.org/obo/HP_0001438,Abnormal abdomen morphology +12.4550388,HP:0002145,http://purl.obolibrary.org/obo/HP_0002145,Frontotemporal dementia +12.4550388,HP:0003774,http://purl.obolibrary.org/obo/HP_0003774,Stage 5 chronic kidney disease +12.4550388,MONDO:0001692,http://purl.obolibrary.org/obo/MONDO_0001692,pedophilia +12.4550388,MONDO:0002536,http://purl.obolibrary.org/obo/MONDO_0002536,skin papilloma +12.4550388,MONDO:0003236,http://purl.obolibrary.org/obo/MONDO_0003236,atypical polypoid adenomyoma +12.4550388,MONDO:0006179,http://purl.obolibrary.org/obo/MONDO_0006179,desmoplastic ameloblastoma +12.4550388,MONDO:0006306,http://purl.obolibrary.org/obo/MONDO_0006306,mixed lobular and ductal breast carcinoma +12.4550388,MONDO:0006609,http://purl.obolibrary.org/obo/MONDO_0006609,seborrheic infantile dermatitis +12.4550388,MONDO:0007352,http://purl.obolibrary.org/obo/MONDO_0007352,renal coloboma syndrome +12.4550388,MONDO:0007889,http://purl.obolibrary.org/obo/MONDO_0007889,lentigines +12.4550388,MONDO:0016060,http://purl.obolibrary.org/obo/MONDO_0016060,laryngotracheoesophageal cleft +12.4550388,MONDO:0017280,http://purl.obolibrary.org/obo/MONDO_0017280,demodicidosis +12.4550388,MONDO:0018326,http://purl.obolibrary.org/obo/MONDO_0018326,transient neonatal myasthenia gravis +12.4550388,MONDO:0020655,http://purl.obolibrary.org/obo/MONDO_0020655,juvenile ankylosing spondylitis +12.4550388,MONDO:0020680,http://purl.obolibrary.org/obo/MONDO_0020680,acute bronchiolitis +12.4550388,MONDO:0021960,http://purl.obolibrary.org/obo/MONDO_0021960,ureteritis +12.4550388,NCBITaxon:12267,http://purl.obolibrary.org/obo/NCBITaxon_12267,none +12.4550388,NCBITaxon:143919,http://purl.obolibrary.org/obo/NCBITaxon_143919,none +12.4550388,NCBITaxon:227859,http://purl.obolibrary.org/obo/NCBITaxon_227859,none +12.4550388,NCBITaxon:3745,http://purl.obolibrary.org/obo/NCBITaxon_3745,Rosaceae +12.4550388,NCBITaxon:6178,http://purl.obolibrary.org/obo/NCBITaxon_6178,Trematoda +12.4550388,NCBITaxon:6179,http://purl.obolibrary.org/obo/NCBITaxon_6179,Digenea +12.4550388,PR:000001104,http://purl.obolibrary.org/obo/PR_000001104,C3a anaphylatoxin chemotactic receptor +12.4550388,PR:000002037,http://purl.obolibrary.org/obo/PR_000002037,complement component C1q receptor +12.4550388,PR:000003141,http://purl.obolibrary.org/obo/PR_000003141,E3 ubiquitin-protein ligase pellino homolog 1 +12.4550388,PR:000003589,http://purl.obolibrary.org/obo/PR_000003589,active breakpoint cluster region-related protein +12.4550388,PR:000003797,http://purl.obolibrary.org/obo/PR_000003797,adipocyte enhancer-binding protein 1 +12.4550388,PR:000004336,http://purl.obolibrary.org/obo/PR_000004336,acid ceramidase +12.4550388,PR:000004636,http://purl.obolibrary.org/obo/PR_000004636,BMP and activin membrane-bound inhibitor +12.4550388,PR:000005171,http://purl.obolibrary.org/obo/PR_000005171,DNA-directed RNA polymerase I subunit RPA34 +12.4550388,PR:000006017,http://purl.obolibrary.org/obo/PR_000006017,RNA polymerase-associated protein CTR9 +12.4550388,PR:000006305,http://purl.obolibrary.org/obo/PR_000006305,dermcidin +12.4550388,PR:000006656,http://purl.obolibrary.org/obo/PR_000006656,dolichol-phosphate mannosyltransferase subunit 1 +12.4550388,PR:000006923,http://purl.obolibrary.org/obo/PR_000006923,ephrin-B3 +12.4550388,PR:000008266,http://purl.obolibrary.org/obo/PR_000008266,metabotropic glutamate receptor 4 +12.4550388,PR:000008311,http://purl.obolibrary.org/obo/PR_000008311,TFIIA-alpha and beta-like factor +12.4550388,PR:000008315,http://purl.obolibrary.org/obo/PR_000008315,general transcription factor IIF subunit 1 +12.4550388,PR:000008525,http://purl.obolibrary.org/obo/PR_000008525,beta-hexosaminidase subunit beta +12.4550388,PR:000009215,http://purl.obolibrary.org/obo/PR_000009215,lysine-specific demethylase 4C +12.4550388,PR:000010110,http://purl.obolibrary.org/obo/PR_000010110,beta-mannosidase +12.4550388,PR:000010713,http://purl.obolibrary.org/obo/PR_000010713,mitochondrial carrier homolog 2 +12.4550388,PR:000010810,http://purl.obolibrary.org/obo/PR_000010810,protein L-Myc +12.4550388,PR:000011232,http://purl.obolibrary.org/obo/PR_000011232,protein naked cuticle homolog 1 +12.4550388,PR:000011503,http://purl.obolibrary.org/obo/PR_000011503,nuclear mitotic apparatus protein 1 +12.4550388,PR:000011542,http://purl.obolibrary.org/obo/PR_000011542,neurexophilin-1 +12.4550388,PR:000012749,http://purl.obolibrary.org/obo/PR_000012749,peroxisomal sarcosine oxidase +12.4550388,PR:000012865,http://purl.obolibrary.org/obo/PR_000012865,pleckstrin homology domain-containing family O member 1 +12.4550388,PR:000013052,http://purl.obolibrary.org/obo/PR_000013052,phospholipid phosphatase 3 +12.4550388,PR:000014332,http://purl.obolibrary.org/obo/PR_000014332,R-spondin-3 +12.4550388,PR:000014426,http://purl.obolibrary.org/obo/PR_000014426,primate-type serum amyloid A-4 protein +12.4550388,PR:000016753,http://purl.obolibrary.org/obo/PR_000016753,tetraspanin-7 +12.4550388,PR:000017041,http://purl.obolibrary.org/obo/PR_000017041,ubiquitin-fold modifier 1 +12.4550388,PR:000018057,http://purl.obolibrary.org/obo/PR_000018057,zinc finger protein 654 +12.4550388,PR:000023548,http://purl.obolibrary.org/obo/PR_000023548,none +12.4550388,PR:000023706,http://purl.obolibrary.org/obo/PR_000023706,none +12.4550388,PR:000030946,http://purl.obolibrary.org/obo/PR_000030946,MORC family CW-type zinc finger protein 3 +12.4550388,PR:000032019,http://purl.obolibrary.org/obo/PR_000032019,solute carrier family 22 member 9 +12.4550388,PR:O01479,http://purl.obolibrary.org/obo/PR_O01479,none +12.4550388,PR:O45380,http://purl.obolibrary.org/obo/PR_O45380,none +12.4550388,PR:O74910,http://purl.obolibrary.org/obo/PR_O74910,none +12.4550388,PR:O88797,http://purl.obolibrary.org/obo/PR_O88797,none +12.4550388,PR:P48524,http://purl.obolibrary.org/obo/PR_P48524,none +12.4550388,PR:Q38920,http://purl.obolibrary.org/obo/PR_Q38920,none +12.4550388,PR:Q5F3R2,http://purl.obolibrary.org/obo/PR_Q5F3R2,none +12.4550388,PR:Q6IQX0,http://purl.obolibrary.org/obo/PR_Q6IQX0,none +12.4550388,PR:Q84WV6,http://purl.obolibrary.org/obo/PR_Q84WV6,none +12.4550388,PR:Q8RXD5,http://purl.obolibrary.org/obo/PR_Q8RXD5,none +12.4550388,PR:Q94KI8,http://purl.obolibrary.org/obo/PR_Q94KI8,none +12.4550388,PR:Q9CA64,http://purl.obolibrary.org/obo/PR_Q9CA64,none +12.4550388,PR:Q9LW27,http://purl.obolibrary.org/obo/PR_Q9LW27,none +12.4550388,SO:0000256,http://purl.obolibrary.org/obo/SO_0000256,asparaginyl_tRNA +12.4550388,SO:0000462,http://purl.obolibrary.org/obo/SO_0000462,pseudogenic_region +12.4550388,UBERON:0001220,http://purl.obolibrary.org/obo/UBERON_0001220,quadratus lumborum +12.4550388,UBERON:0001446,http://purl.obolibrary.org/obo/UBERON_0001446,fibula +12.4550388,UBERON:0001527,http://purl.obolibrary.org/obo/UBERON_0001527,abductor pollicis longus +12.4550388,UBERON:0001541,http://purl.obolibrary.org/obo/UBERON_0001541,medial plantar artery +12.4550388,UBERON:0002114,http://purl.obolibrary.org/obo/UBERON_0002114,duodenum +12.4550388,UBERON:0002491,http://purl.obolibrary.org/obo/UBERON_0002491,lambdoid suture +12.4550388,UBERON:0004658,http://purl.obolibrary.org/obo/UBERON_0004658,mandible head +12.4550388,UBERON:0015013,http://purl.obolibrary.org/obo/UBERON_0015013,fibula endochondral element +12.4550388,UBERON:0018391,http://purl.obolibrary.org/obo/UBERON_0018391,chemoreceptor +12.4550388,UBERON:0018395,http://purl.obolibrary.org/obo/UBERON_0018395,cardiac baroreceptor +12.4662121,CHEBI:27226,http://purl.obolibrary.org/obo/CHEBI_27226,uric acid +12.4662121,CHEBI:36413,http://purl.obolibrary.org/obo/CHEBI_36413,anabolic agent +12.4662121,CL:0000336,http://purl.obolibrary.org/obo/CL_0000336,adrenal medulla chromaffin cell +12.4662121,CL:0002306,http://purl.obolibrary.org/obo/CL_0002306,epithelial cell of proximal tubule +12.4662121,DRUGBANK:DB00088,http://purl.obolibrary.org/obo/DRUGBANK_DB00088,none +12.4662121,DRUGBANK:DB00089,http://purl.obolibrary.org/obo/DRUGBANK_DB00089,none +12.4662121,DRUGBANK:DB01207,http://purl.obolibrary.org/obo/DRUGBANK_DB01207,none +12.4662121,DRUGBANK:DB01937,http://purl.obolibrary.org/obo/DRUGBANK_DB01937,none +12.4662121,DRUGBANK:DB04955,http://purl.obolibrary.org/obo/DRUGBANK_DB04955,none +12.4662121,DRUGBANK:DB06445,http://purl.obolibrary.org/obo/DRUGBANK_DB06445,none +12.4662121,DRUGBANK:DB08992,http://purl.obolibrary.org/obo/DRUGBANK_DB08992,none +12.4662121,DRUGBANK:DB10432,http://purl.obolibrary.org/obo/DRUGBANK_DB10432,none +12.4662121,DRUGBANK:DB11800,http://purl.obolibrary.org/obo/DRUGBANK_DB11800,none +12.4662121,DRUGBANK:DB13523,http://purl.obolibrary.org/obo/DRUGBANK_DB13523,none +12.4662121,DRUGBANK:DB14163,http://purl.obolibrary.org/obo/DRUGBANK_DB14163,none +12.4662121,DRUGBANK:DB14323,http://purl.obolibrary.org/obo/DRUGBANK_DB14323,none +12.4662121,DRUGBANK:DB15841,http://purl.obolibrary.org/obo/DRUGBANK_DB15841,none +12.4662121,DRUGBANK:DB15957,http://purl.obolibrary.org/obo/DRUGBANK_DB15957,none +12.4662121,GO:0002637,http://purl.obolibrary.org/obo/GO_0002637,regulation of immunoglobulin production +12.4662121,GO:0002941,http://purl.obolibrary.org/obo/GO_0002941,synoviocyte proliferation +12.4662121,GO:0006658,http://purl.obolibrary.org/obo/GO_0006658,phosphatidylserine metabolic process +12.4662121,GO:0007032,http://purl.obolibrary.org/obo/GO_0007032,endosome organization +12.4662121,GO:0007431,http://purl.obolibrary.org/obo/GO_0007431,salivary gland development +12.4662121,GO:0008015,http://purl.obolibrary.org/obo/GO_0008015,blood circulation +12.4662121,GO:0009707,http://purl.obolibrary.org/obo/GO_0009707,chloroplast outer membrane +12.4662121,GO:0017143,http://purl.obolibrary.org/obo/GO_0017143,insecticide metabolic process +12.4662121,GO:0030080,http://purl.obolibrary.org/obo/GO_0030080,B875 antenna complex +12.4662121,GO:0031392,http://purl.obolibrary.org/obo/GO_0031392,regulation of prostaglandin biosynthetic process +12.4662121,GO:0033904,http://purl.obolibrary.org/obo/GO_0033904,dextranase activity +12.4662121,GO:0034405,http://purl.obolibrary.org/obo/GO_0034405,response to fluid shear stress +12.4662121,GO:0042472,http://purl.obolibrary.org/obo/GO_0042472,inner ear morphogenesis +12.4662121,GO:0060479,http://purl.obolibrary.org/obo/GO_0060479,lung cell differentiation +12.4662121,GO:0071295,http://purl.obolibrary.org/obo/GO_0071295,cellular response to vitamin +12.4662121,GO:0097324,http://purl.obolibrary.org/obo/GO_0097324,melanocyte migration +12.4662121,HP:0000830,http://purl.obolibrary.org/obo/HP_0000830,Anterior hypopituitarism +12.4662121,MONDO:0000210,http://purl.obolibrary.org/obo/MONDO_0000210,thiopurine metabolic disease +12.4662121,MONDO:0000211,http://purl.obolibrary.org/obo/MONDO_0000211,"striatal degeneration, autosomal dominant" +12.4662121,MONDO:0001521,http://purl.obolibrary.org/obo/MONDO_0001521,intermittent explosive disorder +12.4662121,MONDO:0002227,http://purl.obolibrary.org/obo/MONDO_0002227,ovarian lymphoma +12.4662121,MONDO:0002372,http://purl.obolibrary.org/obo/MONDO_0002372,ovarian monodermal and highly specialized teratoma +12.4662121,MONDO:0003648,http://purl.obolibrary.org/obo/MONDO_0003648,tympanic membrane disease +12.4662121,MONDO:0004373,http://purl.obolibrary.org/obo/MONDO_0004373,adult papillary meningioma +12.4662121,MONDO:0006327,http://purl.obolibrary.org/obo/MONDO_0006327,ocular sebaceous carcinoma +12.4662121,MONDO:0007295,http://purl.obolibrary.org/obo/MONDO_0007295,rolandic epilepsy +12.4662121,MONDO:0012503,http://purl.obolibrary.org/obo/MONDO_0012503,thiopurine S-methyltransferase deficiency +12.4662121,MONDO:0015179,http://purl.obolibrary.org/obo/MONDO_0015179,intestinal disease due to vitamin absorption anomaly +12.4662121,MONDO:0015273,http://purl.obolibrary.org/obo/MONDO_0015273,complete atrioventricular canal +12.4662121,MONDO:0017148,http://purl.obolibrary.org/obo/MONDO_0017148,heritable pulmonary arterial hypertension +12.4662121,MONDO:0018484,http://purl.obolibrary.org/obo/MONDO_0018484,semicircular canal dehiscence syndrome +12.4662121,MONDO:0018841,http://purl.obolibrary.org/obo/MONDO_0018841,congenital bile acid synthesis defect +12.4662121,MONDO:0020757,http://purl.obolibrary.org/obo/MONDO_0020757,sporadic hemiplegic migraine +12.4662121,MONDO:0044083,http://purl.obolibrary.org/obo/MONDO_0044083,alternariosis +12.4662121,MONDO:0045054,http://purl.obolibrary.org/obo/MONDO_0045054,cancer-related condition +12.4662121,NCBITaxon:11820,http://purl.obolibrary.org/obo/NCBITaxon_11820,none +12.4662121,NCBITaxon:2170080,http://purl.obolibrary.org/obo/NCBITaxon_2170080,none +12.4662121,NCBITaxon:6310,http://purl.obolibrary.org/obo/NCBITaxon_6310,none +12.4662121,NCBITaxon:6951,http://purl.obolibrary.org/obo/NCBITaxon_6951,Astigmata +12.4662121,NCBITaxon:83137,http://purl.obolibrary.org/obo/NCBITaxon_83137,Sarcoptiformes +12.4662121,PR:000003414,http://purl.obolibrary.org/obo/PR_000003414,heat shock 70 kDa protein 4 +12.4662121,PR:000004213,http://purl.obolibrary.org/obo/PR_000004213,arfaptin-2 +12.4662121,PR:000004392,http://purl.obolibrary.org/obo/PR_000004392,ATPase family AAA domain-containing protein 2 +12.4662121,PR:000004575,http://purl.obolibrary.org/obo/PR_000004575,none +12.4662121,PR:000005256,http://purl.obolibrary.org/obo/PR_000005256,cyclin-dependent kinase 3 +12.4662121,PR:000006278,http://purl.obolibrary.org/obo/PR_000006278,death-associated protein kinase 3 +12.4662121,PR:000006306,http://purl.obolibrary.org/obo/PR_000006306,protocadherin-16 +12.4662121,PR:000006604,http://purl.obolibrary.org/obo/PR_000006604,dynamin-3 +12.4662121,PR:000007116,http://purl.obolibrary.org/obo/PR_000007116,enhancer of polycomb homolog 1 +12.4662121,PR:000007138,http://purl.obolibrary.org/obo/PR_000007138,epsin-1 +12.4662121,PR:000007161,http://purl.obolibrary.org/obo/PR_000007161,ELKS/Rab6-interacting/CAST family member 1 +12.4662121,PR:000007274,http://purl.obolibrary.org/obo/PR_000007274,eyes absent homolog 2 +12.4662121,PR:000007716,http://purl.obolibrary.org/obo/PR_000007716,FXYD domain-containing ion transport regulator 5 +12.4662121,PR:000008306,http://purl.obolibrary.org/obo/PR_000008306,glutathione S-transferase theta-2 +12.4662121,PR:000008979,http://purl.obolibrary.org/obo/PR_000008979,interleukin-10 receptor subunit beta +12.4662121,PR:000009035,http://purl.obolibrary.org/obo/PR_000009035,inhibitor of growth protein 3 +12.4662121,PR:000009341,http://purl.obolibrary.org/obo/PR_000009341,kin of IRRE-like protein 1 +12.4662121,PR:000009801,http://purl.obolibrary.org/obo/PR_000009801,DNA ligase 3 +12.4662121,PR:000009970,http://purl.obolibrary.org/obo/PR_000009970,leukocyte-specific transcript 1 protein +12.4662121,PR:000010278,http://purl.obolibrary.org/obo/PR_000010278,"enoyl-[acyl-carrier-protein] reductase, mitochondrial" +12.4662121,PR:000010529,http://purl.obolibrary.org/obo/PR_000010529,DBH-like monooxygenase protein 1 +12.4662121,PR:000010842,http://purl.obolibrary.org/obo/PR_000010842,myosin regulatory light chain 12B +12.4662121,PR:000011044,http://purl.obolibrary.org/obo/PR_000011044,nuclear receptor coactivator 5 +12.4662121,PR:000011125,http://purl.obolibrary.org/obo/PR_000011125,serine/threonine-protein kinase Nek1 +12.4662121,PR:000011259,http://purl.obolibrary.org/obo/PR_000011259,serine/threonine-protein kinase NLK +12.4662121,PR:000012192,http://purl.obolibrary.org/obo/PR_000012192,P2X purinoceptor 5 +12.4662121,PR:000014465,http://purl.obolibrary.org/obo/PR_000014465,spindle assembly abnormal protein 6 +12.4662121,PR:000014675,http://purl.obolibrary.org/obo/PR_000014675,serine incorporator 5 +12.4662121,PR:000014871,http://purl.obolibrary.org/obo/PR_000014871,serine/threonine-protein kinase SIK2 +12.4662121,PR:000015268,http://purl.obolibrary.org/obo/PR_000015268,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1 +12.4662121,PR:000015376,http://purl.obolibrary.org/obo/PR_000015376,sorting nexin-27 +12.4662121,PR:000015437,http://purl.obolibrary.org/obo/PR_000015437,Sp110 nuclear body protein +12.4662121,PR:000016219,http://purl.obolibrary.org/obo/PR_000016219,transcriptional enhancer factor TEF-4 +12.4662121,PR:000016766,http://purl.obolibrary.org/obo/PR_000016766,pre-rRNA-processing protein TSR1 +12.4662121,PR:000016829,http://purl.obolibrary.org/obo/PR_000016829,gamma-tubulin complex component 4 +12.4662121,PR:000017069,http://purl.obolibrary.org/obo/PR_000017069,serine/threonine-protein kinase Kist +12.4662121,PR:000017358,http://purl.obolibrary.org/obo/PR_000017358,vesicle transport through interaction with t-SNAREs homolog 1A +12.4662121,PR:000017570,http://purl.obolibrary.org/obo/PR_000017570,zinc finger and BTB domain-containing protein 24 +12.4662121,PR:000022576,http://purl.obolibrary.org/obo/PR_000022576,none +12.4662121,PR:000023208,http://purl.obolibrary.org/obo/PR_000023208,none +12.4662121,PR:000023327,http://purl.obolibrary.org/obo/PR_000023327,none +12.4662121,PR:000023469,http://purl.obolibrary.org/obo/PR_000023469,none +12.4662121,PR:000029730,http://purl.obolibrary.org/obo/PR_000029730,small nuclear ribonucleoprotein-associated proteins B and B' +12.4662121,PR:000029904,http://purl.obolibrary.org/obo/PR_000029904,none +12.4662121,PR:O94646,http://purl.obolibrary.org/obo/PR_O94646,none +12.4662121,PR:P38138,http://purl.obolibrary.org/obo/PR_P38138,none +12.4662121,PR:P40335,http://purl.obolibrary.org/obo/PR_P40335,none +12.4662121,PR:P47013,http://purl.obolibrary.org/obo/PR_P47013,none +12.4662121,PR:Q7XZU3,http://purl.obolibrary.org/obo/PR_Q7XZU3,none +12.4662121,PR:Q86B00,http://purl.obolibrary.org/obo/PR_Q86B00,none +12.4662121,PR:Q8GWA1,http://purl.obolibrary.org/obo/PR_Q8GWA1,none +12.4662121,PR:Q9C1W9,http://purl.obolibrary.org/obo/PR_Q9C1W9,none +12.4662121,PR:Q9ERR7,http://purl.obolibrary.org/obo/PR_Q9ERR7,none +12.4662121,UBERON:0001105,http://purl.obolibrary.org/obo/UBERON_0001105,clavicle bone +12.4662121,UBERON:0001397,http://purl.obolibrary.org/obo/UBERON_0001397,subscapular artery +12.4662121,UBERON:0004199,http://purl.obolibrary.org/obo/UBERON_0004199,S-shaped body +12.4662121,UBERON:0006580,http://purl.obolibrary.org/obo/UBERON_0006580,mantle cavity +12.4662121,UBERON:0012065,http://purl.obolibrary.org/obo/UBERON_0012065,lobar bronchus of left lung upper lobe +12.4662121,UBERON:0014537,http://purl.obolibrary.org/obo/UBERON_0014537,periamygdaloid cortex +12.4662121,UBERON:0015872,http://purl.obolibrary.org/obo/UBERON_0015872,mandibular lymph node +12.4662121,UBERON:0034950,http://purl.obolibrary.org/obo/UBERON_0034950,lymph sac of lymph heart +12.4775117,CHEBI:17334,http://purl.obolibrary.org/obo/CHEBI_17334,penicillin +12.4775117,CHEBI:35748,http://purl.obolibrary.org/obo/CHEBI_35748,fatty acid ester +12.4775117,CL:0002172,http://purl.obolibrary.org/obo/CL_0002172,interdental cell of cochlea +12.4775117,CL:0007016,http://purl.obolibrary.org/obo/CL_0007016,adaxial cell +12.4775117,DRUGBANK:DB02518,http://purl.obolibrary.org/obo/DRUGBANK_DB02518,none +12.4775117,DRUGBANK:DB03156,http://purl.obolibrary.org/obo/DRUGBANK_DB03156,none +12.4775117,DRUGBANK:DB04942,http://purl.obolibrary.org/obo/DRUGBANK_DB04942,none +12.4775117,DRUGBANK:DB06237,http://purl.obolibrary.org/obo/DRUGBANK_DB06237,none +12.4775117,DRUGBANK:DB06677,http://purl.obolibrary.org/obo/DRUGBANK_DB06677,none +12.4775117,DRUGBANK:DB09272,http://purl.obolibrary.org/obo/DRUGBANK_DB09272,none +12.4775117,DRUGBANK:DB12021,http://purl.obolibrary.org/obo/DRUGBANK_DB12021,none +12.4775117,DRUGBANK:DB13552,http://purl.obolibrary.org/obo/DRUGBANK_DB13552,none +12.4775117,DRUGBANK:DB14125,http://purl.obolibrary.org/obo/DRUGBANK_DB14125,none +12.4775117,GO:0000023,http://purl.obolibrary.org/obo/GO_0000023,maltose metabolic process +12.4775117,GO:0003858,http://purl.obolibrary.org/obo/GO_0003858,3-hydroxybutyrate dehydrogenase activity +12.4775117,GO:0003975,http://purl.obolibrary.org/obo/GO_0003975,UDP-N-acetylglucosamine-dolichyl-phosphate N-acetylglucosaminephosphotransferase activity +12.4775117,GO:0006021,http://purl.obolibrary.org/obo/GO_0006021,inositol biosynthetic process +12.4775117,GO:0007349,http://purl.obolibrary.org/obo/GO_0007349,cellularization +12.4775117,GO:0010517,http://purl.obolibrary.org/obo/GO_0010517,regulation of phospholipase activity +12.4775117,GO:0016920,http://purl.obolibrary.org/obo/GO_0016920,pyroglutamyl-peptidase activity +12.4775117,GO:0018212,http://purl.obolibrary.org/obo/GO_0018212,peptidyl-tyrosine modification +12.4775117,GO:0030968,http://purl.obolibrary.org/obo/GO_0030968,endoplasmic reticulum unfolded protein response +12.4775117,GO:0033981,http://purl.obolibrary.org/obo/GO_0033981,D-dopachrome decarboxylase activity +12.4775117,GO:0035902,http://purl.obolibrary.org/obo/GO_0035902,response to immobilization stress +12.4775117,GO:0040017,http://purl.obolibrary.org/obo/GO_0040017,positive regulation of locomotion +12.4775117,GO:0046880,http://purl.obolibrary.org/obo/GO_0046880,regulation of follicle-stimulating hormone secretion +12.4775117,GO:0071774,http://purl.obolibrary.org/obo/GO_0071774,response to fibroblast growth factor +12.4775117,GO:0098722,http://purl.obolibrary.org/obo/GO_0098722,asymmetric stem cell division +12.4775117,GO:1901857,http://purl.obolibrary.org/obo/GO_1901857,positive regulation of cellular respiration +12.4775117,GO:1904666,http://purl.obolibrary.org/obo/GO_1904666,regulation of ubiquitin protein ligase activity +12.4775117,HP:0002350,http://purl.obolibrary.org/obo/HP_0002350,Cerebellar cyst +12.4775117,HP:0008062,http://purl.obolibrary.org/obo/HP_0008062,Aplasia/Hypoplasia affecting the anterior segment of the eye +12.4775117,HP:0100640,http://purl.obolibrary.org/obo/HP_0100640,Laryngeal cyst +12.4775117,MONDO:0001553,http://purl.obolibrary.org/obo/MONDO_0001553,phacolytic glaucoma +12.4775117,MONDO:0003273,http://purl.obolibrary.org/obo/MONDO_0003273,sternum cancer +12.4775117,MONDO:0003688,http://purl.obolibrary.org/obo/MONDO_0003688,well differentiated papillary mesothelioma +12.4775117,MONDO:0003945,http://purl.obolibrary.org/obo/MONDO_0003945,bone epithelioid hemangioma +12.4775117,MONDO:0004118,http://purl.obolibrary.org/obo/MONDO_0004118,cystitis cystica +12.4775117,MONDO:0006524,http://purl.obolibrary.org/obo/MONDO_0006524,acrodermatitis chronica atrophicans +12.4775117,MONDO:0010020,http://purl.obolibrary.org/obo/MONDO_0010020,congenital generalized lipodystrophy type 2 +12.4775117,MONDO:0010680,http://purl.obolibrary.org/obo/MONDO_0010680,X-linked Emery-Dreifuss muscular dystrophy +12.4775117,MONDO:0016040,http://purl.obolibrary.org/obo/MONDO_0016040,harlequin syndrome +12.4775117,MONDO:0016196,http://purl.obolibrary.org/obo/MONDO_0016196,qualitative or quantitative defects of emerin +12.4775117,MONDO:0017190,http://purl.obolibrary.org/obo/MONDO_0017190,sporadic pheochromocytoma/secreting paraganglioma +12.4775117,MONDO:0020344,http://purl.obolibrary.org/obo/MONDO_0020344,postsynaptic congenital myasthenic syndrome +12.4775117,MONDO:0023551,http://purl.obolibrary.org/obo/MONDO_0023551,C1q nephropathy +12.4775117,MONDO:0042487,http://purl.obolibrary.org/obo/MONDO_0042487,uterine cervix carcinoma in situ +12.4775117,MOP:0000685,http://purl.obolibrary.org/obo/MOP_0000685,none +12.4775117,NCBITaxon:1399582,http://purl.obolibrary.org/obo/NCBITaxon_1399582,none +12.4775117,NCBITaxon:184751,http://purl.obolibrary.org/obo/NCBITaxon_184751,none +12.4775117,NCBITaxon:2509508,http://purl.obolibrary.org/obo/NCBITaxon_2509508,none +12.4775117,NCBITaxon:251096,http://purl.obolibrary.org/obo/NCBITaxon_251096,none +12.4775117,NCBITaxon:33275,http://purl.obolibrary.org/obo/NCBITaxon_33275,none +12.4775117,NCBITaxon:4136,http://purl.obolibrary.org/obo/NCBITaxon_4136,none +12.4775117,NCBITaxon:6312,http://purl.obolibrary.org/obo/NCBITaxon_6312,none +12.4775117,NCBITaxon:715962,http://purl.obolibrary.org/obo/NCBITaxon_715962,dothideomyceta +12.4775117,NCBITaxon:7274,http://purl.obolibrary.org/obo/NCBITaxon_7274,none +12.4775117,PR:000001236,http://purl.obolibrary.org/obo/PR_000001236,melanocortin receptor 3 +12.4775117,PR:000001539,http://purl.obolibrary.org/obo/PR_000001539,probable G-protein coupled receptor 83 +12.4775117,PR:000001593,http://purl.obolibrary.org/obo/PR_000001593,leucine-rich repeat-containing G-protein coupled receptor 6 +12.4775117,PR:000004060,http://purl.obolibrary.org/obo/PR_000004060,anoctamin-5 +12.4775117,PR:000004208,http://purl.obolibrary.org/obo/PR_000004208,ADP-ribosylation factor GTPase-activating protein 3 +12.4775117,PR:000004629,http://purl.obolibrary.org/obo/PR_000004629,adhesion G protein-coupled receptor B1 +12.4775117,PR:000005297,http://purl.obolibrary.org/obo/PR_000005297,homeobox protein CDX-4 +12.4775117,PR:000005760,http://purl.obolibrary.org/obo/PR_000005760,coronin-1A +12.4775117,PR:000006513,http://purl.obolibrary.org/obo/PR_000006513,disks large homolog 3 +12.4775117,PR:000006943,http://purl.obolibrary.org/obo/PR_000006943,EH domain-containing protein 2 +12.4775117,PR:000007053,http://purl.obolibrary.org/obo/PR_000007053,EMILIN-1 +12.4775117,PR:000007175,http://purl.obolibrary.org/obo/PR_000007175,endoplasmic reticulum-Golgi intermediate compartment protein 2 +12.4775117,PR:000007388,http://purl.obolibrary.org/obo/PR_000007388,F-box only protein 11 +12.4775117,PR:000008049,http://purl.obolibrary.org/obo/PR_000008049,glutaredoxin-3 +12.4775117,PR:000008466,http://purl.obolibrary.org/obo/PR_000008466,hepatitis B virus X-interacting protein +12.4775117,PR:000008502,http://purl.obolibrary.org/obo/PR_000008502,E3 ubiquitin-protein ligase HECTD1 +12.4775117,PR:000009089,http://purl.obolibrary.org/obo/PR_000009089,importin-7 +12.4775117,PR:000010204,http://purl.obolibrary.org/obo/PR_000010204,megakaryocyte-associated tyrosine-protein kinase +12.4775117,PR:000010709,http://purl.obolibrary.org/obo/PR_000010709,metastasis-associated protein MTA3 +12.4775117,PR:000011132,http://purl.obolibrary.org/obo/PR_000011132,serine/threonine-protein kinase Nek6 +12.4775117,PR:000011173,http://purl.obolibrary.org/obo/PR_000011173,nuclear factor 1 A-type +12.4775117,PR:000012659,http://purl.obolibrary.org/obo/PR_000012659,"phosphorylase b kinase regulatory subunit alpha, liver isoform" +12.4775117,PR:000012893,http://purl.obolibrary.org/obo/PR_000012893,plexin-A2 +12.4775117,PR:000013655,http://purl.obolibrary.org/obo/PR_000013655,guanine nucleotide exchange factor MSS4 +12.4775117,PR:000014013,http://purl.obolibrary.org/obo/PR_000014013,Ras and Rab interactor 1 +12.4775117,PR:000014123,http://purl.obolibrary.org/obo/PR_000014123,E3 ubiquitin-protein ligase RNF216 +12.4775117,PR:000014184,http://purl.obolibrary.org/obo/PR_000014184,rabphilin-3A +12.4775117,PR:000014958,http://purl.obolibrary.org/obo/PR_000014958,sodium-dependent phosphate transport protein 1 +12.4775117,PR:000015111,http://purl.obolibrary.org/obo/PR_000015111,proton-coupled amino acid transporter 2 +12.4775117,PR:000015196,http://purl.obolibrary.org/obo/PR_000015196,cystine/glutamate transporter +12.4775117,PR:000015423,http://purl.obolibrary.org/obo/PR_000015423,protein SOX-15 +12.4775117,PR:000015446,http://purl.obolibrary.org/obo/PR_000015446,transcription factor Sp8 +12.4775117,PR:000016644,http://purl.obolibrary.org/obo/PR_000016644,tripartite motif-containing protein 14 +12.4775117,PR:000016732,http://purl.obolibrary.org/obo/PR_000016732,translin-associated protein X +12.4775117,PR:000016833,http://purl.obolibrary.org/obo/PR_000016833,tuftelin +12.4775117,PR:000016834,http://purl.obolibrary.org/obo/PR_000016834,tubby-related protein 1 +12.4775117,PR:000017302,http://purl.obolibrary.org/obo/PR_000017302,vitrin +12.4775117,PR:000022574,http://purl.obolibrary.org/obo/PR_000022574,none +12.4775117,PR:000022616,http://purl.obolibrary.org/obo/PR_000022616,none +12.4775117,PR:000022777,http://purl.obolibrary.org/obo/PR_000022777,none +12.4775117,PR:000023026,http://purl.obolibrary.org/obo/PR_000023026,none +12.4775117,PR:000023294,http://purl.obolibrary.org/obo/PR_000023294,none +12.4775117,PR:000023299,http://purl.obolibrary.org/obo/PR_000023299,none +12.4775117,PR:000024190,http://purl.obolibrary.org/obo/PR_000024190,none +12.4775117,PR:000029379,http://purl.obolibrary.org/obo/PR_000029379,SAM decarboxylase proenzyme +12.4775117,PR:000030453,http://purl.obolibrary.org/obo/PR_000030453,immunity-related GTPase family M protein +12.4775117,PR:000034197,http://purl.obolibrary.org/obo/PR_000034197,none +12.4775117,PR:A7MBU6,http://purl.obolibrary.org/obo/PR_A7MBU6,none +12.4775117,PR:P21663,http://purl.obolibrary.org/obo/PR_P21663,none +12.4775117,PR:P40897,http://purl.obolibrary.org/obo/PR_P40897,none +12.4775117,PR:P62651,http://purl.obolibrary.org/obo/PR_P62651,none +12.4775117,PR:Q7SY53,http://purl.obolibrary.org/obo/PR_Q7SY53,none +12.4775117,PR:Q8GYJ3,http://purl.obolibrary.org/obo/PR_Q8GYJ3,none +12.4775117,PR:Q9M9S6,http://purl.obolibrary.org/obo/PR_Q9M9S6,none +12.4775117,PR:Q9SEV0,http://purl.obolibrary.org/obo/PR_Q9SEV0,none +12.4775117,PR:Q9ZNU2,http://purl.obolibrary.org/obo/PR_Q9ZNU2,none +12.4775117,SO:0000881,http://purl.obolibrary.org/obo/SO_0000881,recoded +12.4775117,SO:0000887,http://purl.obolibrary.org/obo/SO_0000887,translationally_frameshifted +12.4775117,SO:0001171,http://purl.obolibrary.org/obo/SO_0001171,none +12.4775117,SO:0001476,http://purl.obolibrary.org/obo/SO_0001476,natural_plasmid +12.4775117,UBERON:0003678,http://purl.obolibrary.org/obo/UBERON_0003678,tooth apex +12.4775117,UBERON:0003709,http://purl.obolibrary.org/obo/UBERON_0003709,circle of Willis +12.4775117,UBERON:0005972,http://purl.obolibrary.org/obo/UBERON_0005972,tunnel of Corti +12.4889404,CHEBI:24676,http://purl.obolibrary.org/obo/CHEBI_24676,hydroxybenzoic acid +12.4889404,CHEBI:25865,http://purl.obolibrary.org/obo/CHEBI_25865,penicillanic acids +12.4889404,CHEBI:35789,http://purl.obolibrary.org/obo/CHEBI_35789,oxo steroid +12.4889404,CHEBI:35992,http://purl.obolibrary.org/obo/CHEBI_35992,penams +12.4889404,CL:0002418,http://purl.obolibrary.org/obo/CL_0002418,hemangioblast +12.4889404,DRUGBANK:DB01747,http://purl.obolibrary.org/obo/DRUGBANK_DB01747,none +12.4889404,DRUGBANK:DB01779,http://purl.obolibrary.org/obo/DRUGBANK_DB01779,none +12.4889404,DRUGBANK:DB01961,http://purl.obolibrary.org/obo/DRUGBANK_DB01961,none +12.4889404,DRUGBANK:DB04333,http://purl.obolibrary.org/obo/DRUGBANK_DB04333,none +12.4889404,DRUGBANK:DB06249,http://purl.obolibrary.org/obo/DRUGBANK_DB06249,none +12.4889404,DRUGBANK:DB06771,http://purl.obolibrary.org/obo/DRUGBANK_DB06771,none +12.4889404,DRUGBANK:DB11443,http://purl.obolibrary.org/obo/DRUGBANK_DB11443,none +12.4889404,DRUGBANK:DB11456,http://purl.obolibrary.org/obo/DRUGBANK_DB11456,none +12.4889404,DRUGBANK:DB11958,http://purl.obolibrary.org/obo/DRUGBANK_DB11958,none +12.4889404,DRUGBANK:DB13861,http://purl.obolibrary.org/obo/DRUGBANK_DB13861,none +12.4889404,DRUGBANK:DB14198,http://purl.obolibrary.org/obo/DRUGBANK_DB14198,none +12.4889404,DRUGBANK:DB14706,http://purl.obolibrary.org/obo/DRUGBANK_DB14706,none +12.4889404,DRUGBANK:DB15931,http://purl.obolibrary.org/obo/DRUGBANK_DB15931,none +12.4889404,GO:0000741,http://purl.obolibrary.org/obo/GO_0000741,karyogamy +12.4889404,GO:0004654,http://purl.obolibrary.org/obo/GO_0004654,polyribonucleotide nucleotidyltransferase activity +12.4889404,GO:0004773,http://purl.obolibrary.org/obo/GO_0004773,steryl-sulfatase activity +12.4889404,GO:0006626,http://purl.obolibrary.org/obo/GO_0006626,protein targeting to mitochondrion +12.4889404,GO:0006677,http://purl.obolibrary.org/obo/GO_0006677,glycosylceramide metabolic process +12.4889404,GO:0007006,http://purl.obolibrary.org/obo/GO_0007006,mitochondrial membrane organization +12.4889404,GO:0008205,http://purl.obolibrary.org/obo/GO_0008205,ecdysone metabolic process +12.4889404,GO:0010189,http://purl.obolibrary.org/obo/GO_0010189,vitamin E biosynthetic process +12.4889404,GO:0010332,http://purl.obolibrary.org/obo/GO_0010332,response to gamma radiation +12.4889404,GO:0016093,http://purl.obolibrary.org/obo/GO_0016093,polyprenol metabolic process +12.4889404,GO:0016415,http://purl.obolibrary.org/obo/GO_0016415,octanoyltransferase activity +12.4889404,GO:0018970,http://purl.obolibrary.org/obo/GO_0018970,toluene metabolic process +12.4889404,GO:0032329,http://purl.obolibrary.org/obo/GO_0032329,serine transport +12.4889404,GO:0032506,http://purl.obolibrary.org/obo/GO_0032506,cytokinetic process +12.4889404,GO:0035014,http://purl.obolibrary.org/obo/GO_0035014,phosphatidylinositol 3-kinase regulator activity +12.4889404,GO:0036072,http://purl.obolibrary.org/obo/GO_0036072,direct ossification +12.4889404,GO:0038047,http://purl.obolibrary.org/obo/GO_0038047,morphine receptor activity +12.4889404,GO:0042845,http://purl.obolibrary.org/obo/GO_0042845,glycol biosynthetic process +12.4889404,GO:0045491,http://purl.obolibrary.org/obo/GO_0045491,xylan metabolic process +12.4889404,GO:0047746,http://purl.obolibrary.org/obo/GO_0047746,chlorophyllase activity +12.4889404,GO:0051939,http://purl.obolibrary.org/obo/GO_0051939,gamma-aminobutyric acid import +12.4889404,GO:0097050,http://purl.obolibrary.org/obo/GO_0097050,type B pancreatic cell apoptotic process +12.4889404,GO:1901113,http://purl.obolibrary.org/obo/GO_1901113,erythromycin metabolic process +12.4889404,GO:1903146,http://purl.obolibrary.org/obo/GO_1903146,regulation of autophagy of mitochondrion +12.4889404,GO:2001259,http://purl.obolibrary.org/obo/GO_2001259,positive regulation of cation channel activity +12.4889404,HP:0000309,http://purl.obolibrary.org/obo/HP_0000309,Abnormality of the midface +12.4889404,HP:0100021,http://purl.obolibrary.org/obo/HP_0100021,Cerebral palsy +12.4889404,MONDO:0002101,http://purl.obolibrary.org/obo/MONDO_0002101,facial nerve neoplasm +12.4889404,MONDO:0003575,http://purl.obolibrary.org/obo/MONDO_0003575,comedocarcinoma +12.4889404,MONDO:0003690,http://purl.obolibrary.org/obo/MONDO_0003690,adult anaplastic ependymoma +12.4889404,MONDO:0005642,http://purl.obolibrary.org/obo/MONDO_0005642,atopic conjunctivitis +12.4889404,MONDO:0006198,http://purl.obolibrary.org/obo/MONDO_0006198,endometrial squamous cell carcinoma +12.4889404,MONDO:0006211,http://purl.obolibrary.org/obo/MONDO_0006211,fibrous hamartoma of infancy +12.4889404,MONDO:0013803,http://purl.obolibrary.org/obo/MONDO_0013803,leukoencephalopathy with calcifications and cysts +12.4889404,MONDO:0014005,http://purl.obolibrary.org/obo/MONDO_0014005,immunoglobulin-mediated membranoproliferative glomerulonephritis +12.4889404,MONDO:0017191,http://purl.obolibrary.org/obo/MONDO_0017191,sporadic pheochromocytoma +12.4889404,MONDO:0018955,http://purl.obolibrary.org/obo/MONDO_0018955,recurrent respiratory papillomatosis +12.4889404,MONDO:0019012,http://purl.obolibrary.org/obo/MONDO_0019012,Carpenter syndrome +12.4889404,MONDO:0019612,http://purl.obolibrary.org/obo/MONDO_0019612,functioning gonadotropic adenoma +12.4889404,MONDO:0022986,http://purl.obolibrary.org/obo/MONDO_0022986,diffuse idiopathic pulmonary neuroendocrine cell hyperplasia +12.4889404,MONDO:0024429,http://purl.obolibrary.org/obo/MONDO_0024429,Alice in wonderland syndrome +12.4889404,MONDO:0044916,http://purl.obolibrary.org/obo/MONDO_0044916,extrarenal rhabdoid tumor +12.4889404,NCBITaxon:112229,http://purl.obolibrary.org/obo/NCBITaxon_112229,none +12.4889404,NCBITaxon:147541,http://purl.obolibrary.org/obo/NCBITaxon_147541,Dothideomycetes +12.4889404,NCBITaxon:208726,http://purl.obolibrary.org/obo/NCBITaxon_208726,none +12.4889404,NCBITaxon:6214,http://purl.obolibrary.org/obo/NCBITaxon_6214,none +12.4889404,NCBITaxon:6313,http://purl.obolibrary.org/obo/NCBITaxon_6313,none +12.4889404,NCBITaxon:68525,http://purl.obolibrary.org/obo/NCBITaxon_68525,delta/epsilon subdivisions +12.4889404,NCBITaxon:95337,http://purl.obolibrary.org/obo/NCBITaxon_95337,none +12.4889404,PR:000001514,http://purl.obolibrary.org/obo/PR_000001514,probable G-protein coupled receptor 152 +12.4889404,PR:000004601,http://purl.obolibrary.org/obo/PR_000004601,"beta-1,4 N-acetylgalactosaminyltransferase 1" +12.4889404,PR:000004904,http://purl.obolibrary.org/obo/PR_000004904,complement C5 +12.4889404,PR:000004980,http://purl.obolibrary.org/obo/PR_000004980,calmodulin-like protein 4 +12.4889404,PR:000005069,http://purl.obolibrary.org/obo/PR_000005069,core-binding factor subunit beta +12.4889404,PR:000005319,http://purl.obolibrary.org/obo/PR_000005319,cadherin EGF LAG seven-pass G-type receptor 2 +12.4889404,PR:000005400,http://purl.obolibrary.org/obo/PR_000005400,chondroadherin +12.4889404,PR:000005411,http://purl.obolibrary.org/obo/PR_000005411,chromodomain-helicase-DNA-binding protein 5 +12.4889404,PR:000005585,http://purl.obolibrary.org/obo/PR_000005585,dual specificity protein kinase CLK2 +12.4889404,PR:000005644,http://purl.obolibrary.org/obo/PR_000005644,metal transporter CNNM2 +12.4889404,PR:000005813,http://purl.obolibrary.org/obo/PR_000005813,carboxypeptidase M +12.4889404,PR:000005852,http://purl.obolibrary.org/obo/PR_000005852,DNA-directed RNA polymerase III subunit RPC9 +12.4889404,PR:000005997,http://purl.obolibrary.org/obo/PR_000005997,transcriptional repressor CTCF +12.4889404,PR:000006163,http://purl.obolibrary.org/obo/PR_000006163,zinc finger protein castor homolog 1 +12.4889404,PR:000007276,http://purl.obolibrary.org/obo/PR_000007276,eyes absent homolog 4 +12.4889404,PR:000007300,http://purl.obolibrary.org/obo/PR_000007300,coagulation factor V +12.4889404,PR:000007400,http://purl.obolibrary.org/obo/PR_000007400,F-box only protein 3 +12.4889404,PR:000008092,http://purl.obolibrary.org/obo/PR_000008092,guanine nucleotide-binding protein G(t) subunit alpha-2 +12.4889404,PR:000008141,http://purl.obolibrary.org/obo/PR_000008141,Golgi membrane protein 1 +12.4889404,PR:000008166,http://purl.obolibrary.org/obo/PR_000008166,glypican-4 +12.4889404,PR:000008883,http://purl.obolibrary.org/obo/PR_000008883,serine/threonine-protein kinase ICK +12.4889404,PR:000009299,http://purl.obolibrary.org/obo/PR_000009299,kinesin-like protein KIF21A +12.4889404,PR:000009304,http://purl.obolibrary.org/obo/PR_000009304,kinesin-like protein KIF25 +12.4889404,PR:000010393,http://purl.obolibrary.org/obo/PR_000010393,melanoma-derived growth regulatory protein +12.4889404,PR:000010673,http://purl.obolibrary.org/obo/PR_000010673,male-specific lethal 1 +12.4889404,PR:000013585,http://purl.obolibrary.org/obo/PR_000013585,Ras-related protein Rab-13 +12.4889404,PR:000014900,http://purl.obolibrary.org/obo/PR_000014900,homeobox protein SIX5 +12.4889404,PR:000015009,http://purl.obolibrary.org/obo/PR_000015009,brain mitochondrial carrier protein 1 +12.4889404,PR:000015321,http://purl.obolibrary.org/obo/PR_000015321,SNARE-associated protein Snapin +12.4889404,PR:000015832,http://purl.obolibrary.org/obo/PR_000015832,small ubiquitin-related modifier 4 +12.4889404,PR:000016850,http://purl.obolibrary.org/obo/PR_000016850,tyrosine-protein kinase TXK +12.4889404,PR:000017065,http://purl.obolibrary.org/obo/PR_000017065,UDP-glucuronosyltransferase 2B7 +12.4889404,PR:000024080,http://purl.obolibrary.org/obo/PR_000024080,none +12.4889404,PR:000029173,http://purl.obolibrary.org/obo/PR_000029173,none +12.4889404,PR:000029224,http://purl.obolibrary.org/obo/PR_000029224,none +12.4889404,PR:000031980,http://purl.obolibrary.org/obo/PR_000031980,tripartite motif-containing protein 59 +12.4889404,PR:000046673,http://purl.obolibrary.org/obo/PR_000046673,none +12.4889404,PR:A7UL74,http://purl.obolibrary.org/obo/PR_A7UL74,none +12.4889404,PR:P05202,http://purl.obolibrary.org/obo/PR_P05202,none +12.4889404,PR:P32319,http://purl.obolibrary.org/obo/PR_P32319,none +12.4889404,PR:P47025,http://purl.obolibrary.org/obo/PR_P47025,none +12.4889404,PR:P93654,http://purl.obolibrary.org/obo/PR_P93654,none +12.4889404,PR:Q04228,http://purl.obolibrary.org/obo/PR_Q04228,none +12.4889404,PR:Q54RB7,http://purl.obolibrary.org/obo/PR_Q54RB7,none +12.4889404,PR:Q9ZVF5,http://purl.obolibrary.org/obo/PR_Q9ZVF5,none +12.4889404,SO:0001608,http://purl.obolibrary.org/obo/SO_0001608,non_conservative_amino_acid_substitution +12.4889404,UBERON:0004943,http://purl.obolibrary.org/obo/UBERON_0004943,submucosa of urinary bladder +12.4889404,UBERON:0005428,http://purl.obolibrary.org/obo/UBERON_0005428,vagal neural crest +12.4889404,UBERON:0005870,http://purl.obolibrary.org/obo/UBERON_0005870,olfactory pit +12.4889404,UBERON:0010194,http://purl.obolibrary.org/obo/UBERON_0010194,hepatic portal system +12.4889404,UBERON:0010748,http://purl.obolibrary.org/obo/UBERON_0010748,lymph node follicle +12.4889404,UBERON:0015202,http://purl.obolibrary.org/obo/UBERON_0015202,lymph heart +12.4889404,UBERON:1000010,http://purl.obolibrary.org/obo/UBERON_1000010,mole +12.5005012,CHEBI:15366,http://purl.obolibrary.org/obo/CHEBI_15366,acetic acid +12.5005012,CHEBI:33358,http://purl.obolibrary.org/obo/CHEBI_33358,cobalt group element atom +12.5005012,CHEBI:33471,http://purl.obolibrary.org/obo/CHEBI_33471,hydrocarbylene group +12.5005012,CHEBI:33663,http://purl.obolibrary.org/obo/CHEBI_33663,cyclic hydrocarbon +12.5005012,CHEBI:36078,http://purl.obolibrary.org/obo/CHEBI_36078,cholanoid +12.5005012,CHEBI:48887,http://purl.obolibrary.org/obo/CHEBI_48887,bile acid metabolite +12.5005012,CHEBI:51689,http://purl.obolibrary.org/obo/CHEBI_51689,enone +12.5005012,CHEBI:51721,http://purl.obolibrary.org/obo/CHEBI_51721,"alpha,beta-unsaturated ketone" +12.5005012,CL:0002057,http://purl.obolibrary.org/obo/CL_0002057,"CD14-positive, CD16-negative classical monocyte" +12.5005012,CL:0008039,http://purl.obolibrary.org/obo/CL_0008039,lower motor neuron +12.5005012,CL:0012000,http://purl.obolibrary.org/obo/CL_0012000,astrocyte of the forebrain +12.5005012,DRUGBANK:DB00632,http://purl.obolibrary.org/obo/DRUGBANK_DB00632,none +12.5005012,DRUGBANK:DB01078,http://purl.obolibrary.org/obo/DRUGBANK_DB01078,none +12.5005012,DRUGBANK:DB02811,http://purl.obolibrary.org/obo/DRUGBANK_DB02811,none +12.5005012,DRUGBANK:DB02982,http://purl.obolibrary.org/obo/DRUGBANK_DB02982,none +12.5005012,DRUGBANK:DB03542,http://purl.obolibrary.org/obo/DRUGBANK_DB03542,none +12.5005012,DRUGBANK:DB03808,http://purl.obolibrary.org/obo/DRUGBANK_DB03808,none +12.5005012,DRUGBANK:DB06205,http://purl.obolibrary.org/obo/DRUGBANK_DB06205,none +12.5005012,DRUGBANK:DB06673,http://purl.obolibrary.org/obo/DRUGBANK_DB06673,none +12.5005012,DRUGBANK:DB08984,http://purl.obolibrary.org/obo/DRUGBANK_DB08984,none +12.5005012,DRUGBANK:DB09113,http://purl.obolibrary.org/obo/DRUGBANK_DB09113,none +12.5005012,DRUGBANK:DB09262,http://purl.obolibrary.org/obo/DRUGBANK_DB09262,none +12.5005012,DRUGBANK:DB11824,http://purl.obolibrary.org/obo/DRUGBANK_DB11824,none +12.5005012,GO:0001515,http://purl.obolibrary.org/obo/GO_0001515,opioid peptide activity +12.5005012,GO:0003980,http://purl.obolibrary.org/obo/GO_0003980,UDP-glucose:glycoprotein glucosyltransferase activity +12.5005012,GO:0004305,http://purl.obolibrary.org/obo/GO_0004305,ethanolamine kinase activity +12.5005012,GO:0004352,http://purl.obolibrary.org/obo/GO_0004352,glutamate dehydrogenase (NAD+) activity +12.5005012,GO:0004814,http://purl.obolibrary.org/obo/GO_0004814,arginine-tRNA ligase activity +12.5005012,GO:0006722,http://purl.obolibrary.org/obo/GO_0006722,triterpenoid metabolic process +12.5005012,GO:0007398,http://purl.obolibrary.org/obo/GO_0007398,ectoderm development +12.5005012,GO:0009876,http://purl.obolibrary.org/obo/GO_0009876,pollen adhesion +12.5005012,GO:0010393,http://purl.obolibrary.org/obo/GO_0010393,galacturonan metabolic process +12.5005012,GO:0015943,http://purl.obolibrary.org/obo/GO_0015943,formate biosynthetic process +12.5005012,GO:0019896,http://purl.obolibrary.org/obo/GO_0019896,axonal transport of mitochondrion +12.5005012,GO:0032217,http://purl.obolibrary.org/obo/GO_0032217,riboflavin transmembrane transporter activity +12.5005012,GO:0032584,http://purl.obolibrary.org/obo/GO_0032584,growth cone membrane +12.5005012,GO:0032992,http://purl.obolibrary.org/obo/GO_0032992,protein-carbohydrate complex +12.5005012,GO:0042255,http://purl.obolibrary.org/obo/GO_0042255,ribosome assembly +12.5005012,GO:0042533,http://purl.obolibrary.org/obo/GO_0042533,none +12.5005012,GO:0043659,http://purl.obolibrary.org/obo/GO_0043659,symbiosome +12.5005012,GO:0045023,http://purl.obolibrary.org/obo/GO_0045023,G0 to G1 transition +12.5005012,GO:0051352,http://purl.obolibrary.org/obo/GO_0051352,negative regulation of ligase activity +12.5005012,GO:0051439,http://purl.obolibrary.org/obo/GO_0051439,none +12.5005012,GO:0051444,http://purl.obolibrary.org/obo/GO_0051444,negative regulation of ubiquitin-protein transferase activity +12.5005012,GO:0051665,http://purl.obolibrary.org/obo/GO_0051665,membrane raft localization +12.5005012,GO:0051962,http://purl.obolibrary.org/obo/GO_0051962,positive regulation of nervous system development +12.5005012,GO:0070092,http://purl.obolibrary.org/obo/GO_0070092,regulation of glucagon secretion +12.5005012,GO:0070672,http://purl.obolibrary.org/obo/GO_0070672,response to interleukin-15 +12.5005012,GO:0097038,http://purl.obolibrary.org/obo/GO_0097038,perinuclear endoplasmic reticulum +12.5005012,GO:0097323,http://purl.obolibrary.org/obo/GO_0097323,B cell adhesion +12.5005012,GO:1900055,http://purl.obolibrary.org/obo/GO_1900055,regulation of leaf senescence +12.5005012,GO:1900451,http://purl.obolibrary.org/obo/GO_1900451,positive regulation of glutamate receptor signaling pathway +12.5005012,GO:1904783,http://purl.obolibrary.org/obo/GO_1904783,positive regulation of NMDA glutamate receptor activity +12.5005012,HP:0000272,http://purl.obolibrary.org/obo/HP_0000272,Malar flattening +12.5005012,HP:0000711,http://purl.obolibrary.org/obo/HP_0000711,Restlessness +12.5005012,HP:0010668,http://purl.obolibrary.org/obo/HP_0010668,Abnormality of the zygomatic bone +12.5005012,HP:0012369,http://purl.obolibrary.org/obo/HP_0012369,Abnormality of malar bones +12.5005012,MONDO:0002900,http://purl.obolibrary.org/obo/MONDO_0002900,cerebral neuroblastoma +12.5005012,MONDO:0003124,http://purl.obolibrary.org/obo/MONDO_0003124,testicular Leydig cell tumor +12.5005012,MONDO:0003343,http://purl.obolibrary.org/obo/MONDO_0003343,retinal hemangioblastoma +12.5005012,MONDO:0004611,http://purl.obolibrary.org/obo/MONDO_0004611,soft palate cancer +12.5005012,MONDO:0004863,http://purl.obolibrary.org/obo/MONDO_0004863,purulent endophthalmitis +12.5005012,MONDO:0005647,http://purl.obolibrary.org/obo/MONDO_0005647,anogenital human papillomavirus infection +12.5005012,MONDO:0007030,http://purl.obolibrary.org/obo/MONDO_0007030,autosomal dominant Aarskog syndrome +12.5005012,MONDO:0007174,http://purl.obolibrary.org/obo/MONDO_0007174,Lown-Ganong-Levine syndrome +12.5005012,MONDO:0008147,http://purl.obolibrary.org/obo/MONDO_0008147,osteogenesis imperfecta type 2 +12.5005012,MONDO:0008586,http://purl.obolibrary.org/obo/MONDO_0008586,esophageal atresia/tracheoesophageal fistula +12.5005012,MONDO:0012589,http://purl.obolibrary.org/obo/MONDO_0012589,Pitt-Hopkins syndrome +12.5005012,MONDO:0016143,http://purl.obolibrary.org/obo/MONDO_0016143,qualitative or quantitative defects of gamma-sarcoglycan +12.5005012,MONDO:0016207,http://purl.obolibrary.org/obo/MONDO_0016207,phacoanaphylactic uveitis +12.5005012,MONDO:0018198,http://purl.obolibrary.org/obo/MONDO_0018198,acute encephalopathy with biphasic seizures and late reduced diffusion +12.5005012,MONDO:0019828,http://purl.obolibrary.org/obo/MONDO_0019828,pituitary stalk interruption syndrome +12.5005012,MONDO:0020339,http://purl.obolibrary.org/obo/MONDO_0020339,X-linked complex spastic paraplegia +12.5005012,MONDO:0021462,http://purl.obolibrary.org/obo/MONDO_0021462,benign neoplasm of rectum +12.5005012,MONDO:0056806,http://purl.obolibrary.org/obo/MONDO_0056806,non-small cell squamous lung carcinoma +12.5005012,NCBITaxon:337051,http://purl.obolibrary.org/obo/NCBITaxon_337051,none +12.5005012,NCBITaxon:6215,http://purl.obolibrary.org/obo/NCBITaxon_6215,none +12.5005012,PR:000001625,http://purl.obolibrary.org/obo/PR_000001625,neuropeptides B/W receptor type 1 +12.5005012,PR:000003948,http://purl.obolibrary.org/obo/PR_000003948,nucleic acid dioxygenase ALKBH1 +12.5005012,PR:000004645,http://purl.obolibrary.org/obo/PR_000004645,homeobox protein BarH-like 1 +12.5005012,PR:000004965,http://purl.obolibrary.org/obo/PR_000004965,calcium-dependent secretion activator 2 +12.5005012,PR:000005083,http://purl.obolibrary.org/obo/PR_000005083,chromobox protein homolog 2 +12.5005012,PR:000005095,http://purl.obolibrary.org/obo/PR_000005095,cell division cycle and apoptosis regulator protein 1 +12.5005012,PR:000005141,http://purl.obolibrary.org/obo/PR_000005141,cyclin-Y +12.5005012,PR:000005735,http://purl.obolibrary.org/obo/PR_000005735,coatomer subunit beta' +12.5005012,PR:000005850,http://purl.obolibrary.org/obo/PR_000005850,protein crumbs homolog 3 +12.5005012,PR:000006320,http://purl.obolibrary.org/obo/PR_000006320,scavenger mRNA-decapping enzyme DcpS +12.5005012,PR:000006622,http://purl.obolibrary.org/obo/PR_000006622,dedicator of cytokinesis protein 5 +12.5005012,PR:000007328,http://purl.obolibrary.org/obo/PR_000007328,protein lifeguard 2 +12.5005012,PR:000007686,http://purl.obolibrary.org/obo/PR_000007686,follistatin-related protein 3 +12.5005012,PR:000007724,http://purl.obolibrary.org/obo/PR_000007724,frizzled-8 +12.5005012,PR:000007926,http://purl.obolibrary.org/obo/PR_000007926,Rab GDP dissociation inhibitor alpha +12.5005012,PR:000008203,http://purl.obolibrary.org/obo/PR_000008203,G protein pathway suppressor 2 +12.5005012,PR:000008501,http://purl.obolibrary.org/obo/PR_000008501,headcase protein +12.5005012,PR:000009291,http://purl.obolibrary.org/obo/PR_000009291,kinesin-like protein KIF17 +12.5005012,PR:000009367,http://purl.obolibrary.org/obo/PR_000009367,krueppel-like factor 7 +12.5005012,PR:000009797,http://purl.obolibrary.org/obo/PR_000009797,LIM/homeobox protein Lhx9 +12.5005012,PR:000009890,http://purl.obolibrary.org/obo/PR_000009890,lysophosphatidylcholine acyltransferase 1 +12.5005012,PR:000011217,http://purl.obolibrary.org/obo/PR_000011217,magnesium transporter NIPA1 +12.5005012,PR:000011424,http://purl.obolibrary.org/obo/PR_000011424,"pro-neuregulin-3, membrane-bound isoform" +12.5005012,PR:000012545,http://purl.obolibrary.org/obo/PR_000012545,"twinkle protein, mitochondrial" +12.5005012,PR:000013134,http://purl.obolibrary.org/obo/PR_000013134,serine/threonine-protein phosphatase 2A 65 kDa regulatory subunit A alpha isoform +12.5005012,PR:000013165,http://purl.obolibrary.org/obo/PR_000013165,polyglutamine-binding protein 1 +12.5005012,PR:000013286,http://purl.obolibrary.org/obo/PR_000013286,serine/threonine-protein kinase PRP4 +12.5005012,PR:000013291,http://purl.obolibrary.org/obo/PR_000013291,ribose-phosphate pyrophosphokinase 1 +12.5005012,PR:000013381,http://purl.obolibrary.org/obo/PR_000013381,homologous-pairing protein 2 +12.5005012,PR:000014136,http://purl.obolibrary.org/obo/PR_000014136,E3 ubiquitin-protein ligase NRDP1 +12.5005012,PR:000014863,http://purl.obolibrary.org/obo/PR_000014863,single Ig IL-1-related receptor +12.5005012,PR:000015807,http://purl.obolibrary.org/obo/PR_000015807,tyrosine-protein kinase STYK1 +12.5005012,PR:000022188,http://purl.obolibrary.org/obo/PR_000022188,none +12.5005012,PR:000022228,http://purl.obolibrary.org/obo/PR_000022228,none +12.5005012,PR:000022374,http://purl.obolibrary.org/obo/PR_000022374,none +12.5005012,PR:000022654,http://purl.obolibrary.org/obo/PR_000022654,none +12.5005012,PR:000023589,http://purl.obolibrary.org/obo/PR_000023589,none +12.5005012,PR:000023960,http://purl.obolibrary.org/obo/PR_000023960,none +12.5005012,PR:000027999,http://purl.obolibrary.org/obo/PR_000027999,none +12.5005012,PR:000030371,http://purl.obolibrary.org/obo/PR_000030371,probable low affinity copper uptake protein 2 +12.5005012,PR:000033099,http://purl.obolibrary.org/obo/PR_000033099,none +12.5005012,PR:F4KBP5,http://purl.obolibrary.org/obo/PR_F4KBP5,none +12.5005012,PR:O42363,http://purl.obolibrary.org/obo/PR_O42363,none +12.5005012,PR:P0A084,http://purl.obolibrary.org/obo/PR_P0A084,none +12.5005012,PR:P0A086,http://purl.obolibrary.org/obo/PR_P0A086,none +12.5005012,PR:P12023,http://purl.obolibrary.org/obo/PR_P12023,none +12.5005012,PR:P17890,http://purl.obolibrary.org/obo/PR_P17890,none +12.5005012,PR:P19351,http://purl.obolibrary.org/obo/PR_P19351,none +12.5005012,PR:P40356,http://purl.obolibrary.org/obo/PR_P40356,none +12.5005012,PR:P40541,http://purl.obolibrary.org/obo/PR_P40541,none +12.5005012,PR:P56979,http://purl.obolibrary.org/obo/PR_P56979,none +12.5005012,PR:Q9SJY5,http://purl.obolibrary.org/obo/PR_Q9SJY5,none +12.5005012,PR:Q9Z0H5,http://purl.obolibrary.org/obo/PR_Q9Z0H5,none +12.5005012,SO:0001822,http://purl.obolibrary.org/obo/SO_0001822,inframe_deletion +12.5005012,UBERON:0001609,http://purl.obolibrary.org/obo/UBERON_0001609,isthmus of thyroid gland +12.5005012,UBERON:0002025,http://purl.obolibrary.org/obo/UBERON_0002025,stratum basale of epidermis +12.5005012,UBERON:0002196,http://purl.obolibrary.org/obo/UBERON_0002196,adenohypophysis +12.5005012,UBERON:0003649,http://purl.obolibrary.org/obo/UBERON_0003649,metacarpal bone of digit 5 +12.5005012,UBERON:0004017,http://purl.obolibrary.org/obo/UBERON_0004017,periocular mesenchyme +12.5005012,UBERON:0004634,http://purl.obolibrary.org/obo/UBERON_0004634,thoracic vertebra 10 +12.5005012,UBERON:0007573,http://purl.obolibrary.org/obo/UBERON_0007573,migrating epithelium +12.5005012,UBERON:0011894,http://purl.obolibrary.org/obo/UBERON_0011894,lumen of vagina +12.5005012,UBERON:0015047,http://purl.obolibrary.org/obo/UBERON_0015047,manual digit 5 metacarpus endochondral element +12.5005012,UBERON:0015229,http://purl.obolibrary.org/obo/UBERON_0015229,accessory circulatory organ +12.5005012,UBERON:2000694,http://purl.obolibrary.org/obo/UBERON_2000694,ceratobranchial 5 tooth +12.5005012,UBERON:4000115,http://purl.obolibrary.org/obo/UBERON_4000115,mineralized bone tissue +12.5121972,CHEBI:32871,http://purl.obolibrary.org/obo/CHEBI_32871,prolinate +12.5121972,CHEBI:37332,http://purl.obolibrary.org/obo/CHEBI_37332,tropane alkaloid +12.5121972,CHEBI:59826,http://purl.obolibrary.org/obo/CHEBI_59826,progestin +12.5121972,CHEBI:87631,http://purl.obolibrary.org/obo/CHEBI_87631,statin +12.5121972,CL:0000173,http://purl.obolibrary.org/obo/CL_0000173,pancreatic D cell +12.5121972,CL:0000921,http://purl.obolibrary.org/obo/CL_0000921,type I NK T cell +12.5121972,DRUGBANK:DB02548,http://purl.obolibrary.org/obo/DRUGBANK_DB02548,none +12.5121972,DRUGBANK:DB03765,http://purl.obolibrary.org/obo/DRUGBANK_DB03765,none +12.5121972,DRUGBANK:DB04638,http://purl.obolibrary.org/obo/DRUGBANK_DB04638,none +12.5121972,DRUGBANK:DB04803,http://purl.obolibrary.org/obo/DRUGBANK_DB04803,none +12.5121972,DRUGBANK:DB05016,http://purl.obolibrary.org/obo/DRUGBANK_DB05016,none +12.5121972,DRUGBANK:DB05246,http://purl.obolibrary.org/obo/DRUGBANK_DB05246,none +12.5121972,DRUGBANK:DB06191,http://purl.obolibrary.org/obo/DRUGBANK_DB06191,none +12.5121972,DRUGBANK:DB09279,http://purl.obolibrary.org/obo/DRUGBANK_DB09279,none +12.5121972,DRUGBANK:DB10423,http://purl.obolibrary.org/obo/DRUGBANK_DB10423,none +12.5121972,DRUGBANK:DB10824,http://purl.obolibrary.org/obo/DRUGBANK_DB10824,none +12.5121972,DRUGBANK:DB11403,http://purl.obolibrary.org/obo/DRUGBANK_DB11403,none +12.5121972,DRUGBANK:DB13633,http://purl.obolibrary.org/obo/DRUGBANK_DB13633,none +12.5121972,DRUGBANK:DB14725,http://purl.obolibrary.org/obo/DRUGBANK_DB14725,none +12.5121972,DRUGBANK:DB15865,http://purl.obolibrary.org/obo/DRUGBANK_DB15865,none +12.5121972,DRUGBANK:DB15974,http://purl.obolibrary.org/obo/DRUGBANK_DB15974,none +12.5121972,GO:0004165,http://purl.obolibrary.org/obo/GO_0004165,dodecenoyl-CoA delta-isomerase activity +12.5121972,GO:0004307,http://purl.obolibrary.org/obo/GO_0004307,ethanolaminephosphotransferase activity +12.5121972,GO:0005725,http://purl.obolibrary.org/obo/GO_0005725,intercalary heterochromatin +12.5121972,GO:0006060,http://purl.obolibrary.org/obo/GO_0006060,sorbitol metabolic process +12.5121972,GO:0008983,http://purl.obolibrary.org/obo/GO_0008983,protein-glutamate O-methyltransferase activity +12.5121972,GO:0010295,http://purl.obolibrary.org/obo/GO_0010295,(+)-abscisic acid 8'-hydroxylase activity +12.5121972,GO:0015774,http://purl.obolibrary.org/obo/GO_0015774,polysaccharide transport +12.5121972,GO:0030157,http://purl.obolibrary.org/obo/GO_0030157,pancreatic juice secretion +12.5121972,GO:0030237,http://purl.obolibrary.org/obo/GO_0030237,female sex determination +12.5121972,GO:0033162,http://purl.obolibrary.org/obo/GO_0033162,melanosome membrane +12.5121972,GO:0035074,http://purl.obolibrary.org/obo/GO_0035074,pupation +12.5121972,GO:0042279,http://purl.obolibrary.org/obo/GO_0042279,"nitrite reductase (cytochrome, ammonia-forming) activity" +12.5121972,GO:0044062,http://purl.obolibrary.org/obo/GO_0044062,regulation of excretion +12.5121972,GO:0045135,http://purl.obolibrary.org/obo/GO_0045135,poly(beta-D-mannuronate) lyase activity +12.5121972,GO:0047761,http://purl.obolibrary.org/obo/GO_0047761,butyrate kinase activity +12.5121972,GO:0050770,http://purl.obolibrary.org/obo/GO_0050770,regulation of axonogenesis +12.5121972,GO:0090741,http://purl.obolibrary.org/obo/GO_0090741,pigment granule membrane +12.5121972,GO:1902617,http://purl.obolibrary.org/obo/GO_1902617,response to fluoride +12.5121972,GO:1904667,http://purl.obolibrary.org/obo/GO_1904667,negative regulation of ubiquitin protein ligase activity +12.5121972,GO:2000242,http://purl.obolibrary.org/obo/GO_2000242,negative regulation of reproductive process +12.5121972,HP:0000526,http://purl.obolibrary.org/obo/HP_0000526,Aniridia +12.5121972,HP:0000769,http://purl.obolibrary.org/obo/HP_0000769,Abnormality of the breast +12.5121972,HP:0008053,http://purl.obolibrary.org/obo/HP_0008053,Aplasia/Hypoplasia of the iris +12.5121972,HP:0008055,http://purl.obolibrary.org/obo/HP_0008055,Aplasia/Hypoplasia affecting the uvea +12.5121972,HP:0100267,http://purl.obolibrary.org/obo/HP_0100267,Lip pit +12.5121972,MONDO:0003601,http://purl.obolibrary.org/obo/MONDO_0003601,mediastinum liposarcoma +12.5121972,MONDO:0004731,http://purl.obolibrary.org/obo/MONDO_0004731,central sleep apnea syndrome +12.5121972,MONDO:0005210,http://purl.obolibrary.org/obo/MONDO_0005210,uterine corpus sarcoma +12.5121972,MONDO:0005624,http://purl.obolibrary.org/obo/MONDO_0005624,atrophic thyroiditis +12.5121972,MONDO:0006220,http://purl.obolibrary.org/obo/MONDO_0006220,gallbladder squamous cell carcinoma +12.5121972,MONDO:0009367,http://purl.obolibrary.org/obo/MONDO_0009367,McKusick-Kaufman syndrome +12.5121972,MONDO:0009756,http://purl.obolibrary.org/obo/MONDO_0009756,Niemann-Pick disease type A +12.5121972,MONDO:0015027,http://purl.obolibrary.org/obo/MONDO_0015027,familial isolated hyperparathyroidism +12.5121972,MONDO:0015151,http://purl.obolibrary.org/obo/MONDO_0015151,"muscular dystrophy, limb-girdle, autosomal dominant" +12.5121972,MONDO:0015200,http://purl.obolibrary.org/obo/MONDO_0015200,anisakiasis +12.5121972,MONDO:0015942,http://purl.obolibrary.org/obo/MONDO_0015942,frontometaphyseal dysplasia +12.5121972,MONDO:0016018,http://purl.obolibrary.org/obo/MONDO_0016018,diabetic embryopathy +12.5121972,MONDO:0017418,http://purl.obolibrary.org/obo/MONDO_0017418,chronic intestinal failure +12.5121972,MONDO:0017817,http://purl.obolibrary.org/obo/MONDO_0017817,primary localized amyloidosis +12.5121972,MONDO:0018952,http://purl.obolibrary.org/obo/MONDO_0018952,argyria +12.5121972,MONDO:0019229,http://purl.obolibrary.org/obo/MONDO_0019229,inborn disorder of ketolysis +12.5121972,MONDO:0024299,http://purl.obolibrary.org/obo/MONDO_0024299,vitamin D-dependent rickets +12.5121972,MONDO:0100151,http://purl.obolibrary.org/obo/MONDO_0100151,nephropathic cystinosis +12.5121972,NCBITaxon:10882,http://purl.obolibrary.org/obo/NCBITaxon_10882,none +12.5121972,NCBITaxon:6216,http://purl.obolibrary.org/obo/NCBITaxon_6216,none +12.5121972,NCBITaxon:63421,http://purl.obolibrary.org/obo/NCBITaxon_63421,none +12.5121972,NCBITaxon:8418,http://purl.obolibrary.org/obo/NCBITaxon_8418,none +12.5121972,PR:000001872,http://purl.obolibrary.org/obo/PR_000001872,junctional adhesion molecule B +12.5121972,PR:000001929,http://purl.obolibrary.org/obo/PR_000001929,sialic acid-binding Ig-like lectin 7 +12.5121972,PR:000004255,http://purl.obolibrary.org/obo/PR_000004255,Rho guanine nucleotide exchange factor 2 +12.5121972,PR:000004301,http://purl.obolibrary.org/obo/PR_000004301,cerebral dopamine neurotrophic factor +12.5121972,PR:000004519,http://purl.obolibrary.org/obo/PR_000004519,autism susceptibility gene 2 protein +12.5121972,PR:000004690,http://purl.obolibrary.org/obo/PR_000004690,B-cell lymphoma/leukemia 11A +12.5121972,PR:000004695,http://purl.obolibrary.org/obo/PR_000004695,Bcl-2-like protein 13 +12.5121972,PR:000005004,http://purl.obolibrary.org/obo/PR_000005004,soluble calcium-activated nucleotidase 1 +12.5121972,PR:000005157,http://purl.obolibrary.org/obo/PR_000005157,T-complex protein 1 subunit theta +12.5121972,PR:000005420,http://purl.obolibrary.org/obo/PR_000005420,E3 ubiquitin-protein ligase CHFR +12.5121972,PR:000005433,http://purl.obolibrary.org/obo/PR_000005433,charged multivesicular body protein 1b +12.5121972,PR:000005451,http://purl.obolibrary.org/obo/PR_000005451,chordin-like protein 1 +12.5121972,PR:000005514,http://purl.obolibrary.org/obo/PR_000005514,chemokine-like factor +12.5121972,PR:000005519,http://purl.obolibrary.org/obo/PR_000005519,cyclin-dependent kinases regulatory subunit 2 +12.5121972,PR:000005521,http://purl.obolibrary.org/obo/PR_000005521,CLIP-associating protein 2 +12.5121972,PR:000005769,http://purl.obolibrary.org/obo/PR_000005769,"protoheme IX farnesyltransferase, mitochondrial" +12.5121972,PR:000006154,http://purl.obolibrary.org/obo/PR_000006154,cytohesin-2 +12.5121972,PR:000006203,http://purl.obolibrary.org/obo/PR_000006203,none +12.5121972,PR:000006609,http://purl.obolibrary.org/obo/PR_000006609,DNA (cytosine-5)-methyltransferase 3-like +12.5121972,PR:000006958,http://purl.obolibrary.org/obo/PR_000006958,eukaryotic translation initiation factor 2-alpha kinase 1 +12.5121972,PR:000008216,http://purl.obolibrary.org/obo/PR_000008216,glutathione peroxidase 7 +12.5121972,PR:000008575,http://purl.obolibrary.org/obo/PR_000008575,histone H1.5 +12.5121972,PR:000010433,http://purl.obolibrary.org/obo/PR_000010433,makorin-3 +12.5121972,PR:000010484,http://purl.obolibrary.org/obo/PR_000010484,matrix metalloproteinase-25 +12.5121972,PR:000010850,http://purl.obolibrary.org/obo/PR_000010850,myosin-XV +12.5121972,PR:000011037,http://purl.obolibrary.org/obo/PR_000011037,NCK-interacting protein with SH3 domain +12.5121972,PR:000012271,http://purl.obolibrary.org/obo/PR_000012271,pappalysin-2 +12.5121972,PR:000012277,http://purl.obolibrary.org/obo/PR_000012277,membrane progestin receptor alpha +12.5121972,PR:000012736,http://purl.obolibrary.org/obo/PR_000012736,peptidyl-prolyl cis-trans isomerase NIMA-interacting 4 +12.5121972,PR:000013379,http://purl.obolibrary.org/obo/PR_000013379,26S proteasome regulatory subunit 7 +12.5121972,PR:000014513,http://purl.obolibrary.org/obo/PR_000014513,secretagogin +12.5121972,PR:000014644,http://purl.obolibrary.org/obo/PR_000014644,"selenide, water dikinase 2" +12.5121972,PR:000014826,http://purl.obolibrary.org/obo/PR_000014826,endophilin-B1 +12.5121972,PR:000015624,http://purl.obolibrary.org/obo/PR_000015624,signal recognition particle 19 kDa protein +12.5121972,PR:000017340,http://purl.obolibrary.org/obo/PR_000017340,vacuolar protein sorting-associated protein 41 +12.5121972,PR:000017558,http://purl.obolibrary.org/obo/PR_000017558,zygote arrest protein 1 +12.5121972,PR:000022741,http://purl.obolibrary.org/obo/PR_000022741,none +12.5121972,PR:000023924,http://purl.obolibrary.org/obo/PR_000023924,none +12.5121972,PR:000024118,http://purl.obolibrary.org/obo/PR_000024118,none +12.5121972,PR:000027517,http://purl.obolibrary.org/obo/PR_000027517,none +12.5121972,PR:000029256,http://purl.obolibrary.org/obo/PR_000029256,ATP-binding cassette sub-family F member 2 +12.5121972,PR:000030461,http://purl.obolibrary.org/obo/PR_000030461,iroquois-class homeodomain protein IRX-5 +12.5121972,PR:000030705,http://purl.obolibrary.org/obo/PR_000030705,transmembrane 6 superfamily member 2 +12.5121972,PR:000031600,http://purl.obolibrary.org/obo/PR_000031600,pleckstrin homology domain-containing family M member 2 +12.5121972,PR:000031851,http://purl.obolibrary.org/obo/PR_000031851,protein FAM3B +12.5121972,PR:O13898,http://purl.obolibrary.org/obo/PR_O13898,none +12.5121972,PR:P32838,http://purl.obolibrary.org/obo/PR_P32838,none +12.5121972,PR:P33303,http://purl.obolibrary.org/obo/PR_P33303,none +12.5121972,PR:P35129,http://purl.obolibrary.org/obo/PR_P35129,none +12.5121972,PR:P50651,http://purl.obolibrary.org/obo/PR_P50651,none +12.5121972,PR:P51102,http://purl.obolibrary.org/obo/PR_P51102,none +12.5121972,PR:Q02100,http://purl.obolibrary.org/obo/PR_Q02100,none +12.5121972,PR:Q38834,http://purl.obolibrary.org/obo/PR_Q38834,none +12.5121972,PR:Q38846,http://purl.obolibrary.org/obo/PR_Q38846,none +12.5121972,PR:Q54NI1,http://purl.obolibrary.org/obo/PR_Q54NI1,none +12.5121972,PR:Q8AXZ4,http://purl.obolibrary.org/obo/PR_Q8AXZ4,none +12.5121972,PR:Q8GY31,http://purl.obolibrary.org/obo/PR_Q8GY31,none +12.5121972,PR:Q8W2F1,http://purl.obolibrary.org/obo/PR_Q8W2F1,none +12.5121972,PR:Q9SB48,http://purl.obolibrary.org/obo/PR_Q9SB48,none +12.5121972,PR:Q9SIN1,http://purl.obolibrary.org/obo/PR_Q9SIN1,none +12.5121972,SO:0001649,http://purl.obolibrary.org/obo/SO_0001649,nested_repeat +12.5121972,SO:0002004,http://purl.obolibrary.org/obo/SO_0002004,ARS_consensus_sequence +12.5121972,UBERON:0000012,http://purl.obolibrary.org/obo/UBERON_0000012,somatic nervous system +12.5121972,UBERON:0001957,http://purl.obolibrary.org/obo/UBERON_0001957,submucosa of bronchus +12.5121972,UBERON:0002772,http://purl.obolibrary.org/obo/UBERON_0002772,olfactory sulcus +12.5121972,UBERON:0004377,http://purl.obolibrary.org/obo/UBERON_0004377,distal metaphysis +12.5121972,UBERON:0005624,http://purl.obolibrary.org/obo/UBERON_0005624,suprarenal artery +12.5121972,UBERON:0014528,http://purl.obolibrary.org/obo/UBERON_0014528,extreme capsule +12.5121972,UBERON:0014693,http://purl.obolibrary.org/obo/UBERON_0014693,inferior alveolar artery +12.5121972,UBERON:0014792,http://purl.obolibrary.org/obo/UBERON_0014792,musculature of pelvic complex +12.5121972,UBERON:2005072,http://purl.obolibrary.org/obo/UBERON_2005072,endocardial ring +12.5121972,UBERON:2005073,http://purl.obolibrary.org/obo/UBERON_2005073,atrioventricular ring +12.5240317,CHEBI:16235,http://purl.obolibrary.org/obo/CHEBI_16235,guanine +12.5240317,CHEBI:16750,http://purl.obolibrary.org/obo/CHEBI_16750,guanosine +12.5240317,CHEBI:24459,http://purl.obolibrary.org/obo/CHEBI_24459,guanosyl group +12.5240317,CHEBI:24460,http://purl.obolibrary.org/obo/CHEBI_24460,5'-guanylyl group +12.5240317,CHEBI:28044,http://purl.obolibrary.org/obo/CHEBI_28044,phenylalanine +12.5240317,CHEBI:30755,http://purl.obolibrary.org/obo/CHEBI_30755,guanin-9-yl group +12.5240317,CHEBI:35276,http://purl.obolibrary.org/obo/CHEBI_35276,ammonium compound +12.5240317,CHEBI:50324,http://purl.obolibrary.org/obo/CHEBI_50324,guanosine 5'-monophosphate residue +12.5240317,CHEBI:51570,http://purl.obolibrary.org/obo/CHEBI_51570,biotins +12.5240317,CHEBI:52494,http://purl.obolibrary.org/obo/CHEBI_52494,purinyl group +12.5240317,CHEBI:53100,http://purl.obolibrary.org/obo/CHEBI_53100,GMP 5'-end residue +12.5240317,CHEBI:53114,http://purl.obolibrary.org/obo/CHEBI_53114,GMP 3'-end residue +12.5240317,CHEBI:64654,http://purl.obolibrary.org/obo/CHEBI_64654,guanosine residue +12.5240317,CHEBI:72298,http://purl.obolibrary.org/obo/CHEBI_72298,MTP inhibitor +12.5240317,CL:0002377,http://purl.obolibrary.org/obo/CL_0002377,immature Schwann cell +12.5240317,DRUGBANK:DB00232,http://purl.obolibrary.org/obo/DRUGBANK_DB00232,none +12.5240317,DRUGBANK:DB01880,http://purl.obolibrary.org/obo/DRUGBANK_DB01880,none +12.5240317,DRUGBANK:DB03073,http://purl.obolibrary.org/obo/DRUGBANK_DB03073,none +12.5240317,DRUGBANK:DB03567,http://purl.obolibrary.org/obo/DRUGBANK_DB03567,none +12.5240317,DRUGBANK:DB04028,http://purl.obolibrary.org/obo/DRUGBANK_DB04028,none +12.5240317,DRUGBANK:DB04892,http://purl.obolibrary.org/obo/DRUGBANK_DB04892,none +12.5240317,DRUGBANK:DB06193,http://purl.obolibrary.org/obo/DRUGBANK_DB06193,none +12.5240317,DRUGBANK:DB06334,http://purl.obolibrary.org/obo/DRUGBANK_DB06334,none +12.5240317,DRUGBANK:DB08953,http://purl.obolibrary.org/obo/DRUGBANK_DB08953,none +12.5240317,DRUGBANK:DB08966,http://purl.obolibrary.org/obo/DRUGBANK_DB08966,none +12.5240317,DRUGBANK:DB11901,http://purl.obolibrary.org/obo/DRUGBANK_DB11901,none +12.5240317,DRUGBANK:DB13746,http://purl.obolibrary.org/obo/DRUGBANK_DB13746,none +12.5240317,DRUGBANK:DB14735,http://purl.obolibrary.org/obo/DRUGBANK_DB14735,none +12.5240317,GO:0000293,http://purl.obolibrary.org/obo/GO_0000293,ferric-chelate reductase activity +12.5240317,GO:0001527,http://purl.obolibrary.org/obo/GO_0001527,microfibril +12.5240317,GO:0004026,http://purl.obolibrary.org/obo/GO_0004026,alcohol O-acetyltransferase activity +12.5240317,GO:0005834,http://purl.obolibrary.org/obo/GO_0005834,heterotrimeric G-protein complex +12.5240317,GO:0005981,http://purl.obolibrary.org/obo/GO_0005981,regulation of glycogen catabolic process +12.5240317,GO:0006769,http://purl.obolibrary.org/obo/GO_0006769,nicotinamide metabolic process +12.5240317,GO:0007229,http://purl.obolibrary.org/obo/GO_0007229,integrin-mediated signaling pathway +12.5240317,GO:0009099,http://purl.obolibrary.org/obo/GO_0009099,valine biosynthetic process +12.5240317,GO:0010016,http://purl.obolibrary.org/obo/GO_0010016,shoot system morphogenesis +12.5240317,GO:0031098,http://purl.obolibrary.org/obo/GO_0031098,stress-activated protein kinase signaling cascade +12.5240317,GO:0032544,http://purl.obolibrary.org/obo/GO_0032544,plastid translation +12.5240317,GO:0032905,http://purl.obolibrary.org/obo/GO_0032905,transforming growth factor beta1 production +12.5240317,GO:0033920,http://purl.obolibrary.org/obo/GO_0033920,6-phospho-beta-galactosidase activity +12.5240317,GO:0042737,http://purl.obolibrary.org/obo/GO_0042737,drug catabolic process +12.5240317,GO:0045488,http://purl.obolibrary.org/obo/GO_0045488,pectin metabolic process +12.5240317,GO:0046169,http://purl.obolibrary.org/obo/GO_0046169,methanol biosynthetic process +12.5240317,GO:0050709,http://purl.obolibrary.org/obo/GO_0050709,negative regulation of protein secretion +12.5240317,GO:0051436,http://purl.obolibrary.org/obo/GO_0051436,none +12.5240317,GO:0055072,http://purl.obolibrary.org/obo/GO_0055072,iron ion homeostasis +12.5240317,GO:0071248,http://purl.obolibrary.org/obo/GO_0071248,cellular response to metal ion +12.5240317,GO:0097332,http://purl.obolibrary.org/obo/GO_0097332,response to antipsychotic drug +12.5240317,GO:1902140,http://purl.obolibrary.org/obo/GO_1902140,response to inositol +12.5240317,GO:1905360,http://purl.obolibrary.org/obo/GO_1905360,GTPase complex +12.5240317,MONDO:0000638,http://purl.obolibrary.org/obo/MONDO_0000638,benign glioma +12.5240317,MONDO:0001764,http://purl.obolibrary.org/obo/MONDO_0001764,ethmoidal sinus neoplasm +12.5240317,MONDO:0004914,http://purl.obolibrary.org/obo/MONDO_0004914,median arcuate ligament syndrome +12.5240317,MONDO:0005416,http://purl.obolibrary.org/obo/MONDO_0005416,"osteoarthritis, knee" +12.5240317,MONDO:0006572,http://purl.obolibrary.org/obo/MONDO_0006572,lichen planus +12.5240317,MONDO:0010155,http://purl.obolibrary.org/obo/MONDO_0010155,Dorfman-Chanarin disease +12.5240317,MONDO:0013252,http://purl.obolibrary.org/obo/MONDO_0013252,Warsaw breakage syndrome +12.5240317,MONDO:0018513,http://purl.obolibrary.org/obo/MONDO_0018513,squamous cell carcinoma of colon +12.5240317,MONDO:0019147,http://purl.obolibrary.org/obo/MONDO_0019147,myiasis +12.5240317,MONDO:0020419,http://purl.obolibrary.org/obo/MONDO_0020419,pulmonary artery hypoplasia +12.5240317,MONDO:0021176,http://purl.obolibrary.org/obo/MONDO_0021176,autoimmune hepatitis type 2 +12.5240317,NCBITaxon:10834,http://purl.obolibrary.org/obo/NCBITaxon_10834,none +12.5240317,NCBITaxon:12440,http://purl.obolibrary.org/obo/NCBITaxon_12440,none +12.5240317,NCBITaxon:12585,http://purl.obolibrary.org/obo/NCBITaxon_12585,none +12.5240317,NCBITaxon:2842408,http://purl.obolibrary.org/obo/NCBITaxon_2842408,none +12.5240317,NCBITaxon:6362,http://purl.obolibrary.org/obo/NCBITaxon_6362,Sabellida +12.5240317,PR:000001015,http://purl.obolibrary.org/obo/PR_000001015,receptor-type tyrosine-protein phosphatase C isoform CD45RA +12.5240317,PR:000001613,http://purl.obolibrary.org/obo/PR_000001613,muscarinic acetylcholine receptor M1 +12.5240317,PR:000003357,http://purl.obolibrary.org/obo/PR_000003357,collagen alpha-2(VI) chain +12.5240317,PR:000003719,http://purl.obolibrary.org/obo/PR_000003719,disintegrin and metalloproteinase domain-containing protein 23 +12.5240317,PR:000004249,http://purl.obolibrary.org/obo/PR_000004249,Rho guanine nucleotide exchange factor 12 +12.5240317,PR:000004283,http://purl.obolibrary.org/obo/PR_000004283,ADP-ribosylation factor-like protein 2-binding protein +12.5240317,PR:000004407,http://purl.obolibrary.org/obo/PR_000004407,ubiquitin-like-conjugating enzyme ATG10 +12.5240317,PR:000004639,http://purl.obolibrary.org/obo/PR_000004639,B-cell scaffold protein with ankyrin repeats +12.5240317,PR:000004754,http://purl.obolibrary.org/obo/PR_000004754,baculoviral IAP repeat-containing protein 6 +12.5240317,PR:000004923,http://purl.obolibrary.org/obo/PR_000004923,carbonic anhydrase 6 +12.5240317,PR:000005119,http://purl.obolibrary.org/obo/PR_000005119,G2/mitotic-specific cyclin-B3 +12.5240317,PR:000005198,http://purl.obolibrary.org/obo/PR_000005198,cyclin-dependent kinase 13 +12.5240317,PR:000007633,http://purl.obolibrary.org/obo/PR_000007633,forkhead box protein L1 +12.5240317,PR:000008024,http://purl.obolibrary.org/obo/PR_000008024,nucleoporin GLE1 +12.5240317,PR:000008637,http://purl.obolibrary.org/obo/PR_000008637,"hydroxymethylglutaryl-CoA synthase, cytoplasmic" +12.5240317,PR:000008721,http://purl.obolibrary.org/obo/PR_000008721,homeobox protein Hox-D3 +12.5240317,PR:000008722,http://purl.obolibrary.org/obo/PR_000008722,homeobox protein Hox-D4 +12.5240317,PR:000008738,http://purl.obolibrary.org/obo/PR_000008738,Hermansky-Pudlak syndrome 4 protein +12.5240317,PR:000008905,http://purl.obolibrary.org/obo/PR_000008905,gamma-interferon-inducible lysosomal thiol reductase +12.5240317,PR:000009335,http://purl.obolibrary.org/obo/PR_000009335,killer cell immunoglobulin-like receptor 2DS4 +12.5240317,PR:000010876,http://purl.obolibrary.org/obo/PR_000010876,myoferlin +12.5240317,PR:000010959,http://purl.obolibrary.org/obo/PR_000010959,alpha-N-acetylgalactosaminidase +12.5240317,PR:000011104,http://purl.obolibrary.org/obo/PR_000011104,"NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial" +12.5240317,PR:000011506,http://purl.obolibrary.org/obo/PR_000011506,nuclear pore complex protein Nup107 +12.5240317,PR:000011554,http://purl.obolibrary.org/obo/PR_000011554,none +12.5240317,PR:000011640,http://purl.obolibrary.org/obo/PR_000011640,one cut domain family member 2 +12.5240317,PR:000013757,http://purl.obolibrary.org/obo/PR_000013757,Ras-specific guanine nucleotide-releasing factor 2 +12.5240317,PR:000013961,http://purl.obolibrary.org/obo/PR_000013961,regulator of G-protein signaling 6 +12.5240317,PR:000014479,http://purl.obolibrary.org/obo/PR_000014479,methylsterol monooxygenase 1 +12.5240317,PR:000014676,http://purl.obolibrary.org/obo/PR_000014676,stress-associated endoplasmic reticulum protein 1 +12.5240317,PR:000014829,http://purl.obolibrary.org/obo/PR_000014829,SH3 and PX domain-containing protein 2A +12.5240317,PR:000014848,http://purl.obolibrary.org/obo/PR_000014848,"serine hydroxymethyltransferase, mitochondrial" +12.5240317,PR:000015053,http://purl.obolibrary.org/obo/PR_000015053,solute carrier family 28 member 3 +12.5240317,PR:000015273,http://purl.obolibrary.org/obo/PR_000015273,structural maintenance of chromosomes protein 4 +12.5240317,PR:000015409,http://purl.obolibrary.org/obo/PR_000015409,vinexin +12.5240317,PR:000015632,http://purl.obolibrary.org/obo/PR_000015632,signal recognition particle receptor subunit alpha +12.5240317,PR:000015994,http://purl.obolibrary.org/obo/PR_000015994,none +12.5240317,PR:000016049,http://purl.obolibrary.org/obo/PR_000016049,serine/threonine-protein kinase TAO2 +12.5240317,PR:000016521,http://purl.obolibrary.org/obo/PR_000016521,tensin-1 +12.5240317,PR:000017013,http://purl.obolibrary.org/obo/PR_000017013,E3 ubiquitin-protein ligase UBR2 +12.5240317,PR:000017017,http://purl.obolibrary.org/obo/PR_000017017,nucleolar transcription factor 1 +12.5240317,PR:000017374,http://purl.obolibrary.org/obo/PR_000017374,Wiskott-Aldrich syndrome protein family member 3 +12.5240317,PR:000017452,http://purl.obolibrary.org/obo/PR_000017452,protein Wnt-9a +12.5240317,PR:000022207,http://purl.obolibrary.org/obo/PR_000022207,none +12.5240317,PR:000022588,http://purl.obolibrary.org/obo/PR_000022588,none +12.5240317,PR:000023037,http://purl.obolibrary.org/obo/PR_000023037,none +12.5240317,PR:000023546,http://purl.obolibrary.org/obo/PR_000023546,none +12.5240317,PR:000030656,http://purl.obolibrary.org/obo/PR_000030656,ninein-like protein +12.5240317,PR:000030812,http://purl.obolibrary.org/obo/PR_000030812,elongator complex protein 6 +12.5240317,PR:000033758,http://purl.obolibrary.org/obo/PR_000033758,none +12.5240317,PR:000050216,http://purl.obolibrary.org/obo/PR_000050216,receptor-type tyrosine-protein phosphatase C isoform CD45R +12.5240317,PR:P07184,http://purl.obolibrary.org/obo/PR_P07184,none +12.5240317,PR:P30627,http://purl.obolibrary.org/obo/PR_P30627,none +12.5240317,PR:P62836,http://purl.obolibrary.org/obo/PR_P62836,none +12.5240317,PR:Q06597,http://purl.obolibrary.org/obo/PR_Q06597,none +12.5240317,PR:Q9STE8,http://purl.obolibrary.org/obo/PR_Q9STE8,none +12.5240317,PR:Q9STX3,http://purl.obolibrary.org/obo/PR_Q9STX3,none +12.5240317,PR:Q9U4L6,http://purl.obolibrary.org/obo/PR_Q9U4L6,none +12.5240317,UBERON:0001208,http://purl.obolibrary.org/obo/UBERON_0001208,submucosa of large intestine +12.5240317,UBERON:0002124,http://purl.obolibrary.org/obo/UBERON_0002124,medulla of thymus +12.5240317,UBERON:0004633,http://purl.obolibrary.org/obo/UBERON_0004633,thoracic vertebra 9 +12.5240317,UBERON:0004636,http://purl.obolibrary.org/obo/UBERON_0004636,thoracic vertebra 12 +12.5240317,UBERON:0005392,http://purl.obolibrary.org/obo/UBERON_0005392,cortical layer III +12.5240317,UBERON:0005967,http://purl.obolibrary.org/obo/UBERON_0005967,conotruncal ridge +12.5240317,UBERON:0008874,http://purl.obolibrary.org/obo/UBERON_0008874,pulmonary acinus +12.5240317,UBERON:0011745,http://purl.obolibrary.org/obo/UBERON_0011745,pulmonary valve leaflets +12.5240317,UBERON:0012329,http://purl.obolibrary.org/obo/UBERON_0012329,keratinized stratified squamous epithelium +12.5360079,CHEBI:17984,http://purl.obolibrary.org/obo/CHEBI_17984,acyl-CoA +12.5360079,CHEBI:22251,http://purl.obolibrary.org/obo/CHEBI_22251,adenosine bisphosphate +12.5360079,CHEBI:23336,http://purl.obolibrary.org/obo/CHEBI_23336,cobalt cation +12.5360079,CHEBI:27638,http://purl.obolibrary.org/obo/CHEBI_27638,cobalt atom +12.5360079,CHEBI:29917,http://purl.obolibrary.org/obo/CHEBI_29917,thiol group +12.5360079,CHEBI:36838,http://purl.obolibrary.org/obo/CHEBI_36838,17-hydroxy steroid +12.5360079,CHEBI:37123,http://purl.obolibrary.org/obo/CHEBI_37123,nucleoside bisphosphate +12.5360079,CHEBI:37240,http://purl.obolibrary.org/obo/CHEBI_37240,"adenosine 3',5'-bisphosphate" +12.5360079,CHEBI:47788,http://purl.obolibrary.org/obo/CHEBI_47788,3-oxo steroid +12.5360079,CHEBI:61078,http://purl.obolibrary.org/obo/CHEBI_61078,purine nucleoside bisphosphate +12.5360079,CHEBI:61079,http://purl.obolibrary.org/obo/CHEBI_61079,ribonucleoside bisphosphate +12.5360079,CHEBI:87635,http://purl.obolibrary.org/obo/CHEBI_87635,statin (synthetic) +12.5360079,CL:0000552,http://purl.obolibrary.org/obo/CL_0000552,orthochromatic erythroblast +12.5360079,CL:0019031,http://purl.obolibrary.org/obo/CL_0019031,intestine goblet cell +12.5360079,DRUGBANK:DB01091,http://purl.obolibrary.org/obo/DRUGBANK_DB01091,none +12.5360079,DRUGBANK:DB01135,http://purl.obolibrary.org/obo/DRUGBANK_DB01135,none +12.5360079,DRUGBANK:DB02382,http://purl.obolibrary.org/obo/DRUGBANK_DB02382,none +12.5360079,DRUGBANK:DB03295,http://purl.obolibrary.org/obo/DRUGBANK_DB03295,none +12.5360079,DRUGBANK:DB04396,http://purl.obolibrary.org/obo/DRUGBANK_DB04396,none +12.5360079,DRUGBANK:DB04894,http://purl.obolibrary.org/obo/DRUGBANK_DB04894,none +12.5360079,DRUGBANK:DB06592,http://purl.obolibrary.org/obo/DRUGBANK_DB06592,none +12.5360079,DRUGBANK:DB10613,http://purl.obolibrary.org/obo/DRUGBANK_DB10613,none +12.5360079,DRUGBANK:DB11186,http://purl.obolibrary.org/obo/DRUGBANK_DB11186,none +12.5360079,DRUGBANK:DB11755,http://purl.obolibrary.org/obo/DRUGBANK_DB11755,none +12.5360079,DRUGBANK:DB11943,http://purl.obolibrary.org/obo/DRUGBANK_DB11943,none +12.5360079,DRUGBANK:DB12151,http://purl.obolibrary.org/obo/DRUGBANK_DB12151,none +12.5360079,DRUGBANK:DB12447,http://purl.obolibrary.org/obo/DRUGBANK_DB12447,none +12.5360079,DRUGBANK:DB12957,http://purl.obolibrary.org/obo/DRUGBANK_DB12957,none +12.5360079,DRUGBANK:DB13140,http://purl.obolibrary.org/obo/DRUGBANK_DB13140,none +12.5360079,DRUGBANK:DB13694,http://purl.obolibrary.org/obo/DRUGBANK_DB13694,none +12.5360079,GO:0003825,http://purl.obolibrary.org/obo/GO_0003825,"alpha,alpha-trehalose-phosphate synthase (UDP-forming) activity" +12.5360079,GO:0005896,http://purl.obolibrary.org/obo/GO_0005896,interleukin-6 receptor complex +12.5360079,GO:0006562,http://purl.obolibrary.org/obo/GO_0006562,proline catabolic process +12.5360079,GO:0007094,http://purl.obolibrary.org/obo/GO_0007094,mitotic spindle assembly checkpoint signaling +12.5360079,GO:0009129,http://purl.obolibrary.org/obo/GO_0009129,pyrimidine nucleoside monophosphate metabolic process +12.5360079,GO:0017136,http://purl.obolibrary.org/obo/GO_0017136,NAD-dependent histone deacetylase activity +12.5360079,GO:0019594,http://purl.obolibrary.org/obo/GO_0019594,mannitol metabolic process +12.5360079,GO:0030213,http://purl.obolibrary.org/obo/GO_0030213,hyaluronan biosynthetic process +12.5360079,GO:0031838,http://purl.obolibrary.org/obo/GO_0031838,haptoglobin-hemoglobin complex +12.5360079,GO:0034397,http://purl.obolibrary.org/obo/GO_0034397,telomere localization +12.5360079,GO:0035767,http://purl.obolibrary.org/obo/GO_0035767,endothelial cell chemotaxis +12.5360079,GO:0035941,http://purl.obolibrary.org/obo/GO_0035941,androstenedione secretion +12.5360079,GO:0036257,http://purl.obolibrary.org/obo/GO_0036257,multivesicular body organization +12.5360079,GO:0036258,http://purl.obolibrary.org/obo/GO_0036258,multivesicular body assembly +12.5360079,GO:0042866,http://purl.obolibrary.org/obo/GO_0042866,pyruvate biosynthetic process +12.5360079,GO:0047844,http://purl.obolibrary.org/obo/GO_0047844,deoxycytidine deaminase activity +12.5360079,GO:0048867,http://purl.obolibrary.org/obo/GO_0048867,stem cell fate determination +12.5360079,GO:1990863,http://purl.obolibrary.org/obo/GO_1990863,acinar cell proliferation +12.5360079,HP:0001644,http://purl.obolibrary.org/obo/HP_0001644,Dilated cardiomyopathy +12.5360079,MONDO:0001989,http://purl.obolibrary.org/obo/MONDO_0001989,atrophic glossitis +12.5360079,MONDO:0002030,http://purl.obolibrary.org/obo/MONDO_0002030,chronic cervicitis +12.5360079,MONDO:0003112,http://purl.obolibrary.org/obo/MONDO_0003112,malignant gastric germ cell tumor +12.5360079,MONDO:0004360,http://purl.obolibrary.org/obo/MONDO_0004360,breast extraskeletal osteosarcoma +12.5360079,MONDO:0004484,http://purl.obolibrary.org/obo/MONDO_0004484,gallbladder melanoma +12.5360079,MONDO:0009749,http://purl.obolibrary.org/obo/MONDO_0009749,giant axonal neuropathy 1 +12.5360079,MONDO:0009885,http://purl.obolibrary.org/obo/MONDO_0009885,Scott syndrome +12.5360079,MONDO:0012000,http://purl.obolibrary.org/obo/MONDO_0012000,specific phobia +12.5360079,MONDO:0018017,http://purl.obolibrary.org/obo/MONDO_0018017,goblet cell carcinoma +12.5360079,MONDO:0018448,http://purl.obolibrary.org/obo/MONDO_0018448,clear cell papillary renal cell carcinoma +12.5360079,MONDO:0019591,http://purl.obolibrary.org/obo/MONDO_0019591,panhypopituitarism +12.5360079,MONDO:0020089,http://purl.obolibrary.org/obo/MONDO_0020089,acquired lipodystrophy +12.5360079,MONDO:0020527,http://purl.obolibrary.org/obo/MONDO_0020527,ectopic Cushing syndrome +12.5360079,MONDO:0021323,http://purl.obolibrary.org/obo/MONDO_0021323,malignant neoplasm of chest wall +12.5360079,MONDO:0400005,http://purl.obolibrary.org/obo/MONDO_0400005,refeeding syndrome +12.5360079,NCBITaxon:11301,http://purl.obolibrary.org/obo/NCBITaxon_11301,none +12.5360079,NCBITaxon:1980415,http://purl.obolibrary.org/obo/NCBITaxon_1980415,Nairoviridae +12.5360079,NCBITaxon:1980517,http://purl.obolibrary.org/obo/NCBITaxon_1980517,Orthonairovirus +12.5360079,NCBITaxon:28350,http://purl.obolibrary.org/obo/NCBITaxon_28350,none +12.5360079,NCBITaxon:5125,http://purl.obolibrary.org/obo/NCBITaxon_5125,Hypocreales +12.5360079,NCBITaxon:548682,http://purl.obolibrary.org/obo/NCBITaxon_548682,none +12.5360079,NCBITaxon:7756,http://purl.obolibrary.org/obo/NCBITaxon_7756,none +12.5360079,NCBITaxon:7757,http://purl.obolibrary.org/obo/NCBITaxon_7757,none +12.5360079,PR:000001238,http://purl.obolibrary.org/obo/PR_000001238,melanocortin receptor 5 +12.5360079,PR:000001486,http://purl.obolibrary.org/obo/PR_000001486,lysophosphatidic acid receptor 5 +12.5360079,PR:000001633,http://purl.obolibrary.org/obo/PR_000001633,orexin receptor type 1 +12.5360079,PR:000003697,http://purl.obolibrary.org/obo/PR_000003697,actin-related protein 3B +12.5360079,PR:000005622,http://purl.obolibrary.org/obo/PR_000005622,COX assembly mitochondrial protein +12.5360079,PR:000005698,http://purl.obolibrary.org/obo/PR_000005698,collagen alpha-1(XIV) chain +12.5360079,PR:000006301,http://purl.obolibrary.org/obo/PR_000006301,homeobox protein DBX1 +12.5360079,PR:000006691,http://purl.obolibrary.org/obo/PR_000006691,dystrophin-related protein 2 +12.5360079,PR:000008194,http://purl.obolibrary.org/obo/PR_000008194,retinoic acid-induced protein 3 +12.5360079,PR:000008579,http://purl.obolibrary.org/obo/PR_000008579,histone H1t +12.5360079,PR:000008972,http://purl.obolibrary.org/obo/PR_000008972,protein turtle homolog A +12.5360079,PR:000009229,http://purl.obolibrary.org/obo/PR_000009229,protein JTB +12.5360079,PR:000009818,http://purl.obolibrary.org/obo/PR_000009818,LIM and senescent cell antigen-like-containing domain protein 1 +12.5360079,PR:000010398,http://purl.obolibrary.org/obo/PR_000010398,MHC class I polypeptide-related sequence A +12.5360079,PR:000011243,http://purl.obolibrary.org/obo/PR_000011243,homeobox protein Nkx-2.3 +12.5360079,PR:000011465,http://purl.obolibrary.org/obo/PR_000011465,netrin-4 +12.5360079,PR:000012815,http://purl.obolibrary.org/obo/PR_000012815,placenta-specific protein 1 +12.5360079,PR:000012958,http://purl.obolibrary.org/obo/PR_000012958,GDP-fucose protein O-fucosyltransferase 1 +12.5360079,PR:000013176,http://purl.obolibrary.org/obo/PR_000013176,protein regulator of cytokinesis 1 +12.5360079,PR:000013402,http://purl.obolibrary.org/obo/PR_000013402,psoriasis susceptibility 1 candidate gene 2 protein +12.5360079,PR:000013704,http://purl.obolibrary.org/obo/PR_000013704,inactive serine protease RAMP +12.5360079,PR:000015117,http://purl.obolibrary.org/obo/PR_000015117,glucose-6-phosphate exchanger SLC37A4 +12.5360079,PR:000015290,http://purl.obolibrary.org/obo/PR_000015290,SPARC-related modular calcium-binding protein 2 +12.5360079,PR:000015524,http://purl.obolibrary.org/obo/PR_000015524,A-kinase anchor protein SPHKAP +12.5360079,PR:000016187,http://purl.obolibrary.org/obo/PR_000016187,intron Large complex component GCFC2 +12.5360079,PR:000016300,http://purl.obolibrary.org/obo/PR_000016300,trimethylguanosine synthase +12.5360079,PR:000017076,http://purl.obolibrary.org/obo/PR_000017076,UL16-binding protein 3 +12.5360079,PR:000024095,http://purl.obolibrary.org/obo/PR_000024095,none +12.5360079,PR:000025558,http://purl.obolibrary.org/obo/PR_000025558,amyloid-beta precursor protein sequence variant (human) +12.5360079,PR:000031092,http://purl.obolibrary.org/obo/PR_000031092,"serine/threonine-protein phosphatase PGAM5, mitochondrial" +12.5360079,PR:000032325,http://purl.obolibrary.org/obo/PR_000032325,CDK2-associated and cullin domain-containing protein 1 +12.5360079,PR:000032403,http://purl.obolibrary.org/obo/PR_000032403,interferon-induced transmembrane protein 5 +12.5360079,PR:000033780,http://purl.obolibrary.org/obo/PR_000033780,none +12.5360079,PR:000050054,http://purl.obolibrary.org/obo/PR_000050054,structure-specific endonuclease subunit SLX1 +12.5360079,PR:O48639,http://purl.obolibrary.org/obo/PR_O48639,none +12.5360079,PR:P04689,http://purl.obolibrary.org/obo/PR_P04689,none +12.5360079,PR:P35497,http://purl.obolibrary.org/obo/PR_P35497,none +12.5360079,PR:P37291,http://purl.obolibrary.org/obo/PR_P37291,none +12.5360079,PR:Q5PQP5,http://purl.obolibrary.org/obo/PR_Q5PQP5,none +12.5360079,PR:Q84LK0,http://purl.obolibrary.org/obo/PR_Q84LK0,none +12.5360079,PR:Q8BX32,http://purl.obolibrary.org/obo/PR_Q8BX32,none +12.5360079,PR:Q94C74,http://purl.obolibrary.org/obo/PR_Q94C74,none +12.5360079,PR:Q9BQ83,http://purl.obolibrary.org/obo/PR_Q9BQ83,structure-specific endonuclease subunit SLX1 (human) +12.5360079,PR:Q9SU94,http://purl.obolibrary.org/obo/PR_Q9SU94,none +12.5360079,UBERON:0000166,http://purl.obolibrary.org/obo/UBERON_0000166,oral opening +12.5360079,UBERON:0001178,http://purl.obolibrary.org/obo/UBERON_0001178,visceral peritoneum +12.5360079,UBERON:0003211,http://purl.obolibrary.org/obo/UBERON_0003211,median eye +12.5360079,UBERON:0004068,http://purl.obolibrary.org/obo/UBERON_0004068,medial nasal prominence +12.5360079,UBERON:0005498,http://purl.obolibrary.org/obo/UBERON_0005498,primitive heart tube +12.5360079,UBERON:0006589,http://purl.obolibrary.org/obo/UBERON_0006589,round ligament of uterus +12.5360079,UBERON:0006871,http://purl.obolibrary.org/obo/UBERON_0006871,embryonic footplate +12.5360079,UBERON:0008917,http://purl.obolibrary.org/obo/UBERON_0008917,ampullary organ +12.5360079,UBERON:0009845,http://purl.obolibrary.org/obo/UBERON_0009845,urogenital sinus mesenchyme +12.5360079,UBERON:0015062,http://purl.obolibrary.org/obo/UBERON_0015062,bone condensation +12.5481292,CHEBI:26432,http://purl.obolibrary.org/obo/CHEBI_26432,pyrimidine nucleobase +12.5481292,CHEBI:36054,http://purl.obolibrary.org/obo/CHEBI_36054,benzoate ester +12.5481292,CHEBI:47909,http://purl.obolibrary.org/obo/CHEBI_47909,3-oxo-Delta(4) steroid +12.5481292,CHEBI:61336,http://purl.obolibrary.org/obo/CHEBI_61336,C4-dicarboxylate +12.5481292,CHEBI:62732,http://purl.obolibrary.org/obo/CHEBI_62732,aromatic ester +12.5481292,CHEBI:8294,http://purl.obolibrary.org/obo/CHEBI_8294,Poly-L-glutamate +12.5481292,CL:0007001,http://purl.obolibrary.org/obo/CL_0007001,skeletogenic cell +12.5481292,DRUGBANK:DB03363,http://purl.obolibrary.org/obo/DRUGBANK_DB03363,none +12.5481292,DRUGBANK:DB05575,http://purl.obolibrary.org/obo/DRUGBANK_DB05575,none +12.5481292,DRUGBANK:DB05643,http://purl.obolibrary.org/obo/DRUGBANK_DB05643,none +12.5481292,DRUGBANK:DB12482,http://purl.obolibrary.org/obo/DRUGBANK_DB12482,none +12.5481292,DRUGBANK:DB13449,http://purl.obolibrary.org/obo/DRUGBANK_DB13449,none +12.5481292,DRUGBANK:DB13724,http://purl.obolibrary.org/obo/DRUGBANK_DB13724,none +12.5481292,DRUGBANK:DB13926,http://purl.obolibrary.org/obo/DRUGBANK_DB13926,none +12.5481292,DRUGBANK:DB14004,http://purl.obolibrary.org/obo/DRUGBANK_DB14004,none +12.5481292,DRUGBANK:DB14058,http://purl.obolibrary.org/obo/DRUGBANK_DB14058,none +12.5481292,DRUGBANK:DB15985,http://purl.obolibrary.org/obo/DRUGBANK_DB15985,none +12.5481292,GO:0000213,http://purl.obolibrary.org/obo/GO_0000213,tRNA-intron endonuclease activity +12.5481292,GO:0004003,http://purl.obolibrary.org/obo/GO_0004003,none +12.5481292,GO:0006523,http://purl.obolibrary.org/obo/GO_0006523,alanine biosynthetic process +12.5481292,GO:0008755,http://purl.obolibrary.org/obo/GO_0008755,O antigen polymerase activity +12.5481292,GO:0009079,http://purl.obolibrary.org/obo/GO_0009079,pyruvate family amino acid biosynthetic process +12.5481292,GO:0009147,http://purl.obolibrary.org/obo/GO_0009147,pyrimidine nucleoside triphosphate metabolic process +12.5481292,GO:0009261,http://purl.obolibrary.org/obo/GO_0009261,ribonucleotide catabolic process +12.5481292,GO:0016759,http://purl.obolibrary.org/obo/GO_0016759,cellulose synthase activity +12.5481292,GO:0020013,http://purl.obolibrary.org/obo/GO_0020013,modulation by symbiont of host erythrocyte aggregation +12.5481292,GO:0033066,http://purl.obolibrary.org/obo/GO_0033066,Rad51B-Rad51C complex +12.5481292,GO:0034118,http://purl.obolibrary.org/obo/GO_0034118,regulation of erythrocyte aggregation +12.5481292,GO:0043379,http://purl.obolibrary.org/obo/GO_0043379,memory T cell differentiation +12.5481292,GO:0048821,http://purl.obolibrary.org/obo/GO_0048821,erythrocyte development +12.5481292,GO:0051781,http://purl.obolibrary.org/obo/GO_0051781,positive regulation of cell division +12.5481292,GO:0051881,http://purl.obolibrary.org/obo/GO_0051881,regulation of mitochondrial membrane potential +12.5481292,GO:1903604,http://purl.obolibrary.org/obo/GO_1903604,cytochrome metabolic process +12.5481292,GO:1904862,http://purl.obolibrary.org/obo/GO_1904862,inhibitory synapse assembly +12.5481292,HP:0003187,http://purl.obolibrary.org/obo/HP_0003187,Breast hypoplasia +12.5481292,HP:0010311,http://purl.obolibrary.org/obo/HP_0010311,Aplasia/Hypoplasia of the breasts +12.5481292,HP:0031093,http://purl.obolibrary.org/obo/HP_0031093,Abnormal breast morphology +12.5481292,MONDO:0000881,http://purl.obolibrary.org/obo/MONDO_0000881,"myeloid and lymphoid neoplasms with eosinophilia and abnormalities of PDGFRA, PDGFRB, and FGFR1" +12.5481292,MONDO:0001867,http://purl.obolibrary.org/obo/MONDO_0001867,phaeohyphomycosis +12.5481292,MONDO:0002295,http://purl.obolibrary.org/obo/MONDO_0002295,skin glomus tumor +12.5481292,MONDO:0003321,http://purl.obolibrary.org/obo/MONDO_0003321,hereditary Wilms tumor +12.5481292,MONDO:0003730,http://purl.obolibrary.org/obo/MONDO_0003730,aleukemic leukemia +12.5481292,MONDO:0003750,http://purl.obolibrary.org/obo/MONDO_0003750,childhood central nervous system germ cell tumor +12.5481292,MONDO:0004356,http://purl.obolibrary.org/obo/MONDO_0004356,childhood multilocular cystic kidney neoplasm +12.5481292,MONDO:0006018,http://purl.obolibrary.org/obo/MONDO_0006018,Wissler syndrome +12.5481292,MONDO:0006135,http://purl.obolibrary.org/obo/MONDO_0006135,cervical clear cell adenocarcinoma +12.5481292,MONDO:0006886,http://purl.obolibrary.org/obo/MONDO_0006886,thyroid gland papillary and follicular carcinoma +12.5481292,MONDO:0016735,http://purl.obolibrary.org/obo/MONDO_0016735,papillary glioneuronal tumor +12.5481292,MONDO:0017309,http://purl.obolibrary.org/obo/MONDO_0017309,neonatal Marfan syndrome +12.5481292,MONDO:0020467,http://purl.obolibrary.org/obo/MONDO_0020467,mosaic monosomy X +12.5481292,MONDO:0023605,http://purl.obolibrary.org/obo/MONDO_0023605,Laugier-Hunziker syndrome +12.5481292,MONDO:0030604,http://purl.obolibrary.org/obo/MONDO_0030604,cystic partially differentiated nephroblastoma +12.5481292,NCBITaxon:121226,http://purl.obolibrary.org/obo/NCBITaxon_121226,Pediculus humanus capitis +12.5481292,NCBITaxon:12317,http://purl.obolibrary.org/obo/NCBITaxon_12317,none +12.5481292,NCBITaxon:186886,http://purl.obolibrary.org/obo/NCBITaxon_186886,none +12.5481292,PR:000001459,http://purl.obolibrary.org/obo/PR_000001459,glucose-dependent insulinotropic receptor +12.5481292,PR:000003924,http://purl.obolibrary.org/obo/PR_000003924,10-formyltetrahydrofolate dehydrogenase +12.5481292,PR:000004002,http://purl.obolibrary.org/obo/PR_000004002,AMP deaminase 2 +12.5481292,PR:000004317,http://purl.obolibrary.org/obo/PR_000004317,cAMP-regulated phosphoprotein 21 +12.5481292,PR:000005976,http://purl.obolibrary.org/obo/PR_000005976,cleavage stimulation factor subunit 2 +12.5481292,PR:000006304,http://purl.obolibrary.org/obo/PR_000006304,netrin receptor DCC +12.5481292,PR:000006892,http://purl.obolibrary.org/obo/PR_000006892,ER degradation-enhancing alpha-mannosidase-like protein 1 +12.5481292,PR:000006965,http://purl.obolibrary.org/obo/PR_000006965,translation initiation factor eIF-2B subunit delta +12.5481292,PR:000006981,http://purl.obolibrary.org/obo/PR_000006981,eukaryotic translation initiation factor 3 subunit I +12.5481292,PR:000007074,http://purl.obolibrary.org/obo/PR_000007074,ectoderm-neural cortex protein 1 +12.5481292,PR:000007253,http://purl.obolibrary.org/obo/PR_000007253,exocyst complex component 6 +12.5481292,PR:000007473,http://purl.obolibrary.org/obo/PR_000007473,"FYVE, RhoGEF and PH domain-containing protein 1" +12.5481292,PR:000008095,http://purl.obolibrary.org/obo/PR_000008095,guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-1 +12.5481292,PR:000008180,http://purl.obolibrary.org/obo/PR_000008180,GPN-loop GTPase 1 +12.5481292,PR:000008214,http://purl.obolibrary.org/obo/PR_000008214,epididymal secretory glutathione peroxidase +12.5481292,PR:000008635,http://purl.obolibrary.org/obo/PR_000008635,"hydroxymethylglutaryl-CoA lyase, mitochondrial" +12.5481292,PR:000008929,http://purl.obolibrary.org/obo/PR_000008929,interferon-related developmental regulator 1 +12.5481292,PR:000009300,http://purl.obolibrary.org/obo/PR_000009300,kinesin-like protein KIF21B +12.5481292,PR:000010774,http://purl.obolibrary.org/obo/PR_000010774,mitochondrial ubiquitin ligase activator of NFKB 1 +12.5481292,PR:000010870,http://purl.obolibrary.org/obo/PR_000010870,myosin-VIIb +12.5481292,PR:000011155,http://purl.obolibrary.org/obo/PR_000011155,neurogenic differentiation factor 6 +12.5481292,PR:000012478,http://purl.obolibrary.org/obo/PR_000012478,"rod cGMP-specific 3',5'-cyclic phosphodiesterase subunit alpha" +12.5481292,PR:000012655,http://purl.obolibrary.org/obo/PR_000012655,histone lysine demethylase PHF8 +12.5481292,PR:000013113,http://purl.obolibrary.org/obo/PR_000013113,protein phosphatase 1 regulatory subunit 14B +12.5481292,PR:000013738,http://purl.obolibrary.org/obo/PR_000013738,retinoic acid receptor gamma +12.5481292,PR:000014347,http://purl.obolibrary.org/obo/PR_000014347,reticulon-3 +12.5481292,PR:000014813,http://purl.obolibrary.org/obo/PR_000014813,SH2 domain-containing protein 1B +12.5481292,PR:000015771,http://purl.obolibrary.org/obo/PR_000015771,stimulated by retinoic acid gene 13 protein +12.5481292,PR:000015780,http://purl.obolibrary.org/obo/PR_000015780,striatin-4 +12.5481292,PR:000016620,http://purl.obolibrary.org/obo/PR_000016620,T-cell receptor-associated transmembrane adapter 1 +12.5481292,PR:000016633,http://purl.obolibrary.org/obo/PR_000016633,three prime repair exonuclease 2 +12.5481292,PR:000016668,http://purl.obolibrary.org/obo/PR_000016668,triple functional domain protein +12.5481292,PR:000016948,http://purl.obolibrary.org/obo/PR_000016948,UDP-N-acetylhexosamine pyrophosphorylase +12.5481292,PR:000018208,http://purl.obolibrary.org/obo/PR_000018208,E3 ubiquitin-protein ligase ZNRF3 +12.5481292,PR:000022338,http://purl.obolibrary.org/obo/PR_000022338,none +12.5481292,PR:000022480,http://purl.obolibrary.org/obo/PR_000022480,none +12.5481292,PR:000024154,http://purl.obolibrary.org/obo/PR_000024154,none +12.5481292,PR:000027567,http://purl.obolibrary.org/obo/PR_000027567,none +12.5481292,PR:000029427,http://purl.obolibrary.org/obo/PR_000029427,DnaJ homolog subfamily C member 7 +12.5481292,PR:000030963,http://purl.obolibrary.org/obo/PR_000030963,N-fatty-acyl-amino acid synthase/hydrolase PM20D1 +12.5481292,PR:000031661,http://purl.obolibrary.org/obo/PR_000031661,transmembrane 4 L6 family member 1 +12.5481292,PR:000031732,http://purl.obolibrary.org/obo/PR_000031732,transmembrane protein 54 +12.5481292,PR:000031938,http://purl.obolibrary.org/obo/PR_000031938,SIN3-HDAC complex-associated factor +12.5481292,PR:000033584,http://purl.obolibrary.org/obo/PR_000033584,none +12.5481292,PR:P00330,http://purl.obolibrary.org/obo/PR_P00330,none +12.5481292,PR:P23292,http://purl.obolibrary.org/obo/PR_P23292,none +12.5481292,PR:P33311,http://purl.obolibrary.org/obo/PR_P33311,none +12.5481292,PR:Q06725,http://purl.obolibrary.org/obo/PR_Q06725,none +12.5481292,PR:Q07500,http://purl.obolibrary.org/obo/PR_Q07500,none +12.5481292,PR:Q39050,http://purl.obolibrary.org/obo/PR_Q39050,none +12.5481292,PR:Q39238,http://purl.obolibrary.org/obo/PR_Q39238,none +12.5481292,PR:Q8IRW8,http://purl.obolibrary.org/obo/PR_Q8IRW8,none +12.5481292,PR:Q8LFH5,http://purl.obolibrary.org/obo/PR_Q8LFH5,none +12.5481292,PR:Q90640,http://purl.obolibrary.org/obo/PR_Q90640,none +12.5481292,PR:Q94920,http://purl.obolibrary.org/obo/PR_Q94920,none +12.5481292,PR:Q9C5N2,http://purl.obolibrary.org/obo/PR_Q9C5N2,none +12.5481292,PR:Q9SJG8,http://purl.obolibrary.org/obo/PR_Q9SJG8,none +12.5481292,UBERON:0002125,http://purl.obolibrary.org/obo/UBERON_0002125,thymus lobule +12.5481292,UBERON:0003882,http://purl.obolibrary.org/obo/UBERON_0003882,CA2 field of hippocampus +12.5481292,UBERON:0004142,http://purl.obolibrary.org/obo/UBERON_0004142,outflow tract septum +12.5481292,UBERON:0004378,http://purl.obolibrary.org/obo/UBERON_0004378,proximal metaphysis +12.5481292,UBERON:0009659,http://purl.obolibrary.org/obo/UBERON_0009659,spermatic artery +12.5481292,UBERON:0009891,http://purl.obolibrary.org/obo/UBERON_0009891,facial mesenchyme +12.5603993,CHEBI:24396,http://purl.obolibrary.org/obo/CHEBI_24396,glycopeptide +12.5603993,CHEBI:26986,http://purl.obolibrary.org/obo/CHEBI_26986,threonine +12.5603993,CHEBI:38634,http://purl.obolibrary.org/obo/CHEBI_38634,voltage-gated sodium channel blocker +12.5603993,CL:0000985,http://purl.obolibrary.org/obo/CL_0000985,IgG plasma cell +12.5603993,DRUGBANK:DB01382,http://purl.obolibrary.org/obo/DRUGBANK_DB01382,none +12.5603993,DRUGBANK:DB02119,http://purl.obolibrary.org/obo/DRUGBANK_DB02119,none +12.5603993,DRUGBANK:DB08798,http://purl.obolibrary.org/obo/DRUGBANK_DB08798,none +12.5603993,DRUGBANK:DB09115,http://purl.obolibrary.org/obo/DRUGBANK_DB09115,none +12.5603993,DRUGBANK:DB09217,http://purl.obolibrary.org/obo/DRUGBANK_DB09217,none +12.5603993,DRUGBANK:DB11088,http://purl.obolibrary.org/obo/DRUGBANK_DB11088,none +12.5603993,DRUGBANK:DB11751,http://purl.obolibrary.org/obo/DRUGBANK_DB11751,none +12.5603993,DRUGBANK:DB11967,http://purl.obolibrary.org/obo/DRUGBANK_DB11967,none +12.5603993,DRUGBANK:DB12228,http://purl.obolibrary.org/obo/DRUGBANK_DB12228,none +12.5603993,DRUGBANK:DB12335,http://purl.obolibrary.org/obo/DRUGBANK_DB12335,none +12.5603993,DRUGBANK:DB12883,http://purl.obolibrary.org/obo/DRUGBANK_DB12883,none +12.5603993,DRUGBANK:DB12904,http://purl.obolibrary.org/obo/DRUGBANK_DB12904,none +12.5603993,DRUGBANK:DB13647,http://purl.obolibrary.org/obo/DRUGBANK_DB13647,none +12.5603993,DRUGBANK:DB14753,http://purl.obolibrary.org/obo/DRUGBANK_DB14753,none +12.5603993,GO:0004791,http://purl.obolibrary.org/obo/GO_0004791,thioredoxin-disulfide reductase activity +12.5603993,GO:0004829,http://purl.obolibrary.org/obo/GO_0004829,threonine-tRNA ligase activity +12.5603993,GO:0005967,http://purl.obolibrary.org/obo/GO_0005967,mitochondrial pyruvate dehydrogenase complex +12.5603993,GO:0009226,http://purl.obolibrary.org/obo/GO_0009226,nucleotide-sugar biosynthetic process +12.5603993,GO:0015794,http://purl.obolibrary.org/obo/GO_0015794,glycerol-3-phosphate transmembrane transport +12.5603993,GO:0030221,http://purl.obolibrary.org/obo/GO_0030221,basophil differentiation +12.5603993,GO:0030385,http://purl.obolibrary.org/obo/GO_0030385,none +12.5603993,GO:0031225,http://purl.obolibrary.org/obo/GO_0031225,anchored component of membrane +12.5603993,GO:0032642,http://purl.obolibrary.org/obo/GO_0032642,regulation of chemokine production +12.5603993,GO:0033207,http://purl.obolibrary.org/obo/GO_0033207,"beta-1,4-N-acetylgalactosaminyltransferase activity" +12.5603993,GO:0034644,http://purl.obolibrary.org/obo/GO_0034644,cellular response to UV +12.5603993,GO:0044089,http://purl.obolibrary.org/obo/GO_0044089,positive regulation of cellular component biogenesis +12.5603993,GO:0045685,http://purl.obolibrary.org/obo/GO_0045685,regulation of glial cell differentiation +12.5603993,GO:0060485,http://purl.obolibrary.org/obo/GO_0060485,mesenchyme development +12.5603993,GO:0061476,http://purl.obolibrary.org/obo/GO_0061476,response to anticoagulant +12.5603993,GO:0062125,http://purl.obolibrary.org/obo/GO_0062125,regulation of mitochondrial gene expression +12.5603993,GO:0071231,http://purl.obolibrary.org/obo/GO_0071231,cellular response to folic acid +12.5603993,GO:0097176,http://purl.obolibrary.org/obo/GO_0097176,epoxide metabolic process +12.5603993,GO:0097422,http://purl.obolibrary.org/obo/GO_0097422,tubular endosome +12.5603993,GO:1901490,http://purl.obolibrary.org/obo/GO_1901490,regulation of lymphangiogenesis +12.5603993,HP:0000007,http://purl.obolibrary.org/obo/HP_0000007,Autosomal recessive inheritance +12.5603993,HP:0002076,http://purl.obolibrary.org/obo/HP_0002076,Migraine +12.5603993,MONDO:0001617,http://purl.obolibrary.org/obo/MONDO_0001617,transient global amnesia +12.5603993,MONDO:0002984,http://purl.obolibrary.org/obo/MONDO_0002984,reticulohistiocytic granuloma +12.5603993,MONDO:0004195,http://purl.obolibrary.org/obo/MONDO_0004195,thymic dysplasia +12.5603993,MONDO:0004227,http://purl.obolibrary.org/obo/MONDO_0004227,epididymal adenomatoid tumor +12.5603993,MONDO:0006483,http://purl.obolibrary.org/obo/MONDO_0006483,urothelial dysplasia +12.5603993,MONDO:0008263,http://purl.obolibrary.org/obo/MONDO_0008263,polycystic kidney disease 1 +12.5603993,MONDO:0008504,http://purl.obolibrary.org/obo/MONDO_0008504,supravalvular aortic stenosis +12.5603993,MONDO:0008891,http://purl.obolibrary.org/obo/MONDO_0008891,riboflavin transporter deficiency +12.5603993,MONDO:0010650,http://purl.obolibrary.org/obo/MONDO_0010650,Melnick-Needles syndrome +12.5603993,MONDO:0015299,http://purl.obolibrary.org/obo/MONDO_0015299,Asherman syndrome +12.5603993,MONDO:0015408,http://purl.obolibrary.org/obo/MONDO_0015408,diffuse lymphatic malformation +12.5603993,MONDO:0018053,http://purl.obolibrary.org/obo/MONDO_0018053,trichothiodystrophy +12.5603993,MONDO:0019008,http://purl.obolibrary.org/obo/MONDO_0019008,benign recurrent intrahepatic cholestasis +12.5603993,MONDO:0019155,http://purl.obolibrary.org/obo/MONDO_0019155,Leydig cell hypoplasia +12.5603993,MONDO:0020111,http://purl.obolibrary.org/obo/MONDO_0020111,constitutional megaloblastic anemia due to folate metabolism disorder +12.5603993,MONDO:0020756,http://purl.obolibrary.org/obo/MONDO_0020756,"migraine, familial hemiplegic, 1" +12.5603993,MONDO:0021739,http://purl.obolibrary.org/obo/MONDO_0021739,prurigo +12.5603993,MONDO:0024893,http://purl.obolibrary.org/obo/MONDO_0024893,toxocara canis infection (canine roundworms) +12.5603993,NCBITaxon:10401,http://purl.obolibrary.org/obo/NCBITaxon_10401,none +12.5603993,NCBITaxon:136966,http://purl.obolibrary.org/obo/NCBITaxon_136966,none +12.5603993,NCBITaxon:1446380,http://purl.obolibrary.org/obo/NCBITaxon_1446380,none +12.5603993,NCBITaxon:172653,http://purl.obolibrary.org/obo/NCBITaxon_172653,none +12.5603993,NCBITaxon:1933264,http://purl.obolibrary.org/obo/NCBITaxon_1933264,California encephalitis orthobunyavirus +12.5603993,NCBITaxon:2821352,http://purl.obolibrary.org/obo/NCBITaxon_2821352,none +12.5603993,NCBITaxon:31744,http://purl.obolibrary.org/obo/NCBITaxon_31744,none +12.5603993,NCBITaxon:3318,http://purl.obolibrary.org/obo/NCBITaxon_3318,none +12.5603993,NCBITaxon:41295,http://purl.obolibrary.org/obo/NCBITaxon_41295,none +12.5603993,NCBITaxon:6314,http://purl.obolibrary.org/obo/NCBITaxon_6314,Trichostrongyloidea +12.5603993,PR:000000169,http://purl.obolibrary.org/obo/PR_000000169,BMP8A +12.5603993,PR:000003203,http://purl.obolibrary.org/obo/PR_000003203,serine-threonine kinase receptor-associated protein +12.5603993,PR:000003511,http://purl.obolibrary.org/obo/PR_000003511,alpha-1B-glycoprotein +12.5603993,PR:000004830,http://purl.obolibrary.org/obo/PR_000004830,protein bassoon +12.5603993,PR:000005033,http://purl.obolibrary.org/obo/PR_000005033,caspase recruitment domain-containing protein 10 +12.5603993,PR:000005117,http://purl.obolibrary.org/obo/PR_000005117,E3 ubiquitin-protein ligase CCNB1IP1 +12.5603993,PR:000005320,http://purl.obolibrary.org/obo/PR_000005320,cadherin EGF LAG seven-pass G-type receptor 3 +12.5603993,PR:000005911,http://purl.obolibrary.org/obo/PR_000005911,beta-crystallin B1 +12.5603993,PR:000006210,http://purl.obolibrary.org/obo/PR_000006210,none +12.5603993,PR:000006572,http://purl.obolibrary.org/obo/PR_000006572,"DnaJ homolog subfamily A member 3, mitochondrial" +12.5603993,PR:000006629,http://purl.obolibrary.org/obo/PR_000006629,docking protein 2 +12.5603993,PR:000006793,http://purl.obolibrary.org/obo/PR_000006793,none +12.5603993,PR:000007263,http://purl.obolibrary.org/obo/PR_000007263,exosome complex component MTR3 +12.5603993,PR:000007419,http://purl.obolibrary.org/obo/PR_000007419,F-box only protein 7 +12.5603993,PR:000007469,http://purl.obolibrary.org/obo/PR_000007469,fez family zinc finger protein 2 +12.5603993,PR:000007483,http://purl.obolibrary.org/obo/PR_000007483,fibroblast growth factor 13 +12.5603993,PR:000007525,http://purl.obolibrary.org/obo/PR_000007525,filamin A-interacting protein 1-like +12.5603993,PR:000007573,http://purl.obolibrary.org/obo/PR_000007573,formin-like protein 3 +12.5603993,PR:000007653,http://purl.obolibrary.org/obo/PR_000007653,extracellular matrix organizing protein FRAS1 +12.5603993,PR:000007969,http://purl.obolibrary.org/obo/PR_000007969,growth hormone variant +12.5603993,PR:000007983,http://purl.obolibrary.org/obo/PR_000007983,DNA replication complex GINS protein PSF2 +12.5603993,PR:000008013,http://purl.obolibrary.org/obo/PR_000008013,gastrokine-1 +12.5603993,PR:000008186,http://purl.obolibrary.org/obo/PR_000008186,G-protein coupled receptor 143 +12.5603993,PR:000008521,http://purl.obolibrary.org/obo/PR_000008521,transcription factor HES-7 +12.5603993,PR:000008876,http://purl.obolibrary.org/obo/PR_000008876,"isoleucine--tRNA ligase, cytoplasmic" +12.5603993,PR:000009133,http://purl.obolibrary.org/obo/PR_000009133,integrin alpha-8 +12.5603993,PR:000009143,http://purl.obolibrary.org/obo/PR_000009143,integrin beta-7 +12.5603993,PR:000009160,http://purl.obolibrary.org/obo/PR_000009160,"inositol 1,4,5-trisphosphate receptor type 3" +12.5603993,PR:000010457,http://purl.obolibrary.org/obo/PR_000010457,mitogen-activated protein kinase kinase kinase 20 +12.5603993,PR:000010555,http://purl.obolibrary.org/obo/PR_000010555,myelin protein zero-like protein 2 +12.5603993,PR:000010718,http://purl.obolibrary.org/obo/PR_000010718,metal-response element-binding transcription factor 2 +12.5603993,PR:000011462,http://purl.obolibrary.org/obo/PR_000011462,neurotrimin +12.5603993,PR:000012253,http://purl.obolibrary.org/obo/PR_000012253,PAN2-PAN3 deadenylation complex catalytic subunit PAN2 +12.5603993,PR:000012899,http://purl.obolibrary.org/obo/PR_000012899,plexin-D1 +12.5603993,PR:000012960,http://purl.obolibrary.org/obo/PR_000012960,DNA polymerase alpha catalytic subunit +12.5603993,PR:000013398,http://purl.obolibrary.org/obo/PR_000013398,proteasome assembly chaperone 2 +12.5603993,PR:000013907,http://purl.obolibrary.org/obo/PR_000013907,replication factor C subunit 3 +12.5603993,PR:000014163,http://purl.obolibrary.org/obo/PR_000014163,nuclear receptor ROR-alpha +12.5603993,PR:000014245,http://purl.obolibrary.org/obo/PR_000014245,ribonuclease P protein subunit p30 +12.5603993,PR:000014315,http://purl.obolibrary.org/obo/PR_000014315,ribosome biogenesis regulatory protein +12.5603993,PR:000014336,http://purl.obolibrary.org/obo/PR_000014336,Ras suppressor protein 1 +12.5603993,PR:000014341,http://purl.obolibrary.org/obo/PR_000014341,RNA polymerase-associated protein RTF1 +12.5603993,PR:000014471,http://purl.obolibrary.org/obo/PR_000014471,protein salvador homolog 1 +12.5603993,PR:000014498,http://purl.obolibrary.org/obo/PR_000014498,stearoyl-CoA desaturase 5 +12.5603993,PR:000014587,http://purl.obolibrary.org/obo/PR_000014587,protein transport protein Sec23B +12.5603993,PR:000014784,http://purl.obolibrary.org/obo/PR_000014784,epsilon-sarcoglycan +12.5603993,PR:000014971,http://purl.obolibrary.org/obo/PR_000014971,thiamine transporter 2 +12.5603993,PR:000015285,http://purl.obolibrary.org/obo/PR_000015285,telomerase-binding protein EST1A +12.5603993,PR:000016545,http://purl.obolibrary.org/obo/PR_000016545,DNA topoisomerase 2-beta +12.5603993,PR:000016962,http://purl.obolibrary.org/obo/PR_000016962,ubiquitin-associated and SH3 domain-containing protein B +12.5603993,PR:000017151,http://purl.obolibrary.org/obo/PR_000017151,ubiquitin carboxyl-terminal hydrolase 15 +12.5603993,PR:000017539,http://purl.obolibrary.org/obo/PR_000017539,synaptobrevin homolog YKT6 +12.5603993,PR:000023778,http://purl.obolibrary.org/obo/PR_000023778,none +12.5603993,PR:000029593,http://purl.obolibrary.org/obo/PR_000029593,mitochondrial proton/calcium exchanger protein +12.5603993,PR:000033476,http://purl.obolibrary.org/obo/PR_000033476,none +12.5603993,PR:000037071,http://purl.obolibrary.org/obo/PR_000037071,palmitoylated protein +12.5603993,PR:F4JTF6,http://purl.obolibrary.org/obo/PR_F4JTF6,none +12.5603993,PR:O13792,http://purl.obolibrary.org/obo/PR_O13792,none +12.5603993,PR:O24412,http://purl.obolibrary.org/obo/PR_O24412,none +12.5603993,PR:P33302,http://purl.obolibrary.org/obo/PR_P33302,none +12.5603993,PR:P34138,http://purl.obolibrary.org/obo/PR_P34138,none +12.5603993,PR:P81915,http://purl.obolibrary.org/obo/PR_P81915,none +12.5603993,PR:Q93YW7,http://purl.obolibrary.org/obo/PR_Q93YW7,none +12.5603993,PR:Q9VBP3,http://purl.obolibrary.org/obo/PR_Q9VBP3,none +12.5603993,PR:Q9XTN2,http://purl.obolibrary.org/obo/PR_Q9XTN2,none +12.5603993,UBERON:0001458,http://purl.obolibrary.org/obo/UBERON_0001458,skin of lip +12.5603993,UBERON:0002356,http://purl.obolibrary.org/obo/UBERON_0002356,perineum +12.5603993,UBERON:0003973,http://purl.obolibrary.org/obo/UBERON_0003973,nasal concha of ethmoid bone +12.5603993,UBERON:0004628,http://purl.obolibrary.org/obo/UBERON_0004628,thoracic vertebra 3 +12.5603993,UBERON:0005342,http://purl.obolibrary.org/obo/UBERON_0005342,malleus head +12.5603993,UBERON:0006935,http://purl.obolibrary.org/obo/UBERON_0006935,crista ampullaris neuroepithelium +12.5603993,UBERON:0008843,http://purl.obolibrary.org/obo/UBERON_0008843,gubernaculum testis +12.5603993,UBERON:0008936,http://purl.obolibrary.org/obo/UBERON_0008936,gastropod genital pore +12.5603993,UBERON:0009040,http://purl.obolibrary.org/obo/UBERON_0009040,deep circumflex iliac artery +12.5603993,UBERON:0009962,http://purl.obolibrary.org/obo/UBERON_0009962,excretory gland +12.5603993,UBERON:0010408,http://purl.obolibrary.org/obo/UBERON_0010408,ocular angle artery +12.5603993,UBERON:0034878,http://purl.obolibrary.org/obo/UBERON_0034878,prechordal mesoderm +12.5728218,CHEBI:140325,http://purl.obolibrary.org/obo/CHEBI_140325,secondary carboxamide +12.5728218,CHEBI:24860,http://purl.obolibrary.org/obo/CHEBI_24860,iodine molecular entity +12.5728218,CHEBI:33658,http://purl.obolibrary.org/obo/CHEBI_33658,arene +12.5728218,CL:0000141,http://purl.obolibrary.org/obo/CL_0000141,cementocyte +12.5728218,CL:0000971,http://purl.obolibrary.org/obo/CL_0000971,IgM memory B cell +12.5728218,CL:1000495,http://purl.obolibrary.org/obo/CL_1000495,small intestine goblet cell +12.5728218,DRUGBANK:DB00251,http://purl.obolibrary.org/obo/DRUGBANK_DB00251,none +12.5728218,DRUGBANK:DB02109,http://purl.obolibrary.org/obo/DRUGBANK_DB02109,none +12.5728218,DRUGBANK:DB02749,http://purl.obolibrary.org/obo/DRUGBANK_DB02749,none +12.5728218,DRUGBANK:DB03709,http://purl.obolibrary.org/obo/DRUGBANK_DB03709,none +12.5728218,DRUGBANK:DB04103,http://purl.obolibrary.org/obo/DRUGBANK_DB04103,none +12.5728218,DRUGBANK:DB04500,http://purl.obolibrary.org/obo/DRUGBANK_DB04500,none +12.5728218,DRUGBANK:DB06255,http://purl.obolibrary.org/obo/DRUGBANK_DB06255,none +12.5728218,DRUGBANK:DB08983,http://purl.obolibrary.org/obo/DRUGBANK_DB08983,none +12.5728218,DRUGBANK:DB10933,http://purl.obolibrary.org/obo/DRUGBANK_DB10933,none +12.5728218,DRUGBANK:DB11628,http://purl.obolibrary.org/obo/DRUGBANK_DB11628,none +12.5728218,DRUGBANK:DB11767,http://purl.obolibrary.org/obo/DRUGBANK_DB11767,none +12.5728218,DRUGBANK:DB12455,http://purl.obolibrary.org/obo/DRUGBANK_DB12455,none +12.5728218,DRUGBANK:DB12846,http://purl.obolibrary.org/obo/DRUGBANK_DB12846,none +12.5728218,DRUGBANK:DB13555,http://purl.obolibrary.org/obo/DRUGBANK_DB13555,none +12.5728218,DRUGBANK:DB13784,http://purl.obolibrary.org/obo/DRUGBANK_DB13784,none +12.5728218,DRUGBANK:DB14545,http://purl.obolibrary.org/obo/DRUGBANK_DB14545,none +12.5728218,DRUGBANK:DB14693,http://purl.obolibrary.org/obo/DRUGBANK_DB14693,none +12.5728218,GO:0001733,http://purl.obolibrary.org/obo/GO_0001733,galactosylceramide sulfotransferase activity +12.5728218,GO:0003093,http://purl.obolibrary.org/obo/GO_0003093,regulation of glomerular filtration +12.5728218,GO:0004031,http://purl.obolibrary.org/obo/GO_0004031,aldehyde oxidase activity +12.5728218,GO:0004452,http://purl.obolibrary.org/obo/GO_0004452,isopentenyl-diphosphate delta-isomerase activity +12.5728218,GO:0005893,http://purl.obolibrary.org/obo/GO_0005893,interleukin-2 receptor complex +12.5728218,GO:0008286,http://purl.obolibrary.org/obo/GO_0008286,insulin receptor signaling pathway +12.5728218,GO:0009154,http://purl.obolibrary.org/obo/GO_0009154,purine ribonucleotide catabolic process +12.5728218,GO:0030263,http://purl.obolibrary.org/obo/GO_0030263,apoptotic chromosome condensation +12.5728218,GO:0032354,http://purl.obolibrary.org/obo/GO_0032354,response to follicle-stimulating hormone +12.5728218,GO:0033075,http://purl.obolibrary.org/obo/GO_0033075,isoquinoline alkaloid biosynthetic process +12.5728218,GO:0034518,http://purl.obolibrary.org/obo/GO_0034518,RNA cap binding complex +12.5728218,GO:0042335,http://purl.obolibrary.org/obo/GO_0042335,cuticle development +12.5728218,GO:0045912,http://purl.obolibrary.org/obo/GO_0045912,negative regulation of carbohydrate metabolic process +12.5728218,GO:0046937,http://purl.obolibrary.org/obo/GO_0046937,phytochelatin metabolic process +12.5728218,GO:0050904,http://purl.obolibrary.org/obo/GO_0050904,diapedesis +12.5728218,GO:0051272,http://purl.obolibrary.org/obo/GO_0051272,positive regulation of cellular component movement +12.5728218,GO:1902017,http://purl.obolibrary.org/obo/GO_1902017,regulation of cilium assembly +12.5728218,GO:1903010,http://purl.obolibrary.org/obo/GO_1903010,regulation of bone development +12.5728218,GO:2000377,http://purl.obolibrary.org/obo/GO_2000377,regulation of reactive oxygen species metabolic process +12.5728218,MONDO:0000762,http://purl.obolibrary.org/obo/MONDO_0000762,syndrome caused by partial chromosomal duplication +12.5728218,MONDO:0000858,http://purl.obolibrary.org/obo/MONDO_0000858,neuronal intestinal dysplasia +12.5728218,MONDO:0001459,http://purl.obolibrary.org/obo/MONDO_0001459,radial neuropathy +12.5728218,MONDO:0002787,http://purl.obolibrary.org/obo/MONDO_0002787,adamantinous craniopharyngioma +12.5728218,MONDO:0004295,http://purl.obolibrary.org/obo/MONDO_0004295,asbestos-related lung carcinoma +12.5728218,MONDO:0005965,http://purl.obolibrary.org/obo/MONDO_0005965,spinal stenosis +12.5728218,MONDO:0006658,http://purl.obolibrary.org/obo/MONDO_0006658,arteriolosclerosis +12.5728218,MONDO:0007572,http://purl.obolibrary.org/obo/MONDO_0007572,primary familial polycythemia due to EPO receptor mutation +12.5728218,MONDO:0007788,http://purl.obolibrary.org/obo/MONDO_0007788,"hypertriglyceridemia, familial" +12.5728218,MONDO:0008146,http://purl.obolibrary.org/obo/MONDO_0008146,osteogenesis imperfecta type 1 +12.5728218,MONDO:0008207,http://purl.obolibrary.org/obo/MONDO_0008207,chondromalacia patellae +12.5728218,MONDO:0008788,http://purl.obolibrary.org/obo/MONDO_0008788,IRIDA syndrome +12.5728218,MONDO:0015391,http://purl.obolibrary.org/obo/MONDO_0015391,nasopharyngeal teratoma +12.5728218,MONDO:0018558,http://purl.obolibrary.org/obo/MONDO_0018558,syndrome with woolly hair +12.5728218,MONDO:0018855,http://purl.obolibrary.org/obo/MONDO_0018855,keratosis pilaris atrophicans +12.5728218,MONDO:0019225,http://purl.obolibrary.org/obo/MONDO_0019225,gluconeogenesis disorder +12.5728218,MONDO:0019441,http://purl.obolibrary.org/obo/MONDO_0019441,ATTRV122I amyloidosis +12.5728218,MONDO:0019728,http://purl.obolibrary.org/obo/MONDO_0019728,heavy chain deposition disease +12.5728218,MONDO:0021670,http://purl.obolibrary.org/obo/MONDO_0021670,post-infectious syndrome +12.5728218,MONDO:0043358,http://purl.obolibrary.org/obo/MONDO_0043358,engraftment syndrome +12.5728218,MONDO:0100034,http://purl.obolibrary.org/obo/MONDO_0100034,cerebral folate deficiency +12.5728218,MONDO:0100080,http://purl.obolibrary.org/obo/MONDO_0100080,cardioectodermal syndrome +12.5728218,NCBITaxon:16360,http://purl.obolibrary.org/obo/NCBITaxon_16360,none +12.5728218,NCBITaxon:216497,http://purl.obolibrary.org/obo/NCBITaxon_216497,none +12.5728218,NCBITaxon:216498,http://purl.obolibrary.org/obo/NCBITaxon_216498,none +12.5728218,NCBITaxon:28586,http://purl.obolibrary.org/obo/NCBITaxon_28586,none +12.5728218,NCBITaxon:32307,http://purl.obolibrary.org/obo/NCBITaxon_32307,none +12.5728218,NCBITaxon:51280,http://purl.obolibrary.org/obo/NCBITaxon_51280,none +12.5728218,PR:000001425,http://purl.obolibrary.org/obo/PR_000001425,ICOS ligand +12.5728218,PR:000001430,http://purl.obolibrary.org/obo/PR_000001430,N-arachidonyl glycine receptor +12.5728218,PR:000001600,http://purl.obolibrary.org/obo/PR_000001600,none +12.5728218,PR:000001632,http://purl.obolibrary.org/obo/PR_000001632,oleoyl-L-alpha-lysophosphatidic acid receptor +12.5728218,PR:000001714,http://purl.obolibrary.org/obo/PR_000001714,none +12.5728218,PR:000001752,http://purl.obolibrary.org/obo/PR_000001752,NF-kappa-B essential modulator +12.5728218,PR:000003291,http://purl.obolibrary.org/obo/PR_000003291,ubiquitin-conjugating enzyme E2 variant 1 +12.5728218,PR:000003715,http://purl.obolibrary.org/obo/PR_000003715,disintegrin and metalloproteinase domain-containing protein 2 +12.5728218,PR:000004025,http://purl.obolibrary.org/obo/PR_000004025,angiopoietin-4 +12.5728218,PR:000004149,http://purl.obolibrary.org/obo/PR_000004149,DNA dC->dU-editing enzyme APOBEC-3H +12.5728218,PR:000005828,http://purl.obolibrary.org/obo/PR_000005828,cleavage and polyadenylation specificity factor subunit 1 +12.5728218,PR:000005857,http://purl.obolibrary.org/obo/PR_000005857,cyclic AMP-responsive element-binding protein 3-like protein 2 +12.5728218,PR:000008268,http://purl.obolibrary.org/obo/PR_000008268,metabotropic glutamate receptor 6 +12.5728218,PR:000008605,http://purl.obolibrary.org/obo/PR_000008605,transcription factor HIVEP2 +12.5728218,PR:000008834,http://purl.obolibrary.org/obo/PR_000008834,5-hydroxytryptamine receptor 3B +12.5728218,PR:000010206,http://purl.obolibrary.org/obo/PR_000010206,matrilin-2 +12.5728218,PR:000010785,http://purl.obolibrary.org/obo/PR_000010785,diphosphomevalonate decarboxylase +12.5728218,PR:000011133,http://purl.obolibrary.org/obo/PR_000011133,serine/threonine-protein kinase Nek7 +12.5728218,PR:000012033,http://purl.obolibrary.org/obo/PR_000012033,origin recognition complex subunit 4 +12.5728218,PR:000012044,http://purl.obolibrary.org/obo/PR_000012044,oxysterol-binding protein 2 +12.5728218,PR:000012187,http://purl.obolibrary.org/obo/PR_000012187,SRC kinase signaling inhibitor 1 +12.5728218,PR:000012418,http://purl.obolibrary.org/obo/PR_000012418,protein piccolo +12.5728218,PR:000012794,http://purl.obolibrary.org/obo/PR_000012794,phospholipase A1 member A +12.5728218,PR:000013130,http://purl.obolibrary.org/obo/PR_000013130,protein phosphatase 1 regulatory subunit 7 +12.5728218,PR:000013902,http://purl.obolibrary.org/obo/PR_000013902,putative exonuclease GOR +12.5728218,PR:000013909,http://purl.obolibrary.org/obo/PR_000013909,replication factor C subunit 5 +12.5728218,PR:000014821,http://purl.obolibrary.org/obo/PR_000014821,SH3 domain-binding protein 5 +12.5728218,PR:000015037,http://purl.obolibrary.org/obo/PR_000015037,sulfate transporter +12.5728218,PR:000015130,http://purl.obolibrary.org/obo/PR_000015130,zinc transporter ZIP3 +12.5728218,PR:000015156,http://purl.obolibrary.org/obo/PR_000015156,sodium bicarbonate transporter-like protein 11 +12.5728218,PR:000015459,http://purl.obolibrary.org/obo/PR_000015459,sperm-associated antigen 5 +12.5728218,PR:000017171,http://purl.obolibrary.org/obo/PR_000017171,ubiquitin carboxyl-terminal hydrolase 32 +12.5728218,PR:000017601,http://purl.obolibrary.org/obo/PR_000017601,zinc finger CCCH-type antiviral protein 1 +12.5728218,PR:000022113,http://purl.obolibrary.org/obo/PR_000022113,none +12.5728218,PR:000022331,http://purl.obolibrary.org/obo/PR_000022331,none +12.5728218,PR:000022932,http://purl.obolibrary.org/obo/PR_000022932,none +12.5728218,PR:000023034,http://purl.obolibrary.org/obo/PR_000023034,none +12.5728218,PR:000029384,http://purl.obolibrary.org/obo/PR_000029384,probable ATP-dependent RNA helicase DDX20 +12.5728218,PR:000029648,http://purl.obolibrary.org/obo/PR_000029648,nuclear receptor subfamily 2 group F member 6 +12.5728218,PR:000031282,http://purl.obolibrary.org/obo/PR_000031282,PAT complex subunit CCDC47 +12.5728218,PR:000031808,http://purl.obolibrary.org/obo/PR_000031808,coiled-coil-helix-coiled-coil-helix domain-containing protein 2 +12.5728218,PR:000031973,http://purl.obolibrary.org/obo/PR_000031973,pleckstrin homology domain-containing family H member 1 +12.5728218,PR:O22203,http://purl.obolibrary.org/obo/PR_O22203,none +12.5728218,PR:P08678,http://purl.obolibrary.org/obo/PR_P08678,none +12.5728218,PR:P34226,http://purl.obolibrary.org/obo/PR_P34226,none +12.5728218,PR:Q4VCM1,http://purl.obolibrary.org/obo/PR_Q4VCM1,none +12.5728218,PR:Q6B516,http://purl.obolibrary.org/obo/PR_Q6B516,none +12.5728218,PR:Q96283,http://purl.obolibrary.org/obo/PR_Q96283,none +12.5728218,PR:Q9LII8,http://purl.obolibrary.org/obo/PR_Q9LII8,none +12.5728218,PR:Q9LR68,http://purl.obolibrary.org/obo/PR_Q9LR68,none +12.5728218,PR:Q9PW70,http://purl.obolibrary.org/obo/PR_Q9PW70,none +12.5728218,PR:Q9SUT5,http://purl.obolibrary.org/obo/PR_Q9SUT5,none +12.5728218,PR:Q9YH92,http://purl.obolibrary.org/obo/PR_Q9YH92,none +12.5728218,SO:0000102,http://purl.obolibrary.org/obo/SO_0000102,expressed_sequence_match +12.5728218,SO:0000388,http://purl.obolibrary.org/obo/SO_0000388,RRE_RNA +12.5728218,SO:0001658,http://purl.obolibrary.org/obo/SO_0001658,nested_tandem_repeat +12.5728218,UBERON:0001570,http://purl.obolibrary.org/obo/UBERON_0001570,inferior pharyngeal constrictor +12.5728218,UBERON:0003353,http://purl.obolibrary.org/obo/UBERON_0003353,epithelium of hindgut +12.5728218,UBERON:0012251,http://purl.obolibrary.org/obo/UBERON_0012251,ectocervical epithelium +12.5728218,UBERON:0014933,http://purl.obolibrary.org/obo/UBERON_0014933,periventricular gray matter +12.5728218,UBERON:0035786,http://purl.obolibrary.org/obo/UBERON_0035786,layer of CA1 field +12.5854006,CHEBI:26959,http://purl.obolibrary.org/obo/CHEBI_26959,thiocarboxylic ester +12.5854006,CHEBI:27902,http://purl.obolibrary.org/obo/CHEBI_27902,tetracycline +12.5854006,CHEBI:28963,http://purl.obolibrary.org/obo/CHEBI_28963,amino sugar +12.5854006,CHEBI:39025,http://purl.obolibrary.org/obo/CHEBI_39025,high-density lipoprotein +12.5854006,CHEBI:51277,http://purl.obolibrary.org/obo/CHEBI_51277,thioester +12.5854006,CL:0002277,http://purl.obolibrary.org/obo/CL_0002277,type I enteroendocrine cell +12.5854006,DRUGBANK:DB02845,http://purl.obolibrary.org/obo/DRUGBANK_DB02845,none +12.5854006,DRUGBANK:DB03541,http://purl.obolibrary.org/obo/DRUGBANK_DB03541,none +12.5854006,DRUGBANK:DB03640,http://purl.obolibrary.org/obo/DRUGBANK_DB03640,none +12.5854006,DRUGBANK:DB03770,http://purl.obolibrary.org/obo/DRUGBANK_DB03770,none +12.5854006,DRUGBANK:DB06820,http://purl.obolibrary.org/obo/DRUGBANK_DB06820,none +12.5854006,DRUGBANK:DB09213,http://purl.obolibrary.org/obo/DRUGBANK_DB09213,none +12.5854006,DRUGBANK:DB09261,http://purl.obolibrary.org/obo/DRUGBANK_DB09261,none +12.5854006,DRUGBANK:DB12307,http://purl.obolibrary.org/obo/DRUGBANK_DB12307,none +12.5854006,DRUGBANK:DB12377,http://purl.obolibrary.org/obo/DRUGBANK_DB12377,none +12.5854006,DRUGBANK:DB12429,http://purl.obolibrary.org/obo/DRUGBANK_DB12429,none +12.5854006,DRUGBANK:DB13329,http://purl.obolibrary.org/obo/DRUGBANK_DB13329,none +12.5854006,DRUGBANK:DB13471,http://purl.obolibrary.org/obo/DRUGBANK_DB13471,none +12.5854006,DRUGBANK:DB14743,http://purl.obolibrary.org/obo/DRUGBANK_DB14743,none +12.5854006,DRUGBANK:DB15605,http://purl.obolibrary.org/obo/DRUGBANK_DB15605,none +12.5854006,DRUGBANK:DB15921,http://purl.obolibrary.org/obo/DRUGBANK_DB15921,none +12.5854006,GO:0001057,http://purl.obolibrary.org/obo/GO_0001057,RNA polymerase IV activity +12.5854006,GO:0002776,http://purl.obolibrary.org/obo/GO_0002776,antimicrobial peptide secretion +12.5854006,GO:0003854,http://purl.obolibrary.org/obo/GO_0003854,3-beta-hydroxy-delta5-steroid dehydrogenase activity +12.5854006,GO:0004529,http://purl.obolibrary.org/obo/GO_0004529,exodeoxyribonuclease activity +12.5854006,GO:0006678,http://purl.obolibrary.org/obo/GO_0006678,glucosylceramide metabolic process +12.5854006,GO:0008226,http://purl.obolibrary.org/obo/GO_0008226,tyramine receptor activity +12.5854006,GO:0008403,http://purl.obolibrary.org/obo/GO_0008403,25-hydroxycholecalciferol-24-hydroxylase activity +12.5854006,GO:0009088,http://purl.obolibrary.org/obo/GO_0009088,threonine biosynthetic process +12.5854006,GO:0015919,http://purl.obolibrary.org/obo/GO_0015919,peroxisomal membrane transport +12.5854006,GO:0015922,http://purl.obolibrary.org/obo/GO_0015922,aspartate oxidase activity +12.5854006,GO:0034349,http://purl.obolibrary.org/obo/GO_0034349,glial cell apoptotic process +12.5854006,GO:0034483,http://purl.obolibrary.org/obo/GO_0034483,heparan sulfate sulfotransferase activity +12.5854006,GO:0038046,http://purl.obolibrary.org/obo/GO_0038046,G protein-coupled enkephalin receptor activity +12.5854006,GO:0042332,http://purl.obolibrary.org/obo/GO_0042332,gravitaxis +12.5854006,GO:0042447,http://purl.obolibrary.org/obo/GO_0042447,hormone catabolic process +12.5854006,GO:0046938,http://purl.obolibrary.org/obo/GO_0046938,phytochelatin biosynthetic process +12.5854006,GO:0060612,http://purl.obolibrary.org/obo/GO_0060612,adipose tissue development +12.5854006,GO:0090520,http://purl.obolibrary.org/obo/GO_0090520,sphingolipid mediated signaling pathway +12.5854006,GO:0097333,http://purl.obolibrary.org/obo/GO_0097333,response to olanzapine +12.5854006,GO:1901214,http://purl.obolibrary.org/obo/GO_1901214,regulation of neuron death +12.5854006,GO:1904373,http://purl.obolibrary.org/obo/GO_1904373,response to kainic acid +12.5854006,GO:1904587,http://purl.obolibrary.org/obo/GO_1904587,response to glycoprotein +12.5854006,GO:1904705,http://purl.obolibrary.org/obo/GO_1904705,regulation of vascular associated smooth muscle cell proliferation +12.5854006,GO:1904861,http://purl.obolibrary.org/obo/GO_1904861,excitatory synapse assembly +12.5854006,GO:2000612,http://purl.obolibrary.org/obo/GO_2000612,regulation of thyroid-stimulating hormone secretion +12.5854006,MONDO:0000667,http://purl.obolibrary.org/obo/MONDO_0000667,auditory agnosia +12.5854006,MONDO:0000670,http://purl.obolibrary.org/obo/MONDO_0000670,cortical deafness +12.5854006,MONDO:0002086,http://purl.obolibrary.org/obo/MONDO_0002086,clear cell acanthoma +12.5854006,MONDO:0003356,http://purl.obolibrary.org/obo/MONDO_0003356,epithelioid leiomyosarcoma +12.5854006,MONDO:0003447,http://purl.obolibrary.org/obo/MONDO_0003447,clear cell hidradenoma +12.5854006,MONDO:0003574,http://purl.obolibrary.org/obo/MONDO_0003574,external ear cancer +12.5854006,MONDO:0006383,http://purl.obolibrary.org/obo/MONDO_0006383,"primary cutaneous diffuse large B-cell lymphoma, Leg type" +12.5854006,MONDO:0006734,http://purl.obolibrary.org/obo/MONDO_0006734,benign duodenal neoplasm +12.5854006,MONDO:0007338,http://purl.obolibrary.org/obo/MONDO_0007338,cleft soft palate +12.5854006,MONDO:0007987,http://purl.obolibrary.org/obo/MONDO_0007987,Kniest dysplasia +12.5854006,MONDO:0008264,http://purl.obolibrary.org/obo/MONDO_0008264,autosomal dominant medullary cystic kidney disease with or without hyperuricemia +12.5854006,MONDO:0008322,http://purl.obolibrary.org/obo/MONDO_0008322,pseudoachondroplasia +12.5854006,MONDO:0010559,http://purl.obolibrary.org/obo/MONDO_0010559,MASA syndrome +12.5854006,MONDO:0015818,http://purl.obolibrary.org/obo/MONDO_0015818,aggressive primary cutaneous B-cell lymphoma +12.5854006,MONDO:0016193,http://purl.obolibrary.org/obo/MONDO_0016193,qualitative or quantitative defects of alpha-actin +12.5854006,MONDO:0017910,http://purl.obolibrary.org/obo/MONDO_0017910,dehydrated hereditary stomatocytosis +12.5854006,MONDO:0021380,http://purl.obolibrary.org/obo/MONDO_0021380,neoplasm of myocardium +12.5854006,MONDO:0021537,http://purl.obolibrary.org/obo/MONDO_0021537,undifferentiated carcinoma of nasopharynx +12.5854006,NCBITaxon:12271,http://purl.obolibrary.org/obo/NCBITaxon_12271,none +12.5854006,NCBITaxon:12538,http://purl.obolibrary.org/obo/NCBITaxon_12538,none +12.5854006,NCBITaxon:149595,http://purl.obolibrary.org/obo/NCBITaxon_149595,Canine parainfluenza virus +12.5854006,NCBITaxon:204711,http://purl.obolibrary.org/obo/NCBITaxon_204711,none +12.5854006,NCBITaxon:31969,http://purl.obolibrary.org/obo/NCBITaxon_31969,Mollicutes +12.5854006,NCBITaxon:35286,http://purl.obolibrary.org/obo/NCBITaxon_35286,none +12.5854006,NCBITaxon:3977,http://purl.obolibrary.org/obo/NCBITaxon_3977,none +12.5854006,NCBITaxon:53273,http://purl.obolibrary.org/obo/NCBITaxon_53273,none +12.5854006,NCBITaxon:544448,http://purl.obolibrary.org/obo/NCBITaxon_544448,Tenericutes +12.5854006,NCBITaxon:90268,http://purl.obolibrary.org/obo/NCBITaxon_90268,none +12.5854006,NCBITaxon:90269,http://purl.obolibrary.org/obo/NCBITaxon_90269,none +12.5854006,PR:000001163,http://purl.obolibrary.org/obo/PR_000001163,5-hydroxytryptamine receptor 1D +12.5854006,PR:000003765,http://purl.obolibrary.org/obo/PR_000003765,gamma-adducin +12.5854006,PR:000003929,http://purl.obolibrary.org/obo/PR_000003929,"succinate-semialdehyde dehydrogenase, mitochondrial" +12.5854006,PR:000004265,http://purl.obolibrary.org/obo/PR_000004265,AT-rich interactive domain-containing protein 3A +12.5854006,PR:000004437,http://purl.obolibrary.org/obo/PR_000004437,sodium/potassium-transporting ATPase subunit alpha-3 +12.5854006,PR:000005780,http://purl.obolibrary.org/obo/PR_000005780,"cytochrome c oxidase subunit 5B, mitochondrial" +12.5854006,PR:000006353,http://purl.obolibrary.org/obo/PR_000006353,D-dopachrome decarboxylase +12.5854006,PR:000007202,http://purl.obolibrary.org/obo/PR_000007202,espin +12.5854006,PR:000007254,http://purl.obolibrary.org/obo/PR_000007254,exocyst complex component 6B +12.5854006,PR:000007578,http://purl.obolibrary.org/obo/PR_000007578,flavin-containing monooxygenase 5 +12.5854006,PR:000007616,http://purl.obolibrary.org/obo/PR_000007616,forkhead box protein D4-like 4 +12.5854006,PR:000007625,http://purl.obolibrary.org/obo/PR_000007625,forkhead box protein I1 +12.5854006,PR:000007631,http://purl.obolibrary.org/obo/PR_000007631,forkhead box protein K1 +12.5854006,PR:000007773,http://purl.obolibrary.org/obo/PR_000007773,gamma-aminobutyric acid receptor subunit beta-2 +12.5854006,PR:000007982,http://purl.obolibrary.org/obo/PR_000007982,DNA replication complex GINS protein PSF1 +12.5854006,PR:000008150,http://purl.obolibrary.org/obo/PR_000008150,Golgi reassembly-stacking protein 2 +12.5854006,PR:000008167,http://purl.obolibrary.org/obo/PR_000008167,glypican-5 +12.5854006,PR:000008724,http://purl.obolibrary.org/obo/PR_000008724,homeobox protein Hox-D9 +12.5854006,PR:000009159,http://purl.obolibrary.org/obo/PR_000009159,"inositol 1,4,5-trisphosphate receptor type 2" +12.5854006,PR:000009460,http://purl.obolibrary.org/obo/PR_000009460,"keratin, type II cytoskeletal 2 epidermal" +12.5854006,PR:000009654,http://purl.obolibrary.org/obo/PR_000009654,laminin subunit alpha-5 +12.5854006,PR:000010476,http://purl.obolibrary.org/obo/PR_000010476,matrix metalloproteinase-16 +12.5854006,PR:000010523,http://purl.obolibrary.org/obo/PR_000010523,mortality factor 4-like protein 1 +12.5854006,PR:000010975,http://purl.obolibrary.org/obo/PR_000010975,nucleosome assembly protein 1-like 1 +12.5854006,PR:000011325,http://purl.obolibrary.org/obo/PR_000011325,nucleolar protein 58 +12.5854006,PR:000011607,http://purl.obolibrary.org/obo/PR_000011607,teneurin-2 +12.5854006,PR:000012034,http://purl.obolibrary.org/obo/PR_000012034,origin recognition complex subunit 5 +12.5854006,PR:000012411,http://purl.obolibrary.org/obo/PR_000012411,Polycomb group RING finger protein 2 +12.5854006,PR:000012830,http://purl.obolibrary.org/obo/PR_000012830,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase beta-3" +12.5854006,PR:000013607,http://purl.obolibrary.org/obo/PR_000013607,Ras-related protein Rab-32 +12.5854006,PR:000013673,http://purl.obolibrary.org/obo/PR_000013673,RAD51-associated protein 1 +12.5854006,PR:000013797,http://purl.obolibrary.org/obo/PR_000013797,RNA-binding protein 39 +12.5854006,PR:000014192,http://purl.obolibrary.org/obo/PR_000014192,60S ribosomal protein L13 +12.5854006,PR:000014869,http://purl.obolibrary.org/obo/PR_000014869,sialic acid-binding Ig-like lectin 9 +12.5854006,PR:000016674,http://purl.obolibrary.org/obo/PR_000016674,thyroid receptor-interacting protein 6 +12.5854006,PR:000016761,http://purl.obolibrary.org/obo/PR_000016761,testis-specific Y-encoded-like protein 2 +12.5854006,PR:000017462,http://purl.obolibrary.org/obo/PR_000017462,protein WWC1 +12.5854006,PR:000023494,http://purl.obolibrary.org/obo/PR_000023494,none +12.5854006,PR:000023806,http://purl.obolibrary.org/obo/PR_000023806,none +12.5854006,PR:000023810,http://purl.obolibrary.org/obo/PR_000023810,none +12.5854006,PR:000023942,http://purl.obolibrary.org/obo/PR_000023942,none +12.5854006,PR:000029784,http://purl.obolibrary.org/obo/PR_000029784,tudor domain-containing protein 7 +12.5854006,PR:000030894,http://purl.obolibrary.org/obo/PR_000030894,pecanex-like protein 4 +12.5854006,PR:000031541,http://purl.obolibrary.org/obo/PR_000031541,zinc finger BED domain-containing protein 6 +12.5854006,PR:000035172,http://purl.obolibrary.org/obo/PR_000035172,none +12.5854006,PR:O94488,http://purl.obolibrary.org/obo/PR_O94488,none +12.5854006,PR:P13365,http://purl.obolibrary.org/obo/PR_P13365,none +12.5854006,PR:P21804,http://purl.obolibrary.org/obo/PR_P21804,none +12.5854006,PR:P27809,http://purl.obolibrary.org/obo/PR_P27809,none +12.5854006,PR:Q4V8R7,http://purl.obolibrary.org/obo/PR_Q4V8R7,none +12.5854006,PR:Q55E72,http://purl.obolibrary.org/obo/PR_Q55E72,none +12.5854006,PR:Q64093,http://purl.obolibrary.org/obo/PR_Q64093,none +12.5854006,PR:Q96289,http://purl.obolibrary.org/obo/PR_Q96289,none +12.5854006,PR:Q9LM02,http://purl.obolibrary.org/obo/PR_Q9LM02,none +12.5854006,PR:Q9PSI9,http://purl.obolibrary.org/obo/PR_Q9PSI9,none +12.5854006,PR:Q9S6Z7,http://purl.obolibrary.org/obo/PR_Q9S6Z7,none +12.5854006,UBERON:0001478,http://purl.obolibrary.org/obo/UBERON_0001478,teres major muscle +12.5854006,UBERON:0002490,http://purl.obolibrary.org/obo/UBERON_0002490,frontal suture +12.5854006,UBERON:0003963,http://purl.obolibrary.org/obo/UBERON_0003963,otic ganglion +12.5854006,UBERON:0004581,http://purl.obolibrary.org/obo/UBERON_0004581,systemic venous system +12.5854006,UBERON:0005989,http://purl.obolibrary.org/obo/UBERON_0005989,atrioventricular septum +12.5854006,UBERON:0010306,http://purl.obolibrary.org/obo/UBERON_0010306,bulbar conjunctiva +12.5854006,UBERON:0013761,http://purl.obolibrary.org/obo/UBERON_0013761,cervical cavity +12.5854006,UBERON:0014466,http://purl.obolibrary.org/obo/UBERON_0014466,subarachnoid fissure +12.5854006,UBERON:0035024,http://purl.obolibrary.org/obo/UBERON_0035024,lateral spinal nucleus +12.5854006,UBERON:3000981,http://purl.obolibrary.org/obo/UBERON_3000981,limb external integument structure +12.5981396,CHEBI:16737,http://purl.obolibrary.org/obo/CHEBI_16737,creatinine +12.5981396,CHEBI:26087,http://purl.obolibrary.org/obo/CHEBI_26087,photosynthetic electron-transport chain inhibitor +12.5981396,CHEBI:28087,http://purl.obolibrary.org/obo/CHEBI_28087,glycogen +12.5981396,CHEBI:33720,http://purl.obolibrary.org/obo/CHEBI_33720,carbohydrate acid +12.5981396,CHEBI:33910,http://purl.obolibrary.org/obo/CHEBI_33910,chlorins +12.5981396,CHEBI:38809,http://purl.obolibrary.org/obo/CHEBI_38809,ryanodine receptor modulator +12.5981396,CHEBI:48120,http://purl.obolibrary.org/obo/CHEBI_48120,anthracycline +12.5981396,CHEBI:7856,http://purl.obolibrary.org/obo/CHEBI_7856,oxybutynin +12.5981396,CL:0000342,http://purl.obolibrary.org/obo/CL_0000342,pigment cell (sensu Vertebrata) +12.5981396,CL:0000717,http://purl.obolibrary.org/obo/CL_0000717,fusimotor neuron +12.5981396,CL:0002565,http://purl.obolibrary.org/obo/CL_0002565,iris pigment epithelial cell +12.5981396,CL:1001598,http://purl.obolibrary.org/obo/CL_1001598,small intestine glandular cell +12.5981396,DRUGBANK:DB02563,http://purl.obolibrary.org/obo/DRUGBANK_DB02563,none +12.5981396,DRUGBANK:DB03393,http://purl.obolibrary.org/obo/DRUGBANK_DB03393,none +12.5981396,DRUGBANK:DB03489,http://purl.obolibrary.org/obo/DRUGBANK_DB03489,none +12.5981396,DRUGBANK:DB08806,http://purl.obolibrary.org/obo/DRUGBANK_DB08806,none +12.5981396,DRUGBANK:DB12062,http://purl.obolibrary.org/obo/DRUGBANK_DB12062,none +12.5981396,DRUGBANK:DB12794,http://purl.obolibrary.org/obo/DRUGBANK_DB12794,none +12.5981396,DRUGBANK:DB13743,http://purl.obolibrary.org/obo/DRUGBANK_DB13743,none +12.5981396,DRUGBANK:DB14490,http://purl.obolibrary.org/obo/DRUGBANK_DB14490,none +12.5981396,DRUGBANK:DB15201,http://purl.obolibrary.org/obo/DRUGBANK_DB15201,none +12.5981396,GO:0000088,http://purl.obolibrary.org/obo/GO_0000088,mitotic prophase +12.5981396,GO:0000305,http://purl.obolibrary.org/obo/GO_0000305,response to oxygen radical +12.5981396,GO:0004693,http://purl.obolibrary.org/obo/GO_0004693,cyclin-dependent protein serine/threonine kinase activity +12.5981396,GO:0005727,http://purl.obolibrary.org/obo/GO_0005727,extrachromosomal circular DNA +12.5981396,GO:0006311,http://purl.obolibrary.org/obo/GO_0006311,meiotic gene conversion +12.5981396,GO:0006528,http://purl.obolibrary.org/obo/GO_0006528,asparagine metabolic process +12.5981396,GO:0009033,http://purl.obolibrary.org/obo/GO_0009033,trimethylamine-N-oxide reductase activity +12.5981396,GO:0009130,http://purl.obolibrary.org/obo/GO_0009130,pyrimidine nucleoside monophosphate biosynthetic process +12.5981396,GO:0009277,http://purl.obolibrary.org/obo/GO_0009277,fungal-type cell wall +12.5981396,GO:0015694,http://purl.obolibrary.org/obo/GO_0015694,mercury ion transport +12.5981396,GO:0015828,http://purl.obolibrary.org/obo/GO_0015828,tyrosine transport +12.5981396,GO:0016762,http://purl.obolibrary.org/obo/GO_0016762,xyloglucan:xyloglucosyl transferase activity +12.5981396,GO:0018966,http://purl.obolibrary.org/obo/GO_0018966,styrene metabolic process +12.5981396,GO:0030337,http://purl.obolibrary.org/obo/GO_0030337,DNA polymerase processivity factor activity +12.5981396,GO:0030521,http://purl.obolibrary.org/obo/GO_0030521,androgen receptor signaling pathway +12.5981396,GO:0034206,http://purl.obolibrary.org/obo/GO_0034206,enhanceosome +12.5981396,GO:0035046,http://purl.obolibrary.org/obo/GO_0035046,pronuclear migration +12.5981396,GO:0046374,http://purl.obolibrary.org/obo/GO_0046374,teichoic acid metabolic process +12.5981396,GO:0051189,http://purl.obolibrary.org/obo/GO_0051189,prosthetic group metabolic process +12.5981396,GO:0061516,http://purl.obolibrary.org/obo/GO_0061516,monocyte proliferation +12.5981396,GO:0099738,http://purl.obolibrary.org/obo/GO_0099738,cell cortex region +12.5981396,GO:1901813,http://purl.obolibrary.org/obo/GO_1901813,astaxanthin metabolic process +12.5981396,GO:2001290,http://purl.obolibrary.org/obo/GO_2001290,hydroperoxide metabolic process +12.5981396,HP:0006685,http://purl.obolibrary.org/obo/HP_0006685,Endocardial fibrosis +12.5981396,HP:0012830,http://purl.obolibrary.org/obo/HP_0012830,Position +12.5981396,MONDO:0000901,http://purl.obolibrary.org/obo/MONDO_0000901,relapsed/refractory diffuse large B-cell lymphoma +12.5981396,MONDO:0001277,http://purl.obolibrary.org/obo/MONDO_0001277,cerebral arteritis +12.5981396,MONDO:0001369,http://purl.obolibrary.org/obo/MONDO_0001369,chronic laryngitis +12.5981396,MONDO:0004673,http://purl.obolibrary.org/obo/MONDO_0004673,lower lip cancer +12.5981396,MONDO:0005348,http://purl.obolibrary.org/obo/MONDO_0005348,keloid +12.5981396,MONDO:0005670,http://purl.obolibrary.org/obo/MONDO_0005670,blackwater fever +12.5981396,MONDO:0006245,http://purl.obolibrary.org/obo/MONDO_0006245,hidradenocarcinoma +12.5981396,MONDO:0006926,http://purl.obolibrary.org/obo/MONDO_0006926,haemophilus infectious disease +12.5981396,MONDO:0008818,http://purl.obolibrary.org/obo/MONDO_0008818,arterial tortuosity syndrome +12.5981396,MONDO:0009673,http://purl.obolibrary.org/obo/MONDO_0009673,"spinal muscular atrophy, type II" +12.5981396,MONDO:0010293,http://purl.obolibrary.org/obo/MONDO_0010293,ectodermal dysplasia and immune deficiency +12.5981396,MONDO:0011601,http://purl.obolibrary.org/obo/MONDO_0011601,neonatal intrahepatic cholestasis due to citrin deficiency +12.5981396,MONDO:0011810,http://purl.obolibrary.org/obo/MONDO_0011810,horizontal gaze palsy with progressive scoliosis +12.5981396,MONDO:0017597,http://purl.obolibrary.org/obo/MONDO_0017597,T-cell/histiocyte rich large B cell lymphoma +12.5981396,MONDO:0018991,http://purl.obolibrary.org/obo/MONDO_0018991,hepatoportal sclerosis +12.5981396,MONDO:0019483,http://purl.obolibrary.org/obo/MONDO_0019483,methotrexate-associated lymphoproliferative disorders +12.5981396,MONDO:0020453,http://purl.obolibrary.org/obo/MONDO_0020453,congenital partial pulmonary venous return anomaly +12.5981396,MONDO:0025956,http://purl.obolibrary.org/obo/MONDO_0025956,ovarian remnant syndrome +12.5981396,MONDO:0041825,http://purl.obolibrary.org/obo/MONDO_0041825,bacterial meningitis caused by gram-negative bacteria +12.5981396,MONDO:0100086,http://purl.obolibrary.org/obo/MONDO_0100086,perinatal disease +12.5981396,NCBITaxon:10804,http://purl.obolibrary.org/obo/NCBITaxon_10804,none +12.5981396,NCBITaxon:1511871,http://purl.obolibrary.org/obo/NCBITaxon_1511871,none +12.5981396,NCBITaxon:1783270,http://purl.obolibrary.org/obo/NCBITaxon_1783270,FCB group +12.5981396,NCBITaxon:28221,http://purl.obolibrary.org/obo/NCBITaxon_28221,Deltaproteobacteria +12.5981396,NCBITaxon:33743,http://purl.obolibrary.org/obo/NCBITaxon_33743,Kyasanur Forest disease virus +12.5981396,NCBITaxon:37570,http://purl.obolibrary.org/obo/NCBITaxon_37570,Noctuoidea +12.5981396,NCBITaxon:57894,http://purl.obolibrary.org/obo/NCBITaxon_57894,none +12.5981396,NCBITaxon:7369,http://purl.obolibrary.org/obo/NCBITaxon_7369,none +12.5981396,PR:000004278,http://purl.obolibrary.org/obo/PR_000004278,ADP-ribosylation factor-like protein 14 +12.5981396,PR:000004324,http://purl.obolibrary.org/obo/PR_000004324,arylsulfatase L +12.5981396,PR:000004481,http://purl.obolibrary.org/obo/PR_000004481,"V-type proton ATPase subunit B, kidney isoform" +12.5981396,PR:000004717,http://purl.obolibrary.org/obo/PR_000004717,transcription factor TFIIIB component B'' +12.5981396,PR:000005581,http://purl.obolibrary.org/obo/PR_000005581,CAP-Gly domain-containing linker protein 1 +12.5981396,PR:000006461,http://purl.obolibrary.org/obo/PR_000006461,deoxyhypusine synthase +12.5981396,PR:000006875,http://purl.obolibrary.org/obo/PR_000006875,endothelin-converting enzyme 2 +12.5981396,PR:000006940,http://purl.obolibrary.org/obo/PR_000006940,early growth response protein 4 +12.5981396,PR:000006977,http://purl.obolibrary.org/obo/PR_000006977,eukaryotic translation initiation factor 3 subunit E +12.5981396,PR:000007506,http://purl.obolibrary.org/obo/PR_000007506,fibroblast growth factor receptor-like 1 +12.5981396,PR:000007570,http://purl.obolibrary.org/obo/PR_000007570,formin-2 +12.5981396,PR:000008703,http://purl.obolibrary.org/obo/PR_000008703,homeobox protein Hox-B6 +12.5981396,PR:000008739,http://purl.obolibrary.org/obo/PR_000008739,Hermansky-Pudlak syndrome 5 protein +12.5981396,PR:000009144,http://purl.obolibrary.org/obo/PR_000009144,integrin beta-8 +12.5981396,PR:000009289,http://purl.obolibrary.org/obo/PR_000009289,kinesin-like protein KIF15 +12.5981396,PR:000009975,http://purl.obolibrary.org/obo/PR_000009975,latent-transforming growth factor beta-binding protein 4 +12.5981396,PR:000010333,http://purl.obolibrary.org/obo/PR_000010333,mesoderm posterior protein 2 +12.5981396,PR:000010872,http://purl.obolibrary.org/obo/PR_000010872,myosin-IXb +12.5981396,PR:000011576,http://purl.obolibrary.org/obo/PR_000011576,2'-5'-oligoadenylate synthase 3 +12.5981396,PR:000012095,http://purl.obolibrary.org/obo/PR_000012095,"succinyl-CoA:3-ketoacid-coenzyme A transferase 1, mitochondrial" +12.5981396,PR:000012420,http://purl.obolibrary.org/obo/PR_000012420,protein-L-isoaspartate(D-aspartate) O-methyltransferase +12.5981396,PR:000012626,http://purl.obolibrary.org/obo/PR_000012626,phosphatase and actin regulator 1 +12.5981396,PR:000013394,http://purl.obolibrary.org/obo/PR_000013394,proteasome activator complex subunit 3 +12.5981396,PR:000013778,http://purl.obolibrary.org/obo/PR_000013778,E3 ubiquitin-protein ligase RBBP6 +12.5981396,PR:000013872,http://purl.obolibrary.org/obo/PR_000013872,regenerating islet-derived protein 3-gamma +12.5981396,PR:000015115,http://purl.obolibrary.org/obo/PR_000015115,glucose-6-phosphate exchanger SLC37A2 +12.5981396,PR:000015648,http://purl.obolibrary.org/obo/PR_000015648,"single-stranded DNA-binding protein, mitochondrial" +12.5981396,PR:000015684,http://purl.obolibrary.org/obo/PR_000015684,DENN domain-containing protein 2B +12.5981396,PR:000016457,http://purl.obolibrary.org/obo/PR_000016457,transmembrane protease serine 3 +12.5981396,PR:000016499,http://purl.obolibrary.org/obo/PR_000016499,poly [ADP-ribose] polymerase tankyrase-2 +12.5981396,PR:000016510,http://purl.obolibrary.org/obo/PR_000016510,"troponin T, fast skeletal muscle" +12.5981396,PR:000017141,http://purl.obolibrary.org/obo/PR_000017141,usherin +12.5981396,PR:000022181,http://purl.obolibrary.org/obo/PR_000022181,none +12.5981396,PR:000022377,http://purl.obolibrary.org/obo/PR_000022377,none +12.5981396,PR:000022446,http://purl.obolibrary.org/obo/PR_000022446,none +12.5981396,PR:000022533,http://purl.obolibrary.org/obo/PR_000022533,none +12.5981396,PR:000023261,http://purl.obolibrary.org/obo/PR_000023261,none +12.5981396,PR:000023527,http://purl.obolibrary.org/obo/PR_000023527,none +12.5981396,PR:000023860,http://purl.obolibrary.org/obo/PR_000023860,none +12.5981396,PR:000023993,http://purl.obolibrary.org/obo/PR_000023993,none +12.5981396,PR:000029369,http://purl.obolibrary.org/obo/PR_000029369,beta-crystallin A3 +12.5981396,PR:000030752,http://purl.obolibrary.org/obo/PR_000030752,volume-regulated anion channel subunit LRRC8A +12.5981396,PR:000033996,http://purl.obolibrary.org/obo/PR_000033996,none +12.5981396,PR:000034724,http://purl.obolibrary.org/obo/PR_000034724,none +12.5981396,PR:A3RLR0,http://purl.obolibrary.org/obo/PR_A3RLR0,none +12.5981396,PR:A3RLR1,http://purl.obolibrary.org/obo/PR_A3RLR1,none +12.5981396,PR:C0HJX4,http://purl.obolibrary.org/obo/PR_C0HJX4,none +12.5981396,PR:C0HJX5,http://purl.obolibrary.org/obo/PR_C0HJX5,none +12.5981396,PR:G2TRJ9,http://purl.obolibrary.org/obo/PR_G2TRJ9,none +12.5981396,PR:P06104,http://purl.obolibrary.org/obo/PR_P06104,none +12.5981396,PR:P08171,http://purl.obolibrary.org/obo/PR_P08171,none +12.5981396,PR:P10820,http://purl.obolibrary.org/obo/PR_P10820,none +12.5981396,PR:P13709,http://purl.obolibrary.org/obo/PR_P13709,none +12.5981396,PR:P38360,http://purl.obolibrary.org/obo/PR_P38360,none +12.5981396,PR:Q04089,http://purl.obolibrary.org/obo/PR_Q04089,none +12.5981396,PR:Q0WLB5,http://purl.obolibrary.org/obo/PR_Q0WLB5,none +12.5981396,PR:Q60688,http://purl.obolibrary.org/obo/PR_Q60688,none +12.5981396,PR:Q84JA6,http://purl.obolibrary.org/obo/PR_Q84JA6,none +12.5981396,PR:Q98943,http://purl.obolibrary.org/obo/PR_Q98943,none +12.5981396,PR:Q9EPH2,http://purl.obolibrary.org/obo/PR_Q9EPH2,none +12.5981396,PR:Q9LXI4,http://purl.obolibrary.org/obo/PR_Q9LXI4,none +12.5981396,PR:Q9LXI7,http://purl.obolibrary.org/obo/PR_Q9LXI7,none +12.5981396,SO:0002052,http://purl.obolibrary.org/obo/SO_0002052,dominant_negative_variant +12.5981396,UBERON:0000942,http://purl.obolibrary.org/obo/UBERON_0000942,frontal nerve (branch of ophthalmic) +12.5981396,UBERON:0001266,http://purl.obolibrary.org/obo/UBERON_0001266,splenic cord +12.5981396,UBERON:0001708,http://purl.obolibrary.org/obo/UBERON_0001708,jaw skeleton +12.5981396,UBERON:0002310,http://purl.obolibrary.org/obo/UBERON_0002310,hippocampus fimbria +12.5981396,UBERON:0002526,http://purl.obolibrary.org/obo/UBERON_0002526,lumbar lymph node +12.5981396,UBERON:0003530,http://purl.obolibrary.org/obo/UBERON_0003530,pedal digit skin +12.5981396,UBERON:0004208,http://purl.obolibrary.org/obo/UBERON_0004208,nephrogenic mesenchyme +12.5981396,UBERON:0007716,http://purl.obolibrary.org/obo/UBERON_0007716,lumbar subsegment of spinal cord +12.5981396,UBERON:0011110,http://purl.obolibrary.org/obo/UBERON_0011110,humeroulnar joint +12.5981396,UBERON:0011415,http://purl.obolibrary.org/obo/UBERON_0011415,cutaneous trunci muscle +12.5981396,UBERON:0014644,http://purl.obolibrary.org/obo/UBERON_0014644,cerebrocerebellum +12.5981396,UBERON:0015160,http://purl.obolibrary.org/obo/UBERON_0015160,supraorbital artery +12.5981396,UBERON:0018683,http://purl.obolibrary.org/obo/UBERON_0018683,lumbar splanchnic nerve +12.611043,CHEBI:25442,http://purl.obolibrary.org/obo/CHEBI_25442,mycotoxin +12.611043,CHEBI:33581,http://purl.obolibrary.org/obo/CHEBI_33581,boron group molecular entity +12.611043,CHEBI:50817,http://purl.obolibrary.org/obo/CHEBI_50817,iron oxide mineral +12.611043,CHEBI:50994,http://purl.obolibrary.org/obo/CHEBI_50994,primary amino compound +12.611043,CL:0002217,http://purl.obolibrary.org/obo/CL_0002217,intermediate trophoblast cell +12.611043,CL:1000443,http://purl.obolibrary.org/obo/CL_1000443,ciliary muscle cell +12.611043,DRUGBANK:DB00219,http://purl.obolibrary.org/obo/DRUGBANK_DB00219,none +12.611043,DRUGBANK:DB01295,http://purl.obolibrary.org/obo/DRUGBANK_DB01295,none +12.611043,DRUGBANK:DB08894,http://purl.obolibrary.org/obo/DRUGBANK_DB08894,none +12.611043,DRUGBANK:DB08918,http://purl.obolibrary.org/obo/DRUGBANK_DB08918,none +12.611043,DRUGBANK:DB09206,http://purl.obolibrary.org/obo/DRUGBANK_DB09206,none +12.611043,DRUGBANK:DB10679,http://purl.obolibrary.org/obo/DRUGBANK_DB10679,none +12.611043,DRUGBANK:DB11324,http://purl.obolibrary.org/obo/DRUGBANK_DB11324,none +12.611043,DRUGBANK:DB11740,http://purl.obolibrary.org/obo/DRUGBANK_DB11740,none +12.611043,DRUGBANK:DB12841,http://purl.obolibrary.org/obo/DRUGBANK_DB12841,none +12.611043,DRUGBANK:DB13192,http://purl.obolibrary.org/obo/DRUGBANK_DB13192,none +12.611043,DRUGBANK:DB13530,http://purl.obolibrary.org/obo/DRUGBANK_DB13530,none +12.611043,DRUGBANK:DB13641,http://purl.obolibrary.org/obo/DRUGBANK_DB13641,none +12.611043,DRUGBANK:DB13670,http://purl.obolibrary.org/obo/DRUGBANK_DB13670,none +12.611043,DRUGBANK:DB14579,http://purl.obolibrary.org/obo/DRUGBANK_DB14579,none +12.611043,GO:0001825,http://purl.obolibrary.org/obo/GO_0001825,blastocyst formation +12.611043,GO:0002089,http://purl.obolibrary.org/obo/GO_0002089,lens morphogenesis in camera-type eye +12.611043,GO:0006659,http://purl.obolibrary.org/obo/GO_0006659,phosphatidylserine biosynthetic process +12.611043,GO:0006998,http://purl.obolibrary.org/obo/GO_0006998,nuclear envelope organization +12.611043,GO:0008662,http://purl.obolibrary.org/obo/GO_0008662,1-phosphofructokinase activity +12.611043,GO:0008948,http://purl.obolibrary.org/obo/GO_0008948,oxaloacetate decarboxylase activity +12.611043,GO:0009449,http://purl.obolibrary.org/obo/GO_0009449,gamma-aminobutyric acid biosynthetic process +12.611043,GO:0009528,http://purl.obolibrary.org/obo/GO_0009528,plastid inner membrane +12.611043,GO:0010171,http://purl.obolibrary.org/obo/GO_0010171,body morphogenesis +12.611043,GO:0017101,http://purl.obolibrary.org/obo/GO_0017101,aminoacyl-tRNA synthetase multienzyme complex +12.611043,GO:0017159,http://purl.obolibrary.org/obo/GO_0017159,pantetheine hydrolase activity +12.611043,GO:0017168,http://purl.obolibrary.org/obo/GO_0017168,5-oxoprolinase (ATP-hydrolyzing) activity +12.611043,GO:0030479,http://purl.obolibrary.org/obo/GO_0030479,actin cortical patch +12.611043,GO:0030493,http://purl.obolibrary.org/obo/GO_0030493,bacteriochlorophyll metabolic process +12.611043,GO:0030494,http://purl.obolibrary.org/obo/GO_0030494,bacteriochlorophyll biosynthetic process +12.611043,GO:0031407,http://purl.obolibrary.org/obo/GO_0031407,oxylipin metabolic process +12.611043,GO:0032675,http://purl.obolibrary.org/obo/GO_0032675,regulation of interleukin-6 production +12.611043,GO:0034763,http://purl.obolibrary.org/obo/GO_0034763,negative regulation of transmembrane transport +12.611043,GO:0036359,http://purl.obolibrary.org/obo/GO_0036359,renal potassium excretion +12.611043,GO:0042409,http://purl.obolibrary.org/obo/GO_0042409,caffeoyl-CoA O-methyltransferase activity +12.611043,GO:0043266,http://purl.obolibrary.org/obo/GO_0043266,regulation of potassium ion transport +12.611043,GO:0046689,http://purl.obolibrary.org/obo/GO_0046689,response to mercury ion +12.611043,GO:0046724,http://purl.obolibrary.org/obo/GO_0046724,oxalic acid secretion +12.611043,GO:0046916,http://purl.obolibrary.org/obo/GO_0046916,cellular transition metal ion homeostasis +12.611043,GO:0050916,http://purl.obolibrary.org/obo/GO_0050916,sensory perception of sweet taste +12.611043,GO:0061645,http://purl.obolibrary.org/obo/GO_0061645,endocytic patch +12.611043,GO:1900120,http://purl.obolibrary.org/obo/GO_1900120,regulation of receptor binding +12.611043,GO:1904640,http://purl.obolibrary.org/obo/GO_1904640,response to methionine +12.611043,HP:0000739,http://purl.obolibrary.org/obo/HP_0000739,Anxiety +12.611043,HP:0031466,http://purl.obolibrary.org/obo/HP_0031466,Impairment in personality functioning +12.611043,HP:0100852,http://purl.obolibrary.org/obo/HP_0100852,Abnormal fear/anxiety-related behavior +12.611043,MONDO:0000936,http://purl.obolibrary.org/obo/MONDO_0000936,syphilitic meningitis +12.611043,MONDO:0002770,http://purl.obolibrary.org/obo/MONDO_0002770,vaginal discharge +12.611043,MONDO:0003405,http://purl.obolibrary.org/obo/MONDO_0003405,adult central nervous system germ cell tumor +12.611043,MONDO:0003507,http://purl.obolibrary.org/obo/MONDO_0003507,choriocarcinoma of ovary +12.611043,MONDO:0003890,http://purl.obolibrary.org/obo/MONDO_0003890,infiltrating bladder urothelial carcinoma +12.611043,MONDO:0004276,http://purl.obolibrary.org/obo/MONDO_0004276,ceruminoma +12.611043,MONDO:0005293,http://purl.obolibrary.org/obo/MONDO_0005293,flatfoot +12.611043,MONDO:0005679,http://purl.obolibrary.org/obo/MONDO_0005679,bovine virus diarrhea-mucosal disease +12.611043,MONDO:0005901,http://purl.obolibrary.org/obo/MONDO_0005901,pasteurellosis +12.611043,MONDO:0008097,http://purl.obolibrary.org/obo/MONDO_0008097,linear nevus sebaceus syndrome +12.611043,MONDO:0008892,http://purl.obolibrary.org/obo/MONDO_0008892,progressive familial intrahepatic cholestasis type 1 +12.611043,MONDO:0015829,http://purl.obolibrary.org/obo/MONDO_0015829,non-syndromic uterovaginal malformation +12.611043,MONDO:0015967,http://purl.obolibrary.org/obo/MONDO_0015967,monogenic diabetes +12.611043,MONDO:0015998,http://purl.obolibrary.org/obo/MONDO_0015998,isolated ectopia lentis +12.611043,MONDO:0016136,http://purl.obolibrary.org/obo/MONDO_0016136,cerebellar ataxia with peripheral neuropathy +12.611043,MONDO:0016195,http://purl.obolibrary.org/obo/MONDO_0016195,qualitative or quantitative defects of beta-myosin heavy chain (MYH7) +12.611043,MONDO:0016874,http://purl.obolibrary.org/obo/MONDO_0016874,partial deletion of chromosome 9 +12.611043,MONDO:0017101,http://purl.obolibrary.org/obo/MONDO_0017101,isolated focal cortical dysplasia type IIa +12.611043,MONDO:0018139,http://purl.obolibrary.org/obo/MONDO_0018139,scleredema +12.611043,MONDO:0019502,http://purl.obolibrary.org/obo/MONDO_0019502,autosomal recessive non-syndromic intellectual disability +12.611043,MONDO:0019941,http://purl.obolibrary.org/obo/MONDO_0019941,hereditary sensory and autonomic neuropathy type 2 +12.611043,MONDO:0020173,http://purl.obolibrary.org/obo/MONDO_0020173,benign tumor of palpebral epidermis +12.611043,MONDO:0020177,http://purl.obolibrary.org/obo/MONDO_0020177,pigmented palpebral tumor +12.611043,MONDO:0020179,http://purl.obolibrary.org/obo/MONDO_0020179,palpebral nevus +12.611043,MONDO:0020205,http://purl.obolibrary.org/obo/MONDO_0020205,bulbar conjunctival dermoid or conjunctival dermolipoma +12.611043,MONDO:0024488,http://purl.obolibrary.org/obo/MONDO_0024488,tumor grading characteristic +12.611043,MONDO:0024489,http://purl.obolibrary.org/obo/MONDO_0024489,general tumor grading characteristic +12.611043,MONDO:0028226,http://purl.obolibrary.org/obo/MONDO_0028226,autosomal recessive severe congenital neutropenia +12.611043,MONDO:0400002,http://purl.obolibrary.org/obo/MONDO_0400002,calcium-alkali syndrome +12.611043,MONDO:0700085,http://purl.obolibrary.org/obo/MONDO_0700085,pentasomy +12.611043,NCBITaxon:129725,http://purl.obolibrary.org/obo/NCBITaxon_129725,none +12.611043,NCBITaxon:2560364,http://purl.obolibrary.org/obo/NCBITaxon_2560364,none +12.611043,NCBITaxon:37733,http://purl.obolibrary.org/obo/NCBITaxon_37733,none +12.611043,NCBITaxon:42062,http://purl.obolibrary.org/obo/NCBITaxon_42062,none +12.611043,NCBITaxon:424551,http://purl.obolibrary.org/obo/NCBITaxon_424551,Solanoideae +12.611043,NCBITaxon:7100,http://purl.obolibrary.org/obo/NCBITaxon_7100,Noctuidae +12.611043,NCBITaxon:7229,http://purl.obolibrary.org/obo/NCBITaxon_7229,none +12.611043,PR:000000170,http://purl.obolibrary.org/obo/PR_000000170,BMP8B +12.611043,PR:000000707,http://purl.obolibrary.org/obo/PR_000000707,potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 3 +12.611043,PR:000001148,http://purl.obolibrary.org/obo/PR_000001148,prosaposin receptor GPR37 +12.611043,PR:000003180,http://purl.obolibrary.org/obo/PR_000003180,SHC-transforming protein 2 +12.611043,PR:000003923,http://purl.obolibrary.org/obo/PR_000003923,"aldehyde dehydrogenase X, mitochondrial" +12.611043,PR:000004041,http://purl.obolibrary.org/obo/PR_000004041,ankyrin repeat domain-containing protein 11 +12.611043,PR:000005079,http://purl.obolibrary.org/obo/PR_000005079,carbonyl reductase [NADPH] 3 +12.611043,PR:000005154,http://purl.obolibrary.org/obo/PR_000005154,T-complex protein 1 subunit zeta +12.611043,PR:000005383,http://purl.obolibrary.org/obo/PR_000005383,complement factor H-related protein 5 +12.611043,PR:000005437,http://purl.obolibrary.org/obo/PR_000005437,charged multivesicular body protein 4b +12.611043,PR:000005487,http://purl.obolibrary.org/obo/PR_000005487,protein Churchill +12.611043,PR:000005714,http://purl.obolibrary.org/obo/PR_000005714,collagen alpha-2(IV) chain +12.611043,PR:000006721,http://purl.obolibrary.org/obo/PR_000006721,protein deltex-2 +12.611043,PR:000007192,http://purl.obolibrary.org/obo/PR_000007192,endogenous retrovirus group 3 member 1 Env polyprotein +12.611043,PR:000008089,http://purl.obolibrary.org/obo/PR_000008089,guanine nucleotide-binding protein G(o) subunit alpha +12.611043,PR:000008123,http://purl.obolibrary.org/obo/PR_000008123,glucosamine-6-phosphate isomerase 2 +12.611043,PR:000008632,http://purl.obolibrary.org/obo/PR_000008632,high mobility group protein B3 +12.611043,PR:000008816,http://purl.obolibrary.org/obo/PR_000008816,heat shock protein beta-2 +12.611043,PR:000009969,http://purl.obolibrary.org/obo/PR_000009969,lanosterol synthase +12.611043,PR:000011105,http://purl.obolibrary.org/obo/PR_000011105,"NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial" +12.611043,PR:000011476,http://purl.obolibrary.org/obo/PR_000011476,cytosolic Fe-S cluster assembly factor NUBP1 +12.611043,PR:000013945,http://purl.obolibrary.org/obo/PR_000013945,regulator of G-protein signaling 10 +12.611043,PR:000014290,http://purl.obolibrary.org/obo/PR_000014290,40S ribosomal protein S7 +12.611043,PR:000014905,http://purl.obolibrary.org/obo/PR_000014905,Src kinase-associated phosphoprotein 2 +12.611043,PR:000015144,http://purl.obolibrary.org/obo/PR_000015144,choline transporter-like protein 2 +12.611043,PR:000015564,http://purl.obolibrary.org/obo/PR_000015564,signal peptide peptidase-like 2B +12.611043,PR:000015927,http://purl.obolibrary.org/obo/PR_000015927,none +12.611043,PR:000016132,http://purl.obolibrary.org/obo/PR_000016132,F-box-like/WD repeat-containing protein TBL1X +12.611043,PR:000016927,http://purl.obolibrary.org/obo/PR_000016927,none +12.611043,PR:000017124,http://purl.obolibrary.org/obo/PR_000017124,"cytochrome b-c1 complex subunit 1, mitochondrial" +12.611043,PR:000017319,http://purl.obolibrary.org/obo/PR_000017319,vacuolar protein sorting-associated protein 13A +12.611043,PR:000023089,http://purl.obolibrary.org/obo/PR_000023089,none +12.611043,PR:000023596,http://purl.obolibrary.org/obo/PR_000023596,none +12.611043,PR:000031800,http://purl.obolibrary.org/obo/PR_000031800,WAP four-disulfide core domain protein 2 +12.611043,PR:000033857,http://purl.obolibrary.org/obo/PR_000033857,none +12.611043,PR:000050393,http://purl.obolibrary.org/obo/PR_000050393,late cornified envelope protein +12.611043,PR:O65718,http://purl.obolibrary.org/obo/PR_O65718,none +12.611043,PR:P07342,http://purl.obolibrary.org/obo/PR_P07342,none +12.611043,PR:P13432,http://purl.obolibrary.org/obo/PR_P13432,none +12.611043,PR:P47096,http://purl.obolibrary.org/obo/PR_P47096,none +12.611043,PR:P53146,http://purl.obolibrary.org/obo/PR_P53146,none +12.611043,PR:P54697,http://purl.obolibrary.org/obo/PR_P54697,none +12.611043,PR:Q54F46,http://purl.obolibrary.org/obo/PR_Q54F46,none +12.611043,PR:Q6DEI8,http://purl.obolibrary.org/obo/PR_Q6DEI8,none +12.611043,PR:Q8W4E7,http://purl.obolibrary.org/obo/PR_Q8W4E7,none +12.611043,SO:0001835,http://purl.obolibrary.org/obo/SO_0001835,N_region +12.611043,UBERON:0003295,http://purl.obolibrary.org/obo/UBERON_0003295,pharyngeal gland +12.611043,UBERON:0004365,http://purl.obolibrary.org/obo/UBERON_0004365,vitelline blood vessel +12.611043,UBERON:0006118,http://purl.obolibrary.org/obo/UBERON_0006118,lamina I of gray matter of spinal cord +12.611043,UBERON:0015219,http://purl.obolibrary.org/obo/UBERON_0015219,middle nasal meatus +12.611043,UBERON:0015510,http://purl.obolibrary.org/obo/UBERON_0015510,body of corpus callosum +12.6241151,CHEBI:22478,http://purl.obolibrary.org/obo/CHEBI_22478,amino alcohol +12.6241151,CHEBI:32503,http://purl.obolibrary.org/obo/CHEBI_32503,phenylalanine residue +12.6241151,CHEBI:32835,http://purl.obolibrary.org/obo/CHEBI_32835,threonine residue +12.6241151,CHEBI:33563,http://purl.obolibrary.org/obo/CHEBI_33563,glycolipid +12.6241151,CHEBI:36093,http://purl.obolibrary.org/obo/CHEBI_36093,inorganic chloride +12.6241151,CHEBI:37445,http://purl.obolibrary.org/obo/CHEBI_37445,folic acids +12.6241151,CHEBI:38263,http://purl.obolibrary.org/obo/CHEBI_38263,2-amino-3-hydroxybutanoic acid +12.6241151,CHEBI:51081,http://purl.obolibrary.org/obo/CHEBI_51081,nitrates +12.6241151,CHEBI:5391,http://purl.obolibrary.org/obo/CHEBI_5391,glucagon +12.6241151,CHEBI:60096,http://purl.obolibrary.org/obo/CHEBI_60096,poly(glycerol phosphate) +12.6241151,CHEBI:64392,http://purl.obolibrary.org/obo/CHEBI_64392,biogenic substance +12.6241151,CL:0000778,http://purl.obolibrary.org/obo/CL_0000778,mononuclear osteoclast +12.6241151,CL:0002169,http://purl.obolibrary.org/obo/CL_0002169,basal cell of olfactory epithelium +12.6241151,DRUGBANK:DB00923,http://purl.obolibrary.org/obo/DRUGBANK_DB00923,none +12.6241151,DRUGBANK:DB01709,http://purl.obolibrary.org/obo/DRUGBANK_DB01709,none +12.6241151,DRUGBANK:DB02428,http://purl.obolibrary.org/obo/DRUGBANK_DB02428,none +12.6241151,DRUGBANK:DB02846,http://purl.obolibrary.org/obo/DRUGBANK_DB02846,none +12.6241151,DRUGBANK:DB03993,http://purl.obolibrary.org/obo/DRUGBANK_DB03993,none +12.6241151,DRUGBANK:DB04925,http://purl.obolibrary.org/obo/DRUGBANK_DB04925,none +12.6241151,DRUGBANK:DB05488,http://purl.obolibrary.org/obo/DRUGBANK_DB05488,none +12.6241151,DRUGBANK:DB05808,http://purl.obolibrary.org/obo/DRUGBANK_DB05808,none +12.6241151,DRUGBANK:DB06043,http://purl.obolibrary.org/obo/DRUGBANK_DB06043,none +12.6241151,DRUGBANK:DB06358,http://purl.obolibrary.org/obo/DRUGBANK_DB06358,none +12.6241151,DRUGBANK:DB06716,http://purl.obolibrary.org/obo/DRUGBANK_DB06716,none +12.6241151,DRUGBANK:DB11703,http://purl.obolibrary.org/obo/DRUGBANK_DB11703,none +12.6241151,DRUGBANK:DB11872,http://purl.obolibrary.org/obo/DRUGBANK_DB11872,none +12.6241151,DRUGBANK:DB12919,http://purl.obolibrary.org/obo/DRUGBANK_DB12919,none +12.6241151,DRUGBANK:DB13400,http://purl.obolibrary.org/obo/DRUGBANK_DB13400,none +12.6241151,DRUGBANK:DB14362,http://purl.obolibrary.org/obo/DRUGBANK_DB14362,none +12.6241151,DRUGBANK:DB14633,http://purl.obolibrary.org/obo/DRUGBANK_DB14633,none +12.6241151,DRUGBANK:DB14748,http://purl.obolibrary.org/obo/DRUGBANK_DB14748,none +12.6241151,DRUGBANK:DB15738,http://purl.obolibrary.org/obo/DRUGBANK_DB15738,none +12.6241151,GO:0000038,http://purl.obolibrary.org/obo/GO_0000038,very long-chain fatty acid metabolic process +12.6241151,GO:0004822,http://purl.obolibrary.org/obo/GO_0004822,isoleucine-tRNA ligase activity +12.6241151,GO:0008665,http://purl.obolibrary.org/obo/GO_0008665,none +12.6241151,GO:0009270,http://purl.obolibrary.org/obo/GO_0009270,response to humidity +12.6241151,GO:0009960,http://purl.obolibrary.org/obo/GO_0009960,endosperm development +12.6241151,GO:0015785,http://purl.obolibrary.org/obo/GO_0015785,none +12.6241151,GO:0015847,http://purl.obolibrary.org/obo/GO_0015847,putrescine transport +12.6241151,GO:0016104,http://purl.obolibrary.org/obo/GO_0016104,triterpenoid biosynthetic process +12.6241151,GO:0016895,http://purl.obolibrary.org/obo/GO_0016895,"exodeoxyribonuclease activity, producing 5'-phosphomonoesters" +12.6241151,GO:0030126,http://purl.obolibrary.org/obo/GO_0030126,COPI vesicle coat +12.6241151,GO:0030259,http://purl.obolibrary.org/obo/GO_0030259,lipid glycosylation +12.6241151,GO:0033042,http://purl.obolibrary.org/obo/GO_0033042,umami taste receptor activity +12.6241151,GO:0033729,http://purl.obolibrary.org/obo/GO_0033729,anthocyanidin reductase activity +12.6241151,GO:0035262,http://purl.obolibrary.org/obo/GO_0035262,gonad morphogenesis +12.6241151,GO:0042946,http://purl.obolibrary.org/obo/GO_0042946,glucoside transport +12.6241151,GO:0061482,http://purl.obolibrary.org/obo/GO_0061482,response to irinotecan +12.6241151,GO:0065002,http://purl.obolibrary.org/obo/GO_0065002,intracellular protein transmembrane transport +12.6241151,GO:0070646,http://purl.obolibrary.org/obo/GO_0070646,protein modification by small protein removal +12.6241151,GO:0071256,http://purl.obolibrary.org/obo/GO_0071256,translocon complex +12.6241151,GO:0071683,http://purl.obolibrary.org/obo/GO_0071683,sensory dendrite +12.6241151,GO:0090681,http://purl.obolibrary.org/obo/GO_0090681,GPCR taste receptor activity +12.6241151,GO:0097136,http://purl.obolibrary.org/obo/GO_0097136,Bcl-2 family protein complex +12.6241151,HP:0001373,http://purl.obolibrary.org/obo/HP_0001373,Joint dislocation +12.6241151,HP:0004447,http://purl.obolibrary.org/obo/HP_0004447,Poikilocytosis +12.6241151,MONDO:0000879,http://purl.obolibrary.org/obo/MONDO_0000879,cutaneous candidiasis +12.6241151,MONDO:0001157,http://purl.obolibrary.org/obo/MONDO_0001157,dependent personality disorder +12.6241151,MONDO:0001338,http://purl.obolibrary.org/obo/MONDO_0001338,acute apical periodontitis +12.6241151,MONDO:0002822,http://purl.obolibrary.org/obo/MONDO_0002822,trabecular adenocarcinoma +12.6241151,MONDO:0003934,http://purl.obolibrary.org/obo/MONDO_0003934,breast apocrine carcinoma +12.6241151,MONDO:0004387,http://purl.obolibrary.org/obo/MONDO_0004387,luteoma of pregnancy +12.6241151,MONDO:0004412,http://purl.obolibrary.org/obo/MONDO_0004412,malignant spiradenoma +12.6241151,MONDO:0004786,http://purl.obolibrary.org/obo/MONDO_0004786,chronic cholangitis +12.6241151,MONDO:0005613,http://purl.obolibrary.org/obo/MONDO_0005613,mesonephric adenocarcinoma +12.6241151,MONDO:0006167,http://purl.obolibrary.org/obo/MONDO_0006167,combined lung carcinoma +12.6241151,MONDO:0006540,http://purl.obolibrary.org/obo/MONDO_0006540,dyshidrosis +12.6241151,MONDO:0009690,http://purl.obolibrary.org/obo/MONDO_0009690,congenital myasthenic syndrome 10 +12.6241151,MONDO:0012866,http://purl.obolibrary.org/obo/MONDO_0012866,hereditary spastic paraplegia 35 +12.6241151,MONDO:0017292,http://purl.obolibrary.org/obo/MONDO_0017292,well-differentiated fetal adenocarcinoma of the lung +12.6241151,MONDO:0017842,http://purl.obolibrary.org/obo/MONDO_0017842,Senior-Loken syndrome +12.6241151,MONDO:0018240,http://purl.obolibrary.org/obo/MONDO_0018240,TRPV4-related bone disorder +12.6241151,MONDO:0018525,http://purl.obolibrary.org/obo/MONDO_0018525,solid pseudopapillary carcinoma of pancreas +12.6241151,MONDO:0019237,http://purl.obolibrary.org/obo/MONDO_0019237,inborn disorder of pyridoxine metabolism +12.6241151,MONDO:0019628,http://purl.obolibrary.org/obo/MONDO_0019628,Rieger anomaly +12.6241151,MONDO:0021271,http://purl.obolibrary.org/obo/MONDO_0021271,villous adenoma of colon +12.6241151,MONDO:0022208,http://purl.obolibrary.org/obo/MONDO_0022208,crystal arthropathy +12.6241151,MONDO:0045057,http://purl.obolibrary.org/obo/MONDO_0045057,delirium +12.6241151,NCBITaxon:10585,http://purl.obolibrary.org/obo/NCBITaxon_10585,none +12.6241151,NCBITaxon:10840,http://purl.obolibrary.org/obo/NCBITaxon_10840,none +12.6241151,NCBITaxon:118655,http://purl.obolibrary.org/obo/NCBITaxon_118655,Oropouche virus +12.6241151,NCBITaxon:12174,http://purl.obolibrary.org/obo/NCBITaxon_12174,none +12.6241151,NCBITaxon:1821750,http://purl.obolibrary.org/obo/NCBITaxon_1821750,none +12.6241151,NCBITaxon:201800,http://purl.obolibrary.org/obo/NCBITaxon_201800,none +12.6241151,NCBITaxon:2560080,http://purl.obolibrary.org/obo/NCBITaxon_2560080,Rubulavirinae +12.6241151,NCBITaxon:35510,http://purl.obolibrary.org/obo/NCBITaxon_35510,none +12.6241151,NCBITaxon:39099,http://purl.obolibrary.org/obo/NCBITaxon_39099,none +12.6241151,NCBITaxon:628,http://purl.obolibrary.org/obo/NCBITaxon_628,none +12.6241151,NCBITaxon:689403,http://purl.obolibrary.org/obo/NCBITaxon_689403,none +12.6241151,NCBITaxon:80935,http://purl.obolibrary.org/obo/NCBITaxon_80935,none +12.6241151,NCBITaxon:9796,http://purl.obolibrary.org/obo/NCBITaxon_9796,Equus caballus +12.6241151,PR:000001329,http://purl.obolibrary.org/obo/PR_000001329,carcinoembryonic antigen-related cell adhesion molecule 3 +12.6241151,PR:000003849,http://purl.obolibrary.org/obo/PR_000003849,type-1 angiotensin II receptor-associated protein +12.6241151,PR:000004714,http://purl.obolibrary.org/obo/PR_000004714,"D-beta-hydroxybutyrate dehydrogenase, mitochondrial" +12.6241151,PR:000005402,http://purl.obolibrary.org/obo/PR_000005402,chromatin assembly factor 1 subunit A +12.6241151,PR:000005498,http://purl.obolibrary.org/obo/PR_000005498,corepressor interacting with RBPJ 1 +12.6241151,PR:000005513,http://purl.obolibrary.org/obo/PR_000005513,creatine kinase B-type +12.6241151,PR:000005566,http://purl.obolibrary.org/obo/PR_000005566,C-type lectin domain family 2 member D +12.6241151,PR:000006472,http://purl.obolibrary.org/obo/PR_000006472,pre-mRNA-splicing factor ATP-dependent RNA helicase PRP16 +12.6241151,PR:000006595,http://purl.obolibrary.org/obo/PR_000006595,deoxyribonuclease gamma +12.6241151,PR:000006868,http://purl.obolibrary.org/obo/PR_000006868,transcription factor COE3 +12.6241151,PR:000007383,http://purl.obolibrary.org/obo/PR_000007383,F-box/LRR-repeat protein 5 +12.6241151,PR:000007714,http://purl.obolibrary.org/obo/PR_000007714,sodium/potassium-transporting ATPase subunit gamma +12.6241151,PR:000008530,http://purl.obolibrary.org/obo/PR_000008530,hairy/enhancer-of-split related with YRPW motif-like protein +12.6241151,PR:000008576,http://purl.obolibrary.org/obo/PR_000008576,histone H1.2 +12.6241151,PR:000008968,http://purl.obolibrary.org/obo/PR_000008968,immunoglobulin superfamily member 1 +12.6241151,PR:000009070,http://purl.obolibrary.org/obo/PR_000009070,integrator complex subunit 3 +12.6241151,PR:000009207,http://purl.obolibrary.org/obo/PR_000009207,lysine-specific demethylase 5D +12.6241151,PR:000009273,http://purl.obolibrary.org/obo/PR_000009273,ER lumen protein-retaining receptor 1 +12.6241151,PR:000009887,http://purl.obolibrary.org/obo/PR_000009887,lysyl oxidase homolog 4 +12.6241151,PR:000009895,http://purl.obolibrary.org/obo/PR_000009895,phosphatidate phosphatase LPIN2 +12.6241151,PR:000010003,http://purl.obolibrary.org/obo/PR_000010003,Ly-6/neurotoxin-like protein 1 +12.6241151,PR:000011384,http://purl.obolibrary.org/obo/PR_000011384,neuronal pentraxin receptor +12.6241151,PR:000012460,http://purl.obolibrary.org/obo/PR_000012460,phosducin-like protein +12.6241151,PR:000012480,http://purl.obolibrary.org/obo/PR_000012480,"cone cGMP-specific 3',5'-cyclic phosphodiesterase subunit alpha'" +12.6241151,PR:000012486,http://purl.obolibrary.org/obo/PR_000012486,"high affinity cAMP-specific and IBMX-insensitive 3',5'-cyclic phosphodiesterase 8A" +12.6241151,PR:000013101,http://purl.obolibrary.org/obo/PR_000013101,protein phosphatase methylesterase 1 +12.6241151,PR:000013848,http://purl.obolibrary.org/obo/PR_000013848,retinol dehydrogenase 10 +12.6241151,PR:000013850,http://purl.obolibrary.org/obo/PR_000013850,retinol dehydrogenase 12 +12.6241151,PR:000014058,http://purl.obolibrary.org/obo/PR_000014058,2-5A-dependent ribonuclease +12.6241151,PR:000014174,http://purl.obolibrary.org/obo/PR_000014174,RPA-interacting protein +12.6241151,PR:000014181,http://purl.obolibrary.org/obo/PR_000014181,X-linked retinitis pigmentosa GTPase regulator +12.6241151,PR:000014295,http://purl.obolibrary.org/obo/PR_000014295,CCR4-NOT transcription complex subunit 9 +12.6241151,PR:000014627,http://purl.obolibrary.org/obo/PR_000014627,semaphorin-5A +12.6241151,PR:000015016,http://purl.obolibrary.org/obo/PR_000015016,mitochondrial carnitine/acylcarnitine carrier protein +12.6241151,PR:000015617,http://purl.obolibrary.org/obo/PR_000015617,SLIT-ROBO Rho GTPase-activating protein 3 +12.6241151,PR:000015763,http://purl.obolibrary.org/obo/PR_000015763,stomatin +12.6241151,PR:000015799,http://purl.obolibrary.org/obo/PR_000015799,syntaxin-7 +12.6241151,PR:000015839,http://purl.obolibrary.org/obo/PR_000015839,"ATP-dependent RNA helicase SUPV3L1, mitochondrial" +12.6241151,PR:000015878,http://purl.obolibrary.org/obo/PR_000015878,synaptogyrin-1 +12.6241151,PR:000015990,http://purl.obolibrary.org/obo/PR_000015990,none +12.6241151,PR:000016758,http://purl.obolibrary.org/obo/PR_000016758,testis-specific Y-encoded protein 1 +12.6241151,PR:000017102,http://purl.obolibrary.org/obo/PR_000017102,protein unc-93 homolog B1 +12.6241151,PR:000026995,http://purl.obolibrary.org/obo/PR_000026995,microtubule-associated protein tau isoform Tau-B +12.6241151,PR:000029647,http://purl.obolibrary.org/obo/PR_000029647,probable 28S rRNA (cytosine(4447)-C(5))-methyltransferase +12.6241151,PR:000029780,http://purl.obolibrary.org/obo/PR_000029780,tubulin beta chain +12.6241151,PR:000030304,http://purl.obolibrary.org/obo/PR_000030304,E3 ubiquitin-protein ligase TRIM37 +12.6241151,PR:000031797,http://purl.obolibrary.org/obo/PR_000031797,four and a half LIM domains protein 3 +12.6241151,PR:000034085,http://purl.obolibrary.org/obo/PR_000034085,none +12.6241151,PR:000034287,http://purl.obolibrary.org/obo/PR_000034287,none +12.6241151,PR:P18105,http://purl.obolibrary.org/obo/PR_P18105,none +12.6241151,PR:P32259,http://purl.obolibrary.org/obo/PR_P32259,none +12.6241151,PR:P32598,http://purl.obolibrary.org/obo/PR_P32598,none +12.6241151,PR:P35763,http://purl.obolibrary.org/obo/PR_P35763,none +12.6241151,PR:P54696,http://purl.obolibrary.org/obo/PR_P54696,none +12.6241151,PR:Q06032,http://purl.obolibrary.org/obo/PR_Q06032,none +12.6241151,PR:Q12495,http://purl.obolibrary.org/obo/PR_Q12495,none +12.6241151,PR:Q42533,http://purl.obolibrary.org/obo/PR_Q42533,none +12.6241151,PR:Q7X659,http://purl.obolibrary.org/obo/PR_Q7X659,none +12.6241151,PR:Q9SHU7,http://purl.obolibrary.org/obo/PR_Q9SHU7,none +12.6241151,SO:1001272,http://purl.obolibrary.org/obo/SO_1001272,tRNA_intron +12.6241151,UBERON:0000155,http://purl.obolibrary.org/obo/UBERON_0000155,theca cell layer +12.6241151,UBERON:0000443,http://purl.obolibrary.org/obo/UBERON_0000443,left testicular vein +12.6241151,UBERON:0001551,http://purl.obolibrary.org/obo/UBERON_0001551,vein of hindlimb zeugopod +12.6241151,UBERON:0002403,http://purl.obolibrary.org/obo/UBERON_0002403,internal intercostal muscle +12.6241151,UBERON:0004035,http://purl.obolibrary.org/obo/UBERON_0004035,cortical subplate +12.6241151,UBERON:0004118,http://purl.obolibrary.org/obo/UBERON_0004118,vasculature of iris +12.6241151,UBERON:0009950,http://purl.obolibrary.org/obo/UBERON_0009950,olfactory bulb plexiform layer +12.6241151,UBERON:0018614,http://purl.obolibrary.org/obo/UBERON_0018614,permanent lower tooth +12.6241151,UBERON:0018622,http://purl.obolibrary.org/obo/UBERON_0018622,lower canine tooth +12.6241151,UBERON:0018675,http://purl.obolibrary.org/obo/UBERON_0018675,pelvic splanchnic nerve +12.6241151,UBERON:2005259,http://purl.obolibrary.org/obo/UBERON_2005259,continuous capillary +12.6373604,CHEBI:23965,http://purl.obolibrary.org/obo/CHEBI_23965,estradiol +12.6373604,CHEBI:26089,http://purl.obolibrary.org/obo/CHEBI_26089,photosystem-II inhibitor +12.6373604,CHEBI:27958,http://purl.obolibrary.org/obo/CHEBI_27958,cocaine +12.6373604,CHEBI:35555,http://purl.obolibrary.org/obo/CHEBI_35555,mancude organic heteromonocyclic parent +12.6373604,CHEBI:37407,http://purl.obolibrary.org/obo/CHEBI_37407,cyclic ether +12.6373604,CHEBI:50184,http://purl.obolibrary.org/obo/CHEBI_50184,ion transport inhibitor +12.6373604,CHEBI:60248,http://purl.obolibrary.org/obo/CHEBI_60248,nickel ion +12.6373604,DRUGBANK:DB00041,http://purl.obolibrary.org/obo/DRUGBANK_DB00041,none +12.6373604,DRUGBANK:DB00662,http://purl.obolibrary.org/obo/DRUGBANK_DB00662,none +12.6373604,DRUGBANK:DB01160,http://purl.obolibrary.org/obo/DRUGBANK_DB01160,none +12.6373604,DRUGBANK:DB01180,http://purl.obolibrary.org/obo/DRUGBANK_DB01180,none +12.6373604,DRUGBANK:DB02085,http://purl.obolibrary.org/obo/DRUGBANK_DB02085,none +12.6373604,DRUGBANK:DB02821,http://purl.obolibrary.org/obo/DRUGBANK_DB02821,none +12.6373604,DRUGBANK:DB03860,http://purl.obolibrary.org/obo/DRUGBANK_DB03860,none +12.6373604,DRUGBANK:DB05063,http://purl.obolibrary.org/obo/DRUGBANK_DB05063,none +12.6373604,DRUGBANK:DB05197,http://purl.obolibrary.org/obo/DRUGBANK_DB05197,none +12.6373604,DRUGBANK:DB06735,http://purl.obolibrary.org/obo/DRUGBANK_DB06735,none +12.6373604,DRUGBANK:DB09559,http://purl.obolibrary.org/obo/DRUGBANK_DB09559,none +12.6373604,DRUGBANK:DB11655,http://purl.obolibrary.org/obo/DRUGBANK_DB11655,none +12.6373604,DRUGBANK:DB11677,http://purl.obolibrary.org/obo/DRUGBANK_DB11677,none +12.6373604,DRUGBANK:DB11808,http://purl.obolibrary.org/obo/DRUGBANK_DB11808,none +12.6373604,DRUGBANK:DB11816,http://purl.obolibrary.org/obo/DRUGBANK_DB11816,none +12.6373604,DRUGBANK:DB12242,http://purl.obolibrary.org/obo/DRUGBANK_DB12242,none +12.6373604,DRUGBANK:DB12369,http://purl.obolibrary.org/obo/DRUGBANK_DB12369,none +12.6373604,DRUGBANK:DB13461,http://purl.obolibrary.org/obo/DRUGBANK_DB13461,none +12.6373604,DRUGBANK:DB14252,http://purl.obolibrary.org/obo/DRUGBANK_DB14252,none +12.6373604,GO:0003376,http://purl.obolibrary.org/obo/GO_0003376,sphingosine-1-phosphate receptor signaling pathway +12.6373604,GO:0005846,http://purl.obolibrary.org/obo/GO_0005846,nuclear cap binding complex +12.6373604,GO:0006697,http://purl.obolibrary.org/obo/GO_0006697,ecdysone biosynthetic process +12.6373604,GO:0006879,http://purl.obolibrary.org/obo/GO_0006879,cellular iron ion homeostasis +12.6373604,GO:0015822,http://purl.obolibrary.org/obo/GO_0015822,ornithine transport +12.6373604,GO:0018931,http://purl.obolibrary.org/obo/GO_0018931,none +12.6373604,GO:0030202,http://purl.obolibrary.org/obo/GO_0030202,heparin metabolic process +12.6373604,GO:0030446,http://purl.obolibrary.org/obo/GO_0030446,hyphal cell wall +12.6373604,GO:0030500,http://purl.obolibrary.org/obo/GO_0030500,regulation of bone mineralization +12.6373604,GO:0031649,http://purl.obolibrary.org/obo/GO_0031649,heat generation +12.6373604,GO:0034605,http://purl.obolibrary.org/obo/GO_0034605,cellular response to heat +12.6373604,GO:0036079,http://purl.obolibrary.org/obo/GO_0036079,none +12.6373604,GO:0036402,http://purl.obolibrary.org/obo/GO_0036402,proteasome-activating activity +12.6373604,GO:0042286,http://purl.obolibrary.org/obo/GO_0042286,"glutamate-1-semialdehyde 2,1-aminomutase activity" +12.6373604,GO:0046287,http://purl.obolibrary.org/obo/GO_0046287,isoflavonoid metabolic process +12.6373604,GO:0046993,http://purl.obolibrary.org/obo/GO_0046993,"oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond, with oxygen as acceptor" +12.6373604,GO:0051580,http://purl.obolibrary.org/obo/GO_0051580,regulation of neurotransmitter uptake +12.6373604,GO:0060273,http://purl.obolibrary.org/obo/GO_0060273,crying behavior +12.6373604,GO:0071470,http://purl.obolibrary.org/obo/GO_0071470,cellular response to osmotic stress +12.6373604,GO:0072110,http://purl.obolibrary.org/obo/GO_0072110,glomerular mesangial cell proliferation +12.6373604,GO:0072111,http://purl.obolibrary.org/obo/GO_0072111,cell proliferation involved in kidney development +12.6373604,GO:0090420,http://purl.obolibrary.org/obo/GO_0090420,none +12.6373604,GO:1904680,http://purl.obolibrary.org/obo/GO_1904680,peptide transmembrane transporter activity +12.6373604,HP:0002693,http://purl.obolibrary.org/obo/HP_0002693,Abnormality of the skull base +12.6373604,MONDO:0000872,http://purl.obolibrary.org/obo/MONDO_0000872,B-cell childhood acute lymphoblastic leukemia +12.6373604,MONDO:0001065,http://purl.obolibrary.org/obo/MONDO_0001065,supine hypotensive syndrome +12.6373604,MONDO:0001451,http://purl.obolibrary.org/obo/MONDO_0001451,peripheral retinal degeneration +12.6373604,MONDO:0003361,http://purl.obolibrary.org/obo/MONDO_0003361,small intestinal sarcoma +12.6373604,MONDO:0004071,http://purl.obolibrary.org/obo/MONDO_0004071,childhood cerebral astrocytoma +12.6373604,MONDO:0004112,http://purl.obolibrary.org/obo/MONDO_0004112,radiation cystitis +12.6373604,MONDO:0005678,http://purl.obolibrary.org/obo/MONDO_0005678,bovine respiratory disease complex +12.6373604,MONDO:0006634,http://purl.obolibrary.org/obo/MONDO_0006634,pituitary gland acidophil adenoma +12.6373604,MONDO:0006681,http://purl.obolibrary.org/obo/MONDO_0006681,Borrelia infectious disease +12.6373604,MONDO:0007221,http://purl.obolibrary.org/obo/MONDO_0007221,brachydactyly type C +12.6373604,MONDO:0009257,http://purl.obolibrary.org/obo/MONDO_0009257,galactose epimerase deficiency +12.6373604,MONDO:0010162,http://purl.obolibrary.org/obo/MONDO_0010162,tyrosinemia type III +12.6373604,MONDO:0011273,http://purl.obolibrary.org/obo/MONDO_0011273,H syndrome +12.6373604,MONDO:0011330,http://purl.obolibrary.org/obo/MONDO_0011330,spinocerebellar ataxia type 10 +12.6373604,MONDO:0016281,http://purl.obolibrary.org/obo/MONDO_0016281,"46,XX ovotesticular disorder of sex development" +12.6373604,MONDO:0016489,http://purl.obolibrary.org/obo/MONDO_0016489,delta-beta-thalassemia +12.6373604,MONDO:0016875,http://purl.obolibrary.org/obo/MONDO_0016875,partial deletion of chromosome 10 +12.6373604,MONDO:0019436,http://purl.obolibrary.org/obo/MONDO_0019436,psoriasis-related juvenile idiopathic arthritis +12.6373604,MONDO:0019633,http://purl.obolibrary.org/obo/MONDO_0019633,relapsing fever +12.6373604,MONDO:0020365,http://purl.obolibrary.org/obo/MONDO_0020365,congenital hereditary endothelial dystrophy type I +12.6373604,MONDO:0020815,http://purl.obolibrary.org/obo/MONDO_0020815,dentigerous cyst +12.6373604,NCBITaxon:11595,http://purl.obolibrary.org/obo/NCBITaxon_11595,none +12.6373604,NCBITaxon:11612,http://purl.obolibrary.org/obo/NCBITaxon_11612,none +12.6373604,NCBITaxon:12042,http://purl.obolibrary.org/obo/NCBITaxon_12042,none +12.6373604,NCBITaxon:12228,http://purl.obolibrary.org/obo/NCBITaxon_12228,none +12.6373604,NCBITaxon:12315,http://purl.obolibrary.org/obo/NCBITaxon_12315,none +12.6373604,NCBITaxon:1933294,http://purl.obolibrary.org/obo/NCBITaxon_1933294,none +12.6373604,NCBITaxon:1933309,http://purl.obolibrary.org/obo/NCBITaxon_1933309,Oropouche orthobunyavirus +12.6373604,NCBITaxon:2560532,http://purl.obolibrary.org/obo/NCBITaxon_2560532,none +12.6373604,NCBITaxon:27292,http://purl.obolibrary.org/obo/NCBITaxon_27292,none +12.6373604,NCBITaxon:28873,http://purl.obolibrary.org/obo/NCBITaxon_28873,none +12.6373604,NCBITaxon:3337,http://purl.obolibrary.org/obo/NCBITaxon_3337,none +12.6373604,NCBITaxon:36513,http://purl.obolibrary.org/obo/NCBITaxon_36513,none +12.6373604,NCBITaxon:57118,http://purl.obolibrary.org/obo/NCBITaxon_57118,none +12.6373604,NCBITaxon:68336,http://purl.obolibrary.org/obo/NCBITaxon_68336,Bacteroidetes/Chlorobi group +12.6373604,NCBITaxon:976,http://purl.obolibrary.org/obo/NCBITaxon_976,Bacteroidetes +12.6373604,PR:000003805,http://purl.obolibrary.org/obo/PR_000003805,AF4/FMR2 family member 3 +12.6373604,PR:000003834,http://purl.obolibrary.org/obo/PR_000003834,1-acyl-sn-glycerol-3-phosphate acyltransferase alpha +12.6373604,PR:000003856,http://purl.obolibrary.org/obo/PR_000003856,neuroblast differentiation-associated protein AHNAK +12.6373604,PR:000004113,http://purl.obolibrary.org/obo/PR_000004113,AP-4 complex subunit mu-1 +12.6373604,PR:000004243,http://purl.obolibrary.org/obo/PR_000004243,Rho GDP-dissociation inhibitor 2 +12.6373604,PR:000004261,http://purl.obolibrary.org/obo/PR_000004261,Rho guanine nucleotide exchange factor 9 +12.6373604,PR:000004924,http://purl.obolibrary.org/obo/PR_000004924,carbonic anhydrase 7 +12.6373604,PR:000004988,http://purl.obolibrary.org/obo/PR_000004988,calcium/calmodulin-dependent protein kinase type 1 +12.6373604,PR:000004993,http://purl.obolibrary.org/obo/PR_000004993,calcium/calmodulin-dependent protein kinase type IV +12.6373604,PR:000005652,http://purl.obolibrary.org/obo/PR_000005652,CCR4-NOT transcription complex subunit 4 +12.6373604,PR:000006739,http://purl.obolibrary.org/obo/PR_000006739,dual specificity protein phosphatase 12 +12.6373604,PR:000007233,http://purl.obolibrary.org/obo/PR_000007233,limbin +12.6373604,PR:000007330,http://purl.obolibrary.org/obo/PR_000007330,Fanconi anemia group A protein +12.6373604,PR:000007949,http://purl.obolibrary.org/obo/PR_000007949,GDNF family receptor alpha-2 +12.6373604,PR:000007957,http://purl.obolibrary.org/obo/PR_000007957,gamma-glutamyl hydrolase +12.6373604,PR:000008035,http://purl.obolibrary.org/obo/PR_000008035,zinc finger protein GLIS2 +12.6373604,PR:000008565,http://purl.obolibrary.org/obo/PR_000008565,huntingtin-interacting protein 1-related protein +12.6373604,PR:000008568,http://purl.obolibrary.org/obo/PR_000008568,homeodomain-interacting protein kinase 3 +12.6373604,PR:000008715,http://purl.obolibrary.org/obo/PR_000008715,homeobox protein Hox-C9 +12.6373604,PR:000008745,http://purl.obolibrary.org/obo/PR_000008745,HRAS-like suppressor +12.6373604,PR:000009357,http://purl.obolibrary.org/obo/PR_000009357,krueppel-like factor 13 +12.6373604,PR:000009759,http://purl.obolibrary.org/obo/PR_000009759,prolyl 3-hydroxylase 1 +12.6373604,PR:000010059,http://purl.obolibrary.org/obo/PR_000010059,melanoma-associated antigen 4 +12.6373604,PR:000010439,http://purl.obolibrary.org/obo/PR_000010439,myeloid leukemia factor 1 +12.6373604,PR:000010759,http://purl.obolibrary.org/obo/PR_000010759,mucin-13 +12.6373604,PR:000010828,http://purl.obolibrary.org/obo/PR_000010828,myosin-4 +12.6373604,PR:000010846,http://purl.obolibrary.org/obo/PR_000010846,"myosin light chain kinase 2, skeletal/cardiac muscle" +12.6373604,PR:000011096,http://purl.obolibrary.org/obo/PR_000011096,"NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial" +12.6373604,PR:000013906,http://purl.obolibrary.org/obo/PR_000013906,replication factor C subunit 2 +12.6373604,PR:000015042,http://purl.obolibrary.org/obo/PR_000015042,anion exchange transporter +12.6373604,PR:000015088,http://purl.obolibrary.org/obo/PR_000015088,sodium-dependent phosphate transport protein 2C +12.6373604,PR:000015499,http://purl.obolibrary.org/obo/PR_000015499,protein SPATIAL +12.6373604,PR:000015827,http://purl.obolibrary.org/obo/PR_000015827,formylglycine-generating enzyme +12.6373604,PR:000016840,http://purl.obolibrary.org/obo/PR_000016840,tumor suppressor candidate 3 +12.6373604,PR:000016956,http://purl.obolibrary.org/obo/PR_000016956,ubiquitin-like modifier-activating enzyme 7 +12.6373604,PR:000017398,http://purl.obolibrary.org/obo/PR_000017398,methylosome protein 50 +12.6373604,PR:000022396,http://purl.obolibrary.org/obo/PR_000022396,none +12.6373604,PR:000022478,http://purl.obolibrary.org/obo/PR_000022478,none +12.6373604,PR:000022998,http://purl.obolibrary.org/obo/PR_000022998,none +12.6373604,PR:000023549,http://purl.obolibrary.org/obo/PR_000023549,none +12.6373604,PR:000023657,http://purl.obolibrary.org/obo/PR_000023657,none +12.6373604,PR:000023863,http://purl.obolibrary.org/obo/PR_000023863,none +12.6373604,PR:000029241,http://purl.obolibrary.org/obo/PR_000029241,none +12.6373604,PR:000029729,http://purl.obolibrary.org/obo/PR_000029729,rRNA methyltransferase 3 +12.6373604,PR:000032556,http://purl.obolibrary.org/obo/PR_000032556,4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase FUT6 +12.6373604,PR:000033388,http://purl.obolibrary.org/obo/PR_000033388,none +12.6373604,PR:000035980,http://purl.obolibrary.org/obo/PR_000035980,none +12.6373604,PR:O57374,http://purl.obolibrary.org/obo/PR_O57374,none +12.6373604,PR:O65621,http://purl.obolibrary.org/obo/PR_O65621,none +12.6373604,PR:P19070,http://purl.obolibrary.org/obo/PR_P19070,none +12.6373604,PR:P47932,http://purl.obolibrary.org/obo/PR_P47932,none +12.6373604,PR:Q08214,http://purl.obolibrary.org/obo/PR_Q08214,none +12.6373604,PR:Q42472,http://purl.obolibrary.org/obo/PR_Q42472,none +12.6373604,PR:Q6EVK6,http://purl.obolibrary.org/obo/PR_Q6EVK6,none +12.6373604,PR:Q9FLW9,http://purl.obolibrary.org/obo/PR_Q9FLW9,none +12.6373604,PR:Q9M5P2,http://purl.obolibrary.org/obo/PR_Q9M5P2,none +12.6373604,PR:Q9PWM6,http://purl.obolibrary.org/obo/PR_Q9PWM6,none +12.6373604,PR:Q9SVA6,http://purl.obolibrary.org/obo/PR_Q9SVA6,none +12.6373604,UBERON:0000370,http://purl.obolibrary.org/obo/UBERON_0000370,adductor magnus +12.6373604,UBERON:0000711,http://purl.obolibrary.org/obo/UBERON_0000711,splenius capitis +12.6373604,UBERON:0004467,http://purl.obolibrary.org/obo/UBERON_0004467,musculature of pharynx +12.6373604,UBERON:0005381,http://purl.obolibrary.org/obo/UBERON_0005381,dentate gyrus granule cell layer +12.6373604,UBERON:0008940,http://purl.obolibrary.org/obo/UBERON_0008940,parietal ganglion +12.6373604,UBERON:0009585,http://purl.obolibrary.org/obo/UBERON_0009585,interdigital region mesenchyme +12.6373604,UBERON:0013482,http://purl.obolibrary.org/obo/UBERON_0013482,crypt of Lieberkuhn of duodenum +12.6373604,UBERON:0013621,http://purl.obolibrary.org/obo/UBERON_0013621,lower secondary molar tooth +12.6373604,UBERON:0013648,http://purl.obolibrary.org/obo/UBERON_0013648,masseteric artery +12.6373604,UBERON:0013701,http://purl.obolibrary.org/obo/UBERON_0013701,main body axis +12.6373604,UBERON:0015873,http://purl.obolibrary.org/obo/UBERON_0015873,heel skin +12.6507834,CHEBI:28112,http://purl.obolibrary.org/obo/CHEBI_28112,nickel atom +12.6507834,CHEBI:31577,http://purl.obolibrary.org/obo/CHEBI_31577,ethylenediamine derivative +12.6507834,CHEBI:33458,http://purl.obolibrary.org/obo/CHEBI_33458,nitrogen oxoanion +12.6507834,CHEBI:36841,http://purl.obolibrary.org/obo/CHEBI_36841,11-hydroxy steroid +12.6507834,CHEBI:60600,http://purl.obolibrary.org/obo/CHEBI_60600,amide fungicide +12.6507834,CHEBI:63473,http://purl.obolibrary.org/obo/CHEBI_63473,aromatic amino-acid anion +12.6507834,CHEBI:63895,http://purl.obolibrary.org/obo/CHEBI_63895,ionic liquid +12.6507834,CHEBI:87012,http://purl.obolibrary.org/obo/CHEBI_87012,amide antifungal agent +12.6507834,CHEBI:9574,http://purl.obolibrary.org/obo/CHEBI_9574,Thrombin +12.6507834,CL:1000414,http://purl.obolibrary.org/obo/CL_1000414,endothelial cell of venule +12.6507834,CL:1000504,http://purl.obolibrary.org/obo/CL_1000504,kidney medulla cell +12.6507834,DRUGBANK:DB00777,http://purl.obolibrary.org/obo/DRUGBANK_DB00777,none +12.6507834,DRUGBANK:DB02590,http://purl.obolibrary.org/obo/DRUGBANK_DB02590,none +12.6507834,DRUGBANK:DB03867,http://purl.obolibrary.org/obo/DRUGBANK_DB03867,none +12.6507834,DRUGBANK:DB03937,http://purl.obolibrary.org/obo/DRUGBANK_DB03937,none +12.6507834,DRUGBANK:DB04933,http://purl.obolibrary.org/obo/DRUGBANK_DB04933,none +12.6507834,DRUGBANK:DB04961,http://purl.obolibrary.org/obo/DRUGBANK_DB04961,none +12.6507834,DRUGBANK:DB06469,http://purl.obolibrary.org/obo/DRUGBANK_DB06469,none +12.6507834,DRUGBANK:DB09042,http://purl.obolibrary.org/obo/DRUGBANK_DB09042,none +12.6507834,DRUGBANK:DB11504,http://purl.obolibrary.org/obo/DRUGBANK_DB11504,none +12.6507834,DRUGBANK:DB11621,http://purl.obolibrary.org/obo/DRUGBANK_DB11621,none +12.6507834,DRUGBANK:DB13405,http://purl.obolibrary.org/obo/DRUGBANK_DB13405,none +12.6507834,DRUGBANK:DB13645,http://purl.obolibrary.org/obo/DRUGBANK_DB13645,none +12.6507834,DRUGBANK:DB14107,http://purl.obolibrary.org/obo/DRUGBANK_DB14107,none +12.6507834,DRUGBANK:DB14345,http://purl.obolibrary.org/obo/DRUGBANK_DB14345,none +12.6507834,DRUGBANK:DB14879,http://purl.obolibrary.org/obo/DRUGBANK_DB14879,none +12.6507834,GO:0004163,http://purl.obolibrary.org/obo/GO_0004163,diphosphomevalonate decarboxylase activity +12.6507834,GO:0004813,http://purl.obolibrary.org/obo/GO_0004813,alanine-tRNA ligase activity +12.6507834,GO:0006004,http://purl.obolibrary.org/obo/GO_0006004,fucose metabolic process +12.6507834,GO:0009508,http://purl.obolibrary.org/obo/GO_0009508,plastid chromosome +12.6507834,GO:0014033,http://purl.obolibrary.org/obo/GO_0014033,neural crest cell differentiation +12.6507834,GO:0017113,http://purl.obolibrary.org/obo/GO_0017113,dihydropyrimidine dehydrogenase (NADP+) activity +12.6507834,GO:0019299,http://purl.obolibrary.org/obo/GO_0019299,rhamnose metabolic process +12.6507834,GO:0019350,http://purl.obolibrary.org/obo/GO_0019350,teichoic acid biosynthetic process +12.6507834,GO:0023035,http://purl.obolibrary.org/obo/GO_0023035,CD40 signaling pathway +12.6507834,GO:0030011,http://purl.obolibrary.org/obo/GO_0030011,maintenance of cell polarity +12.6507834,GO:0031105,http://purl.obolibrary.org/obo/GO_0031105,septin complex +12.6507834,GO:0032341,http://purl.obolibrary.org/obo/GO_0032341,aldosterone metabolic process +12.6507834,GO:0035299,http://purl.obolibrary.org/obo/GO_0035299,inositol pentakisphosphate 2-kinase activity +12.6507834,GO:0035962,http://purl.obolibrary.org/obo/GO_0035962,response to interleukin-13 +12.6507834,GO:0035985,http://purl.obolibrary.org/obo/GO_0035985,senescence-associated heterochromatin focus +12.6507834,GO:0046295,http://purl.obolibrary.org/obo/GO_0046295,glycolate biosynthetic process +12.6507834,GO:0048103,http://purl.obolibrary.org/obo/GO_0048103,somatic stem cell division +12.6507834,GO:0050807,http://purl.obolibrary.org/obo/GO_0050807,regulation of synapse organization +12.6507834,GO:0051081,http://purl.obolibrary.org/obo/GO_0051081,nuclear membrane disassembly +12.6507834,GO:0051233,http://purl.obolibrary.org/obo/GO_0051233,spindle midzone +12.6507834,GO:1901600,http://purl.obolibrary.org/obo/GO_1901600,strigolactone metabolic process +12.6507834,GO:1901815,http://purl.obolibrary.org/obo/GO_1901815,astaxanthin biosynthetic process +12.6507834,GO:1990798,http://purl.obolibrary.org/obo/GO_1990798,pancreas regeneration +12.6507834,HP:0000123,http://purl.obolibrary.org/obo/HP_0000123,Nephritis +12.6507834,HP:0000932,http://purl.obolibrary.org/obo/HP_0000932,Abnormal posterior cranial fossa morphology +12.6507834,HP:0001376,http://purl.obolibrary.org/obo/HP_0001376,Limitation of joint mobility +12.6507834,MONDO:0000935,http://purl.obolibrary.org/obo/MONDO_0000935,larynx squamous papilloma +12.6507834,MONDO:0003352,http://purl.obolibrary.org/obo/MONDO_0003352,colon sarcoma +12.6507834,MONDO:0003562,http://purl.obolibrary.org/obo/MONDO_0003562,rete testis neoplasm +12.6507834,MONDO:0006579,http://purl.obolibrary.org/obo/MONDO_0006579,melanoacanthoma +12.6507834,MONDO:0006732,http://purl.obolibrary.org/obo/MONDO_0006732,drug-induced dyskinesia +12.6507834,MONDO:0007800,http://purl.obolibrary.org/obo/MONDO_0007800,chromosome 18p deletion syndrome +12.6507834,MONDO:0008214,http://purl.obolibrary.org/obo/MONDO_0008214,Pelger-Huet anomaly +12.6507834,MONDO:0009818,http://purl.obolibrary.org/obo/MONDO_0009818,autosomal recessive osteopetrosis 3 +12.6507834,MONDO:0015604,http://purl.obolibrary.org/obo/MONDO_0015604,middle ear anomaly +12.6507834,MONDO:0016892,http://purl.obolibrary.org/obo/MONDO_0016892,partial deletion of the short arm of chromosome 10 +12.6507834,MONDO:0016896,http://purl.obolibrary.org/obo/MONDO_0016896,partial deletion of the short arm of chromosome 18 +12.6507834,MONDO:0018808,http://purl.obolibrary.org/obo/MONDO_0018808,Caroli syndrome +12.6507834,MONDO:0020519,http://purl.obolibrary.org/obo/MONDO_0020519,hand-Schuller-Christian disease +12.6507834,MONDO:0021517,http://purl.obolibrary.org/obo/MONDO_0021517,benign neoplasm of trachea +12.6507834,MONDO:0022560,http://purl.obolibrary.org/obo/MONDO_0022560,benign metastasizing leiomyoma +12.6507834,NCBITaxon:10792,http://purl.obolibrary.org/obo/NCBITaxon_10792,Mink enteritis virus +12.6507834,NCBITaxon:1224679,http://purl.obolibrary.org/obo/NCBITaxon_1224679,Diphyllobothriidea +12.6507834,NCBITaxon:208898,http://purl.obolibrary.org/obo/NCBITaxon_208898,none +12.6507834,NCBITaxon:223347,http://purl.obolibrary.org/obo/NCBITaxon_223347,none +12.6507834,NCBITaxon:28738,http://purl.obolibrary.org/obo/NCBITaxon_28738,none +12.6507834,NCBITaxon:28843,http://purl.obolibrary.org/obo/NCBITaxon_28843,Diphyllobothriidae +12.6507834,NCBITaxon:351073,http://purl.obolibrary.org/obo/NCBITaxon_351073,none +12.6507834,NCBITaxon:44052,http://purl.obolibrary.org/obo/NCBITaxon_44052,none +12.6507834,NCBITaxon:71239,http://purl.obolibrary.org/obo/NCBITaxon_71239,none +12.6507834,NCBITaxon:7370,http://purl.obolibrary.org/obo/NCBITaxon_7370,none +12.6507834,PR:000001109,http://purl.obolibrary.org/obo/PR_000001109,G-protein coupled receptor 183 +12.6507834,PR:000001437,http://purl.obolibrary.org/obo/PR_000001437,RPE-retinal G protein-coupled receptor +12.6507834,PR:000001649,http://purl.obolibrary.org/obo/PR_000001649,hydroxycarboxylic acid receptor 1 +12.6507834,PR:000001715,http://purl.obolibrary.org/obo/PR_000001715,trace amine-associated receptor 6 +12.6507834,PR:000001986,http://purl.obolibrary.org/obo/PR_000001986,C-C motif chemokine 14 +12.6507834,PR:000003331,http://purl.obolibrary.org/obo/PR_000003331,collagen alpha-2(V) chain +12.6507834,PR:000003571,http://purl.obolibrary.org/obo/PR_000003571,ATP-binding cassette sub-family G member 4 +12.6507834,PR:000003881,http://purl.obolibrary.org/obo/PR_000003881,adenylate kinase isoenzyme 5 +12.6507834,PR:000004746,http://purl.obolibrary.org/obo/PR_000004746,protein bicaudal D homolog 2 +12.6507834,PR:000004777,http://purl.obolibrary.org/obo/PR_000004777,zinc finger protein basonuclin-1 +12.6507834,PR:000004862,http://purl.obolibrary.org/obo/PR_000004862,bystin +12.6507834,PR:000005223,http://purl.obolibrary.org/obo/PR_000005223,sororin +12.6507834,PR:000005856,http://purl.obolibrary.org/obo/PR_000005856,cyclic AMP-responsive element-binding protein 3-like protein 1 +12.6507834,PR:000006027,http://purl.obolibrary.org/obo/PR_000006027,cathepsin F +12.6507834,PR:000006313,http://purl.obolibrary.org/obo/PR_000006313,DNA cross-link repair 1A protein +12.6507834,PR:000007482,http://purl.obolibrary.org/obo/PR_000007482,fibroblast growth factor 12 +12.6507834,PR:000007667,http://purl.obolibrary.org/obo/PR_000007667,FERM domain-containing protein 7 +12.6507834,PR:000007854,http://purl.obolibrary.org/obo/PR_000007854,growth arrest-specific protein 7 +12.6507834,PR:000008006,http://purl.obolibrary.org/obo/PR_000008006,gap junction gamma-3 protein +12.6507834,PR:000008281,http://purl.obolibrary.org/obo/PR_000008281,gasdermin-B +12.6507834,PR:000009288,http://purl.obolibrary.org/obo/PR_000009288,kinesin-like protein KIF14 +12.6507834,PR:000010189,http://purl.obolibrary.org/obo/PR_000010189,MAP/microtubule affinity-regulating kinase 4 +12.6507834,PR:000010308,http://purl.obolibrary.org/obo/PR_000010308,mediator of RNA polymerase II transcription subunit 9 +12.6507834,PR:000010365,http://purl.obolibrary.org/obo/PR_000010365,microfibrillar-associated protein 5 +12.6507834,PR:000011257,http://purl.obolibrary.org/obo/PR_000011257,"neuroligin-4, X-linked" +12.6507834,PR:000011448,http://purl.obolibrary.org/obo/PR_000011448,E3 SUMO-protein ligase NSE2 +12.6507834,PR:000011531,http://purl.obolibrary.org/obo/PR_000011531,nucleolar and spindle-associated protein 1 +12.6507834,PR:000012260,http://purl.obolibrary.org/obo/PR_000012260,pannexin-2 +12.6507834,PR:000013406,http://purl.obolibrary.org/obo/PR_000013406,proline/serine-rich coiled-coil protein 1 +12.6507834,PR:000013483,http://purl.obolibrary.org/obo/PR_000013483,caveolae-associated protein 1 +12.6507834,PR:000013974,http://purl.obolibrary.org/obo/PR_000013974,ammonium transporter Rh type C +12.6507834,PR:000014338,http://purl.obolibrary.org/obo/PR_000014338,RNA 3'-terminal phosphate cyclase +12.6507834,PR:000016346,http://purl.obolibrary.org/obo/PR_000016346,mitochondrial import inner membrane translocase subunit Tim22 +12.6507834,PR:000016384,http://purl.obolibrary.org/obo/PR_000016384,T-cell leukemia homeobox protein 2 +12.6507834,PR:000016981,http://purl.obolibrary.org/obo/PR_000016981,ubiquitin/ISG15-conjugating enzyme E2 L6 +12.6507834,PR:000017146,http://purl.obolibrary.org/obo/PR_000017146,ubiquitin carboxyl-terminal hydrolase 10 +12.6507834,PR:000017325,http://purl.obolibrary.org/obo/PR_000017325,charged multivesicular body protein 3 +12.6507834,PR:000017856,http://purl.obolibrary.org/obo/PR_000017856,zinc finger protein 382 +12.6507834,PR:000022165,http://purl.obolibrary.org/obo/PR_000022165,none +12.6507834,PR:000022697,http://purl.obolibrary.org/obo/PR_000022697,ribosome-recycling factor +12.6507834,PR:000022771,http://purl.obolibrary.org/obo/PR_000022771,none +12.6507834,PR:000023082,http://purl.obolibrary.org/obo/PR_000023082,none +12.6507834,PR:000023419,http://purl.obolibrary.org/obo/PR_000023419,none +12.6507834,PR:000030516,http://purl.obolibrary.org/obo/PR_000030516,monoacylglycerol lipase ABHD6 +12.6507834,PR:000030551,http://purl.obolibrary.org/obo/PR_000030551,cap-specific mRNA (nucleoside-2'-O-)-methyltransferase 2 +12.6507834,PR:000032211,http://purl.obolibrary.org/obo/PR_000032211,DNA dC->dU-editing enzyme APOBEC-3C +12.6507834,PR:F4I096,http://purl.obolibrary.org/obo/PR_F4I096,none +12.6507834,PR:F4IDU4,http://purl.obolibrary.org/obo/PR_F4IDU4,none +12.6507834,PR:P04630,http://purl.obolibrary.org/obo/PR_P04630,none +12.6507834,PR:P38086,http://purl.obolibrary.org/obo/PR_P38086,none +12.6507834,PR:Q04683,http://purl.obolibrary.org/obo/PR_Q04683,none +12.6507834,PR:Q23887,http://purl.obolibrary.org/obo/PR_Q23887,none +12.6507834,PR:Q38814,http://purl.obolibrary.org/obo/PR_Q38814,none +12.6507834,PR:Q39030,http://purl.obolibrary.org/obo/PR_Q39030,none +12.6507834,PR:Q43385,http://purl.obolibrary.org/obo/PR_Q43385,none +12.6507834,PR:Q8UWM3,http://purl.obolibrary.org/obo/PR_Q8UWM3,none +12.6507834,PR:Q9LT31,http://purl.obolibrary.org/obo/PR_Q9LT31,none +12.6507834,PR:Q9SJE1,http://purl.obolibrary.org/obo/PR_Q9SJE1,none +12.6507834,UBERON:0001169,http://purl.obolibrary.org/obo/UBERON_0001169,wall of large intestine +12.6507834,UBERON:0001287,http://purl.obolibrary.org/obo/UBERON_0001287,proximal convoluted tubule +12.6507834,UBERON:0002120,http://purl.obolibrary.org/obo/UBERON_0002120,pronephros +12.6507834,UBERON:0002230,http://purl.obolibrary.org/obo/UBERON_0002230,head of rib +12.6507834,UBERON:0003822,http://purl.obolibrary.org/obo/UBERON_0003822,forelimb stylopod +12.6507834,UBERON:0003939,http://purl.obolibrary.org/obo/UBERON_0003939,transverse gyrus of Heschl +12.6507834,UBERON:0004630,http://purl.obolibrary.org/obo/UBERON_0004630,thoracic vertebra 5 +12.6507834,UBERON:0011185,http://purl.obolibrary.org/obo/UBERON_0011185,gastrointestinal sphincter +12.6507834,UBERON:0013127,http://purl.obolibrary.org/obo/UBERON_0013127,pulmonary venous system +12.6507834,UBERON:0013236,http://purl.obolibrary.org/obo/UBERON_0013236,ventral trunk +12.6507834,UBERON:0014639,http://purl.obolibrary.org/obo/UBERON_0014639,frontal sulcus +12.664389,CHEBI:17632,http://purl.obolibrary.org/obo/CHEBI_17632,nitrate +12.664389,CHEBI:31624,http://purl.obolibrary.org/obo/CHEBI_31624,fluorescein (lactone form) +12.664389,CHEBI:32504,http://purl.obolibrary.org/obo/CHEBI_32504,phenylalaninate +12.664389,CHEBI:36885,http://purl.obolibrary.org/obo/CHEBI_36885,20-oxo steroid +12.664389,CHEBI:50218,http://purl.obolibrary.org/obo/CHEBI_50218,EC 3.1.4.* (phosphoric diester hydrolase) inhibitor +12.664389,CHEBI:68844,http://purl.obolibrary.org/obo/CHEBI_68844,phosphodiesterase IV inhibitor +12.664389,CHEBI:77758,http://purl.obolibrary.org/obo/CHEBI_77758,"EC 3.1.4.53 (3',5'-cyclic-AMP phosphodiesterase) inhibitor" +12.664389,DRUGBANK:DB01550,http://purl.obolibrary.org/obo/DRUGBANK_DB01550,none +12.664389,DRUGBANK:DB05368,http://purl.obolibrary.org/obo/DRUGBANK_DB05368,none +12.664389,DRUGBANK:DB10875,http://purl.obolibrary.org/obo/DRUGBANK_DB10875,none +12.664389,DRUGBANK:DB11367,http://purl.obolibrary.org/obo/DRUGBANK_DB11367,none +12.664389,DRUGBANK:DB12329,http://purl.obolibrary.org/obo/DRUGBANK_DB12329,none +12.664389,DRUGBANK:DB12497,http://purl.obolibrary.org/obo/DRUGBANK_DB12497,none +12.664389,DRUGBANK:DB12827,http://purl.obolibrary.org/obo/DRUGBANK_DB12827,none +12.664389,DRUGBANK:DB13056,http://purl.obolibrary.org/obo/DRUGBANK_DB13056,none +12.664389,DRUGBANK:DB13211,http://purl.obolibrary.org/obo/DRUGBANK_DB13211,none +12.664389,DRUGBANK:DB13348,http://purl.obolibrary.org/obo/DRUGBANK_DB13348,none +12.664389,DRUGBANK:DB13464,http://purl.obolibrary.org/obo/DRUGBANK_DB13464,none +12.664389,DRUGBANK:DB13500,http://purl.obolibrary.org/obo/DRUGBANK_DB13500,none +12.664389,DRUGBANK:DB13544,http://purl.obolibrary.org/obo/DRUGBANK_DB13544,none +12.664389,DRUGBANK:DB13753,http://purl.obolibrary.org/obo/DRUGBANK_DB13753,none +12.664389,DRUGBANK:DB14140,http://purl.obolibrary.org/obo/DRUGBANK_DB14140,none +12.664389,DRUGBANK:DB15815,http://purl.obolibrary.org/obo/DRUGBANK_DB15815,none +12.664389,GO:0000262,http://purl.obolibrary.org/obo/GO_0000262,mitochondrial chromosome +12.664389,GO:0000828,http://purl.obolibrary.org/obo/GO_0000828,inositol hexakisphosphate kinase activity +12.664389,GO:0003986,http://purl.obolibrary.org/obo/GO_0003986,acetyl-CoA hydrolase activity +12.664389,GO:0004057,http://purl.obolibrary.org/obo/GO_0004057,arginyltransferase activity +12.664389,GO:0004619,http://purl.obolibrary.org/obo/GO_0004619,phosphoglycerate mutase activity +12.664389,GO:0004663,http://purl.obolibrary.org/obo/GO_0004663,Rab geranylgeranyltransferase activity +12.664389,GO:0008255,http://purl.obolibrary.org/obo/GO_0008255,ecdysis-triggering hormone activity +12.664389,GO:0008953,http://purl.obolibrary.org/obo/GO_0008953,penicillin amidase activity +12.664389,GO:0009706,http://purl.obolibrary.org/obo/GO_0009706,chloroplast inner membrane +12.664389,GO:0009804,http://purl.obolibrary.org/obo/GO_0009804,coumarin metabolic process +12.664389,GO:0010447,http://purl.obolibrary.org/obo/GO_0010447,response to acidic pH +12.664389,GO:0015866,http://purl.obolibrary.org/obo/GO_0015866,ADP transport +12.664389,GO:0018884,http://purl.obolibrary.org/obo/GO_0018884,carbazole metabolic process +12.664389,GO:0019229,http://purl.obolibrary.org/obo/GO_0019229,regulation of vasoconstriction +12.664389,GO:0021532,http://purl.obolibrary.org/obo/GO_0021532,neural tube patterning +12.664389,GO:0033623,http://purl.obolibrary.org/obo/GO_0033623,regulation of integrin activation +12.664389,GO:0034134,http://purl.obolibrary.org/obo/GO_0034134,toll-like receptor 2 signaling pathway +12.664389,GO:0042160,http://purl.obolibrary.org/obo/GO_0042160,lipoprotein modification +12.664389,GO:0042807,http://purl.obolibrary.org/obo/GO_0042807,central vacuole +12.664389,GO:0043649,http://purl.obolibrary.org/obo/GO_0043649,dicarboxylic acid catabolic process +12.664389,GO:0043901,http://purl.obolibrary.org/obo/GO_0043901,none +12.664389,GO:0044743,http://purl.obolibrary.org/obo/GO_0044743,protein transmembrane import into intracellular organelle +12.664389,GO:0045604,http://purl.obolibrary.org/obo/GO_0045604,regulation of epidermal cell differentiation +12.664389,GO:0046723,http://purl.obolibrary.org/obo/GO_0046723,malic acid secretion +12.664389,GO:0050919,http://purl.obolibrary.org/obo/GO_0050919,negative chemotaxis +12.664389,GO:0060356,http://purl.obolibrary.org/obo/GO_0060356,none +12.664389,GO:0061582,http://purl.obolibrary.org/obo/GO_0061582,intestinal epithelial cell migration +12.664389,GO:0070453,http://purl.obolibrary.org/obo/GO_0070453,regulation of heme biosynthetic process +12.664389,GO:0071875,http://purl.obolibrary.org/obo/GO_0071875,adrenergic receptor signaling pathway +12.664389,GO:0097128,http://purl.obolibrary.org/obo/GO_0097128,cyclin D1-CDK4 complex +12.664389,GO:1901115,http://purl.obolibrary.org/obo/GO_1901115,erythromycin biosynthetic process +12.664389,GO:2000147,http://purl.obolibrary.org/obo/GO_2000147,positive regulation of cell motility +12.664389,HP:0000970,http://purl.obolibrary.org/obo/HP_0000970,Anhidrosis +12.664389,HP:0001959,http://purl.obolibrary.org/obo/HP_0001959,Polydipsia +12.664389,HP:0009755,http://purl.obolibrary.org/obo/HP_0009755,Ankyloblepharon +12.664389,HP:0030082,http://purl.obolibrary.org/obo/HP_0030082,Abnormal drinking behavior +12.664389,HP:0040202,http://purl.obolibrary.org/obo/HP_0040202,Abnormal consumption behavior +12.664389,MONDO:0001468,http://purl.obolibrary.org/obo/MONDO_0001468,synovial plica syndrome +12.664389,MONDO:0005677,http://purl.obolibrary.org/obo/MONDO_0005677,Rickettsia conorii infectious disease +12.664389,MONDO:0006187,http://purl.obolibrary.org/obo/MONDO_0006187,duodenal villous adenoma +12.664389,MONDO:0006304,http://purl.obolibrary.org/obo/MONDO_0006304,minor salivary gland adenocarcinoma +12.664389,MONDO:0007797,http://purl.obolibrary.org/obo/MONDO_0007797,hypoparathyroidism-deafness-renal disease syndrome +12.664389,MONDO:0007877,http://purl.obolibrary.org/obo/MONDO_0007877,laryngeal adductor paralysis +12.664389,MONDO:0009212,http://purl.obolibrary.org/obo/MONDO_0009212,congenital factor X deficiency +12.664389,MONDO:0009835,http://purl.obolibrary.org/obo/MONDO_0009835,subacute sclerosing panencephalitis +12.664389,MONDO:0012455,http://purl.obolibrary.org/obo/MONDO_0012455,Kleefstra syndrome +12.664389,MONDO:0012669,http://purl.obolibrary.org/obo/MONDO_0012669,Legius syndrome +12.664389,MONDO:0015609,http://purl.obolibrary.org/obo/MONDO_0015609,advanced sleep phase syndrome +12.664389,MONDO:0017139,http://purl.obolibrary.org/obo/MONDO_0017139,oromandibular-limb hypogenesis syndrome +12.664389,MONDO:0019176,http://purl.obolibrary.org/obo/MONDO_0019176,trichorhinophalangeal syndrome type I or III +12.664389,MONDO:0030502,http://purl.obolibrary.org/obo/MONDO_0030502,tetrasomy +12.664389,NCBITaxon:40142,http://purl.obolibrary.org/obo/NCBITaxon_40142,none +12.664389,NCBITaxon:48384,http://purl.obolibrary.org/obo/NCBITaxon_48384,none +12.664389,NCBITaxon:49444,http://purl.obolibrary.org/obo/NCBITaxon_49444,none +12.664389,NCBITaxon:675845,http://purl.obolibrary.org/obo/NCBITaxon_675845,none +12.664389,PR:000000713,http://purl.obolibrary.org/obo/PR_000000713,small conductance calcium-activated potassium channel protein 2 +12.664389,PR:000000735,http://purl.obolibrary.org/obo/PR_000000735,none +12.664389,PR:000000786,http://purl.obolibrary.org/obo/PR_000000786,voltage-gated potassium channel KCND3 +12.664389,PR:000001406,http://purl.obolibrary.org/obo/PR_000001406,tumor necrosis factor receptor superfamily member 17 +12.664389,PR:000001540,http://purl.obolibrary.org/obo/PR_000001540,G-protein coupled receptor 84 +12.664389,PR:000002008,http://purl.obolibrary.org/obo/PR_000002008,none +12.664389,PR:000003823,http://purl.obolibrary.org/obo/PR_000003823,cytosolic carboxypeptidase 4 +12.664389,PR:000004439,http://purl.obolibrary.org/obo/PR_000004439,sodium/potassium-transporting ATPase subunit beta-1 +12.664389,PR:000004657,http://purl.obolibrary.org/obo/PR_000004657,bromodomain adjacent to zinc finger domain protein 1A +12.664389,PR:000004706,http://purl.obolibrary.org/obo/PR_000004706,Bcl-2-associated transcription factor 1 +12.664389,PR:000005068,http://purl.obolibrary.org/obo/PR_000005068,protein CBFA2T3 +12.664389,PR:000005542,http://purl.obolibrary.org/obo/PR_000005542,claudin-15 +12.664389,PR:000005559,http://purl.obolibrary.org/obo/PR_000005559,C-type lectin domain family 12 member A +12.664389,PR:000005650,http://purl.obolibrary.org/obo/PR_000005650,CCR4-NOT transcription complex subunit 2 +12.664389,PR:000005816,http://purl.obolibrary.org/obo/PR_000005816,copine-1 +12.664389,PR:000006241,http://purl.obolibrary.org/obo/PR_000006241,none +12.664389,PR:000006730,http://purl.obolibrary.org/obo/PR_000006730,dual oxidase maturation factor 2 +12.664389,PR:000007119,http://purl.obolibrary.org/obo/PR_000007119,epigen +12.664389,PR:000007464,http://purl.obolibrary.org/obo/PR_000007464,fetuin-B +12.664389,PR:000007528,http://purl.obolibrary.org/obo/PR_000007528,fat storage-inducing transmembrane protein 1 +12.664389,PR:000007694,http://purl.obolibrary.org/obo/PR_000007694,alpha-ketoglutarate-dependent dioxygenase FTO +12.664389,PR:000008620,http://purl.obolibrary.org/obo/PR_000008620,H2.0-like homeobox protein +12.664389,PR:000008680,http://purl.obolibrary.org/obo/PR_000008680,homer protein homolog 3 +12.664389,PR:000009009,http://purl.obolibrary.org/obo/PR_000009009,integrin-linked protein kinase +12.664389,PR:000009046,http://purl.obolibrary.org/obo/PR_000009046,inositol polyphosphate 4-phosphatase type II +12.664389,PR:000009171,http://purl.obolibrary.org/obo/PR_000009171,izumo sperm-egg fusion protein 1 +12.664389,PR:000009680,http://purl.obolibrary.org/obo/PR_000009680,ceramide synthase 4 +12.664389,PR:000011354,http://purl.obolibrary.org/obo/PR_000011354,neuropeptide B +12.664389,PR:000012464,http://purl.obolibrary.org/obo/PR_000012464,"dual 3',5'-cyclic-AMP and -GMP phosphodiesterase 11A" +12.664389,PR:000012589,http://purl.obolibrary.org/obo/PR_000012589,cyclin-dependent kinase 14 +12.664389,PR:000013524,http://purl.obolibrary.org/obo/PR_000013524,pygopus homolog 2 +12.664389,PR:000013592,http://purl.obolibrary.org/obo/PR_000013592,Ras-related protein Rab-1B +12.664389,PR:000013798,http://purl.obolibrary.org/obo/PR_000013798,RNA-binding protein 4 +12.664389,PR:000013852,http://purl.obolibrary.org/obo/PR_000013852,retinol dehydrogenase 14 +12.664389,PR:000014203,http://purl.obolibrary.org/obo/PR_000014203,60S ribosomal protein L23 +12.664389,PR:000014783,http://purl.obolibrary.org/obo/PR_000014783,delta-sarcoglycan +12.664389,PR:000015869,http://purl.obolibrary.org/obo/PR_000015869,symplekin +12.664389,PR:000015915,http://purl.obolibrary.org/obo/PR_000015915,synaptotagmin-like protein 4 +12.664389,PR:000017000,http://purl.obolibrary.org/obo/PR_000017000,ubiquitin-like protein 5 +12.664389,PR:000017251,http://purl.obolibrary.org/obo/PR_000017251,vesicle-associated membrane protein 4 +12.664389,PR:000023871,http://purl.obolibrary.org/obo/PR_000023871,none +12.664389,PR:000027970,http://purl.obolibrary.org/obo/PR_000027970,none +12.664389,PR:000028197,http://purl.obolibrary.org/obo/PR_000028197,none +12.664389,PR:000029686,http://purl.obolibrary.org/obo/PR_000029686,plexin domain-containing protein 1 +12.664389,PR:000030211,http://purl.obolibrary.org/obo/PR_000030211,tripartite motif-containing protein 72 +12.664389,PR:000032097,http://purl.obolibrary.org/obo/PR_000032097,KAT8 regulatory NSL complex subunit 3 +12.664389,PR:O14227,http://purl.obolibrary.org/obo/PR_O14227,none +12.664389,PR:O22793,http://purl.obolibrary.org/obo/PR_O22793,none +12.664389,PR:P29993,http://purl.obolibrary.org/obo/PR_P29993,none +12.664389,PR:P32905,http://purl.obolibrary.org/obo/PR_P32905,none +12.664389,PR:P38999,http://purl.obolibrary.org/obo/PR_P38999,none +12.664389,PR:P46969,http://purl.obolibrary.org/obo/PR_P46969,none +12.664389,PR:Q02391,http://purl.obolibrary.org/obo/PR_Q02391,none +12.664389,PR:Q6PUF3,http://purl.obolibrary.org/obo/PR_Q6PUF3,none +12.664389,PR:Q6PUF4,http://purl.obolibrary.org/obo/PR_Q6PUF4,none +12.664389,PR:Q7XA73,http://purl.obolibrary.org/obo/PR_Q7XA73,none +12.664389,PR:Q944G5,http://purl.obolibrary.org/obo/PR_Q944G5,none +12.664389,SO:0000145,http://purl.obolibrary.org/obo/SO_0000145,recoded_codon +12.664389,SO:0001016,http://purl.obolibrary.org/obo/SO_0001016,internal_guide_sequence +12.664389,UBERON:0003983,http://purl.obolibrary.org/obo/UBERON_0003983,conus arteriosus +12.664389,UBERON:0004125,http://purl.obolibrary.org/obo/UBERON_0004125,myocardial compact layer +12.664389,UBERON:0005271,http://purl.obolibrary.org/obo/UBERON_0005271,juxtamedullary cortex +12.664389,UBERON:0007153,http://purl.obolibrary.org/obo/UBERON_0007153,superior epigastric artery +12.664389,UBERON:0008841,http://purl.obolibrary.org/obo/UBERON_0008841,suspensory ligament +12.664389,UBERON:0009712,http://purl.obolibrary.org/obo/UBERON_0009712,endocardium of right ventricle +12.664389,UBERON:0016522,http://purl.obolibrary.org/obo/UBERON_0016522,cavity of right atrium +12.664389,UBERON:3010306,http://purl.obolibrary.org/obo/UBERON_3010306,none +12.6781824,CHEBI:10036,http://purl.obolibrary.org/obo/CHEBI_10036,wax ester +12.6781824,CHEBI:17843,http://purl.obolibrary.org/obo/CHEBI_17843,transfer RNA +12.6781824,CHEBI:23007,http://purl.obolibrary.org/obo/CHEBI_23007,carbohydrate-containing antibiotic +12.6781824,CHEBI:25413,http://purl.obolibrary.org/obo/CHEBI_25413,monounsaturated fatty acid +12.6781824,CHEBI:4705,http://purl.obolibrary.org/obo/CHEBI_4705,double-stranded DNA +12.6781824,CHEBI:66873,http://purl.obolibrary.org/obo/CHEBI_66873,C4-dicarboxylic acid +12.6781824,DRUGBANK:DB00236,http://purl.obolibrary.org/obo/DRUGBANK_DB00236,none +12.6781824,DRUGBANK:DB02181,http://purl.obolibrary.org/obo/DRUGBANK_DB02181,none +12.6781824,DRUGBANK:DB02280,http://purl.obolibrary.org/obo/DRUGBANK_DB02280,none +12.6781824,DRUGBANK:DB02571,http://purl.obolibrary.org/obo/DRUGBANK_DB02571,none +12.6781824,DRUGBANK:DB03785,http://purl.obolibrary.org/obo/DRUGBANK_DB03785,none +12.6781824,DRUGBANK:DB04160,http://purl.obolibrary.org/obo/DRUGBANK_DB04160,none +12.6781824,DRUGBANK:DB04168,http://purl.obolibrary.org/obo/DRUGBANK_DB04168,none +12.6781824,DRUGBANK:DB04291,http://purl.obolibrary.org/obo/DRUGBANK_DB04291,none +12.6781824,DRUGBANK:DB06801,http://purl.obolibrary.org/obo/DRUGBANK_DB06801,none +12.6781824,DRUGBANK:DB09000,http://purl.obolibrary.org/obo/DRUGBANK_DB09000,none +12.6781824,DRUGBANK:DB09204,http://purl.obolibrary.org/obo/DRUGBANK_DB09204,none +12.6781824,DRUGBANK:DB11192,http://purl.obolibrary.org/obo/DRUGBANK_DB11192,none +12.6781824,DRUGBANK:DB11593,http://purl.obolibrary.org/obo/DRUGBANK_DB11593,none +12.6781824,DRUGBANK:DB11915,http://purl.obolibrary.org/obo/DRUGBANK_DB11915,none +12.6781824,DRUGBANK:DB12214,http://purl.obolibrary.org/obo/DRUGBANK_DB12214,none +12.6781824,DRUGBANK:DB12231,http://purl.obolibrary.org/obo/DRUGBANK_DB12231,none +12.6781824,DRUGBANK:DB13568,http://purl.obolibrary.org/obo/DRUGBANK_DB13568,none +12.6781824,DRUGBANK:DB13624,http://purl.obolibrary.org/obo/DRUGBANK_DB13624,none +12.6781824,DRUGBANK:DB13643,http://purl.obolibrary.org/obo/DRUGBANK_DB13643,none +12.6781824,DRUGBANK:DB14111,http://purl.obolibrary.org/obo/DRUGBANK_DB14111,none +12.6781824,DRUGBANK:DB14173,http://purl.obolibrary.org/obo/DRUGBANK_DB14173,none +12.6781824,DRUGBANK:DB14521,http://purl.obolibrary.org/obo/DRUGBANK_DB14521,none +12.6781824,DRUGBANK:DB15819,http://purl.obolibrary.org/obo/DRUGBANK_DB15819,none +12.6781824,GO:0000793,http://purl.obolibrary.org/obo/GO_0000793,condensed chromosome +12.6781824,GO:0003991,http://purl.obolibrary.org/obo/GO_0003991,acetylglutamate kinase activity +12.6781824,GO:0004447,http://purl.obolibrary.org/obo/GO_0004447,iodide peroxidase activity +12.6781824,GO:0004980,http://purl.obolibrary.org/obo/GO_0004980,melanocyte-stimulating hormone receptor activity +12.6781824,GO:0005732,http://purl.obolibrary.org/obo/GO_0005732,sno(s)RNA-containing ribonucleoprotein complex +12.6781824,GO:0008250,http://purl.obolibrary.org/obo/GO_0008250,oligosaccharyltransferase complex +12.6781824,GO:0015678,http://purl.obolibrary.org/obo/GO_0015678,none +12.6781824,GO:0032410,http://purl.obolibrary.org/obo/GO_0032410,negative regulation of transporter activity +12.6781824,GO:0035114,http://purl.obolibrary.org/obo/GO_0035114,imaginal disc-derived appendage morphogenesis +12.6781824,GO:0035826,http://purl.obolibrary.org/obo/GO_0035826,none +12.6781824,GO:0042414,http://purl.obolibrary.org/obo/GO_0042414,epinephrine metabolic process +12.6781824,GO:0043501,http://purl.obolibrary.org/obo/GO_0043501,skeletal muscle adaptation +12.6781824,GO:0043545,http://purl.obolibrary.org/obo/GO_0043545,molybdopterin cofactor metabolic process +12.6781824,GO:0046476,http://purl.obolibrary.org/obo/GO_0046476,glycosylceramide biosynthetic process +12.6781824,GO:0046921,http://purl.obolibrary.org/obo/GO_0046921,alpha-(1->6)-fucosyltransferase activity +12.6781824,GO:0047040,http://purl.obolibrary.org/obo/GO_0047040,pteridine reductase activity +12.6781824,GO:0047323,http://purl.obolibrary.org/obo/GO_0047323,[3-methyl-2-oxobutanoate dehydrogenase (acetyl-transferring)] kinase activity +12.6781824,GO:0050278,http://purl.obolibrary.org/obo/GO_0050278,sedoheptulose-bisphosphatase activity +12.6781824,GO:0051012,http://purl.obolibrary.org/obo/GO_0051012,microtubule sliding +12.6781824,GO:0090068,http://purl.obolibrary.org/obo/GO_0090068,positive regulation of cell cycle process +12.6781824,GO:1901888,http://purl.obolibrary.org/obo/GO_1901888,regulation of cell junction assembly +12.6781824,GO:2000849,http://purl.obolibrary.org/obo/GO_2000849,regulation of glucocorticoid secretion +12.6781824,HP:0012826,http://purl.obolibrary.org/obo/HP_0012826,Moderate +12.6781824,MONDO:0000889,http://purl.obolibrary.org/obo/MONDO_0000889,haemophilus meningitis +12.6781824,MONDO:0000993,http://purl.obolibrary.org/obo/MONDO_0000993,prostate squamous cell carcinoma +12.6781824,MONDO:0002955,http://purl.obolibrary.org/obo/MONDO_0002955,vulva basal cell carcinoma +12.6781824,MONDO:0002996,http://purl.obolibrary.org/obo/MONDO_0002996,cavernous sinus meningioma +12.6781824,MONDO:0004778,http://purl.obolibrary.org/obo/MONDO_0004778,epididymo-orchitis +12.6781824,MONDO:0004802,http://purl.obolibrary.org/obo/MONDO_0004802,pulmonary eosinophilia +12.6781824,MONDO:0005996,http://purl.obolibrary.org/obo/MONDO_0005996,trichuriasis +12.6781824,MONDO:0006909,http://purl.obolibrary.org/obo/MONDO_0006909,pituitary dwarfism +12.6781824,MONDO:0007080,http://purl.obolibrary.org/obo/MONDO_0007080,glucocorticoid-remediable aldosteronism +12.6781824,MONDO:0008832,http://purl.obolibrary.org/obo/MONDO_0008832,right atrial isomerism +12.6781824,MONDO:0010191,http://purl.obolibrary.org/obo/MONDO_0010191,von Willebrand disease 3 +12.6781824,MONDO:0011759,http://purl.obolibrary.org/obo/MONDO_0011759,Hurler-Scheie syndrome +12.6781824,MONDO:0013131,http://purl.obolibrary.org/obo/MONDO_0013131,polycystic kidney disease 2 +12.6781824,MONDO:0015813,http://purl.obolibrary.org/obo/MONDO_0015813,primary cutaneous marginal zone B-cell lymphoma +12.6781824,MONDO:0016710,http://purl.obolibrary.org/obo/MONDO_0016710,medulloblastoma with extensive nodularity +12.6781824,MONDO:0017095,http://purl.obolibrary.org/obo/MONDO_0017095,isolated focal cortical dysplasia type I +12.6781824,MONDO:0018607,http://purl.obolibrary.org/obo/MONDO_0018607,combined hamartoma of the retina and retinal pigment epithelium +12.6781824,MONDO:0018994,http://purl.obolibrary.org/obo/MONDO_0018994,Charcot-Marie-Tooth disease type X +12.6781824,MONDO:0019077,http://purl.obolibrary.org/obo/MONDO_0019077,warty dyskeratoma +12.6781824,MONDO:0023273,http://purl.obolibrary.org/obo/MONDO_0023273,pigmented dermatofibrosarcoma protuberans +12.6781824,MONDO:0024247,http://purl.obolibrary.org/obo/MONDO_0024247,benign eccrine neoplasm +12.6781824,MONDO:0024472,http://purl.obolibrary.org/obo/MONDO_0024472,boutonneuse fever +12.6781824,MONDO:0043237,http://purl.obolibrary.org/obo/MONDO_0043237,glossodynia +12.6781824,MONDO:0056813,http://purl.obolibrary.org/obo/MONDO_0056813,hormone-resistant breast carcinoma +12.6781824,NCBITaxon:11027,http://purl.obolibrary.org/obo/NCBITaxon_11027,none +12.6781824,NCBITaxon:120490,http://purl.obolibrary.org/obo/NCBITaxon_120490,none +12.6781824,NCBITaxon:12844,http://purl.obolibrary.org/obo/NCBITaxon_12844,none +12.6781824,NCBITaxon:1354735,http://purl.obolibrary.org/obo/NCBITaxon_1354735,none +12.6781824,NCBITaxon:1933295,http://purl.obolibrary.org/obo/NCBITaxon_1933295,none +12.6781824,NCBITaxon:216366,http://purl.obolibrary.org/obo/NCBITaxon_216366,none +12.6781824,NCBITaxon:519496,http://purl.obolibrary.org/obo/NCBITaxon_519496,none +12.6781824,NCBITaxon:519497,http://purl.obolibrary.org/obo/NCBITaxon_519497,none +12.6781824,NCBITaxon:60456,http://purl.obolibrary.org/obo/NCBITaxon_60456,none +12.6781824,NCBITaxon:6527,http://purl.obolibrary.org/obo/NCBITaxon_6527,none +12.6781824,PR:000001332,http://purl.obolibrary.org/obo/PR_000001332,carcinoembryonic antigen-related cell adhesion molecule 8 +12.6781824,PR:000001598,http://purl.obolibrary.org/obo/PR_000001598,lysophosphatidic acid receptor 4 +12.6781824,PR:000002007,http://purl.obolibrary.org/obo/PR_000002007,none +12.6781824,PR:000003751,http://purl.obolibrary.org/obo/PR_000003751,adenylate cyclase type 1 +12.6781824,PR:000003859,http://purl.obolibrary.org/obo/PR_000003859,aryl hydrocarbon receptor repressor +12.6781824,PR:000003898,http://purl.obolibrary.org/obo/PR_000003898,akirin-2 +12.6781824,PR:000003965,http://purl.obolibrary.org/obo/PR_000003965,alpha-protein kinase 1 +12.6781824,PR:000004323,http://purl.obolibrary.org/obo/PR_000004323,arylsulfatase D +12.6781824,PR:000005104,http://purl.obolibrary.org/obo/PR_000005104,coiled-coil domain-containing protein 80 +12.6781824,PR:000006782,http://purl.obolibrary.org/obo/PR_000006782,dual specificity tyrosine-phosphorylation-regulated kinase 1B +12.6781824,PR:000007209,http://purl.obolibrary.org/obo/PR_000007209,steroid hormone receptor ERR2 +12.6781824,PR:000007516,http://purl.obolibrary.org/obo/PR_000007516,FH1/FH2 domain-containing protein 1 +12.6781824,PR:000007700,http://purl.obolibrary.org/obo/PR_000007700,RNA-binding protein FUS +12.6781824,PR:000007835,http://purl.obolibrary.org/obo/PR_000007835,guanidinoacetate N-methyltransferase +12.6781824,PR:000008619,http://purl.obolibrary.org/obo/PR_000008619,helicase-like transcription factor +12.6781824,PR:000009439,http://purl.obolibrary.org/obo/PR_000009439,importin subunit beta-1 +12.6781824,PR:000009738,http://purl.obolibrary.org/obo/PR_000009738,LIM domain-binding protein 3 +12.6781824,PR:000010275,http://purl.obolibrary.org/obo/PR_000010275,"NADP-dependent malic enzyme, mitochondrial" +12.6781824,PR:000010656,http://purl.obolibrary.org/obo/PR_000010656,high affinity immunoglobulin epsilon receptor subunit beta +12.6781824,PR:000010958,http://purl.obolibrary.org/obo/PR_000010958,H/ACA ribonucleoprotein complex non-core subunit NAF1 +12.6781824,PR:000011177,http://purl.obolibrary.org/obo/PR_000011177,nuclear factor 1 X-type +12.6781824,PR:000011353,http://purl.obolibrary.org/obo/PR_000011353,protein NPAT +12.6781824,PR:000011364,http://purl.obolibrary.org/obo/PR_000011364,nephrocystin-4 +12.6781824,PR:000012261,http://purl.obolibrary.org/obo/PR_000012261,pannexin-3 +12.6781824,PR:000012508,http://purl.obolibrary.org/obo/PR_000012508,PDZ and LIM domain protein 1 +12.6781824,PR:000012554,http://purl.obolibrary.org/obo/PR_000012554,peroxisome biogenesis factor 10 +12.6781824,PR:000012611,http://purl.obolibrary.org/obo/PR_000012611,N-acetylmuramoyl-L-alanine amidase +12.6781824,PR:000013271,http://purl.obolibrary.org/obo/PR_000013271,protor-1 +12.6781824,PR:000013437,http://purl.obolibrary.org/obo/PR_000013437,parathymosin +12.6781824,PR:000013614,http://purl.obolibrary.org/obo/PR_000013614,Ras-related protein Rab-38 +12.6781824,PR:000014444,http://purl.obolibrary.org/obo/PR_000014444,sorting and assembly machinery component 50 +12.6781824,PR:000014474,http://purl.obolibrary.org/obo/PR_000014474,myotubularin-related protein 13 +12.6781824,PR:000014698,http://purl.obolibrary.org/obo/PR_000014698,serpin B7 +12.6781824,PR:000015856,http://purl.obolibrary.org/obo/PR_000015856,switch-associated protein 70 +12.6781824,PR:000017645,http://purl.obolibrary.org/obo/PR_000017645,zinc finger protein 57 homolog +12.6781824,PR:000017716,http://purl.obolibrary.org/obo/PR_000017716,zinc finger protein 143 +12.6781824,PR:000022780,http://purl.obolibrary.org/obo/PR_000022780,none +12.6781824,PR:000023663,http://purl.obolibrary.org/obo/PR_000023663,none +12.6781824,PR:000027942,http://purl.obolibrary.org/obo/PR_000027942,CDK9:cyclin-T1 +12.6781824,PR:000029701,http://purl.obolibrary.org/obo/PR_000029701,tyrosine-protein phosphatase non-receptor type 3 +12.6781824,PR:000031932,http://purl.obolibrary.org/obo/PR_000031932,integral membrane protein GPR180 +12.6781824,PR:000034401,http://purl.obolibrary.org/obo/PR_000034401,none +12.6781824,PR:O42709,http://purl.obolibrary.org/obo/PR_O42709,none +12.6781824,PR:P46593,http://purl.obolibrary.org/obo/PR_P46593,none +12.6781824,PR:P54867,http://purl.obolibrary.org/obo/PR_P54867,none +12.6781824,PR:Q07878,http://purl.obolibrary.org/obo/PR_Q07878,none +12.6781824,PR:Q42029,http://purl.obolibrary.org/obo/PR_Q42029,none +12.6781824,PR:Q5M7Y0,http://purl.obolibrary.org/obo/PR_Q5M7Y0,none +12.6781824,PR:Q8LGA5,http://purl.obolibrary.org/obo/PR_Q8LGA5,none +12.6781824,PR:Q96288,http://purl.obolibrary.org/obo/PR_Q96288,none +12.6781824,PR:Q9FKI0,http://purl.obolibrary.org/obo/PR_Q9FKI0,none +12.6781824,PR:Q9UAS6,http://purl.obolibrary.org/obo/PR_Q9UAS6,none +12.6781824,SO:0000883,http://purl.obolibrary.org/obo/SO_0000883,stop_codon_read_through +12.6781824,UBERON:0001839,http://purl.obolibrary.org/obo/UBERON_0001839,bony labyrinth +12.6781824,UBERON:0002762,http://purl.obolibrary.org/obo/UBERON_0002762,internal medullary lamina of thalamus +12.6781824,UBERON:0004527,http://purl.obolibrary.org/obo/UBERON_0004527,alveolar process of maxilla +12.6781824,UBERON:0004743,http://purl.obolibrary.org/obo/UBERON_0004743,coracoid bone +12.6781824,UBERON:0004870,http://purl.obolibrary.org/obo/UBERON_0004870,superficial cervical lymph node +12.6781824,UBERON:0005107,http://purl.obolibrary.org/obo/UBERON_0005107,metanephric cap +12.6781824,UBERON:0005282,http://purl.obolibrary.org/obo/UBERON_0005282,ventricular system of brain +12.6781824,UBERON:0008192,http://purl.obolibrary.org/obo/UBERON_0008192,tendon of triceps brachii +12.6781824,UBERON:0011391,http://purl.obolibrary.org/obo/UBERON_0011391,perineal nerve +12.6781824,UBERON:2000175,http://purl.obolibrary.org/obo/UBERON_2000175,posterior lateral line nerve +12.6921686,CHEBI:22728,http://purl.obolibrary.org/obo/CHEBI_22728,benzopyrrole +12.6921686,CHEBI:23451,http://purl.obolibrary.org/obo/CHEBI_23451,cyclitol +12.6921686,CHEBI:28300,http://purl.obolibrary.org/obo/CHEBI_28300,glutamine +12.6921686,CHEBI:29103,http://purl.obolibrary.org/obo/CHEBI_29103,potassium(1+) +12.6921686,CHEBI:32832,http://purl.obolibrary.org/obo/CHEBI_32832,threoninate +12.6921686,CHEBI:35358,http://purl.obolibrary.org/obo/CHEBI_35358,sulfonamide +12.6921686,CHEBI:64391,http://purl.obolibrary.org/obo/CHEBI_64391,biogenic mineral +12.6921686,CHEBI:75282,http://purl.obolibrary.org/obo/CHEBI_75282,ergosterol biosynthesis inhibitor +12.6921686,CHEBI:85264,http://purl.obolibrary.org/obo/CHEBI_85264,potassium clavulanate +12.6921686,CL:0000847,http://purl.obolibrary.org/obo/CL_0000847,ciliated olfactory receptor neuron +12.6921686,CL:0000986,http://purl.obolibrary.org/obo/CL_0000986,IgM plasma cell +12.6921686,DRUGBANK:DB04414,http://purl.obolibrary.org/obo/DRUGBANK_DB04414,none +12.6921686,DRUGBANK:DB04586,http://purl.obolibrary.org/obo/DRUGBANK_DB04586,none +12.6921686,DRUGBANK:DB09051,http://purl.obolibrary.org/obo/DRUGBANK_DB09051,none +12.6921686,DRUGBANK:DB09164,http://purl.obolibrary.org/obo/DRUGBANK_DB09164,none +12.6921686,DRUGBANK:DB09291,http://purl.obolibrary.org/obo/DRUGBANK_DB09291,none +12.6921686,DRUGBANK:DB11427,http://purl.obolibrary.org/obo/DRUGBANK_DB11427,none +12.6921686,DRUGBANK:DB12079,http://purl.obolibrary.org/obo/DRUGBANK_DB12079,none +12.6921686,DRUGBANK:DB12558,http://purl.obolibrary.org/obo/DRUGBANK_DB12558,none +12.6921686,DRUGBANK:DB13099,http://purl.obolibrary.org/obo/DRUGBANK_DB13099,none +12.6921686,DRUGBANK:DB13263,http://purl.obolibrary.org/obo/DRUGBANK_DB13263,none +12.6921686,DRUGBANK:DB13606,http://purl.obolibrary.org/obo/DRUGBANK_DB13606,none +12.6921686,DRUGBANK:DB13665,http://purl.obolibrary.org/obo/DRUGBANK_DB13665,none +12.6921686,DRUGBANK:DB14494,http://purl.obolibrary.org/obo/DRUGBANK_DB14494,none +12.6921686,DRUGBANK:DB15405,http://purl.obolibrary.org/obo/DRUGBANK_DB15405,none +12.6921686,DRUGBANK:DB15723,http://purl.obolibrary.org/obo/DRUGBANK_DB15723,none +12.6921686,DRUGBANK:DB16303,http://purl.obolibrary.org/obo/DRUGBANK_DB16303,none +12.6921686,GO:0001780,http://purl.obolibrary.org/obo/GO_0001780,neutrophil homeostasis +12.6921686,GO:0003828,http://purl.obolibrary.org/obo/GO_0003828,"alpha-N-acetylneuraminate alpha-2,8-sialyltransferase activity" +12.6921686,GO:0004640,http://purl.obolibrary.org/obo/GO_0004640,phosphoribosylanthranilate isomerase activity +12.6921686,GO:0004750,http://purl.obolibrary.org/obo/GO_0004750,ribulose-phosphate 3-epimerase activity +12.6921686,GO:0006516,http://purl.obolibrary.org/obo/GO_0006516,glycoprotein catabolic process +12.6921686,GO:0006563,http://purl.obolibrary.org/obo/GO_0006563,L-serine metabolic process +12.6921686,GO:0007031,http://purl.obolibrary.org/obo/GO_0007031,peroxisome organization +12.6921686,GO:0008853,http://purl.obolibrary.org/obo/GO_0008853,exodeoxyribonuclease III activity +12.6921686,GO:0009806,http://purl.obolibrary.org/obo/GO_0009806,lignan metabolic process +12.6921686,GO:0010015,http://purl.obolibrary.org/obo/GO_0010015,root morphogenesis +12.6921686,GO:0014888,http://purl.obolibrary.org/obo/GO_0014888,striated muscle adaptation +12.6921686,GO:0016331,http://purl.obolibrary.org/obo/GO_0016331,morphogenesis of embryonic epithelium +12.6921686,GO:0022894,http://purl.obolibrary.org/obo/GO_0022894,Intermediate conductance calcium-activated potassium channel activity +12.6921686,GO:0031010,http://purl.obolibrary.org/obo/GO_0031010,ISWI-type complex +12.6921686,GO:0031176,http://purl.obolibrary.org/obo/GO_0031176,"endo-1,4-beta-xylanase activity" +12.6921686,GO:0031460,http://purl.obolibrary.org/obo/GO_0031460,glycine betaine transport +12.6921686,GO:0033842,http://purl.obolibrary.org/obo/GO_0033842,N-acetyl-beta-glucosaminyl-glycoprotein 4-beta-N-acetylgalactosaminyltransferase activity +12.6921686,GO:0034755,http://purl.obolibrary.org/obo/GO_0034755,iron ion transmembrane transport +12.6921686,GO:0046863,http://purl.obolibrary.org/obo/GO_0046863,"ribulose-1,5-bisphosphate carboxylase/oxygenase activator activity" +12.6921686,GO:0047526,http://purl.obolibrary.org/obo/GO_0047526,2'-hydroxyisoflavone reductase activity +12.6921686,GO:0055063,http://purl.obolibrary.org/obo/GO_0055063,sulfate ion homeostasis +12.6921686,GO:0061640,http://purl.obolibrary.org/obo/GO_0061640,cytoskeleton-dependent cytokinesis +12.6921686,GO:0090224,http://purl.obolibrary.org/obo/GO_0090224,regulation of spindle organization +12.6921686,GO:0097328,http://purl.obolibrary.org/obo/GO_0097328,response to carboplatin +12.6921686,GO:1903532,http://purl.obolibrary.org/obo/GO_1903532,positive regulation of secretion by cell +12.6921686,GO:2000280,http://purl.obolibrary.org/obo/GO_2000280,regulation of root development +12.6921686,GO:2000282,http://purl.obolibrary.org/obo/GO_2000282,regulation of cellular amino acid biosynthetic process +12.6921686,HP:0001387,http://purl.obolibrary.org/obo/HP_0001387,Joint stiffness +12.6921686,HP:0002103,http://purl.obolibrary.org/obo/HP_0002103,Abnormal pleura morphology +12.6921686,HP:0003676,http://purl.obolibrary.org/obo/HP_0003676,Progressive +12.6921686,MONDO:0000497,http://purl.obolibrary.org/obo/MONDO_0000497,pyometritis +12.6921686,MONDO:0000966,http://purl.obolibrary.org/obo/MONDO_0000966,pleomorphic lipoma +12.6921686,MONDO:0003341,http://purl.obolibrary.org/obo/MONDO_0003341,subungual glomus tumor +12.6921686,MONDO:0006614,http://purl.obolibrary.org/obo/MONDO_0006614,subcorneal pustular dermatosis +12.6921686,MONDO:0007630,http://purl.obolibrary.org/obo/MONDO_0007630,North Carolina macular dystrophy +12.6921686,MONDO:0007756,http://purl.obolibrary.org/obo/MONDO_0007756,hyperkeratosis lenticularis perstans +12.6921686,MONDO:0008013,http://purl.obolibrary.org/obo/MONDO_0008013,chromosome 9p deletion syndrome +12.6921686,MONDO:0008243,http://purl.obolibrary.org/obo/MONDO_0008243,Pick disease +12.6921686,MONDO:0008249,http://purl.obolibrary.org/obo/MONDO_0008249,pilonidal sinus +12.6921686,MONDO:0008760,http://purl.obolibrary.org/obo/MONDO_0008760,beta-ketothiolase deficiency +12.6921686,MONDO:0012794,http://purl.obolibrary.org/obo/MONDO_0012794,ANE syndrome +12.6921686,MONDO:0016292,http://purl.obolibrary.org/obo/MONDO_0016292,nodular neuronal heterotopia +12.6921686,MONDO:0016891,http://purl.obolibrary.org/obo/MONDO_0016891,partial deletion of the short arm of chromosome 9 +12.6921686,MONDO:0017008,http://purl.obolibrary.org/obo/MONDO_0017008,partial duplication of chromosome X +12.6921686,MONDO:0017010,http://purl.obolibrary.org/obo/MONDO_0017010,partial duplication of the long arm of chromosome X +12.6921686,MONDO:0017999,http://purl.obolibrary.org/obo/MONDO_0017999,fatty acid hydroxylase-associated neurodegeneration +12.6921686,MONDO:0018628,http://purl.obolibrary.org/obo/MONDO_0018628,HIV-associated cancer +12.6921686,MONDO:0018877,http://purl.obolibrary.org/obo/MONDO_0018877,retinitis punctata albescens +12.6921686,MONDO:0021420,http://purl.obolibrary.org/obo/MONDO_0021420,polyp of vocal cord +12.6921686,MONDO:0021512,http://purl.obolibrary.org/obo/MONDO_0021512,benign neoplasm of thymus +12.6921686,MONDO:0021663,http://purl.obolibrary.org/obo/MONDO_0021663,sarcomatoid squamous cell carcinoma +12.6921686,NCBITaxon:35511,http://purl.obolibrary.org/obo/NCBITaxon_35511,none +12.6921686,NCBITaxon:3650,http://purl.obolibrary.org/obo/NCBITaxon_3650,none +12.6921686,NCBITaxon:54284,http://purl.obolibrary.org/obo/NCBITaxon_54284,none +12.6921686,NCBITaxon:8087,http://purl.obolibrary.org/obo/NCBITaxon_8087,Cyprinodontoidei +12.6921686,NCBITaxon:84524,http://purl.obolibrary.org/obo/NCBITaxon_84524,none +12.6921686,PR:000001377,http://purl.obolibrary.org/obo/PR_000001377,interleukin-18 receptor 1 +12.6921686,PR:000001378,http://purl.obolibrary.org/obo/PR_000001378,interleukin-18 receptor accessory protein +12.6921686,PR:000001620,http://purl.obolibrary.org/obo/PR_000001620,neuropeptide FF receptor 1 +12.6921686,PR:000002326,http://purl.obolibrary.org/obo/PR_000002326,"dynein light chain 2, cytoplasmic" +12.6921686,PR:000003391,http://purl.obolibrary.org/obo/PR_000003391,fragile X mental retardation syndrome-related protein 2 +12.6921686,PR:000004260,http://purl.obolibrary.org/obo/PR_000004260,Rho guanine nucleotide exchange factor 7 +12.6921686,PR:000004293,http://purl.obolibrary.org/obo/PR_000004293,PRA1 family protein 3 +12.6921686,PR:000004381,http://purl.obolibrary.org/obo/PR_000004381,abnormal spindle-like microcephaly-associated protein +12.6921686,PR:000004405,http://purl.obolibrary.org/obo/PR_000004405,activating transcription factor 7-interacting protein 1 +12.6921686,PR:000004805,http://purl.obolibrary.org/obo/PR_000004805,lys-63-specific deubiquitinase BRCC36 +12.6921686,PR:000004975,http://purl.obolibrary.org/obo/PR_000004975,calcium homeostasis modulator protein 1 +12.6921686,PR:000005347,http://purl.obolibrary.org/obo/PR_000005347,centrosome-associated protein CEP250 +12.6921686,PR:000005391,http://purl.obolibrary.org/obo/PR_000005391,choriogonadotropin subunit beta +12.6921686,PR:000005485,http://purl.obolibrary.org/obo/PR_000005485,chromosome transmission fidelity protein 18 +12.6921686,PR:000005573,http://purl.obolibrary.org/obo/PR_000005573,calmegin +12.6921686,PR:000007218,http://purl.obolibrary.org/obo/PR_000007218,"persulfide dioxygenase ETHE1, mitochondrial" +12.6921686,PR:000007486,http://purl.obolibrary.org/obo/PR_000007486,fibroblast growth factor 17 +12.6921686,PR:000007868,http://purl.obolibrary.org/obo/PR_000007868,non-lysosomal glucosylceramidase +12.6921686,PR:000008128,http://purl.obolibrary.org/obo/PR_000008128,progonadoliberin-2 +12.6921686,PR:000008430,http://purl.obolibrary.org/obo/PR_000008430,E3 ubiquitin-protein ligase HACE1 +12.6921686,PR:000008733,http://purl.obolibrary.org/obo/PR_000008733,serine protease hepsin +12.6921686,PR:000008809,http://purl.obolibrary.org/obo/PR_000008809,heat shock 70 kDa protein 4L +12.6921686,PR:000008894,http://purl.obolibrary.org/obo/PR_000008894,iduronate 2-sulfatase +12.6921686,PR:000009105,http://purl.obolibrary.org/obo/PR_000009105,immune-responsive gene 1 protein +12.6921686,PR:000010292,http://purl.obolibrary.org/obo/PR_000010292,mediator of RNA polymerase II transcription subunit 20 +12.6921686,PR:000010691,http://purl.obolibrary.org/obo/PR_000010691,NADH-ubiquinone oxidoreductase chain 3 +12.6921686,PR:000011148,http://purl.obolibrary.org/obo/PR_000011148,sialidase-4 +12.6921686,PR:000012032,http://purl.obolibrary.org/obo/PR_000012032,origin recognition complex subunit 3 +12.6921686,PR:000013452,http://purl.obolibrary.org/obo/PR_000013452,tyrosine-protein phosphatase non-receptor type 14 +12.6921686,PR:000014257,http://purl.obolibrary.org/obo/PR_000014257,40S ribosomal protein S15a +12.6921686,PR:000014437,http://purl.obolibrary.org/obo/PR_000014437,Sal-like protein 2 +12.6921686,PR:000014608,http://purl.obolibrary.org/obo/PR_000014608,ethanolaminephosphotransferase 1 +12.6921686,PR:000014749,http://purl.obolibrary.org/obo/PR_000014749,transformer-2 protein homolog beta +12.6921686,PR:000014785,http://purl.obolibrary.org/obo/PR_000014785,gamma-sarcoglycan +12.6921686,PR:000014895,http://purl.obolibrary.org/obo/PR_000014895,apoptosis regulatory protein Siva +12.6921686,PR:000015154,http://purl.obolibrary.org/obo/PR_000015154,heme transporter HRG1 +12.6921686,PR:000015941,http://purl.obolibrary.org/obo/PR_000015941,none +12.6921686,PR:000016690,http://purl.obolibrary.org/obo/PR_000016690,trophinin +12.6921686,PR:000016973,http://purl.obolibrary.org/obo/PR_000016973,ubiquitin-conjugating enzyme E2 E3 +12.6921686,PR:000017163,http://purl.obolibrary.org/obo/PR_000017163,ubiquitin carboxyl-terminal hydrolase 25 +12.6921686,PR:000017477,http://purl.obolibrary.org/obo/PR_000017477,xanthine dehydrogenase/oxidase +12.6921686,PR:000022949,http://purl.obolibrary.org/obo/PR_000022949,none +12.6921686,PR:000022953,http://purl.obolibrary.org/obo/PR_000022953,none +12.6921686,PR:000023614,http://purl.obolibrary.org/obo/PR_000023614,none +12.6921686,PR:000024013,http://purl.obolibrary.org/obo/PR_000024013,none +12.6921686,PR:000029196,http://purl.obolibrary.org/obo/PR_000029196,none +12.6921686,PR:000030644,http://purl.obolibrary.org/obo/PR_000030644,transmembrane 9 superfamily member 3 +12.6921686,PR:000031378,http://purl.obolibrary.org/obo/PR_000031378,protein orai-2 +12.6921686,PR:000031722,http://purl.obolibrary.org/obo/PR_000031722,solute carrier family 45 member 3 +12.6921686,PR:000033604,http://purl.obolibrary.org/obo/PR_000033604,none +12.6921686,PR:000044417,http://purl.obolibrary.org/obo/PR_000044417,none +12.6921686,PR:P07186,http://purl.obolibrary.org/obo/PR_P07186,none +12.6921686,PR:P12024,http://purl.obolibrary.org/obo/PR_P12024,none +12.6921686,PR:P18831,http://purl.obolibrary.org/obo/PR_P18831,none +12.6921686,PR:P34997,http://purl.obolibrary.org/obo/PR_P34997,none +12.6921686,PR:Q00805,http://purl.obolibrary.org/obo/PR_Q00805,none +12.6921686,PR:Q04982,http://purl.obolibrary.org/obo/PR_Q04982,none +12.6921686,PR:Q0WT48,http://purl.obolibrary.org/obo/PR_Q0WT48,none +12.6921686,PR:Q39111,http://purl.obolibrary.org/obo/PR_Q39111,none +12.6921686,PR:Q7T2D1,http://purl.obolibrary.org/obo/PR_Q7T2D1,none +12.6921686,PR:Q805B2,http://purl.obolibrary.org/obo/PR_Q805B2,none +12.6921686,PR:Q9ZNV5,http://purl.obolibrary.org/obo/PR_Q9ZNV5,none +12.6921686,SO:0000021,http://purl.obolibrary.org/obo/SO_0000021,asymmetric_RNA_internal_loop +12.6921686,SO:0000128,http://purl.obolibrary.org/obo/SO_0000128,gene_silenced_by_DNA_modification +12.6921686,SO:0000129,http://purl.obolibrary.org/obo/SO_0000129,gene_silenced_by_DNA_methylation +12.6921686,SO:0000630,http://purl.obolibrary.org/obo/SO_0000630,upstream_AUG_codon +12.6921686,SO:0002028,http://purl.obolibrary.org/obo/SO_0002028,sORF +12.6921686,SO:0002053,http://purl.obolibrary.org/obo/SO_0002053,gain_of_function_variant +12.6921686,UBERON:0002004,http://purl.obolibrary.org/obo/UBERON_0002004,trunk of sciatic nerve +12.6921686,UBERON:0002136,http://purl.obolibrary.org/obo/UBERON_0002136,hilus of dentate gyrus +12.6921686,UBERON:0002511,http://purl.obolibrary.org/obo/UBERON_0002511,trabecula carnea +12.6921686,UBERON:0002659,http://purl.obolibrary.org/obo/UBERON_0002659,superior medullary velum +12.6921686,UBERON:0004632,http://purl.obolibrary.org/obo/UBERON_0004632,thoracic vertebra 7 +12.6921686,UBERON:0004646,http://purl.obolibrary.org/obo/UBERON_0004646,infraorbital artery +12.6921686,UBERON:0015476,http://purl.obolibrary.org/obo/UBERON_0015476,nose skin +12.6921686,UBERON:0016478,http://purl.obolibrary.org/obo/UBERON_0016478,liver stroma +12.6921686,UBERON:0018282,http://purl.obolibrary.org/obo/UBERON_0018282,lower molar 3 +12.6921686,UBERON:0018580,http://purl.obolibrary.org/obo/UBERON_0018580,lower third secondary molar tooth +12.7063532,CHEBI:26666,http://purl.obolibrary.org/obo/CHEBI_26666,short-chain fatty acid +12.7063532,CHEBI:26739,http://purl.obolibrary.org/obo/CHEBI_26739,sphingolipid +12.7063532,CHEBI:3098,http://purl.obolibrary.org/obo/CHEBI_3098,bile acid +12.7063532,CHEBI:35684,http://purl.obolibrary.org/obo/CHEBI_35684,antiplatyhelmintic drug +12.7063532,CHEBI:35742,http://purl.obolibrary.org/obo/CHEBI_35742,tetracarboxylic acid +12.7063532,CHEBI:35902,http://purl.obolibrary.org/obo/CHEBI_35902,oxo monocarboxylic acid anion +12.7063532,CHEBI:35903,http://purl.obolibrary.org/obo/CHEBI_35903,oxo carboxylic acid anion +12.7063532,CHEBI:36132,http://purl.obolibrary.org/obo/CHEBI_36132,alicyclic ketone +12.7063532,CHEBI:38941,http://purl.obolibrary.org/obo/CHEBI_38941,schistosomicide drug +12.7063532,CHEBI:47891,http://purl.obolibrary.org/obo/CHEBI_47891,steroid acid +12.7063532,CHEBI:61995,http://purl.obolibrary.org/obo/CHEBI_61995,lecithin +12.7063532,CL:0000360,http://purl.obolibrary.org/obo/CL_0000360,morula cell +12.7063532,CL:0005009,http://purl.obolibrary.org/obo/CL_0005009,renal principal cell +12.7063532,DRUGBANK:DB00940,http://purl.obolibrary.org/obo/DRUGBANK_DB00940,none +12.7063532,DRUGBANK:DB01122,http://purl.obolibrary.org/obo/DRUGBANK_DB01122,none +12.7063532,DRUGBANK:DB01375,http://purl.obolibrary.org/obo/DRUGBANK_DB01375,none +12.7063532,DRUGBANK:DB01941,http://purl.obolibrary.org/obo/DRUGBANK_DB01941,none +12.7063532,DRUGBANK:DB03773,http://purl.obolibrary.org/obo/DRUGBANK_DB03773,none +12.7063532,DRUGBANK:DB04797,http://purl.obolibrary.org/obo/DRUGBANK_DB04797,none +12.7063532,DRUGBANK:DB05288,http://purl.obolibrary.org/obo/DRUGBANK_DB05288,none +12.7063532,DRUGBANK:DB06581,http://purl.obolibrary.org/obo/DRUGBANK_DB06581,none +12.7063532,DRUGBANK:DB06786,http://purl.obolibrary.org/obo/DRUGBANK_DB06786,none +12.7063532,DRUGBANK:DB07764,http://purl.obolibrary.org/obo/DRUGBANK_DB07764,none +12.7063532,DRUGBANK:DB08933,http://purl.obolibrary.org/obo/DRUGBANK_DB08933,none +12.7063532,DRUGBANK:DB09012,http://purl.obolibrary.org/obo/DRUGBANK_DB09012,none +12.7063532,DRUGBANK:DB11164,http://purl.obolibrary.org/obo/DRUGBANK_DB11164,none +12.7063532,DRUGBANK:DB11924,http://purl.obolibrary.org/obo/DRUGBANK_DB11924,none +12.7063532,DRUGBANK:DB13160,http://purl.obolibrary.org/obo/DRUGBANK_DB13160,none +12.7063532,DRUGBANK:DB14311,http://purl.obolibrary.org/obo/DRUGBANK_DB14311,none +12.7063532,GO:0000811,http://purl.obolibrary.org/obo/GO_0000811,GINS complex +12.7063532,GO:0004956,http://purl.obolibrary.org/obo/GO_0004956,prostaglandin D receptor activity +12.7063532,GO:0006777,http://purl.obolibrary.org/obo/GO_0006777,Mo-molybdopterin cofactor biosynthetic process +12.7063532,GO:0009304,http://purl.obolibrary.org/obo/GO_0009304,tRNA transcription +12.7063532,GO:0009554,http://purl.obolibrary.org/obo/GO_0009554,megasporogenesis +12.7063532,GO:0010023,http://purl.obolibrary.org/obo/GO_0010023,proanthocyanidin biosynthetic process +12.7063532,GO:0016624,http://purl.obolibrary.org/obo/GO_0016624,"oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor" +12.7063532,GO:0019720,http://purl.obolibrary.org/obo/GO_0019720,Mo-molybdopterin cofactor metabolic process +12.7063532,GO:0019889,http://purl.obolibrary.org/obo/GO_0019889,pteridine metabolic process +12.7063532,GO:0032324,http://purl.obolibrary.org/obo/GO_0032324,molybdopterin cofactor biosynthetic process +12.7063532,GO:0033003,http://purl.obolibrary.org/obo/GO_0033003,regulation of mast cell activation +12.7063532,GO:0033212,http://purl.obolibrary.org/obo/GO_0033212,iron import into cell +12.7063532,GO:0035728,http://purl.obolibrary.org/obo/GO_0035728,response to hepatocyte growth factor +12.7063532,GO:0035994,http://purl.obolibrary.org/obo/GO_0035994,response to muscle stretch +12.7063532,GO:0043201,http://purl.obolibrary.org/obo/GO_0043201,response to leucine +12.7063532,GO:0045980,http://purl.obolibrary.org/obo/GO_0045980,negative regulation of nucleotide metabolic process +12.7063532,GO:0050093,http://purl.obolibrary.org/obo/GO_0050093,methanol dehydrogenase activity +12.7063532,GO:0060538,http://purl.obolibrary.org/obo/GO_0060538,skeletal muscle organ development +12.7063532,GO:0071550,http://purl.obolibrary.org/obo/GO_0071550,death-inducing signaling complex assembly +12.7063532,GO:0072662,http://purl.obolibrary.org/obo/GO_0072662,protein localization to peroxisome +12.7063532,GO:0098740,http://purl.obolibrary.org/obo/GO_0098740,none +12.7063532,GO:0098900,http://purl.obolibrary.org/obo/GO_0098900,regulation of action potential +12.7063532,GO:1903412,http://purl.obolibrary.org/obo/GO_1903412,response to bile acid +12.7063532,HP:0000713,http://purl.obolibrary.org/obo/HP_0000713,Agitation +12.7063532,MONDO:0002803,http://purl.obolibrary.org/obo/MONDO_0002803,intestinal pseudo-obstruction +12.7063532,MONDO:0003428,http://purl.obolibrary.org/obo/MONDO_0003428,brain hemangioma +12.7063532,MONDO:0003963,http://purl.obolibrary.org/obo/MONDO_0003963,diffuse infiltrative lymphocytosis syndrome +12.7063532,MONDO:0006356,http://purl.obolibrary.org/obo/MONDO_0006356,parotid gland adenoid cystic carcinoma +12.7063532,MONDO:0006845,http://purl.obolibrary.org/obo/MONDO_0006845,male genital tuberculosis +12.7063532,MONDO:0008006,http://purl.obolibrary.org/obo/MONDO_0008006,Mobius syndrome +12.7063532,MONDO:0009824,http://purl.obolibrary.org/obo/MONDO_0009824,primary hyperoxaluria type 2 +12.7063532,MONDO:0009874,http://purl.obolibrary.org/obo/MONDO_0009874,Rabson-Mendenhall syndrome +12.7063532,MONDO:0010283,http://purl.obolibrary.org/obo/MONDO_0010283,syndromic X-linked intellectual disability Lubs type +12.7063532,MONDO:0010305,http://purl.obolibrary.org/obo/MONDO_0010305,creatine transporter deficiency +12.7063532,MONDO:0015499,http://purl.obolibrary.org/obo/MONDO_0015499,paralytic facial malformation +12.7063532,MONDO:0015854,http://purl.obolibrary.org/obo/MONDO_0015854,supernumerary breasts +12.7063532,MONDO:0016425,http://purl.obolibrary.org/obo/MONDO_0016425,Hughes-Stovin syndrome +12.7063532,MONDO:0016705,http://purl.obolibrary.org/obo/MONDO_0016705,angiocentric glioma +12.7063532,MONDO:0017587,http://purl.obolibrary.org/obo/MONDO_0017587,onychomatricoma +12.7063532,MONDO:0018605,http://purl.obolibrary.org/obo/MONDO_0018605,disorders of pentose/polyol metabolism +12.7063532,MONDO:0021895,http://purl.obolibrary.org/obo/MONDO_0021895,temporomandibular joint dysfunction syndrome +12.7063532,MONDO:0027026,http://purl.obolibrary.org/obo/MONDO_0027026,Buschke Lowenstein tumor +12.7063532,MONDO:0100084,http://purl.obolibrary.org/obo/MONDO_0100084,alpha-actinopathy +12.7063532,NCBITaxon:134613,http://purl.obolibrary.org/obo/NCBITaxon_134613,none +12.7063532,NCBITaxon:170194,http://purl.obolibrary.org/obo/NCBITaxon_170194,none +12.7063532,NCBITaxon:260511,http://purl.obolibrary.org/obo/NCBITaxon_260511,none +12.7063532,NCBITaxon:4668,http://purl.obolibrary.org/obo/NCBITaxon_4668,none +12.7063532,NCBITaxon:6097,http://purl.obolibrary.org/obo/NCBITaxon_6097,none +12.7063532,PR:000003747,http://purl.obolibrary.org/obo/PR_000003747,double-stranded RNA-specific editase B2 +12.7063532,PR:000003933,http://purl.obolibrary.org/obo/PR_000003933,4-trimethylaminobutyraldehyde dehydrogenase +12.7063532,PR:000004044,http://purl.obolibrary.org/obo/PR_000004044,ankyrin repeat domain-containing protein 2 +12.7063532,PR:000004207,http://purl.obolibrary.org/obo/PR_000004207,ADP-ribosylation factor GTPase-activating protein 2 +12.7063532,PR:000004351,http://purl.obolibrary.org/obo/PR_000004351,ankyrin repeat and SOCS box protein 2 +12.7063532,PR:000004420,http://purl.obolibrary.org/obo/PR_000004420,autophagy-related protein 9A +12.7063532,PR:000004474,http://purl.obolibrary.org/obo/PR_000004474,V-type proton ATPase 21 kDa proteolipid subunit +12.7063532,PR:000004713,http://purl.obolibrary.org/obo/PR_000004713,mitochondrial chaperone BCS1 +12.7063532,PR:000004765,http://purl.obolibrary.org/obo/PR_000004765,biliverdin reductase A +12.7063532,PR:000004839,http://purl.obolibrary.org/obo/PR_000004839,transcription factor BTF3 +12.7063532,PR:000005797,http://purl.obolibrary.org/obo/PR_000005797,mast cell carboxypeptidase A +12.7063532,PR:000006215,http://purl.obolibrary.org/obo/PR_000006215,none +12.7063532,PR:000006535,http://purl.obolibrary.org/obo/PR_000006535,diencephalon/mesencephalon homeobox protein 1 +12.7063532,PR:000006737,http://purl.obolibrary.org/obo/PR_000006737,dual specificity protein phosphatase 10 +12.7063532,PR:000007178,http://purl.obolibrary.org/obo/PR_000007178,3'-5' exoribonuclease 1 +12.7063532,PR:000007768,http://purl.obolibrary.org/obo/PR_000007768,gamma-aminobutyric acid receptor subunit alpha-3 +12.7063532,PR:000008361,http://purl.obolibrary.org/obo/PR_000008361,glycogenin-1 +12.7063532,PR:000008666,http://purl.obolibrary.org/obo/PR_000008666,heterogeneous nuclear ribonucleoprotein H +12.7063532,PR:000008907,http://purl.obolibrary.org/obo/PR_000008907,interferon-induced protein 44 +12.7063532,PR:000009559,http://purl.obolibrary.org/obo/PR_000009559,keratin-associated protein 4-12 +12.7063532,PR:000009748,http://purl.obolibrary.org/obo/PR_000009748,liver-expressed antimicrobial peptide 2 +12.7063532,PR:000009856,http://purl.obolibrary.org/obo/PR_000009856,lipase maturation factor 1 +12.7063532,PR:000009906,http://purl.obolibrary.org/obo/PR_000009906,2-lysophosphatidate phosphatase PLPPR4 +12.7063532,PR:000010100,http://purl.obolibrary.org/obo/PR_000010100,mastermind-like protein 3 +12.7063532,PR:000010186,http://purl.obolibrary.org/obo/PR_000010186,serine/threonine-protein kinase MARK1 +12.7063532,PR:000010319,http://purl.obolibrary.org/obo/PR_000010319,maternal embryonic leucine zipper kinase +12.7063532,PR:000010387,http://purl.obolibrary.org/obo/PR_000010387,monoglyceride lipase +12.7063532,PR:000011558,http://purl.obolibrary.org/obo/PR_000011558,none +12.7063532,PR:000012089,http://purl.obolibrary.org/obo/PR_000012089,ovochymase-2 +12.7063532,PR:000012447,http://purl.obolibrary.org/obo/PR_000012447,choline-phosphate cytidylyltransferase B +12.7063532,PR:000012487,http://purl.obolibrary.org/obo/PR_000012487,"high affinity cAMP-specific and IBMX-insensitive 3',5'-cyclic phosphodiesterase 8B" +12.7063532,PR:000012700,http://purl.obolibrary.org/obo/PR_000012700,GPI mannosyltransferase 1 +12.7063532,PR:000013136,http://purl.obolibrary.org/obo/PR_000013136,serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B beta isoform +12.7063532,PR:000013491,http://purl.obolibrary.org/obo/PR_000013491,poly(U)-binding-splicing factor PUF60 +12.7063532,PR:000014373,http://purl.obolibrary.org/obo/PR_000014373,retinoic acid receptor RXR-beta +12.7063532,PR:000014504,http://purl.obolibrary.org/obo/PR_000014504,neuroendocrine protein 7B2 +12.7063532,PR:000014547,http://purl.obolibrary.org/obo/PR_000014547,aminoacyl tRNA synthase complex-interacting multifunctional protein 1 +12.7063532,PR:000014999,http://purl.obolibrary.org/obo/PR_000014999,sodium/potassium/calcium exchanger 2 +12.7063532,PR:000015099,http://purl.obolibrary.org/obo/PR_000015099,UDP-N-acetylglucosamine/UDP-glucose/GDP-mannose transporter +12.7063532,PR:000015263,http://purl.obolibrary.org/obo/PR_000015263,SWI/SNF complex subunit SMARCC1 +12.7063532,PR:000015313,http://purl.obolibrary.org/obo/PR_000015313,synaptosomal-associated protein 29 +12.7063532,PR:000015730,http://purl.obolibrary.org/obo/PR_000015730,metalloreductase STEAP1 +12.7063532,PR:000015821,http://purl.obolibrary.org/obo/PR_000015821,sulfotransferase family cytosolic 1B member 1 +12.7063532,PR:000016035,http://purl.obolibrary.org/obo/PR_000016035,transcription initiation factor TFIID subunit 8 +12.7063532,PR:000016145,http://purl.obolibrary.org/obo/PR_000016145,T-box transcription factor TBX15 +12.7063532,PR:000016422,http://purl.obolibrary.org/obo/PR_000016422,collectrin +12.7063532,PR:000016873,http://purl.obolibrary.org/obo/PR_000016873,thioredoxin reductase 3 +12.7063532,PR:000017078,http://purl.obolibrary.org/obo/PR_000017078,serine/threonine-protein kinase ULK2 +12.7063532,PR:000022073,http://purl.obolibrary.org/obo/PR_000022073,none +12.7063532,PR:000023577,http://purl.obolibrary.org/obo/PR_000023577,none +12.7063532,PR:000023794,http://purl.obolibrary.org/obo/PR_000023794,none +12.7063532,PR:000023978,http://purl.obolibrary.org/obo/PR_000023978,none +12.7063532,PR:000024089,http://purl.obolibrary.org/obo/PR_000024089,none +12.7063532,PR:000029140,http://purl.obolibrary.org/obo/PR_000029140,protein SMG8 +12.7063532,PR:000029231,http://purl.obolibrary.org/obo/PR_000029231,none +12.7063532,PR:000030746,http://purl.obolibrary.org/obo/PR_000030746,forkhead box protein O6 +12.7063532,PR:000030831,http://purl.obolibrary.org/obo/PR_000030831,biorientation of chromosomes in cell division protein 1-like 1 +12.7063532,PR:000030890,http://purl.obolibrary.org/obo/PR_000030890,neutrophil defensin 4 +12.7063532,PR:000031458,http://purl.obolibrary.org/obo/PR_000031458,prenylcysteine oxidase 1 +12.7063532,PR:000031828,http://purl.obolibrary.org/obo/PR_000031828,coiled-coil domain-containing protein 164 +12.7063532,PR:000033973,http://purl.obolibrary.org/obo/PR_000033973,none +12.7063532,PR:000050397,http://purl.obolibrary.org/obo/PR_000050397,none +12.7063532,PR:O35207,http://purl.obolibrary.org/obo/PR_O35207,none +12.7063532,PR:O59755,http://purl.obolibrary.org/obo/PR_O59755,none +12.7063532,PR:O80345,http://purl.obolibrary.org/obo/PR_O80345,none +12.7063532,PR:P15370,http://purl.obolibrary.org/obo/PR_P15370,none +12.7063532,PR:P28188,http://purl.obolibrary.org/obo/PR_P28188,none +12.7063532,PR:P29717,http://purl.obolibrary.org/obo/PR_P29717,none +12.7063532,PR:P36872,http://purl.obolibrary.org/obo/PR_P36872,none +12.7063532,PR:P41828,http://purl.obolibrary.org/obo/PR_P41828,none +12.7063532,PR:P52496,http://purl.obolibrary.org/obo/PR_P52496,none +12.7063532,PR:P53259,http://purl.obolibrary.org/obo/PR_P53259,none +12.7063532,PR:Q54I71,http://purl.obolibrary.org/obo/PR_Q54I71,none +12.7063532,PR:Q5CCK4,http://purl.obolibrary.org/obo/PR_Q5CCK4,none +12.7063532,PR:Q62611,http://purl.obolibrary.org/obo/PR_Q62611,none +12.7063532,PR:Q867X0,http://purl.obolibrary.org/obo/PR_Q867X0,none +12.7063532,PR:Q8GXH3,http://purl.obolibrary.org/obo/PR_Q8GXH3,none +12.7063532,PR:Q8W4B2,http://purl.obolibrary.org/obo/PR_Q8W4B2,none +12.7063532,PR:Q90270,http://purl.obolibrary.org/obo/PR_Q90270,none +12.7063532,SO:0000035,http://purl.obolibrary.org/obo/SO_0000035,riboswitch +12.7063532,SO:0000122,http://purl.obolibrary.org/obo/SO_0000122,RNA_sequence_secondary_structure +12.7063532,SO:0001092,http://purl.obolibrary.org/obo/SO_0001092,polypeptide_metal_contact +12.7063532,SO:0001094,http://purl.obolibrary.org/obo/SO_0001094,polypeptide_calcium_ion_contact_site +12.7063532,UBERON:0000332,http://purl.obolibrary.org/obo/UBERON_0000332,yellow bone marrow +12.7063532,UBERON:0002010,http://purl.obolibrary.org/obo/UBERON_0002010,celiac nerve plexus +12.7063532,UBERON:0002214,http://purl.obolibrary.org/obo/UBERON_0002214,macula of utricle of membranous labyrinth +12.7063532,UBERON:0005621,http://purl.obolibrary.org/obo/UBERON_0005621,rhomboid +12.7063532,UBERON:0008424,http://purl.obolibrary.org/obo/UBERON_0008424,inguinal mammary gland +12.7063532,UBERON:0008941,http://purl.obolibrary.org/obo/UBERON_0008941,pleural ganglion +12.7063532,UBERON:0011121,http://purl.obolibrary.org/obo/UBERON_0011121,cricothyroid joint +12.7063532,UBERON:0011528,http://purl.obolibrary.org/obo/UBERON_0011528,pubococcygeus muscle +12.7063532,UBERON:0015455,http://purl.obolibrary.org/obo/UBERON_0015455,accessory hepatic vein +12.7063532,UBERON:2002141,http://purl.obolibrary.org/obo/UBERON_2002141,annular ligament +12.720742,CHEBI:32677,http://purl.obolibrary.org/obo/CHEBI_32677,glutamine residue +12.720742,CHEBI:33712,http://purl.obolibrary.org/obo/CHEBI_33712,N-terminal amino-acid residue +12.720742,CHEBI:35179,http://purl.obolibrary.org/obo/CHEBI_35179,2-oxo monocarboxylic acid anion +12.720742,CHEBI:50433,http://purl.obolibrary.org/obo/CHEBI_50433,platelet glycoprotein-IIb/IIIa receptor antagonist +12.720742,CHEBI:55323,http://purl.obolibrary.org/obo/CHEBI_55323,antidiarrhoeal drug +12.720742,CHEBI:73693,http://purl.obolibrary.org/obo/CHEBI_73693,ketone body +12.720742,CL:0002483,http://purl.obolibrary.org/obo/CL_0002483,hair follicle melanocyte +12.720742,CL:0008004,http://purl.obolibrary.org/obo/CL_0008004,somatic muscle cell +12.720742,CL:1000854,http://purl.obolibrary.org/obo/CL_1000854,kidney blood vessel cell +12.720742,CL:2000000,http://purl.obolibrary.org/obo/CL_2000000,epidermal melanocyte +12.720742,DRUGBANK:DB01579,http://purl.obolibrary.org/obo/DRUGBANK_DB01579,none +12.720742,DRUGBANK:DB01852,http://purl.obolibrary.org/obo/DRUGBANK_DB01852,none +12.720742,DRUGBANK:DB02714,http://purl.obolibrary.org/obo/DRUGBANK_DB02714,none +12.720742,DRUGBANK:DB04188,http://purl.obolibrary.org/obo/DRUGBANK_DB04188,none +12.720742,DRUGBANK:DB04419,http://purl.obolibrary.org/obo/DRUGBANK_DB04419,none +12.720742,DRUGBANK:DB04915,http://purl.obolibrary.org/obo/DRUGBANK_DB04915,none +12.720742,DRUGBANK:DB04977,http://purl.obolibrary.org/obo/DRUGBANK_DB04977,none +12.720742,DRUGBANK:DB05660,http://purl.obolibrary.org/obo/DRUGBANK_DB05660,none +12.720742,DRUGBANK:DB05861,http://purl.obolibrary.org/obo/DRUGBANK_DB05861,none +12.720742,DRUGBANK:DB06768,http://purl.obolibrary.org/obo/DRUGBANK_DB06768,none +12.720742,DRUGBANK:DB07532,http://purl.obolibrary.org/obo/DRUGBANK_DB07532,none +12.720742,DRUGBANK:DB10809,http://purl.obolibrary.org/obo/DRUGBANK_DB10809,none +12.720742,DRUGBANK:DB11654,http://purl.obolibrary.org/obo/DRUGBANK_DB11654,none +12.720742,DRUGBANK:DB12829,http://purl.obolibrary.org/obo/DRUGBANK_DB12829,none +12.720742,DRUGBANK:DB13058,http://purl.obolibrary.org/obo/DRUGBANK_DB13058,none +12.720742,DRUGBANK:DB15404,http://purl.obolibrary.org/obo/DRUGBANK_DB15404,none +12.720742,DRUGBANK:DB15782,http://purl.obolibrary.org/obo/DRUGBANK_DB15782,none +12.720742,GO:0001634,http://purl.obolibrary.org/obo/GO_0001634,pituitary adenylate cyclase-activating polypeptide receptor activity +12.720742,GO:0002418,http://purl.obolibrary.org/obo/GO_0002418,immune response to tumor cell +12.720742,GO:0002709,http://purl.obolibrary.org/obo/GO_0002709,regulation of T cell mediated immunity +12.720742,GO:0004303,http://purl.obolibrary.org/obo/GO_0004303,estradiol 17-beta-dehydrogenase activity +12.720742,GO:0006470,http://purl.obolibrary.org/obo/GO_0006470,protein dephosphorylation +12.720742,GO:0008477,http://purl.obolibrary.org/obo/GO_0008477,purine nucleosidase activity +12.720742,GO:0009148,http://purl.obolibrary.org/obo/GO_0009148,pyrimidine nucleoside triphosphate biosynthetic process +12.720742,GO:0009164,http://purl.obolibrary.org/obo/GO_0009164,nucleoside catabolic process +12.720742,GO:0010677,http://purl.obolibrary.org/obo/GO_0010677,negative regulation of cellular carbohydrate metabolic process +12.720742,GO:0018522,http://purl.obolibrary.org/obo/GO_0018522,benzoyl-CoA reductase activity +12.720742,GO:0019499,http://purl.obolibrary.org/obo/GO_0019499,cyanide metabolic process +12.720742,GO:0031904,http://purl.obolibrary.org/obo/GO_0031904,endosome lumen +12.720742,GO:0035673,http://purl.obolibrary.org/obo/GO_0035673,oligopeptide transmembrane transporter activity +12.720742,GO:0036445,http://purl.obolibrary.org/obo/GO_0036445,neuronal stem cell division +12.720742,GO:0042972,http://purl.obolibrary.org/obo/GO_0042972,licheninase activity +12.720742,GO:0045740,http://purl.obolibrary.org/obo/GO_0045740,positive regulation of DNA replication +12.720742,GO:0046782,http://purl.obolibrary.org/obo/GO_0046782,regulation of viral transcription +12.720742,GO:0052173,http://purl.obolibrary.org/obo/GO_0052173,response to defenses of other organism +12.720742,GO:0060539,http://purl.obolibrary.org/obo/GO_0060539,diaphragm development +12.720742,GO:0061581,http://purl.obolibrary.org/obo/GO_0061581,corneal epithelial cell migration +12.720742,GO:0072562,http://purl.obolibrary.org/obo/GO_0072562,blood microparticle +12.720742,GO:1901184,http://purl.obolibrary.org/obo/GO_1901184,regulation of ERBB signaling pathway +12.720742,GO:1901601,http://purl.obolibrary.org/obo/GO_1901601,strigolactone biosynthetic process +12.720742,HP:0000718,http://purl.obolibrary.org/obo/HP_0000718,Aggressive behavior +12.720742,MONDO:0000045,http://purl.obolibrary.org/obo/MONDO_0000045,"hypothyroidism, congenital, nongoitrous" +12.720742,MONDO:0000179,http://purl.obolibrary.org/obo/MONDO_0000179,Neu-Laxova syndrome +12.720742,MONDO:0000410,http://purl.obolibrary.org/obo/MONDO_0000410,funisitis +12.720742,MONDO:0000600,http://purl.obolibrary.org/obo/MONDO_0000600,nosophobia +12.720742,MONDO:0000615,http://purl.obolibrary.org/obo/MONDO_0000615,progesterone-receptor positive breast cancer +12.720742,MONDO:0002189,http://purl.obolibrary.org/obo/MONDO_0002189,nodular hidradenoma +12.720742,MONDO:0002870,http://purl.obolibrary.org/obo/MONDO_0002870,tricuspid valve insufficiency +12.720742,MONDO:0002988,http://purl.obolibrary.org/obo/MONDO_0002988,cervix melanoma +12.720742,MONDO:0003109,http://purl.obolibrary.org/obo/MONDO_0003109,foramen magnum meningioma +12.720742,MONDO:0003658,http://purl.obolibrary.org/obo/MONDO_0003658,"B-cell lymphoma, unclassifiable, with features intermediate between diffuse large b-cell lymphoma and classical Hodgkin lymphoma" +12.720742,MONDO:0003844,http://purl.obolibrary.org/obo/MONDO_0003844,central nervous system lipoma +12.720742,MONDO:0004301,http://purl.obolibrary.org/obo/MONDO_0004301,fibrosarcomatous osteosarcoma +12.720742,MONDO:0006648,http://purl.obolibrary.org/obo/MONDO_0006648,anterior compartment syndrome +12.720742,MONDO:0009393,http://purl.obolibrary.org/obo/MONDO_0009393,ornithine translocase deficiency +12.720742,MONDO:0009666,http://purl.obolibrary.org/obo/MONDO_0009666,holocarboxylase synthetase deficiency +12.720742,MONDO:0009728,http://purl.obolibrary.org/obo/MONDO_0009728,nephronophthisis 1 +12.720742,MONDO:0011076,http://purl.obolibrary.org/obo/MONDO_0011076,myofibrillar myopathy 1 +12.720742,MONDO:0011559,http://purl.obolibrary.org/obo/MONDO_0011559,benign recurrent intrahepatic cholestasis type 2 +12.720742,MONDO:0012496,http://purl.obolibrary.org/obo/MONDO_0012496,Koolen de Vries syndrome +12.720742,MONDO:0015148,http://purl.obolibrary.org/obo/MONDO_0015148,lissencephaly type 3 +12.720742,MONDO:0016712,http://purl.obolibrary.org/obo/MONDO_0016712,classic medulloblastoma +12.720742,MONDO:0018431,http://purl.obolibrary.org/obo/MONDO_0018431,cold-induced sweating syndrome - hyperthermia spectrum +12.720742,MONDO:0021272,http://purl.obolibrary.org/obo/MONDO_0021272,inherited orthostatic hypotension +12.720742,MONDO:0021472,http://purl.obolibrary.org/obo/MONDO_0021472,benign neoplasm of scrotum +12.720742,MONDO:0021664,http://purl.obolibrary.org/obo/MONDO_0021664,cervical aortic arch +12.720742,MONDO:0035892,http://purl.obolibrary.org/obo/MONDO_0035892,Mills syndrome +12.720742,NCBITaxon:11867,http://purl.obolibrary.org/obo/NCBITaxon_11867,none +12.720742,NCBITaxon:12181,http://purl.obolibrary.org/obo/NCBITaxon_12181,none +12.720742,NCBITaxon:123735,http://purl.obolibrary.org/obo/NCBITaxon_123735,none +12.720742,NCBITaxon:12877,http://purl.obolibrary.org/obo/NCBITaxon_12877,none +12.720742,NCBITaxon:1803956,http://purl.obolibrary.org/obo/NCBITaxon_1803956,none +12.720742,NCBITaxon:33708,http://purl.obolibrary.org/obo/NCBITaxon_33708,none +12.720742,NCBITaxon:442169,http://purl.obolibrary.org/obo/NCBITaxon_442169,none +12.720742,NCBITaxon:67754,http://purl.obolibrary.org/obo/NCBITaxon_67754,none +12.720742,NCBITaxon:71241,http://purl.obolibrary.org/obo/NCBITaxon_71241,none +12.720742,PR:000001874,http://purl.obolibrary.org/obo/PR_000001874,KLRB1-like protein +12.720742,PR:000003950,http://purl.obolibrary.org/obo/PR_000003950,alpha-ketoglutarate-dependent dioxygenase alkB homolog 3 +12.720742,PR:000004374,http://purl.obolibrary.org/obo/PR_000004374,acetylserotonin O-methyltransferase +12.720742,PR:000004708,http://purl.obolibrary.org/obo/PR_000004708,"beta,beta-carotene 9',10'-oxygenase" +12.720742,PR:000004837,http://purl.obolibrary.org/obo/PR_000004837,probetacellulin +12.720742,PR:000005321,http://purl.obolibrary.org/obo/PR_000005321,cementoblastoma-derived protein 1 +12.720742,PR:000005489,http://purl.obolibrary.org/obo/PR_000005489,anamorsin +12.720742,PR:000005743,http://purl.obolibrary.org/obo/PR_000005743,COP9 signalosome complex subunit 6 +12.720742,PR:000005756,http://purl.obolibrary.org/obo/PR_000005756,ubiquinone biosynthesis protein COQ7 +12.720742,PR:000006056,http://purl.obolibrary.org/obo/PR_000006056,homeobox protein cut-like 2 +12.720742,PR:000006431,http://purl.obolibrary.org/obo/PR_000006431,gasdermin-E +12.720742,PR:000007193,http://purl.obolibrary.org/obo/PR_000007193,syncytin-2 +12.720742,PR:000007197,http://purl.obolibrary.org/obo/PR_000007197,N-acetyltransferase ESCO2 +12.720742,PR:000008251,http://purl.obolibrary.org/obo/PR_000008251,"glutamate receptor ionotropic, NMDA 3B" +12.720742,PR:000009005,http://purl.obolibrary.org/obo/PR_000009005,L-amino-acid oxidase +12.720742,PR:000009783,http://purl.obolibrary.org/obo/PR_000009783,lutropin subunit beta +12.720742,PR:000010032,http://purl.obolibrary.org/obo/PR_000010032,cation-dependent mannose-6-phosphate receptor +12.720742,PR:000010366,http://purl.obolibrary.org/obo/PR_000010366,mitochondrial fission factor +12.720742,PR:000011199,http://purl.obolibrary.org/obo/PR_000011199,non-homologous end-joining factor 1 +12.720742,PR:000011423,http://purl.obolibrary.org/obo/PR_000011423,"pro-neuregulin-2, membrane-bound isoform" +12.720742,PR:000011430,http://purl.obolibrary.org/obo/PR_000011430,Nik-related protein kinase +12.720742,PR:000011450,http://purl.obolibrary.org/obo/PR_000011450,RNA cytosine C(5)-methyltransferase NSUN2 +12.720742,PR:000011484,http://purl.obolibrary.org/obo/PR_000011484,diphosphoinositol polyphosphate phosphohydrolase 3-alpha +12.720742,PR:000012035,http://purl.obolibrary.org/obo/PR_000012035,origin recognition complex subunit 6 +12.720742,PR:000012466,http://purl.obolibrary.org/obo/PR_000012466,"calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1A" +12.720742,PR:000014802,http://purl.obolibrary.org/obo/PR_000014802,sphingosine-1-phosphate phosphatase 2 +12.720742,PR:000014834,http://purl.obolibrary.org/obo/PR_000014834,sharpin +12.720742,PR:000016677,http://purl.obolibrary.org/obo/PR_000016677,"N(2),N(2)-dimethylguanosine tRNA methyltransferase" +12.720742,PR:000016782,http://purl.obolibrary.org/obo/PR_000016782,tetratricopeptide repeat protein 5 +12.720742,PR:000017046,http://purl.obolibrary.org/obo/PR_000017046,UDP-glucose 6-dehydrogenase +12.720742,PR:000017207,http://purl.obolibrary.org/obo/PR_000017207,something about silencing protein 10 +12.720742,PR:000022142,http://purl.obolibrary.org/obo/PR_000022142,none +12.720742,PR:000022170,http://purl.obolibrary.org/obo/PR_000022170,none +12.720742,PR:000022279,http://purl.obolibrary.org/obo/PR_000022279,none +12.720742,PR:000022680,http://purl.obolibrary.org/obo/PR_000022680,none +12.720742,PR:000022801,http://purl.obolibrary.org/obo/PR_000022801,glutaminase 1 +12.720742,PR:000023954,http://purl.obolibrary.org/obo/PR_000023954,none +12.720742,PR:000028289,http://purl.obolibrary.org/obo/PR_000028289,none +12.720742,PR:000031362,http://purl.obolibrary.org/obo/PR_000031362,Cx9C motif-containing protein 4 +12.720742,PR:000031411,http://purl.obolibrary.org/obo/PR_000031411,PCNA-interacting partner +12.720742,PR:000031951,http://purl.obolibrary.org/obo/PR_000031951,cysteine-rich hydrophobic domain-containing protein 2 +12.720742,PR:000032590,http://purl.obolibrary.org/obo/PR_000032590,WD repeat-containing protein 62 +12.720742,PR:000032772,http://purl.obolibrary.org/obo/PR_000032772,probable allantoicase +12.720742,PR:000035207,http://purl.obolibrary.org/obo/PR_000035207,none +12.720742,PR:O80860,http://purl.obolibrary.org/obo/PR_O80860,none +12.720742,PR:O94489,http://purl.obolibrary.org/obo/PR_O94489,none +12.720742,PR:P08155,http://purl.obolibrary.org/obo/PR_P08155,none +12.720742,PR:P22192,http://purl.obolibrary.org/obo/PR_P22192,none +12.720742,PR:P27614,http://purl.obolibrary.org/obo/PR_P27614,none +12.720742,PR:P30620,http://purl.obolibrary.org/obo/PR_P30620,none +12.720742,PR:P40564,http://purl.obolibrary.org/obo/PR_P40564,none +12.720742,PR:P53968,http://purl.obolibrary.org/obo/PR_P53968,none +12.720742,PR:P54673,http://purl.obolibrary.org/obo/PR_P54673,none +12.720742,PR:P54874,http://purl.obolibrary.org/obo/PR_P54874,none +12.720742,PR:Q10264,http://purl.obolibrary.org/obo/PR_Q10264,none +12.720742,PR:Q8VZW3,http://purl.obolibrary.org/obo/PR_Q8VZW3,none +12.720742,PR:Q93ZB2,http://purl.obolibrary.org/obo/PR_Q93ZB2,none +12.720742,PR:Q9S7N2,http://purl.obolibrary.org/obo/PR_Q9S7N2,none +12.720742,PR:Q9SAK2,http://purl.obolibrary.org/obo/PR_Q9SAK2,none +12.720742,PR:Q9ZT63,http://purl.obolibrary.org/obo/PR_Q9ZT63,none +12.720742,UBERON:0000985,http://purl.obolibrary.org/obo/UBERON_0000985,axillary vein +12.720742,UBERON:0001466,http://purl.obolibrary.org/obo/UBERON_0001466,pedal digit +12.720742,UBERON:0001526,http://purl.obolibrary.org/obo/UBERON_0001526,extensor carpi ulnaris muscle +12.720742,UBERON:0002008,http://purl.obolibrary.org/obo/UBERON_0002008,cardiac nerve plexus +12.720742,UBERON:0005051,http://purl.obolibrary.org/obo/UBERON_0005051,mediastinum testis +12.720742,UBERON:0005379,http://purl.obolibrary.org/obo/UBERON_0005379,olfactory bulb internal plexiform layer +12.720742,UBERON:0005461,http://purl.obolibrary.org/obo/UBERON_0005461,levator scapulae muscle +12.720742,UBERON:0005464,http://purl.obolibrary.org/obo/UBERON_0005464,median sacral artery +12.720742,UBERON:0006854,http://purl.obolibrary.org/obo/UBERON_0006854,distal straight tubule postmacula segment +12.720742,UBERON:0012471,http://purl.obolibrary.org/obo/UBERON_0012471,hepatogastric ligament +12.720742,UBERON:0016476,http://purl.obolibrary.org/obo/UBERON_0016476,primary incisor tooth +12.720742,UBERON:0017646,http://purl.obolibrary.org/obo/UBERON_0017646,internal mammary vein +12.720742,UBERON:0018296,http://purl.obolibrary.org/obo/UBERON_0018296,replacement tooth +12.720742,UBERON:2000425,http://purl.obolibrary.org/obo/UBERON_2000425,anterior lateral line nerve +12.720742,UBERON:3000141,http://purl.obolibrary.org/obo/UBERON_3000141,endolymphatic system +12.720742,UBERON:3000571,http://purl.obolibrary.org/obo/UBERON_3000571,specialized connective tissue +12.720742,UBERON:4200069,http://purl.obolibrary.org/obo/UBERON_4200069,sternal keel +12.7353408,CHEBI:15361,http://purl.obolibrary.org/obo/CHEBI_15361,pyruvate +12.7353408,CHEBI:36980,http://purl.obolibrary.org/obo/CHEBI_36980,pyridine nucleotide +12.7353408,CHEBI:47519,http://purl.obolibrary.org/obo/CHEBI_47519,ketoconazole +12.7353408,CHEBI:60684,http://purl.obolibrary.org/obo/CHEBI_60684,polycationic polymer +12.7353408,CHEBI:79399,http://purl.obolibrary.org/obo/CHEBI_79399,Piperazine citrate +12.7353408,CHEBI:85274,http://purl.obolibrary.org/obo/CHEBI_85274,pristinamycin +12.7353408,CL:0000604,http://purl.obolibrary.org/obo/CL_0000604,retinal rod cell +12.7353408,CL:0002157,http://purl.obolibrary.org/obo/CL_0002157,endosteal cell +12.7353408,CL:0005023,http://purl.obolibrary.org/obo/CL_0005023,branchiomotor neuron +12.7353408,CL:1000892,http://purl.obolibrary.org/obo/CL_1000892,kidney capillary endothelial cell +12.7353408,DRUGBANK:DB01456,http://purl.obolibrary.org/obo/DRUGBANK_DB01456,none +12.7353408,DRUGBANK:DB02203,http://purl.obolibrary.org/obo/DRUGBANK_DB02203,none +12.7353408,DRUGBANK:DB03374,http://purl.obolibrary.org/obo/DRUGBANK_DB03374,none +12.7353408,DRUGBANK:DB04823,http://purl.obolibrary.org/obo/DRUGBANK_DB04823,none +12.7353408,DRUGBANK:DB05427,http://purl.obolibrary.org/obo/DRUGBANK_DB05427,none +12.7353408,DRUGBANK:DB08040,http://purl.obolibrary.org/obo/DRUGBANK_DB08040,none +12.7353408,DRUGBANK:DB08986,http://purl.obolibrary.org/obo/DRUGBANK_DB08986,none +12.7353408,DRUGBANK:DB09561,http://purl.obolibrary.org/obo/DRUGBANK_DB09561,none +12.7353408,DRUGBANK:DB10841,http://purl.obolibrary.org/obo/DRUGBANK_DB10841,none +12.7353408,DRUGBANK:DB12098,http://purl.obolibrary.org/obo/DRUGBANK_DB12098,none +12.7353408,DRUGBANK:DB12233,http://purl.obolibrary.org/obo/DRUGBANK_DB12233,none +12.7353408,DRUGBANK:DB13306,http://purl.obolibrary.org/obo/DRUGBANK_DB13306,none +12.7353408,DRUGBANK:DB13421,http://purl.obolibrary.org/obo/DRUGBANK_DB13421,none +12.7353408,DRUGBANK:DB13452,http://purl.obolibrary.org/obo/DRUGBANK_DB13452,none +12.7353408,DRUGBANK:DB13874,http://purl.obolibrary.org/obo/DRUGBANK_DB13874,none +12.7353408,DRUGBANK:DB15666,http://purl.obolibrary.org/obo/DRUGBANK_DB15666,none +12.7353408,GO:0000034,http://purl.obolibrary.org/obo/GO_0000034,adenine deaminase activity +12.7353408,GO:0000109,http://purl.obolibrary.org/obo/GO_0000109,nucleotide-excision repair complex +12.7353408,GO:0000303,http://purl.obolibrary.org/obo/GO_0000303,response to superoxide +12.7353408,GO:0000377,http://purl.obolibrary.org/obo/GO_0000377,"RNA splicing, via transesterification reactions with bulged adenosine as nucleophile" +12.7353408,GO:0001596,http://purl.obolibrary.org/obo/GO_0001596,angiotensin type I receptor activity +12.7353408,GO:0001824,http://purl.obolibrary.org/obo/GO_0001824,blastocyst development +12.7353408,GO:0002327,http://purl.obolibrary.org/obo/GO_0002327,immature B cell differentiation +12.7353408,GO:0003848,http://purl.obolibrary.org/obo/GO_0003848,2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity +12.7353408,GO:0004168,http://purl.obolibrary.org/obo/GO_0004168,dolichol kinase activity +12.7353408,GO:0004311,http://purl.obolibrary.org/obo/GO_0004311,farnesyltranstransferase activity +12.7353408,GO:0004655,http://purl.obolibrary.org/obo/GO_0004655,porphobilinogen synthase activity +12.7353408,GO:0004749,http://purl.obolibrary.org/obo/GO_0004749,ribose phosphate diphosphokinase activity +12.7353408,GO:0004760,http://purl.obolibrary.org/obo/GO_0004760,serine-pyruvate transaminase activity +12.7353408,GO:0004817,http://purl.obolibrary.org/obo/GO_0004817,cysteine-tRNA ligase activity +12.7353408,GO:0006625,http://purl.obolibrary.org/obo/GO_0006625,protein targeting to peroxisome +12.7353408,GO:0010020,http://purl.obolibrary.org/obo/GO_0010020,chloroplast fission +12.7353408,GO:0010876,http://purl.obolibrary.org/obo/GO_0010876,lipid localization +12.7353408,GO:0015301,http://purl.obolibrary.org/obo/GO_0015301,anion:anion antiporter activity +12.7353408,GO:0015751,http://purl.obolibrary.org/obo/GO_0015751,arabinose transmembrane transport +12.7353408,GO:0016795,http://purl.obolibrary.org/obo/GO_0016795,phosphoric triester hydrolase activity +12.7353408,GO:0032655,http://purl.obolibrary.org/obo/GO_0032655,regulation of interleukin-12 production +12.7353408,GO:0033930,http://purl.obolibrary.org/obo/GO_0033930,"keratan-sulfate endo-1,4-beta-galactosidase activity" +12.7353408,GO:0036473,http://purl.obolibrary.org/obo/GO_0036473,cell death in response to oxidative stress +12.7353408,GO:0040013,http://purl.obolibrary.org/obo/GO_0040013,negative regulation of locomotion +12.7353408,GO:0042219,http://purl.obolibrary.org/obo/GO_0042219,cellular modified amino acid catabolic process +12.7353408,GO:0043572,http://purl.obolibrary.org/obo/GO_0043572,plastid fission +12.7353408,GO:0044354,http://purl.obolibrary.org/obo/GO_0044354,macropinosome +12.7353408,GO:0045616,http://purl.obolibrary.org/obo/GO_0045616,regulation of keratinocyte differentiation +12.7353408,GO:0050146,http://purl.obolibrary.org/obo/GO_0050146,nucleoside phosphotransferase activity +12.7353408,GO:0050281,http://purl.obolibrary.org/obo/GO_0050281,serine-glyoxylate transaminase activity +12.7353408,GO:0052200,http://purl.obolibrary.org/obo/GO_0052200,response to host defenses +12.7353408,GO:0055057,http://purl.obolibrary.org/obo/GO_0055057,neuroblast division +12.7353408,GO:0072663,http://purl.obolibrary.org/obo/GO_0072663,establishment of protein localization to peroxisome +12.7353408,GO:0090649,http://purl.obolibrary.org/obo/GO_0090649,response to oxygen-glucose deprivation +12.7353408,GO:0120031,http://purl.obolibrary.org/obo/GO_0120031,plasma membrane bounded cell projection assembly +12.7353408,GO:1901976,http://purl.obolibrary.org/obo/GO_1901976,regulation of cell cycle checkpoint +12.7353408,GO:1990907,http://purl.obolibrary.org/obo/GO_1990907,beta-catenin-TCF complex +12.7353408,HP:0002410,http://purl.obolibrary.org/obo/HP_0002410,Aqueductal stenosis +12.7353408,MONDO:0000828,http://purl.obolibrary.org/obo/MONDO_0000828,juvenile-onset Parkinson disease +12.7353408,MONDO:0000996,http://purl.obolibrary.org/obo/MONDO_0000996,prostate lymphoma +12.7353408,MONDO:0001819,http://purl.obolibrary.org/obo/MONDO_0001819,multiple cranial nerve palsy +12.7353408,MONDO:0001992,http://purl.obolibrary.org/obo/MONDO_0001992,rete testis adenocarcinoma +12.7353408,MONDO:0002766,http://purl.obolibrary.org/obo/MONDO_0002766,larynx verrucous carcinoma +12.7353408,MONDO:0002839,http://purl.obolibrary.org/obo/MONDO_0002839,leather-bottle stomach +12.7353408,MONDO:0002944,http://purl.obolibrary.org/obo/MONDO_0002944,external ear carcinoma +12.7353408,MONDO:0003357,http://purl.obolibrary.org/obo/MONDO_0003357,lung leiomyosarcoma +12.7353408,MONDO:0004308,http://purl.obolibrary.org/obo/MONDO_0004308,meningeal sarcoma +12.7353408,MONDO:0004519,http://purl.obolibrary.org/obo/MONDO_0004519,synovial angioma +12.7353408,MONDO:0004973,http://purl.obolibrary.org/obo/MONDO_0004973,adenosquamous lung carcinoma +12.7353408,MONDO:0005663,http://purl.obolibrary.org/obo/MONDO_0005663,Barre-Lieou syndrome +12.7353408,MONDO:0005692,http://purl.obolibrary.org/obo/MONDO_0005692,cat-scratch disease +12.7353408,MONDO:0005847,http://purl.obolibrary.org/obo/MONDO_0005847,middle lobe syndrome +12.7353408,MONDO:0006229,http://purl.obolibrary.org/obo/MONDO_0006229,gastric small cell neuroendocrine carcinoma +12.7353408,MONDO:0006866,http://purl.obolibrary.org/obo/MONDO_0006866,neonatal myasthenia gravis +12.7353408,MONDO:0007436,http://purl.obolibrary.org/obo/MONDO_0007436,dentin dysplasia type I +12.7353408,MONDO:0007656,http://purl.obolibrary.org/obo/MONDO_0007656,Gerstmann-Straussler-Scheinker syndrome +12.7353408,MONDO:0007749,http://purl.obolibrary.org/obo/MONDO_0007749,autosomal recessive infantile hypercalcemia +12.7353408,MONDO:0008555,http://purl.obolibrary.org/obo/MONDO_0008555,thrombocytopenia 2 +12.7353408,MONDO:0009123,http://purl.obolibrary.org/obo/MONDO_0009123,dopamine beta-hydroxylase deficiency +12.7353408,MONDO:0010385,http://purl.obolibrary.org/obo/MONDO_0010385,X-linked lymphoproliferative disease due to XIAP deficiency +12.7353408,MONDO:0011156,http://purl.obolibrary.org/obo/MONDO_0011156,progressive familial intrahepatic cholestasis type 2 +12.7353408,MONDO:0012027,http://purl.obolibrary.org/obo/MONDO_0012027,"autoimmune disease, susceptibility to, 2" +12.7353408,MONDO:0015362,http://purl.obolibrary.org/obo/MONDO_0015362,autosomal dominant distal hereditary motor neuropathy +12.7353408,MONDO:0016003,http://purl.obolibrary.org/obo/MONDO_0016003,ehrlichiosis +12.7353408,MONDO:0016688,http://purl.obolibrary.org/obo/MONDO_0016688,fibrillary astrocytoma +12.7353408,MONDO:0016974,http://purl.obolibrary.org/obo/MONDO_0016974,thymoma type B +12.7353408,MONDO:0017103,http://purl.obolibrary.org/obo/MONDO_0017103,encephaloclastic disorder +12.7353408,MONDO:0020057,http://purl.obolibrary.org/obo/MONDO_0020057,uniparental disomy of paternal origin +12.7353408,MONDO:0021329,http://purl.obolibrary.org/obo/MONDO_0021329,carcinoma of soft palate +12.7353408,MONDO:0023258,http://purl.obolibrary.org/obo/MONDO_0023258,glycogen storage disease type 1 due to SLC37A4 mutation +12.7353408,MONDO:0024650,http://purl.obolibrary.org/obo/MONDO_0024650,drug-induced osteoporosis +12.7353408,MONDO:0043512,http://purl.obolibrary.org/obo/MONDO_0043512,traumatic encephalopathy +12.7353408,NCBITaxon:11305,http://purl.obolibrary.org/obo/NCBITaxon_11305,none +12.7353408,NCBITaxon:145428,http://purl.obolibrary.org/obo/NCBITaxon_145428,none +12.7353408,NCBITaxon:1513299,http://purl.obolibrary.org/obo/NCBITaxon_1513299,none +12.7353408,NCBITaxon:216368,http://purl.obolibrary.org/obo/NCBITaxon_216368,none +12.7353408,NCBITaxon:37141,http://purl.obolibrary.org/obo/NCBITaxon_37141,none +12.7353408,NCBITaxon:500008,http://purl.obolibrary.org/obo/NCBITaxon_500008,none +12.7353408,NCBITaxon:5799,http://purl.obolibrary.org/obo/NCBITaxon_5799,Eimeriidae +12.7353408,NCBITaxon:696863,http://purl.obolibrary.org/obo/NCBITaxon_696863,none +12.7353408,NCBITaxon:74501,http://purl.obolibrary.org/obo/NCBITaxon_74501,none +12.7353408,NCBITaxon:84525,http://purl.obolibrary.org/obo/NCBITaxon_84525,none +12.7353408,PR:000001771,http://purl.obolibrary.org/obo/PR_000001771,TGF-beta-activated kinase 1 and MAP3K7-binding protein 3 +12.7353408,PR:000003243,http://purl.obolibrary.org/obo/PR_000003243,Y-box-binding protein 3 +12.7353408,PR:000003825,http://purl.obolibrary.org/obo/PR_000003825,cytosolic carboxypeptidase 3 +12.7353408,PR:000004290,http://purl.obolibrary.org/obo/PR_000004290,ADP-ribosylation factor-like protein 6 +12.7353408,PR:000005124,http://purl.obolibrary.org/obo/PR_000005124,cyclin-D1-binding protein 1 +12.7353408,PR:000005536,http://purl.obolibrary.org/obo/PR_000005536,chloride channel protein ClC-Kb +12.7353408,PR:000005603,http://purl.obolibrary.org/obo/PR_000005603,cleft lip and palate transmembrane protein 1-like protein +12.7353408,PR:000006144,http://purl.obolibrary.org/obo/PR_000006144,cytochrome P450 4V2 +12.7353408,PR:000006219,http://purl.obolibrary.org/obo/PR_000006219,none +12.7353408,PR:000007422,http://purl.obolibrary.org/obo/PR_000007422,F-box/WD repeat-containing protein 11 +12.7353408,PR:000007764,http://purl.obolibrary.org/obo/PR_000007764,GA-binding protein subunit beta-1 +12.7353408,PR:000007805,http://purl.obolibrary.org/obo/PR_000007805,cyclin-G-associated kinase +12.7353408,PR:000007869,http://purl.obolibrary.org/obo/PR_000007869,cytosolic beta-glucosidase +12.7353408,PR:000008082,http://purl.obolibrary.org/obo/PR_000008082,guanine nucleotide-binding protein subunit alpha-13 +12.7353408,PR:000008228,http://purl.obolibrary.org/obo/PR_000008228,gremlin-2 +12.7353408,PR:000008475,http://purl.obolibrary.org/obo/PR_000008475,MHC class I histocompatibility antigen protein P5 +12.7353408,PR:000008909,http://purl.obolibrary.org/obo/PR_000008909,interferon alpha-inducible protein 6 +12.7353408,PR:000009065,http://purl.obolibrary.org/obo/PR_000009065,insulin receptor-related protein +12.7353408,PR:000009333,http://purl.obolibrary.org/obo/PR_000009333,killer cell immunoglobulin-like receptor 2DS2 +12.7353408,PR:000009358,http://purl.obolibrary.org/obo/PR_000009358,krueppel-like factor 14 +12.7353408,PR:000010364,http://purl.obolibrary.org/obo/PR_000010364,microfibril-associated glycoprotein 4 +12.7353408,PR:000010724,http://purl.obolibrary.org/obo/PR_000010724,"bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial" +12.7353408,PR:000010840,http://purl.obolibrary.org/obo/PR_000010840,"myosin regulatory light chain 2, atrial isoform" +12.7353408,PR:000011321,http://purl.obolibrary.org/obo/PR_000011321,H/ACA ribonucleoprotein complex subunit 3 +12.7353408,PR:000012062,http://purl.obolibrary.org/obo/PR_000012062,protein odd-skipped-related 2 +12.7353408,PR:000012303,http://purl.obolibrary.org/obo/PR_000012303,alpha-parvin +12.7353408,PR:000012559,http://purl.obolibrary.org/obo/PR_000012559,peroxisomal membrane protein PEX13 +12.7353408,PR:000012989,http://purl.obolibrary.org/obo/PR_000012989,DNA-directed RNA polymerase II subunit RPB3 +12.7353408,PR:000013254,http://purl.obolibrary.org/obo/PR_000013254,protein arginine N-methyltransferase 3 +12.7353408,PR:000013771,http://purl.obolibrary.org/obo/PR_000013771,retinal homeobox protein Rx +12.7353408,PR:000014188,http://purl.obolibrary.org/obo/PR_000014188,60S ribosomal protein L10a +12.7353408,PR:000014309,http://purl.obolibrary.org/obo/PR_000014309,ribosomal RNA processing protein 1 homolog A +12.7353408,PR:000014934,http://purl.obolibrary.org/obo/PR_000014934,solute carrier family 13 member 2 +12.7353408,PR:000016338,http://purl.obolibrary.org/obo/PR_000016338,T cell immunoreceptor with Ig and ITIM domains +12.7353408,PR:000016770,http://purl.obolibrary.org/obo/PR_000016770,testis-specific serine/threonine-protein kinase 1 +12.7353408,PR:000017953,http://purl.obolibrary.org/obo/PR_000017953,zinc finger protein 521 +12.7353408,PR:000022110,http://purl.obolibrary.org/obo/PR_000022110,none +12.7353408,PR:000022345,http://purl.obolibrary.org/obo/PR_000022345,none +12.7353408,PR:000022429,http://purl.obolibrary.org/obo/PR_000022429,deoxyribose-phosphate aldolase DeoC +12.7353408,PR:000022690,http://purl.obolibrary.org/obo/PR_000022690,none +12.7353408,PR:000022717,http://purl.obolibrary.org/obo/PR_000022717,none +12.7353408,PR:000023200,http://purl.obolibrary.org/obo/PR_000023200,none +12.7353408,PR:000024105,http://purl.obolibrary.org/obo/PR_000024105,none +12.7353408,PR:000024152,http://purl.obolibrary.org/obo/PR_000024152,none +12.7353408,PR:000029571,http://purl.obolibrary.org/obo/PR_000029571,BTB/POZ domain-containing protein KCTD15 +12.7353408,PR:000029682,http://purl.obolibrary.org/obo/PR_000029682,putative phospholipase B-like 2 +12.7353408,PR:000032306,http://purl.obolibrary.org/obo/PR_000032306,calcium and integrin-binding family member 3 +12.7353408,PR:000032338,http://purl.obolibrary.org/obo/PR_000032338,VPS10 domain-containing receptor SorCS1 +12.7353408,PR:000033769,http://purl.obolibrary.org/obo/PR_000033769,none +12.7353408,PR:000034822,http://purl.obolibrary.org/obo/PR_000034822,none +12.7353408,PR:000035175,http://purl.obolibrary.org/obo/PR_000035175,none +12.7353408,PR:000035355,http://purl.obolibrary.org/obo/PR_000035355,none +12.7353408,PR:O14098,http://purl.obolibrary.org/obo/PR_O14098,none +12.7353408,PR:P17140,http://purl.obolibrary.org/obo/PR_P17140,none +12.7353408,PR:P17597,http://purl.obolibrary.org/obo/PR_P17597,none +12.7353408,PR:P42524,http://purl.obolibrary.org/obo/PR_P42524,none +12.7353408,PR:P62344,http://purl.obolibrary.org/obo/PR_P62344,none +12.7353408,PR:P69771,http://purl.obolibrary.org/obo/PR_P69771,none +12.7353408,PR:Q08112,http://purl.obolibrary.org/obo/PR_Q08112,none +12.7353408,PR:Q54EH2,http://purl.obolibrary.org/obo/PR_Q54EH2,none +12.7353408,PR:Q6DRI1,http://purl.obolibrary.org/obo/PR_Q6DRI1,none +12.7353408,PR:Q8L8A5,http://purl.obolibrary.org/obo/PR_Q8L8A5,none +12.7353408,PR:Q9CY02,http://purl.obolibrary.org/obo/PR_Q9CY02,none +12.7353408,PR:Q9DBD0,http://purl.obolibrary.org/obo/PR_Q9DBD0,none +12.7353408,PR:Q9M9V8,http://purl.obolibrary.org/obo/PR_Q9M9V8,none +12.7353408,PR:Q9S9N1,http://purl.obolibrary.org/obo/PR_Q9S9N1,none +12.7353408,PR:Q9WVA1,http://purl.obolibrary.org/obo/PR_Q9WVA1,none +12.7353408,PR:Q9XIE2,http://purl.obolibrary.org/obo/PR_Q9XIE2,none +12.7353408,UBERON:0001452,http://purl.obolibrary.org/obo/UBERON_0001452,distal tarsal bone 1 +12.7353408,UBERON:0002485,http://purl.obolibrary.org/obo/UBERON_0002485,prostate duct +12.7353408,UBERON:0003407,http://purl.obolibrary.org/obo/UBERON_0003407,cartilage of nasal septum +12.7353408,UBERON:0009041,http://purl.obolibrary.org/obo/UBERON_0009041,superficial circumflex iliac artery +12.7353408,UBERON:0010364,http://purl.obolibrary.org/obo/UBERON_0010364,dermal skeleton +12.7353408,UBERON:0010393,http://purl.obolibrary.org/obo/UBERON_0010393,T cell domain +12.7353408,UBERON:0010394,http://purl.obolibrary.org/obo/UBERON_0010394,lymphocyte domain +12.7353408,UBERON:0015102,http://purl.obolibrary.org/obo/UBERON_0015102,distal tarsal bone 1 endochondral element +12.7353408,UBERON:0016881,http://purl.obolibrary.org/obo/UBERON_0016881,craniopharyngeal canal +12.7353408,UBERON:0028715,http://purl.obolibrary.org/obo/UBERON_0028715,caudal anterior cingulate cortex +12.7353408,UBERON:2000228,http://purl.obolibrary.org/obo/UBERON_2000228,lateral line primordium +12.7353408,UBERON:3010515,http://purl.obolibrary.org/obo/UBERON_3010515,lateral vein +12.7501559,CHEBI:15882,http://purl.obolibrary.org/obo/CHEBI_15882,phenol +12.7501559,CHEBI:35344,http://purl.obolibrary.org/obo/CHEBI_35344,21-hydroxy steroid +12.7501559,CHEBI:38561,http://purl.obolibrary.org/obo/CHEBI_38561,fluvastatin +12.7501559,CHEBI:42191,http://purl.obolibrary.org/obo/CHEBI_42191,ethylenediaminetetraacetic acid +12.7501559,CHEBI:50526,http://purl.obolibrary.org/obo/CHEBI_50526,phenolate +12.7501559,CHEBI:60892,http://purl.obolibrary.org/obo/CHEBI_60892,polyamino carboxylic acid +12.7501559,CL:0002247,http://purl.obolibrary.org/obo/CL_0002247,pleural macrophage +12.7501559,CL:0002402,http://purl.obolibrary.org/obo/CL_0002402,Peyer's patch B cell +12.7501559,CL:0002499,http://purl.obolibrary.org/obo/CL_0002499,spongiotrophoblast cell +12.7501559,CL:0009014,http://purl.obolibrary.org/obo/CL_0009014,Peyer's patch lymphocyte +12.7501559,DRUGBANK:DB00025,http://purl.obolibrary.org/obo/DRUGBANK_DB00025,none +12.7501559,DRUGBANK:DB03961,http://purl.obolibrary.org/obo/DRUGBANK_DB03961,none +12.7501559,DRUGBANK:DB04441,http://purl.obolibrary.org/obo/DRUGBANK_DB04441,none +12.7501559,DRUGBANK:DB04456,http://purl.obolibrary.org/obo/DRUGBANK_DB04456,none +12.7501559,DRUGBANK:DB05424,http://purl.obolibrary.org/obo/DRUGBANK_DB05424,none +12.7501559,DRUGBANK:DB05455,http://purl.obolibrary.org/obo/DRUGBANK_DB05455,none +12.7501559,DRUGBANK:DB09041,http://purl.obolibrary.org/obo/DRUGBANK_DB09041,none +12.7501559,DRUGBANK:DB11062,http://purl.obolibrary.org/obo/DRUGBANK_DB11062,none +12.7501559,DRUGBANK:DB11230,http://purl.obolibrary.org/obo/DRUGBANK_DB11230,none +12.7501559,DRUGBANK:DB11907,http://purl.obolibrary.org/obo/DRUGBANK_DB11907,none +12.7501559,DRUGBANK:DB13257,http://purl.obolibrary.org/obo/DRUGBANK_DB13257,none +12.7501559,DRUGBANK:DB13434,http://purl.obolibrary.org/obo/DRUGBANK_DB13434,none +12.7501559,DRUGBANK:DB13733,http://purl.obolibrary.org/obo/DRUGBANK_DB13733,none +12.7501559,DRUGBANK:DB14042,http://purl.obolibrary.org/obo/DRUGBANK_DB14042,none +12.7501559,DRUGBANK:DB14187,http://purl.obolibrary.org/obo/DRUGBANK_DB14187,none +12.7501559,DRUGBANK:DB14643,http://purl.obolibrary.org/obo/DRUGBANK_DB14643,none +12.7501559,DRUGBANK:DB15117,http://purl.obolibrary.org/obo/DRUGBANK_DB15117,none +12.7501559,DRUGBANK:DB15565,http://purl.obolibrary.org/obo/DRUGBANK_DB15565,none +12.7501559,GO:0000932,http://purl.obolibrary.org/obo/GO_0000932,P-body +12.7501559,GO:0001909,http://purl.obolibrary.org/obo/GO_0001909,leukocyte mediated cytotoxicity +12.7501559,GO:0006984,http://purl.obolibrary.org/obo/GO_0006984,ER-nucleus signaling pathway +12.7501559,GO:0008078,http://purl.obolibrary.org/obo/GO_0008078,mesodermal cell migration +12.7501559,GO:0009219,http://purl.obolibrary.org/obo/GO_0009219,pyrimidine deoxyribonucleotide metabolic process +12.7501559,GO:0009697,http://purl.obolibrary.org/obo/GO_0009697,salicylic acid biosynthetic process +12.7501559,GO:0015056,http://purl.obolibrary.org/obo/GO_0015056,corticotrophin-releasing factor receptor activity +12.7501559,GO:0018195,http://purl.obolibrary.org/obo/GO_0018195,peptidyl-arginine modification +12.7501559,GO:0018874,http://purl.obolibrary.org/obo/GO_0018874,benzoate metabolic process +12.7501559,GO:0019135,http://purl.obolibrary.org/obo/GO_0019135,deoxyhypusine monooxygenase activity +12.7501559,GO:0032019,http://purl.obolibrary.org/obo/GO_0032019,mitochondrial cloud +12.7501559,GO:0033677,http://purl.obolibrary.org/obo/GO_0033677,DNA/RNA helicase activity +12.7501559,GO:0035634,http://purl.obolibrary.org/obo/GO_0035634,response to stilbenoid +12.7501559,GO:0035883,http://purl.obolibrary.org/obo/GO_0035883,enteroendocrine cell differentiation +12.7501559,GO:0039528,http://purl.obolibrary.org/obo/GO_0039528,cytoplasmic pattern recognition receptor signaling pathway in response to virus +12.7501559,GO:0045127,http://purl.obolibrary.org/obo/GO_0045127,N-acetylglucosamine kinase activity +12.7501559,GO:0045277,http://purl.obolibrary.org/obo/GO_0045277,respiratory chain complex IV +12.7501559,GO:0046112,http://purl.obolibrary.org/obo/GO_0046112,nucleobase biosynthetic process +12.7501559,GO:0050468,http://purl.obolibrary.org/obo/GO_0050468,reticuline oxidase activity +12.7501559,GO:0051132,http://purl.obolibrary.org/obo/GO_0051132,NK T cell activation +12.7501559,GO:0051195,http://purl.obolibrary.org/obo/GO_0051195,none +12.7501559,GO:0052636,http://purl.obolibrary.org/obo/GO_0052636,arabinosyltransferase activity +12.7501559,GO:0060180,http://purl.obolibrary.org/obo/GO_0060180,female mating behavior +12.7501559,GO:0098508,http://purl.obolibrary.org/obo/GO_0098508,endothelial to hematopoietic transition +12.7501559,GO:0099516,http://purl.obolibrary.org/obo/GO_0099516,none +12.7501559,GO:1902710,http://purl.obolibrary.org/obo/GO_1902710,GABA receptor complex +12.7501559,GO:1903544,http://purl.obolibrary.org/obo/GO_1903544,response to butyrate +12.7501559,HP:0001279,http://purl.obolibrary.org/obo/HP_0001279,Syncope +12.7501559,MONDO:0001420,http://purl.obolibrary.org/obo/MONDO_0001420,trigeminal nerve neoplasm +12.7501559,MONDO:0002569,http://purl.obolibrary.org/obo/MONDO_0002569,gastric dilatation +12.7501559,MONDO:0003951,http://purl.obolibrary.org/obo/MONDO_0003951,scrotal hemangioma +12.7501559,MONDO:0004271,http://purl.obolibrary.org/obo/MONDO_0004271,pregnancy adenoma +12.7501559,MONDO:0004633,http://purl.obolibrary.org/obo/MONDO_0004633,"Hodgkin's lymphoma, mixed cellularity" +12.7501559,MONDO:0005817,http://purl.obolibrary.org/obo/MONDO_0005817,Kluver-Bucy syndrome +12.7501559,MONDO:0005916,http://purl.obolibrary.org/obo/MONDO_0005916,placenta accreta +12.7501559,MONDO:0007495,http://purl.obolibrary.org/obo/MONDO_0007495,dystonia 5 +12.7501559,MONDO:0008042,http://purl.obolibrary.org/obo/MONDO_0008042,myoclonus and ataxia +12.7501559,MONDO:0008762,http://purl.obolibrary.org/obo/MONDO_0008762,autosomal recessive Alport syndrome +12.7501559,MONDO:0009039,http://purl.obolibrary.org/obo/MONDO_0009039,Baller-Gerold syndrome +12.7501559,MONDO:0009288,http://purl.obolibrary.org/obo/MONDO_0009288,glycogen storage disease Ib +12.7501559,MONDO:0012084,http://purl.obolibrary.org/obo/MONDO_0012084,aromatic L-amino acid decarboxylase deficiency +12.7501559,MONDO:0018104,http://purl.obolibrary.org/obo/MONDO_0018104,Torg-Winchester syndrome +12.7501559,MONDO:0019108,http://purl.obolibrary.org/obo/MONDO_0019108,silent sinus syndrome +12.7501559,MONDO:0019529,http://purl.obolibrary.org/obo/MONDO_0019529,radiation myelitis +12.7501559,MONDO:0020371,http://purl.obolibrary.org/obo/MONDO_0020371,essential iris atrophy +12.7501559,MONDO:0023171,http://purl.obolibrary.org/obo/MONDO_0023171,foix chavany Marie syndrome +12.7501559,MONDO:0024497,http://purl.obolibrary.org/obo/MONDO_0024497,"tumor grade 3 or 4, general grading system" +12.7501559,MONDO:0040676,http://purl.obolibrary.org/obo/MONDO_0040676,great vessel cancer +12.7501559,MONDO:0100184,http://purl.obolibrary.org/obo/MONDO_0100184,GTP cyclohydrolase I deficiency +12.7501559,NCBITaxon:128126,http://purl.obolibrary.org/obo/NCBITaxon_128126,none +12.7501559,NCBITaxon:196821,http://purl.obolibrary.org/obo/NCBITaxon_196821,none +12.7501559,NCBITaxon:32045,http://purl.obolibrary.org/obo/NCBITaxon_32045,none +12.7501559,NCBITaxon:45359,http://purl.obolibrary.org/obo/NCBITaxon_45359,none +12.7501559,NCBITaxon:570,http://purl.obolibrary.org/obo/NCBITaxon_570,Klebsiella +12.7501559,NCBITaxon:859912,http://purl.obolibrary.org/obo/NCBITaxon_859912,none +12.7501559,PR:000000792,http://purl.obolibrary.org/obo/PR_000000792,voltage-gated potassium channel KCNH3 +12.7501559,PR:000001611,http://purl.obolibrary.org/obo/PR_000001611,melatonin-related receptor +12.7501559,PR:000001696,http://purl.obolibrary.org/obo/PR_000001696,none +12.7501559,PR:000002099,http://purl.obolibrary.org/obo/PR_000002099,sodium channel protein type 3 subunit alpha +12.7501559,PR:000002115,http://purl.obolibrary.org/obo/PR_000002115,voltage-dependent L-type calcium channel subunit alpha-1F +12.7501559,PR:000004780,http://purl.obolibrary.org/obo/PR_000004780,BCL2/adenovirus E1B 19 kDa protein-interacting protein 2 +12.7501559,PR:000005249,http://purl.obolibrary.org/obo/PR_000005249,cadherin-8 +12.7501559,PR:000005471,http://purl.obolibrary.org/obo/PR_000005471,carbohydrate sulfotransferase 11 +12.7501559,PR:000005546,http://purl.obolibrary.org/obo/PR_000005546,claudin-19 +12.7501559,PR:000005833,http://purl.obolibrary.org/obo/PR_000005833,cleavage and polyadenylation specificity factor subunit 6 +12.7501559,PR:000006473,http://purl.obolibrary.org/obo/PR_000006473,ATP-dependent RNA helicase DHX8 +12.7501559,PR:000007225,http://purl.obolibrary.org/obo/PR_000007225,ETS translocation variant 3 +12.7501559,PR:000007638,http://purl.obolibrary.org/obo/PR_000007638,forkhead box protein N3 +12.7501559,PR:000007935,http://purl.obolibrary.org/obo/PR_000007935,gem-associated protein 6 +12.7501559,PR:000008218,http://purl.obolibrary.org/obo/PR_000008218,GRAM domain-containing protein 4 +12.7501559,PR:000008391,http://purl.obolibrary.org/obo/PR_000008391,none +12.7501559,PR:000008432,http://purl.obolibrary.org/obo/PR_000008432,"hydroxyacyl-coenzyme A dehydrogenase, mitochondrial" +12.7501559,PR:000008517,http://purl.obolibrary.org/obo/PR_000008517,transcription factor HES-3 +12.7501559,PR:000008774,http://purl.obolibrary.org/obo/PR_000008774,3-hydroxyacyl-CoA dehydrogenase type-2 +12.7501559,PR:000008819,http://purl.obolibrary.org/obo/PR_000008819,heat shock protein beta-7 +12.7501559,PR:000009117,http://purl.obolibrary.org/obo/PR_000009117,insulin gene enhancer protein ISL-2 +12.7501559,PR:000009391,http://purl.obolibrary.org/obo/PR_000009391,kelch-like protein 3 +12.7501559,PR:000010119,http://purl.obolibrary.org/obo/PR_000010119,microtubule-associated proteins 1A/1B light chain 3A +12.7501559,PR:000010203,http://purl.obolibrary.org/obo/PR_000010203,methionine adenosyltransferase 2 subunit beta +12.7501559,PR:000010544,http://purl.obolibrary.org/obo/PR_000010544,55 kDa erythrocyte membrane protein +12.7501559,PR:000011002,http://purl.obolibrary.org/obo/PR_000011002,N-alpha-acetyltransferase 20 +12.7501559,PR:000012193,http://purl.obolibrary.org/obo/PR_000012193,P2X purinoceptor 6 +12.7501559,PR:000012263,http://purl.obolibrary.org/obo/PR_000012263,poly(A) RNA polymerase GLD2 +12.7501559,PR:000012293,http://purl.obolibrary.org/obo/PR_000012293,protein mono-ADP-ribosyltransferase PARP14 +12.7501559,PR:000012967,http://purl.obolibrary.org/obo/PR_000012967,polymerase delta-interacting protein 2 +12.7501559,PR:000013095,http://purl.obolibrary.org/obo/PR_000013095,protein phosphatase 1G +12.7501559,PR:000013142,http://purl.obolibrary.org/obo/PR_000013142,serine/threonine-protein phosphatase 2A regulatory subunit B' +12.7501559,PR:000013207,http://purl.obolibrary.org/obo/PR_000013207,proteoglycan 3 +12.7501559,PR:000013610,http://purl.obolibrary.org/obo/PR_000013610,Ras-related protein Rab-34 +12.7501559,PR:000013863,http://purl.obolibrary.org/obo/PR_000013863,receptor expression-enhancing protein 1 +12.7501559,PR:000013911,http://purl.obolibrary.org/obo/PR_000013911,riboflavin kinase +12.7501559,PR:000014149,http://purl.obolibrary.org/obo/PR_000014149,RNA-binding protein with serine-rich domain 1 +12.7501559,PR:000014463,http://purl.obolibrary.org/obo/PR_000014463,SAM and SH3 domain-containing protein 1 +12.7501559,PR:000014545,http://purl.obolibrary.org/obo/PR_000014545,"signal peptide, CUB and EGF-like domain-containing protein 1" +12.7501559,PR:000015355,http://purl.obolibrary.org/obo/PR_000015355,snurportin-1 +12.7501559,PR:000015622,http://purl.obolibrary.org/obo/PR_000015622,tyrosine-protein kinase Srms +12.7501559,PR:000016820,http://purl.obolibrary.org/obo/PR_000016820,tubulin beta-4A chain +12.7501559,PR:000017417,http://purl.obolibrary.org/obo/PR_000017417,whirlin +12.7501559,PR:000022134,http://purl.obolibrary.org/obo/PR_000022134,none +12.7501559,PR:000022634,http://purl.obolibrary.org/obo/PR_000022634,none +12.7501559,PR:000023818,http://purl.obolibrary.org/obo/PR_000023818,none +12.7501559,PR:000023973,http://purl.obolibrary.org/obo/PR_000023973,none +12.7501559,PR:000024239,http://purl.obolibrary.org/obo/PR_000024239,none +12.7501559,PR:000026999,http://purl.obolibrary.org/obo/PR_000026999,microtubule-associated protein tau isoform Tau-F +12.7501559,PR:000029612,http://purl.obolibrary.org/obo/PR_000029612,leucine-rich repeat and WD repeat-containing protein 1 +12.7501559,PR:000031979,http://purl.obolibrary.org/obo/PR_000031979,KAT8 regulatory NSL complex subunit 1 +12.7501559,PR:000032670,http://purl.obolibrary.org/obo/PR_000032670,V-set and immunoglobulin domain-containing protein 2 +12.7501559,PR:000034045,http://purl.obolibrary.org/obo/PR_000034045,none +12.7501559,PR:O22812,http://purl.obolibrary.org/obo/PR_O22812,none +12.7501559,PR:O82504,http://purl.obolibrary.org/obo/PR_O82504,none +12.7501559,PR:P16909,http://purl.obolibrary.org/obo/PR_P16909,none +12.7501559,PR:P91645,http://purl.obolibrary.org/obo/PR_P91645,none +12.7501559,PR:P92937,http://purl.obolibrary.org/obo/PR_P92937,none +12.7501559,PR:Q071E0,http://purl.obolibrary.org/obo/PR_Q071E0,none +12.7501559,PR:Q17370,http://purl.obolibrary.org/obo/PR_Q17370,none +12.7501559,PR:Q1PRL4,http://purl.obolibrary.org/obo/PR_Q1PRL4,none +12.7501559,PR:Q923Y7,http://purl.obolibrary.org/obo/PR_Q923Y7,none +12.7501559,PR:Q9H1Z8,http://purl.obolibrary.org/obo/PR_Q9H1Z8,augurin (human) +12.7501559,PR:Q9IA95,http://purl.obolibrary.org/obo/PR_Q9IA95,none +12.7501559,PR:Q9LZM8,http://purl.obolibrary.org/obo/PR_Q9LZM8,none +12.7501559,SO:0000320,http://purl.obolibrary.org/obo/SO_0000320,intronic_splice_enhancer +12.7501559,SO:0000500,http://purl.obolibrary.org/obo/SO_0000500,Hoogsteen_base_pair +12.7501559,SO:0002137,http://purl.obolibrary.org/obo/SO_0002137,TR_V_Gene +12.7501559,SO:1000038,http://purl.obolibrary.org/obo/SO_1000038,intrachromosomal_duplication +12.7501559,UBERON:0001274,http://purl.obolibrary.org/obo/UBERON_0001274,ischium +12.7501559,UBERON:0003262,http://purl.obolibrary.org/obo/UBERON_0003262,amniotic mesoderm +12.7501559,UBERON:0003890,http://purl.obolibrary.org/obo/UBERON_0003890,Mullerian duct +12.7501559,UBERON:0004024,http://purl.obolibrary.org/obo/UBERON_0004024,medial ganglionic eminence +12.7501559,UBERON:0005732,http://purl.obolibrary.org/obo/UBERON_0005732,paired limb/fin field +12.7501559,UBERON:0006562,http://purl.obolibrary.org/obo/UBERON_0006562,pharynx +12.7501559,UBERON:0010271,http://purl.obolibrary.org/obo/UBERON_0010271,musculus retractor bulbi +12.7501559,UBERON:0012176,http://purl.obolibrary.org/obo/UBERON_0012176,comb +12.7501559,UBERON:0014725,http://purl.obolibrary.org/obo/UBERON_0014725,intercalated duct +12.7501559,UBERON:0015056,http://purl.obolibrary.org/obo/UBERON_0015056,ischial endochondral element +12.7501559,UBERON:0018538,http://purl.obolibrary.org/obo/UBERON_0018538,breast feather +12.7501559,UBERON:0022272,http://purl.obolibrary.org/obo/UBERON_0022272,corticobulbar tract +12.7501559,UBERON:0022943,http://purl.obolibrary.org/obo/UBERON_0022943,reticulospinal tract +12.7501559,UBERON:3010031,http://purl.obolibrary.org/obo/UBERON_3010031,ventral glands +12.7651937,CHEBI:16811,http://purl.obolibrary.org/obo/CHEBI_16811,methionine +12.7651937,CHEBI:35346,http://purl.obolibrary.org/obo/CHEBI_35346,11beta-hydroxy steroid +12.7651937,CL:0000494,http://purl.obolibrary.org/obo/CL_0000494,UV sensitive photoreceptor cell +12.7651937,CL:0002335,http://purl.obolibrary.org/obo/CL_0002335,brown preadipocyte +12.7651937,DRUGBANK:DB00298,http://purl.obolibrary.org/obo/DRUGBANK_DB00298,none +12.7651937,DRUGBANK:DB00846,http://purl.obolibrary.org/obo/DRUGBANK_DB00846,none +12.7651937,DRUGBANK:DB01450,http://purl.obolibrary.org/obo/DRUGBANK_DB01450,none +12.7651937,DRUGBANK:DB02601,http://purl.obolibrary.org/obo/DRUGBANK_DB02601,none +12.7651937,DRUGBANK:DB04196,http://purl.obolibrary.org/obo/DRUGBANK_DB04196,none +12.7651937,DRUGBANK:DB04582,http://purl.obolibrary.org/obo/DRUGBANK_DB04582,none +12.7651937,DRUGBANK:DB04701,http://purl.obolibrary.org/obo/DRUGBANK_DB04701,none +12.7651937,DRUGBANK:DB04870,http://purl.obolibrary.org/obo/DRUGBANK_DB04870,none +12.7651937,DRUGBANK:DB06014,http://purl.obolibrary.org/obo/DRUGBANK_DB06014,none +12.7651937,DRUGBANK:DB06510,http://purl.obolibrary.org/obo/DRUGBANK_DB06510,none +12.7651937,DRUGBANK:DB07340,http://purl.obolibrary.org/obo/DRUGBANK_DB07340,none +12.7651937,DRUGBANK:DB09018,http://purl.obolibrary.org/obo/DRUGBANK_DB09018,none +12.7651937,DRUGBANK:DB10686,http://purl.obolibrary.org/obo/DRUGBANK_DB10686,none +12.7651937,DRUGBANK:DB11064,http://purl.obolibrary.org/obo/DRUGBANK_DB11064,none +12.7651937,DRUGBANK:DB12371,http://purl.obolibrary.org/obo/DRUGBANK_DB12371,none +12.7651937,DRUGBANK:DB13197,http://purl.obolibrary.org/obo/DRUGBANK_DB13197,none +12.7651937,DRUGBANK:DB13315,http://purl.obolibrary.org/obo/DRUGBANK_DB13315,none +12.7651937,DRUGBANK:DB14075,http://purl.obolibrary.org/obo/DRUGBANK_DB14075,none +12.7651937,GO:0000052,http://purl.obolibrary.org/obo/GO_0000052,citrulline metabolic process +12.7651937,GO:0002070,http://purl.obolibrary.org/obo/GO_0002070,epithelial cell maturation +12.7651937,GO:0003723,http://purl.obolibrary.org/obo/GO_0003723,RNA binding +12.7651937,GO:0004782,http://purl.obolibrary.org/obo/GO_0004782,sulfinoalanine decarboxylase activity +12.7651937,GO:0006679,http://purl.obolibrary.org/obo/GO_0006679,glucosylceramide biosynthetic process +12.7651937,GO:0008455,http://purl.obolibrary.org/obo/GO_0008455,"alpha-1,6-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity" +12.7651937,GO:0010555,http://purl.obolibrary.org/obo/GO_0010555,response to mannitol +12.7651937,GO:0016011,http://purl.obolibrary.org/obo/GO_0016011,dystroglycan complex +12.7651937,GO:0016558,http://purl.obolibrary.org/obo/GO_0016558,protein import into peroxisome matrix +12.7651937,GO:0016630,http://purl.obolibrary.org/obo/GO_0016630,protochlorophyllide reductase activity +12.7651937,GO:0030335,http://purl.obolibrary.org/obo/GO_0030335,positive regulation of cell migration +12.7651937,GO:0033197,http://purl.obolibrary.org/obo/GO_0033197,response to vitamin E +12.7651937,GO:0034766,http://purl.obolibrary.org/obo/GO_0034766,negative regulation of ion transmembrane transport +12.7651937,GO:0046343,http://purl.obolibrary.org/obo/GO_0046343,streptomycin metabolic process +12.7651937,GO:0046530,http://purl.obolibrary.org/obo/GO_0046530,photoreceptor cell differentiation +12.7651937,GO:0046697,http://purl.obolibrary.org/obo/GO_0046697,decidualization +12.7651937,GO:0050734,http://purl.obolibrary.org/obo/GO_0050734,hydroxycinnamoyltransferase activity +12.7651937,GO:0050805,http://purl.obolibrary.org/obo/GO_0050805,negative regulation of synaptic transmission +12.7651937,GO:0052657,http://purl.obolibrary.org/obo/GO_0052657,guanine phosphoribosyltransferase activity +12.7651937,GO:0061193,http://purl.obolibrary.org/obo/GO_0061193,taste bud development +12.7651937,GO:0098742,http://purl.obolibrary.org/obo/GO_0098742,cell-cell adhesion via plasma-membrane adhesion molecules +12.7651937,GO:0140323,http://purl.obolibrary.org/obo/GO_0140323,solute:anion antiporter activity +12.7651937,GO:1900749,http://purl.obolibrary.org/obo/GO_1900749,(R)-carnitine transport +12.7651937,GO:1901175,http://purl.obolibrary.org/obo/GO_1901175,lycopene metabolic process +12.7651937,GO:1901441,http://purl.obolibrary.org/obo/GO_1901441,poly(hydroxyalkanoate) biosynthetic process +12.7651937,GO:1903305,http://purl.obolibrary.org/obo/GO_1903305,regulation of regulated secretory pathway +12.7651937,GO:1990256,http://purl.obolibrary.org/obo/GO_1990256,signal clustering +12.7651937,GO:1990504,http://purl.obolibrary.org/obo/GO_1990504,dense core granule exocytosis +12.7651937,GO:2001212,http://purl.obolibrary.org/obo/GO_2001212,regulation of vasculogenesis +12.7651937,HP:0001557,http://purl.obolibrary.org/obo/HP_0001557,Prenatal movement abnormality +12.7651937,HP:0004332,http://purl.obolibrary.org/obo/HP_0004332,Abnormal lymphocyte morphology +12.7651937,MONDO:0000286,http://purl.obolibrary.org/obo/MONDO_0000286,Epstein-Barr virus hepatitis +12.7651937,MONDO:0002840,http://purl.obolibrary.org/obo/MONDO_0002840,eosinophilic gastritis +12.7651937,MONDO:0003464,http://purl.obolibrary.org/obo/MONDO_0003464,cystadenofibroma +12.7651937,MONDO:0004312,http://purl.obolibrary.org/obo/MONDO_0004312,suprasellar meningioma +12.7651937,MONDO:0005918,http://purl.obolibrary.org/obo/MONDO_0005918,placenta praevia +12.7651937,MONDO:0006898,http://purl.obolibrary.org/obo/MONDO_0006898,periarthritis +12.7651937,MONDO:0007525,http://purl.obolibrary.org/obo/MONDO_0007525,"Ehlers-Danlos syndrome, arthrochalasis type" +12.7651937,MONDO:0007621,http://purl.obolibrary.org/obo/MONDO_0007621,floating-Harbor syndrome +12.7651937,MONDO:0007846,http://purl.obolibrary.org/obo/MONDO_0007846,KBG syndrome +12.7651937,MONDO:0008332,http://purl.obolibrary.org/obo/MONDO_0008332,pseudo-von Willebrand disease +12.7651937,MONDO:0008582,http://purl.obolibrary.org/obo/MONDO_0008582,tooth and nail syndrome +12.7651937,MONDO:0009797,http://purl.obolibrary.org/obo/MONDO_0009797,orotic aciduria +12.7651937,MONDO:0011514,http://purl.obolibrary.org/obo/MONDO_0011514,tricuspid atresia +12.7651937,MONDO:0011706,http://purl.obolibrary.org/obo/MONDO_0011706,Kufor-Rakeb syndrome +12.7651937,MONDO:0011781,http://purl.obolibrary.org/obo/MONDO_0011781,spinocerebellar ataxia type 17 +12.7651937,MONDO:0015415,http://purl.obolibrary.org/obo/MONDO_0015415,oblique facial cleft +12.7651937,MONDO:0015843,http://purl.obolibrary.org/obo/MONDO_0015843,uterine hypoplasia +12.7651937,MONDO:0016925,http://purl.obolibrary.org/obo/MONDO_0016925,partial trisomy/tetrasomy of chromosome 5 +12.7651937,MONDO:0018671,http://purl.obolibrary.org/obo/MONDO_0018671,IgG4-related kidney disease +12.7651937,MONDO:0019152,http://purl.obolibrary.org/obo/MONDO_0019152,Oguchi disease +12.7651937,MONDO:0020341,http://purl.obolibrary.org/obo/MONDO_0020341,periventricular nodular heterotopia +12.7651937,MONDO:0021157,http://purl.obolibrary.org/obo/MONDO_0021157,gonococcal cervicitis +12.7651937,MONDO:0021339,http://purl.obolibrary.org/obo/MONDO_0021339,carcinoma of hard palate +12.7651937,MONDO:0021390,http://purl.obolibrary.org/obo/MONDO_0021390,polyp of ureter +12.7651937,MONDO:0024651,http://purl.obolibrary.org/obo/MONDO_0024651,corticosteroid-induced osteoporosis +12.7651937,NCBITaxon:10911,http://purl.obolibrary.org/obo/NCBITaxon_10911,Coltivirus +12.7651937,NCBITaxon:12169,http://purl.obolibrary.org/obo/NCBITaxon_12169,none +12.7651937,NCBITaxon:12202,http://purl.obolibrary.org/obo/NCBITaxon_12202,none +12.7651937,NCBITaxon:172314,http://purl.obolibrary.org/obo/NCBITaxon_172314,none +12.7651937,NCBITaxon:186633,http://purl.obolibrary.org/obo/NCBITaxon_186633,none +12.7651937,NCBITaxon:1903411,http://purl.obolibrary.org/obo/NCBITaxon_1903411,Yersiniaceae +12.7651937,NCBITaxon:198601,http://purl.obolibrary.org/obo/NCBITaxon_198601,none +12.7651937,NCBITaxon:28347,http://purl.obolibrary.org/obo/NCBITaxon_28347,none +12.7651937,NCBITaxon:29140,http://purl.obolibrary.org/obo/NCBITaxon_29140,none +12.7651937,NCBITaxon:6099,http://purl.obolibrary.org/obo/NCBITaxon_6099,none +12.7651937,PR:000001294,http://purl.obolibrary.org/obo/PR_000001294,C-type lectin domain family 4 member M +12.7651937,PR:000001319,http://purl.obolibrary.org/obo/PR_000001319,SLAM family member 5 +12.7651937,PR:000001618,http://purl.obolibrary.org/obo/PR_000001618,neuromedin-U receptor 1 +12.7651937,PR:000003199,http://purl.obolibrary.org/obo/PR_000003199,calcium/calmodulin-dependent protein kinase type II subunit alpha +12.7651937,PR:000003633,http://purl.obolibrary.org/obo/PR_000003633,acyl-coenzyme A thioesterase 1 +12.7651937,PR:000003735,http://purl.obolibrary.org/obo/PR_000003735,a disintegrin and metalloproteinase with thrombospondin motifs 7 +12.7651937,PR:000003839,http://purl.obolibrary.org/obo/PR_000003839,glycerol-3-phosphate acyltransferase 4 +12.7651937,PR:000003880,http://purl.obolibrary.org/obo/PR_000003880,"GTP:AMP phosphotransferase, mitochondrial" +12.7651937,PR:000004014,http://purl.obolibrary.org/obo/PR_000004014,anaphase-promoting complex subunit 11 +12.7651937,PR:000004404,http://purl.obolibrary.org/obo/PR_000004404,cyclic AMP-dependent transcription factor ATF-7 +12.7651937,PR:000005024,http://purl.obolibrary.org/obo/PR_000005024,caprin-1 +12.7651937,PR:000005279,http://purl.obolibrary.org/obo/PR_000005279,cyclin-dependent kinase 4 inhibitor D +12.7651937,PR:000005282,http://purl.obolibrary.org/obo/PR_000005282,cell adhesion molecule-related/down-regulated by oncogenes +12.7651937,PR:000005535,http://purl.obolibrary.org/obo/PR_000005535,chloride channel protein ClC-Ka +12.7651937,PR:000005723,http://purl.obolibrary.org/obo/PR_000005723,collagen alpha-2(IX) chain +12.7651937,PR:000005966,http://purl.obolibrary.org/obo/PR_000005966,cystatin-S +12.7651937,PR:000006091,http://purl.obolibrary.org/obo/PR_000006091,cytoplasmic FMR1-interacting protein 2 +12.7651937,PR:000007045,http://purl.obolibrary.org/obo/PR_000007045,elongator complex protein 4 +12.7651937,PR:000007241,http://purl.obolibrary.org/obo/PR_000007241,homeobox even-skipped homolog protein 1 +12.7651937,PR:000007332,http://purl.obolibrary.org/obo/PR_000007332,Fanconi anemia group C protein +12.7651937,PR:000007378,http://purl.obolibrary.org/obo/PR_000007378,F-box/LRR-repeat protein 2 +12.7651937,PR:000007697,http://purl.obolibrary.org/obo/PR_000007697,tissue alpha-L-fucosidase +12.7651937,PR:000007915,http://purl.obolibrary.org/obo/PR_000007915,glycerophosphodiester phosphodiesterase 1 +12.7651937,PR:000008079,http://purl.obolibrary.org/obo/PR_000008079,GMP synthase [glutamine-hydrolyzing] +12.7651937,PR:000008602,http://purl.obolibrary.org/obo/PR_000008602,histone H3.1t +12.7651937,PR:000008997,http://purl.obolibrary.org/obo/PR_000008997,interleukin-20 receptor subunit beta +12.7651937,PR:000009037,http://purl.obolibrary.org/obo/PR_000009037,inhibitor of growth protein 5 +12.7651937,PR:000009091,http://purl.obolibrary.org/obo/PR_000009091,importin-9 +12.7651937,PR:000009248,http://purl.obolibrary.org/obo/PR_000009248,kelch-like protein 41 +12.7651937,PR:000010020,http://purl.obolibrary.org/obo/PR_000010020,leucine-zipper-like transcriptional regulator 1 +12.7651937,PR:000010074,http://purl.obolibrary.org/obo/PR_000010074,melanoma-associated antigen C3 +12.7651937,PR:000010250,http://purl.obolibrary.org/obo/PR_000010250,DNA helicase MCM8 +12.7651937,PR:000010458,http://purl.obolibrary.org/obo/PR_000010458,Max-like protein X +12.7651937,PR:000011124,http://purl.obolibrary.org/obo/PR_000011124,endonuclease 8-like 3 +12.7651937,PR:000011204,http://purl.obolibrary.org/obo/PR_000011204,Nance-Horan syndrome protein +12.7651937,PR:000011477,http://purl.obolibrary.org/obo/PR_000011477,cytosolic Fe-S cluster assembly factor NUBP2 +12.7651937,PR:000012409,http://purl.obolibrary.org/obo/PR_000012409,pre-mRNA cleavage complex 2 protein Pcf11 +12.7651937,PR:000013138,http://purl.obolibrary.org/obo/PR_000013138,serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B delta isoform +12.7651937,PR:000013216,http://purl.obolibrary.org/obo/PR_000013216,DNA primase large subunit +12.7651937,PR:000013515,http://purl.obolibrary.org/obo/PR_000013515,"pyrroline-5-carboxylate reductase 1, mitochondrial" +12.7651937,PR:000014342,http://purl.obolibrary.org/obo/PR_000014342,rhotekin +12.7651937,PR:000014508,http://purl.obolibrary.org/obo/PR_000014508,secretoglobin family 1D member 4 +12.7651937,PR:000015002,http://purl.obolibrary.org/obo/PR_000015002,sodium/potassium/calcium exchanger 5 +12.7651937,PR:000015075,http://purl.obolibrary.org/obo/PR_000015075,zinc transporter 2 +12.7651937,PR:000015159,http://purl.obolibrary.org/obo/PR_000015159,anion exchange protein 3 +12.7651937,PR:000015163,http://purl.obolibrary.org/obo/PR_000015163,electroneutral sodium bicarbonate exchanger 1 +12.7651937,PR:000015811,http://purl.obolibrary.org/obo/PR_000015811,"succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial" +12.7651937,PR:000015928,http://purl.obolibrary.org/obo/PR_000015928,none +12.7651937,PR:000016812,http://purl.obolibrary.org/obo/PR_000016812,tubulin alpha-4A chain +12.7651937,PR:000017115,http://purl.obolibrary.org/obo/PR_000017115,uroplakin-3a +12.7651937,PR:000022192,http://purl.obolibrary.org/obo/PR_000022192,none +12.7651937,PR:000023221,http://purl.obolibrary.org/obo/PR_000023221,none +12.7651937,PR:000023357,http://purl.obolibrary.org/obo/PR_000023357,nitrate/nitrite response regulator protein NarP +12.7651937,PR:000023901,http://purl.obolibrary.org/obo/PR_000023901,none +12.7651937,PR:000031817,http://purl.obolibrary.org/obo/PR_000031817,methyl-CpG-binding domain protein 5 +12.7651937,PR:000032023,http://purl.obolibrary.org/obo/PR_000032023,butyrophilin subfamily 3 member A2 +12.7651937,PR:000032601,http://purl.obolibrary.org/obo/PR_000032601,Fanconi-associated nuclease 1 +12.7651937,PR:F4JYC8,http://purl.obolibrary.org/obo/PR_F4JYC8,none +12.7651937,PR:O22781,http://purl.obolibrary.org/obo/PR_O22781,none +12.7651937,PR:P03247-1,http://purl.obolibrary.org/obo/PR_P03247-1,none +12.7651937,PR:P04778,http://purl.obolibrary.org/obo/PR_P04778,none +12.7651937,PR:P12729,http://purl.obolibrary.org/obo/PR_P12729,none +12.7651937,PR:P30224,http://purl.obolibrary.org/obo/PR_P30224,none +12.7651937,PR:P53844,http://purl.obolibrary.org/obo/PR_P53844,none +12.7651937,PR:P54201,http://purl.obolibrary.org/obo/PR_P54201,none +12.7651937,PR:P70032,http://purl.obolibrary.org/obo/PR_P70032,none +12.7651937,PR:P87314,http://purl.obolibrary.org/obo/PR_P87314,none +12.7651937,PR:Q04632,http://purl.obolibrary.org/obo/PR_Q04632,none +12.7651937,PR:Q84W55,http://purl.obolibrary.org/obo/PR_Q84W55,none +12.7651937,PR:Q8S8F9,http://purl.obolibrary.org/obo/PR_Q8S8F9,none +12.7651937,PR:Q94JQ6,http://purl.obolibrary.org/obo/PR_Q94JQ6,none +12.7651937,PR:Q9DFZ3,http://purl.obolibrary.org/obo/PR_Q9DFZ3,none +12.7651937,PR:Q9FYH1,http://purl.obolibrary.org/obo/PR_Q9FYH1,none +12.7651937,PR:Q9SNB4,http://purl.obolibrary.org/obo/PR_Q9SNB4,none +12.7651937,SO:0000313,http://purl.obolibrary.org/obo/SO_0000313,stem_loop +12.7651937,UBERON:0000927,http://purl.obolibrary.org/obo/UBERON_0000927,mesectoderm +12.7651937,UBERON:0001307,http://purl.obolibrary.org/obo/UBERON_0001307,capsule of ovary +12.7651937,UBERON:0001959,http://purl.obolibrary.org/obo/UBERON_0001959,white pulp of spleen +12.7651937,UBERON:0002508,http://purl.obolibrary.org/obo/UBERON_0002508,celiac lymph node +12.7651937,UBERON:0004011,http://purl.obolibrary.org/obo/UBERON_0004011,secondary muscle spindle +12.7651937,UBERON:0004888,http://purl.obolibrary.org/obo/UBERON_0004888,right lung hilus +12.7651937,UBERON:0005733,http://purl.obolibrary.org/obo/UBERON_0005733,limb field +12.7651937,UBERON:0005921,http://purl.obolibrary.org/obo/UBERON_0005921,middle nasal concha +12.7651937,UBERON:0006002,http://purl.obolibrary.org/obo/UBERON_0006002,vitelline artery +12.7651937,UBERON:0007804,http://purl.obolibrary.org/obo/UBERON_0007804,sclerotic ring +12.7651937,UBERON:0008597,http://purl.obolibrary.org/obo/UBERON_0008597,depressor anguli oris muscle +12.7651937,UBERON:0013475,http://purl.obolibrary.org/obo/UBERON_0013475,gustatory gland +12.7651937,UBERON:0014477,http://purl.obolibrary.org/obo/UBERON_0014477,thoracic skeleton +12.7651937,UBERON:0022283,http://purl.obolibrary.org/obo/UBERON_0022283,pineal recess of third ventricle +12.7651937,UBERON:0034964,http://purl.obolibrary.org/obo/UBERON_0034964,superficial epigastric artery +12.7804612,CHEBI:132539,http://purl.obolibrary.org/obo/CHEBI_132539,fatty acid 20:4 +12.7804612,CHEBI:15843,http://purl.obolibrary.org/obo/CHEBI_15843,arachidonic acid +12.7804612,CHEBI:22507,http://purl.obolibrary.org/obo/CHEBI_22507,aminoglycoside antibiotic +12.7804612,CHEBI:25527,http://purl.obolibrary.org/obo/CHEBI_25527,nicotinamide nucleotide +12.7804612,CHEBI:32678,http://purl.obolibrary.org/obo/CHEBI_32678,glutaminate +12.7804612,CHEBI:32875,http://purl.obolibrary.org/obo/CHEBI_32875,methyl group +12.7804612,CHEBI:36033,http://purl.obolibrary.org/obo/CHEBI_36033,icosatetraenoic acid +12.7804612,CHEBI:36306,http://purl.obolibrary.org/obo/CHEBI_36306,"icosa-5,8,11,14-tetraenoic acid" +12.7804612,CHEBI:50826,http://purl.obolibrary.org/obo/CHEBI_50826,silver nanoparticle +12.7804612,CHEBI:5494,http://purl.obolibrary.org/obo/CHEBI_5494,ritropirronium bromide +12.7804612,CL:0000772,http://purl.obolibrary.org/obo/CL_0000772,immature eosinophil +12.7804612,CL:0002036,http://purl.obolibrary.org/obo/CL_0002036,Slamf1-positive multipotent progenitor cell +12.7804612,DRUGBANK:DB00616,http://purl.obolibrary.org/obo/DRUGBANK_DB00616,none +12.7804612,DRUGBANK:DB01084,http://purl.obolibrary.org/obo/DRUGBANK_DB01084,none +12.7804612,DRUGBANK:DB03680,http://purl.obolibrary.org/obo/DRUGBANK_DB03680,none +12.7804612,DRUGBANK:DB03741,http://purl.obolibrary.org/obo/DRUGBANK_DB03741,none +12.7804612,DRUGBANK:DB04410,http://purl.obolibrary.org/obo/DRUGBANK_DB04410,none +12.7804612,DRUGBANK:DB06419,http://purl.obolibrary.org/obo/DRUGBANK_DB06419,none +12.7804612,DRUGBANK:DB06536,http://purl.obolibrary.org/obo/DRUGBANK_DB06536,none +12.7804612,DRUGBANK:DB08230,http://purl.obolibrary.org/obo/DRUGBANK_DB08230,none +12.7804612,DRUGBANK:DB08811,http://purl.obolibrary.org/obo/DRUGBANK_DB08811,none +12.7804612,DRUGBANK:DB11095,http://purl.obolibrary.org/obo/DRUGBANK_DB11095,none +12.7804612,DRUGBANK:DB11285,http://purl.obolibrary.org/obo/DRUGBANK_DB11285,none +12.7804612,DRUGBANK:DB11779,http://purl.obolibrary.org/obo/DRUGBANK_DB11779,none +12.7804612,DRUGBANK:DB11827,http://purl.obolibrary.org/obo/DRUGBANK_DB11827,none +12.7804612,DRUGBANK:DB15420,http://purl.obolibrary.org/obo/DRUGBANK_DB15420,none +12.7804612,DRUGBANK:DB15547,http://purl.obolibrary.org/obo/DRUGBANK_DB15547,none +12.7804612,DRUGBANK:DB15830,http://purl.obolibrary.org/obo/DRUGBANK_DB15830,none +12.7804612,GO:0002094,http://purl.obolibrary.org/obo/GO_0002094,polyprenyltransferase activity +12.7804612,GO:0009908,http://purl.obolibrary.org/obo/GO_0009908,flower development +12.7804612,GO:0009973,http://purl.obolibrary.org/obo/GO_0009973,adenylyl-sulfate reductase activity +12.7804612,GO:0010837,http://purl.obolibrary.org/obo/GO_0010837,regulation of keratinocyte proliferation +12.7804612,GO:0015939,http://purl.obolibrary.org/obo/GO_0015939,pantothenate metabolic process +12.7804612,GO:0019374,http://purl.obolibrary.org/obo/GO_0019374,galactolipid metabolic process +12.7804612,GO:0019872,http://purl.obolibrary.org/obo/GO_0019872,streptomycin biosynthetic process +12.7804612,GO:0032413,http://purl.obolibrary.org/obo/GO_0032413,negative regulation of ion transmembrane transporter activity +12.7804612,GO:0033583,http://purl.obolibrary.org/obo/GO_0033583,rhabdomere membrane +12.7804612,GO:0035120,http://purl.obolibrary.org/obo/GO_0035120,post-embryonic appendage morphogenesis +12.7804612,GO:0035627,http://purl.obolibrary.org/obo/GO_0035627,ceramide transport +12.7804612,GO:0036020,http://purl.obolibrary.org/obo/GO_0036020,endolysosome membrane +12.7804612,GO:0036253,http://purl.obolibrary.org/obo/GO_0036253,response to amiloride +12.7804612,GO:0042454,http://purl.obolibrary.org/obo/GO_0042454,ribonucleoside catabolic process +12.7804612,GO:0042619,http://purl.obolibrary.org/obo/GO_0042619,poly-hydroxybutyrate biosynthetic process +12.7804612,GO:0044111,http://purl.obolibrary.org/obo/GO_0044111,formation of structure involved in a symbiotic process +12.7804612,GO:0046083,http://purl.obolibrary.org/obo/GO_0046083,adenine metabolic process +12.7804612,GO:0047862,http://purl.obolibrary.org/obo/GO_0047862,diisopropyl-fluorophosphatase activity +12.7804612,GO:0047954,http://purl.obolibrary.org/obo/GO_0047954,glycerol-2-phosphatase activity +12.7804612,GO:0051882,http://purl.obolibrary.org/obo/GO_0051882,mitochondrial depolarization +12.7804612,GO:0072621,http://purl.obolibrary.org/obo/GO_0072621,none +12.7804612,GO:1900539,http://purl.obolibrary.org/obo/GO_1900539,fumonisin metabolic process +12.7804612,GO:1900541,http://purl.obolibrary.org/obo/GO_1900541,fumonisin biosynthetic process +12.7804612,GO:1902369,http://purl.obolibrary.org/obo/GO_1902369,negative regulation of RNA catabolic process +12.7804612,GO:1902667,http://purl.obolibrary.org/obo/GO_1902667,regulation of axon guidance +12.7804612,GO:1904063,http://purl.obolibrary.org/obo/GO_1904063,negative regulation of cation transmembrane transport +12.7804612,GO:1904638,http://purl.obolibrary.org/obo/GO_1904638,response to resveratrol +12.7804612,HP:0002718,http://purl.obolibrary.org/obo/HP_0002718,Recurrent bacterial infections +12.7804612,MONDO:0001180,http://purl.obolibrary.org/obo/MONDO_0001180,bullous keratopathy +12.7804612,MONDO:0002581,http://purl.obolibrary.org/obo/MONDO_0002581,spindle cell rhabdomyosarcoma +12.7804612,MONDO:0003446,http://purl.obolibrary.org/obo/MONDO_0003446,papillary hidradenoma +12.7804612,MONDO:0004358,http://purl.obolibrary.org/obo/MONDO_0004358,subglottis carcinoma +12.7804612,MONDO:0005238,http://purl.obolibrary.org/obo/MONDO_0005238,round cell liposarcoma +12.7804612,MONDO:0005797,http://purl.obolibrary.org/obo/MONDO_0005797,HIV wasting syndrome +12.7804612,MONDO:0005861,http://purl.obolibrary.org/obo/MONDO_0005861,multidrug-resistant tuberculosis +12.7804612,MONDO:0005903,http://purl.obolibrary.org/obo/MONDO_0005903,pericardial tuberculosis +12.7804612,MONDO:0006805,http://purl.obolibrary.org/obo/MONDO_0006805,intermediate coronary syndrome +12.7804612,MONDO:0007522,http://purl.obolibrary.org/obo/MONDO_0007522,"Ehlers-Danlos syndrome, classic type" +12.7804612,MONDO:0007908,http://purl.obolibrary.org/obo/MONDO_0007908,multiple symmetric lipomatosis +12.7804612,MONDO:0008343,http://purl.obolibrary.org/obo/MONDO_0008343,pulmonary atresia with ventricular septal defect +12.7804612,MONDO:0009130,http://purl.obolibrary.org/obo/MONDO_0009130,Dyggve-Melchior-Clausen disease +12.7804612,MONDO:0011035,http://purl.obolibrary.org/obo/MONDO_0011035,neurofibromatosis-Noonan syndrome +12.7804612,MONDO:0012172,http://purl.obolibrary.org/obo/MONDO_0012172,mitochondrial trifunctional protein deficiency +12.7804612,MONDO:0015426,http://purl.obolibrary.org/obo/MONDO_0015426,Desbuquois dysplasia +12.7804612,MONDO:0017965,http://purl.obolibrary.org/obo/MONDO_0017965,"syndrome with 46,XX disorder of sex development" +12.7804612,MONDO:0018045,http://purl.obolibrary.org/obo/MONDO_0018045,Hoyeraal-Hreidarsson syndrome +12.7804612,MONDO:0018440,http://purl.obolibrary.org/obo/MONDO_0018440,autosomal recessive distal renal tubular acidosis +12.7804612,MONDO:0019433,http://purl.obolibrary.org/obo/MONDO_0019433,oligoarticular juvenile idiopathic arthritis +12.7804612,MONDO:0020195,http://purl.obolibrary.org/obo/MONDO_0020195,excretory apparatus of the lacrimal system anomaly +12.7804612,MONDO:0020291,http://purl.obolibrary.org/obo/MONDO_0020291,hypoplastic right heart syndrome +12.7804612,MONDO:0021162,http://purl.obolibrary.org/obo/MONDO_0021162,carotenemia +12.7804612,MONDO:0021260,http://purl.obolibrary.org/obo/MONDO_0021260,sensory ganglionopathy +12.7804612,MONDO:0025013,http://purl.obolibrary.org/obo/MONDO_0025013,non-human primate disease +12.7804612,MONDO:0025102,http://purl.obolibrary.org/obo/MONDO_0025102,monkey disease +12.7804612,MOP:0000797,http://purl.obolibrary.org/obo/MOP_0000797,none +12.7804612,NCBITaxon:1803957,http://purl.obolibrary.org/obo/NCBITaxon_1803957,none +12.7804612,NCBITaxon:192733,http://purl.obolibrary.org/obo/NCBITaxon_192733,none +12.7804612,NCBITaxon:2732505,http://purl.obolibrary.org/obo/NCBITaxon_2732505,none +12.7804612,NCBITaxon:2732549,http://purl.obolibrary.org/obo/NCBITaxon_2732549,none +12.7804612,NCBITaxon:33339,http://purl.obolibrary.org/obo/NCBITaxon_33339,none +12.7804612,NCBITaxon:5878,http://purl.obolibrary.org/obo/NCBITaxon_5878,Ciliophora +12.7804612,NCBITaxon:9263,http://purl.obolibrary.org/obo/NCBITaxon_9263,Metatheria +12.7804612,PR:000001102,http://purl.obolibrary.org/obo/PR_000001102,5-hydroxytryptamine receptor 6 +12.7804612,PR:000001286,http://purl.obolibrary.org/obo/PR_000001286,B-cell antigen receptor complex-associated protein beta chain +12.7804612,PR:000001984,http://purl.obolibrary.org/obo/PR_000001984,ATP-sensitive inward rectifier potassium channel 8 +12.7804612,PR:000002006,http://purl.obolibrary.org/obo/PR_000002006,none +12.7804612,PR:000003493,http://purl.obolibrary.org/obo/PR_000003493,none +12.7804612,PR:000003548,http://purl.obolibrary.org/obo/PR_000003548,"ATP-binding cassette sub-family B member 10, mitochondrial" +12.7804612,PR:000003657,http://purl.obolibrary.org/obo/PR_000003657,"medium-chain acyl-CoA ligase ACSF2, mitochondrial" +12.7804612,PR:000003774,http://purl.obolibrary.org/obo/PR_000003774,"hydroxyacid-oxoacid transhydrogenase, mitochondrial" +12.7804612,PR:000004337,http://purl.obolibrary.org/obo/PR_000004337,neutral ceramidase +12.7804612,PR:000004811,http://purl.obolibrary.org/obo/PR_000004811,BRISC and BRCA1-A complex member 2 +12.7804612,PR:000004868,http://purl.obolibrary.org/obo/PR_000004868,none +12.7804612,PR:000005531,http://purl.obolibrary.org/obo/PR_000005531,H(+)/Cl(-) exchange transporter 4 +12.7804612,PR:000005651,http://purl.obolibrary.org/obo/PR_000005651,CCR4-NOT transcription complex subunit 3 +12.7804612,PR:000006512,http://purl.obolibrary.org/obo/PR_000006512,disks large homolog 2 +12.7804612,PR:000008983,http://purl.obolibrary.org/obo/PR_000008983,interleukin-17 receptor C +12.7804612,PR:000008996,http://purl.obolibrary.org/obo/PR_000008996,interleukin-20 receptor subunit alpha +12.7804612,PR:000009892,http://purl.obolibrary.org/obo/PR_000009892,lysophospholipid acyltransferase 5 +12.7804612,PR:000010075,http://purl.obolibrary.org/obo/PR_000010075,melanoma-associated antigen D1 +12.7804612,PR:000010448,http://purl.obolibrary.org/obo/PR_000010448,histone-lysine N-methyltransferase 2E +12.7804612,PR:000011007,http://purl.obolibrary.org/obo/PR_000011007,neuron navigator 2 +12.7804612,PR:000011098,http://purl.obolibrary.org/obo/PR_000011098,"NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial" +12.7804612,PR:000011111,http://purl.obolibrary.org/obo/PR_000011111,N-terminal EF-hand calcium-binding protein 3 +12.7804612,PR:000012467,http://purl.obolibrary.org/obo/PR_000012467,"calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1B" +12.7804612,PR:000012840,http://purl.obolibrary.org/obo/PR_000012840,inactive phospholipase C-like protein 1 +12.7804612,PR:000012878,http://purl.obolibrary.org/obo/PR_000012878,multifunctional procollagen lysine hydroxylase and glycosyltransferase LH3 +12.7804612,PR:000012944,http://purl.obolibrary.org/obo/PR_000012944,patatin-like phospholipase domain-containing protein 4 +12.7804612,PR:000013257,http://purl.obolibrary.org/obo/PR_000013257,protein arginine N-methyltransferase 7 +12.7804612,PR:000013309,http://purl.obolibrary.org/obo/PR_000013309,proline-rich protein 7 +12.7804612,PR:000013882,http://purl.obolibrary.org/obo/PR_000013882,GTP-binding protein REM 2 +12.7804612,PR:000014131,http://purl.obolibrary.org/obo/PR_000014131,E3 ubiquitin-protein ligase RNF34 +12.7804612,PR:000014849,http://purl.obolibrary.org/obo/PR_000014849,short stature homeobox protein +12.7804612,PR:000014904,http://purl.obolibrary.org/obo/PR_000014904,Src kinase-associated phosphoprotein 1 +12.7804612,PR:000015403,http://purl.obolibrary.org/obo/PR_000015403,spermatogenesis- and oogenesis-specific basic helix-loop-helix-containing protein 2 +12.7804612,PR:000015427,http://purl.obolibrary.org/obo/PR_000015427,transcription factor SOX-21 +12.7804612,PR:000015884,http://purl.obolibrary.org/obo/PR_000015884,synaptojanin-2-binding protein +12.7804612,PR:000016007,http://purl.obolibrary.org/obo/PR_000016007,transforming acidic coiled-coil-containing protein 2 +12.7804612,PR:000016134,http://purl.obolibrary.org/obo/PR_000016134,F-box-like/WD repeat-containing protein TBL1Y +12.7804612,PR:000016841,http://purl.obolibrary.org/obo/PR_000016841,GATOR complex protein NPRL2 +12.7804612,PR:000017425,http://purl.obolibrary.org/obo/PR_000017425,WD repeat domain phosphoinositide-interacting protein 1 +12.7804612,PR:000022100,http://purl.obolibrary.org/obo/PR_000022100,none +12.7804612,PR:000023429,http://purl.obolibrary.org/obo/PR_000023429,none +12.7804612,PR:000023601,http://purl.obolibrary.org/obo/PR_000023601,none +12.7804612,PR:000024162,http://purl.obolibrary.org/obo/PR_000024162,none +12.7804612,PR:000029435,http://purl.obolibrary.org/obo/PR_000029435,probable rRNA-processing protein EBP2 +12.7804612,PR:000030971,http://purl.obolibrary.org/obo/PR_000030971,"CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase 1" +12.7804612,PR:000031651,http://purl.obolibrary.org/obo/PR_000031651,helicase MOV-10 +12.7804612,PR:000032773,http://purl.obolibrary.org/obo/PR_000032773,sterile alpha motif domain-containing protein 9 +12.7804612,PR:O49397,http://purl.obolibrary.org/obo/PR_O49397,none +12.7804612,PR:P17477,http://purl.obolibrary.org/obo/PR_P17477,none +12.7804612,PR:P20485,http://purl.obolibrary.org/obo/PR_P20485,none +12.7804612,PR:P21204,http://purl.obolibrary.org/obo/PR_P21204,none +12.7804612,PR:P92960,http://purl.obolibrary.org/obo/PR_P92960,none +12.7804612,PR:Q00816,http://purl.obolibrary.org/obo/PR_Q00816,none +12.7804612,PR:Q08967,http://purl.obolibrary.org/obo/PR_Q08967,none +12.7804612,PR:Q09849,http://purl.obolibrary.org/obo/PR_Q09849,none +12.7804612,PR:Q24400,http://purl.obolibrary.org/obo/PR_Q24400,none +12.7804612,PR:Q38890,http://purl.obolibrary.org/obo/PR_Q38890,none +12.7804612,PR:Q5ALX5,http://purl.obolibrary.org/obo/PR_Q5ALX5,none +12.7804612,PR:Q90421,http://purl.obolibrary.org/obo/PR_Q90421,none +12.7804612,PR:Q9P7X7,http://purl.obolibrary.org/obo/PR_Q9P7X7,none +12.7804612,PR:Q9SID1,http://purl.obolibrary.org/obo/PR_Q9SID1,none +12.7804612,PR:Q9SZY8,http://purl.obolibrary.org/obo/PR_Q9SZY8,none +12.7804612,PR:Q9T041,http://purl.obolibrary.org/obo/PR_Q9T041,none +12.7804612,SO:0000363,http://purl.obolibrary.org/obo/SO_0000363,floxed_gene +12.7804612,UBERON:0001382,http://purl.obolibrary.org/obo/UBERON_0001382,pectineus muscle +12.7804612,UBERON:0002319,http://purl.obolibrary.org/obo/UBERON_0002319,mesangium +12.7804612,UBERON:0002626,http://purl.obolibrary.org/obo/UBERON_0002626,head of caudate nucleus +12.7804612,UBERON:0003428,http://purl.obolibrary.org/obo/UBERON_0003428,gonadal fat pad +12.7804612,UBERON:0006844,http://purl.obolibrary.org/obo/UBERON_0006844,cusp of tooth +12.7804612,UBERON:0008242,http://purl.obolibrary.org/obo/UBERON_0008242,lower back muscle +12.7804612,UBERON:0008811,http://purl.obolibrary.org/obo/UBERON_0008811,intromittent organ +12.7804612,UBERON:0010234,http://purl.obolibrary.org/obo/UBERON_0010234,palatopharyngeus muscle +12.7804612,UBERON:0010953,http://purl.obolibrary.org/obo/UBERON_0010953,nasalis muscle +12.7804612,UBERON:0012070,http://purl.obolibrary.org/obo/UBERON_0012070,palatal tooth +12.7804612,UBERON:0013726,http://purl.obolibrary.org/obo/UBERON_0013726,posterior talofibular ligament +12.7804612,UBERON:0018397,http://purl.obolibrary.org/obo/UBERON_0018397,posterior superior alveolar artery +12.7959654,CHEBI:29309,http://purl.obolibrary.org/obo/CHEBI_29309,methyl +12.7959654,CHEBI:32648,http://purl.obolibrary.org/obo/CHEBI_32648,methionine residue +12.7959654,CHEBI:37007,http://purl.obolibrary.org/obo/CHEBI_37007,nicotinamide dinucleotide +12.7959654,CHEBI:38231,http://purl.obolibrary.org/obo/CHEBI_38231,phytotoxin +12.7959654,CHEBI:53656,http://purl.obolibrary.org/obo/CHEBI_53656,polyacrylamide macromolecule +12.7959654,CHEBI:59698,http://purl.obolibrary.org/obo/CHEBI_59698,phosphoric acids +12.7959654,CHEBI:64393,http://purl.obolibrary.org/obo/CHEBI_64393,hydrated silica +12.7959654,CHEBI:73267,http://purl.obolibrary.org/obo/CHEBI_73267,oxidative phosphorylation inhibitor +12.7959654,CHEBI:75298,http://purl.obolibrary.org/obo/CHEBI_75298,histamine releasing agent +12.7959654,CL:0000341,http://purl.obolibrary.org/obo/CL_0000341,pigment cell (sensu Nematoda and Protostomia) +12.7959654,CL:0000707,http://purl.obolibrary.org/obo/CL_0000707,R7 photoreceptor cell +12.7959654,CL:0001658,http://purl.obolibrary.org/obo/CL_0001658,visual pigment cell (sensu Nematoda and Protostomia) +12.7959654,DRUGBANK:DB02052,http://purl.obolibrary.org/obo/DRUGBANK_DB02052,none +12.7959654,DRUGBANK:DB02854,http://purl.obolibrary.org/obo/DRUGBANK_DB02854,none +12.7959654,DRUGBANK:DB02856,http://purl.obolibrary.org/obo/DRUGBANK_DB02856,none +12.7959654,DRUGBANK:DB02866,http://purl.obolibrary.org/obo/DRUGBANK_DB02866,none +12.7959654,DRUGBANK:DB04149,http://purl.obolibrary.org/obo/DRUGBANK_DB04149,none +12.7959654,DRUGBANK:DB04934,http://purl.obolibrary.org/obo/DRUGBANK_DB04934,none +12.7959654,DRUGBANK:DB08949,http://purl.obolibrary.org/obo/DRUGBANK_DB08949,none +12.7959654,DRUGBANK:DB08979,http://purl.obolibrary.org/obo/DRUGBANK_DB08979,none +12.7959654,DRUGBANK:DB09250,http://purl.obolibrary.org/obo/DRUGBANK_DB09250,none +12.7959654,DRUGBANK:DB10828,http://purl.obolibrary.org/obo/DRUGBANK_DB10828,none +12.7959654,DRUGBANK:DB12301,http://purl.obolibrary.org/obo/DRUGBANK_DB12301,none +12.7959654,DRUGBANK:DB12463,http://purl.obolibrary.org/obo/DRUGBANK_DB12463,none +12.7959654,DRUGBANK:DB12648,http://purl.obolibrary.org/obo/DRUGBANK_DB12648,none +12.7959654,DRUGBANK:DB13036,http://purl.obolibrary.org/obo/DRUGBANK_DB13036,none +12.7959654,DRUGBANK:DB13300,http://purl.obolibrary.org/obo/DRUGBANK_DB13300,none +12.7959654,DRUGBANK:DB13795,http://purl.obolibrary.org/obo/DRUGBANK_DB13795,none +12.7959654,DRUGBANK:DB14747,http://purl.obolibrary.org/obo/DRUGBANK_DB14747,none +12.7959654,GO:0000373,http://purl.obolibrary.org/obo/GO_0000373,Group II intron splicing +12.7959654,GO:0000374,http://purl.obolibrary.org/obo/GO_0000374,Group III intron splicing +12.7959654,GO:0000732,http://purl.obolibrary.org/obo/GO_0000732,strand displacement +12.7959654,GO:0003973,http://purl.obolibrary.org/obo/GO_0003973,(S)-2-hydroxy-acid oxidase activity +12.7959654,GO:0006279,http://purl.obolibrary.org/obo/GO_0006279,premeiotic DNA replication +12.7959654,GO:0008113,http://purl.obolibrary.org/obo/GO_0008113,peptide-methionine (S)-S-oxide reductase activity +12.7959654,GO:0009438,http://purl.obolibrary.org/obo/GO_0009438,methylglyoxal metabolic process +12.7959654,GO:0010540,http://purl.obolibrary.org/obo/GO_0010540,basipetal auxin transport +12.7959654,GO:0012511,http://purl.obolibrary.org/obo/GO_0012511,monolayer-surrounded lipid storage body +12.7959654,GO:0015761,http://purl.obolibrary.org/obo/GO_0015761,mannose transmembrane transport +12.7959654,GO:0015769,http://purl.obolibrary.org/obo/GO_0015769,melibiose transport +12.7959654,GO:0019348,http://purl.obolibrary.org/obo/GO_0019348,dolichol metabolic process +12.7959654,GO:0019799,http://purl.obolibrary.org/obo/GO_0019799,tubulin N-acetyltransferase activity +12.7959654,GO:0034481,http://purl.obolibrary.org/obo/GO_0034481,chondroitin sulfotransferase activity +12.7959654,GO:0035344,http://purl.obolibrary.org/obo/GO_0035344,hypoxanthine transport +12.7959654,GO:0043489,http://purl.obolibrary.org/obo/GO_0043489,RNA stabilization +12.7959654,GO:0044165,http://purl.obolibrary.org/obo/GO_0044165,host cell endoplasmic reticulum +12.7959654,GO:0044195,http://purl.obolibrary.org/obo/GO_0044195,nucleoplasmic reticulum +12.7959654,GO:0044232,http://purl.obolibrary.org/obo/GO_0044232,organelle membrane contact site +12.7959654,GO:0051055,http://purl.obolibrary.org/obo/GO_0051055,negative regulation of lipid biosynthetic process +12.7959654,GO:0051731,http://purl.obolibrary.org/obo/GO_0051731,polynucleotide 5'-hydroxyl-kinase activity +12.7959654,GO:0060003,http://purl.obolibrary.org/obo/GO_0060003,copper ion export +12.7959654,GO:0061617,http://purl.obolibrary.org/obo/GO_0061617,MICOS complex +12.7959654,GO:0070053,http://purl.obolibrary.org/obo/GO_0070053,thrombospondin receptor activity +12.7959654,GO:0070584,http://purl.obolibrary.org/obo/GO_0070584,mitochondrion morphogenesis +12.7959654,GO:0070839,http://purl.obolibrary.org/obo/GO_0070839,metal ion export +12.7959654,GO:0071111,http://purl.obolibrary.org/obo/GO_0071111,cyclic-guanylate-specific phosphodiesterase activity +12.7959654,GO:0071219,http://purl.obolibrary.org/obo/GO_0071219,cellular response to molecule of bacterial origin +12.7959654,GO:0072702,http://purl.obolibrary.org/obo/GO_0072702,response to methyl methanesulfonate +12.7959654,GO:0080033,http://purl.obolibrary.org/obo/GO_0080033,response to nitrite +12.7959654,GO:0090664,http://purl.obolibrary.org/obo/GO_0090664,response to high population density +12.7959654,GO:1901327,http://purl.obolibrary.org/obo/GO_1901327,response to tacrolimus +12.7959654,GO:1904772,http://purl.obolibrary.org/obo/GO_1904772,response to tetrachloromethane +12.7959654,GO:1990051,http://purl.obolibrary.org/obo/GO_1990051,activation of protein kinase C activity +12.7959654,GO:2000573,http://purl.obolibrary.org/obo/GO_2000573,positive regulation of DNA biosynthetic process +12.7959654,HP:0012393,http://purl.obolibrary.org/obo/HP_0012393,Allergy +12.7959654,MONDO:0003028,http://purl.obolibrary.org/obo/MONDO_0003028,thyroid sarcoma +12.7959654,MONDO:0003205,http://purl.obolibrary.org/obo/MONDO_0003205,renal pelvis adenocarcinoma +12.7959654,MONDO:0003685,http://purl.obolibrary.org/obo/MONDO_0003685,retroperitoneal germ cell neoplasm +12.7959654,MONDO:0004411,http://purl.obolibrary.org/obo/MONDO_0004411,duodenal gastrin-producing neuroendocrine tumor +12.7959654,MONDO:0005785,http://purl.obolibrary.org/obo/MONDO_0005785,henipavirus infectious disease +12.7959654,MONDO:0006131,http://purl.obolibrary.org/obo/MONDO_0006131,cerebellar liponeurocytoma +12.7959654,MONDO:0006232,http://purl.obolibrary.org/obo/MONDO_0006232,giant cell tumor of soft tissue +12.7959654,MONDO:0006884,http://purl.obolibrary.org/obo/MONDO_0006884,panophthalmitis +12.7959654,MONDO:0007077,http://purl.obolibrary.org/obo/MONDO_0007077,Tietz syndrome +12.7959654,MONDO:0007953,http://purl.obolibrary.org/obo/MONDO_0007953,Binder syndrome +12.7959654,MONDO:0008495,http://purl.obolibrary.org/obo/MONDO_0008495,platelet storage pool deficiency +12.7959654,MONDO:0009101,http://purl.obolibrary.org/obo/MONDO_0009101,Wolfram syndrome 1 +12.7959654,MONDO:0009251,http://purl.obolibrary.org/obo/MONDO_0009251,"fructose-1,6-bisphosphatase deficiency" +12.7959654,MONDO:0009677,http://purl.obolibrary.org/obo/MONDO_0009677,autosomal recessive limb-girdle muscular dystrophy type 2C +12.7959654,MONDO:0011274,http://purl.obolibrary.org/obo/MONDO_0011274,Muenke syndrome +12.7959654,MONDO:0011744,http://purl.obolibrary.org/obo/MONDO_0011744,primary intraosseous venous malformation +12.7959654,MONDO:0011822,http://purl.obolibrary.org/obo/MONDO_0011822,Bartter disease type 3 +12.7959654,MONDO:0014904,http://purl.obolibrary.org/obo/MONDO_0014904,"congenital disorder of glycosylation, type IAA" +12.7959654,MONDO:0016194,http://purl.obolibrary.org/obo/MONDO_0016194,qualitative or quantitative defects of nebulin +12.7959654,MONDO:0016223,http://purl.obolibrary.org/obo/MONDO_0016223,infantile hemangioma of rare localization +12.7959654,MONDO:0016242,http://purl.obolibrary.org/obo/MONDO_0016242,hemoglobin C disease +12.7959654,MONDO:0018950,http://purl.obolibrary.org/obo/MONDO_0018950,3-methylcrotonyl-CoA carboxylase deficiency +12.7959654,MONDO:0018977,http://purl.obolibrary.org/obo/MONDO_0018977,polyneuropathy associated with IgM monoclonal gammapathy with anti-MAG +12.7959654,MONDO:0019625,http://purl.obolibrary.org/obo/MONDO_0019625,familial thoracic aortic aneurysm and aortic dissection +12.7959654,MONDO:0019939,http://purl.obolibrary.org/obo/MONDO_0019939,early-onset schizophrenia +12.7959654,MONDO:0020322,http://purl.obolibrary.org/obo/MONDO_0020322,acute biphenotypic leukemia +12.7959654,MONDO:0021950,http://purl.obolibrary.org/obo/MONDO_0021950,autoimmune oophoritis +12.7959654,MONDO:0023069,http://purl.obolibrary.org/obo/MONDO_0023069,enlarged vestibular aqueduct syndrome +12.7959654,NCBITaxon:10275,http://purl.obolibrary.org/obo/NCBITaxon_10275,none +12.7959654,NCBITaxon:10276,http://purl.obolibrary.org/obo/NCBITaxon_10276,none +12.7959654,NCBITaxon:1250315,http://purl.obolibrary.org/obo/NCBITaxon_1250315,none +12.7959654,NCBITaxon:1553900,http://purl.obolibrary.org/obo/NCBITaxon_1553900,none +12.7959654,NCBITaxon:213481,http://purl.obolibrary.org/obo/NCBITaxon_213481,none +12.7959654,NCBITaxon:213483,http://purl.obolibrary.org/obo/NCBITaxon_213483,none +12.7959654,NCBITaxon:35288,http://purl.obolibrary.org/obo/NCBITaxon_35288,none +12.7959654,NCBITaxon:810,http://purl.obolibrary.org/obo/NCBITaxon_810,Chlamydia +12.7959654,NCBITaxon:958,http://purl.obolibrary.org/obo/NCBITaxon_958,none +12.7959654,PR:000003553,http://purl.obolibrary.org/obo/PR_000003553,ATP-binding cassette sub-family B member 9 +12.7959654,PR:000003612,http://purl.obolibrary.org/obo/PR_000003612,Golgi resident protein GCP60 +12.7959654,PR:000003952,http://purl.obolibrary.org/obo/PR_000003952,alkylated DNA repair protein alkB 5 +12.7959654,PR:000003967,http://purl.obolibrary.org/obo/PR_000003967,alpha-protein kinase 3 +12.7959654,PR:000004104,http://purl.obolibrary.org/obo/PR_000004104,AP-3 complex subunit beta-1 +12.7959654,PR:000004447,http://purl.obolibrary.org/obo/PR_000004447,plasma membrane calcium-transporting ATPase 3 +12.7959654,PR:000004632,http://purl.obolibrary.org/obo/PR_000004632,brain-specific angiogenesis inhibitor 1-associated protein 2 +12.7959654,PR:000004790,http://purl.obolibrary.org/obo/PR_000004790,ribosome biogenesis protein BOP1 +12.7959654,PR:000004964,http://purl.obolibrary.org/obo/PR_000004964,calcium-dependent secretion activator 1 +12.7959654,PR:000005483,http://purl.obolibrary.org/obo/PR_000005483,chondroitin sulfate synthase 1 +12.7959654,PR:000005638,http://purl.obolibrary.org/obo/PR_000005638,connector enhancer of kinase suppressor of ras 2 +12.7959654,PR:000005687,http://purl.obolibrary.org/obo/PR_000005687,conserved oligomeric Golgi complex subunit 4 +12.7959654,PR:000005770,http://purl.obolibrary.org/obo/PR_000005770,"cytochrome c oxidase assembly protein COX11, mitochondrial" +12.7959654,PR:000005808,http://purl.obolibrary.org/obo/PR_000005808,cytoplasmic polyadenylation element-binding protein 4 +12.7959654,PR:000006659,http://purl.obolibrary.org/obo/PR_000006659,inactive dipeptidyl peptidase 10 +12.7959654,PR:000007065,http://purl.obolibrary.org/obo/PR_000007065,adhesion G protein-coupled receptor E2 +12.7959654,PR:000007645,http://purl.obolibrary.org/obo/PR_000007645,forkhead box protein P4 +12.7959654,PR:000007657,http://purl.obolibrary.org/obo/PR_000007657,FRAS1-related extracellular matrix protein 2 +12.7959654,PR:000007715,http://purl.obolibrary.org/obo/PR_000007715,FXYD domain-containing ion transport regulator 3 +12.7959654,PR:000007789,http://purl.obolibrary.org/obo/PR_000007789,growth arrest and DNA damage-inducible protein GADD45 gamma +12.7959654,PR:000007917,http://purl.obolibrary.org/obo/PR_000007917,embryonic growth/differentiation factor 1 +12.7959654,PR:000007933,http://purl.obolibrary.org/obo/PR_000007933,gem-associated protein 4 +12.7959654,PR:000008557,http://purl.obolibrary.org/obo/PR_000008557,hypoxia-inducible factor 3-alpha +12.7959654,PR:000008670,http://purl.obolibrary.org/obo/PR_000008670,heterogeneous nuclear ribonucleoprotein L +12.7959654,PR:000008941,http://purl.obolibrary.org/obo/PR_000008941,immunoglobulin-binding protein 1 +12.7959654,PR:000010114,http://purl.obolibrary.org/obo/PR_000010114,amine oxidase [flavin-containing] A +12.7959654,PR:000010167,http://purl.obolibrary.org/obo/PR_000010167,MAP kinase-activated protein kinase 5 +12.7959654,PR:000011293,http://purl.obolibrary.org/obo/PR_000011293,neuromedin-S +12.7959654,PR:000012047,http://purl.obolibrary.org/obo/PR_000012047,oxysterol-binding protein-related protein 1 +12.7959654,PR:000013110,http://purl.obolibrary.org/obo/PR_000013110,apoptosis-stimulating of p53 protein 1 +12.7959654,PR:000013476,http://purl.obolibrary.org/obo/PR_000013476,receptor-type tyrosine-protein phosphatase O +12.7959654,PR:000013939,http://purl.obolibrary.org/obo/PR_000013939,Ral-GDS-related protein +12.7959654,PR:000015635,http://purl.obolibrary.org/obo/PR_000015635,sushi repeat-containing protein SRPX2 +12.7959654,PR:000016557,http://purl.obolibrary.org/obo/PR_000016557,p53-regulated apoptosis-inducing protein 1 +12.7959654,PR:000016778,http://purl.obolibrary.org/obo/PR_000016778,tau-tubulin kinase 2 +12.7959654,PR:000022516,http://purl.obolibrary.org/obo/PR_000022516,none +12.7959654,PR:000023829,http://purl.obolibrary.org/obo/PR_000023829,none +12.7959654,PR:000029919,http://purl.obolibrary.org/obo/PR_000029919,none +12.7959654,PR:000031530,http://purl.obolibrary.org/obo/PR_000031530,phospholipid-transporting ATPase IH +12.7959654,PR:000034572,http://purl.obolibrary.org/obo/PR_000034572,none +12.7959654,PR:000036833,http://purl.obolibrary.org/obo/PR_000036833,none +12.7959654,PR:000040086,http://purl.obolibrary.org/obo/PR_000040086,neurexin-2 +12.7959654,PR:F4I907,http://purl.obolibrary.org/obo/PR_F4I907,none +12.7959654,PR:P10664,http://purl.obolibrary.org/obo/PR_P10664,none +12.7959654,PR:P20863,http://purl.obolibrary.org/obo/PR_P20863,none +12.7959654,PR:P26023,http://purl.obolibrary.org/obo/PR_P26023,none +12.7959654,PR:P26361,http://purl.obolibrary.org/obo/PR_P26361,none +12.7959654,PR:P32356,http://purl.obolibrary.org/obo/PR_P32356,none +12.7959654,PR:P32504,http://purl.obolibrary.org/obo/PR_P32504,none +12.7959654,PR:P46286,http://purl.obolibrary.org/obo/PR_P46286,none +12.7959654,PR:P53413,http://purl.obolibrary.org/obo/PR_P53413,none +12.7959654,PR:P87126,http://purl.obolibrary.org/obo/PR_P87126,none +12.7959654,PR:P92990,http://purl.obolibrary.org/obo/PR_P92990,none +12.7959654,PR:Q12511,http://purl.obolibrary.org/obo/PR_Q12511,none +12.7959654,PR:Q86ZU7,http://purl.obolibrary.org/obo/PR_Q86ZU7,none +12.7959654,PR:Q8H183,http://purl.obolibrary.org/obo/PR_Q8H183,none +12.7959654,PR:Q8JHW2,http://purl.obolibrary.org/obo/PR_Q8JHW2,none +12.7959654,PR:Q8S905,http://purl.obolibrary.org/obo/PR_Q8S905,none +12.7959654,PR:Q8UUR3,http://purl.obolibrary.org/obo/PR_Q8UUR3,none +12.7959654,PR:Q9FLD5,http://purl.obolibrary.org/obo/PR_Q9FLD5,none +12.7959654,PR:Q9LKZ3,http://purl.obolibrary.org/obo/PR_Q9LKZ3,none +12.7959654,PR:Q9LQ02,http://purl.obolibrary.org/obo/PR_Q9LQ02,none +12.7959654,PR:Q9M1I7,http://purl.obolibrary.org/obo/PR_Q9M1I7,none +12.7959654,PR:Q9UTM2,http://purl.obolibrary.org/obo/PR_Q9UTM2,none +12.7959654,SO:0100009,http://purl.obolibrary.org/obo/SO_0100009,lipoprotein_signal_peptide +12.7959654,UBERON:0000472,http://purl.obolibrary.org/obo/UBERON_0000472,simple organ +12.7959654,UBERON:0001431,http://purl.obolibrary.org/obo/UBERON_0001431,distal carpal bone 2 +12.7959654,UBERON:0001960,http://purl.obolibrary.org/obo/UBERON_0001960,periarterial lymphatic sheath +12.7959654,UBERON:0002014,http://purl.obolibrary.org/obo/UBERON_0002014,inferior hypogastric nerve plexus +12.7959654,UBERON:0002987,http://purl.obolibrary.org/obo/UBERON_0002987,anterior spinocerebellar tract +12.7959654,UBERON:0003535,http://purl.obolibrary.org/obo/UBERON_0003535,vagus X nerve trunk +12.7959654,UBERON:0003719,http://purl.obolibrary.org/obo/UBERON_0003719,Pacinian corpuscle +12.7959654,UBERON:0004201,http://purl.obolibrary.org/obo/UBERON_0004201,kidney outer medulla inner stripe +12.7959654,UBERON:0004562,http://purl.obolibrary.org/obo/UBERON_0004562,digital vein +12.7959654,UBERON:0005211,http://purl.obolibrary.org/obo/UBERON_0005211,renal medulla interstitium +12.7959654,UBERON:0005375,http://purl.obolibrary.org/obo/UBERON_0005375,spinal cord ventral column +12.7959654,UBERON:0009645,http://purl.obolibrary.org/obo/UBERON_0009645,ampullary gland +12.7959654,UBERON:0011870,http://purl.obolibrary.org/obo/UBERON_0011870,pisotriquetral joint +12.7959654,UBERON:0015087,http://purl.obolibrary.org/obo/UBERON_0015087,distal carpal bone 2 endochondral element +12.7959654,UBERON:2002283,http://purl.obolibrary.org/obo/UBERON_2002283,melanophore spot +12.8117137,CHEBI:18269,http://purl.obolibrary.org/obo/CHEBI_18269,(1->6)-alpha-D-glucan +12.8117137,CHEBI:22385,http://purl.obolibrary.org/obo/CHEBI_22385,alpha-D-glucan +12.8117137,CHEBI:22479,http://purl.obolibrary.org/obo/CHEBI_22479,amino cyclitol glycoside +12.8117137,CHEBI:25523,http://purl.obolibrary.org/obo/CHEBI_25523,NADP +12.8117137,CHEBI:25524,http://purl.obolibrary.org/obo/CHEBI_25524,NAD(P) +12.8117137,CHEBI:26537,http://purl.obolibrary.org/obo/CHEBI_26537,retinoid +12.8117137,CHEBI:29337,http://purl.obolibrary.org/obo/CHEBI_29337,azanide +12.8117137,CHEBI:52071,http://purl.obolibrary.org/obo/CHEBI_52071,dextran +12.8117137,CL:0000050,http://purl.obolibrary.org/obo/CL_0000050,megakaryocyte-erythroid progenitor cell +12.8117137,CL:0000416,http://purl.obolibrary.org/obo/CL_0000416,polytene cell +12.8117137,CL:0000979,http://purl.obolibrary.org/obo/CL_0000979,IgG memory B cell +12.8117137,DRUGBANK:DB00719,http://purl.obolibrary.org/obo/DRUGBANK_DB00719,none +12.8117137,DRUGBANK:DB01652,http://purl.obolibrary.org/obo/DRUGBANK_DB01652,none +12.8117137,DRUGBANK:DB02239,http://purl.obolibrary.org/obo/DRUGBANK_DB02239,none +12.8117137,DRUGBANK:DB02577,http://purl.obolibrary.org/obo/DRUGBANK_DB02577,none +12.8117137,DRUGBANK:DB04923,http://purl.obolibrary.org/obo/DRUGBANK_DB04923,none +12.8117137,DRUGBANK:DB05186,http://purl.obolibrary.org/obo/DRUGBANK_DB05186,none +12.8117137,DRUGBANK:DB09449,http://purl.obolibrary.org/obo/DRUGBANK_DB09449,none +12.8117137,DRUGBANK:DB11389,http://purl.obolibrary.org/obo/DRUGBANK_DB11389,none +12.8117137,DRUGBANK:DB12475,http://purl.obolibrary.org/obo/DRUGBANK_DB12475,none +12.8117137,DRUGBANK:DB12958,http://purl.obolibrary.org/obo/DRUGBANK_DB12958,none +12.8117137,DRUGBANK:DB13129,http://purl.obolibrary.org/obo/DRUGBANK_DB13129,none +12.8117137,DRUGBANK:DB13165,http://purl.obolibrary.org/obo/DRUGBANK_DB13165,none +12.8117137,DRUGBANK:DB13502,http://purl.obolibrary.org/obo/DRUGBANK_DB13502,none +12.8117137,DRUGBANK:DB14037,http://purl.obolibrary.org/obo/DRUGBANK_DB14037,none +12.8117137,DRUGBANK:DB14065,http://purl.obolibrary.org/obo/DRUGBANK_DB14065,none +12.8117137,DRUGBANK:DB14762,http://purl.obolibrary.org/obo/DRUGBANK_DB14762,none +12.8117137,DRUGBANK:DB15033,http://purl.obolibrary.org/obo/DRUGBANK_DB15033,none +12.8117137,DRUGBANK:DB15470,http://purl.obolibrary.org/obo/DRUGBANK_DB15470,none +12.8117137,DRUGBANK:DB15580,http://purl.obolibrary.org/obo/DRUGBANK_DB15580,none +12.8117137,DRUGBANK:DB15958,http://purl.obolibrary.org/obo/DRUGBANK_DB15958,none +12.8117137,DRUGBANK:DB15966,http://purl.obolibrary.org/obo/DRUGBANK_DB15966,none +12.8117137,DRUGBANK:DB16019,http://purl.obolibrary.org/obo/DRUGBANK_DB16019,none +12.8117137,GO:0000407,http://purl.obolibrary.org/obo/GO_0000407,phagophore assembly site +12.8117137,GO:0004306,http://purl.obolibrary.org/obo/GO_0004306,ethanolamine-phosphate cytidylyltransferase activity +12.8117137,GO:0006999,http://purl.obolibrary.org/obo/GO_0006999,nuclear pore organization +12.8117137,GO:0008445,http://purl.obolibrary.org/obo/GO_0008445,D-aspartate oxidase activity +12.8117137,GO:0008891,http://purl.obolibrary.org/obo/GO_0008891,none +12.8117137,GO:0009717,http://purl.obolibrary.org/obo/GO_0009717,isoflavonoid biosynthetic process +12.8117137,GO:0015116,http://purl.obolibrary.org/obo/GO_0015116,sulfate transmembrane transporter activity +12.8117137,GO:0031060,http://purl.obolibrary.org/obo/GO_0031060,regulation of histone methylation +12.8117137,GO:0032393,http://purl.obolibrary.org/obo/GO_0032393,MHC class I receptor activity +12.8117137,GO:0036284,http://purl.obolibrary.org/obo/GO_0036284,tubulobulbar complex +12.8117137,GO:0042179,http://purl.obolibrary.org/obo/GO_0042179,nicotine biosynthetic process +12.8117137,GO:0043167,http://purl.obolibrary.org/obo/GO_0043167,ion binding +12.8117137,GO:0043169,http://purl.obolibrary.org/obo/GO_0043169,cation binding +12.8117137,GO:0043465,http://purl.obolibrary.org/obo/GO_0043465,regulation of fermentation +12.8117137,GO:0043697,http://purl.obolibrary.org/obo/GO_0043697,cell dedifferentiation +12.8117137,GO:0045492,http://purl.obolibrary.org/obo/GO_0045492,xylan biosynthetic process +12.8117137,GO:0046872,http://purl.obolibrary.org/obo/GO_0046872,metal ion binding +12.8117137,GO:0050252,http://purl.obolibrary.org/obo/GO_0050252,retinol O-fatty-acyltransferase activity +12.8117137,GO:0051100,http://purl.obolibrary.org/obo/GO_0051100,negative regulation of binding +12.8117137,GO:0051271,http://purl.obolibrary.org/obo/GO_0051271,negative regulation of cellular component movement +12.8117137,GO:0051292,http://purl.obolibrary.org/obo/GO_0051292,nuclear pore complex assembly +12.8117137,GO:0051447,http://purl.obolibrary.org/obo/GO_0051447,negative regulation of meiotic cell cycle +12.8117137,GO:0051973,http://purl.obolibrary.org/obo/GO_0051973,positive regulation of telomerase activity +12.8117137,GO:0071344,http://purl.obolibrary.org/obo/GO_0071344,diphosphate metabolic process +12.8117137,GO:0097312,http://purl.obolibrary.org/obo/GO_0097312,none +12.8117137,GO:1901849,http://purl.obolibrary.org/obo/GO_1901849,nicotinate biosynthetic process +12.8117137,GO:1903605,http://purl.obolibrary.org/obo/GO_1903605,cytochrome biosynthetic process +12.8117137,GO:1990047,http://purl.obolibrary.org/obo/GO_1990047,spindle matrix +12.8117137,HP:0001558,http://purl.obolibrary.org/obo/HP_0001558,Decreased fetal movement +12.8117137,HP:0002202,http://purl.obolibrary.org/obo/HP_0002202,Pleural effusion +12.8117137,HP:0005406,http://purl.obolibrary.org/obo/HP_0005406,Recurrent bacterial skin infections +12.8117137,MONDO:0000977,http://purl.obolibrary.org/obo/MONDO_0000977,chondroid lipoma +12.8117137,MONDO:0001429,http://purl.obolibrary.org/obo/MONDO_0001429,transient arthropathy +12.8117137,MONDO:0003378,http://purl.obolibrary.org/obo/MONDO_0003378,liver leiomyosarcoma +12.8117137,MONDO:0003478,http://purl.obolibrary.org/obo/MONDO_0003478,childhood ependymoma +12.8117137,MONDO:0003948,http://purl.obolibrary.org/obo/MONDO_0003948,cerebral hemangioma +12.8117137,MONDO:0004428,http://purl.obolibrary.org/obo/MONDO_0004428,alveoli adenoma +12.8117137,MONDO:0004526,http://purl.obolibrary.org/obo/MONDO_0004526,mixed endometrial stromal and smooth muscle tumor +12.8117137,MONDO:0005433,http://purl.obolibrary.org/obo/MONDO_0005433,alcohol withdrawal +12.8117137,MONDO:0006014,http://purl.obolibrary.org/obo/MONDO_0006014,vulvovaginal candidiasis +12.8117137,MONDO:0006478,http://purl.obolibrary.org/obo/MONDO_0006478,undifferentiated pancreatic carcinoma +12.8117137,MONDO:0006592,http://purl.obolibrary.org/obo/MONDO_0006592,parapsoriasis +12.8117137,MONDO:0007862,http://purl.obolibrary.org/obo/MONDO_0007862,Waardenburg syndrome type 3 +12.8117137,MONDO:0007986,http://purl.obolibrary.org/obo/MONDO_0007986,metatropic dysplasia +12.8117137,MONDO:0008060,http://purl.obolibrary.org/obo/MONDO_0008060,nonsyndromic congenital nail disorder 1 +12.8117137,MONDO:0008718,http://purl.obolibrary.org/obo/MONDO_0008718,Morvan syndrome +12.8117137,MONDO:0008728,http://purl.obolibrary.org/obo/MONDO_0008728,classic congenital adrenal hyperplasia due to 21-hydroxylase deficiency +12.8117137,MONDO:0011229,http://purl.obolibrary.org/obo/MONDO_0011229,ethylmalonic encephalopathy +12.8117137,MONDO:0015688,http://purl.obolibrary.org/obo/MONDO_0015688,"myeloid/lymphoid neoplasms associated with eosinophilia and abnormality of PDGFRA, PDGFRB, FGFR1 or JAK2" +12.8117137,MONDO:0016286,http://purl.obolibrary.org/obo/MONDO_0016286,adenoid cystic carcinoma of the cervix uteri +12.8117137,MONDO:0016826,http://purl.obolibrary.org/obo/MONDO_0016826,methylmalonic acidemia with homocystinuria +12.8117137,MONDO:0017670,http://purl.obolibrary.org/obo/MONDO_0017670,autosomal dominant diffuse mutilating palmoplantar keratoderma +12.8117137,MONDO:0018973,http://purl.obolibrary.org/obo/MONDO_0018973,patterned dystrophy of the retinal pigment epithelium +12.8117137,MONDO:0019780,http://purl.obolibrary.org/obo/MONDO_0019780,anotia +12.8117137,MONDO:0020516,http://purl.obolibrary.org/obo/MONDO_0020516,thymic neuroendocrine carcinoma +12.8117137,MONDO:0021539,http://purl.obolibrary.org/obo/MONDO_0021539,hamartoma of skin appendage +12.8117137,MONDO:0023599,http://purl.obolibrary.org/obo/MONDO_0023599,mesomelic dysplasia +12.8117137,MONDO:0023726,http://purl.obolibrary.org/obo/MONDO_0023726,mediastinal yolk sac tumor +12.8117137,MONDO:0054866,http://purl.obolibrary.org/obo/MONDO_0054866,sudden arrhythmia death syndrome +12.8117137,MOP:0000710,http://purl.obolibrary.org/obo/MOP_0000710,none +12.8117137,NCBITaxon:11741,http://purl.obolibrary.org/obo/NCBITaxon_11741,none +12.8117137,NCBITaxon:12161,http://purl.obolibrary.org/obo/NCBITaxon_12161,none +12.8117137,NCBITaxon:12280,http://purl.obolibrary.org/obo/NCBITaxon_12280,none +12.8117137,NCBITaxon:1230390,http://purl.obolibrary.org/obo/NCBITaxon_1230390,none +12.8117137,NCBITaxon:332470,http://purl.obolibrary.org/obo/NCBITaxon_332470,none +12.8117137,NCBITaxon:37128,http://purl.obolibrary.org/obo/NCBITaxon_37128,none +12.8117137,NCBITaxon:373507,http://purl.obolibrary.org/obo/NCBITaxon_373507,none +12.8117137,NCBITaxon:431838,http://purl.obolibrary.org/obo/NCBITaxon_431838,Intramacronucleata +12.8117137,NCBITaxon:8370,http://purl.obolibrary.org/obo/NCBITaxon_8370,none +12.8117137,NCBITaxon:9761,http://purl.obolibrary.org/obo/NCBITaxon_9761,Mysticeti +12.8117137,NCBITaxon:9765,http://purl.obolibrary.org/obo/NCBITaxon_9765,Balaenopteridae +12.8117137,NCBITaxon:9766,http://purl.obolibrary.org/obo/NCBITaxon_9766,none +12.8117137,NCBITaxon:9771,http://purl.obolibrary.org/obo/NCBITaxon_9771,none +12.8117137,PR:000001019,http://purl.obolibrary.org/obo/PR_000001019,CD3 delta +12.8117137,PR:000003320,http://purl.obolibrary.org/obo/PR_000003320,lysine-specific histone demethylase 1B +12.8117137,PR:000003894,http://purl.obolibrary.org/obo/PR_000003894,A-kinase anchor protein 8 +12.8117137,PR:000004006,http://purl.obolibrary.org/obo/PR_000004006,amelotin +12.8117137,PR:000004961,http://purl.obolibrary.org/obo/PR_000004961,cell adhesion molecule 2 +12.8117137,PR:000005438,http://purl.obolibrary.org/obo/PR_000005438,charged multivesicular body protein 4c +12.8117137,PR:000005464,http://purl.obolibrary.org/obo/PR_000005464,neuronal acetylcholine receptor subunit beta-3 +12.8117137,PR:000005524,http://purl.obolibrary.org/obo/PR_000005524,calcium-activated chloride channel regulator 2 +12.8117137,PR:000006748,http://purl.obolibrary.org/obo/PR_000006748,dual specificity protein phosphatase 22 +12.8117137,PR:000006987,http://purl.obolibrary.org/obo/PR_000006987,eukaryotic initiation factor 4A-II +12.8117137,PR:000007338,http://purl.obolibrary.org/obo/PR_000007338,E3 ubiquitin-protein ligase FANCL +12.8117137,PR:000007772,http://purl.obolibrary.org/obo/PR_000007772,gamma-aminobutyric acid receptor subunit beta-1 +12.8117137,PR:000008086,http://purl.obolibrary.org/obo/PR_000008086,guanine nucleotide-binding protein G(i) subunit alpha-2 +12.8117137,PR:000008112,http://purl.obolibrary.org/obo/PR_000008112,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-8 +12.8117137,PR:000008323,http://purl.obolibrary.org/obo/PR_000008323,general transcription factor II-I repeat domain-containing protein 1 +12.8117137,PR:000008407,http://purl.obolibrary.org/obo/PR_000008407,histone H1.8 +12.8117137,PR:000010675,http://purl.obolibrary.org/obo/PR_000010675,male-specific lethal 3 +12.8117137,PR:000011064,http://purl.obolibrary.org/obo/PR_000011064,bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 2 +12.8117137,PR:000011233,http://purl.obolibrary.org/obo/PR_000011233,protein naked cuticle homolog 2 +12.8117137,PR:000011261,http://purl.obolibrary.org/obo/PR_000011261,NLR family CARD domain-containing protein 3 +12.8117137,PR:000011291,http://purl.obolibrary.org/obo/PR_000011291,nicotinamide/nicotinic acid mononucleotide adenylyltransferase 2 +12.8117137,PR:000011380,http://purl.obolibrary.org/obo/PR_000011380,neuropeptide S +12.8117137,PR:000011609,http://purl.obolibrary.org/obo/PR_000011609,teneurin-4 +12.8117137,PR:000011645,http://purl.obolibrary.org/obo/PR_000011645,optic atrophy 3 protein +12.8117137,PR:000013094,http://purl.obolibrary.org/obo/PR_000013094,protein phosphatase 1F +12.8117137,PR:000013392,http://purl.obolibrary.org/obo/PR_000013392,proteasome activator complex subunit 1 +12.8117137,PR:000013726,http://purl.obolibrary.org/obo/PR_000013726,Rap guanine nucleotide exchange factor 1 +12.8117137,PR:000013846,http://purl.obolibrary.org/obo/PR_000013846,protein RD3 +12.8117137,PR:000014187,http://purl.obolibrary.org/obo/PR_000014187,60S ribosomal protein L10 +12.8117137,PR:000014665,http://purl.obolibrary.org/obo/PR_000014665,plasminogen activator inhibitor 1 RNA-binding protein +12.8117137,PR:000014903,http://purl.obolibrary.org/obo/PR_000014903,spindle and kinetochore-associated protein 1 +12.8117137,PR:000015076,http://purl.obolibrary.org/obo/PR_000015076,zinc transporter 3 +12.8117137,PR:000015147,http://purl.obolibrary.org/obo/PR_000015147,choline transporter-like protein 5 +12.8117137,PR:000015509,http://purl.obolibrary.org/obo/PR_000015509,speedy protein A +12.8117137,PR:000015525,http://purl.obolibrary.org/obo/PR_000015525,transcription factor Spi-B +12.8117137,PR:000015606,http://purl.obolibrary.org/obo/PR_000015606,helicase SRCAP +12.8117137,PR:000016027,http://purl.obolibrary.org/obo/PR_000016027,transcription initiation factor TFIID subunit 4 +12.8117137,PR:000016090,http://purl.obolibrary.org/obo/PR_000016090,Tax1-binding protein 1 +12.8117137,PR:000016289,http://purl.obolibrary.org/obo/PR_000016289,homeobox protein TGIF2 +12.8117137,PR:000016351,http://purl.obolibrary.org/obo/PR_000016351,mitochondrial import inner membrane translocase subunit Tim9 +12.8117137,PR:000017332,http://purl.obolibrary.org/obo/PR_000017332,vacuolar protein sorting-associated protein 33B +12.8117137,PR:000017345,http://purl.obolibrary.org/obo/PR_000017345,vacuolar protein sorting-associated protein 53 +12.8117137,PR:000017619,http://purl.obolibrary.org/obo/PR_000017619,protein zer-1 +12.8117137,PR:000022155,http://purl.obolibrary.org/obo/PR_000022155,none +12.8117137,PR:000022977,http://purl.obolibrary.org/obo/PR_000022977,none +12.8117137,PR:000023293,http://purl.obolibrary.org/obo/PR_000023293,none +12.8117137,PR:000023976,http://purl.obolibrary.org/obo/PR_000023976,none +12.8117137,PR:000023977,http://purl.obolibrary.org/obo/PR_000023977,none +12.8117137,PR:000024213,http://purl.obolibrary.org/obo/PR_000024213,none +12.8117137,PR:000029229,http://purl.obolibrary.org/obo/PR_000029229,none +12.8117137,PR:000030565,http://purl.obolibrary.org/obo/PR_000030565,defensin-6 +12.8117137,PR:000031049,http://purl.obolibrary.org/obo/PR_000031049,protein BRICK1 +12.8117137,PR:000031216,http://purl.obolibrary.org/obo/PR_000031216,renalase +12.8117137,PR:O81148,http://purl.obolibrary.org/obo/PR_O81148,none +12.8117137,PR:P34158,http://purl.obolibrary.org/obo/PR_P34158,none +12.8117137,PR:P45951,http://purl.obolibrary.org/obo/PR_P45951,none +12.8117137,PR:P50298,http://purl.obolibrary.org/obo/PR_P50298,none +12.8117137,PR:Q39241,http://purl.obolibrary.org/obo/PR_Q39241,none +12.8117137,PR:Q56WH4,http://purl.obolibrary.org/obo/PR_Q56WH4,none +12.8117137,PR:Q9FLV5,http://purl.obolibrary.org/obo/PR_Q9FLV5,none +12.8117137,PR:Q9M2Z4,http://purl.obolibrary.org/obo/PR_Q9M2Z4,none +12.8117137,PR:Q9S823,http://purl.obolibrary.org/obo/PR_Q9S823,none +12.8117137,SO:0000516,http://purl.obolibrary.org/obo/SO_0000516,pseudogenic_transcript +12.8117137,SO:1000043,http://purl.obolibrary.org/obo/SO_1000043,Robertsonian_fusion +12.8117137,SO:1000182,http://purl.obolibrary.org/obo/SO_1000182,chromosome_number_variation +12.8117137,UBERON:0001615,http://purl.obolibrary.org/obo/UBERON_0001615,transverse facial artery +12.8117137,UBERON:0003943,http://purl.obolibrary.org/obo/UBERON_0003943,fourth lumbar dorsal root ganglion +12.8117137,UBERON:0011357,http://purl.obolibrary.org/obo/UBERON_0011357,Reissner's fiber +12.8117137,UBERON:0011919,http://purl.obolibrary.org/obo/UBERON_0011919,yolk sac blood island +12.8117137,UBERON:0012367,http://purl.obolibrary.org/obo/UBERON_0012367,muscle layer of intestine +12.8277141,CHEBI:136889,http://purl.obolibrary.org/obo/CHEBI_136889,5beta steroid +12.8277141,CHEBI:138366,http://purl.obolibrary.org/obo/CHEBI_138366,bile acids +12.8277141,CHEBI:24663,http://purl.obolibrary.org/obo/CHEBI_24663,hydroxy-5beta-cholanic acid +12.8277141,CHEBI:24828,http://purl.obolibrary.org/obo/CHEBI_24828,indoles +12.8277141,CHEBI:24838,http://purl.obolibrary.org/obo/CHEBI_24838,inorganic phosphate +12.8277141,CHEBI:35754,http://purl.obolibrary.org/obo/CHEBI_35754,tetracarboxylic acid anion +12.8277141,CHEBI:36248,http://purl.obolibrary.org/obo/CHEBI_36248,5beta-cholanic acids +12.8277141,CHEBI:36278,http://purl.obolibrary.org/obo/CHEBI_36278,cholanic acids +12.8277141,CHEBI:38077,http://purl.obolibrary.org/obo/CHEBI_38077,polypyrrole +12.8277141,CHEBI:39446,http://purl.obolibrary.org/obo/CHEBI_39446,pyrimidine ribonucleosides +12.8277141,CHEBI:46789,http://purl.obolibrary.org/obo/CHEBI_46789,hydroxyether +12.8277141,CHEBI:60737,http://purl.obolibrary.org/obo/CHEBI_60737,polyurethane polymer +12.8277141,CHEBI:85384,http://purl.obolibrary.org/obo/CHEBI_85384,GABA reuptake inhibitor +12.8277141,CL:0000467,http://purl.obolibrary.org/obo/CL_0000467,adrenocorticotropic hormone secreting cell +12.8277141,CL:0000834,http://purl.obolibrary.org/obo/CL_0000834,neutrophil progenitor cell +12.8277141,CL:0002184,http://purl.obolibrary.org/obo/CL_0002184,basal proper cell of olfactory epithelium +12.8277141,DRUGBANK:DB00336,http://purl.obolibrary.org/obo/DRUGBANK_DB00336,none +12.8277141,DRUGBANK:DB01619,http://purl.obolibrary.org/obo/DRUGBANK_DB01619,none +12.8277141,DRUGBANK:DB03214,http://purl.obolibrary.org/obo/DRUGBANK_DB03214,none +12.8277141,DRUGBANK:DB05219,http://purl.obolibrary.org/obo/DRUGBANK_DB05219,none +12.8277141,DRUGBANK:DB05897,http://purl.obolibrary.org/obo/DRUGBANK_DB05897,none +12.8277141,DRUGBANK:DB06666,http://purl.obolibrary.org/obo/DRUGBANK_DB06666,none +12.8277141,DRUGBANK:DB06788,http://purl.obolibrary.org/obo/DRUGBANK_DB06788,none +12.8277141,DRUGBANK:DB08254,http://purl.obolibrary.org/obo/DRUGBANK_DB08254,none +12.8277141,DRUGBANK:DB09245,http://purl.obolibrary.org/obo/DRUGBANK_DB09245,none +12.8277141,DRUGBANK:DB10433,http://purl.obolibrary.org/obo/DRUGBANK_DB10433,none +12.8277141,DRUGBANK:DB10646,http://purl.obolibrary.org/obo/DRUGBANK_DB10646,none +12.8277141,DRUGBANK:DB11718,http://purl.obolibrary.org/obo/DRUGBANK_DB11718,none +12.8277141,DRUGBANK:DB12026,http://purl.obolibrary.org/obo/DRUGBANK_DB12026,none +12.8277141,DRUGBANK:DB12588,http://purl.obolibrary.org/obo/DRUGBANK_DB12588,none +12.8277141,DRUGBANK:DB12901,http://purl.obolibrary.org/obo/DRUGBANK_DB12901,none +12.8277141,DRUGBANK:DB13213,http://purl.obolibrary.org/obo/DRUGBANK_DB13213,none +12.8277141,DRUGBANK:DB14692,http://purl.obolibrary.org/obo/DRUGBANK_DB14692,none +12.8277141,DRUGBANK:DB15495,http://purl.obolibrary.org/obo/DRUGBANK_DB15495,none +12.8277141,DRUGBANK:DB15984,http://purl.obolibrary.org/obo/DRUGBANK_DB15984,none +12.8277141,GO:0000761,http://purl.obolibrary.org/obo/GO_0000761,conjugant formation +12.8277141,GO:0000771,http://purl.obolibrary.org/obo/GO_0000771,agglutination involved in conjugation +12.8277141,GO:0001697,http://purl.obolibrary.org/obo/GO_0001697,histamine-induced gastric acid secretion +12.8277141,GO:0002329,http://purl.obolibrary.org/obo/GO_0002329,pre-B cell differentiation +12.8277141,GO:0003920,http://purl.obolibrary.org/obo/GO_0003920,GMP reductase activity +12.8277141,GO:0004401,http://purl.obolibrary.org/obo/GO_0004401,histidinol-phosphatase activity +12.8277141,GO:0005628,http://purl.obolibrary.org/obo/GO_0005628,prospore membrane +12.8277141,GO:0006152,http://purl.obolibrary.org/obo/GO_0006152,purine nucleoside catabolic process +12.8277141,GO:0007157,http://purl.obolibrary.org/obo/GO_0007157,heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules +12.8277141,GO:0007476,http://purl.obolibrary.org/obo/GO_0007476,imaginal disc-derived wing morphogenesis +12.8277141,GO:0009068,http://purl.obolibrary.org/obo/GO_0009068,aspartate family amino acid catabolic process +12.8277141,GO:0009208,http://purl.obolibrary.org/obo/GO_0009208,pyrimidine ribonucleoside triphosphate metabolic process +12.8277141,GO:0010183,http://purl.obolibrary.org/obo/GO_0010183,pollen tube guidance +12.8277141,GO:0016593,http://purl.obolibrary.org/obo/GO_0016593,Cdc73/Paf1 complex +12.8277141,GO:0017001,http://purl.obolibrary.org/obo/GO_0017001,antibiotic catabolic process +12.8277141,GO:0032449,http://purl.obolibrary.org/obo/GO_0032449,CBM complex +12.8277141,GO:0032653,http://purl.obolibrary.org/obo/GO_0032653,regulation of interleukin-10 production +12.8277141,GO:0034969,http://purl.obolibrary.org/obo/GO_0034969,histone arginine methylation +12.8277141,GO:0042381,http://purl.obolibrary.org/obo/GO_0042381,hemolymph coagulation +12.8277141,GO:0042825,http://purl.obolibrary.org/obo/GO_0042825,TAP complex +12.8277141,GO:0043686,http://purl.obolibrary.org/obo/GO_0043686,co-translational protein modification +12.8277141,GO:0046130,http://purl.obolibrary.org/obo/GO_0046130,purine ribonucleoside catabolic process +12.8277141,GO:0046911,http://purl.obolibrary.org/obo/GO_0046911,metal chelating activity +12.8277141,GO:0061474,http://purl.obolibrary.org/obo/GO_0061474,phagolysosome membrane +12.8277141,GO:0070995,http://purl.obolibrary.org/obo/GO_0070995,NADPH oxidation +12.8277141,GO:0071222,http://purl.obolibrary.org/obo/GO_0071222,cellular response to lipopolysaccharide +12.8277141,GO:0072719,http://purl.obolibrary.org/obo/GO_0072719,cellular response to cisplatin +12.8277141,GO:1902305,http://purl.obolibrary.org/obo/GO_1902305,regulation of sodium ion transmembrane transport +12.8277141,GO:1903184,http://purl.obolibrary.org/obo/GO_1903184,L-dopa metabolic process +12.8277141,GO:1903927,http://purl.obolibrary.org/obo/GO_1903927,response to cyanide +12.8277141,GO:1990779,http://purl.obolibrary.org/obo/GO_1990779,glycoprotein Ib-IX-V complex +12.8277141,GO:2000649,http://purl.obolibrary.org/obo/GO_2000649,regulation of sodium ion transmembrane transporter activity +12.8277141,HP:0002896,http://purl.obolibrary.org/obo/HP_0002896,Neoplasm of the liver +12.8277141,MONDO:0001120,http://purl.obolibrary.org/obo/MONDO_0001120,chronic frontal sinusitis +12.8277141,MONDO:0002204,http://purl.obolibrary.org/obo/MONDO_0002204,transient arthritis +12.8277141,MONDO:0002846,http://purl.obolibrary.org/obo/MONDO_0002846,granulomatous gastritis +12.8277141,MONDO:0003209,http://purl.obolibrary.org/obo/MONDO_0003209,thymus gland adenocarcinoma +12.8277141,MONDO:0003999,http://purl.obolibrary.org/obo/MONDO_0003999,juvenile pilocytic astrocytoma +12.8277141,MONDO:0004767,http://purl.obolibrary.org/obo/MONDO_0004767,vesiculitis +12.8277141,MONDO:0004885,http://purl.obolibrary.org/obo/MONDO_0004885,choroidal sclerosis +12.8277141,MONDO:0005174,http://purl.obolibrary.org/obo/MONDO_0005174,acute hypotension +12.8277141,MONDO:0006188,http://purl.obolibrary.org/obo/MONDO_0006188,EBV-positive T-cell lymphoproliferative disorder of childhood +12.8277141,MONDO:0006988,http://purl.obolibrary.org/obo/MONDO_0006988,sulfhemoglobinemia +12.8277141,MONDO:0007070,http://purl.obolibrary.org/obo/MONDO_0007070,adiposis dolorosa +12.8277141,MONDO:0008138,http://purl.obolibrary.org/obo/MONDO_0008138,syndromic orbital border hypoplasia +12.8277141,MONDO:0008767,http://purl.obolibrary.org/obo/MONDO_0008767,neuronal ceroid lipofuscinosis 3 +12.8277141,MONDO:0009386,http://purl.obolibrary.org/obo/MONDO_0009386,hyperlexia +12.8277141,MONDO:0015009,http://purl.obolibrary.org/obo/MONDO_0015009,"hydrops fetalis, nonimmune, and/or atrial septal defect, susceptibility to" +12.8277141,MONDO:0015363,http://purl.obolibrary.org/obo/MONDO_0015363,autosomal recessive distal hereditary motor neuropathy +12.8277141,MONDO:0016734,http://purl.obolibrary.org/obo/MONDO_0016734,anaplastic ganglioglioma +12.8277141,MONDO:0018891,http://purl.obolibrary.org/obo/MONDO_0018891,familial tumoral calcinosis +12.8277141,MONDO:0018984,http://purl.obolibrary.org/obo/MONDO_0018984,Oroya fever +12.8277141,MONDO:0019111,http://purl.obolibrary.org/obo/MONDO_0019111,familial thrombocytosis +12.8277141,MONDO:0020332,http://purl.obolibrary.org/obo/MONDO_0020332,systemic mastocytosis with an associated clonal hematologic non-mast cell lineage disease +12.8277141,MONDO:0024246,http://purl.obolibrary.org/obo/MONDO_0024246,syringofibroadenoma +12.8277141,MONDO:0043154,http://purl.obolibrary.org/obo/MONDO_0043154,neonatal ovarian cyst +12.8277141,MOP:0000604,http://purl.obolibrary.org/obo/MOP_0000604,none +12.8277141,NCBITaxon:10515,http://purl.obolibrary.org/obo/NCBITaxon_10515,none +12.8277141,NCBITaxon:11266,http://purl.obolibrary.org/obo/NCBITaxon_11266,Filoviridae +12.8277141,NCBITaxon:12175,http://purl.obolibrary.org/obo/NCBITaxon_12175,none +12.8277141,NCBITaxon:12313,http://purl.obolibrary.org/obo/NCBITaxon_12313,none +12.8277141,NCBITaxon:1911599,http://purl.obolibrary.org/obo/NCBITaxon_1911599,none +12.8277141,NCBITaxon:1911601,http://purl.obolibrary.org/obo/NCBITaxon_1911601,none +12.8277141,NCBITaxon:2062,http://purl.obolibrary.org/obo/NCBITaxon_2062,none +12.8277141,NCBITaxon:2169666,http://purl.obolibrary.org/obo/NCBITaxon_2169666,none +12.8277141,NCBITaxon:217160,http://purl.obolibrary.org/obo/NCBITaxon_217160,none +12.8277141,NCBITaxon:29171,http://purl.obolibrary.org/obo/NCBITaxon_29171,Dictyocaulus +12.8277141,NCBITaxon:33264,http://purl.obolibrary.org/obo/NCBITaxon_33264,Dictyocaulidae +12.8277141,NCBITaxon:33265,http://purl.obolibrary.org/obo/NCBITaxon_33265,Dictyocaulinae +12.8277141,NCBITaxon:53182,http://purl.obolibrary.org/obo/NCBITaxon_53182,none +12.8277141,NCBITaxon:85011,http://purl.obolibrary.org/obo/NCBITaxon_85011,none +12.8277141,NCBITaxon:92444,http://purl.obolibrary.org/obo/NCBITaxon_92444,none +12.8277141,NCBITaxon:959,http://purl.obolibrary.org/obo/NCBITaxon_959,none +12.8277141,PR:000001453,http://purl.obolibrary.org/obo/PR_000001453,frizzled-10 +12.8277141,PR:000004013,http://purl.obolibrary.org/obo/PR_000004013,anaphase-promoting complex subunit 10 +12.8277141,PR:000004271,http://purl.obolibrary.org/obo/PR_000004271,E3 ubiquitin-protein ligase ARIH1 +12.8277141,PR:000004518,http://purl.obolibrary.org/obo/PR_000004518,aurora kinase C +12.8277141,PR:000004533,http://purl.obolibrary.org/obo/PR_000004533,antizyme inhibitor 1 +12.8277141,PR:000004758,http://purl.obolibrary.org/obo/PR_000004758,tyrosine-protein kinase BLK +12.8277141,PR:000004915,http://purl.obolibrary.org/obo/PR_000004915,carbonic anhydrase 12 +12.8277141,PR:000005508,http://purl.obolibrary.org/obo/PR_000005508,Cip1-interacting zinc finger protein +12.8277141,PR:000006275,http://purl.obolibrary.org/obo/PR_000006275,"28S ribosomal protein S29, mitochondrial" +12.8277141,PR:000006290,http://purl.obolibrary.org/obo/PR_000006290,deleted in azoospermia-like +12.8277141,PR:000006552,http://purl.obolibrary.org/obo/PR_000006552,DmX-like protein 1 +12.8277141,PR:000006621,http://purl.obolibrary.org/obo/PR_000006621,dedicator of cytokinesis protein 4 +12.8277141,PR:000006652,http://purl.obolibrary.org/obo/PR_000006652,2-(3-amino-3-carboxypropyl)histidine synthase subunit 1 +12.8277141,PR:000006662,http://purl.obolibrary.org/obo/PR_000006662,dipeptidyl peptidase 2 +12.8277141,PR:000006862,http://purl.obolibrary.org/obo/PR_000006862,ELL-associated factor 2 +12.8277141,PR:000006890,http://purl.obolibrary.org/obo/PR_000006890,enhancer of mRNA-decapping protein 3 +12.8277141,PR:000007771,http://purl.obolibrary.org/obo/PR_000007771,gamma-aminobutyric acid receptor subunit alpha-6 +12.8277141,PR:000008000,http://purl.obolibrary.org/obo/PR_000008000,gap junction beta-4 protein +12.8277141,PR:000008673,http://purl.obolibrary.org/obo/PR_000008673,heterogeneous nuclear ribonucleoprotein U +12.8277141,PR:000009263,http://purl.obolibrary.org/obo/PR_000009263,Kv channel-interacting protein 4 +12.8277141,PR:000009280,http://purl.obolibrary.org/obo/PR_000009280,"KH domain-containing, RNA-binding, signal transduction-associated protein 2" +12.8277141,PR:000009672,http://purl.obolibrary.org/obo/PR_000009672,La-related protein 6 +12.8277141,PR:000009919,http://purl.obolibrary.org/obo/PR_000009919,low-density lipoprotein receptor-related protein 12 +12.8277141,PR:000009974,http://purl.obolibrary.org/obo/PR_000009974,latent-transforming growth factor beta-binding protein 3 +12.8277141,PR:000010948,http://purl.obolibrary.org/obo/PR_000010948,NGFI-A-binding protein 1 +12.8277141,PR:000011440,http://purl.obolibrary.org/obo/PR_000011440,nucleosome-binding protein 1 +12.8277141,PR:000011934,http://purl.obolibrary.org/obo/PR_000011934,olfactory receptor 5I1 +12.8277141,PR:000012043,http://purl.obolibrary.org/obo/PR_000012043,oxysterol-binding protein 1 +12.8277141,PR:000012347,http://purl.obolibrary.org/obo/PR_000012347,protocadherin-17 +12.8277141,PR:000012469,http://purl.obolibrary.org/obo/PR_000012469,"cGMP-dependent 3',5'-cyclic phosphodiesterase" +12.8277141,PR:000012792,http://purl.obolibrary.org/obo/PR_000012792,plakophilin-3 +12.8277141,PR:000013443,http://purl.obolibrary.org/obo/PR_000013443,very-long-chain (3R)-3-hydroxyacyl-CoA dehydratase 1 +12.8277141,PR:000013618,http://purl.obolibrary.org/obo/PR_000013618,Ras-related protein Rab-3B +12.8277141,PR:000013947,http://purl.obolibrary.org/obo/PR_000013947,regulator of G-protein signaling 12 +12.8277141,PR:000013952,http://purl.obolibrary.org/obo/PR_000013952,regulator of G-protein signaling 18 +12.8277141,PR:000014010,http://purl.obolibrary.org/obo/PR_000014010,regulating synaptic membrane exocytosis protein 2 +12.8277141,PR:000014308,http://purl.obolibrary.org/obo/PR_000014308,RNA polymerase I-specific transcription initiation factor RRN3 +12.8277141,PR:000014509,http://purl.obolibrary.org/obo/PR_000014509,mammaglobin-B +12.8277141,PR:000015001,http://purl.obolibrary.org/obo/PR_000015001,sodium/potassium/calcium exchanger 4 +12.8277141,PR:000015074,http://purl.obolibrary.org/obo/PR_000015074,zinc transporter 10 +12.8277141,PR:000015592,http://purl.obolibrary.org/obo/PR_000015592,"spectrin beta chain, erythrocytic" +12.8277141,PR:000015628,http://purl.obolibrary.org/obo/PR_000015628,signal recognition particle 9 kDa protein +12.8277141,PR:000016863,http://purl.obolibrary.org/obo/PR_000016863,thioredoxin domain-containing protein 5 +12.8277141,PR:000016982,http://purl.obolibrary.org/obo/PR_000016982,NEDD8-conjugating enzyme Ubc12 +12.8277141,PR:000017125,http://purl.obolibrary.org/obo/PR_000017125,"cytochrome b-c1 complex subunit 2, mitochondrial" +12.8277141,PR:000017386,http://purl.obolibrary.org/obo/PR_000017386,WD repeat and HMG-box DNA-binding protein 1 +12.8277141,PR:000017451,http://purl.obolibrary.org/obo/PR_000017451,protein Wnt-8b +12.8277141,PR:000017656,http://purl.obolibrary.org/obo/PR_000017656,zinc finger X-chromosomal protein +12.8277141,PR:000022240,http://purl.obolibrary.org/obo/PR_000022240,none +12.8277141,PR:000023862,http://purl.obolibrary.org/obo/PR_000023862,none +12.8277141,PR:000028161,http://purl.obolibrary.org/obo/PR_000028161,none +12.8277141,PR:000029760,http://purl.obolibrary.org/obo/PR_000029760,Scm-like with four MBT domains protein 1 +12.8277141,PR:000032335,http://purl.obolibrary.org/obo/PR_000032335,butyrophilin subfamily 3 member A3 +12.8277141,PR:P13423,http://purl.obolibrary.org/obo/PR_P13423,none +12.8277141,PR:P18239,http://purl.obolibrary.org/obo/PR_P18239,none +12.8277141,PR:P25856,http://purl.obolibrary.org/obo/PR_P25856,none +12.8277141,PR:P34066,http://purl.obolibrary.org/obo/PR_P34066,none +12.8277141,PR:P38620,http://purl.obolibrary.org/obo/PR_P38620,none +12.8277141,PR:P48421,http://purl.obolibrary.org/obo/PR_P48421,none +12.8277141,PR:P48583,http://purl.obolibrary.org/obo/PR_P48583,none +12.8277141,PR:Q54L75,http://purl.obolibrary.org/obo/PR_Q54L75,none +12.8277141,PR:Q54P62,http://purl.obolibrary.org/obo/PR_Q54P62,none +12.8277141,PR:Q9PTJ6,http://purl.obolibrary.org/obo/PR_Q9PTJ6,none +12.8277141,PR:Q9V3Z2,http://purl.obolibrary.org/obo/PR_Q9V3Z2,none +12.8277141,PR:Q9ZUZ2,http://purl.obolibrary.org/obo/PR_Q9ZUZ2,none +12.8277141,SO:0000290,http://purl.obolibrary.org/obo/SO_0000290,dinucleotide_repeat_microsatellite_feature +12.8277141,SO:0000553,http://purl.obolibrary.org/obo/SO_0000553,polyA_site +12.8277141,SO:0000824,http://purl.obolibrary.org/obo/SO_0000824,macronuclear_chromosome +12.8277141,UBERON:0001339,http://purl.obolibrary.org/obo/UBERON_0001339,ischiocavernosus muscle +12.8277141,UBERON:0001525,http://purl.obolibrary.org/obo/UBERON_0001525,extensor carpi radialis brevis muscle +12.8277141,UBERON:0001583,http://purl.obolibrary.org/obo/UBERON_0001583,extrinsic auricular muscle +12.8277141,UBERON:0001971,http://purl.obolibrary.org/obo/UBERON_0001971,gastric juice +12.8277141,UBERON:0004645,http://purl.obolibrary.org/obo/UBERON_0004645,urinary bladder urothelium +12.8277141,UBERON:0007037,http://purl.obolibrary.org/obo/UBERON_0007037,mechanosensory system +12.8277141,UBERON:0008245,http://purl.obolibrary.org/obo/UBERON_0008245,pennate muscle +12.8277141,UBERON:0009007,http://purl.obolibrary.org/obo/UBERON_0009007,superficial inguinal lymph node +12.8277141,UBERON:0009953,http://purl.obolibrary.org/obo/UBERON_0009953,post-embryonic organism +12.8277141,UBERON:0010002,http://purl.obolibrary.org/obo/UBERON_0010002,pulmonary neuroendocrine body +12.8277141,UBERON:0010291,http://purl.obolibrary.org/obo/UBERON_0010291,layer of sclera +12.8277141,UBERON:0012481,http://purl.obolibrary.org/obo/UBERON_0012481,cloacal epithelium +12.8277141,UBERON:0015220,http://purl.obolibrary.org/obo/UBERON_0015220,inferior nasal meatus +12.8277141,UBERON:0016490,http://purl.obolibrary.org/obo/UBERON_0016490,auditory system +12.8277141,UBERON:0035080,http://purl.obolibrary.org/obo/UBERON_0035080,intraparotid lymph node +12.8277141,UBERON:2001467,http://purl.obolibrary.org/obo/UBERON_2001467,pharyngeal mesoderm +12.8277141,UBERON:2005080,http://purl.obolibrary.org/obo/UBERON_2005080,anterior mesenteric artery +12.8439746,CHEBI:13392,http://purl.obolibrary.org/obo/CHEBI_13392,NAD(P)H +12.8439746,CHEBI:16474,http://purl.obolibrary.org/obo/CHEBI_16474,NADPH +12.8439746,CHEBI:17493,http://purl.obolibrary.org/obo/CHEBI_17493,DNA 5-methylcytosine +12.8439746,CHEBI:22562,http://purl.obolibrary.org/obo/CHEBI_22562,anilines +12.8439746,CHEBI:23252,http://purl.obolibrary.org/obo/CHEBI_23252,cinnamic acids +12.8439746,CHEBI:32863,http://purl.obolibrary.org/obo/CHEBI_32863,secondary amine +12.8439746,CHEBI:57783,http://purl.obolibrary.org/obo/CHEBI_57783,NADPH(4-) +12.8439746,CHEBI:63131,http://purl.obolibrary.org/obo/CHEBI_63131,EDTA(3-) +12.8439746,CHEBI:64755,http://purl.obolibrary.org/obo/CHEBI_64755,EDTA(2-) +12.8439746,CHEBI:6924,http://purl.obolibrary.org/obo/CHEBI_6924,miconazole nitrate +12.8439746,CHEBI:77161,http://purl.obolibrary.org/obo/CHEBI_77161,Toll-like receptor 2 agonist +12.8439746,CHEBI:87015,http://purl.obolibrary.org/obo/CHEBI_87015,anilide fungicide +12.8439746,CL:0000725,http://purl.obolibrary.org/obo/CL_0000725,nitrogen fixing cell +12.8439746,DRUGBANK:DB00596,http://purl.obolibrary.org/obo/DRUGBANK_DB00596,none +12.8439746,DRUGBANK:DB02489,http://purl.obolibrary.org/obo/DRUGBANK_DB02489,none +12.8439746,DRUGBANK:DB04377,http://purl.obolibrary.org/obo/DRUGBANK_DB04377,none +12.8439746,DRUGBANK:DB06737,http://purl.obolibrary.org/obo/DRUGBANK_DB06737,none +12.8439746,DRUGBANK:DB09039,http://purl.obolibrary.org/obo/DRUGBANK_DB09039,none +12.8439746,DRUGBANK:DB10438,http://purl.obolibrary.org/obo/DRUGBANK_DB10438,none +12.8439746,DRUGBANK:DB11369,http://purl.obolibrary.org/obo/DRUGBANK_DB11369,none +12.8439746,DRUGBANK:DB11799,http://purl.obolibrary.org/obo/DRUGBANK_DB11799,none +12.8439746,DRUGBANK:DB13128,http://purl.obolibrary.org/obo/DRUGBANK_DB13128,none +12.8439746,DRUGBANK:DB13420,http://purl.obolibrary.org/obo/DRUGBANK_DB13420,none +12.8439746,DRUGBANK:DB13549,http://purl.obolibrary.org/obo/DRUGBANK_DB13549,none +12.8439746,DRUGBANK:DB13734,http://purl.obolibrary.org/obo/DRUGBANK_DB13734,none +12.8439746,DRUGBANK:DB16126,http://purl.obolibrary.org/obo/DRUGBANK_DB16126,none +12.8439746,GO:0000912,http://purl.obolibrary.org/obo/GO_0000912,assembly of actomyosin apparatus involved in cytokinesis +12.8439746,GO:0001949,http://purl.obolibrary.org/obo/GO_0001949,sebaceous gland cell differentiation +12.8439746,GO:0008135,http://purl.obolibrary.org/obo/GO_0008135,"translation factor activity, RNA binding" +12.8439746,GO:0008543,http://purl.obolibrary.org/obo/GO_0008543,fibroblast growth factor receptor signaling pathway +12.8439746,GO:0008824,http://purl.obolibrary.org/obo/GO_0008824,cyanate hydratase activity +12.8439746,GO:0009125,http://purl.obolibrary.org/obo/GO_0009125,nucleoside monophosphate catabolic process +12.8439746,GO:0009128,http://purl.obolibrary.org/obo/GO_0009128,purine nucleoside monophosphate catabolic process +12.8439746,GO:0009158,http://purl.obolibrary.org/obo/GO_0009158,ribonucleoside monophosphate catabolic process +12.8439746,GO:0009169,http://purl.obolibrary.org/obo/GO_0009169,purine ribonucleoside monophosphate catabolic process +12.8439746,GO:0010266,http://purl.obolibrary.org/obo/GO_0010266,response to vitamin B1 +12.8439746,GO:0015232,http://purl.obolibrary.org/obo/GO_0015232,heme transmembrane transporter activity +12.8439746,GO:0015855,http://purl.obolibrary.org/obo/GO_0015855,pyrimidine nucleobase transport +12.8439746,GO:0021587,http://purl.obolibrary.org/obo/GO_0021587,cerebellum morphogenesis +12.8439746,GO:0030897,http://purl.obolibrary.org/obo/GO_0030897,HOPS complex +12.8439746,GO:0045990,http://purl.obolibrary.org/obo/GO_0045990,carbon catabolite regulation of transcription +12.8439746,GO:0046206,http://purl.obolibrary.org/obo/GO_0046206,trypanothione metabolic process +12.8439746,GO:0046660,http://purl.obolibrary.org/obo/GO_0046660,female sex differentiation +12.8439746,GO:0046720,http://purl.obolibrary.org/obo/GO_0046720,citric acid secretion +12.8439746,GO:0048563,http://purl.obolibrary.org/obo/GO_0048563,post-embryonic animal organ morphogenesis +12.8439746,GO:0050121,http://purl.obolibrary.org/obo/GO_0050121,N-acylglucosamine 2-epimerase activity +12.8439746,GO:0060487,http://purl.obolibrary.org/obo/GO_0060487,lung epithelial cell differentiation +12.8439746,GO:0061984,http://purl.obolibrary.org/obo/GO_0061984,catabolite repression +12.8439746,GO:0071555,http://purl.obolibrary.org/obo/GO_0071555,cell wall organization +12.8439746,GO:0090079,http://purl.obolibrary.org/obo/GO_0090079,"translation regulator activity, nucleic acid binding" +12.8439746,GO:0097396,http://purl.obolibrary.org/obo/GO_0097396,response to interleukin-17 +12.8439746,GO:1900543,http://purl.obolibrary.org/obo/GO_1900543,negative regulation of purine nucleotide metabolic process +12.8439746,GO:1901110,http://purl.obolibrary.org/obo/GO_1901110,actinorhodin metabolic process +12.8439746,GO:1901112,http://purl.obolibrary.org/obo/GO_1901112,actinorhodin biosynthetic process +12.8439746,GO:1901685,http://purl.obolibrary.org/obo/GO_1901685,glutathione derivative metabolic process +12.8439746,GO:2000030,http://purl.obolibrary.org/obo/GO_2000030,regulation of response to red or far red light +12.8439746,GO:2001258,http://purl.obolibrary.org/obo/GO_2001258,negative regulation of cation channel activity +12.8439746,HP:0000768,http://purl.obolibrary.org/obo/HP_0000768,Pectus carinatum +12.8439746,HP:0002835,http://purl.obolibrary.org/obo/HP_0002835,Aspiration +12.8439746,HP:0025085,http://purl.obolibrary.org/obo/HP_0025085,Bloody diarrhea +12.8439746,MONDO:0002624,http://purl.obolibrary.org/obo/MONDO_0002624,bone leiomyosarcoma +12.8439746,MONDO:0003713,http://purl.obolibrary.org/obo/MONDO_0003713,angiokeratoma circumscriptum +12.8439746,MONDO:0004244,http://purl.obolibrary.org/obo/MONDO_0004244,proximal-type epithelioid sarcoma +12.8439746,MONDO:0004733,http://purl.obolibrary.org/obo/MONDO_0004733,pyriform sinus cancer +12.8439746,MONDO:0008050,http://purl.obolibrary.org/obo/MONDO_0008050,MYH7-related skeletal myopathy +12.8439746,MONDO:0009431,http://purl.obolibrary.org/obo/MONDO_0009431,hereditary hypophosphatemic rickets with hypercalciuria +12.8439746,MONDO:0009924,http://purl.obolibrary.org/obo/MONDO_0009924,"vitamin D-dependent rickets, type 1" +12.8439746,MONDO:0010713,http://purl.obolibrary.org/obo/MONDO_0010713,"properdin deficiency, X-linked" +12.8439746,MONDO:0011017,http://purl.obolibrary.org/obo/MONDO_0011017,Naxos disease +12.8439746,MONDO:0012116,http://purl.obolibrary.org/obo/MONDO_0012116,spinocerebellar ataxia type 8 +12.8439746,MONDO:0012548,http://purl.obolibrary.org/obo/MONDO_0012548,Kostmann syndrome +12.8439746,MONDO:0015976,http://purl.obolibrary.org/obo/MONDO_0015976,hyper-IgM syndrome without susceptibility to opportunistic infections +12.8439746,MONDO:0017318,http://purl.obolibrary.org/obo/MONDO_0017318,phakomatosis pigmentovascularis +12.8439746,MONDO:0020336,http://purl.obolibrary.org/obo/MONDO_0020336,autosomal dominant Emery-Dreifuss muscular dystrophy +12.8439746,MONDO:0023249,http://purl.obolibrary.org/obo/MONDO_0023249,polyarticular juvenile rheumatoid arthritis +12.8439746,MONDO:0024888,http://purl.obolibrary.org/obo/MONDO_0024888,mesonephric neoplasm +12.8439746,NCBITaxon:11587,http://purl.obolibrary.org/obo/NCBITaxon_11587,none +12.8439746,NCBITaxon:1883,http://purl.obolibrary.org/obo/NCBITaxon_1883,none +12.8439746,NCBITaxon:2085,http://purl.obolibrary.org/obo/NCBITaxon_2085,Mycoplasmatales +12.8439746,NCBITaxon:24966,http://purl.obolibrary.org/obo/NCBITaxon_24966,none +12.8439746,NCBITaxon:306,http://purl.obolibrary.org/obo/NCBITaxon_306,none +12.8439746,NCBITaxon:32606,http://purl.obolibrary.org/obo/NCBITaxon_32606,none +12.8439746,NCBITaxon:34872,http://purl.obolibrary.org/obo/NCBITaxon_34872,none +12.8439746,NCBITaxon:34873,http://purl.obolibrary.org/obo/NCBITaxon_34873,none +12.8439746,NCBITaxon:41828,http://purl.obolibrary.org/obo/NCBITaxon_41828,Chironomoidea +12.8439746,NCBITaxon:6249,http://purl.obolibrary.org/obo/NCBITaxon_6249,Ascaridomorpha +12.8439746,NCBITaxon:6961,http://purl.obolibrary.org/obo/NCBITaxon_6961,none +12.8439746,PR:000001021,http://purl.obolibrary.org/obo/PR_000001021,CD3 gamma +12.8439746,PR:000001870,http://purl.obolibrary.org/obo/PR_000001870,islet cell autoantigen 1 +12.8439746,PR:000002053,http://purl.obolibrary.org/obo/PR_000002053,none +12.8439746,PR:000003416,http://purl.obolibrary.org/obo/PR_000003416,none +12.8439746,PR:000003760,http://purl.obolibrary.org/obo/PR_000003760,adenylate cyclase type 9 +12.8439746,PR:000003935,http://purl.obolibrary.org/obo/PR_000003935,fructose-bisphosphate aldolase B +12.8439746,PR:000005511,http://purl.obolibrary.org/obo/PR_000005511,cytoskeleton-associated protein 4 +12.8439746,PR:000005858,http://purl.obolibrary.org/obo/PR_000005858,cyclic AMP-responsive element-binding protein 3-like protein 3 +12.8439746,PR:000005871,http://purl.obolibrary.org/obo/PR_000005871,cysteine-rich motor neuron 1 protein +12.8439746,PR:000005888,http://purl.obolibrary.org/obo/PR_000005888,CMP-forming cardiolipin synthase +12.8439746,PR:000006594,http://purl.obolibrary.org/obo/PR_000006594,deoxyribonuclease-1-like 2 +12.8439746,PR:000006891,http://purl.obolibrary.org/obo/PR_000006891,enhancer of mRNA-decapping protein 4 +12.8439746,PR:000007351,http://purl.obolibrary.org/obo/PR_000007351,protocadherin Fat 2 +12.8439746,PR:000007654,http://purl.obolibrary.org/obo/PR_000007654,proto-oncogene FRAT1 +12.8439746,PR:000008468,http://purl.obolibrary.org/obo/PR_000008468,nuclear protein Hcc-1 +12.8439746,PR:000008684,http://purl.obolibrary.org/obo/PR_000008684,protein Hook homolog 3 +12.8439746,PR:000009007,http://purl.obolibrary.org/obo/PR_000009007,interleukin enhancer-binding factor 2 +12.8439746,PR:000009260,http://purl.obolibrary.org/obo/PR_000009260,Kv channel-interacting protein 1 +12.8439746,PR:000010395,http://purl.obolibrary.org/obo/PR_000010395,transport and Golgi organization protein 1 homolog +12.8439746,PR:000010904,http://purl.obolibrary.org/obo/PR_000010904,none +12.8439746,PR:000011425,http://purl.obolibrary.org/obo/PR_000011425,"pro-neuregulin-4, membrane-bound isoform" +12.8439746,PR:000011544,http://purl.obolibrary.org/obo/PR_000011544,neurexophilin-3 +12.8439746,PR:000011597,http://purl.obolibrary.org/obo/PR_000011597,outer dense fiber protein 1 +12.8439746,PR:000012068,http://purl.obolibrary.org/obo/PR_000012068,osteopetrosis-associated transmembrane protein 1 +12.8439746,PR:000012638,http://purl.obolibrary.org/obo/PR_000012638,PHD finger protein 11 +12.8439746,PR:000012824,http://purl.obolibrary.org/obo/PR_000012824,zinc finger protein PLAGL2 +12.8439746,PR:000013696,http://purl.obolibrary.org/obo/PR_000013696,Ras-related protein Ral-B +12.8439746,PR:000013724,http://purl.obolibrary.org/obo/PR_000013724,Ras-related protein Rap-2b +12.8439746,PR:000013971,http://purl.obolibrary.org/obo/PR_000013971,rhomboid-related protein 2 +12.8439746,PR:000014054,http://purl.obolibrary.org/obo/PR_000014054,ribonuclease H2 subunit A +12.8439746,PR:000014183,http://purl.obolibrary.org/obo/PR_000014183,protein fantom +12.8439746,PR:000015518,http://purl.obolibrary.org/obo/PR_000015518,spartin +12.8439746,PR:000016277,http://purl.obolibrary.org/obo/PR_000016277,protein TFG +12.8439746,PR:000016299,http://purl.obolibrary.org/obo/PR_000016299,trans-Golgi network integral membrane protein 2 +12.8439746,PR:000016397,http://purl.obolibrary.org/obo/PR_000016397,transmembrane channel-like protein 6 +12.8439746,PR:000017184,http://purl.obolibrary.org/obo/PR_000017184,ubiquitin carboxyl-terminal hydrolase 45 +12.8439746,PR:000022275,http://purl.obolibrary.org/obo/PR_000022275,none +12.8439746,PR:000022866,http://purl.obolibrary.org/obo/PR_000022866,none +12.8439746,PR:000023850,http://purl.obolibrary.org/obo/PR_000023850,none +12.8439746,PR:000023921,http://purl.obolibrary.org/obo/PR_000023921,none +12.8439746,PR:000025467,http://purl.obolibrary.org/obo/PR_000025467,none +12.8439746,PR:000031552,http://purl.obolibrary.org/obo/PR_000031552,protein p13 MTCP-1 +12.8439746,PR:000032131,http://purl.obolibrary.org/obo/PR_000032131,"solute carrier family 52, riboflavin transporter, member 3" +12.8439746,PR:000033687,http://purl.obolibrary.org/obo/PR_000033687,none +12.8439746,PR:000034665,http://purl.obolibrary.org/obo/PR_000034665,none +12.8439746,PR:000036837,http://purl.obolibrary.org/obo/PR_000036837,none +12.8439746,PR:O23712,http://purl.obolibrary.org/obo/PR_O23712,none +12.8439746,PR:O24616,http://purl.obolibrary.org/obo/PR_O24616,none +12.8439746,PR:O94321,http://purl.obolibrary.org/obo/PR_O94321,none +12.8439746,PR:P16257,http://purl.obolibrary.org/obo/PR_P16257,none +12.8439746,PR:P17433,http://purl.obolibrary.org/obo/PR_P17433,none +12.8439746,PR:P25491,http://purl.obolibrary.org/obo/PR_P25491,none +12.8439746,PR:P50637,http://purl.obolibrary.org/obo/PR_P50637,none +12.8439746,PR:P53197,http://purl.obolibrary.org/obo/PR_P53197,none +12.8439746,PR:P53201,http://purl.obolibrary.org/obo/PR_P53201,none +12.8439746,PR:Q04969,http://purl.obolibrary.org/obo/PR_Q04969,none +12.8439746,PR:Q09637,http://purl.obolibrary.org/obo/PR_Q09637,none +12.8439746,PR:Q18825,http://purl.obolibrary.org/obo/PR_Q18825,none +12.8439746,PR:Q37001,http://purl.obolibrary.org/obo/PR_Q37001,none +12.8439746,PR:Q54TR8,http://purl.obolibrary.org/obo/PR_Q54TR8,none +12.8439746,PR:Q56WD9,http://purl.obolibrary.org/obo/PR_Q56WD9,none +12.8439746,PR:Q68FN7,http://purl.obolibrary.org/obo/PR_Q68FN7,none +12.8439746,PR:Q6BDS1,http://purl.obolibrary.org/obo/PR_Q6BDS1,none +12.8439746,PR:Q94A08,http://purl.obolibrary.org/obo/PR_Q94A08,none +12.8439746,PR:Q9C6E4,http://purl.obolibrary.org/obo/PR_Q9C6E4,none +12.8439746,PR:Q9FMW9,http://purl.obolibrary.org/obo/PR_Q9FMW9,none +12.8439746,SO:0000404,http://purl.obolibrary.org/obo/SO_0000404,vault_RNA +12.8439746,UBERON:0001074,http://purl.obolibrary.org/obo/UBERON_0001074,pericardial cavity +12.8439746,UBERON:0001668,http://purl.obolibrary.org/obo/UBERON_0001668,cerebellar vein +12.8439746,UBERON:0001990,http://purl.obolibrary.org/obo/UBERON_0001990,middle cervical ganglion +12.8439746,UBERON:0004223,http://purl.obolibrary.org/obo/UBERON_0004223,vagina smooth muscle +12.8439746,UBERON:0006792,http://purl.obolibrary.org/obo/UBERON_0006792,intermediate layer of superior colliculus +12.8439746,UBERON:0010232,http://purl.obolibrary.org/obo/UBERON_0010232,placodal ectoderm +12.8439746,UBERON:0012272,http://purl.obolibrary.org/obo/UBERON_0012272,minor duodenal papilla +12.8439746,UBERON:0016630,http://purl.obolibrary.org/obo/UBERON_0016630,neurovascular bundle +12.8439746,UBERON:0018235,http://purl.obolibrary.org/obo/UBERON_0018235,capsule of pancreas +12.8439746,UBERON:0018640,http://purl.obolibrary.org/obo/UBERON_0018640,premolar 2 +12.8439746,UBERON:0034943,http://purl.obolibrary.org/obo/UBERON_0034943,saccus vasculosus +12.8439746,UBERON:1100000,http://purl.obolibrary.org/obo/UBERON_1100000,digestive tract junction +12.8605039,CHEBI:16385,http://purl.obolibrary.org/obo/CHEBI_16385,organic sulfide +12.8605039,CHEBI:26536,http://purl.obolibrary.org/obo/CHEBI_26536,retinoic acid +12.8605039,CHEBI:26932,http://purl.obolibrary.org/obo/CHEBI_26932,tetrapyrrole +12.8605039,CHEBI:38163,http://purl.obolibrary.org/obo/CHEBI_38163,organic heterotetracyclic compound +12.8605039,CHEBI:48358,http://purl.obolibrary.org/obo/CHEBI_48358,polar aprotic solvent +12.8605039,CHEBI:63047,http://purl.obolibrary.org/obo/CHEBI_63047,food emulsifier +12.8605039,CHEBI:72544,http://purl.obolibrary.org/obo/CHEBI_72544,flavonoids +12.8605039,CHEBI:87209,http://purl.obolibrary.org/obo/CHEBI_87209,virginiamycin +12.8605039,CHEBI:9937,http://purl.obolibrary.org/obo/CHEBI_9937,vasopressin +12.8605039,CL:0000634,http://purl.obolibrary.org/obo/CL_0000634,Claudius cell +12.8605039,DRUGBANK:DB00791,http://purl.obolibrary.org/obo/DRUGBANK_DB00791,none +12.8605039,DRUGBANK:DB02543,http://purl.obolibrary.org/obo/DRUGBANK_DB02543,none +12.8605039,DRUGBANK:DB03588,http://purl.obolibrary.org/obo/DRUGBANK_DB03588,none +12.8605039,DRUGBANK:DB04869,http://purl.obolibrary.org/obo/DRUGBANK_DB04869,none +12.8605039,DRUGBANK:DB04888,http://purl.obolibrary.org/obo/DRUGBANK_DB04888,none +12.8605039,DRUGBANK:DB06720,http://purl.obolibrary.org/obo/DRUGBANK_DB06720,none +12.8605039,DRUGBANK:DB09021,http://purl.obolibrary.org/obo/DRUGBANK_DB09021,none +12.8605039,DRUGBANK:DB09205,http://purl.obolibrary.org/obo/DRUGBANK_DB09205,none +12.8605039,DRUGBANK:DB11455,http://purl.obolibrary.org/obo/DRUGBANK_DB11455,none +12.8605039,DRUGBANK:DB11466,http://purl.obolibrary.org/obo/DRUGBANK_DB11466,none +12.8605039,DRUGBANK:DB11480,http://purl.obolibrary.org/obo/DRUGBANK_DB11480,none +12.8605039,DRUGBANK:DB11642,http://purl.obolibrary.org/obo/DRUGBANK_DB11642,none +12.8605039,DRUGBANK:DB11685,http://purl.obolibrary.org/obo/DRUGBANK_DB11685,none +12.8605039,DRUGBANK:DB11885,http://purl.obolibrary.org/obo/DRUGBANK_DB11885,none +12.8605039,DRUGBANK:DB12472,http://purl.obolibrary.org/obo/DRUGBANK_DB12472,none +12.8605039,DRUGBANK:DB13216,http://purl.obolibrary.org/obo/DRUGBANK_DB13216,none +12.8605039,DRUGBANK:DB13274,http://purl.obolibrary.org/obo/DRUGBANK_DB13274,none +12.8605039,DRUGBANK:DB13591,http://purl.obolibrary.org/obo/DRUGBANK_DB13591,none +12.8605039,DRUGBANK:DB14048,http://purl.obolibrary.org/obo/DRUGBANK_DB14048,none +12.8605039,DRUGBANK:DB14638,http://purl.obolibrary.org/obo/DRUGBANK_DB14638,none +12.8605039,DRUGBANK:DB15096,http://purl.obolibrary.org/obo/DRUGBANK_DB15096,none +12.8605039,DRUGBANK:DB16165,http://purl.obolibrary.org/obo/DRUGBANK_DB16165,none +12.8605039,GO:0000821,http://purl.obolibrary.org/obo/GO_0000821,regulation of arginine metabolic process +12.8605039,GO:0000915,http://purl.obolibrary.org/obo/GO_0000915,actomyosin contractile ring assembly +12.8605039,GO:0002576,http://purl.obolibrary.org/obo/GO_0002576,platelet degranulation +12.8605039,GO:0002698,http://purl.obolibrary.org/obo/GO_0002698,negative regulation of immune effector process +12.8605039,GO:0003896,http://purl.obolibrary.org/obo/GO_0003896,DNA primase activity +12.8605039,GO:0004169,http://purl.obolibrary.org/obo/GO_0004169,dolichyl-phosphate-mannose-protein mannosyltransferase activity +12.8605039,GO:0004526,http://purl.obolibrary.org/obo/GO_0004526,ribonuclease P activity +12.8605039,GO:0006041,http://purl.obolibrary.org/obo/GO_0006041,glucosamine metabolic process +12.8605039,GO:0008775,http://purl.obolibrary.org/obo/GO_0008775,acetate CoA-transferase activity +12.8605039,GO:0016235,http://purl.obolibrary.org/obo/GO_0016235,aggresome +12.8605039,GO:0016497,http://purl.obolibrary.org/obo/GO_0016497,substance K receptor activity +12.8605039,GO:0016579,http://purl.obolibrary.org/obo/GO_0016579,protein deubiquitination +12.8605039,GO:0018216,http://purl.obolibrary.org/obo/GO_0018216,peptidyl-arginine methylation +12.8605039,GO:0019413,http://purl.obolibrary.org/obo/GO_0019413,acetate biosynthetic process +12.8605039,GO:0021590,http://purl.obolibrary.org/obo/GO_0021590,cerebellum maturation +12.8605039,GO:0030378,http://purl.obolibrary.org/obo/GO_0030378,serine racemase activity +12.8605039,GO:0030865,http://purl.obolibrary.org/obo/GO_0030865,cortical cytoskeleton organization +12.8605039,GO:0030866,http://purl.obolibrary.org/obo/GO_0030866,cortical actin cytoskeleton organization +12.8605039,GO:0034162,http://purl.obolibrary.org/obo/GO_0034162,toll-like receptor 9 signaling pathway +12.8605039,GO:0034756,http://purl.obolibrary.org/obo/GO_0034756,regulation of iron ion transport +12.8605039,GO:0042368,http://purl.obolibrary.org/obo/GO_0042368,vitamin D biosynthetic process +12.8605039,GO:0042616,http://purl.obolibrary.org/obo/GO_0042616,paclitaxel metabolic process +12.8605039,GO:0043171,http://purl.obolibrary.org/obo/GO_0043171,peptide catabolic process +12.8605039,GO:0044174,http://purl.obolibrary.org/obo/GO_0044174,host cell endosome +12.8605039,GO:0044837,http://purl.obolibrary.org/obo/GO_0044837,actomyosin contractile ring organization +12.8605039,GO:0045013,http://purl.obolibrary.org/obo/GO_0045013,carbon catabolite repression of transcription +12.8605039,GO:0045014,http://purl.obolibrary.org/obo/GO_0045014,carbon catabolite repression of transcription by glucose +12.8605039,GO:0045179,http://purl.obolibrary.org/obo/GO_0045179,apical cortex +12.8605039,GO:0045738,http://purl.obolibrary.org/obo/GO_0045738,negative regulation of DNA repair +12.8605039,GO:0046015,http://purl.obolibrary.org/obo/GO_0046015,regulation of transcription by glucose +12.8605039,GO:0061485,http://purl.obolibrary.org/obo/GO_0061485,memory T cell proliferation +12.8605039,GO:0061687,http://purl.obolibrary.org/obo/GO_0061687,detoxification of inorganic compound +12.8605039,GO:0061985,http://purl.obolibrary.org/obo/GO_0061985,carbon catabolite repression +12.8605039,GO:0061986,http://purl.obolibrary.org/obo/GO_0061986,negative regulation of transcription by glucose +12.8605039,GO:0070418,http://purl.obolibrary.org/obo/GO_0070418,DNA-dependent protein kinase complex +12.8605039,GO:0070582,http://purl.obolibrary.org/obo/GO_0070582,theta DNA replication +12.8605039,GO:0071156,http://purl.obolibrary.org/obo/GO_0071156,none +12.8605039,GO:0072351,http://purl.obolibrary.org/obo/GO_0072351,tricarboxylic acid biosynthetic process +12.8605039,GO:1900450,http://purl.obolibrary.org/obo/GO_1900450,negative regulation of glutamate receptor signaling pathway +12.8605039,GO:1901557,http://purl.obolibrary.org/obo/GO_1901557,response to fenofibrate +12.8605039,GO:1901873,http://purl.obolibrary.org/obo/GO_1901873,regulation of post-translational protein modification +12.8605039,GO:1903649,http://purl.obolibrary.org/obo/GO_1903649,regulation of cytoplasmic transport +12.8605039,GO:1904782,http://purl.obolibrary.org/obo/GO_1904782,negative regulation of NMDA glutamate receptor activity +12.8605039,GO:1990401,http://purl.obolibrary.org/obo/GO_1990401,embryonic lung development +12.8605039,GO:2000146,http://purl.obolibrary.org/obo/GO_2000146,negative regulation of cell motility +12.8605039,GO:2000345,http://purl.obolibrary.org/obo/GO_2000345,regulation of hepatocyte proliferation +12.8605039,GO:2001021,http://purl.obolibrary.org/obo/GO_2001021,negative regulation of response to DNA damage stimulus +12.8605039,HP:0003812,http://purl.obolibrary.org/obo/HP_0003812,Phenotypic variability +12.8605039,HP:0032320,http://purl.obolibrary.org/obo/HP_0032320,Affected +12.8605039,MONDO:0000736,http://purl.obolibrary.org/obo/MONDO_0000736,dyschromatosis universalis hereditaria +12.8605039,MONDO:0001763,http://purl.obolibrary.org/obo/MONDO_0001763,ethmoid sinus cancer +12.8605039,MONDO:0003100,http://purl.obolibrary.org/obo/MONDO_0003100,nerve plexus neoplasm +12.8605039,MONDO:0003299,http://purl.obolibrary.org/obo/MONDO_0003299,colorectal leiomyoma +12.8605039,MONDO:0004270,http://purl.obolibrary.org/obo/MONDO_0004270,breast ductal adenoma +12.8605039,MONDO:0005708,http://purl.obolibrary.org/obo/MONDO_0005708,Colorado tick fever +12.8605039,MONDO:0005967,http://purl.obolibrary.org/obo/MONDO_0005967,splenic tuberculosis +12.8605039,MONDO:0006666,http://purl.obolibrary.org/obo/MONDO_0006666,atrophy of thyroid +12.8605039,MONDO:0007130,http://purl.obolibrary.org/obo/MONDO_0007130,congenital total pulmonary venous return anomaly +12.8605039,MONDO:0007380,http://purl.obolibrary.org/obo/MONDO_0007380,lattice corneal dystrophy type I +12.8605039,MONDO:0008104,http://purl.obolibrary.org/obo/MONDO_0008104,Noonan syndrome 1 +12.8605039,MONDO:0009575,http://purl.obolibrary.org/obo/MONDO_0009575,thiamine-responsive megaloblastic anemia syndrome +12.8605039,MONDO:0011018,http://purl.obolibrary.org/obo/MONDO_0011018,brachyolmia-amelogenesis imperfecta syndrome +12.8605039,MONDO:0011528,http://purl.obolibrary.org/obo/MONDO_0011528,hyper-IgM syndrome type 2 +12.8605039,MONDO:0013296,http://purl.obolibrary.org/obo/MONDO_0013296,myeloid neoplasm associated with FGFR1 rearrangement +12.8605039,MONDO:0015047,http://purl.obolibrary.org/obo/MONDO_0015047,amelogenesis imperfecta type 1 +12.8605039,MONDO:0015419,http://purl.obolibrary.org/obo/MONDO_0015419,midline cervical cleft +12.8605039,MONDO:0016344,http://purl.obolibrary.org/obo/MONDO_0016344,hydranencephaly +12.8605039,MONDO:0018734,http://purl.obolibrary.org/obo/MONDO_0018734,verrucous hemangioma +12.8605039,MONDO:0019586,http://purl.obolibrary.org/obo/MONDO_0019586,X-linked nonsyndromic deafness +12.8605039,MONDO:0020491,http://purl.obolibrary.org/obo/MONDO_0020491,subcortical band heterotopia +12.8605039,MONDO:0021765,http://purl.obolibrary.org/obo/MONDO_0021765,radiculitis +12.8605039,MONDO:0100076,http://purl.obolibrary.org/obo/MONDO_0100076,juvenile idiopathic scoliosis +12.8605039,NCBITaxon:11973,http://purl.obolibrary.org/obo/NCBITaxon_11973,none +12.8605039,NCBITaxon:1253,http://purl.obolibrary.org/obo/NCBITaxon_1253,none +12.8605039,NCBITaxon:135623,http://purl.obolibrary.org/obo/NCBITaxon_135623,Vibrionales +12.8605039,NCBITaxon:169862,http://purl.obolibrary.org/obo/NCBITaxon_169862,none +12.8605039,NCBITaxon:1933186,http://purl.obolibrary.org/obo/NCBITaxon_1933186,none +12.8605039,NCBITaxon:2777416,http://purl.obolibrary.org/obo/NCBITaxon_2777416,none +12.8605039,NCBITaxon:42413,http://purl.obolibrary.org/obo/NCBITaxon_42413,none +12.8605039,NCBITaxon:43871,http://purl.obolibrary.org/obo/NCBITaxon_43871,none +12.8605039,NCBITaxon:566546,http://purl.obolibrary.org/obo/NCBITaxon_566546,none +12.8605039,NCBITaxon:6100,http://purl.obolibrary.org/obo/NCBITaxon_6100,none +12.8605039,NCBITaxon:641,http://purl.obolibrary.org/obo/NCBITaxon_641,Vibrionaceae +12.8605039,NCBITaxon:7991,http://purl.obolibrary.org/obo/NCBITaxon_7991,none +12.8605039,PR:000003772,http://purl.obolibrary.org/obo/PR_000003772,alcohol dehydrogenase 6 +12.8605039,PR:000003908,http://purl.obolibrary.org/obo/PR_000003908,aflatoxin B1 aldehyde reductase member 2 +12.8605039,PR:000004640,http://purl.obolibrary.org/obo/PR_000004640,protein BANP +12.8605039,PR:000004778,http://purl.obolibrary.org/obo/PR_000004778,zinc finger protein basonuclin-2 +12.8605039,PR:000005604,http://purl.obolibrary.org/obo/PR_000005604,"ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial" +12.8605039,PR:000005646,http://purl.obolibrary.org/obo/PR_000005646,metal transporter CNNM4 +12.8605039,PR:000005890,http://purl.obolibrary.org/obo/PR_000005890,crooked neck-like protein 1 +12.8605039,PR:000006623,http://purl.obolibrary.org/obo/PR_000006623,dedicator of cytokinesis protein 6 +12.8605039,PR:000006743,http://purl.obolibrary.org/obo/PR_000006743,dual specificity protein phosphatase 16 +12.8605039,PR:000007064,http://purl.obolibrary.org/obo/PR_000007064,epithelial membrane protein 3 +12.8605039,PR:000007485,http://purl.obolibrary.org/obo/PR_000007485,fibroblast growth factor 16 +12.8605039,PR:000008357,http://purl.obolibrary.org/obo/PR_000008357,PTB domain-containing engulfment adapter protein 1 +12.8605039,PR:000008566,http://purl.obolibrary.org/obo/PR_000008566,homeodomain-interacting protein kinase 1 +12.8605039,PR:000008606,http://purl.obolibrary.org/obo/PR_000008606,transcription factor HIVEP3 +12.8605039,PR:000009000,http://purl.obolibrary.org/obo/PR_000009000,interleukin-22 receptor subunit alpha-2 +12.8605039,PR:000009239,http://purl.obolibrary.org/obo/PR_000009239,KN motif and ankyrin repeat domain-containing protein 1 +12.8605039,PR:000009272,http://purl.obolibrary.org/obo/PR_000009272,BTB/POZ domain-containing protein KCTD11 +12.8605039,PR:000010149,http://purl.obolibrary.org/obo/PR_000010149,ensconsin +12.8605039,PR:000010256,http://purl.obolibrary.org/obo/PR_000010256,microspherule protein 1 +12.8605039,PR:000010428,http://purl.obolibrary.org/obo/PR_000010428,muskelin +12.8605039,PR:000010449,http://purl.obolibrary.org/obo/PR_000010449,protein ENL +12.8605039,PR:000010503,http://purl.obolibrary.org/obo/PR_000010503,MOB kinase activator 2 +12.8605039,PR:000011005,http://purl.obolibrary.org/obo/PR_000011005,N-acetyltransferase 9 +12.8605039,PR:000011053,http://purl.obolibrary.org/obo/PR_000011053,NEDD4 family-interacting protein 1 +12.8605039,PR:000011579,http://purl.obolibrary.org/obo/PR_000011579,ornithine decarboxylase antizyme +12.8605039,PR:000011614,http://purl.obolibrary.org/obo/PR_000011614,opioid growth factor receptor +12.8605039,PR:000012691,http://purl.obolibrary.org/obo/PR_000012691,"PTB-containing, cubilin and LRP1-interacting protein" +12.8605039,PR:000013016,http://purl.obolibrary.org/obo/PR_000013016,"protein O-linked-mannose beta-1,2-N-acetylglucosaminyltransferase 1" +12.8605039,PR:000013123,http://purl.obolibrary.org/obo/PR_000013123,protein phosphatase inhibitor 2 +12.8605039,PR:000013497,http://purl.obolibrary.org/obo/PR_000013497,eukaryotic tRNA pseudouridine synthase A +12.8605039,PR:000013908,http://purl.obolibrary.org/obo/PR_000013908,replication factor C subunit 4 +12.8605039,PR:000013964,http://purl.obolibrary.org/obo/PR_000013964,regulator of G-protein signaling 8 +12.8605039,PR:000014062,http://purl.obolibrary.org/obo/PR_000014062,Rho-related GTP-binding protein RhoN +12.8605039,PR:000014155,http://purl.obolibrary.org/obo/PR_000014155,regulator of differentiation 1 +12.8605039,PR:000014291,http://purl.obolibrary.org/obo/PR_000014291,40S ribosomal protein S8 +12.8605039,PR:000014711,http://purl.obolibrary.org/obo/PR_000014711,SERTA domain-containing protein 1 +12.8605039,PR:000014856,http://purl.obolibrary.org/obo/PR_000014856,protein Shroom3 +12.8605039,PR:000014956,http://purl.obolibrary.org/obo/PR_000014956,monocarboxylate transporter 3 +12.8605039,PR:000015346,http://purl.obolibrary.org/obo/PR_000015346,small nuclear ribonucleoprotein E +12.8605039,PR:000015666,http://purl.obolibrary.org/obo/PR_000015666,RNA polymerase II subunit A C-terminal domain phosphatase SSU72 +12.8605039,PR:000015732,http://purl.obolibrary.org/obo/PR_000015732,metalloreductase STEAP3 +12.8605039,PR:000015801,http://purl.obolibrary.org/obo/PR_000015801,syntaxin-binding protein 2 +12.8605039,PR:000022300,http://purl.obolibrary.org/obo/PR_000022300,none +12.8605039,PR:000022710,http://purl.obolibrary.org/obo/PR_000022710,none +12.8605039,PR:000023424,http://purl.obolibrary.org/obo/PR_000023424,none +12.8605039,PR:000024033,http://purl.obolibrary.org/obo/PR_000024033,none +12.8605039,PR:000029445,http://purl.obolibrary.org/obo/PR_000029445,ER membrane protein complex subunit 3 +12.8605039,PR:000030936,http://purl.obolibrary.org/obo/PR_000030936,protein-serine O-palmitoleoyltransferase porcupine +12.8605039,PR:000033904,http://purl.obolibrary.org/obo/PR_000033904,none +12.8605039,PR:O74986,http://purl.obolibrary.org/obo/PR_O74986,none +12.8605039,PR:O81851,http://purl.obolibrary.org/obo/PR_O81851,none +12.8605039,PR:P02566,http://purl.obolibrary.org/obo/PR_P02566,none +12.8605039,PR:P18160,http://purl.obolibrary.org/obo/PR_P18160,none +12.8605039,PR:P21216,http://purl.obolibrary.org/obo/PR_P21216,none +12.8605039,PR:P25851,http://purl.obolibrary.org/obo/PR_P25851,none +12.8605039,PR:P35352,http://purl.obolibrary.org/obo/PR_P35352,none +12.8605039,PR:P38696,http://purl.obolibrary.org/obo/PR_P38696,none +12.8605039,PR:P46461,http://purl.obolibrary.org/obo/PR_P46461,none +12.8605039,PR:P46645,http://purl.obolibrary.org/obo/PR_P46645,none +12.8605039,PR:Q39069,http://purl.obolibrary.org/obo/PR_Q39069,none +12.8605039,PR:Q54KV6,http://purl.obolibrary.org/obo/PR_Q54KV6,none +12.8605039,PR:Q55FG3,http://purl.obolibrary.org/obo/PR_Q55FG3,none +12.8605039,PR:Q7K3L1,http://purl.obolibrary.org/obo/PR_Q7K3L1,none +12.8605039,PR:Q9LDE1,http://purl.obolibrary.org/obo/PR_Q9LDE1,none +12.8605039,PR:Q9M1B4,http://purl.obolibrary.org/obo/PR_Q9M1B4,none +12.8605039,PR:Q9P289,http://purl.obolibrary.org/obo/PR_Q9P289,serine/threonine-protein kinase 26 (human) +12.8605039,PR:Q9S9N9,http://purl.obolibrary.org/obo/PR_Q9S9N9,none +12.8605039,PR:Q9Z1I6,http://purl.obolibrary.org/obo/PR_Q9Z1I6,none +12.8605039,SO:0000057,http://purl.obolibrary.org/obo/SO_0000057,operator +12.8605039,SO:0000752,http://purl.obolibrary.org/obo/SO_0000752,none +12.8605039,SO:0001958,http://purl.obolibrary.org/obo/SO_0001958,lariat_intron +12.8605039,UBERON:0001671,http://purl.obolibrary.org/obo/UBERON_0001671,temporal vein +12.8605039,UBERON:0001942,http://purl.obolibrary.org/obo/UBERON_0001942,medial habenular nucleus +12.8605039,UBERON:0002026,http://purl.obolibrary.org/obo/UBERON_0002026,stratum spinosum of epidermis +12.8605039,UBERON:0002390,http://purl.obolibrary.org/obo/UBERON_0002390,hematopoietic system +12.8605039,UBERON:0002657,http://purl.obolibrary.org/obo/UBERON_0002657,posterior parahippocampal gyrus +12.8605039,UBERON:0003087,http://purl.obolibrary.org/obo/UBERON_0003087,anterior cardinal vein +12.8605039,UBERON:0005863,http://purl.obolibrary.org/obo/UBERON_0005863,cartilaginous condensation +12.8605039,UBERON:0008250,http://purl.obolibrary.org/obo/UBERON_0008250,cardiac stomach +12.8605039,UBERON:0009062,http://purl.obolibrary.org/obo/UBERON_0009062,posterior air sac +12.8605039,UBERON:0010754,http://purl.obolibrary.org/obo/UBERON_0010754,germinal center +12.8605039,UBERON:0015241,http://purl.obolibrary.org/obo/UBERON_0015241,parapineal organ +12.8605039,UBERON:0016382,http://purl.obolibrary.org/obo/UBERON_0016382,prescapular lymph node +12.877311,CHEBI:23482,http://purl.obolibrary.org/obo/CHEBI_23482,cyclohexanones +12.877311,CHEBI:29362,http://purl.obolibrary.org/obo/CHEBI_29362,ethylene group +12.877311,CHEBI:33711,http://purl.obolibrary.org/obo/CHEBI_33711,C-terminal amino-acid residue +12.877311,CHEBI:33747,http://purl.obolibrary.org/obo/CHEBI_33747,nickel group molecular entity +12.877311,CHEBI:77608,http://purl.obolibrary.org/obo/CHEBI_77608,loop diuretic +12.877311,CHEBI:83313,http://purl.obolibrary.org/obo/CHEBI_83313,protease-activated receptor-1 antagonist +12.877311,CHEBI:87013,http://purl.obolibrary.org/obo/CHEBI_87013,acylamino acid fungicide +12.877311,CL:0000463,http://purl.obolibrary.org/obo/CL_0000463,epidermal cell (sensu arthropoda) +12.877311,CL:0011101,http://purl.obolibrary.org/obo/CL_0011101,chorionic trophoblast cell +12.877311,DRUGBANK:DB01274,http://purl.obolibrary.org/obo/DRUGBANK_DB01274,none +12.877311,DRUGBANK:DB01325,http://purl.obolibrary.org/obo/DRUGBANK_DB01325,none +12.877311,DRUGBANK:DB01384,http://purl.obolibrary.org/obo/DRUGBANK_DB01384,none +12.877311,DRUGBANK:DB01511,http://purl.obolibrary.org/obo/DRUGBANK_DB01511,none +12.877311,DRUGBANK:DB02918,http://purl.obolibrary.org/obo/DRUGBANK_DB02918,none +12.877311,DRUGBANK:DB04501,http://purl.obolibrary.org/obo/DRUGBANK_DB04501,none +12.877311,DRUGBANK:DB04883,http://purl.obolibrary.org/obo/DRUGBANK_DB04883,none +12.877311,DRUGBANK:DB04890,http://purl.obolibrary.org/obo/DRUGBANK_DB04890,none +12.877311,DRUGBANK:DB05289,http://purl.obolibrary.org/obo/DRUGBANK_DB05289,none +12.877311,DRUGBANK:DB08993,http://purl.obolibrary.org/obo/DRUGBANK_DB08993,none +12.877311,DRUGBANK:DB09139,http://purl.obolibrary.org/obo/DRUGBANK_DB09139,none +12.877311,DRUGBANK:DB11273,http://purl.obolibrary.org/obo/DRUGBANK_DB11273,none +12.877311,DRUGBANK:DB11505,http://purl.obolibrary.org/obo/DRUGBANK_DB11505,none +12.877311,DRUGBANK:DB12066,http://purl.obolibrary.org/obo/DRUGBANK_DB12066,none +12.877311,DRUGBANK:DB12161,http://purl.obolibrary.org/obo/DRUGBANK_DB12161,none +12.877311,DRUGBANK:DB12590,http://purl.obolibrary.org/obo/DRUGBANK_DB12590,none +12.877311,DRUGBANK:DB13649,http://purl.obolibrary.org/obo/DRUGBANK_DB13649,none +12.877311,DRUGBANK:DB13744,http://purl.obolibrary.org/obo/DRUGBANK_DB13744,none +12.877311,DRUGBANK:DB14041,http://purl.obolibrary.org/obo/DRUGBANK_DB14041,none +12.877311,DRUGBANK:DB14255,http://purl.obolibrary.org/obo/DRUGBANK_DB14255,none +12.877311,DRUGBANK:DB15360,http://purl.obolibrary.org/obo/DRUGBANK_DB15360,none +12.877311,DRUGBANK:DB15427,http://purl.obolibrary.org/obo/DRUGBANK_DB15427,none +12.877311,GO:0001567,http://purl.obolibrary.org/obo/GO_0001567,cholesterol 25-hydroxylase activity +12.877311,GO:0001957,http://purl.obolibrary.org/obo/GO_0001957,intramembranous ossification +12.877311,GO:0002390,http://purl.obolibrary.org/obo/GO_0002390,none +12.877311,GO:0003861,http://purl.obolibrary.org/obo/GO_0003861,3-isopropylmalate dehydratase activity +12.877311,GO:0004358,http://purl.obolibrary.org/obo/GO_0004358,glutamate N-acetyltransferase activity +12.877311,GO:0004591,http://purl.obolibrary.org/obo/GO_0004591,oxoglutarate dehydrogenase (succinyl-transferring) activity +12.877311,GO:0004828,http://purl.obolibrary.org/obo/GO_0004828,serine-tRNA ligase activity +12.877311,GO:0008076,http://purl.obolibrary.org/obo/GO_0008076,voltage-gated potassium channel complex +12.877311,GO:0009265,http://purl.obolibrary.org/obo/GO_0009265,2'-deoxyribonucleotide biosynthetic process +12.877311,GO:0010566,http://purl.obolibrary.org/obo/GO_0010566,regulation of ketone biosynthetic process +12.877311,GO:0014856,http://purl.obolibrary.org/obo/GO_0014856,skeletal muscle cell proliferation +12.877311,GO:0016094,http://purl.obolibrary.org/obo/GO_0016094,polyprenol biosynthetic process +12.877311,GO:0021953,http://purl.obolibrary.org/obo/GO_0021953,central nervous system neuron differentiation +12.877311,GO:0022406,http://purl.obolibrary.org/obo/GO_0022406,membrane docking +12.877311,GO:0030650,http://purl.obolibrary.org/obo/GO_0030650,peptide antibiotic metabolic process +12.877311,GO:0032605,http://purl.obolibrary.org/obo/GO_0032605,hepatocyte growth factor production +12.877311,GO:0032835,http://purl.obolibrary.org/obo/GO_0032835,glomerulus development +12.877311,GO:0032839,http://purl.obolibrary.org/obo/GO_0032839,dendrite cytoplasm +12.877311,GO:0035252,http://purl.obolibrary.org/obo/GO_0035252,UDP-xylosyltransferase activity +12.877311,GO:0036035,http://purl.obolibrary.org/obo/GO_0036035,osteoclast development +12.877311,GO:0036364,http://purl.obolibrary.org/obo/GO_0036364,transforming growth factor beta1 activation +12.877311,GO:0042123,http://purl.obolibrary.org/obo/GO_0042123,glucanosyltransferase activity +12.877311,GO:0043276,http://purl.obolibrary.org/obo/GO_0043276,anoikis +12.877311,GO:0043577,http://purl.obolibrary.org/obo/GO_0043577,chemotropism +12.877311,GO:0043693,http://purl.obolibrary.org/obo/GO_0043693,monoterpene biosynthetic process +12.877311,GO:0045834,http://purl.obolibrary.org/obo/GO_0045834,positive regulation of lipid metabolic process +12.877311,GO:0046040,http://purl.obolibrary.org/obo/GO_0046040,IMP metabolic process +12.877311,GO:0046385,http://purl.obolibrary.org/obo/GO_0046385,deoxyribose phosphate biosynthetic process +12.877311,GO:0046519,http://purl.obolibrary.org/obo/GO_0046519,sphingoid metabolic process +12.877311,GO:0046868,http://purl.obolibrary.org/obo/GO_0046868,mesosome +12.877311,GO:0047876,http://purl.obolibrary.org/obo/GO_0047876,endoglycosylceramidase activity +12.877311,GO:0048261,http://purl.obolibrary.org/obo/GO_0048261,negative regulation of receptor-mediated endocytosis +12.877311,GO:0050773,http://purl.obolibrary.org/obo/GO_0050773,regulation of dendrite development +12.877311,GO:0051275,http://purl.obolibrary.org/obo/GO_0051275,beta-glucan catabolic process +12.877311,GO:0051304,http://purl.obolibrary.org/obo/GO_0051304,chromosome separation +12.877311,GO:0070488,http://purl.obolibrary.org/obo/GO_0070488,neutrophil aggregation +12.877311,GO:0070729,http://purl.obolibrary.org/obo/GO_0070729,cyclic nucleotide transport +12.877311,GO:0071634,http://purl.obolibrary.org/obo/GO_0071634,regulation of transforming growth factor beta production +12.877311,GO:0090653,http://purl.obolibrary.org/obo/GO_0090653,apical recycling endosome +12.877311,GO:1901562,http://purl.obolibrary.org/obo/GO_1901562,response to paraquat +12.877311,HP:0002503,http://purl.obolibrary.org/obo/HP_0002503,Spinocerebellar tract degeneration +12.877311,HP:0003027,http://purl.obolibrary.org/obo/HP_0003027,Mesomelia +12.877311,HP:0003133,http://purl.obolibrary.org/obo/HP_0003133,Abnormality of the spinocerebellar tracts +12.877311,MONDO:0000127,http://purl.obolibrary.org/obo/MONDO_0000127,geleophysic dysplasia +12.877311,MONDO:0001757,http://purl.obolibrary.org/obo/MONDO_0001757,frontal sinus neoplasm +12.877311,MONDO:0001975,http://purl.obolibrary.org/obo/MONDO_0001975,cavernous hemangioma of orbit +12.877311,MONDO:0003353,http://purl.obolibrary.org/obo/MONDO_0003353,heart leiomyosarcoma +12.877311,MONDO:0003431,http://purl.obolibrary.org/obo/MONDO_0003431,lipoadenoma +12.877311,MONDO:0004433,http://purl.obolibrary.org/obo/MONDO_0004433,papillary carcinoma of the penis +12.877311,MONDO:0004687,http://purl.obolibrary.org/obo/MONDO_0004687,severe nonproliferative diabetic retinopathy +12.877311,MONDO:0005582,http://purl.obolibrary.org/obo/MONDO_0005582,binge eating disorder +12.877311,MONDO:0006300,http://purl.obolibrary.org/obo/MONDO_0006300,medullomyoblastoma with myogenic differentiation +12.877311,MONDO:0006365,http://purl.obolibrary.org/obo/MONDO_0006365,Peutz-Jeghers polyp +12.877311,MONDO:0006458,http://purl.obolibrary.org/obo/MONDO_0006458,thymoma type B3 +12.877311,MONDO:0006841,http://purl.obolibrary.org/obo/MONDO_0006841,lymphangioendothelioma +12.877311,MONDO:0009260,http://purl.obolibrary.org/obo/MONDO_0009260,GM1 gangliosidosis type 1 +12.877311,MONDO:0009945,http://purl.obolibrary.org/obo/MONDO_0009945,pyridoxine-dependent epilepsy +12.877311,MONDO:0010216,http://purl.obolibrary.org/obo/MONDO_0010216,xeroderma pigmentosum group G +12.877311,MONDO:0011436,http://purl.obolibrary.org/obo/MONDO_0011436,autosomal recessive distal spinal muscular atrophy 1 +12.877311,MONDO:0016008,http://purl.obolibrary.org/obo/MONDO_0016008,fetal hydantoin syndrome +12.877311,MONDO:0017748,http://purl.obolibrary.org/obo/MONDO_0017748,inborn disorder of glycosphingolipid and glycosylphosphatidylinositol anchor glycosylation +12.877311,MONDO:0019233,http://purl.obolibrary.org/obo/MONDO_0019233,disorder of peroxisomal beta oxidation +12.877311,MONDO:0025484,http://purl.obolibrary.org/obo/MONDO_0025484,simian acquired immunodeficiency syndrome +12.877311,MONDO:0043355,http://purl.obolibrary.org/obo/MONDO_0043355,collagenous gastritis +12.877311,MONDO:0044747,http://purl.obolibrary.org/obo/MONDO_0044747,human anaplasmosis +12.877311,MONDO:0044789,http://purl.obolibrary.org/obo/MONDO_0044789,digital papillary eccrine carcinoma +12.877311,MONDO:0045043,http://purl.obolibrary.org/obo/MONDO_0045043,disease of uterine broad ligament +12.877311,NCBITaxon:186282,http://purl.obolibrary.org/obo/NCBITaxon_186282,none +12.877311,NCBITaxon:31920,http://purl.obolibrary.org/obo/NCBITaxon_31920,none +12.877311,NCBITaxon:3705,http://purl.obolibrary.org/obo/NCBITaxon_3705,none +12.877311,NCBITaxon:82115,http://purl.obolibrary.org/obo/NCBITaxon_82115,none +12.877311,PR:000003294,http://purl.obolibrary.org/obo/PR_000003294,NF-kappa-B inhibitor beta +12.877311,PR:000004257,http://purl.obolibrary.org/obo/PR_000004257,Rho guanine nucleotide exchange factor 4 +12.877311,PR:000004258,http://purl.obolibrary.org/obo/PR_000004258,Rho guanine nucleotide exchange factor 5 +12.877311,PR:000004403,http://purl.obolibrary.org/obo/PR_000004403,cyclic AMP-dependent transcription factor ATF-6 beta +12.877311,PR:000004425,http://purl.obolibrary.org/obo/PR_000004425,atlastin-2 +12.877311,PR:000004477,http://purl.obolibrary.org/obo/PR_000004477,V-type proton ATPase subunit d 2 +12.877311,PR:000005495,http://purl.obolibrary.org/obo/PR_000005495,cartilage intermediate layer protein 1 +12.877311,PR:000005722,http://purl.obolibrary.org/obo/PR_000005722,collagen alpha-1(IX) chain +12.877311,PR:000005928,http://purl.obolibrary.org/obo/PR_000005928,cold shock domain-containing protein E1 +12.877311,PR:000006220,http://purl.obolibrary.org/obo/PR_000006220,none +12.877311,PR:000006905,http://purl.obolibrary.org/obo/PR_000006905,elongation factor 1-beta +12.877311,PR:000007093,http://purl.obolibrary.org/obo/PR_000007093,ectonucleoside triphosphate diphosphohydrolase 2 +12.877311,PR:000007252,http://purl.obolibrary.org/obo/PR_000007252,exocyst complex component 5 +12.877311,PR:000007369,http://purl.obolibrary.org/obo/PR_000007369,lysine-specific demethylase 2A +12.877311,PR:000007412,http://purl.obolibrary.org/obo/PR_000007412,F-box only protein 43 +12.877311,PR:000007901,http://purl.obolibrary.org/obo/PR_000007901,eIF-2-alpha kinase activator GCN1 +12.877311,PR:000007981,http://purl.obolibrary.org/obo/PR_000007981,gypsy retrotransposon integrase-like protein 1 +12.877311,PR:000008711,http://purl.obolibrary.org/obo/PR_000008711,homeobox protein Hox-C4 +12.877311,PR:000008959,http://purl.obolibrary.org/obo/PR_000008959,immunoglobulin heavy constant gamma 1 +12.877311,PR:000008981,http://purl.obolibrary.org/obo/PR_000008981,interleukin-15 receptor subunit alpha +12.877311,PR:000009088,http://purl.obolibrary.org/obo/PR_000009088,importin-5 +12.877311,PR:000009230,http://purl.obolibrary.org/obo/PR_000009230,aminoacyl tRNA synthase complex-interacting multifunctional protein 2 +12.877311,PR:000009604,http://purl.obolibrary.org/obo/PR_000009604,none +12.877311,PR:000009681,http://purl.obolibrary.org/obo/PR_000009681,ceramide synthase 5 +12.877311,PR:000010008,http://purl.obolibrary.org/obo/PR_000010008,lysophospholipase-like protein 1 +12.877311,PR:000010131,http://purl.obolibrary.org/obo/PR_000010131,mitogen-activated protein kinase kinase kinase 12 +12.877311,PR:000011619,http://purl.obolibrary.org/obo/PR_000011619,protein Mis18-beta +12.877311,PR:000012551,http://purl.obolibrary.org/obo/PR_000012551,p53 apoptosis effector related to PMP-22 +12.877311,PR:000012906,http://purl.obolibrary.org/obo/PR_000012906,polyamine-modulated factor 1-binding protein 1 +12.877311,PR:000012924,http://purl.obolibrary.org/obo/PR_000012924,bifunctional polynucleotide phosphatase/kinase +12.877311,PR:000013796,http://purl.obolibrary.org/obo/PR_000013796,RNA-binding protein 38 +12.877311,PR:000013994,http://purl.obolibrary.org/obo/PR_000013994,protein RIC-3 +12.877311,PR:000014053,http://purl.obolibrary.org/obo/PR_000014053,ribonuclease H1 +12.877311,PR:000014178,http://purl.obolibrary.org/obo/PR_000014178,ribulose-phosphate 3-epimerase +12.877311,PR:000014186,http://purl.obolibrary.org/obo/PR_000014186,ribose-5-phosphate isomerase +12.877311,PR:000014375,http://purl.obolibrary.org/obo/PR_000014375,RING1 and YY1-binding protein +12.877311,PR:000015218,http://purl.obolibrary.org/obo/PR_000015218,sodium/hydrogen exchanger 6 +12.877311,PR:000015460,http://purl.obolibrary.org/obo/PR_000015460,sperm-associated antigen 6 +12.877311,PR:000015507,http://purl.obolibrary.org/obo/PR_000015507,signal peptidase complex subunit 3 +12.877311,PR:000015569,http://purl.obolibrary.org/obo/PR_000015569,"sprouty-related, EVH1 domain-containing protein 2" +12.877311,PR:000015755,http://purl.obolibrary.org/obo/PR_000015755,serine/threonine-protein kinase 38-like +12.877311,PR:000016341,http://purl.obolibrary.org/obo/PR_000016341,mitochondrial import inner membrane translocase subunit Tim10 +12.877311,PR:000017003,http://purl.obolibrary.org/obo/PR_000017003,ubinuclein-1 +12.877311,PR:000017257,http://purl.obolibrary.org/obo/PR_000017257,vesicle-associated membrane protein-associated protein A +12.877311,PR:000017350,http://purl.obolibrary.org/obo/PR_000017350,serine/threonine-protein kinase VRK2 +12.877311,PR:000017399,http://purl.obolibrary.org/obo/PR_000017399,telomerase Cajal body protein 1 +12.877311,PR:000017527,http://purl.obolibrary.org/obo/PR_000017527,YEATS domain-containing protein 4 +12.877311,PR:000017718,http://purl.obolibrary.org/obo/PR_000017718,zinc finger protein 148 +12.877311,PR:000018205,http://purl.obolibrary.org/obo/PR_000018205,DNA-directed RNA polymerase I subunit RPA12 +12.877311,PR:000022282,http://purl.obolibrary.org/obo/PR_000022282,none +12.877311,PR:000023071,http://purl.obolibrary.org/obo/PR_000023071,none +12.877311,PR:000023635,http://purl.obolibrary.org/obo/PR_000023635,none +12.877311,PR:000024030,http://purl.obolibrary.org/obo/PR_000024030,none +12.877311,PR:000024124,http://purl.obolibrary.org/obo/PR_000024124,none +12.877311,PR:000025015,http://purl.obolibrary.org/obo/PR_000025015,none +12.877311,PR:000029810,http://purl.obolibrary.org/obo/PR_000029810,transmembrane protein 50A +12.877311,PR:000030914,http://purl.obolibrary.org/obo/PR_000030914,putative insulin-like growth factor 2 antisense gene protein +12.877311,PR:000031227,http://purl.obolibrary.org/obo/PR_000031227,meiosis inhibitor protein 1 +12.877311,PR:000049984,http://purl.obolibrary.org/obo/PR_000049984,protein DDI1 homolog +12.877311,PR:E1C261,http://purl.obolibrary.org/obo/PR_E1C261,none +12.877311,PR:P0CJ48,http://purl.obolibrary.org/obo/PR_P0CJ48,none +12.877311,PR:P17608,http://purl.obolibrary.org/obo/PR_P17608,none +12.877311,PR:P29340,http://purl.obolibrary.org/obo/PR_P29340,none +12.877311,PR:Q0WL80,http://purl.obolibrary.org/obo/PR_Q0WL80,none +12.877311,PR:Q10336,http://purl.obolibrary.org/obo/PR_Q10336,none +12.877311,PR:Q5M7X9,http://purl.obolibrary.org/obo/PR_Q5M7X9,none +12.877311,PR:Q99JT2,http://purl.obolibrary.org/obo/PR_Q99JT2,none +12.877311,PR:Q9FUY2,http://purl.obolibrary.org/obo/PR_Q9FUY2,none +12.877311,SO:0001045,http://purl.obolibrary.org/obo/SO_0001045,cointegrated_plasmid +12.877311,SO:0100008,http://purl.obolibrary.org/obo/SO_0100008,alpha_beta_motif +12.877311,UBERON:0001104,http://purl.obolibrary.org/obo/UBERON_0001104,anterior jugular vein +12.877311,UBERON:0001189,http://purl.obolibrary.org/obo/UBERON_0001189,left testicular artery +12.877311,UBERON:0001363,http://purl.obolibrary.org/obo/UBERON_0001363,great saphenous vein +12.877311,UBERON:0001567,http://purl.obolibrary.org/obo/UBERON_0001567,cheek +12.877311,UBERON:0002537,http://purl.obolibrary.org/obo/UBERON_0002537,hermaphrodite gonad +12.877311,UBERON:0002665,http://purl.obolibrary.org/obo/UBERON_0002665,supracallosal gyrus +12.877311,UBERON:0002945,http://purl.obolibrary.org/obo/UBERON_0002945,ventral posteromedial nucleus of thalamus +12.877311,UBERON:0003648,http://purl.obolibrary.org/obo/UBERON_0003648,metacarpal bone of digit 4 +12.877311,UBERON:0004025,http://purl.obolibrary.org/obo/UBERON_0004025,lateral ganglionic eminence +12.877311,UBERON:0005795,http://purl.obolibrary.org/obo/UBERON_0005795,embryonic uterus +12.877311,UBERON:0007349,http://purl.obolibrary.org/obo/UBERON_0007349,mesopallium +12.877311,UBERON:0008203,http://purl.obolibrary.org/obo/UBERON_0008203,pelvic cavity +12.877311,UBERON:0014526,http://purl.obolibrary.org/obo/UBERON_0014526,anterior limb of internal capsule +12.877311,UBERON:0015046,http://purl.obolibrary.org/obo/UBERON_0015046,manual digit 4 metacarpus endochondral element +12.877311,UBERON:1000022,http://purl.obolibrary.org/obo/UBERON_1000022,Zymbal's gland +12.877311,UBERON:2000676,http://purl.obolibrary.org/obo/UBERON_2000676,sagitta +12.877311,UBERON:3010606,http://purl.obolibrary.org/obo/UBERON_3010606,limb gland +12.8944055,CHEBI:22216,http://purl.obolibrary.org/obo/CHEBI_22216,acrylamides +12.8944055,CHEBI:33977,http://purl.obolibrary.org/obo/CHEBI_33977,metallic base +12.8944055,CHEBI:36700,http://purl.obolibrary.org/obo/CHEBI_36700,phosphocholines +12.8944055,CHEBI:37667,http://purl.obolibrary.org/obo/CHEBI_37667,sesquiterpene lactone +12.8944055,CHEBI:37668,http://purl.obolibrary.org/obo/CHEBI_37668,terpene lactone +12.8944055,CHEBI:51166,http://purl.obolibrary.org/obo/CHEBI_51166,Wittig reagent +12.8944055,CHEBI:6121,http://purl.obolibrary.org/obo/CHEBI_6121,ketamine +12.8944055,CHEBI:9161,http://purl.obolibrary.org/obo/CHEBI_9161,Single-stranded nucleotide +12.8944055,CL:0002166,http://purl.obolibrary.org/obo/CL_0002166,epithelial cell of Malassez +12.8944055,CL:0002613,http://purl.obolibrary.org/obo/CL_0002613,striatum neuron +12.8944055,DRUGBANK:DB02839,http://purl.obolibrary.org/obo/DRUGBANK_DB02839,none +12.8944055,DRUGBANK:DB03357,http://purl.obolibrary.org/obo/DRUGBANK_DB03357,none +12.8944055,DRUGBANK:DB04751,http://purl.obolibrary.org/obo/DRUGBANK_DB04751,none +12.8944055,DRUGBANK:DB05154,http://purl.obolibrary.org/obo/DRUGBANK_DB05154,none +12.8944055,DRUGBANK:DB05191,http://purl.obolibrary.org/obo/DRUGBANK_DB05191,none +12.8944055,DRUGBANK:DB05389,http://purl.obolibrary.org/obo/DRUGBANK_DB05389,none +12.8944055,DRUGBANK:DB06370,http://purl.obolibrary.org/obo/DRUGBANK_DB06370,none +12.8944055,DRUGBANK:DB09071,http://purl.obolibrary.org/obo/DRUGBANK_DB09071,none +12.8944055,DRUGBANK:DB09239,http://purl.obolibrary.org/obo/DRUGBANK_DB09239,none +12.8944055,DRUGBANK:DB10669,http://purl.obolibrary.org/obo/DRUGBANK_DB10669,none +12.8944055,DRUGBANK:DB11352,http://purl.obolibrary.org/obo/DRUGBANK_DB11352,none +12.8944055,DRUGBANK:DB11932,http://purl.obolibrary.org/obo/DRUGBANK_DB11932,none +12.8944055,DRUGBANK:DB13225,http://purl.obolibrary.org/obo/DRUGBANK_DB13225,none +12.8944055,DRUGBANK:DB13384,http://purl.obolibrary.org/obo/DRUGBANK_DB13384,none +12.8944055,DRUGBANK:DB13816,http://purl.obolibrary.org/obo/DRUGBANK_DB13816,none +12.8944055,DRUGBANK:DB13877,http://purl.obolibrary.org/obo/DRUGBANK_DB13877,none +12.8944055,DRUGBANK:DB13999,http://purl.obolibrary.org/obo/DRUGBANK_DB13999,none +12.8944055,DRUGBANK:DB14050,http://purl.obolibrary.org/obo/DRUGBANK_DB14050,none +12.8944055,DRUGBANK:DB14091,http://purl.obolibrary.org/obo/DRUGBANK_DB14091,none +12.8944055,DRUGBANK:DB14271,http://purl.obolibrary.org/obo/DRUGBANK_DB14271,none +12.8944055,GO:0000018,http://purl.obolibrary.org/obo/GO_0000018,regulation of DNA recombination +12.8944055,GO:0000234,http://purl.obolibrary.org/obo/GO_0000234,phosphoethanolamine N-methyltransferase activity +12.8944055,GO:0000241,http://purl.obolibrary.org/obo/GO_0000241,diakinesis +12.8944055,GO:0004121,http://purl.obolibrary.org/obo/GO_0004121,cystathionine beta-lyase activity +12.8944055,GO:0004604,http://purl.obolibrary.org/obo/GO_0004604,phosphoadenylyl-sulfate reductase (thioredoxin) activity +12.8944055,GO:0004643,http://purl.obolibrary.org/obo/GO_0004643,phosphoribosylaminoimidazolecarboxamide formyltransferase activity +12.8944055,GO:0004792,http://purl.obolibrary.org/obo/GO_0004792,thiosulfate sulfurtransferase activity +12.8944055,GO:0008614,http://purl.obolibrary.org/obo/GO_0008614,pyridoxine metabolic process +12.8944055,GO:0016972,http://purl.obolibrary.org/obo/GO_0016972,thiol oxidase activity +12.8944055,GO:0019566,http://purl.obolibrary.org/obo/GO_0019566,arabinose metabolic process +12.8944055,GO:0019771,http://purl.obolibrary.org/obo/GO_0019771,high-affinity IgG receptor activity +12.8944055,GO:0030750,http://purl.obolibrary.org/obo/GO_0030750,putrescine N-methyltransferase activity +12.8944055,GO:0031112,http://purl.obolibrary.org/obo/GO_0031112,positive regulation of microtubule polymerization or depolymerization +12.8944055,GO:0031216,http://purl.obolibrary.org/obo/GO_0031216,neopullulanase activity +12.8944055,GO:0031902,http://purl.obolibrary.org/obo/GO_0031902,late endosome membrane +12.8944055,GO:0033999,http://purl.obolibrary.org/obo/GO_0033999,chondroitin B lyase activity +12.8944055,GO:0035092,http://purl.obolibrary.org/obo/GO_0035092,sperm chromatin condensation +12.8944055,GO:0042069,http://purl.obolibrary.org/obo/GO_0042069,regulation of catecholamine metabolic process +12.8944055,GO:0042320,http://purl.obolibrary.org/obo/GO_0042320,"regulation of circadian sleep/wake cycle, REM sleep" +12.8944055,GO:0042412,http://purl.obolibrary.org/obo/GO_0042412,taurine biosynthetic process +12.8944055,GO:0043243,http://purl.obolibrary.org/obo/GO_0043243,positive regulation of protein-containing complex disassembly +12.8944055,GO:0043443,http://purl.obolibrary.org/obo/GO_0043443,acetone metabolic process +12.8944055,GO:0046305,http://purl.obolibrary.org/obo/GO_0046305,alkanesulfonate biosynthetic process +12.8944055,GO:0046475,http://purl.obolibrary.org/obo/GO_0046475,glycerophospholipid catabolic process +12.8944055,GO:0046555,http://purl.obolibrary.org/obo/GO_0046555,acetylxylan esterase activity +12.8944055,GO:0046605,http://purl.obolibrary.org/obo/GO_0046605,regulation of centrosome cycle +12.8944055,GO:0047605,http://purl.obolibrary.org/obo/GO_0047605,acetolactate decarboxylase activity +12.8944055,GO:0047610,http://purl.obolibrary.org/obo/GO_0047610,acetylsalicylate deacetylase activity +12.8944055,GO:0048244,http://purl.obolibrary.org/obo/GO_0048244,phytanoyl-CoA dioxygenase activity +12.8944055,GO:0048278,http://purl.obolibrary.org/obo/GO_0048278,vesicle docking +12.8944055,GO:0050265,http://purl.obolibrary.org/obo/GO_0050265,RNA uridylyltransferase activity +12.8944055,GO:0050820,http://purl.obolibrary.org/obo/GO_0050820,positive regulation of coagulation +12.8944055,GO:0051412,http://purl.obolibrary.org/obo/GO_0051412,response to corticosterone +12.8944055,GO:0055083,http://purl.obolibrary.org/obo/GO_0055083,monovalent inorganic anion homeostasis +12.8944055,GO:0072563,http://purl.obolibrary.org/obo/GO_0072563,endothelial microparticle +12.8944055,GO:0072733,http://purl.obolibrary.org/obo/GO_0072733,response to staurosporine +12.8944055,GO:0140056,http://purl.obolibrary.org/obo/GO_0140056,organelle localization by membrane tethering +12.8944055,GO:1901326,http://purl.obolibrary.org/obo/GO_1901326,response to tetracycline +12.8944055,GO:1901810,http://purl.obolibrary.org/obo/GO_1901810,beta-carotene metabolic process +12.8944055,GO:1904619,http://purl.obolibrary.org/obo/GO_1904619,response to dimethyl sulfoxide +12.8944055,HP:0000847,http://purl.obolibrary.org/obo/HP_0000847,Abnormality of renin-angiotensin system +12.8944055,HP:0003271,http://purl.obolibrary.org/obo/HP_0003271,Visceromegaly +12.8944055,HP:0012323,http://purl.obolibrary.org/obo/HP_0012323,Sleep myoclonus +12.8944055,HP:0040084,http://purl.obolibrary.org/obo/HP_0040084,Abnormal circulating renin +12.8944055,MONDO:0000114,http://purl.obolibrary.org/obo/MONDO_0000114,cerebelloparenchymal disorder +12.8944055,MONDO:0002790,http://purl.obolibrary.org/obo/MONDO_0002790,seminal vesicle tumor +12.8944055,MONDO:0003181,http://purl.obolibrary.org/obo/MONDO_0003181,lung adenoid cystic carcinoma +12.8944055,MONDO:0003736,http://purl.obolibrary.org/obo/MONDO_0003736,cancerophobia +12.8944055,MONDO:0003801,http://purl.obolibrary.org/obo/MONDO_0003801,corneal intraepithelial neoplasm +12.8944055,MONDO:0005862,http://purl.obolibrary.org/obo/MONDO_0005862,multiple chemical sensitivity +12.8944055,MONDO:0005898,http://purl.obolibrary.org/obo/MONDO_0005898,paronychia +12.8944055,MONDO:0006248,http://purl.obolibrary.org/obo/MONDO_0006248,hydatidiform mole +12.8944055,MONDO:0006271,http://purl.obolibrary.org/obo/MONDO_0006271,low grade central osteosarcoma +12.8944055,MONDO:0009379,http://purl.obolibrary.org/obo/MONDO_0009379,Rotor syndrome +12.8944055,MONDO:0009755,http://purl.obolibrary.org/obo/MONDO_0009755,neutrophil actin dysfunction +12.8944055,MONDO:0010159,http://purl.obolibrary.org/obo/MONDO_0010159,mismatch repair cancer syndrome 1 +12.8944055,MONDO:0011648,http://purl.obolibrary.org/obo/MONDO_0011648,radiation-induced meningioma +12.8944055,MONDO:0019027,http://purl.obolibrary.org/obo/MONDO_0019027,otopalatodigital syndrome +12.8944055,MONDO:0019645,http://purl.obolibrary.org/obo/MONDO_0019645,"renal dysplasia, bilateral" +12.8944055,MONDO:0019672,http://purl.obolibrary.org/obo/MONDO_0019672,fibular hemimelia +12.8944055,MONDO:0020113,http://purl.obolibrary.org/obo/MONDO_0020113,primary acquired red cell aplasia +12.8944055,MONDO:0020545,http://purl.obolibrary.org/obo/MONDO_0020545,staphylococcal toxic-shock syndrome +12.8944055,MONDO:0024638,http://purl.obolibrary.org/obo/MONDO_0024638,pancreatic gastrinoma +12.8944055,MONDO:0031219,http://purl.obolibrary.org/obo/MONDO_0031219,mismatch repair cancer syndrome +12.8944055,MONDO:0043576,http://purl.obolibrary.org/obo/MONDO_0043576,endarteritis +12.8944055,MONDO:0056822,http://purl.obolibrary.org/obo/MONDO_0056822,amyotonia congenita +12.8944055,NCBITaxon:12050,http://purl.obolibrary.org/obo/NCBITaxon_12050,none +12.8944055,NCBITaxon:12209,http://purl.obolibrary.org/obo/NCBITaxon_12209,none +12.8944055,NCBITaxon:12506,http://purl.obolibrary.org/obo/NCBITaxon_12506,none +12.8944055,NCBITaxon:149984,http://purl.obolibrary.org/obo/NCBITaxon_149984,none +12.8944055,NCBITaxon:149986,http://purl.obolibrary.org/obo/NCBITaxon_149986,none +12.8944055,NCBITaxon:186630,http://purl.obolibrary.org/obo/NCBITaxon_186630,none +12.8944055,NCBITaxon:218471,http://purl.obolibrary.org/obo/NCBITaxon_218471,none +12.8944055,NCBITaxon:30352,http://purl.obolibrary.org/obo/NCBITaxon_30352,none +12.8944055,NCBITaxon:30764,http://purl.obolibrary.org/obo/NCBITaxon_30764,none +12.8944055,NCBITaxon:32003,http://purl.obolibrary.org/obo/NCBITaxon_32003,Nitrosomonadales +12.8944055,NCBITaxon:325348,http://purl.obolibrary.org/obo/NCBITaxon_325348,none +12.8944055,NCBITaxon:38667,http://purl.obolibrary.org/obo/NCBITaxon_38667,none +12.8944055,NCBITaxon:40370,http://purl.obolibrary.org/obo/NCBITaxon_40370,none +12.8944055,NCBITaxon:41768,http://purl.obolibrary.org/obo/NCBITaxon_41768,none +12.8944055,NCBITaxon:50488,http://purl.obolibrary.org/obo/NCBITaxon_50488,none +12.8944055,NCBITaxon:51330,http://purl.obolibrary.org/obo/NCBITaxon_51330,none +12.8944055,NCBITaxon:5800,http://purl.obolibrary.org/obo/NCBITaxon_5800,Eimeria +12.8944055,NCBITaxon:69555,http://purl.obolibrary.org/obo/NCBITaxon_69555,none +12.8944055,PR:000000042,http://purl.obolibrary.org/obo/PR_000000042,DNA-binding protein inhibitor ID-4 +12.8944055,PR:000002004,http://purl.obolibrary.org/obo/PR_000002004,G protein-activated inward rectifier potassium channel 3 +12.8944055,PR:000003337,http://purl.obolibrary.org/obo/PR_000003337,collagen alpha-4(IV) chain +12.8944055,PR:000003671,http://purl.obolibrary.org/obo/PR_000003671,"acetyl-coenzyme A synthetase 2-like, mitochondrial" +12.8944055,PR:000004269,http://purl.obolibrary.org/obo/PR_000004269,AT-rich interactive domain-containing protein 5A +12.8944055,PR:000004644,http://purl.obolibrary.org/obo/PR_000004644,BarH-like 2 homeobox protein +12.8944055,PR:000005098,http://purl.obolibrary.org/obo/PR_000005098,kynurenine--oxoglutarate transaminase 3 +12.8944055,PR:000005328,http://purl.obolibrary.org/obo/PR_000005328,centromere protein H +12.8944055,PR:000005863,http://purl.obolibrary.org/obo/PR_000005863,protein CREG1 +12.8944055,PR:000005903,http://purl.obolibrary.org/obo/PR_000005903,CREB-regulated transcription coactivator 3 +12.8944055,PR:000006076,http://purl.obolibrary.org/obo/PR_000006076,CXXC-type zinc finger protein 5 +12.8944055,PR:000006686,http://purl.obolibrary.org/obo/PR_000006686,damage-regulated autophagy modulator +12.8944055,PR:000006864,http://purl.obolibrary.org/obo/PR_000006864,enhanced at puberty protein 1 +12.8944055,PR:000007152,http://purl.obolibrary.org/obo/PR_000007152,eosinophil peroxidase +12.8944055,PR:000007529,http://purl.obolibrary.org/obo/PR_000007529,acyl-coenzyme A diphosphatase FITM2 +12.8944055,PR:000008919,http://purl.obolibrary.org/obo/PR_000008919,interferon alpha-6 +12.8944055,PR:000009939,http://purl.obolibrary.org/obo/PR_000009939,leucine-rich repeat-containing protein 6 +12.8944055,PR:000010030,http://purl.obolibrary.org/obo/PR_000010030,none +12.8944055,PR:000010375,http://purl.obolibrary.org/obo/PR_000010375,major facilitator superfamily domain-containing protein 8 +12.8944055,PR:000010824,http://purl.obolibrary.org/obo/PR_000010824,myosin-14 +12.8944055,PR:000010955,http://purl.obolibrary.org/obo/PR_000010955,NAD kinase +12.8944055,PR:000011351,http://purl.obolibrary.org/obo/PR_000011351,neuronal PAS domain-containing protein 3 +12.8944055,PR:000011375,http://purl.obolibrary.org/obo/PR_000011375,natriuretic peptides B +12.8944055,PR:000011762,http://purl.obolibrary.org/obo/PR_000011762,olfactory receptor 2D2 +12.8944055,PR:000012453,http://purl.obolibrary.org/obo/PR_000012453,programmed cell death protein 2 +12.8944055,PR:000012726,http://purl.obolibrary.org/obo/PR_000012726,phosphatidylinositol 3-kinase regulatory subunit gamma +12.8944055,PR:000012962,http://purl.obolibrary.org/obo/PR_000012962,DNA polymerase beta +12.8944055,PR:000012974,http://purl.obolibrary.org/obo/PR_000012974,"DNA polymerase subunit gamma-2, mitochondrial" +12.8944055,PR:000013141,http://purl.obolibrary.org/obo/PR_000013141,serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit gamma +12.8944055,PR:000013199,http://purl.obolibrary.org/obo/PR_000013199,prolargin +12.8944055,PR:000013319,http://purl.obolibrary.org/obo/PR_000013319,neurotrypsin +12.8944055,PR:000014610,http://purl.obolibrary.org/obo/PR_000014610,selenoprotein M +12.8944055,PR:000014818,http://purl.obolibrary.org/obo/PR_000014818,SH3 domain-binding protein 1 +12.8944055,PR:000015587,http://purl.obolibrary.org/obo/PR_000015587,SPRY domain-containing SOCS box protein 2 +12.8944055,PR:000016129,http://purl.obolibrary.org/obo/PR_000016129,tubulin-specific chaperone E +12.8944055,PR:000016204,http://purl.obolibrary.org/obo/PR_000016204,T cell receptor alpha variable 29/delta variable 5 +12.8944055,PR:000016386,http://purl.obolibrary.org/obo/PR_000016386,TM2 domain-containing protein 1 +12.8944055,PR:000016399,http://purl.obolibrary.org/obo/PR_000016399,transmembrane channel-like protein 8 +12.8944055,PR:000016430,http://purl.obolibrary.org/obo/PR_000016430,nucleoporin NDC1 +12.8944055,PR:000017347,http://purl.obolibrary.org/obo/PR_000017347,vacuolar protein sorting-associated protein 72 +12.8944055,PR:000017413,http://purl.obolibrary.org/obo/PR_000017413,"WAP, Kazal, immunoglobulin, Kunitz and NTR domain-containing protein 2" +12.8944055,PR:000018231,http://purl.obolibrary.org/obo/PR_000018231,zinc finger and SCAN domain-containing protein 4 +12.8944055,PR:000022124,http://purl.obolibrary.org/obo/PR_000022124,aerobic respiration control sensor protein ArcB +12.8944055,PR:000022151,http://purl.obolibrary.org/obo/PR_000022151,none +12.8944055,PR:000022528,http://purl.obolibrary.org/obo/PR_000022528,none +12.8944055,PR:000023211,http://purl.obolibrary.org/obo/PR_000023211,none +12.8944055,PR:000023233,http://purl.obolibrary.org/obo/PR_000023233,none +12.8944055,PR:000023446,http://purl.obolibrary.org/obo/PR_000023446,none +12.8944055,PR:000023981,http://purl.obolibrary.org/obo/PR_000023981,none +12.8944055,PR:000024029,http://purl.obolibrary.org/obo/PR_000024029,none +12.8944055,PR:000024151,http://purl.obolibrary.org/obo/PR_000024151,none +12.8944055,PR:000024172,http://purl.obolibrary.org/obo/PR_000024172,none +12.8944055,PR:000029223,http://purl.obolibrary.org/obo/PR_000029223,none +12.8944055,PR:000029499,http://purl.obolibrary.org/obo/PR_000029499,FUN14 domain-containing protein 1 +12.8944055,PR:000031149,http://purl.obolibrary.org/obo/PR_000031149,transforming growth factor beta activator LRRC32 +12.8944055,PR:000031230,http://purl.obolibrary.org/obo/PR_000031230,Swi5-dependent recombination DNA repair protein 1 homolog +12.8944055,PR:000031257,http://purl.obolibrary.org/obo/PR_000031257,"coiled-coil-helix-coiled-coil-helix domain-containing protein 10, mitochondrial" +12.8944055,PR:000031656,http://purl.obolibrary.org/obo/PR_000031656,WW domain-binding protein 1 +12.8944055,PR:000035226,http://purl.obolibrary.org/obo/PR_000035226,none +12.8944055,PR:000044645,http://purl.obolibrary.org/obo/PR_000044645,CatSper channel protein +12.8944055,PR:F4J5S1,http://purl.obolibrary.org/obo/PR_F4J5S1,none +12.8944055,PR:G5EG38,http://purl.obolibrary.org/obo/PR_G5EG38,none +12.8944055,PR:O22775,http://purl.obolibrary.org/obo/PR_O22775,none +12.8944055,PR:P05987,http://purl.obolibrary.org/obo/PR_P05987,none +12.8944055,PR:P0C1S0,http://purl.obolibrary.org/obo/PR_P0C1S0,none +12.8944055,PR:P13259,http://purl.obolibrary.org/obo/PR_P13259,none +12.8944055,PR:P32643,http://purl.obolibrary.org/obo/PR_P32643,none +12.8944055,PR:P41046,http://purl.obolibrary.org/obo/PR_P41046,none +12.8944055,PR:P45968,http://purl.obolibrary.org/obo/PR_P45968,none +12.8944055,PR:P53068,http://purl.obolibrary.org/obo/PR_P53068,none +12.8944055,PR:P53953,http://purl.obolibrary.org/obo/PR_P53953,none +12.8944055,PR:Q12366,http://purl.obolibrary.org/obo/PR_Q12366,none +12.8944055,PR:Q17381,http://purl.obolibrary.org/obo/PR_Q17381,none +12.8944055,PR:Q5A7S7,http://purl.obolibrary.org/obo/PR_Q5A7S7,none +12.8944055,PR:Q945S8,http://purl.obolibrary.org/obo/PR_Q945S8,none +12.8944055,PR:Q96VB9,http://purl.obolibrary.org/obo/PR_Q96VB9,none +12.8944055,PR:Q9C9W9,http://purl.obolibrary.org/obo/PR_Q9C9W9,none +12.8944055,PR:Q9FNX8,http://purl.obolibrary.org/obo/PR_Q9FNX8,none +12.8944055,SO:0000666,http://purl.obolibrary.org/obo/SO_0000666,mobile_intron +12.8944055,SO:0001670,http://purl.obolibrary.org/obo/SO_0001670,distal_promoter_element +12.8944055,SO:1000023,http://purl.obolibrary.org/obo/SO_1000023,purine_to_pyrimidine_transversion +12.8944055,SO:1000141,http://purl.obolibrary.org/obo/SO_1000141,chromosome_fission +12.8944055,UBERON:0001117,http://purl.obolibrary.org/obo/UBERON_0001117,caudate lobe of liver +12.8944055,UBERON:0001211,http://purl.obolibrary.org/obo/UBERON_0001211,Peyer's patch +12.8944055,UBERON:0001399,http://purl.obolibrary.org/obo/UBERON_0001399,deep brachial artery +12.8944055,UBERON:0001594,http://purl.obolibrary.org/obo/UBERON_0001594,azygos vein +12.8944055,UBERON:0002006,http://purl.obolibrary.org/obo/UBERON_0002006,cortex of lymph node +12.8944055,UBERON:0002153,http://purl.obolibrary.org/obo/UBERON_0002153,fastigial nucleus +12.8944055,UBERON:0002251,http://purl.obolibrary.org/obo/UBERON_0002251,iliocostalis muscle +12.8944055,UBERON:0002603,http://purl.obolibrary.org/obo/UBERON_0002603,paraterminal gyrus +12.8944055,UBERON:0006849,http://purl.obolibrary.org/obo/UBERON_0006849,scapula +12.8944055,UBERON:0008576,http://purl.obolibrary.org/obo/UBERON_0008576,thyro-arytenoid +12.8944055,UBERON:0011111,http://purl.obolibrary.org/obo/UBERON_0011111,humeroradial joint +12.8944055,UBERON:0015057,http://purl.obolibrary.org/obo/UBERON_0015057,scapula endochondral element +12.8944055,UBERON:0017654,http://purl.obolibrary.org/obo/UBERON_0017654,buccal gland +12.8944055,UBERON:2000530,http://purl.obolibrary.org/obo/UBERON_2000530,lapillus +12.8944055,UBERON:3010690,http://purl.obolibrary.org/obo/UBERON_3010690,fetal tooth +12.9117972,CHEBI:18179,http://purl.obolibrary.org/obo/CHEBI_18179,phosphoinositide +12.9117972,CHEBI:18237,http://purl.obolibrary.org/obo/CHEBI_18237,glutamic acid +12.9117972,CHEBI:23981,http://purl.obolibrary.org/obo/CHEBI_23981,ethanolamines +12.9117972,CHEBI:25348,http://purl.obolibrary.org/obo/CHEBI_25348,methylxanthine +12.9117972,CHEBI:26125,http://purl.obolibrary.org/obo/CHEBI_26125,phytosterols +12.9117972,CHEBI:26385,http://purl.obolibrary.org/obo/CHEBI_26385,purine alkaloid +12.9117972,CHEBI:27134,http://purl.obolibrary.org/obo/CHEBI_27134,trimethylxanthine +12.9117972,CHEBI:27732,http://purl.obolibrary.org/obo/CHEBI_27732,caffeine +12.9117972,CHEBI:36309,http://purl.obolibrary.org/obo/CHEBI_36309,cyclic tetrapyrrole +12.9117972,CHEBI:46774,http://purl.obolibrary.org/obo/CHEBI_46774,polyether +12.9117972,CHEBI:47882,http://purl.obolibrary.org/obo/CHEBI_47882,cyclic polypyrrole +12.9117972,CHEBI:48975,http://purl.obolibrary.org/obo/CHEBI_48975,substituted aniline +12.9117972,CHEBI:50909,http://purl.obolibrary.org/obo/CHEBI_50909,nephrotoxic agent +12.9117972,CHEBI:63944,http://purl.obolibrary.org/obo/CHEBI_63944,macrocyclic lactone +12.9117972,CHEBI:83807,http://purl.obolibrary.org/obo/CHEBI_83807,paliperidone palmitate +12.9117972,CHEBI:8583,http://purl.obolibrary.org/obo/CHEBI_8583,Prothrombin +12.9117972,CL:0000106,http://purl.obolibrary.org/obo/CL_0000106,unipolar neuron +12.9117972,DRUGBANK:DB00076,http://purl.obolibrary.org/obo/DRUGBANK_DB00076,none +12.9117972,DRUGBANK:DB01493,http://purl.obolibrary.org/obo/DRUGBANK_DB01493,none +12.9117972,DRUGBANK:DB04347,http://purl.obolibrary.org/obo/DRUGBANK_DB04347,none +12.9117972,DRUGBANK:DB07557,http://purl.obolibrary.org/obo/DRUGBANK_DB07557,none +12.9117972,DRUGBANK:DB07662,http://purl.obolibrary.org/obo/DRUGBANK_DB07662,none +12.9117972,DRUGBANK:DB07997,http://purl.obolibrary.org/obo/DRUGBANK_DB07997,none +12.9117972,DRUGBANK:DB11684,http://purl.obolibrary.org/obo/DRUGBANK_DB11684,none +12.9117972,DRUGBANK:DB11697,http://purl.obolibrary.org/obo/DRUGBANK_DB11697,none +12.9117972,DRUGBANK:DB12417,http://purl.obolibrary.org/obo/DRUGBANK_DB12417,none +12.9117972,DRUGBANK:DB13254,http://purl.obolibrary.org/obo/DRUGBANK_DB13254,none +12.9117972,DRUGBANK:DB13310,http://purl.obolibrary.org/obo/DRUGBANK_DB13310,none +12.9117972,DRUGBANK:DB14658,http://purl.obolibrary.org/obo/DRUGBANK_DB14658,none +12.9117972,DRUGBANK:DB15091,http://purl.obolibrary.org/obo/DRUGBANK_DB15091,none +12.9117972,DRUGBANK:DB16075,http://purl.obolibrary.org/obo/DRUGBANK_DB16075,none +12.9117972,DRUGBANK:DB16188,http://purl.obolibrary.org/obo/DRUGBANK_DB16188,none +12.9117972,GO:0001607,http://purl.obolibrary.org/obo/GO_0001607,neuromedin U receptor activity +12.9117972,GO:0001832,http://purl.obolibrary.org/obo/GO_0001832,blastocyst growth +12.9117972,GO:0001936,http://purl.obolibrary.org/obo/GO_0001936,regulation of endothelial cell proliferation +12.9117972,GO:0004106,http://purl.obolibrary.org/obo/GO_0004106,chorismate mutase activity +12.9117972,GO:0004309,http://purl.obolibrary.org/obo/GO_0004309,exopolyphosphatase activity +12.9117972,GO:0004341,http://purl.obolibrary.org/obo/GO_0004341,gluconolactonase activity +12.9117972,GO:0005832,http://purl.obolibrary.org/obo/GO_0005832,chaperonin-containing T-complex +12.9117972,GO:0006063,http://purl.obolibrary.org/obo/GO_0006063,uronic acid metabolic process +12.9117972,GO:0006651,http://purl.obolibrary.org/obo/GO_0006651,diacylglycerol biosynthetic process +12.9117972,GO:0007562,http://purl.obolibrary.org/obo/GO_0007562,eclosion +12.9117972,GO:0010824,http://purl.obolibrary.org/obo/GO_0010824,regulation of centrosome duplication +12.9117972,GO:0015944,http://purl.obolibrary.org/obo/GO_0015944,formate oxidation +12.9117972,GO:0016145,http://purl.obolibrary.org/obo/GO_0016145,S-glycoside catabolic process +12.9117972,GO:0016751,http://purl.obolibrary.org/obo/GO_0016751,S-succinyltransferase activity +12.9117972,GO:0017080,http://purl.obolibrary.org/obo/GO_0017080,sodium channel regulator activity +12.9117972,GO:0019759,http://purl.obolibrary.org/obo/GO_0019759,glycosinolate catabolic process +12.9117972,GO:0030111,http://purl.obolibrary.org/obo/GO_0030111,regulation of Wnt signaling pathway +12.9117972,GO:0031334,http://purl.obolibrary.org/obo/GO_0031334,positive regulation of protein-containing complex assembly +12.9117972,GO:0032273,http://purl.obolibrary.org/obo/GO_0032273,positive regulation of protein polymerization +12.9117972,GO:0032571,http://purl.obolibrary.org/obo/GO_0032571,response to vitamin K +12.9117972,GO:0042386,http://purl.obolibrary.org/obo/GO_0042386,hemocyte differentiation +12.9117972,GO:0044298,http://purl.obolibrary.org/obo/GO_0044298,cell body membrane +12.9117972,GO:0044467,http://purl.obolibrary.org/obo/GO_0044467,glial cell-derived neurotrophic factor production +12.9117972,GO:0045484,http://purl.obolibrary.org/obo/GO_0045484,L-lysine 6-transaminase activity +12.9117972,GO:0046659,http://purl.obolibrary.org/obo/GO_0046659,digestive hormone activity +12.9117972,GO:0047798,http://purl.obolibrary.org/obo/GO_0047798,cyclomaltodextrinase activity +12.9117972,GO:0048572,http://purl.obolibrary.org/obo/GO_0048572,short-day photoperiodism +12.9117972,GO:0050485,http://purl.obolibrary.org/obo/GO_0050485,"oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond, with a disulfide as acceptor" +12.9117972,GO:0050526,http://purl.obolibrary.org/obo/GO_0050526,poly(3-hydroxybutyrate) depolymerase activity +12.9117972,GO:0051581,http://purl.obolibrary.org/obo/GO_0051581,negative regulation of neurotransmitter uptake +12.9117972,GO:0051589,http://purl.obolibrary.org/obo/GO_0051589,negative regulation of neurotransmitter transport +12.9117972,GO:0061101,http://purl.obolibrary.org/obo/GO_0061101,neuroendocrine cell differentiation +12.9117972,GO:0071943,http://purl.obolibrary.org/obo/GO_0071943,Myc-Max complex +12.9117972,GO:1902563,http://purl.obolibrary.org/obo/GO_1902563,regulation of neutrophil activation +12.9117972,GO:1903680,http://purl.obolibrary.org/obo/GO_1903680,acinar cell of sebaceous gland differentiation +12.9117972,GO:1990775,http://purl.obolibrary.org/obo/GO_1990775,endothelin production +12.9117972,GO:1990910,http://purl.obolibrary.org/obo/GO_1990910,response to hypobaric hypoxia +12.9117972,GO:2000243,http://purl.obolibrary.org/obo/GO_2000243,positive regulation of reproductive process +12.9117972,HP:0001097,http://purl.obolibrary.org/obo/HP_0001097,Keratoconjunctivitis sicca +12.9117972,HP:0001888,http://purl.obolibrary.org/obo/HP_0001888,Lymphopenia +12.9117972,HP:0005607,http://purl.obolibrary.org/obo/HP_0005607,Abnormal tracheobronchial morphology +12.9117972,HP:0040088,http://purl.obolibrary.org/obo/HP_0040088,Abnormal lymphocyte count +12.9117972,HP:0100013,http://purl.obolibrary.org/obo/HP_0100013,Neoplasm of the breast +12.9117972,MONDO:0001213,http://purl.obolibrary.org/obo/MONDO_0001213,serous glue ear +12.9117972,MONDO:0003499,http://purl.obolibrary.org/obo/MONDO_0003499,sarcomatoid squamous cell skin carcinoma +12.9117972,MONDO:0003700,http://purl.obolibrary.org/obo/MONDO_0003700,brachial plexus neoplasm +12.9117972,MONDO:0006769,http://purl.obolibrary.org/obo/MONDO_0006769,gastroparesis +12.9117972,MONDO:0006842,http://purl.obolibrary.org/obo/MONDO_0006842,lymphangiomyoma +12.9117972,MONDO:0006875,http://purl.obolibrary.org/obo/MONDO_0006875,ocular hypertension +12.9117972,MONDO:0007035,http://purl.obolibrary.org/obo/MONDO_0007035,acanthosis nigricans +12.9117972,MONDO:0008179,http://purl.obolibrary.org/obo/MONDO_0008179,paroxysmal extreme pain disorder +12.9117972,MONDO:0008215,http://purl.obolibrary.org/obo/MONDO_0008215,adult-onset autosomal dominant demyelinating leukodystrophy +12.9117972,MONDO:0009238,http://purl.obolibrary.org/obo/MONDO_0009238,hereditary folate malabsorption +12.9117972,MONDO:0009607,http://purl.obolibrary.org/obo/MONDO_0009607,methionine adenosyltransferase deficiency +12.9117972,MONDO:0009862,http://purl.obolibrary.org/obo/MONDO_0009862,dihydropteridine reductase deficiency +12.9117972,MONDO:0010209,http://purl.obolibrary.org/obo/MONDO_0010209,xanthinuria type I +12.9117972,MONDO:0011555,http://purl.obolibrary.org/obo/MONDO_0011555,radio-ulnar synostosis-amegakaryocytic thrombocytopenia syndrome +12.9117972,MONDO:0012016,http://purl.obolibrary.org/obo/MONDO_0012016,capillary malformation-arteriovenous malformation syndrome +12.9117972,MONDO:0012733,http://purl.obolibrary.org/obo/MONDO_0012733,autosomal recessive bestrophinopathy +12.9117972,MONDO:0015900,http://purl.obolibrary.org/obo/MONDO_0015900,hypoaldosteronism disease +12.9117972,MONDO:0016137,http://purl.obolibrary.org/obo/MONDO_0016137,acute and subacute inflammatory demyelinating polyneuropathy +12.9117972,MONDO:0016422,http://purl.obolibrary.org/obo/MONDO_0016422,autoimmune polyendocrinopathy type 3 +12.9117972,MONDO:0016956,http://purl.obolibrary.org/obo/MONDO_0016956,partial trisomy of the long arm of chromosome 5 +12.9117972,MONDO:0017256,http://purl.obolibrary.org/obo/MONDO_0017256,idiopathic anterior uveitis +12.9117972,MONDO:0019084,http://purl.obolibrary.org/obo/MONDO_0019084,radiation proctitis +12.9117972,MONDO:0019345,http://purl.obolibrary.org/obo/MONDO_0019345,shigellosis +12.9117972,MONDO:0020176,http://purl.obolibrary.org/obo/MONDO_0020176,palpebral sebaceous gland tumor +12.9117972,MONDO:0021447,http://purl.obolibrary.org/obo/MONDO_0021447,benign neoplasm of testis +12.9117972,MONDO:0021588,http://purl.obolibrary.org/obo/MONDO_0021588,eyelid sebaceous gland carcinoma +12.9117972,MONDO:0045040,http://purl.obolibrary.org/obo/MONDO_0045040,locational disease characteristic +12.9117972,NCBITaxon:12143,http://purl.obolibrary.org/obo/NCBITaxon_12143,none +12.9117972,NCBITaxon:1395523,http://purl.obolibrary.org/obo/NCBITaxon_1395523,none +12.9117972,NCBITaxon:1489739,http://purl.obolibrary.org/obo/NCBITaxon_1489739,none +12.9117972,NCBITaxon:1506575,http://purl.obolibrary.org/obo/NCBITaxon_1506575,none +12.9117972,NCBITaxon:172851,http://purl.obolibrary.org/obo/NCBITaxon_172851,none +12.9117972,NCBITaxon:185793,http://purl.obolibrary.org/obo/NCBITaxon_185793,none +12.9117972,NCBITaxon:27871,http://purl.obolibrary.org/obo/NCBITaxon_27871,Plagiorchiida +12.9117972,NCBITaxon:29172,http://purl.obolibrary.org/obo/NCBITaxon_29172,none +12.9117972,NCBITaxon:476428,http://purl.obolibrary.org/obo/NCBITaxon_476428,none +12.9117972,PR:000001480,http://purl.obolibrary.org/obo/PR_000001480,low affinity immunoglobulin gamma Fc region receptor II-a +12.9117972,PR:000001679,http://purl.obolibrary.org/obo/PR_000001679,trace amine-associated receptor 5 +12.9117972,PR:000003213,http://purl.obolibrary.org/obo/PR_000003213,serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B alpha isoform +12.9117972,PR:000003526,http://purl.obolibrary.org/obo/PR_000003526,AAK1 gene translation product +12.9117972,PR:000003914,http://purl.obolibrary.org/obo/PR_000003914,AKT-interacting protein +12.9117972,PR:000004371,http://purl.obolibrary.org/obo/PR_000004371,Set1/Ash2 histone methyltransferase complex subunit ASH2 +12.9117972,PR:000004860,http://purl.obolibrary.org/obo/PR_000004860,brix domain-containing protein 2 +12.9117972,PR:000005403,http://purl.obolibrary.org/obo/PR_000005403,chromatin assembly factor 1 subunit B +12.9117972,PR:000005662,http://purl.obolibrary.org/obo/PR_000005662,CB1 cannabinoid receptor-interacting protein 1 +12.9117972,PR:000005664,http://purl.obolibrary.org/obo/PR_000005664,ciliary neurotrophic factor receptor subunit alpha +12.9117972,PR:000005728,http://purl.obolibrary.org/obo/PR_000005728,acetylcholinesterase collagenic tail peptide +12.9117972,PR:000005921,http://purl.obolibrary.org/obo/PR_000005921,ketimine reductase mu-crystallin +12.9117972,PR:000006324,http://purl.obolibrary.org/obo/PR_000006324,dynactin subunit 2 +12.9117972,PR:000006902,http://purl.obolibrary.org/obo/PR_000006902,polycomb protein EED +12.9117972,PR:000006951,http://purl.obolibrary.org/obo/PR_000006951,EP300-interacting inhibitor of differentiation 1 +12.9117972,PR:000007021,http://purl.obolibrary.org/obo/PR_000007021,ETS-related transcription factor Elf-2 +12.9117972,PR:000007114,http://purl.obolibrary.org/obo/PR_000007114,protein 4.2 +12.9117972,PR:000007709,http://purl.obolibrary.org/obo/PR_000007709,mitochondrial import inner membrane translocase subunit Tim9 B +12.9117972,PR:000008081,http://purl.obolibrary.org/obo/PR_000008081,guanine nucleotide-binding protein subunit alpha-12 +12.9117972,PR:000009071,http://purl.obolibrary.org/obo/PR_000009071,integrator complex subunit 4 +12.9117972,PR:000009319,http://purl.obolibrary.org/obo/PR_000009319,kinesin-like protein KIF6 +12.9117972,PR:000009668,http://purl.obolibrary.org/obo/PR_000009668,La-related protein 1 +12.9117972,PR:000010260,http://purl.obolibrary.org/obo/PR_000010260,MyoD family inhibitor domain-containing protein +12.9117972,PR:000010304,http://purl.obolibrary.org/obo/PR_000010304,mediator of RNA polymerase II transcription subunit 4 +12.9117972,PR:000011134,http://purl.obolibrary.org/obo/PR_000011134,serine/threonine-protein kinase Nek8 +12.9117972,PR:000011201,http://purl.obolibrary.org/obo/PR_000011201,helix-loop-helix protein 2 +12.9117972,PR:000011363,http://purl.obolibrary.org/obo/PR_000011363,nephrocystin-3 +12.9117972,PR:000011636,http://purl.obolibrary.org/obo/PR_000011636,osteomodulin +12.9117972,PR:000012275,http://purl.obolibrary.org/obo/PR_000012275,progestin and adipoQ receptor family member 3 +12.9117972,PR:000012322,http://purl.obolibrary.org/obo/PR_000012322,PAX-interacting protein 1 +12.9117972,PR:000012330,http://purl.obolibrary.org/obo/PR_000012330,pre-B-cell leukemia transcription factor-interacting protein 1 +12.9117972,PR:000012353,http://purl.obolibrary.org/obo/PR_000012353,protocadherin-7 +12.9117972,PR:000012436,http://purl.obolibrary.org/obo/PR_000012436,proprotein convertase subtilisin/kexin type 4 +12.9117972,PR:000012468,http://purl.obolibrary.org/obo/PR_000012468,"calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase 1C" +12.9117972,PR:000012531,http://purl.obolibrary.org/obo/PR_000012531,platelet endothelial aggregation receptor 1 +12.9117972,PR:000012581,http://purl.obolibrary.org/obo/PR_000012581,"6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 4" +12.9117972,PR:000013826,http://purl.obolibrary.org/obo/PR_000013826,RNA-binding protein with multiple splicing +12.9117972,PR:000013981,http://purl.obolibrary.org/obo/PR_000013981,Rho-related GTP-binding protein RhoG +12.9117972,PR:000014741,http://purl.obolibrary.org/obo/PR_000014741,protein SFI1 +12.9117972,PR:000015887,http://purl.obolibrary.org/obo/PR_000015887,synaptopodin-2 +12.9117972,PR:000016268,http://purl.obolibrary.org/obo/PR_000016268,"dimethyladenosine transferase 2, mitochondrial" +12.9117972,PR:000016604,http://purl.obolibrary.org/obo/PR_000016604,E3 ubiquitin-protein ligase TRAF7 +12.9117972,PR:000017068,http://purl.obolibrary.org/obo/PR_000017068,2-hydroxyacylsphingosine 1-beta-galactosyltransferase +12.9117972,PR:000017604,http://purl.obolibrary.org/obo/PR_000017604,terminal uridylyltransferase 4 +12.9117972,PR:000022042,http://purl.obolibrary.org/obo/PR_000022042,none +12.9117972,PR:000022561,http://purl.obolibrary.org/obo/PR_000022561,none +12.9117972,PR:000023811,http://purl.obolibrary.org/obo/PR_000023811,none +12.9117972,PR:000028299,http://purl.obolibrary.org/obo/PR_000028299,none +12.9117972,PR:000029122,http://purl.obolibrary.org/obo/PR_000029122,leucine-rich repeat serine/threonine-protein kinase 1 +12.9117972,PR:000030257,http://purl.obolibrary.org/obo/PR_000030257,glutathione S-transferase mu 4 +12.9117972,PR:000032541,http://purl.obolibrary.org/obo/PR_000032541,LIM domain only protein 7 +12.9117972,PR:000032570,http://purl.obolibrary.org/obo/PR_000032570,ankyrin repeat domain-containing protein 26 +12.9117972,PR:O49447,http://purl.obolibrary.org/obo/PR_O49447,none +12.9117972,PR:O94672,http://purl.obolibrary.org/obo/PR_O94672,none +12.9117972,PR:P03244-1,http://purl.obolibrary.org/obo/PR_P03244-1,none +12.9117972,PR:P32478,http://purl.obolibrary.org/obo/PR_P32478,none +12.9117972,PR:P32581,http://purl.obolibrary.org/obo/PR_P32581,none +12.9117972,PR:P92949,http://purl.obolibrary.org/obo/PR_P92949,none +12.9117972,PR:Q06623,http://purl.obolibrary.org/obo/PR_Q06623,none +12.9117972,PR:Q09948,http://purl.obolibrary.org/obo/PR_Q09948,none +12.9117972,PR:Q559H1,http://purl.obolibrary.org/obo/PR_Q559H1,none +12.9117972,PR:Q5ZIR8,http://purl.obolibrary.org/obo/PR_Q5ZIR8,none +12.9117972,PR:Q90953,http://purl.obolibrary.org/obo/PR_Q90953,none +12.9117972,PR:Q9FNY3,http://purl.obolibrary.org/obo/PR_Q9FNY3,none +12.9117972,PR:Q9SW95,http://purl.obolibrary.org/obo/PR_Q9SW95,none +12.9117972,PR:Q9UR17,http://purl.obolibrary.org/obo/PR_Q9UR17,none +12.9117972,PR:Q9UTG8,http://purl.obolibrary.org/obo/PR_Q9UTG8,none +12.9117972,SO:0000089,http://purl.obolibrary.org/obo/SO_0000089,kinetoplast_gene +12.9117972,SO:0000724,http://purl.obolibrary.org/obo/SO_0000724,oriT +12.9117972,UBERON:0000039,http://purl.obolibrary.org/obo/UBERON_0000039,follicular antrum +12.9117972,UBERON:0000920,http://purl.obolibrary.org/obo/UBERON_0000920,egg chorion +12.9117972,UBERON:0001139,http://purl.obolibrary.org/obo/UBERON_0001139,common iliac vein +12.9117972,UBERON:0002258,http://purl.obolibrary.org/obo/UBERON_0002258,dorsal funiculus of spinal cord +12.9117972,UBERON:0002926,http://purl.obolibrary.org/obo/UBERON_0002926,gustatory epithelium +12.9117972,UBERON:0003884,http://purl.obolibrary.org/obo/UBERON_0003884,CA4 field of hippocampus +12.9117972,UBERON:0004155,http://purl.obolibrary.org/obo/UBERON_0004155,atrial septum secundum +12.9117972,UBERON:0008446,http://purl.obolibrary.org/obo/UBERON_0008446,flexor pollicis longus muscle +12.9117972,UBERON:0008835,http://purl.obolibrary.org/obo/UBERON_0008835,hepatic diverticulum +12.9117972,UBERON:0009916,http://purl.obolibrary.org/obo/UBERON_0009916,wall of ureter +12.9117972,UBERON:0010369,http://purl.obolibrary.org/obo/UBERON_0010369,secondary pulmonary lobule +12.9117972,UBERON:0012474,http://purl.obolibrary.org/obo/UBERON_0012474,hepatic cecum +12.9117972,UBERON:0016485,http://purl.obolibrary.org/obo/UBERON_0016485,supragingival dental plaque +12.9117972,UBERON:0016559,http://purl.obolibrary.org/obo/UBERON_0016559,superficial cerebral vein +12.9117972,UBERON:0035077,http://purl.obolibrary.org/obo/UBERON_0035077,lateral nasal gland +12.9117972,UBERON:2000512,http://purl.obolibrary.org/obo/UBERON_2000512,facial lobe +12.9117972,UBERON:2000663,http://purl.obolibrary.org/obo/UBERON_2000663,extrascapula +12.9294968,CHEBI:25106,http://purl.obolibrary.org/obo/CHEBI_25106,macrolide +12.9294968,CHEBI:33408,http://purl.obolibrary.org/obo/CHEBI_33408,pnictogen oxoacid +12.9294968,CHEBI:33482,http://purl.obolibrary.org/obo/CHEBI_33482,sulfur oxoanion +12.9294968,CHEBI:33485,http://purl.obolibrary.org/obo/CHEBI_33485,chalcogen oxoanion +12.9294968,CHEBI:40574,http://purl.obolibrary.org/obo/CHEBI_40574,acetyl group +12.9294968,CHEBI:46887,http://purl.obolibrary.org/obo/CHEBI_46887,acetyl +12.9294968,CL:0000314,http://purl.obolibrary.org/obo/CL_0000314,milk secreting cell +12.9294968,CL:0007023,http://purl.obolibrary.org/obo/CL_0007023,flask cell +12.9294968,DRUGBANK:DB00069,http://purl.obolibrary.org/obo/DRUGBANK_DB00069,none +12.9294968,DRUGBANK:DB01546,http://purl.obolibrary.org/obo/DRUGBANK_DB01546,none +12.9294968,DRUGBANK:DB01625,http://purl.obolibrary.org/obo/DRUGBANK_DB01625,none +12.9294968,DRUGBANK:DB03399,http://purl.obolibrary.org/obo/DRUGBANK_DB03399,none +12.9294968,DRUGBANK:DB04562,http://purl.obolibrary.org/obo/DRUGBANK_DB04562,none +12.9294968,DRUGBANK:DB05398,http://purl.obolibrary.org/obo/DRUGBANK_DB05398,none +12.9294968,DRUGBANK:DB05448,http://purl.obolibrary.org/obo/DRUGBANK_DB05448,none +12.9294968,DRUGBANK:DB06075,http://purl.obolibrary.org/obo/DRUGBANK_DB06075,none +12.9294968,DRUGBANK:DB06442,http://purl.obolibrary.org/obo/DRUGBANK_DB06442,none +12.9294968,DRUGBANK:DB06739,http://purl.obolibrary.org/obo/DRUGBANK_DB06739,none +12.9294968,DRUGBANK:DB07556,http://purl.obolibrary.org/obo/DRUGBANK_DB07556,none +12.9294968,DRUGBANK:DB08938,http://purl.obolibrary.org/obo/DRUGBANK_DB08938,none +12.9294968,DRUGBANK:DB09228,http://purl.obolibrary.org/obo/DRUGBANK_DB09228,none +12.9294968,DRUGBANK:DB09498,http://purl.obolibrary.org/obo/DRUGBANK_DB09498,none +12.9294968,DRUGBANK:DB10666,http://purl.obolibrary.org/obo/DRUGBANK_DB10666,none +12.9294968,DRUGBANK:DB10884,http://purl.obolibrary.org/obo/DRUGBANK_DB10884,none +12.9294968,DRUGBANK:DB11071,http://purl.obolibrary.org/obo/DRUGBANK_DB11071,none +12.9294968,DRUGBANK:DB11487,http://purl.obolibrary.org/obo/DRUGBANK_DB11487,none +12.9294968,DRUGBANK:DB11762,http://purl.obolibrary.org/obo/DRUGBANK_DB11762,none +12.9294968,DRUGBANK:DB12056,http://purl.obolibrary.org/obo/DRUGBANK_DB12056,none +12.9294968,DRUGBANK:DB12250,http://purl.obolibrary.org/obo/DRUGBANK_DB12250,none +12.9294968,DRUGBANK:DB12769,http://purl.obolibrary.org/obo/DRUGBANK_DB12769,none +12.9294968,DRUGBANK:DB12931,http://purl.obolibrary.org/obo/DRUGBANK_DB12931,none +12.9294968,DRUGBANK:DB12948,http://purl.obolibrary.org/obo/DRUGBANK_DB12948,none +12.9294968,DRUGBANK:DB13240,http://purl.obolibrary.org/obo/DRUGBANK_DB13240,none +12.9294968,DRUGBANK:DB13364,http://purl.obolibrary.org/obo/DRUGBANK_DB13364,none +12.9294968,DRUGBANK:DB14176,http://purl.obolibrary.org/obo/DRUGBANK_DB14176,none +12.9294968,DRUGBANK:DB14507,http://purl.obolibrary.org/obo/DRUGBANK_DB14507,none +12.9294968,GO:0000347,http://purl.obolibrary.org/obo/GO_0000347,THO complex +12.9294968,GO:0000931,http://purl.obolibrary.org/obo/GO_0000931,gamma-tubulin large complex +12.9294968,GO:0001508,http://purl.obolibrary.org/obo/GO_0001508,action potential +12.9294968,GO:0004049,http://purl.obolibrary.org/obo/GO_0004049,anthranilate synthase activity +12.9294968,GO:0004149,http://purl.obolibrary.org/obo/GO_0004149,dihydrolipoyllysine-residue succinyltransferase activity +12.9294968,GO:0006564,http://purl.obolibrary.org/obo/GO_0006564,L-serine biosynthetic process +12.9294968,GO:0007279,http://purl.obolibrary.org/obo/GO_0007279,pole cell formation +12.9294968,GO:0008274,http://purl.obolibrary.org/obo/GO_0008274,none +12.9294968,GO:0009209,http://purl.obolibrary.org/obo/GO_0009209,pyrimidine ribonucleoside triphosphate biosynthetic process +12.9294968,GO:0009807,http://purl.obolibrary.org/obo/GO_0009807,lignan biosynthetic process +12.9294968,GO:0015252,http://purl.obolibrary.org/obo/GO_0015252,proton channel activity +12.9294968,GO:0016749,http://purl.obolibrary.org/obo/GO_0016749,N-succinyltransferase activity +12.9294968,GO:0016825,http://purl.obolibrary.org/obo/GO_0016825,"hydrolase activity, acting on acid phosphorus-nitrogen bonds" +12.9294968,GO:0019762,http://purl.obolibrary.org/obo/GO_0019762,glucosinolate catabolic process +12.9294968,GO:0020021,http://purl.obolibrary.org/obo/GO_0020021,none +12.9294968,GO:0030421,http://purl.obolibrary.org/obo/GO_0030421,defecation +12.9294968,GO:0031117,http://purl.obolibrary.org/obo/GO_0031117,positive regulation of microtubule depolymerization +12.9294968,GO:0034138,http://purl.obolibrary.org/obo/GO_0034138,toll-like receptor 3 signaling pathway +12.9294968,GO:0034567,http://purl.obolibrary.org/obo/GO_0034567,chromate reductase activity +12.9294968,GO:0035882,http://purl.obolibrary.org/obo/GO_0035882,defecation rhythm +12.9294968,GO:0045457,http://purl.obolibrary.org/obo/GO_0045457,ecdysteroid secretion +12.9294968,GO:0047680,http://purl.obolibrary.org/obo/GO_0047680,aryl-acylamidase activity +12.9294968,GO:0047760,http://purl.obolibrary.org/obo/GO_0047760,butyrate-CoA ligase activity +12.9294968,GO:0048713,http://purl.obolibrary.org/obo/GO_0048713,regulation of oligodendrocyte differentiation +12.9294968,GO:0050710,http://purl.obolibrary.org/obo/GO_0050710,none +12.9294968,GO:0050898,http://purl.obolibrary.org/obo/GO_0050898,nitrile metabolic process +12.9294968,GO:0051222,http://purl.obolibrary.org/obo/GO_0051222,positive regulation of protein transport +12.9294968,GO:0051609,http://purl.obolibrary.org/obo/GO_0051609,inhibition of neurotransmitter uptake +12.9294968,GO:0051788,http://purl.obolibrary.org/obo/GO_0051788,response to misfolded protein +12.9294968,GO:0060337,http://purl.obolibrary.org/obo/GO_0060337,type I interferon signaling pathway +12.9294968,GO:0070305,http://purl.obolibrary.org/obo/GO_0070305,response to cGMP +12.9294968,GO:0070877,http://purl.obolibrary.org/obo/GO_0070877,microprocessor complex +12.9294968,GO:0090559,http://purl.obolibrary.org/obo/GO_0090559,regulation of membrane permeability +12.9294968,GO:0097295,http://purl.obolibrary.org/obo/GO_0097295,morphine biosynthetic process +12.9294968,GO:1901881,http://purl.obolibrary.org/obo/GO_1901881,positive regulation of protein depolymerization +12.9294968,GO:1902773,http://purl.obolibrary.org/obo/GO_1902773,GTPase activator complex +12.9294968,GO:1903095,http://purl.obolibrary.org/obo/GO_1903095,ribonuclease III complex +12.9294968,GO:1903426,http://purl.obolibrary.org/obo/GO_1903426,regulation of reactive oxygen species biosynthetic process +12.9294968,GO:1903786,http://purl.obolibrary.org/obo/GO_1903786,regulation of glutathione biosynthetic process +12.9294968,GO:1904951,http://purl.obolibrary.org/obo/GO_1904951,positive regulation of establishment of protein localization +12.9294968,HP:0100033,http://purl.obolibrary.org/obo/HP_0100033,Tics +12.9294968,MONDO:0000498,http://purl.obolibrary.org/obo/MONDO_0000498,arteritic anterior ischemic optic neuropathy +12.9294968,MONDO:0000716,http://purl.obolibrary.org/obo/MONDO_0000716,agraphia +12.9294968,MONDO:0000929,http://purl.obolibrary.org/obo/MONDO_0000929,balloon cell malignant melanoma +12.9294968,MONDO:0001011,http://purl.obolibrary.org/obo/MONDO_0001011,breast cyst +12.9294968,MONDO:0001079,http://purl.obolibrary.org/obo/MONDO_0001079,pancreatic steatorrhea +12.9294968,MONDO:0001482,http://purl.obolibrary.org/obo/MONDO_0001482,testicular leukemia +12.9294968,MONDO:0001810,http://purl.obolibrary.org/obo/MONDO_0001810,hypoglossal nerve disease +12.9294968,MONDO:0002216,http://purl.obolibrary.org/obo/MONDO_0002216,brain sarcoma +12.9294968,MONDO:0002550,http://purl.obolibrary.org/obo/MONDO_0002550,hypoglossal nerve neoplasm +12.9294968,MONDO:0003530,http://purl.obolibrary.org/obo/MONDO_0003530,aggressive digital papillary adenocarcinoma +12.9294968,MONDO:0003698,http://purl.obolibrary.org/obo/MONDO_0003698,penis verrucous carcinoma +12.9294968,MONDO:0003724,http://purl.obolibrary.org/obo/MONDO_0003724,non-proliferative fibrocystic change of the breast +12.9294968,MONDO:0005537,http://purl.obolibrary.org/obo/MONDO_0005537,perianal Crohn disease +12.9294968,MONDO:0006118,http://purl.obolibrary.org/obo/MONDO_0006118,breast fibrosis +12.9294968,MONDO:0006137,http://purl.obolibrary.org/obo/MONDO_0006137,cervical intraepithelial neoplasia grade 2/3 +12.9294968,MONDO:0007252,http://purl.obolibrary.org/obo/MONDO_0007252,Gordon syndrome +12.9294968,MONDO:0007669,http://purl.obolibrary.org/obo/MONDO_0007669,renal cysts and diabetes syndrome +12.9294968,MONDO:0009517,http://purl.obolibrary.org/obo/MONDO_0009517,Donohue syndrome +12.9294968,MONDO:0009627,http://purl.obolibrary.org/obo/MONDO_0009627,Galloway-Mowat syndrome +12.9294968,MONDO:0009910,http://purl.obolibrary.org/obo/MONDO_0009910,Wiedemann-Rautenstrauch syndrome +12.9294968,MONDO:0010545,http://purl.obolibrary.org/obo/MONDO_0010545,Nance-Horan syndrome +12.9294968,MONDO:0012104,http://purl.obolibrary.org/obo/MONDO_0012104,acquired partial lipodystrophy +12.9294968,MONDO:0013310,http://purl.obolibrary.org/obo/MONDO_0013310,congenital adrenal hyperplasia due to cytochrome P450 oxidoreductase deficiency +12.9294968,MONDO:0015070,http://purl.obolibrary.org/obo/MONDO_0015070,laryngeal neuroendocrine neoplasm +12.9294968,MONDO:0016407,http://purl.obolibrary.org/obo/MONDO_0016407,oligomeganephronia +12.9294968,MONDO:0017351,http://purl.obolibrary.org/obo/MONDO_0017351,inborn disorder of lysine and hydroxylysine metabolism +12.9294968,MONDO:0018523,http://purl.obolibrary.org/obo/MONDO_0018523,pancreatic mucinous cystadenoma +12.9294968,MONDO:0018541,http://purl.obolibrary.org/obo/MONDO_0018541,familial hypoaldosteronism +12.9294968,MONDO:0020075,http://purl.obolibrary.org/obo/MONDO_0020075,genetic non-syndromic obesity +12.9294968,MONDO:0020524,http://purl.obolibrary.org/obo/MONDO_0020524,primary parathyroid hyperplasia +12.9294968,MONDO:0025130,http://purl.obolibrary.org/obo/MONDO_0025130,swine vesicular disease +12.9294968,NCBITaxon:10084,http://purl.obolibrary.org/obo/NCBITaxon_10084,none +12.9294968,NCBITaxon:10506,http://purl.obolibrary.org/obo/NCBITaxon_10506,none +12.9294968,NCBITaxon:11264,http://purl.obolibrary.org/obo/NCBITaxon_11264,none +12.9294968,NCBITaxon:11818,http://purl.obolibrary.org/obo/NCBITaxon_11818,none +12.9294968,NCBITaxon:134992,http://purl.obolibrary.org/obo/NCBITaxon_134992,none +12.9294968,NCBITaxon:147370,http://purl.obolibrary.org/obo/NCBITaxon_147370,none +12.9294968,NCBITaxon:147553,http://purl.obolibrary.org/obo/NCBITaxon_147553,Pneumocystidomycetes +12.9294968,NCBITaxon:180822,http://purl.obolibrary.org/obo/NCBITaxon_180822,none +12.9294968,NCBITaxon:197161,http://purl.obolibrary.org/obo/NCBITaxon_197161,none +12.9294968,NCBITaxon:2017757,http://purl.obolibrary.org/obo/NCBITaxon_2017757,none +12.9294968,NCBITaxon:227290,http://purl.obolibrary.org/obo/NCBITaxon_227290,none +12.9294968,NCBITaxon:2499606,http://purl.obolibrary.org/obo/NCBITaxon_2499606,none +12.9294968,NCBITaxon:2499612,http://purl.obolibrary.org/obo/NCBITaxon_2499612,none +12.9294968,NCBITaxon:2499622,http://purl.obolibrary.org/obo/NCBITaxon_2499622,none +12.9294968,NCBITaxon:2509484,http://purl.obolibrary.org/obo/NCBITaxon_2509484,none +12.9294968,NCBITaxon:2841271,http://purl.obolibrary.org/obo/NCBITaxon_2841271,Testudinata +12.9294968,NCBITaxon:37133,http://purl.obolibrary.org/obo/NCBITaxon_37133,none +12.9294968,NCBITaxon:379,http://purl.obolibrary.org/obo/NCBITaxon_379,none +12.9294968,NCBITaxon:37987,http://purl.obolibrary.org/obo/NCBITaxon_37987,Pneumocystidales +12.9294968,NCBITaxon:38143,http://purl.obolibrary.org/obo/NCBITaxon_38143,none +12.9294968,NCBITaxon:40552,http://purl.obolibrary.org/obo/NCBITaxon_40552,none +12.9294968,NCBITaxon:43784,http://purl.obolibrary.org/obo/NCBITaxon_43784,none +12.9294968,NCBITaxon:44281,http://purl.obolibrary.org/obo/NCBITaxon_44281,Pneumocystidaceae +12.9294968,NCBITaxon:4753,http://purl.obolibrary.org/obo/NCBITaxon_4753,Pneumocystis +12.9294968,NCBITaxon:59563,http://purl.obolibrary.org/obo/NCBITaxon_59563,none +12.9294968,NCBITaxon:70894,http://purl.obolibrary.org/obo/NCBITaxon_70894,none +12.9294968,NCBITaxon:70895,http://purl.obolibrary.org/obo/NCBITaxon_70895,none +12.9294968,NCBITaxon:765185,http://purl.obolibrary.org/obo/NCBITaxon_765185,none +12.9294968,NCBITaxon:765186,http://purl.obolibrary.org/obo/NCBITaxon_765186,none +12.9294968,NCBITaxon:79456,http://purl.obolibrary.org/obo/NCBITaxon_79456,none +12.9294968,NCBITaxon:8364,http://purl.obolibrary.org/obo/NCBITaxon_8364,none +12.9294968,NCBITaxon:8371,http://purl.obolibrary.org/obo/NCBITaxon_8371,none +12.9294968,NCBITaxon:8373,http://purl.obolibrary.org/obo/NCBITaxon_8373,none +12.9294968,NCBITaxon:8374,http://purl.obolibrary.org/obo/NCBITaxon_8374,none +12.9294968,NCBITaxon:8459,http://purl.obolibrary.org/obo/NCBITaxon_8459,Testudines +12.9294968,PR:000001325,http://purl.obolibrary.org/obo/PR_000001325,"beta-1,3-glucuronyltransferase" +12.9294968,PR:000001599,http://purl.obolibrary.org/obo/PR_000001599,none +12.9294968,PR:000001626,http://purl.obolibrary.org/obo/PR_000001626,neuropeptides B/W receptor type 2 +12.9294968,PR:000003516,http://purl.obolibrary.org/obo/PR_000003516,lactosylceramide 4-alpha-galactosyltransferase +12.9294968,PR:000004506,http://purl.obolibrary.org/obo/PR_000004506,ataxin-2-like protein +12.9294968,PR:000004622,http://purl.obolibrary.org/obo/PR_000004622,BAG family molecular chaperone regulator 4 +12.9294968,PR:000005137,http://purl.obolibrary.org/obo/PR_000005137,cyclin-L2 +12.9294968,PR:000005210,http://purl.obolibrary.org/obo/PR_000005210,Cdc42 effector protein 3 +12.9294968,PR:000006315,http://purl.obolibrary.org/obo/PR_000006315,protein artemis +12.9294968,PR:000006624,http://purl.obolibrary.org/obo/PR_000006624,dedicator of cytokinesis protein 7 +12.9294968,PR:000006915,http://purl.obolibrary.org/obo/PR_000006915,EF-hand domain-containing protein 1 +12.9294968,PR:000007029,http://purl.obolibrary.org/obo/PR_000007029,RNA polymerase II elongation factor ELL2 +12.9294968,PR:000007807,http://purl.obolibrary.org/obo/PR_000007807,galactosylceramide sulfotransferase +12.9294968,PR:000007818,http://purl.obolibrary.org/obo/PR_000007818,polypeptide N-acetylgalactosaminyltransferase 1 +12.9294968,PR:000007977,http://purl.obolibrary.org/obo/PR_000007977,GRB10-interacting GYF protein 2 +12.9294968,PR:000008030,http://purl.obolibrary.org/obo/PR_000008030,glioma pathogenesis-related protein 1 +12.9294968,PR:000008066,http://purl.obolibrary.org/obo/PR_000008066,germ cell-less protein-like 2 +12.9294968,PR:000008460,http://purl.obolibrary.org/obo/PR_000008460,hemoglobin subunit gamma-1 +12.9294968,PR:000008578,http://purl.obolibrary.org/obo/PR_000008578,histone H1.4 +12.9294968,PR:000008667,http://purl.obolibrary.org/obo/PR_000008667,heterogeneous nuclear ribonucleoprotein H2 +12.9294968,PR:000008707,http://purl.obolibrary.org/obo/PR_000008707,homeobox protein Hox-C10 +12.9294968,PR:000009266,http://purl.obolibrary.org/obo/PR_000009266,calcium-activated potassium channel subunit beta-1 +12.9294968,PR:000009356,http://purl.obolibrary.org/obo/PR_000009356,krueppel-like factor 12 +12.9294968,PR:000009865,http://purl.obolibrary.org/obo/PR_000009865,leiomodin-1 +12.9294968,PR:000010006,http://purl.obolibrary.org/obo/PR_000010006,acyl-protein thioesterase 2 +12.9294968,PR:000010310,http://purl.obolibrary.org/obo/PR_000010310,myocyte-specific enhancer factor 2B +12.9294968,PR:000010427,http://purl.obolibrary.org/obo/PR_000010427,myocardin-related transcription factor B +12.9294968,PR:000010450,http://purl.obolibrary.org/obo/PR_000010450,protein AF-10 +12.9294968,PR:000010497,http://purl.obolibrary.org/obo/PR_000010497,meiotic nuclear division protein 1 +12.9294968,PR:000010558,http://purl.obolibrary.org/obo/PR_000010558,melanocortin-2 receptor accessory protein 2 +12.9294968,PR:000011340,http://purl.obolibrary.org/obo/PR_000011340,RNA-binding protein Nova-2 +12.9294968,PR:000011467,http://purl.obolibrary.org/obo/PR_000011467,netrin-G1 +12.9294968,PR:000011651,http://purl.obolibrary.org/obo/PR_000011651,opticin +12.9294968,PR:000012237,http://purl.obolibrary.org/obo/PR_000012237,polyadenylate-binding protein-interacting protein 2 +12.9294968,PR:000012756,http://purl.obolibrary.org/obo/PR_000012756,membrane-associated phosphatidylinositol transfer protein 1 +12.9294968,PR:000012895,http://purl.obolibrary.org/obo/PR_000012895,plexin-A4 +12.9294968,PR:000013634,http://purl.obolibrary.org/obo/PR_000013634,Ras-related protein Rab-5B +12.9294968,PR:000013781,http://purl.obolibrary.org/obo/PR_000013781,RanBP-type and C3HC4-type zinc finger-containing protein 1 +12.9294968,PR:000013839,http://purl.obolibrary.org/obo/PR_000013839,reticulocalbin-2 +12.9294968,PR:000013928,http://purl.obolibrary.org/obo/PR_000013928,DNA-binding protein RFX6 +12.9294968,PR:000013946,http://purl.obolibrary.org/obo/PR_000013946,regulator of G-protein signaling 11 +12.9294968,PR:000014430,http://purl.obolibrary.org/obo/PR_000014430,sacsin +12.9294968,PR:000014455,http://purl.obolibrary.org/obo/PR_000014455,GTP-binding protein SAR1b +12.9294968,PR:000014483,http://purl.obolibrary.org/obo/PR_000014483,secretory carrier-associated membrane protein 1 +12.9294968,PR:000014492,http://purl.obolibrary.org/obo/PR_000014492,scavenger receptor class A member 5 +12.9294968,PR:000014581,http://purl.obolibrary.org/obo/PR_000014581,protein transport protein Sec16A +12.9294968,PR:000015031,http://purl.obolibrary.org/obo/PR_000015031,mitoferrin-1 +12.9294968,PR:000015528,http://purl.obolibrary.org/obo/PR_000015528,spindlin-2A +12.9294968,PR:000015706,http://purl.obolibrary.org/obo/PR_000015706,cohesin subunit SA-3 +12.9294968,PR:000016036,http://purl.obolibrary.org/obo/PR_000016036,transcription initiation factor TFIID subunit 9 +12.9294968,PR:000016961,http://purl.obolibrary.org/obo/PR_000016961,ubiquitin-associated and SH3 domain-containing protein A +12.9294968,PR:000016995,http://purl.obolibrary.org/obo/PR_000016995,ubiquitin conjugation factor E4 A +12.9294968,PR:000017073,http://purl.obolibrary.org/obo/PR_000017073,E3 ubiquitin-protein ligase UHRF2 +12.9294968,PR:000022104,http://purl.obolibrary.org/obo/PR_000022104,none +12.9294968,PR:000022590,http://purl.obolibrary.org/obo/PR_000022590,none +12.9294968,PR:000022606,http://purl.obolibrary.org/obo/PR_000022606,none +12.9294968,PR:000022761,http://purl.obolibrary.org/obo/PR_000022761,none +12.9294968,PR:000023110,http://purl.obolibrary.org/obo/PR_000023110,none +12.9294968,PR:000023971,http://purl.obolibrary.org/obo/PR_000023971,none +12.9294968,PR:000028151,http://purl.obolibrary.org/obo/PR_000028151,none +12.9294968,PR:000029112,http://purl.obolibrary.org/obo/PR_000029112,probable gluconokinase +12.9294968,PR:000029246,http://purl.obolibrary.org/obo/PR_000029246,none +12.9294968,PR:000030567,http://purl.obolibrary.org/obo/PR_000030567,ankyrin repeat and SAM domain-containing protein 4B +12.9294968,PR:000030575,http://purl.obolibrary.org/obo/PR_000030575,E3 ubiquitin-protein ligase TRIM8 +12.9294968,PR:000031676,http://purl.obolibrary.org/obo/PR_000031676,secretoglobin family 3A member 2 +12.9294968,PR:000032672,http://purl.obolibrary.org/obo/PR_000032672,multicilin +12.9294968,PR:F4IRR2,http://purl.obolibrary.org/obo/PR_F4IRR2,none +12.9294968,PR:P14712,http://purl.obolibrary.org/obo/PR_P14712,none +12.9294968,PR:Q7XJM2,http://purl.obolibrary.org/obo/PR_Q7XJM2,none +12.9294968,PR:Q90871,http://purl.obolibrary.org/obo/PR_Q90871,none +12.9294968,PR:Q9FJH6,http://purl.obolibrary.org/obo/PR_Q9FJH6,none +12.9294968,PR:Q9HE02,http://purl.obolibrary.org/obo/PR_Q9HE02,none +12.9294968,PR:Q9SBJ1,http://purl.obolibrary.org/obo/PR_Q9SBJ1,none +12.9294968,PR:Q9WVJ4,http://purl.obolibrary.org/obo/PR_Q9WVJ4,none +12.9294968,PR:Q9Y0A7,http://purl.obolibrary.org/obo/PR_Q9Y0A7,none +12.9294968,PR:Q9ZPV8,http://purl.obolibrary.org/obo/PR_Q9ZPV8,none +12.9294968,PR:Q9ZWA6,http://purl.obolibrary.org/obo/PR_Q9ZWA6,none +12.9294968,UBERON:0001131,http://purl.obolibrary.org/obo/UBERON_0001131,vertebral foramen +12.9294968,UBERON:0001222,http://purl.obolibrary.org/obo/UBERON_0001222,right ureter +12.9294968,UBERON:0001257,http://purl.obolibrary.org/obo/UBERON_0001257,trigone of urinary bladder +12.9294968,UBERON:0001789,http://purl.obolibrary.org/obo/UBERON_0001789,outer nuclear layer of retina +12.9294968,UBERON:0002227,http://purl.obolibrary.org/obo/UBERON_0002227,spiral organ of cochlea +12.9294968,UBERON:0003076,http://purl.obolibrary.org/obo/UBERON_0003076,posterior neural tube +12.9294968,UBERON:0004160,http://purl.obolibrary.org/obo/UBERON_0004160,proepicardium +12.9294968,UBERON:0004995,http://purl.obolibrary.org/obo/UBERON_0004995,mucosa of body of stomach +12.9294968,UBERON:0006091,http://purl.obolibrary.org/obo/UBERON_0006091,inferior horn of the lateral ventricle +12.9294968,UBERON:0007714,http://purl.obolibrary.org/obo/UBERON_0007714,cervical subsegment of spinal cord +12.9294968,UBERON:0009027,http://purl.obolibrary.org/obo/UBERON_0009027,vesical artery +12.9294968,UBERON:0009630,http://purl.obolibrary.org/obo/UBERON_0009630,root of thoracic nerve +12.9294968,UBERON:0013192,http://purl.obolibrary.org/obo/UBERON_0013192,ovarian medulla +12.9294968,UBERON:0013226,http://purl.obolibrary.org/obo/UBERON_0013226,accessory lacrimal gland +12.9294968,UBERON:0014394,http://purl.obolibrary.org/obo/UBERON_0014394,uterine fat pad +12.9294968,UBERON:0015245,http://purl.obolibrary.org/obo/UBERON_0015245,septal olfactory organ +12.9294968,UBERON:2001647,http://purl.obolibrary.org/obo/UBERON_2001647,pharyngeal tooth plate +12.9294968,UBERON:2005267,http://purl.obolibrary.org/obo/UBERON_2005267,erector muscle +12.9475153,CHEBI:15858,http://purl.obolibrary.org/obo/CHEBI_15858,bromide +12.9475153,CHEBI:22652,http://purl.obolibrary.org/obo/CHEBI_22652,ascorbic acid +12.9475153,CHEBI:23019,http://purl.obolibrary.org/obo/CHEBI_23019,carbonyl group +12.9475153,CHEBI:24963,http://purl.obolibrary.org/obo/CHEBI_24963,ketoaldonic acid +12.9475153,CHEBI:26446,http://purl.obolibrary.org/obo/CHEBI_26446,pyrimidine ribonucleotide +12.9475153,CHEBI:32644,http://purl.obolibrary.org/obo/CHEBI_32644,methioninate +12.9475153,CHEBI:3356,http://purl.obolibrary.org/obo/CHEBI_3356,Canin +12.9475153,CHEBI:36894,http://purl.obolibrary.org/obo/CHEBI_36894,elemental bromine +12.9475153,CHEBI:36896,http://purl.obolibrary.org/obo/CHEBI_36896,monoatomic bromine +12.9475153,CHEBI:48218,http://purl.obolibrary.org/obo/CHEBI_48218,antiseptic drug +12.9475153,CHEBI:51269,http://purl.obolibrary.org/obo/CHEBI_51269,acenes +12.9475153,CHEBI:51702,http://purl.obolibrary.org/obo/CHEBI_51702,enoate ester +12.9475153,CHEBI:51737,http://purl.obolibrary.org/obo/CHEBI_51737,"alpha,beta-unsaturated carboxylic ester" +12.9475153,CHEBI:6790,http://purl.obolibrary.org/obo/CHEBI_6790,metalaxyl +12.9475153,CHEBI:81568,http://purl.obolibrary.org/obo/CHEBI_81568,Luteinizing hormone +12.9475153,CL:0002173,http://purl.obolibrary.org/obo/CL_0002173,extraglomerular mesangial cell +12.9475153,CL:0002405,http://purl.obolibrary.org/obo/CL_0002405,gamma-delta thymocyte +12.9475153,DRUGBANK:DB00237,http://purl.obolibrary.org/obo/DRUGBANK_DB00237,none +12.9475153,DRUGBANK:DB00269,http://purl.obolibrary.org/obo/DRUGBANK_DB00269,none +12.9475153,DRUGBANK:DB00801,http://purl.obolibrary.org/obo/DRUGBANK_DB00801,none +12.9475153,DRUGBANK:DB00873,http://purl.obolibrary.org/obo/DRUGBANK_DB00873,none +12.9475153,DRUGBANK:DB01089,http://purl.obolibrary.org/obo/DRUGBANK_DB01089,none +12.9475153,DRUGBANK:DB02234,http://purl.obolibrary.org/obo/DRUGBANK_DB02234,none +12.9475153,DRUGBANK:DB04982,http://purl.obolibrary.org/obo/DRUGBANK_DB04982,none +12.9475153,DRUGBANK:DB05003,http://purl.obolibrary.org/obo/DRUGBANK_DB05003,none +12.9475153,DRUGBANK:DB05034,http://purl.obolibrary.org/obo/DRUGBANK_DB05034,none +12.9475153,DRUGBANK:DB05608,http://purl.obolibrary.org/obo/DRUGBANK_DB05608,none +12.9475153,DRUGBANK:DB05817,http://purl.obolibrary.org/obo/DRUGBANK_DB05817,none +12.9475153,DRUGBANK:DB06624,http://purl.obolibrary.org/obo/DRUGBANK_DB06624,none +12.9475153,DRUGBANK:DB08976,http://purl.obolibrary.org/obo/DRUGBANK_DB08976,none +12.9475153,DRUGBANK:DB09016,http://purl.obolibrary.org/obo/DRUGBANK_DB09016,none +12.9475153,DRUGBANK:DB11020,http://purl.obolibrary.org/obo/DRUGBANK_DB11020,none +12.9475153,DRUGBANK:DB11267,http://purl.obolibrary.org/obo/DRUGBANK_DB11267,none +12.9475153,DRUGBANK:DB11584,http://purl.obolibrary.org/obo/DRUGBANK_DB11584,none +12.9475153,DRUGBANK:DB11914,http://purl.obolibrary.org/obo/DRUGBANK_DB11914,none +12.9475153,DRUGBANK:DB11998,http://purl.obolibrary.org/obo/DRUGBANK_DB11998,none +12.9475153,DRUGBANK:DB12745,http://purl.obolibrary.org/obo/DRUGBANK_DB12745,none +12.9475153,DRUGBANK:DB12865,http://purl.obolibrary.org/obo/DRUGBANK_DB12865,none +12.9475153,DRUGBANK:DB13388,http://purl.obolibrary.org/obo/DRUGBANK_DB13388,none +12.9475153,DRUGBANK:DB13580,http://purl.obolibrary.org/obo/DRUGBANK_DB13580,none +12.9475153,DRUGBANK:DB13660,http://purl.obolibrary.org/obo/DRUGBANK_DB13660,none +12.9475153,DRUGBANK:DB14229,http://purl.obolibrary.org/obo/DRUGBANK_DB14229,none +12.9475153,DRUGBANK:DB14690,http://purl.obolibrary.org/obo/DRUGBANK_DB14690,none +12.9475153,DRUGBANK:DB14845,http://purl.obolibrary.org/obo/DRUGBANK_DB14845,none +12.9475153,DRUGBANK:DB15466,http://purl.obolibrary.org/obo/DRUGBANK_DB15466,none +12.9475153,GO:0004638,http://purl.obolibrary.org/obo/GO_0004638,phosphoribosylaminoimidazole carboxylase activity +12.9475153,GO:0004832,http://purl.obolibrary.org/obo/GO_0004832,valine-tRNA ligase activity +12.9475153,GO:0006451,http://purl.obolibrary.org/obo/GO_0006451,translational readthrough +12.9475153,GO:0006850,http://purl.obolibrary.org/obo/GO_0006850,mitochondrial pyruvate transmembrane transport +12.9475153,GO:0009909,http://purl.obolibrary.org/obo/GO_0009909,regulation of flower development +12.9475153,GO:0015687,http://purl.obolibrary.org/obo/GO_0015687,ferric-hydroxamate import into cell +12.9475153,GO:0016824,http://purl.obolibrary.org/obo/GO_0016824,"hydrolase activity, acting on acid halide bonds" +12.9475153,GO:0019120,http://purl.obolibrary.org/obo/GO_0019120,"hydrolase activity, acting on acid halide bonds, in C-halide compounds" +12.9475153,GO:0019164,http://purl.obolibrary.org/obo/GO_0019164,pyruvate synthase activity +12.9475153,GO:0019772,http://purl.obolibrary.org/obo/GO_0019772,low-affinity IgG receptor activity +12.9475153,GO:0030171,http://purl.obolibrary.org/obo/GO_0030171,voltage-gated proton channel activity +12.9475153,GO:0030245,http://purl.obolibrary.org/obo/GO_0030245,cellulose catabolic process +12.9475153,GO:0030651,http://purl.obolibrary.org/obo/GO_0030651,peptide antibiotic biosynthetic process +12.9475153,GO:0030838,http://purl.obolibrary.org/obo/GO_0030838,positive regulation of actin filament polymerization +12.9475153,GO:0033673,http://purl.obolibrary.org/obo/GO_0033673,negative regulation of kinase activity +12.9475153,GO:0035095,http://purl.obolibrary.org/obo/GO_0035095,behavioral response to nicotine +12.9475153,GO:0035869,http://purl.obolibrary.org/obo/GO_0035869,ciliary transition zone +12.9475153,GO:0038029,http://purl.obolibrary.org/obo/GO_0038029,epidermal growth factor receptor signaling pathway via MAPK cascade +12.9475153,GO:0042312,http://purl.obolibrary.org/obo/GO_0042312,none +12.9475153,GO:0043138,http://purl.obolibrary.org/obo/GO_0043138,3'-5' DNA helicase activity +12.9475153,GO:0043895,http://purl.obolibrary.org/obo/GO_0043895,cyclomaltodextrin glucanotransferase activity +12.9475153,GO:0044879,http://purl.obolibrary.org/obo/GO_0044879,mitotic morphogenesis checkpoint signaling +12.9475153,GO:0045057,http://purl.obolibrary.org/obo/GO_0045057,cisternal progression +12.9475153,GO:0045739,http://purl.obolibrary.org/obo/GO_0045739,positive regulation of DNA repair +12.9475153,GO:0046449,http://purl.obolibrary.org/obo/GO_0046449,creatinine metabolic process +12.9475153,GO:0046490,http://purl.obolibrary.org/obo/GO_0046490,isopentenyl diphosphate metabolic process +12.9475153,GO:0051298,http://purl.obolibrary.org/obo/GO_0051298,centrosome duplication +12.9475153,GO:0060572,http://purl.obolibrary.org/obo/GO_0060572,morphogenesis of an epithelial bud +12.9475153,GO:0061691,http://purl.obolibrary.org/obo/GO_0061691,detoxification of hydrogen peroxide +12.9475153,GO:0070285,http://purl.obolibrary.org/obo/GO_0070285,pigment cell development +12.9475153,GO:0070548,http://purl.obolibrary.org/obo/GO_0070548,L-glutamine aminotransferase activity +12.9475153,GO:1901475,http://purl.obolibrary.org/obo/GO_1901475,pyruvate transmembrane transport +12.9475153,GO:1903173,http://purl.obolibrary.org/obo/GO_1903173,fatty alcohol metabolic process +12.9475153,GO:1904643,http://purl.obolibrary.org/obo/GO_1904643,response to curcumin +12.9475153,GO:1990421,http://purl.obolibrary.org/obo/GO_1990421,none +12.9475153,GO:1990790,http://purl.obolibrary.org/obo/GO_1990790,response to glial cell derived neurotrophic factor +12.9475153,GO:2001022,http://purl.obolibrary.org/obo/GO_2001022,positive regulation of response to DNA damage stimulus +12.9475153,HP:0003351,http://purl.obolibrary.org/obo/HP_0003351,Decreased circulating renin level +12.9475153,MONDO:0001076,http://purl.obolibrary.org/obo/MONDO_0001076,glucose intolerance +12.9475153,MONDO:0001631,http://purl.obolibrary.org/obo/MONDO_0001631,vertebral artery insufficiency +12.9475153,MONDO:0003055,http://purl.obolibrary.org/obo/MONDO_0003055,secretory meningioma +12.9475153,MONDO:0003288,http://purl.obolibrary.org/obo/MONDO_0003288,bizarre leiomyoma +12.9475153,MONDO:0004903,http://purl.obolibrary.org/obo/MONDO_0004903,deep keratitis +12.9475153,MONDO:0005263,http://purl.obolibrary.org/obo/MONDO_0005263,none +12.9475153,MONDO:0006034,http://purl.obolibrary.org/obo/MONDO_0006034,gastric adenosquamous carcinoma +12.9475153,MONDO:0006109,http://purl.obolibrary.org/obo/MONDO_0006109,malignant biphasic mesothelioma +12.9475153,MONDO:0007698,http://purl.obolibrary.org/obo/MONDO_0007698,hand-foot-genital syndrome +12.9475153,MONDO:0008596,http://purl.obolibrary.org/obo/MONDO_0008596,trichorhinophalangeal syndrome type I +12.9475153,MONDO:0008945,http://purl.obolibrary.org/obo/MONDO_0008945,myoclonic cerebellar dyssynergia +12.9475153,MONDO:0009588,http://purl.obolibrary.org/obo/MONDO_0009588,Langer mesomelic dysplasia +12.9475153,MONDO:0010572,http://purl.obolibrary.org/obo/MONDO_0010572,occipital horn syndrome +12.9475153,MONDO:0010578,http://purl.obolibrary.org/obo/MONDO_0010578,deafness dystonia syndrome +12.9475153,MONDO:0010799,http://purl.obolibrary.org/obo/MONDO_0010799,aminoglycoside-induced deafness +12.9475153,MONDO:0011244,http://purl.obolibrary.org/obo/MONDO_0011244,Marshall-Smith syndrome +12.9475153,MONDO:0012574,http://purl.obolibrary.org/obo/MONDO_0012574,Potocki-Lupski syndrome +12.9475153,MONDO:0013308,http://purl.obolibrary.org/obo/MONDO_0013308,CBL-related disorder +12.9475153,MONDO:0015825,http://purl.obolibrary.org/obo/MONDO_0015825,obesity due to congenital leptin resistance +12.9475153,MONDO:0016802,http://purl.obolibrary.org/obo/MONDO_0016802,mitochondrial protein import disorder +12.9475153,MONDO:0017242,http://purl.obolibrary.org/obo/MONDO_0017242,cutaneous collagenous vasculopathy +12.9475153,MONDO:0019855,http://purl.obolibrary.org/obo/MONDO_0019855,athyreosis +12.9475153,MONDO:0020331,http://purl.obolibrary.org/obo/MONDO_0020331,indolent systemic mastocytosis +12.9475153,MONDO:0020489,http://purl.obolibrary.org/obo/MONDO_0020489,familial hyperreninemic hypoaldosteronism type 1 +12.9475153,MONDO:0020597,http://purl.obolibrary.org/obo/MONDO_0020597,angiokeratoma of scrotum +12.9475153,MONDO:0021134,http://purl.obolibrary.org/obo/MONDO_0021134,acquired factor X deficiency +12.9475153,MONDO:0021149,http://purl.obolibrary.org/obo/MONDO_0021149,genetic vs non-genetic etiology +12.9475153,MONDO:0021152,http://purl.obolibrary.org/obo/MONDO_0021152,inherited +12.9475153,MONDO:0021535,http://purl.obolibrary.org/obo/MONDO_0021535,pancreatic neuroendocrine tumor G1 +12.9475153,MONDO:0041086,http://purl.obolibrary.org/obo/MONDO_0041086,mixed anxiety and depressive disorder +12.9475153,NCBITaxon:10487,http://purl.obolibrary.org/obo/NCBITaxon_10487,none +12.9475153,NCBITaxon:10987,http://purl.obolibrary.org/obo/NCBITaxon_10987,none +12.9475153,NCBITaxon:114727,http://purl.obolibrary.org/obo/NCBITaxon_114727,H1N1 subtype +12.9475153,NCBITaxon:119088,http://purl.obolibrary.org/obo/NCBITaxon_119088,Enoplea +12.9475153,NCBITaxon:147368,http://purl.obolibrary.org/obo/NCBITaxon_147368,Pooideae +12.9475153,NCBITaxon:1489910,http://purl.obolibrary.org/obo/NCBITaxon_1489910,none +12.9475153,NCBITaxon:1489911,http://purl.obolibrary.org/obo/NCBITaxon_1489911,none +12.9475153,NCBITaxon:186803,http://purl.obolibrary.org/obo/NCBITaxon_186803,none +12.9475153,NCBITaxon:2560702,http://purl.obolibrary.org/obo/NCBITaxon_2560702,none +12.9475153,NCBITaxon:262015,http://purl.obolibrary.org/obo/NCBITaxon_262015,none +12.9475153,NCBITaxon:26478,http://purl.obolibrary.org/obo/NCBITaxon_26478,none +12.9475153,NCBITaxon:33256,http://purl.obolibrary.org/obo/NCBITaxon_33256,Ascaridoidea +12.9475153,NCBITaxon:36420,http://purl.obolibrary.org/obo/NCBITaxon_36420,H1N1 swine influenza virus +12.9475153,NCBITaxon:369960,http://purl.obolibrary.org/obo/NCBITaxon_369960,none +12.9475153,NCBITaxon:41831,http://purl.obolibrary.org/obo/NCBITaxon_41831,Psychodoidea +12.9475153,NCBITaxon:43141,http://purl.obolibrary.org/obo/NCBITaxon_43141,none +12.9475153,NCBITaxon:43763,http://purl.obolibrary.org/obo/NCBITaxon_43763,none +12.9475153,NCBITaxon:43787,http://purl.obolibrary.org/obo/NCBITaxon_43787,Psychodomorpha +12.9475153,NCBITaxon:512169,http://purl.obolibrary.org/obo/NCBITaxon_512169,none +12.9475153,NCBITaxon:54283,http://purl.obolibrary.org/obo/NCBITaxon_54283,none +12.9475153,NCBITaxon:61673,http://purl.obolibrary.org/obo/NCBITaxon_61673,none +12.9475153,NCBITaxon:629,http://purl.obolibrary.org/obo/NCBITaxon_629,Yersinia +12.9475153,NCBITaxon:7197,http://purl.obolibrary.org/obo/NCBITaxon_7197,Psychodidae +12.9475153,NCBITaxon:7234,http://purl.obolibrary.org/obo/NCBITaxon_7234,none +12.9475153,NCBITaxon:772,http://purl.obolibrary.org/obo/NCBITaxon_772,Bartonellaceae +12.9475153,NCBITaxon:773,http://purl.obolibrary.org/obo/NCBITaxon_773,Bartonella +12.9475153,NCBITaxon:8113,http://purl.obolibrary.org/obo/NCBITaxon_8113,none +12.9475153,NCBITaxon:8356,http://purl.obolibrary.org/obo/NCBITaxon_8356,none +12.9475153,NCBITaxon:83620,http://purl.obolibrary.org/obo/NCBITaxon_83620,none +12.9475153,NCBITaxon:873551,http://purl.obolibrary.org/obo/NCBITaxon_873551,none +12.9475153,NCBITaxon:873552,http://purl.obolibrary.org/obo/NCBITaxon_873552,none +12.9475153,PR:000001857,http://purl.obolibrary.org/obo/PR_000001857,immunoglobulin alpha Fc receptor +12.9475153,PR:000001858,http://purl.obolibrary.org/obo/PR_000001858,immunoglobulin iota chain +12.9475153,PR:000003638,http://purl.obolibrary.org/obo/PR_000003638,cytosolic acyl coenzyme A thioester hydrolase +12.9475153,PR:000003949,http://purl.obolibrary.org/obo/PR_000003949,DNA oxidative demethylase ALKBH2 +12.9475153,PR:000004311,http://purl.obolibrary.org/obo/PR_000004311,actin-related protein 2/3 complex subunit 3 +12.9475153,PR:000004671,http://purl.obolibrary.org/obo/PR_000004671,HMG box transcription factor BBX +12.9475153,PR:000004744,http://purl.obolibrary.org/obo/PR_000004744,protein bicaudal C homolog 1 +12.9475153,PR:000004820,http://purl.obolibrary.org/obo/PR_000004820,brain protein 44 +12.9475153,PR:000005153,http://purl.obolibrary.org/obo/PR_000005153,T-complex protein 1 subunit epsilon +12.9475153,PR:000005807,http://purl.obolibrary.org/obo/PR_000005807,cytoplasmic polyadenylation element-binding protein 3 +12.9475153,PR:000006753,http://purl.obolibrary.org/obo/PR_000006753,dual specificity protein phosphatase 3 +12.9475153,PR:000006775,http://purl.obolibrary.org/obo/PR_000006775,cytoplasmic dynein 2 heavy chain 1 +12.9475153,PR:000007007,http://purl.obolibrary.org/obo/PR_000007007,eukaryotic translation initiation factor 6 +12.9475153,PR:000007282,http://purl.obolibrary.org/obo/PR_000007282,none +12.9475153,PR:000007985,http://purl.obolibrary.org/obo/PR_000007985,DNA replication complex GINS protein SLD5 +12.9475153,PR:000008178,http://purl.obolibrary.org/obo/PR_000008178,neuronal membrane glycoprotein M6-a +12.9475153,PR:000008270,http://purl.obolibrary.org/obo/PR_000008270,metabotropic glutamate receptor 8 +12.9475153,PR:000008752,http://purl.obolibrary.org/obo/PR_000008752,activator of apoptosis harakiri +12.9475153,PR:000009224,http://purl.obolibrary.org/obo/PR_000009224,junctophilin-3 +12.9475153,PR:000009653,http://purl.obolibrary.org/obo/PR_000009653,laminin subunit alpha-4 +12.9475153,PR:000010415,http://purl.obolibrary.org/obo/PR_000010415,misshapen-like kinase 1 +12.9475153,PR:000010742,http://purl.obolibrary.org/obo/PR_000010742,myotubularin-related protein 9 +12.9475153,PR:000011327,http://purl.obolibrary.org/obo/PR_000011327,carboxyl-terminal PDZ ligand of neuronal nitric oxide synthase protein +12.9475153,PR:000012215,http://purl.obolibrary.org/obo/PR_000012215,phosphofurin acidic cluster sorting protein 1 +12.9475153,PR:000012355,http://purl.obolibrary.org/obo/PR_000012355,protocadherin-9 +12.9475153,PR:000012853,http://purl.obolibrary.org/obo/PR_000012853,pleckstrin homology domain-containing family A member 1 +12.9475153,PR:000012955,http://purl.obolibrary.org/obo/PR_000012955,podocalyxin-like protein 1 +12.9475153,PR:000013777,http://purl.obolibrary.org/obo/PR_000013777,retinoblastoma-binding protein 5 +12.9475153,PR:000013969,http://purl.obolibrary.org/obo/PR_000013969,inactive rhomboid protein 2 +12.9475153,PR:000014066,http://purl.obolibrary.org/obo/PR_000014066,RING finger protein 11 +12.9475153,PR:000014129,http://purl.obolibrary.org/obo/PR_000014129,E3 ubiquitin-protein ligase RNF31 +12.9475153,PR:000014158,http://purl.obolibrary.org/obo/PR_000014158,reactive oxygen species modulator 1 +12.9475153,PR:000014194,http://purl.obolibrary.org/obo/PR_000014194,60S ribosomal protein L14 +12.9475153,PR:000014716,http://purl.obolibrary.org/obo/PR_000014716,sestrin-3 +12.9475153,PR:000014939,http://purl.obolibrary.org/obo/PR_000014939,urea transporter 2 +12.9475153,PR:000015216,http://purl.obolibrary.org/obo/PR_000015216,sodium/hydrogen exchanger 4 +12.9475153,PR:000015369,http://purl.obolibrary.org/obo/PR_000015369,sorting nexin-2 +12.9475153,PR:000015384,http://purl.obolibrary.org/obo/PR_000015384,sorting nexin-5 +12.9475153,PR:000015804,http://purl.obolibrary.org/obo/PR_000015804,syntaxin-binding protein 5 +12.9475153,PR:000015845,http://purl.obolibrary.org/obo/PR_000015845,histone-lysine N-methyltransferase SUV39H2 +12.9475153,PR:000015987,http://purl.obolibrary.org/obo/PR_000015987,none +12.9475153,PR:000016402,http://purl.obolibrary.org/obo/PR_000016402,transmembrane emp24 domain-containing protein 10 +12.9475153,PR:000016518,http://purl.obolibrary.org/obo/PR_000016518,trinucleotide repeat-containing gene 6A protein +12.9475153,PR:000016669,http://purl.obolibrary.org/obo/PR_000016669,TRIO and F-actin-binding protein +12.9475153,PR:000016855,http://purl.obolibrary.org/obo/PR_000016855,thioredoxin-related transmembrane protein 1 +12.9475153,PR:000017683,http://purl.obolibrary.org/obo/PR_000017683,zinc finger MIZ domain-containing protein 1 +12.9475153,PR:000022044,http://purl.obolibrary.org/obo/PR_000022044,none +12.9475153,PR:000022099,http://purl.obolibrary.org/obo/PR_000022099,none +12.9475153,PR:000022376,http://purl.obolibrary.org/obo/PR_000022376,none +12.9475153,PR:000022660,http://purl.obolibrary.org/obo/PR_000022660,none +12.9475153,PR:000022852,http://purl.obolibrary.org/obo/PR_000022852,none +12.9475153,PR:000023162,http://purl.obolibrary.org/obo/PR_000023162,none +12.9475153,PR:000023461,http://purl.obolibrary.org/obo/PR_000023461,none +12.9475153,PR:000028635,http://purl.obolibrary.org/obo/PR_000028635,none +12.9475153,PR:000029220,http://purl.obolibrary.org/obo/PR_000029220,none +12.9475153,PR:000029873,http://purl.obolibrary.org/obo/PR_000029873,WD repeat domain phosphoinositide-interacting protein 2 +12.9475153,PR:000030397,http://purl.obolibrary.org/obo/PR_000030397,leucine-rich repeat-containing protein 4 +12.9475153,PR:000030606,http://purl.obolibrary.org/obo/PR_000030606,BTB/POZ domain-containing protein 9 +12.9475153,PR:000031668,http://purl.obolibrary.org/obo/PR_000031668,ADP-ribose glycohydrolase MACROD2 +12.9475153,PR:000032440,http://purl.obolibrary.org/obo/PR_000032440,WD repeat domain phosphoinositide-interacting protein 4 +12.9475153,PR:000033226,http://purl.obolibrary.org/obo/PR_000033226,none +12.9475153,PR:000033688,http://purl.obolibrary.org/obo/PR_000033688,none +12.9475153,PR:000034565,http://purl.obolibrary.org/obo/PR_000034565,meiosis-specific protein MEI4 +12.9475153,PR:O81146,http://purl.obolibrary.org/obo/PR_O81146,none +12.9475153,PR:P14318,http://purl.obolibrary.org/obo/PR_P14318,none +12.9475153,PR:P53179,http://purl.obolibrary.org/obo/PR_P53179,none +12.9475153,PR:P78929,http://purl.obolibrary.org/obo/PR_P78929,none +12.9475153,PR:P81916,http://purl.obolibrary.org/obo/PR_P81916,none +12.9475153,PR:Q05738,http://purl.obolibrary.org/obo/PR_Q05738,none +12.9475153,PR:Q8RXD4,http://purl.obolibrary.org/obo/PR_Q8RXD4,none +12.9475153,PR:Q94EH8,http://purl.obolibrary.org/obo/PR_Q94EH8,none +12.9475153,PR:Q96511,http://purl.obolibrary.org/obo/PR_Q96511,none +12.9475153,PR:Q9FZC4,http://purl.obolibrary.org/obo/PR_Q9FZC4,none +12.9475153,UBERON:0000123,http://purl.obolibrary.org/obo/UBERON_0000123,endoneurium +12.9475153,UBERON:0001289,http://purl.obolibrary.org/obo/UBERON_0001289,descending limb of loop of Henle +12.9475153,UBERON:0002505,http://purl.obolibrary.org/obo/UBERON_0002505,spiral modiolar artery +12.9475153,UBERON:0003239,http://purl.obolibrary.org/obo/UBERON_0003239,epithelium of posterior semicircular canal +12.9475153,UBERON:0003923,http://purl.obolibrary.org/obo/UBERON_0003923,dorsal pancreatic bud +12.9475153,UBERON:0003980,http://purl.obolibrary.org/obo/UBERON_0003980,cerebellum fissure +12.9475153,UBERON:0004140,http://purl.obolibrary.org/obo/UBERON_0004140,primary heart field +12.9475153,UBERON:0004536,http://purl.obolibrary.org/obo/UBERON_0004536,lymph vasculature +12.9475153,UBERON:0006785,http://purl.obolibrary.org/obo/UBERON_0006785,gray matter layer of superior colliculus +12.9475153,UBERON:0007275,http://purl.obolibrary.org/obo/UBERON_0007275,crista of ampulla of posterior semicircular duct of membranous laybrinth +12.9475153,UBERON:0008521,http://purl.obolibrary.org/obo/UBERON_0008521,gluteus minimus +12.9475153,UBERON:0010524,http://purl.obolibrary.org/obo/UBERON_0010524,fibularis tertius +12.9475153,UBERON:0013472,http://purl.obolibrary.org/obo/UBERON_0013472,upper esophagus +12.9475153,UBERON:0015181,http://purl.obolibrary.org/obo/UBERON_0015181,neck of tooth +12.9475153,UBERON:0015203,http://purl.obolibrary.org/obo/UBERON_0015203,non-connected functional system +12.9475153,UBERON:0015204,http://purl.obolibrary.org/obo/UBERON_0015204,glandular system +12.9475153,UBERON:0034986,http://purl.obolibrary.org/obo/UBERON_0034986,sacral nerve plexus +12.9658644,CHEBI:23524,http://purl.obolibrary.org/obo/CHEBI_23524,cytidines +12.9658644,CHEBI:24278,http://purl.obolibrary.org/obo/CHEBI_24278,glucoside +12.9658644,CHEBI:26292,http://purl.obolibrary.org/obo/CHEBI_26292,propanones +12.9658644,CHEBI:35293,http://purl.obolibrary.org/obo/CHEBI_35293,fused compound +12.9658644,CHEBI:50514,http://purl.obolibrary.org/obo/CHEBI_50514,vasoconstrictor agent +12.9658644,CHEBI:52495,http://purl.obolibrary.org/obo/CHEBI_52495,pyrimidinyl group +12.9658644,CHEBI:63470,http://purl.obolibrary.org/obo/CHEBI_63470,sulfur-containing amino-acid anion +12.9658644,CHEBI:67114,http://purl.obolibrary.org/obo/CHEBI_67114,ryanodine receptor agonist +12.9658644,CHEBI:75787,http://purl.obolibrary.org/obo/CHEBI_75787,prokaryotic metabolite +12.9658644,CL:0000879,http://purl.obolibrary.org/obo/CL_0000879,meningeal macrophage +12.9658644,CL:0002213,http://purl.obolibrary.org/obo/CL_0002213,white muscle cell +12.9658644,DRUGBANK:DB00462,http://purl.obolibrary.org/obo/DRUGBANK_DB00462,none +12.9658644,DRUGBANK:DB00562,http://purl.obolibrary.org/obo/DRUGBANK_DB00562,none +12.9658644,DRUGBANK:DB01266,http://purl.obolibrary.org/obo/DRUGBANK_DB01266,none +12.9658644,DRUGBANK:DB01559,http://purl.obolibrary.org/obo/DRUGBANK_DB01559,none +12.9658644,DRUGBANK:DB01671,http://purl.obolibrary.org/obo/DRUGBANK_DB01671,none +12.9658644,DRUGBANK:DB02125,http://purl.obolibrary.org/obo/DRUGBANK_DB02125,none +12.9658644,DRUGBANK:DB02129,http://purl.obolibrary.org/obo/DRUGBANK_DB02129,none +12.9658644,DRUGBANK:DB03197,http://purl.obolibrary.org/obo/DRUGBANK_DB03197,none +12.9658644,DRUGBANK:DB03836,http://purl.obolibrary.org/obo/DRUGBANK_DB03836,none +12.9658644,DRUGBANK:DB03864,http://purl.obolibrary.org/obo/DRUGBANK_DB03864,none +12.9658644,DRUGBANK:DB04418,http://purl.obolibrary.org/obo/DRUGBANK_DB04418,none +12.9658644,DRUGBANK:DB04489,http://purl.obolibrary.org/obo/DRUGBANK_DB04489,none +12.9658644,DRUGBANK:DB06247,http://purl.obolibrary.org/obo/DRUGBANK_DB06247,none +12.9658644,DRUGBANK:DB06659,http://purl.obolibrary.org/obo/DRUGBANK_DB06659,none +12.9658644,DRUGBANK:DB06753,http://purl.obolibrary.org/obo/DRUGBANK_DB06753,none +12.9658644,DRUGBANK:DB08800,http://purl.obolibrary.org/obo/DRUGBANK_DB08800,none +12.9658644,DRUGBANK:DB09237,http://purl.obolibrary.org/obo/DRUGBANK_DB09237,none +12.9658644,DRUGBANK:DB11578,http://purl.obolibrary.org/obo/DRUGBANK_DB11578,none +12.9658644,DRUGBANK:DB12629,http://purl.obolibrary.org/obo/DRUGBANK_DB12629,none +12.9658644,DRUGBANK:DB13515,http://purl.obolibrary.org/obo/DRUGBANK_DB13515,none +12.9658644,DRUGBANK:DB13778,http://purl.obolibrary.org/obo/DRUGBANK_DB13778,none +12.9658644,DRUGBANK:DB13915,http://purl.obolibrary.org/obo/DRUGBANK_DB13915,none +12.9658644,DRUGBANK:DB14027,http://purl.obolibrary.org/obo/DRUGBANK_DB14027,none +12.9658644,DRUGBANK:DB14263,http://purl.obolibrary.org/obo/DRUGBANK_DB14263,none +12.9658644,DRUGBANK:DB14369,http://purl.obolibrary.org/obo/DRUGBANK_DB14369,none +12.9658644,DRUGBANK:DB15481,http://purl.obolibrary.org/obo/DRUGBANK_DB15481,none +12.9658644,DRUGBANK:DB16293,http://purl.obolibrary.org/obo/DRUGBANK_DB16293,none +12.9658644,GO:0000814,http://purl.obolibrary.org/obo/GO_0000814,ESCRT II complex +12.9658644,GO:0000815,http://purl.obolibrary.org/obo/GO_0000815,ESCRT III complex +12.9658644,GO:0004477,http://purl.obolibrary.org/obo/GO_0004477,methenyltetrahydrofolate cyclohydrolase activity +12.9658644,GO:0004999,http://purl.obolibrary.org/obo/GO_0004999,vasoactive intestinal polypeptide receptor activity +12.9658644,GO:0006274,http://purl.obolibrary.org/obo/GO_0006274,DNA replication termination +12.9658644,GO:0006290,http://purl.obolibrary.org/obo/GO_0006290,pyrimidine dimer repair +12.9658644,GO:0008397,http://purl.obolibrary.org/obo/GO_0008397,sterol 12-alpha-hydroxylase activity +12.9658644,GO:0009389,http://purl.obolibrary.org/obo/GO_0009389,dimethyl sulfoxide reductase activity +12.9658644,GO:0016900,http://purl.obolibrary.org/obo/GO_0016900,"oxidoreductase activity, acting on the CH-OH group of donors, disulfide as acceptor" +12.9658644,GO:0016980,http://purl.obolibrary.org/obo/GO_0016980,creatinase activity +12.9658644,GO:0030539,http://purl.obolibrary.org/obo/GO_0030539,male genitalia development +12.9658644,GO:0030572,http://purl.obolibrary.org/obo/GO_0030572,phosphatidyltransferase activity +12.9658644,GO:0030699,http://purl.obolibrary.org/obo/GO_0030699,glycine reductase activity +12.9658644,GO:0032652,http://purl.obolibrary.org/obo/GO_0032652,regulation of interleukin-1 production +12.9658644,GO:0033206,http://purl.obolibrary.org/obo/GO_0033206,meiotic cytokinesis +12.9658644,GO:0035187,http://purl.obolibrary.org/obo/GO_0035187,hatching behavior +12.9658644,GO:0039529,http://purl.obolibrary.org/obo/GO_0039529,RIG-I signaling pathway +12.9658644,GO:0045010,http://purl.obolibrary.org/obo/GO_0045010,actin nucleation +12.9658644,GO:0046423,http://purl.obolibrary.org/obo/GO_0046423,allene-oxide cyclase activity +12.9658644,GO:0046461,http://purl.obolibrary.org/obo/GO_0046461,neutral lipid catabolic process +12.9658644,GO:0047058,http://purl.obolibrary.org/obo/GO_0047058,vitamin-K-epoxide reductase (warfarin-insensitive) activity +12.9658644,GO:0047179,http://purl.obolibrary.org/obo/GO_0047179,platelet-activating factor acetyltransferase activity +12.9658644,GO:0048021,http://purl.obolibrary.org/obo/GO_0048021,regulation of melanin biosynthetic process +12.9658644,GO:0051409,http://purl.obolibrary.org/obo/GO_0051409,response to nitrosative stress +12.9658644,GO:0051963,http://purl.obolibrary.org/obo/GO_0051963,regulation of synapse assembly +12.9658644,GO:0097003,http://purl.obolibrary.org/obo/GO_0097003,adipokinetic hormone receptor activity +12.9658644,GO:1901424,http://purl.obolibrary.org/obo/GO_1901424,response to toluene +12.9658644,HP:0000999,http://purl.obolibrary.org/obo/HP_0000999,Pyoderma +12.9658644,HP:0003006,http://purl.obolibrary.org/obo/HP_0003006,Neuroblastoma +12.9658644,HP:0012743,http://purl.obolibrary.org/obo/HP_0012743,Abdominal obesity +12.9658644,HP:0012839,http://purl.obolibrary.org/obo/HP_0012839,Distal +12.9658644,MONDO:0001944,http://purl.obolibrary.org/obo/MONDO_0001944,mixed malaria +12.9658644,MONDO:0003058,http://purl.obolibrary.org/obo/MONDO_0003058,microcystic meningioma +12.9658644,MONDO:0003359,http://purl.obolibrary.org/obo/MONDO_0003359,myxoid leiomyosarcoma +12.9658644,MONDO:0003545,http://purl.obolibrary.org/obo/MONDO_0003545,intradural extramedullary spinal canal neoplasm +12.9658644,MONDO:0006400,http://purl.obolibrary.org/obo/MONDO_0006400,salivary gland acinic cell carcinoma +12.9658644,MONDO:0006896,http://purl.obolibrary.org/obo/MONDO_0006896,peptic esophagitis +12.9658644,MONDO:0009564,http://purl.obolibrary.org/obo/MONDO_0009564,Marden-Walker syndrome +12.9658644,MONDO:0009856,http://purl.obolibrary.org/obo/MONDO_0009856,Peters plus syndrome +12.9658644,MONDO:0009977,http://purl.obolibrary.org/obo/MONDO_0009977,Knobloch syndrome +12.9658644,MONDO:0010139,http://purl.obolibrary.org/obo/MONDO_0010139,isolated thyroid-stimulating hormone deficiency +12.9658644,MONDO:0010140,http://purl.obolibrary.org/obo/MONDO_0010140,isolated thyrotropin-releasing hormone deficiency +12.9658644,MONDO:0011740,http://purl.obolibrary.org/obo/MONDO_0011740,Carney-Stratakis syndrome +12.9658644,MONDO:0013640,http://purl.obolibrary.org/obo/MONDO_0013640,familial retinal arterial macroaneurysm +12.9658644,MONDO:0014405,http://purl.obolibrary.org/obo/MONDO_0014405,STING-associated vasculopathy with onset in infancy +12.9658644,MONDO:0015072,http://purl.obolibrary.org/obo/MONDO_0015072,liver neuroendocrine carcinoma +12.9658644,MONDO:0016878,http://purl.obolibrary.org/obo/MONDO_0016878,partial deletion of chromosome 16 +12.9658644,MONDO:0019105,http://purl.obolibrary.org/obo/MONDO_0019105,renal nutcracker syndrome +12.9658644,MONDO:0019362,http://purl.obolibrary.org/obo/MONDO_0019362,epidemic louse-borne typhus +12.9658644,MONDO:0019570,http://purl.obolibrary.org/obo/MONDO_0019570,Cockayne syndrome type 2 +12.9658644,MONDO:0019862,http://purl.obolibrary.org/obo/MONDO_0019862,levocardia +12.9658644,MONDO:0021183,http://purl.obolibrary.org/obo/MONDO_0021183,HTLV-2 infection +12.9658644,MONDO:0023134,http://purl.obolibrary.org/obo/MONDO_0023134,febrile ulceronecrotic mucha-habermann disease +12.9658644,MONDO:0024249,http://purl.obolibrary.org/obo/MONDO_0024249,pityriasis lichenoides +12.9658644,MONDO:0024250,http://purl.obolibrary.org/obo/MONDO_0024250,acute lichenoid pityriasis +12.9658644,MONDO:0024504,http://purl.obolibrary.org/obo/MONDO_0024504,enterochromaffin cell serotonin-producing pancreatic neuroendocrine tumor +12.9658644,MONDO:0044884,http://purl.obolibrary.org/obo/MONDO_0044884,tonsillar lymphoma +12.9658644,NCBITaxon:10561,http://purl.obolibrary.org/obo/NCBITaxon_10561,none +12.9658644,NCBITaxon:115426,http://purl.obolibrary.org/obo/NCBITaxon_115426,none +12.9658644,NCBITaxon:115427,http://purl.obolibrary.org/obo/NCBITaxon_115427,none +12.9658644,NCBITaxon:11982,http://purl.obolibrary.org/obo/NCBITaxon_11982,none +12.9658644,NCBITaxon:129727,http://purl.obolibrary.org/obo/NCBITaxon_129727,none +12.9658644,NCBITaxon:1511862,http://purl.obolibrary.org/obo/NCBITaxon_1511862,Carnivore amdoparvovirus 1 +12.9658644,NCBITaxon:158450,http://purl.obolibrary.org/obo/NCBITaxon_158450,none +12.9658644,NCBITaxon:158451,http://purl.obolibrary.org/obo/NCBITaxon_158451,none +12.9658644,NCBITaxon:2748762,http://purl.obolibrary.org/obo/NCBITaxon_2748762,Colorado tick fever coltivirus +12.9658644,NCBITaxon:28314,http://purl.obolibrary.org/obo/NCBITaxon_28314,Aleutian mink disease virus +12.9658644,NCBITaxon:294365,http://purl.obolibrary.org/obo/NCBITaxon_294365,none +12.9658644,NCBITaxon:3041,http://purl.obolibrary.org/obo/NCBITaxon_3041,none +12.9658644,NCBITaxon:310911,http://purl.obolibrary.org/obo/NCBITaxon_310911,Amdoparvovirus +12.9658644,NCBITaxon:333921,http://purl.obolibrary.org/obo/NCBITaxon_333921,none +12.9658644,NCBITaxon:35506,http://purl.obolibrary.org/obo/NCBITaxon_35506,none +12.9658644,NCBITaxon:41830,http://purl.obolibrary.org/obo/NCBITaxon_41830,none +12.9658644,NCBITaxon:434309,http://purl.obolibrary.org/obo/NCBITaxon_434309,none +12.9658644,NCBITaxon:467144,http://purl.obolibrary.org/obo/NCBITaxon_467144,none +12.9658644,NCBITaxon:46839,http://purl.obolibrary.org/obo/NCBITaxon_46839,Colorado tick fever virus +12.9658644,NCBITaxon:59562,http://purl.obolibrary.org/obo/NCBITaxon_59562,none +12.9658644,NCBITaxon:6300,http://purl.obolibrary.org/obo/NCBITaxon_6300,Tylenchina +12.9658644,PR:000001553,http://purl.obolibrary.org/obo/PR_000001553,relaxin-3 receptor 2 +12.9658644,PR:000001601,http://purl.obolibrary.org/obo/PR_000001601,none +12.9658644,PR:000002114,http://purl.obolibrary.org/obo/PR_000002114,voltage-dependent L-type calcium channel subunit alpha-1D +12.9658644,PR:000003447,http://purl.obolibrary.org/obo/PR_000003447,E3 SUMO-protein ligase PIAS4 +12.9658644,PR:000003636,http://purl.obolibrary.org/obo/PR_000003636,"acyl-coenzyme A thioesterase 2, mitochondrial" +12.9658644,PR:000003877,http://purl.obolibrary.org/obo/PR_000003877,adherens junction-associated protein 1 +12.9658644,PR:000003928,http://purl.obolibrary.org/obo/PR_000003928,"delta-1-pyrroline-5-carboxylate dehydrogenase, mitochondrial" +12.9658644,PR:000004131,http://purl.obolibrary.org/obo/PR_000004131,apoptosis inhibitor 5 +12.9658644,PR:000004822,http://purl.obolibrary.org/obo/PR_000004822,peregrin +12.9658644,PR:000004949,http://purl.obolibrary.org/obo/PR_000004949,voltage-dependent L-type calcium channel subunit beta-4 +12.9658644,PR:000005259,http://purl.obolibrary.org/obo/PR_000005259,cyclin-dependent kinase 5 activator 1 +12.9658644,PR:000005684,http://purl.obolibrary.org/obo/PR_000005684,conserved oligomeric Golgi complex subunit 1 +12.9658644,PR:000006018,http://purl.obolibrary.org/obo/PR_000006018,chymotrypsinogen B +12.9658644,PR:000006039,http://purl.obolibrary.org/obo/PR_000006039,cytoplasmic tRNA 2-thiolation protein 2 +12.9658644,PR:000006568,http://purl.obolibrary.org/obo/PR_000006568,"dynein intermediate chain 1, axonemal" +12.9658644,PR:000006759,http://purl.obolibrary.org/obo/PR_000006759,dual specificity protein phosphatase 9 +12.9658644,PR:000006919,http://purl.obolibrary.org/obo/PR_000006919,ephrin-A4 +12.9658644,PR:000007569,http://purl.obolibrary.org/obo/PR_000007569,formin-1 +12.9658644,PR:000007979,http://purl.obolibrary.org/obo/PR_000007979,GTPase IMAP family member 5 +12.9658644,PR:000008316,http://purl.obolibrary.org/obo/PR_000008316,general transcription factor IIF subunit 2 +12.9658644,PR:000008509,http://purl.obolibrary.org/obo/PR_000008509,hemogen +12.9658644,PR:000008902,http://purl.obolibrary.org/obo/PR_000008902,interferon alpha-inducible protein 27 +12.9658644,PR:000009361,http://purl.obolibrary.org/obo/PR_000009361,krueppel-like factor 17 +12.9658644,PR:000009445,http://purl.obolibrary.org/obo/PR_000009445,Kremen protein 1 +12.9658644,PR:000009981,http://purl.obolibrary.org/obo/PR_000009981,lumican +12.9658644,PR:000010180,http://purl.obolibrary.org/obo/PR_000010180,E3 ubiquitin-protein ligase MARCHF6 +12.9658644,PR:000010244,http://purl.obolibrary.org/obo/PR_000010244,germinal-center associated nuclear protein +12.9658644,PR:000010792,http://purl.obolibrary.org/obo/PR_000010792,max dimerization protein 4 +12.9658644,PR:000010924,http://purl.obolibrary.org/obo/PR_000010924,none +12.9658644,PR:000011475,http://purl.obolibrary.org/obo/PR_000011475,NEDD8 ultimate buster 1 +12.9658644,PR:000011583,http://purl.obolibrary.org/obo/PR_000011583,SOSS complex subunit B2 +12.9658644,PR:000012312,http://purl.obolibrary.org/obo/PR_000012312,"POZ-, AT hook-, and zinc finger-containing protein 1" +12.9658644,PR:000012529,http://purl.obolibrary.org/obo/PR_000012529,PDZK1-interacting protein 1 +12.9658644,PR:000012558,http://purl.obolibrary.org/obo/PR_000012558,peroxisome assembly protein 12 +12.9658644,PR:000013573,http://purl.obolibrary.org/obo/PR_000013573,serine/threonine-protein kinase QSK +12.9658644,PR:000013740,http://purl.obolibrary.org/obo/PR_000013740,retinoic acid receptor responder protein 2 +12.9658644,PR:000014267,http://purl.obolibrary.org/obo/PR_000014267,40S ribosomal protein S24 +12.9658644,PR:000014283,http://purl.obolibrary.org/obo/PR_000014283,ribosomal protein S6 kinase alpha-2 +12.9658644,PR:000014503,http://purl.obolibrary.org/obo/PR_000014503,secretogranin-3 +12.9658644,PR:000014913,http://purl.obolibrary.org/obo/PR_000014913,SLAM family member 6 +12.9658644,PR:000015378,http://purl.obolibrary.org/obo/PR_000015378,sorting nexin-3 +12.9658644,PR:000015853,http://purl.obolibrary.org/obo/PR_000015853,supervillin +12.9658644,PR:000016006,http://purl.obolibrary.org/obo/PR_000016006,transforming acidic coiled-coil-containing protein 1 +12.9658644,PR:000016382,http://purl.obolibrary.org/obo/PR_000016382,talin-2 +12.9658644,PR:000016562,http://purl.obolibrary.org/obo/PR_000016562,tumor protein p53-inducible nuclear protein 2 +12.9658644,PR:000016817,http://purl.obolibrary.org/obo/PR_000016817,tubulin beta-2B chain +12.9658644,PR:000016870,http://purl.obolibrary.org/obo/PR_000016870,thioredoxin-like protein 4B +12.9658644,PR:000017147,http://purl.obolibrary.org/obo/PR_000017147,ubiquitin carboxyl-terminal hydrolase 11 +12.9658644,PR:000017211,http://purl.obolibrary.org/obo/PR_000017211,urotensin-2B +12.9658644,PR:000017329,http://purl.obolibrary.org/obo/PR_000017329,vacuolar protein sorting-associated protein 28 +12.9658644,PR:000017339,http://purl.obolibrary.org/obo/PR_000017339,Vam6/Vps39-like protein +12.9658644,PR:000017433,http://purl.obolibrary.org/obo/PR_000017433,serine/threonine-protein kinase WNK3 +12.9658644,PR:000022277,http://purl.obolibrary.org/obo/PR_000022277,none +12.9658644,PR:000022677,http://purl.obolibrary.org/obo/PR_000022677,none +12.9658644,PR:000023147,http://purl.obolibrary.org/obo/PR_000023147,none +12.9658644,PR:000023701,http://purl.obolibrary.org/obo/PR_000023701,none +12.9658644,PR:000026993,http://purl.obolibrary.org/obo/PR_000026993,microtubule-associated protein tau isoform Fetal-tau +12.9658644,PR:000028276,http://purl.obolibrary.org/obo/PR_000028276,none +12.9658644,PR:000029614,http://purl.obolibrary.org/obo/PR_000029614,putative RNA-binding protein Luc7-like 1 +12.9658644,PR:000030732,http://purl.obolibrary.org/obo/PR_000030732,"myosin light chain 1/3, skeletal muscle isoform" +12.9658644,PR:000031159,http://purl.obolibrary.org/obo/PR_000031159,prolyl 3-hydroxylase OGFOD1 +12.9658644,PR:000031211,http://purl.obolibrary.org/obo/PR_000031211,leucine-rich repeats and immunoglobulin-like domains protein 2 +12.9658644,PR:000031687,http://purl.obolibrary.org/obo/PR_000031687,C->U-editing enzyme APOBEC-2 +12.9658644,PR:000031856,http://purl.obolibrary.org/obo/PR_000031856,IQ calmodulin-binding motif-containing protein 1 +12.9658644,PR:000050027,http://purl.obolibrary.org/obo/PR_000050027,F-actin-capping protein subunit alpha +12.9658644,PR:O13961,http://purl.obolibrary.org/obo/PR_O13961,none +12.9658644,PR:P00549,http://purl.obolibrary.org/obo/PR_P00549,none +12.9658644,PR:P32644,http://purl.obolibrary.org/obo/PR_P32644,none +12.9658644,PR:P38182,http://purl.obolibrary.org/obo/PR_P38182,none +12.9658644,PR:P46614,http://purl.obolibrary.org/obo/PR_P46614,none +12.9658644,PR:P48456,http://purl.obolibrary.org/obo/PR_P48456,none +12.9658644,PR:P68350,http://purl.obolibrary.org/obo/PR_P68350,none +12.9658644,PR:Q09127,http://purl.obolibrary.org/obo/PR_Q09127,none +12.9658644,PR:Q54N00,http://purl.obolibrary.org/obo/PR_Q54N00,none +12.9658644,PR:Q5A446,http://purl.obolibrary.org/obo/PR_Q5A446,none +12.9658644,PR:Q8RWW1,http://purl.obolibrary.org/obo/PR_Q8RWW1,none +12.9658644,PR:Q9SAD7,http://purl.obolibrary.org/obo/PR_Q9SAD7,none +12.9658644,PR:Q9SJJ3,http://purl.obolibrary.org/obo/PR_Q9SJJ3,none +12.9658644,SO:0000183,http://purl.obolibrary.org/obo/SO_0000183,non_transcribed_region +12.9658644,SO:0001209,http://purl.obolibrary.org/obo/SO_0001209,three_prime_EST +12.9658644,SO:0001774,http://purl.obolibrary.org/obo/SO_0001774,quantitative_variant +12.9658644,UBERON:0000201,http://purl.obolibrary.org/obo/UBERON_0000201,endothelial blood brain barrier +12.9658644,UBERON:0002400,http://purl.obolibrary.org/obo/UBERON_0002400,parietal pleura +12.9658644,UBERON:0002447,http://purl.obolibrary.org/obo/UBERON_0002447,palatine gland +12.9658644,UBERON:0002834,http://purl.obolibrary.org/obo/UBERON_0002834,cervical dorsal root ganglion +12.9658644,UBERON:0004067,http://purl.obolibrary.org/obo/UBERON_0004067,lateral nasal prominence +12.9658644,UBERON:0005594,http://purl.obolibrary.org/obo/UBERON_0005594,head somite +12.9658644,UBERON:0006330,http://purl.obolibrary.org/obo/UBERON_0006330,anterior lingual gland +12.9658644,UBERON:0006788,http://purl.obolibrary.org/obo/UBERON_0006788,middle gray layer of superior colliculus +12.9658644,UBERON:0010397,http://purl.obolibrary.org/obo/UBERON_0010397,efferent lymphatic vessel +12.9658644,UBERON:0010725,http://purl.obolibrary.org/obo/UBERON_0010725,accessory navicular bone +12.9658644,UBERON:0011190,http://purl.obolibrary.org/obo/UBERON_0011190,lunule of nail +12.9658644,UBERON:0011954,http://purl.obolibrary.org/obo/UBERON_0011954,stomach non-glandular region +12.9658644,UBERON:0012364,http://purl.obolibrary.org/obo/UBERON_0012364,colloid of thyroid follicle +12.9658644,UBERON:0013706,http://purl.obolibrary.org/obo/UBERON_0013706,bone spine +12.9658644,UBERON:0014642,http://purl.obolibrary.org/obo/UBERON_0014642,vestibulocerebellum +12.9658644,UBERON:2005272,http://purl.obolibrary.org/obo/UBERON_2005272,immature gonad +12.9845566,CHEBI:15347,http://purl.obolibrary.org/obo/CHEBI_15347,acetone +12.9845566,CHEBI:23213,http://purl.obolibrary.org/obo/CHEBI_23213,choline ester +12.9845566,CHEBI:24318,http://purl.obolibrary.org/obo/CHEBI_24318,glutamine family amino acid +12.9845566,CHEBI:25627,http://purl.obolibrary.org/obo/CHEBI_25627,octadecadienoic acid +12.9845566,CHEBI:27093,http://purl.obolibrary.org/obo/CHEBI_27093,tricarboxylic acid +12.9845566,CHEBI:33338,http://purl.obolibrary.org/obo/CHEBI_33338,aryl group +12.9845566,CHEBI:35507,http://purl.obolibrary.org/obo/CHEBI_35507,natural product fundamental parent +12.9845566,CHEBI:64645,http://purl.obolibrary.org/obo/CHEBI_64645,amyloid-beta +12.9845566,CHEBI:67208,http://purl.obolibrary.org/obo/CHEBI_67208,dsRNA +12.9845566,CHEBI:76969,http://purl.obolibrary.org/obo/CHEBI_76969,bacterial metabolite +12.9845566,CHEBI:81880,http://purl.obolibrary.org/obo/CHEBI_81880,Calcium arsenate +12.9845566,CHEBI:88061,http://purl.obolibrary.org/obo/CHEBI_88061,polyamine +12.9845566,CL:0000130,http://purl.obolibrary.org/obo/CL_0000130,neuron associated cell (sensu Nematoda and Protostomia) +12.9845566,CL:0000143,http://purl.obolibrary.org/obo/CL_0000143,guidepost cell +12.9845566,CL:0000612,http://purl.obolibrary.org/obo/CL_0000612,eosinophilic myelocyte +12.9845566,CL:0002329,http://purl.obolibrary.org/obo/CL_0002329,basal epithelial cell of tracheobronchial tree +12.9845566,CL:0002361,http://purl.obolibrary.org/obo/CL_0002361,primitive erythroid progenitor +12.9845566,CL:0002638,http://purl.obolibrary.org/obo/CL_0002638,bronchioalveolar stem cell +12.9845566,CL:1000349,http://purl.obolibrary.org/obo/CL_1000349,basal cell of epithelium of bronchus +12.9845566,CL:1000350,http://purl.obolibrary.org/obo/CL_1000350,basal cell of epithelium of terminal bronchiole +12.9845566,CL:1000351,http://purl.obolibrary.org/obo/CL_1000351,basal cell of epithelium of respiratory bronchiole +12.9845566,CL:1000352,http://purl.obolibrary.org/obo/CL_1000352,basal cell of epithelium of lobular bronchiole +12.9845566,CL:1001566,http://purl.obolibrary.org/obo/CL_1001566,bronchioalveolar stem cells +12.9845566,DRUGBANK:DB01800,http://purl.obolibrary.org/obo/DRUGBANK_DB01800,none +12.9845566,DRUGBANK:DB02743,http://purl.obolibrary.org/obo/DRUGBANK_DB02743,none +12.9845566,DRUGBANK:DB03991,http://purl.obolibrary.org/obo/DRUGBANK_DB03991,none +12.9845566,DRUGBANK:DB04337,http://purl.obolibrary.org/obo/DRUGBANK_DB04337,none +12.9845566,DRUGBANK:DB04897,http://purl.obolibrary.org/obo/DRUGBANK_DB04897,none +12.9845566,DRUGBANK:DB05549,http://purl.obolibrary.org/obo/DRUGBANK_DB05549,none +12.9845566,DRUGBANK:DB06745,http://purl.obolibrary.org/obo/DRUGBANK_DB06745,none +12.9845566,DRUGBANK:DB08795,http://purl.obolibrary.org/obo/DRUGBANK_DB08795,none +12.9845566,DRUGBANK:DB09077,http://purl.obolibrary.org/obo/DRUGBANK_DB09077,none +12.9845566,DRUGBANK:DB11419,http://purl.obolibrary.org/obo/DRUGBANK_DB11419,none +12.9845566,DRUGBANK:DB11528,http://purl.obolibrary.org/obo/DRUGBANK_DB11528,none +12.9845566,DRUGBANK:DB11746,http://purl.obolibrary.org/obo/DRUGBANK_DB11746,none +12.9845566,DRUGBANK:DB11759,http://purl.obolibrary.org/obo/DRUGBANK_DB11759,none +12.9845566,DRUGBANK:DB11782,http://purl.obolibrary.org/obo/DRUGBANK_DB11782,none +12.9845566,DRUGBANK:DB12146,http://purl.obolibrary.org/obo/DRUGBANK_DB12146,none +12.9845566,DRUGBANK:DB12338,http://purl.obolibrary.org/obo/DRUGBANK_DB12338,none +12.9845566,DRUGBANK:DB12412,http://purl.obolibrary.org/obo/DRUGBANK_DB12412,none +12.9845566,DRUGBANK:DB12525,http://purl.obolibrary.org/obo/DRUGBANK_DB12525,none +12.9845566,DRUGBANK:DB12764,http://purl.obolibrary.org/obo/DRUGBANK_DB12764,none +12.9845566,DRUGBANK:DB12916,http://purl.obolibrary.org/obo/DRUGBANK_DB12916,none +12.9845566,DRUGBANK:DB13003,http://purl.obolibrary.org/obo/DRUGBANK_DB13003,none +12.9845566,DRUGBANK:DB13646,http://purl.obolibrary.org/obo/DRUGBANK_DB13646,none +12.9845566,DRUGBANK:DB14483,http://purl.obolibrary.org/obo/DRUGBANK_DB14483,none +12.9845566,DRUGBANK:DB15535,http://purl.obolibrary.org/obo/DRUGBANK_DB15535,none +12.9845566,DRUGBANK:DB15776,http://purl.obolibrary.org/obo/DRUGBANK_DB15776,none +12.9845566,GO:0001878,http://purl.obolibrary.org/obo/GO_0001878,response to yeast +12.9845566,GO:0003962,http://purl.obolibrary.org/obo/GO_0003962,cystathionine gamma-synthase activity +12.9845566,GO:0004048,http://purl.obolibrary.org/obo/GO_0004048,anthranilate phosphoribosyltransferase activity +12.9845566,GO:0004850,http://purl.obolibrary.org/obo/GO_0004850,uridine phosphorylase activity +12.9845566,GO:0009107,http://purl.obolibrary.org/obo/GO_0009107,lipoate biosynthetic process +12.9845566,GO:0009162,http://purl.obolibrary.org/obo/GO_0009162,deoxyribonucleoside monophosphate metabolic process +12.9845566,GO:0009173,http://purl.obolibrary.org/obo/GO_0009173,pyrimidine ribonucleoside monophosphate metabolic process +12.9845566,GO:0009221,http://purl.obolibrary.org/obo/GO_0009221,pyrimidine deoxyribonucleotide biosynthetic process +12.9845566,GO:0010099,http://purl.obolibrary.org/obo/GO_0010099,regulation of photomorphogenesis +12.9845566,GO:0010453,http://purl.obolibrary.org/obo/GO_0010453,regulation of cell fate commitment +12.9845566,GO:0015030,http://purl.obolibrary.org/obo/GO_0015030,Cajal body +12.9845566,GO:0015940,http://purl.obolibrary.org/obo/GO_0015940,pantothenate biosynthetic process +12.9845566,GO:0018991,http://purl.obolibrary.org/obo/GO_0018991,oviposition +12.9845566,GO:0019300,http://purl.obolibrary.org/obo/GO_0019300,rhamnose biosynthetic process +12.9845566,GO:0019433,http://purl.obolibrary.org/obo/GO_0019433,triglyceride catabolic process +12.9845566,GO:0019747,http://purl.obolibrary.org/obo/GO_0019747,regulation of isoprenoid metabolic process +12.9845566,GO:0019871,http://purl.obolibrary.org/obo/GO_0019871,sodium channel inhibitor activity +12.9845566,GO:0030343,http://purl.obolibrary.org/obo/GO_0030343,vitamin D3 25-hydroxylase activity +12.9845566,GO:0031901,http://purl.obolibrary.org/obo/GO_0031901,early endosome membrane +12.9845566,GO:0032677,http://purl.obolibrary.org/obo/GO_0032677,regulation of interleukin-8 production +12.9845566,GO:0033049,http://purl.obolibrary.org/obo/GO_0033049,clavulanic acid metabolic process +12.9845566,GO:0033050,http://purl.obolibrary.org/obo/GO_0033050,clavulanic acid biosynthetic process +12.9845566,GO:0035713,http://purl.obolibrary.org/obo/GO_0035713,response to nitrogen dioxide +12.9845566,GO:0036065,http://purl.obolibrary.org/obo/GO_0036065,fucosylation +12.9845566,GO:0042035,http://purl.obolibrary.org/obo/GO_0042035,none +12.9845566,GO:0045428,http://purl.obolibrary.org/obo/GO_0045428,regulation of nitric oxide biosynthetic process +12.9845566,GO:0045495,http://purl.obolibrary.org/obo/GO_0045495,pole plasm +12.9845566,GO:0046405,http://purl.obolibrary.org/obo/GO_0046405,glycerol dehydratase activity +12.9845566,GO:0046464,http://purl.obolibrary.org/obo/GO_0046464,acylglycerol catabolic process +12.9845566,GO:0046466,http://purl.obolibrary.org/obo/GO_0046466,membrane lipid catabolic process +12.9845566,GO:0047639,http://purl.obolibrary.org/obo/GO_0047639,alcohol oxidase activity +12.9845566,GO:0048768,http://purl.obolibrary.org/obo/GO_0048768,root hair cell tip growth +12.9845566,GO:0050306,http://purl.obolibrary.org/obo/GO_0050306,sucrose 1F-fructosyltransferase activity +12.9845566,GO:0050714,http://purl.obolibrary.org/obo/GO_0050714,positive regulation of protein secretion +12.9845566,GO:0051156,http://purl.obolibrary.org/obo/GO_0051156,glucose 6-phosphate metabolic process +12.9845566,GO:0060038,http://purl.obolibrary.org/obo/GO_0060038,cardiac muscle cell proliferation +12.9845566,GO:0060591,http://purl.obolibrary.org/obo/GO_0060591,chondroblast differentiation +12.9845566,GO:0070086,http://purl.obolibrary.org/obo/GO_0070086,ubiquitin-dependent endocytosis +12.9845566,GO:0070123,http://purl.obolibrary.org/obo/GO_0070123,"transforming growth factor beta receptor activity, type III" +12.9845566,GO:0071139,http://purl.obolibrary.org/obo/GO_0071139,resolution of recombination intermediates +12.9845566,GO:0080164,http://purl.obolibrary.org/obo/GO_0080164,regulation of nitric oxide metabolic process +12.9845566,GO:0099563,http://purl.obolibrary.org/obo/GO_0099563,modification of synaptic structure +12.9845566,GO:1900186,http://purl.obolibrary.org/obo/GO_1900186,negative regulation of clathrin-dependent endocytosis +12.9845566,GO:1901554,http://purl.obolibrary.org/obo/GO_1901554,response to paracetamol +12.9845566,GO:1905393,http://purl.obolibrary.org/obo/GO_1905393,plant organ formation +12.9845566,HP:0001263,http://purl.obolibrary.org/obo/HP_0001263,Global developmental delay +12.9845566,MONDO:0000643,http://purl.obolibrary.org/obo/MONDO_0000643,vulvar benign neoplasm +12.9845566,MONDO:0001419,http://purl.obolibrary.org/obo/MONDO_0001419,trachea squamous cell carcinoma +12.9845566,MONDO:0002282,http://purl.obolibrary.org/obo/MONDO_0002282,West Nile fever +12.9845566,MONDO:0002549,http://purl.obolibrary.org/obo/MONDO_0002549,schwannoma of twelfth cranial nerve +12.9845566,MONDO:0002861,http://purl.obolibrary.org/obo/MONDO_0002861,testis sarcoma +12.9845566,MONDO:0002948,http://purl.obolibrary.org/obo/MONDO_0002948,skin fibroepithelial basal cell carcinoma +12.9845566,MONDO:0003128,http://purl.obolibrary.org/obo/MONDO_0003128,classic pulmonary blastoma +12.9845566,MONDO:0003272,http://purl.obolibrary.org/obo/MONDO_0003272,mixed epithelial stromal tumor +12.9845566,MONDO:0003918,http://purl.obolibrary.org/obo/MONDO_0003918,angiomatous meningioma +12.9845566,MONDO:0004177,http://purl.obolibrary.org/obo/MONDO_0004177,benign urethral neoplasm +12.9845566,MONDO:0006222,http://purl.obolibrary.org/obo/MONDO_0006222,gastric choriocarcinoma +12.9845566,MONDO:0007836,http://purl.obolibrary.org/obo/MONDO_0007836,IVIC syndrome +12.9845566,MONDO:0010031,http://purl.obolibrary.org/obo/MONDO_0010031,Sjogren-Larsson syndrome +12.9845566,MONDO:0010708,http://purl.obolibrary.org/obo/MONDO_0010708,Pallister-W syndrome +12.9845566,MONDO:0013333,http://purl.obolibrary.org/obo/MONDO_0013333,odontoid hypoplasia +12.9845566,MONDO:0015696,http://purl.obolibrary.org/obo/MONDO_0015696,Good syndrome +12.9845566,MONDO:0016280,http://purl.obolibrary.org/obo/MONDO_0016280,sarcoma of cervix uteri +12.9845566,MONDO:0016915,http://purl.obolibrary.org/obo/MONDO_0016915,partial deletion of the long arm of chromosome 17 +12.9845566,MONDO:0017087,http://purl.obolibrary.org/obo/MONDO_0017087,neurenteric cyst +12.9845566,MONDO:0017288,http://purl.obolibrary.org/obo/MONDO_0017288,DICER1 syndrome +12.9845566,MONDO:0018870,http://purl.obolibrary.org/obo/MONDO_0018870,arterial calcification of infancy +12.9845566,MONDO:0018893,http://purl.obolibrary.org/obo/MONDO_0018893,Cobb syndrome +12.9845566,MONDO:0019007,http://purl.obolibrary.org/obo/MONDO_0019007,vaginal atresia +12.9845566,MONDO:0019662,http://purl.obolibrary.org/obo/MONDO_0019662,"short rib-polydactyly syndrome, Majewski type" +12.9845566,MONDO:0019929,http://purl.obolibrary.org/obo/MONDO_0019929,"49,XXXXY syndrome" +12.9845566,MONDO:0020662,http://purl.obolibrary.org/obo/MONDO_0020662,borderline ovarian serous tumor +12.9845566,MONDO:0023089,http://purl.obolibrary.org/obo/MONDO_0023089,erythroplakia +12.9845566,MONDO:0044879,http://purl.obolibrary.org/obo/MONDO_0044879,pancreatic mucinous-cystic neoplasm +12.9845566,MOP:0000630,http://purl.obolibrary.org/obo/MOP_0000630,none +12.9845566,NCBITaxon:104766,http://purl.obolibrary.org/obo/NCBITaxon_104766,none +12.9845566,NCBITaxon:10510,http://purl.obolibrary.org/obo/NCBITaxon_10510,none +12.9845566,NCBITaxon:12291,http://purl.obolibrary.org/obo/NCBITaxon_12291,none +12.9845566,NCBITaxon:129950,http://purl.obolibrary.org/obo/NCBITaxon_129950,none +12.9845566,NCBITaxon:135625,http://purl.obolibrary.org/obo/NCBITaxon_135625,Pasteurellales +12.9845566,NCBITaxon:167159,http://purl.obolibrary.org/obo/NCBITaxon_167159,none +12.9845566,NCBITaxon:16736,http://purl.obolibrary.org/obo/NCBITaxon_16736,none +12.9845566,NCBITaxon:216293,http://purl.obolibrary.org/obo/NCBITaxon_216293,none +12.9845566,NCBITaxon:712,http://purl.obolibrary.org/obo/NCBITaxon_712,Pasteurellaceae +12.9845566,NCBITaxon:8100,http://purl.obolibrary.org/obo/NCBITaxon_8100,none +12.9845566,NCBITaxon:9791,http://purl.obolibrary.org/obo/NCBITaxon_9791,none +12.9845566,PR:000001894,http://purl.obolibrary.org/obo/PR_000001894,natural cytotoxicity triggering receptor 2 +12.9845566,PR:000003890,http://purl.obolibrary.org/obo/PR_000003890,A-kinase anchor protein 3 +12.9845566,PR:000003919,http://purl.obolibrary.org/obo/PR_000003919,delta-1-pyrroline-5-carboxylate synthase +12.9845566,PR:000004156,http://purl.obolibrary.org/obo/PR_000004156,apolipoprotein F +12.9845566,PR:000005017,http://purl.obolibrary.org/obo/PR_000005017,calpain-5 +12.9845566,PR:000005440,http://purl.obolibrary.org/obo/PR_000005440,charged multivesicular body protein 6 +12.9845566,PR:000005670,http://purl.obolibrary.org/obo/PR_000005670,contactin-5 +12.9845566,PR:000005830,http://purl.obolibrary.org/obo/PR_000005830,cleavage and polyadenylation specificity factor subunit 3 +12.9845566,PR:000006264,http://purl.obolibrary.org/obo/PR_000006264,dapper homolog 2 +12.9845566,PR:000006378,http://purl.obolibrary.org/obo/PR_000006378,differentially expressed in FDCP 6 +12.9845566,PR:000006819,http://purl.obolibrary.org/obo/PR_000006819,none +12.9845566,PR:000006908,http://purl.obolibrary.org/obo/PR_000006908,elongation factor 1-gamma +12.9845566,PR:000007285,http://purl.obolibrary.org/obo/PR_000007285,none +12.9845566,PR:000007501,http://purl.obolibrary.org/obo/PR_000007501,fibroblast growth factor-binding protein 1 +12.9845566,PR:000007508,http://purl.obolibrary.org/obo/PR_000007508,fibrinogen-like protein 1 +12.9845566,PR:000007660,http://purl.obolibrary.org/obo/PR_000007660,protein FRG1 +12.9845566,PR:000007769,http://purl.obolibrary.org/obo/PR_000007769,gamma-aminobutyric acid receptor subunit alpha-4 +12.9845566,PR:000008090,http://purl.obolibrary.org/obo/PR_000008090,guanine nucleotide-binding protein G(q) subunit alpha +12.9845566,PR:000009086,http://purl.obolibrary.org/obo/PR_000009086,importin-13 +12.9845566,PR:000009265,http://purl.obolibrary.org/obo/PR_000009265,potassium channel subfamily K member 4 +12.9845566,PR:000009284,http://purl.obolibrary.org/obo/PR_000009284,kinase D-interacting substrate of 220 kDa +12.9845566,PR:000009410,http://purl.obolibrary.org/obo/PR_000009410,kallikrein-13 +12.9845566,PR:000009435,http://purl.obolibrary.org/obo/PR_000009435,importin subunit alpha-3 +12.9845566,PR:000009673,http://purl.obolibrary.org/obo/PR_000009673,La-related protein 7 +12.9845566,PR:000010188,http://purl.obolibrary.org/obo/PR_000010188,MAP/microtubule affinity-regulating kinase 3 +12.9845566,PR:000010487,http://purl.obolibrary.org/obo/PR_000010487,matrix metalloproteinase-28 +12.9845566,PR:000011097,http://purl.obolibrary.org/obo/PR_000011097,"NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial" +12.9845566,PR:000011136,http://purl.obolibrary.org/obo/PR_000011136,nasal embryonic luteinizing hormone-releasing hormone factor +12.9845566,PR:000011213,http://purl.obolibrary.org/obo/PR_000011213,ninjurin-1 +12.9845566,PR:000012506,http://purl.obolibrary.org/obo/PR_000012506,"[pyruvate dehydrogenase (acetyl-transferring)] kinase isozyme 3, mitochondrial" +12.9845566,PR:000012576,http://purl.obolibrary.org/obo/PR_000012576,prefoldin subunit 6 +12.9845566,PR:000012970,http://purl.obolibrary.org/obo/PR_000012970,DNA polymerase epsilon subunit 2 +12.9845566,PR:000013025,http://purl.obolibrary.org/obo/PR_000013025,ribonuclease P protein subunit p29 +12.9845566,PR:000013188,http://purl.obolibrary.org/obo/PR_000013188,PR domain zinc finger protein 5 +12.9845566,PR:000013203,http://purl.obolibrary.org/obo/PR_000013203,"phosphatidylinositol 3,4,5-trisphosphate-dependent Rac exchanger 2 protein" +12.9845566,PR:000013310,http://purl.obolibrary.org/obo/PR_000013310,proline-rich protein 9 +12.9845566,PR:000013559,http://purl.obolibrary.org/obo/PR_000013559,tyrosine-protein phosphatase non-receptor type 20 +12.9845566,PR:000013718,http://purl.obolibrary.org/obo/PR_000013718,Ran guanine nucleotide release factor +12.9845566,PR:000013805,http://purl.obolibrary.org/obo/PR_000013805,RNA-binding protein 4B +12.9845566,PR:000013830,http://purl.obolibrary.org/obo/PR_000013830,calcipressin-2 +12.9845566,PR:000014324,http://purl.obolibrary.org/obo/PR_000014324,radial spoke head 1 +12.9845566,PR:000014473,http://purl.obolibrary.org/obo/PR_000014473,myotubularin-related protein 5 +12.9845566,PR:000014582,http://purl.obolibrary.org/obo/PR_000014582,protein transport protein Sec16B +12.9845566,PR:000015060,http://purl.obolibrary.org/obo/PR_000015060,"solute carrier family 2, facilitated glucose transporter member 11" +12.9845566,PR:000015286,http://purl.obolibrary.org/obo/PR_000015286,protein SMG7 +12.9845566,PR:000015421,http://purl.obolibrary.org/obo/PR_000015421,transcription factor SOX-13 +12.9845566,PR:000015529,http://purl.obolibrary.org/obo/PR_000015529,spindlin-2B +12.9845566,PR:000016147,http://purl.obolibrary.org/obo/PR_000016147,T-box transcription factor TBX19 +12.9845566,PR:000016208,http://purl.obolibrary.org/obo/PR_000016208,dynein light chain Tctex-type protein 2 +12.9845566,PR:000016483,http://purl.obolibrary.org/obo/PR_000016483,tumor necrosis factor receptor superfamily member 19 +12.9845566,PR:000016725,http://purl.obolibrary.org/obo/PR_000016725,teashirt homolog 1 +12.9845566,PR:000016828,http://purl.obolibrary.org/obo/PR_000016828,gamma-tubulin complex component 3 +12.9845566,PR:000016926,http://purl.obolibrary.org/obo/PR_000016926,none +12.9845566,PR:000017025,http://purl.obolibrary.org/obo/PR_000017025,ubiquitin carboxyl-terminal hydrolase isozyme L3 +12.9845566,PR:000017047,http://purl.obolibrary.org/obo/PR_000017047,UTP--glucose-1-phosphate uridylyltransferase +12.9845566,PR:000017352,http://purl.obolibrary.org/obo/PR_000017352,V-set and immunoglobulin domain-containing protein 4 +12.9845566,PR:000017805,http://purl.obolibrary.org/obo/PR_000017805,zinc finger protein 282 +12.9845566,PR:000017858,http://purl.obolibrary.org/obo/PR_000017858,zinc finger protein 384 +12.9845566,PR:000022035,http://purl.obolibrary.org/obo/PR_000022035,none +12.9845566,PR:000022339,http://purl.obolibrary.org/obo/PR_000022339,none +12.9845566,PR:000022928,http://purl.obolibrary.org/obo/PR_000022928,none +12.9845566,PR:000023025,http://purl.obolibrary.org/obo/PR_000023025,none +12.9845566,PR:000023513,http://purl.obolibrary.org/obo/PR_000023513,none +12.9845566,PR:000024036,http://purl.obolibrary.org/obo/PR_000024036,none +12.9845566,PR:000026296,http://purl.obolibrary.org/obo/PR_000026296,C-type lectin domain family 9 member A +12.9845566,PR:000029423,http://purl.obolibrary.org/obo/PR_000029423,DnaJ homolog subfamily B member 4 +12.9845566,PR:000032344,http://purl.obolibrary.org/obo/PR_000032344,putative Polycomb group protein ASXL2 +12.9845566,PR:000032766,http://purl.obolibrary.org/obo/PR_000032766,Schlafen family member 11 +12.9845566,PR:000033303,http://purl.obolibrary.org/obo/PR_000033303,none +12.9845566,PR:A2AKX3,http://purl.obolibrary.org/obo/PR_A2AKX3,none +12.9845566,PR:O23461,http://purl.obolibrary.org/obo/PR_O23461,none +12.9845566,PR:O74968,http://purl.obolibrary.org/obo/PR_O74968,none +12.9845566,PR:O82171,http://purl.obolibrary.org/obo/PR_O82171,none +12.9845566,PR:P00856,http://purl.obolibrary.org/obo/PR_P00856,none +12.9845566,PR:P01149,http://purl.obolibrary.org/obo/PR_P01149,none +12.9845566,PR:P02401,http://purl.obolibrary.org/obo/PR_P02401,none +12.9845566,PR:P0C0W1,http://purl.obolibrary.org/obo/PR_P0C0W1,none +12.9845566,PR:P38826,http://purl.obolibrary.org/obo/PR_P38826,none +12.9845566,PR:P39016,http://purl.obolibrary.org/obo/PR_P39016,none +12.9845566,PR:P52293,http://purl.obolibrary.org/obo/PR_P52293,none +12.9845566,PR:Q03125,http://purl.obolibrary.org/obo/PR_Q03125,none +12.9845566,PR:Q43387,http://purl.obolibrary.org/obo/PR_Q43387,none +12.9845566,PR:Q54CK6,http://purl.obolibrary.org/obo/PR_Q54CK6,none +12.9845566,PR:Q54S20,http://purl.obolibrary.org/obo/PR_Q54S20,none +12.9845566,PR:Q9FMF5,http://purl.obolibrary.org/obo/PR_Q9FMF5,none +12.9845566,PR:Q9LHE4,http://purl.obolibrary.org/obo/PR_Q9LHE4,none +12.9845566,PR:Q9LXD6,http://purl.obolibrary.org/obo/PR_Q9LXD6,none +12.9845566,PR:Q9S7D9,http://purl.obolibrary.org/obo/PR_Q9S7D9,none +12.9845566,SO:0001472,http://purl.obolibrary.org/obo/SO_0001472,primer_match +12.9845566,SO:0001641,http://purl.obolibrary.org/obo/SO_0001641,lincRNA_gene +12.9845566,UBERON:0000051,http://purl.obolibrary.org/obo/UBERON_0000051,fornix of vagina +12.9845566,UBERON:0001110,http://purl.obolibrary.org/obo/UBERON_0001110,thyrohyoid muscle +12.9845566,UBERON:0001445,http://purl.obolibrary.org/obo/UBERON_0001445,skeleton of pes +12.9845566,UBERON:0003331,http://purl.obolibrary.org/obo/UBERON_0003331,submucosa of colon +12.9845566,UBERON:0003653,http://purl.obolibrary.org/obo/UBERON_0003653,metatarsal bone of digit 4 +12.9845566,UBERON:0004470,http://purl.obolibrary.org/obo/UBERON_0004470,musculature of pelvic girdle +12.9845566,UBERON:0004623,http://purl.obolibrary.org/obo/UBERON_0004623,sacral vertebra 2 +12.9845566,UBERON:0007145,http://purl.obolibrary.org/obo/UBERON_0007145,dome of diaphragm +12.9845566,UBERON:0007715,http://purl.obolibrary.org/obo/UBERON_0007715,thoracic subsegment of spinal cord +12.9845566,UBERON:0008911,http://purl.obolibrary.org/obo/UBERON_0008911,chondral bone +12.9845566,UBERON:0011775,http://purl.obolibrary.org/obo/UBERON_0011775,vagus nerve nucleus +12.9845566,UBERON:0015040,http://purl.obolibrary.org/obo/UBERON_0015040,pedal digit 4 metatarsal endochondral element +12.9845566,UBERON:0015453,http://purl.obolibrary.org/obo/UBERON_0015453,subcutaneous lymph node +12.9845566,UBERON:0016484,http://purl.obolibrary.org/obo/UBERON_0016484,subgingival dental plaque +12.9845566,UBERON:0016545,http://purl.obolibrary.org/obo/UBERON_0016545,pharyngeal ectoderm +13.0036048,CHEBI:15698,http://purl.obolibrary.org/obo/CHEBI_15698,2'-deoxycytidine +13.0036048,CHEBI:22925,http://purl.obolibrary.org/obo/CHEBI_22925,bromide salt +13.0036048,CHEBI:24586,http://purl.obolibrary.org/obo/CHEBI_24586,hexosamine +13.0036048,CHEBI:32483,http://purl.obolibrary.org/obo/CHEBI_32483,glutamic acid residue +13.0036048,CHEBI:33251,http://purl.obolibrary.org/obo/CHEBI_33251,monoatomic hydrogen +13.0036048,CHEBI:35313,http://purl.obolibrary.org/obo/CHEBI_35313,hexoside +13.0036048,CHEBI:36709,http://purl.obolibrary.org/obo/CHEBI_36709,aminoquinoline +13.0036048,CHEBI:46792,http://purl.obolibrary.org/obo/CHEBI_46792,hydroxypolyether +13.0036048,CHEBI:51285,http://purl.obolibrary.org/obo/CHEBI_51285,acenoquinone +13.0036048,CHEBI:73618,http://purl.obolibrary.org/obo/CHEBI_73618,spectrophotometric reagent +13.0036048,CL:0000265,http://purl.obolibrary.org/obo/CL_0000265,none +13.0036048,CL:0000658,http://purl.obolibrary.org/obo/CL_0000658,cuticle secreting cell +13.0036048,CL:0000807,http://purl.obolibrary.org/obo/CL_0000807,DN3 thymocyte +13.0036048,CL:0000954,http://purl.obolibrary.org/obo/CL_0000954,small pre-B-II cell +13.0036048,CL:0007020,http://purl.obolibrary.org/obo/CL_0007020,bottle cell +13.0036048,CL:0011006,http://purl.obolibrary.org/obo/CL_0011006,Lugaro cell +13.0036048,DRUGBANK:DB03360,http://purl.obolibrary.org/obo/DRUGBANK_DB03360,none +13.0036048,DRUGBANK:DB03774,http://purl.obolibrary.org/obo/DRUGBANK_DB03774,none +13.0036048,DRUGBANK:DB03943,http://purl.obolibrary.org/obo/DRUGBANK_DB03943,none +13.0036048,DRUGBANK:DB04049,http://purl.obolibrary.org/obo/DRUGBANK_DB04049,none +13.0036048,DRUGBANK:DB06600,http://purl.obolibrary.org/obo/DRUGBANK_DB06600,none +13.0036048,DRUGBANK:DB06634,http://purl.obolibrary.org/obo/DRUGBANK_DB06634,none +13.0036048,DRUGBANK:DB06680,http://purl.obolibrary.org/obo/DRUGBANK_DB06680,none +13.0036048,DRUGBANK:DB09244,http://purl.obolibrary.org/obo/DRUGBANK_DB09244,none +13.0036048,DRUGBANK:DB12060,http://purl.obolibrary.org/obo/DRUGBANK_DB12060,none +13.0036048,DRUGBANK:DB12185,http://purl.obolibrary.org/obo/DRUGBANK_DB12185,none +13.0036048,DRUGBANK:DB12614,http://purl.obolibrary.org/obo/DRUGBANK_DB12614,none +13.0036048,DRUGBANK:DB12685,http://purl.obolibrary.org/obo/DRUGBANK_DB12685,none +13.0036048,DRUGBANK:DB12739,http://purl.obolibrary.org/obo/DRUGBANK_DB12739,none +13.0036048,DRUGBANK:DB13283,http://purl.obolibrary.org/obo/DRUGBANK_DB13283,none +13.0036048,DRUGBANK:DB13705,http://purl.obolibrary.org/obo/DRUGBANK_DB13705,none +13.0036048,DRUGBANK:DB13723,http://purl.obolibrary.org/obo/DRUGBANK_DB13723,none +13.0036048,DRUGBANK:DB14723,http://purl.obolibrary.org/obo/DRUGBANK_DB14723,none +13.0036048,GO:0001886,http://purl.obolibrary.org/obo/GO_0001886,endothelial cell morphogenesis +13.0036048,GO:0002066,http://purl.obolibrary.org/obo/GO_0002066,columnar/cuboidal epithelial cell development +13.0036048,GO:0002384,http://purl.obolibrary.org/obo/GO_0002384,hepatic immune response +13.0036048,GO:0006105,http://purl.obolibrary.org/obo/GO_0006105,succinate metabolic process +13.0036048,GO:0008476,http://purl.obolibrary.org/obo/GO_0008476,protein-tyrosine sulfotransferase activity +13.0036048,GO:0008706,http://purl.obolibrary.org/obo/GO_0008706,6-phospho-beta-glucosidase activity +13.0036048,GO:0009643,http://purl.obolibrary.org/obo/GO_0009643,photosynthetic acclimation +13.0036048,GO:0010632,http://purl.obolibrary.org/obo/GO_0010632,regulation of epithelial cell migration +13.0036048,GO:0015700,http://purl.obolibrary.org/obo/GO_0015700,arsenite transport +13.0036048,GO:0016898,http://purl.obolibrary.org/obo/GO_0016898,"oxidoreductase activity, acting on the CH-OH group of donors, cytochrome as acceptor" +13.0036048,GO:0016979,http://purl.obolibrary.org/obo/GO_0016979,lipoate-protein ligase activity +13.0036048,GO:0018979,http://purl.obolibrary.org/obo/GO_0018979,trichloroethylene metabolic process +13.0036048,GO:0021626,http://purl.obolibrary.org/obo/GO_0021626,central nervous system maturation +13.0036048,GO:0030204,http://purl.obolibrary.org/obo/GO_0030204,chondroitin sulfate metabolic process +13.0036048,GO:0030210,http://purl.obolibrary.org/obo/GO_0030210,heparin biosynthetic process +13.0036048,GO:0032045,http://purl.obolibrary.org/obo/GO_0032045,guanyl-nucleotide exchange factor complex +13.0036048,GO:0032865,http://purl.obolibrary.org/obo/GO_0032865,ERMES complex +13.0036048,GO:0033214,http://purl.obolibrary.org/obo/GO_0033214,siderophore-dependent iron import into cell +13.0036048,GO:0033818,http://purl.obolibrary.org/obo/GO_0033818,beta-ketoacyl-acyl-carrier-protein synthase III activity +13.0036048,GO:0034614,http://purl.obolibrary.org/obo/GO_0034614,cellular response to reactive oxygen species +13.0036048,GO:0042053,http://purl.obolibrary.org/obo/GO_0042053,regulation of dopamine metabolic process +13.0036048,GO:0043384,http://purl.obolibrary.org/obo/GO_0043384,pre-T cell receptor complex +13.0036048,GO:0045835,http://purl.obolibrary.org/obo/GO_0045835,negative regulation of meiotic nuclear division +13.0036048,GO:0046027,http://purl.obolibrary.org/obo/GO_0046027,phospholipid:diacylglycerol acyltransferase activity +13.0036048,GO:0047911,http://purl.obolibrary.org/obo/GO_0047911,"galacturan 1,4-alpha-galacturonidase activity" +13.0036048,GO:0048071,http://purl.obolibrary.org/obo/GO_0048071,sex-specific pigmentation +13.0036048,GO:0050307,http://purl.obolibrary.org/obo/GO_0050307,sucrose-phosphate phosphatase activity +13.0036048,GO:0050730,http://purl.obolibrary.org/obo/GO_0050730,regulation of peptidyl-tyrosine phosphorylation +13.0036048,GO:0051452,http://purl.obolibrary.org/obo/GO_0051452,intracellular pH reduction +13.0036048,GO:0070178,http://purl.obolibrary.org/obo/GO_0070178,D-serine metabolic process +13.0036048,GO:0071603,http://purl.obolibrary.org/obo/GO_0071603,endothelial cell-cell adhesion +13.0036048,GO:0071986,http://purl.obolibrary.org/obo/GO_0071986,Ragulator complex +13.0036048,GO:0097413,http://purl.obolibrary.org/obo/GO_0097413,Lewy body +13.0036048,GO:1901379,http://purl.obolibrary.org/obo/GO_1901379,regulation of potassium ion transmembrane transport +13.0036048,GO:1902622,http://purl.obolibrary.org/obo/GO_1902622,regulation of neutrophil migration +13.0036048,GO:1904124,http://purl.obolibrary.org/obo/GO_1904124,microglial cell migration +13.0036048,GO:1990613,http://purl.obolibrary.org/obo/GO_1990613,mitochondrial membrane fusion +13.0036048,MONDO:0000344,http://purl.obolibrary.org/obo/MONDO_0000344,Ross river fever +13.0036048,MONDO:0000814,http://purl.obolibrary.org/obo/MONDO_0000814,B-cell adult acute lymphocytic leukemia +13.0036048,MONDO:0000928,http://purl.obolibrary.org/obo/MONDO_0000928,eyelid melanoma +13.0036048,MONDO:0001712,http://purl.obolibrary.org/obo/MONDO_0001712,alexia +13.0036048,MONDO:0002684,http://purl.obolibrary.org/obo/MONDO_0002684,atypical choroid plexus papilloma +13.0036048,MONDO:0003402,http://purl.obolibrary.org/obo/MONDO_0003402,testicular yolk sac tumor +13.0036048,MONDO:0003789,http://purl.obolibrary.org/obo/MONDO_0003789,hereditary papillary renal cell carcinoma +13.0036048,MONDO:0005993,http://purl.obolibrary.org/obo/MONDO_0005993,Trichomonas vaginitis urogenital infection +13.0036048,MONDO:0006133,http://purl.obolibrary.org/obo/MONDO_0006133,cervical adenoid cystic carcinoma +13.0036048,MONDO:0006191,http://purl.obolibrary.org/obo/MONDO_0006191,endometrial clear cell adenocarcinoma +13.0036048,MONDO:0006343,http://purl.obolibrary.org/obo/MONDO_0006343,ovarian transitional cell carcinoma +13.0036048,MONDO:0007400,http://purl.obolibrary.org/obo/MONDO_0007400,Jackson-Weiss syndrome +13.0036048,MONDO:0008534,http://purl.obolibrary.org/obo/MONDO_0008534,generalized essential telangiectasia +13.0036048,MONDO:0009221,http://purl.obolibrary.org/obo/MONDO_0009221,femur-fibula-ulna complex +13.0036048,MONDO:0009242,http://purl.obolibrary.org/obo/MONDO_0009242,brittle cornea syndrome +13.0036048,MONDO:0010310,http://purl.obolibrary.org/obo/MONDO_0010310,osteopathia striata with cranial sclerosis +13.0036048,MONDO:0016540,http://purl.obolibrary.org/obo/MONDO_0016540,congenital secondary polycythemia +13.0036048,MONDO:0017312,http://purl.obolibrary.org/obo/MONDO_0017312,Perrault syndrome +13.0036048,MONDO:0018224,http://purl.obolibrary.org/obo/MONDO_0018224,hydroa vacciniforme-like lymphoma +13.0036048,MONDO:0018363,http://purl.obolibrary.org/obo/MONDO_0018363,focal facial dermal dysplasia +13.0036048,MONDO:0019328,http://purl.obolibrary.org/obo/MONDO_0019328,macrocystic lymphatic malformation +13.0036048,MONDO:0019569,http://purl.obolibrary.org/obo/MONDO_0019569,Cockayne syndrome type 1 +13.0036048,MONDO:0020347,http://purl.obolibrary.org/obo/MONDO_0020347,acute inflammatory demyelinating polyradiculoneuropathy +13.0036048,NCBITaxon:10266,http://purl.obolibrary.org/obo/NCBITaxon_10266,none +13.0036048,NCBITaxon:10406,http://purl.obolibrary.org/obo/NCBITaxon_10406,none +13.0036048,NCBITaxon:12167,http://purl.obolibrary.org/obo/NCBITaxon_12167,none +13.0036048,NCBITaxon:12198,http://purl.obolibrary.org/obo/NCBITaxon_12198,none +13.0036048,NCBITaxon:12465,http://purl.obolibrary.org/obo/NCBITaxon_12465,none +13.0036048,NCBITaxon:27456,http://purl.obolibrary.org/obo/NCBITaxon_27456,none +13.0036048,NCBITaxon:318546,http://purl.obolibrary.org/obo/NCBITaxon_318546,none +13.0036048,NCBITaxon:319095,http://purl.obolibrary.org/obo/NCBITaxon_319095,none +13.0036048,NCBITaxon:337726,http://purl.obolibrary.org/obo/NCBITaxon_337726,none +13.0036048,NCBITaxon:427660,http://purl.obolibrary.org/obo/NCBITaxon_427660,none +13.0036048,NCBITaxon:586425,http://purl.obolibrary.org/obo/NCBITaxon_586425,none +13.0036048,NCBITaxon:7282,http://purl.obolibrary.org/obo/NCBITaxon_7282,none +13.0036048,NCBITaxon:88129,http://purl.obolibrary.org/obo/NCBITaxon_88129,none +13.0036048,NCBITaxon:89125,http://purl.obolibrary.org/obo/NCBITaxon_89125,none +13.0036048,PR:000001213,http://purl.obolibrary.org/obo/PR_000001213,atypical chemokine receptor 4 +13.0036048,PR:000001369,http://purl.obolibrary.org/obo/PR_000001369,interleukin-12 subunit beta +13.0036048,PR:000001554,http://purl.obolibrary.org/obo/PR_000001554,ammonium transporter Rh type A +13.0036048,PR:000002012,http://purl.obolibrary.org/obo/PR_000002012,MHC class II histocompatibility antigen alpha chain DPA1 +13.0036048,PR:000003788,http://purl.obolibrary.org/obo/PR_000003788,[protein ADP-ribosylarginine] hydrolase +13.0036048,PR:000003816,http://purl.obolibrary.org/obo/PR_000003816,"Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 2" +13.0036048,PR:000004005,http://purl.obolibrary.org/obo/PR_000004005,"aminomethyltransferase, mitochondrial" +13.0036048,PR:000004067,http://purl.obolibrary.org/obo/PR_000004067,acidic leucine-rich nuclear phosphoprotein 32 family member E +13.0036048,PR:000004134,http://purl.obolibrary.org/obo/PR_000004134,aprataxin and PNK-like factor +13.0036048,PR:000004259,http://purl.obolibrary.org/obo/PR_000004259,Rho guanine nucleotide exchange factor 6 +13.0036048,PR:000004683,http://purl.obolibrary.org/obo/PR_000004683,"branched-chain-amino-acid aminotransferase, mitochondrial" +13.0036048,PR:000005252,http://purl.obolibrary.org/obo/PR_000005252,cyclin-dependent kinase 10 +13.0036048,PR:000005377,http://purl.obolibrary.org/obo/PR_000005377,craniofacial development protein 1 +13.0036048,PR:000005540,http://purl.obolibrary.org/obo/PR_000005540,claudin-12 +13.0036048,PR:000005645,http://purl.obolibrary.org/obo/PR_000005645,metal transporter CNNM3 +13.0036048,PR:000006543,http://purl.obolibrary.org/obo/PR_000006543,doublesex- and mab-3-related transcription factor 2 +13.0036048,PR:000006678,http://purl.obolibrary.org/obo/PR_000006678,dihydropyrimidine dehydrogenase [NADP(+)] +13.0036048,PR:000006689,http://purl.obolibrary.org/obo/PR_000006689,developmentally-regulated GTP-binding protein 2 +13.0036048,PR:000007049,http://purl.obolibrary.org/obo/PR_000007049,endomucin +13.0036048,PR:000007181,http://purl.obolibrary.org/obo/PR_000007181,erlin-2 +13.0036048,PR:000007507,http://purl.obolibrary.org/obo/PR_000007507,fibrinogen gamma chain +13.0036048,PR:000007878,http://purl.obolibrary.org/obo/PR_000007878,guanylate-binding protein 5 +13.0036048,PR:000008168,http://purl.obolibrary.org/obo/PR_000008168,glypican-6 +13.0036048,PR:000008366,http://purl.obolibrary.org/obo/PR_000008366,"glycogen [starch] synthase, liver" +13.0036048,PR:000009592,http://purl.obolibrary.org/obo/PR_000009592,kinase suppressor of Ras 2 +13.0036048,PR:000009868,http://purl.obolibrary.org/obo/PR_000009868,serine/threonine-protein kinase LMTK2 +13.0036048,PR:000010315,http://purl.obolibrary.org/obo/PR_000010315,meiosis expressed gene 1 protein +13.0036048,PR:000010867,http://purl.obolibrary.org/obo/PR_000010867,myosin-Vc +13.0036048,PR:000011130,http://purl.obolibrary.org/obo/PR_000011130,serine/threonine-protein kinase Nek4 +13.0036048,PR:000011552,http://purl.obolibrary.org/obo/PR_000011552,none +13.0036048,PR:000012042,http://purl.obolibrary.org/obo/PR_000012042,protein OS-9 +13.0036048,PR:000012341,http://purl.obolibrary.org/obo/PR_000012341,protocadherin-1 +13.0036048,PR:000013363,http://purl.obolibrary.org/obo/PR_000013363,proteasome subunit alpha type-4 +13.0036048,PR:000013588,http://purl.obolibrary.org/obo/PR_000013588,Ras-related protein Rab-17 +13.0036048,PR:000013606,http://purl.obolibrary.org/obo/PR_000013606,Ras-related protein Rab-31 +13.0036048,PR:000013837,http://purl.obolibrary.org/obo/PR_000013837,RNA 3'-terminal phosphate cyclase-like protein +13.0036048,PR:000013889,http://purl.obolibrary.org/obo/PR_000013889,protein RER1 +13.0036048,PR:000014065,http://purl.obolibrary.org/obo/PR_000014065,E3 ubiquitin-protein ligase RNF103 +13.0036048,PR:000014609,http://purl.obolibrary.org/obo/PR_000014609,selenoprotein K +13.0036048,PR:000014978,http://purl.obolibrary.org/obo/PR_000014978,excitatory amino acid transporter 5 +13.0036048,PR:000015080,http://purl.obolibrary.org/obo/PR_000015080,zinc transporter 7 +13.0036048,PR:000015141,http://purl.obolibrary.org/obo/PR_000015141,large neutral amino acids transporter small subunit 3 +13.0036048,PR:000015171,http://purl.obolibrary.org/obo/PR_000015171,sodium/iodide cotransporter +13.0036048,PR:000015289,http://purl.obolibrary.org/obo/PR_000015289,SPARC-related modular calcium-binding protein 1 +13.0036048,PR:000015504,http://purl.obolibrary.org/obo/PR_000015504,kinetochore protein Spc25 +13.0036048,PR:000015541,http://purl.obolibrary.org/obo/PR_000015541,eppin +13.0036048,PR:000015979,http://purl.obolibrary.org/obo/PR_000015979,none +13.0036048,PR:000016005,http://purl.obolibrary.org/obo/PR_000016005,tachykinin-4 +13.0036048,PR:000016157,http://purl.obolibrary.org/obo/PR_000016157,transcription elongation factor A protein 1 +13.0036048,PR:000016266,http://purl.obolibrary.org/obo/PR_000016266,transcription factor AP-4 +13.0036048,PR:000016377,http://purl.obolibrary.org/obo/PR_000016377,serine/threonine-protein kinase tousled-like 1 +13.0036048,PR:000016415,http://purl.obolibrary.org/obo/PR_000016415,transmembrane protein 158 +13.0036048,PR:000016619,http://purl.obolibrary.org/obo/PR_000016619,trafficking protein particle complex subunit 9 +13.0036048,PR:000017133,http://purl.obolibrary.org/obo/PR_000017133,ubiquitin-related modifier 1 +13.0036048,PR:000017418,http://purl.obolibrary.org/obo/PR_000017418,histone-lysine N-methyltransferase NSD3 +13.0036048,PR:000017611,http://purl.obolibrary.org/obo/PR_000017611,palmitoyltransferase ZDHHC17 +13.0036048,PR:000017668,http://purl.obolibrary.org/obo/PR_000017668,zinc finger protein ZIC 4 +13.0036048,PR:000022804,http://purl.obolibrary.org/obo/PR_000022804,none +13.0036048,PR:000023662,http://purl.obolibrary.org/obo/PR_000023662,none +13.0036048,PR:000023820,http://purl.obolibrary.org/obo/PR_000023820,none +13.0036048,PR:000028850,http://purl.obolibrary.org/obo/PR_000028850,none +13.0036048,PR:000029425,http://purl.obolibrary.org/obo/PR_000029425,DnaJ homolog subfamily C member 2 +13.0036048,PR:000029487,http://purl.obolibrary.org/obo/PR_000029487,protein LRATD2 +13.0036048,PR:000029675,http://purl.obolibrary.org/obo/PR_000029675,pleckstrin homology domain-containing family A member 7 +13.0036048,PR:000029709,http://purl.obolibrary.org/obo/PR_000029709,RNA-binding protein 15 +13.0036048,PR:000029712,http://purl.obolibrary.org/obo/PR_000029712,"RNA-binding motif, single-stranded-interacting protein 2" +13.0036048,PR:000029947,http://purl.obolibrary.org/obo/PR_000029947,glutathione S-transferase kappa +13.0036048,PR:000031588,http://purl.obolibrary.org/obo/PR_000031588,bifunctional peptidase and arginyl-hydroxylase JMJD5 +13.0036048,PR:000032460,http://purl.obolibrary.org/obo/PR_000032460,testis-specific Y-encoded protein 4 +13.0036048,PR:000033055,http://purl.obolibrary.org/obo/PR_000033055,none +13.0036048,PR:000033803,http://purl.obolibrary.org/obo/PR_000033803,none +13.0036048,PR:000034221,http://purl.obolibrary.org/obo/PR_000034221,none +13.0036048,PR:000035279,http://purl.obolibrary.org/obo/PR_000035279,none +13.0036048,PR:B3H5A8,http://purl.obolibrary.org/obo/PR_B3H5A8,none +13.0036048,PR:O22925,http://purl.obolibrary.org/obo/PR_O22925,none +13.0036048,PR:O61345,http://purl.obolibrary.org/obo/PR_O61345,none +13.0036048,PR:P33338,http://purl.obolibrary.org/obo/PR_P33338,none +13.0036048,PR:P35631,http://purl.obolibrary.org/obo/PR_P35631,none +13.0036048,PR:P40318,http://purl.obolibrary.org/obo/PR_P40318,none +13.0036048,PR:P48809,http://purl.obolibrary.org/obo/PR_P48809,none +13.0036048,PR:P54637,http://purl.obolibrary.org/obo/PR_P54637,none +13.0036048,PR:Q00055,http://purl.obolibrary.org/obo/PR_Q00055,none +13.0036048,PR:Q42418,http://purl.obolibrary.org/obo/PR_Q42418,none +13.0036048,PR:Q54NA2,http://purl.obolibrary.org/obo/PR_Q54NA2,none +13.0036048,PR:Q93XN8,http://purl.obolibrary.org/obo/PR_Q93XN8,none +13.0036048,PR:Q9C8J2,http://purl.obolibrary.org/obo/PR_Q9C8J2,none +13.0036048,PR:Q9FQ04,http://purl.obolibrary.org/obo/PR_Q9FQ04,none +13.0036048,PR:Q9FUZ2,http://purl.obolibrary.org/obo/PR_Q9FUZ2,none +13.0036048,SO:0000483,http://purl.obolibrary.org/obo/SO_0000483,nc_primary_transcript +13.0036048,SO:0000816,http://purl.obolibrary.org/obo/SO_0000816,rescue_gene +13.0036048,SO:0001800,http://purl.obolibrary.org/obo/SO_0001800,tasiRNA +13.0036048,UBERON:0001922,http://purl.obolibrary.org/obo/UBERON_0001922,parafascicular nucleus +13.0036048,UBERON:0003265,http://purl.obolibrary.org/obo/UBERON_0003265,chorionic mesenchyme +13.0036048,UBERON:0003281,http://purl.obolibrary.org/obo/UBERON_0003281,mesentery of stomach +13.0036048,UBERON:0004263,http://purl.obolibrary.org/obo/UBERON_0004263,upper arm skin +13.0036048,UBERON:0004571,http://purl.obolibrary.org/obo/UBERON_0004571,systemic arterial system +13.0036048,UBERON:0004635,http://purl.obolibrary.org/obo/UBERON_0004635,thoracic vertebra 11 +13.0036048,UBERON:0006280,http://purl.obolibrary.org/obo/UBERON_0006280,polar trophectoderm +13.0036048,UBERON:0006283,http://purl.obolibrary.org/obo/UBERON_0006283,future cardiac ventricle +13.0036048,UBERON:0008265,http://purl.obolibrary.org/obo/UBERON_0008265,echinopluteus larva +13.0036048,UBERON:0008537,http://purl.obolibrary.org/obo/UBERON_0008537,quadratus femoris +13.0036048,UBERON:0009133,http://purl.obolibrary.org/obo/UBERON_0009133,pleuroperitoneal membrane +13.0036048,UBERON:0015410,http://purl.obolibrary.org/obo/UBERON_0015410,heart plus pericardium +13.0036048,UBERON:0015842,http://purl.obolibrary.org/obo/UBERON_0015842,incisor enamel organ +13.0036048,UBERON:3010096,http://purl.obolibrary.org/obo/UBERON_3010096,vocal sac +13.0230228,CHEBI:16336,http://purl.obolibrary.org/obo/CHEBI_16336,hyaluronic acid +13.0230228,CHEBI:17245,http://purl.obolibrary.org/obo/CHEBI_17245,carbon monoxide +13.0230228,CHEBI:22160,http://purl.obolibrary.org/obo/CHEBI_22160,acetamides +13.0230228,CHEBI:25389,http://purl.obolibrary.org/obo/CHEBI_25389,monohydroxybenzoic acid +13.0230228,CHEBI:46761,http://purl.obolibrary.org/obo/CHEBI_46761,dipeptide +13.0230228,CHEBI:46793,http://purl.obolibrary.org/obo/CHEBI_46793,poly(ethylene glycol) +13.0230228,CHEBI:48369,http://purl.obolibrary.org/obo/CHEBI_48369,organic bromide salt +13.0230228,CHEBI:50321,http://purl.obolibrary.org/obo/CHEBI_50321,2'-deoxycytidine 5'-monophosphate residue +13.0230228,CHEBI:50882,http://purl.obolibrary.org/obo/CHEBI_50882,nitride +13.0230228,CHEBI:53104,http://purl.obolibrary.org/obo/CHEBI_53104,dCMP 5'-end residue +13.0230228,CHEBI:53119,http://purl.obolibrary.org/obo/CHEBI_53119,dCMP 3'-end residue +13.0230228,CHEBI:60926,http://purl.obolibrary.org/obo/CHEBI_60926,amino monosaccharide +13.0230228,CHEBI:64588,http://purl.obolibrary.org/obo/CHEBI_64588,glycine transporter 1 inhibitor +13.0230228,CHEBI:80270,http://purl.obolibrary.org/obo/CHEBI_80270,Glucagon-like peptide 1 +13.0230228,CHEBI:9160,http://purl.obolibrary.org/obo/CHEBI_9160,single-stranded DNA +13.0230228,CL:1000317,http://purl.obolibrary.org/obo/CL_1000317,intestinal villus goblet cell +13.0230228,DRUGBANK:DB00094,http://purl.obolibrary.org/obo/DRUGBANK_DB00094,none +13.0230228,DRUGBANK:DB00913,http://purl.obolibrary.org/obo/DRUGBANK_DB00913,none +13.0230228,DRUGBANK:DB01924,http://purl.obolibrary.org/obo/DRUGBANK_DB01924,none +13.0230228,DRUGBANK:DB02238,http://purl.obolibrary.org/obo/DRUGBANK_DB02238,none +13.0230228,DRUGBANK:DB02586,http://purl.obolibrary.org/obo/DRUGBANK_DB02586,none +13.0230228,DRUGBANK:DB03769,http://purl.obolibrary.org/obo/DRUGBANK_DB03769,none +13.0230228,DRUGBANK:DB04976,http://purl.obolibrary.org/obo/DRUGBANK_DB04976,none +13.0230228,DRUGBANK:DB05100,http://purl.obolibrary.org/obo/DRUGBANK_DB05100,none +13.0230228,DRUGBANK:DB05101,http://purl.obolibrary.org/obo/DRUGBANK_DB05101,none +13.0230228,DRUGBANK:DB05780,http://purl.obolibrary.org/obo/DRUGBANK_DB05780,none +13.0230228,DRUGBANK:DB06350,http://purl.obolibrary.org/obo/DRUGBANK_DB06350,none +13.0230228,DRUGBANK:DB07477,http://purl.obolibrary.org/obo/DRUGBANK_DB07477,none +13.0230228,DRUGBANK:DB08891,http://purl.obolibrary.org/obo/DRUGBANK_DB08891,none +13.0230228,DRUGBANK:DB11832,http://purl.obolibrary.org/obo/DRUGBANK_DB11832,none +13.0230228,DRUGBANK:DB12265,http://purl.obolibrary.org/obo/DRUGBANK_DB12265,none +13.0230228,DRUGBANK:DB12613,http://purl.obolibrary.org/obo/DRUGBANK_DB12613,none +13.0230228,DRUGBANK:DB12645,http://purl.obolibrary.org/obo/DRUGBANK_DB12645,none +13.0230228,DRUGBANK:DB12681,http://purl.obolibrary.org/obo/DRUGBANK_DB12681,none +13.0230228,DRUGBANK:DB12980,http://purl.obolibrary.org/obo/DRUGBANK_DB12980,none +13.0230228,DRUGBANK:DB13199,http://purl.obolibrary.org/obo/DRUGBANK_DB13199,none +13.0230228,DRUGBANK:DB13206,http://purl.obolibrary.org/obo/DRUGBANK_DB13206,none +13.0230228,DRUGBANK:DB13264,http://purl.obolibrary.org/obo/DRUGBANK_DB13264,none +13.0230228,DRUGBANK:DB13441,http://purl.obolibrary.org/obo/DRUGBANK_DB13441,none +13.0230228,DRUGBANK:DB13921,http://purl.obolibrary.org/obo/DRUGBANK_DB13921,none +13.0230228,DRUGBANK:DB14195,http://purl.obolibrary.org/obo/DRUGBANK_DB14195,none +13.0230228,DRUGBANK:DB15905,http://purl.obolibrary.org/obo/DRUGBANK_DB15905,none +13.0230228,DRUGBANK:DB16360,http://purl.obolibrary.org/obo/DRUGBANK_DB16360,none +13.0230228,GO:0000428,http://purl.obolibrary.org/obo/GO_0000428,DNA-directed RNA polymerase complex +13.0230228,GO:0001519,http://purl.obolibrary.org/obo/GO_0001519,peptide amidation +13.0230228,GO:0003158,http://purl.obolibrary.org/obo/GO_0003158,endothelium development +13.0230228,GO:0004136,http://purl.obolibrary.org/obo/GO_0004136,deoxyadenosine kinase activity +13.0230228,GO:0004595,http://purl.obolibrary.org/obo/GO_0004595,pantetheine-phosphate adenylyltransferase activity +13.0230228,GO:0005658,http://purl.obolibrary.org/obo/GO_0005658,alpha DNA polymerase:primase complex +13.0230228,GO:0005726,http://purl.obolibrary.org/obo/GO_0005726,perichromatin fibrils +13.0230228,GO:0005838,http://purl.obolibrary.org/obo/GO_0005838,proteasome regulatory particle +13.0230228,GO:0006655,http://purl.obolibrary.org/obo/GO_0006655,phosphatidylglycerol biosynthetic process +13.0230228,GO:0006846,http://purl.obolibrary.org/obo/GO_0006846,acetate transport +13.0230228,GO:0006927,http://purl.obolibrary.org/obo/GO_0006927,none +13.0230228,GO:0008772,http://purl.obolibrary.org/obo/GO_0008772,[isocitrate dehydrogenase (NADP+)] kinase activity +13.0230228,GO:0010720,http://purl.obolibrary.org/obo/GO_0010720,positive regulation of cell development +13.0230228,GO:0018708,http://purl.obolibrary.org/obo/GO_0018708,thiol S-methyltransferase activity +13.0230228,GO:0018955,http://purl.obolibrary.org/obo/GO_0018955,phenanthrene metabolic process +13.0230228,GO:0019406,http://purl.obolibrary.org/obo/GO_0019406,hexitol biosynthetic process +13.0230228,GO:0030729,http://purl.obolibrary.org/obo/GO_0030729,acetoacetate-CoA ligase activity +13.0230228,GO:0032612,http://purl.obolibrary.org/obo/GO_0032612,interleukin-1 production +13.0230228,GO:0033595,http://purl.obolibrary.org/obo/GO_0033595,response to genistein +13.0230228,GO:0040014,http://purl.obolibrary.org/obo/GO_0040014,regulation of multicellular organism growth +13.0230228,GO:0042276,http://purl.obolibrary.org/obo/GO_0042276,error-prone translesion synthesis +13.0230228,GO:0043502,http://purl.obolibrary.org/obo/GO_0043502,regulation of muscle adaptation +13.0230228,GO:0043767,http://purl.obolibrary.org/obo/GO_0043767,pyrrolysyl-tRNA synthetase activity +13.0230228,GO:0046564,http://purl.obolibrary.org/obo/GO_0046564,oxalate decarboxylase activity +13.0230228,GO:0047153,http://purl.obolibrary.org/obo/GO_0047153,deoxycytidylate 5-hydroxymethyltransferase activity +13.0230228,GO:0048478,http://purl.obolibrary.org/obo/GO_0048478,replication fork protection +13.0230228,GO:0048551,http://purl.obolibrary.org/obo/GO_0048551,none +13.0230228,GO:0050872,http://purl.obolibrary.org/obo/GO_0050872,white fat cell differentiation +13.0230228,GO:0051785,http://purl.obolibrary.org/obo/GO_0051785,positive regulation of nuclear division +13.0230228,GO:0055029,http://purl.obolibrary.org/obo/GO_0055029,nuclear DNA-directed RNA polymerase complex +13.0230228,GO:0060071,http://purl.obolibrary.org/obo/GO_0060071,"Wnt signaling pathway, planar cell polarity pathway" +13.0230228,GO:0060431,http://purl.obolibrary.org/obo/GO_0060431,primary lung bud formation +13.0230228,GO:0061845,http://purl.obolibrary.org/obo/GO_0061845,neuron projection branch point +13.0230228,GO:0070673,http://purl.obolibrary.org/obo/GO_0070673,response to interleukin-18 +13.0230228,GO:0070778,http://purl.obolibrary.org/obo/GO_0070778,L-aspartate transmembrane transport +13.0230228,GO:0071664,http://purl.obolibrary.org/obo/GO_0071664,catenin-TCF7L2 complex +13.0230228,GO:0071675,http://purl.obolibrary.org/obo/GO_0071675,regulation of mononuclear cell migration +13.0230228,GO:0071932,http://purl.obolibrary.org/obo/GO_0071932,replication fork reversal +13.0230228,GO:0090175,http://purl.obolibrary.org/obo/GO_0090175,regulation of establishment of planar polarity +13.0230228,GO:0090330,http://purl.obolibrary.org/obo/GO_0090330,regulation of platelet aggregation +13.0230228,GO:1901016,http://purl.obolibrary.org/obo/GO_1901016,regulation of potassium ion transmembrane transporter activity +13.0230228,GO:1990033,http://purl.obolibrary.org/obo/GO_1990033,dendritic branch point +13.0230228,HP:0002269,http://purl.obolibrary.org/obo/HP_0002269,Abnormality of neuronal migration +13.0230228,HP:0410291,http://purl.obolibrary.org/obo/HP_0410291,Negativism +13.0230228,MONDO:0001082,http://purl.obolibrary.org/obo/MONDO_0001082,lymph node cancer +13.0230228,MONDO:0001095,http://purl.obolibrary.org/obo/MONDO_0001095,mediastinum neuroblastoma +13.0230228,MONDO:0002559,http://purl.obolibrary.org/obo/MONDO_0002559,plexiform schwannoma +13.0230228,MONDO:0002768,http://purl.obolibrary.org/obo/MONDO_0002768,true hermaphroditism +13.0230228,MONDO:0002941,http://purl.obolibrary.org/obo/MONDO_0002941,anal margin carcinoma +13.0230228,MONDO:0002953,http://purl.obolibrary.org/obo/MONDO_0002953,skin infiltrative basal cell carcinoma +13.0230228,MONDO:0003368,http://purl.obolibrary.org/obo/MONDO_0003368,prostate leiomyosarcoma +13.0230228,MONDO:0003729,http://purl.obolibrary.org/obo/MONDO_0003729,aleukemic leukemia cutis +13.0230228,MONDO:0004047,http://purl.obolibrary.org/obo/MONDO_0004047,sphenoidal sinus neoplasm +13.0230228,MONDO:0004141,http://purl.obolibrary.org/obo/MONDO_0004141,melanomatosis +13.0230228,MONDO:0004835,http://purl.obolibrary.org/obo/MONDO_0004835,necrotizing fasciitis +13.0230228,MONDO:0006588,http://purl.obolibrary.org/obo/MONDO_0006588,nonepidermolytic palmoplantar keratoderma +13.0230228,MONDO:0007085,http://purl.obolibrary.org/obo/MONDO_0007085,alopecia-epilepsy-pyorrhea-intellectual disability syndrome +13.0230228,MONDO:0008492,http://purl.obolibrary.org/obo/MONDO_0008492,stiff skin syndrome +13.0230228,MONDO:0009476,http://purl.obolibrary.org/obo/MONDO_0009476,atresia of small intestine +13.0230228,MONDO:0009892,http://purl.obolibrary.org/obo/MONDO_0009892,Chuvash polycythemia +13.0230228,MONDO:0010144,http://purl.obolibrary.org/obo/MONDO_0010144,tibial hemimelia +13.0230228,MONDO:0010829,http://purl.obolibrary.org/obo/MONDO_0010829,CARASIL syndrome +13.0230228,MONDO:0011430,http://purl.obolibrary.org/obo/MONDO_0011430,pulverulent cataract +13.0230228,MONDO:0011579,http://purl.obolibrary.org/obo/MONDO_0011579,late-onset retinal degeneration +13.0230228,MONDO:0011717,http://purl.obolibrary.org/obo/MONDO_0011717,hyperinsulinism-hyperammonemia syndrome +13.0230228,MONDO:0011913,http://purl.obolibrary.org/obo/MONDO_0011913,Alzheimer disease 3 +13.0230228,MONDO:0014768,http://purl.obolibrary.org/obo/MONDO_0014768,"cerebral arteriopathy, autosomal dominant, with subcortical infarcts and leukoencephalopathy, type 2" +13.0230228,MONDO:0015302,http://purl.obolibrary.org/obo/MONDO_0015302,nodular cutaneous amyloidosis +13.0230228,MONDO:0016146,http://purl.obolibrary.org/obo/MONDO_0016146,caveolinopathy +13.0230228,MONDO:0016237,http://purl.obolibrary.org/obo/MONDO_0016237,diffuse neonatal hemangiomatosis +13.0230228,MONDO:0016262,http://purl.obolibrary.org/obo/MONDO_0016262,leiomyosarcoma of the corpus uteri +13.0230228,MONDO:0016516,http://purl.obolibrary.org/obo/MONDO_0016516,Kenny-Caffey syndrome +13.0230228,MONDO:0016817,http://purl.obolibrary.org/obo/MONDO_0016817,Meier-Gorlin syndrome +13.0230228,MONDO:0017121,http://purl.obolibrary.org/obo/MONDO_0017121,syndrome with a Dandy-Walker malformation as major feature +13.0230228,MONDO:0018713,http://purl.obolibrary.org/obo/MONDO_0018713,retiform hemangioendothelioma +13.0230228,MONDO:0018831,http://purl.obolibrary.org/obo/MONDO_0018831,HTRA1-related cerebral small vessel disease +13.0230228,MONDO:0018866,http://purl.obolibrary.org/obo/MONDO_0018866,Aicardi-Goutieres syndrome +13.0230228,MONDO:0018996,http://purl.obolibrary.org/obo/MONDO_0018996,"spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 2" +13.0230228,MONDO:0019000,http://purl.obolibrary.org/obo/MONDO_0019000,perineural cyst +13.0230228,MONDO:0019917,http://purl.obolibrary.org/obo/MONDO_0019917,maternal uniparental disomy of chromosome 20 +13.0230228,MONDO:0021582,http://purl.obolibrary.org/obo/MONDO_0021582,lentigo +13.0230228,MONDO:0024934,http://purl.obolibrary.org/obo/MONDO_0024934,fish disease +13.0230228,MONDO:0025510,http://purl.obolibrary.org/obo/MONDO_0025510,pythiosis +13.0230228,MONDO:0045042,http://purl.obolibrary.org/obo/MONDO_0045042,restricted to specific location +13.0230228,MOP:0000689,http://purl.obolibrary.org/obo/MOP_0000689,none +13.0230228,MOP:0000736,http://purl.obolibrary.org/obo/MOP_0000736,none +13.0230228,MOP:0000784,http://purl.obolibrary.org/obo/MOP_0000784,none +13.0230228,NCBITaxon:130310,http://purl.obolibrary.org/obo/NCBITaxon_130310,none +13.0230228,NCBITaxon:1457286,http://purl.obolibrary.org/obo/NCBITaxon_1457286,Dorylaimia +13.0230228,NCBITaxon:1511911,http://purl.obolibrary.org/obo/NCBITaxon_1511911,none +13.0230228,NCBITaxon:16727,http://purl.obolibrary.org/obo/NCBITaxon_16727,none +13.0230228,NCBITaxon:2233855,http://purl.obolibrary.org/obo/NCBITaxon_2233855,none +13.0230228,NCBITaxon:390157,http://purl.obolibrary.org/obo/NCBITaxon_390157,none +13.0230228,NCBITaxon:568247,http://purl.obolibrary.org/obo/NCBITaxon_568247,none +13.0230228,NCBITaxon:7198,http://purl.obolibrary.org/obo/NCBITaxon_7198,Phlebotominae +13.0230228,NCBITaxon:94844,http://purl.obolibrary.org/obo/NCBITaxon_94844,none +13.0230228,NCBITaxon:94845,http://purl.obolibrary.org/obo/NCBITaxon_94845,none +13.0230228,PR:000000282,http://purl.obolibrary.org/obo/PR_000000282,growth/differentiation factor 7 +13.0230228,PR:000002209,http://purl.obolibrary.org/obo/PR_000002209,proteasome subunit beta type-4 +13.0230228,PR:000003963,http://purl.obolibrary.org/obo/PR_000003963,hydroperoxide isomerase ALOXE3 +13.0230228,PR:000004230,http://purl.obolibrary.org/obo/PR_000004230,Rho GTPase-activating protein 24 +13.0230228,PR:000004999,http://purl.obolibrary.org/obo/PR_000004999,calmodulin-regulated spectrin-associated protein 1-like protein 1 +13.0230228,PR:000005111,http://purl.obolibrary.org/obo/PR_000005111,C-C motif chemokine 3-like 1 +13.0230228,PR:000005127,http://purl.obolibrary.org/obo/PR_000005127,cyclin-F +13.0230228,PR:000005702,http://purl.obolibrary.org/obo/PR_000005702,collagen alpha-1(XVIII) chain +13.0230228,PR:000006118,http://purl.obolibrary.org/obo/PR_000006118,cytochrome P450 2C19 +13.0230228,PR:000006123,http://purl.obolibrary.org/obo/PR_000006123,cytochrome P450 2F1 +13.0230228,PR:000006282,http://purl.obolibrary.org/obo/PR_000006282,"aspartate--tRNA ligase, mitochondrial" +13.0230228,PR:000006544,http://purl.obolibrary.org/obo/PR_000006544,doublesex- and mab-3-related transcription factor 3 +13.0230228,PR:000006911,http://purl.obolibrary.org/obo/PR_000006911,selenocysteine-specific elongation factor +13.0230228,PR:000007003,http://purl.obolibrary.org/obo/PR_000007003,eukaryotic translation initiation factor 5A-1 +13.0230228,PR:000007046,http://purl.obolibrary.org/obo/PR_000007046,epididymal sperm-binding protein 1 +13.0230228,PR:000007846,http://purl.obolibrary.org/obo/PR_000007846,glycine--tRNA ligase +13.0230228,PR:000007976,http://purl.obolibrary.org/obo/PR_000007976,GRB10-interacting GYF protein 1 +13.0230228,PR:000008130,http://purl.obolibrary.org/obo/PR_000008130,golgin subfamily A member 1 +13.0230228,PR:000008161,http://purl.obolibrary.org/obo/PR_000008161,vasculin +13.0230228,PR:000008232,http://purl.obolibrary.org/obo/PR_000008232,glyoxylate reductase/hydroxypyruvate reductase +13.0230228,PR:000008318,http://purl.obolibrary.org/obo/PR_000008318,general transcription factor IIH subunit 2 +13.0230228,PR:000008340,http://purl.obolibrary.org/obo/PR_000008340,G2 and S phase-expressed protein 1 +13.0230228,PR:000008769,http://purl.obolibrary.org/obo/PR_000008769,iron-sulfur cluster co-chaperone protein HscB +13.0230228,PR:000009003,http://purl.obolibrary.org/obo/PR_000009003,interleukin-28 receptor alpha chain +13.0230228,PR:000009110,http://purl.obolibrary.org/obo/PR_000009110,iroquois-class homeodomain protein IRX-4 +13.0230228,PR:000010010,http://purl.obolibrary.org/obo/PR_000010010,LYR motif-containing protein 4 +13.0230228,PR:000010161,http://purl.obolibrary.org/obo/PR_000010161,C-Jun-amino-terminal kinase-interacting protein 2 +13.0230228,PR:000010174,http://purl.obolibrary.org/obo/PR_000010174,E3 ubiquitin-protein ligase MARCHF1 +13.0230228,PR:000010993,http://purl.obolibrary.org/obo/PR_000010993,nuclear autoantigenic sperm protein +13.0230228,PR:000011280,http://purl.obolibrary.org/obo/PR_000011280,60S ribosomal export protein NMD3 +13.0230228,PR:000011381,http://purl.obolibrary.org/obo/PR_000011381,neuroplastin +13.0230228,PR:000012719,http://purl.obolibrary.org/obo/PR_000012719,"phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit alpha isoform" +13.0230228,PR:000013091,http://purl.obolibrary.org/obo/PR_000013091,protein phosphatase 1B +13.0230228,PR:000013153,http://purl.obolibrary.org/obo/PR_000013153,serine/threonine-protein phosphatase 4 regulatory subunit 1 +13.0230228,PR:000013747,http://purl.obolibrary.org/obo/PR_000013747,RasGAP-activating-like protein 1 +13.0230228,PR:000013836,http://purl.obolibrary.org/obo/PR_000013836,2'-deoxynucleoside 5'-phosphate N-hydrolase 1 +13.0230228,PR:000014448,http://purl.obolibrary.org/obo/PR_000014448,histone deacetylase complex subunit SAP30 +13.0230228,PR:000014476,http://purl.obolibrary.org/obo/PR_000014476,protein strawberry notch homolog 1 +13.0230228,PR:000014629,http://purl.obolibrary.org/obo/PR_000014629,semaphorin-6A +13.0230228,PR:000015616,http://purl.obolibrary.org/obo/PR_000015616,SLIT-ROBO Rho GTPase-activating protein 2 +13.0230228,PR:000015627,http://purl.obolibrary.org/obo/PR_000015627,signal recognition particle subunit SRP72 +13.0230228,PR:000015659,http://purl.obolibrary.org/obo/PR_000015659,translocon-associated protein subunit alpha +13.0230228,PR:000015874,http://purl.obolibrary.org/obo/PR_000015874,heterogeneous nuclear ribonucleoprotein Q +13.0230228,PR:000015907,http://purl.obolibrary.org/obo/PR_000015907,synaptotagmin-5 +13.0230228,PR:000016285,http://purl.obolibrary.org/obo/PR_000016285,protransforming growth factor alpha +13.0230228,PR:000016323,http://purl.obolibrary.org/obo/PR_000016323,thrombospondin type-1 domain-containing protein 4 +13.0230228,PR:000016473,http://purl.obolibrary.org/obo/PR_000016473,tumor necrosis factor alpha-induced protein 2 +13.0230228,PR:000017029,http://purl.obolibrary.org/obo/PR_000017029,uridine-cytidine kinase 2 +13.0230228,PR:000017261,http://purl.obolibrary.org/obo/PR_000017261,tubulinyl-Tyr carboxypeptidase 2 +13.0230228,PR:000017269,http://purl.obolibrary.org/obo/PR_000017269,ventral anterior homeobox 2 +13.0230228,PR:000017394,http://purl.obolibrary.org/obo/PR_000017394,WD repeat-containing protein 48 +13.0230228,PR:000018167,http://purl.obolibrary.org/obo/PR_000018167,zinc finger protein 804A +13.0230228,PR:000022115,http://purl.obolibrary.org/obo/PR_000022115,none +13.0230228,PR:000022923,http://purl.obolibrary.org/obo/PR_000022923,none +13.0230228,PR:000023083,http://purl.obolibrary.org/obo/PR_000023083,none +13.0230228,PR:000023225,http://purl.obolibrary.org/obo/PR_000023225,none +13.0230228,PR:000023751,http://purl.obolibrary.org/obo/PR_000023751,none +13.0230228,PR:000023841,http://purl.obolibrary.org/obo/PR_000023841,none +13.0230228,PR:000024003,http://purl.obolibrary.org/obo/PR_000024003,none +13.0230228,PR:000024100,http://purl.obolibrary.org/obo/PR_000024100,none +13.0230228,PR:000027845,http://purl.obolibrary.org/obo/PR_000027845,none +13.0230228,PR:000028280,http://purl.obolibrary.org/obo/PR_000028280,none +13.0230228,PR:000029450,http://purl.obolibrary.org/obo/PR_000029450,elongation factor-like GTPase 1 +13.0230228,PR:000031688,http://purl.obolibrary.org/obo/PR_000031688,thrombospondin type-1 domain-containing protein 7A +13.0230228,PR:O22527,http://purl.obolibrary.org/obo/PR_O22527,none +13.0230228,PR:O24456,http://purl.obolibrary.org/obo/PR_O24456,none +13.0230228,PR:P41412,http://purl.obolibrary.org/obo/PR_P41412,none +13.0230228,PR:P97484,http://purl.obolibrary.org/obo/PR_P97484,none +13.0230228,PR:Q09175,http://purl.obolibrary.org/obo/PR_Q09175,none +13.0230228,PR:Q7M764,http://purl.obolibrary.org/obo/PR_Q7M764,none +13.0230228,PR:Q8H186,http://purl.obolibrary.org/obo/PR_Q8H186,none +13.0230228,PR:Q93W77,http://purl.obolibrary.org/obo/PR_Q93W77,none +13.0230228,PR:Q9BT56,http://purl.obolibrary.org/obo/PR_Q9BT56,spexin (human) +13.0230228,PR:Q9LJG6,http://purl.obolibrary.org/obo/PR_Q9LJG6,none +13.0230228,PR:Q9NBD7,http://purl.obolibrary.org/obo/PR_Q9NBD7,none +13.0230228,PR:Q9SUM3,http://purl.obolibrary.org/obo/PR_Q9SUM3,none +13.0230228,PR:Q9SWH5,http://purl.obolibrary.org/obo/PR_Q9SWH5,none +13.0230228,PR:Q9VT51,http://purl.obolibrary.org/obo/PR_Q9VT51,none +13.0230228,SO:0001827,http://purl.obolibrary.org/obo/SO_0001827,mRNA_read +13.0230228,UBERON:0000084,http://purl.obolibrary.org/obo/UBERON_0000084,ureteric bud +13.0230228,UBERON:0001160,http://purl.obolibrary.org/obo/UBERON_0001160,fundus of stomach +13.0230228,UBERON:0001932,http://purl.obolibrary.org/obo/UBERON_0001932,arcuate nucleus of hypothalamus +13.0230228,UBERON:0002181,http://purl.obolibrary.org/obo/UBERON_0002181,substantia gelatinosa +13.0230228,UBERON:0002538,http://purl.obolibrary.org/obo/UBERON_0002538,hatching gland +13.0230228,UBERON:0004236,http://purl.obolibrary.org/obo/UBERON_0004236,arteriole smooth muscle +13.0230228,UBERON:0005054,http://purl.obolibrary.org/obo/UBERON_0005054,primary dorsal nerve cord +13.0230228,UBERON:0006059,http://purl.obolibrary.org/obo/UBERON_0006059,falx cerebri +13.0230228,UBERON:0007273,http://purl.obolibrary.org/obo/UBERON_0007273,pelvic appendage skeleton +13.0230228,UBERON:0010413,http://purl.obolibrary.org/obo/UBERON_0010413,parametrial fat pad +13.0230228,UBERON:0013143,http://purl.obolibrary.org/obo/UBERON_0013143,gastrocnemius vein +13.0230228,UBERON:0014169,http://purl.obolibrary.org/obo/UBERON_0014169,nigrostriatal tract +13.0230228,UBERON:0014899,http://purl.obolibrary.org/obo/UBERON_0014899,anterolateral ligament of knee +13.0230228,UBERON:0035041,http://purl.obolibrary.org/obo/UBERON_0035041,deep temporal artery +13.0428255,CHEBI:132544,http://purl.obolibrary.org/obo/CHEBI_132544,fatty acid 22:6 +13.0428255,CHEBI:24858,http://purl.obolibrary.org/obo/CHEBI_24858,iodide salt +13.0428255,CHEBI:26124,http://purl.obolibrary.org/obo/CHEBI_26124,phytosteroid +13.0428255,CHEBI:30396,http://purl.obolibrary.org/obo/CHEBI_30396,phenyl group +13.0428255,CHEBI:32530,http://purl.obolibrary.org/obo/CHEBI_32530,histidinate(2-) +13.0428255,CHEBI:32955,http://purl.obolibrary.org/obo/CHEBI_32955,epoxide +13.0428255,CHEBI:36005,http://purl.obolibrary.org/obo/CHEBI_36005,docosahexaenoic acid +13.0428255,CHEBI:50308,http://purl.obolibrary.org/obo/CHEBI_50308,cytidine 5'-monophosphate residue +13.0428255,CHEBI:76507,http://purl.obolibrary.org/obo/CHEBI_76507,marine metabolite +13.0428255,CL:0000016,http://purl.obolibrary.org/obo/CL_0000016,male germ line stem cell +13.0428255,CL:0000361,http://purl.obolibrary.org/obo/CL_0000361,gastrula cell +13.0428255,CL:0002215,http://purl.obolibrary.org/obo/CL_0002215,type IIb muscle cell +13.0428255,CL:0002370,http://purl.obolibrary.org/obo/CL_0002370,respiratory goblet cell +13.0428255,DRUGBANK:DB00538,http://purl.obolibrary.org/obo/DRUGBANK_DB00538,none +13.0428255,DRUGBANK:DB00639,http://purl.obolibrary.org/obo/DRUGBANK_DB00639,none +13.0428255,DRUGBANK:DB01102,http://purl.obolibrary.org/obo/DRUGBANK_DB01102,none +13.0428255,DRUGBANK:DB01851,http://purl.obolibrary.org/obo/DRUGBANK_DB01851,none +13.0428255,DRUGBANK:DB03174,http://purl.obolibrary.org/obo/DRUGBANK_DB03174,none +13.0428255,DRUGBANK:DB03497,http://purl.obolibrary.org/obo/DRUGBANK_DB03497,none +13.0428255,DRUGBANK:DB04014,http://purl.obolibrary.org/obo/DRUGBANK_DB04014,none +13.0428255,DRUGBANK:DB04051,http://purl.obolibrary.org/obo/DRUGBANK_DB04051,none +13.0428255,DRUGBANK:DB04093,http://purl.obolibrary.org/obo/DRUGBANK_DB04093,none +13.0428255,DRUGBANK:DB04734,http://purl.obolibrary.org/obo/DRUGBANK_DB04734,none +13.0428255,DRUGBANK:DB05371,http://purl.obolibrary.org/obo/DRUGBANK_DB05371,none +13.0428255,DRUGBANK:DB06080,http://purl.obolibrary.org/obo/DRUGBANK_DB06080,none +13.0428255,DRUGBANK:DB08660,http://purl.obolibrary.org/obo/DRUGBANK_DB08660,none +13.0428255,DRUGBANK:DB09211,http://purl.obolibrary.org/obo/DRUGBANK_DB09211,none +13.0428255,DRUGBANK:DB10862,http://purl.obolibrary.org/obo/DRUGBANK_DB10862,none +13.0428255,DRUGBANK:DB11911,http://purl.obolibrary.org/obo/DRUGBANK_DB11911,none +13.0428255,DRUGBANK:DB12085,http://purl.obolibrary.org/obo/DRUGBANK_DB12085,none +13.0428255,DRUGBANK:DB13559,http://purl.obolibrary.org/obo/DRUGBANK_DB13559,none +13.0428255,DRUGBANK:DB13737,http://purl.obolibrary.org/obo/DRUGBANK_DB13737,none +13.0428255,DRUGBANK:DB13974,http://purl.obolibrary.org/obo/DRUGBANK_DB13974,none +13.0428255,DRUGBANK:DB14129,http://purl.obolibrary.org/obo/DRUGBANK_DB14129,none +13.0428255,DRUGBANK:DB14132,http://purl.obolibrary.org/obo/DRUGBANK_DB14132,none +13.0428255,DRUGBANK:DB14157,http://purl.obolibrary.org/obo/DRUGBANK_DB14157,none +13.0428255,DRUGBANK:DB14909,http://purl.obolibrary.org/obo/DRUGBANK_DB14909,none +13.0428255,DRUGBANK:DB15198,http://purl.obolibrary.org/obo/DRUGBANK_DB15198,none +13.0428255,DRUGBANK:DB15759,http://purl.obolibrary.org/obo/DRUGBANK_DB15759,none +13.0428255,DRUGBANK:DB15875,http://purl.obolibrary.org/obo/DRUGBANK_DB15875,none +13.0428255,GO:0004099,http://purl.obolibrary.org/obo/GO_0004099,chitin deacetylase activity +13.0428255,GO:0004766,http://purl.obolibrary.org/obo/GO_0004766,spermidine synthase activity +13.0428255,GO:0005801,http://purl.obolibrary.org/obo/GO_0005801,cis-Golgi network +13.0428255,GO:0006206,http://purl.obolibrary.org/obo/GO_0006206,pyrimidine nucleobase metabolic process +13.0428255,GO:0006554,http://purl.obolibrary.org/obo/GO_0006554,lysine catabolic process +13.0428255,GO:0007435,http://purl.obolibrary.org/obo/GO_0007435,salivary gland morphogenesis +13.0428255,GO:0007446,http://purl.obolibrary.org/obo/GO_0007446,imaginal disc growth +13.0428255,GO:0008782,http://purl.obolibrary.org/obo/GO_0008782,adenosylhomocysteine nucleosidase activity +13.0428255,GO:0008795,http://purl.obolibrary.org/obo/GO_0008795,NAD+ synthase activity +13.0428255,GO:0015605,http://purl.obolibrary.org/obo/GO_0015605,organophosphate ester transmembrane transporter activity +13.0428255,GO:0015904,http://purl.obolibrary.org/obo/GO_0015904,tetracycline transmembrane transport +13.0428255,GO:0019540,http://purl.obolibrary.org/obo/GO_0019540,catechol-containing siderophore biosynthetic process +13.0428255,GO:0032156,http://purl.obolibrary.org/obo/GO_0032156,septin cytoskeleton +13.0428255,GO:0033189,http://purl.obolibrary.org/obo/GO_0033189,response to vitamin A +13.0428255,GO:0033594,http://purl.obolibrary.org/obo/GO_0033594,response to hydroxyisoflavone +13.0428255,GO:0033788,http://purl.obolibrary.org/obo/GO_0033788,leucoanthocyanidin reductase activity +13.0428255,GO:0033890,http://purl.obolibrary.org/obo/GO_0033890,ribonuclease D activity +13.0428255,GO:0038180,http://purl.obolibrary.org/obo/GO_0038180,nerve growth factor signaling pathway +13.0428255,GO:0042016,http://purl.obolibrary.org/obo/GO_0042016,interleukin-20 receptor activity +13.0428255,GO:0042927,http://purl.obolibrary.org/obo/GO_0042927,none +13.0428255,GO:0043056,http://purl.obolibrary.org/obo/GO_0043056,forward locomotion +13.0428255,GO:0044187,http://purl.obolibrary.org/obo/GO_0044187,host cell lysosome +13.0428255,GO:0045273,http://purl.obolibrary.org/obo/GO_0045273,respiratory chain complex II +13.0428255,GO:0045281,http://purl.obolibrary.org/obo/GO_0045281,succinate dehydrogenase complex +13.0428255,GO:1901499,http://purl.obolibrary.org/obo/GO_1901499,response to hexane +13.0428255,GO:1904404,http://purl.obolibrary.org/obo/GO_1904404,response to formaldehyde +13.0428255,GO:1990474,http://purl.obolibrary.org/obo/GO_1990474,"synaptic vesicle, readily releasable pool" +13.0428255,HP:0000613,http://purl.obolibrary.org/obo/HP_0000613,Photophobia +13.0428255,HP:0001732,http://purl.obolibrary.org/obo/HP_0001732,Abnormality of the pancreas +13.0428255,HP:0002671,http://purl.obolibrary.org/obo/HP_0002671,Basal cell carcinoma +13.0428255,HP:0012532,http://purl.obolibrary.org/obo/HP_0012532,Chronic pain +13.0428255,MONDO:0000647,http://purl.obolibrary.org/obo/MONDO_0000647,benign vaginal neoplasm +13.0428255,MONDO:0001163,http://purl.obolibrary.org/obo/MONDO_0001163,paranoid personality disorder +13.0428255,MONDO:0001188,http://purl.obolibrary.org/obo/MONDO_0001188,esophagus lymphoma +13.0428255,MONDO:0001794,http://purl.obolibrary.org/obo/MONDO_0001794,Pthirus pubis infestation +13.0428255,MONDO:0002117,http://purl.obolibrary.org/obo/MONDO_0002117,pancreas sarcoma +13.0428255,MONDO:0002163,http://purl.obolibrary.org/obo/MONDO_0002163,thymus lipoma +13.0428255,MONDO:0002265,http://purl.obolibrary.org/obo/MONDO_0002265,stereotypic movement disorder +13.0428255,MONDO:0002291,http://purl.obolibrary.org/obo/MONDO_0002291,cutaneous granular cell tumor +13.0428255,MONDO:0002769,http://purl.obolibrary.org/obo/MONDO_0002769,leukorrhea +13.0428255,MONDO:0003843,http://purl.obolibrary.org/obo/MONDO_0003843,cerebral hemisphere lipoma +13.0428255,MONDO:0003845,http://purl.obolibrary.org/obo/MONDO_0003845,corpus callosum lipoma +13.0428255,MONDO:0003950,http://purl.obolibrary.org/obo/MONDO_0003950,nipple carcinoma +13.0428255,MONDO:0004479,http://purl.obolibrary.org/obo/MONDO_0004479,malignant childhood germ cell neoplasm +13.0428255,MONDO:0004604,http://purl.obolibrary.org/obo/MONDO_0004604,"Hodgkin's lymphoma, lymphocytic-histiocytic predominance" +13.0428255,MONDO:0006037,http://purl.obolibrary.org/obo/MONDO_0006037,hydrolethalus syndrome +13.0428255,MONDO:0006369,http://purl.obolibrary.org/obo/MONDO_0006369,pineal parenchymal tumor of intermediate differentiation +13.0428255,MONDO:0006442,http://purl.obolibrary.org/obo/MONDO_0006442,tendon sheath fibroma +13.0428255,MONDO:0006641,http://purl.obolibrary.org/obo/MONDO_0006641,afferent loop syndrome +13.0428255,MONDO:0007119,http://purl.obolibrary.org/obo/MONDO_0007119,isolated aniridia +13.0428255,MONDO:0007422,http://purl.obolibrary.org/obo/MONDO_0007422,keratoderma hereditarium mutilans +13.0428255,MONDO:0008246,http://purl.obolibrary.org/obo/MONDO_0008246,pigmented paravenous retinochoroidal atrophy +13.0428255,MONDO:0009263,http://purl.obolibrary.org/obo/MONDO_0009263,gapo syndrome +13.0428255,MONDO:0012184,http://purl.obolibrary.org/obo/MONDO_0012184,Pierson syndrome +13.0428255,MONDO:0013621,http://purl.obolibrary.org/obo/MONDO_0013621,LAMB2-related infantile-onset nephrotic syndrome +13.0428255,MONDO:0014097,http://purl.obolibrary.org/obo/MONDO_0014097,congenital short bowel syndrome +13.0428255,MONDO:0016141,http://purl.obolibrary.org/obo/MONDO_0016141,qualitative or quantitative defects of alpha-sarcoglycan +13.0428255,MONDO:0016894,http://purl.obolibrary.org/obo/MONDO_0016894,partial deletion of the short arm of chromosome 16 +13.0428255,MONDO:0017942,http://purl.obolibrary.org/obo/MONDO_0017942,Hendra virus infection +13.0428255,MONDO:0018664,http://purl.obolibrary.org/obo/MONDO_0018664,ectopia cordis +13.0428255,MONDO:0019196,http://purl.obolibrary.org/obo/MONDO_0019196,Foix-Alajouanine syndrome +13.0428255,MONDO:0019281,http://purl.obolibrary.org/obo/MONDO_0019281,isolated genetic hair shaft abnormality +13.0428255,MONDO:0019567,http://purl.obolibrary.org/obo/MONDO_0019567,"Ehlers-Danlos syndrome, classic type, 1" +13.0428255,MONDO:0019718,http://purl.obolibrary.org/obo/MONDO_0019718,lethal chondrodysplasia +13.0428255,MONDO:0044336,http://purl.obolibrary.org/obo/MONDO_0044336,colorectal signet ring cell carcinoma +13.0428255,MONDO:0044744,http://purl.obolibrary.org/obo/MONDO_0044744,prekallikrein deficiency +13.0428255,MOP:0000684,http://purl.obolibrary.org/obo/MOP_0000684,none +13.0428255,NCBITaxon:10562,http://purl.obolibrary.org/obo/NCBITaxon_10562,none +13.0428255,NCBITaxon:10815,http://purl.obolibrary.org/obo/NCBITaxon_10815,none +13.0428255,NCBITaxon:10829,http://purl.obolibrary.org/obo/NCBITaxon_10829,none +13.0428255,NCBITaxon:206036,http://purl.obolibrary.org/obo/NCBITaxon_206036,none +13.0428255,NCBITaxon:216706,http://purl.obolibrary.org/obo/NCBITaxon_216706,none +13.0428255,NCBITaxon:223472,http://purl.obolibrary.org/obo/NCBITaxon_223472,Psoroptidia +13.0428255,NCBITaxon:310542,http://purl.obolibrary.org/obo/NCBITaxon_310542,none +13.0428255,NCBITaxon:33406,http://purl.obolibrary.org/obo/NCBITaxon_33406,none +13.0428255,NCBITaxon:39780,http://purl.obolibrary.org/obo/NCBITaxon_39780,none +13.0428255,NCBITaxon:413684,http://purl.obolibrary.org/obo/NCBITaxon_413684,none +13.0428255,NCBITaxon:43793,http://purl.obolibrary.org/obo/NCBITaxon_43793,none +13.0428255,NCBITaxon:4618,http://purl.obolibrary.org/obo/NCBITaxon_4618,none +13.0428255,NCBITaxon:68876,http://purl.obolibrary.org/obo/NCBITaxon_68876,none +13.0428255,NCBITaxon:81931,http://purl.obolibrary.org/obo/NCBITaxon_81931,none +13.0428255,PR:000004003,http://purl.obolibrary.org/obo/PR_000004003,AMP deaminase 3 +13.0428255,PR:000004178,http://purl.obolibrary.org/obo/PR_000004178,aquaporin-10 +13.0428255,PR:000004654,http://purl.obolibrary.org/obo/PR_000004654,basic leucine zipper transcriptional factor ATF-like +13.0428255,PR:000004684,http://purl.obolibrary.org/obo/PR_000004684,BRCA2 and CDKN1A-interacting protein +13.0428255,PR:000004985,http://purl.obolibrary.org/obo/PR_000004985,calreticulin-3 +13.0428255,PR:000005067,http://purl.obolibrary.org/obo/PR_000005067,protein CBFA2T2 +13.0428255,PR:000005140,http://purl.obolibrary.org/obo/PR_000005140,cyclin-T2 +13.0428255,PR:000005325,http://purl.obolibrary.org/obo/PR_000005325,centromere protein C +13.0428255,PR:000005910,http://purl.obolibrary.org/obo/PR_000005910,beta-crystallin A4 +13.0428255,PR:000007261,http://purl.obolibrary.org/obo/PR_000007261,exosome complex component RRP41 +13.0428255,PR:000008133,http://purl.obolibrary.org/obo/PR_000008133,golgin subfamily A member 4 +13.0428255,PR:000008607,http://purl.obolibrary.org/obo/PR_000008607,Holliday junction recognition protein +13.0428255,PR:000008732,http://purl.obolibrary.org/obo/PR_000008732,15-hydroxyprostaglandin dehydrogenase [NAD(+)] +13.0428255,PR:000008896,http://purl.obolibrary.org/obo/PR_000008896,immediate early response gene 2 protein +13.0428255,PR:000008933,http://purl.obolibrary.org/obo/PR_000008933,intraflagellar transport protein 172 +13.0428255,PR:000009019,http://purl.obolibrary.org/obo/PR_000009019,protein IMPACT +13.0428255,PR:000009258,http://purl.obolibrary.org/obo/PR_000009258,potassium voltage-gated channel subfamily E member 4 +13.0428255,PR:000009271,http://purl.obolibrary.org/obo/PR_000009271,potassium channel subfamily U member 1 +13.0428255,PR:000009814,http://purl.obolibrary.org/obo/PR_000009814,LIM domain and actin-binding protein 1 +13.0428255,PR:000010166,http://purl.obolibrary.org/obo/PR_000010166,MAP kinase-activated protein kinase 3 +13.0428255,PR:000010233,http://purl.obolibrary.org/obo/PR_000010233,"methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial" +13.0428255,PR:000010239,http://purl.obolibrary.org/obo/PR_000010239,multiple coagulation factor deficiency protein 2 +13.0428255,PR:000010756,http://purl.obolibrary.org/obo/PR_000010756,metaxin-2 +13.0428255,PR:000012091,http://purl.obolibrary.org/obo/PR_000012091,transcription factor Ovo-like 2 +13.0428255,PR:000012288,http://purl.obolibrary.org/obo/PR_000012288,poly(A)-specific ribonuclease PARN +13.0428255,PR:000012849,http://purl.obolibrary.org/obo/PR_000012849,biogenesis of lysosome-related organelles complex 1 subunit 6 +13.0428255,PR:000013001,http://purl.obolibrary.org/obo/PR_000013001,DNA-directed RNA polymerase III subunit RPC2 +13.0428255,PR:000013582,http://purl.obolibrary.org/obo/PR_000013582,Rab11 family-interacting protein 2 +13.0428255,PR:000013624,http://purl.obolibrary.org/obo/PR_000013624,Rab-3A-interacting protein +13.0428255,PR:000014232,http://purl.obolibrary.org/obo/PR_000014232,60S ribosomal protein L7 +13.0428255,PR:000015011,http://purl.obolibrary.org/obo/PR_000015011,Graves disease carrier protein +13.0428255,PR:000015220,http://purl.obolibrary.org/obo/PR_000015220,sodium/hydrogen exchanger 8 +13.0428255,PR:000015630,http://purl.obolibrary.org/obo/PR_000015630,SRSF protein kinase 2 +13.0428255,PR:000015800,http://purl.obolibrary.org/obo/PR_000015800,syntaxin-8 +13.0428255,PR:000015911,http://purl.obolibrary.org/obo/PR_000015911,synaptotagmin-9 +13.0428255,PR:000016472,http://purl.obolibrary.org/obo/PR_000016472,BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 2 +13.0428255,PR:000016645,http://purl.obolibrary.org/obo/PR_000016645,tripartite motif-containing protein 16 +13.0428255,PR:000017293,http://purl.obolibrary.org/obo/PR_000017293,transcription cofactor vestigial-like protein 4 +13.0428255,PR:000017341,http://purl.obolibrary.org/obo/PR_000017341,vacuolar protein sorting-associated protein 45 +13.0428255,PR:000017673,http://purl.obolibrary.org/obo/PR_000017673,zinc finger protein with KRAB and SCAN domains 1 +13.0428255,PR:000017785,http://purl.obolibrary.org/obo/PR_000017785,zinc finger protein ZPR1 +13.0428255,PR:000022051,http://purl.obolibrary.org/obo/PR_000022051,none +13.0428255,PR:000022319,http://purl.obolibrary.org/obo/PR_000022319,none +13.0428255,PR:000022326,http://purl.obolibrary.org/obo/PR_000022326,none +13.0428255,PR:000022573,http://purl.obolibrary.org/obo/PR_000022573,none +13.0428255,PR:000022712,http://purl.obolibrary.org/obo/PR_000022712,none +13.0428255,PR:000022864,http://purl.obolibrary.org/obo/PR_000022864,none +13.0428255,PR:000023155,http://purl.obolibrary.org/obo/PR_000023155,none +13.0428255,PR:000023604,http://purl.obolibrary.org/obo/PR_000023604,none +13.0428255,PR:000023801,http://purl.obolibrary.org/obo/PR_000023801,none +13.0428255,PR:000023918,http://purl.obolibrary.org/obo/PR_000023918,none +13.0428255,PR:000025601,http://purl.obolibrary.org/obo/PR_000025601,amyloid-beta precursor protein sequence variant KM670/671NL (human) +13.0428255,PR:000029157,http://purl.obolibrary.org/obo/PR_000029157,none +13.0428255,PR:000029160,http://purl.obolibrary.org/obo/PR_000029160,none +13.0428255,PR:000031107,http://purl.obolibrary.org/obo/PR_000031107,putative transcription factor Ovo-like 1 +13.0428255,PR:000031186,http://purl.obolibrary.org/obo/PR_000031186,aldehyde dehydrogenase family 3 member B1 +13.0428255,PR:000035731,http://purl.obolibrary.org/obo/PR_000035731,K63-polyubiquitin +13.0428255,PR:A7Y7W2,http://purl.obolibrary.org/obo/PR_A7Y7W2,none +13.0428255,PR:O80338,http://purl.obolibrary.org/obo/PR_O80338,none +13.0428255,PR:P08539,http://purl.obolibrary.org/obo/PR_P08539,none +13.0428255,PR:P0DJ26,http://purl.obolibrary.org/obo/PR_P0DJ26,none +13.0428255,PR:P12962,http://purl.obolibrary.org/obo/PR_P12962,none +13.0428255,PR:P20790,http://purl.obolibrary.org/obo/PR_P20790,none +13.0428255,PR:P32372,http://purl.obolibrary.org/obo/PR_P32372,none +13.0428255,PR:P34167,http://purl.obolibrary.org/obo/PR_P34167,none +13.0428255,PR:P54786,http://purl.obolibrary.org/obo/PR_P54786,none +13.0428255,PR:Q00174,http://purl.obolibrary.org/obo/PR_Q00174,none +13.0428255,PR:Q08683,http://purl.obolibrary.org/obo/PR_Q08683,none +13.0428255,PR:Q0G819,http://purl.obolibrary.org/obo/PR_Q0G819,none +13.0428255,PR:Q1LWL2,http://purl.obolibrary.org/obo/PR_Q1LWL2,none +13.0428255,PR:Q60670,http://purl.obolibrary.org/obo/PR_Q60670,none +13.0428255,PR:Q62240,http://purl.obolibrary.org/obo/PR_Q62240,none +13.0428255,PR:Q6IQ97,http://purl.obolibrary.org/obo/PR_Q6IQ97,none +13.0428255,PR:Q9SEL6,http://purl.obolibrary.org/obo/PR_Q9SEL6,none +13.0428255,PR:Q9SJN0,http://purl.obolibrary.org/obo/PR_Q9SJN0,none +13.0428255,PR:Q9ZU11,http://purl.obolibrary.org/obo/PR_Q9ZU11,none +13.0428255,SO:0001192,http://purl.obolibrary.org/obo/SO_0001192,GNA +13.0428255,UBERON:0001250,http://purl.obolibrary.org/obo/UBERON_0001250,red pulp of spleen +13.0428255,UBERON:0001297,http://purl.obolibrary.org/obo/UBERON_0001297,serosa of uterus +13.0428255,UBERON:0001430,http://purl.obolibrary.org/obo/UBERON_0001430,distal carpal bone 1 +13.0428255,UBERON:0002468,http://purl.obolibrary.org/obo/UBERON_0002468,foliate papilla +13.0428255,UBERON:0003676,http://purl.obolibrary.org/obo/UBERON_0003676,patellar ligament +13.0428255,UBERON:0004477,http://purl.obolibrary.org/obo/UBERON_0004477,none +13.0428255,UBERON:0006207,http://purl.obolibrary.org/obo/UBERON_0006207,aortico-pulmonary spiral septum +13.0428255,UBERON:0009067,http://purl.obolibrary.org/obo/UBERON_0009067,abdominal air sac +13.0428255,UBERON:0009651,http://purl.obolibrary.org/obo/UBERON_0009651,nephron tubule basement membrane +13.0428255,UBERON:0009963,http://purl.obolibrary.org/obo/UBERON_0009963,antennal gland +13.0428255,UBERON:0011263,http://purl.obolibrary.org/obo/UBERON_0011263,femoral gland +13.0428255,UBERON:0015084,http://purl.obolibrary.org/obo/UBERON_0015084,distal carpal bone 1 endochondral element +13.0428255,UBERON:3010021,http://purl.obolibrary.org/obo/UBERON_3010021,dorsal glands +13.0428255,UBERON:3010183,http://purl.obolibrary.org/obo/UBERON_3010183,femoral glands +13.0428255,UBERON:4200047,http://purl.obolibrary.org/obo/UBERON_4200047,attachment site +13.0428255,UBERON:4200106,http://purl.obolibrary.org/obo/UBERON_4200106,muscle scar +13.0630282,CHEBI:16040,http://purl.obolibrary.org/obo/CHEBI_16040,cytosine +13.0630282,CHEBI:17154,http://purl.obolibrary.org/obo/CHEBI_17154,nicotinamide +13.0630282,CHEBI:17361,http://purl.obolibrary.org/obo/CHEBI_17361,cytidine 5'-monophosphate +13.0630282,CHEBI:17562,http://purl.obolibrary.org/obo/CHEBI_17562,cytidine +13.0630282,CHEBI:23521,http://purl.obolibrary.org/obo/CHEBI_23521,cytidine 5'-phosphate +13.0630282,CHEBI:23523,http://purl.obolibrary.org/obo/CHEBI_23523,cytidine phosphate +13.0630282,CHEBI:23525,http://purl.obolibrary.org/obo/CHEBI_23525,cytidyl group +13.0630282,CHEBI:23526,http://purl.obolibrary.org/obo/CHEBI_23526,5'-cytidylyl group +13.0630282,CHEBI:25529,http://purl.obolibrary.org/obo/CHEBI_25529,pyridinecarboxamide +13.0630282,CHEBI:26438,http://purl.obolibrary.org/obo/CHEBI_26438,pyrimidine nucleoside monophosphate +13.0630282,CHEBI:26443,http://purl.obolibrary.org/obo/CHEBI_26443,pyrimidine ribonucleoside monophosphate +13.0630282,CHEBI:33653,http://purl.obolibrary.org/obo/CHEBI_33653,aliphatic compound +13.0630282,CHEBI:39457,http://purl.obolibrary.org/obo/CHEBI_39457,pyrimidine ribonucleoside 5'-monophosphate +13.0630282,CHEBI:48154,http://purl.obolibrary.org/obo/CHEBI_48154,sulfur oxide +13.0630282,CHEBI:51569,http://purl.obolibrary.org/obo/CHEBI_51569,N-acyl-amino acid +13.0630282,CHEBI:53103,http://purl.obolibrary.org/obo/CHEBI_53103,CMP 5'-end residue +13.0630282,CHEBI:53116,http://purl.obolibrary.org/obo/CHEBI_53116,CMP 3'-end residue +13.0630282,CHEBI:59230,http://purl.obolibrary.org/obo/CHEBI_59230,acetate salt +13.0630282,CHEBI:64389,http://purl.obolibrary.org/obo/CHEBI_64389,biogenic silica +13.0630282,CHEBI:64589,http://purl.obolibrary.org/obo/CHEBI_64589,glycine receptor agonist +13.0630282,CHEBI:64656,http://purl.obolibrary.org/obo/CHEBI_64656,cytidine residue +13.0630282,CHEBI:65273,http://purl.obolibrary.org/obo/CHEBI_65273,cytosin1-yl group +13.0630282,CHEBI:73319,http://purl.obolibrary.org/obo/CHEBI_73319,adenosine A3 receptor agonist +13.0630282,CL:0000621,http://purl.obolibrary.org/obo/CL_0000621,fusion competent myoblast +13.0630282,CL:0000636,http://purl.obolibrary.org/obo/CL_0000636,Mueller cell +13.0630282,DRUGBANK:DB00106,http://purl.obolibrary.org/obo/DRUGBANK_DB00106,none +13.0630282,DRUGBANK:DB01146,http://purl.obolibrary.org/obo/DRUGBANK_DB01146,none +13.0630282,DRUGBANK:DB01434,http://purl.obolibrary.org/obo/DRUGBANK_DB01434,none +13.0630282,DRUGBANK:DB01463,http://purl.obolibrary.org/obo/DRUGBANK_DB01463,none +13.0630282,DRUGBANK:DB01489,http://purl.obolibrary.org/obo/DRUGBANK_DB01489,none +13.0630282,DRUGBANK:DB03687,http://purl.obolibrary.org/obo/DRUGBANK_DB03687,none +13.0630282,DRUGBANK:DB03909,http://purl.obolibrary.org/obo/DRUGBANK_DB03909,none +13.0630282,DRUGBANK:DB04111,http://purl.obolibrary.org/obo/DRUGBANK_DB04111,none +13.0630282,DRUGBANK:DB06629,http://purl.obolibrary.org/obo/DRUGBANK_DB06629,none +13.0630282,DRUGBANK:DB08968,http://purl.obolibrary.org/obo/DRUGBANK_DB08968,none +13.0630282,DRUGBANK:DB09105,http://purl.obolibrary.org/obo/DRUGBANK_DB09105,none +13.0630282,DRUGBANK:DB09174,http://purl.obolibrary.org/obo/DRUGBANK_DB09174,none +13.0630282,DRUGBANK:DB10697,http://purl.obolibrary.org/obo/DRUGBANK_DB10697,none +13.0630282,DRUGBANK:DB11411,http://purl.obolibrary.org/obo/DRUGBANK_DB11411,none +13.0630282,DRUGBANK:DB11792,http://purl.obolibrary.org/obo/DRUGBANK_DB11792,none +13.0630282,DRUGBANK:DB11972,http://purl.obolibrary.org/obo/DRUGBANK_DB11972,none +13.0630282,DRUGBANK:DB11979,http://purl.obolibrary.org/obo/DRUGBANK_DB11979,none +13.0630282,DRUGBANK:DB12189,http://purl.obolibrary.org/obo/DRUGBANK_DB12189,none +13.0630282,DRUGBANK:DB12456,http://purl.obolibrary.org/obo/DRUGBANK_DB12456,none +13.0630282,DRUGBANK:DB12638,http://purl.obolibrary.org/obo/DRUGBANK_DB12638,none +13.0630282,DRUGBANK:DB12954,http://purl.obolibrary.org/obo/DRUGBANK_DB12954,none +13.0630282,DRUGBANK:DB13170,http://purl.obolibrary.org/obo/DRUGBANK_DB13170,none +13.0630282,DRUGBANK:DB13177,http://purl.obolibrary.org/obo/DRUGBANK_DB13177,none +13.0630282,DRUGBANK:DB14181,http://purl.obolibrary.org/obo/DRUGBANK_DB14181,none +13.0630282,DRUGBANK:DB14582,http://purl.obolibrary.org/obo/DRUGBANK_DB14582,none +13.0630282,DRUGBANK:DB14844,http://purl.obolibrary.org/obo/DRUGBANK_DB14844,none +13.0630282,DRUGBANK:DB16013,http://purl.obolibrary.org/obo/DRUGBANK_DB16013,none +13.0630282,GO:0000160,http://purl.obolibrary.org/obo/GO_0000160,phosphorelay signal transduction system +13.0630282,GO:0001767,http://purl.obolibrary.org/obo/GO_0001767,establishment of lymphocyte polarity +13.0630282,GO:0003977,http://purl.obolibrary.org/obo/GO_0003977,UDP-N-acetylglucosamine diphosphorylase activity +13.0630282,GO:0004516,http://purl.obolibrary.org/obo/GO_0004516,nicotinate phosphoribosyltransferase activity +13.0630282,GO:0004560,http://purl.obolibrary.org/obo/GO_0004560,alpha-L-fucosidase activity +13.0630282,GO:0004605,http://purl.obolibrary.org/obo/GO_0004605,phosphatidate cytidylyltransferase activity +13.0630282,GO:0008079,http://purl.obolibrary.org/obo/GO_0008079,translation termination factor activity +13.0630282,GO:0008107,http://purl.obolibrary.org/obo/GO_0008107,galactoside 2-alpha-L-fucosyltransferase activity +13.0630282,GO:0008740,http://purl.obolibrary.org/obo/GO_0008740,L-rhamnose isomerase activity +13.0630282,GO:0009174,http://purl.obolibrary.org/obo/GO_0009174,pyrimidine ribonucleoside monophosphate biosynthetic process +13.0630282,GO:0009635,http://purl.obolibrary.org/obo/GO_0009635,response to herbicide +13.0630282,GO:0010577,http://purl.obolibrary.org/obo/GO_0010577,none +13.0630282,GO:0015848,http://purl.obolibrary.org/obo/GO_0015848,spermidine transport +13.0630282,GO:0015857,http://purl.obolibrary.org/obo/GO_0015857,uracil transport +13.0630282,GO:0016635,http://purl.obolibrary.org/obo/GO_0016635,"oxidoreductase activity, acting on the CH-CH group of donors, quinone or related compound as acceptor" +13.0630282,GO:0035075,http://purl.obolibrary.org/obo/GO_0035075,response to ecdysone +13.0630282,GO:0035483,http://purl.obolibrary.org/obo/GO_0035483,gastric emptying +13.0630282,GO:0035709,http://purl.obolibrary.org/obo/GO_0035709,memory T cell activation +13.0630282,GO:0036206,http://purl.obolibrary.org/obo/GO_0036206,none +13.0630282,GO:0036274,http://purl.obolibrary.org/obo/GO_0036274,response to lapatinib +13.0630282,GO:0038149,http://purl.obolibrary.org/obo/GO_0038149,C-C motif chemokine 2 receptor activity +13.0630282,GO:0043390,http://purl.obolibrary.org/obo/GO_0043390,none +13.0630282,GO:0045181,http://purl.obolibrary.org/obo/GO_0045181,"glutamate synthase activity, NAD(P)H as acceptor" +13.0630282,GO:0046358,http://purl.obolibrary.org/obo/GO_0046358,butyrate biosynthetic process +13.0630282,GO:0046696,http://purl.obolibrary.org/obo/GO_0046696,lipopolysaccharide receptor complex +13.0630282,GO:0050220,http://purl.obolibrary.org/obo/GO_0050220,prostaglandin-E synthase activity +13.0630282,GO:0050333,http://purl.obolibrary.org/obo/GO_0050333,thiamin-triphosphatase activity +13.0630282,GO:0050417,http://purl.obolibrary.org/obo/GO_0050417,glutamin-(asparagin-)ase activity +13.0630282,GO:0050433,http://purl.obolibrary.org/obo/GO_0050433,regulation of catecholamine secretion +13.0630282,GO:0060009,http://purl.obolibrary.org/obo/GO_0060009,Sertoli cell development +13.0630282,GO:0060025,http://purl.obolibrary.org/obo/GO_0060025,regulation of synaptic activity +13.0630282,GO:0098534,http://purl.obolibrary.org/obo/GO_0098534,centriole assembly +13.0630282,GO:0150172,http://purl.obolibrary.org/obo/GO_0150172,regulation of phosphatidylcholine metabolic process +13.0630282,GO:1903108,http://purl.obolibrary.org/obo/GO_1903108,regulation of mitochondrial transcription +13.0630282,GO:2001245,http://purl.obolibrary.org/obo/GO_2001245,regulation of phosphatidylcholine biosynthetic process +13.0630282,HP:0025303,http://purl.obolibrary.org/obo/HP_0025303,Episodic +13.0630282,MONDO:0003138,http://purl.obolibrary.org/obo/MONDO_0003138,subacute glomerulonephritis +13.0630282,MONDO:0003614,http://purl.obolibrary.org/obo/MONDO_0003614,intravenous leiomyomatosis +13.0630282,MONDO:0004234,http://purl.obolibrary.org/obo/MONDO_0004234,chronic lymphoproliferative disorder of NK-cells +13.0630282,MONDO:0004969,http://purl.obolibrary.org/obo/MONDO_0004969,acute quadriplegic myopathy +13.0630282,MONDO:0005115,http://purl.obolibrary.org/obo/MONDO_0005115,temporal lobe epilepsy +13.0630282,MONDO:0006843,http://purl.obolibrary.org/obo/MONDO_0006843,macular holes +13.0630282,MONDO:0007949,http://purl.obolibrary.org/obo/MONDO_0007949,Marshall syndrome +13.0630282,MONDO:0008275,http://purl.obolibrary.org/obo/MONDO_0008275,familial expansile osteolysis +13.0630282,MONDO:0009388,http://purl.obolibrary.org/obo/MONDO_0009388,hyperlysinemia +13.0630282,MONDO:0009894,http://purl.obolibrary.org/obo/MONDO_0009894,short-rib thoracic dysplasia 6 with or without polydactyly +13.0630282,MONDO:0009897,http://purl.obolibrary.org/obo/MONDO_0009897,adult polyglucosan body disease +13.0630282,MONDO:0010215,http://purl.obolibrary.org/obo/MONDO_0010215,xeroderma pigmentosum group F +13.0630282,MONDO:0011194,http://purl.obolibrary.org/obo/MONDO_0011194,Alzheimer disease 5 +13.0630282,MONDO:0011412,http://purl.obolibrary.org/obo/MONDO_0011412,familial encephalopathy with neuroserpin inclusion bodies +13.0630282,MONDO:0011576,http://purl.obolibrary.org/obo/MONDO_0011576,familial hyperaldosteronism type II +13.0630282,MONDO:0013359,http://purl.obolibrary.org/obo/MONDO_0013359,familial hyperaldosteronism type III +13.0630282,MONDO:0016089,http://purl.obolibrary.org/obo/MONDO_0016089,infantile Krabbe disease +13.0630282,MONDO:0016256,http://purl.obolibrary.org/obo/MONDO_0016256,Hennekam syndrome +13.0630282,MONDO:0016322,http://purl.obolibrary.org/obo/MONDO_0016322,neuroendocrine cell hyperplasia of infancy +13.0630282,MONDO:0019080,http://purl.obolibrary.org/obo/MONDO_0019080,alopecia totalis +13.0630282,MONDO:0019104,http://purl.obolibrary.org/obo/MONDO_0019104,Sandifer syndrome +13.0630282,MONDO:0019385,http://purl.obolibrary.org/obo/MONDO_0019385,steroid-responsive encephalopathy associated with autoimmune thyroiditis +13.0630282,MONDO:0019576,http://purl.obolibrary.org/obo/MONDO_0019576,telangiectasia macularis eruptiva perstans +13.0630282,MONDO:0019948,http://purl.obolibrary.org/obo/MONDO_0019948,reducing body myopathy +13.0630282,MONDO:0020686,http://purl.obolibrary.org/obo/MONDO_0020686,acute tonsillitis +13.0630282,MONDO:0021977,http://purl.obolibrary.org/obo/MONDO_0021977,basaloid follicular hamartoma +13.0630282,NCBITaxon:107265,http://purl.obolibrary.org/obo/NCBITaxon_107265,none +13.0630282,NCBITaxon:11060,http://purl.obolibrary.org/obo/NCBITaxon_11060,none +13.0630282,NCBITaxon:1511913,http://purl.obolibrary.org/obo/NCBITaxon_1511913,none +13.0630282,NCBITaxon:186805,http://purl.obolibrary.org/obo/NCBITaxon_186805,none +13.0630282,NCBITaxon:2092,http://purl.obolibrary.org/obo/NCBITaxon_2092,Mycoplasmataceae +13.0630282,NCBITaxon:289365,http://purl.obolibrary.org/obo/NCBITaxon_289365,none +13.0630282,NCBITaxon:355688,http://purl.obolibrary.org/obo/NCBITaxon_355688,none +13.0630282,NCBITaxon:39757,http://purl.obolibrary.org/obo/NCBITaxon_39757,none +13.0630282,NCBITaxon:39758,http://purl.obolibrary.org/obo/NCBITaxon_39758,none +13.0630282,NCBITaxon:46793,http://purl.obolibrary.org/obo/NCBITaxon_46793,none +13.0630282,NCBITaxon:52721,http://purl.obolibrary.org/obo/NCBITaxon_52721,none +13.0630282,NCBITaxon:52722,http://purl.obolibrary.org/obo/NCBITaxon_52722,none +13.0630282,NCBITaxon:713636,http://purl.obolibrary.org/obo/NCBITaxon_713636,none +13.0630282,NCBITaxon:87786,http://purl.obolibrary.org/obo/NCBITaxon_87786,none +13.0630282,NCBITaxon:90627,http://purl.obolibrary.org/obo/NCBITaxon_90627,none +13.0630282,PR:000001823,http://purl.obolibrary.org/obo/PR_000001823,MHC class II transactivator +13.0630282,PR:000004277,http://purl.obolibrary.org/obo/PR_000004277,ADP-ribosylation factor-like protein 13B +13.0630282,PR:000004927,http://purl.obolibrary.org/obo/PR_000004927,calcium-binding protein 39 +13.0630282,PR:000004963,http://purl.obolibrary.org/obo/PR_000004963,cell adhesion molecule 4 +13.0630282,PR:000005228,http://purl.obolibrary.org/obo/PR_000005228,Rho GTPase-activating protein 31 +13.0630282,PR:000005747,http://purl.obolibrary.org/obo/PR_000005747,coatomer subunit zeta-1 +13.0630282,PR:000006284,http://purl.obolibrary.org/obo/PR_000006284,deleted in azoospermia protein 1 +13.0630282,PR:000006345,http://purl.obolibrary.org/obo/PR_000006345,protein DDI1 homolog 1 +13.0630282,PR:000006517,http://purl.obolibrary.org/obo/PR_000006517,disks large-associated protein 2 +13.0630282,PR:000006665,http://purl.obolibrary.org/obo/PR_000006665,developmental pluripotency-associated protein 2 +13.0630282,PR:000006695,http://purl.obolibrary.org/obo/PR_000006695,Down syndrome cell adhesion molecule +13.0630282,PR:000007117,http://purl.obolibrary.org/obo/PR_000007117,enhancer of polycomb homolog 2 +13.0630282,PR:000007171,http://purl.obolibrary.org/obo/PR_000007171,proepiregulin +13.0630282,PR:000008299,http://purl.obolibrary.org/obo/PR_000008299,glutathione S-transferase kappa 1 +13.0630282,PR:000008723,http://purl.obolibrary.org/obo/PR_000008723,homeobox protein Hox-D8 +13.0630282,PR:000008758,http://purl.obolibrary.org/obo/PR_000008758,heparan sulfate glucosamine 3-O-sulfotransferase 1 +13.0630282,PR:000008823,http://purl.obolibrary.org/obo/PR_000008823,Hsp70-binding protein 1 +13.0630282,PR:000009842,http://purl.obolibrary.org/obo/PR_000009842,"lipoyltransferase 1, mitochondrial" +13.0630282,PR:000010107,http://purl.obolibrary.org/obo/PR_000010107,lysosomal alpha-mannosidase +13.0630282,PR:000010392,http://purl.obolibrary.org/obo/PR_000010392,microsomal glutathione S-transferase 3 +13.0630282,PR:000010878,http://purl.obolibrary.org/obo/PR_000010878,myomesin-1 +13.0630282,PR:000011018,http://purl.obolibrary.org/obo/PR_000011018,neural cell adhesion molecule 2 +13.0630282,PR:000011022,http://purl.obolibrary.org/obo/PR_000011022,condensin complex subunit 3 +13.0630282,PR:000011608,http://purl.obolibrary.org/obo/PR_000011608,teneurin-3 +13.0630282,PR:000011752,http://purl.obolibrary.org/obo/PR_000011752,olfactory receptor 2AG1 +13.0630282,PR:000011911,http://purl.obolibrary.org/obo/PR_000011911,olfactory receptor 5AC2 +13.0630282,PR:000012218,http://purl.obolibrary.org/obo/PR_000012218,protein kinase C and casein kinase substrate in neurons protein 2 +13.0630282,PR:000012485,http://purl.obolibrary.org/obo/PR_000012485,"cAMP-specific 3',5'-cyclic phosphodiesterase 7B" +13.0630282,PR:000013231,http://purl.obolibrary.org/obo/PR_000013231,cAMP-dependent protein kinase type II-beta regulatory subunit +13.0630282,PR:000013364,http://purl.obolibrary.org/obo/PR_000013364,proteasome subunit alpha type-5 +13.0630282,PR:000013727,http://purl.obolibrary.org/obo/PR_000013727,Rap guanine nucleotide exchange factor 2 +13.0630282,PR:000013767,http://purl.obolibrary.org/obo/PR_000013767,Ras association domain-containing protein 6 +13.0630282,PR:000013779,http://purl.obolibrary.org/obo/PR_000013779,histone-binding protein RBBP7 +13.0630282,PR:000014205,http://purl.obolibrary.org/obo/PR_000014205,60S ribosomal protein L24 +13.0630282,PR:000014690,http://purl.obolibrary.org/obo/PR_000014690,serpin B10 +13.0630282,PR:000014799,http://purl.obolibrary.org/obo/PR_000014799,shugoshin 2 +13.0630282,PR:000015112,http://purl.obolibrary.org/obo/PR_000015112,proton-coupled amino acid transporter 3 +13.0630282,PR:000015812,http://purl.obolibrary.org/obo/PR_000015812,"succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial" +13.0630282,PR:000016177,http://purl.obolibrary.org/obo/PR_000016177,transcription factor 15 +13.0630282,PR:000016216,http://purl.obolibrary.org/obo/PR_000016216,tudor domain-containing protein 1 +13.0630282,PR:000016327,http://purl.obolibrary.org/obo/PR_000016327,nucleolysin TIAR +13.0630282,PR:000016507,http://purl.obolibrary.org/obo/PR_000016507,serine/threonine-protein kinase TNNI3K +13.0630282,PR:000016540,http://purl.obolibrary.org/obo/PR_000016540,mitochondrial import receptor subunit TOM7 +13.0630282,PR:000017123,http://purl.obolibrary.org/obo/PR_000017123,cytochrome b-c1 complex subunit 7 +13.0630282,PR:000017334,http://purl.obolibrary.org/obo/PR_000017334,vacuolar protein-sorting-associated protein 36 +13.0630282,PR:000022040,http://purl.obolibrary.org/obo/PR_000022040,none +13.0630282,PR:000022208,http://purl.obolibrary.org/obo/PR_000022208,none +13.0630282,PR:000022278,http://purl.obolibrary.org/obo/PR_000022278,none +13.0630282,PR:000023454,http://purl.obolibrary.org/obo/PR_000023454,none +13.0630282,PR:000023633,http://purl.obolibrary.org/obo/PR_000023633,none +13.0630282,PR:000024063,http://purl.obolibrary.org/obo/PR_000024063,none +13.0630282,PR:000025744,http://purl.obolibrary.org/obo/PR_000025744,none +13.0630282,PR:000029247,http://purl.obolibrary.org/obo/PR_000029247,none +13.0630282,PR:000029595,http://purl.obolibrary.org/obo/PR_000029595,LIM domain-containing protein 1 +13.0630282,PR:000030954,http://purl.obolibrary.org/obo/PR_000030954,"RNA-binding motif protein, Y chromosome, family 1 member A1" +13.0630282,PR:000031475,http://purl.obolibrary.org/obo/PR_000031475,"probable dolichyl pyrophosphate Glc1Man9GlcNAc2 alpha-1,3-glucosyltransferase" +13.0630282,PR:000031665,http://purl.obolibrary.org/obo/PR_000031665,McKusick-Kaufman/Bardet-Biedl syndromes putative chaperonin +13.0630282,PR:000032255,http://purl.obolibrary.org/obo/PR_000032255,rhox homeobox family member 2 +13.0630282,PR:000032288,http://purl.obolibrary.org/obo/PR_000032288,Rho-related BTB domain-containing protein 2 +13.0630282,PR:000032516,http://purl.obolibrary.org/obo/PR_000032516,LIM domain only protein 3 +13.0630282,PR:000032643,http://purl.obolibrary.org/obo/PR_000032643,ankyrin repeat and LEM domain-containing protein 1 +13.0630282,PR:000033633,http://purl.obolibrary.org/obo/PR_000033633,none +13.0630282,PR:000034428,http://purl.obolibrary.org/obo/PR_000034428,none +13.0630282,PR:000034776,http://purl.obolibrary.org/obo/PR_000034776,none +13.0630282,PR:000035750,http://purl.obolibrary.org/obo/PR_000035750,none +13.0630282,PR:O13688,http://purl.obolibrary.org/obo/PR_O13688,none +13.0630282,PR:O81270,http://purl.obolibrary.org/obo/PR_O81270,none +13.0630282,PR:P02788,http://purl.obolibrary.org/obo/PR_P02788,lactotransferrin (human) +13.0630282,PR:P13745,http://purl.obolibrary.org/obo/PR_P13745,none +13.0630282,PR:P23380,http://purl.obolibrary.org/obo/PR_P23380,none +13.0630282,PR:P32027,http://purl.obolibrary.org/obo/PR_P32027,none +13.0630282,PR:P34072,http://purl.obolibrary.org/obo/PR_P34072,none +13.0630282,PR:P35133,http://purl.obolibrary.org/obo/PR_P35133,none +13.0630282,PR:P52285,http://purl.obolibrary.org/obo/PR_P52285,none +13.0630282,PR:Q00955,http://purl.obolibrary.org/obo/PR_Q00955,none +13.0630282,PR:Q03818,http://purl.obolibrary.org/obo/PR_Q03818,none +13.0630282,PR:Q39096,http://purl.obolibrary.org/obo/PR_Q39096,none +13.0630282,PR:Q41963,http://purl.obolibrary.org/obo/PR_Q41963,none +13.0630282,PR:Q59DY6,http://purl.obolibrary.org/obo/PR_Q59DY6,none +13.0630282,PR:Q90ZY6,http://purl.obolibrary.org/obo/PR_Q90ZY6,none +13.0630282,PR:Q9BIW4,http://purl.obolibrary.org/obo/PR_Q9BIW4,none +13.0630282,PR:Q9C5V6,http://purl.obolibrary.org/obo/PR_Q9C5V6,none +13.0630282,PR:Q9LK62,http://purl.obolibrary.org/obo/PR_Q9LK62,none +13.0630282,PR:Q9LUH9,http://purl.obolibrary.org/obo/PR_Q9LUH9,none +13.0630282,PR:Q9LV10,http://purl.obolibrary.org/obo/PR_Q9LV10,none +13.0630282,PR:Q9LY74,http://purl.obolibrary.org/obo/PR_Q9LY74,none +13.0630282,PR:Q9M682,http://purl.obolibrary.org/obo/PR_Q9M682,none +13.0630282,PR:Q9SAV1,http://purl.obolibrary.org/obo/PR_Q9SAV1,none +13.0630282,PR:Q9W0K7,http://purl.obolibrary.org/obo/PR_Q9W0K7,none +13.0630282,PR:Q9W747,http://purl.obolibrary.org/obo/PR_Q9W747,none +13.0630282,SO:0001461,http://purl.obolibrary.org/obo/SO_0001461,enhancer_binding_site +13.0630282,SO:0001701,http://purl.obolibrary.org/obo/SO_0001701,histone_methylation_site +13.0630282,SO:0001793,http://purl.obolibrary.org/obo/SO_0001793,clone_end +13.0630282,SO:0001928,http://purl.obolibrary.org/obo/SO_0001928,distal_duplication +13.0630282,UBERON:0000041,http://purl.obolibrary.org/obo/UBERON_0000041,odontode scale +13.0630282,UBERON:0001441,http://purl.obolibrary.org/obo/UBERON_0001441,hindlimb skeleton +13.0630282,UBERON:0003012,http://purl.obolibrary.org/obo/UBERON_0003012,flocculonodular lobe +13.0630282,UBERON:0004368,http://purl.obolibrary.org/obo/UBERON_0004368,Reichert's cartilage +13.0630282,UBERON:0004792,http://purl.obolibrary.org/obo/UBERON_0004792,secretion of endocrine pancreas +13.0630282,UBERON:0005047,http://purl.obolibrary.org/obo/UBERON_0005047,mucosa of vocal fold +13.0630282,UBERON:0006265,http://purl.obolibrary.org/obo/UBERON_0006265,mural trophectoderm +13.0630282,UBERON:0007381,http://purl.obolibrary.org/obo/UBERON_0007381,epidermal scale +13.0630282,UBERON:0007684,http://purl.obolibrary.org/obo/UBERON_0007684,uriniferous tubule +13.0630282,UBERON:0010379,http://purl.obolibrary.org/obo/UBERON_0010379,superior tarsal muscle +13.0630282,UBERON:0011079,http://purl.obolibrary.org/obo/UBERON_0011079,angular bone +13.0630282,UBERON:0012319,http://purl.obolibrary.org/obo/UBERON_0012319,posterior ethmoidal artery +13.0630282,UBERON:0012478,http://purl.obolibrary.org/obo/UBERON_0012478,cloacal gland +13.0630282,UBERON:0013490,http://purl.obolibrary.org/obo/UBERON_0013490,deep cervical fascia +13.0630282,UBERON:2000006,http://purl.obolibrary.org/obo/UBERON_2000006,ball +13.0630282,UBERON:4000003,http://purl.obolibrary.org/obo/UBERON_4000003,permanent cartilage +13.0836475,CHEBI:16497,http://purl.obolibrary.org/obo/CHEBI_16497,dGTP +13.0836475,CHEBI:23625,http://purl.obolibrary.org/obo/CHEBI_23625,deoxyguanosine phosphate +13.0836475,CHEBI:25634,http://purl.obolibrary.org/obo/CHEBI_25634,octadecenoic acid +13.0836475,CHEBI:25985,http://purl.obolibrary.org/obo/CHEBI_25985,phenylalanine derivative +13.0836475,CHEBI:35794,http://purl.obolibrary.org/obo/CHEBI_35794,tetrapyrrole fundamental parent +13.0836475,CHEBI:36313,http://purl.obolibrary.org/obo/CHEBI_36313,glycerophosphocholine +13.0836475,CHEBI:57794,http://purl.obolibrary.org/obo/CHEBI_57794,dGTP(3-) +13.0836475,CHEBI:61292,http://purl.obolibrary.org/obo/CHEBI_61292,guanyl nucleotide +13.0836475,CHEBI:61420,http://purl.obolibrary.org/obo/CHEBI_61420,glycopolymer +13.0836475,CHEBI:61429,http://purl.obolibrary.org/obo/CHEBI_61429,dGTP(4-) +13.0836475,CHEBI:63573,http://purl.obolibrary.org/obo/CHEBI_63573,guanyl deoxyribonucleotide +13.0836475,CHEBI:75178,http://purl.obolibrary.org/obo/CHEBI_75178,urea hydrogen peroxide +13.0836475,CHEBI:78548,http://purl.obolibrary.org/obo/CHEBI_78548,adenylate cyclase agonist +13.0836475,CL:0000425,http://purl.obolibrary.org/obo/CL_0000425,pore cell +13.0836475,CL:0000730,http://purl.obolibrary.org/obo/CL_0000730,leading edge cell +13.0836475,CL:0000937,http://purl.obolibrary.org/obo/CL_0000937,pre-natural killer cell +13.0836475,CL:0000956,http://purl.obolibrary.org/obo/CL_0000956,pre-B-I cell +13.0836475,CL:0000975,http://purl.obolibrary.org/obo/CL_0000975,short lived plasma cell +13.0836475,CL:0002214,http://purl.obolibrary.org/obo/CL_0002214,type IIa muscle cell +13.0836475,DRUGBANK:DB00385,http://purl.obolibrary.org/obo/DRUGBANK_DB00385,none +13.0836475,DRUGBANK:DB00645,http://purl.obolibrary.org/obo/DRUGBANK_DB00645,none +13.0836475,DRUGBANK:DB00748,http://purl.obolibrary.org/obo/DRUGBANK_DB00748,none +13.0836475,DRUGBANK:DB02023,http://purl.obolibrary.org/obo/DRUGBANK_DB02023,none +13.0836475,DRUGBANK:DB03353,http://purl.obolibrary.org/obo/DRUGBANK_DB03353,none +13.0836475,DRUGBANK:DB04359,http://purl.obolibrary.org/obo/DRUGBANK_DB04359,none +13.0836475,DRUGBANK:DB08965,http://purl.obolibrary.org/obo/DRUGBANK_DB08965,none +13.0836475,DRUGBANK:DB09271,http://purl.obolibrary.org/obo/DRUGBANK_DB09271,none +13.0836475,DRUGBANK:DB09319,http://purl.obolibrary.org/obo/DRUGBANK_DB09319,none +13.0836475,DRUGBANK:DB11345,http://purl.obolibrary.org/obo/DRUGBANK_DB11345,none +13.0836475,DRUGBANK:DB11545,http://purl.obolibrary.org/obo/DRUGBANK_DB11545,none +13.0836475,DRUGBANK:DB11888,http://purl.obolibrary.org/obo/DRUGBANK_DB11888,none +13.0836475,DRUGBANK:DB11947,http://purl.obolibrary.org/obo/DRUGBANK_DB11947,none +13.0836475,DRUGBANK:DB11952,http://purl.obolibrary.org/obo/DRUGBANK_DB11952,none +13.0836475,DRUGBANK:DB12016,http://purl.obolibrary.org/obo/DRUGBANK_DB12016,none +13.0836475,DRUGBANK:DB12139,http://purl.obolibrary.org/obo/DRUGBANK_DB12139,none +13.0836475,DRUGBANK:DB12234,http://purl.obolibrary.org/obo/DRUGBANK_DB12234,none +13.0836475,DRUGBANK:DB13193,http://purl.obolibrary.org/obo/DRUGBANK_DB13193,none +13.0836475,DRUGBANK:DB13217,http://purl.obolibrary.org/obo/DRUGBANK_DB13217,none +13.0836475,DRUGBANK:DB14153,http://purl.obolibrary.org/obo/DRUGBANK_DB14153,none +13.0836475,DRUGBANK:DB14221,http://purl.obolibrary.org/obo/DRUGBANK_DB14221,none +13.0836475,DRUGBANK:DB14667,http://purl.obolibrary.org/obo/DRUGBANK_DB14667,none +13.0836475,DRUGBANK:DB15932,http://purl.obolibrary.org/obo/DRUGBANK_DB15932,none +13.0836475,DRUGBANK:DB16301,http://purl.obolibrary.org/obo/DRUGBANK_DB16301,none +13.0836475,GO:0001885,http://purl.obolibrary.org/obo/GO_0001885,endothelial cell development +13.0836475,GO:0002192,http://purl.obolibrary.org/obo/GO_0002192,IRES-dependent translational initiation of linear mRNA +13.0836475,GO:0003747,http://purl.obolibrary.org/obo/GO_0003747,translation release factor activity +13.0836475,GO:0003838,http://purl.obolibrary.org/obo/GO_0003838,sterol 24-C-methyltransferase activity +13.0836475,GO:0004460,http://purl.obolibrary.org/obo/GO_0004460,L-lactate dehydrogenase (cytochrome) activity +13.0836475,GO:0004484,http://purl.obolibrary.org/obo/GO_0004484,mRNA guanylyltransferase activity +13.0836475,GO:0004667,http://purl.obolibrary.org/obo/GO_0004667,prostaglandin-D synthase activity +13.0836475,GO:0005880,http://purl.obolibrary.org/obo/GO_0005880,nuclear microtubule +13.0836475,GO:0007099,http://purl.obolibrary.org/obo/GO_0007099,centriole replication +13.0836475,GO:0007130,http://purl.obolibrary.org/obo/GO_0007130,synaptonemal complex assembly +13.0836475,GO:0008691,http://purl.obolibrary.org/obo/GO_0008691,3-hydroxybutyryl-CoA dehydrogenase activity +13.0836475,GO:0009238,http://purl.obolibrary.org/obo/GO_0009238,enterobactin metabolic process +13.0836475,GO:0009239,http://purl.obolibrary.org/obo/GO_0009239,enterobactin biosynthetic process +13.0836475,GO:0009288,http://purl.obolibrary.org/obo/GO_0009288,bacterial-type flagellum +13.0836475,GO:0010206,http://purl.obolibrary.org/obo/GO_0010206,photosystem II repair +13.0836475,GO:0016905,http://purl.obolibrary.org/obo/GO_0016905,myosin heavy chain kinase activity +13.0836475,GO:0019408,http://purl.obolibrary.org/obo/GO_0019408,dolichol biosynthetic process +13.0836475,GO:0019948,http://purl.obolibrary.org/obo/GO_0019948,SUMO activating enzyme activity +13.0836475,GO:0021682,http://purl.obolibrary.org/obo/GO_0021682,nerve maturation +13.0836475,GO:0032391,http://purl.obolibrary.org/obo/GO_0032391,photoreceptor connecting cilium +13.0836475,GO:0038045,http://purl.obolibrary.org/obo/GO_0038045,large latent transforming growth factor-beta complex +13.0836475,GO:0042058,http://purl.obolibrary.org/obo/GO_0042058,regulation of epidermal growth factor receptor signaling pathway +13.0836475,GO:0042183,http://purl.obolibrary.org/obo/GO_0042183,formate catabolic process +13.0836475,GO:0046174,http://purl.obolibrary.org/obo/GO_0046174,polyol catabolic process +13.0836475,GO:0047963,http://purl.obolibrary.org/obo/GO_0047963,glycine N-choloyltransferase activity +13.0836475,GO:0048439,http://purl.obolibrary.org/obo/GO_0048439,flower morphogenesis +13.0836475,GO:0050664,http://purl.obolibrary.org/obo/GO_0050664,"oxidoreductase activity, acting on NAD(P)H, oxygen as acceptor" +13.0836475,GO:0061097,http://purl.obolibrary.org/obo/GO_0061097,regulation of protein tyrosine kinase activity +13.0836475,GO:0070193,http://purl.obolibrary.org/obo/GO_0070193,synaptonemal complex organization +13.0836475,GO:0070287,http://purl.obolibrary.org/obo/GO_0070287,ferritin receptor activity +13.0836475,GO:0097300,http://purl.obolibrary.org/obo/GO_0097300,programmed necrotic cell death +13.0836475,GO:0110017,http://purl.obolibrary.org/obo/GO_0110017,cap-independent translational initiation of linear mRNA +13.0836475,GO:1901388,http://purl.obolibrary.org/obo/GO_1901388,regulation of transforming growth factor beta activation +13.0836475,GO:1902186,http://purl.obolibrary.org/obo/GO_1902186,none +13.0836475,HP:0001733,http://purl.obolibrary.org/obo/HP_0001733,Pancreatitis +13.0836475,HP:0006775,http://purl.obolibrary.org/obo/HP_0006775,Multiple myeloma +13.0836475,HP:0012091,http://purl.obolibrary.org/obo/HP_0012091,Abnormality of pancreas physiology +13.0836475,HP:0012833,http://purl.obolibrary.org/obo/HP_0012833,Unilateral +13.0836475,MONDO:0001306,http://purl.obolibrary.org/obo/MONDO_0001306,recurrent corneal erosion +13.0836475,MONDO:0001413,http://purl.obolibrary.org/obo/MONDO_0001413,ulceroglandular tularemia +13.0836475,MONDO:0003258,http://purl.obolibrary.org/obo/MONDO_0003258,hobnail hemangioma +13.0836475,MONDO:0003332,http://purl.obolibrary.org/obo/MONDO_0003332,malignant struma ovarii +13.0836475,MONDO:0003710,http://purl.obolibrary.org/obo/MONDO_0003710,ovarian mixed germ cell neoplasm +13.0836475,MONDO:0004540,http://purl.obolibrary.org/obo/MONDO_0004540,epithelioid malignant peripheral nerve sheath tumor +13.0836475,MONDO:0005530,http://purl.obolibrary.org/obo/MONDO_0005530,opiate dependence +13.0836475,MONDO:0005859,http://purl.obolibrary.org/obo/MONDO_0005859,mucocutaneous leishmaniasis +13.0836475,MONDO:0006358,http://purl.obolibrary.org/obo/MONDO_0006358,parotid gland squamous cell carcinoma +13.0836475,MONDO:0006514,http://purl.obolibrary.org/obo/MONDO_0006514,recalcitrant atopic dermatitis +13.0836475,MONDO:0007313,http://purl.obolibrary.org/obo/MONDO_0007313,cheilitis glandularis +13.0836475,MONDO:0007434,http://purl.obolibrary.org/obo/MONDO_0007434,primary failure of tooth eruption +13.0836475,MONDO:0007508,http://purl.obolibrary.org/obo/MONDO_0007508,Rapp-Hodgkin syndrome +13.0836475,MONDO:0007922,http://purl.obolibrary.org/obo/MONDO_0007922,lymphedema-distichiasis syndrome +13.0836475,MONDO:0008671,http://purl.obolibrary.org/obo/MONDO_0008671,Waardenburg syndrome type 2A +13.0836475,MONDO:0009215,http://purl.obolibrary.org/obo/MONDO_0009215,Fanconi anemia complementation group A +13.0836475,MONDO:0009757,http://purl.obolibrary.org/obo/MONDO_0009757,"Niemann-Pick disease, type C1" +13.0836475,MONDO:0009926,http://purl.obolibrary.org/obo/MONDO_0009926,autosomal recessive multiple pterygium syndrome +13.0836475,MONDO:0010723,http://purl.obolibrary.org/obo/MONDO_0010723,retinitis pigmentosa 2 +13.0836475,MONDO:0011540,http://purl.obolibrary.org/obo/MONDO_0011540,spinocerebellar ataxia type 14 +13.0836475,MONDO:0014226,http://purl.obolibrary.org/obo/MONDO_0014226,idiopathic CD4 lymphocytopenia +13.0836475,MONDO:0015791,http://purl.obolibrary.org/obo/MONDO_0015791,peripheral precocious puberty +13.0836475,MONDO:0017420,http://purl.obolibrary.org/obo/MONDO_0017420,intercalary limb defects +13.0836475,MONDO:0017681,http://purl.obolibrary.org/obo/MONDO_0017681,erythrokeratoderma variabilis progressiva +13.0836475,MONDO:0017850,http://purl.obolibrary.org/obo/MONDO_0017850,sirenomelia +13.0836475,MONDO:0018039,http://purl.obolibrary.org/obo/MONDO_0018039,selective IgM deficiency +13.0836475,MONDO:0018676,http://purl.obolibrary.org/obo/MONDO_0018676,eosinophilic angiocentric fibrosis +13.0836475,MONDO:0019198,http://purl.obolibrary.org/obo/MONDO_0019198,sympathetic ophthalmia +13.0836475,MONDO:0020710,http://purl.obolibrary.org/obo/MONDO_0020710,amnionitis +13.0836475,MONDO:0021141,http://purl.obolibrary.org/obo/MONDO_0021141,acquired +13.0836475,MONDO:0041366,http://purl.obolibrary.org/obo/MONDO_0041366,acute epiglottitis +13.0836475,MONDO:0060778,http://purl.obolibrary.org/obo/MONDO_0060778,adult Fanconi syndrome +13.0836475,NCBITaxon:10173,http://purl.obolibrary.org/obo/NCBITaxon_10173,none +13.0836475,NCBITaxon:10175,http://purl.obolibrary.org/obo/NCBITaxon_10175,none +13.0836475,NCBITaxon:11153,http://purl.obolibrary.org/obo/NCBITaxon_11153,Canine coronavirus +13.0836475,NCBITaxon:118077,http://purl.obolibrary.org/obo/NCBITaxon_118077,none +13.0836475,NCBITaxon:12066,http://purl.obolibrary.org/obo/NCBITaxon_12066,Coxsackievirus +13.0836475,NCBITaxon:12203,http://purl.obolibrary.org/obo/NCBITaxon_12203,none +13.0836475,NCBITaxon:1405806,http://purl.obolibrary.org/obo/NCBITaxon_1405806,none +13.0836475,NCBITaxon:204269,http://purl.obolibrary.org/obo/NCBITaxon_204269,none +13.0836475,NCBITaxon:2497573,http://purl.obolibrary.org/obo/NCBITaxon_2497573,none +13.0836475,NCBITaxon:2499881,http://purl.obolibrary.org/obo/NCBITaxon_2499881,none +13.0836475,NCBITaxon:27872,http://purl.obolibrary.org/obo/NCBITaxon_27872,Xiphidiata +13.0836475,NCBITaxon:2823314,http://purl.obolibrary.org/obo/NCBITaxon_2823314,none +13.0836475,NCBITaxon:41945,http://purl.obolibrary.org/obo/NCBITaxon_41945,none +13.0836475,NCBITaxon:7869,http://purl.obolibrary.org/obo/NCBITaxon_7869,none +13.0836475,NCBITaxon:91753,http://purl.obolibrary.org/obo/NCBITaxon_91753,none +13.0836475,PR:000001730,http://purl.obolibrary.org/obo/PR_000001730,inhibin alpha chain +13.0836475,PR:000003807,http://purl.obolibrary.org/obo/PR_000003807,AFG3-like protein 2 +13.0836475,PR:000003850,http://purl.obolibrary.org/obo/PR_000003850,"alanine--glyoxylate aminotransferase 2, mitochondrial" +13.0836475,PR:000003958,http://purl.obolibrary.org/obo/PR_000003958,"arachidonate 12-lipoxygenase, 12R-type" +13.0836475,PR:000004227,http://purl.obolibrary.org/obo/PR_000004227,Rho GTPase-activating protein 21 +13.0836475,PR:000004710,http://purl.obolibrary.org/obo/PR_000004710,BCL-6 corepressor-like protein 1 +13.0836475,PR:000004813,http://purl.obolibrary.org/obo/PR_000004813,transcription factor IIIB 50 kDa subunit +13.0836475,PR:000005448,http://purl.obolibrary.org/obo/PR_000005448,chondroitin sulfate synthase 2 +13.0836475,PR:000005459,http://purl.obolibrary.org/obo/PR_000005459,neuronal acetylcholine receptor subunit alpha-6 +13.0836475,PR:000005605,http://purl.obolibrary.org/obo/PR_000005605,clarin-1 +13.0836475,PR:000005641,http://purl.obolibrary.org/obo/PR_000005641,calponin-2 +13.0836475,PR:000005917,http://purl.obolibrary.org/obo/PR_000005917,gamma-crystallin D +13.0836475,PR:000006877,http://purl.obolibrary.org/obo/PR_000006877,"Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial" +13.0836475,PR:000007085,http://purl.obolibrary.org/obo/PR_000007085,ecto-NOX disulfide-thiol exchanger 1 +13.0836475,PR:000007128,http://purl.obolibrary.org/obo/PR_000007128,ephrin type-A receptor 8 +13.0836475,PR:000007153,http://purl.obolibrary.org/obo/PR_000007153,epiphycan +13.0836475,PR:000007256,http://purl.obolibrary.org/obo/PR_000007256,exocyst complex component 8 +13.0836475,PR:000007380,http://purl.obolibrary.org/obo/PR_000007380,putative F-box/LRR-repeat protein 21 +13.0836475,PR:000007382,http://purl.obolibrary.org/obo/PR_000007382,F-box/LRR-repeat protein 3 +13.0836475,PR:000007393,http://purl.obolibrary.org/obo/PR_000007393,F-box only protein 2 +13.0836475,PR:000007431,http://purl.obolibrary.org/obo/PR_000007431,high affinity immunoglobulin epsilon receptor subunit alpha +13.0836475,PR:000007566,http://purl.obolibrary.org/obo/PR_000007566,feline leukemia virus subgroup C receptor-related protein 1 +13.0836475,PR:000007656,http://purl.obolibrary.org/obo/PR_000007656,FRAS1-related extracellular matrix protein 1 +13.0836475,PR:000007701,http://purl.obolibrary.org/obo/PR_000007701,serine/arginine-rich splicing factor 10 +13.0836475,PR:000007927,http://purl.obolibrary.org/obo/PR_000007927,Rab GDP dissociation inhibitor beta +13.0836475,PR:000007984,http://purl.obolibrary.org/obo/PR_000007984,DNA replication complex GINS protein PSF3 +13.0836475,PR:000008132,http://purl.obolibrary.org/obo/PR_000008132,golgin subfamily A member 3 +13.0836475,PR:000008508,http://purl.obolibrary.org/obo/PR_000008508,hairy and enhancer of split-related protein HELT +13.0836475,PR:000009282,http://purl.obolibrary.org/obo/PR_000009282,ketohexokinase +13.0836475,PR:000010123,http://purl.obolibrary.org/obo/PR_000010123,microtubule-associated protein 1S +13.0836475,PR:000010199,http://purl.obolibrary.org/obo/PR_000010199,microtubule-associated serine/threonine-protein kinase-like +13.0836475,PR:000010485,http://purl.obolibrary.org/obo/PR_000010485,matrix metalloproteinase-26 +13.0836475,PR:000010513,http://purl.obolibrary.org/obo/PR_000010513,adenylyltransferase and sulfurtransferase MOCS3 +13.0836475,PR:000010832,http://purl.obolibrary.org/obo/PR_000010832,myosin-8 +13.0836475,PR:000011417,http://purl.obolibrary.org/obo/PR_000011417,nuclear receptor-binding factor 2 +13.0836475,PR:000011420,http://purl.obolibrary.org/obo/PR_000011420,neuronal cell adhesion molecule +13.0836475,PR:000011536,http://purl.obolibrary.org/obo/PR_000011536,nuclear RNA export factor 2 +13.0836475,PR:000012509,http://purl.obolibrary.org/obo/PR_000012509,PDZ and LIM domain protein 2 +13.0836475,PR:000012845,http://purl.obolibrary.org/obo/PR_000012845,5'-3' exonuclease PLD3 +13.0836475,PR:000013212,http://purl.obolibrary.org/obo/PR_000013212,prickle-like protein 2 +13.0836475,PR:000013584,http://purl.obolibrary.org/obo/PR_000013584,Rab11 family-interacting protein 5 +13.0836475,PR:000013643,http://purl.obolibrary.org/obo/PR_000013643,Ras-related protein Rab-8B +13.0836475,PR:000013951,http://purl.obolibrary.org/obo/PR_000013951,regulator of G-protein signaling 17 +13.0836475,PR:000014097,http://purl.obolibrary.org/obo/PR_000014097,E3 ubiquitin-protein ligase listerin +13.0836475,PR:000014671,http://purl.obolibrary.org/obo/PR_000014671,serine incorporator 1 +13.0836475,PR:000014729,http://purl.obolibrary.org/obo/PR_000014729,seizure 6-like protein 2 +13.0836475,PR:000014740,http://purl.obolibrary.org/obo/PR_000014740,splicing factor 4 +13.0836475,PR:000015237,http://purl.obolibrary.org/obo/PR_000015237,SLIT and NTRK-like protein 1 +13.0836475,PR:000015385,http://purl.obolibrary.org/obo/PR_000015385,sorting nexin-6 +13.0836475,PR:000015650,http://purl.obolibrary.org/obo/PR_000015650,single-stranded DNA-binding protein 3 +13.0836475,PR:000015671,http://purl.obolibrary.org/obo/PR_000015671,protein SSX4 +13.0836475,PR:000015709,http://purl.obolibrary.org/obo/PR_000015709,signal transducing adapter molecule 1 +13.0836475,PR:000015744,http://purl.obolibrary.org/obo/PR_000015744,serine/threonine-protein kinase 17B +13.0836475,PR:000015846,http://purl.obolibrary.org/obo/PR_000015846,histone-lysine N-methyltransferase KMT5B +13.0836475,PR:000016048,http://purl.obolibrary.org/obo/PR_000016048,serine/threonine-protein kinase TAO1 +13.0836475,PR:000016815,http://purl.obolibrary.org/obo/PR_000016815,tubulin beta-1 chain +13.0836475,PR:000016991,http://purl.obolibrary.org/obo/PR_000016991,ubiquitin-conjugating enzyme E2 Z +13.0836475,PR:000017111,http://purl.obolibrary.org/obo/PR_000017111,regulator of nonsense transcripts 3B +13.0836475,PR:000017568,http://purl.obolibrary.org/obo/PR_000017568,zinc finger and BTB domain-containing protein 20 +13.0836475,PR:000018219,http://purl.obolibrary.org/obo/PR_000018219,U2 small nuclear ribonucleoprotein auxiliary factor 35 kDa subunit-related protein 2 +13.0836475,PR:000022430,http://purl.obolibrary.org/obo/PR_000022430,none +13.0836475,PR:000022565,http://purl.obolibrary.org/obo/PR_000022565,none +13.0836475,PR:000022788,http://purl.obolibrary.org/obo/PR_000022788,none +13.0836475,PR:000023004,http://purl.obolibrary.org/obo/PR_000023004,none +13.0836475,PR:000023092,http://purl.obolibrary.org/obo/PR_000023092,none +13.0836475,PR:000023909,http://purl.obolibrary.org/obo/PR_000023909,none +13.0836475,PR:000024035,http://purl.obolibrary.org/obo/PR_000024035,none +13.0836475,PR:000029132,http://purl.obolibrary.org/obo/PR_000029132,inactive tyrosine-protein kinase PEAK1 +13.0836475,PR:000029553,http://purl.obolibrary.org/obo/PR_000029553,interferon-induced protein with tetratricopeptide repeats 5 +13.0836475,PR:000029698,http://purl.obolibrary.org/obo/PR_000029698,PH and SEC7 domain-containing protein 2 +13.0836475,PR:000029757,http://purl.obolibrary.org/obo/PR_000029757,spindle and kinetochore-associated protein 2 +13.0836475,PR:000031893,http://purl.obolibrary.org/obo/PR_000031893,inactive caspase-12 +13.0836475,PR:000035337,http://purl.obolibrary.org/obo/PR_000035337,none +13.0836475,PR:000036845,http://purl.obolibrary.org/obo/PR_000036845,class I olfactory receptor +13.0836475,PR:B7SBD2,http://purl.obolibrary.org/obo/PR_B7SBD2,none +13.0836475,PR:O06659,http://purl.obolibrary.org/obo/PR_O06659,none +13.0836475,PR:O13547,http://purl.obolibrary.org/obo/PR_O13547,none +13.0836475,PR:O13786,http://purl.obolibrary.org/obo/PR_O13786,none +13.0836475,PR:O80501,http://purl.obolibrary.org/obo/PR_O80501,none +13.0836475,PR:P17892,http://purl.obolibrary.org/obo/PR_P17892,none +13.0836475,PR:P21651,http://purl.obolibrary.org/obo/PR_P21651,none +13.0836475,PR:P32609,http://purl.obolibrary.org/obo/PR_P32609,none +13.0836475,PR:P53104,http://purl.obolibrary.org/obo/PR_P53104,none +13.0836475,PR:P54318,http://purl.obolibrary.org/obo/PR_P54318,none +13.0836475,PR:Q04781,http://purl.obolibrary.org/obo/PR_Q04781,none +13.0836475,PR:Q0WVW7,http://purl.obolibrary.org/obo/PR_Q0WVW7,none +13.0836475,PR:Q38836,http://purl.obolibrary.org/obo/PR_Q38836,none +13.0836475,PR:Q6AYP5,http://purl.obolibrary.org/obo/PR_Q6AYP5,none +13.0836475,PR:Q86CS2,http://purl.obolibrary.org/obo/PR_Q86CS2,none +13.0836475,PR:Q8T0D4,http://purl.obolibrary.org/obo/PR_Q8T0D4,none +13.0836475,PR:Q8VD88,http://purl.obolibrary.org/obo/PR_Q8VD88,none +13.0836475,PR:Q940Q8,http://purl.obolibrary.org/obo/PR_Q940Q8,none +13.0836475,PR:Q9CAB7,http://purl.obolibrary.org/obo/PR_Q9CAB7,none +13.0836475,PR:Q9CAB8,http://purl.obolibrary.org/obo/PR_Q9CAB8,none +13.0836475,PR:Q9FZJ1,http://purl.obolibrary.org/obo/PR_Q9FZJ1,none +13.0836475,PR:Q9JKD8,http://purl.obolibrary.org/obo/PR_Q9JKD8,none +13.0836475,PR:Q9JLM8,http://purl.obolibrary.org/obo/PR_Q9JLM8,none +13.0836475,PR:Q9STY4,http://purl.obolibrary.org/obo/PR_Q9STY4,none +13.0836475,SO:0000100,http://purl.obolibrary.org/obo/SO_0000100,endogenous_retroviral_gene +13.0836475,SO:0000295,http://purl.obolibrary.org/obo/SO_0000295,U12_intron +13.0836475,SO:0000445,http://purl.obolibrary.org/obo/SO_0000445,five_prime_noncoding_exon +13.0836475,SO:0000953,http://purl.obolibrary.org/obo/SO_0000953,oriC +13.0836475,SO:0001980,http://purl.obolibrary.org/obo/SO_0001980,G_box +13.0836475,UBERON:0001524,http://purl.obolibrary.org/obo/UBERON_0001524,extensor carpi radialis longus muscle +13.0836475,UBERON:0001881,http://purl.obolibrary.org/obo/UBERON_0001881,island of Calleja +13.0836475,UBERON:0001918,http://purl.obolibrary.org/obo/UBERON_0001918,endothelium of venule +13.0836475,UBERON:0003121,http://purl.obolibrary.org/obo/UBERON_0003121,pharyngeal arch artery 4 +13.0836475,UBERON:0004666,http://purl.obolibrary.org/obo/UBERON_0004666,interventricular septum membranous part +13.0836475,UBERON:0004902,http://purl.obolibrary.org/obo/UBERON_0004902,urogenital sinus epithelium +13.0836475,UBERON:0005095,http://purl.obolibrary.org/obo/UBERON_0005095,kidney rudiment +13.0836475,UBERON:0006137,http://purl.obolibrary.org/obo/UBERON_0006137,proper palmar digital artery +13.0836475,UBERON:0006749,http://purl.obolibrary.org/obo/UBERON_0006749,superior parathyroid gland +13.0836475,UBERON:0007473,http://purl.obolibrary.org/obo/UBERON_0007473,lumen of epithelial sac +13.0836475,UBERON:0007602,http://purl.obolibrary.org/obo/UBERON_0007602,stratified columnar epithelium +13.0836475,UBERON:0007650,http://purl.obolibrary.org/obo/UBERON_0007650,esophagogastric junction +13.0836475,UBERON:0008972,http://purl.obolibrary.org/obo/UBERON_0008972,right colon +13.0836475,UBERON:0013718,http://purl.obolibrary.org/obo/UBERON_0013718,dartos muscle +13.0836475,UBERON:0018240,http://purl.obolibrary.org/obo/UBERON_0018240,panniculus carnosus muscle +13.0836475,UBERON:0025592,http://purl.obolibrary.org/obo/UBERON_0025592,glutamatergic system +13.0836475,UBERON:0025595,http://purl.obolibrary.org/obo/UBERON_0025595,cholinergic system +13.0836475,UBERON:2002107,http://purl.obolibrary.org/obo/UBERON_2002107,medullary command nucleus +13.1047009,CHEBI:24271,http://purl.obolibrary.org/obo/CHEBI_24271,glucosamines +13.1047009,CHEBI:46716,http://purl.obolibrary.org/obo/CHEBI_46716,sulfate mineral +13.1047009,CHEBI:48355,http://purl.obolibrary.org/obo/CHEBI_48355,non-polar solvent +13.1047009,CHEBI:52941,http://purl.obolibrary.org/obo/CHEBI_52941,phosphate protecting group +13.1047009,CHEBI:59683,http://purl.obolibrary.org/obo/CHEBI_59683,antipruritic drug +13.1047009,CHEBI:59769,http://purl.obolibrary.org/obo/CHEBI_59769,acetal +13.1047009,CHEBI:61313,http://purl.obolibrary.org/obo/CHEBI_61313,C21-steroid +13.1047009,CHEBI:61428,http://purl.obolibrary.org/obo/CHEBI_61428,nafion polymer +13.1047009,CHEBI:67198,http://purl.obolibrary.org/obo/CHEBI_67198,retinoic acid receptor agonist +13.1047009,CHEBI:8290,http://purl.obolibrary.org/obo/CHEBI_8290,Poly(G) +13.1047009,CHEBI:90708,http://purl.obolibrary.org/obo/CHEBI_90708,retinoic acid receptor modulator +13.1047009,CHEBI:90709,http://purl.obolibrary.org/obo/CHEBI_90709,nuclear receptor modulator +13.1047009,CL:0000459,http://purl.obolibrary.org/obo/CL_0000459,noradrenergic cell +13.1047009,CL:0000488,http://purl.obolibrary.org/obo/CL_0000488,visible light photoreceptor cell +13.1047009,CL:0008006,http://purl.obolibrary.org/obo/CL_0008006,muscle founder cell +13.1047009,DRUGBANK:DB00044,http://purl.obolibrary.org/obo/DRUGBANK_DB00044,none +13.1047009,DRUGBANK:DB01951,http://purl.obolibrary.org/obo/DRUGBANK_DB01951,none +13.1047009,DRUGBANK:DB04856,http://purl.obolibrary.org/obo/DRUGBANK_DB04856,none +13.1047009,DRUGBANK:DB05396,http://purl.obolibrary.org/obo/DRUGBANK_DB05396,none +13.1047009,DRUGBANK:DB06444,http://purl.obolibrary.org/obo/DRUGBANK_DB06444,none +13.1047009,DRUGBANK:DB06599,http://purl.obolibrary.org/obo/DRUGBANK_DB06599,none +13.1047009,DRUGBANK:DB07637,http://purl.obolibrary.org/obo/DRUGBANK_DB07637,none +13.1047009,DRUGBANK:DB09215,http://purl.obolibrary.org/obo/DRUGBANK_DB09215,none +13.1047009,DRUGBANK:DB09260,http://purl.obolibrary.org/obo/DRUGBANK_DB09260,none +13.1047009,DRUGBANK:DB11416,http://purl.obolibrary.org/obo/DRUGBANK_DB11416,none +13.1047009,DRUGBANK:DB11502,http://purl.obolibrary.org/obo/DRUGBANK_DB11502,none +13.1047009,DRUGBANK:DB12208,http://purl.obolibrary.org/obo/DRUGBANK_DB12208,none +13.1047009,DRUGBANK:DB12289,http://purl.obolibrary.org/obo/DRUGBANK_DB12289,none +13.1047009,DRUGBANK:DB12549,http://purl.obolibrary.org/obo/DRUGBANK_DB12549,none +13.1047009,DRUGBANK:DB12688,http://purl.obolibrary.org/obo/DRUGBANK_DB12688,none +13.1047009,DRUGBANK:DB13370,http://purl.obolibrary.org/obo/DRUGBANK_DB13370,none +13.1047009,DRUGBANK:DB13435,http://purl.obolibrary.org/obo/DRUGBANK_DB13435,none +13.1047009,DRUGBANK:DB13527,http://purl.obolibrary.org/obo/DRUGBANK_DB13527,none +13.1047009,DRUGBANK:DB13782,http://purl.obolibrary.org/obo/DRUGBANK_DB13782,none +13.1047009,DRUGBANK:DB13786,http://purl.obolibrary.org/obo/DRUGBANK_DB13786,none +13.1047009,DRUGBANK:DB15512,http://purl.obolibrary.org/obo/DRUGBANK_DB15512,none +13.1047009,DRUGBANK:DB15976,http://purl.obolibrary.org/obo/DRUGBANK_DB15976,none +13.1047009,DRUGBANK:DB16249,http://purl.obolibrary.org/obo/DRUGBANK_DB16249,none +13.1047009,GO:0000372,http://purl.obolibrary.org/obo/GO_0000372,Group I intron splicing +13.1047009,GO:0000376,http://purl.obolibrary.org/obo/GO_0000376,"RNA splicing, via transesterification reactions with guanosine as nucleophile" +13.1047009,GO:0001768,http://purl.obolibrary.org/obo/GO_0001768,establishment of T cell polarity +13.1047009,GO:0001913,http://purl.obolibrary.org/obo/GO_0001913,T cell mediated cytotoxicity +13.1047009,GO:0003143,http://purl.obolibrary.org/obo/GO_0003143,embryonic heart tube morphogenesis +13.1047009,GO:0004315,http://purl.obolibrary.org/obo/GO_0004315,3-oxoacyl-[acyl-carrier-protein] synthase activity +13.1047009,GO:0004694,http://purl.obolibrary.org/obo/GO_0004694,eukaryotic translation initiation factor 2alpha kinase activity +13.1047009,GO:0005722,http://purl.obolibrary.org/obo/GO_0005722,beta-heterochromatin +13.1047009,GO:0005989,http://purl.obolibrary.org/obo/GO_0005989,lactose biosynthetic process +13.1047009,GO:0008482,http://purl.obolibrary.org/obo/GO_0008482,sulfite oxidase activity +13.1047009,GO:0008941,http://purl.obolibrary.org/obo/GO_0008941,nitric oxide dioxygenase activity +13.1047009,GO:0010168,http://purl.obolibrary.org/obo/GO_0010168,ER body +13.1047009,GO:0010635,http://purl.obolibrary.org/obo/GO_0010635,regulation of mitochondrial fusion +13.1047009,GO:0010966,http://purl.obolibrary.org/obo/GO_0010966,regulation of phosphate transport +13.1047009,GO:0014004,http://purl.obolibrary.org/obo/GO_0014004,microglia differentiation +13.1047009,GO:0016073,http://purl.obolibrary.org/obo/GO_0016073,snRNA metabolic process +13.1047009,GO:0016174,http://purl.obolibrary.org/obo/GO_0016174,NAD(P)H oxidase H2O2-forming activity +13.1047009,GO:0016312,http://purl.obolibrary.org/obo/GO_0016312,inositol bisphosphate phosphatase activity +13.1047009,GO:0016322,http://purl.obolibrary.org/obo/GO_0016322,neuron remodeling +13.1047009,GO:0030314,http://purl.obolibrary.org/obo/GO_0030314,junctional membrane complex +13.1047009,GO:0030387,http://purl.obolibrary.org/obo/GO_0030387,none +13.1047009,GO:0033610,http://purl.obolibrary.org/obo/GO_0033610,oxalate biosynthetic process +13.1047009,GO:0042761,http://purl.obolibrary.org/obo/GO_0042761,very long-chain fatty acid biosynthetic process +13.1047009,GO:0042928,http://purl.obolibrary.org/obo/GO_0042928,ferrichrome import into cell +13.1047009,GO:0043883,http://purl.obolibrary.org/obo/GO_0043883,malolactic enzyme activity +13.1047009,GO:0048525,http://purl.obolibrary.org/obo/GO_0048525,negative regulation of viral process +13.1047009,GO:0050729,http://purl.obolibrary.org/obo/GO_0050729,positive regulation of inflammatory response +13.1047009,GO:0050769,http://purl.obolibrary.org/obo/GO_0050769,positive regulation of neurogenesis +13.1047009,GO:0051775,http://purl.obolibrary.org/obo/GO_0051775,response to redox state +13.1047009,GO:0060536,http://purl.obolibrary.org/obo/GO_0060536,cartilage morphogenesis +13.1047009,GO:0070781,http://purl.obolibrary.org/obo/GO_0070781,response to biotin +13.1047009,GO:0070852,http://purl.obolibrary.org/obo/GO_0070852,cell body fiber +13.1047009,GO:1901177,http://purl.obolibrary.org/obo/GO_1901177,lycopene biosynthetic process +13.1047009,GO:1902749,http://purl.obolibrary.org/obo/GO_1902749,regulation of cell cycle G2/M phase transition +13.1047009,GO:1902803,http://purl.obolibrary.org/obo/GO_1902803,regulation of synaptic vesicle transport +13.1047009,GO:1903406,http://purl.obolibrary.org/obo/GO_1903406,regulation of P-type sodium:potassium-exchanging transporter activity +13.1047009,GO:1903901,http://purl.obolibrary.org/obo/GO_1903901,negative regulation of viral life cycle +13.1047009,HP:0000819,http://purl.obolibrary.org/obo/HP_0000819,Diabetes mellitus +13.1047009,HP:0000952,http://purl.obolibrary.org/obo/HP_0000952,Jaundice +13.1047009,HP:0001005,http://purl.obolibrary.org/obo/HP_0001005,Dermatological manifestations of systemic disorders +13.1047009,HP:0001952,http://purl.obolibrary.org/obo/HP_0001952,Glucose intolerance +13.1047009,HP:0002573,http://purl.obolibrary.org/obo/HP_0002573,Hematochezia +13.1047009,HP:0100508,http://purl.obolibrary.org/obo/HP_0100508,Abnormality of vitamin metabolism +13.1047009,MONDO:0000200,http://purl.obolibrary.org/obo/MONDO_0000200,Zimmermann-Laband syndrome +13.1047009,MONDO:0000377,http://purl.obolibrary.org/obo/MONDO_0000377,malignant Leydig cell tumor +13.1047009,MONDO:0000741,http://purl.obolibrary.org/obo/MONDO_0000741,angular cheilitis +13.1047009,MONDO:0001230,http://purl.obolibrary.org/obo/MONDO_0001230,acute orbital inflammation +13.1047009,MONDO:0001974,http://purl.obolibrary.org/obo/MONDO_0001974,hemangioma of orbit +13.1047009,MONDO:0002034,http://purl.obolibrary.org/obo/MONDO_0002034,cecum lymphoma +13.1047009,MONDO:0002119,http://purl.obolibrary.org/obo/MONDO_0002119,ossifying fibroma +13.1047009,MONDO:0002579,http://purl.obolibrary.org/obo/MONDO_0002579,orbit embryonal rhabdomyosarcoma +13.1047009,MONDO:0002613,http://purl.obolibrary.org/obo/MONDO_0002613,histrionic personality disorder +13.1047009,MONDO:0002855,http://purl.obolibrary.org/obo/MONDO_0002855,ectomesenchymoma +13.1047009,MONDO:0003351,http://purl.obolibrary.org/obo/MONDO_0003351,colon leiomyosarcoma +13.1047009,MONDO:0003365,http://purl.obolibrary.org/obo/MONDO_0003365,esophagus leiomyosarcoma +13.1047009,MONDO:0003645,http://purl.obolibrary.org/obo/MONDO_0003645,cavernous hemangioma of face +13.1047009,MONDO:0005276,http://purl.obolibrary.org/obo/MONDO_0005276,dental caries +13.1047009,MONDO:0005508,http://purl.obolibrary.org/obo/MONDO_0005508,hereditary multiple osteochondromas +13.1047009,MONDO:0005796,http://purl.obolibrary.org/obo/MONDO_0005796,HIV enteropathy +13.1047009,MONDO:0006264,http://purl.obolibrary.org/obo/MONDO_0006264,laryngeal adenoid cystic carcinoma +13.1047009,MONDO:0006616,http://purl.obolibrary.org/obo/MONDO_0006616,toxicodendron dermatitis +13.1047009,MONDO:0007590,http://purl.obolibrary.org/obo/MONDO_0007590,hemifacial hypertrophy +13.1047009,MONDO:0008156,http://purl.obolibrary.org/obo/MONDO_0008156,autosomal dominant osteopetrosis 2 +13.1047009,MONDO:0008296,http://purl.obolibrary.org/obo/MONDO_0008296,familial porphyria cutanea tarda +13.1047009,MONDO:0008482,http://purl.obolibrary.org/obo/MONDO_0008482,Sprengel deformity +13.1047009,MONDO:0008970,http://purl.obolibrary.org/obo/MONDO_0008970,chondrodysplasia Blomstrand type +13.1047009,MONDO:0009109,http://purl.obolibrary.org/obo/MONDO_0009109,lysinuric protein intolerance +13.1047009,MONDO:0010244,http://purl.obolibrary.org/obo/MONDO_0010244,CGF1 +13.1047009,MONDO:0011476,http://purl.obolibrary.org/obo/MONDO_0011476,MHC class I deficiency +13.1047009,MONDO:0012043,http://purl.obolibrary.org/obo/MONDO_0012043,Reis-Bucklers corneal dystrophy +13.1047009,MONDO:0016790,http://purl.obolibrary.org/obo/MONDO_0016790,tricarboxylic acid cycle disorder +13.1047009,MONDO:0017003,http://purl.obolibrary.org/obo/MONDO_0017003,partial deletion of chromosome X +13.1047009,MONDO:0017417,http://purl.obolibrary.org/obo/MONDO_0017417,renal-hepatic-pancreatic dysplasia +13.1047009,MONDO:0017441,http://purl.obolibrary.org/obo/MONDO_0017441,congenital absence of upper arm and forearm with hand present +13.1047009,MONDO:0017673,http://purl.obolibrary.org/obo/MONDO_0017673,isolated focal palmoplantar keratoderma +13.1047009,MONDO:0017851,http://purl.obolibrary.org/obo/MONDO_0017851,erythrokeratodermia variabilis +13.1047009,MONDO:0017914,http://purl.obolibrary.org/obo/MONDO_0017914,pure or complex autosomal dominant spastic paraplegia +13.1047009,MONDO:0018008,http://purl.obolibrary.org/obo/MONDO_0018008,idiopathic giant cell myocarditis +13.1047009,MONDO:0018119,http://purl.obolibrary.org/obo/MONDO_0018119,"disorder of phospholipids, sphingolipids and fatty acids biosynthesis with peripheral nerves predominant involvement" +13.1047009,MONDO:0018152,http://purl.obolibrary.org/obo/MONDO_0018152,serpiginous choroiditis +13.1047009,MONDO:0019122,http://purl.obolibrary.org/obo/MONDO_0019122,idiopathic acute eosinophilic pneumonia +13.1047009,MONDO:0020374,http://purl.obolibrary.org/obo/MONDO_0020374,cerulean cataract +13.1047009,MONDO:0021053,http://purl.obolibrary.org/obo/MONDO_0021053,carotid body paraganglioma +13.1047009,MONDO:0021538,http://purl.obolibrary.org/obo/MONDO_0021538,verrucous carcinoma of oral cavity +13.1047009,MONDO:0044887,http://purl.obolibrary.org/obo/MONDO_0044887,central nervous system non-hodgkin lymphoma +13.1047009,NCBITaxon:1007065,http://purl.obolibrary.org/obo/NCBITaxon_1007065,none +13.1047009,NCBITaxon:100953,http://purl.obolibrary.org/obo/NCBITaxon_100953,none +13.1047009,NCBITaxon:10788,http://purl.obolibrary.org/obo/NCBITaxon_10788,Canine parvovirus +13.1047009,NCBITaxon:118078,http://purl.obolibrary.org/obo/NCBITaxon_118078,none +13.1047009,NCBITaxon:1279,http://purl.obolibrary.org/obo/NCBITaxon_1279,Staphylococcus +13.1047009,NCBITaxon:147369,http://purl.obolibrary.org/obo/NCBITaxon_147369,none +13.1047009,NCBITaxon:166053,http://purl.obolibrary.org/obo/NCBITaxon_166053,none +13.1047009,NCBITaxon:186844,http://purl.obolibrary.org/obo/NCBITaxon_186844,none +13.1047009,NCBITaxon:2093,http://purl.obolibrary.org/obo/NCBITaxon_2093,Mycoplasma +13.1047009,NCBITaxon:241146,http://purl.obolibrary.org/obo/NCBITaxon_241146,none +13.1047009,NCBITaxon:30639,http://purl.obolibrary.org/obo/NCBITaxon_30639,none +13.1047009,NCBITaxon:3400,http://purl.obolibrary.org/obo/NCBITaxon_3400,none +13.1047009,NCBITaxon:351517,http://purl.obolibrary.org/obo/NCBITaxon_351517,none +13.1047009,NCBITaxon:41944,http://purl.obolibrary.org/obo/NCBITaxon_41944,none +13.1047009,NCBITaxon:56251,http://purl.obolibrary.org/obo/NCBITaxon_56251,Plagiorchioidea +13.1047009,NCBITaxon:7889,http://purl.obolibrary.org/obo/NCBITaxon_7889,none +13.1047009,NCBITaxon:7890,http://purl.obolibrary.org/obo/NCBITaxon_7890,none +13.1047009,NCBITaxon:7892,http://purl.obolibrary.org/obo/NCBITaxon_7892,none +13.1047009,NCBITaxon:90964,http://purl.obolibrary.org/obo/NCBITaxon_90964,Staphylococcaceae +13.1047009,PR:000001805,http://purl.obolibrary.org/obo/PR_000001805,C-X-C motif chemokine 17 +13.1047009,PR:000003226,http://purl.obolibrary.org/obo/PR_000003226,none +13.1047009,PR:000003228,http://purl.obolibrary.org/obo/PR_000003228,none +13.1047009,PR:000003884,http://purl.obolibrary.org/obo/PR_000003884,"A-kinase anchor protein 10, mitochondrial" +13.1047009,PR:000003907,http://purl.obolibrary.org/obo/PR_000003907,aldo-keto reductase family 1 member D1 +13.1047009,PR:000003946,http://purl.obolibrary.org/obo/PR_000003946,"dolichyl pyrophosphate Man9GlcNAc2 alpha-1,3-glucosyltransferase" +13.1047009,PR:000004193,http://purl.obolibrary.org/obo/PR_000004193,"Arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 1" +13.1047009,PR:000004289,http://purl.obolibrary.org/obo/PR_000004289,ADP-ribosylation factor-like protein 5B +13.1047009,PR:000005072,http://purl.obolibrary.org/obo/PR_000005072,E3 ubiquitin-protein ligase CBL-C +13.1047009,PR:000005447,http://purl.obolibrary.org/obo/PR_000005447,calcineurin B homologous protein 2 +13.1047009,PR:000005568,http://purl.obolibrary.org/obo/PR_000005568,C-type lectin domain family 4 member A +13.1047009,PR:000005578,http://purl.obolibrary.org/obo/PR_000005578,chloride intracellular channel protein 5 +13.1047009,PR:000005841,http://purl.obolibrary.org/obo/PR_000005841,carboxypeptidase Z +13.1047009,PR:000006252,http://purl.obolibrary.org/obo/PR_000006252,RNA binding protein fox-1 homolog 3 +13.1047009,PR:000006906,http://purl.obolibrary.org/obo/PR_000006906,elongation factor 1-delta +13.1047009,PR:000006946,http://purl.obolibrary.org/obo/PR_000006946,ETS homologous factor +13.1047009,PR:000007280,http://purl.obolibrary.org/obo/PR_000007280,none +13.1047009,PR:000007319,http://purl.obolibrary.org/obo/PR_000007319,fatty acid desaturase 3 +13.1047009,PR:000007443,http://purl.obolibrary.org/obo/PR_000007443,Fc receptor-like protein 4 +13.1047009,PR:000007468,http://purl.obolibrary.org/obo/PR_000007468,fez family zinc finger protein 1 +13.1047009,PR:000007472,http://purl.obolibrary.org/obo/PR_000007472,fibrinogen beta chain +13.1047009,PR:000007960,http://purl.obolibrary.org/obo/PR_000007960,gametogenetin-binding protein 2 +13.1047009,PR:000008020,http://purl.obolibrary.org/obo/PR_000008020,glucocorticoid-induced transcript 1 protein +13.1047009,PR:000008087,http://purl.obolibrary.org/obo/PR_000008087,guanine nucleotide-binding protein G(i) subunit alpha-3 +13.1047009,PR:000008101,http://purl.obolibrary.org/obo/PR_000008101,guanine nucleotide-binding protein subunit beta-5 +13.1047009,PR:000008250,http://purl.obolibrary.org/obo/PR_000008250,"glutamate receptor ionotropic, NMDA 3A" +13.1047009,PR:000008336,http://purl.obolibrary.org/obo/PR_000008336,nucleolar GTP-binding protein 1 +13.1047009,PR:000008471,http://purl.obolibrary.org/obo/PR_000008471,host cell factor C1 regulator 1 +13.1047009,PR:000008624,http://purl.obolibrary.org/obo/PR_000008624,hemicentin-1 +13.1047009,PR:000008782,http://purl.obolibrary.org/obo/PR_000008782,17-beta-hydroxysteroid dehydrogenase type 6 +13.1047009,PR:000009087,http://purl.obolibrary.org/obo/PR_000009087,importin-4 +13.1047009,PR:000009090,http://purl.obolibrary.org/obo/PR_000009090,importin-8 +13.1047009,PR:000009469,http://purl.obolibrary.org/obo/PR_000009469,"keratin, type I cuticular Ha1" +13.1047009,PR:000009754,http://purl.obolibrary.org/obo/PR_000009754,LEM domain-containing protein 2 +13.1047009,PR:000009780,http://purl.obolibrary.org/obo/PR_000009780,legumain +13.1047009,PR:000009854,http://purl.obolibrary.org/obo/PR_000009854,limb region 1 protein +13.1047009,PR:000009898,http://purl.obolibrary.org/obo/PR_000009898,BPI fold-containing family B member 1 +13.1047009,PR:000010076,http://purl.obolibrary.org/obo/PR_000010076,melanoma-associated antigen D2 +13.1047009,PR:000010314,http://purl.obolibrary.org/obo/PR_000010314,multiple epidermal growth factor-like domains protein 10 +13.1047009,PR:000010510,http://purl.obolibrary.org/obo/PR_000010510,myelin-associated oligodendrocyte basic protein +13.1047009,PR:000010512,http://purl.obolibrary.org/obo/PR_000010512,molybdenum cofactor biosynthesis protein 1 +13.1047009,PR:000010784,http://purl.obolibrary.org/obo/PR_000010784,adenine DNA glycosylase MUTYH +13.1047009,PR:000010956,http://purl.obolibrary.org/obo/PR_000010956,glutamine-dependent NAD(+) synthetase +13.1047009,PR:000012050,http://purl.obolibrary.org/obo/PR_000012050,oxysterol-binding protein-related protein 5 +13.1047009,PR:000012758,http://purl.obolibrary.org/obo/PR_000012758,membrane-associated phosphatidylinositol transfer protein 3 +13.1047009,PR:000012947,http://purl.obolibrary.org/obo/PR_000012947,patatin-like phospholipase domain-containing protein 7 +13.1047009,PR:000013125,http://purl.obolibrary.org/obo/PR_000013125,protein phosphatase 1 regulatory subunit 3B +13.1047009,PR:000013417,http://purl.obolibrary.org/obo/PR_000013417,phosphotriesterase-related protein +13.1047009,PR:000013597,http://purl.obolibrary.org/obo/PR_000013597,Ras-related protein Rab-24 +13.1047009,PR:000014014,http://purl.obolibrary.org/obo/PR_000014014,Ras and Rab interactor 2 +13.1047009,PR:000014076,http://purl.obolibrary.org/obo/PR_000014076,E3 ubiquitin-protein ligase RNF123 +13.1047009,PR:000015059,http://purl.obolibrary.org/obo/PR_000015059,"solute carrier family 2, facilitated glucose transporter member 10" +13.1047009,PR:000015146,http://purl.obolibrary.org/obo/PR_000015146,choline transporter-like protein 4 +13.1047009,PR:000015329,http://purl.obolibrary.org/obo/PR_000015329,stannin +13.1047009,PR:000015538,http://purl.obolibrary.org/obo/PR_000015538,serine protease inhibitor Kazal-type 7 +13.1047009,PR:000015574,http://purl.obolibrary.org/obo/PR_000015574,small proline-rich protein 2A +13.1047009,PR:000015726,http://purl.obolibrary.org/obo/PR_000015726,double-stranded RNA-binding protein Staufen homolog 1 +13.1047009,PR:000016493,http://purl.obolibrary.org/obo/PR_000016493,TNFAIP3-interacting protein 2 +13.1047009,PR:000016686,http://purl.obolibrary.org/obo/PR_000016686,mitochondrial tRNA-specific 2-thiouridylase 1 +13.1047009,PR:000016775,http://purl.obolibrary.org/obo/PR_000016775,thiosulfate sulfurtransferase +13.1047009,PR:000016941,http://purl.obolibrary.org/obo/PR_000016941,none +13.1047009,PR:000022711,http://purl.obolibrary.org/obo/PR_000022711,none +13.1047009,PR:000023517,http://purl.obolibrary.org/obo/PR_000023517,none +13.1047009,PR:000023690,http://purl.obolibrary.org/obo/PR_000023690,none +13.1047009,PR:000024079,http://purl.obolibrary.org/obo/PR_000024079,none +13.1047009,PR:000024135,http://purl.obolibrary.org/obo/PR_000024135,none +13.1047009,PR:000025459,http://purl.obolibrary.org/obo/PR_000025459,none +13.1047009,PR:000029493,http://purl.obolibrary.org/obo/PR_000029493,probable fibrosin-1 +13.1047009,PR:000029877,http://purl.obolibrary.org/obo/PR_000029877,YTH domain-containing family protein 2 +13.1047009,PR:000030913,http://purl.obolibrary.org/obo/PR_000030913,histone-lysine N-methyltransferase ASH1L +13.1047009,PR:000031799,http://purl.obolibrary.org/obo/PR_000031799,"signal peptide, CUB and EGF-like domain-containing protein 2" +13.1047009,PR:000032043,http://purl.obolibrary.org/obo/PR_000032043,Golgi to ER traffic protein 4 homolog +13.1047009,PR:000037440,http://purl.obolibrary.org/obo/PR_000037440,none +13.1047009,PR:000044706,http://purl.obolibrary.org/obo/PR_000044706,none +13.1047009,PR:F4IHY7,http://purl.obolibrary.org/obo/PR_F4IHY7,none +13.1047009,PR:O76554,http://purl.obolibrary.org/obo/PR_O76554,none +13.1047009,PR:P00331,http://purl.obolibrary.org/obo/PR_P00331,none +13.1047009,PR:P07666,http://purl.obolibrary.org/obo/PR_P07666,none +13.1047009,PR:P11711,http://purl.obolibrary.org/obo/PR_P11711,none +13.1047009,PR:P35176,http://purl.obolibrary.org/obo/PR_P35176,none +13.1047009,PR:Q41188,http://purl.obolibrary.org/obo/PR_Q41188,none +13.1047009,PR:Q874I4,http://purl.obolibrary.org/obo/PR_Q874I4,none +13.1047009,PR:Q9S7X6,http://purl.obolibrary.org/obo/PR_Q9S7X6,none +13.1047009,PR:Q9SZ63,http://purl.obolibrary.org/obo/PR_Q9SZ63,none +13.1047009,UBERON:0001998,http://purl.obolibrary.org/obo/UBERON_0001998,sternocostal joint +13.1047009,UBERON:0003123,http://purl.obolibrary.org/obo/UBERON_0003123,pharyngeal arch artery 6 +13.1047009,UBERON:0003668,http://purl.obolibrary.org/obo/UBERON_0003668,synovial bursa +13.1047009,UBERON:0004008,http://purl.obolibrary.org/obo/UBERON_0004008,cerebellar plate +13.1047009,UBERON:0004264,http://purl.obolibrary.org/obo/UBERON_0004264,lower leg skin +13.1047009,UBERON:0004490,http://purl.obolibrary.org/obo/UBERON_0004490,cardiac muscle tissue of atrium +13.1047009,UBERON:0006106,http://purl.obolibrary.org/obo/UBERON_0006106,cochlear canal +13.1047009,UBERON:0006271,http://purl.obolibrary.org/obo/UBERON_0006271,orbital fissure +13.1047009,UBERON:0006377,http://purl.obolibrary.org/obo/UBERON_0006377,remnant of Rathke's pouch +13.1047009,UBERON:0006965,http://purl.obolibrary.org/obo/UBERON_0006965,vascular cord +13.1047009,UBERON:0008198,http://purl.obolibrary.org/obo/UBERON_0008198,nail plate +13.1047009,UBERON:0009521,http://purl.obolibrary.org/obo/UBERON_0009521,anal membrane endodermal component +13.1047009,UBERON:0009846,http://purl.obolibrary.org/obo/UBERON_0009846,embryonic cloacal epithelium +13.1047009,UBERON:0009890,http://purl.obolibrary.org/obo/UBERON_0009890,anterior intestinal portal +13.1047009,UBERON:0010163,http://purl.obolibrary.org/obo/UBERON_0010163,eyebrow +13.1047009,UBERON:0012193,http://purl.obolibrary.org/obo/UBERON_0012193,phrenic vein +13.1047009,UBERON:0022302,http://purl.obolibrary.org/obo/UBERON_0022302,short ciliary nerve +13.1262071,CHEBI:15996,http://purl.obolibrary.org/obo/CHEBI_15996,GTP +13.1262071,CHEBI:16234,http://purl.obolibrary.org/obo/CHEBI_16234,hydroxide +13.1262071,CHEBI:23666,http://purl.obolibrary.org/obo/CHEBI_23666,diamine +13.1262071,CHEBI:23990,http://purl.obolibrary.org/obo/CHEBI_23990,ethyl ester +13.1262071,CHEBI:24455,http://purl.obolibrary.org/obo/CHEBI_24455,guanosine phosphate +13.1262071,CHEBI:2509,http://purl.obolibrary.org/obo/CHEBI_2509,agar +13.1262071,CHEBI:25105,http://purl.obolibrary.org/obo/CHEBI_25105,macrolide antibiotic +13.1262071,CHEBI:37121,http://purl.obolibrary.org/obo/CHEBI_37121,guanosine 5'-phosphate +13.1262071,CHEBI:37565,http://purl.obolibrary.org/obo/CHEBI_37565,GTP(4-) +13.1262071,CHEBI:38032,http://purl.obolibrary.org/obo/CHEBI_38032,carbotricyclic compound +13.1262071,CHEBI:43176,http://purl.obolibrary.org/obo/CHEBI_43176,hydroxy group +13.1262071,CHEBI:50356,http://purl.obolibrary.org/obo/CHEBI_50356,organic iodide salt +13.1262071,CHEBI:51240,http://purl.obolibrary.org/obo/CHEBI_51240,propidium iodide +13.1262071,CHEBI:57600,http://purl.obolibrary.org/obo/CHEBI_57600,GTP(3-) +13.1262071,CHEBI:61295,http://purl.obolibrary.org/obo/CHEBI_61295,guanyl ribonucleotide +13.1262071,CHEBI:61483,http://purl.obolibrary.org/obo/CHEBI_61483,dendritic polymer +13.1262071,CHEBI:62761,http://purl.obolibrary.org/obo/CHEBI_62761,tyrosine derivative +13.1262071,CHEBI:80234,http://purl.obolibrary.org/obo/CHEBI_80234,Brain natriuretic peptide +13.1262071,CL:0000689,http://purl.obolibrary.org/obo/CL_0000689,myoendocrine cell +13.1262071,CL:0002477,http://purl.obolibrary.org/obo/CL_0002477,adipose macrophage +13.1262071,DRUGBANK:DB02396,http://purl.obolibrary.org/obo/DRUGBANK_DB02396,none +13.1262071,DRUGBANK:DB04098,http://purl.obolibrary.org/obo/DRUGBANK_DB04098,none +13.1262071,DRUGBANK:DB04116,http://purl.obolibrary.org/obo/DRUGBANK_DB04116,none +13.1262071,DRUGBANK:DB04963,http://purl.obolibrary.org/obo/DRUGBANK_DB04963,none +13.1262071,DRUGBANK:DB05968,http://purl.obolibrary.org/obo/DRUGBANK_DB05968,none +13.1262071,DRUGBANK:DB09366,http://purl.obolibrary.org/obo/DRUGBANK_DB09366,none +13.1262071,DRUGBANK:DB11026,http://purl.obolibrary.org/obo/DRUGBANK_DB11026,none +13.1262071,DRUGBANK:DB11327,http://purl.obolibrary.org/obo/DRUGBANK_DB11327,none +13.1262071,DRUGBANK:DB11453,http://purl.obolibrary.org/obo/DRUGBANK_DB11453,none +13.1262071,DRUGBANK:DB11573,http://purl.obolibrary.org/obo/DRUGBANK_DB11573,none +13.1262071,DRUGBANK:DB11632,http://purl.obolibrary.org/obo/DRUGBANK_DB11632,none +13.1262071,DRUGBANK:DB11758,http://purl.obolibrary.org/obo/DRUGBANK_DB11758,none +13.1262071,DRUGBANK:DB11830,http://purl.obolibrary.org/obo/DRUGBANK_DB11830,none +13.1262071,DRUGBANK:DB11964,http://purl.obolibrary.org/obo/DRUGBANK_DB11964,none +13.1262071,DRUGBANK:DB11986,http://purl.obolibrary.org/obo/DRUGBANK_DB11986,none +13.1262071,DRUGBANK:DB12415,http://purl.obolibrary.org/obo/DRUGBANK_DB12415,none +13.1262071,DRUGBANK:DB12531,http://purl.obolibrary.org/obo/DRUGBANK_DB12531,none +13.1262071,DRUGBANK:DB12670,http://purl.obolibrary.org/obo/DRUGBANK_DB12670,none +13.1262071,DRUGBANK:DB13064,http://purl.obolibrary.org/obo/DRUGBANK_DB13064,none +13.1262071,DRUGBANK:DB13860,http://purl.obolibrary.org/obo/DRUGBANK_DB13860,none +13.1262071,DRUGBANK:DB13909,http://purl.obolibrary.org/obo/DRUGBANK_DB13909,none +13.1262071,DRUGBANK:DB14207,http://purl.obolibrary.org/obo/DRUGBANK_DB14207,none +13.1262071,DRUGBANK:DB14752,http://purl.obolibrary.org/obo/DRUGBANK_DB14752,none +13.1262071,DRUGBANK:DB15538,http://purl.obolibrary.org/obo/DRUGBANK_DB15538,none +13.1262071,GO:0000726,http://purl.obolibrary.org/obo/GO_0000726,none +13.1262071,GO:0001947,http://purl.obolibrary.org/obo/GO_0001947,heart looping +13.1262071,GO:0002688,http://purl.obolibrary.org/obo/GO_0002688,regulation of leukocyte chemotaxis +13.1262071,GO:0004441,http://purl.obolibrary.org/obo/GO_0004441,"inositol-1,4-bisphosphate 1-phosphatase activity" +13.1262071,GO:0004479,http://purl.obolibrary.org/obo/GO_0004479,methionyl-tRNA formyltransferase activity +13.1262071,GO:0004656,http://purl.obolibrary.org/obo/GO_0004656,procollagen-proline 4-dioxygenase activity +13.1262071,GO:0006359,http://purl.obolibrary.org/obo/GO_0006359,regulation of transcription by RNA polymerase III +13.1262071,GO:0008459,http://purl.obolibrary.org/obo/GO_0008459,chondroitin 6-sulfotransferase activity +13.1262071,GO:0008754,http://purl.obolibrary.org/obo/GO_0008754,O antigen ligase activity +13.1262071,GO:0009300,http://purl.obolibrary.org/obo/GO_0009300,antisense RNA transcription +13.1262071,GO:0009810,http://purl.obolibrary.org/obo/GO_0009810,stilbene metabolic process +13.1262071,GO:0010200,http://purl.obolibrary.org/obo/GO_0010200,response to chitin +13.1262071,GO:0010389,http://purl.obolibrary.org/obo/GO_0010389,regulation of G2/M transition of mitotic cell cycle +13.1262071,GO:0016041,http://purl.obolibrary.org/obo/GO_0016041,glutamate synthase (ferredoxin) activity +13.1262071,GO:0016610,http://purl.obolibrary.org/obo/GO_0016610,nitrogenase complex +13.1262071,GO:0016643,http://purl.obolibrary.org/obo/GO_0016643,"oxidoreductase activity, acting on the CH-NH2 group of donors, iron-sulfur protein as acceptor" +13.1262071,GO:0019375,http://purl.obolibrary.org/obo/GO_0019375,galactolipid biosynthetic process +13.1262071,GO:0019385,http://purl.obolibrary.org/obo/GO_0019385,"methanogenesis, from acetate" +13.1262071,GO:0019798,http://purl.obolibrary.org/obo/GO_0019798,procollagen-proline dioxygenase activity +13.1262071,GO:0031543,http://purl.obolibrary.org/obo/GO_0031543,peptidyl-proline dioxygenase activity +13.1262071,GO:0031545,http://purl.obolibrary.org/obo/GO_0031545,peptidyl-proline 4-dioxygenase activity +13.1262071,GO:0032438,http://purl.obolibrary.org/obo/GO_0032438,melanosome organization +13.1262071,GO:0033313,http://purl.obolibrary.org/obo/GO_0033313,meiotic cell cycle checkpoint signaling +13.1262071,GO:0033684,http://purl.obolibrary.org/obo/GO_0033684,regulation of luteinizing hormone secretion +13.1262071,GO:0034504,http://purl.obolibrary.org/obo/GO_0034504,protein localization to nucleus +13.1262071,GO:0042868,http://purl.obolibrary.org/obo/GO_0042868,antisense RNA metabolic process +13.1262071,GO:0045123,http://purl.obolibrary.org/obo/GO_0045123,cellular extravasation +13.1262071,GO:0048706,http://purl.obolibrary.org/obo/GO_0048706,embryonic skeletal system development +13.1262071,GO:0048753,http://purl.obolibrary.org/obo/GO_0048753,pigment granule organization +13.1262071,GO:0050488,http://purl.obolibrary.org/obo/GO_0050488,ecdysteroid UDP-glucosyltransferase activity +13.1262071,GO:0051462,http://purl.obolibrary.org/obo/GO_0051462,regulation of cortisol secretion +13.1262071,GO:0051620,http://purl.obolibrary.org/obo/GO_0051620,norepinephrine uptake +13.1262071,GO:0071740,http://purl.obolibrary.org/obo/GO_0071740,IgD B cell receptor complex +13.1262071,GO:0072620,http://purl.obolibrary.org/obo/GO_0072620,none +13.1262071,GO:0097386,http://purl.obolibrary.org/obo/GO_0097386,glial cell projection +13.1262071,GO:0097411,http://purl.obolibrary.org/obo/GO_0097411,hypoxia-inducible factor-1alpha signaling pathway +13.1262071,GO:1903232,http://purl.obolibrary.org/obo/GO_1903232,melanosome assembly +13.1262071,GO:1904478,http://purl.obolibrary.org/obo/GO_1904478,regulation of intestinal absorption +13.1262071,HP:0012834,http://purl.obolibrary.org/obo/HP_0012834,Right +13.1262071,MONDO:0000266,http://purl.obolibrary.org/obo/MONDO_0000266,pulmonary aspergilloma +13.1262071,MONDO:0000757,http://purl.obolibrary.org/obo/MONDO_0000757,glucocorticoid-induced osteoporosis +13.1262071,MONDO:0001398,http://purl.obolibrary.org/obo/MONDO_0001398,ureter benign neoplasm +13.1262071,MONDO:0001535,http://purl.obolibrary.org/obo/MONDO_0001535,vagus nerve disease +13.1262071,MONDO:0001608,http://purl.obolibrary.org/obo/MONDO_0001608,vagus nerve neoplasm +13.1262071,MONDO:0001876,http://purl.obolibrary.org/obo/MONDO_0001876,renal artery atheroma +13.1262071,MONDO:0002638,http://purl.obolibrary.org/obo/MONDO_0002638,glossopharyngeal nerve neoplasm +13.1262071,MONDO:0002735,http://purl.obolibrary.org/obo/MONDO_0002735,anal canal adenocarcinoma +13.1262071,MONDO:0005680,http://purl.obolibrary.org/obo/MONDO_0005680,Brill-Zinsser disease +13.1262071,MONDO:0005842,http://purl.obolibrary.org/obo/MONDO_0005842,maxillary sinusitis +13.1262071,MONDO:0006004,http://purl.obolibrary.org/obo/MONDO_0006004,vasomotor rhinitis +13.1262071,MONDO:0006089,http://purl.obolibrary.org/obo/MONDO_0006089,appendix goblet cell carcinoid +13.1262071,MONDO:0006287,http://purl.obolibrary.org/obo/MONDO_0006287,malignancy in giant cell tumor of bone +13.1262071,MONDO:0006385,http://purl.obolibrary.org/obo/MONDO_0006385,primary intraosseous squamous cell carcinoma +13.1262071,MONDO:0006391,http://purl.obolibrary.org/obo/MONDO_0006391,pyloric gland adenoma +13.1262071,MONDO:0006599,http://purl.obolibrary.org/obo/MONDO_0006599,physical urticaria +13.1262071,MONDO:0007235,http://purl.obolibrary.org/obo/MONDO_0007235,branchiooculofacial syndrome +13.1262071,MONDO:0008227,http://purl.obolibrary.org/obo/MONDO_0008227,peripheral dysostosis +13.1262071,MONDO:0008729,http://purl.obolibrary.org/obo/MONDO_0008729,congenital adrenal hyperplasia due to 11-beta-hydroxylase deficiency +13.1262071,MONDO:0008846,http://purl.obolibrary.org/obo/MONDO_0008846,atransferrinemia +13.1262071,MONDO:0009133,http://purl.obolibrary.org/obo/MONDO_0009133,"cerebellar ataxia, intellectual disability, and dysequilibrium" +13.1262071,MONDO:0013361,http://purl.obolibrary.org/obo/MONDO_0013361,congenital prothrombin deficiency +13.1262071,MONDO:0015551,http://purl.obolibrary.org/obo/MONDO_0015551,basal epidermolysis bullosa simplex +13.1262071,MONDO:0017765,http://purl.obolibrary.org/obo/MONDO_0017765,disorder of magnesium transport +13.1262071,MONDO:0017882,http://purl.obolibrary.org/obo/MONDO_0017882,Omsk hemorrhagic fever +13.1262071,MONDO:0018100,http://purl.obolibrary.org/obo/MONDO_0018100,familial primary hypomagnesemia +13.1262071,MONDO:0018165,http://purl.obolibrary.org/obo/MONDO_0018165,venous thoracic outlet syndrome +13.1262071,MONDO:0019445,http://purl.obolibrary.org/obo/MONDO_0019445,trichofolliculoma +13.1262071,MONDO:0020508,http://purl.obolibrary.org/obo/MONDO_0020508,primary syringomyelia +13.1262071,MONDO:0020549,http://purl.obolibrary.org/obo/MONDO_0020549,invasive hydatidiform mole +13.1262071,MONDO:0024245,http://purl.obolibrary.org/obo/MONDO_0024245,ductal eccrine adenocarcinoma +13.1262071,MONDO:0043275,http://purl.obolibrary.org/obo/MONDO_0043275,TORCH syndrome +13.1262071,MONDO:0043777,http://purl.obolibrary.org/obo/MONDO_0043777,rhinophyma +13.1262071,MONDO:0060779,http://purl.obolibrary.org/obo/MONDO_0060779,acquired Fanconi syndrome +13.1262071,MONDO:0100358,http://purl.obolibrary.org/obo/MONDO_0100358,ectodermal dysplasia WNT10A related +13.1262071,MOP:0000561,http://purl.obolibrary.org/obo/MOP_0000561,none +13.1262071,NCBITaxon:10061,http://purl.obolibrary.org/obo/NCBITaxon_10061,none +13.1262071,NCBITaxon:10579,http://purl.obolibrary.org/obo/NCBITaxon_10579,none +13.1262071,NCBITaxon:1117,http://purl.obolibrary.org/obo/NCBITaxon_1117,none +13.1262071,NCBITaxon:11987,http://purl.obolibrary.org/obo/NCBITaxon_11987,none +13.1262071,NCBITaxon:1213620,http://purl.obolibrary.org/obo/NCBITaxon_1213620,none +13.1262071,NCBITaxon:159148,http://purl.obolibrary.org/obo/NCBITaxon_159148,none +13.1262071,NCBITaxon:163158,http://purl.obolibrary.org/obo/NCBITaxon_163158,Xenopsylla +13.1262071,NCBITaxon:1798711,http://purl.obolibrary.org/obo/NCBITaxon_1798711,none +13.1262071,NCBITaxon:2560200,http://purl.obolibrary.org/obo/NCBITaxon_2560200,none +13.1262071,NCBITaxon:2734423,http://purl.obolibrary.org/obo/NCBITaxon_2734423,none +13.1262071,NCBITaxon:30560,http://purl.obolibrary.org/obo/NCBITaxon_30560,Microchiroptera +13.1262071,NCBITaxon:33373,http://purl.obolibrary.org/obo/NCBITaxon_33373,none +13.1262071,NCBITaxon:346173,http://purl.obolibrary.org/obo/NCBITaxon_346173,none +13.1262071,NCBITaxon:3481,http://purl.obolibrary.org/obo/NCBITaxon_3481,none +13.1262071,NCBITaxon:35287,http://purl.obolibrary.org/obo/NCBITaxon_35287,none +13.1262071,NCBITaxon:36370,http://purl.obolibrary.org/obo/NCBITaxon_36370,none +13.1262071,NCBITaxon:38766,http://purl.obolibrary.org/obo/NCBITaxon_38766,none +13.1262071,NCBITaxon:39756,http://purl.obolibrary.org/obo/NCBITaxon_39756,none +13.1262071,NCBITaxon:42026,http://purl.obolibrary.org/obo/NCBITaxon_42026,none +13.1262071,NCBITaxon:451868,http://purl.obolibrary.org/obo/NCBITaxon_451868,Pleosporomycetidae +13.1262071,NCBITaxon:476427,http://purl.obolibrary.org/obo/NCBITaxon_476427,Xenopsyllinae +13.1262071,NCBITaxon:56246,http://purl.obolibrary.org/obo/NCBITaxon_56246,none +13.1262071,NCBITaxon:6329,http://purl.obolibrary.org/obo/NCBITaxon_6329,Trichinellida +13.1262071,NCBITaxon:841,http://purl.obolibrary.org/obo/NCBITaxon_841,none +13.1262071,PR:000001301,http://purl.obolibrary.org/obo/PR_000001301,none +13.1262071,PR:000001541,http://purl.obolibrary.org/obo/PR_000001541,probable G-protein coupled receptor 88 +13.1262071,PR:000001927,http://purl.obolibrary.org/obo/PR_000001927,sialic acid-binding Ig-like lectin 5 +13.1262071,PR:000003595,http://purl.obolibrary.org/obo/PR_000003595,"3-ketoacyl-CoA thiolase, mitochondrial" +13.1262071,PR:000003830,http://purl.obolibrary.org/obo/PR_000003830,angiogenic factor with G patch and FHA domains 1 +13.1262071,PR:000003882,http://purl.obolibrary.org/obo/PR_000003882,adenylate kinase isoenzyme 6 +13.1262071,PR:000004130,http://purl.obolibrary.org/obo/PR_000004130,gamma-secretase subunit APH-1B +13.1262071,PR:000004309,http://purl.obolibrary.org/obo/PR_000004309,actin-related protein 2/3 complex subunit 1B +13.1262071,PR:000004669,http://purl.obolibrary.org/obo/PR_000004669,Bardet-Biedl syndrome 7 protein +13.1262071,PR:000004726,http://purl.obolibrary.org/obo/PR_000004726,BET1-like protein +13.1262071,PR:000005501,http://purl.obolibrary.org/obo/PR_000005501,CDGSH iron-sulfur domain-containing protein 1 +13.1262071,PR:000005533,http://purl.obolibrary.org/obo/PR_000005533,chloride channel protein 6 +13.1262071,PR:000005611,http://purl.obolibrary.org/obo/PR_000005611,calsyntenin-3 +13.1262071,PR:000005721,http://purl.obolibrary.org/obo/PR_000005721,collagen alpha-2(VIII) chain +13.1262071,PR:000005771,http://purl.obolibrary.org/obo/PR_000005771,cytochrome c oxidase assembly protein COX15 +13.1262071,PR:000006010,http://purl.obolibrary.org/obo/PR_000006010,beta-catenin-interacting protein 1 +13.1262071,PR:000006126,http://purl.obolibrary.org/obo/PR_000006126,cytochrome P450 2S1 +13.1262071,PR:000007297,http://purl.obolibrary.org/obo/PR_000007297,coagulation factor XIII A chain +13.1262071,PR:000007425,http://purl.obolibrary.org/obo/PR_000007425,F-box/WD repeat-containing protein 4 +13.1262071,PR:000007492,http://purl.obolibrary.org/obo/PR_000007492,fibroblast growth factor 22 +13.1262071,PR:000007585,http://purl.obolibrary.org/obo/PR_000007585,formin-binding protein 1-like +13.1262071,PR:000008008,http://purl.obolibrary.org/obo/PR_000008008,gap junction delta-3 protein +13.1262071,PR:000008083,http://purl.obolibrary.org/obo/PR_000008083,guanine nucleotide-binding protein subunit alpha-14 +13.1262071,PR:000008364,http://purl.obolibrary.org/obo/PR_000008364,glycophorin-E +13.1262071,PR:000008727,http://purl.obolibrary.org/obo/PR_000008727,neuron-specific calcium-binding protein hippocalcin +13.1262071,PR:000009805,http://purl.obolibrary.org/obo/PR_000009805,leukocyte immunoglobulin-like receptor subfamily A member 3 +13.1262071,PR:000010078,http://purl.obolibrary.org/obo/PR_000010078,melanoma-associated antigen E1 +13.1262071,PR:000010139,http://purl.obolibrary.org/obo/PR_000010139,mitogen-activated protein kinase kinase kinase 6 +13.1262071,PR:000010338,http://purl.obolibrary.org/obo/PR_000010338,meteorin +13.1262071,PR:000010431,http://purl.obolibrary.org/obo/PR_000010431,makorin-1 +13.1262071,PR:000011029,http://purl.obolibrary.org/obo/PR_000011029,neurochondrin +13.1262071,PR:000011080,http://purl.obolibrary.org/obo/PR_000011080,"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial" +13.1262071,PR:000011190,http://purl.obolibrary.org/obo/PR_000011190,nuclear transcription factor Y subunit gamma +13.1262071,PR:000012582,http://purl.obolibrary.org/obo/PR_000012582,"ATP-dependent 6-phosphofructokinase, liver type" +13.1262071,PR:000012593,http://purl.obolibrary.org/obo/PR_000012593,phosphoglycerate mutase 2 +13.1262071,PR:000012635,http://purl.obolibrary.org/obo/PR_000012635,polyhomeotic-like protein 3 +13.1262071,PR:000012694,http://purl.obolibrary.org/obo/PR_000012694,phosphatidylinositol N-acetylglucosaminyltransferase subunit C +13.1262071,PR:000013029,http://purl.obolibrary.org/obo/PR_000013029,popeye domain-containing protein 3 +13.1262071,PR:000013284,http://purl.obolibrary.org/obo/PR_000013284,pre-mRNA-processing factor 40 homolog A +13.1262071,PR:000013827,http://purl.obolibrary.org/obo/PR_000013827,RNA-binding protein with multiple splicing 2 +13.1262071,PR:000013936,http://purl.obolibrary.org/obo/PR_000013936,Ral guanine nucleotide dissociation stimulator-like 1 +13.1262071,PR:000013995,http://purl.obolibrary.org/obo/PR_000013995,synembryn-A +13.1262071,PR:000014073,http://purl.obolibrary.org/obo/PR_000014073,E3 ubiquitin-protein ligase RLIM +13.1262071,PR:000014191,http://purl.obolibrary.org/obo/PR_000014191,60S ribosomal protein L12 +13.1262071,PR:000014197,http://purl.obolibrary.org/obo/PR_000014197,60S ribosomal protein L18 +13.1262071,PR:000014523,http://purl.obolibrary.org/obo/PR_000014523,sodium channel subunit beta-2 +13.1262071,PR:000014524,http://purl.obolibrary.org/obo/PR_000014524,sodium channel subunit beta-3 +13.1262071,PR:000014525,http://purl.obolibrary.org/obo/PR_000014525,sodium channel subunit beta-4 +13.1262071,PR:000014607,http://purl.obolibrary.org/obo/PR_000014607,selenoprotein H +13.1262071,PR:000014648,http://purl.obolibrary.org/obo/PR_000014648,septin-1 +13.1262071,PR:000014766,http://purl.obolibrary.org/obo/PR_000014766,serine/arginine-rich splicing factor 9 +13.1262071,PR:000014986,http://purl.obolibrary.org/obo/PR_000014986,solute carrier family 22 member 18 +13.1262071,PR:000015200,http://purl.obolibrary.org/obo/PR_000015200,cationic amino acid transporter 4 +13.1262071,PR:000015314,http://purl.obolibrary.org/obo/PR_000015314,synaptosomal-associated protein 47 +13.1262071,PR:000015402,http://purl.obolibrary.org/obo/PR_000015402,spermatogenesis- and oogenesis-specific basic helix-loop-helix-containing protein 1 +13.1262071,PR:000015422,http://purl.obolibrary.org/obo/PR_000015422,transcription factor SOX-14 +13.1262071,PR:000015503,http://purl.obolibrary.org/obo/PR_000015503,kinetochore protein Spc24 +13.1262071,PR:000016150,http://purl.obolibrary.org/obo/PR_000016150,T-box transcription factor TBX22 +13.1262071,PR:000016232,http://purl.obolibrary.org/obo/PR_000016232,tensin-2 +13.1262071,PR:000016267,http://purl.obolibrary.org/obo/PR_000016267,"dimethyladenosine transferase 1, mitochondrial" +13.1262071,PR:000016349,http://purl.obolibrary.org/obo/PR_000016349,mitochondrial import inner membrane translocase subunit TIM50 +13.1262071,PR:000016813,http://purl.obolibrary.org/obo/PR_000016813,tubulin alpha-8 chain +13.1262071,PR:000016953,http://purl.obolibrary.org/obo/PR_000016953,ubiquitin-like modifier-activating enzyme 5 +13.1262071,PR:000017091,http://purl.obolibrary.org/obo/PR_000017091,protein unc-45 homolog B +13.1262071,PR:000022171,http://purl.obolibrary.org/obo/PR_000022171,none +13.1262071,PR:000023201,http://purl.obolibrary.org/obo/PR_000023201,none +13.1262071,PR:000023844,http://purl.obolibrary.org/obo/PR_000023844,none +13.1262071,PR:000024108,http://purl.obolibrary.org/obo/PR_000024108,none +13.1262071,PR:000030204,http://purl.obolibrary.org/obo/PR_000030204,ADP-ribose glycohydrolase MACROD1 +13.1262071,PR:000031327,http://purl.obolibrary.org/obo/PR_000031327,vacuolar fusion protein CCZ1 homolog +13.1262071,PR:000031910,http://purl.obolibrary.org/obo/PR_000031910,tubulin polyglutamylase complex subunit 2 +13.1262071,PR:000032408,http://purl.obolibrary.org/obo/PR_000032408,transmembrane 4 L6 family member 5 +13.1262071,PR:000032458,http://purl.obolibrary.org/obo/PR_000032458,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A containing DEAD/H box 1 +13.1262071,PR:000032653,http://purl.obolibrary.org/obo/PR_000032653,E3 ubiquitin-protein ligase TRIP12 +13.1262071,PR:000033013,http://purl.obolibrary.org/obo/PR_000033013,none +13.1262071,PR:000033364,http://purl.obolibrary.org/obo/PR_000033364,none +13.1262071,PR:O13821,http://purl.obolibrary.org/obo/PR_O13821,none +13.1262071,PR:P14126,http://purl.obolibrary.org/obo/PR_P14126,none +13.1262071,PR:P94077,http://purl.obolibrary.org/obo/PR_P94077,none +13.1262071,PR:P9WMC1,http://purl.obolibrary.org/obo/PR_P9WMC1,none +13.1262071,PR:Q11085,http://purl.obolibrary.org/obo/PR_Q11085,none +13.1262071,PR:Q12044,http://purl.obolibrary.org/obo/PR_Q12044,none +13.1262071,PR:Q38933,http://purl.obolibrary.org/obo/PR_Q38933,none +13.1262071,PR:Q38959,http://purl.obolibrary.org/obo/PR_Q38959,none +13.1262071,PR:Q6PFM9,http://purl.obolibrary.org/obo/PR_Q6PFM9,none +13.1262071,PR:Q9FKZ3,http://purl.obolibrary.org/obo/PR_Q9FKZ3,none +13.1262071,PR:Q9SJL2,http://purl.obolibrary.org/obo/PR_Q9SJL2,none +13.1262071,PR:Q9U6L5,http://purl.obolibrary.org/obo/PR_Q9U6L5,none +13.1262071,PR:Q9UUC7,http://purl.obolibrary.org/obo/PR_Q9UUC7,none +13.1262071,PR:Q9Y7W4,http://purl.obolibrary.org/obo/PR_Q9Y7W4,none +13.1262071,SO:0000668,http://purl.obolibrary.org/obo/SO_0000668,EST_match +13.1262071,UBERON:0000314,http://purl.obolibrary.org/obo/UBERON_0000314,cecum mucosa +13.1262071,UBERON:0001071,http://purl.obolibrary.org/obo/UBERON_0001071,superficial cervical artery +13.1262071,UBERON:0002408,http://purl.obolibrary.org/obo/UBERON_0002408,parietal serous pericardium +13.1262071,UBERON:0002425,http://purl.obolibrary.org/obo/UBERON_0002425,visceral serous pericardium +13.1262071,UBERON:0002586,http://purl.obolibrary.org/obo/UBERON_0002586,calcarine sulcus +13.1262071,UBERON:0004528,http://purl.obolibrary.org/obo/UBERON_0004528,alveolar ridge of mandible +13.1262071,UBERON:0010153,http://purl.obolibrary.org/obo/UBERON_0010153,rumen papilla +13.1262071,UBERON:0011967,http://purl.obolibrary.org/obo/UBERON_0011967,costotransverse joint +13.1262071,UBERON:0012087,http://purl.obolibrary.org/obo/UBERON_0012087,air capillary of parabronchus +13.1262071,UBERON:0012111,http://purl.obolibrary.org/obo/UBERON_0012111,diastema +13.1262071,UBERON:0013138,http://purl.obolibrary.org/obo/UBERON_0013138,coronary ligament of liver +13.1262071,UBERON:0013481,http://purl.obolibrary.org/obo/UBERON_0013481,crypt of Lieberkuhn of ileum +13.1262071,UBERON:0016467,http://purl.obolibrary.org/obo/UBERON_0016467,antitragus +13.1262071,UBERON:0017649,http://purl.obolibrary.org/obo/UBERON_0017649,dorsal body wall +13.1262071,UBERON:0024952,http://purl.obolibrary.org/obo/UBERON_0024952,none +13.1262071,UBERON:2002053,http://purl.obolibrary.org/obo/UBERON_2002053,bony plate +13.1262071,UBERON:2005088,http://purl.obolibrary.org/obo/UBERON_2005088,posterior mesenteric artery +13.148186,CHEBI:24061,http://purl.obolibrary.org/obo/CHEBI_24061,fluorine atom +13.148186,CHEBI:24689,http://purl.obolibrary.org/obo/CHEBI_24689,hydroxycinnamic acid +13.148186,CHEBI:25754,http://purl.obolibrary.org/obo/CHEBI_25754,oxo carboxylic acid +13.148186,CHEBI:26214,http://purl.obolibrary.org/obo/CHEBI_26214,porphyrins +13.148186,CHEBI:27266,http://purl.obolibrary.org/obo/CHEBI_27266,valine +13.148186,CHEBI:28001,http://purl.obolibrary.org/obo/CHEBI_28001,vancomycin +13.148186,CHEBI:32877,http://purl.obolibrary.org/obo/CHEBI_32877,primary amine +13.148186,CHEBI:35813,http://purl.obolibrary.org/obo/CHEBI_35813,none +13.148186,CHEBI:35871,http://purl.obolibrary.org/obo/CHEBI_35871,oxo monocarboxylic acid +13.148186,CHEBI:37598,http://purl.obolibrary.org/obo/CHEBI_37598,nitrogen mustard +13.148186,CHEBI:37807,http://purl.obolibrary.org/obo/CHEBI_37807,ethyl group +13.148186,CHEBI:46850,http://purl.obolibrary.org/obo/CHEBI_46850,organoammonium salt +13.148186,CHEBI:50845,http://purl.obolibrary.org/obo/CHEBI_50845,doxycycline +13.148186,CHEBI:77635,http://purl.obolibrary.org/obo/CHEBI_77635,calcium phosphate +13.148186,DRUGBANK:DB00885,http://purl.obolibrary.org/obo/DRUGBANK_DB00885,none +13.148186,DRUGBANK:DB01953,http://purl.obolibrary.org/obo/DRUGBANK_DB01953,none +13.148186,DRUGBANK:DB01997,http://purl.obolibrary.org/obo/DRUGBANK_DB01997,none +13.148186,DRUGBANK:DB02020,http://purl.obolibrary.org/obo/DRUGBANK_DB02020,none +13.148186,DRUGBANK:DB04052,http://purl.obolibrary.org/obo/DRUGBANK_DB04052,none +13.148186,DRUGBANK:DB04886,http://purl.obolibrary.org/obo/DRUGBANK_DB04886,none +13.148186,DRUGBANK:DB06157,http://purl.obolibrary.org/obo/DRUGBANK_DB06157,none +13.148186,DRUGBANK:DB06497,http://purl.obolibrary.org/obo/DRUGBANK_DB06497,none +13.148186,DRUGBANK:DB08952,http://purl.obolibrary.org/obo/DRUGBANK_DB08952,none +13.148186,DRUGBANK:DB09381,http://purl.obolibrary.org/obo/DRUGBANK_DB09381,none +13.148186,DRUGBANK:DB09490,http://purl.obolibrary.org/obo/DRUGBANK_DB09490,none +13.148186,DRUGBANK:DB10437,http://purl.obolibrary.org/obo/DRUGBANK_DB10437,none +13.148186,DRUGBANK:DB11382,http://purl.obolibrary.org/obo/DRUGBANK_DB11382,none +13.148186,DRUGBANK:DB11732,http://purl.obolibrary.org/obo/DRUGBANK_DB11732,none +13.148186,DRUGBANK:DB11974,http://purl.obolibrary.org/obo/DRUGBANK_DB11974,none +13.148186,DRUGBANK:DB12118,http://purl.obolibrary.org/obo/DRUGBANK_DB12118,none +13.148186,DRUGBANK:DB12141,http://purl.obolibrary.org/obo/DRUGBANK_DB12141,none +13.148186,DRUGBANK:DB12912,http://purl.obolibrary.org/obo/DRUGBANK_DB12912,none +13.148186,DRUGBANK:DB13885,http://purl.obolibrary.org/obo/DRUGBANK_DB13885,none +13.148186,DRUGBANK:DB14923,http://purl.obolibrary.org/obo/DRUGBANK_DB14923,none +13.148186,DRUGBANK:DB15086,http://purl.obolibrary.org/obo/DRUGBANK_DB15086,none +13.148186,DRUGBANK:DB15910,http://purl.obolibrary.org/obo/DRUGBANK_DB15910,none +13.148186,DRUGBANK:DB16097,http://purl.obolibrary.org/obo/DRUGBANK_DB16097,none +13.148186,GO:0002041,http://purl.obolibrary.org/obo/GO_0002041,intussusceptive angiogenesis +13.148186,GO:0002712,http://purl.obolibrary.org/obo/GO_0002712,regulation of B cell mediated immunity +13.148186,GO:0004152,http://purl.obolibrary.org/obo/GO_0004152,dihydroorotate dehydrogenase activity +13.148186,GO:0004435,http://purl.obolibrary.org/obo/GO_0004435,phosphatidylinositol phospholipase C activity +13.148186,GO:0004816,http://purl.obolibrary.org/obo/GO_0004816,asparagine-tRNA ligase activity +13.148186,GO:0004854,http://purl.obolibrary.org/obo/GO_0004854,xanthine dehydrogenase activity +13.148186,GO:0005868,http://purl.obolibrary.org/obo/GO_0005868,cytoplasmic dynein complex +13.148186,GO:0006538,http://purl.obolibrary.org/obo/GO_0006538,glutamate catabolic process +13.148186,GO:0006686,http://purl.obolibrary.org/obo/GO_0006686,sphingomyelin biosynthetic process +13.148186,GO:0006921,http://purl.obolibrary.org/obo/GO_0006921,cellular component disassembly involved in execution phase of apoptosis +13.148186,GO:0006983,http://purl.obolibrary.org/obo/GO_0006983,ER overload response +13.148186,GO:0007215,http://purl.obolibrary.org/obo/GO_0007215,glutamate receptor signaling pathway +13.148186,GO:0007615,http://purl.obolibrary.org/obo/GO_0007615,anesthesia-resistant memory +13.148186,GO:0008216,http://purl.obolibrary.org/obo/GO_0008216,spermidine metabolic process +13.148186,GO:0008806,http://purl.obolibrary.org/obo/GO_0008806,carboxymethylenebutenolidase activity +13.148186,GO:0008879,http://purl.obolibrary.org/obo/GO_0008879,glucose-1-phosphate thymidylyltransferase activity +13.148186,GO:0010883,http://purl.obolibrary.org/obo/GO_0010883,regulation of lipid storage +13.148186,GO:0015039,http://purl.obolibrary.org/obo/GO_0015039,NADPH-adrenodoxin reductase activity +13.148186,GO:0015215,http://purl.obolibrary.org/obo/GO_0015215,nucleotide transmembrane transporter activity +13.148186,GO:0016586,http://purl.obolibrary.org/obo/GO_0016586,RSC-type complex +13.148186,GO:0018108,http://purl.obolibrary.org/obo/GO_0018108,peptidyl-tyrosine phosphorylation +13.148186,GO:0019660,http://purl.obolibrary.org/obo/GO_0019660,glycolytic fermentation +13.148186,GO:0021772,http://purl.obolibrary.org/obo/GO_0021772,olfactory bulb development +13.148186,GO:0030149,http://purl.obolibrary.org/obo/GO_0030149,sphingolipid catabolic process +13.148186,GO:0030262,http://purl.obolibrary.org/obo/GO_0030262,apoptotic nuclear changes +13.148186,GO:0030307,http://purl.obolibrary.org/obo/GO_0030307,positive regulation of cell growth +13.148186,GO:0030336,http://purl.obolibrary.org/obo/GO_0030336,negative regulation of cell migration +13.148186,GO:0030812,http://purl.obolibrary.org/obo/GO_0030812,negative regulation of nucleotide catabolic process +13.148186,GO:0032613,http://purl.obolibrary.org/obo/GO_0032613,interleukin-10 production +13.148186,GO:0033073,http://purl.obolibrary.org/obo/GO_0033073,pinene metabolic process +13.148186,GO:0033688,http://purl.obolibrary.org/obo/GO_0033688,regulation of osteoblast proliferation +13.148186,GO:0033916,http://purl.obolibrary.org/obo/GO_0033916,beta-agarase activity +13.148186,GO:0034437,http://purl.obolibrary.org/obo/GO_0034437,none +13.148186,GO:0035813,http://purl.obolibrary.org/obo/GO_0035813,regulation of renal sodium excretion +13.148186,GO:0035836,http://purl.obolibrary.org/obo/GO_0035836,ergot alkaloid metabolic process +13.148186,GO:0035900,http://purl.obolibrary.org/obo/GO_0035900,response to isolation stress +13.148186,GO:0038058,http://purl.obolibrary.org/obo/GO_0038058,TNFSF11 receptor activity +13.148186,GO:0042936,http://purl.obolibrary.org/obo/GO_0042936,none +13.148186,GO:0045436,http://purl.obolibrary.org/obo/GO_0045436,lycopene beta cyclase activity +13.148186,GO:0045978,http://purl.obolibrary.org/obo/GO_0045978,negative regulation of nucleoside metabolic process +13.148186,GO:0046860,http://purl.obolibrary.org/obo/GO_0046860,glycosome membrane +13.148186,GO:0046950,http://purl.obolibrary.org/obo/GO_0046950,cellular ketone body metabolic process +13.148186,GO:0047987,http://purl.obolibrary.org/obo/GO_0047987,none +13.148186,GO:0051198,http://purl.obolibrary.org/obo/GO_0051198,none +13.148186,GO:0070246,http://purl.obolibrary.org/obo/GO_0070246,natural killer cell apoptotic process +13.148186,GO:0070444,http://purl.obolibrary.org/obo/GO_0070444,oligodendrocyte progenitor proliferation +13.148186,GO:0070664,http://purl.obolibrary.org/obo/GO_0070664,negative regulation of leukocyte proliferation +13.148186,GO:0070734,http://purl.obolibrary.org/obo/GO_0070734,histone H3-K27 methylation +13.148186,GO:0090169,http://purl.obolibrary.org/obo/GO_0090169,regulation of spindle assembly +13.148186,GO:0090303,http://purl.obolibrary.org/obo/GO_0090303,positive regulation of wound healing +13.148186,GO:0090353,http://purl.obolibrary.org/obo/GO_0090353,polygalacturonase inhibitor activity +13.148186,GO:0097418,http://purl.obolibrary.org/obo/GO_0097418,neurofibrillary tangle +13.148186,GO:1903176,http://purl.obolibrary.org/obo/GO_1903176,regulation of tyrosine 3-monooxygenase activity +13.148186,GO:1903579,http://purl.obolibrary.org/obo/GO_1903579,negative regulation of ATP metabolic process +13.148186,GO:1903792,http://purl.obolibrary.org/obo/GO_1903792,negative regulation of anion transport +13.148186,GO:1990104,http://purl.obolibrary.org/obo/GO_1990104,DNA bending complex +13.148186,GO:1990784,http://purl.obolibrary.org/obo/GO_1990784,response to dsDNA +13.148186,GO:2000209,http://purl.obolibrary.org/obo/GO_2000209,regulation of anoikis +13.148186,HP:0002650,http://purl.obolibrary.org/obo/HP_0002650,Scoliosis +13.148186,HP:0012825,http://purl.obolibrary.org/obo/HP_0012825,Mild +13.148186,MONDO:0000483,http://purl.obolibrary.org/obo/MONDO_0000483,oculogyric crisis +13.148186,MONDO:0000686,http://purl.obolibrary.org/obo/MONDO_0000686,alexia without agraphia +13.148186,MONDO:0001283,http://purl.obolibrary.org/obo/MONDO_0001283,endosalpingiosis +13.148186,MONDO:0001520,http://purl.obolibrary.org/obo/MONDO_0001520,kleptomania +13.148186,MONDO:0003355,http://purl.obolibrary.org/obo/MONDO_0003355,ovary leiomyosarcoma +13.148186,MONDO:0003860,http://purl.obolibrary.org/obo/MONDO_0003860,cerebellopontine angle meningioma +13.148186,MONDO:0004497,http://purl.obolibrary.org/obo/MONDO_0004497,tertiary syphilis +13.148186,MONDO:0004539,http://purl.obolibrary.org/obo/MONDO_0004539,aortic malignant tumor +13.148186,MONDO:0006146,http://purl.obolibrary.org/obo/MONDO_0006146,chondroid hamartoma +13.148186,MONDO:0007437,http://purl.obolibrary.org/obo/MONDO_0007437,dentin dysplasia type II +13.148186,MONDO:0007872,http://purl.obolibrary.org/obo/MONDO_0007872,LADD syndrome +13.148186,MONDO:0009181,http://purl.obolibrary.org/obo/MONDO_0009181,epidermolysis bullosa simplex with muscular dystrophy +13.148186,MONDO:0009213,http://purl.obolibrary.org/obo/MONDO_0009213,Fanconi anemia complementation group C +13.148186,MONDO:0009377,http://purl.obolibrary.org/obo/MONDO_0009377,hyperammonemia due to N-acetylglutamate synthase deficiency +13.148186,MONDO:0010997,http://purl.obolibrary.org/obo/MONDO_0010997,"supranuclear palsy, progressive, 1" +13.148186,MONDO:0011929,http://purl.obolibrary.org/obo/MONDO_0011929,chromosome 1p36 deletion syndrome +13.148186,MONDO:0016198,http://purl.obolibrary.org/obo/MONDO_0016198,qualitative or quantitative defects of plectin +13.148186,MONDO:0016649,http://purl.obolibrary.org/obo/MONDO_0016649,Warburg micro syndrome +13.148186,MONDO:0017195,http://purl.obolibrary.org/obo/MONDO_0017195,Bruck syndrome +13.148186,MONDO:0021281,http://purl.obolibrary.org/obo/MONDO_0021281,cavernous hemangioma of retina +13.148186,MONDO:0024616,http://purl.obolibrary.org/obo/MONDO_0024616,tympanitis +13.148186,MONDO:0043094,http://purl.obolibrary.org/obo/MONDO_0043094,"ichthyosis, follicular" +13.148186,MONDO:0100011,http://purl.obolibrary.org/obo/MONDO_0100011,tendinosis +13.148186,MOP:0000789,http://purl.obolibrary.org/obo/MOP_0000789,none +13.148186,NCBITaxon:10282,http://purl.obolibrary.org/obo/NCBITaxon_10282,none +13.148186,NCBITaxon:11140,http://purl.obolibrary.org/obo/NCBITaxon_11140,none +13.148186,NCBITaxon:1214906,http://purl.obolibrary.org/obo/NCBITaxon_1214906,none +13.148186,NCBITaxon:163159,http://purl.obolibrary.org/obo/NCBITaxon_163159,Xenopsylla cheopis +13.148186,NCBITaxon:31632,http://purl.obolibrary.org/obo/NCBITaxon_31632,none +13.148186,NCBITaxon:31713,http://purl.obolibrary.org/obo/NCBITaxon_31713,none +13.148186,NCBITaxon:35350,http://purl.obolibrary.org/obo/NCBITaxon_35350,none +13.148186,NCBITaxon:40279,http://purl.obolibrary.org/obo/NCBITaxon_40279,none +13.148186,NCBITaxon:506,http://purl.obolibrary.org/obo/NCBITaxon_506,Alcaligenaceae +13.148186,NCBITaxon:572922,http://purl.obolibrary.org/obo/NCBITaxon_572922,none +13.148186,NCBITaxon:92860,http://purl.obolibrary.org/obo/NCBITaxon_92860,Pleosporales +13.148186,NCBITaxon:988164,http://purl.obolibrary.org/obo/NCBITaxon_988164,none +13.148186,PR:000001220,http://purl.obolibrary.org/obo/PR_000001220,encephalopsin +13.148186,PR:000001910,http://purl.obolibrary.org/obo/PR_000001910,plexin-C1 +13.148186,PR:000003202,http://purl.obolibrary.org/obo/PR_000003202,calcium/calmodulin-dependent protein kinase type II subunit gamma +13.148186,PR:000003341,http://purl.obolibrary.org/obo/PR_000003341,collagen alpha-3(VI) chain +13.148186,PR:000003519,http://purl.obolibrary.org/obo/PR_000003519,acetoacetyl-CoA synthetase +13.148186,PR:000003599,http://purl.obolibrary.org/obo/PR_000003599,"complex I assembly factor ACAD9, mitochondrial" +13.148186,PR:000003628,http://purl.obolibrary.org/obo/PR_000003628,ATP-citrate synthase +13.148186,PR:000003640,http://purl.obolibrary.org/obo/PR_000003640,acyl-coenzyme A thioesterase 8 +13.148186,PR:000003664,http://purl.obolibrary.org/obo/PR_000003664,"acyl-coenzyme A synthetase ACSM1, mitochondrial" +13.148186,PR:000003710,http://purl.obolibrary.org/obo/PR_000003710,disintegrin and metalloproteinase domain-containing protein 11 +13.148186,PR:000003753,http://purl.obolibrary.org/obo/PR_000003753,adenylate cyclase type 2 +13.148186,PR:000004090,http://purl.obolibrary.org/obo/PR_000004090,AP-1 complex subunit beta-1 +13.148186,PR:000004266,http://purl.obolibrary.org/obo/PR_000004266,AT-rich interactive domain-containing protein 3B +13.148186,PR:000004313,http://purl.obolibrary.org/obo/PR_000004313,actin-related protein 2/3 complex subunit 5 +13.148186,PR:000004521,http://purl.obolibrary.org/obo/PR_000004521,advillin +13.148186,PR:000004605,http://purl.obolibrary.org/obo/PR_000004605,"beta-1,4-galactosyltransferase 1" +13.148186,PR:000004701,http://purl.obolibrary.org/obo/PR_000004701,B-cell CLL/lymphoma 6 member B protein +13.148186,PR:000004848,http://purl.obolibrary.org/obo/PR_000004848,butyrophilin subfamily 1 member A1 +13.148186,PR:000005048,http://purl.obolibrary.org/obo/PR_000005048,protein CASC3 +13.148186,PR:000005779,http://purl.obolibrary.org/obo/PR_000005779,"cytochrome c oxidase subunit 5A, mitochondrial" +13.148186,PR:000006465,http://purl.obolibrary.org/obo/PR_000006465,short-chain dehydrogenase/reductase 3 +13.148186,PR:000006545,http://purl.obolibrary.org/obo/PR_000006545,doublesex- and mab-3-related transcription factor A1 +13.148186,PR:000006777,http://purl.obolibrary.org/obo/PR_000006777,dynein light chain roadblock-type 1 +13.148186,PR:000006860,http://purl.obolibrary.org/obo/PR_000006860,transcription factor E4F1 +13.148186,PR:000007126,http://purl.obolibrary.org/obo/PR_000007126,ephrin type-A receptor 6 +13.148186,PR:000007237,http://purl.obolibrary.org/obo/PR_000007237,ecotropic viral integration site 5 protein +13.148186,PR:000007352,http://purl.obolibrary.org/obo/PR_000007352,protocadherin Fat 3 +13.148186,PR:000007650,http://purl.obolibrary.org/obo/PR_000007650,"folylpolyglutamate synthase, mitochondrial" +13.148186,PR:000007903,http://purl.obolibrary.org/obo/PR_000007903,"beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase" +13.148186,PR:000008152,http://purl.obolibrary.org/obo/PR_000008152,Golgi SNAP receptor complex member 2 +13.148186,PR:000008431,http://purl.obolibrary.org/obo/PR_000008431,2-hydroxyacyl-CoA lyase 1 +13.148186,PR:000008448,http://purl.obolibrary.org/obo/PR_000008448,"histidyl-tRNA synthetase, cytoplasmic" +13.148186,PR:000008493,http://purl.obolibrary.org/obo/PR_000008493,hepatoma-derived growth factor-related protein 3 +13.148186,PR:000008849,http://purl.obolibrary.org/obo/PR_000008849,hyaluronidase-3 +13.148186,PR:000008921,http://purl.obolibrary.org/obo/PR_000008921,interferon alpha-8 +13.148186,PR:000009911,http://purl.obolibrary.org/obo/PR_000009911,p53-induced death domain-containing protein 1 +13.148186,PR:000010270,http://purl.obolibrary.org/obo/PR_000010270,magnesium-dependent phosphatase 1 +13.148186,PR:000010405,http://purl.obolibrary.org/obo/PR_000010405,MHC class I polypeptide-related sequence B +13.148186,PR:000010748,http://purl.obolibrary.org/obo/PR_000010748,"peptide chain release factor 1, mitochondrial" +13.148186,PR:000011114,http://purl.obolibrary.org/obo/PR_000011114,protein NEDD1 +13.148186,PR:000011144,http://purl.obolibrary.org/obo/PR_000011144,neuropilin and tolloid-like protein 2 +13.148186,PR:000011171,http://purl.obolibrary.org/obo/PR_000011171,nuclear factor erythroid 2-related factor 3 +13.148186,PR:000011180,http://purl.obolibrary.org/obo/PR_000011180,NF-kappa-B inhibitor-like protein 1 +13.148186,PR:000012048,http://purl.obolibrary.org/obo/PR_000012048,oxysterol-binding protein-related protein 2 +13.148186,PR:000012067,http://purl.obolibrary.org/obo/PR_000012067,osteoclast-stimulating factor 1 +13.148186,PR:000012351,http://purl.obolibrary.org/obo/PR_000012351,cadherin-related family member 1 +13.148186,PR:000012583,http://purl.obolibrary.org/obo/PR_000012583,"ATP-dependent 6-phosphofructokinase, muscle type" +13.148186,PR:000012657,http://purl.obolibrary.org/obo/PR_000012657,PH-interacting protein +13.148186,PR:000012701,http://purl.obolibrary.org/obo/PR_000012701,GPI ethanolamine phosphate transferase 1 +13.148186,PR:000012752,http://purl.obolibrary.org/obo/PR_000012752,phosphatidylserine decarboxylase proenzyme +13.148186,PR:000012894,http://purl.obolibrary.org/obo/PR_000012894,plexin-A3 +13.148186,PR:000013135,http://purl.obolibrary.org/obo/PR_000013135,serine/threonine-protein phosphatase 2A 65 kDa regulatory subunit A beta isoform +13.148186,PR:000013331,http://purl.obolibrary.org/obo/PR_000013331,serine protease 57 +13.148186,PR:000013389,http://purl.obolibrary.org/obo/PR_000013389,26S proteasome non-ATPase regulatory subunit 7 +13.148186,PR:000013458,http://purl.obolibrary.org/obo/PR_000013458,tyrosine-protein phosphatase non-receptor type 23 +13.148186,PR:000013544,http://purl.obolibrary.org/obo/PR_000013544,none +13.148186,PR:000013621,http://purl.obolibrary.org/obo/PR_000013621,Rab3 GTPase-activating protein catalytic subunit +13.148186,PR:000013834,http://purl.obolibrary.org/obo/PR_000013834,protein RCC2 +13.148186,PR:000013925,http://purl.obolibrary.org/obo/PR_000013925,transcription factor RFX3 +13.148186,PR:000014407,http://purl.obolibrary.org/obo/PR_000014407,protein S100-A14 +13.148186,PR:000014910,http://purl.obolibrary.org/obo/PR_000014910,sickle tail protein +13.148186,PR:000015077,http://purl.obolibrary.org/obo/PR_000015077,zinc transporter 4 +13.148186,PR:000015132,http://purl.obolibrary.org/obo/PR_000015132,zinc transporter ZIP5 +13.148186,PR:000015250,http://purl.obolibrary.org/obo/PR_000015250,pre-mRNA-splicing factor SLU7 +13.148186,PR:000015353,http://purl.obolibrary.org/obo/PR_000015353,gamma-1-syntrophin +13.148186,PR:000015660,http://purl.obolibrary.org/obo/PR_000015660,translocon-associated protein subunit beta +13.148186,PR:000015734,http://purl.obolibrary.org/obo/PR_000015734,saitohin +13.148186,PR:000015847,http://purl.obolibrary.org/obo/PR_000015847,histone-lysine N-methyltransferase KMT5C +13.148186,PR:000016296,http://purl.obolibrary.org/obo/PR_000016296,protein-glutamine gamma-glutamyltransferase 5 +13.148186,PR:000016307,http://purl.obolibrary.org/obo/PR_000016307,acyl-coenzyme A thioesterase THEM4 +13.148186,PR:000016446,http://purl.obolibrary.org/obo/PR_000016446,tropomodulin-3 +13.148186,PR:000016735,http://purl.obolibrary.org/obo/PR_000016735,tetraspanin-1 +13.148186,PR:000016952,http://purl.obolibrary.org/obo/PR_000016952,NEDD8-activating enzyme E1 catalytic subunit +13.148186,PR:000017119,http://purl.obolibrary.org/obo/PR_000017119,uracil phosphoribosyltransferase +13.148186,PR:000017516,http://purl.obolibrary.org/obo/PR_000017516,xylosyltransferase 2 +13.148186,PR:000017517,http://purl.obolibrary.org/obo/PR_000017517,none +13.148186,PR:000022058,http://purl.obolibrary.org/obo/PR_000022058,none +13.148186,PR:000022384,http://purl.obolibrary.org/obo/PR_000022384,none +13.148186,PR:000022701,http://purl.obolibrary.org/obo/PR_000022701,none +13.148186,PR:000022822,http://purl.obolibrary.org/obo/PR_000022822,none +13.148186,PR:000022896,http://purl.obolibrary.org/obo/PR_000022896,none +13.148186,PR:000023295,http://purl.obolibrary.org/obo/PR_000023295,none +13.148186,PR:000023707,http://purl.obolibrary.org/obo/PR_000023707,none +13.148186,PR:000023805,http://purl.obolibrary.org/obo/PR_000023805,none +13.148186,PR:000024077,http://purl.obolibrary.org/obo/PR_000024077,none +13.148186,PR:000029068,http://purl.obolibrary.org/obo/PR_000029068,none +13.148186,PR:000029102,http://purl.obolibrary.org/obo/PR_000029102,DEP domain-containing mTOR-interacting protein +13.148186,PR:000029209,http://purl.obolibrary.org/obo/PR_000029209,none +13.148186,PR:000029280,http://purl.obolibrary.org/obo/PR_000029280,armadillo repeat-containing protein 5 +13.148186,PR:000029393,http://purl.obolibrary.org/obo/PR_000029393,probable ATP-dependent RNA helicase DDX56 +13.148186,PR:000030422,http://purl.obolibrary.org/obo/PR_000030422,leucine-rich repeat neuronal protein 2 +13.148186,PR:000030755,http://purl.obolibrary.org/obo/PR_000030755,DNA annealing helicase and endonuclease ZRANB3 +13.148186,PR:000031098,http://purl.obolibrary.org/obo/PR_000031098,IQ motif and SEC7 domain-containing protein 2 +13.148186,PR:000032169,http://purl.obolibrary.org/obo/PR_000032169,a disintegrin and metalloproteinase with thrombospondin motifs 10 +13.148186,PR:000032183,http://purl.obolibrary.org/obo/PR_000032183,DnaJ homolog subfamily C member 11 +13.148186,PR:000034914,http://purl.obolibrary.org/obo/PR_000034914,none +13.148186,PR:A0JMQ7,http://purl.obolibrary.org/obo/PR_A0JMQ7,none +13.148186,PR:B8JLQ0,http://purl.obolibrary.org/obo/PR_B8JLQ0,none +13.148186,PR:G2TRJ8,http://purl.obolibrary.org/obo/PR_G2TRJ8,none +13.148186,PR:O14112,http://purl.obolibrary.org/obo/PR_O14112,none +13.148186,PR:O81821,http://purl.obolibrary.org/obo/PR_O81821,none +13.148186,PR:O88397,http://purl.obolibrary.org/obo/PR_O88397,none +13.148186,PR:O94396,http://purl.obolibrary.org/obo/PR_O94396,none +13.148186,PR:P38830,http://purl.obolibrary.org/obo/PR_P38830,none +13.148186,PR:P53406,http://purl.obolibrary.org/obo/PR_P53406,none +13.148186,PR:P53753,http://purl.obolibrary.org/obo/PR_P53753,none +13.148186,PR:P53924,http://purl.obolibrary.org/obo/PR_P53924,none +13.148186,PR:Q00725,http://purl.obolibrary.org/obo/PR_Q00725,none +13.148186,PR:Q2LAE1,http://purl.obolibrary.org/obo/PR_Q2LAE1,none +13.148186,PR:Q2UVJ5,http://purl.obolibrary.org/obo/PR_Q2UVJ5,none +13.148186,PR:Q8S4Q6,http://purl.obolibrary.org/obo/PR_Q8S4Q6,none +13.148186,PR:Q9FJ82,http://purl.obolibrary.org/obo/PR_Q9FJ82,none +13.148186,PR:Q9LSZ9,http://purl.obolibrary.org/obo/PR_Q9LSZ9,none +13.148186,PR:Q9SQQ9,http://purl.obolibrary.org/obo/PR_Q9SQQ9,none +13.148186,PR:Q9SVM8,http://purl.obolibrary.org/obo/PR_Q9SVM8,none +13.148186,PR:Q9VB14,http://purl.obolibrary.org/obo/PR_Q9VB14,none +13.148186,PR:Q9VQG2,http://purl.obolibrary.org/obo/PR_Q9VQG2,none +13.148186,PR:Q9VWG3,http://purl.obolibrary.org/obo/PR_Q9VWG3,none +13.148186,PR:Q9Y7J9,http://purl.obolibrary.org/obo/PR_Q9Y7J9,none +13.148186,UBERON:0000999,http://purl.obolibrary.org/obo/UBERON_0000999,ejaculatory duct +13.148186,UBERON:0001106,http://purl.obolibrary.org/obo/UBERON_0001106,cephalic vein +13.148186,UBERON:0001656,http://purl.obolibrary.org/obo/UBERON_0001656,retromandibular vein +13.148186,UBERON:0003470,http://purl.obolibrary.org/obo/UBERON_0003470,artery of upper lip +13.148186,UBERON:0004550,http://purl.obolibrary.org/obo/UBERON_0004550,gastroesophageal sphincter +13.148186,UBERON:0004742,http://purl.obolibrary.org/obo/UBERON_0004742,dentary +13.148186,UBERON:0007365,http://purl.obolibrary.org/obo/UBERON_0007365,rumen +13.148186,UBERON:0010249,http://purl.obolibrary.org/obo/UBERON_0010249,posterior meningeal artery +13.148186,UBERON:0013593,http://purl.obolibrary.org/obo/UBERON_0013593,suprasylvian sulcus +13.148186,UBERON:0015150,http://purl.obolibrary.org/obo/UBERON_0015150,dorsal hair +13.1706588,CHEBI:22660,http://purl.obolibrary.org/obo/CHEBI_22660,aspartic acid +13.1706588,CHEBI:22860,http://purl.obolibrary.org/obo/CHEBI_22860,amino-acid betaine +13.1706588,CHEBI:47868,http://purl.obolibrary.org/obo/CHEBI_47868,photosensitizing agent +13.1706588,CHEBI:49183,http://purl.obolibrary.org/obo/CHEBI_49183,phosphatidylcholine(1+) +13.1706588,CHEBI:62801,http://purl.obolibrary.org/obo/CHEBI_62801,ethyl +13.1706588,CHEBI:64482,http://purl.obolibrary.org/obo/CHEBI_64482,phosphatidylcholine +13.1706588,CHEBI:74440,http://purl.obolibrary.org/obo/CHEBI_74440,epidermal growth factor receptor antagonist +13.1706588,CL:0002325,http://purl.obolibrary.org/obo/CL_0002325,mammary alveolar cell +13.1706588,CL:0002652,http://purl.obolibrary.org/obo/CL_0002652,endothelial cell of high endothelial venule +13.1706588,CL:0019003,http://purl.obolibrary.org/obo/CL_0019003,tracheobronchial goblet cell +13.1706588,CL:1000410,http://purl.obolibrary.org/obo/CL_1000410,myocyte of atrioventricular node +13.1706588,CL:1001586,http://purl.obolibrary.org/obo/CL_1001586,mammary gland glandular cell +13.1706588,CL:2000022,http://purl.obolibrary.org/obo/CL_2000022,cardiac septum cell +13.1706588,DRUGBANK:DB01791,http://purl.obolibrary.org/obo/DRUGBANK_DB01791,none +13.1706588,DRUGBANK:DB02975,http://purl.obolibrary.org/obo/DRUGBANK_DB02975,none +13.1706588,DRUGBANK:DB03792,http://purl.obolibrary.org/obo/DRUGBANK_DB03792,none +13.1706588,DRUGBANK:DB04071,http://purl.obolibrary.org/obo/DRUGBANK_DB04071,none +13.1706588,DRUGBANK:DB04129,http://purl.obolibrary.org/obo/DRUGBANK_DB04129,none +13.1706588,DRUGBANK:DB05104,http://purl.obolibrary.org/obo/DRUGBANK_DB05104,none +13.1706588,DRUGBANK:DB05513,http://purl.obolibrary.org/obo/DRUGBANK_DB05513,none +13.1706588,DRUGBANK:DB06310,http://purl.obolibrary.org/obo/DRUGBANK_DB06310,none +13.1706588,DRUGBANK:DB06454,http://purl.obolibrary.org/obo/DRUGBANK_DB06454,none +13.1706588,DRUGBANK:DB09151,http://purl.obolibrary.org/obo/DRUGBANK_DB09151,none +13.1706588,DRUGBANK:DB09517,http://purl.obolibrary.org/obo/DRUGBANK_DB09517,none +13.1706588,DRUGBANK:DB11111,http://purl.obolibrary.org/obo/DRUGBANK_DB11111,none +13.1706588,DRUGBANK:DB11747,http://purl.obolibrary.org/obo/DRUGBANK_DB11747,none +13.1706588,DRUGBANK:DB11991,http://purl.obolibrary.org/obo/DRUGBANK_DB11991,none +13.1706588,DRUGBANK:DB12326,http://purl.obolibrary.org/obo/DRUGBANK_DB12326,none +13.1706588,DRUGBANK:DB13821,http://purl.obolibrary.org/obo/DRUGBANK_DB13821,none +13.1706588,DRUGBANK:DB14209,http://purl.obolibrary.org/obo/DRUGBANK_DB14209,none +13.1706588,DRUGBANK:DB14228,http://purl.obolibrary.org/obo/DRUGBANK_DB14228,none +13.1706588,DRUGBANK:DB14269,http://purl.obolibrary.org/obo/DRUGBANK_DB14269,none +13.1706588,DRUGBANK:DB14515,http://purl.obolibrary.org/obo/DRUGBANK_DB14515,none +13.1706588,DRUGBANK:DB15199,http://purl.obolibrary.org/obo/DRUGBANK_DB15199,none +13.1706588,DRUGBANK:DB15478,http://purl.obolibrary.org/obo/DRUGBANK_DB15478,none +13.1706588,GO:0001933,http://purl.obolibrary.org/obo/GO_0001933,negative regulation of protein phosphorylation +13.1706588,GO:0002068,http://purl.obolibrary.org/obo/GO_0002068,glandular epithelial cell development +13.1706588,GO:0002889,http://purl.obolibrary.org/obo/GO_0002889,regulation of immunoglobulin mediated immune response +13.1706588,GO:0003726,http://purl.obolibrary.org/obo/GO_0003726,double-stranded RNA adenosine deaminase activity +13.1706588,GO:0004360,http://purl.obolibrary.org/obo/GO_0004360,glutamine-fructose-6-phosphate transaminase (isomerizing) activity +13.1706588,GO:0004657,http://purl.obolibrary.org/obo/GO_0004657,proline dehydrogenase activity +13.1706588,GO:0005751,http://purl.obolibrary.org/obo/GO_0005751,mitochondrial respiratory chain complex IV +13.1706588,GO:0007132,http://purl.obolibrary.org/obo/GO_0007132,meiotic metaphase I +13.1706588,GO:0007176,http://purl.obolibrary.org/obo/GO_0007176,regulation of epidermal growth factor-activated receptor activity +13.1706588,GO:0010006,http://purl.obolibrary.org/obo/GO_0010006,Toc complex +13.1706588,GO:0015668,http://purl.obolibrary.org/obo/GO_0015668,type III site-specific deoxyribonuclease activity +13.1706588,GO:0022833,http://purl.obolibrary.org/obo/GO_0022833,none +13.1706588,GO:0030194,http://purl.obolibrary.org/obo/GO_0030194,positive regulation of blood coagulation +13.1706588,GO:0032429,http://purl.obolibrary.org/obo/GO_0032429,regulation of phospholipase A2 activity +13.1706588,GO:0034416,http://purl.obolibrary.org/obo/GO_0034416,bisphosphoglycerate phosphatase activity +13.1706588,GO:0034704,http://purl.obolibrary.org/obo/GO_0034704,calcium channel complex +13.1706588,GO:0035996,http://purl.obolibrary.org/obo/GO_0035996,rhabdomere microvillus +13.1706588,GO:0042873,http://purl.obolibrary.org/obo/GO_0042873,aldonate transmembrane transport +13.1706588,GO:0042956,http://purl.obolibrary.org/obo/GO_0042956,maltodextrin transport +13.1706588,GO:0043139,http://purl.obolibrary.org/obo/GO_0043139,5'-3' DNA helicase activity +13.1706588,GO:0043539,http://purl.obolibrary.org/obo/GO_0043539,protein serine/threonine kinase activator activity +13.1706588,GO:0045143,http://purl.obolibrary.org/obo/GO_0045143,homologous chromosome segregation +13.1706588,GO:0045820,http://purl.obolibrary.org/obo/GO_0045820,negative regulation of glycolytic process +13.1706588,GO:0046108,http://purl.obolibrary.org/obo/GO_0046108,uridine metabolic process +13.1706588,GO:0046620,http://purl.obolibrary.org/obo/GO_0046620,regulation of organ growth +13.1706588,GO:0046940,http://purl.obolibrary.org/obo/GO_0046940,nucleoside monophosphate phosphorylation +13.1706588,GO:0046951,http://purl.obolibrary.org/obo/GO_0046951,ketone body biosynthetic process +13.1706588,GO:0047669,http://purl.obolibrary.org/obo/GO_0047669,amylosucrase activity +13.1706588,GO:0047789,http://purl.obolibrary.org/obo/GO_0047789,creatininase activity +13.1706588,GO:0047961,http://purl.obolibrary.org/obo/GO_0047961,glycine N-acyltransferase activity +13.1706588,GO:0050351,http://purl.obolibrary.org/obo/GO_0050351,trimetaphosphatase activity +13.1706588,GO:0051332,http://purl.obolibrary.org/obo/GO_0051332,meiotic S phase +13.1706588,GO:0051382,http://purl.obolibrary.org/obo/GO_0051382,kinetochore assembly +13.1706588,GO:0051383,http://purl.obolibrary.org/obo/GO_0051383,kinetochore organization +13.1706588,GO:0051413,http://purl.obolibrary.org/obo/GO_0051413,response to cortisone +13.1706588,GO:0051611,http://purl.obolibrary.org/obo/GO_0051611,regulation of serotonin uptake +13.1706588,GO:0061477,http://purl.obolibrary.org/obo/GO_0061477,response to aromatase inhibitor +13.1706588,GO:0061519,http://purl.obolibrary.org/obo/GO_0061519,macrophage homeostasis +13.1706588,GO:0070721,http://purl.obolibrary.org/obo/GO_0070721,ISGF3 complex +13.1706588,GO:0071010,http://purl.obolibrary.org/obo/GO_0071010,prespliceosome +13.1706588,GO:0071356,http://purl.obolibrary.org/obo/GO_0071356,cellular response to tumor necrosis factor +13.1706588,GO:0072320,http://purl.obolibrary.org/obo/GO_0072320,volume-sensitive chloride channel activity +13.1706588,GO:0090697,http://purl.obolibrary.org/obo/GO_0090697,post-embryonic plant organ morphogenesis +13.1706588,GO:1900048,http://purl.obolibrary.org/obo/GO_1900048,positive regulation of hemostasis +13.1706588,GO:1903332,http://purl.obolibrary.org/obo/GO_1903332,regulation of protein folding +13.1706588,GO:1990402,http://purl.obolibrary.org/obo/GO_1990402,embryonic liver development +13.1706588,GO:2001300,http://purl.obolibrary.org/obo/GO_2001300,lipoxin metabolic process +13.1706588,HP:0000022,http://purl.obolibrary.org/obo/HP_0000022,Abnormality of male internal genitalia +13.1706588,HP:0001878,http://purl.obolibrary.org/obo/HP_0001878,Hemolytic anemia +13.1706588,HP:0004444,http://purl.obolibrary.org/obo/HP_0004444,Spherocytosis +13.1706588,HP:0009714,http://purl.obolibrary.org/obo/HP_0009714,Abnormality of the epididymis +13.1706588,HP:0011895,http://purl.obolibrary.org/obo/HP_0011895,Anemia due to reduced life span of red cells +13.1706588,MONDO:0000014,http://purl.obolibrary.org/obo/MONDO_0000014,"colorblindness, partial" +13.1706588,MONDO:0000395,http://purl.obolibrary.org/obo/MONDO_0000395,alcohol-related birth defect +13.1706588,MONDO:0001214,http://purl.obolibrary.org/obo/MONDO_0001214,acute conjunctivitis +13.1706588,MONDO:0001286,http://purl.obolibrary.org/obo/MONDO_0001286,exotropia +13.1706588,MONDO:0001887,http://purl.obolibrary.org/obo/MONDO_0001887,Allen-Masters syndrome +13.1706588,MONDO:0002441,http://purl.obolibrary.org/obo/MONDO_0002441,Jervell and Lange-Nielsen syndrome +13.1706588,MONDO:0002619,http://purl.obolibrary.org/obo/MONDO_0002619,bone fibrosarcoma +13.1706588,MONDO:0002758,http://purl.obolibrary.org/obo/MONDO_0002758,vulva verrucous carcinoma +13.1706588,MONDO:0003638,http://purl.obolibrary.org/obo/MONDO_0003638,lung meningioma +13.1706588,MONDO:0004143,http://purl.obolibrary.org/obo/MONDO_0004143,psammomatous meningioma +13.1706588,MONDO:0004560,http://purl.obolibrary.org/obo/MONDO_0004560,follicular infundibulum tumor +13.1706588,MONDO:0004745,http://purl.obolibrary.org/obo/MONDO_0004745,priapism +13.1706588,MONDO:0005214,http://purl.obolibrary.org/obo/MONDO_0005214,vulva sarcoma +13.1706588,MONDO:0005445,http://purl.obolibrary.org/obo/MONDO_0005445,visceral leishmaniasis +13.1706588,MONDO:0006657,http://purl.obolibrary.org/obo/MONDO_0006657,apparent mineralocorticoid excess syndrome +13.1706588,MONDO:0006899,http://purl.obolibrary.org/obo/MONDO_0006899,pericoronitis +13.1706588,MONDO:0007477,http://purl.obolibrary.org/obo/MONDO_0007477,3-M syndrome +13.1706588,MONDO:0008051,http://purl.obolibrary.org/obo/MONDO_0008051,tubular aggregate myopathy +13.1706588,MONDO:0008727,http://purl.obolibrary.org/obo/MONDO_0008727,congenital adrenal hyperplasia due to 3-beta-hydroxysteroid dehydrogenase deficiency +13.1706588,MONDO:0010564,http://purl.obolibrary.org/obo/MONDO_0010564,red-green color blindness +13.1706588,MONDO:0010615,http://purl.obolibrary.org/obo/MONDO_0010615,isolated growth hormone deficiency type III +13.1706588,MONDO:0011500,http://purl.obolibrary.org/obo/MONDO_0011500,Becker nevus syndrome +13.1706588,MONDO:0011968,http://purl.obolibrary.org/obo/MONDO_0011968,autosomal recessive limb-girdle muscular dystrophy type 2D +13.1706588,MONDO:0013026,http://purl.obolibrary.org/obo/MONDO_0013026,subepithelial mucinous corneal dystrophy +13.1706588,MONDO:0015061,http://purl.obolibrary.org/obo/MONDO_0015061,neurogenic thoracic outlet syndrome +13.1706588,MONDO:0015565,http://purl.obolibrary.org/obo/MONDO_0015565,cap polyposis +13.1706588,MONDO:0016001,http://purl.obolibrary.org/obo/MONDO_0016001,2-hydroxyglutaric aciduria +13.1706588,MONDO:0016331,http://purl.obolibrary.org/obo/MONDO_0016331,infantile systemic hyalinosis +13.1706588,MONDO:0016901,http://purl.obolibrary.org/obo/MONDO_0016901,partial deletion of the long arm of chromosome 2 +13.1706588,MONDO:0018211,http://purl.obolibrary.org/obo/MONDO_0018211,Balint syndrome +13.1706588,MONDO:0018424,http://purl.obolibrary.org/obo/MONDO_0018424,inherited lipoic acid biosynthesis defect +13.1706588,MONDO:0018586,http://purl.obolibrary.org/obo/MONDO_0018586,zinc-responsive necrolytic acral erythema +13.1706588,MONDO:0018865,http://purl.obolibrary.org/obo/MONDO_0018865,striate palmoplantar keratoderma +13.1706588,MONDO:0019181,http://purl.obolibrary.org/obo/MONDO_0019181,non-syndromic X-linked intellectual disability +13.1706588,MONDO:0022575,http://purl.obolibrary.org/obo/MONDO_0022575,biliary hypoplasia +13.1706588,MONDO:0045033,http://purl.obolibrary.org/obo/MONDO_0045033,opportunistic systemic mycosis +13.1706588,MOP:0000702,http://purl.obolibrary.org/obo/MOP_0000702,none +13.1706588,NCBITaxon:12178,http://purl.obolibrary.org/obo/NCBITaxon_12178,none +13.1706588,NCBITaxon:122929,http://purl.obolibrary.org/obo/NCBITaxon_122929,none +13.1706588,NCBITaxon:12947,http://purl.obolibrary.org/obo/NCBITaxon_12947,none +13.1706588,NCBITaxon:1511083,http://purl.obolibrary.org/obo/NCBITaxon_1511083,none +13.1706588,NCBITaxon:1511084,http://purl.obolibrary.org/obo/NCBITaxon_1511084,none +13.1706588,NCBITaxon:166486,http://purl.obolibrary.org/obo/NCBITaxon_166486,none +13.1706588,NCBITaxon:225976,http://purl.obolibrary.org/obo/NCBITaxon_225976,none +13.1706588,NCBITaxon:27864,http://purl.obolibrary.org/obo/NCBITaxon_27864,none +13.1706588,NCBITaxon:310684,http://purl.obolibrary.org/obo/NCBITaxon_310684,none +13.1706588,NCBITaxon:329862,http://purl.obolibrary.org/obo/NCBITaxon_329862,none +13.1706588,NCBITaxon:337730,http://purl.obolibrary.org/obo/NCBITaxon_337730,none +13.1706588,NCBITaxon:35005,http://purl.obolibrary.org/obo/NCBITaxon_35005,none +13.1706588,NCBITaxon:40059,http://purl.obolibrary.org/obo/NCBITaxon_40059,none +13.1706588,NCBITaxon:6101,http://purl.obolibrary.org/obo/NCBITaxon_6101,none +13.1706588,NCBITaxon:6952,http://purl.obolibrary.org/obo/NCBITaxon_6952,none +13.1706588,NCBITaxon:7253,http://purl.obolibrary.org/obo/NCBITaxon_7253,none +13.1706588,NCBITaxon:92652,http://purl.obolibrary.org/obo/NCBITaxon_92652,none +13.1706588,NCBITaxon:9621,http://purl.obolibrary.org/obo/NCBITaxon_9621,none +13.1706588,NCBITaxon:9622,http://purl.obolibrary.org/obo/NCBITaxon_9622,none +13.1706588,PR:000001482,http://purl.obolibrary.org/obo/PR_000001482,low affinity immunoglobulin gamma Fc region receptor II-c +13.1706588,PR:000001525,http://purl.obolibrary.org/obo/PR_000001525,none +13.1706588,PR:000001930,http://purl.obolibrary.org/obo/PR_000001930,sialic acid-binding Ig-like lectin 8 +13.1706588,PR:000003490,http://purl.obolibrary.org/obo/PR_000003490,granzyme H +13.1706588,PR:000003518,http://purl.obolibrary.org/obo/PR_000003518,aladin +13.1706588,PR:000003979,http://purl.obolibrary.org/obo/PR_000003979,homeobox protein aristaless-like 3 +13.1706588,PR:000004058,http://purl.obolibrary.org/obo/PR_000004058,anoctamin-3 +13.1706588,PR:000004195,http://purl.obolibrary.org/obo/PR_000004195,"Arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 3" +13.1706588,PR:000004237,http://purl.obolibrary.org/obo/PR_000004237,Rho GTPase-activating protein 4 +13.1706588,PR:000005480,http://purl.obolibrary.org/obo/PR_000005480,carbohydrate sulfotransferase 7 +13.1706588,PR:000005762,http://purl.obolibrary.org/obo/PR_000005762,coronin-1C +13.1706588,PR:000005933,http://purl.obolibrary.org/obo/PR_000005933,chondroitin sulfate N-acetylgalactosaminyltransferase 1 +13.1706588,PR:000005946,http://purl.obolibrary.org/obo/PR_000005946,casein kinase I isoform epsilon +13.1706588,PR:000006533,http://purl.obolibrary.org/obo/PR_000006533,DNA methyltransferase 1-associated protein 1 +13.1706588,PR:000006709,http://purl.obolibrary.org/obo/PR_000006709,desmoglein-4 +13.1706588,PR:000006876,http://purl.obolibrary.org/obo/PR_000006876,endothelin-converting enzyme-like 1 +13.1706588,PR:000007032,http://purl.obolibrary.org/obo/PR_000007032,engulfment and cell motility protein 2 +13.1706588,PR:000007259,http://purl.obolibrary.org/obo/PR_000007259,exosome complex component RRP4 +13.1706588,PR:000007408,http://purl.obolibrary.org/obo/PR_000007408,F-box only protein 4 +13.1706588,PR:000007517,http://purl.obolibrary.org/obo/PR_000007517,FH1/FH2 domain-containing protein 3 +13.1706588,PR:000007779,http://purl.obolibrary.org/obo/PR_000007779,gamma-aminobutyric acid receptor subunit gamma-3 +13.1706588,PR:000008001,http://purl.obolibrary.org/obo/PR_000008001,gap junction beta-5 protein +13.1706588,PR:000008014,http://purl.obolibrary.org/obo/PR_000008014,gastrokine-2 +13.1706588,PR:000008290,http://purl.obolibrary.org/obo/PR_000008290,eukaryotic peptide chain release factor GTP-binding subunit ERF3A +13.1706588,PR:000008472,http://purl.obolibrary.org/obo/PR_000008472,host cell factor 2 +13.1706588,PR:000008675,http://purl.obolibrary.org/obo/PR_000008675,heterogeneous nuclear ribonucleoprotein U-like protein 2 +13.1706588,PR:000008708,http://purl.obolibrary.org/obo/PR_000008708,homeobox protein Hox-C11 +13.1706588,PR:000008917,http://purl.obolibrary.org/obo/PR_000008917,interferon alpha-4 +13.1706588,PR:000009126,http://purl.obolibrary.org/obo/PR_000009126,integrin alpha-11 +13.1706588,PR:000009343,http://purl.obolibrary.org/obo/PR_000009343,kin of IRRE-like protein 3 +13.1706588,PR:000009988,http://purl.obolibrary.org/obo/PR_000009988,lymphocyte antigen 6D +13.1706588,PR:000010085,http://purl.obolibrary.org/obo/PR_000010085,"membrane-associated guanylate kinase, WW and PDZ domain-containing protein 3" +13.1706588,PR:000010711,http://purl.obolibrary.org/obo/PR_000010711,Mdm2-binding protein +13.1706588,PR:000012669,http://purl.obolibrary.org/obo/PR_000012669,phosphoethanolamine/phosphocholine phosphatase +13.1706588,PR:000012939,http://purl.obolibrary.org/obo/PR_000012939,RNA-binding protein PNO1 +13.1706588,PR:000012965,http://purl.obolibrary.org/obo/PR_000012965,DNA polymerase delta subunit 3 +13.1706588,PR:000013117,http://purl.obolibrary.org/obo/PR_000013117,protein phosphatase 1 regulatory subunit 15B +13.1706588,PR:000013177,http://purl.obolibrary.org/obo/PR_000013177,proline-rich protein PRCC +13.1706588,PR:000013997,http://purl.obolibrary.org/obo/PR_000013997,Rho GTPase-activating protein 44 +13.1706588,PR:000014446,http://purl.obolibrary.org/obo/PR_000014446,histone deacetylase complex subunit SAP18 +13.1706588,PR:000014823,http://purl.obolibrary.org/obo/PR_000014823,endophilin-A2 +13.1706588,PR:000015139,http://purl.obolibrary.org/obo/PR_000015139,solute carrier family 41 member 1 +13.1706588,PR:000015593,http://purl.obolibrary.org/obo/PR_000015593,"spectrin beta chain, non-erythrocytic 2" +13.1706588,PR:000015893,http://purl.obolibrary.org/obo/PR_000015893,protein SYS1 +13.1706588,PR:000016033,http://purl.obolibrary.org/obo/PR_000016033,transcription initiation factor TFIID subunit 7 +13.1706588,PR:000016220,http://purl.obolibrary.org/obo/PR_000016220,transcriptional enhancer factor TEF-5 +13.1706588,PR:000017680,http://purl.obolibrary.org/obo/PR_000017680,zinc finger matrin-type protein 3 +13.1706588,PR:000022152,http://purl.obolibrary.org/obo/PR_000022152,none +13.1706588,PR:000023066,http://purl.obolibrary.org/obo/PR_000023066,none +13.1706588,PR:000024070,http://purl.obolibrary.org/obo/PR_000024070,none +13.1706588,PR:000024078,http://purl.obolibrary.org/obo/PR_000024078,none +13.1706588,PR:000024200,http://purl.obolibrary.org/obo/PR_000024200,none +13.1706588,PR:000027545,http://purl.obolibrary.org/obo/PR_000027545,none +13.1706588,PR:000030559,http://purl.obolibrary.org/obo/PR_000030559,ragulator complex protein LAMTOR1 +13.1706588,PR:000031401,http://purl.obolibrary.org/obo/PR_000031401,N6-adenosine-methyltransferase non-catalytic subunit +13.1706588,PR:000031671,http://purl.obolibrary.org/obo/PR_000031671,ubiquitin carboxyl-terminal hydrolase CYLD +13.1706588,PR:000037037,http://purl.obolibrary.org/obo/PR_000037037,testis-specific chromodomain protein Y 1 +13.1706588,PR:000037465,http://purl.obolibrary.org/obo/PR_000037465,LPS:CD14 complex +13.1706588,PR:O64810,http://purl.obolibrary.org/obo/PR_O64810,none +13.1706588,PR:P08566,http://purl.obolibrary.org/obo/PR_P08566,none +13.1706588,PR:P14489,http://purl.obolibrary.org/obo/PR_P14489,none +13.1706588,PR:P31313,http://purl.obolibrary.org/obo/PR_P31313,none +13.1706588,PR:P43605,http://purl.obolibrary.org/obo/PR_P43605,none +13.1706588,PR:P87233,http://purl.obolibrary.org/obo/PR_P87233,none +13.1706588,PR:Q06164,http://purl.obolibrary.org/obo/PR_Q06164,none +13.1706588,PR:Q39088,http://purl.obolibrary.org/obo/PR_Q39088,none +13.1706588,PR:Q3J1R2,http://purl.obolibrary.org/obo/PR_Q3J1R2,none +13.1706588,PR:Q54K50,http://purl.obolibrary.org/obo/PR_Q54K50,none +13.1706588,PR:Q54SA1,http://purl.obolibrary.org/obo/PR_Q54SA1,none +13.1706588,PR:Q54VZ8,http://purl.obolibrary.org/obo/PR_Q54VZ8,none +13.1706588,PR:Q59VX8,http://purl.obolibrary.org/obo/PR_Q59VX8,none +13.1706588,PR:Q5A3P6,http://purl.obolibrary.org/obo/PR_Q5A3P6,none +13.1706588,PR:Q6IMT1,http://purl.obolibrary.org/obo/PR_Q6IMT1,none +13.1706588,PR:Q84VW5,http://purl.obolibrary.org/obo/PR_Q84VW5,none +13.1706588,PR:Q9FUR2,http://purl.obolibrary.org/obo/PR_Q9FUR2,none +13.1706588,PR:Q9FYG2,http://purl.obolibrary.org/obo/PR_Q9FYG2,none +13.1706588,PR:Q9LFH0,http://purl.obolibrary.org/obo/PR_Q9LFH0,none +13.1706588,PR:Q9SIA5,http://purl.obolibrary.org/obo/PR_Q9SIA5,none +13.1706588,PR:Q9SUV1,http://purl.obolibrary.org/obo/PR_Q9SUV1,none +13.1706588,PR:Q9W6H5,http://purl.obolibrary.org/obo/PR_Q9W6H5,none +13.1706588,SO:0000124,http://purl.obolibrary.org/obo/SO_0000124,transcriptionally_constitutive +13.1706588,SO:0000946,http://purl.obolibrary.org/obo/SO_0000946,integration_excision_site +13.1706588,SO:0001118,http://purl.obolibrary.org/obo/SO_0001118,pi_helix +13.1706588,SO:0001297,http://purl.obolibrary.org/obo/SO_0001297,N6_methyladenosine +13.1706588,SO:1000042,http://purl.obolibrary.org/obo/SO_1000042,compound_chromosome +13.1706588,UBERON:0000398,http://purl.obolibrary.org/obo/UBERON_0000398,cartilage tissue of sternum +13.1706588,UBERON:0001692,http://purl.obolibrary.org/obo/UBERON_0001692,basioccipital bone +13.1706588,UBERON:0001733,http://purl.obolibrary.org/obo/UBERON_0001733,soft palate +13.1706588,UBERON:0001904,http://purl.obolibrary.org/obo/UBERON_0001904,habenula +13.1706588,UBERON:0001916,http://purl.obolibrary.org/obo/UBERON_0001916,endothelium of arteriole +13.1706588,UBERON:0001925,http://purl.obolibrary.org/obo/UBERON_0001925,ventral lateral nucleus of thalamus +13.1706588,UBERON:0002122,http://purl.obolibrary.org/obo/UBERON_0002122,capsule of thymus +13.1706588,UBERON:0002266,http://purl.obolibrary.org/obo/UBERON_0002266,anterior olfactory nucleus +13.1706588,UBERON:0002891,http://purl.obolibrary.org/obo/UBERON_0002891,cortical amygdaloid nucleus +13.1706588,UBERON:0003115,http://purl.obolibrary.org/obo/UBERON_0003115,pharyngeal arch 4 +13.1706588,UBERON:0003326,http://purl.obolibrary.org/obo/UBERON_0003326,mesenchyme of mammary gland +13.1706588,UBERON:0003849,http://purl.obolibrary.org/obo/UBERON_0003849,mesencephalic neural crest +13.1706588,UBERON:0003901,http://purl.obolibrary.org/obo/UBERON_0003901,horizontal septum +13.1706588,UBERON:0004453,http://purl.obolibrary.org/obo/UBERON_0004453,metacarpus region +13.1706588,UBERON:0005046,http://purl.obolibrary.org/obo/UBERON_0005046,mucosa of hard palate +13.1706588,UBERON:0005251,http://purl.obolibrary.org/obo/UBERON_0005251,yolk sac cavity +13.1706588,UBERON:0005349,http://purl.obolibrary.org/obo/UBERON_0005349,paramedian lobule +13.1706588,UBERON:0006430,http://purl.obolibrary.org/obo/UBERON_0006430,xiphoid cartilage +13.1706588,UBERON:0007717,http://purl.obolibrary.org/obo/UBERON_0007717,sacral subsegment of spinal cord +13.1706588,UBERON:0010171,http://purl.obolibrary.org/obo/UBERON_0010171,strand of hair of face +13.1706588,UBERON:0012450,http://purl.obolibrary.org/obo/UBERON_0012450,Meissner's corpuscle +13.1706588,UBERON:0015048,http://purl.obolibrary.org/obo/UBERON_0015048,basioccipital endochondral element +13.1706588,UBERON:0015180,http://purl.obolibrary.org/obo/UBERON_0015180,neck of talus +13.1706588,UBERON:0035115,http://purl.obolibrary.org/obo/UBERON_0035115,diastema between central incisors +13.1706588,UBERON:0035119,http://purl.obolibrary.org/obo/UBERON_0035119,diastema between incisors +13.1936484,CHEBI:17102,http://purl.obolibrary.org/obo/CHEBI_17102,phosphoramide +13.1936484,CHEBI:24315,http://purl.obolibrary.org/obo/CHEBI_24315,glutamic acid derivative +13.1936484,CHEBI:27024,http://purl.obolibrary.org/obo/CHEBI_27024,toluenes +13.1936484,CHEBI:29239,http://purl.obolibrary.org/obo/CHEBI_29239,hydride +13.1936484,CHEBI:30144,http://purl.obolibrary.org/obo/CHEBI_30144,lithide +13.1936484,CHEBI:30145,http://purl.obolibrary.org/obo/CHEBI_30145,lithium atom +13.1936484,CHEBI:32470,http://purl.obolibrary.org/obo/CHEBI_32470,aspartic acid residue +13.1936484,CHEBI:33620,http://purl.obolibrary.org/obo/CHEBI_33620,aluminium molecular entity +13.1936484,CHEBI:35467,http://purl.obolibrary.org/obo/CHEBI_35467,phosphorodiamide +13.1936484,CHEBI:36021,http://purl.obolibrary.org/obo/CHEBI_36021,octadec-9-enoic acid +13.1936484,CHEBI:38297,http://purl.obolibrary.org/obo/CHEBI_38297,thiabicycloalkane +13.1936484,CHEBI:47916,http://purl.obolibrary.org/obo/CHEBI_47916,flavonoid +13.1936484,CHEBI:49713,http://purl.obolibrary.org/obo/CHEBI_49713,lithium(1+) +13.1936484,CHEBI:50312,http://purl.obolibrary.org/obo/CHEBI_50312,onium compound +13.1936484,CHEBI:50313,http://purl.obolibrary.org/obo/CHEBI_50313,onium cation +13.1936484,CHEBI:79388,http://purl.obolibrary.org/obo/CHEBI_79388,divalent inorganic anion +13.1936484,CHEBI:81711,http://purl.obolibrary.org/obo/CHEBI_81711,chlorhexidine acetate +13.1936484,CHEBI:83734,http://purl.obolibrary.org/obo/CHEBI_83734,sterol demethylation inhibitor +13.1936484,CL:0000346,http://purl.obolibrary.org/obo/CL_0000346,hair follicle dermal papilla cell +13.1936484,CL:0000516,http://purl.obolibrary.org/obo/CL_0000516,perineuronal satellite cell +13.1936484,CL:0000727,http://purl.obolibrary.org/obo/CL_0000727,primary pigment cell +13.1936484,CL:2000019,http://purl.obolibrary.org/obo/CL_2000019,compound eye photoreceptor cell +13.1936484,DRUGBANK:DB00660,http://purl.obolibrary.org/obo/DRUGBANK_DB00660,none +13.1936484,DRUGBANK:DB00856,http://purl.obolibrary.org/obo/DRUGBANK_DB00856,none +13.1936484,DRUGBANK:DB03798,http://purl.obolibrary.org/obo/DRUGBANK_DB03798,none +13.1936484,DRUGBANK:DB04026,http://purl.obolibrary.org/obo/DRUGBANK_DB04026,none +13.1936484,DRUGBANK:DB06156,http://purl.obolibrary.org/obo/DRUGBANK_DB06156,none +13.1936484,DRUGBANK:DB06224,http://purl.obolibrary.org/obo/DRUGBANK_DB06224,none +13.1936484,DRUGBANK:DB06477,http://purl.obolibrary.org/obo/DRUGBANK_DB06477,none +13.1936484,DRUGBANK:DB06645,http://purl.obolibrary.org/obo/DRUGBANK_DB06645,none +13.1936484,DRUGBANK:DB08915,http://purl.obolibrary.org/obo/DRUGBANK_DB08915,none +13.1936484,DRUGBANK:DB09345,http://purl.obolibrary.org/obo/DRUGBANK_DB09345,none +13.1936484,DRUGBANK:DB10705,http://purl.obolibrary.org/obo/DRUGBANK_DB10705,none +13.1936484,DRUGBANK:DB11803,http://purl.obolibrary.org/obo/DRUGBANK_DB11803,none +13.1936484,DRUGBANK:DB12169,http://purl.obolibrary.org/obo/DRUGBANK_DB12169,none +13.1936484,DRUGBANK:DB12483,http://purl.obolibrary.org/obo/DRUGBANK_DB12483,none +13.1936484,DRUGBANK:DB12491,http://purl.obolibrary.org/obo/DRUGBANK_DB12491,none +13.1936484,DRUGBANK:DB12586,http://purl.obolibrary.org/obo/DRUGBANK_DB12586,none +13.1936484,DRUGBANK:DB12698,http://purl.obolibrary.org/obo/DRUGBANK_DB12698,none +13.1936484,DRUGBANK:DB14542,http://purl.obolibrary.org/obo/DRUGBANK_DB14542,none +13.1936484,DRUGBANK:DB14568,http://purl.obolibrary.org/obo/DRUGBANK_DB14568,none +13.1936484,DRUGBANK:DB15074,http://purl.obolibrary.org/obo/DRUGBANK_DB15074,none +13.1936484,DRUGBANK:DB15585,http://purl.obolibrary.org/obo/DRUGBANK_DB15585,none +13.1936484,GO:0000940,http://purl.obolibrary.org/obo/GO_0000940,outer kinetochore +13.1936484,GO:0000942,http://purl.obolibrary.org/obo/GO_0000942,none +13.1936484,GO:0003323,http://purl.obolibrary.org/obo/GO_0003323,type B pancreatic cell development +13.1936484,GO:0004408,http://purl.obolibrary.org/obo/GO_0004408,holocytochrome-c synthase activity +13.1936484,GO:0004748,http://purl.obolibrary.org/obo/GO_0004748,"ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor" +13.1936484,GO:0006532,http://purl.obolibrary.org/obo/GO_0006532,aspartate biosynthetic process +13.1936484,GO:0006843,http://purl.obolibrary.org/obo/GO_0006843,mitochondrial citrate transmembrane transport +13.1936484,GO:0008174,http://purl.obolibrary.org/obo/GO_0008174,mRNA methyltransferase activity +13.1936484,GO:0008870,http://purl.obolibrary.org/obo/GO_0008870,galactoside O-acetyltransferase activity +13.1936484,GO:0010146,http://purl.obolibrary.org/obo/GO_0010146,fructan biosynthetic process +13.1936484,GO:0015288,http://purl.obolibrary.org/obo/GO_0015288,porin activity +13.1936484,GO:0016034,http://purl.obolibrary.org/obo/GO_0016034,maleylacetoacetate isomerase activity +13.1936484,GO:0018189,http://purl.obolibrary.org/obo/GO_0018189,pyrroloquinoline quinone biosynthetic process +13.1936484,GO:0019085,http://purl.obolibrary.org/obo/GO_0019085,early viral transcription +13.1936484,GO:0030206,http://purl.obolibrary.org/obo/GO_0030206,chondroitin sulfate biosynthetic process +13.1936484,GO:0030321,http://purl.obolibrary.org/obo/GO_0030321,transepithelial chloride transport +13.1936484,GO:0033590,http://purl.obolibrary.org/obo/GO_0033590,response to cobalamin +13.1936484,GO:0034226,http://purl.obolibrary.org/obo/GO_0034226,none +13.1936484,GO:0035330,http://purl.obolibrary.org/obo/GO_0035330,regulation of hippo signaling +13.1936484,GO:0035674,http://purl.obolibrary.org/obo/GO_0035674,tricarboxylic acid transmembrane transport +13.1936484,GO:0035837,http://purl.obolibrary.org/obo/GO_0035837,ergot alkaloid biosynthetic process +13.1936484,GO:0036475,http://purl.obolibrary.org/obo/GO_0036475,neuron death in response to oxidative stress +13.1936484,GO:0042065,http://purl.obolibrary.org/obo/GO_0042065,glial cell growth +13.1936484,GO:0042729,http://purl.obolibrary.org/obo/GO_0042729,DASH complex +13.1936484,GO:0042736,http://purl.obolibrary.org/obo/GO_0042736,NADH kinase activity +13.1936484,GO:0042937,http://purl.obolibrary.org/obo/GO_0042937,tripeptide transmembrane transporter activity +13.1936484,GO:0042940,http://purl.obolibrary.org/obo/GO_0042940,D-amino acid transport +13.1936484,GO:0045661,http://purl.obolibrary.org/obo/GO_0045661,regulation of myoblast differentiation +13.1936484,GO:0046536,http://purl.obolibrary.org/obo/GO_0046536,dosage compensation complex +13.1936484,GO:0046822,http://purl.obolibrary.org/obo/GO_0046822,regulation of nucleocytoplasmic transport +13.1936484,GO:0047490,http://purl.obolibrary.org/obo/GO_0047490,pectin lyase activity +13.1936484,GO:0047602,http://purl.obolibrary.org/obo/GO_0047602,acetoacetate decarboxylase activity +13.1936484,GO:0048679,http://purl.obolibrary.org/obo/GO_0048679,regulation of axon regeneration +13.1936484,GO:0050674,http://purl.obolibrary.org/obo/GO_0050674,urothelial cell proliferation +13.1936484,GO:0050684,http://purl.obolibrary.org/obo/GO_0050684,regulation of mRNA processing +13.1936484,GO:0051599,http://purl.obolibrary.org/obo/GO_0051599,response to hydrostatic pressure +13.1936484,GO:0060706,http://purl.obolibrary.org/obo/GO_0060706,cell differentiation involved in embryonic placenta development +13.1936484,GO:0061518,http://purl.obolibrary.org/obo/GO_0061518,microglial cell proliferation +13.1936484,GO:0070391,http://purl.obolibrary.org/obo/GO_0070391,response to lipoteichoic acid +13.1936484,GO:0070570,http://purl.obolibrary.org/obo/GO_0070570,regulation of neuron projection regeneration +13.1936484,GO:0071505,http://purl.obolibrary.org/obo/GO_0071505,response to mycophenolic acid +13.1936484,GO:0090269,http://purl.obolibrary.org/obo/GO_0090269,fibroblast growth factor production +13.1936484,GO:0090333,http://purl.obolibrary.org/obo/GO_0090333,regulation of stomatal closure +13.1936484,GO:0097589,http://purl.obolibrary.org/obo/GO_0097589,archaeal-type flagellum +13.1936484,GO:1900753,http://purl.obolibrary.org/obo/GO_1900753,doxorubicin transport +13.1936484,GO:1903179,http://purl.obolibrary.org/obo/GO_1903179,regulation of dopamine biosynthetic process +13.1936484,GO:1990546,http://purl.obolibrary.org/obo/GO_1990546,mitochondrial tricarboxylic acid transmembrane transport +13.1936484,GO:2000401,http://purl.obolibrary.org/obo/GO_2000401,regulation of lymphocyte migration +13.1936484,GO:2000904,http://purl.obolibrary.org/obo/GO_2000904,regulation of starch metabolic process +13.1936484,HP:0000031,http://purl.obolibrary.org/obo/HP_0000031,Epididymitis +13.1936484,HP:0000278,http://purl.obolibrary.org/obo/HP_0000278,Retrognathia +13.1936484,HP:0001743,http://purl.obolibrary.org/obo/HP_0001743,Abnormality of the spleen +13.1936484,HP:0001894,http://purl.obolibrary.org/obo/HP_0001894,Thrombocytosis +13.1936484,HP:0012828,http://purl.obolibrary.org/obo/HP_0012828,Severe +13.1936484,MONDO:0000307,http://purl.obolibrary.org/obo/MONDO_0000307,parasitic Ichthyosporea infectious disease +13.1936484,MONDO:0000549,http://purl.obolibrary.org/obo/MONDO_0000549,cervical neuroblastoma +13.1936484,MONDO:0002857,http://purl.obolibrary.org/obo/MONDO_0002857,gallbladder sarcoma +13.1936484,MONDO:0004110,http://purl.obolibrary.org/obo/MONDO_0004110,refractory hairy cell leukemia +13.1936484,MONDO:0004944,http://purl.obolibrary.org/obo/MONDO_0004944,neurosyphilis +13.1936484,MONDO:0005946,http://purl.obolibrary.org/obo/MONDO_0005946,rhinosporidiosis +13.1936484,MONDO:0006134,http://purl.obolibrary.org/obo/MONDO_0006134,cervical adenosquamous carcinoma +13.1936484,MONDO:0006876,http://purl.obolibrary.org/obo/MONDO_0006876,ocular tuberculosis +13.1936484,MONDO:0006951,http://purl.obolibrary.org/obo/MONDO_0006951,retinal vein occlusion +13.1936484,MONDO:0007350,http://purl.obolibrary.org/obo/MONDO_0007350,"coloboma, ocular, autosomal dominant" +13.1936484,MONDO:0007716,http://purl.obolibrary.org/obo/MONDO_0007716,alpha thalassemia-intellectual disability syndrome type 1 +13.1936484,MONDO:0009705,http://purl.obolibrary.org/obo/MONDO_0009705,carnitine palmitoyl transferase 1A deficiency +13.1936484,MONDO:0010085,http://purl.obolibrary.org/obo/MONDO_0010085,Schilder disease +13.1936484,MONDO:0010594,http://purl.obolibrary.org/obo/MONDO_0010594,inherited genitourinary tract anomalies +13.1936484,MONDO:0010672,http://purl.obolibrary.org/obo/MONDO_0010672,linear skin defects with multiple congenital anomalies +13.1936484,MONDO:0010922,http://purl.obolibrary.org/obo/MONDO_0010922,Satoyoshi syndrome +13.1936484,MONDO:0013027,http://purl.obolibrary.org/obo/MONDO_0013027,posterior amorphous corneal dystrophy +13.1936484,MONDO:0015087,http://purl.obolibrary.org/obo/MONDO_0015087,autosomal dominant complex spastic paraplegia +13.1936484,MONDO:0015873,http://purl.obolibrary.org/obo/MONDO_0015873,Paget disease of the nipple +13.1936484,MONDO:0016582,http://purl.obolibrary.org/obo/MONDO_0016582,congenital mitral malformation +13.1936484,MONDO:0017324,http://purl.obolibrary.org/obo/MONDO_0017324,autosomal recessive hypophosphatemic rickets +13.1936484,MONDO:0017424,http://purl.obolibrary.org/obo/MONDO_0017424,non-syndromic brachydactyly +13.1936484,MONDO:0018213,http://purl.obolibrary.org/obo/MONDO_0018213,hereditary sensory and autonomic neuropathy type 1 +13.1936484,MONDO:0018879,http://purl.obolibrary.org/obo/MONDO_0018879,lichen planopilaris +13.1936484,MONDO:0018957,http://purl.obolibrary.org/obo/MONDO_0018957,pudendal neuralgia +13.1936484,MONDO:0019636,http://purl.obolibrary.org/obo/MONDO_0019636,"renal agenesis, unilateral" +13.1936484,MONDO:0019803,http://purl.obolibrary.org/obo/MONDO_0019803,angioma serpiginosum +13.1936484,MONDO:0019817,http://purl.obolibrary.org/obo/MONDO_0019817,congenital mitral valve insufficiency and/or stenosis +13.1936484,MONDO:0021242,http://purl.obolibrary.org/obo/MONDO_0021242,sublingual gland neoplasm +13.1936484,MONDO:0021525,http://purl.obolibrary.org/obo/MONDO_0021525,benign neoplasm of corpus uteri +13.1936484,MONDO:0025193,http://purl.obolibrary.org/obo/MONDO_0025193,oculopharyngodistal myopathy +13.1936484,MONDO:0031013,http://purl.obolibrary.org/obo/MONDO_0031013,autoimmune optic neuritis +13.1936484,MONDO:0043969,http://purl.obolibrary.org/obo/MONDO_0043969,nocturnal paroxysmal dystonia +13.1936484,MONDO:0044338,http://purl.obolibrary.org/obo/MONDO_0044338,autoimmune primary ovarian failure +13.1936484,MONDO:0100128,http://purl.obolibrary.org/obo/MONDO_0100128,coinfection +13.1936484,NCBITaxon:10598,http://purl.obolibrary.org/obo/NCBITaxon_10598,none +13.1936484,NCBITaxon:10839,http://purl.obolibrary.org/obo/NCBITaxon_10839,none +13.1936484,NCBITaxon:11986,http://purl.obolibrary.org/obo/NCBITaxon_11986,none +13.1936484,NCBITaxon:1216928,http://purl.obolibrary.org/obo/NCBITaxon_1216928,none +13.1936484,NCBITaxon:12275,http://purl.obolibrary.org/obo/NCBITaxon_12275,none +13.1936484,NCBITaxon:137758,http://purl.obolibrary.org/obo/NCBITaxon_137758,none +13.1936484,NCBITaxon:198612,http://purl.obolibrary.org/obo/NCBITaxon_198612,none +13.1936484,NCBITaxon:200643,http://purl.obolibrary.org/obo/NCBITaxon_200643,Bacteroidia +13.1936484,NCBITaxon:249588,http://purl.obolibrary.org/obo/NCBITaxon_249588,none +13.1936484,NCBITaxon:2747342,http://purl.obolibrary.org/obo/NCBITaxon_2747342,none +13.1936484,NCBITaxon:29487,http://purl.obolibrary.org/obo/NCBITaxon_29487,none +13.1936484,NCBITaxon:32320,http://purl.obolibrary.org/obo/NCBITaxon_32320,none +13.1936484,NCBITaxon:32323,http://purl.obolibrary.org/obo/NCBITaxon_32323,none +13.1936484,NCBITaxon:336959,http://purl.obolibrary.org/obo/NCBITaxon_336959,none +13.1936484,NCBITaxon:34999,http://purl.obolibrary.org/obo/NCBITaxon_34999,none +13.1936484,NCBITaxon:43817,http://purl.obolibrary.org/obo/NCBITaxon_43817,Culicinae +13.1936484,NCBITaxon:47000,http://purl.obolibrary.org/obo/NCBITaxon_47000,none +13.1936484,NCBITaxon:586240,http://purl.obolibrary.org/obo/NCBITaxon_586240,none +13.1936484,NCBITaxon:6934,http://purl.obolibrary.org/obo/NCBITaxon_6934,Parasitiformes +13.1936484,NCBITaxon:6993,http://purl.obolibrary.org/obo/NCBITaxon_6993,none +13.1936484,NCBITaxon:8079,http://purl.obolibrary.org/obo/NCBITaxon_8079,none +13.1936484,NCBITaxon:84589,http://purl.obolibrary.org/obo/NCBITaxon_84589,none +13.1936484,NCBITaxon:9898,http://purl.obolibrary.org/obo/NCBITaxon_9898,none +13.1936484,NCBITaxon:9899,http://purl.obolibrary.org/obo/NCBITaxon_9899,none +13.1936484,PR:000000669,http://purl.obolibrary.org/obo/PR_000000669,cation channel sperm-associated protein 1 +13.1936484,PR:000000726,http://purl.obolibrary.org/obo/PR_000000726,voltage-gated potassium channel KCNV2 +13.1936484,PR:000000811,http://purl.obolibrary.org/obo/PR_000000811,voltage-gated potassium channel subunit KCNA3 +13.1936484,PR:000001359,http://purl.obolibrary.org/obo/PR_000001359,intercellular adhesion molecule 4 +13.1936484,PR:000001569,http://purl.obolibrary.org/obo/PR_000001569,P2Y purinoceptor 12 +13.1936484,PR:000001657,http://purl.obolibrary.org/obo/PR_000001657,prostaglandin E2 receptor EP1 subtype +13.1936484,PR:000001674,http://purl.obolibrary.org/obo/PR_000001674,G-protein coupled receptor 6 +13.1936484,PR:000003865,http://purl.obolibrary.org/obo/PR_000003865,"Axin interactor, dorsalization-associated protein" +13.1936484,PR:000004223,http://purl.obolibrary.org/obo/PR_000004223,Rho GTPase-activating protein 17 +13.1936484,PR:000004274,http://purl.obolibrary.org/obo/PR_000004274,ADP-ribosylation factor-like protein 10 +13.1936484,PR:000004735,http://purl.obolibrary.org/obo/PR_000004735,biglycan +13.1936484,PR:000004892,http://purl.obolibrary.org/obo/PR_000004892,complement C1r subcomponent +13.1936484,PR:000004895,http://purl.obolibrary.org/obo/PR_000004895,none +13.1936484,PR:000004896,http://purl.obolibrary.org/obo/PR_000004896,none +13.1936484,PR:000004948,http://purl.obolibrary.org/obo/PR_000004948,voltage-dependent L-type calcium channel subunit beta-3 +13.1936484,PR:000005168,http://purl.obolibrary.org/obo/PR_000005168,CMRF35-like molecule 1 +13.1936484,PR:000005214,http://purl.obolibrary.org/obo/PR_000005214,CDC42 small effector protein 2 +13.1936484,PR:000005291,http://purl.obolibrary.org/obo/PR_000005291,phosphatidate cytidylyltransferase 2 +13.1936484,PR:000005452,http://purl.obolibrary.org/obo/PR_000005452,chordin-like protein 2 +13.1936484,PR:000005570,http://purl.obolibrary.org/obo/PR_000005570,C-type lectin domain family 4 member E +13.1936484,PR:000005642,http://purl.obolibrary.org/obo/PR_000005642,calponin-3 +13.1936484,PR:000005967,http://purl.obolibrary.org/obo/PR_000005967,cystatin-D +13.1936484,PR:000006299,http://purl.obolibrary.org/obo/PR_000006299,lariat debranching enzyme +13.1936484,PR:000006587,http://purl.obolibrary.org/obo/PR_000006587,DnaJ homolog subfamily C member 3 +13.1936484,PR:000006667,http://purl.obolibrary.org/obo/PR_000006667,developmental pluripotency-associated protein 4 +13.1936484,PR:000006718,http://purl.obolibrary.org/obo/PR_000006718,dystrobrevin beta +13.1936484,PR:000007187,http://purl.obolibrary.org/obo/PR_000007187,ERO1-like protein alpha +13.1936484,PR:000007428,http://purl.obolibrary.org/obo/PR_000007428,F-box/WD repeat-containing protein 8 +13.1936484,PR:000007481,http://purl.obolibrary.org/obo/PR_000007481,fibroblast growth factor 11 +13.1936484,PR:000007562,http://purl.obolibrary.org/obo/PR_000007562,leucine-rich repeat transmembrane protein FLRT3 +13.1936484,PR:000007605,http://purl.obolibrary.org/obo/PR_000007605,forkhead box protein B1 +13.1936484,PR:000007678,http://purl.obolibrary.org/obo/PR_000007678,fascin-2 +13.1936484,PR:000007790,http://purl.obolibrary.org/obo/PR_000007790,growth arrest and DNA damage-inducible proteins-interacting protein 1 +13.1936484,PR:000008037,http://purl.obolibrary.org/obo/PR_000008037,glomulin +13.1936484,PR:000008190,http://purl.obolibrary.org/obo/PR_000008190,adhesion G-protein coupled receptor G2 +13.1936484,PR:000009136,http://purl.obolibrary.org/obo/PR_000009136,integrin beta-1-binding protein 1 +13.1936484,PR:000009222,http://purl.obolibrary.org/obo/PR_000009222,junctophilin-1 +13.1936484,PR:000009254,http://purl.obolibrary.org/obo/PR_000009254,voltage-gated potassium channel KCNC3 +13.1936484,PR:000010567,http://purl.obolibrary.org/obo/PR_000010567,myosin regulatory light chain MRLC3 +13.1936484,PR:000010903,http://purl.obolibrary.org/obo/PR_000010903,none +13.1936484,PR:000010914,http://purl.obolibrary.org/obo/PR_000010914,none +13.1936484,PR:000011010,http://purl.obolibrary.org/obo/PR_000011010,neurobeachin +13.1936484,PR:000011092,http://purl.obolibrary.org/obo/PR_000011092,"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial" +13.1936484,PR:000011103,http://purl.obolibrary.org/obo/PR_000011103,"NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial" +13.1936484,PR:000011371,http://purl.obolibrary.org/obo/PR_000011371,nucleoplasmin-2 +13.1936484,PR:000011595,http://purl.obolibrary.org/obo/PR_000011595,odontogenic ameloblast-associated protein +13.1936484,PR:000012446,http://purl.obolibrary.org/obo/PR_000012446,choline-phosphate cytidylyltransferase A +13.1936484,PR:000012533,http://purl.obolibrary.org/obo/PR_000012533,phosphatidylethanolamine-binding protein 4 +13.1936484,PR:000012646,http://purl.obolibrary.org/obo/PR_000012646,lysine-specific demethylase PHF2 +13.1936484,PR:000012647,http://purl.obolibrary.org/obo/PR_000012647,PHD finger protein 20 +13.1936484,PR:000013426,http://purl.obolibrary.org/obo/PR_000013426,prostaglandin reductase 2 +13.1936484,PR:000013955,http://purl.obolibrary.org/obo/PR_000013955,regulator of G-protein signaling 20 +13.1936484,PR:000013963,http://purl.obolibrary.org/obo/PR_000013963,regulator of G-protein signaling 7-binding protein +13.1936484,PR:000013996,http://purl.obolibrary.org/obo/PR_000013996,synembryn-B +13.1936484,PR:000014266,http://purl.obolibrary.org/obo/PR_000014266,40S ribosomal protein S23 +13.1936484,PR:000014495,http://purl.obolibrary.org/obo/PR_000014495,scavenger receptor class F member 1 +13.1936484,PR:000014857,http://purl.obolibrary.org/obo/PR_000014857,protein Shroom4 +13.1936484,PR:000014878,http://purl.obolibrary.org/obo/PR_000014878,paired amphipathic helix protein Sin3b +13.1936484,PR:000015057,http://purl.obolibrary.org/obo/PR_000015057,equilibrative nucleoside transporter 4 +13.1936484,PR:000015124,http://purl.obolibrary.org/obo/PR_000015124,zinc transporter ZIP10 +13.1936484,PR:000015298,http://purl.obolibrary.org/obo/PR_000015298,small muscular protein +13.1936484,PR:000015742,http://purl.obolibrary.org/obo/PR_000015742,serine/threonine-protein kinase 16 +13.1936484,PR:000016429,http://purl.obolibrary.org/obo/PR_000016429,transmembrane protein 43 +13.1936484,PR:000017258,http://purl.obolibrary.org/obo/PR_000017258,valine--tRNA ligase +13.1936484,PR:000017324,http://purl.obolibrary.org/obo/PR_000017324,vacuolar protein sorting-associated protein 18 +13.1936484,PR:000017529,http://purl.obolibrary.org/obo/PR_000017529,protein YIF1A +13.1936484,PR:000022366,http://purl.obolibrary.org/obo/PR_000022366,none +13.1936484,PR:000022408,http://purl.obolibrary.org/obo/PR_000022408,none +13.1936484,PR:000022600,http://purl.obolibrary.org/obo/PR_000022600,none +13.1936484,PR:000022926,http://purl.obolibrary.org/obo/PR_000022926,none +13.1936484,PR:000023054,http://purl.obolibrary.org/obo/PR_000023054,none +13.1936484,PR:000023260,http://purl.obolibrary.org/obo/PR_000023260,none +13.1936484,PR:000023714,http://purl.obolibrary.org/obo/PR_000023714,none +13.1936484,PR:000024183,http://purl.obolibrary.org/obo/PR_000024183,none +13.1936484,PR:000025670,http://purl.obolibrary.org/obo/PR_000025670,killer cell lectin-like receptor subfamily B member 1 +13.1936484,PR:000028303,http://purl.obolibrary.org/obo/PR_000028303,none +13.1936484,PR:000029257,http://purl.obolibrary.org/obo/PR_000029257,ATP-binding cassette sub-family F member 3 +13.1936484,PR:000029267,http://purl.obolibrary.org/obo/PR_000029267,APC membrane recruitment protein 1 +13.1936484,PR:000029634,http://purl.obolibrary.org/obo/PR_000029634,MAGUK p55 subfamily member 6 +13.1936484,PR:000030384,http://purl.obolibrary.org/obo/PR_000030384,putative tyrosine-protein phosphatase auxilin +13.1936484,PR:000030473,http://purl.obolibrary.org/obo/PR_000030473,cell surface hyaluronidase +13.1936484,PR:000030885,http://purl.obolibrary.org/obo/PR_000030885,4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase 9 +13.1936484,PR:000031087,http://purl.obolibrary.org/obo/PR_000031087,4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase FUT5 +13.1936484,PR:000032615,http://purl.obolibrary.org/obo/PR_000032615,ATPase MORC2 +13.1936484,PR:000034016,http://purl.obolibrary.org/obo/PR_000034016,none +13.1936484,PR:000044784,http://purl.obolibrary.org/obo/PR_000044784,leucine-rich repeat and fibronectin type-III domain-containing protein +13.1936484,PR:P11978,http://purl.obolibrary.org/obo/PR_P11978,none +13.1936484,PR:P19211,http://purl.obolibrary.org/obo/PR_P19211,none +13.1936484,PR:P29382,http://purl.obolibrary.org/obo/PR_P29382,none +13.1936484,PR:P34099,http://purl.obolibrary.org/obo/PR_P34099,none +13.1936484,PR:P34288,http://purl.obolibrary.org/obo/PR_P34288,none +13.1936484,PR:P41376,http://purl.obolibrary.org/obo/PR_P41376,none +13.1936484,PR:P80428,http://purl.obolibrary.org/obo/PR_P80428,none +13.1936484,PR:Q03280,http://purl.obolibrary.org/obo/PR_Q03280,none +13.1936484,PR:Q2I6J0,http://purl.obolibrary.org/obo/PR_Q2I6J0,none +13.1936484,PR:Q39099,http://purl.obolibrary.org/obo/PR_Q39099,none +13.1936484,PR:Q54PD9,http://purl.obolibrary.org/obo/PR_Q54PD9,none +13.1936484,PR:Q63493,http://purl.obolibrary.org/obo/PR_Q63493,none +13.1936484,PR:Q8CHZ9,http://purl.obolibrary.org/obo/PR_Q8CHZ9,none +13.1936484,PR:Q8H0U8,http://purl.obolibrary.org/obo/PR_Q8H0U8,none +13.1936484,PR:Q8VY26,http://purl.obolibrary.org/obo/PR_Q8VY26,none +13.1936484,PR:Q91012,http://purl.obolibrary.org/obo/PR_Q91012,none +13.1936484,PR:Q9SEL5,http://purl.obolibrary.org/obo/PR_Q9SEL5,none +13.1936484,SO:0000385,http://purl.obolibrary.org/obo/SO_0000385,RNase_MRP_RNA +13.1936484,SO:0000820,http://purl.obolibrary.org/obo/SO_0000820,chloroplast_chromosome +13.1936484,SO:0001639,http://purl.obolibrary.org/obo/SO_0001639,RNase_P_RNA_gene +13.1936484,SO:0001809,http://purl.obolibrary.org/obo/SO_0001809,signal_anchor +13.1936484,UBERON:0001518,http://purl.obolibrary.org/obo/UBERON_0001518,skin of wrist +13.1936484,UBERON:0002069,http://purl.obolibrary.org/obo/UBERON_0002069,stratum granulosum of epidermis +13.1936484,UBERON:0002229,http://purl.obolibrary.org/obo/UBERON_0002229,interparietal bone +13.1936484,UBERON:0002710,http://purl.obolibrary.org/obo/UBERON_0002710,cingulate sulcus +13.1936484,UBERON:0002969,http://purl.obolibrary.org/obo/UBERON_0002969,inferior temporal sulcus +13.1936484,UBERON:0003216,http://purl.obolibrary.org/obo/UBERON_0003216,hard palate +13.1936484,UBERON:0003666,http://purl.obolibrary.org/obo/UBERON_0003666,upper jaw molar +13.1936484,UBERON:0004667,http://purl.obolibrary.org/obo/UBERON_0004667,interventricular septum muscular part +13.1936484,UBERON:0004821,http://purl.obolibrary.org/obo/UBERON_0004821,pulmonary alveolus epithelium +13.1936484,UBERON:0006093,http://purl.obolibrary.org/obo/UBERON_0006093,precuneus cortex +13.1936484,UBERON:0008779,http://purl.obolibrary.org/obo/UBERON_0008779,subclavius +13.1936484,UBERON:0008918,http://purl.obolibrary.org/obo/UBERON_0008918,ampulla of Lorenzini +13.1936484,UBERON:0009128,http://purl.obolibrary.org/obo/UBERON_0009128,lateral line placode +13.1936484,UBERON:0011096,http://purl.obolibrary.org/obo/UBERON_0011096,lacrimal nerve +13.1936484,UBERON:2000072,http://purl.obolibrary.org/obo/UBERON_2000072,somite 1 +13.1936484,UBERON:2002210,http://purl.obolibrary.org/obo/UBERON_2002210,mossy fiber +13.1936484,UBERON:3000316,http://purl.obolibrary.org/obo/UBERON_3000316,nasal opening +13.1936484,UBERON:3010243,http://purl.obolibrary.org/obo/UBERON_3010243,ventricular musculature +13.2171789,CHEBI:15956,http://purl.obolibrary.org/obo/CHEBI_15956,biotin +13.2171789,CHEBI:16196,http://purl.obolibrary.org/obo/CHEBI_16196,oleic acid +13.2171789,CHEBI:16467,http://purl.obolibrary.org/obo/CHEBI_16467,L-arginine +13.2171789,CHEBI:16842,http://purl.obolibrary.org/obo/CHEBI_16842,formaldehyde +13.2171789,CHEBI:176841,http://purl.obolibrary.org/obo/CHEBI_176841,vitamin B7 +13.2171789,CHEBI:18310,http://purl.obolibrary.org/obo/CHEBI_18310,alkane +13.2171789,CHEBI:23116,http://purl.obolibrary.org/obo/CHEBI_23116,chlorine atom +13.2171789,CHEBI:24782,http://purl.obolibrary.org/obo/CHEBI_24782,imide +13.2171789,CHEBI:32681,http://purl.obolibrary.org/obo/CHEBI_32681,L-argininate +13.2171789,CHEBI:32861,http://purl.obolibrary.org/obo/CHEBI_32861,valine residue +13.2171789,CHEBI:33257,http://purl.obolibrary.org/obo/CHEBI_33257,secondary amide +13.2171789,CHEBI:33365,http://purl.obolibrary.org/obo/CHEBI_33365,platinum group metal atom +13.2171789,CHEBI:33402,http://purl.obolibrary.org/obo/CHEBI_33402,sulfur oxoacid +13.2171789,CHEBI:33484,http://purl.obolibrary.org/obo/CHEBI_33484,chalcogen oxoacid +13.2171789,CHEBI:35480,http://purl.obolibrary.org/obo/CHEBI_35480,analgesic +13.2171789,CHEBI:36615,http://purl.obolibrary.org/obo/CHEBI_36615,triterpenoid +13.2171789,CHEBI:53270,http://purl.obolibrary.org/obo/CHEBI_53270,polystyrene macromolecule +13.2171789,CHEBI:57586,http://purl.obolibrary.org/obo/CHEBI_57586,biotinate +13.2171789,CHEBI:83166,http://purl.obolibrary.org/obo/CHEBI_83166,ethanol-containing medium +13.2171789,CHEBI:83207,http://purl.obolibrary.org/obo/CHEBI_83207,albomycin +13.2171789,CL:0000112,http://purl.obolibrary.org/obo/CL_0000112,columnar neuron +13.2171789,CL:0002286,http://purl.obolibrary.org/obo/CL_0002286,type II taste cell +13.2171789,DRUGBANK:DB00288,http://purl.obolibrary.org/obo/DRUGBANK_DB00288,none +13.2171789,DRUGBANK:DB01279,http://purl.obolibrary.org/obo/DRUGBANK_DB01279,none +13.2171789,DRUGBANK:DB01353,http://purl.obolibrary.org/obo/DRUGBANK_DB01353,none +13.2171789,DRUGBANK:DB01354,http://purl.obolibrary.org/obo/DRUGBANK_DB01354,none +13.2171789,DRUGBANK:DB02522,http://purl.obolibrary.org/obo/DRUGBANK_DB02522,none +13.2171789,DRUGBANK:DB04324,http://purl.obolibrary.org/obo/DRUGBANK_DB04324,none +13.2171789,DRUGBANK:DB04788,http://purl.obolibrary.org/obo/DRUGBANK_DB04788,none +13.2171789,DRUGBANK:DB04950,http://purl.obolibrary.org/obo/DRUGBANK_DB04950,none +13.2171789,DRUGBANK:DB05719,http://purl.obolibrary.org/obo/DRUGBANK_DB05719,none +13.2171789,DRUGBANK:DB05874,http://purl.obolibrary.org/obo/DRUGBANK_DB05874,none +13.2171789,DRUGBANK:DB06408,http://purl.obolibrary.org/obo/DRUGBANK_DB06408,none +13.2171789,DRUGBANK:DB11221,http://purl.obolibrary.org/obo/DRUGBANK_DB11221,none +13.2171789,DRUGBANK:DB11344,http://purl.obolibrary.org/obo/DRUGBANK_DB11344,none +13.2171789,DRUGBANK:DB11395,http://purl.obolibrary.org/obo/DRUGBANK_DB11395,none +13.2171789,DRUGBANK:DB11657,http://purl.obolibrary.org/obo/DRUGBANK_DB11657,none +13.2171789,DRUGBANK:DB11999,http://purl.obolibrary.org/obo/DRUGBANK_DB11999,none +13.2171789,DRUGBANK:DB12391,http://purl.obolibrary.org/obo/DRUGBANK_DB12391,none +13.2171789,DRUGBANK:DB12713,http://purl.obolibrary.org/obo/DRUGBANK_DB12713,none +13.2171789,DRUGBANK:DB13223,http://purl.obolibrary.org/obo/DRUGBANK_DB13223,none +13.2171789,DRUGBANK:DB13375,http://purl.obolibrary.org/obo/DRUGBANK_DB13375,none +13.2171789,DRUGBANK:DB13454,http://purl.obolibrary.org/obo/DRUGBANK_DB13454,none +13.2171789,DRUGBANK:DB13517,http://purl.obolibrary.org/obo/DRUGBANK_DB13517,none +13.2171789,DRUGBANK:DB13711,http://purl.obolibrary.org/obo/DRUGBANK_DB13711,none +13.2171789,DRUGBANK:DB14657,http://purl.obolibrary.org/obo/DRUGBANK_DB14657,none +13.2171789,DRUGBANK:DB14733,http://purl.obolibrary.org/obo/DRUGBANK_DB14733,none +13.2171789,DRUGBANK:DB15212,http://purl.obolibrary.org/obo/DRUGBANK_DB15212,none +13.2171789,DRUGBANK:DB16099,http://purl.obolibrary.org/obo/DRUGBANK_DB16099,none +13.2171789,DRUGBANK:DB16290,http://purl.obolibrary.org/obo/DRUGBANK_DB16290,none +13.2171789,GO:0000243,http://purl.obolibrary.org/obo/GO_0000243,commitment complex +13.2171789,GO:0000285,http://purl.obolibrary.org/obo/GO_0000285,1-phosphatidylinositol-3-phosphate 5-kinase activity +13.2171789,GO:0001594,http://purl.obolibrary.org/obo/GO_0001594,trace-amine receptor activity +13.2171789,GO:0004043,http://purl.obolibrary.org/obo/GO_0004043,L-aminoadipate-semialdehyde dehydrogenase activity +13.2171789,GO:0005684,http://purl.obolibrary.org/obo/GO_0005684,U2-type spliceosomal complex +13.2171789,GO:0006026,http://purl.obolibrary.org/obo/GO_0006026,aminoglycan catabolic process +13.2171789,GO:0007338,http://purl.obolibrary.org/obo/GO_0007338,single fertilization +13.2171789,GO:0008977,http://purl.obolibrary.org/obo/GO_0008977,prephenate dehydrogenase (NAD+) activity +13.2171789,GO:0009046,http://purl.obolibrary.org/obo/GO_0009046,zinc D-Ala-D-Ala carboxypeptidase activity +13.2171789,GO:0009301,http://purl.obolibrary.org/obo/GO_0009301,snRNA transcription +13.2171789,GO:0009561,http://purl.obolibrary.org/obo/GO_0009561,megagametogenesis +13.2171789,GO:0009631,http://purl.obolibrary.org/obo/GO_0009631,cold acclimation +13.2171789,GO:0009739,http://purl.obolibrary.org/obo/GO_0009739,response to gibberellin +13.2171789,GO:0010143,http://purl.obolibrary.org/obo/GO_0010143,cutin biosynthetic process +13.2171789,GO:0010874,http://purl.obolibrary.org/obo/GO_0010874,regulation of cholesterol efflux +13.2171789,GO:0015771,http://purl.obolibrary.org/obo/GO_0015771,trehalose transport +13.2171789,GO:0016942,http://purl.obolibrary.org/obo/GO_0016942,insulin-like growth factor binding protein complex +13.2171789,GO:0018729,http://purl.obolibrary.org/obo/GO_0018729,propionate CoA-transferase activity +13.2171789,GO:0018993,http://purl.obolibrary.org/obo/GO_0018993,somatic sex determination +13.2171789,GO:0019054,http://purl.obolibrary.org/obo/GO_0019054,modulation by virus of host cellular process +13.2171789,GO:0031049,http://purl.obolibrary.org/obo/GO_0031049,programmed DNA elimination +13.2171789,GO:0032945,http://purl.obolibrary.org/obo/GO_0032945,negative regulation of mononuclear cell proliferation +13.2171789,GO:0033754,http://purl.obolibrary.org/obo/GO_0033754,"indoleamine 2,3-dioxygenase activity" +13.2171789,GO:0035384,http://purl.obolibrary.org/obo/GO_0035384,thioester biosynthetic process +13.2171789,GO:0038171,http://purl.obolibrary.org/obo/GO_0038171,cannabinoid signaling pathway +13.2171789,GO:0042418,http://purl.obolibrary.org/obo/GO_0042418,epinephrine biosynthetic process +13.2171789,GO:0042587,http://purl.obolibrary.org/obo/GO_0042587,glycogen granule +13.2171789,GO:0043842,http://purl.obolibrary.org/obo/GO_0043842,Kdo transferase activity +13.2171789,GO:0045297,http://purl.obolibrary.org/obo/GO_0045297,none +13.2171789,GO:0046086,http://purl.obolibrary.org/obo/GO_0046086,adenosine biosynthetic process +13.2171789,GO:0046532,http://purl.obolibrary.org/obo/GO_0046532,regulation of photoreceptor cell differentiation +13.2171789,GO:0046861,http://purl.obolibrary.org/obo/GO_0046861,glyoxysomal membrane +13.2171789,GO:0047665,http://purl.obolibrary.org/obo/GO_0047665,aminolevulinate transaminase activity +13.2171789,GO:0047688,http://purl.obolibrary.org/obo/GO_0047688,aspartate 4-decarboxylase activity +13.2171789,GO:0047998,http://purl.obolibrary.org/obo/GO_0047998,hyoscyamine (6S)-dioxygenase activity +13.2171789,GO:0048571,http://purl.obolibrary.org/obo/GO_0048571,long-day photoperiodism +13.2171789,GO:0050051,http://purl.obolibrary.org/obo/GO_0050051,leukotriene-B4 20-monooxygenase activity +13.2171789,GO:0050528,http://purl.obolibrary.org/obo/GO_0050528,acyloxyacyl hydrolase activity +13.2171789,GO:0050672,http://purl.obolibrary.org/obo/GO_0050672,negative regulation of lymphocyte proliferation +13.2171789,GO:0051238,http://purl.obolibrary.org/obo/GO_0051238,sequestering of metal ion +13.2171789,GO:0052192,http://purl.obolibrary.org/obo/GO_0052192,none +13.2171789,GO:0097180,http://purl.obolibrary.org/obo/GO_0097180,serine protease inhibitor complex +13.2171789,GO:1900058,http://purl.obolibrary.org/obo/GO_1900058,regulation of sulfate assimilation +13.2171789,GO:1902600,http://purl.obolibrary.org/obo/GO_1902600,proton transmembrane transport +13.2171789,GO:1903827,http://purl.obolibrary.org/obo/GO_1903827,regulation of cellular protein localization +13.2171789,GO:1990836,http://purl.obolibrary.org/obo/GO_1990836,lysosomal matrix +13.2171789,HP:0000132,http://purl.obolibrary.org/obo/HP_0000132,Menorrhagia +13.2171789,HP:0000140,http://purl.obolibrary.org/obo/HP_0000140,Abnormality of the menstrual cycle +13.2171789,HP:0012575,http://purl.obolibrary.org/obo/HP_0012575,Abnormal nephron morphology +13.2171789,HP:0025408,http://purl.obolibrary.org/obo/HP_0025408,Abnormal spleen morphology +13.2171789,MONDO:0001022,http://purl.obolibrary.org/obo/MONDO_0001022,disuse amblyopia +13.2171789,MONDO:0001028,http://purl.obolibrary.org/obo/MONDO_0001028,acute pericementitis +13.2171789,MONDO:0001536,http://purl.obolibrary.org/obo/MONDO_0001536,vaginal leiomyoma +13.2171789,MONDO:0001860,http://purl.obolibrary.org/obo/MONDO_0001860,folic acid deficiency anemia +13.2171789,MONDO:0002788,http://purl.obolibrary.org/obo/MONDO_0002788,papillary craniopharyngioma +13.2171789,MONDO:0002993,http://purl.obolibrary.org/obo/MONDO_0002993,pancreatic somatostatinoma +13.2171789,MONDO:0002994,http://purl.obolibrary.org/obo/MONDO_0002994,pancreatic delta cell neuroendocrine tumor +13.2171789,MONDO:0003680,http://purl.obolibrary.org/obo/MONDO_0003680,periosteal chondrosarcoma +13.2171789,MONDO:0003721,http://purl.obolibrary.org/obo/MONDO_0003721,kidney osteogenic sarcoma +13.2171789,MONDO:0004466,http://purl.obolibrary.org/obo/MONDO_0004466,neuronitis +13.2171789,MONDO:0005187,http://purl.obolibrary.org/obo/MONDO_0005187,human herpesvirus 8 infection +13.2171789,MONDO:0005886,http://purl.obolibrary.org/obo/MONDO_0005886,oral candidiasis +13.2171789,MONDO:0005991,http://purl.obolibrary.org/obo/MONDO_0005991,trench fever +13.2171789,MONDO:0006409,http://purl.obolibrary.org/obo/MONDO_0006409,signet ring cell gastric adenocarcinoma +13.2171789,MONDO:0006721,http://purl.obolibrary.org/obo/MONDO_0006721,de Quervain disease +13.2171789,MONDO:0006920,http://purl.obolibrary.org/obo/MONDO_0006920,prediabetes syndrome +13.2171789,MONDO:0007688,http://purl.obolibrary.org/obo/MONDO_0007688,Myhre syndrome +13.2171789,MONDO:0008251,http://purl.obolibrary.org/obo/MONDO_0008251,familial pityriasis rubra pilaris +13.2171789,MONDO:0008319,http://purl.obolibrary.org/obo/MONDO_0008319,"protoporphyria, erythropoietic, 1" +13.2171789,MONDO:0010060,http://purl.obolibrary.org/obo/MONDO_0010060,infantile onset spinocerebellar ataxia +13.2171789,MONDO:0011178,http://purl.obolibrary.org/obo/MONDO_0011178,infantile convulsions and choreoathetosis +13.2171789,MONDO:0012609,http://purl.obolibrary.org/obo/MONDO_0012609,Alzheimer disease 12 +13.2171789,MONDO:0013327,http://purl.obolibrary.org/obo/MONDO_0013327,primary hyperoxaluria type 3 +13.2171789,MONDO:0015100,http://purl.obolibrary.org/obo/MONDO_0015100,aregenerative anemia +13.2171789,MONDO:0016086,http://purl.obolibrary.org/obo/MONDO_0016086,osteochondritis of tarsal/metatarsal bone +13.2171789,MONDO:0017577,http://purl.obolibrary.org/obo/MONDO_0017577,spontaneous periodic hypothermia +13.2171789,MONDO:0017922,http://purl.obolibrary.org/obo/MONDO_0017922,deafness-onychodystrophy syndrome +13.2171789,MONDO:0018354,http://purl.obolibrary.org/obo/MONDO_0018354,Prader-Willi-like syndrome +13.2171789,MONDO:0018596,http://purl.obolibrary.org/obo/MONDO_0018596,systemic polyarteritis nodosa +13.2171789,MONDO:0018604,http://purl.obolibrary.org/obo/MONDO_0018604,familial colorectal cancer type X +13.2171789,MONDO:0019456,http://purl.obolibrary.org/obo/MONDO_0019456,acute myeloid leukemia with multilineage dysplasia +13.2171789,MONDO:0019466,http://purl.obolibrary.org/obo/MONDO_0019466,lymphomatoid granulomatosis +13.2171789,MONDO:0019648,http://purl.obolibrary.org/obo/MONDO_0019648,achondrogenesis +13.2171789,MONDO:0019759,http://purl.obolibrary.org/obo/MONDO_0019759,epispadias +13.2171789,MONDO:0020154,http://purl.obolibrary.org/obo/MONDO_0020154,microblepharon-ablephara syndrome +13.2171789,MONDO:0020356,http://purl.obolibrary.org/obo/MONDO_0020356,coloboma of iris +13.2171789,MONDO:0023646,http://purl.obolibrary.org/obo/MONDO_0023646,lipodermatosclerosis +13.2171789,MONDO:0024744,http://purl.obolibrary.org/obo/MONDO_0024744,childhood choroid plexus neoplasm +13.2171789,MONDO:0100017,http://purl.obolibrary.org/obo/MONDO_0100017,pityriasis rubra pilaris +13.2171789,MOP:0004162,http://purl.obolibrary.org/obo/MOP_0004162,none +13.2171789,NCBITaxon:10992,http://purl.obolibrary.org/obo/NCBITaxon_10992,none +13.2171789,NCBITaxon:12675,http://purl.obolibrary.org/obo/NCBITaxon_12675,none +13.2171789,NCBITaxon:1294634,http://purl.obolibrary.org/obo/NCBITaxon_1294634,Crocodylia +13.2171789,NCBITaxon:171549,http://purl.obolibrary.org/obo/NCBITaxon_171549,Bacteroidales +13.2171789,NCBITaxon:1933261,http://purl.obolibrary.org/obo/NCBITaxon_1933261,none +13.2171789,NCBITaxon:1933292,http://purl.obolibrary.org/obo/NCBITaxon_1933292,none +13.2171789,NCBITaxon:223287,http://purl.obolibrary.org/obo/NCBITaxon_223287,none +13.2171789,NCBITaxon:297308,http://purl.obolibrary.org/obo/NCBITaxon_297308,Ixodoidea +13.2171789,NCBITaxon:31953,http://purl.obolibrary.org/obo/NCBITaxon_31953,Bifidobacteriaceae +13.2171789,NCBITaxon:368453,http://purl.obolibrary.org/obo/NCBITaxon_368453,none +13.2171789,NCBITaxon:4454,http://purl.obolibrary.org/obo/NCBITaxon_4454,none +13.2171789,NCBITaxon:47832,http://purl.obolibrary.org/obo/NCBITaxon_47832,none +13.2171789,NCBITaxon:51336,http://purl.obolibrary.org/obo/NCBITaxon_51336,none +13.2171789,NCBITaxon:662,http://purl.obolibrary.org/obo/NCBITaxon_662,Vibrio +13.2171789,NCBITaxon:675069,http://purl.obolibrary.org/obo/NCBITaxon_675069,none +13.2171789,NCBITaxon:687339,http://purl.obolibrary.org/obo/NCBITaxon_687339,none +13.2171789,NCBITaxon:6935,http://purl.obolibrary.org/obo/NCBITaxon_6935,Ixodida +13.2171789,NCBITaxon:85004,http://purl.obolibrary.org/obo/NCBITaxon_85004,Bifidobacteriales +13.2171789,PR:000000701,http://purl.obolibrary.org/obo/PR_000000701,modulatory voltage-gated potassium channel subunit KCNG +13.2171789,PR:000001530,http://purl.obolibrary.org/obo/PR_000001530,probable G-protein coupled receptor 34 +13.2171789,PR:000003947,http://purl.obolibrary.org/obo/PR_000003947,"alpha-1,2-mannosyltransferase ALG9" +13.2171789,PR:000003999,http://purl.obolibrary.org/obo/PR_000003999,angiomotin-like protein 1 +13.2171789,PR:000004171,http://purl.obolibrary.org/obo/PR_000004171,DCC-interacting protein 13-beta +13.2171789,PR:000004698,http://purl.obolibrary.org/obo/PR_000004698,Bcl-2-like protein 2 +13.2171789,PR:000004929,http://purl.obolibrary.org/obo/PR_000004929,"atypical kinase COQ8A, mitochondrial" +13.2171789,PR:000004962,http://purl.obolibrary.org/obo/PR_000004962,cell adhesion molecule 3 +13.2171789,PR:000005349,http://purl.obolibrary.org/obo/PR_000005349,centrosomal protein of 290 kDa +13.2171789,PR:000005398,http://purl.obolibrary.org/obo/PR_000005398,glutathione-specific gamma-glutamylcyclotransferase 1 +13.2171789,PR:000005439,http://purl.obolibrary.org/obo/PR_000005439,charged multivesicular body protein 5 +13.2171789,PR:000005757,http://purl.obolibrary.org/obo/PR_000005757,"ubiquinone biosynthesis protein COQ9, mitochondrial" +13.2171789,PR:000005937,http://purl.obolibrary.org/obo/PR_000005937,chorionic somatomammotropin hormone-like 1 +13.2171789,PR:000006424,http://purl.obolibrary.org/obo/PR_000006424,derlin-3 +13.2171789,PR:000006738,http://purl.obolibrary.org/obo/PR_000006738,RNA/RNP complex-1-interacting phosphatase +13.2171789,PR:000006834,http://purl.obolibrary.org/obo/PR_000006834,none +13.2171789,PR:000007235,http://purl.obolibrary.org/obo/PR_000007235,protein EVI2A +13.2171789,PR:000007272,http://purl.obolibrary.org/obo/PR_000007272,exostosin-like 3 +13.2171789,PR:000007355,http://purl.obolibrary.org/obo/PR_000007355,Fas-binding factor 1 +13.2171789,PR:000007546,http://purl.obolibrary.org/obo/PR_000007546,FK506-binding protein-like +13.2171789,PR:000007816,http://purl.obolibrary.org/obo/PR_000007816,carbohydrate sulfotransferase 15 +13.2171789,PR:000008084,http://purl.obolibrary.org/obo/PR_000008084,guanine nucleotide-binding protein subunit alpha-15 +13.2171789,PR:000008646,http://purl.obolibrary.org/obo/PR_000008646,homeobox protein HMX1 +13.2171789,PR:000009059,http://purl.obolibrary.org/obo/PR_000009059,early placenta insulin-like peptide +13.2171789,PR:000009097,http://purl.obolibrary.org/obo/PR_000009097,Ras GTPase-activating-like protein IQGAP3 +13.2171789,PR:000009905,http://purl.obolibrary.org/obo/PR_000009905,phospholipid phosphatase-related protein type 3 +13.2171789,PR:000010024,http://purl.obolibrary.org/obo/PR_000010024,none +13.2171789,PR:000010280,http://purl.obolibrary.org/obo/PR_000010280,mediator of RNA polymerase II transcription subunit 10 +13.2171789,PR:000010372,http://purl.obolibrary.org/obo/PR_000010372,membrane frizzled-related protein +13.2171789,PR:000010478,http://purl.obolibrary.org/obo/PR_000010478,matrix metalloproteinase-19 +13.2171789,PR:000010758,http://purl.obolibrary.org/obo/PR_000010758,mucin-12 +13.2171789,PR:000011019,http://purl.obolibrary.org/obo/PR_000011019,neurocan core protein +13.2171789,PR:000011061,http://purl.obolibrary.org/obo/PR_000011061,protein NDRG3 +13.2171789,PR:000012079,http://purl.obolibrary.org/obo/PR_000012079,homeobox protein orthopedia +13.2171789,PR:000012217,http://purl.obolibrary.org/obo/PR_000012217,protein kinase C and casein kinase substrate in neurons protein 1 +13.2171789,PR:000012941,http://purl.obolibrary.org/obo/PR_000012941,omega-hydroxyceramide transacylase +13.2171789,PR:000012964,http://purl.obolibrary.org/obo/PR_000012964,DNA polymerase delta subunit 2 +13.2171789,PR:000012998,http://purl.obolibrary.org/obo/PR_000012998,"DNA-directed RNA polymerases I, II, and III subunit RPABC4" +13.2171789,PR:000013235,http://purl.obolibrary.org/obo/PR_000013235,protein kinase C zeta type +13.2171789,PR:000013399,http://purl.obolibrary.org/obo/PR_000013399,proteasome assembly chaperone 3 +13.2171789,PR:000013557,http://purl.obolibrary.org/obo/PR_000013557,none +13.2171789,PR:000013841,http://purl.obolibrary.org/obo/PR_000013841,REST corepressor 1 +13.2171789,PR:000013849,http://purl.obolibrary.org/obo/PR_000013849,retinol dehydrogenase 11 +13.2171789,PR:000013973,http://purl.obolibrary.org/obo/PR_000013973,ammonium transporter Rh type B +13.2171789,PR:000014185,http://purl.obolibrary.org/obo/PR_000014185,Rab effector Noc2 +13.2171789,PR:000014285,http://purl.obolibrary.org/obo/PR_000014285,ribosomal protein S6 kinase alpha-4 +13.2171789,PR:000014287,http://purl.obolibrary.org/obo/PR_000014287,ribosomal protein S6 kinase alpha-6 +13.2171789,PR:000014452,http://purl.obolibrary.org/obo/PR_000014452,serine/threonine-protein phosphatase 6 regulatory subunit 2 +13.2171789,PR:000014776,http://purl.obolibrary.org/obo/PR_000014776,sideroflexin-1 +13.2171789,PR:000015420,http://purl.obolibrary.org/obo/PR_000015420,transcription factor SOX-12 +13.2171789,PR:000015623,http://purl.obolibrary.org/obo/PR_000015623,signal recognition particle 14 kDa protein +13.2171789,PR:000015719,http://purl.obolibrary.org/obo/PR_000015719,StAR-related lipid transfer protein 4 +13.2171789,PR:000015722,http://purl.obolibrary.org/obo/PR_000015722,"StAR-related lipid transfer protein 7, mitochondrial" +13.2171789,PR:000016174,http://purl.obolibrary.org/obo/PR_000016174,transcription elongation regulator 1 +13.2171789,PR:000016495,http://purl.obolibrary.org/obo/PR_000016495,non-receptor tyrosine-protein kinase TNK1 +13.2171789,PR:000016523,http://purl.obolibrary.org/obo/PR_000016523,tensin-4 +13.2171789,PR:000016526,http://purl.obolibrary.org/obo/PR_000016526,protein Tob2 +13.2171789,PR:000016594,http://purl.obolibrary.org/obo/PR_000016594,protein-tyrosine sulfotransferase 1 +13.2171789,PR:000017039,http://purl.obolibrary.org/obo/PR_000017039,ubiquitin-fold modifier-conjugating enzyme 1 +13.2171789,PR:000017136,http://purl.obolibrary.org/obo/PR_000017136,vesicle transport protein USE1 +13.2171789,PR:000017270,http://purl.obolibrary.org/obo/PR_000017270,prefoldin subunit 3 +13.2171789,PR:000017472,http://purl.obolibrary.org/obo/PR_000017472,X antigen family member 1 +13.2171789,PR:000017629,http://purl.obolibrary.org/obo/PR_000017629,zinc finger homeobox protein 4 +13.2171789,PR:000022074,http://purl.obolibrary.org/obo/PR_000022074,none +13.2171789,PR:000022554,http://purl.obolibrary.org/obo/PR_000022554,none +13.2171789,PR:000022563,http://purl.obolibrary.org/obo/PR_000022563,none +13.2171789,PR:000022727,http://purl.obolibrary.org/obo/PR_000022727,none +13.2171789,PR:000022742,http://purl.obolibrary.org/obo/PR_000022742,glutamate decarboxylase beta +13.2171789,PR:000023079,http://purl.obolibrary.org/obo/PR_000023079,none +13.2171789,PR:000023220,http://purl.obolibrary.org/obo/PR_000023220,none +13.2171789,PR:000023274,http://purl.obolibrary.org/obo/PR_000023274,none +13.2171789,PR:000023337,http://purl.obolibrary.org/obo/PR_000023337,none +13.2171789,PR:000023459,http://purl.obolibrary.org/obo/PR_000023459,none +13.2171789,PR:000023460,http://purl.obolibrary.org/obo/PR_000023460,none +13.2171789,PR:000023508,http://purl.obolibrary.org/obo/PR_000023508,none +13.2171789,PR:000024156,http://purl.obolibrary.org/obo/PR_000024156,none +13.2171789,PR:000026997,http://purl.obolibrary.org/obo/PR_000026997,microtubule-associated protein tau isoform Tau-D +13.2171789,PR:000029479,http://purl.obolibrary.org/obo/PR_000029479,protein PIMREG +13.2171789,PR:000029761,http://purl.obolibrary.org/obo/PR_000029761,probable global transcription activator SNF2L1 +13.2171789,PR:000029854,http://purl.obolibrary.org/obo/PR_000029854,WW domain-binding protein 2 +13.2171789,PR:000030477,http://purl.obolibrary.org/obo/PR_000030477,BTB/POZ domain-containing protein KCTD12 +13.2171789,PR:000030790,http://purl.obolibrary.org/obo/PR_000030790,ATP-dependent RNA helicase TDRD9 +13.2171789,PR:000030848,http://purl.obolibrary.org/obo/PR_000030848,E3 ubiquitin-protein ligase MGRN1 +13.2171789,PR:000031192,http://purl.obolibrary.org/obo/PR_000031192,carboxylesterase 3 +13.2171789,PR:000032833,http://purl.obolibrary.org/obo/PR_000032833,none +13.2171789,PR:000033657,http://purl.obolibrary.org/obo/PR_000033657,none +13.2171789,PR:000034944,http://purl.obolibrary.org/obo/PR_000034944,none +13.2171789,PR:F4HW04,http://purl.obolibrary.org/obo/PR_F4HW04,none +13.2171789,PR:F4HWQ8,http://purl.obolibrary.org/obo/PR_F4HWQ8,none +13.2171789,PR:F4JPP0,http://purl.obolibrary.org/obo/PR_F4JPP0,none +13.2171789,PR:O64989,http://purl.obolibrary.org/obo/PR_O64989,none +13.2171789,PR:P12945,http://purl.obolibrary.org/obo/PR_P12945,none +13.2171789,PR:P13856,http://purl.obolibrary.org/obo/PR_P13856,none +13.2171789,PR:P32623,http://purl.obolibrary.org/obo/PR_P32623,none +13.2171789,PR:P36585,http://purl.obolibrary.org/obo/PR_P36585,none +13.2171789,PR:P40693,http://purl.obolibrary.org/obo/PR_P40693,none +13.2171789,PR:P42751,http://purl.obolibrary.org/obo/PR_P42751,none +13.2171789,PR:P51979,http://purl.obolibrary.org/obo/PR_P51979,none +13.2171789,PR:P54790,http://purl.obolibrary.org/obo/PR_P54790,none +13.2171789,PR:Q56ZN6,http://purl.obolibrary.org/obo/PR_Q56ZN6,none +13.2171789,PR:Q6YBR5,http://purl.obolibrary.org/obo/PR_Q6YBR5,none +13.2171789,PR:Q84WP6,http://purl.obolibrary.org/obo/PR_Q84WP6,none +13.2171789,PR:Q95UQ1,http://purl.obolibrary.org/obo/PR_Q95UQ1,none +13.2171789,PR:Q9FEF8,http://purl.obolibrary.org/obo/PR_Q9FEF8,none +13.2171789,PR:Q9LPQ3,http://purl.obolibrary.org/obo/PR_Q9LPQ3,none +13.2171789,PR:Q9SIV0,http://purl.obolibrary.org/obo/PR_Q9SIV0,none +13.2171789,PR:Q9SZ15,http://purl.obolibrary.org/obo/PR_Q9SZ15,none +13.2171789,SO:0000825,http://purl.obolibrary.org/obo/SO_0000825,micronuclear_chromosome +13.2171789,SO:0002058,http://purl.obolibrary.org/obo/SO_0002058,exonic_splicing_silencer +13.2171789,UBERON:0001327,http://purl.obolibrary.org/obo/UBERON_0001327,coccygeus muscle +13.2171789,UBERON:0001592,http://purl.obolibrary.org/obo/UBERON_0001592,bronchial vein +13.2171789,UBERON:0001657,http://purl.obolibrary.org/obo/UBERON_0001657,superficial temporal vein +13.2171789,UBERON:0001718,http://purl.obolibrary.org/obo/UBERON_0001718,mesencephalic nucleus of trigeminal nerve +13.2171789,UBERON:0001742,http://purl.obolibrary.org/obo/UBERON_0001742,epiglottic cartilage +13.2171789,UBERON:0001952,http://purl.obolibrary.org/obo/UBERON_0001952,epithelium of oropharynx +13.2171789,UBERON:0002013,http://purl.obolibrary.org/obo/UBERON_0002013,superior hypogastric nerve plexus +13.2171789,UBERON:0003070,http://purl.obolibrary.org/obo/UBERON_0003070,trigeminal placode complex +13.2171789,UBERON:0003091,http://purl.obolibrary.org/obo/UBERON_0003091,thyroid primordium +13.2171789,UBERON:0003120,http://purl.obolibrary.org/obo/UBERON_0003120,pharyngeal arch artery 3 +13.2171789,UBERON:0003894,http://purl.obolibrary.org/obo/UBERON_0003894,liver primordium +13.2171789,UBERON:0004079,http://purl.obolibrary.org/obo/UBERON_0004079,cerebellum vermis lobule V +13.2171789,UBERON:0004245,http://purl.obolibrary.org/obo/UBERON_0004245,oviduct smooth muscle +13.2171789,UBERON:0005867,http://purl.obolibrary.org/obo/UBERON_0005867,mandibular prominence +13.2171789,UBERON:0007135,http://purl.obolibrary.org/obo/UBERON_0007135,neural keel +13.2171789,UBERON:0008810,http://purl.obolibrary.org/obo/UBERON_0008810,nasopalatine nerve +13.2171789,UBERON:0009881,http://purl.obolibrary.org/obo/UBERON_0009881,anterior lateral plate mesoderm +13.2171789,UBERON:0010881,http://purl.obolibrary.org/obo/UBERON_0010881,limb cartilage element +13.2171789,UBERON:0015148,http://purl.obolibrary.org/obo/UBERON_0015148,tail hair +13.2171789,UBERON:0018110,http://purl.obolibrary.org/obo/UBERON_0018110,posterior auricular muscle +13.2171789,UBERON:0025593,http://purl.obolibrary.org/obo/UBERON_0025593,serotonergic system +13.2171789,UBERON:2000164,http://purl.obolibrary.org/obo/UBERON_2000164,ventral mesenchyme +13.2412764,CHEBI:176842,http://purl.obolibrary.org/obo/CHEBI_176842,vitamin B9 +13.2412764,CHEBI:18295,http://purl.obolibrary.org/obo/CHEBI_18295,histamine +13.2412764,CHEBI:33847,http://purl.obolibrary.org/obo/CHEBI_33847,monocyclic arene +13.2412764,CHEBI:35570,http://purl.obolibrary.org/obo/CHEBI_35570,mancude organic heterobicyclic parent +13.2412764,CHEBI:3783,http://purl.obolibrary.org/obo/CHEBI_3783,Coagulation Factor Xa +13.2412764,CHEBI:64628,http://purl.obolibrary.org/obo/CHEBI_64628,somatostatin +13.2412764,CHEBI:70709,http://purl.obolibrary.org/obo/CHEBI_70709,progesterone receptor agonist +13.2412764,CHEBI:83982,http://purl.obolibrary.org/obo/CHEBI_83982,L-glutamic acid derivative +13.2412764,CL:0000374,http://purl.obolibrary.org/obo/CL_0000374,trichogen cell +13.2412764,CL:0002250,http://purl.obolibrary.org/obo/CL_0002250,intestinal crypt stem cell +13.2412764,CL:0002639,http://purl.obolibrary.org/obo/CL_0002639,amniotic stem cell +13.2412764,DRUGBANK:DB00354,http://purl.obolibrary.org/obo/DRUGBANK_DB00354,none +13.2412764,DRUGBANK:DB00405,http://purl.obolibrary.org/obo/DRUGBANK_DB00405,none +13.2412764,DRUGBANK:DB00941,http://purl.obolibrary.org/obo/DRUGBANK_DB00941,none +13.2412764,DRUGBANK:DB01685,http://purl.obolibrary.org/obo/DRUGBANK_DB01685,none +13.2412764,DRUGBANK:DB01896,http://purl.obolibrary.org/obo/DRUGBANK_DB01896,none +13.2412764,DRUGBANK:DB02022,http://purl.obolibrary.org/obo/DRUGBANK_DB02022,none +13.2412764,DRUGBANK:DB02251,http://purl.obolibrary.org/obo/DRUGBANK_DB02251,none +13.2412764,DRUGBANK:DB02859,http://purl.obolibrary.org/obo/DRUGBANK_DB02859,none +13.2412764,DRUGBANK:DB02887,http://purl.obolibrary.org/obo/DRUGBANK_DB02887,none +13.2412764,DRUGBANK:DB03540,http://purl.obolibrary.org/obo/DRUGBANK_DB03540,none +13.2412764,DRUGBANK:DB03660,http://purl.obolibrary.org/obo/DRUGBANK_DB03660,none +13.2412764,DRUGBANK:DB04729,http://purl.obolibrary.org/obo/DRUGBANK_DB04729,none +13.2412764,DRUGBANK:DB05309,http://purl.obolibrary.org/obo/DRUGBANK_DB05309,none +13.2412764,DRUGBANK:DB05459,http://purl.obolibrary.org/obo/DRUGBANK_DB05459,none +13.2412764,DRUGBANK:DB05469,http://purl.obolibrary.org/obo/DRUGBANK_DB05469,none +13.2412764,DRUGBANK:DB06081,http://purl.obolibrary.org/obo/DRUGBANK_DB06081,none +13.2412764,DRUGBANK:DB06245,http://purl.obolibrary.org/obo/DRUGBANK_DB06245,none +13.2412764,DRUGBANK:DB06256,http://purl.obolibrary.org/obo/DRUGBANK_DB06256,none +13.2412764,DRUGBANK:DB06635,http://purl.obolibrary.org/obo/DRUGBANK_DB06635,none +13.2412764,DRUGBANK:DB08391,http://purl.obolibrary.org/obo/DRUGBANK_DB08391,none +13.2412764,DRUGBANK:DB11281,http://purl.obolibrary.org/obo/DRUGBANK_DB11281,none +13.2412764,DRUGBANK:DB12129,http://purl.obolibrary.org/obo/DRUGBANK_DB12129,none +13.2412764,DRUGBANK:DB12193,http://purl.obolibrary.org/obo/DRUGBANK_DB12193,none +13.2412764,DRUGBANK:DB13091,http://purl.obolibrary.org/obo/DRUGBANK_DB13091,none +13.2412764,DRUGBANK:DB13577,http://purl.obolibrary.org/obo/DRUGBANK_DB13577,none +13.2412764,DRUGBANK:DB13625,http://purl.obolibrary.org/obo/DRUGBANK_DB13625,none +13.2412764,DRUGBANK:DB13756,http://purl.obolibrary.org/obo/DRUGBANK_DB13756,none +13.2412764,DRUGBANK:DB13757,http://purl.obolibrary.org/obo/DRUGBANK_DB13757,none +13.2412764,DRUGBANK:DB13997,http://purl.obolibrary.org/obo/DRUGBANK_DB13997,none +13.2412764,DRUGBANK:DB14006,http://purl.obolibrary.org/obo/DRUGBANK_DB14006,none +13.2412764,DRUGBANK:DB14185,http://purl.obolibrary.org/obo/DRUGBANK_DB14185,none +13.2412764,DRUGBANK:DB14639,http://purl.obolibrary.org/obo/DRUGBANK_DB14639,none +13.2412764,DRUGBANK:DB14656,http://purl.obolibrary.org/obo/DRUGBANK_DB14656,none +13.2412764,DRUGBANK:DB15675,http://purl.obolibrary.org/obo/DRUGBANK_DB15675,none +13.2412764,DRUGBANK:DB15800,http://purl.obolibrary.org/obo/DRUGBANK_DB15800,none +13.2412764,DRUGBANK:DB16260,http://purl.obolibrary.org/obo/DRUGBANK_DB16260,none +13.2412764,GO:0000228,http://purl.obolibrary.org/obo/GO_0000228,nuclear chromosome +13.2412764,GO:0003913,http://purl.obolibrary.org/obo/GO_0003913,DNA photolyase activity +13.2412764,GO:0004382,http://purl.obolibrary.org/obo/GO_0004382,guanosine-diphosphatase activity +13.2412764,GO:0006303,http://purl.obolibrary.org/obo/GO_0006303,double-strand break repair via nonhomologous end joining +13.2412764,GO:0006603,http://purl.obolibrary.org/obo/GO_0006603,phosphocreatine metabolic process +13.2412764,GO:0008473,http://purl.obolibrary.org/obo/GO_0008473,ornithine cyclodeaminase activity +13.2412764,GO:0009176,http://purl.obolibrary.org/obo/GO_0009176,pyrimidine deoxyribonucleoside monophosphate metabolic process +13.2412764,GO:0010992,http://purl.obolibrary.org/obo/GO_0010992,ubiquitin recycling +13.2412764,GO:0015783,http://purl.obolibrary.org/obo/GO_0015783,GDP-fucose transmembrane transport +13.2412764,GO:0016037,http://purl.obolibrary.org/obo/GO_0016037,light absorption +13.2412764,GO:0016040,http://purl.obolibrary.org/obo/GO_0016040,glutamate synthase (NADH) activity +13.2412764,GO:0016465,http://purl.obolibrary.org/obo/GO_0016465,chaperonin ATPase complex +13.2412764,GO:0016498,http://purl.obolibrary.org/obo/GO_0016498,neuromedin K receptor activity +13.2412764,GO:0018879,http://purl.obolibrary.org/obo/GO_0018879,biphenyl metabolic process +13.2412764,GO:0019389,http://purl.obolibrary.org/obo/GO_0019389,glucuronoside metabolic process +13.2412764,GO:0019585,http://purl.obolibrary.org/obo/GO_0019585,glucuronate metabolic process +13.2412764,GO:0020039,http://purl.obolibrary.org/obo/GO_0020039,pellicle +13.2412764,GO:0030264,http://purl.obolibrary.org/obo/GO_0030264,nuclear fragmentation involved in apoptotic nuclear change +13.2412764,GO:0030338,http://purl.obolibrary.org/obo/GO_0030338,CMP-N-acetylneuraminate monooxygenase activity +13.2412764,GO:0030496,http://purl.obolibrary.org/obo/GO_0030496,midbody +13.2412764,GO:0030901,http://purl.obolibrary.org/obo/GO_0030901,midbrain development +13.2412764,GO:0031646,http://purl.obolibrary.org/obo/GO_0031646,positive regulation of nervous system process +13.2412764,GO:0031932,http://purl.obolibrary.org/obo/GO_0031932,TORC2 complex +13.2412764,GO:0032494,http://purl.obolibrary.org/obo/GO_0032494,response to peptidoglycan +13.2412764,GO:0032604,http://purl.obolibrary.org/obo/GO_0032604,granulocyte macrophage colony-stimulating factor production +13.2412764,GO:0042441,http://purl.obolibrary.org/obo/GO_0042441,eye pigment metabolic process +13.2412764,GO:0043324,http://purl.obolibrary.org/obo/GO_0043324,pigment metabolic process involved in developmental pigmentation +13.2412764,GO:0043474,http://purl.obolibrary.org/obo/GO_0043474,pigment metabolic process involved in pigmentation +13.2412764,GO:0044426,http://purl.obolibrary.org/obo/GO_0044426,none +13.2412764,GO:0045293,http://purl.obolibrary.org/obo/GO_0045293,mRNA editing complex +13.2412764,GO:0045668,http://purl.obolibrary.org/obo/GO_0045668,negative regulation of osteoblast differentiation +13.2412764,GO:0046049,http://purl.obolibrary.org/obo/GO_0046049,UMP metabolic process +13.2412764,GO:0046559,http://purl.obolibrary.org/obo/GO_0046559,alpha-glucuronidase activity +13.2412764,GO:0047330,http://purl.obolibrary.org/obo/GO_0047330,polyphosphate-glucose phosphotransferase activity +13.2412764,GO:0047980,http://purl.obolibrary.org/obo/GO_0047980,hippurate hydrolase activity +13.2412764,GO:0048094,http://purl.obolibrary.org/obo/GO_0048094,male pigmentation +13.2412764,GO:0048569,http://purl.obolibrary.org/obo/GO_0048569,post-embryonic animal organ development +13.2412764,GO:0050640,http://purl.obolibrary.org/obo/GO_0050640,isopenicillin-N N-acyltransferase activity +13.2412764,GO:0051887,http://purl.obolibrary.org/obo/GO_0051887,regulation of timing of exogen +13.2412764,GO:0061057,http://purl.obolibrary.org/obo/GO_0061057,peptidoglycan recognition protein signaling pathway +13.2412764,GO:0071203,http://purl.obolibrary.org/obo/GO_0071203,WASH complex +13.2412764,GO:0090480,http://purl.obolibrary.org/obo/GO_0090480,purine nucleotide-sugar transmembrane transport +13.2412764,GO:0097149,http://purl.obolibrary.org/obo/GO_0097149,centralspindlin complex +13.2412764,GO:1900040,http://purl.obolibrary.org/obo/GO_1900040,none +13.2412764,GO:1902187,http://purl.obolibrary.org/obo/GO_1902187,none +13.2412764,GO:1903053,http://purl.obolibrary.org/obo/GO_1903053,regulation of extracellular matrix organization +13.2412764,GO:1904307,http://purl.obolibrary.org/obo/GO_1904307,response to desipramine +13.2412764,GO:1990220,http://purl.obolibrary.org/obo/GO_1990220,GroEL-GroES complex +13.2412764,GO:2000303,http://purl.obolibrary.org/obo/GO_2000303,regulation of ceramide biosynthetic process +13.2412764,HP:0000095,http://purl.obolibrary.org/obo/HP_0000095,Abnormal renal glomerulus morphology +13.2412764,HP:0008066,http://purl.obolibrary.org/obo/HP_0008066,Abnormal blistering of the skin +13.2412764,HP:0011035,http://purl.obolibrary.org/obo/HP_0011035,Abnormal renal cortex morphology +13.2412764,HP:0031263,http://purl.obolibrary.org/obo/HP_0031263,Abnormal renal corpuscle morphology +13.2412764,MONDO:0000531,http://purl.obolibrary.org/obo/MONDO_0000531,bronchus mucoepidermoid carcinoma +13.2412764,MONDO:0001075,http://purl.obolibrary.org/obo/MONDO_0001075,steatorrhea +13.2412764,MONDO:0001564,http://purl.obolibrary.org/obo/MONDO_0001564,binocular vision disease +13.2412764,MONDO:0001725,http://purl.obolibrary.org/obo/MONDO_0001725,balanitis xerotica obliterans +13.2412764,MONDO:0002810,http://purl.obolibrary.org/obo/MONDO_0002810,pancreatic serous cystic neoplasm +13.2412764,MONDO:0002836,http://purl.obolibrary.org/obo/MONDO_0002836,urethra transitional cell carcinoma +13.2412764,MONDO:0003293,http://purl.obolibrary.org/obo/MONDO_0003293,lung leiomyoma +13.2412764,MONDO:0007073,http://purl.obolibrary.org/obo/MONDO_0007073,hypoglossia-hypodactyly syndrome +13.2412764,MONDO:0008757,http://purl.obolibrary.org/obo/MONDO_0008757,alopecia universalis congenita +13.2412764,MONDO:0008828,http://purl.obolibrary.org/obo/MONDO_0008828,camptodactyly-arthropathy-coxa vara-pericarditis syndrome +13.2412764,MONDO:0008956,http://purl.obolibrary.org/obo/MONDO_0008956,congenital neuronal ceroid lipofuscinosis +13.2412764,MONDO:0009506,http://purl.obolibrary.org/obo/MONDO_0009506,specific granule deficiency +13.2412764,MONDO:0009821,http://purl.obolibrary.org/obo/MONDO_0009821,lethal osteosclerotic bone dysplasia +13.2412764,MONDO:0009965,http://purl.obolibrary.org/obo/MONDO_0009965,Perlman syndrome +13.2412764,MONDO:0010733,http://purl.obolibrary.org/obo/MONDO_0010733,hereditary spastic paraplegia 2 +13.2412764,MONDO:0011841,http://purl.obolibrary.org/obo/MONDO_0011841,biotin-responsive basal ganglia disease +13.2412764,MONDO:0013038,http://purl.obolibrary.org/obo/MONDO_0013038,CLOVES syndrome +13.2412764,MONDO:0016472,http://purl.obolibrary.org/obo/MONDO_0016472,dracunculiasis +13.2412764,MONDO:0017267,http://purl.obolibrary.org/obo/MONDO_0017267,self-healing collodion baby +13.2412764,MONDO:0017408,http://purl.obolibrary.org/obo/MONDO_0017408,rapid-onset childhood obesity-hypothalamic dysfunction-hypoventilation-autonomic dysregulation syndrome +13.2412764,MONDO:0017451,http://purl.obolibrary.org/obo/MONDO_0017451,non-syndromic brachydactyly of fingers +13.2412764,MONDO:0017875,http://purl.obolibrary.org/obo/MONDO_0017875,Bolivian hemorrhagic fever +13.2412764,MONDO:0018298,http://purl.obolibrary.org/obo/MONDO_0018298,multicentric osteolysis-nodulosis-arthropathy spectrum +13.2412764,MONDO:0018858,http://purl.obolibrary.org/obo/MONDO_0018858,Graham Little-Piccardi-Lassueur syndrome +13.2412764,MONDO:0019729,http://purl.obolibrary.org/obo/MONDO_0019729,light and heavy chain deposition disease +13.2412764,MONDO:0021379,http://purl.obolibrary.org/obo/MONDO_0021379,neoplasm of epicardium +13.2412764,MONDO:0023214,http://purl.obolibrary.org/obo/MONDO_0023214,gas bloat syndrome +13.2412764,NCBITaxon:102810,http://purl.obolibrary.org/obo/NCBITaxon_102810,none +13.2412764,NCBITaxon:1086556,http://purl.obolibrary.org/obo/NCBITaxon_1086556,none +13.2412764,NCBITaxon:11156,http://purl.obolibrary.org/obo/NCBITaxon_11156,none +13.2412764,NCBITaxon:12051,http://purl.obolibrary.org/obo/NCBITaxon_12051,none +13.2412764,NCBITaxon:1283207,http://purl.obolibrary.org/obo/NCBITaxon_1283207,none +13.2412764,NCBITaxon:136,http://purl.obolibrary.org/obo/NCBITaxon_136,Spirochaetales +13.2412764,NCBITaxon:203691,http://purl.obolibrary.org/obo/NCBITaxon_203691,Spirochaetes +13.2412764,NCBITaxon:203692,http://purl.obolibrary.org/obo/NCBITaxon_203692,Spirochaetia +13.2412764,NCBITaxon:210425,http://purl.obolibrary.org/obo/NCBITaxon_210425,none +13.2412764,NCBITaxon:253923,http://purl.obolibrary.org/obo/NCBITaxon_253923,none +13.2412764,NCBITaxon:2560341,http://purl.obolibrary.org/obo/NCBITaxon_2560341,none +13.2412764,NCBITaxon:348387,http://purl.obolibrary.org/obo/NCBITaxon_348387,none +13.2412764,NCBITaxon:35244,http://purl.obolibrary.org/obo/NCBITaxon_35244,none +13.2412764,NCBITaxon:38144,http://purl.obolibrary.org/obo/NCBITaxon_38144,none +13.2412764,NCBITaxon:40553,http://purl.obolibrary.org/obo/NCBITaxon_40553,none +13.2412764,NCBITaxon:42475,http://purl.obolibrary.org/obo/NCBITaxon_42475,none +13.2412764,NCBITaxon:4642,http://purl.obolibrary.org/obo/NCBITaxon_4642,none +13.2412764,NCBITaxon:4678,http://purl.obolibrary.org/obo/NCBITaxon_4678,none +13.2412764,NCBITaxon:48301,http://purl.obolibrary.org/obo/NCBITaxon_48301,none +13.2412764,NCBITaxon:5338,http://purl.obolibrary.org/obo/NCBITaxon_5338,none +13.2412764,NCBITaxon:583,http://purl.obolibrary.org/obo/NCBITaxon_583,Proteus +13.2412764,NCBITaxon:675073,http://purl.obolibrary.org/obo/NCBITaxon_675073,none +13.2412764,NCBITaxon:6939,http://purl.obolibrary.org/obo/NCBITaxon_6939,Ixodidae +13.2412764,NCBITaxon:703248,http://purl.obolibrary.org/obo/NCBITaxon_703248,none +13.2412764,NCBITaxon:715340,http://purl.obolibrary.org/obo/NCBITaxon_715340,Pleosporineae +13.2412764,NCBITaxon:8082,http://purl.obolibrary.org/obo/NCBITaxon_8082,none +13.2412764,NCBITaxon:80942,http://purl.obolibrary.org/obo/NCBITaxon_80942,none +13.2412764,NCBITaxon:94290,http://purl.obolibrary.org/obo/NCBITaxon_94290,none +13.2412764,PR:000001354,http://purl.obolibrary.org/obo/PR_000001354,granulocyte-macrophage colony-stimulating factor receptor subunit alpha +13.2412764,PR:000001999,http://purl.obolibrary.org/obo/PR_000001999,none +13.2412764,PR:000003603,http://purl.obolibrary.org/obo/PR_000003603,"short/branched chain specific acyl-CoA dehydrogenase, mitochondrial" +13.2412764,PR:000003667,http://purl.obolibrary.org/obo/PR_000003667,"acyl-coenzyme A synthetase ACSM3, mitochondrial" +13.2412764,PR:000003909,http://purl.obolibrary.org/obo/PR_000003909,aflatoxin B1 aldehyde reductase member 3 +13.2412764,PR:000003930,http://purl.obolibrary.org/obo/PR_000003930,"methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial" +13.2412764,PR:000004086,http://purl.obolibrary.org/obo/PR_000004086,retina-specific copper amine oxidase +13.2412764,PR:000004668,http://purl.obolibrary.org/obo/PR_000004668,Bardet-Biedl syndrome 5 protein +13.2412764,PR:000004672,http://purl.obolibrary.org/obo/PR_000004672,proline-rich protein BCA3 +13.2412764,PR:000005027,http://purl.obolibrary.org/obo/PR_000005027,calcyphosin-2 +13.2412764,PR:000005224,http://purl.obolibrary.org/obo/PR_000005224,cell division cycle-associated protein 7 +13.2412764,PR:000005602,http://purl.obolibrary.org/obo/PR_000005602,cleft lip and palate transmembrane protein 1 +13.2412764,PR:000005898,http://purl.obolibrary.org/obo/PR_000005898,cartilage acidic protein 1 +13.2412764,PR:000006280,http://purl.obolibrary.org/obo/PR_000006280,dual adapter for phosphotyrosine and 3-phosphotyrosine and 3-phosphoinositide +13.2412764,PR:000006359,http://purl.obolibrary.org/obo/PR_000006359,nucleolar RNA helicase 2 +13.2412764,PR:000006596,http://purl.obolibrary.org/obo/PR_000006596,deoxyribonuclease-2-alpha +13.2412764,PR:000006988,http://purl.obolibrary.org/obo/PR_000006988,eukaryotic initiation factor 4A-III +13.2412764,PR:000007934,http://purl.obolibrary.org/obo/PR_000007934,gem-associated protein 5 +13.2412764,PR:000008034,http://purl.obolibrary.org/obo/PR_000008034,zinc finger protein GLIS1 +13.2412764,PR:000008055,http://purl.obolibrary.org/obo/PR_000008055,ribosome biogenesis protein NOP53 +13.2412764,PR:000008195,http://purl.obolibrary.org/obo/PR_000008195,G-protein coupled receptor family C group 5 member B +13.2412764,PR:000008317,http://purl.obolibrary.org/obo/PR_000008317,general transcription factor IIH subunit 1 +13.2412764,PR:000008719,http://purl.obolibrary.org/obo/PR_000008719,homeobox protein Hox-D12 +13.2412764,PR:000008855,http://purl.obolibrary.org/obo/PR_000008855,none +13.2412764,PR:000009292,http://purl.obolibrary.org/obo/PR_000009292,kinesin-like protein KIF18A +13.2412764,PR:000009412,http://purl.obolibrary.org/obo/PR_000009412,kallikrein-15 +13.2412764,PR:000009624,http://purl.obolibrary.org/obo/PR_000009624,none +13.2412764,PR:000009875,http://purl.obolibrary.org/obo/PR_000009875,E3 ubiquitin-protein ligase LNX +13.2412764,PR:000010141,http://purl.obolibrary.org/obo/PR_000010141,mitogen-activated protein kinase kinase kinase 9 +13.2412764,PR:000010438,http://purl.obolibrary.org/obo/PR_000010438,malectin +13.2412764,PR:000010863,http://purl.obolibrary.org/obo/PR_000010863,myosin-IIIa +13.2412764,PR:000010887,http://purl.obolibrary.org/obo/PR_000010887,Rab effector MyRIP +13.2412764,PR:000011139,http://purl.obolibrary.org/obo/PR_000011139,neudesin +13.2412764,PR:000011143,http://purl.obolibrary.org/obo/PR_000011143,neuropilin and tolloid-like protein 1 +13.2412764,PR:000011414,http://purl.obolibrary.org/obo/PR_000011414,nebulin-related-anchoring protein +13.2412764,PR:000011433,http://purl.obolibrary.org/obo/PR_000011433,nurim +13.2412764,PR:000012069,http://purl.obolibrary.org/obo/PR_000012069,osteocrin +13.2412764,PR:000012579,http://purl.obolibrary.org/obo/PR_000012579,"6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 2" +13.2412764,PR:000012739,http://purl.obolibrary.org/obo/PR_000012739,protein pigeon +13.2412764,PR:000012986,http://purl.obolibrary.org/obo/PR_000012986,DNA-directed RNA polymerase I subunit RPA49 +13.2412764,PR:000012992,http://purl.obolibrary.org/obo/PR_000012992,"DNA-directed RNA polymerases I, II, and III subunit RPABC2" +13.2412764,PR:000013467,http://purl.obolibrary.org/obo/PR_000013467,receptor-type tyrosine-protein phosphatase delta +13.2412764,PR:000013580,http://purl.obolibrary.org/obo/PR_000013580,Ras-related protein Rab-11B +13.2412764,PR:000013635,http://purl.obolibrary.org/obo/PR_000013635,Ras-related protein Rab-5C +13.2412764,PR:000013723,http://purl.obolibrary.org/obo/PR_000013723,Ras-related protein Rap-2a +13.2412764,PR:000013772,http://purl.obolibrary.org/obo/PR_000013772,retina and anterior neural fold homeobox protein 2 +13.2412764,PR:000013980,http://purl.obolibrary.org/obo/PR_000013980,Rho-related GTP-binding protein RhoF +13.2412764,PR:000014195,http://purl.obolibrary.org/obo/PR_000014195,60S ribosomal protein L15 +13.2412764,PR:000014560,http://purl.obolibrary.org/obo/PR_000014560,stromal cell-derived factor 2 +13.2412764,PR:000014624,http://purl.obolibrary.org/obo/PR_000014624,semaphorin-4C +13.2412764,PR:000014761,http://purl.obolibrary.org/obo/PR_000014761,serine/arginine-rich splicing factor 4 +13.2412764,PR:000015167,http://purl.obolibrary.org/obo/PR_000015167,sodium/myo-inositol cotransporter 2 +13.2412764,PR:000015284,http://purl.obolibrary.org/obo/PR_000015284,protein SMG5 +13.2412764,PR:000015457,http://purl.obolibrary.org/obo/PR_000015457,sperm-associated antigen 4 protein +13.2412764,PR:000015889,http://purl.obolibrary.org/obo/PR_000015889,synaptoporin +13.2412764,PR:000015891,http://purl.obolibrary.org/obo/PR_000015891,synaptophysin-like protein 1 +13.2412764,PR:000016071,http://purl.obolibrary.org/obo/PR_000016071,taste receptor type 2 member 4 +13.2412764,PR:000016088,http://purl.obolibrary.org/obo/PR_000016088,threonine aspartase 1 +13.2412764,PR:000016222,http://purl.obolibrary.org/obo/PR_000016222,alpha-tectorin +13.2412764,PR:000016297,http://purl.obolibrary.org/obo/PR_000016297,protein-glutamine gamma-glutamyltransferase 6 +13.2412764,PR:000016311,http://purl.obolibrary.org/obo/PR_000016311,THO complex subunit 2 +13.2412764,PR:000016314,http://purl.obolibrary.org/obo/PR_000016314,THO complex subunit 5 +13.2412764,PR:000016532,http://purl.obolibrary.org/obo/PR_000016532,mitochondrial import receptor subunit TOM20 +13.2412764,PR:000016607,http://purl.obolibrary.org/obo/PR_000016607,trafficking kinesin-binding protein 1 +13.2412764,PR:000016608,http://purl.obolibrary.org/obo/PR_000016608,trafficking kinesin-binding protein 2 +13.2412764,PR:000016987,http://purl.obolibrary.org/obo/PR_000016987,ubiquitin-conjugating enzyme E2 S +13.2412764,PR:000017323,http://purl.obolibrary.org/obo/PR_000017323,vacuolar protein sorting-associated protein 16 +13.2412764,PR:000017457,http://purl.obolibrary.org/obo/PR_000017457,WD repeat and SOCS box-containing protein 1 +13.2412764,PR:000017470,http://purl.obolibrary.org/obo/PR_000017470,pre-mRNA-splicing factor SYF1 +13.2412764,PR:000017614,http://purl.obolibrary.org/obo/PR_000017614,palmitoyltransferase ZDHHC3 +13.2412764,PR:000017743,http://purl.obolibrary.org/obo/PR_000017743,zinc finger protein 2 +13.2412764,PR:000022623,http://purl.obolibrary.org/obo/PR_000022623,none +13.2412764,PR:000023456,http://purl.obolibrary.org/obo/PR_000023456,none +13.2412764,PR:000024088,http://purl.obolibrary.org/obo/PR_000024088,none +13.2412764,PR:000024123,http://purl.obolibrary.org/obo/PR_000024123,none +13.2412764,PR:000032009,http://purl.obolibrary.org/obo/PR_000032009,perilipin-4 +13.2412764,PR:000032649,http://purl.obolibrary.org/obo/PR_000032649,arrestin domain-containing protein 3 +13.2412764,PR:000032694,http://purl.obolibrary.org/obo/PR_000032694,integral membrane protein 2A +13.2412764,PR:000050235,http://purl.obolibrary.org/obo/PR_000050235,polyubiquitin +13.2412764,PR:A0A1B0GVQ0,http://purl.obolibrary.org/obo/PR_A0A1B0GVQ0,small regulatory polypeptide of amino acid response (human) +13.2412764,PR:O82175,http://purl.obolibrary.org/obo/PR_O82175,none +13.2412764,PR:P02406,http://purl.obolibrary.org/obo/PR_P02406,none +13.2412764,PR:P0DMC4,http://purl.obolibrary.org/obo/PR_P0DMC4,none +13.2412764,PR:P15496,http://purl.obolibrary.org/obo/PR_P15496,none +13.2412764,PR:P24813,http://purl.obolibrary.org/obo/PR_P24813,none +13.2412764,PR:P32179,http://purl.obolibrary.org/obo/PR_P32179,none +13.2412764,PR:P49028,http://purl.obolibrary.org/obo/PR_P49028,none +13.2412764,PR:P93830,http://purl.obolibrary.org/obo/PR_P93830,none +13.2412764,PR:Q23894,http://purl.obolibrary.org/obo/PR_Q23894,none +13.2412764,PR:Q3UPL5,http://purl.obolibrary.org/obo/PR_Q3UPL5,none +13.2412764,PR:Q7XJL2,http://purl.obolibrary.org/obo/PR_Q7XJL2,none +13.2412764,PR:Q7Z992,http://purl.obolibrary.org/obo/PR_Q7Z992,none +13.2412764,PR:Q8H1D3,http://purl.obolibrary.org/obo/PR_Q8H1D3,none +13.2412764,PR:Q8IS20,http://purl.obolibrary.org/obo/PR_Q8IS20,none +13.2412764,PR:Q8L633,http://purl.obolibrary.org/obo/PR_Q8L633,none +13.2412764,PR:Q8VXV7,http://purl.obolibrary.org/obo/PR_Q8VXV7,none +13.2412764,PR:Q9SIJ0,http://purl.obolibrary.org/obo/PR_Q9SIJ0,none +13.2412764,PR:Q9SN39,http://purl.obolibrary.org/obo/PR_Q9SN39,none +13.2412764,PR:Q9US60,http://purl.obolibrary.org/obo/PR_Q9US60,none +13.2412764,PR:Q9XGW1,http://purl.obolibrary.org/obo/PR_Q9XGW1,none +13.2412764,SO:0000479,http://purl.obolibrary.org/obo/SO_0000479,trans_spliced_transcript +13.2412764,SO:0000654,http://purl.obolibrary.org/obo/SO_0000654,maxicircle_gene +13.2412764,SO:0001208,http://purl.obolibrary.org/obo/SO_0001208,five_prime_EST +13.2412764,SO:0001275,http://purl.obolibrary.org/obo/SO_0001275,modified_cytidine +13.2412764,SO:0001680,http://purl.obolibrary.org/obo/SO_0001680,translation_regulatory_region +13.2412764,SO:0002064,http://purl.obolibrary.org/obo/SO_0002064,LINE1_insertion +13.2412764,UBERON:0001313,http://purl.obolibrary.org/obo/UBERON_0001313,iliolumbar artery +13.2412764,UBERON:0002307,http://purl.obolibrary.org/obo/UBERON_0002307,choroid plexus of lateral ventricle +13.2412764,UBERON:0002335,http://purl.obolibrary.org/obo/UBERON_0002335,macula densa +13.2412764,UBERON:0002535,http://purl.obolibrary.org/obo/UBERON_0002535,gill +13.2412764,UBERON:0002693,http://purl.obolibrary.org/obo/UBERON_0002693,occipitotemporal sulcus +13.2412764,UBERON:0004043,http://purl.obolibrary.org/obo/UBERON_0004043,semicircular canal ampulla +13.2412764,UBERON:0004919,http://purl.obolibrary.org/obo/UBERON_0004919,external urethral sphincter +13.2412764,UBERON:0005395,http://purl.obolibrary.org/obo/UBERON_0005395,cortical layer VI +13.2412764,UBERON:0006010,http://purl.obolibrary.org/obo/UBERON_0006010,hyaloid canal +13.2412764,UBERON:0007574,http://purl.obolibrary.org/obo/UBERON_0007574,apical epidermal cap +13.2412764,UBERON:0007652,http://purl.obolibrary.org/obo/UBERON_0007652,esophageal sphincter +13.2412764,UBERON:0009564,http://purl.obolibrary.org/obo/UBERON_0009564,distal limb integumentary appendage +13.2412764,UBERON:0010038,http://purl.obolibrary.org/obo/UBERON_0010038,fundic gastric gland +13.2412764,UBERON:0010386,http://purl.obolibrary.org/obo/UBERON_0010386,Peyer's patch follicle +13.2412764,UBERON:0010543,http://purl.obolibrary.org/obo/UBERON_0010543,acropodial skeleton +13.2412764,UBERON:0011817,http://purl.obolibrary.org/obo/UBERON_0011817,skin appendage placode +13.2412764,UBERON:0011860,http://purl.obolibrary.org/obo/UBERON_0011860,collection of collagen fibrils +13.2412764,UBERON:0014918,http://purl.obolibrary.org/obo/UBERON_0014918,retrosplenial granular cortex +13.2412764,UBERON:0019189,http://purl.obolibrary.org/obo/UBERON_0019189,carotid artery endothelium +13.2412764,UBERON:0034706,http://purl.obolibrary.org/obo/UBERON_0034706,proliferating neuroepithelium +13.2412764,UBERON:0034972,http://purl.obolibrary.org/obo/UBERON_0034972,jugular body +13.2412764,UBERON:2001675,http://purl.obolibrary.org/obo/UBERON_2001675,mesethmoid cornu +13.2412764,UBERON:3010014,http://purl.obolibrary.org/obo/UBERON_3010014,inguinal glands +13.265969,CHEBI:16189,http://purl.obolibrary.org/obo/CHEBI_16189,sulfate +13.265969,CHEBI:16227,http://purl.obolibrary.org/obo/CHEBI_16227,pyridine +13.265969,CHEBI:16827,http://purl.obolibrary.org/obo/CHEBI_16827,corticosterone +13.265969,CHEBI:22195,http://purl.obolibrary.org/obo/CHEBI_22195,acetyl-amino acid +13.265969,CHEBI:22198,http://purl.obolibrary.org/obo/CHEBI_22198,acetylcysteine +13.265969,CHEBI:2511,http://purl.obolibrary.org/obo/CHEBI_2511,agarose +13.265969,CHEBI:26788,http://purl.obolibrary.org/obo/CHEBI_26788,streptomycins +13.265969,CHEBI:26806,http://purl.obolibrary.org/obo/CHEBI_26806,succinate +13.265969,CHEBI:30031,http://purl.obolibrary.org/obo/CHEBI_30031,succinate(2-) +13.265969,CHEBI:30779,http://purl.obolibrary.org/obo/CHEBI_30779,succinate(1-) +13.265969,CHEBI:33457,http://purl.obolibrary.org/obo/CHEBI_33457,phosphorus oxoacid +13.265969,CHEBI:35679,http://purl.obolibrary.org/obo/CHEBI_35679,antilipemic drug +13.265969,CHEBI:35695,http://purl.obolibrary.org/obo/CHEBI_35695,dicarboxylic acid monoanion +13.265969,CHEBI:47704,http://purl.obolibrary.org/obo/CHEBI_47704,ammonium salt +13.265969,CHEBI:51381,http://purl.obolibrary.org/obo/CHEBI_51381,succinate salt +13.265969,CHEBI:51683,http://purl.obolibrary.org/obo/CHEBI_51683,methoxybenzenes +13.265969,CHEBI:61469,http://purl.obolibrary.org/obo/CHEBI_61469,polyanionic polymer +13.265969,CHEBI:88187,http://purl.obolibrary.org/obo/CHEBI_88187,penicillin allergen +13.265969,CL:0002068,http://purl.obolibrary.org/obo/CL_0002068,Purkinje myocyte +13.265969,CL:0002291,http://purl.obolibrary.org/obo/CL_0002291,X chromosome-bearing sperm cell +13.265969,CL:0010010,http://purl.obolibrary.org/obo/CL_0010010,cerebellar stellate cell +13.265969,CL:1001579,http://purl.obolibrary.org/obo/CL_1001579,cerebral cortex glial cell +13.265969,DRUGBANK:DB00725,http://purl.obolibrary.org/obo/DRUGBANK_DB00725,none +13.265969,DRUGBANK:DB00793,http://purl.obolibrary.org/obo/DRUGBANK_DB00793,none +13.265969,DRUGBANK:DB00896,http://purl.obolibrary.org/obo/DRUGBANK_DB00896,none +13.265969,DRUGBANK:DB00901,http://purl.obolibrary.org/obo/DRUGBANK_DB00901,none +13.265969,DRUGBANK:DB02045,http://purl.obolibrary.org/obo/DRUGBANK_DB02045,none +13.265969,DRUGBANK:DB02078,http://purl.obolibrary.org/obo/DRUGBANK_DB02078,none +13.265969,DRUGBANK:DB02969,http://purl.obolibrary.org/obo/DRUGBANK_DB02969,none +13.265969,DRUGBANK:DB03283,http://purl.obolibrary.org/obo/DRUGBANK_DB03283,none +13.265969,DRUGBANK:DB05036,http://purl.obolibrary.org/obo/DRUGBANK_DB05036,none +13.265969,DRUGBANK:DB05434,http://purl.obolibrary.org/obo/DRUGBANK_DB05434,none +13.265969,DRUGBANK:DB05507,http://purl.obolibrary.org/obo/DRUGBANK_DB05507,none +13.265969,DRUGBANK:DB05595,http://purl.obolibrary.org/obo/DRUGBANK_DB05595,none +13.265969,DRUGBANK:DB05656,http://purl.obolibrary.org/obo/DRUGBANK_DB05656,none +13.265969,DRUGBANK:DB05969,http://purl.obolibrary.org/obo/DRUGBANK_DB05969,none +13.265969,DRUGBANK:DB06082,http://purl.obolibrary.org/obo/DRUGBANK_DB06082,none +13.265969,DRUGBANK:DB07517,http://purl.obolibrary.org/obo/DRUGBANK_DB07517,none +13.265969,DRUGBANK:DB09240,http://purl.obolibrary.org/obo/DRUGBANK_DB09240,none +13.265969,DRUGBANK:DB11452,http://purl.obolibrary.org/obo/DRUGBANK_DB11452,none +13.265969,DRUGBANK:DB11611,http://purl.obolibrary.org/obo/DRUGBANK_DB11611,none +13.265969,DRUGBANK:DB11691,http://purl.obolibrary.org/obo/DRUGBANK_DB11691,none +13.265969,DRUGBANK:DB11702,http://purl.obolibrary.org/obo/DRUGBANK_DB11702,none +13.265969,DRUGBANK:DB11763,http://purl.obolibrary.org/obo/DRUGBANK_DB11763,none +13.265969,DRUGBANK:DB11778,http://purl.obolibrary.org/obo/DRUGBANK_DB11778,none +13.265969,DRUGBANK:DB11916,http://purl.obolibrary.org/obo/DRUGBANK_DB11916,none +13.265969,DRUGBANK:DB12088,http://purl.obolibrary.org/obo/DRUGBANK_DB12088,none +13.265969,DRUGBANK:DB12123,http://purl.obolibrary.org/obo/DRUGBANK_DB12123,none +13.265969,DRUGBANK:DB12225,http://purl.obolibrary.org/obo/DRUGBANK_DB12225,none +13.265969,DRUGBANK:DB12352,http://purl.obolibrary.org/obo/DRUGBANK_DB12352,none +13.265969,DRUGBANK:DB13247,http://purl.obolibrary.org/obo/DRUGBANK_DB13247,none +13.265969,DRUGBANK:DB13288,http://purl.obolibrary.org/obo/DRUGBANK_DB13288,none +13.265969,DRUGBANK:DB13809,http://purl.obolibrary.org/obo/DRUGBANK_DB13809,none +13.265969,DRUGBANK:DB14756,http://purl.obolibrary.org/obo/DRUGBANK_DB14756,none +13.265969,DRUGBANK:DB15313,http://purl.obolibrary.org/obo/DRUGBANK_DB15313,none +13.265969,DRUGBANK:DB15911,http://purl.obolibrary.org/obo/DRUGBANK_DB15911,none +13.265969,GO:0000121,http://purl.obolibrary.org/obo/GO_0000121,glycerol-1-phosphatase activity +13.265969,GO:0000346,http://purl.obolibrary.org/obo/GO_0000346,transcription export complex +13.265969,GO:0002125,http://purl.obolibrary.org/obo/GO_0002125,maternal aggressive behavior +13.265969,GO:0003881,http://purl.obolibrary.org/obo/GO_0003881,CDP-diacylglycerol-inositol 3-phosphatidyltransferase activity +13.265969,GO:0004034,http://purl.obolibrary.org/obo/GO_0004034,aldose 1-epimerase activity +13.265969,GO:0004414,http://purl.obolibrary.org/obo/GO_0004414,homoserine O-acetyltransferase activity +13.265969,GO:0004851,http://purl.obolibrary.org/obo/GO_0004851,uroporphyrin-III C-methyltransferase activity +13.265969,GO:0004852,http://purl.obolibrary.org/obo/GO_0004852,uroporphyrinogen-III synthase activity +13.265969,GO:0006222,http://purl.obolibrary.org/obo/GO_0006222,UMP biosynthetic process +13.265969,GO:0006469,http://purl.obolibrary.org/obo/GO_0006469,negative regulation of protein kinase activity +13.265969,GO:0006529,http://purl.obolibrary.org/obo/GO_0006529,asparagine biosynthetic process +13.265969,GO:0009157,http://purl.obolibrary.org/obo/GO_0009157,deoxyribonucleoside monophosphate biosynthetic process +13.265969,GO:0009710,http://purl.obolibrary.org/obo/GO_0009710,tropane alkaloid biosynthetic process +13.265969,GO:0010229,http://purl.obolibrary.org/obo/GO_0010229,inflorescence development +13.265969,GO:0010303,http://purl.obolibrary.org/obo/GO_0010303,limit dextrinase activity +13.265969,GO:0010861,http://purl.obolibrary.org/obo/GO_0010861,none +13.265969,GO:0014889,http://purl.obolibrary.org/obo/GO_0014889,muscle atrophy +13.265969,GO:0015753,http://purl.obolibrary.org/obo/GO_0015753,D-xylose transmembrane transport +13.265969,GO:0016524,http://purl.obolibrary.org/obo/GO_0016524,latrotoxin receptor activity +13.265969,GO:0016827,http://purl.obolibrary.org/obo/GO_0016827,"hydrolase activity, acting on acid carbon-phosphorus bonds" +13.265969,GO:0018850,http://purl.obolibrary.org/obo/GO_0018850,chloromuconate cycloisomerase activity +13.265969,GO:0032048,http://purl.obolibrary.org/obo/GO_0032048,cardiolipin metabolic process +13.265969,GO:0032545,http://purl.obolibrary.org/obo/GO_0032545,CURI complex +13.265969,GO:0033012,http://purl.obolibrary.org/obo/GO_0033012,porosome +13.265969,GO:0034595,http://purl.obolibrary.org/obo/GO_0034595,phosphatidylinositol phosphate 5-phosphatase activity +13.265969,GO:0045134,http://purl.obolibrary.org/obo/GO_0045134,uridine-diphosphatase activity +13.265969,GO:0045923,http://purl.obolibrary.org/obo/GO_0045923,positive regulation of fatty acid metabolic process +13.265969,GO:0046144,http://purl.obolibrary.org/obo/GO_0046144,D-alanine family amino acid metabolic process +13.265969,GO:0048438,http://purl.obolibrary.org/obo/GO_0048438,floral whorl development +13.265969,GO:0050354,http://purl.obolibrary.org/obo/GO_0050354,triokinase activity +13.265969,GO:0051723,http://purl.obolibrary.org/obo/GO_0051723,protein methylesterase activity +13.265969,GO:0052816,http://purl.obolibrary.org/obo/GO_0052816,long-chain acyl-CoA hydrolase activity +13.265969,GO:0060300,http://purl.obolibrary.org/obo/GO_0060300,regulation of cytokine activity +13.265969,GO:0061195,http://purl.obolibrary.org/obo/GO_0061195,taste bud formation +13.265969,GO:0061548,http://purl.obolibrary.org/obo/GO_0061548,ganglion development +13.265969,GO:0070547,http://purl.obolibrary.org/obo/GO_0070547,L-tyrosine aminotransferase activity +13.265969,GO:0072613,http://purl.obolibrary.org/obo/GO_0072613,none +13.265969,GO:0090153,http://purl.obolibrary.org/obo/GO_0090153,regulation of sphingolipid biosynthetic process +13.265969,GO:0098582,http://purl.obolibrary.org/obo/GO_0098582,innate vocalization behavior +13.265969,GO:1901323,http://purl.obolibrary.org/obo/GO_1901323,response to erythromycin +13.265969,GO:1903709,http://purl.obolibrary.org/obo/GO_1903709,uterine gland development +13.265969,GO:1904645,http://purl.obolibrary.org/obo/GO_1904645,response to amyloid-beta +13.265969,GO:1905038,http://purl.obolibrary.org/obo/GO_1905038,regulation of membrane lipid metabolic process +13.265969,HP:0000745,http://purl.obolibrary.org/obo/HP_0000745,Diminished motivation +13.265969,HP:0001695,http://purl.obolibrary.org/obo/HP_0001695,Cardiac arrest +13.265969,HP:0002858,http://purl.obolibrary.org/obo/HP_0002858,Meningioma +13.265969,HP:0007018,http://purl.obolibrary.org/obo/HP_0007018,Attention deficit hyperactivity disorder +13.265969,HP:0012174,http://purl.obolibrary.org/obo/HP_0012174,Glioblastoma multiforme +13.265969,HP:0025287,http://purl.obolibrary.org/obo/HP_0025287,Axial +13.265969,MONDO:0000136,http://purl.obolibrary.org/obo/MONDO_0000136,keratosis follicularis spinulosa decalvans +13.265969,MONDO:0000463,http://purl.obolibrary.org/obo/MONDO_0000463,Ochoa syndrome +13.265969,MONDO:0001268,http://purl.obolibrary.org/obo/MONDO_0001268,gingival recession +13.265969,MONDO:0001387,http://purl.obolibrary.org/obo/MONDO_0001387,penile sarcoma +13.265969,MONDO:0002224,http://purl.obolibrary.org/obo/MONDO_0002224,malignant ovarian cyst +13.265969,MONDO:0002703,http://purl.obolibrary.org/obo/MONDO_0002703,appendix mucinous cystadenocarcinoma +13.265969,MONDO:0003246,http://purl.obolibrary.org/obo/MONDO_0003246,sclerosing hepatic carcinoma +13.265969,MONDO:0003450,http://purl.obolibrary.org/obo/MONDO_0003450,eccrine papillary adenoma +13.265969,MONDO:0006351,http://purl.obolibrary.org/obo/MONDO_0006351,parachordoma +13.265969,MONDO:0006949,http://purl.obolibrary.org/obo/MONDO_0006949,retinal drusen +13.265969,MONDO:0007471,http://purl.obolibrary.org/obo/MONDO_0007471,Doyne honeycomb retinal dystrophy +13.265969,MONDO:0007561,http://purl.obolibrary.org/obo/MONDO_0007561,multiple epiphyseal dysplasia type 1 +13.265969,MONDO:0007740,http://purl.obolibrary.org/obo/MONDO_0007740,Wagner disease +13.265969,MONDO:0007946,http://purl.obolibrary.org/obo/MONDO_0007946,jaw-winking syndrome +13.265969,MONDO:0008763,http://purl.obolibrary.org/obo/MONDO_0008763,Alstrom syndrome +13.265969,MONDO:0008888,http://purl.obolibrary.org/obo/MONDO_0008888,Williams-Campbell syndrome +13.265969,MONDO:0009294,http://purl.obolibrary.org/obo/MONDO_0009294,glycogen storage disease VI +13.265969,MONDO:0009378,http://purl.obolibrary.org/obo/MONDO_0009378,hyper-beta-alaninemia +13.265969,MONDO:0009495,http://purl.obolibrary.org/obo/MONDO_0009495,Keutel syndrome +13.265969,MONDO:0010302,http://purl.obolibrary.org/obo/MONDO_0010302,Ito hypomelanosis +13.265969,MONDO:0011510,http://purl.obolibrary.org/obo/MONDO_0011510,Bohring-Opitz syndrome +13.265969,MONDO:0012996,http://purl.obolibrary.org/obo/MONDO_0012996,AGAT deficiency +13.265969,MONDO:0014912,http://purl.obolibrary.org/obo/MONDO_0014912,infantile-onset periodic fever-panniculitis-dermatosis syndrome +13.265969,MONDO:0016095,http://purl.obolibrary.org/obo/MONDO_0016095,vaginal rhabdomyosarcoma +13.265969,MONDO:0016844,http://purl.obolibrary.org/obo/MONDO_0016844,trisomy 20p +13.265969,MONDO:0016938,http://purl.obolibrary.org/obo/MONDO_0016938,partial trisomy of chromosome 20 +13.265969,MONDO:0019359,http://purl.obolibrary.org/obo/MONDO_0019359,Rocky mountain spotted fever +13.265969,MONDO:0019795,http://purl.obolibrary.org/obo/MONDO_0019795,acalvaria +13.265969,MONDO:0020245,http://purl.obolibrary.org/obo/MONDO_0020245,disease predisposing to age-related macular degeneration +13.265969,MONDO:0020370,http://purl.obolibrary.org/obo/MONDO_0020370,Cogan-Reese syndrome +13.265969,MONDO:0020797,http://purl.obolibrary.org/obo/MONDO_0020797,decompression sickness +13.265969,MONDO:0021133,http://purl.obolibrary.org/obo/MONDO_0021133,acquired factor XIII deficiency +13.265969,MONDO:0021523,http://purl.obolibrary.org/obo/MONDO_0021523,benign neoplasm of pharynx +13.265969,NCBITaxon:10490,http://purl.obolibrary.org/obo/NCBITaxon_10490,none +13.265969,NCBITaxon:10662,http://purl.obolibrary.org/obo/NCBITaxon_10662,none +13.265969,NCBITaxon:12049,http://purl.obolibrary.org/obo/NCBITaxon_12049,none +13.265969,NCBITaxon:12288,http://purl.obolibrary.org/obo/NCBITaxon_12288,none +13.265969,NCBITaxon:12466,http://purl.obolibrary.org/obo/NCBITaxon_12466,none +13.265969,NCBITaxon:12851,http://purl.obolibrary.org/obo/NCBITaxon_12851,none +13.265969,NCBITaxon:141832,http://purl.obolibrary.org/obo/NCBITaxon_141832,none +13.265969,NCBITaxon:1678,http://purl.obolibrary.org/obo/NCBITaxon_1678,Bifidobacterium +13.265969,NCBITaxon:171637,http://purl.obolibrary.org/obo/NCBITaxon_171637,Amygdaloideae +13.265969,NCBITaxon:176651,http://purl.obolibrary.org/obo/NCBITaxon_176651,none +13.265969,NCBITaxon:1933297,http://purl.obolibrary.org/obo/NCBITaxon_1933297,none +13.265969,NCBITaxon:1980412,http://purl.obolibrary.org/obo/NCBITaxon_1980412,none +13.265969,NCBITaxon:2692248,http://purl.obolibrary.org/obo/NCBITaxon_2692248,none +13.265969,NCBITaxon:2705894,http://purl.obolibrary.org/obo/NCBITaxon_2705894,none +13.265969,NCBITaxon:28025,http://purl.obolibrary.org/obo/NCBITaxon_28025,none +13.265969,NCBITaxon:28375,http://purl.obolibrary.org/obo/NCBITaxon_28375,none +13.265969,NCBITaxon:33634,http://purl.obolibrary.org/obo/NCBITaxon_33634,Stramenopiles +13.265969,NCBITaxon:364270,http://purl.obolibrary.org/obo/NCBITaxon_364270,none +13.265969,NCBITaxon:4036,http://purl.obolibrary.org/obo/NCBITaxon_4036,none +13.265969,NCBITaxon:40366,http://purl.obolibrary.org/obo/NCBITaxon_40366,none +13.265969,NCBITaxon:4056,http://purl.obolibrary.org/obo/NCBITaxon_4056,none +13.265969,NCBITaxon:43130,http://purl.obolibrary.org/obo/NCBITaxon_43130,none +13.265969,NCBITaxon:45080,http://purl.obolibrary.org/obo/NCBITaxon_45080,none +13.265969,NCBITaxon:48302,http://purl.obolibrary.org/obo/NCBITaxon_48302,none +13.265969,NCBITaxon:57283,http://purl.obolibrary.org/obo/NCBITaxon_57283,none +13.265969,NCBITaxon:60524,http://purl.obolibrary.org/obo/NCBITaxon_60524,none +13.265969,NCBITaxon:60542,http://purl.obolibrary.org/obo/NCBITaxon_60542,none +13.265969,NCBITaxon:7992,http://purl.obolibrary.org/obo/NCBITaxon_7992,none +13.265969,NCBITaxon:83163,http://purl.obolibrary.org/obo/NCBITaxon_83163,none +13.265969,NCBITaxon:84104,http://purl.obolibrary.org/obo/NCBITaxon_84104,none +13.265969,PR:000002077,http://purl.obolibrary.org/obo/PR_000002077,potassium channel subfamily K member 6 +13.265969,PR:000003181,http://purl.obolibrary.org/obo/PR_000003181,SHC-transforming protein 3 +13.265969,PR:000003607,http://purl.obolibrary.org/obo/PR_000003607,"Arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 1" +13.265969,PR:000003692,http://purl.obolibrary.org/obo/PR_000003692,actin-related protein 10 +13.265969,PR:000003736,http://purl.obolibrary.org/obo/PR_000003736,a disintegrin and metalloproteinase with thrombospondin motifs 8 +13.265969,PR:000003759,http://purl.obolibrary.org/obo/PR_000003759,adenylate cyclase type 8 +13.265969,PR:000003940,http://purl.obolibrary.org/obo/PR_000003940,"dolichyl-P-Man:Man(7)GlcNAc(2)-PP-dolichyl-alpha-1,6-mannosyltransferase" +13.265969,PR:000004032,http://purl.obolibrary.org/obo/PR_000004032,angiopoietin-related protein 7 +13.265969,PR:000004238,http://purl.obolibrary.org/obo/PR_000004238,Rho GTPase-activating protein 5 +13.265969,PR:000004722,http://purl.obolibrary.org/obo/PR_000004722,bestrophin-2 +13.265969,PR:000005055,http://purl.obolibrary.org/obo/PR_000005055,CASP8-associated protein 2 +13.265969,PR:000005428,http://purl.obolibrary.org/obo/PR_000005428,choline/ethanolamine kinase +13.265969,PR:000005892,http://purl.obolibrary.org/obo/PR_000005892,rootletin +13.265969,PR:000006288,http://purl.obolibrary.org/obo/PR_000006288,DAZ-associated protein 1 +13.265969,PR:000006847,http://purl.obolibrary.org/obo/PR_000006847,none +13.265969,PR:000006861,http://purl.obolibrary.org/obo/PR_000006861,ELL-associated factor 1 +13.265969,PR:000007207,http://purl.obolibrary.org/obo/PR_000007207,epithelial splicing regulatory protein 2 +13.265969,PR:000007392,http://purl.obolibrary.org/obo/PR_000007392,F-box DNA helicase 1 +13.265969,PR:000007418,http://purl.obolibrary.org/obo/PR_000007418,F-box only protein 6 +13.265969,PR:000007534,http://purl.obolibrary.org/obo/PR_000007534,peptidyl-prolyl cis-trans isomerase FKBP14 +13.265969,PR:000007632,http://purl.obolibrary.org/obo/PR_000007632,forkhead box protein K2 +13.265969,PR:000007885,http://purl.obolibrary.org/obo/PR_000007885,2-amino-3-ketobutyrate coenzyme A ligase +13.265969,PR:000007894,http://purl.obolibrary.org/obo/PR_000007894,GTP cyclohydrolase 1 feedback regulatory protein +13.265969,PR:000008023,http://purl.obolibrary.org/obo/PR_000008023,gliomedin +13.265969,PR:000008221,http://purl.obolibrary.org/obo/PR_000008221,protein TAMALIN +13.265969,PR:000008577,http://purl.obolibrary.org/obo/PR_000008577,histone H1.3 +13.265969,PR:000008614,http://purl.obolibrary.org/obo/PR_000008614,"MHC class I histocompatibility antigen, alpha chain E" +13.265969,PR:000008648,http://purl.obolibrary.org/obo/PR_000008648,homeobox protein HMX3 +13.265969,PR:000009093,http://purl.obolibrary.org/obo/PR_000009093,inositol-pentakisphosphate 2-kinase +13.265969,PR:000009251,http://purl.obolibrary.org/obo/PR_000009251,voltage-gated potassium channel subunit beta-1 +13.265969,PR:000009462,http://purl.obolibrary.org/obo/PR_000009462,"keratin, type I cytoskeletal 23" +13.265969,PR:000010013,http://purl.obolibrary.org/obo/PR_000010013,lysozyme C +13.265969,PR:000010766,http://purl.obolibrary.org/obo/PR_000010766,mucin-21 +13.265969,PR:000010831,http://purl.obolibrary.org/obo/PR_000010831,myosin-7B +13.265969,PR:000010951,http://purl.obolibrary.org/obo/PR_000010951,nascent polypeptide-associated complex subunit alpha-2 +13.265969,PR:000011186,http://purl.obolibrary.org/obo/PR_000011186,transcriptional repressor NF-X1 +13.265969,PR:000011437,http://purl.obolibrary.org/obo/PR_000011437,neurensin-1 +13.265969,PR:000012036,http://purl.obolibrary.org/obo/PR_000012036,membralin +13.265969,PR:000012236,http://purl.obolibrary.org/obo/PR_000012236,polyadenylate-binding protein-interacting protein 1 +13.265969,PR:000012402,http://purl.obolibrary.org/obo/PR_000012402,protocadherin gamma-B4 +13.265969,PR:000013258,http://purl.obolibrary.org/obo/PR_000013258,protein arginine N-methyltransferase 8 +13.265969,PR:000013337,http://purl.obolibrary.org/obo/PR_000013337,"PTPN13-like protein, Y-linked" +13.265969,PR:000013409,http://purl.obolibrary.org/obo/PR_000013409,proline-serine-threonine phosphatase-interacting protein 2 +13.265969,PR:000013473,http://purl.obolibrary.org/obo/PR_000013473,receptor-type tyrosine-protein phosphatase mu +13.265969,PR:000013601,http://purl.obolibrary.org/obo/PR_000013601,Ras-related protein Rab-27B +13.265969,PR:000013855,http://purl.obolibrary.org/obo/PR_000013855,retinol dehydrogenase 8 +13.265969,PR:000014140,http://purl.obolibrary.org/obo/PR_000014140,E3 ubiquitin-protein ligase RNF6 +13.265969,PR:000014231,http://purl.obolibrary.org/obo/PR_000014231,60S ribosomal protein L6 +13.265969,PR:000014453,http://purl.obolibrary.org/obo/PR_000014453,serine/threonine-protein phosphatase 6 regulatory subunit 3 +13.265969,PR:000014480,http://purl.obolibrary.org/obo/PR_000014480,lathosterol oxidase +13.265969,PR:000014622,http://purl.obolibrary.org/obo/PR_000014622,semaphorin-4A +13.265969,PR:000014725,http://purl.obolibrary.org/obo/PR_000014725,histone-lysine N-methyltransferase SETDB2 +13.265969,PR:000014817,http://purl.obolibrary.org/obo/PR_000014817,SH3 domain-binding glutamic acid-rich-like protein 3 +13.265969,PR:000014830,http://purl.obolibrary.org/obo/PR_000014830,SH3 and PX domain-containing protein 2B +13.265969,PR:000014937,http://purl.obolibrary.org/obo/PR_000014937,solute carrier family 13 member 5 +13.265969,PR:000015142,http://purl.obolibrary.org/obo/PR_000015142,large neutral amino acids transporter small subunit 4 +13.265969,PR:000015202,http://purl.obolibrary.org/obo/PR_000015202,Y+L amino acid transporter 2 +13.265969,PR:000015769,http://purl.obolibrary.org/obo/PR_000015769,storkhead-box protein 1 +13.265969,PR:000015883,http://purl.obolibrary.org/obo/PR_000015883,synaptojanin-2 +13.265969,PR:000016066,http://purl.obolibrary.org/obo/PR_000016066,taste receptor type 2 member 14 +13.265969,PR:000016350,http://purl.obolibrary.org/obo/PR_000016350,mitochondrial import inner membrane translocase subunit Tim8 B +13.265969,PR:000016378,http://purl.obolibrary.org/obo/PR_000016378,serine/threonine-protein kinase tousled-like 2 +13.265969,PR:000016595,http://purl.obolibrary.org/obo/PR_000016595,protein-tyrosine sulfotransferase 2 +13.265969,PR:000016929,http://purl.obolibrary.org/obo/PR_000016929,none +13.265969,PR:000022287,http://purl.obolibrary.org/obo/PR_000022287,none +13.265969,PR:000022343,http://purl.obolibrary.org/obo/PR_000022343,none +13.265969,PR:000022360,http://purl.obolibrary.org/obo/PR_000022360,none +13.265969,PR:000022685,http://purl.obolibrary.org/obo/PR_000022685,none +13.265969,PR:000022731,http://purl.obolibrary.org/obo/PR_000022731,none +13.265969,PR:000023093,http://purl.obolibrary.org/obo/PR_000023093,none +13.265969,PR:000023143,http://purl.obolibrary.org/obo/PR_000023143,none +13.265969,PR:000023655,http://purl.obolibrary.org/obo/PR_000023655,none +13.265969,PR:000023846,http://purl.obolibrary.org/obo/PR_000023846,DNA-directed RNA polymerase subunit beta' +13.265969,PR:000023857,http://purl.obolibrary.org/obo/PR_000023857,none +13.265969,PR:000025580,http://purl.obolibrary.org/obo/PR_000025580,C99 +13.265969,PR:000028333,http://purl.obolibrary.org/obo/PR_000028333,none +13.265969,PR:000029302,http://purl.obolibrary.org/obo/PR_000029302,bromodomain-containing protein 9 +13.265969,PR:000029540,http://purl.obolibrary.org/obo/PR_000029540,probable E3 ubiquitin-protein ligase HERC1 +13.265969,PR:000029925,http://purl.obolibrary.org/obo/PR_000029925,none +13.265969,PR:000030413,http://purl.obolibrary.org/obo/PR_000030413,cysteine-rich hydrophobic domain-containing protein 1 +13.265969,PR:000030690,http://purl.obolibrary.org/obo/PR_000030690,transmembrane protein 8B +13.265969,PR:000030953,http://purl.obolibrary.org/obo/PR_000030953,HORMA domain-containing protein 1 +13.265969,PR:000031616,http://purl.obolibrary.org/obo/PR_000031616,sushi domain-containing protein 2 +13.265969,PR:000031727,http://purl.obolibrary.org/obo/PR_000031727,transcription factor Sp9 +13.265969,PR:000032038,http://purl.obolibrary.org/obo/PR_000032038,sigma intracellular receptor 2 +13.265969,PR:000032119,http://purl.obolibrary.org/obo/PR_000032119,solute carrier family 22 member 13 +13.265969,PR:000032121,http://purl.obolibrary.org/obo/PR_000032121,GATOR complex protein NPRL3 +13.265969,PR:000032820,http://purl.obolibrary.org/obo/PR_000032820,TraB domain-containing protein +13.265969,PR:000035566,http://purl.obolibrary.org/obo/PR_000035566,BUB1:BUB3 complex +13.265969,PR:000037418,http://purl.obolibrary.org/obo/PR_000037418,none +13.265969,PR:O23680,http://purl.obolibrary.org/obo/PR_O23680,none +13.265969,PR:O65351,http://purl.obolibrary.org/obo/PR_O65351,none +13.265969,PR:O73737,http://purl.obolibrary.org/obo/PR_O73737,none +13.265969,PR:O88453,http://purl.obolibrary.org/obo/PR_O88453,none +13.265969,PR:P0DMC2,http://purl.obolibrary.org/obo/PR_P0DMC2,none +13.265969,PR:P0DMC3,http://purl.obolibrary.org/obo/PR_P0DMC3,apelin receptor early endogenous ligand (human) +13.265969,PR:P17927,http://purl.obolibrary.org/obo/PR_P17927,complement receptor type 1 (human) +13.265969,PR:P23201,http://purl.obolibrary.org/obo/PR_P23201,none +13.265969,PR:P24636,http://purl.obolibrary.org/obo/PR_P24636,none +13.265969,PR:P32571,http://purl.obolibrary.org/obo/PR_P32571,none +13.265969,PR:P38221,http://purl.obolibrary.org/obo/PR_P38221,none +13.265969,PR:P40047,http://purl.obolibrary.org/obo/PR_P40047,none +13.265969,PR:P43292,http://purl.obolibrary.org/obo/PR_P43292,none +13.265969,PR:P47735,http://purl.obolibrary.org/obo/PR_P47735,none +13.265969,PR:Q12038,http://purl.obolibrary.org/obo/PR_Q12038,none +13.265969,PR:Q37145,http://purl.obolibrary.org/obo/PR_Q37145,none +13.265969,PR:Q38951,http://purl.obolibrary.org/obo/PR_Q38951,none +13.265969,PR:Q5RGQ2,http://purl.obolibrary.org/obo/PR_Q5RGQ2,none +13.265969,PR:Q8L940,http://purl.obolibrary.org/obo/PR_Q8L940,none +13.265969,PR:Q94231,http://purl.obolibrary.org/obo/PR_Q94231,none +13.265969,PR:Q949T8,http://purl.obolibrary.org/obo/PR_Q949T8,none +13.265969,PR:Q9R224,http://purl.obolibrary.org/obo/PR_Q9R224,none +13.265969,PR:Q9SJH0,http://purl.obolibrary.org/obo/PR_Q9SJH0,none +13.265969,PR:Q9SUC3,http://purl.obolibrary.org/obo/PR_Q9SUC3,none +13.265969,PR:Q9US26,http://purl.obolibrary.org/obo/PR_Q9US26,none +13.265969,PR:Q9XZS8,http://purl.obolibrary.org/obo/PR_Q9XZS8,none +13.265969,PR:Q9ZT82,http://purl.obolibrary.org/obo/PR_Q9ZT82,none +13.265969,PR:Q9ZUU0,http://purl.obolibrary.org/obo/PR_Q9ZUU0,none +13.265969,SO:0000120,http://purl.obolibrary.org/obo/SO_0000120,protein_coding_primary_transcript +13.265969,SO:0001616,http://purl.obolibrary.org/obo/SO_0001616,polypeptide_fusion +13.265969,SO:0002073,http://purl.obolibrary.org/obo/SO_0002073,no_sequence_alteration +13.265969,UBERON:0000442,http://purl.obolibrary.org/obo/UBERON_0000442,right testicular vein +13.265969,UBERON:0001330,http://purl.obolibrary.org/obo/UBERON_0001330,pampiniform plexus +13.265969,UBERON:0001622,http://purl.obolibrary.org/obo/UBERON_0001622,lacrimal artery +13.265969,UBERON:0001705,http://purl.obolibrary.org/obo/UBERON_0001705,nail +13.265969,UBERON:0002900,http://purl.obolibrary.org/obo/UBERON_0002900,transverse occipital sulcus +13.265969,UBERON:0004602,http://purl.obolibrary.org/obo/UBERON_0004602,rib 2 +13.265969,UBERON:0004688,http://purl.obolibrary.org/obo/UBERON_0004688,costo-cervical trunk +13.265969,UBERON:0004705,http://purl.obolibrary.org/obo/UBERON_0004705,fenestra +13.265969,UBERON:0005411,http://purl.obolibrary.org/obo/UBERON_0005411,bony otic capsule +13.265969,UBERON:0006081,http://purl.obolibrary.org/obo/UBERON_0006081,fundus of gallbladder +13.265969,UBERON:0006595,http://purl.obolibrary.org/obo/UBERON_0006595,presumptive endoderm +13.265969,UBERON:0006904,http://purl.obolibrary.org/obo/UBERON_0006904,head mesenchyme from mesoderm +13.265969,UBERON:0009639,http://purl.obolibrary.org/obo/UBERON_0009639,body of sphenoid +13.265969,UBERON:0011200,http://purl.obolibrary.org/obo/UBERON_0011200,sacrococcygeal symphysis +13.265969,UBERON:0011892,http://purl.obolibrary.org/obo/UBERON_0011892,anterior uvea +13.265969,UBERON:0012321,http://purl.obolibrary.org/obo/UBERON_0012321,deep cervical artery +13.265969,UBERON:0012322,http://purl.obolibrary.org/obo/UBERON_0012322,ascending cervical artery +13.265969,UBERON:0014548,http://purl.obolibrary.org/obo/UBERON_0014548,pyramidal layer of CA1 +13.265969,UBERON:0015430,http://purl.obolibrary.org/obo/UBERON_0015430,levator auris longus muscle +13.265969,UBERON:0015867,http://purl.obolibrary.org/obo/UBERON_0015867,cystic lymph node +13.265969,UBERON:0018145,http://purl.obolibrary.org/obo/UBERON_0018145,lumbar rib +13.265969,UBERON:2000202,http://purl.obolibrary.org/obo/UBERON_2000202,efferent portion of pharyngeal arch artery +13.2912868,CHEBI:134361,http://purl.obolibrary.org/obo/CHEBI_134361,allylic alcohol +13.2912868,CHEBI:17351,http://purl.obolibrary.org/obo/CHEBI_17351,linoleic acid +13.2912868,CHEBI:25179,http://purl.obolibrary.org/obo/CHEBI_25179,melanins +13.2912868,CHEBI:26436,http://purl.obolibrary.org/obo/CHEBI_26436,pyrimidine 2'-deoxyribonucleotide +13.2912868,CHEBI:29281,http://purl.obolibrary.org/obo/CHEBI_29281,alkyl sulfate +13.2912868,CHEBI:35315,http://purl.obolibrary.org/obo/CHEBI_35315,deoxy hexoside +13.2912868,CHEBI:35819,http://purl.obolibrary.org/obo/CHEBI_35819,branched-chain fatty acid +13.2912868,CHEBI:36303,http://purl.obolibrary.org/obo/CHEBI_36303,chlorin +13.2912868,CHEBI:4027,http://purl.obolibrary.org/obo/CHEBI_4027,cyclophosphamide +13.2912868,CHEBI:52535,http://purl.obolibrary.org/obo/CHEBI_52535,dihydroporphyrin +13.2912868,CHEBI:59727,http://purl.obolibrary.org/obo/CHEBI_59727,vasopressin receptor agonist +13.2912868,CHEBI:6887,http://purl.obolibrary.org/obo/CHEBI_6887,methylphenidate +13.2912868,CHEBI:76224,http://purl.obolibrary.org/obo/CHEBI_76224,aromatic ketone +13.2912868,CHEBI:76998,http://purl.obolibrary.org/obo/CHEBI_76998,aryl hydrocarbon receptor antagonist +13.2912868,CHEBI:8984,http://purl.obolibrary.org/obo/CHEBI_8984,sodium dodecyl sulfate +13.2912868,CL:0000958,http://purl.obolibrary.org/obo/CL_0000958,T1 B cell +13.2912868,CL:1001516,http://purl.obolibrary.org/obo/CL_1001516,intestinal enteroendocrine cell +13.2912868,DRUGBANK:DB01545,http://purl.obolibrary.org/obo/DRUGBANK_DB01545,none +13.2912868,DRUGBANK:DB01911,http://purl.obolibrary.org/obo/DRUGBANK_DB01911,none +13.2912868,DRUGBANK:DB02274,http://purl.obolibrary.org/obo/DRUGBANK_DB02274,none +13.2912868,DRUGBANK:DB03266,http://purl.obolibrary.org/obo/DRUGBANK_DB03266,none +13.2912868,DRUGBANK:DB03956,http://purl.obolibrary.org/obo/DRUGBANK_DB03956,none +13.2912868,DRUGBANK:DB04445,http://purl.obolibrary.org/obo/DRUGBANK_DB04445,none +13.2912868,DRUGBANK:DB05019,http://purl.obolibrary.org/obo/DRUGBANK_DB05019,none +13.2912868,DRUGBANK:DB05097,http://purl.obolibrary.org/obo/DRUGBANK_DB05097,none +13.2912868,DRUGBANK:DB05624,http://purl.obolibrary.org/obo/DRUGBANK_DB05624,none +13.2912868,DRUGBANK:DB06721,http://purl.obolibrary.org/obo/DRUGBANK_DB06721,none +13.2912868,DRUGBANK:DB08876,http://purl.obolibrary.org/obo/DRUGBANK_DB08876,none +13.2912868,DRUGBANK:DB10526,http://purl.obolibrary.org/obo/DRUGBANK_DB10526,none +13.2912868,DRUGBANK:DB10655,http://purl.obolibrary.org/obo/DRUGBANK_DB10655,none +13.2912868,DRUGBANK:DB10939,http://purl.obolibrary.org/obo/DRUGBANK_DB10939,none +13.2912868,DRUGBANK:DB11577,http://purl.obolibrary.org/obo/DRUGBANK_DB11577,none +13.2912868,DRUGBANK:DB11777,http://purl.obolibrary.org/obo/DRUGBANK_DB11777,none +13.2912868,DRUGBANK:DB11840,http://purl.obolibrary.org/obo/DRUGBANK_DB11840,none +13.2912868,DRUGBANK:DB11864,http://purl.obolibrary.org/obo/DRUGBANK_DB11864,none +13.2912868,DRUGBANK:DB11918,http://purl.obolibrary.org/obo/DRUGBANK_DB11918,none +13.2912868,DRUGBANK:DB12015,http://purl.obolibrary.org/obo/DRUGBANK_DB12015,none +13.2912868,DRUGBANK:DB12119,http://purl.obolibrary.org/obo/DRUGBANK_DB12119,none +13.2912868,DRUGBANK:DB12147,http://purl.obolibrary.org/obo/DRUGBANK_DB12147,none +13.2912868,DRUGBANK:DB12270,http://purl.obolibrary.org/obo/DRUGBANK_DB12270,none +13.2912868,DRUGBANK:DB12321,http://purl.obolibrary.org/obo/DRUGBANK_DB12321,none +13.2912868,DRUGBANK:DB12426,http://purl.obolibrary.org/obo/DRUGBANK_DB12426,none +13.2912868,DRUGBANK:DB12459,http://purl.obolibrary.org/obo/DRUGBANK_DB12459,none +13.2912868,DRUGBANK:DB13061,http://purl.obolibrary.org/obo/DRUGBANK_DB13061,none +13.2912868,DRUGBANK:DB13203,http://purl.obolibrary.org/obo/DRUGBANK_DB13203,none +13.2912868,DRUGBANK:DB13248,http://purl.obolibrary.org/obo/DRUGBANK_DB13248,none +13.2912868,DRUGBANK:DB13317,http://purl.obolibrary.org/obo/DRUGBANK_DB13317,none +13.2912868,DRUGBANK:DB13338,http://purl.obolibrary.org/obo/DRUGBANK_DB13338,none +13.2912868,DRUGBANK:DB13378,http://purl.obolibrary.org/obo/DRUGBANK_DB13378,none +13.2912868,DRUGBANK:DB13386,http://purl.obolibrary.org/obo/DRUGBANK_DB13386,none +13.2912868,DRUGBANK:DB13835,http://purl.obolibrary.org/obo/DRUGBANK_DB13835,none +13.2912868,DRUGBANK:DB13962,http://purl.obolibrary.org/obo/DRUGBANK_DB13962,none +13.2912868,DRUGBANK:DB14373,http://purl.obolibrary.org/obo/DRUGBANK_DB14373,none +13.2912868,DRUGBANK:DB14853,http://purl.obolibrary.org/obo/DRUGBANK_DB14853,none +13.2912868,DRUGBANK:DB15134,http://purl.obolibrary.org/obo/DRUGBANK_DB15134,none +13.2912868,GO:0000090,http://purl.obolibrary.org/obo/GO_0000090,mitotic anaphase +13.2912868,GO:0000295,http://purl.obolibrary.org/obo/GO_0000295,adenine nucleotide transmembrane transporter activity +13.2912868,GO:0001517,http://purl.obolibrary.org/obo/GO_0001517,N-acetylglucosamine 6-O-sulfotransferase activity +13.2912868,GO:0003309,http://purl.obolibrary.org/obo/GO_0003309,type B pancreatic cell differentiation +13.2912868,GO:0003904,http://purl.obolibrary.org/obo/GO_0003904,deoxyribodipyrimidine photo-lyase activity +13.2912868,GO:0004337,http://purl.obolibrary.org/obo/GO_0004337,geranyltranstransferase activity +13.2912868,GO:0004649,http://purl.obolibrary.org/obo/GO_0004649,poly(ADP-ribose) glycohydrolase activity +13.2912868,GO:0004779,http://purl.obolibrary.org/obo/GO_0004779,sulfate adenylyltransferase activity +13.2912868,GO:0004834,http://purl.obolibrary.org/obo/GO_0004834,tryptophan synthase activity +13.2912868,GO:0005346,http://purl.obolibrary.org/obo/GO_0005346,purine ribonucleotide transmembrane transporter activity +13.2912868,GO:0005663,http://purl.obolibrary.org/obo/GO_0005663,DNA replication factor C complex +13.2912868,GO:0006751,http://purl.obolibrary.org/obo/GO_0006751,glutathione catabolic process +13.2912868,GO:0006903,http://purl.obolibrary.org/obo/GO_0006903,vesicle targeting +13.2912868,GO:0008105,http://purl.obolibrary.org/obo/GO_0008105,none +13.2912868,GO:0008396,http://purl.obolibrary.org/obo/GO_0008396,oxysterol 7-alpha-hydroxylase activity +13.2912868,GO:0008537,http://purl.obolibrary.org/obo/GO_0008537,proteasome activator complex +13.2912868,GO:0009811,http://purl.obolibrary.org/obo/GO_0009811,stilbene biosynthetic process +13.2912868,GO:0009878,http://purl.obolibrary.org/obo/GO_0009878,none +13.2912868,GO:0010411,http://purl.obolibrary.org/obo/GO_0010411,xyloglucan metabolic process +13.2912868,GO:0010528,http://purl.obolibrary.org/obo/GO_0010528,regulation of transposition +13.2912868,GO:0014005,http://purl.obolibrary.org/obo/GO_0014005,microglia development +13.2912868,GO:0015216,http://purl.obolibrary.org/obo/GO_0015216,purine nucleotide transmembrane transporter activity +13.2912868,GO:0015779,http://purl.obolibrary.org/obo/GO_0015779,glucuronoside transport +13.2912868,GO:0019152,http://purl.obolibrary.org/obo/GO_0019152,acetoin dehydrogenase activity +13.2912868,GO:0030042,http://purl.obolibrary.org/obo/GO_0030042,actin filament depolymerization +13.2912868,GO:0031113,http://purl.obolibrary.org/obo/GO_0031113,regulation of microtubule polymerization +13.2912868,GO:0032475,http://purl.obolibrary.org/obo/GO_0032475,otolith formation +13.2912868,GO:0034101,http://purl.obolibrary.org/obo/GO_0034101,erythrocyte homeostasis +13.2912868,GO:0034608,http://purl.obolibrary.org/obo/GO_0034608,vulval location +13.2912868,GO:0035712,http://purl.obolibrary.org/obo/GO_0035712,T-helper 2 cell activation +13.2912868,GO:0043885,http://purl.obolibrary.org/obo/GO_0043885,carbon-monoxide dehydrogenase (ferredoxin) activity +13.2912868,GO:0046888,http://purl.obolibrary.org/obo/GO_0046888,negative regulation of hormone secretion +13.2912868,GO:0047475,http://purl.obolibrary.org/obo/GO_0047475,phenylacetate-CoA ligase activity +13.2912868,GO:0047620,http://purl.obolibrary.org/obo/GO_0047620,acylglycerol kinase activity +13.2912868,GO:0048581,http://purl.obolibrary.org/obo/GO_0048581,negative regulation of post-embryonic development +13.2912868,GO:0051832,http://purl.obolibrary.org/obo/GO_0051832,none +13.2912868,GO:0052658,http://purl.obolibrary.org/obo/GO_0052658,"inositol-1,4,5-trisphosphate 5-phosphatase activity" +13.2912868,GO:0070006,http://purl.obolibrary.org/obo/GO_0070006,metalloaminopeptidase activity +13.2912868,GO:0097438,http://purl.obolibrary.org/obo/GO_0097438,exit from dormancy +13.2912868,GO:0097648,http://purl.obolibrary.org/obo/GO_0097648,G protein-coupled receptor complex +13.2912868,GO:0098661,http://purl.obolibrary.org/obo/GO_0098661,inorganic anion transmembrane transport +13.2912868,GO:1903964,http://purl.obolibrary.org/obo/GO_1903964,monounsaturated fatty acid metabolic process +13.2912868,GO:1904400,http://purl.obolibrary.org/obo/GO_1904400,response to Thyroid stimulating hormone +13.2912868,HP:0002224,http://purl.obolibrary.org/obo/HP_0002224,Woolly hair +13.2912868,HP:0010719,http://purl.obolibrary.org/obo/HP_0010719,Abnormality of hair texture +13.2912868,HP:0032154,http://purl.obolibrary.org/obo/HP_0032154,Aphthous ulcer +13.2912868,HP:0032368,http://purl.obolibrary.org/obo/HP_0032368,Acidemia +13.2912868,MONDO:0000393,http://purl.obolibrary.org/obo/MONDO_0000393,partial fetal alcohol syndrome +13.2912868,MONDO:0001371,http://purl.obolibrary.org/obo/MONDO_0001371,protein-energy malnutrition +13.2912868,MONDO:0001907,http://purl.obolibrary.org/obo/MONDO_0001907,adult dermatomyositis +13.2912868,MONDO:0003174,http://purl.obolibrary.org/obo/MONDO_0003174,spinal cord astrocytoma +13.2912868,MONDO:0003438,http://purl.obolibrary.org/obo/MONDO_0003438,combined small cell lung carcinoma +13.2912868,MONDO:0004150,http://purl.obolibrary.org/obo/MONDO_0004150,breast giant fibroadenoma +13.2912868,MONDO:0004614,http://purl.obolibrary.org/obo/MONDO_0004614,chronic monocytic leukemia +13.2912868,MONDO:0004696,http://purl.obolibrary.org/obo/MONDO_0004696,larynx carcinoma in situ +13.2912868,MONDO:0005722,http://purl.obolibrary.org/obo/MONDO_0005722,croup +13.2912868,MONDO:0006112,http://purl.obolibrary.org/obo/MONDO_0006112,bladder inflammatory myofibroblastic tumor +13.2912868,MONDO:0006285,http://purl.obolibrary.org/obo/MONDO_0006285,major salivary gland carcinoma ex pleomorphic adenoma +13.2912868,MONDO:0006554,http://purl.obolibrary.org/obo/MONDO_0006554,granuloma annulare +13.2912868,MONDO:0006673,http://purl.obolibrary.org/obo/MONDO_0006673,pituitary gland basophil adenoma +13.2912868,MONDO:0006738,http://purl.obolibrary.org/obo/MONDO_0006738,eccrine acrospiroma +13.2912868,MONDO:0006881,http://purl.obolibrary.org/obo/MONDO_0006881,orbital cellulitis +13.2912868,MONDO:0007308,http://purl.obolibrary.org/obo/MONDO_0007308,Charcot-Marie-Tooth disease type 2A1 +13.2912868,MONDO:0007983,http://purl.obolibrary.org/obo/MONDO_0007983,Schmid metaphyseal chondrodysplasia +13.2912868,MONDO:0008288,http://purl.obolibrary.org/obo/MONDO_0008288,popliteal cyst +13.2912868,MONDO:0009452,http://purl.obolibrary.org/obo/MONDO_0009452,Vici syndrome +13.2912868,MONDO:0009503,http://purl.obolibrary.org/obo/MONDO_0009503,pyruvate dehydrogenase E3-binding protein deficiency +13.2912868,MONDO:0009841,http://purl.obolibrary.org/obo/MONDO_0009841,PEHO syndrome +13.2912868,MONDO:0009901,http://purl.obolibrary.org/obo/MONDO_0009901,Bartsocas-Papas syndrome +13.2912868,MONDO:0010043,http://purl.obolibrary.org/obo/MONDO_0010043,hereditary spastic paraplegia 17 +13.2912868,MONDO:0010184,http://purl.obolibrary.org/obo/MONDO_0010184,methylmalonic aciduria and homocystinuria type cblC +13.2912868,MONDO:0011185,http://purl.obolibrary.org/obo/MONDO_0011185,Thiel-Behnke corneal dystrophy +13.2912868,MONDO:0011631,http://purl.obolibrary.org/obo/MONDO_0011631,hemochromatosis type 4 +13.2912868,MONDO:0011812,http://purl.obolibrary.org/obo/MONDO_0011812,Duane-radial ray syndrome +13.2912868,MONDO:0015386,http://purl.obolibrary.org/obo/MONDO_0015386,epignathus +13.2912868,MONDO:0016066,http://purl.obolibrary.org/obo/MONDO_0016066,sternal cleft +13.2912868,MONDO:0016501,http://purl.obolibrary.org/obo/MONDO_0016501,Hermansky-Pudlak syndrome with pulmonary fibrosis +13.2912868,MONDO:0017833,http://purl.obolibrary.org/obo/MONDO_0017833,primary hypereosinophilic syndrome +13.2912868,MONDO:0018775,http://purl.obolibrary.org/obo/MONDO_0018775,axonal hereditary motor and sensory neuropathy +13.2912868,MONDO:0020326,http://purl.obolibrary.org/obo/MONDO_0020326,lymphomatoid papulosis +13.2912868,MONDO:0020572,http://purl.obolibrary.org/obo/MONDO_0020572,complex regional pain syndrome type 2 +13.2912868,MONDO:0020977,http://purl.obolibrary.org/obo/MONDO_0020977,granulomatous prostatitis +13.2912868,MONDO:0021102,http://purl.obolibrary.org/obo/MONDO_0021102,prostate phyllodes tumor +13.2912868,MONDO:0021503,http://purl.obolibrary.org/obo/MONDO_0021503,benign neoplasm of gallbladder +13.2912868,MONDO:0024236,http://purl.obolibrary.org/obo/MONDO_0024236,none +13.2912868,MONDO:0025419,http://purl.obolibrary.org/obo/MONDO_0025419,furunculosis +13.2912868,MONDO:0045068,http://purl.obolibrary.org/obo/MONDO_0045068,minor salivary gland adenoid cystic carcinoma +13.2912868,NCBITaxon:10922,http://purl.obolibrary.org/obo/NCBITaxon_10922,none +13.2912868,NCBITaxon:10923,http://purl.obolibrary.org/obo/NCBITaxon_10923,none +13.2912868,NCBITaxon:11090,http://purl.obolibrary.org/obo/NCBITaxon_11090,none +13.2912868,NCBITaxon:12238,http://purl.obolibrary.org/obo/NCBITaxon_12238,none +13.2912868,NCBITaxon:12294,http://purl.obolibrary.org/obo/NCBITaxon_12294,none +13.2912868,NCBITaxon:129726,http://purl.obolibrary.org/obo/NCBITaxon_129726,Pseudocowpox virus +13.2912868,NCBITaxon:129875,http://purl.obolibrary.org/obo/NCBITaxon_129875,none +13.2912868,NCBITaxon:216718,http://purl.obolibrary.org/obo/NCBITaxon_216718,none +13.2912868,NCBITaxon:2821351,http://purl.obolibrary.org/obo/NCBITaxon_2821351,none +13.2912868,NCBITaxon:37334,http://purl.obolibrary.org/obo/NCBITaxon_37334,none +13.2912868,NCBITaxon:40696,http://purl.obolibrary.org/obo/NCBITaxon_40696,none +13.2912868,NCBITaxon:40697,http://purl.obolibrary.org/obo/NCBITaxon_40697,none +13.2912868,NCBITaxon:41303,http://purl.obolibrary.org/obo/NCBITaxon_41303,none +13.2912868,NCBITaxon:444184,http://purl.obolibrary.org/obo/NCBITaxon_444184,none +13.2912868,NCBITaxon:66561,http://purl.obolibrary.org/obo/NCBITaxon_66561,none +13.2912868,NCBITaxon:69577,http://purl.obolibrary.org/obo/NCBITaxon_69577,none +13.2912868,NCBITaxon:70735,http://purl.obolibrary.org/obo/NCBITaxon_70735,none +13.2912868,NCBITaxon:99610,http://purl.obolibrary.org/obo/NCBITaxon_99610,none +13.2912868,PR:000002158,http://purl.obolibrary.org/obo/PR_000002158,ecto-ADP-ribosyltransferase 3 +13.2912868,PR:000002216,http://purl.obolibrary.org/obo/PR_000002216,none +13.2912868,PR:000003617,http://purl.obolibrary.org/obo/PR_000003617,acid-sensing ion channel 4 +13.2912868,PR:000003743,http://purl.obolibrary.org/obo/PR_000003743,Arf-GAP with dual PH domain-containing protein 1 +13.2912868,PR:000004472,http://purl.obolibrary.org/obo/PR_000004472,V-type proton ATPase 116 kDa subunit a2 +13.2912868,PR:000004715,http://purl.obolibrary.org/obo/PR_000004715,3-hydroxybutyrate dehydrogenase type 2 +13.2912868,PR:000004887,http://purl.obolibrary.org/obo/PR_000004887,complement C1q tumor necrosis factor-related protein 5 +13.2912868,PR:000005213,http://purl.obolibrary.org/obo/PR_000005213,CDC42 small effector protein 1 +13.2912868,PR:000005517,http://purl.obolibrary.org/obo/PR_000005517,"creatine kinase S-type, mitochondrial" +13.2912868,PR:000005596,http://purl.obolibrary.org/obo/PR_000005596,methylosome subunit pICln +13.2912868,PR:000005696,http://purl.obolibrary.org/obo/PR_000005696,collagen alpha-1(XII) chain +13.2912868,PR:000005881,http://purl.obolibrary.org/obo/PR_000005881,cysteine-rich secretory protein LCCL domain-containing 2 +13.2912868,PR:000006989,http://purl.obolibrary.org/obo/PR_000006989,eukaryotic translation initiation factor 4B +13.2912868,PR:000007144,http://purl.obolibrary.org/obo/PR_000007144,bifunctional glutamate/proline--tRNA ligase +13.2912868,PR:000007542,http://purl.obolibrary.org/obo/PR_000007542,peptidyl-prolyl cis-trans isomerase FKBP6 +13.2912868,PR:000007828,http://purl.obolibrary.org/obo/PR_000007828,polypeptide N-acetylgalactosaminyltransferase 6 +13.2912868,PR:000007877,http://purl.obolibrary.org/obo/PR_000007877,guanylate-binding protein 4 +13.2912868,PR:000008011,http://purl.obolibrary.org/obo/PR_000008011,glycerol kinase 2 +13.2912868,PR:000008558,http://purl.obolibrary.org/obo/PR_000008558,hypoxia-inducible lipid droplet-associated protein +13.2912868,PR:000009027,http://purl.obolibrary.org/obo/PR_000009027,InaD-like protein +13.2912868,PR:000009044,http://purl.obolibrary.org/obo/PR_000009044,inositol polyphosphate 1-phosphatase +13.2912868,PR:000009264,http://purl.obolibrary.org/obo/PR_000009264,potassium channel subfamily K member 18 +13.2912868,PR:000009331,http://purl.obolibrary.org/obo/PR_000009331,killer cell immunoglobulin-like receptor 2DL5A +13.2912868,PR:000009908,http://purl.obolibrary.org/obo/PR_000009908,leupaxin +13.2912868,PR:000010290,http://purl.obolibrary.org/obo/PR_000010290,mediator of RNA polymerase II transcription subunit 18 +13.2912868,PR:000010494,http://purl.obolibrary.org/obo/PR_000010494,MMS19 nucleotide excision repair protein +13.2912868,PR:000010499,http://purl.obolibrary.org/obo/PR_000010499,meiosis-specific nuclear structural protein 1 +13.2912868,PR:000010858,http://purl.obolibrary.org/obo/PR_000010858,myosin-Id +13.2912868,PR:000010888,http://purl.obolibrary.org/obo/PR_000010888,deubiquitinase MYSM1 +13.2912868,PR:000010946,http://purl.obolibrary.org/obo/PR_000010946,aminopeptidase NAALADL1 +13.2912868,PR:000011036,http://purl.obolibrary.org/obo/PR_000011036,Nck-associated protein 1-like +13.2912868,PR:000011067,http://purl.obolibrary.org/obo/PR_000011067,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 +13.2912868,PR:000011265,http://purl.obolibrary.org/obo/PR_000011265,"NACHT, LRR and PYD domains-containing protein 10" +13.2912868,PR:000011647,http://purl.obolibrary.org/obo/PR_000011647,opioid-binding protein/cell adhesion molecule +13.2912868,PR:000011866,http://purl.obolibrary.org/obo/PR_000011866,olfactory receptor 51E2 +13.2912868,PR:000012254,http://purl.obolibrary.org/obo/PR_000012254,PAN2-PAN3 deadenylation complex subunit PAN3 +13.2912868,PR:000012578,http://purl.obolibrary.org/obo/PR_000012578,"6-phosphofructo-2-kinase/fructose-2,6-bisphosphatase 1" +13.2912868,PR:000012673,http://purl.obolibrary.org/obo/PR_000012673,14 kDa phosphohistidine phosphatase +13.2912868,PR:000012874,http://purl.obolibrary.org/obo/PR_000012874,plasmolipin +13.2912868,PR:000012977,http://purl.obolibrary.org/obo/PR_000012977,DNA polymerase kappa +13.2912868,PR:000013077,http://purl.obolibrary.org/obo/PR_000013077,eukaryotic-type peptidyl-prolyl cis-trans isomerase C +13.2912868,PR:000013447,http://purl.obolibrary.org/obo/PR_000013447,protein-tyrosine phosphatase mitochondrial 1 +13.2912868,PR:000013470,http://purl.obolibrary.org/obo/PR_000013470,receptor-type tyrosine-protein phosphatase gamma +13.2912868,PR:000013809,http://purl.obolibrary.org/obo/PR_000013809,RNA-binding protein 8A +13.2912868,PR:000013888,http://purl.obolibrary.org/obo/PR_000013888,RalBP1-associated Eps domain-containing protein 2 +13.2912868,PR:000013987,http://purl.obolibrary.org/obo/PR_000013987,Rho-related GTP-binding protein RhoU +13.2912868,PR:000014001,http://purl.obolibrary.org/obo/PR_000014001,Rab-interacting lysosomal protein +13.2912868,PR:000014259,http://purl.obolibrary.org/obo/PR_000014259,40S ribosomal protein S17 +13.2912868,PR:000014820,http://purl.obolibrary.org/obo/PR_000014820,SH3 domain-binding protein 4 +13.2912868,PR:000014953,http://purl.obolibrary.org/obo/PR_000014953,monocarboxylate transporter 6 +13.2912868,PR:000014998,http://purl.obolibrary.org/obo/PR_000014998,sodium/potassium/calcium exchanger 1 +13.2912868,PR:000015265,http://purl.obolibrary.org/obo/PR_000015265,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 1 +13.2912868,PR:000015366,http://purl.obolibrary.org/obo/PR_000015366,sorting nexin-17 +13.2912868,PR:000015383,http://purl.obolibrary.org/obo/PR_000015383,sorting nexin-4 +13.2912868,PR:000015649,http://purl.obolibrary.org/obo/PR_000015649,single-stranded DNA-binding protein 2 +13.2912868,PR:000015714,http://purl.obolibrary.org/obo/PR_000015714,signal-transducing adaptor protein 2 +13.2912868,PR:000016363,http://purl.obolibrary.org/obo/PR_000016363,tight junction-associated protein 1 +13.2912868,PR:000016393,http://purl.obolibrary.org/obo/PR_000016393,transmembrane channel-like protein 2 +13.2912868,PR:000016816,http://purl.obolibrary.org/obo/PR_000016816,tubulin beta-2A chain +13.2912868,PR:000016971,http://purl.obolibrary.org/obo/PR_000016971,ubiquitin-conjugating enzyme E2 E1 +13.2912868,PR:000017093,http://purl.obolibrary.org/obo/PR_000017093,netrin receptor UNC5A +13.2912868,PR:000017166,http://purl.obolibrary.org/obo/PR_000017166,ubiquitin carboxyl-terminal hydrolase 28 +13.2912868,PR:000017391,http://purl.obolibrary.org/obo/PR_000017391,WD repeat-containing protein 36 +13.2912868,PR:000017548,http://purl.obolibrary.org/obo/PR_000017548,mitogen-activated protein kinase kinase kinase 19 +13.2912868,PR:000017694,http://purl.obolibrary.org/obo/PR_000017694,protein kinase C-binding protein 1 +13.2912868,PR:000022080,http://purl.obolibrary.org/obo/PR_000022080,none +13.2912868,PR:000022239,http://purl.obolibrary.org/obo/PR_000022239,none +13.2912868,PR:000023003,http://purl.obolibrary.org/obo/PR_000023003,none +13.2912868,PR:000023044,http://purl.obolibrary.org/obo/PR_000023044,none +13.2912868,PR:000023592,http://purl.obolibrary.org/obo/PR_000023592,none +13.2912868,PR:000023957,http://purl.obolibrary.org/obo/PR_000023957,none +13.2912868,PR:000024186,http://purl.obolibrary.org/obo/PR_000024186,none +13.2912868,PR:000026840,http://purl.obolibrary.org/obo/PR_000026840,proto-oncogene c-Fos isoform 1 +13.2912868,PR:000026842,http://purl.obolibrary.org/obo/PR_000026842,proto-oncogene c-Fos isoform 1 phosphorylated 1 +13.2912868,PR:000028292,http://purl.obolibrary.org/obo/PR_000028292,none +13.2912868,PR:000028841,http://purl.obolibrary.org/obo/PR_000028841,SH3 domain and tetratricopeptide repeat-containing protein 2 +13.2912868,PR:000029609,http://purl.obolibrary.org/obo/PR_000029609,leucine-rich repeat and calponin homology domain-containing protein 4 +13.2912868,PR:000029725,http://purl.obolibrary.org/obo/PR_000029725,regulator of microtubule dynamics protein 3 +13.2912868,PR:000029921,http://purl.obolibrary.org/obo/PR_000029921,none +13.2912868,PR:000030350,http://purl.obolibrary.org/obo/PR_000030350,palmitoyltransferase ZDHHC8 +13.2912868,PR:000030552,http://purl.obolibrary.org/obo/PR_000030552,transcription factor CP2-like protein 1 +13.2912868,PR:000030785,http://purl.obolibrary.org/obo/PR_000030785,Scm-like with four MBT domains protein 2 +13.2912868,PR:000031111,http://purl.obolibrary.org/obo/PR_000031111,reticulophagy regulator 1 +13.2912868,PR:000031131,http://purl.obolibrary.org/obo/PR_000031131,VPS10 domain-containing receptor SorCS2 +13.2912868,PR:000031253,http://purl.obolibrary.org/obo/PR_000031253,lysosomal cobalamin transporter ABCD4 +13.2912868,PR:000031421,http://purl.obolibrary.org/obo/PR_000031421,WD repeat and FYVE domain-containing protein 3 +13.2912868,PR:000033228,http://purl.obolibrary.org/obo/PR_000033228,none +13.2912868,PR:000049987,http://purl.obolibrary.org/obo/PR_000049987,coatomer subunit gamma +13.2912868,PR:P06332,http://purl.obolibrary.org/obo/PR_P06332,none +13.2912868,PR:P14083,http://purl.obolibrary.org/obo/PR_P14083,none +13.2912868,PR:P20604,http://purl.obolibrary.org/obo/PR_P20604,none +13.2912868,PR:P22810,http://purl.obolibrary.org/obo/PR_P22810,none +13.2912868,PR:P25515,http://purl.obolibrary.org/obo/PR_P25515,none +13.2912868,PR:P35329,http://purl.obolibrary.org/obo/PR_P35329,none +13.2912868,PR:P36024,http://purl.obolibrary.org/obo/PR_P36024,none +13.2912868,PR:P36162,http://purl.obolibrary.org/obo/PR_P36162,none +13.2912868,PR:P39987,http://purl.obolibrary.org/obo/PR_P39987,none +13.2912868,PR:Q38922,http://purl.obolibrary.org/obo/PR_Q38922,none +13.2912868,PR:Q39243,http://purl.obolibrary.org/obo/PR_Q39243,none +13.2912868,PR:Q39249,http://purl.obolibrary.org/obo/PR_Q39249,none +13.2912868,PR:Q5D892,http://purl.obolibrary.org/obo/PR_Q5D892,none +13.2912868,PR:Q7T364,http://purl.obolibrary.org/obo/PR_Q7T364,none +13.2912868,PR:Q8K4K1,http://purl.obolibrary.org/obo/PR_Q8K4K1,none +13.2912868,PR:Q8W4J9,http://purl.obolibrary.org/obo/PR_Q8W4J9,none +13.2912868,PR:Q9STT6,http://purl.obolibrary.org/obo/PR_Q9STT6,none +13.2912868,PR:Q9SUP7,http://purl.obolibrary.org/obo/PR_Q9SUP7,none +13.2912868,PR:Q9XXH8,http://purl.obolibrary.org/obo/PR_Q9XXH8,none +13.2912868,SO:0000173,http://purl.obolibrary.org/obo/SO_0000173,GC_rich_promoter_region +13.2912868,SO:0000913,http://purl.obolibrary.org/obo/SO_0000913,cloned_cDNA_insert +13.2912868,SO:0001190,http://purl.obolibrary.org/obo/SO_0001190,TNA +13.2912868,UBERON:0002683,http://purl.obolibrary.org/obo/UBERON_0002683,rhinal sulcus +13.2912868,UBERON:0004230,http://purl.obolibrary.org/obo/UBERON_0004230,urinary bladder neck smooth muscle +13.2912868,UBERON:0004747,http://purl.obolibrary.org/obo/UBERON_0004747,supraoccipital bone +13.2912868,UBERON:0004806,http://purl.obolibrary.org/obo/UBERON_0004806,vas deferens epithelium +13.2912868,UBERON:0005045,http://purl.obolibrary.org/obo/UBERON_0005045,mucosa of ethmoidal sinus +13.2912868,UBERON:0005455,http://purl.obolibrary.org/obo/UBERON_0005455,interventricular groove +13.2912868,UBERON:0010958,http://purl.obolibrary.org/obo/UBERON_0010958,arytenoid muscle +13.2912868,UBERON:0011754,http://purl.obolibrary.org/obo/UBERON_0011754,genital swelling +13.2912868,UBERON:0011924,http://purl.obolibrary.org/obo/UBERON_0011924,postganglionic autonomic fiber +13.2912868,UBERON:0015015,http://purl.obolibrary.org/obo/UBERON_0015015,supraoccipital endochondral element +13.2912868,UBERON:0034875,http://purl.obolibrary.org/obo/UBERON_0034875,future pituitary gland +13.2912868,UBERON:2002133,http://purl.obolibrary.org/obo/UBERON_2002133,dorsal organ +13.3172623,CHEBI:15354,http://purl.obolibrary.org/obo/CHEBI_15354,choline +13.3172623,CHEBI:24662,http://purl.obolibrary.org/obo/CHEBI_24662,hydroxy-amino acid +13.3172623,CHEBI:25901,http://purl.obolibrary.org/obo/CHEBI_25901,pentose +13.3172623,CHEBI:26373,http://purl.obolibrary.org/obo/CHEBI_26373,pteridines +13.3172623,CHEBI:26375,http://purl.obolibrary.org/obo/CHEBI_26375,pterins +13.3172623,CHEBI:26848,http://purl.obolibrary.org/obo/CHEBI_26848,tannin +13.3172623,CHEBI:27470,http://purl.obolibrary.org/obo/CHEBI_27470,folic acid +13.3172623,CHEBI:33916,http://purl.obolibrary.org/obo/CHEBI_33916,aldopentose +13.3172623,CHEBI:33970,http://purl.obolibrary.org/obo/CHEBI_33970,elemental gold +13.3172623,CHEBI:35524,http://purl.obolibrary.org/obo/CHEBI_35524,sympathomimetic agent +13.3172623,CHEBI:49322,http://purl.obolibrary.org/obo/CHEBI_49322,anthracycline antibiotic +13.3172623,CHEBI:50492,http://purl.obolibrary.org/obo/CHEBI_50492,thiocarbonyl compound +13.3172623,CHEBI:53662,http://purl.obolibrary.org/obo/CHEBI_53662,biguanides +13.3172623,CHEBI:80332,http://purl.obolibrary.org/obo/CHEBI_80332,C-peptide +13.3172623,CHEBI:8288,http://purl.obolibrary.org/obo/CHEBI_8288,Poly(ADPribose) +13.3172623,CL:0000249,http://purl.obolibrary.org/obo/CL_0000249,hatching gland cell +13.3172623,CL:0002303,http://purl.obolibrary.org/obo/CL_0002303,pigmented ciliary epithelial cell +13.3172623,DRUGBANK:DB00600,http://purl.obolibrary.org/obo/DRUGBANK_DB00600,none +13.3172623,DRUGBANK:DB01289,http://purl.obolibrary.org/obo/DRUGBANK_DB01289,none +13.3172623,DRUGBANK:DB03535,http://purl.obolibrary.org/obo/DRUGBANK_DB03535,none +13.3172623,DRUGBANK:DB04909,http://purl.obolibrary.org/obo/DRUGBANK_DB04909,none +13.3172623,DRUGBANK:DB06656,http://purl.obolibrary.org/obo/DRUGBANK_DB06656,none +13.3172623,DRUGBANK:DB06714,http://purl.obolibrary.org/obo/DRUGBANK_DB06714,none +13.3172623,DRUGBANK:DB06759,http://purl.obolibrary.org/obo/DRUGBANK_DB06759,none +13.3172623,DRUGBANK:DB06870,http://purl.obolibrary.org/obo/DRUGBANK_DB06870,none +13.3172623,DRUGBANK:DB07118,http://purl.obolibrary.org/obo/DRUGBANK_DB07118,none +13.3172623,DRUGBANK:DB09218,http://purl.obolibrary.org/obo/DRUGBANK_DB09218,none +13.3172623,DRUGBANK:DB10663,http://purl.obolibrary.org/obo/DRUGBANK_DB10663,none +13.3172623,DRUGBANK:DB10903,http://purl.obolibrary.org/obo/DRUGBANK_DB10903,none +13.3172623,DRUGBANK:DB11567,http://purl.obolibrary.org/obo/DRUGBANK_DB11567,none +13.3172623,DRUGBANK:DB11623,http://purl.obolibrary.org/obo/DRUGBANK_DB11623,none +13.3172623,DRUGBANK:DB12076,http://purl.obolibrary.org/obo/DRUGBANK_DB12076,none +13.3172623,DRUGBANK:DB12254,http://purl.obolibrary.org/obo/DRUGBANK_DB12254,none +13.3172623,DRUGBANK:DB12612,http://purl.obolibrary.org/obo/DRUGBANK_DB12612,none +13.3172623,DRUGBANK:DB13432,http://purl.obolibrary.org/obo/DRUGBANK_DB13432,none +13.3172623,DRUGBANK:DB14684,http://purl.obolibrary.org/obo/DRUGBANK_DB14684,none +13.3172623,DRUGBANK:DB15653,http://purl.obolibrary.org/obo/DRUGBANK_DB15653,none +13.3172623,GO:0001773,http://purl.obolibrary.org/obo/GO_0001773,myeloid dendritic cell activation +13.3172623,GO:0002319,http://purl.obolibrary.org/obo/GO_0002319,memory B cell differentiation +13.3172623,GO:0003941,http://purl.obolibrary.org/obo/GO_0003941,L-serine ammonia-lyase activity +13.3172623,GO:0004135,http://purl.obolibrary.org/obo/GO_0004135,"amylo-alpha-1,6-glucosidase activity" +13.3172623,GO:0004838,http://purl.obolibrary.org/obo/GO_0004838,L-tyrosine:2-oxoglutarate aminotransferase activity +13.3172623,GO:0004944,http://purl.obolibrary.org/obo/GO_0004944,none +13.3172623,GO:0004979,http://purl.obolibrary.org/obo/GO_0004979,beta-endorphin receptor activity +13.3172623,GO:0006592,http://purl.obolibrary.org/obo/GO_0006592,ornithine biosynthetic process +13.3172623,GO:0007000,http://purl.obolibrary.org/obo/GO_0007000,nucleolus organization +13.3172623,GO:0008298,http://purl.obolibrary.org/obo/GO_0008298,intracellular mRNA localization +13.3172623,GO:0008837,http://purl.obolibrary.org/obo/GO_0008837,diaminopimelate epimerase activity +13.3172623,GO:0008875,http://purl.obolibrary.org/obo/GO_0008875,gluconate dehydrogenase activity +13.3172623,GO:0008998,http://purl.obolibrary.org/obo/GO_0008998,ribonucleoside-triphosphate reductase activity +13.3172623,GO:0009113,http://purl.obolibrary.org/obo/GO_0009113,purine nucleobase biosynthetic process +13.3172623,GO:0009177,http://purl.obolibrary.org/obo/GO_0009177,pyrimidine deoxyribonucleoside monophosphate biosynthetic process +13.3172623,GO:0009444,http://purl.obolibrary.org/obo/GO_0009444,pyruvate oxidation +13.3172623,GO:0010333,http://purl.obolibrary.org/obo/GO_0010333,terpene synthase activity +13.3172623,GO:0015917,http://purl.obolibrary.org/obo/GO_0015917,aminophospholipid transport +13.3172623,GO:0017126,http://purl.obolibrary.org/obo/GO_0017126,nucleologenesis +13.3172623,GO:0017158,http://purl.obolibrary.org/obo/GO_0017158,regulation of calcium ion-dependent exocytosis +13.3172623,GO:0019036,http://purl.obolibrary.org/obo/GO_0019036,viral transcriptional complex +13.3172623,GO:0019114,http://purl.obolibrary.org/obo/GO_0019114,catechol dioxygenase activity +13.3172623,GO:0020015,http://purl.obolibrary.org/obo/GO_0020015,glycosome +13.3172623,GO:0030122,http://purl.obolibrary.org/obo/GO_0030122,AP-2 adaptor complex +13.3172623,GO:0032982,http://purl.obolibrary.org/obo/GO_0032982,myosin filament +13.3172623,GO:0035428,http://purl.obolibrary.org/obo/GO_0035428,none +13.3172623,GO:0042622,http://purl.obolibrary.org/obo/GO_0042622,photoreceptor outer segment membrane +13.3172623,GO:0043484,http://purl.obolibrary.org/obo/GO_0043484,regulation of RNA splicing +13.3172623,GO:0044565,http://purl.obolibrary.org/obo/GO_0044565,dendritic cell proliferation +13.3172623,GO:0046321,http://purl.obolibrary.org/obo/GO_0046321,positive regulation of fatty acid oxidation +13.3172623,GO:0046373,http://purl.obolibrary.org/obo/GO_0046373,L-arabinose metabolic process +13.3172623,GO:0046777,http://purl.obolibrary.org/obo/GO_0046777,protein autophosphorylation +13.3172623,GO:0048250,http://purl.obolibrary.org/obo/GO_0048250,iron import into the mitochondrion +13.3172623,GO:0048467,http://purl.obolibrary.org/obo/GO_0048467,gynoecium development +13.3172623,GO:0050201,http://purl.obolibrary.org/obo/GO_0050201,fucokinase activity +13.3172623,GO:0050357,http://purl.obolibrary.org/obo/GO_0050357,tropinesterase activity +13.3172623,GO:0051310,http://purl.obolibrary.org/obo/GO_0051310,metaphase plate congression +13.3172623,GO:0051918,http://purl.obolibrary.org/obo/GO_0051918,negative regulation of fibrinolysis +13.3172623,GO:0060405,http://purl.obolibrary.org/obo/GO_0060405,regulation of penile erection +13.3172623,GO:0060707,http://purl.obolibrary.org/obo/GO_0060707,trophoblast giant cell differentiation +13.3172623,GO:0070288,http://purl.obolibrary.org/obo/GO_0070288,ferritin complex +13.3172623,GO:0070529,http://purl.obolibrary.org/obo/GO_0070529,L-tryptophan aminotransferase activity +13.3172623,GO:0090450,http://purl.obolibrary.org/obo/GO_0090450,none +13.3172623,GO:0098814,http://purl.obolibrary.org/obo/GO_0098814,spontaneous synaptic transmission +13.3172623,GO:0140318,http://purl.obolibrary.org/obo/GO_0140318,protein transporter activity +13.3172623,GO:1900177,http://purl.obolibrary.org/obo/GO_1900177,regulation of aflatoxin biosynthetic process +13.3172623,GO:1902882,http://purl.obolibrary.org/obo/GO_1902882,regulation of response to oxidative stress +13.3172623,GO:1904647,http://purl.obolibrary.org/obo/GO_1904647,response to rotenone +13.3172623,GO:1990161,http://purl.obolibrary.org/obo/GO_1990161,DnaB helicase complex +13.3172623,GO:2001301,http://purl.obolibrary.org/obo/GO_2001301,lipoxin biosynthetic process +13.3172623,MONDO:0000706,http://purl.obolibrary.org/obo/MONDO_0000706,chemical colitis +13.3172623,MONDO:0001499,http://purl.obolibrary.org/obo/MONDO_0001499,retroperitoneal lymphoma +13.3172623,MONDO:0001740,http://purl.obolibrary.org/obo/MONDO_0001740,cornea squamous cell carcinoma +13.3172623,MONDO:0002738,http://purl.obolibrary.org/obo/MONDO_0002738,acute transudative otitis media +13.3172623,MONDO:0002755,http://purl.obolibrary.org/obo/MONDO_0002755,solitary osseous plasmacytoma +13.3172623,MONDO:0002764,http://purl.obolibrary.org/obo/MONDO_0002764,urethra squamous cell carcinoma +13.3172623,MONDO:0002919,http://purl.obolibrary.org/obo/MONDO_0002919,posterior cranial fossa meningioma +13.3172623,MONDO:0003011,http://purl.obolibrary.org/obo/MONDO_0003011,mucinous tubular and spindle renal cell carcinoma +13.3172623,MONDO:0003056,http://purl.obolibrary.org/obo/MONDO_0003056,lymphoplasmacyte-rich meningioma +13.3172623,MONDO:0003374,http://purl.obolibrary.org/obo/MONDO_0003374,laryngeal leiomyosarcoma +13.3172623,MONDO:0003473,http://purl.obolibrary.org/obo/MONDO_0003473,spinal cord ependymoma +13.3172623,MONDO:0003494,http://purl.obolibrary.org/obo/MONDO_0003494,ovarian squamous cell carcinoma +13.3172623,MONDO:0003495,http://purl.obolibrary.org/obo/MONDO_0003495,ovarian squamous cell neoplasm +13.3172623,MONDO:0003570,http://purl.obolibrary.org/obo/MONDO_0003570,lipid-rich carcinoma +13.3172623,MONDO:0004077,http://purl.obolibrary.org/obo/MONDO_0004077,lumbosacral lipoma +13.3172623,MONDO:0004169,http://purl.obolibrary.org/obo/MONDO_0004169,premenstrual tension +13.3172623,MONDO:0004209,http://purl.obolibrary.org/obo/MONDO_0004209,cerebral primitive neuroectodermal tumor +13.3172623,MONDO:0004817,http://purl.obolibrary.org/obo/MONDO_0004817,non-secretory plasma cell myeloma +13.3172623,MONDO:0005287,http://purl.obolibrary.org/obo/MONDO_0005287,developmental disability +13.3172623,MONDO:0005425,http://purl.obolibrary.org/obo/MONDO_0005425,podoconiosis +13.3172623,MONDO:0005879,http://purl.obolibrary.org/obo/MONDO_0005879,ocular toxoplasmosis +13.3172623,MONDO:0006265,http://purl.obolibrary.org/obo/MONDO_0006265,laryngeal small cell carcinoma +13.3172623,MONDO:0007379,http://purl.obolibrary.org/obo/MONDO_0007379,Meesmann corneal dystrophy +13.3172623,MONDO:0007761,http://purl.obolibrary.org/obo/MONDO_0007761,hyperlipoproteinemia type IV +13.3172623,MONDO:0008015,http://purl.obolibrary.org/obo/MONDO_0008015,motion sickness +13.3172623,MONDO:0008201,http://purl.obolibrary.org/obo/MONDO_0008201,Perry syndrome +13.3172623,MONDO:0008250,http://purl.obolibrary.org/obo/MONDO_0008250,isolated growth hormone deficiency type II +13.3172623,MONDO:0009079,http://purl.obolibrary.org/obo/MONDO_0009079,DOORS syndrome +13.3172623,MONDO:0009738,http://purl.obolibrary.org/obo/MONDO_0009738,sialidosis type 2 +13.3172623,MONDO:0009960,http://purl.obolibrary.org/obo/MONDO_0009960,inflammatory bowel disease 1 +13.3172623,MONDO:0011431,http://purl.obolibrary.org/obo/MONDO_0011431,MASS syndrome +13.3172623,MONDO:0012698,http://purl.obolibrary.org/obo/MONDO_0012698,Waardenburg syndrome type 2E +13.3172623,MONDO:0016158,http://purl.obolibrary.org/obo/MONDO_0016158,narcolepsy-cataplexy syndrome +13.3172623,MONDO:0016840,http://purl.obolibrary.org/obo/MONDO_0016840,trisomy 17p +13.3172623,MONDO:0017304,http://purl.obolibrary.org/obo/MONDO_0017304,ocular albinism +13.3172623,MONDO:0018805,http://purl.obolibrary.org/obo/MONDO_0018805,choledochal cyst +13.3172623,MONDO:0018981,http://purl.obolibrary.org/obo/MONDO_0018981,benign idiopathic neonatal seizures +13.3172623,MONDO:0034217,http://purl.obolibrary.org/obo/MONDO_0034217,resistance to thyroid hormone due to a mutation in thyroid hormone receptor beta +13.3172623,NCBITaxon:100217,http://purl.obolibrary.org/obo/NCBITaxon_100217,none +13.3172623,NCBITaxon:10560,http://purl.obolibrary.org/obo/NCBITaxon_10560,none +13.3172623,NCBITaxon:11207,http://purl.obolibrary.org/obo/NCBITaxon_11207,none +13.3172623,NCBITaxon:11580,http://purl.obolibrary.org/obo/NCBITaxon_11580,none +13.3172623,NCBITaxon:147389,http://purl.obolibrary.org/obo/NCBITaxon_147389,Triticeae +13.3172623,NCBITaxon:1648038,http://purl.obolibrary.org/obo/NCBITaxon_1648038,Triticodae +13.3172623,NCBITaxon:201490,http://purl.obolibrary.org/obo/NCBITaxon_201490,none +13.3172623,NCBITaxon:2560767,http://purl.obolibrary.org/obo/NCBITaxon_2560767,none +13.3172623,NCBITaxon:28556,http://purl.obolibrary.org/obo/NCBITaxon_28556,Pleosporaceae +13.3172623,NCBITaxon:32326,http://purl.obolibrary.org/obo/NCBITaxon_32326,none +13.3172623,NCBITaxon:34353,http://purl.obolibrary.org/obo/NCBITaxon_34353,Dipodascaceae +13.3172623,NCBITaxon:373508,http://purl.obolibrary.org/obo/NCBITaxon_373508,none +13.3172623,NCBITaxon:394239,http://purl.obolibrary.org/obo/NCBITaxon_394239,none +13.3172623,NCBITaxon:42407,http://purl.obolibrary.org/obo/NCBITaxon_42407,Neotoma +13.3172623,NCBITaxon:431317,http://purl.obolibrary.org/obo/NCBITaxon_431317,none +13.3172623,NCBITaxon:46936,http://purl.obolibrary.org/obo/NCBITaxon_46936,none +13.3172623,NCBITaxon:58312,http://purl.obolibrary.org/obo/NCBITaxon_58312,none +13.3172623,NCBITaxon:6102,http://purl.obolibrary.org/obo/NCBITaxon_6102,none +13.3172623,NCBITaxon:7242,http://purl.obolibrary.org/obo/NCBITaxon_7242,none +13.3172623,NCBITaxon:749343,http://purl.obolibrary.org/obo/NCBITaxon_749343,none +13.3172623,NCBITaxon:85025,http://purl.obolibrary.org/obo/NCBITaxon_85025,Nocardiaceae +13.3172623,NCBITaxon:85651,http://purl.obolibrary.org/obo/NCBITaxon_85651,none +13.3172623,NCBITaxon:869560,http://purl.obolibrary.org/obo/NCBITaxon_869560,none +13.3172623,NCBITaxon:94892,http://purl.obolibrary.org/obo/NCBITaxon_94892,none +13.3172623,PR:000001972,http://purl.obolibrary.org/obo/PR_000001972,voltage-dependent T-type calcium channel subunit alpha-1G +13.3172623,PR:000002176,http://purl.obolibrary.org/obo/PR_000002176,26S proteasome non-ATPase regulatory subunit 1 +13.3172623,PR:000003536,http://purl.obolibrary.org/obo/PR_000003536,"4-aminobutyrate aminotransferase, mitochondrial" +13.3172623,PR:000003546,http://purl.obolibrary.org/obo/PR_000003546,ABC-type organic anion transporter ABCA8 +13.3172623,PR:000003648,http://purl.obolibrary.org/obo/PR_000003648,lysophosphatidic acid phosphatase type 6 +13.3172623,PR:000003732,http://purl.obolibrary.org/obo/PR_000003732,a disintegrin and metalloproteinase with thrombospondin motifs 3 +13.3172623,PR:000003741,http://purl.obolibrary.org/obo/PR_000003741,ADAMTS-like protein 4 +13.3172623,PR:000004132,http://purl.obolibrary.org/obo/PR_000004132,methylthioribulose-1-phosphate dehydratase +13.3172623,PR:000004235,http://purl.obolibrary.org/obo/PR_000004235,Rho GTPase-activating protein 29 +13.3172623,PR:000004390,http://purl.obolibrary.org/obo/PR_000004390,astrotactin-2 +13.3172623,PR:000004643,http://purl.obolibrary.org/obo/PR_000004643,BarH-like 1 homeobox protein +13.3172623,PR:000004799,http://purl.obolibrary.org/obo/PR_000004799,nucleosome-remodeling factor subunit BPTF +13.3172623,PR:000004825,http://purl.obolibrary.org/obo/PR_000004825,CUGBP Elav-like family member 4 +13.3172623,PR:000005231,http://purl.obolibrary.org/obo/PR_000005231,cadherin-12 +13.3172623,PR:000005432,http://purl.obolibrary.org/obo/PR_000005432,charged multivesicular body protein 1a +13.3172623,PR:000005659,http://purl.obolibrary.org/obo/PR_000005659,protein canopy homolog 2 +13.3172623,PR:000005752,http://purl.obolibrary.org/obo/PR_000005752,"ubiquinone biosynthesis O-methyltransferase, mitochondrial" +13.3172623,PR:000005753,http://purl.obolibrary.org/obo/PR_000005753,"ubiquinone biosynthesis protein COQ4, mitochondrial" +13.3172623,PR:000005755,http://purl.obolibrary.org/obo/PR_000005755,"ubiquinone biosynthesis monooxygenase COQ6, mitochondrial" +13.3172623,PR:000006088,http://purl.obolibrary.org/obo/PR_000006088,plasma membrane ascorbate-dependent reductase CYBRD1 +13.3172623,PR:000006157,http://purl.obolibrary.org/obo/PR_000006157,cytohesin-interacting protein +13.3172623,PR:000006238,http://purl.obolibrary.org/obo/PR_000006238,none +13.3172623,PR:000006627,http://purl.obolibrary.org/obo/PR_000006627,deoxyhypusine hydroxylase +13.3172623,PR:000007154,http://purl.obolibrary.org/obo/PR_000007154,GTP-binding protein era +13.3172623,PR:000007304,http://purl.obolibrary.org/obo/PR_000007304,fatty acid 2-hydroxylase +13.3172623,PR:000007440,http://purl.obolibrary.org/obo/PR_000007440,Fc receptor-like protein 1 +13.3172623,PR:000007539,http://purl.obolibrary.org/obo/PR_000007539,peptidyl-prolyl cis-trans isomerase FKBP3 +13.3172623,PR:000007584,http://purl.obolibrary.org/obo/PR_000007584,formin-binding protein 1 +13.3172623,PR:000007777,http://purl.obolibrary.org/obo/PR_000007777,gamma-aminobutyric acid receptor subunit gamma-1 +13.3172623,PR:000008134,http://purl.obolibrary.org/obo/PR_000008134,golgin subfamily A member 5 +13.3172623,PR:000008327,http://purl.obolibrary.org/obo/PR_000008327,general transcription factor 3C polypeptide 3 +13.3172623,PR:000008661,http://purl.obolibrary.org/obo/PR_000008661,heterogeneous nuclear ribonucleoprotein A/B +13.3172623,PR:000008914,http://purl.obolibrary.org/obo/PR_000008914,interferon alpha-17 +13.3172623,PR:000008957,http://purl.obolibrary.org/obo/PR_000008957,immunoglobulin heavy constant delta +13.3172623,PR:000009114,http://purl.obolibrary.org/obo/PR_000009114,interferon-stimulated gene 20 kDa protein +13.3172623,PR:000009148,http://purl.obolibrary.org/obo/PR_000009148,inter-alpha-trypsin inhibitor heavy chain H3 +13.3172623,PR:000009351,http://purl.obolibrary.org/obo/PR_000009351,kinesin light chain 3 +13.3172623,PR:000009696,http://purl.obolibrary.org/obo/PR_000009696,lebercilin +13.3172623,PR:000009737,http://purl.obolibrary.org/obo/PR_000009737,LIM domain-binding protein 2 +13.3172623,PR:000009807,http://purl.obolibrary.org/obo/PR_000009807,leukocyte immunoglobulin-like receptor subfamily A member 6 +13.3172623,PR:000009836,http://purl.obolibrary.org/obo/PR_000009836,endothelial lipase +13.3172623,PR:000009869,http://purl.obolibrary.org/obo/PR_000009869,serine/threonine-protein kinase LMTK3 +13.3172623,PR:000009916,http://purl.obolibrary.org/obo/PR_000009916,"inositol 1,4,5-triphosphate receptor associated 2" +13.3172623,PR:000010179,http://purl.obolibrary.org/obo/PR_000010179,E3 ubiquitin-protein ligase MARCHF5 +13.3172623,PR:000010269,http://purl.obolibrary.org/obo/PR_000010269,midasin +13.3172623,PR:000010307,http://purl.obolibrary.org/obo/PR_000010307,mediator of RNA polymerase II transcription subunit 8 +13.3172623,PR:000010386,http://purl.obolibrary.org/obo/PR_000010386,protein O-GlcNAcase +13.3172623,PR:000010950,http://purl.obolibrary.org/obo/PR_000010950,"nascent polypeptide-associated complex subunit alpha, muscle-specific form" +13.3172623,PR:000010997,http://purl.obolibrary.org/obo/PR_000010997,N-acetyltransferase MAK3 +13.3172623,PR:000011195,http://purl.obolibrary.org/obo/PR_000011195,protein BEX3 +13.3172623,PR:000011302,http://purl.obolibrary.org/obo/PR_000011302,nucleolar complex protein 2 +13.3172623,PR:000011545,http://purl.obolibrary.org/obo/PR_000011545,neurexophilin-4 +13.3172623,PR:000011961,http://purl.obolibrary.org/obo/PR_000011961,olfactory receptor 6C2 +13.3172623,PR:000012055,http://purl.obolibrary.org/obo/PR_000012055,osteoclast-associated immunoglobulin-like receptor +13.3172623,PR:000012310,http://purl.obolibrary.org/obo/PR_000012310,prostate and testis expressed protein 4 +13.3172623,PR:000012534,http://purl.obolibrary.org/obo/PR_000012534,enoyl-CoA Delta isomerase 2 +13.3172623,PR:000012644,http://purl.obolibrary.org/obo/PR_000012644,protein Jade-1 +13.3172623,PR:000012741,http://purl.obolibrary.org/obo/PR_000012741,phosphatidylinositol 5-phosphate 4-kinase type-2 alpha +13.3172623,PR:000012926,http://purl.obolibrary.org/obo/PR_000012926,pancreatic lipase-related protein 1 +13.3172623,PR:000013000,http://purl.obolibrary.org/obo/PR_000013000,DNA-directed RNA polymerase III subunit RPC1 +13.3172623,PR:000013276,http://purl.obolibrary.org/obo/PR_000013276,pre-mRNA-splicing factor 18 +13.3172623,PR:000013324,http://purl.obolibrary.org/obo/PR_000013324,serine protease 27 +13.3172623,PR:000013468,http://purl.obolibrary.org/obo/PR_000013468,receptor-type tyrosine-protein phosphatase epsilon +13.3172623,PR:000013701,http://purl.obolibrary.org/obo/PR_000013701,RNA-binding protein Raly +13.3172623,PR:000013713,http://purl.obolibrary.org/obo/PR_000013713,Ran-binding protein 3 +13.3172623,PR:000013807,http://purl.obolibrary.org/obo/PR_000013807,RNA-binding protein 6 +13.3172623,PR:000013903,http://purl.obolibrary.org/obo/PR_000013903,"oligoribonuclease, mitochondrial" +13.3172623,PR:000014086,http://purl.obolibrary.org/obo/PR_000014086,E3 ubiquitin-protein ligase RNF14 +13.3172623,PR:000014276,http://purl.obolibrary.org/obo/PR_000014276,40S ribosomal protein S3a +13.3172623,PR:000014650,http://purl.obolibrary.org/obo/PR_000014650,septin-11 +13.3172623,PR:000014688,http://purl.obolibrary.org/obo/PR_000014688,serpin A9 +13.3172623,PR:000014738,http://purl.obolibrary.org/obo/PR_000014738,splicing factor 3B subunit 4 +13.3172623,PR:000014808,http://purl.obolibrary.org/obo/PR_000014808,small glutamine-rich tetratricopeptide repeat-containing protein beta +13.3172623,PR:000015101,http://purl.obolibrary.org/obo/PR_000015101,solute carrier family 35 member E1 +13.3172623,PR:000015161,http://purl.obolibrary.org/obo/PR_000015161,electrogenic sodium bicarbonate cotransporter 4 +13.3172623,PR:000015310,http://purl.obolibrary.org/obo/PR_000015310,zinc finger protein SNAI3 +13.3172623,PR:000015327,http://purl.obolibrary.org/obo/PR_000015327,vacuolar-sorting protein SNF8 +13.3172623,PR:000015359,http://purl.obolibrary.org/obo/PR_000015359,sorting nexin-10 +13.3172623,PR:000015658,http://purl.obolibrary.org/obo/PR_000015658,SCO-spondin +13.3172623,PR:000015682,http://purl.obolibrary.org/obo/PR_000015682,"lactosylceramide alpha-2,3-sialyltransferase" +13.3172623,PR:000015751,http://purl.obolibrary.org/obo/PR_000015751,serine/threonine-protein kinase 33 +13.3172623,PR:000015783,http://purl.obolibrary.org/obo/PR_000015783,dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit STT3B +13.3172623,PR:000015861,http://purl.obolibrary.org/obo/PR_000015861,syncollin +13.3172623,PR:000015896,http://purl.obolibrary.org/obo/PR_000015896,synaptotagmin-11 +13.3172623,PR:000015905,http://purl.obolibrary.org/obo/PR_000015905,synaptotagmin-3 +13.3172623,PR:000015989,http://purl.obolibrary.org/obo/PR_000015989,none +13.3172623,PR:000016028,http://purl.obolibrary.org/obo/PR_000016028,transcription initiation factor TFIID subunit 4B +13.3172623,PR:000016031,http://purl.obolibrary.org/obo/PR_000016031,transcription initiation factor TFIID subunit 6 +13.3172623,PR:000016437,http://purl.obolibrary.org/obo/PR_000016437,"transmembrane protein 70, mitochondrial" +13.3172623,PR:000016556,http://purl.obolibrary.org/obo/PR_000016556,TOX high mobility group box family member 2 +13.3172623,PR:000016727,http://purl.obolibrary.org/obo/PR_000016727,teashirt homolog 3 +13.3172623,PR:000016745,http://purl.obolibrary.org/obo/PR_000016745,tetraspanin-2 +13.3172623,PR:000016783,http://purl.obolibrary.org/obo/PR_000016783,tetratricopeptide repeat protein 8 +13.3172623,PR:000016825,http://purl.obolibrary.org/obo/PR_000016825,tubulin gamma-1 chain +13.3172623,PR:000017092,http://purl.obolibrary.org/obo/PR_000017092,protein unc-50 +13.3172623,PR:000018255,http://purl.obolibrary.org/obo/PR_000018255,none +13.3172623,PR:000022127,http://purl.obolibrary.org/obo/PR_000022127,none +13.3172623,PR:000022469,http://purl.obolibrary.org/obo/PR_000022469,none +13.3172623,PR:000023052,http://purl.obolibrary.org/obo/PR_000023052,none +13.3172623,PR:000023226,http://purl.obolibrary.org/obo/PR_000023226,none +13.3172623,PR:000023309,http://purl.obolibrary.org/obo/PR_000023309,none +13.3172623,PR:000023312,http://purl.obolibrary.org/obo/PR_000023312,none +13.3172623,PR:000023556,http://purl.obolibrary.org/obo/PR_000023556,none +13.3172623,PR:000023719,http://purl.obolibrary.org/obo/PR_000023719,none +13.3172623,PR:000024117,http://purl.obolibrary.org/obo/PR_000024117,none +13.3172623,PR:000025801,http://purl.obolibrary.org/obo/PR_000025801,receptor-type tyrosine-protein phosphatase C isoform CD45RC +13.3172623,PR:000029030,http://purl.obolibrary.org/obo/PR_000029030,none +13.3172623,PR:000029190,http://purl.obolibrary.org/obo/PR_000029190,cyclin B:Cdk1 complex +13.3172623,PR:000032154,http://purl.obolibrary.org/obo/PR_000032154,leucine-rich repeat neuronal protein 1 +13.3172623,PR:000032352,http://purl.obolibrary.org/obo/PR_000032352,protein SCAI +13.3172623,PR:000032666,http://purl.obolibrary.org/obo/PR_000032666,probable tRNA N6-adenosine threonylcarbamoyltransferase +13.3172623,PR:000033105,http://purl.obolibrary.org/obo/PR_000033105,none +13.3172623,PR:000033451,http://purl.obolibrary.org/obo/PR_000033451,none +13.3172623,PR:000034769,http://purl.obolibrary.org/obo/PR_000034769,none +13.3172623,PR:A7WM73,http://purl.obolibrary.org/obo/PR_A7WM73,none +13.3172623,PR:D0EYG3,http://purl.obolibrary.org/obo/PR_D0EYG3,none +13.3172623,PR:O22397,http://purl.obolibrary.org/obo/PR_O22397,none +13.3172623,PR:O59671,http://purl.obolibrary.org/obo/PR_O59671,none +13.3172623,PR:P03230,http://purl.obolibrary.org/obo/PR_P03230,none +13.3172623,PR:P16303,http://purl.obolibrary.org/obo/PR_P16303,none +13.3172623,PR:P19263,http://purl.obolibrary.org/obo/PR_P19263,none +13.3172623,PR:P34653,http://purl.obolibrary.org/obo/PR_P34653,none +13.3172623,PR:P35343,http://purl.obolibrary.org/obo/PR_P35343,none +13.3172623,PR:P38632,http://purl.obolibrary.org/obo/PR_P38632,none +13.3172623,PR:P39723,http://purl.obolibrary.org/obo/PR_P39723,none +13.3172623,PR:P43079,http://purl.obolibrary.org/obo/PR_P43079,none +13.3172623,PR:P79457,http://purl.obolibrary.org/obo/PR_P79457,none +13.3172623,PR:Q00310,http://purl.obolibrary.org/obo/PR_Q00310,none +13.3172623,PR:Q05502,http://purl.obolibrary.org/obo/PR_Q05502,none +13.3172623,PR:Q08199,http://purl.obolibrary.org/obo/PR_Q08199,none +13.3172623,PR:Q12216,http://purl.obolibrary.org/obo/PR_Q12216,none +13.3172623,PR:Q5AG31,http://purl.obolibrary.org/obo/PR_Q5AG31,none +13.3172623,PR:Q7T2T1,http://purl.obolibrary.org/obo/PR_Q7T2T1,none +13.3172623,PR:Q7YTY6,http://purl.obolibrary.org/obo/PR_Q7YTY6,none +13.3172623,PR:Q86CR8,http://purl.obolibrary.org/obo/PR_Q86CR8,none +13.3172623,PR:Q8BI84,http://purl.obolibrary.org/obo/PR_Q8BI84,none +13.3172623,PR:Q8GYU0,http://purl.obolibrary.org/obo/PR_Q8GYU0,none +13.3172623,PR:Q8LGI3,http://purl.obolibrary.org/obo/PR_Q8LGI3,none +13.3172623,PR:Q8VZG2,http://purl.obolibrary.org/obo/PR_Q8VZG2,none +13.3172623,PR:Q93Z79,http://purl.obolibrary.org/obo/PR_Q93Z79,none +13.3172623,PR:Q945F0,http://purl.obolibrary.org/obo/PR_Q945F0,none +13.3172623,PR:Q9FE38,http://purl.obolibrary.org/obo/PR_Q9FE38,none +13.3172623,PR:Q9FN52,http://purl.obolibrary.org/obo/PR_Q9FN52,none +13.3172623,PR:Q9LU64,http://purl.obolibrary.org/obo/PR_Q9LU64,none +13.3172623,PR:Q9M0G9,http://purl.obolibrary.org/obo/PR_Q9M0G9,none +13.3172623,PR:Q9N2V6,http://purl.obolibrary.org/obo/PR_Q9N2V6,none +13.3172623,PR:Q9SIB4,http://purl.obolibrary.org/obo/PR_Q9SIB4,none +13.3172623,PR:Q9UST1,http://purl.obolibrary.org/obo/PR_Q9UST1,none +13.3172623,PR:Q9UVJ4,http://purl.obolibrary.org/obo/PR_Q9UVJ4,none +13.3172623,SO:0000024,http://purl.obolibrary.org/obo/SO_0000024,sarcin_like_RNA_motif +13.3172623,SO:0001044,http://purl.obolibrary.org/obo/SO_0001044,nuclear_mt_pseudogene +13.3172623,UBERON:0002296,http://purl.obolibrary.org/obo/UBERON_0002296,dorsal mesentery +13.3172623,UBERON:0003337,http://purl.obolibrary.org/obo/UBERON_0003337,serosa of jejunum +13.3172623,UBERON:0003459,http://purl.obolibrary.org/obo/UBERON_0003459,chest bone +13.3172623,UBERON:0006259,http://purl.obolibrary.org/obo/UBERON_0006259,lens pit +13.3172623,UBERON:0006446,http://purl.obolibrary.org/obo/UBERON_0006446,rostral middle frontal gyrus +13.3172623,UBERON:0009631,http://purl.obolibrary.org/obo/UBERON_0009631,root of lumbar spinal nerve +13.3172623,UBERON:0016390,http://purl.obolibrary.org/obo/UBERON_0016390,auricular lymph node +13.3172623,UBERON:0022252,http://purl.obolibrary.org/obo/UBERON_0022252,precentral sulcus +13.3172623,UBERON:0027221,http://purl.obolibrary.org/obo/UBERON_0027221,adrenergic system +13.3172623,UBERON:4000164,http://purl.obolibrary.org/obo/UBERON_4000164,caudal fin +13.3439306,CHEBI:16529,http://purl.obolibrary.org/obo/CHEBI_16529,oligophosphate +13.3439306,CHEBI:23641,http://purl.obolibrary.org/obo/CHEBI_23641,deoxyuridine phosphate +13.3439306,CHEBI:26130,http://purl.obolibrary.org/obo/CHEBI_26130,biological pigment +13.3439306,CHEBI:26435,http://purl.obolibrary.org/obo/CHEBI_26435,pyrimidine deoxyribonucleoside triphosphate +13.3439306,CHEBI:26439,http://purl.obolibrary.org/obo/CHEBI_26439,pyrimidine nucleoside triphosphate +13.3439306,CHEBI:33637,http://purl.obolibrary.org/obo/CHEBI_33637,ortho-fused compound +13.3439306,CHEBI:33942,http://purl.obolibrary.org/obo/CHEBI_33942,ribose +13.3439306,CHEBI:37043,http://purl.obolibrary.org/obo/CHEBI_37043,pyrimidine 2'-deoxyribonucleoside 5'-triphosphate +13.3439306,CHEBI:66993,http://purl.obolibrary.org/obo/CHEBI_66993,tocolytic agent +13.3439306,CL:0000713,http://purl.obolibrary.org/obo/CL_0000713,corona radiata cell +13.3439306,CL:0001069,http://purl.obolibrary.org/obo/CL_0001069,group 2 innate lymphoid cell +13.3439306,CL:0002089,http://purl.obolibrary.org/obo/CL_0002089,"group 2 innate lymphoid cell, mouse" +13.3439306,CL:0002538,http://purl.obolibrary.org/obo/CL_0002538,intrahepatic cholangiocyte +13.3439306,CL:0002605,http://purl.obolibrary.org/obo/CL_0002605,astrocyte of the cerebral cortex +13.3439306,CL:0005000,http://purl.obolibrary.org/obo/CL_0005000,spinal cord interneuron +13.3439306,CL:1000601,http://purl.obolibrary.org/obo/CL_1000601,ureteral cell +13.3439306,DRUGBANK:DB01038,http://purl.obolibrary.org/obo/DRUGBANK_DB01038,none +13.3439306,DRUGBANK:DB01442,http://purl.obolibrary.org/obo/DRUGBANK_DB01442,none +13.3439306,DRUGBANK:DB01616,http://purl.obolibrary.org/obo/DRUGBANK_DB01616,none +13.3439306,DRUGBANK:DB02690,http://purl.obolibrary.org/obo/DRUGBANK_DB02690,none +13.3439306,DRUGBANK:DB04799,http://purl.obolibrary.org/obo/DRUGBANK_DB04799,none +13.3439306,DRUGBANK:DB04847,http://purl.obolibrary.org/obo/DRUGBANK_DB04847,none +13.3439306,DRUGBANK:DB04874,http://purl.obolibrary.org/obo/DRUGBANK_DB04874,none +13.3439306,DRUGBANK:DB05439,http://purl.obolibrary.org/obo/DRUGBANK_DB05439,none +13.3439306,DRUGBANK:DB05487,http://purl.obolibrary.org/obo/DRUGBANK_DB05487,none +13.3439306,DRUGBANK:DB06436,http://purl.obolibrary.org/obo/DRUGBANK_DB06436,none +13.3439306,DRUGBANK:DB06606,http://purl.obolibrary.org/obo/DRUGBANK_DB06606,none +13.3439306,DRUGBANK:DB06636,http://purl.obolibrary.org/obo/DRUGBANK_DB06636,none +13.3439306,DRUGBANK:DB07485,http://purl.obolibrary.org/obo/DRUGBANK_DB07485,none +13.3439306,DRUGBANK:DB08486,http://purl.obolibrary.org/obo/DRUGBANK_DB08486,none +13.3439306,DRUGBANK:DB08940,http://purl.obolibrary.org/obo/DRUGBANK_DB08940,none +13.3439306,DRUGBANK:DB08989,http://purl.obolibrary.org/obo/DRUGBANK_DB08989,none +13.3439306,DRUGBANK:DB09144,http://purl.obolibrary.org/obo/DRUGBANK_DB09144,none +13.3439306,DRUGBANK:DB10577,http://purl.obolibrary.org/obo/DRUGBANK_DB10577,none +13.3439306,DRUGBANK:DB10969,http://purl.obolibrary.org/obo/DRUGBANK_DB10969,none +13.3439306,DRUGBANK:DB11160,http://purl.obolibrary.org/obo/DRUGBANK_DB11160,none +13.3439306,DRUGBANK:DB11540,http://purl.obolibrary.org/obo/DRUGBANK_DB11540,none +13.3439306,DRUGBANK:DB11570,http://purl.obolibrary.org/obo/DRUGBANK_DB11570,none +13.3439306,DRUGBANK:DB11667,http://purl.obolibrary.org/obo/DRUGBANK_DB11667,none +13.3439306,DRUGBANK:DB11688,http://purl.obolibrary.org/obo/DRUGBANK_DB11688,none +13.3439306,DRUGBANK:DB11965,http://purl.obolibrary.org/obo/DRUGBANK_DB11965,none +13.3439306,DRUGBANK:DB11978,http://purl.obolibrary.org/obo/DRUGBANK_DB11978,none +13.3439306,DRUGBANK:DB13321,http://purl.obolibrary.org/obo/DRUGBANK_DB13321,none +13.3439306,DRUGBANK:DB13335,http://purl.obolibrary.org/obo/DRUGBANK_DB13335,none +13.3439306,DRUGBANK:DB13593,http://purl.obolibrary.org/obo/DRUGBANK_DB13593,none +13.3439306,DRUGBANK:DB13615,http://purl.obolibrary.org/obo/DRUGBANK_DB13615,none +13.3439306,DRUGBANK:DB13720,http://purl.obolibrary.org/obo/DRUGBANK_DB13720,none +13.3439306,DRUGBANK:DB13727,http://purl.obolibrary.org/obo/DRUGBANK_DB13727,none +13.3439306,DRUGBANK:DB15399,http://purl.obolibrary.org/obo/DRUGBANK_DB15399,none +13.3439306,GO:0001658,http://purl.obolibrary.org/obo/GO_0001658,branching involved in ureteric bud morphogenesis +13.3439306,GO:0002551,http://purl.obolibrary.org/obo/GO_0002551,mast cell chemotaxis +13.3439306,GO:0003943,http://purl.obolibrary.org/obo/GO_0003943,N-acetylgalactosamine-4-sulfatase activity +13.3439306,GO:0003976,http://purl.obolibrary.org/obo/GO_0003976,UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity +13.3439306,GO:0004071,http://purl.obolibrary.org/obo/GO_0004071,aspartate-ammonia ligase activity +13.3439306,GO:0004492,http://purl.obolibrary.org/obo/GO_0004492,methylmalonyl-CoA decarboxylase activity +13.3439306,GO:0004493,http://purl.obolibrary.org/obo/GO_0004493,methylmalonyl-CoA epimerase activity +13.3439306,GO:0004837,http://purl.obolibrary.org/obo/GO_0004837,tyrosine decarboxylase activity +13.3439306,GO:0005104,http://purl.obolibrary.org/obo/GO_0005104,fibroblast growth factor receptor binding +13.3439306,GO:0005835,http://purl.obolibrary.org/obo/GO_0005835,fatty acid synthase complex +13.3439306,GO:0006369,http://purl.obolibrary.org/obo/GO_0006369,termination of RNA polymerase II transcription +13.3439306,GO:0006386,http://purl.obolibrary.org/obo/GO_0006386,termination of RNA polymerase III transcription +13.3439306,GO:0008817,http://purl.obolibrary.org/obo/GO_0008817,"cob(I)yrinic acid a,c-diamide adenosyltransferase activity" +13.3439306,GO:0009626,http://purl.obolibrary.org/obo/GO_0009626,plant-type hypersensitive response +13.3439306,GO:0010810,http://purl.obolibrary.org/obo/GO_0010810,regulation of cell-substrate adhesion +13.3439306,GO:0015450,http://purl.obolibrary.org/obo/GO_0015450,protein-transporting ATPase activity +13.3439306,GO:0019377,http://purl.obolibrary.org/obo/GO_0019377,glycolipid catabolic process +13.3439306,GO:0030353,http://purl.obolibrary.org/obo/GO_0030353,fibroblast growth factor receptor antagonist activity +13.3439306,GO:0030888,http://purl.obolibrary.org/obo/GO_0030888,regulation of B cell proliferation +13.3439306,GO:0032479,http://purl.obolibrary.org/obo/GO_0032479,regulation of type I interferon production +13.3439306,GO:0032588,http://purl.obolibrary.org/obo/GO_0032588,trans-Golgi network membrane +13.3439306,GO:0032637,http://purl.obolibrary.org/obo/GO_0032637,interleukin-8 production +13.3439306,GO:0032703,http://purl.obolibrary.org/obo/GO_0032703,negative regulation of interleukin-2 production +13.3439306,GO:0034050,http://purl.obolibrary.org/obo/GO_0034050,programmed cell death induced by symbiont +13.3439306,GO:0034068,http://purl.obolibrary.org/obo/GO_0034068,aminoglycoside nucleotidyltransferase activity +13.3439306,GO:0035099,http://purl.obolibrary.org/obo/GO_0035099,hemocyte migration +13.3439306,GO:0035377,http://purl.obolibrary.org/obo/GO_0035377,transepithelial water transport +13.3439306,GO:0035855,http://purl.obolibrary.org/obo/GO_0035855,megakaryocyte development +13.3439306,GO:0036407,http://purl.obolibrary.org/obo/GO_0036407,mycolate outer membrane +13.3439306,GO:0038161,http://purl.obolibrary.org/obo/GO_0038161,prolactin signaling pathway +13.3439306,GO:0042600,http://purl.obolibrary.org/obo/GO_0042600,egg chorion +13.3439306,GO:0042732,http://purl.obolibrary.org/obo/GO_0042732,D-xylose metabolic process +13.3439306,GO:0043186,http://purl.obolibrary.org/obo/GO_0043186,P granule +13.3439306,GO:0043364,http://purl.obolibrary.org/obo/GO_0043364,glycyl-radical enzyme activating activity +13.3439306,GO:0043365,http://purl.obolibrary.org/obo/GO_0043365,[formate-C-acetyltransferase]-activating enzyme activity +13.3439306,GO:0044088,http://purl.obolibrary.org/obo/GO_0044088,regulation of vacuole organization +13.3439306,GO:0045489,http://purl.obolibrary.org/obo/GO_0045489,pectin biosynthetic process +13.3439306,GO:0046629,http://purl.obolibrary.org/obo/GO_0046629,gamma-delta T cell activation +13.3439306,GO:0047736,http://purl.obolibrary.org/obo/GO_0047736,cellobiose epimerase activity +13.3439306,GO:0048145,http://purl.obolibrary.org/obo/GO_0048145,regulation of fibroblast proliferation +13.3439306,GO:0048664,http://purl.obolibrary.org/obo/GO_0048664,neuron fate determination +13.3439306,GO:0048798,http://purl.obolibrary.org/obo/GO_0048798,swim bladder inflation +13.3439306,GO:0051063,http://purl.obolibrary.org/obo/GO_0051063,CDP reductase activity +13.3439306,GO:0051552,http://purl.obolibrary.org/obo/GO_0051552,flavone metabolic process +13.3439306,GO:0051612,http://purl.obolibrary.org/obo/GO_0051612,negative regulation of serotonin uptake +13.3439306,GO:0051702,http://purl.obolibrary.org/obo/GO_0051702,biological process involved in interaction with symbiont +13.3439306,GO:0055046,http://purl.obolibrary.org/obo/GO_0055046,microgametogenesis +13.3439306,GO:0060175,http://purl.obolibrary.org/obo/GO_0060175,brain-derived neurotrophic factor-activated receptor activity +13.3439306,GO:0060343,http://purl.obolibrary.org/obo/GO_0060343,trabecula formation +13.3439306,GO:0061690,http://purl.obolibrary.org/obo/GO_0061690,lipoamidase activity +13.3439306,GO:0070268,http://purl.obolibrary.org/obo/GO_0070268,cornification +13.3439306,GO:0070509,http://purl.obolibrary.org/obo/GO_0070509,calcium ion import +13.3439306,GO:0070813,http://purl.obolibrary.org/obo/GO_0070813,hydrogen sulfide metabolic process +13.3439306,GO:0071616,http://purl.obolibrary.org/obo/GO_0071616,acyl-CoA biosynthetic process +13.3439306,GO:0098583,http://purl.obolibrary.org/obo/GO_0098583,learned vocalization behavior +13.3439306,GO:1900125,http://purl.obolibrary.org/obo/GO_1900125,regulation of hyaluronan biosynthetic process +13.3439306,GO:2000214,http://purl.obolibrary.org/obo/GO_2000214,regulation of proline metabolic process +13.3439306,GO:2001142,http://purl.obolibrary.org/obo/GO_2001142,nicotinate transport +13.3439306,GO:2001233,http://purl.obolibrary.org/obo/GO_2001233,regulation of apoptotic signaling pathway +13.3439306,HP:0010528,http://purl.obolibrary.org/obo/HP_0010528,Prosopagnosia +13.3439306,HP:0012837,http://purl.obolibrary.org/obo/HP_0012837,Generalized +13.3439306,HP:0100584,http://purl.obolibrary.org/obo/HP_0100584,Endocarditis +13.3439306,MONDO:0000153,http://purl.obolibrary.org/obo/MONDO_0000153,transposition of the great arteries +13.3439306,MONDO:0000734,http://purl.obolibrary.org/obo/MONDO_0000734,Ohdo syndrome and variants +13.3439306,MONDO:0001114,http://purl.obolibrary.org/obo/MONDO_0001114,bacterial myocarditis +13.3439306,MONDO:0001443,http://purl.obolibrary.org/obo/MONDO_0001443,tympanosclerosis +13.3439306,MONDO:0002574,http://purl.obolibrary.org/obo/MONDO_0002574,prostate embryonal rhabdomyosarcoma +13.3439306,MONDO:0002748,http://purl.obolibrary.org/obo/MONDO_0002748,rectum mucinous adenocarcinoma +13.3439306,MONDO:0004422,http://purl.obolibrary.org/obo/MONDO_0004422,cerebral falx meningioma +13.3439306,MONDO:0006059,http://purl.obolibrary.org/obo/MONDO_0006059,nasal cavity squamous cell carcinoma +13.3439306,MONDO:0006067,http://purl.obolibrary.org/obo/MONDO_0006067,acinar prostate mucinous adenocarcinoma +13.3439306,MONDO:0006078,http://purl.obolibrary.org/obo/MONDO_0006078,AIDS-related primary central nervous system lymphoma +13.3439306,MONDO:0006357,http://purl.obolibrary.org/obo/MONDO_0006357,parotid gland carcinoma ex pleomorphic adenoma +13.3439306,MONDO:0006469,http://purl.obolibrary.org/obo/MONDO_0006469,tibial adamantinoma +13.3439306,MONDO:0006739,http://purl.obolibrary.org/obo/MONDO_0006739,Ehrlich tumor carcinoma +13.3439306,MONDO:0006831,http://purl.obolibrary.org/obo/MONDO_0006831,leukostasis +13.3439306,MONDO:0007011,http://purl.obolibrary.org/obo/MONDO_0007011,uveoparotid fever +13.3439306,MONDO:0007677,http://purl.obolibrary.org/obo/MONDO_0007677,hyperglycinuria +13.3439306,MONDO:0007886,http://purl.obolibrary.org/obo/MONDO_0007886,uterine corpus leiomyoma +13.3439306,MONDO:0009031,http://purl.obolibrary.org/obo/MONDO_0009031,craniodiaphyseal dysplasia +13.3439306,MONDO:0009214,http://purl.obolibrary.org/obo/MONDO_0009214,Fanconi anemia complementation group D2 +13.3439306,MONDO:0009448,http://purl.obolibrary.org/obo/MONDO_0009448,iminoglycinuria +13.3439306,MONDO:0009642,http://purl.obolibrary.org/obo/MONDO_0009642,orofaciodigital syndrome type II +13.3439306,MONDO:0009908,http://purl.obolibrary.org/obo/MONDO_0009908,pterin-4 alpha-carbinolamine dehydratase 1 deficiency +13.3439306,MONDO:0010229,http://purl.obolibrary.org/obo/MONDO_0010229,"alopecia, congenital" +13.3439306,MONDO:0010537,http://purl.obolibrary.org/obo/MONDO_0010537,Borjeson-Forssman-Lehmann syndrome +13.3439306,MONDO:0011268,http://purl.obolibrary.org/obo/MONDO_0011268,"renal tubular acidosis, distal, 3, with or without sensorineural hearing loss" +13.3439306,MONDO:0011405,http://purl.obolibrary.org/obo/MONDO_0011405,poikiloderma with neutropenia +13.3439306,MONDO:0011730,http://purl.obolibrary.org/obo/MONDO_0011730,fumaric aciduria +13.3439306,MONDO:0012316,http://purl.obolibrary.org/obo/MONDO_0012316,Majeed syndrome +13.3439306,MONDO:0015525,http://purl.obolibrary.org/obo/MONDO_0015525,congenital pseudoarthrosis of the limbs +13.3439306,MONDO:0015528,http://purl.obolibrary.org/obo/MONDO_0015528,congenital epulis +13.3439306,MONDO:0016435,http://purl.obolibrary.org/obo/MONDO_0016435,acquired dermis elastic tissue disorder with decreased elastic tissue +13.3439306,MONDO:0017462,http://purl.obolibrary.org/obo/MONDO_0017462,congenital pseudoarthrosis of the tibia +13.3439306,MONDO:0017710,http://purl.obolibrary.org/obo/MONDO_0017710,congenital systemic veins anomaly +13.3439306,MONDO:0019020,http://purl.obolibrary.org/obo/MONDO_0019020,PANDAS +13.3439306,MONDO:0021282,http://purl.obolibrary.org/obo/MONDO_0021282,malignant teratoma of testis +13.3439306,MONDO:0022792,http://purl.obolibrary.org/obo/MONDO_0022792,coccygodynia +13.3439306,MONDO:0023597,http://purl.obolibrary.org/obo/MONDO_0023597,laryngeal papillomatosis +13.3439306,MONDO:0100106,http://purl.obolibrary.org/obo/MONDO_0100106,neonatal epileptic encephalopathy +13.3439306,MONDO:0100161,http://purl.obolibrary.org/obo/MONDO_0100161,hyperkalemic renal tubular acidosis +13.3439306,NCBITaxon:103442,http://purl.obolibrary.org/obo/NCBITaxon_103442,none +13.3439306,NCBITaxon:11307,http://purl.obolibrary.org/obo/NCBITaxon_11307,none +13.3439306,NCBITaxon:114326,http://purl.obolibrary.org/obo/NCBITaxon_114326,none +13.3439306,NCBITaxon:119060,http://purl.obolibrary.org/obo/NCBITaxon_119060,Burkholderiaceae +13.3439306,NCBITaxon:12040,http://purl.obolibrary.org/obo/NCBITaxon_12040,none +13.3439306,NCBITaxon:12063,http://purl.obolibrary.org/obo/NCBITaxon_12063,none +13.3439306,NCBITaxon:31184,http://purl.obolibrary.org/obo/NCBITaxon_31184,none +13.3439306,NCBITaxon:31185,http://purl.obolibrary.org/obo/NCBITaxon_31185,none +13.3439306,NCBITaxon:32306,http://purl.obolibrary.org/obo/NCBITaxon_32306,none +13.3439306,NCBITaxon:377270,http://purl.obolibrary.org/obo/NCBITaxon_377270,none +13.3439306,NCBITaxon:41938,http://purl.obolibrary.org/obo/NCBITaxon_41938,none +13.3439306,NCBITaxon:53549,http://purl.obolibrary.org/obo/NCBITaxon_53549,Sabethini +13.3439306,NCBITaxon:6020,http://purl.obolibrary.org/obo/NCBITaxon_6020,none +13.3439306,NCBITaxon:62079,http://purl.obolibrary.org/obo/NCBITaxon_62079,none +13.3439306,NCBITaxon:64951,http://purl.obolibrary.org/obo/NCBITaxon_64951,none +13.3439306,NCBITaxon:680113,http://purl.obolibrary.org/obo/NCBITaxon_680113,none +13.3439306,NCBITaxon:7250,http://purl.obolibrary.org/obo/NCBITaxon_7250,none +13.3439306,NCBITaxon:8397,http://purl.obolibrary.org/obo/NCBITaxon_8397,none +13.3439306,PR:000001314,http://purl.obolibrary.org/obo/PR_000001314,Fc receptor-like protein 5 +13.3439306,PR:000001498,http://purl.obolibrary.org/obo/PR_000001498,pyroglutamylated RF-amide peptide receptor +13.3439306,PR:000003656,http://purl.obolibrary.org/obo/PR_000003656,long-chain-fatty-acid--CoA ligase ACSBG2 +13.3439306,PR:000003757,http://purl.obolibrary.org/obo/PR_000003757,adenylate cyclase type 6 +13.3439306,PR:000003790,http://purl.obolibrary.org/obo/PR_000003790,ADP-ribose glycohydrolase ARH3 +13.3439306,PR:000004103,http://purl.obolibrary.org/obo/PR_000004103,AP-2 complex subunit sigma +13.3439306,PR:000004308,http://purl.obolibrary.org/obo/PR_000004308,actin-related protein 2/3 complex subunit 1A +13.3439306,PR:000004440,http://purl.obolibrary.org/obo/PR_000004440,sodium/potassium-transporting ATPase subunit beta-2 +13.3439306,PR:000004729,http://purl.obolibrary.org/obo/PR_000004729,protein BEX2 +13.3439306,PR:000004767,http://purl.obolibrary.org/obo/PR_000004767,golgin-45 +13.3439306,PR:000005020,http://purl.obolibrary.org/obo/PR_000005020,calpain-8 +13.3439306,PR:000005582,http://purl.obolibrary.org/obo/PR_000005582,CAP-Gly domain-containing linker protein 2 +13.3439306,PR:000005741,http://purl.obolibrary.org/obo/PR_000005741,COP9 signalosome complex subunit 4 +13.3439306,PR:000005964,http://purl.obolibrary.org/obo/PR_000005964,cystatin-SA +13.3439306,PR:000006009,http://purl.obolibrary.org/obo/PR_000006009,alpha-catulin +13.3439306,PR:000006142,http://purl.obolibrary.org/obo/PR_000006142,cytochrome P450 4F3 +13.3439306,PR:000006257,http://purl.obolibrary.org/obo/PR_000006257,disheveled-associated activator of morphogenesis 2 +13.3439306,PR:000006442,http://purl.obolibrary.org/obo/PR_000006442,diacylglycerol kinase alpha +13.3439306,PR:000006466,http://purl.obolibrary.org/obo/PR_000006466,dehydrogenase/reductase SDR family member 4 +13.3439306,PR:000006557,http://purl.obolibrary.org/obo/PR_000006557,"dynein heavy chain 11, axonemal" +13.3439306,PR:000006668,http://purl.obolibrary.org/obo/PR_000006668,developmental pluripotency-associated 5 protein +13.3439306,PR:000006704,http://purl.obolibrary.org/obo/PR_000006704,dermatan-sulfate epimerase +13.3439306,PR:000006757,http://purl.obolibrary.org/obo/PR_000006757,dual specificity protein phosphatase 7 +13.3439306,PR:000007091,http://purl.obolibrary.org/obo/PR_000007091,ectonucleotide pyrophosphatase/phosphodiesterase family member 7 +13.3439306,PR:000007275,http://purl.obolibrary.org/obo/PR_000007275,eyes absent homolog 3 +13.3439306,PR:000007364,http://purl.obolibrary.org/obo/PR_000007364,fibrillin-3 +13.3439306,PR:000007589,http://purl.obolibrary.org/obo/PR_000007589,folliculin-interacting protein 1 +13.3439306,PR:000008500,http://purl.obolibrary.org/obo/PR_000008500,heme-binding protein 2 +13.3439306,PR:000008918,http://purl.obolibrary.org/obo/PR_000008918,interferon alpha-5 +13.3439306,PR:000008963,http://purl.obolibrary.org/obo/PR_000008963,immunoglobulin heavy constant mu +13.3439306,PR:000008992,http://purl.obolibrary.org/obo/PR_000008992,interleukin-1 receptor accessory protein-like 1 +13.3439306,PR:000009297,http://purl.obolibrary.org/obo/PR_000009297,kinesin-like protein KIF1C +13.3439306,PR:000009301,http://purl.obolibrary.org/obo/PR_000009301,kinesin-like protein KIF22 +13.3439306,PR:000009423,http://purl.obolibrary.org/obo/PR_000009423,NKG2-E type II integral membrane protein +13.3439306,PR:000009746,http://purl.obolibrary.org/obo/PR_000009746,protein LDOC1 +13.3439306,PR:000009946,http://purl.obolibrary.org/obo/PR_000009946,leucine-rich repeat transmembrane neuronal protein 1 +13.3439306,PR:000009980,http://purl.obolibrary.org/obo/PR_000009980,protein LTV1 +13.3439306,PR:000010291,http://purl.obolibrary.org/obo/PR_000010291,mediator of RNA polymerase II transcription subunit 19 +13.3439306,PR:000010374,http://purl.obolibrary.org/obo/PR_000010374,UNC93-like protein MFSD11 +13.3439306,PR:000011028,http://purl.obolibrary.org/obo/PR_000011028,non-specific cytotoxic cell receptor protein 1 +13.3439306,PR:000011234,http://purl.obolibrary.org/obo/PR_000011234,protein NKG7 +13.3439306,PR:000011519,http://purl.obolibrary.org/obo/PR_000011519,nuclear pore complex protein Nup50 +13.3439306,PR:000012284,http://purl.obolibrary.org/obo/PR_000012284,poly(ADP-ribose) glycohydrolase +13.3439306,PR:000012609,http://purl.obolibrary.org/obo/PR_000012609,6-phosphogluconolactonase +13.3439306,PR:000012725,http://purl.obolibrary.org/obo/PR_000012725,phosphatidylinositol 3-kinase regulatory subunit beta +13.3439306,PR:000012810,http://purl.obolibrary.org/obo/PR_000012810,phospholipase A2 group V +13.3439306,PR:000012984,http://purl.obolibrary.org/obo/PR_000012984,DNA-directed RNA polymerases I and III subunit RPAC1 +13.3439306,PR:000013053,http://purl.obolibrary.org/obo/PR_000013053,phospholipid phosphatase 2 +13.3439306,PR:000013173,http://purl.obolibrary.org/obo/PR_000013173,basic salivary proline-rich protein 2 +13.3439306,PR:000013374,http://purl.obolibrary.org/obo/PR_000013374,proteasome subunit beta type-6 +13.3439306,PR:000013521,http://purl.obolibrary.org/obo/PR_000013521,"glycogen phosphorylase, liver form" +13.3439306,PR:000013534,http://purl.obolibrary.org/obo/PR_000013534,none +13.3439306,PR:000014018,http://purl.obolibrary.org/obo/PR_000014018,RAD50-interacting protein 1 +13.3439306,PR:000014233,http://purl.obolibrary.org/obo/PR_000014233,60S ribosomal protein L7a +13.3439306,PR:000015000,http://purl.obolibrary.org/obo/PR_000015000,sodium/potassium/calcium exchanger 3 +13.3439306,PR:000015328,http://purl.obolibrary.org/obo/PR_000015328,smad nuclear-interacting protein 1 +13.3439306,PR:000015332,http://purl.obolibrary.org/obo/PR_000015332,U5 small nuclear ribonucleoprotein 200 kDa helicase +13.3439306,PR:000015822,http://purl.obolibrary.org/obo/PR_000015822,sulfotransferase 1C2 +13.3439306,PR:000016025,http://purl.obolibrary.org/obo/PR_000016025,transcription initiation factor TFIID subunit 2 +13.3439306,PR:000016044,http://purl.obolibrary.org/obo/PR_000016044,T-cell acute lymphocytic leukemia protein 2 +13.3439306,PR:000016519,http://purl.obolibrary.org/obo/PR_000016519,trinucleotide repeat-containing gene 6B protein +13.3439306,PR:000016614,http://purl.obolibrary.org/obo/PR_000016614,trafficking protein particle complex subunit 3 +13.3439306,PR:000016642,http://purl.obolibrary.org/obo/PR_000016642,E3 ubiquitin-protein ligase TRIM11 +13.3439306,PR:000016671,http://purl.obolibrary.org/obo/PR_000016671,thyroid receptor-interacting protein 11 +13.3439306,PR:000017160,http://purl.obolibrary.org/obo/PR_000017160,ubiquitin carboxyl-terminal hydrolase 21 +13.3439306,PR:000017326,http://purl.obolibrary.org/obo/PR_000017326,vacuolar protein-sorting-associated protein 25 +13.3439306,PR:000017400,http://purl.obolibrary.org/obo/PR_000017400,WD repeat-containing protein 82 +13.3439306,PR:000018254,http://purl.obolibrary.org/obo/PR_000018254,none +13.3439306,PR:000022033,http://purl.obolibrary.org/obo/PR_000022033,none +13.3439306,PR:000022479,http://purl.obolibrary.org/obo/PR_000022479,none +13.3439306,PR:000022785,http://purl.obolibrary.org/obo/PR_000022785,none +13.3439306,PR:000022892,http://purl.obolibrary.org/obo/PR_000022892,none +13.3439306,PR:000023055,http://purl.obolibrary.org/obo/PR_000023055,none +13.3439306,PR:000023088,http://purl.obolibrary.org/obo/PR_000023088,none +13.3439306,PR:000024081,http://purl.obolibrary.org/obo/PR_000024081,none +13.3439306,PR:000024132,http://purl.obolibrary.org/obo/PR_000024132,none +13.3439306,PR:000027008,http://purl.obolibrary.org/obo/PR_000027008,N-acetylglucosaminyl-phosphatidylinositol biosynthetic protein +13.3439306,PR:000027968,http://purl.obolibrary.org/obo/PR_000027968,none +13.3439306,PR:000028941,http://purl.obolibrary.org/obo/PR_000028941,none +13.3439306,PR:000029918,http://purl.obolibrary.org/obo/PR_000029918,none +13.3439306,PR:000030284,http://purl.obolibrary.org/obo/PR_000030284,putative Polycomb group protein ASXL3 +13.3439306,PR:000030307,http://purl.obolibrary.org/obo/PR_000030307,leucine-rich repeat-containing protein 15 +13.3439306,PR:000030768,http://purl.obolibrary.org/obo/PR_000030768,transmembrane protein 26 +13.3439306,PR:000031139,http://purl.obolibrary.org/obo/PR_000031139,putative histone-lysine N-methyltransferase PRDM6 +13.3439306,PR:000031636,http://purl.obolibrary.org/obo/PR_000031636,putative ubiquitin carboxyl-terminal hydrolase 41 +13.3439306,PR:000031982,http://purl.obolibrary.org/obo/PR_000031982,tetratricopeptide repeat protein 37 +13.3439306,PR:000032093,http://purl.obolibrary.org/obo/PR_000032093,a disintegrin and metalloproteinase with thrombospondin motifs 18 +13.3439306,PR:000032418,http://purl.obolibrary.org/obo/PR_000032418,lysophosphatidylserine lipase ABHD12 +13.3439306,PR:000032776,http://purl.obolibrary.org/obo/PR_000032776,WD repeat-containing protein 61 +13.3439306,PR:000033060,http://purl.obolibrary.org/obo/PR_000033060,none +13.3439306,PR:000037029,http://purl.obolibrary.org/obo/PR_000037029,testis-specific basic protein Y 2 +13.3439306,PR:000037437,http://purl.obolibrary.org/obo/PR_000037437,none +13.3439306,PR:P04786,http://purl.obolibrary.org/obo/PR_P04786,none +13.3439306,PR:P24472,http://purl.obolibrary.org/obo/PR_P24472,none +13.3439306,PR:P24807,http://purl.obolibrary.org/obo/PR_P24807,none +13.3439306,PR:P25855,http://purl.obolibrary.org/obo/PR_P25855,none +13.3439306,PR:Q12271,http://purl.obolibrary.org/obo/PR_Q12271,none +13.3439306,PR:Q38893,http://purl.obolibrary.org/obo/PR_Q38893,none +13.3439306,PR:Q5AD72,http://purl.obolibrary.org/obo/PR_Q5AD72,none +13.3439306,PR:Q5U3E5,http://purl.obolibrary.org/obo/PR_Q5U3E5,none +13.3439306,PR:Q6IQE0,http://purl.obolibrary.org/obo/PR_Q6IQE0,none +13.3439306,PR:Q6UXA7,http://purl.obolibrary.org/obo/PR_Q6UXA7,uncharacterized protein C6orf15 (human) +13.3439306,PR:Q8R4U2,http://purl.obolibrary.org/obo/PR_Q8R4U2,none +13.3439306,PR:Q9C5Q2,http://purl.obolibrary.org/obo/PR_Q9C5Q2,none +13.3439306,PR:Q9FH40,http://purl.obolibrary.org/obo/PR_Q9FH40,none +13.3439306,PR:Q9FIJ6,http://purl.obolibrary.org/obo/PR_Q9FIJ6,none +13.3439306,PR:Q9FJL4,http://purl.obolibrary.org/obo/PR_Q9FJL4,none +13.3439306,PR:Q9M7Q7,http://purl.obolibrary.org/obo/PR_Q9M7Q7,none +13.3439306,PR:Q9M881,http://purl.obolibrary.org/obo/PR_Q9M881,none +13.3439306,PR:Q9SX20,http://purl.obolibrary.org/obo/PR_Q9SX20,none +13.3439306,PR:Q9Y448,http://purl.obolibrary.org/obo/PR_Q9Y448,small kinetochore-associated protein (human) +13.3439306,SO:0000178,http://purl.obolibrary.org/obo/SO_0000178,operon +13.3439306,SO:0001174,http://purl.obolibrary.org/obo/SO_0001174,anticodon +13.3439306,SO:1000010,http://purl.obolibrary.org/obo/SO_1000010,pyrimidine_transition +13.3439306,SO:1000026,http://purl.obolibrary.org/obo/SO_1000026,G_to_C_transversion +13.3439306,UBERON:0001249,http://purl.obolibrary.org/obo/UBERON_0001249,spleen lymphoid follicle +13.3439306,UBERON:0001695,http://purl.obolibrary.org/obo/UBERON_0001695,squamous part of temporal bone +13.3439306,UBERON:0002116,http://purl.obolibrary.org/obo/UBERON_0002116,ileum +13.3439306,UBERON:0002246,http://purl.obolibrary.org/obo/UBERON_0002246,dorsal thoracic nucleus +13.3439306,UBERON:0002488,http://purl.obolibrary.org/obo/UBERON_0002488,helix of outer ear +13.3439306,UBERON:0002983,http://purl.obolibrary.org/obo/UBERON_0002983,lateral posterior nucleus of thalamus +13.3439306,UBERON:0003500,http://purl.obolibrary.org/obo/UBERON_0003500,corneal blood vessel +13.3439306,UBERON:0004098,http://purl.obolibrary.org/obo/UBERON_0004098,tibial plateaux +13.3439306,UBERON:0004546,http://purl.obolibrary.org/obo/UBERON_0004546,cribriform plate +13.3439306,UBERON:0005043,http://purl.obolibrary.org/obo/UBERON_0005043,mucosa of nasolacrimal duct +13.3439306,UBERON:0005992,http://purl.obolibrary.org/obo/UBERON_0005992,pulmonary valve cusp +13.3439306,UBERON:0006116,http://purl.obolibrary.org/obo/UBERON_0006116,vagal nerve fiber bundle +13.3439306,UBERON:0008967,http://purl.obolibrary.org/obo/UBERON_0008967,centrum semiovale +13.3439306,UBERON:0010224,http://purl.obolibrary.org/obo/UBERON_0010224,right pupil +13.3439306,UBERON:0011820,http://purl.obolibrary.org/obo/UBERON_0011820,atrioventricular region +13.3439306,UBERON:0012441,http://purl.obolibrary.org/obo/UBERON_0012441,endothelium of peritubular capillary +13.3439306,UBERON:0013616,http://purl.obolibrary.org/obo/UBERON_0013616,primary molar tooth +13.3439306,UBERON:0014648,http://purl.obolibrary.org/obo/UBERON_0014648,hemisphere part of cerebellar posterior lobe +13.3439306,UBERON:0015064,http://purl.obolibrary.org/obo/UBERON_0015064,autopod cartilage +13.3439306,UBERON:0016393,http://purl.obolibrary.org/obo/UBERON_0016393,deep parotid lymph node +13.3439306,UBERON:0018294,http://purl.obolibrary.org/obo/UBERON_0018294,premolar 1 +13.3713295,CHEBI:15033,http://purl.obolibrary.org/obo/CHEBI_15033,thioredoxin +13.3713295,CHEBI:17126,http://purl.obolibrary.org/obo/CHEBI_17126,carnitine +13.3713295,CHEBI:17625,http://purl.obolibrary.org/obo/CHEBI_17625,dUTP +13.3713295,CHEBI:22676,http://purl.obolibrary.org/obo/CHEBI_22676,auxin +13.3713295,CHEBI:23003,http://purl.obolibrary.org/obo/CHEBI_23003,carbamate ester +13.3713295,CHEBI:25872,http://purl.obolibrary.org/obo/CHEBI_25872,pentacyclic triterpenoid +13.3713295,CHEBI:26710,http://purl.obolibrary.org/obo/CHEBI_26710,sodium chloride +13.3713295,CHEBI:28669,http://purl.obolibrary.org/obo/CHEBI_28669,bacitracin +13.3713295,CHEBI:28748,http://purl.obolibrary.org/obo/CHEBI_28748,doxorubicin +13.3713295,CHEBI:30769,http://purl.obolibrary.org/obo/CHEBI_30769,citric acid +13.3713295,CHEBI:49302,http://purl.obolibrary.org/obo/CHEBI_49302,2-hydroxy monocarboxylic acid +13.3713295,CHEBI:51286,http://purl.obolibrary.org/obo/CHEBI_51286,tetracenequinones +13.3713295,CHEBI:53183,http://purl.obolibrary.org/obo/CHEBI_53183,apo carotenoid +13.3713295,CHEBI:58212,http://purl.obolibrary.org/obo/CHEBI_58212,dUTP(3-) +13.3713295,CHEBI:61555,http://purl.obolibrary.org/obo/CHEBI_61555,dUTP(4-) +13.3713295,CHEBI:6827,http://purl.obolibrary.org/obo/CHEBI_6827,methicillin +13.3713295,CHEBI:81580,http://purl.obolibrary.org/obo/CHEBI_81580,Prolactin +13.3713295,CHEBI:8296,http://purl.obolibrary.org/obo/CHEBI_8296,Poly-gamma-D-glutamate +13.3713295,CL:0000939,http://purl.obolibrary.org/obo/CL_0000939,"CD16-positive, CD56-dim natural killer cell, human" +13.3713295,CL:0002278,http://purl.obolibrary.org/obo/CL_0002278,GIP cell +13.3713295,CL:0002560,http://purl.obolibrary.org/obo/CL_0002560,inner root sheath cell +13.3713295,DRUGBANK:DB00771,http://purl.obolibrary.org/obo/DRUGBANK_DB00771,none +13.3713295,DRUGBANK:DB00902,http://purl.obolibrary.org/obo/DRUGBANK_DB00902,none +13.3713295,DRUGBANK:DB01478,http://purl.obolibrary.org/obo/DRUGBANK_DB01478,none +13.3713295,DRUGBANK:DB01587,http://purl.obolibrary.org/obo/DRUGBANK_DB01587,none +13.3713295,DRUGBANK:DB01782,http://purl.obolibrary.org/obo/DRUGBANK_DB01782,none +13.3713295,DRUGBANK:DB03126,http://purl.obolibrary.org/obo/DRUGBANK_DB03126,none +13.3713295,DRUGBANK:DB03788,http://purl.obolibrary.org/obo/DRUGBANK_DB03788,none +13.3713295,DRUGBANK:DB04499,http://purl.obolibrary.org/obo/DRUGBANK_DB04499,none +13.3713295,DRUGBANK:DB05420,http://purl.obolibrary.org/obo/DRUGBANK_DB05420,none +13.3713295,DRUGBANK:DB06177,http://purl.obolibrary.org/obo/DRUGBANK_DB06177,none +13.3713295,DRUGBANK:DB06706,http://purl.obolibrary.org/obo/DRUGBANK_DB06706,none +13.3713295,DRUGBANK:DB08711,http://purl.obolibrary.org/obo/DRUGBANK_DB08711,none +13.3713295,DRUGBANK:DB08766,http://purl.obolibrary.org/obo/DRUGBANK_DB08766,none +13.3713295,DRUGBANK:DB09122,http://purl.obolibrary.org/obo/DRUGBANK_DB09122,none +13.3713295,DRUGBANK:DB09234,http://purl.obolibrary.org/obo/DRUGBANK_DB09234,none +13.3713295,DRUGBANK:DB10642,http://purl.obolibrary.org/obo/DRUGBANK_DB10642,none +13.3713295,DRUGBANK:DB11385,http://purl.obolibrary.org/obo/DRUGBANK_DB11385,none +13.3713295,DRUGBANK:DB11761,http://purl.obolibrary.org/obo/DRUGBANK_DB11761,none +13.3713295,DRUGBANK:DB12078,http://purl.obolibrary.org/obo/DRUGBANK_DB12078,none +13.3713295,DRUGBANK:DB12298,http://purl.obolibrary.org/obo/DRUGBANK_DB12298,none +13.3713295,DRUGBANK:DB12370,http://purl.obolibrary.org/obo/DRUGBANK_DB12370,none +13.3713295,DRUGBANK:DB12559,http://purl.obolibrary.org/obo/DRUGBANK_DB12559,none +13.3713295,DRUGBANK:DB12593,http://purl.obolibrary.org/obo/DRUGBANK_DB12593,none +13.3713295,DRUGBANK:DB13004,http://purl.obolibrary.org/obo/DRUGBANK_DB13004,none +13.3713295,DRUGBANK:DB13119,http://purl.obolibrary.org/obo/DRUGBANK_DB13119,none +13.3713295,DRUGBANK:DB14232,http://purl.obolibrary.org/obo/DRUGBANK_DB14232,none +13.3713295,DRUGBANK:DB14647,http://purl.obolibrary.org/obo/DRUGBANK_DB14647,none +13.3713295,DRUGBANK:DB14749,http://purl.obolibrary.org/obo/DRUGBANK_DB14749,none +13.3713295,DRUGBANK:DB14904,http://purl.obolibrary.org/obo/DRUGBANK_DB14904,none +13.3713295,DRUGBANK:DB15373,http://purl.obolibrary.org/obo/DRUGBANK_DB15373,none +13.3713295,DRUGBANK:DB16088,http://purl.obolibrary.org/obo/DRUGBANK_DB16088,none +13.3713295,GO:0001726,http://purl.obolibrary.org/obo/GO_0001726,ruffle +13.3713295,GO:0002699,http://purl.obolibrary.org/obo/GO_0002699,positive regulation of immune effector process +13.3713295,GO:0003056,http://purl.obolibrary.org/obo/GO_0003056,regulation of vascular associated smooth muscle contraction +13.3713295,GO:0003866,http://purl.obolibrary.org/obo/GO_0003866,3-phosphoshikimate 1-carboxyvinyltransferase activity +13.3713295,GO:0004350,http://purl.obolibrary.org/obo/GO_0004350,glutamate-5-semialdehyde dehydrogenase activity +13.3713295,GO:0005344,http://purl.obolibrary.org/obo/GO_0005344,oxygen carrier activity +13.3713295,GO:0006027,http://purl.obolibrary.org/obo/GO_0006027,glycosaminoglycan catabolic process +13.3713295,GO:0006115,http://purl.obolibrary.org/obo/GO_0006115,ethanol biosynthetic process +13.3713295,GO:0006670,http://purl.obolibrary.org/obo/GO_0006670,sphingosine metabolic process +13.3713295,GO:0006726,http://purl.obolibrary.org/obo/GO_0006726,eye pigment biosynthetic process +13.3713295,GO:0006824,http://purl.obolibrary.org/obo/GO_0006824,cobalt ion transport +13.3713295,GO:0008390,http://purl.obolibrary.org/obo/GO_0008390,testosterone 16-alpha-hydroxylase activity +13.3713295,GO:0008747,http://purl.obolibrary.org/obo/GO_0008747,N-acetylneuraminate lyase activity +13.3713295,GO:0008839,http://purl.obolibrary.org/obo/GO_0008839,4-hydroxy-tetrahydrodipicolinate reductase +13.3713295,GO:0009700,http://purl.obolibrary.org/obo/GO_0009700,indole phytoalexin biosynthetic process +13.3713295,GO:0010120,http://purl.obolibrary.org/obo/GO_0010120,camalexin biosynthetic process +13.3713295,GO:0010126,http://purl.obolibrary.org/obo/GO_0010126,mycothiol metabolic process +13.3713295,GO:0010135,http://purl.obolibrary.org/obo/GO_0010135,ureide metabolic process +13.3713295,GO:0014051,http://purl.obolibrary.org/obo/GO_0014051,gamma-aminobutyric acid secretion +13.3713295,GO:0015795,http://purl.obolibrary.org/obo/GO_0015795,sorbitol transport +13.3713295,GO:0015829,http://purl.obolibrary.org/obo/GO_0015829,valine transport +13.3713295,GO:0015988,http://purl.obolibrary.org/obo/GO_0015988,"energy coupled proton transmembrane transport, against electrochemical gradient" +13.3713295,GO:0016021,http://purl.obolibrary.org/obo/GO_0016021,integral component of membrane +13.3713295,GO:0018105,http://purl.obolibrary.org/obo/GO_0018105,peptidyl-serine phosphorylation +13.3713295,GO:0018209,http://purl.obolibrary.org/obo/GO_0018209,peptidyl-serine modification +13.3713295,GO:0018695,http://purl.obolibrary.org/obo/GO_0018695,4-cresol dehydrogenase (hydroxylating) activity +13.3713295,GO:0031143,http://purl.obolibrary.org/obo/GO_0031143,pseudopodium +13.3713295,GO:0031144,http://purl.obolibrary.org/obo/GO_0031144,proteasome localization +13.3713295,GO:0031161,http://purl.obolibrary.org/obo/GO_0031161,phosphatidylinositol catabolic process +13.3713295,GO:0031643,http://purl.obolibrary.org/obo/GO_0031643,positive regulation of myelination +13.3713295,GO:0033023,http://purl.obolibrary.org/obo/GO_0033023,mast cell homeostasis +13.3713295,GO:0034250,http://purl.obolibrary.org/obo/GO_0034250,positive regulation of cellular amide metabolic process +13.3713295,GO:0034967,http://purl.obolibrary.org/obo/GO_0034967,Set3 complex +13.3713295,GO:0038203,http://purl.obolibrary.org/obo/GO_0038203,TORC2 signaling +13.3713295,GO:0043011,http://purl.obolibrary.org/obo/GO_0043011,myeloid dendritic cell differentiation +13.3713295,GO:0045550,http://purl.obolibrary.org/obo/GO_0045550,geranylgeranyl reductase activity +13.3713295,GO:0045836,http://purl.obolibrary.org/obo/GO_0045836,positive regulation of meiotic nuclear division +13.3713295,GO:0046217,http://purl.obolibrary.org/obo/GO_0046217,indole phytoalexin metabolic process +13.3713295,GO:0046377,http://purl.obolibrary.org/obo/GO_0046377,colanic acid metabolic process +13.3713295,GO:0046417,http://purl.obolibrary.org/obo/GO_0046417,chorismate metabolic process +13.3713295,GO:0046422,http://purl.obolibrary.org/obo/GO_0046422,violaxanthin de-epoxidase activity +13.3713295,GO:0046574,http://purl.obolibrary.org/obo/GO_0046574,glycuronidase activity +13.3713295,GO:0047616,http://purl.obolibrary.org/obo/GO_0047616,acyl-CoA dehydrogenase (NADP+) activity +13.3713295,GO:0050418,http://purl.obolibrary.org/obo/GO_0050418,hydroxylamine reductase activity +13.3713295,GO:0050695,http://purl.obolibrary.org/obo/GO_0050695,benzoylformate decarboxylase activity +13.3713295,GO:0051231,http://purl.obolibrary.org/obo/GO_0051231,spindle elongation +13.3713295,GO:0051446,http://purl.obolibrary.org/obo/GO_0051446,positive regulation of meiotic cell cycle +13.3713295,GO:0051598,http://purl.obolibrary.org/obo/GO_0051598,meiotic recombination checkpoint signaling +13.3713295,GO:0051614,http://purl.obolibrary.org/obo/GO_0051614,inhibition of serotonin uptake +13.3713295,GO:0051776,http://purl.obolibrary.org/obo/GO_0051776,detection of redox state +13.3713295,GO:0052317,http://purl.obolibrary.org/obo/GO_0052317,camalexin metabolic process +13.3713295,GO:0060016,http://purl.obolibrary.org/obo/GO_0060016,granulosa cell development +13.3713295,GO:0061113,http://purl.obolibrary.org/obo/GO_0061113,pancreas morphogenesis +13.3713295,GO:0061484,http://purl.obolibrary.org/obo/GO_0061484,hematopoietic stem cell homeostasis +13.3713295,GO:0071722,http://purl.obolibrary.org/obo/GO_0071722,detoxification of arsenic-containing substance +13.3713295,GO:0071850,http://purl.obolibrary.org/obo/GO_0071850,none +13.3713295,GO:0090183,http://purl.obolibrary.org/obo/GO_0090183,regulation of kidney development +13.3713295,GO:0097481,http://purl.obolibrary.org/obo/GO_0097481,none +13.3713295,GO:0101006,http://purl.obolibrary.org/obo/GO_0101006,protein histidine phosphatase activity +13.3713295,GO:1901653,http://purl.obolibrary.org/obo/GO_1901653,cellular response to peptide +13.3713295,GO:1902106,http://purl.obolibrary.org/obo/GO_1902106,negative regulation of leukocyte differentiation +13.3713295,GO:1903169,http://purl.obolibrary.org/obo/GO_1903169,regulation of calcium ion transmembrane transport +13.3713295,GO:1904576,http://purl.obolibrary.org/obo/GO_1904576,response to tunicamycin +13.3713295,GO:1904583,http://purl.obolibrary.org/obo/GO_1904583,response to polyamine macromolecule +13.3713295,GO:2000034,http://purl.obolibrary.org/obo/GO_2000034,regulation of seed maturation +13.3713295,GO:2000819,http://purl.obolibrary.org/obo/GO_2000819,regulation of nucleotide-excision repair +13.3713295,HP:0002110,http://purl.obolibrary.org/obo/HP_0002110,Bronchiectasis +13.3713295,HP:0002345,http://purl.obolibrary.org/obo/HP_0002345,Action tremor +13.3713295,HP:0003355,http://purl.obolibrary.org/obo/HP_0003355,Aminoaciduria +13.3713295,HP:0008905,http://purl.obolibrary.org/obo/HP_0008905,Rhizomelia +13.3713295,HP:0025426,http://purl.obolibrary.org/obo/HP_0025426,Abnormal bronchus morphology +13.3713295,MONDO:0000902,http://purl.obolibrary.org/obo/MONDO_0000902,agenesis of the corpus callosum with peripheral neuropathy +13.3713295,MONDO:0001315,http://purl.obolibrary.org/obo/MONDO_0001315,neurocirculatory asthenia +13.3713295,MONDO:0001812,http://purl.obolibrary.org/obo/MONDO_0001812,parasitic eyelid infestation +13.3713295,MONDO:0001965,http://purl.obolibrary.org/obo/MONDO_0001965,sclerosing keratitis +13.3713295,MONDO:0002365,http://purl.obolibrary.org/obo/MONDO_0002365,kidney hemangiopericytoma +13.3713295,MONDO:0002802,http://purl.obolibrary.org/obo/MONDO_0002802,functional colonic disease +13.3713295,MONDO:0002973,http://purl.obolibrary.org/obo/MONDO_0002973,epithelioid cell melanoma +13.3713295,MONDO:0003168,http://purl.obolibrary.org/obo/MONDO_0003168,cerebellar pilocytic astrocytoma +13.3713295,MONDO:0004527,http://purl.obolibrary.org/obo/MONDO_0004527,congenital granular cell tumor +13.3713295,MONDO:0005761,http://purl.obolibrary.org/obo/MONDO_0005761,filarial elephantiasis +13.3713295,MONDO:0006273,http://purl.obolibrary.org/obo/MONDO_0006273,low grade fibromyxoid sarcoma with giant collagen rosettes +13.3713295,MONDO:0006381,http://purl.obolibrary.org/obo/MONDO_0006381,plexiform ameloblastoma +13.3713295,MONDO:0006477,http://purl.obolibrary.org/obo/MONDO_0006477,undifferentiated ovarian carcinoma +13.3713295,MONDO:0006900,http://purl.obolibrary.org/obo/MONDO_0006900,perinephritis +13.3713295,MONDO:0006904,http://purl.obolibrary.org/obo/MONDO_0006904,phimosis +13.3713295,MONDO:0007571,http://purl.obolibrary.org/obo/MONDO_0007571,primary erythermalgia +13.3713295,MONDO:0007879,http://purl.obolibrary.org/obo/MONDO_0007879,larynx atresia +13.3713295,MONDO:0008780,http://purl.obolibrary.org/obo/MONDO_0008780,"amyotrophic lateral sclerosis type 2, juvenile" +13.3713295,MONDO:0009394,http://purl.obolibrary.org/obo/MONDO_0009394,juvenile Paget disease +13.3713295,MONDO:0009520,http://purl.obolibrary.org/obo/MONDO_0009520,3-hydroxy-3-methylglutaric aciduria +13.3713295,MONDO:0009556,http://purl.obolibrary.org/obo/MONDO_0009556,malonic aciduria +13.3713295,MONDO:0009846,http://purl.obolibrary.org/obo/MONDO_0009846,pentosuria +13.3713295,MONDO:0010848,http://purl.obolibrary.org/obo/MONDO_0010848,spinocerebellar ataxia type 5 +13.3713295,MONDO:0011053,http://purl.obolibrary.org/obo/MONDO_0011053,intellectual disability-sparse hair-brachydactyly syndrome +13.3713295,MONDO:0011721,http://purl.obolibrary.org/obo/MONDO_0011721,distal myopathy with anterior tibial onset +13.3713295,MONDO:0013898,http://purl.obolibrary.org/obo/MONDO_0013898,karyomegalic interstitial nephritis +13.3713295,MONDO:0014221,http://purl.obolibrary.org/obo/MONDO_0014221,triosephosphate isomerase deficiency +13.3713295,MONDO:0015262,http://purl.obolibrary.org/obo/MONDO_0015262,brachyolmia +13.3713295,MONDO:0015917,http://purl.obolibrary.org/obo/MONDO_0015917,none +13.3713295,MONDO:0016036,http://purl.obolibrary.org/obo/MONDO_0016036,Ledderhose disease +13.3713295,MONDO:0016985,http://purl.obolibrary.org/obo/MONDO_0016985,nevus of Ito +13.3713295,MONDO:0017339,http://purl.obolibrary.org/obo/MONDO_0017339,exfoliative ichthyosis +13.3713295,MONDO:0017607,http://purl.obolibrary.org/obo/MONDO_0017607,caudal regression sequence +13.3713295,MONDO:0017626,http://purl.obolibrary.org/obo/MONDO_0017626,familial primary hypomagnesemia with normocalcuria +13.3713295,MONDO:0018148,http://purl.obolibrary.org/obo/MONDO_0018148,vasoproliferative tumor of retina +13.3713295,MONDO:0018186,http://purl.obolibrary.org/obo/MONDO_0018186,ring chromosome +13.3713295,MONDO:0018771,http://purl.obolibrary.org/obo/MONDO_0018771,congenital anomaly of ventricular septum +13.3713295,MONDO:0018916,http://purl.obolibrary.org/obo/MONDO_0018916,isolated anorectal malformation +13.3713295,MONDO:0018933,http://purl.obolibrary.org/obo/MONDO_0018933,Mazabraud syndrome +13.3713295,MONDO:0019524,http://purl.obolibrary.org/obo/MONDO_0019524,infantile Bartter syndrome with sensorineural deafness +13.3713295,MONDO:0020047,http://purl.obolibrary.org/obo/MONDO_0020047,autosomal recessive syndromic cerebellar ataxia +13.3713295,MONDO:0020427,http://purl.obolibrary.org/obo/MONDO_0020427,Laubry-Pezzi syndrome +13.3713295,MONDO:0020510,http://purl.obolibrary.org/obo/MONDO_0020510,idiopathic syringomyelia +13.3713295,MONDO:0021457,http://purl.obolibrary.org/obo/MONDO_0021457,benign neoplasm of pleura +13.3713295,MONDO:0024518,http://purl.obolibrary.org/obo/MONDO_0024518,reactive thrombocytosis +13.3713295,MONDO:0025061,http://purl.obolibrary.org/obo/MONDO_0025061,edema disease of swine +13.3713295,MOP:0000615,http://purl.obolibrary.org/obo/MOP_0000615,none +13.3713295,NCBITaxon:101688,http://purl.obolibrary.org/obo/NCBITaxon_101688,none +13.3713295,NCBITaxon:10325,http://purl.obolibrary.org/obo/NCBITaxon_10325,none +13.3713295,NCBITaxon:108098,http://purl.obolibrary.org/obo/NCBITaxon_108098,none +13.3713295,NCBITaxon:12199,http://purl.obolibrary.org/obo/NCBITaxon_12199,none +13.3713295,NCBITaxon:1322345,http://purl.obolibrary.org/obo/NCBITaxon_1322345,none +13.3713295,NCBITaxon:139271,http://purl.obolibrary.org/obo/NCBITaxon_139271,none +13.3713295,NCBITaxon:164416,http://purl.obolibrary.org/obo/NCBITaxon_164416,none +13.3713295,NCBITaxon:174620,http://purl.obolibrary.org/obo/NCBITaxon_174620,none +13.3713295,NCBITaxon:208294,http://purl.obolibrary.org/obo/NCBITaxon_208294,none +13.3713295,NCBITaxon:249185,http://purl.obolibrary.org/obo/NCBITaxon_249185,none +13.3713295,NCBITaxon:28292,http://purl.obolibrary.org/obo/NCBITaxon_28292,none +13.3713295,NCBITaxon:31277,http://purl.obolibrary.org/obo/NCBITaxon_31277,none +13.3713295,NCBITaxon:37093,http://purl.obolibrary.org/obo/NCBITaxon_37093,none +13.3713295,NCBITaxon:39734,http://purl.obolibrary.org/obo/NCBITaxon_39734,none +13.3713295,NCBITaxon:39739,http://purl.obolibrary.org/obo/NCBITaxon_39739,none +13.3713295,NCBITaxon:42182,http://purl.obolibrary.org/obo/NCBITaxon_42182,none +13.3713295,NCBITaxon:42595,http://purl.obolibrary.org/obo/NCBITaxon_42595,none +13.3713295,NCBITaxon:46473,http://purl.obolibrary.org/obo/NCBITaxon_46473,none +13.3713295,NCBITaxon:474036,http://purl.obolibrary.org/obo/NCBITaxon_474036,none +13.3713295,NCBITaxon:48138,http://purl.obolibrary.org/obo/NCBITaxon_48138,none +13.3713295,NCBITaxon:533331,http://purl.obolibrary.org/obo/NCBITaxon_533331,none +13.3713295,NCBITaxon:55949,http://purl.obolibrary.org/obo/NCBITaxon_55949,none +13.3713295,NCBITaxon:6694,http://purl.obolibrary.org/obo/NCBITaxon_6694,none +13.3713295,NCBITaxon:674978,http://purl.obolibrary.org/obo/NCBITaxon_674978,none +13.3713295,NCBITaxon:6953,http://purl.obolibrary.org/obo/NCBITaxon_6953,none +13.3713295,NCBITaxon:7993,http://purl.obolibrary.org/obo/NCBITaxon_7993,none +13.3713295,NCBITaxon:7994,http://purl.obolibrary.org/obo/NCBITaxon_7994,none +13.3713295,NCBITaxon:883878,http://purl.obolibrary.org/obo/NCBITaxon_883878,none +13.3713295,NCBITaxon:886714,http://purl.obolibrary.org/obo/NCBITaxon_886714,none +13.3713295,NCBITaxon:9431,http://purl.obolibrary.org/obo/NCBITaxon_9431,none +13.3713295,PR:000001636,http://purl.obolibrary.org/obo/PR_000001636,G-protein coupled receptor 12 +13.3713295,PR:000001712,http://purl.obolibrary.org/obo/PR_000001712,trace amine-associated receptor 2 +13.3713295,PR:000001981,http://purl.obolibrary.org/obo/PR_000001981,ATP-sensitive inward rectifier potassium channel 12 +13.3713295,PR:000003535,http://purl.obolibrary.org/obo/PR_000003535,serine/threonine-protein kinase LMTK1 +13.3713295,PR:000003869,http://purl.obolibrary.org/obo/PR_000003869,ferroptosis suppressor protein 1 +13.3713295,PR:000004051,http://purl.obolibrary.org/obo/PR_000004051,ankyrin repeat and SAM domain-containing protein 1A +13.3713295,PR:000004117,http://purl.obolibrary.org/obo/PR_000004117,amyloid-beta A4 precursor protein-binding family A member 3 +13.3713295,PR:000004246,http://purl.obolibrary.org/obo/PR_000004246,Rho guanine nucleotide exchange factor 10 +13.3713295,PR:000004286,http://purl.obolibrary.org/obo/PR_000004286,ADP-ribosylation factor-like protein 4C +13.3713295,PR:000004316,http://purl.obolibrary.org/obo/PR_000004316,cAMP-regulated phosphoprotein 19 +13.3713295,PR:000004465,http://purl.obolibrary.org/obo/PR_000004465,"ATP synthase subunit O, mitochondrial" +13.3713295,PR:000004646,http://purl.obolibrary.org/obo/PR_000004646,homeobox protein BarH-like 2 +13.3713295,PR:000004655,http://purl.obolibrary.org/obo/PR_000004655,basic leucine zipper transcriptional factor ATF-like 2 +13.3713295,PR:000004981,http://purl.obolibrary.org/obo/PR_000004981,calmodulin-like protein 5 +13.3713295,PR:000005135,http://purl.obolibrary.org/obo/PR_000005135,cyclin-K +13.3713295,PR:000005182,http://purl.obolibrary.org/obo/PR_000005182,codanin-1 +13.3713295,PR:000005184,http://purl.obolibrary.org/obo/PR_000005184,dual specificity protein phosphatase CDC14A +13.3713295,PR:000005250,http://purl.obolibrary.org/obo/PR_000005250,cadherin-9 +13.3713295,PR:000005496,http://purl.obolibrary.org/obo/PR_000005496,cartilage intermediate layer protein 2 +13.3713295,PR:000005678,http://purl.obolibrary.org/obo/PR_000005678,centrobin +13.3713295,PR:000007467,http://purl.obolibrary.org/obo/PR_000007467,fasciculation and elongation protein zeta-2 +13.3713295,PR:000007588,http://purl.obolibrary.org/obo/PR_000007588,fibronectin type III domain-containing protein 3B +13.3713295,PR:000007629,http://purl.obolibrary.org/obo/PR_000007629,forkhead box protein J2 +13.3713295,PR:000007738,http://purl.obolibrary.org/obo/PR_000007738,none +13.3713295,PR:000007792,http://purl.obolibrary.org/obo/PR_000007792,G antigen 1 +13.3713295,PR:000007823,http://purl.obolibrary.org/obo/PR_000007823,polypeptide N-acetylgalactosaminyltransferase 14 +13.3713295,PR:000008073,http://purl.obolibrary.org/obo/PR_000008073,glycosyl-phosphatidylinositol-anchored molecule-like protein +13.3713295,PR:000008102,http://purl.obolibrary.org/obo/PR_000008102,bifunctional UDP-N-acetylglucosamine 2-epimerase/N-acetylmannosamine kinase +13.3713295,PR:000008179,http://purl.obolibrary.org/obo/PR_000008179,neuronal membrane glycoprotein M6-b +13.3713295,PR:000008419,http://purl.obolibrary.org/obo/PR_000008419,core histone macro-H2A.1 +13.3713295,PR:000008433,http://purl.obolibrary.org/obo/PR_000008433,"trifunctional enzyme subunit alpha, mitochondrial" +13.3713295,PR:000008884,http://purl.obolibrary.org/obo/PR_000008884,protein-S-isoprenylcysteine O-methyltransferase +13.3713295,PR:000009113,http://purl.obolibrary.org/obo/PR_000009113,"iron-sulfur cluster assembly enzyme ISCU, mitochondrial" +13.3713295,PR:000009146,http://purl.obolibrary.org/obo/PR_000009146,inter-alpha-trypsin inhibitor heavy chain H1 +13.3713295,PR:000009216,http://purl.obolibrary.org/obo/PR_000009216,lysine-specific demethylase 4D +13.3713295,PR:000009287,http://purl.obolibrary.org/obo/PR_000009287,kinesin-like protein KIF13B +13.3713295,PR:000010073,http://purl.obolibrary.org/obo/PR_000010073,melanoma-associated antigen C2 +13.3713295,PR:000010105,http://purl.obolibrary.org/obo/PR_000010105,alpha-mannosidase 2 +13.3713295,PR:000010328,http://purl.obolibrary.org/obo/PR_000010328,BRISC and BRCA1-A complex member 1 +13.3713295,PR:000010482,http://purl.obolibrary.org/obo/PR_000010482,matrix metalloproteinase-23 +13.3713295,PR:000010515,http://purl.obolibrary.org/obo/PR_000010515,2-acylglycerol O-acyltransferase 1 +13.3713295,PR:000010853,http://purl.obolibrary.org/obo/PR_000010853,myosin-XVIIIb +13.3713295,PR:000010883,http://purl.obolibrary.org/obo/PR_000010883,myozenin-2 +13.3713295,PR:000011008,http://purl.obolibrary.org/obo/PR_000011008,neuron navigator 3 +13.3713295,PR:000011009,http://purl.obolibrary.org/obo/PR_000011009,neuroblastoma-amplified sequence +13.3713295,PR:000011074,http://purl.obolibrary.org/obo/PR_000011074,cytochrome c oxidase subunit NDUFA4 +13.3713295,PR:000011247,http://purl.obolibrary.org/obo/PR_000011247,homeobox protein Nkx-2.8 +13.3713295,PR:000011294,http://purl.obolibrary.org/obo/PR_000011294,glycylpeptide N-tetradecanoyltransferase 2 +13.3713295,PR:000011333,http://purl.obolibrary.org/obo/PR_000011333,notch homolog 2 N-terminal-like protein A +13.3713295,PR:000011516,http://purl.obolibrary.org/obo/PR_000011516,nucleoporin NUP35 +13.3713295,PR:000011633,http://purl.obolibrary.org/obo/PR_000011633,oligodendrocyte transcription factor 3 +13.3713295,PR:000012268,http://purl.obolibrary.org/obo/PR_000012268,poly(A) polymerase beta +13.3713295,PR:000012448,http://purl.obolibrary.org/obo/PR_000012448,ethanolamine-phosphate cytidylyltransferase +13.3713295,PR:000012665,http://purl.obolibrary.org/obo/PR_000012665,pleckstrin homology-like domain family A member 3 +13.3713295,PR:000012698,http://purl.obolibrary.org/obo/PR_000012698,GPI-anchor transamidase +13.3713295,PR:000013170,http://purl.obolibrary.org/obo/PR_000013170,melanoma antigen preferentially expressed in tumors +13.3713295,PR:000013391,http://purl.obolibrary.org/obo/PR_000013391,26S proteasome non-ATPase regulatory subunit 9 +13.3713295,PR:000013567,http://purl.obolibrary.org/obo/PR_000013567,nicotinate-nucleotide pyrophosphorylase [carboxylating] +13.3713295,PR:000013812,http://purl.obolibrary.org/obo/PR_000013812,"RNA-binding motif, single-stranded-interacting protein 3" +13.3713295,PR:000013870,http://purl.obolibrary.org/obo/PR_000013870,lithostathine-1-beta +13.3713295,PR:000013984,http://purl.obolibrary.org/obo/PR_000013984,Rho-related GTP-binding protein RhoQ +13.3713295,PR:000014252,http://purl.obolibrary.org/obo/PR_000014252,40S ribosomal protein S11 +13.3713295,PR:000014254,http://purl.obolibrary.org/obo/PR_000014254,40S ribosomal protein S13 +13.3713295,PR:000014603,http://purl.obolibrary.org/obo/PR_000014603,nucleoporin SEH1 +13.3713295,PR:000014613,http://purl.obolibrary.org/obo/PR_000014613,thioredoxin reductase-like selenoprotein T +13.3713295,PR:000014726,http://purl.obolibrary.org/obo/PR_000014726,histone-lysine N-methyltransferase SETMAR +13.3713295,PR:000015221,http://purl.obolibrary.org/obo/PR_000015221,sodium/hydrogen exchanger 9 +13.3713295,PR:000015352,http://purl.obolibrary.org/obo/PR_000015352,beta-2-syntrophin +13.3713295,PR:000015790,http://purl.obolibrary.org/obo/PR_000015790,syntaxin-18 +13.3713295,PR:000015825,http://purl.obolibrary.org/obo/PR_000015825,sulfotransferase 4A1 +13.3713295,PR:000015873,http://purl.obolibrary.org/obo/PR_000015873,syncoilin +13.3713295,PR:000015977,http://purl.obolibrary.org/obo/PR_000015977,none +13.3713295,PR:000016599,http://purl.obolibrary.org/obo/PR_000016599,transformer-2 protein homolog alpha +13.3713295,PR:000017028,http://purl.obolibrary.org/obo/PR_000017028,uridine-cytidine kinase 1 +13.3713295,PR:000017172,http://purl.obolibrary.org/obo/PR_000017172,ubiquitin carboxyl-terminal hydrolase 33 +13.3713295,PR:000017480,http://purl.obolibrary.org/obo/PR_000017480,Xin actin-binding repeat-containing protein 2 +13.3713295,PR:000017847,http://purl.obolibrary.org/obo/PR_000017847,zinc finger protein 350 +13.3713295,PR:000017883,http://purl.obolibrary.org/obo/PR_000017883,zinc finger protein 423 +13.3713295,PR:000018211,http://purl.obolibrary.org/obo/PR_000018211,zona pellucida sperm-binding protein 2 +13.3713295,PR:000022071,http://purl.obolibrary.org/obo/PR_000022071,none +13.3713295,PR:000022274,http://purl.obolibrary.org/obo/PR_000022274,none +13.3713295,PR:000022280,http://purl.obolibrary.org/obo/PR_000022280,none +13.3713295,PR:000022324,http://purl.obolibrary.org/obo/PR_000022324,none +13.3713295,PR:000022391,http://purl.obolibrary.org/obo/PR_000022391,none +13.3713295,PR:000022562,http://purl.obolibrary.org/obo/PR_000022562,none +13.3713295,PR:000023150,http://purl.obolibrary.org/obo/PR_000023150,none +13.3713295,PR:000023197,http://purl.obolibrary.org/obo/PR_000023197,none +13.3713295,PR:000023266,http://purl.obolibrary.org/obo/PR_000023266,none +13.3713295,PR:000024084,http://purl.obolibrary.org/obo/PR_000024084,none +13.3713295,PR:000024224,http://purl.obolibrary.org/obo/PR_000024224,none +13.3713295,PR:000024225,http://purl.obolibrary.org/obo/PR_000024225,none +13.3713295,PR:000025475,http://purl.obolibrary.org/obo/PR_000025475,none +13.3713295,PR:000026127,http://purl.obolibrary.org/obo/PR_000026127,none +13.3713295,PR:000029422,http://purl.obolibrary.org/obo/PR_000029422,DnaJ homolog subfamily B member 2 +13.3713295,PR:000029502,http://purl.obolibrary.org/obo/PR_000029502,FYVE and coiled-coil domain-containing protein 1 +13.3713295,PR:000030487,http://purl.obolibrary.org/obo/PR_000030487,Rab11 family-interacting protein 3 +13.3713295,PR:000030919,http://purl.obolibrary.org/obo/PR_000030919,pleckstrin homology-like domain family B member 1 +13.3713295,PR:000031033,http://purl.obolibrary.org/obo/PR_000031033,RNA-binding protein 20 +13.3713295,PR:000031077,http://purl.obolibrary.org/obo/PR_000031077,COMM domain-containing protein 3 +13.3713295,PR:000032141,http://purl.obolibrary.org/obo/PR_000032141,Ras association domain-containing protein 10 +13.3713295,PR:000032542,http://purl.obolibrary.org/obo/PR_000032542,retinoic acid early transcript 1E +13.3713295,PR:000032845,http://purl.obolibrary.org/obo/PR_000032845,none +13.3713295,PR:000032881,http://purl.obolibrary.org/obo/PR_000032881,none +13.3713295,PR:000033434,http://purl.obolibrary.org/obo/PR_000033434,none +13.3713295,PR:000034175,http://purl.obolibrary.org/obo/PR_000034175,none +13.3713295,PR:A2RVV7,http://purl.obolibrary.org/obo/PR_A2RVV7,none +13.3713295,PR:D3ZHV2,http://purl.obolibrary.org/obo/PR_D3ZHV2,none +13.3713295,PR:O48782,http://purl.obolibrary.org/obo/PR_O48782,none +13.3713295,PR:O65420,http://purl.obolibrary.org/obo/PR_O65420,none +13.3713295,PR:O65554,http://purl.obolibrary.org/obo/PR_O65554,none +13.3713295,PR:P07257,http://purl.obolibrary.org/obo/PR_P07257,none +13.3713295,PR:P08510,http://purl.obolibrary.org/obo/PR_P08510,none +13.3713295,PR:P09656,http://purl.obolibrary.org/obo/PR_P09656,none +13.3713295,PR:P16911,http://purl.obolibrary.org/obo/PR_P16911,none +13.3713295,PR:P32523,http://purl.obolibrary.org/obo/PR_P32523,none +13.3713295,PR:P32849,http://purl.obolibrary.org/obo/PR_P32849,none +13.3713295,PR:P33754,http://purl.obolibrary.org/obo/PR_P33754,none +13.3713295,PR:P40998,http://purl.obolibrary.org/obo/PR_P40998,none +13.3713295,PR:P42521,http://purl.obolibrary.org/obo/PR_P42521,none +13.3713295,PR:P43585,http://purl.obolibrary.org/obo/PR_P43585,none +13.3713295,PR:P47029,http://purl.obolibrary.org/obo/PR_P47029,none +13.3713295,PR:P79987,http://purl.obolibrary.org/obo/PR_P79987,none +13.3713295,PR:Q05117,http://purl.obolibrary.org/obo/PR_Q05117,none +13.3713295,PR:Q07490,http://purl.obolibrary.org/obo/PR_Q07490,none +13.3713295,PR:Q12071,http://purl.obolibrary.org/obo/PR_Q12071,none +13.3713295,PR:Q38822,http://purl.obolibrary.org/obo/PR_Q38822,none +13.3713295,PR:Q68G58,http://purl.obolibrary.org/obo/PR_Q68G58,none +13.3713295,PR:Q8W261,http://purl.obolibrary.org/obo/PR_Q8W261,none +13.3713295,PR:Q94FL9,http://purl.obolibrary.org/obo/PR_Q94FL9,none +13.3713295,PR:Q9CB01,http://purl.obolibrary.org/obo/PR_Q9CB01,none +13.3713295,PR:Q9FIP9,http://purl.obolibrary.org/obo/PR_Q9FIP9,none +13.3713295,PR:Q9LSY8,http://purl.obolibrary.org/obo/PR_Q9LSY8,none +13.3713295,PR:Q9M0Y3,http://purl.obolibrary.org/obo/PR_Q9M0Y3,none +13.3713295,PR:Q9M304,http://purl.obolibrary.org/obo/PR_Q9M304,none +13.3713295,PR:Q9M7Q4,http://purl.obolibrary.org/obo/PR_Q9M7Q4,none +13.3713295,PR:Q9S7E4,http://purl.obolibrary.org/obo/PR_Q9S7E4,none +13.3713295,PR:Q9USU3,http://purl.obolibrary.org/obo/PR_Q9USU3,none +13.3713295,PR:Q9VHV5,http://purl.obolibrary.org/obo/PR_Q9VHV5,none +13.3713295,SO:0000205,http://purl.obolibrary.org/obo/SO_0000205,three_prime_UTR +13.3713295,SO:0000457,http://purl.obolibrary.org/obo/SO_0000457,interchromosomal_duplication +13.3713295,SO:0001572,http://purl.obolibrary.org/obo/SO_0001572,exon_loss_variant +13.3713295,SO:0002141,http://purl.obolibrary.org/obo/SO_0002141,late_origin_of_replication +13.3713295,UBERON:0000998,http://purl.obolibrary.org/obo/UBERON_0000998,seminal vesicle +13.3713295,UBERON:0001572,http://purl.obolibrary.org/obo/UBERON_0001572,hyoglossus muscle +13.3713295,UBERON:0003260,http://purl.obolibrary.org/obo/UBERON_0003260,endoderm of hindgut +13.3713295,UBERON:0003398,http://purl.obolibrary.org/obo/UBERON_0003398,mesentery of jejunum +13.3713295,UBERON:0003454,http://purl.obolibrary.org/obo/UBERON_0003454,small intestine Peyer's patch +13.3713295,UBERON:0003921,http://purl.obolibrary.org/obo/UBERON_0003921,pancreas primordium +13.3713295,UBERON:0003924,http://purl.obolibrary.org/obo/UBERON_0003924,ventral pancreatic bud +13.3713295,UBERON:0003955,http://purl.obolibrary.org/obo/UBERON_0003955,molar crown +13.3713295,UBERON:0005993,http://purl.obolibrary.org/obo/UBERON_0005993,pulmonary valve anulus +13.3713295,UBERON:0006723,http://purl.obolibrary.org/obo/UBERON_0006723,cochlear modiolus +13.3713295,UBERON:0009617,http://purl.obolibrary.org/obo/UBERON_0009617,head paraxial mesoderm +13.3713295,UBERON:0009859,http://purl.obolibrary.org/obo/UBERON_0009859,endosteum +13.3713295,UBERON:0010239,http://purl.obolibrary.org/obo/UBERON_0010239,spiral colon +13.3713295,UBERON:0011264,http://purl.obolibrary.org/obo/UBERON_0011264,femoral pore +13.3713295,UBERON:0012368,http://purl.obolibrary.org/obo/UBERON_0012368,circular muscle layer of muscular coat +13.3713295,UBERON:0015863,http://purl.obolibrary.org/obo/UBERON_0015863,gastric lymph node +13.3713295,UBERON:0034680,http://purl.obolibrary.org/obo/UBERON_0034680,laryngeal prominence +13.3995004,CHEBI:17748,http://purl.obolibrary.org/obo/CHEBI_17748,thymidine +13.3995004,CHEBI:17821,http://purl.obolibrary.org/obo/CHEBI_17821,thymine +13.3995004,CHEBI:24397,http://purl.obolibrary.org/obo/CHEBI_24397,glycophospholipid +13.3995004,CHEBI:24844,http://purl.obolibrary.org/obo/CHEBI_24844,inosines +13.3995004,CHEBI:27002,http://purl.obolibrary.org/obo/CHEBI_27002,thymidyl group +13.3995004,CHEBI:27003,http://purl.obolibrary.org/obo/CHEBI_27003,5'-thymidylyl group +13.3995004,CHEBI:28938,http://purl.obolibrary.org/obo/CHEBI_28938,ammonium +13.3995004,CHEBI:30757,http://purl.obolibrary.org/obo/CHEBI_30757,thymin-1-yl group +13.3995004,CHEBI:32859,http://purl.obolibrary.org/obo/CHEBI_32859,valinate +13.3995004,CHEBI:32958,http://purl.obolibrary.org/obo/CHEBI_32958,phosphate group +13.3995004,CHEBI:33317,http://purl.obolibrary.org/obo/CHEBI_33317,boron group element atom +13.3995004,CHEBI:33628,http://purl.obolibrary.org/obo/CHEBI_33628,elemental aluminium +13.3995004,CHEBI:36560,http://purl.obolibrary.org/obo/CHEBI_36560,zinc oxide +13.3995004,CHEBI:37230,http://purl.obolibrary.org/obo/CHEBI_37230,palladium molecular entity +13.3995004,CHEBI:37684,http://purl.obolibrary.org/obo/CHEBI_37684,mannose +13.3995004,CHEBI:50185,http://purl.obolibrary.org/obo/CHEBI_50185,fatty acid synthesis inhibitor +13.3995004,CHEBI:50300,http://purl.obolibrary.org/obo/CHEBI_50300,thymidine 5'-monophosphate residue +13.3995004,CHEBI:51750,http://purl.obolibrary.org/obo/CHEBI_51750,"alpha,beta-unsaturated carboxylic acid amide" +13.3995004,CHEBI:51751,http://purl.obolibrary.org/obo/CHEBI_51751,enamide +13.3995004,CHEBI:52858,http://purl.obolibrary.org/obo/CHEBI_52858,elemental palladium +13.3995004,CHEBI:53102,http://purl.obolibrary.org/obo/CHEBI_53102,dTMP 5'-end residue +13.3995004,CHEBI:53118,http://purl.obolibrary.org/obo/CHEBI_53118,dTMP 3'-end residue +13.3995004,CHEBI:81567,http://purl.obolibrary.org/obo/CHEBI_81567,thyroid stimulating hormone +13.3995004,CHEBI:81569,http://purl.obolibrary.org/obo/CHEBI_81569,Follicle stimulating hormone +13.3995004,CHEBI:82129,http://purl.obolibrary.org/obo/CHEBI_82129,Protein P +13.3995004,CHEBI:82131,http://purl.obolibrary.org/obo/CHEBI_82131,Protein C +13.3995004,CL:0000072,http://purl.obolibrary.org/obo/CL_0000072,non-branched duct epithelial cell +13.3995004,CL:0000947,http://purl.obolibrary.org/obo/CL_0000947,IgE plasma cell +13.3995004,DRUGBANK:DB00868,http://purl.obolibrary.org/obo/DRUGBANK_DB00868,none +13.3995004,DRUGBANK:DB01401,http://purl.obolibrary.org/obo/DRUGBANK_DB01401,none +13.3995004,DRUGBANK:DB02044,http://purl.obolibrary.org/obo/DRUGBANK_DB02044,none +13.3995004,DRUGBANK:DB02678,http://purl.obolibrary.org/obo/DRUGBANK_DB02678,none +13.3995004,DRUGBANK:DB02693,http://purl.obolibrary.org/obo/DRUGBANK_DB02693,none +13.3995004,DRUGBANK:DB02733,http://purl.obolibrary.org/obo/DRUGBANK_DB02733,none +13.3995004,DRUGBANK:DB04885,http://purl.obolibrary.org/obo/DRUGBANK_DB04885,none +13.3995004,DRUGBANK:DB06188,http://purl.obolibrary.org/obo/DRUGBANK_DB06188,none +13.3995004,DRUGBANK:DB06533,http://purl.obolibrary.org/obo/DRUGBANK_DB06533,none +13.3995004,DRUGBANK:DB06776,http://purl.obolibrary.org/obo/DRUGBANK_DB06776,none +13.3995004,DRUGBANK:DB07106,http://purl.obolibrary.org/obo/DRUGBANK_DB07106,none +13.3995004,DRUGBANK:DB10378,http://purl.obolibrary.org/obo/DRUGBANK_DB10378,none +13.3995004,DRUGBANK:DB11425,http://purl.obolibrary.org/obo/DRUGBANK_DB11425,none +13.3995004,DRUGBANK:DB11909,http://purl.obolibrary.org/obo/DRUGBANK_DB11909,none +13.3995004,DRUGBANK:DB11992,http://purl.obolibrary.org/obo/DRUGBANK_DB11992,none +13.3995004,DRUGBANK:DB12359,http://purl.obolibrary.org/obo/DRUGBANK_DB12359,none +13.3995004,DRUGBANK:DB12538,http://purl.obolibrary.org/obo/DRUGBANK_DB12538,none +13.3995004,DRUGBANK:DB12543,http://purl.obolibrary.org/obo/DRUGBANK_DB12543,none +13.3995004,DRUGBANK:DB13067,http://purl.obolibrary.org/obo/DRUGBANK_DB13067,none +13.3995004,DRUGBANK:DB13096,http://purl.obolibrary.org/obo/DRUGBANK_DB13096,none +13.3995004,DRUGBANK:DB13200,http://purl.obolibrary.org/obo/DRUGBANK_DB13200,none +13.3995004,DRUGBANK:DB13227,http://purl.obolibrary.org/obo/DRUGBANK_DB13227,none +13.3995004,DRUGBANK:DB13564,http://purl.obolibrary.org/obo/DRUGBANK_DB13564,none +13.3995004,DRUGBANK:DB13749,http://purl.obolibrary.org/obo/DRUGBANK_DB13749,none +13.3995004,DRUGBANK:DB15388,http://purl.obolibrary.org/obo/DRUGBANK_DB15388,none +13.3995004,DRUGBANK:DB15943,http://purl.obolibrary.org/obo/DRUGBANK_DB15943,none +13.3995004,DRUGBANK:DB16213,http://purl.obolibrary.org/obo/DRUGBANK_DB16213,none +13.3995004,GO:0004490,http://purl.obolibrary.org/obo/GO_0004490,methylglutaconyl-CoA hydratase activity +13.3995004,GO:0005385,http://purl.obolibrary.org/obo/GO_0005385,zinc ion transmembrane transporter activity +13.3995004,GO:0005757,http://purl.obolibrary.org/obo/GO_0005757,mitochondrial permeability transition pore complex +13.3995004,GO:0007231,http://purl.obolibrary.org/obo/GO_0007231,osmosensory signaling pathway +13.3995004,GO:0008054,http://purl.obolibrary.org/obo/GO_0008054,none +13.3995004,GO:0008261,http://purl.obolibrary.org/obo/GO_0008261,allatostatin receptor activity +13.3995004,GO:0008714,http://purl.obolibrary.org/obo/GO_0008714,AMP nucleosidase activity +13.3995004,GO:0008836,http://purl.obolibrary.org/obo/GO_0008836,diaminopimelate decarboxylase activity +13.3995004,GO:0008876,http://purl.obolibrary.org/obo/GO_0008876,quinoprotein glucose dehydrogenase activity +13.3995004,GO:0009242,http://purl.obolibrary.org/obo/GO_0009242,colanic acid biosynthetic process +13.3995004,GO:0009289,http://purl.obolibrary.org/obo/GO_0009289,pilus +13.3995004,GO:0009815,http://purl.obolibrary.org/obo/GO_0009815,1-aminocyclopropane-1-carboxylate oxidase activity +13.3995004,GO:0015016,http://purl.obolibrary.org/obo/GO_0015016,[heparan sulfate]-glucosamine N-sulfotransferase activity +13.3995004,GO:0017086,http://purl.obolibrary.org/obo/GO_0017086,3-methyl-2-oxobutanoate dehydrogenase (lipoamide) complex +13.3995004,GO:0018601,http://purl.obolibrary.org/obo/GO_0018601,4-nitrophenol 2-monooxygenase activity +13.3995004,GO:0019249,http://purl.obolibrary.org/obo/GO_0019249,lactate biosynthetic process +13.3995004,GO:0019405,http://purl.obolibrary.org/obo/GO_0019405,alditol catabolic process +13.3995004,GO:0021537,http://purl.obolibrary.org/obo/GO_0021537,telencephalon development +13.3995004,GO:0030416,http://purl.obolibrary.org/obo/GO_0030416,methylamine metabolic process +13.3995004,GO:0030536,http://purl.obolibrary.org/obo/GO_0030536,larval feeding behavior +13.3995004,GO:0030656,http://purl.obolibrary.org/obo/GO_0030656,regulation of vitamin metabolic process +13.3995004,GO:0031408,http://purl.obolibrary.org/obo/GO_0031408,oxylipin biosynthetic process +13.3995004,GO:0032620,http://purl.obolibrary.org/obo/GO_0032620,interleukin-17 production +13.3995004,GO:0032870,http://purl.obolibrary.org/obo/GO_0032870,cellular response to hormone stimulus +13.3995004,GO:0033099,http://purl.obolibrary.org/obo/GO_0033099,attachment organelle +13.3995004,GO:0033591,http://purl.obolibrary.org/obo/GO_0033591,response to L-ascorbic acid +13.3995004,GO:0035060,http://purl.obolibrary.org/obo/GO_0035060,brahma complex +13.3995004,GO:0035172,http://purl.obolibrary.org/obo/GO_0035172,hemocyte proliferation +13.3995004,GO:0036145,http://purl.obolibrary.org/obo/GO_0036145,dendritic cell homeostasis +13.3995004,GO:0038022,http://purl.obolibrary.org/obo/GO_0038022,G protein-coupled olfactory receptor activity +13.3995004,GO:0038089,http://purl.obolibrary.org/obo/GO_0038089,positive regulation of cell migration by vascular endothelial growth factor signaling pathway +13.3995004,GO:0038192,http://purl.obolibrary.org/obo/GO_0038192,gastric inhibitory peptide signaling pathway +13.3995004,GO:0042399,http://purl.obolibrary.org/obo/GO_0042399,ectoine metabolic process +13.3995004,GO:0043626,http://purl.obolibrary.org/obo/GO_0043626,PCNA complex +13.3995004,GO:0044296,http://purl.obolibrary.org/obo/GO_0044296,dendritic tuft +13.3995004,GO:0044308,http://purl.obolibrary.org/obo/GO_0044308,axonal spine +13.3995004,GO:0044796,http://purl.obolibrary.org/obo/GO_0044796,DNA polymerase processivity factor complex +13.3995004,GO:0045191,http://purl.obolibrary.org/obo/GO_0045191,regulation of isotype switching +13.3995004,GO:0045323,http://purl.obolibrary.org/obo/GO_0045323,interleukin-1 receptor complex +13.3995004,GO:0046608,http://purl.obolibrary.org/obo/GO_0046608,carotenoid isomerase activity +13.3995004,GO:0046928,http://purl.obolibrary.org/obo/GO_0046928,regulation of neurotransmitter secretion +13.3995004,GO:0047407,http://purl.obolibrary.org/obo/GO_0047407,ADP-ribosyl-[dinitrogen reductase] hydrolase activity +13.3995004,GO:0047972,http://purl.obolibrary.org/obo/GO_0047972,guanidinopropionase activity +13.3995004,GO:0048067,http://purl.obolibrary.org/obo/GO_0048067,cuticle pigmentation +13.3995004,GO:0048444,http://purl.obolibrary.org/obo/GO_0048444,floral organ morphogenesis +13.3995004,GO:0050218,http://purl.obolibrary.org/obo/GO_0050218,propionate-CoA ligase activity +13.3995004,GO:0050362,http://purl.obolibrary.org/obo/GO_0050362,L-tryptophan:2-oxoglutarate aminotransferase activity +13.3995004,GO:0050464,http://purl.obolibrary.org/obo/GO_0050464,nitrate reductase (NADPH) activity +13.3995004,GO:0061470,http://purl.obolibrary.org/obo/GO_0061470,T follicular helper cell differentiation +13.3995004,GO:0070255,http://purl.obolibrary.org/obo/GO_0070255,regulation of mucus secretion +13.3995004,GO:0070716,http://purl.obolibrary.org/obo/GO_0070716,mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication +13.3995004,GO:0071162,http://purl.obolibrary.org/obo/GO_0071162,CMG complex +13.3995004,GO:0090125,http://purl.obolibrary.org/obo/GO_0090125,cell-cell adhesion involved in synapse maturation +13.3995004,GO:0090549,http://purl.obolibrary.org/obo/GO_0090549,response to carbon starvation +13.3995004,GO:0097148,http://purl.obolibrary.org/obo/GO_0097148,BCL-2 complex +13.3995004,GO:0097272,http://purl.obolibrary.org/obo/GO_0097272,ammonium homeostasis +13.3995004,GO:0097502,http://purl.obolibrary.org/obo/GO_0097502,mannosylation +13.3995004,GO:0140666,http://purl.obolibrary.org/obo/GO_0140666,annealing activity +13.3995004,GO:1900816,http://purl.obolibrary.org/obo/GO_1900816,ochratoxin A metabolic process +13.3995004,GO:1901370,http://purl.obolibrary.org/obo/GO_1901370,response to glutathione +13.3995004,GO:1902532,http://purl.obolibrary.org/obo/GO_1902532,negative regulation of intracellular signal transduction +13.3995004,GO:1903118,http://purl.obolibrary.org/obo/GO_1903118,urate homeostasis +13.3995004,GO:1903186,http://purl.obolibrary.org/obo/GO_1903186,regulation of vitellogenesis +13.3995004,GO:1903966,http://purl.obolibrary.org/obo/GO_1903966,monounsaturated fatty acid biosynthetic process +13.3995004,GO:1990110,http://purl.obolibrary.org/obo/GO_1990110,callus formation +13.3995004,GO:1990516,http://purl.obolibrary.org/obo/GO_1990516,ribonucleotide excision repair +13.3995004,HP:0002665,http://purl.obolibrary.org/obo/HP_0002665,Lymphoma +13.3995004,HP:0007354,http://purl.obolibrary.org/obo/HP_0007354,Amyotrophic lateral sclerosis +13.3995004,HP:0011974,http://purl.obolibrary.org/obo/HP_0011974,Myelofibrosis +13.3995004,MONDO:0000486,http://purl.obolibrary.org/obo/MONDO_0000486,craniofacial dystonia +13.3995004,MONDO:0000913,http://purl.obolibrary.org/obo/MONDO_0000913,hereditary spherocytosis type 2 +13.3995004,MONDO:0001081,http://purl.obolibrary.org/obo/MONDO_0001081,acute cervicitis +13.3995004,MONDO:0001161,http://purl.obolibrary.org/obo/MONDO_0001161,schizoid personality disorder +13.3995004,MONDO:0002303,http://purl.obolibrary.org/obo/MONDO_0002303,central retinal vein occlusion +13.3995004,MONDO:0002555,http://purl.obolibrary.org/obo/MONDO_0002555,trigeminal schwannoma +13.3995004,MONDO:0003366,http://purl.obolibrary.org/obo/MONDO_0003366,hydrarthrosis +13.3995004,MONDO:0003412,http://purl.obolibrary.org/obo/MONDO_0003412,retroperitoneal hemangiopericytoma +13.3995004,MONDO:0004820,http://purl.obolibrary.org/obo/MONDO_0004820,peripheral nerve schwannoma +13.3995004,MONDO:0007377,http://purl.obolibrary.org/obo/MONDO_0007377,granular corneal dystrophy type I +13.3995004,MONDO:0007943,http://purl.obolibrary.org/obo/MONDO_0007943,Nager acrofacial dysostosis +13.3995004,MONDO:0009174,http://purl.obolibrary.org/obo/MONDO_0009174,protein-losing enteropathy +13.3995004,MONDO:0009549,http://purl.obolibrary.org/obo/MONDO_0009549,severe early-childhood-onset retinal dystrophy +13.3995004,MONDO:0009561,http://purl.obolibrary.org/obo/MONDO_0009561,alpha-mannosidosis +13.3995004,MONDO:0009773,http://purl.obolibrary.org/obo/MONDO_0009773,odonto-onycho-dermal dysplasia +13.3995004,MONDO:0010217,http://purl.obolibrary.org/obo/MONDO_0010217,de Sanctis-Cacchione syndrome +13.3995004,MONDO:0011176,http://purl.obolibrary.org/obo/MONDO_0011176,intestinal hypomagnesemia 1 +13.3995004,MONDO:0011214,http://purl.obolibrary.org/obo/MONDO_0011214,progressive familial intrahepatic cholestasis type 3 +13.3995004,MONDO:0011264,http://purl.obolibrary.org/obo/MONDO_0011264,torsion dystonia 6 +13.3995004,MONDO:0011925,http://purl.obolibrary.org/obo/MONDO_0011925,congenital merosin-deficient muscular dystrophy 1A +13.3995004,MONDO:0012396,http://purl.obolibrary.org/obo/MONDO_0012396,exercise-induced hyperinsulinism +13.3995004,MONDO:0013362,http://purl.obolibrary.org/obo/MONDO_0013362,THOC6-related developmental delay-microcephaly-facial dysmorphism syndrome +13.3995004,MONDO:0013809,http://purl.obolibrary.org/obo/MONDO_0013809,"cerebellar ataxia, neuropathy, and vestibular areflexia syndrome" +13.3995004,MONDO:0015478,http://purl.obolibrary.org/obo/MONDO_0015478,paramedian facial cleft +13.3995004,MONDO:0015675,http://purl.obolibrary.org/obo/MONDO_0015675,distomatosis +13.3995004,MONDO:0016149,http://purl.obolibrary.org/obo/MONDO_0016149,qualitative or quantitative defects of merosin +13.3995004,MONDO:0016536,http://purl.obolibrary.org/obo/MONDO_0016536,autosomal recessive lymphoproliferative disease +13.3995004,MONDO:0017258,http://purl.obolibrary.org/obo/MONDO_0017258,idiopathic panuveitis +13.3995004,MONDO:0017838,http://purl.obolibrary.org/obo/MONDO_0017838,sclerosteosis +13.3995004,MONDO:0018459,http://purl.obolibrary.org/obo/MONDO_0018459,isolated glycerol kinase deficiency +13.3995004,MONDO:0018504,http://purl.obolibrary.org/obo/MONDO_0018504,undifferentiated carcinoma of stomach +13.3995004,MONDO:0018631,http://purl.obolibrary.org/obo/MONDO_0018631,Marie Unna hereditary hypotrichosis +13.3995004,MONDO:0018788,http://purl.obolibrary.org/obo/MONDO_0018788,COL4A1 or COL4A2-related cerebral small vessel disease +13.3995004,MONDO:0019396,http://purl.obolibrary.org/obo/MONDO_0019396,collagen type III glomerulopathy +13.3995004,MONDO:0019797,http://purl.obolibrary.org/obo/MONDO_0019797,acrodysostosis +13.3995004,MONDO:0019830,http://purl.obolibrary.org/obo/MONDO_0019830,congenital anomaly of the inferior vena cava +13.3995004,MONDO:0020657,http://purl.obolibrary.org/obo/MONDO_0020657,human papillomavirus-related squamous cell carcinoma +13.3995004,MONDO:0021750,http://purl.obolibrary.org/obo/MONDO_0021750,pyonephrosis +13.3995004,MONDO:0022697,http://purl.obolibrary.org/obo/MONDO_0022697,athetoid cerebral palsy +13.3995004,MONDO:0023558,http://purl.obolibrary.org/obo/MONDO_0023558,Kocher-debre-Semelaigne syndrome +13.3995004,MONDO:0024988,http://purl.obolibrary.org/obo/MONDO_0024988,sex cord-stromal benign neoplasm +13.3995004,MONDO:0043219,http://purl.obolibrary.org/obo/MONDO_0043219,migraine with brainstem aura +13.3995004,MONDO:0044629,http://purl.obolibrary.org/obo/MONDO_0044629,congenital amyoplasia +13.3995004,MONDO:0100228,http://purl.obolibrary.org/obo/MONDO_0100228,LAMA2-related muscular dystrophy +13.3995004,NCBITaxon:10586,http://purl.obolibrary.org/obo/NCBITaxon_10586,none +13.3995004,NCBITaxon:10649,http://purl.obolibrary.org/obo/NCBITaxon_10649,none +13.3995004,NCBITaxon:10699,http://purl.obolibrary.org/obo/NCBITaxon_10699,none +13.3995004,NCBITaxon:11582,http://purl.obolibrary.org/obo/NCBITaxon_11582,none +13.3995004,NCBITaxon:12138,http://purl.obolibrary.org/obo/NCBITaxon_12138,none +13.3995004,NCBITaxon:12208,http://purl.obolibrary.org/obo/NCBITaxon_12208,none +13.3995004,NCBITaxon:12263,http://purl.obolibrary.org/obo/NCBITaxon_12263,none +13.3995004,NCBITaxon:139272,http://purl.obolibrary.org/obo/NCBITaxon_139272,none +13.3995004,NCBITaxon:140568,http://purl.obolibrary.org/obo/NCBITaxon_140568,none +13.3995004,NCBITaxon:1446379,http://purl.obolibrary.org/obo/NCBITaxon_1446379,none +13.3995004,NCBITaxon:1511894,http://purl.obolibrary.org/obo/NCBITaxon_1511894,none +13.3995004,NCBITaxon:2560072,http://purl.obolibrary.org/obo/NCBITaxon_2560072,none +13.3995004,NCBITaxon:2560289,http://purl.obolibrary.org/obo/NCBITaxon_2560289,none +13.3995004,NCBITaxon:26319,http://purl.obolibrary.org/obo/NCBITaxon_26319,none +13.3995004,NCBITaxon:32332,http://purl.obolibrary.org/obo/NCBITaxon_32332,none +13.3995004,NCBITaxon:341671,http://purl.obolibrary.org/obo/NCBITaxon_341671,none +13.3995004,NCBITaxon:35289,http://purl.obolibrary.org/obo/NCBITaxon_35289,none +13.3995004,NCBITaxon:46608,http://purl.obolibrary.org/obo/NCBITaxon_46608,none +13.3995004,NCBITaxon:48139,http://purl.obolibrary.org/obo/NCBITaxon_48139,none +13.3995004,NCBITaxon:559292,http://purl.obolibrary.org/obo/NCBITaxon_559292,none +13.3995004,NCBITaxon:6040,http://purl.obolibrary.org/obo/NCBITaxon_6040,Porifera +13.3995004,NCBITaxon:6712,http://purl.obolibrary.org/obo/NCBITaxon_6712,none +13.3995004,NCBITaxon:6724,http://purl.obolibrary.org/obo/NCBITaxon_6724,Astacoidea +13.3995004,NCBITaxon:7257,http://purl.obolibrary.org/obo/NCBITaxon_7257,none +13.3995004,NCBITaxon:92395,http://purl.obolibrary.org/obo/NCBITaxon_92395,none +13.3995004,NCBITaxon:99000,http://purl.obolibrary.org/obo/NCBITaxon_99000,none +13.3995004,NCBITaxon:9923,http://purl.obolibrary.org/obo/NCBITaxon_9923,none +13.3995004,PR:000003706,http://purl.obolibrary.org/obo/PR_000003706,acylphosphatase-2 +13.3995004,PR:000003726,http://purl.obolibrary.org/obo/PR_000003726,ADAM DEC1 +13.3995004,PR:000004388,http://purl.obolibrary.org/obo/PR_000004388,astacin-like metalloendopeptidase +13.3995004,PR:000004394,http://purl.obolibrary.org/obo/PR_000004394,ATPase family AAA domain-containing protein 5 +13.3995004,PR:000004540,http://purl.obolibrary.org/obo/PR_000004540,none +13.3995004,PR:000004556,http://purl.obolibrary.org/obo/PR_000004556,A-kinase anchor protein 7 +13.3995004,PR:000004623,http://purl.obolibrary.org/obo/PR_000004623,BAG family molecular chaperone regulator 5 +13.3995004,PR:000004670,http://purl.obolibrary.org/obo/PR_000004670,protein PTHB1 +13.3995004,PR:000005047,http://purl.obolibrary.org/obo/PR_000005047,"dynein intermediate chain CFAP94, axonemal" +13.3995004,PR:000005229,http://purl.obolibrary.org/obo/PR_000005229,cadherin-10 +13.3995004,PR:000005306,http://purl.obolibrary.org/obo/PR_000005306,carcinoembryonic antigen-related cell adhesion molecule 7 +13.3995004,PR:000005380,http://purl.obolibrary.org/obo/PR_000005380,complement factor H-related protein 2 +13.3995004,PR:000005637,http://purl.obolibrary.org/obo/PR_000005637,connector enhancer of kinase suppressor of ras 1 +13.3995004,PR:000005685,http://purl.obolibrary.org/obo/PR_000005685,conserved oligomeric Golgi complex subunit 2 +13.3995004,PR:000005971,http://purl.obolibrary.org/obo/PR_000005971,cystatin-9 +13.3995004,PR:000006000,http://purl.obolibrary.org/obo/PR_000006000,carboxy-terminal domain RNA polymerase II polypeptide A small phosphatase 2 +13.3995004,PR:000006128,http://purl.obolibrary.org/obo/PR_000006128,cytochrome P450 2W1 +13.3995004,PR:000006365,http://purl.obolibrary.org/obo/PR_000006365,ATP-dependent RNA helicase DDX3Y +13.3995004,PR:000006418,http://purl.obolibrary.org/obo/PR_000006418,C-myc promoter-binding protein +13.3995004,PR:000006630,http://purl.obolibrary.org/obo/PR_000006630,docking protein 3 +13.3995004,PR:000006741,http://purl.obolibrary.org/obo/PR_000006741,dual specificity protein phosphatase 14 +13.3995004,PR:000006930,http://purl.obolibrary.org/obo/PR_000006930,epidermal growth factor-like protein 6 +13.3995004,PR:000006950,http://purl.obolibrary.org/obo/PR_000006950,etoposide-induced protein 2.4 +13.3995004,PR:000007190,http://purl.obolibrary.org/obo/PR_000007190,endoplasmic reticulum resident protein 29 +13.3995004,PR:000007260,http://purl.obolibrary.org/obo/PR_000007260,exosome complex component RRP40 +13.3995004,PR:000007476,http://purl.obolibrary.org/obo/PR_000007476,"FYVE, RhoGEF and PH domain-containing protein 4" +13.3995004,PR:000007666,http://purl.obolibrary.org/obo/PR_000007666,FERM domain-containing protein 4B +13.3995004,PR:000007947,http://purl.obolibrary.org/obo/PR_000007947,glutamine--fructose-6-phosphate aminotransferase [isomerizing] 2 +13.3995004,PR:000008044,http://purl.obolibrary.org/obo/PR_000008044,glycine receptor subunit alpha-3 +13.3995004,PR:000008215,http://purl.obolibrary.org/obo/PR_000008215,glutathione peroxidase 6 +13.3995004,PR:000008753,http://purl.obolibrary.org/obo/PR_000008753,hornerin +13.3995004,PR:000008757,http://purl.obolibrary.org/obo/PR_000008757,heparan sulfate 2-O-sulfotransferase 1 +13.3995004,PR:000008852,http://purl.obolibrary.org/obo/PR_000008852,hydrolethalus syndrome protein 1 +13.3995004,PR:000008906,http://purl.obolibrary.org/obo/PR_000008906,interferon-induced 35 kDa protein +13.3995004,PR:000009016,http://purl.obolibrary.org/obo/PR_000009016,U3 small nucleolar ribonucleoprotein protein IMP4 +13.3995004,PR:000009098,http://purl.obolibrary.org/obo/PR_000009098,IQ motif and SEC7 domain-containing protein 1 +13.3995004,PR:000009679,http://purl.obolibrary.org/obo/PR_000009679,ceramide synthase 3 +13.3995004,PR:000009719,http://purl.obolibrary.org/obo/PR_000009719,leucine carboxyl methyltransferase 1 +13.3995004,PR:000009891,http://purl.obolibrary.org/obo/PR_000009891,lysophosphatidylcholine acyltransferase 2 +13.3995004,PR:000010266,http://purl.obolibrary.org/obo/PR_000010266,nuclear protein MDM1 +13.3995004,PR:000010737,http://purl.obolibrary.org/obo/PR_000010737,myotubularin-related protein 3 +13.3995004,PR:000011154,http://purl.obolibrary.org/obo/PR_000011154,neurogenic differentiation factor 4 +13.3995004,PR:000011214,http://purl.obolibrary.org/obo/PR_000011214,ninjurin-2 +13.3995004,PR:000011289,http://purl.obolibrary.org/obo/PR_000011289,N-myc-interactor +13.3995004,PR:000011505,http://purl.obolibrary.org/obo/PR_000011505,Numb-like protein +13.3995004,PR:000011548,http://purl.obolibrary.org/obo/PR_000011548,nyctalopin +13.3995004,PR:000011588,http://purl.obolibrary.org/obo/PR_000011588,obscurin-like protein 1 +13.3995004,PR:000012029,http://purl.obolibrary.org/obo/PR_000012029,protein LTO1 homolog +13.3995004,PR:000012298,http://purl.obolibrary.org/obo/PR_000012298,protein mono-ADP-ribosyltransferase PARP4 +13.3995004,PR:000012536,http://purl.obolibrary.org/obo/PR_000012536,peflin +13.3995004,PR:000012595,http://purl.obolibrary.org/obo/PR_000012595,post-GPI attachment to proteins factor 2 +13.3995004,PR:000012716,http://purl.obolibrary.org/obo/PR_000012716,phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit beta +13.3995004,PR:000012994,http://purl.obolibrary.org/obo/PR_000012994,"DNA-directed RNA polymerases I, II, and III subunit RPABC3" +13.3995004,PR:000013132,http://purl.obolibrary.org/obo/PR_000013132,neurabin-1 +13.3995004,PR:000013287,http://purl.obolibrary.org/obo/PR_000013287,pre-mRNA-processing factor 6 +13.3995004,PR:000013456,http://purl.obolibrary.org/obo/PR_000013456,tyrosine-protein phosphatase non-receptor type 21 +13.3995004,PR:000013472,http://purl.obolibrary.org/obo/PR_000013472,receptor-type tyrosine-protein phosphatase kappa +13.3995004,PR:000013789,http://purl.obolibrary.org/obo/PR_000013789,RNA-binding protein 24 +13.3995004,PR:000015017,http://purl.obolibrary.org/obo/PR_000015017,mitochondrial 2-oxodicarboxylate carrier +13.3995004,PR:000015267,http://purl.obolibrary.org/obo/PR_000015267,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 3 +13.3995004,PR:000015588,http://purl.obolibrary.org/obo/PR_000015588,SPRY domain-containing SOCS box protein 3 +13.3995004,PR:000015774,http://purl.obolibrary.org/obo/PR_000015774,STE20-related kinase adapter protein alpha +13.3995004,PR:000016253,http://purl.obolibrary.org/obo/PR_000016253,testis-expressed protein 14 +13.3995004,PR:000016538,http://purl.obolibrary.org/obo/PR_000016538,mitochondrial import receptor subunit TOM5 +13.3995004,PR:000016611,http://purl.obolibrary.org/obo/PR_000016611,trafficking protein particle complex subunit 1 +13.3995004,PR:000016661,http://purl.obolibrary.org/obo/PR_000016661,tripartite motif-containing protein 54 +13.3995004,PR:000016771,http://purl.obolibrary.org/obo/PR_000016771,testis-specific serine/threonine-protein kinase 2 +13.3995004,PR:000016844,http://purl.obolibrary.org/obo/PR_000016844,twinfilin-1 +13.3995004,PR:000016861,http://purl.obolibrary.org/obo/PR_000016861,thioredoxin domain-containing protein 3 +13.3995004,PR:000016955,http://purl.obolibrary.org/obo/PR_000016955,ubiquitin-like modifier-activating enzyme 6 +13.3995004,PR:000017178,http://purl.obolibrary.org/obo/PR_000017178,U4/U6.U5 tri-snRNP-associated protein 2 +13.3995004,PR:000018210,http://purl.obolibrary.org/obo/PR_000018210,zona pellucida sperm-binding protein 1 +13.3995004,PR:000022655,http://purl.obolibrary.org/obo/PR_000022655,none +13.3995004,PR:000022872,http://purl.obolibrary.org/obo/PR_000022872,none +13.3995004,PR:000023447,http://purl.obolibrary.org/obo/PR_000023447,none +13.3995004,PR:000023448,http://purl.obolibrary.org/obo/PR_000023448,none +13.3995004,PR:000023678,http://purl.obolibrary.org/obo/PR_000023678,none +13.3995004,PR:000023932,http://purl.obolibrary.org/obo/PR_000023932,none +13.3995004,PR:000023934,http://purl.obolibrary.org/obo/PR_000023934,none +13.3995004,PR:000024125,http://purl.obolibrary.org/obo/PR_000024125,none +13.3995004,PR:000029746,http://purl.obolibrary.org/obo/PR_000029746,store-operated calcium entry-associated regulatory factor +13.3995004,PR:000029890,http://purl.obolibrary.org/obo/PR_000029890,palmitoyltransferase ZDHHC16 +13.3995004,PR:000030419,http://purl.obolibrary.org/obo/PR_000030419,cap-specific mRNA (nucleoside-2'-O-)-methyltransferase 1 +13.3995004,PR:000030733,http://purl.obolibrary.org/obo/PR_000030733,epimerase family protein SDR39U1 +13.3995004,PR:000031657,http://purl.obolibrary.org/obo/PR_000031657,killer cell immunoglobulin-like receptor 2DL5B +13.3995004,PR:000032310,http://purl.obolibrary.org/obo/PR_000032310,"probable tRNA N6-adenosine threonylcarbamoyltransferase, mitochondrial" +13.3995004,PR:000033021,http://purl.obolibrary.org/obo/PR_000033021,none +13.3995004,PR:000033874,http://purl.obolibrary.org/obo/PR_000033874,none +13.3995004,PR:000033907,http://purl.obolibrary.org/obo/PR_000033907,none +13.3995004,PR:000035334,http://purl.obolibrary.org/obo/PR_000035334,none +13.3995004,PR:000037386,http://purl.obolibrary.org/obo/PR_000037386,KH homology domain-containing protein 4 +13.3995004,PR:A1Z7Z9,http://purl.obolibrary.org/obo/PR_A1Z7Z9,none +13.3995004,PR:G5EGK5,http://purl.obolibrary.org/obo/PR_G5EGK5,none +13.3995004,PR:O21037,http://purl.obolibrary.org/obo/PR_O21037,none +13.3995004,PR:O81283,http://purl.obolibrary.org/obo/PR_O81283,none +13.3995004,PR:P14906,http://purl.obolibrary.org/obo/PR_P14906,none +13.3995004,PR:P25046,http://purl.obolibrary.org/obo/PR_P25046,none +13.3995004,PR:P40997,http://purl.obolibrary.org/obo/PR_P40997,none +13.3995004,PR:P41920,http://purl.obolibrary.org/obo/PR_P41920,none +13.3995004,PR:P42838,http://purl.obolibrary.org/obo/PR_P42838,none +13.3995004,PR:P52923,http://purl.obolibrary.org/obo/PR_P52923,none +13.3995004,PR:P91143,http://purl.obolibrary.org/obo/PR_P91143,none +13.3995004,PR:Q1WIQ6,http://purl.obolibrary.org/obo/PR_Q1WIQ6,none +13.3995004,PR:Q39103,http://purl.obolibrary.org/obo/PR_Q39103,none +13.3995004,PR:Q39161,http://purl.obolibrary.org/obo/PR_Q39161,none +13.3995004,PR:Q8L548,http://purl.obolibrary.org/obo/PR_Q8L548,none +13.3995004,PR:Q8S9J1,http://purl.obolibrary.org/obo/PR_Q8S9J1,none +13.3995004,PR:Q96266,http://purl.obolibrary.org/obo/PR_Q96266,none +13.3995004,PR:Q9C8W9,http://purl.obolibrary.org/obo/PR_Q9C8W9,none +13.3995004,PR:Q9FHW7,http://purl.obolibrary.org/obo/PR_Q9FHW7,none +13.3995004,PR:Q9SAC6,http://purl.obolibrary.org/obo/PR_Q9SAC6,none +13.3995004,PR:Q9SRR0,http://purl.obolibrary.org/obo/PR_Q9SRR0,none +13.3995004,PR:Q9WTV6,http://purl.obolibrary.org/obo/PR_Q9WTV6,none +13.3995004,SO:0001316,http://purl.obolibrary.org/obo/SO_0001316,seven_deazaguanosine +13.3995004,SO:0002056,http://purl.obolibrary.org/obo/SO_0002056,intronic_splicing_silencer +13.3995004,SO:1000039,http://purl.obolibrary.org/obo/SO_1000039,direct_tandem_duplication +13.3995004,UBERON:0001660,http://purl.obolibrary.org/obo/UBERON_0001660,maxillary vein +13.3995004,UBERON:0001935,http://purl.obolibrary.org/obo/UBERON_0001935,ventromedial nucleus of hypothalamus +13.3995004,UBERON:0002189,http://purl.obolibrary.org/obo/UBERON_0002189,outer cortex of kidney +13.3995004,UBERON:0002242,http://purl.obolibrary.org/obo/UBERON_0002242,nucleus pulposus +13.3995004,UBERON:0002396,http://purl.obolibrary.org/obo/UBERON_0002396,vomer +13.3995004,UBERON:0004291,http://purl.obolibrary.org/obo/UBERON_0004291,heart rudiment +13.3995004,UBERON:0004675,http://purl.obolibrary.org/obo/UBERON_0004675,hypoglossal nerve root +13.3995004,UBERON:0005941,http://purl.obolibrary.org/obo/UBERON_0005941,hair inner root sheath +13.3995004,UBERON:0006216,http://purl.obolibrary.org/obo/UBERON_0006216,cervical sinus of His +13.3995004,UBERON:0009494,http://purl.obolibrary.org/obo/UBERON_0009494,pharyngeal arch mesenchymal region +13.3995004,UBERON:0009621,http://purl.obolibrary.org/obo/UBERON_0009621,tail somite +13.3995004,UBERON:0010075,http://purl.obolibrary.org/obo/UBERON_0010075,sacral neural crest +13.3995004,UBERON:0011362,http://purl.obolibrary.org/obo/UBERON_0011362,cranial blood vasculature +13.3995004,UBERON:0013598,http://purl.obolibrary.org/obo/UBERON_0013598,accessory nucleus of optic tract +13.3995004,UBERON:0016883,http://purl.obolibrary.org/obo/UBERON_0016883,ovarian fossa +13.3995004,UBERON:0017628,http://purl.obolibrary.org/obo/UBERON_0017628,swim bladder gas gland +13.3995004,UBERON:0019210,http://purl.obolibrary.org/obo/UBERON_0019210,pole of lens +13.3995004,UBERON:0026586,http://purl.obolibrary.org/obo/UBERON_0026586,vestibular canal +13.3995004,UBERON:3000041,http://purl.obolibrary.org/obo/UBERON_3000041,Bidder's organ +13.4284879,CHEBI:140324,http://purl.obolibrary.org/obo/CHEBI_140324,primary carboxamide +13.4284879,CHEBI:22063,http://purl.obolibrary.org/obo/CHEBI_22063,sulfoxide +13.4284879,CHEBI:22916,http://purl.obolibrary.org/obo/CHEBI_22916,boron molecular entity +13.4284879,CHEBI:24031,http://purl.obolibrary.org/obo/CHEBI_24031,ferulic acids +13.4284879,CHEBI:26799,http://purl.obolibrary.org/obo/CHEBI_26799,styrenes +13.4284879,CHEBI:28868,http://purl.obolibrary.org/obo/CHEBI_28868,fatty acid anion +13.4284879,CHEBI:28984,http://purl.obolibrary.org/obo/CHEBI_28984,aluminium atom +13.4284879,CHEBI:33363,http://purl.obolibrary.org/obo/CHEBI_33363,palladium +13.4284879,CHEBI:33551,http://purl.obolibrary.org/obo/CHEBI_33551,organosulfonic acid +13.4284879,CHEBI:39417,http://purl.obolibrary.org/obo/CHEBI_39417,branched-chain saturated fatty acid +13.4284879,CHEBI:62915,http://purl.obolibrary.org/obo/CHEBI_62915,sialyltransferase inhibitor +13.4284879,CHEBI:6809,http://purl.obolibrary.org/obo/CHEBI_6809,methamphetamine +13.4284879,CHEBI:76882,http://purl.obolibrary.org/obo/CHEBI_76882,EC 2.4.99.* (glycosyltransferases transferring other glycosyl groups) inhibitor +13.4284879,CHEBI:83628,http://purl.obolibrary.org/obo/CHEBI_83628,N-acylammonia +13.4284879,CL:0000253,http://purl.obolibrary.org/obo/CL_0000253,eurydendroid cell +13.4284879,CL:0000347,http://purl.obolibrary.org/obo/CL_0000347,scleral cell +13.4284879,CL:0000728,http://purl.obolibrary.org/obo/CL_0000728,secondary pigment cell +13.4284879,CL:0002053,http://purl.obolibrary.org/obo/CL_0002053,"CD22-positive, CD38-low small pre-B cell" +13.4284879,CL:1000454,http://purl.obolibrary.org/obo/CL_1000454,kidney collecting duct epithelial cell +13.4284879,CL:1001005,http://purl.obolibrary.org/obo/CL_1001005,glomerular capillary endothelial cell +13.4284879,DRUGBANK:DB00212,http://purl.obolibrary.org/obo/DRUGBANK_DB00212,none +13.4284879,DRUGBANK:DB00223,http://purl.obolibrary.org/obo/DRUGBANK_DB00223,none +13.4284879,DRUGBANK:DB00383,http://purl.obolibrary.org/obo/DRUGBANK_DB00383,none +13.4284879,DRUGBANK:DB01485,http://purl.obolibrary.org/obo/DRUGBANK_DB01485,none +13.4284879,DRUGBANK:DB02561,http://purl.obolibrary.org/obo/DRUGBANK_DB02561,none +13.4284879,DRUGBANK:DB04258,http://purl.obolibrary.org/obo/DRUGBANK_DB04258,none +13.4284879,DRUGBANK:DB04356,http://purl.obolibrary.org/obo/DRUGBANK_DB04356,none +13.4284879,DRUGBANK:DB04877,http://purl.obolibrary.org/obo/DRUGBANK_DB04877,none +13.4284879,DRUGBANK:DB05683,http://purl.obolibrary.org/obo/DRUGBANK_DB05683,none +13.4284879,DRUGBANK:DB06091,http://purl.obolibrary.org/obo/DRUGBANK_DB06091,none +13.4284879,DRUGBANK:DB06420,http://purl.obolibrary.org/obo/DRUGBANK_DB06420,none +13.4284879,DRUGBANK:DB06431,http://purl.obolibrary.org/obo/DRUGBANK_DB06431,none +13.4284879,DRUGBANK:DB06512,http://purl.obolibrary.org/obo/DRUGBANK_DB06512,none +13.4284879,DRUGBANK:DB09098,http://purl.obolibrary.org/obo/DRUGBANK_DB09098,none +13.4284879,DRUGBANK:DB09135,http://purl.obolibrary.org/obo/DRUGBANK_DB09135,none +13.4284879,DRUGBANK:DB09194,http://purl.obolibrary.org/obo/DRUGBANK_DB09194,none +13.4284879,DRUGBANK:DB09248,http://purl.obolibrary.org/obo/DRUGBANK_DB09248,none +13.4284879,DRUGBANK:DB09335,http://purl.obolibrary.org/obo/DRUGBANK_DB09335,none +13.4284879,DRUGBANK:DB09378,http://purl.obolibrary.org/obo/DRUGBANK_DB09378,none +13.4284879,DRUGBANK:DB10885,http://purl.obolibrary.org/obo/DRUGBANK_DB10885,none +13.4284879,DRUGBANK:DB11663,http://purl.obolibrary.org/obo/DRUGBANK_DB11663,none +13.4284879,DRUGBANK:DB11708,http://purl.obolibrary.org/obo/DRUGBANK_DB11708,none +13.4284879,DRUGBANK:DB11712,http://purl.obolibrary.org/obo/DRUGBANK_DB11712,none +13.4284879,DRUGBANK:DB11717,http://purl.obolibrary.org/obo/DRUGBANK_DB11717,none +13.4284879,DRUGBANK:DB11929,http://purl.obolibrary.org/obo/DRUGBANK_DB11929,none +13.4284879,DRUGBANK:DB11944,http://purl.obolibrary.org/obo/DRUGBANK_DB11944,none +13.4284879,DRUGBANK:DB12046,http://purl.obolibrary.org/obo/DRUGBANK_DB12046,none +13.4284879,DRUGBANK:DB12224,http://purl.obolibrary.org/obo/DRUGBANK_DB12224,none +13.4284879,DRUGBANK:DB12941,http://purl.obolibrary.org/obo/DRUGBANK_DB12941,none +13.4284879,DRUGBANK:DB13581,http://purl.obolibrary.org/obo/DRUGBANK_DB13581,none +13.4284879,DRUGBANK:DB13718,http://purl.obolibrary.org/obo/DRUGBANK_DB13718,none +13.4284879,DRUGBANK:DB14123,http://purl.obolibrary.org/obo/DRUGBANK_DB14123,none +13.4284879,DRUGBANK:DB14281,http://purl.obolibrary.org/obo/DRUGBANK_DB14281,none +13.4284879,DRUGBANK:DB14705,http://purl.obolibrary.org/obo/DRUGBANK_DB14705,none +13.4284879,DRUGBANK:DB15323,http://purl.obolibrary.org/obo/DRUGBANK_DB15323,none +13.4284879,DRUGBANK:DB15933,http://purl.obolibrary.org/obo/DRUGBANK_DB15933,none +13.4284879,GO:0001609,http://purl.obolibrary.org/obo/GO_0001609,G protein-coupled adenosine receptor activity +13.4284879,GO:0001905,http://purl.obolibrary.org/obo/GO_0001905,activation of membrane attack complex +13.4284879,GO:0002209,http://purl.obolibrary.org/obo/GO_0002209,behavioral defense response +13.4284879,GO:0004100,http://purl.obolibrary.org/obo/GO_0004100,chitin synthase activity +13.4284879,GO:0006116,http://purl.obolibrary.org/obo/GO_0006116,NADH oxidation +13.4284879,GO:0006188,http://purl.obolibrary.org/obo/GO_0006188,IMP biosynthetic process +13.4284879,GO:0006458,http://purl.obolibrary.org/obo/GO_0006458,'de novo' protein folding +13.4284879,GO:0008117,http://purl.obolibrary.org/obo/GO_0008117,sphinganine-1-phosphate aldolase activity +13.4284879,GO:0008388,http://purl.obolibrary.org/obo/GO_0008388,testosterone 15-alpha-hydroxylase activity +13.4284879,GO:0008720,http://purl.obolibrary.org/obo/GO_0008720,D-lactate dehydrogenase activity +13.4284879,GO:0010090,http://purl.obolibrary.org/obo/GO_0010090,trichome morphogenesis +13.4284879,GO:0010354,http://purl.obolibrary.org/obo/GO_0010354,homogentisate prenyltransferase activity +13.4284879,GO:0014073,http://purl.obolibrary.org/obo/GO_0014073,response to tropane +13.4284879,GO:0014896,http://purl.obolibrary.org/obo/GO_0014896,muscle hypertrophy +13.4284879,GO:0015784,http://purl.obolibrary.org/obo/GO_0015784,none +13.4284879,GO:0015853,http://purl.obolibrary.org/obo/GO_0015853,adenine transport +13.4284879,GO:0016156,http://purl.obolibrary.org/obo/GO_0016156,fumarate reductase (NADH) activity +13.4284879,GO:0019482,http://purl.obolibrary.org/obo/GO_0019482,beta-alanine metabolic process +13.4284879,GO:0019563,http://purl.obolibrary.org/obo/GO_0019563,glycerol catabolic process +13.4284879,GO:0019593,http://purl.obolibrary.org/obo/GO_0019593,mannitol biosynthetic process +13.4284879,GO:0021983,http://purl.obolibrary.org/obo/GO_0021983,pituitary gland development +13.4284879,GO:0031080,http://purl.obolibrary.org/obo/GO_0031080,nuclear pore outer ring +13.4284879,GO:0031104,http://purl.obolibrary.org/obo/GO_0031104,dendrite regeneration +13.4284879,GO:0032105,http://purl.obolibrary.org/obo/GO_0032105,negative regulation of response to extracellular stimulus +13.4284879,GO:0032108,http://purl.obolibrary.org/obo/GO_0032108,negative regulation of response to nutrient levels +13.4284879,GO:0032252,http://purl.obolibrary.org/obo/GO_0032252,secretory granule localization +13.4284879,GO:0032950,http://purl.obolibrary.org/obo/GO_0032950,regulation of beta-glucan metabolic process +13.4284879,GO:0033233,http://purl.obolibrary.org/obo/GO_0033233,regulation of protein sumoylation +13.4284879,GO:0036465,http://purl.obolibrary.org/obo/GO_0036465,synaptic vesicle recycling +13.4284879,GO:0042130,http://purl.obolibrary.org/obo/GO_0042130,negative regulation of T cell proliferation +13.4284879,GO:0042343,http://purl.obolibrary.org/obo/GO_0042343,indole glucosinolate metabolic process +13.4284879,GO:0042586,http://purl.obolibrary.org/obo/GO_0042586,peptide deformylase activity +13.4284879,GO:0042588,http://purl.obolibrary.org/obo/GO_0042588,zymogen granule +13.4284879,GO:0042648,http://purl.obolibrary.org/obo/GO_0042648,chloroplast chromosome +13.4284879,GO:0046271,http://purl.obolibrary.org/obo/GO_0046271,phenylpropanoid catabolic process +13.4284879,GO:0046354,http://purl.obolibrary.org/obo/GO_0046354,mannan biosynthetic process +13.4284879,GO:0046479,http://purl.obolibrary.org/obo/GO_0046479,glycosphingolipid catabolic process +13.4284879,GO:0047714,http://purl.obolibrary.org/obo/GO_0047714,galactolipase activity +13.4284879,GO:0051510,http://purl.obolibrary.org/obo/GO_0051510,regulation of unidimensional cell growth +13.4284879,GO:0060979,http://purl.obolibrary.org/obo/GO_0060979,vasculogenesis involved in coronary vascular morphogenesis +13.4284879,GO:0070468,http://purl.obolibrary.org/obo/GO_0070468,dentin extracellular matrix secretion +13.4284879,GO:0070701,http://purl.obolibrary.org/obo/GO_0070701,mucus layer +13.4284879,GO:0070830,http://purl.obolibrary.org/obo/GO_0070830,bicellular tight junction assembly +13.4284879,GO:0070837,http://purl.obolibrary.org/obo/GO_0070837,dehydroascorbic acid transport +13.4284879,GO:0070993,http://purl.obolibrary.org/obo/GO_0070993,translation preinitiation complex +13.4284879,GO:0072132,http://purl.obolibrary.org/obo/GO_0072132,mesenchyme morphogenesis +13.4284879,GO:0085037,http://purl.obolibrary.org/obo/GO_0085037,extrahaustorial membrane +13.4284879,GO:0097014,http://purl.obolibrary.org/obo/GO_0097014,ciliary plasm +13.4284879,GO:0120192,http://purl.obolibrary.org/obo/GO_0120192,tight junction assembly +13.4284879,GO:0120193,http://purl.obolibrary.org/obo/GO_0120193,tight junction organization +13.4284879,GO:1900818,http://purl.obolibrary.org/obo/GO_1900818,ochratoxin A biosynthetic process +13.4284879,GO:1901141,http://purl.obolibrary.org/obo/GO_1901141,regulation of lignin biosynthetic process +13.4284879,GO:1905897,http://purl.obolibrary.org/obo/GO_1905897,regulation of response to endoplasmic reticulum stress +13.4284879,GO:1990164,http://purl.obolibrary.org/obo/GO_1990164,histone H2A phosphorylation +13.4284879,HP:0000025,http://purl.obolibrary.org/obo/HP_0000025,Functional abnormality of male internal genitalia +13.4284879,HP:0001744,http://purl.obolibrary.org/obo/HP_0001744,Splenomegaly +13.4284879,HP:0008669,http://purl.obolibrary.org/obo/HP_0008669,Abnormal spermatogenesis +13.4284879,HP:0012862,http://purl.obolibrary.org/obo/HP_0012862,Abnormal germ cell morphology +13.4284879,HP:0012863,http://purl.obolibrary.org/obo/HP_0012863,Abnormal male germ cell morphology +13.4284879,HP:0012864,http://purl.obolibrary.org/obo/HP_0012864,Abnormal sperm morphology +13.4284879,MONDO:0000507,http://purl.obolibrary.org/obo/MONDO_0000507,inclusion body myopathy with Paget disease of bone and frontotemporal dementia +13.4284879,MONDO:0001537,http://purl.obolibrary.org/obo/MONDO_0001537,tuberculous epididymitis +13.4284879,MONDO:0002382,http://purl.obolibrary.org/obo/MONDO_0002382,benign mesenchymoma +13.4284879,MONDO:0002491,http://purl.obolibrary.org/obo/MONDO_0002491,substance abuse +13.4284879,MONDO:0002920,http://purl.obolibrary.org/obo/MONDO_0002920,malignant ovarian Brenner tumor +13.4284879,MONDO:0004109,http://purl.obolibrary.org/obo/MONDO_0004109,epiglottis neoplasm +13.4284879,MONDO:0004124,http://purl.obolibrary.org/obo/MONDO_0004124,prostate stromal sarcoma +13.4284879,MONDO:0004586,http://purl.obolibrary.org/obo/MONDO_0004586,rheumatoid lung disease +13.4284879,MONDO:0004684,http://purl.obolibrary.org/obo/MONDO_0004684,plantar fibromatosis +13.4284879,MONDO:0005555,http://purl.obolibrary.org/obo/MONDO_0005555,cycloplegia +13.4284879,MONDO:0006157,http://purl.obolibrary.org/obo/MONDO_0006157,colorectal adenosquamous carcinoma +13.4284879,MONDO:0006475,http://purl.obolibrary.org/obo/MONDO_0006475,unclassified renal cell carcinoma +13.4284879,MONDO:0007017,http://purl.obolibrary.org/obo/MONDO_0007017,vitreous detachment +13.4284879,MONDO:0007591,http://purl.obolibrary.org/obo/MONDO_0007591,facial hypertrichosis +13.4284879,MONDO:0007705,http://purl.obolibrary.org/obo/MONDO_0007705,Heinz body anemia +13.4284879,MONDO:0007750,http://purl.obolibrary.org/obo/MONDO_0007750,"hypercholesterolemia, familial, 1" +13.4284879,MONDO:0008030,http://purl.obolibrary.org/obo/MONDO_0008030,facioscapulohumeral muscular dystrophy 1 +13.4284879,MONDO:0008073,http://purl.obolibrary.org/obo/MONDO_0008073,familial juvenile hyperuricemic nephropathy type 1 +13.4284879,MONDO:0008612,http://purl.obolibrary.org/obo/MONDO_0008612,tuberous sclerosis 1 +13.4284879,MONDO:0009727,http://purl.obolibrary.org/obo/MONDO_0009727,atelosteogenesis type II +13.4284879,MONDO:0010026,http://purl.obolibrary.org/obo/MONDO_0010026,SHORT syndrome +13.4284879,MONDO:0011728,http://purl.obolibrary.org/obo/MONDO_0011728,blepharospasm +13.4284879,MONDO:0012215,http://purl.obolibrary.org/obo/MONDO_0012215,myofibrillar myopathy 3 +13.4284879,MONDO:0012321,http://purl.obolibrary.org/obo/MONDO_0012321,Alzheimer disease 10 +13.4284879,MONDO:0012531,http://purl.obolibrary.org/obo/MONDO_0012531,xeroderma pigmentosum group B +13.4284879,MONDO:0014541,http://purl.obolibrary.org/obo/MONDO_0014541,motor developmental delay due to 14q32.2 paternally expressed gene defect +13.4284879,MONDO:0015028,http://purl.obolibrary.org/obo/MONDO_0015028,"48,XXYY syndrome" +13.4284879,MONDO:0015451,http://purl.obolibrary.org/obo/MONDO_0015451,univentricular heart +13.4284879,MONDO:0017006,http://purl.obolibrary.org/obo/MONDO_0017006,X and Y chromosomal anomaly +13.4284879,MONDO:0017579,http://purl.obolibrary.org/obo/MONDO_0017579,Baraitser-Winter cerebrofrontofacial syndrome +13.4284879,MONDO:0017890,http://purl.obolibrary.org/obo/MONDO_0017890,tubulocystic renal cell carcinoma +13.4284879,MONDO:0019231,http://purl.obolibrary.org/obo/MONDO_0019231,inborn disorder of pentose phosphate metabolism +13.4284879,MONDO:0019848,http://purl.obolibrary.org/obo/MONDO_0019848,posterior hypospadias +13.4284879,MONDO:0020537,http://purl.obolibrary.org/obo/MONDO_0020537,occupational allergic alveolitis +13.4284879,MONDO:0020648,http://purl.obolibrary.org/obo/MONDO_0020648,rubella encephalitis +13.4284879,MONDO:0021082,http://purl.obolibrary.org/obo/MONDO_0021082,Meckel diverticulum neoplasm +13.4284879,MONDO:0021164,http://purl.obolibrary.org/obo/MONDO_0021164,posthitis +13.4284879,MONDO:0021439,http://purl.obolibrary.org/obo/MONDO_0021439,benign neoplasm of pituitary gland +13.4284879,MONDO:0022535,http://purl.obolibrary.org/obo/MONDO_0022535,autonomic facial cephalgia +13.4284879,MONDO:0023188,http://purl.obolibrary.org/obo/MONDO_0023188,Freiberg disease +13.4284879,MONDO:0044663,http://purl.obolibrary.org/obo/MONDO_0044663,aquagenic palmoplantar keratoderma +13.4284879,MONDO:0045037,http://purl.obolibrary.org/obo/MONDO_0045037,hyalohyphomycosis +13.4284879,MONDO:0700002,http://purl.obolibrary.org/obo/MONDO_0700002,ATP1A3-associated neurological disorder +13.4284879,NCBITaxon:10295,http://purl.obolibrary.org/obo/NCBITaxon_10295,none +13.4284879,NCBITaxon:10600,http://purl.obolibrary.org/obo/NCBITaxon_10600,none +13.4284879,NCBITaxon:10989,http://purl.obolibrary.org/obo/NCBITaxon_10989,none +13.4284879,NCBITaxon:11215,http://purl.obolibrary.org/obo/NCBITaxon_11215,Bovine respirovirus 3 +13.4284879,NCBITaxon:11629,http://purl.obolibrary.org/obo/NCBITaxon_11629,none +13.4284879,NCBITaxon:11848,http://purl.obolibrary.org/obo/NCBITaxon_11848,none +13.4284879,NCBITaxon:12262,http://purl.obolibrary.org/obo/NCBITaxon_12262,none +13.4284879,NCBITaxon:174621,http://purl.obolibrary.org/obo/NCBITaxon_174621,none +13.4284879,NCBITaxon:186536,http://purl.obolibrary.org/obo/NCBITaxon_186536,Ebolavirus +13.4284879,NCBITaxon:194540,http://purl.obolibrary.org/obo/NCBITaxon_194540,none +13.4284879,NCBITaxon:2072716,http://purl.obolibrary.org/obo/NCBITaxon_2072716,Spiruromorpha +13.4284879,NCBITaxon:2170081,http://purl.obolibrary.org/obo/NCBITaxon_2170081,none +13.4284879,NCBITaxon:27316,http://purl.obolibrary.org/obo/NCBITaxon_27316,none +13.4284879,NCBITaxon:2734473,http://purl.obolibrary.org/obo/NCBITaxon_2734473,none +13.4284879,NCBITaxon:28282,http://purl.obolibrary.org/obo/NCBITaxon_28282,none +13.4284879,NCBITaxon:2840070,http://purl.obolibrary.org/obo/NCBITaxon_2840070,none +13.4284879,NCBITaxon:32378,http://purl.obolibrary.org/obo/NCBITaxon_32378,none +13.4284879,NCBITaxon:33183,http://purl.obolibrary.org/obo/NCBITaxon_33183,Onygenales +13.4284879,NCBITaxon:3482,http://purl.obolibrary.org/obo/NCBITaxon_3482,none +13.4284879,NCBITaxon:37367,http://purl.obolibrary.org/obo/NCBITaxon_37367,none +13.4284879,NCBITaxon:37573,http://purl.obolibrary.org/obo/NCBITaxon_37573,none +13.4284879,NCBITaxon:39235,http://purl.obolibrary.org/obo/NCBITaxon_39235,none +13.4284879,NCBITaxon:39374,http://purl.obolibrary.org/obo/NCBITaxon_39374,none +13.4284879,NCBITaxon:466585,http://purl.obolibrary.org/obo/NCBITaxon_466585,none +13.4284879,NCBITaxon:48300,http://purl.obolibrary.org/obo/NCBITaxon_48300,none +13.4284879,NCBITaxon:54315,http://purl.obolibrary.org/obo/NCBITaxon_54315,Bovine viral diarrhea virus 2 +13.4284879,NCBITaxon:5658,http://purl.obolibrary.org/obo/NCBITaxon_5658,Leishmania +13.4284879,NCBITaxon:9003,http://purl.obolibrary.org/obo/NCBITaxon_9003,none +13.4284879,NCBITaxon:9434,http://purl.obolibrary.org/obo/NCBITaxon_9434,Myotis +13.4284879,NCBITaxon:988644,http://purl.obolibrary.org/obo/NCBITaxon_988644,none +13.4284879,PR:000001339,http://purl.obolibrary.org/obo/PR_000001339,cytokine receptor common subunit beta +13.4284879,PR:000001398,http://purl.obolibrary.org/obo/PR_000001398,leukocyte immunoglobulin-like receptor subfamily A member 4 +13.4284879,PR:000001528,http://purl.obolibrary.org/obo/PR_000001528,probable G-protein coupled receptor 32 +13.4284879,PR:000002116,http://purl.obolibrary.org/obo/PR_000002116,voltage-dependent L-type calcium channel subunit alpha-1S +13.4284879,PR:000003651,http://purl.obolibrary.org/obo/PR_000003651,testicular acid phosphatase +13.4284879,PR:000004141,http://purl.obolibrary.org/obo/PR_000004141,apolipoprotein A-I-binding protein +13.4284879,PR:000004180,http://purl.obolibrary.org/obo/PR_000004180,aquaporin-12A +13.4284879,PR:000004296,http://purl.obolibrary.org/obo/PR_000004296,ADP-ribosylation factor-like protein 8B +13.4284879,PR:000004312,http://purl.obolibrary.org/obo/PR_000004312,actin-related protein 2/3 complex subunit 4 +13.4284879,PR:000004325,http://purl.obolibrary.org/obo/PR_000004325,arylsulfatase F +13.4284879,PR:000004377,http://purl.obolibrary.org/obo/PR_000004377,asparagine synthetase [glutamine-hydrolyzing] +13.4284879,PR:000004458,http://purl.obolibrary.org/obo/PR_000004458,"ATP synthase F(0) complex subunit B1, mitochondrial" +13.4284879,PR:000004541,http://purl.obolibrary.org/obo/PR_000004541,none +13.4284879,PR:000004574,http://purl.obolibrary.org/obo/PR_000004574,none +13.4284879,PR:000004590,http://purl.obolibrary.org/obo/PR_000004590,galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 3 +13.4284879,PR:000004631,http://purl.obolibrary.org/obo/PR_000004631,adhesion G protein-coupled receptor B3 +13.4284879,PR:000004662,http://purl.obolibrary.org/obo/PR_000004662,gamma-butyrobetaine dioxygenase +13.4284879,PR:000004688,http://purl.obolibrary.org/obo/PR_000004688,"[3-methyl-2-oxobutanoate dehydrogenase [lipoamide]] kinase, mitochondrial" +13.4284879,PR:000004743,http://purl.obolibrary.org/obo/PR_000004743,betaine--homocysteine S-methyltransferase 2 +13.4284879,PR:000004755,http://purl.obolibrary.org/obo/PR_000004755,baculoviral IAP repeat-containing protein 8 +13.4284879,PR:000004994,http://purl.obolibrary.org/obo/PR_000004994,calcium/calmodulin-dependent protein kinase kinase 1 +13.4284879,PR:000005092,http://purl.obolibrary.org/obo/PR_000005092,coiled-coil and C2 domain-containing protein 1A +13.4284879,PR:000005270,http://purl.obolibrary.org/obo/PR_000005270,cyclin-dependent kinase-like 2 +13.4284879,PR:000005474,http://purl.obolibrary.org/obo/PR_000005474,carbohydrate sulfotransferase 14 +13.4284879,PR:000005761,http://purl.obolibrary.org/obo/PR_000005761,coronin-1B +13.4284879,PR:000005806,http://purl.obolibrary.org/obo/PR_000005806,cytoplasmic polyadenylation element-binding protein 2 +13.4284879,PR:000005954,http://purl.obolibrary.org/obo/PR_000005954,chondroitin sulfate proteoglycan 5 +13.4284879,PR:000006697,http://purl.obolibrary.org/obo/PR_000006697,sister chromatid cohesion protein DCC1 +13.4284879,PR:000006962,http://purl.obolibrary.org/obo/PR_000006962,translation initiation factor eIF-2B subunit alpha +13.4284879,PR:000007094,http://purl.obolibrary.org/obo/PR_000007094,ectonucleoside triphosphate diphosphohydrolase 3 +13.4284879,PR:000007109,http://purl.obolibrary.org/obo/PR_000007109,band 4.1-like protein 2 +13.4284879,PR:000007239,http://purl.obolibrary.org/obo/PR_000007239,ena/VASP-like protein +13.4284879,PR:000007240,http://purl.obolibrary.org/obo/PR_000007240,envoplakin +13.4284879,PR:000007343,http://purl.obolibrary.org/obo/PR_000007343,"FERM, ARHGEF and pleckstrin domain-containing protein 1" +13.4284879,PR:000007420,http://purl.obolibrary.org/obo/PR_000007420,F-box only protein 8 +13.4284879,PR:000007991,http://purl.obolibrary.org/obo/PR_000007991,gap junction alpha-10 protein +13.4284879,PR:000008043,http://purl.obolibrary.org/obo/PR_000008043,glycine receptor subunit alpha-2 +13.4284879,PR:000008107,http://purl.obolibrary.org/obo/PR_000008107,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-2 +13.4284879,PR:000008120,http://purl.obolibrary.org/obo/PR_000008120,glycine N-methyltransferase +13.4284879,PR:000008655,http://purl.obolibrary.org/obo/PR_000008655,hepatocyte nuclear factor 4-gamma +13.4284879,PR:000008765,http://purl.obolibrary.org/obo/PR_000008765,heparan-sulfate 6-O-sulfotransferase 1 +13.4284879,PR:000009342,http://purl.obolibrary.org/obo/PR_000009342,kin of IRRE-like protein 2 +13.4284879,PR:000010034,http://purl.obolibrary.org/obo/PR_000010034,putative nucleotidyltransferase MAB21L1 +13.4284879,PR:000010251,http://purl.obolibrary.org/obo/PR_000010251,DNA helicase MCM9 +13.4284879,PR:000010276,http://purl.obolibrary.org/obo/PR_000010276,male-enhanced antigen 1 +13.4284879,PR:000010537,http://purl.obolibrary.org/obo/PR_000010537,M-phase phosphoprotein 6 +13.4284879,PR:000011012,http://purl.obolibrary.org/obo/PR_000011012,neurobeachin-like protein 2 +13.4284879,PR:000011230,http://purl.obolibrary.org/obo/PR_000011230,NF-kappa-B-activating protein +13.4284879,PR:000011446,http://purl.obolibrary.org/obo/PR_000011446,protein FAN +13.4284879,PR:000011499,http://purl.obolibrary.org/obo/PR_000011499,"ADP-ribose pyrophosphatase, mitochondrial" +13.4284879,PR:000011649,http://purl.obolibrary.org/obo/PR_000011649,5-oxoprolinase +13.4284879,PR:000012282,http://purl.obolibrary.org/obo/PR_000012282,partitioning defective 6 homolog beta +13.4284879,PR:000012452,http://purl.obolibrary.org/obo/PR_000012452,protein RRP5 +13.4284879,PR:000012714,http://purl.obolibrary.org/obo/PR_000012714,phosphoinositide 3-kinase adapter protein 1 +13.4284879,PR:000012905,http://purl.obolibrary.org/obo/PR_000012905,polyamine-modulated factor 1 +13.4284879,PR:000013073,http://purl.obolibrary.org/obo/PR_000013073,liprin-beta-2 +13.4284879,PR:000013087,http://purl.obolibrary.org/obo/PR_000013087,peptidylprolyl isomerase-like 5 +13.4284879,PR:000013104,http://purl.obolibrary.org/obo/PR_000013104,serine/threonine-protein phosphatase PP1-gamma catalytic subunit +13.4284879,PR:000013462,http://purl.obolibrary.org/obo/PR_000013462,tyrosine-protein phosphatase non-receptor type 7 +13.4284879,PR:000013943,http://purl.obolibrary.org/obo/PR_000013943,retrograde Golgi transport protein RGP1 +13.4284879,PR:000014085,http://purl.obolibrary.org/obo/PR_000014085,E3 ubiquitin-protein ligase RNF139 +13.4284879,PR:000014410,http://purl.obolibrary.org/obo/PR_000014410,protein S100-A3 +13.4284879,PR:000015010,http://purl.obolibrary.org/obo/PR_000015010,mitochondrial ornithine transporter 1 +13.4284879,PR:000015084,http://purl.obolibrary.org/obo/PR_000015084,vesicular inhibitory amino acid transporter +13.4284879,PR:000015136,http://purl.obolibrary.org/obo/PR_000015136,zinc transporter ZIP9 +13.4284879,PR:000015217,http://purl.obolibrary.org/obo/PR_000015217,sodium/hydrogen exchanger 5 +13.4284879,PR:000015330,http://purl.obolibrary.org/obo/PR_000015330,syntaphilin +13.4284879,PR:000015354,http://purl.obolibrary.org/obo/PR_000015354,gamma-2-syntrophin +13.4284879,PR:000016142,http://purl.obolibrary.org/obo/PR_000016142,FAST kinase domain-containing protein 4 +13.4284879,PR:000016329,http://purl.obolibrary.org/obo/PR_000016329,T-lymphoma invasion and metastasis-inducing protein 2 +13.4284879,PR:000016343,http://purl.obolibrary.org/obo/PR_000016343,mitochondrial import inner membrane translocase subunit Tim16 +13.4284879,PR:000016423,http://purl.obolibrary.org/obo/PR_000016423,cell cycle control protein 50A +13.4284879,PR:000016667,http://purl.obolibrary.org/obo/PR_000016667,E3 ubiquitin-protein ligase TRIM9 +13.4284879,PR:000016734,http://purl.obolibrary.org/obo/PR_000016734,testis-specific protease-like protein 50 +13.4284879,PR:000017226,http://purl.obolibrary.org/obo/PR_000017226,none +13.4284879,PR:000017346,http://purl.obolibrary.org/obo/PR_000017346,vacuolar protein sorting-associated protein 54 +13.4284879,PR:000017501,http://purl.obolibrary.org/obo/PR_000017501,exportin-7 +13.4284879,PR:000017552,http://purl.obolibrary.org/obo/PR_000017552,14-3-3 protein theta +13.4284879,PR:000017564,http://purl.obolibrary.org/obo/PR_000017564,zinc finger and BTB domain-containing protein 12 +13.4284879,PR:000017654,http://purl.obolibrary.org/obo/PR_000017654,zinc finger RNA-binding protein +13.4284879,PR:000017662,http://purl.obolibrary.org/obo/PR_000017662,zinc fingers and homeoboxes protein 1 +13.4284879,PR:000017692,http://purl.obolibrary.org/obo/PR_000017692,zinc finger MYND domain-containing protein 11 +13.4284879,PR:000017848,http://purl.obolibrary.org/obo/PR_000017848,zinc finger protein 354A +13.4284879,PR:000022047,http://purl.obolibrary.org/obo/PR_000022047,none +13.4284879,PR:000022191,http://purl.obolibrary.org/obo/PR_000022191,none +13.4284879,PR:000022795,http://purl.obolibrary.org/obo/PR_000022795,none +13.4284879,PR:000022802,http://purl.obolibrary.org/obo/PR_000022802,none +13.4284879,PR:000023029,http://purl.obolibrary.org/obo/PR_000023029,none +13.4284879,PR:000023042,http://purl.obolibrary.org/obo/PR_000023042,none +13.4284879,PR:000023922,http://purl.obolibrary.org/obo/PR_000023922,none +13.4284879,PR:000029296,http://purl.obolibrary.org/obo/PR_000029296,a disintegrin and metalloproteinase with thrombospondin motifs 12 +13.4284879,PR:000029407,http://purl.obolibrary.org/obo/PR_000029407,DEP domain-containing protein 1A +13.4284879,PR:000029716,http://purl.obolibrary.org/obo/PR_000029716,RANBP2-like and GRIP domain-containing protein 1 +13.4284879,PR:000030414,http://purl.obolibrary.org/obo/PR_000030414,ectopic P granules protein 5 homolog +13.4284879,PR:000030471,http://purl.obolibrary.org/obo/PR_000030471,a disintegrin and metalloproteinase with thrombospondin motifs 17 +13.4284879,PR:000030832,http://purl.obolibrary.org/obo/PR_000030832,MORF4 family-associated protein 1 +13.4284879,PR:000031097,http://purl.obolibrary.org/obo/PR_000031097,noncompact myelin-associated protein +13.4284879,PR:000031416,http://purl.obolibrary.org/obo/PR_000031416,adhesion G protein-coupled receptor A2 +13.4284879,PR:000031491,http://purl.obolibrary.org/obo/PR_000031491,a disintegrin and metalloproteinase with thrombospondin motifs 16 +13.4284879,PR:000031709,http://purl.obolibrary.org/obo/PR_000031709,protein LRATD1 +13.4284879,PR:000032222,http://purl.obolibrary.org/obo/PR_000032222,butyrophilin subfamily 2 member A2 +13.4284879,PR:000032706,http://purl.obolibrary.org/obo/PR_000032706,acyl-CoA-binding domain-containing protein 5 +13.4284879,PR:000032745,http://purl.obolibrary.org/obo/PR_000032745,"alanine--tRNA ligase, mitochondrial" +13.4284879,PR:000032755,http://purl.obolibrary.org/obo/PR_000032755,PITH domain-containing protein 1 +13.4284879,PR:000033653,http://purl.obolibrary.org/obo/PR_000033653,none +13.4284879,PR:000033877,http://purl.obolibrary.org/obo/PR_000033877,none +13.4284879,PR:000036827,http://purl.obolibrary.org/obo/PR_000036827,none +13.4284879,PR:B3LF83,http://purl.obolibrary.org/obo/PR_B3LF83,none +13.4284879,PR:F4ICK8,http://purl.obolibrary.org/obo/PR_F4ICK8,none +13.4284879,PR:F4JF21,http://purl.obolibrary.org/obo/PR_F4JF21,none +13.4284879,PR:O42984,http://purl.obolibrary.org/obo/PR_O42984,none +13.4284879,PR:O70460,http://purl.obolibrary.org/obo/PR_O70460,none +13.4284879,PR:O76840,http://purl.obolibrary.org/obo/PR_O76840,none +13.4284879,PR:O80458,http://purl.obolibrary.org/obo/PR_O80458,none +13.4284879,PR:O80536,http://purl.obolibrary.org/obo/PR_O80536,none +13.4284879,PR:P07112,http://purl.obolibrary.org/obo/PR_P07112,none +13.4284879,PR:P13587,http://purl.obolibrary.org/obo/PR_P13587,none +13.4284879,PR:P15149,http://purl.obolibrary.org/obo/PR_P15149,none +13.4284879,PR:P23287,http://purl.obolibrary.org/obo/PR_P23287,none +13.4284879,PR:P40106,http://purl.obolibrary.org/obo/PR_P40106,none +13.4284879,PR:P43497,http://purl.obolibrary.org/obo/PR_P43497,none +13.4284879,PR:P49205,http://purl.obolibrary.org/obo/PR_P49205,none +13.4284879,PR:P91409,http://purl.obolibrary.org/obo/PR_P91409,none +13.4284879,PR:Q10284,http://purl.obolibrary.org/obo/PR_Q10284,none +13.4284879,PR:Q59L12,http://purl.obolibrary.org/obo/PR_Q59L12,none +13.4284879,PR:Q5ZHU0,http://purl.obolibrary.org/obo/PR_Q5ZHU0,none +13.4284879,PR:Q63041,http://purl.obolibrary.org/obo/PR_Q63041,none +13.4284879,PR:Q6DGS3,http://purl.obolibrary.org/obo/PR_Q6DGS3,none +13.4284879,PR:Q810W6,http://purl.obolibrary.org/obo/PR_Q810W6,none +13.4284879,PR:Q8QGQ7,http://purl.obolibrary.org/obo/PR_Q8QGQ7,none +13.4284879,PR:Q91Y57,http://purl.obolibrary.org/obo/PR_Q91Y57,none +13.4284879,PR:Q93V47,http://purl.obolibrary.org/obo/PR_Q93V47,none +13.4284879,PR:Q9JJY9,http://purl.obolibrary.org/obo/PR_Q9JJY9,none +13.4284879,PR:Q9LFJ8,http://purl.obolibrary.org/obo/PR_Q9LFJ8,none +13.4284879,PR:Q9NHX0,http://purl.obolibrary.org/obo/PR_Q9NHX0,none +13.4284879,PR:Q9PTU1,http://purl.obolibrary.org/obo/PR_Q9PTU1,none +13.4284879,PR:Q9STG9,http://purl.obolibrary.org/obo/PR_Q9STG9,none +13.4284879,PR:Q9SZT9,http://purl.obolibrary.org/obo/PR_Q9SZT9,none +13.4284879,PR:Q9SZU7,http://purl.obolibrary.org/obo/PR_Q9SZU7,none +13.4284879,PR:Q9VHN9,http://purl.obolibrary.org/obo/PR_Q9VHN9,none +13.4284879,SO:0001481,http://purl.obolibrary.org/obo/SO_0001481,RAPD +13.4284879,SO:0001543,http://purl.obolibrary.org/obo/SO_0001543,transcript_processing_variant +13.4284879,SO:0001773,http://purl.obolibrary.org/obo/SO_0001773,lethal_variant +13.4284879,SO:0001934,http://purl.obolibrary.org/obo/SO_0001934,monomeric_repeat +13.4284879,UBERON:0000206,http://purl.obolibrary.org/obo/UBERON_0000206,pharyngeal gill +13.4284879,UBERON:0001702,http://purl.obolibrary.org/obo/UBERON_0001702,eyelash +13.4284879,UBERON:0002756,http://purl.obolibrary.org/obo/UBERON_0002756,anterior cingulate gyrus +13.4284879,UBERON:0005425,http://purl.obolibrary.org/obo/UBERON_0005425,presumptive neural retina +13.4284879,UBERON:0006524,http://purl.obolibrary.org/obo/UBERON_0006524,alveolar system +13.4284879,UBERON:0010204,http://purl.obolibrary.org/obo/UBERON_0010204,tail vasculature +13.4284879,UBERON:0010295,http://purl.obolibrary.org/obo/UBERON_0010295,substantia propria of sclera +13.4284879,UBERON:0011384,http://purl.obolibrary.org/obo/UBERON_0011384,superior pancreaticoduodenal vein +13.4284879,UBERON:0011893,http://purl.obolibrary.org/obo/UBERON_0011893,endoneurial fluid +13.4284879,UBERON:0012246,http://purl.obolibrary.org/obo/UBERON_0012246,thyroid follicular lumen +13.4284879,UBERON:0012353,http://purl.obolibrary.org/obo/UBERON_0012353,fin skeleton +13.4284879,UBERON:0012354,http://purl.obolibrary.org/obo/UBERON_0012354,acropodium region +13.4284879,UBERON:0013208,http://purl.obolibrary.org/obo/UBERON_0013208,Grueneberg ganglion +13.4284879,UBERON:0014454,http://purl.obolibrary.org/obo/UBERON_0014454,visceral abdominal adipose tissue +13.4284879,UBERON:0014726,http://purl.obolibrary.org/obo/UBERON_0014726,intercalated duct of pancreas +13.4284879,UBERON:0015077,http://purl.obolibrary.org/obo/UBERON_0015077,centrale cartilage +13.4284879,UBERON:0034671,http://purl.obolibrary.org/obo/UBERON_0034671,arcuate sulcus +13.4284879,UBERON:0034892,http://purl.obolibrary.org/obo/UBERON_0034892,granular insular cortex +13.4284879,UBERON:2000120,http://purl.obolibrary.org/obo/UBERON_2000120,lateral line ganglion +13.4583409,CHEBI:132502,http://purl.obolibrary.org/obo/CHEBI_132502,fatty acid 18:3 +13.4583409,CHEBI:24783,http://purl.obolibrary.org/obo/CHEBI_24783,imine +13.4583409,CHEBI:25633,http://purl.obolibrary.org/obo/CHEBI_25633,octadecatrienoic acid +13.4583409,CHEBI:26069,http://purl.obolibrary.org/obo/CHEBI_26069,phosphonic acids +13.4583409,CHEBI:35273,http://purl.obolibrary.org/obo/CHEBI_35273,quaternary ammonium salt +13.4583409,CHEBI:36074,http://purl.obolibrary.org/obo/CHEBI_36074,heme-thiolate protein +13.4583409,CHEBI:3614,http://purl.obolibrary.org/obo/CHEBI_3614,chlorhexidine +13.4583409,CHEBI:36820,http://purl.obolibrary.org/obo/CHEBI_36820,ring assembly +13.4583409,CHEBI:38269,http://purl.obolibrary.org/obo/CHEBI_38269,boronic acids +13.4583409,CHEBI:38559,http://purl.obolibrary.org/obo/CHEBI_38559,cytochrome P450 +13.4583409,CHEBI:67142,http://purl.obolibrary.org/obo/CHEBI_67142,nucleobase analogue +13.4583409,CHEBI:73155,http://purl.obolibrary.org/obo/CHEBI_73155,trienoic fatty acid +13.4583409,CHEBI:73193,http://purl.obolibrary.org/obo/CHEBI_73193,gibberellin biosynthesis inhibitor +13.4583409,CL:0000611,http://purl.obolibrary.org/obo/CL_0000611,eosinophil progenitor cell +13.4583409,CL:0002228,http://purl.obolibrary.org/obo/CL_0002228,primary lens fiber +13.4583409,CL:1001033,http://purl.obolibrary.org/obo/CL_1001033,peritubular capillary endothelial cell +13.4583409,DRUGBANK:DB00407,http://purl.obolibrary.org/obo/DRUGBANK_DB00407,none +13.4583409,DRUGBANK:DB00754,http://purl.obolibrary.org/obo/DRUGBANK_DB00754,none +13.4583409,DRUGBANK:DB00832,http://purl.obolibrary.org/obo/DRUGBANK_DB00832,none +13.4583409,DRUGBANK:DB00895,http://purl.obolibrary.org/obo/DRUGBANK_DB00895,none +13.4583409,DRUGBANK:DB01121,http://purl.obolibrary.org/obo/DRUGBANK_DB01121,none +13.4583409,DRUGBANK:DB01553,http://purl.obolibrary.org/obo/DRUGBANK_DB01553,none +13.4583409,DRUGBANK:DB02304,http://purl.obolibrary.org/obo/DRUGBANK_DB02304,none +13.4583409,DRUGBANK:DB02521,http://purl.obolibrary.org/obo/DRUGBANK_DB02521,none +13.4583409,DRUGBANK:DB02950,http://purl.obolibrary.org/obo/DRUGBANK_DB02950,none +13.4583409,DRUGBANK:DB03083,http://purl.obolibrary.org/obo/DRUGBANK_DB03083,none +13.4583409,DRUGBANK:DB03499,http://purl.obolibrary.org/obo/DRUGBANK_DB03499,none +13.4583409,DRUGBANK:DB04167,http://purl.obolibrary.org/obo/DRUGBANK_DB04167,none +13.4583409,DRUGBANK:DB04627,http://purl.obolibrary.org/obo/DRUGBANK_DB04627,none +13.4583409,DRUGBANK:DB04639,http://purl.obolibrary.org/obo/DRUGBANK_DB04639,none +13.4583409,DRUGBANK:DB04716,http://purl.obolibrary.org/obo/DRUGBANK_DB04716,none +13.4583409,DRUGBANK:DB05102,http://purl.obolibrary.org/obo/DRUGBANK_DB05102,none +13.4583409,DRUGBANK:DB05296,http://purl.obolibrary.org/obo/DRUGBANK_DB05296,none +13.4583409,DRUGBANK:DB05304,http://purl.obolibrary.org/obo/DRUGBANK_DB05304,none +13.4583409,DRUGBANK:DB05801,http://purl.obolibrary.org/obo/DRUGBANK_DB05801,none +13.4583409,DRUGBANK:DB06446,http://purl.obolibrary.org/obo/DRUGBANK_DB06446,none +13.4583409,DRUGBANK:DB06552,http://purl.obolibrary.org/obo/DRUGBANK_DB06552,none +13.4583409,DRUGBANK:DB06682,http://purl.obolibrary.org/obo/DRUGBANK_DB06682,none +13.4583409,DRUGBANK:DB08502,http://purl.obolibrary.org/obo/DRUGBANK_DB08502,none +13.4583409,DRUGBANK:DB09088,http://purl.obolibrary.org/obo/DRUGBANK_DB09088,none +13.4583409,DRUGBANK:DB09109,http://purl.obolibrary.org/obo/DRUGBANK_DB09109,none +13.4583409,DRUGBANK:DB10556,http://purl.obolibrary.org/obo/DRUGBANK_DB10556,none +13.4583409,DRUGBANK:DB11437,http://purl.obolibrary.org/obo/DRUGBANK_DB11437,none +13.4583409,DRUGBANK:DB11501,http://purl.obolibrary.org/obo/DRUGBANK_DB11501,none +13.4583409,DRUGBANK:DB11610,http://purl.obolibrary.org/obo/DRUGBANK_DB11610,none +13.4583409,DRUGBANK:DB11653,http://purl.obolibrary.org/obo/DRUGBANK_DB11653,none +13.4583409,DRUGBANK:DB11865,http://purl.obolibrary.org/obo/DRUGBANK_DB11865,none +13.4583409,DRUGBANK:DB12825,http://purl.obolibrary.org/obo/DRUGBANK_DB12825,none +13.4583409,DRUGBANK:DB12893,http://purl.obolibrary.org/obo/DRUGBANK_DB12893,none +13.4583409,DRUGBANK:DB12924,http://purl.obolibrary.org/obo/DRUGBANK_DB12924,none +13.4583409,DRUGBANK:DB13092,http://purl.obolibrary.org/obo/DRUGBANK_DB13092,none +13.4583409,DRUGBANK:DB13236,http://purl.obolibrary.org/obo/DRUGBANK_DB13236,none +13.4583409,DRUGBANK:DB13381,http://purl.obolibrary.org/obo/DRUGBANK_DB13381,none +13.4583409,DRUGBANK:DB13466,http://purl.obolibrary.org/obo/DRUGBANK_DB13466,none +13.4583409,DRUGBANK:DB13482,http://purl.obolibrary.org/obo/DRUGBANK_DB13482,none +13.4583409,DRUGBANK:DB13597,http://purl.obolibrary.org/obo/DRUGBANK_DB13597,none +13.4583409,DRUGBANK:DB13728,http://purl.obolibrary.org/obo/DRUGBANK_DB13728,none +13.4583409,DRUGBANK:DB13904,http://purl.obolibrary.org/obo/DRUGBANK_DB13904,none +13.4583409,DRUGBANK:DB14192,http://purl.obolibrary.org/obo/DRUGBANK_DB14192,none +13.4583409,DRUGBANK:DB14203,http://purl.obolibrary.org/obo/DRUGBANK_DB14203,none +13.4583409,DRUGBANK:DB14589,http://purl.obolibrary.org/obo/DRUGBANK_DB14589,none +13.4583409,DRUGBANK:DB15030,http://purl.obolibrary.org/obo/DRUGBANK_DB15030,none +13.4583409,DRUGBANK:DB16207,http://purl.obolibrary.org/obo/DRUGBANK_DB16207,none +13.4583409,GO:0000009,http://purl.obolibrary.org/obo/GO_0000009,"alpha-1,6-mannosyltransferase activity" +13.4583409,GO:0003870,http://purl.obolibrary.org/obo/GO_0003870,5-aminolevulinate synthase activity +13.4583409,GO:0003919,http://purl.obolibrary.org/obo/GO_0003919,FMN adenylyltransferase activity +13.4583409,GO:0004077,http://purl.obolibrary.org/obo/GO_0004077,biotin-[acetyl-CoA-carboxylase] ligase activity +13.4583409,GO:0004564,http://purl.obolibrary.org/obo/GO_0004564,beta-fructofuranosidase activity +13.4583409,GO:0004827,http://purl.obolibrary.org/obo/GO_0004827,proline-tRNA ligase activity +13.4583409,GO:0008741,http://purl.obolibrary.org/obo/GO_0008741,ribulokinase activity +13.4583409,GO:0008780,http://purl.obolibrary.org/obo/GO_0008780,acyl-[acyl-carrier-protein]-UDP-N-acetylglucosamine O-acyltransferase activity +13.4583409,GO:0009200,http://purl.obolibrary.org/obo/GO_0009200,deoxyribonucleoside triphosphate metabolic process +13.4583409,GO:0009240,http://purl.obolibrary.org/obo/GO_0009240,isopentenyl diphosphate biosynthetic process +13.4583409,GO:0009423,http://purl.obolibrary.org/obo/GO_0009423,chorismate biosynthetic process +13.4583409,GO:0010026,http://purl.obolibrary.org/obo/GO_0010026,trichome differentiation +13.4583409,GO:0010042,http://purl.obolibrary.org/obo/GO_0010042,response to manganese ion +13.4583409,GO:0010087,http://purl.obolibrary.org/obo/GO_0010087,phloem or xylem histogenesis +13.4583409,GO:0010125,http://purl.obolibrary.org/obo/GO_0010125,mycothiol biosynthetic process +13.4583409,GO:0015708,http://purl.obolibrary.org/obo/GO_0015708,silicic acid import across plasma membrane +13.4583409,GO:0016259,http://purl.obolibrary.org/obo/GO_0016259,selenocysteine metabolic process +13.4583409,GO:0016856,http://purl.obolibrary.org/obo/GO_0016856,"racemase and epimerase activity, acting on hydroxy acids and derivatives" +13.4583409,GO:0016906,http://purl.obolibrary.org/obo/GO_0016906,sterol 3-beta-glucosyltransferase activity +13.4583409,GO:0018506,http://purl.obolibrary.org/obo/GO_0018506,maleylacetate reductase activity +13.4583409,GO:0019240,http://purl.obolibrary.org/obo/GO_0019240,citrulline biosynthetic process +13.4583409,GO:0019491,http://purl.obolibrary.org/obo/GO_0019491,ectoine biosynthetic process +13.4583409,GO:0019634,http://purl.obolibrary.org/obo/GO_0019634,organic phosphonate metabolic process +13.4583409,GO:0030121,http://purl.obolibrary.org/obo/GO_0030121,AP-1 adaptor complex +13.4583409,GO:0032951,http://purl.obolibrary.org/obo/GO_0032951,regulation of beta-glucan biosynthetic process +13.4583409,GO:0032973,http://purl.obolibrary.org/obo/GO_0032973,amino acid export across plasma membrane +13.4583409,GO:0033078,http://purl.obolibrary.org/obo/GO_0033078,extrathymic T cell differentiation +13.4583409,GO:0033560,http://purl.obolibrary.org/obo/GO_0033560,folate reductase activity +13.4583409,GO:0034113,http://purl.obolibrary.org/obo/GO_0034113,heterotypic cell-cell adhesion +13.4583409,GO:0034238,http://purl.obolibrary.org/obo/GO_0034238,macrophage fusion +13.4583409,GO:0034426,http://purl.obolibrary.org/obo/GO_0034426,etioplast membrane +13.4583409,GO:0035189,http://purl.obolibrary.org/obo/GO_0035189,Rb-E2F complex +13.4583409,GO:0042374,http://purl.obolibrary.org/obo/GO_0042374,phylloquinone metabolic process +13.4583409,GO:0042481,http://purl.obolibrary.org/obo/GO_0042481,regulation of odontogenesis +13.4583409,GO:0042882,http://purl.obolibrary.org/obo/GO_0042882,L-arabinose transmembrane transport +13.4583409,GO:0043215,http://purl.obolibrary.org/obo/GO_0043215,daunorubicin transport +13.4583409,GO:0043666,http://purl.obolibrary.org/obo/GO_0043666,regulation of phosphoprotein phosphatase activity +13.4583409,GO:0045649,http://purl.obolibrary.org/obo/GO_0045649,regulation of macrophage differentiation +13.4583409,GO:0045665,http://purl.obolibrary.org/obo/GO_0045665,negative regulation of neuron differentiation +13.4583409,GO:0046036,http://purl.obolibrary.org/obo/GO_0046036,CTP metabolic process +13.4583409,GO:0046633,http://purl.obolibrary.org/obo/GO_0046633,alpha-beta T cell proliferation +13.4583409,GO:0047632,http://purl.obolibrary.org/obo/GO_0047632,agmatine deiminase activity +13.4583409,GO:0048008,http://purl.obolibrary.org/obo/GO_0048008,platelet-derived growth factor receptor signaling pathway +13.4583409,GO:0048565,http://purl.obolibrary.org/obo/GO_0048565,digestive tract development +13.4583409,GO:0050435,http://purl.obolibrary.org/obo/GO_0050435,amyloid-beta metabolic process +13.4583409,GO:0050779,http://purl.obolibrary.org/obo/GO_0050779,RNA destabilization +13.4583409,GO:0051327,http://purl.obolibrary.org/obo/GO_0051327,meiotic M phase +13.4583409,GO:0055117,http://purl.obolibrary.org/obo/GO_0055117,regulation of cardiac muscle contraction +13.4583409,GO:0070141,http://purl.obolibrary.org/obo/GO_0070141,response to UV-A +13.4583409,GO:0071605,http://purl.obolibrary.org/obo/GO_0071605,monocyte chemotactic protein-1 production +13.4583409,GO:0072576,http://purl.obolibrary.org/obo/GO_0072576,liver morphogenesis +13.4583409,GO:0072601,http://purl.obolibrary.org/obo/GO_0072601,none +13.4583409,GO:0080055,http://purl.obolibrary.org/obo/GO_0080055,none +13.4583409,GO:0080092,http://purl.obolibrary.org/obo/GO_0080092,regulation of pollen tube growth +13.4583409,GO:0098518,http://purl.obolibrary.org/obo/GO_0098518,polynucleotide phosphatase activity +13.4583409,GO:0098748,http://purl.obolibrary.org/obo/GO_0098748,none +13.4583409,GO:0098856,http://purl.obolibrary.org/obo/GO_0098856,intestinal lipid absorption +13.4583409,GO:0120253,http://purl.obolibrary.org/obo/GO_0120253,hydrocarbon catabolic process +13.4583409,GO:0140115,http://purl.obolibrary.org/obo/GO_0140115,export across plasma membrane +13.4583409,GO:1900407,http://purl.obolibrary.org/obo/GO_1900407,regulation of cellular response to oxidative stress +13.4583409,GO:1902373,http://purl.obolibrary.org/obo/GO_1902373,negative regulation of mRNA catabolic process +13.4583409,GO:1903312,http://purl.obolibrary.org/obo/GO_1903312,negative regulation of mRNA metabolic process +13.4583409,GO:1904076,http://purl.obolibrary.org/obo/GO_1904076,regulation of estrogen biosynthetic process +13.4583409,GO:1990902,http://purl.obolibrary.org/obo/GO_1990902,new cell pole +13.4583409,GO:2000896,http://purl.obolibrary.org/obo/GO_2000896,amylopectin metabolic process +13.4583409,HP:0002721,http://purl.obolibrary.org/obo/HP_0002721,Immunodeficiency +13.4583409,HP:0002895,http://purl.obolibrary.org/obo/HP_0002895,Papillary thyroid carcinoma +13.4583409,MONDO:0000110,http://purl.obolibrary.org/obo/MONDO_0000110,bifid nose +13.4583409,MONDO:0001080,http://purl.obolibrary.org/obo/MONDO_0001080,acute gonococcal cervicitis +13.4583409,MONDO:0001092,http://purl.obolibrary.org/obo/MONDO_0001092,colon leiomyoma +13.4583409,MONDO:0001479,http://purl.obolibrary.org/obo/MONDO_0001479,cutaneous diphtheria +13.4583409,MONDO:0001828,http://purl.obolibrary.org/obo/MONDO_0001828,acquired color blindness +13.4583409,MONDO:0002418,http://purl.obolibrary.org/obo/MONDO_0002418,ethmoid sinus adenocarcinoma +13.4583409,MONDO:0002655,http://purl.obolibrary.org/obo/MONDO_0002655,cutaneous Paget disease +13.4583409,MONDO:0002672,http://purl.obolibrary.org/obo/MONDO_0002672,"acinar prostate adenocarcinoma, signet ring variant" +13.4583409,MONDO:0002683,http://purl.obolibrary.org/obo/MONDO_0002683,adult choroid plexus neoplasm +13.4583409,MONDO:0003127,http://purl.obolibrary.org/obo/MONDO_0003127,embryoma +13.4583409,MONDO:0003460,http://purl.obolibrary.org/obo/MONDO_0003460,clear cell adenofibroma +13.4583409,MONDO:0004861,http://purl.obolibrary.org/obo/MONDO_0004861,ophthalmia nodosa +13.4583409,MONDO:0005188,http://purl.obolibrary.org/obo/MONDO_0005188,iatrogenic Kaposi's sarcoma +13.4583409,MONDO:0005769,http://purl.obolibrary.org/obo/MONDO_0005769,geniculate herpes zoster +13.4583409,MONDO:0005770,http://purl.obolibrary.org/obo/MONDO_0005770,genital herpes +13.4583409,MONDO:0006659,http://purl.obolibrary.org/obo/MONDO_0006659,arteriosclerosis obliterans +13.4583409,MONDO:0006723,http://purl.obolibrary.org/obo/MONDO_0006723,denture stomatitis +13.4583409,MONDO:0006871,http://purl.obolibrary.org/obo/MONDO_0006871,non-gestational choriocarcinoma +13.4583409,MONDO:0007810,http://purl.obolibrary.org/obo/MONDO_0007810,autosomal dominant ichthyosis vulgaris +13.4583409,MONDO:0008842,http://purl.obolibrary.org/obo/MONDO_0008842,"ataxia, early-onset, with oculomotor apraxia and hypoalbuminemia" +13.4583409,MONDO:0009180,http://purl.obolibrary.org/obo/MONDO_0009180,"junctional epidermolysis bullosa, non-Herlitz type" +13.4583409,MONDO:0009267,http://purl.obolibrary.org/obo/MONDO_0009267,Gaucher disease type III +13.4583409,MONDO:0010082,http://purl.obolibrary.org/obo/MONDO_0010082,subaortic stenosis-short stature syndrome +13.4583409,MONDO:0010131,http://purl.obolibrary.org/obo/MONDO_0010131,"thyroid hormone resistance, generalized, autosomal recessive" +13.4583409,MONDO:0010655,http://purl.obolibrary.org/obo/MONDO_0010655,X-linked intellectual disability with marfanoid habitus +13.4583409,MONDO:0011686,http://purl.obolibrary.org/obo/MONDO_0011686,DNA ligase IV deficiency +13.4583409,MONDO:0011888,http://purl.obolibrary.org/obo/MONDO_0011888,immunodeficiency 67 +13.4583409,MONDO:0011997,http://purl.obolibrary.org/obo/MONDO_0011997,Hermansky-Pudlak syndrome 2 +13.4583409,MONDO:0013005,http://purl.obolibrary.org/obo/MONDO_0013005,EAST syndrome +13.4583409,MONDO:0013021,http://purl.obolibrary.org/obo/MONDO_0013021,sterile multifocal osteomyelitis with periostitis and pustulosis +13.4583409,MONDO:0014316,http://purl.obolibrary.org/obo/MONDO_0014316,Alzheimer disease 19 +13.4583409,MONDO:0015717,http://purl.obolibrary.org/obo/MONDO_0015717,mild hemophilia B +13.4583409,MONDO:0016201,http://purl.obolibrary.org/obo/MONDO_0016201,qualitative or quantitative defects of myotilin +13.4583409,MONDO:0016381,http://purl.obolibrary.org/obo/MONDO_0016381,hypertrichosis lanuginosa congenita +13.4583409,MONDO:0016608,http://purl.obolibrary.org/obo/MONDO_0016608,megalencephaly +13.4583409,MONDO:0017102,http://purl.obolibrary.org/obo/MONDO_0017102,isolated focal cortical dysplasia type IIb +13.4583409,MONDO:0017802,http://purl.obolibrary.org/obo/MONDO_0017802,ovarian fibrothecoma +13.4583409,MONDO:0018353,http://purl.obolibrary.org/obo/MONDO_0018353,refractory celiac disease +13.4583409,MONDO:0018739,http://purl.obolibrary.org/obo/MONDO_0018739,neonatal alloimmune neutropenia +13.4583409,MONDO:0019207,http://purl.obolibrary.org/obo/MONDO_0019207,DEND syndrome +13.4583409,MONDO:0019307,http://purl.obolibrary.org/obo/MONDO_0019307,generalized junctional epidermolysis bullosa non-Herlitz type +13.4583409,MONDO:0019924,http://purl.obolibrary.org/obo/MONDO_0019924,paternal uniparental disomy of chromosome 20 +13.4583409,MONDO:0019963,http://purl.obolibrary.org/obo/MONDO_0019963,bronchial endocrine tumor +13.4583409,MONDO:0020404,http://purl.obolibrary.org/obo/MONDO_0020404,shone complex +13.4583409,MONDO:0021389,http://purl.obolibrary.org/obo/MONDO_0021389,neoplasm of aortic body +13.4583409,MONDO:0042433,http://purl.obolibrary.org/obo/MONDO_0042433,mycotic endocarditis +13.4583409,MONDO:0043106,http://purl.obolibrary.org/obo/MONDO_0043106,ichthyosis linearis circumflexa +13.4583409,MONDO:0044720,http://purl.obolibrary.org/obo/MONDO_0044720,cerebellar ataxia with neuropathy and bilateral vestibular areflexia syndrome +13.4583409,MONDO:0100000,http://purl.obolibrary.org/obo/MONDO_0100000,MED12-related intellectual disability syndrome +13.4583409,NCBITaxon:10835,http://purl.obolibrary.org/obo/NCBITaxon_10835,none +13.4583409,NCBITaxon:115580,http://purl.obolibrary.org/obo/NCBITaxon_115580,none +13.4583409,NCBITaxon:11963,http://purl.obolibrary.org/obo/NCBITaxon_11963,none +13.4583409,NCBITaxon:12188,http://purl.obolibrary.org/obo/NCBITaxon_12188,none +13.4583409,NCBITaxon:12319,http://purl.obolibrary.org/obo/NCBITaxon_12319,none +13.4583409,NCBITaxon:1490021,http://purl.obolibrary.org/obo/NCBITaxon_1490021,none +13.4583409,NCBITaxon:163728,http://purl.obolibrary.org/obo/NCBITaxon_163728,none +13.4583409,NCBITaxon:1914299,http://purl.obolibrary.org/obo/NCBITaxon_1914299,none +13.4583409,NCBITaxon:1980526,http://purl.obolibrary.org/obo/NCBITaxon_1980526,none +13.4583409,NCBITaxon:207343,http://purl.obolibrary.org/obo/NCBITaxon_207343,none +13.4583409,NCBITaxon:2169664,http://purl.obolibrary.org/obo/NCBITaxon_2169664,none +13.4583409,NCBITaxon:2732532,http://purl.obolibrary.org/obo/NCBITaxon_2732532,Sepolyvirales +13.4583409,NCBITaxon:2843479,http://purl.obolibrary.org/obo/NCBITaxon_2843479,none +13.4583409,NCBITaxon:29272,http://purl.obolibrary.org/obo/NCBITaxon_29272,none +13.4583409,NCBITaxon:33760,http://purl.obolibrary.org/obo/NCBITaxon_33760,none +13.4583409,NCBITaxon:378850,http://purl.obolibrary.org/obo/NCBITaxon_378850,Saimiriinae +13.4583409,NCBITaxon:41946,http://purl.obolibrary.org/obo/NCBITaxon_41946,none +13.4583409,NCBITaxon:42005,http://purl.obolibrary.org/obo/NCBITaxon_42005,none +13.4583409,NCBITaxon:66834,http://purl.obolibrary.org/obo/NCBITaxon_66834,none +13.4583409,NCBITaxon:6695,http://purl.obolibrary.org/obo/NCBITaxon_6695,none +13.4583409,NCBITaxon:8092,http://purl.obolibrary.org/obo/NCBITaxon_8092,none +13.4583409,NCBITaxon:9520,http://purl.obolibrary.org/obo/NCBITaxon_9520,Saimiri +13.4583409,PR:000001300,http://purl.obolibrary.org/obo/PR_000001300,CD209 molecule +13.4583409,PR:000001648,http://purl.obolibrary.org/obo/PR_000001648,G-protein coupled receptor 78 +13.4583409,PR:000001840,http://purl.obolibrary.org/obo/PR_000001840,T-cell surface protein tactile +13.4583409,PR:000002177,http://purl.obolibrary.org/obo/PR_000002177,26S proteasome non-ATPase regulatory subunit 11 +13.4583409,PR:000003625,http://purl.obolibrary.org/obo/PR_000003625,alkaline ceramidase 3 +13.4583409,PR:000003992,http://purl.obolibrary.org/obo/PR_000003992,amphoterin-induced protein 2 +13.4583409,PR:000004099,http://purl.obolibrary.org/obo/PR_000004099,AP-2 complex subunit alpha-1 +13.4583409,PR:000004224,http://purl.obolibrary.org/obo/PR_000004224,Rho GTPase-activating protein 18 +13.4583409,PR:000004330,http://purl.obolibrary.org/obo/PR_000004330,arylsulfatase K +13.4583409,PR:000004480,http://purl.obolibrary.org/obo/PR_000004480,V-type proton ATPase catalytic subunit A +13.4583409,PR:000004572,http://purl.obolibrary.org/obo/PR_000004572,none +13.4583409,PR:000004633,http://purl.obolibrary.org/obo/PR_000004633,brain-specific angiogenesis inhibitor 1-associated protein 2-like protein 1 +13.4583409,PR:000004694,http://purl.obolibrary.org/obo/PR_000004694,Bcl-2-like protein 12 +13.4583409,PR:000004709,http://purl.obolibrary.org/obo/PR_000004709,BCL-6 corepressor +13.4583409,PR:000004861,http://purl.obolibrary.org/obo/PR_000004861,ribosome production factor 1 +13.4583409,PR:000004942,http://purl.obolibrary.org/obo/PR_000004942,voltage-dependent calcium channel subunit alpha-2/delta-1 +13.4583409,PR:000005037,http://purl.obolibrary.org/obo/PR_000005037,caspase recruitment domain-containing protein 17 +13.4583409,PR:000005075,http://purl.obolibrary.org/obo/PR_000005075,cerebellin-2 +13.4583409,PR:000005090,http://purl.obolibrary.org/obo/PR_000005090,protein chibby homolog 1 +13.4583409,PR:000005156,http://purl.obolibrary.org/obo/PR_000005156,T-complex protein 1 subunit eta +13.4583409,PR:000005561,http://purl.obolibrary.org/obo/PR_000005561,protein CLEC16A +13.4583409,PR:000005686,http://purl.obolibrary.org/obo/PR_000005686,conserved oligomeric Golgi complex subunit 3 +13.4583409,PR:000005689,http://purl.obolibrary.org/obo/PR_000005689,conserved oligomeric Golgi complex subunit 6 +13.4583409,PR:000005913,http://purl.obolibrary.org/obo/PR_000005913,beta-crystallin B3 +13.4583409,PR:000005919,http://purl.obolibrary.org/obo/PR_000005919,gamma-crystallin S +13.4583409,PR:000005923,http://purl.obolibrary.org/obo/PR_000005923,quinone oxidoreductase-like protein 1 +13.4583409,PR:000006015,http://purl.obolibrary.org/obo/PR_000006015,CTP synthase 1 +13.4583409,PR:000006115,http://purl.obolibrary.org/obo/PR_000006115,none +13.4583409,PR:000006158,http://purl.obolibrary.org/obo/PR_000006158,cytokine-like protein 1 +13.4583409,PR:000006289,http://purl.obolibrary.org/obo/PR_000006289,DAZ-associated protein 2 +13.4583409,PR:000006437,http://purl.obolibrary.org/obo/PR_000006437,splicing factor ESS-2 homolog +13.4583409,PR:000006618,http://purl.obolibrary.org/obo/PR_000006618,dedicator of cytokinesis protein 11 +13.4583409,PR:000006784,http://purl.obolibrary.org/obo/PR_000006784,dual specificity tyrosine-phosphorylation-regulated kinase 3 +13.4583409,PR:000006964,http://purl.obolibrary.org/obo/PR_000006964,translation initiation factor eIF-2B subunit gamma +13.4583409,PR:000007028,http://purl.obolibrary.org/obo/PR_000007028,RNA polymerase II elongation factor ELL +13.4583409,PR:000007033,http://purl.obolibrary.org/obo/PR_000007033,engulfment and cell motility protein 3 +13.4583409,PR:000007047,http://purl.obolibrary.org/obo/PR_000007047,adhesion G protein-coupled receptor L4 +13.4583409,PR:000007056,http://purl.obolibrary.org/obo/PR_000007056,echinoderm microtubule-associated protein-like 1 +13.4583409,PR:000007196,http://purl.obolibrary.org/obo/PR_000007196,N-acetyltransferase ESCO1 +13.4583409,PR:000007435,http://purl.obolibrary.org/obo/PR_000007435,IgG receptor FcRn large subunit p51 +13.4583409,PR:000007445,http://purl.obolibrary.org/obo/PR_000007445,Fc receptor-like A +13.4583409,PR:000008085,http://purl.obolibrary.org/obo/PR_000008085,guanine nucleotide-binding protein G(i) subunit alpha-1 +13.4583409,PR:000008170,http://purl.obolibrary.org/obo/PR_000008170,glycerol-3-phosphate dehydrogenase 1-like protein +13.4583409,PR:000008417,http://purl.obolibrary.org/obo/PR_000008417,histone H2A.V +13.4583409,PR:000008477,http://purl.obolibrary.org/obo/PR_000008477,hematopoietic cell signal transducer +13.4583409,PR:000008803,http://purl.obolibrary.org/obo/PR_000008803,heat shock 70 kDa protein 12B +13.4583409,PR:000009104,http://purl.obolibrary.org/obo/PR_000009104,interferon regulatory factor 2-binding protein 2 +13.4583409,PR:000009212,http://purl.obolibrary.org/obo/PR_000009212,lysine-specific demethylase 3B +13.4583409,PR:000009386,http://purl.obolibrary.org/obo/PR_000009386,kelch-like protein 24 +13.4583409,PR:000009789,http://purl.obolibrary.org/obo/PR_000009789,LHFPL tetraspan subfamily member 5 protein +13.4583409,PR:000010289,http://purl.obolibrary.org/obo/PR_000010289,mediator of RNA polymerase II transcription subunit 17 +13.4583409,PR:000010303,http://purl.obolibrary.org/obo/PR_000010303,mediator of RNA polymerase II transcription subunit 31 +13.4583409,PR:000010522,http://purl.obolibrary.org/obo/PR_000010522,MORC family CW-type zinc finger protein 1 +13.4583409,PR:000010803,http://purl.obolibrary.org/obo/PR_000010803,"myosin-binding protein C, slow-type" +13.4583409,PR:000010991,http://purl.obolibrary.org/obo/PR_000010991,little elongation complex subunit 2 +13.4583409,PR:000011003,http://purl.obolibrary.org/obo/PR_000011003,N-alpha-acetyltransferase 80 +13.4583409,PR:000011016,http://purl.obolibrary.org/obo/PR_000011016,none +13.4583409,PR:000011017,http://purl.obolibrary.org/obo/PR_000011017,neurocalcin-delta +13.4583409,PR:000011182,http://purl.obolibrary.org/obo/PR_000011182,NF-kappa-B inhibitor zeta +13.4583409,PR:000011452,http://purl.obolibrary.org/obo/PR_000011452,cytosolic 5'-nucleotidase 1A +13.4583409,PR:000011513,http://purl.obolibrary.org/obo/PR_000011513,nuclear pore membrane glycoprotein 210 +13.4583409,PR:000012077,http://purl.obolibrary.org/obo/PR_000012077,otoraplin +13.4583409,PR:000012216,http://purl.obolibrary.org/obo/PR_000012216,phosphofurin acidic cluster sorting protein 2 +13.4583409,PR:000012864,http://purl.obolibrary.org/obo/PR_000012864,pleckstrin homology domain-containing family M member 1 +13.4583409,PR:000012907,http://purl.obolibrary.org/obo/PR_000012907,phosphomannomutase 1 +13.4583409,PR:000012981,http://purl.obolibrary.org/obo/PR_000012981,DNA polymerase theta +13.4583409,PR:000013047,http://purl.obolibrary.org/obo/PR_000013047,"POU domain, class 6, transcription factor 2" +13.4583409,PR:000013108,http://purl.obolibrary.org/obo/PR_000013108,protein phosphatase 1 regulatory subunit 12B +13.4583409,PR:000013393,http://purl.obolibrary.org/obo/PR_000013393,proteasome activator complex subunit 2 +13.4583409,PR:000013463,http://purl.obolibrary.org/obo/PR_000013463,tyrosine-protein phosphatase non-receptor type 9 +13.4583409,PR:000013616,http://purl.obolibrary.org/obo/PR_000013616,Ras-related protein Rab-39B +13.4583409,PR:000014068,http://purl.obolibrary.org/obo/PR_000014068,RING finger protein 112 +13.4583409,PR:000014211,http://purl.obolibrary.org/obo/PR_000014211,60S ribosomal protein L29 +13.4583409,PR:000014664,http://purl.obolibrary.org/obo/PR_000014664,protein SERAC1 +13.4583409,PR:000014713,http://purl.obolibrary.org/obo/PR_000014713,SERTA domain-containing protein 3 +13.4583409,PR:000014756,http://purl.obolibrary.org/obo/PR_000014756,arginine/serine-rich protein PNISR +13.4583409,PR:000015351,http://purl.obolibrary.org/obo/PR_000015351,beta-1-syntrophin +13.4583409,PR:000015455,http://purl.obolibrary.org/obo/PR_000015455,sperm-associated antigen 16 protein +13.4583409,PR:000015512,http://purl.obolibrary.org/obo/PR_000015512,sperm flagellar protein 2 +13.4583409,PR:000015626,http://purl.obolibrary.org/obo/PR_000015626,signal recognition particle subunit SRP68 +13.4583409,PR:000015687,http://purl.obolibrary.org/obo/PR_000015687,"alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1" +13.4583409,PR:000015768,http://purl.obolibrary.org/obo/PR_000015768,stonin-2 +13.4583409,PR:000016109,http://purl.obolibrary.org/obo/PR_000016109,TBC1 domain family member 25 +13.4583409,PR:000016170,http://purl.obolibrary.org/obo/PR_000016170,elongin-A +13.4583409,PR:000016315,http://purl.obolibrary.org/obo/PR_000016315,THO complex subunit 6 +13.4583409,PR:000016361,http://purl.obolibrary.org/obo/PR_000016361,TIMELESS-interacting protein +13.4583409,PR:000016373,http://purl.obolibrary.org/obo/PR_000016373,transducin-like enhancer protein 2 +13.4583409,PR:000016637,http://purl.obolibrary.org/obo/PR_000016637,TP53-regulated inhibitor of apoptosis 1 +13.4583409,PR:000016794,http://purl.obolibrary.org/obo/PR_000016794,tubulin polyglutamylase TTLL5 +13.4583409,PR:000016808,http://purl.obolibrary.org/obo/PR_000016808,tubulin alpha-1B chain +13.4583409,PR:000016830,http://purl.obolibrary.org/obo/PR_000016830,gamma-tubulin complex component 5 +13.4583409,PR:000017348,http://purl.obolibrary.org/obo/PR_000017348,vacuolar protein sorting-associated protein 8 +13.4583409,PR:000017455,http://purl.obolibrary.org/obo/PR_000017455,Werner syndrome ATP-dependent helicase +13.4583409,PR:000017836,http://purl.obolibrary.org/obo/PR_000017836,zinc finger protein 335 +13.4583409,PR:000018215,http://purl.obolibrary.org/obo/PR_000018215,zona pellucida-binding protein 2 +13.4583409,PR:000022767,http://purl.obolibrary.org/obo/PR_000022767,none +13.4583409,PR:000023557,http://purl.obolibrary.org/obo/PR_000023557,none +13.4583409,PR:000023584,http://purl.obolibrary.org/obo/PR_000023584,none +13.4583409,PR:000023660,http://purl.obolibrary.org/obo/PR_000023660,none +13.4583409,PR:000023750,http://purl.obolibrary.org/obo/PR_000023750,none +13.4583409,PR:000023755,http://purl.obolibrary.org/obo/PR_000023755,none +13.4583409,PR:000024219,http://purl.obolibrary.org/obo/PR_000024219,none +13.4583409,PR:000027169,http://purl.obolibrary.org/obo/PR_000027169,none +13.4583409,PR:000029126,http://purl.obolibrary.org/obo/PR_000029126,myosin light chain kinase 3 +13.4583409,PR:000029260,http://purl.obolibrary.org/obo/PR_000029260,acyl-coenzyme A thioesterase 13 +13.4583409,PR:000029383,http://purl.obolibrary.org/obo/PR_000029383,probable ATP-dependent RNA helicase DDX17 +13.4583409,PR:000029391,http://purl.obolibrary.org/obo/PR_000029391,probable ATP-dependent RNA helicase DDX52 +13.4583409,PR:000029417,http://purl.obolibrary.org/obo/PR_000029417,DnaJ homolog subfamily C member 12 +13.4583409,PR:000029633,http://purl.obolibrary.org/obo/PR_000029633,bicistronic molybdopterin synthase catalytic subunit/molybdopterin synthase sulfur carrier subunit +13.4583409,PR:000030483,http://purl.obolibrary.org/obo/PR_000030483,"putative protein MSS51 homolog, mitochondrial" +13.4583409,PR:000031469,http://purl.obolibrary.org/obo/PR_000031469,cytochrome oxidase assembly protein 1 homolog +13.4583409,PR:000031505,http://purl.obolibrary.org/obo/PR_000031505,HIG1 domain family member 1A +13.4583409,PR:000032321,http://purl.obolibrary.org/obo/PR_000032321,deubiquitinase DESI2 +13.4583409,PR:000032700,http://purl.obolibrary.org/obo/PR_000032700,phospholipid-transporting ATPase VA +13.4583409,PR:000032752,http://purl.obolibrary.org/obo/PR_000032752,histone-lysine N-methyltransferase SETD5 +13.4583409,PR:000033806,http://purl.obolibrary.org/obo/PR_000033806,none +13.4583409,PR:000034615,http://purl.obolibrary.org/obo/PR_000034615,none +13.4583409,PR:000044517,http://purl.obolibrary.org/obo/PR_000044517,protocadherin beta +13.4583409,PR:A1ZAU8,http://purl.obolibrary.org/obo/PR_A1ZAU8,none +13.4583409,PR:F4HVJ3,http://purl.obolibrary.org/obo/PR_F4HVJ3,none +13.4583409,PR:F4HYR6,http://purl.obolibrary.org/obo/PR_F4HYR6,none +13.4583409,PR:O43003,http://purl.obolibrary.org/obo/PR_O43003,none +13.4583409,PR:O80932,http://purl.obolibrary.org/obo/PR_O80932,none +13.4583409,PR:O94244,http://purl.obolibrary.org/obo/PR_O94244,none +13.4583409,PR:P0CJ46,http://purl.obolibrary.org/obo/PR_P0CJ46,none +13.4583409,PR:P0CU08,http://purl.obolibrary.org/obo/PR_P0CU08,none +13.4583409,PR:P0CU09,http://purl.obolibrary.org/obo/PR_P0CU09,none +13.4583409,PR:P14065,http://purl.obolibrary.org/obo/PR_P14065,none +13.4583409,PR:P14891,http://purl.obolibrary.org/obo/PR_P14891,none +13.4583409,PR:P16181,http://purl.obolibrary.org/obo/PR_P16181,none +13.4583409,PR:P20435,http://purl.obolibrary.org/obo/PR_P20435,none +13.4583409,PR:P26784,http://purl.obolibrary.org/obo/PR_P26784,none +13.4583409,PR:P32566,http://purl.obolibrary.org/obo/PR_P32566,none +13.4583409,PR:P35407,http://purl.obolibrary.org/obo/PR_P35407,none +13.4583409,PR:P40212,http://purl.obolibrary.org/obo/PR_P40212,none +13.4583409,PR:P48237,http://purl.obolibrary.org/obo/PR_P48237,none +13.4583409,PR:P52870,http://purl.obolibrary.org/obo/PR_P52870,none +13.4583409,PR:P60497,http://purl.obolibrary.org/obo/PR_P60497,none +13.4583409,PR:P94040,http://purl.obolibrary.org/obo/PR_P94040,none +13.4583409,PR:Q03373,http://purl.obolibrary.org/obo/PR_Q03373,none +13.4583409,PR:Q23045,http://purl.obolibrary.org/obo/PR_Q23045,none +13.4583409,PR:Q24278,http://purl.obolibrary.org/obo/PR_Q24278,none +13.4583409,PR:Q38954,http://purl.obolibrary.org/obo/PR_Q38954,none +13.4583409,PR:Q54H46,http://purl.obolibrary.org/obo/PR_Q54H46,none +13.4583409,PR:Q56UJ5,http://purl.obolibrary.org/obo/PR_Q56UJ5,none +13.4583409,PR:Q5ZKR5,http://purl.obolibrary.org/obo/PR_Q5ZKR5,none +13.4583409,PR:Q6NYA0,http://purl.obolibrary.org/obo/PR_Q6NYA0,none +13.4583409,PR:Q8GZ17,http://purl.obolibrary.org/obo/PR_Q8GZ17,none +13.4583409,PR:Q8RWC9,http://purl.obolibrary.org/obo/PR_Q8RWC9,none +13.4583409,PR:Q8VZU3,http://purl.obolibrary.org/obo/PR_Q8VZU3,none +13.4583409,PR:Q96330,http://purl.obolibrary.org/obo/PR_Q96330,none +13.4583409,PR:Q9CAN8,http://purl.obolibrary.org/obo/PR_Q9CAN8,none +13.4583409,PR:Q9P7J2,http://purl.obolibrary.org/obo/PR_Q9P7J2,none +13.4583409,PR:Q9R1U5,http://purl.obolibrary.org/obo/PR_Q9R1U5,none +13.4583409,PR:Q9SN68,http://purl.obolibrary.org/obo/PR_Q9SN68,none +13.4583409,PR:Q9VRJ1,http://purl.obolibrary.org/obo/PR_Q9VRJ1,none +13.4583409,PR:Q9W5E0,http://purl.obolibrary.org/obo/PR_Q9W5E0,none +13.4583409,PR:Q9ZWB3,http://purl.obolibrary.org/obo/PR_Q9ZWB3,none +13.4583409,SO:0000023,http://purl.obolibrary.org/obo/SO_0000023,K_turn_RNA_motif +13.4583409,SO:0000140,http://purl.obolibrary.org/obo/SO_0000140,attenuator +13.4583409,SO:0000361,http://purl.obolibrary.org/obo/SO_0000361,FRT_flanked +13.4583409,SO:0000576,http://purl.obolibrary.org/obo/SO_0000576,VJ_gene_segment +13.4583409,UBERON:0000177,http://purl.obolibrary.org/obo/UBERON_0000177,pus +13.4583409,UBERON:0001244,http://purl.obolibrary.org/obo/UBERON_0001244,internal anal sphincter +13.4583409,UBERON:0002760,http://purl.obolibrary.org/obo/UBERON_0002760,ventral corticospinal tract +13.4583409,UBERON:0002942,http://purl.obolibrary.org/obo/UBERON_0002942,ventral posterolateral nucleus +13.4583409,UBERON:0003001,http://purl.obolibrary.org/obo/UBERON_0003001,nervous system lemniscus +13.4583409,UBERON:0003264,http://purl.obolibrary.org/obo/UBERON_0003264,none +13.4583409,UBERON:0003471,http://purl.obolibrary.org/obo/UBERON_0003471,artery of lower lip +13.4583409,UBERON:0004006,http://purl.obolibrary.org/obo/UBERON_0004006,cerebellum intermediate zone +13.4583409,UBERON:0004547,http://purl.obolibrary.org/obo/UBERON_0004547,decidua capsularis +13.4583409,UBERON:0004980,http://purl.obolibrary.org/obo/UBERON_0004980,mucosa of ureter +13.4583409,UBERON:0005296,http://purl.obolibrary.org/obo/UBERON_0005296,ovary sex cord +13.4583409,UBERON:0006460,http://purl.obolibrary.org/obo/UBERON_0006460,first sacral spinal cord segment +13.4583409,UBERON:0007272,http://purl.obolibrary.org/obo/UBERON_0007272,pectoral appendage skeleton +13.4583409,UBERON:0009652,http://purl.obolibrary.org/obo/UBERON_0009652,bronchus basement membrane +13.4583409,UBERON:0010414,http://purl.obolibrary.org/obo/UBERON_0010414,omental fat pad +13.4583409,UBERON:0011016,http://purl.obolibrary.org/obo/UBERON_0011016,pyramidalis +13.4583409,UBERON:0011925,http://purl.obolibrary.org/obo/UBERON_0011925,preganglionic autonomic fiber +13.4583409,UBERON:0014685,http://purl.obolibrary.org/obo/UBERON_0014685,pterygoid plexus +13.4583409,UBERON:0015329,http://purl.obolibrary.org/obo/UBERON_0015329,respiratory system basement membrane +13.4583409,UBERON:0015880,http://purl.obolibrary.org/obo/UBERON_0015880,external iliac lymph node +13.4583409,UBERON:0018553,http://purl.obolibrary.org/obo/UBERON_0018553,primary central incisor tooth +13.4583409,UBERON:0023541,http://purl.obolibrary.org/obo/UBERON_0023541,conical papilla +13.4583409,UBERON:0035042,http://purl.obolibrary.org/obo/UBERON_0035042,middle temporal artery +13.4583409,UBERON:1000015,http://purl.obolibrary.org/obo/UBERON_1000015,skin of snout +13.4583409,UBERON:2001157,http://purl.obolibrary.org/obo/UBERON_2001157,posterior lateral line primordium +13.4583409,UBERON:4400005,http://purl.obolibrary.org/obo/UBERON_4400005,fin ray +13.4891126,CHEBI:10668,http://purl.obolibrary.org/obo/CHEBI_10668,tRNA precursor +13.4891126,CHEBI:16914,http://purl.obolibrary.org/obo/CHEBI_16914,salicylic acid +13.4891126,CHEBI:26078,http://purl.obolibrary.org/obo/CHEBI_26078,phosphoric acid +13.4891126,CHEBI:26667,http://purl.obolibrary.org/obo/CHEBI_26667,sialic acid +13.4891126,CHEBI:27115,http://purl.obolibrary.org/obo/CHEBI_27115,trihydroxybenzoic acid +13.4891126,CHEBI:28262,http://purl.obolibrary.org/obo/CHEBI_28262,dimethyl sulfoxide +13.4891126,CHEBI:30751,http://purl.obolibrary.org/obo/CHEBI_30751,formic acid +13.4891126,CHEBI:30778,http://purl.obolibrary.org/obo/CHEBI_30778,gallic acid +13.4891126,CHEBI:35436,http://purl.obolibrary.org/obo/CHEBI_35436,D-glucoside +13.4891126,CHEBI:36361,http://purl.obolibrary.org/obo/CHEBI_36361,phosphorous acid +13.4891126,CHEBI:39867,http://purl.obolibrary.org/obo/CHEBI_39867,valproic acid +13.4891126,CHEBI:63936,http://purl.obolibrary.org/obo/CHEBI_63936,alpha1B-adrenoceptor antagonist +13.4891126,CHEBI:76916,http://purl.obolibrary.org/obo/CHEBI_76916,hyperglycemic agent +13.4891126,CL:0000709,http://purl.obolibrary.org/obo/CL_0000709,R8 photoreceptor cell +13.4891126,CL:0002535,http://purl.obolibrary.org/obo/CL_0002535,epithelial cell of cervix +13.4891126,CL:0005007,http://purl.obolibrary.org/obo/CL_0005007,Kolmer-Agduhr neuron +13.4891126,CL:0005020,http://purl.obolibrary.org/obo/CL_0005020,lymphangioblast +13.4891126,DRUGBANK:DB01482,http://purl.obolibrary.org/obo/DRUGBANK_DB01482,none +13.4891126,DRUGBANK:DB01491,http://purl.obolibrary.org/obo/DRUGBANK_DB01491,none +13.4891126,DRUGBANK:DB01983,http://purl.obolibrary.org/obo/DRUGBANK_DB01983,none +13.4891126,DRUGBANK:DB02486,http://purl.obolibrary.org/obo/DRUGBANK_DB02486,none +13.4891126,DRUGBANK:DB03274,http://purl.obolibrary.org/obo/DRUGBANK_DB03274,none +13.4891126,DRUGBANK:DB04124,http://purl.obolibrary.org/obo/DRUGBANK_DB04124,none +13.4891126,DRUGBANK:DB04308,http://purl.obolibrary.org/obo/DRUGBANK_DB04308,none +13.4891126,DRUGBANK:DB04622,http://purl.obolibrary.org/obo/DRUGBANK_DB04622,none +13.4891126,DRUGBANK:DB04728,http://purl.obolibrary.org/obo/DRUGBANK_DB04728,none +13.4891126,DRUGBANK:DB05096,http://purl.obolibrary.org/obo/DRUGBANK_DB05096,none +13.4891126,DRUGBANK:DB06365,http://purl.obolibrary.org/obo/DRUGBANK_DB06365,none +13.4891126,DRUGBANK:DB06429,http://purl.obolibrary.org/obo/DRUGBANK_DB06429,none +13.4891126,DRUGBANK:DB06447,http://purl.obolibrary.org/obo/DRUGBANK_DB06447,none +13.4891126,DRUGBANK:DB06462,http://purl.obolibrary.org/obo/DRUGBANK_DB06462,none +13.4891126,DRUGBANK:DB06578,http://purl.obolibrary.org/obo/DRUGBANK_DB06578,none +13.4891126,DRUGBANK:DB09198,http://purl.obolibrary.org/obo/DRUGBANK_DB09198,none +13.4891126,DRUGBANK:DB09456,http://purl.obolibrary.org/obo/DRUGBANK_DB09456,none +13.4891126,DRUGBANK:DB11408,http://purl.obolibrary.org/obo/DRUGBANK_DB11408,none +13.4891126,DRUGBANK:DB11433,http://purl.obolibrary.org/obo/DRUGBANK_DB11433,none +13.4891126,DRUGBANK:DB12053,http://purl.obolibrary.org/obo/DRUGBANK_DB12053,none +13.4891126,DRUGBANK:DB12252,http://purl.obolibrary.org/obo/DRUGBANK_DB12252,none +13.4891126,DRUGBANK:DB12281,http://purl.obolibrary.org/obo/DRUGBANK_DB12281,none +13.4891126,DRUGBANK:DB12387,http://purl.obolibrary.org/obo/DRUGBANK_DB12387,none +13.4891126,DRUGBANK:DB12494,http://purl.obolibrary.org/obo/DRUGBANK_DB12494,none +13.4891126,DRUGBANK:DB12726,http://purl.obolibrary.org/obo/DRUGBANK_DB12726,none +13.4891126,DRUGBANK:DB12830,http://purl.obolibrary.org/obo/DRUGBANK_DB12830,none +13.4891126,DRUGBANK:DB13506,http://purl.obolibrary.org/obo/DRUGBANK_DB13506,none +13.4891126,DRUGBANK:DB14573,http://purl.obolibrary.org/obo/DRUGBANK_DB14573,none +13.4891126,DRUGBANK:DB14739,http://purl.obolibrary.org/obo/DRUGBANK_DB14739,none +13.4891126,DRUGBANK:DB14771,http://purl.obolibrary.org/obo/DRUGBANK_DB14771,none +13.4891126,DRUGBANK:DB14811,http://purl.obolibrary.org/obo/DRUGBANK_DB14811,none +13.4891126,GO:0000022,http://purl.obolibrary.org/obo/GO_0000022,mitotic spindle elongation +13.4891126,GO:0000812,http://purl.obolibrary.org/obo/GO_0000812,Swr1 complex +13.4891126,GO:0001601,http://purl.obolibrary.org/obo/GO_0001601,peptide YY receptor activity +13.4891126,GO:0002886,http://purl.obolibrary.org/obo/GO_0002886,regulation of myeloid leukocyte mediated immunity +13.4891126,GO:0003938,http://purl.obolibrary.org/obo/GO_0003938,IMP dehydrogenase activity +13.4891126,GO:0004030,http://purl.obolibrary.org/obo/GO_0004030,aldehyde dehydrogenase [NAD(P)+] activity +13.4891126,GO:0006556,http://purl.obolibrary.org/obo/GO_0006556,S-adenosylmethionine biosynthetic process +13.4891126,GO:0006924,http://purl.obolibrary.org/obo/GO_0006924,activation-induced cell death of T cells +13.4891126,GO:0007143,http://purl.obolibrary.org/obo/GO_0007143,female meiotic nuclear division +13.4891126,GO:0008295,http://purl.obolibrary.org/obo/GO_0008295,spermidine biosynthetic process +13.4891126,GO:0008663,http://purl.obolibrary.org/obo/GO_0008663,"2',3'-cyclic-nucleotide 2'-phosphodiesterase activity" +13.4891126,GO:0009838,http://purl.obolibrary.org/obo/GO_0009838,abscission +13.4891126,GO:0010284,http://purl.obolibrary.org/obo/GO_0010284,lariciresinol reductase activity +13.4891126,GO:0014831,http://purl.obolibrary.org/obo/GO_0014831,gastro-intestinal system smooth muscle contraction +13.4891126,GO:0016159,http://purl.obolibrary.org/obo/GO_0016159,muconolactone delta-isomerase activity +13.4891126,GO:0018858,http://purl.obolibrary.org/obo/GO_0018858,benzoate-CoA ligase activity +13.4891126,GO:0018948,http://purl.obolibrary.org/obo/GO_0018948,xylene metabolic process +13.4891126,GO:0031897,http://purl.obolibrary.org/obo/GO_0031897,Tic complex +13.4891126,GO:0032806,http://purl.obolibrary.org/obo/GO_0032806,carboxy-terminal domain protein kinase complex +13.4891126,GO:0033239,http://purl.obolibrary.org/obo/GO_0033239,negative regulation of cellular amine metabolic process +13.4891126,GO:0033846,http://purl.obolibrary.org/obo/GO_0033846,adenosyl-fluoride synthase activity +13.4891126,GO:0034038,http://purl.obolibrary.org/obo/GO_0034038,deoxyhypusine synthase activity +13.4891126,GO:0035404,http://purl.obolibrary.org/obo/GO_0035404,histone-serine phosphorylation +13.4891126,GO:0035591,http://purl.obolibrary.org/obo/GO_0035591,signaling adaptor activity +13.4891126,GO:0038008,http://purl.obolibrary.org/obo/GO_0038008,TRAF-mediated signal transduction +13.4891126,GO:0039713,http://purl.obolibrary.org/obo/GO_0039713,viral factory +13.4891126,GO:0042545,http://purl.obolibrary.org/obo/GO_0042545,cell wall modification +13.4891126,GO:0044350,http://purl.obolibrary.org/obo/GO_0044350,micropinocytosis +13.4891126,GO:0044605,http://purl.obolibrary.org/obo/GO_0044605,phosphocholine transferase activity +13.4891126,GO:0045778,http://purl.obolibrary.org/obo/GO_0045778,positive regulation of ossification +13.4891126,GO:0048255,http://purl.obolibrary.org/obo/GO_0048255,mRNA stabilization +13.4891126,GO:0048880,http://purl.obolibrary.org/obo/GO_0048880,sensory system development +13.4891126,GO:0050097,http://purl.obolibrary.org/obo/GO_0050097,methylaspartate mutase activity +13.4891126,GO:0050869,http://purl.obolibrary.org/obo/GO_0050869,negative regulation of B cell activation +13.4891126,GO:0051004,http://purl.obolibrary.org/obo/GO_0051004,regulation of lipoprotein lipase activity +13.4891126,GO:0051099,http://purl.obolibrary.org/obo/GO_0051099,positive regulation of binding +13.4891126,GO:0051153,http://purl.obolibrary.org/obo/GO_0051153,regulation of striated muscle cell differentiation +13.4891126,GO:0051592,http://purl.obolibrary.org/obo/GO_0051592,response to calcium ion +13.4891126,GO:0051922,http://purl.obolibrary.org/obo/GO_0051922,cholesterol sulfotransferase activity +13.4891126,GO:0052031,http://purl.obolibrary.org/obo/GO_0052031,modulation by symbiont of host defense response +13.4891126,GO:0060324,http://purl.obolibrary.org/obo/GO_0060324,face development +13.4891126,GO:0070129,http://purl.obolibrary.org/obo/GO_0070129,regulation of mitochondrial translation +13.4891126,GO:0070618,http://purl.obolibrary.org/obo/GO_0070618,Grb2-Sos complex +13.4891126,GO:0070831,http://purl.obolibrary.org/obo/GO_0070831,basement membrane assembly +13.4891126,GO:0071711,http://purl.obolibrary.org/obo/GO_0071711,basement membrane organization +13.4891126,GO:0071926,http://purl.obolibrary.org/obo/GO_0071926,endocannabinoid signaling pathway +13.4891126,GO:0098765,http://purl.obolibrary.org/obo/GO_0098765,meiosis II cell cycle phase +13.4891126,GO:1900037,http://purl.obolibrary.org/obo/GO_1900037,regulation of cellular response to hypoxia +13.4891126,GO:1900041,http://purl.obolibrary.org/obo/GO_1900041,none +13.4891126,GO:1900983,http://purl.obolibrary.org/obo/GO_1900983,vindoline metabolic process +13.4891126,GO:1900985,http://purl.obolibrary.org/obo/GO_1900985,vindoline biosynthetic process +13.4891126,GO:1901101,http://purl.obolibrary.org/obo/GO_1901101,gramicidin S metabolic process +13.4891126,GO:1901103,http://purl.obolibrary.org/obo/GO_1901103,gramicidin S biosynthetic process +13.4891126,GO:1903606,http://purl.obolibrary.org/obo/GO_1903606,cytochrome c metabolic process +13.4891126,HP:0001541,http://purl.obolibrary.org/obo/HP_0001541,Ascites +13.4891126,HP:0001712,http://purl.obolibrary.org/obo/HP_0001712,Left ventricular hypertrophy +13.4891126,HP:0002181,http://purl.obolibrary.org/obo/HP_0002181,Cerebral edema +13.4891126,HP:0005162,http://purl.obolibrary.org/obo/HP_0005162,Abnormal left ventricular function +13.4891126,HP:0005523,http://purl.obolibrary.org/obo/HP_0005523,Lymphoproliferative disorder +13.4891126,HP:0100008,http://purl.obolibrary.org/obo/HP_0100008,Schwannoma +13.4891126,MONDO:0000304,http://purl.obolibrary.org/obo/MONDO_0000304,penicilliosis +13.4891126,MONDO:0000553,http://purl.obolibrary.org/obo/MONDO_0000553,uterine corpus endometrial carcinoma +13.4891126,MONDO:0001038,http://purl.obolibrary.org/obo/MONDO_0001038,perforated corneal ulcer +13.4891126,MONDO:0001046,http://purl.obolibrary.org/obo/MONDO_0001046,imperforate anus +13.4891126,MONDO:0001971,http://purl.obolibrary.org/obo/MONDO_0001971,farmer's lung disease +13.4891126,MONDO:0003126,http://purl.obolibrary.org/obo/MONDO_0003126,breast hemangioma +13.4891126,MONDO:0003186,http://purl.obolibrary.org/obo/MONDO_0003186,esophageal adenoid cystic carcinoma +13.4891126,MONDO:0003561,http://purl.obolibrary.org/obo/MONDO_0003561,malignant giant cell tumor of soft parts +13.4891126,MONDO:0003581,http://purl.obolibrary.org/obo/MONDO_0003581,ovarian embryonal carcinoma +13.4891126,MONDO:0003591,http://purl.obolibrary.org/obo/MONDO_0003591,kidney liposarcoma +13.4891126,MONDO:0003962,http://purl.obolibrary.org/obo/MONDO_0003962,Froelich syndrome +13.4891126,MONDO:0004401,http://purl.obolibrary.org/obo/MONDO_0004401,testis refractory cancer +13.4891126,MONDO:0004460,http://purl.obolibrary.org/obo/MONDO_0004460,thyroid gland fetal adenoma +13.4891126,MONDO:0004474,http://purl.obolibrary.org/obo/MONDO_0004474,gallbladder lymphoma +13.4891126,MONDO:0004871,http://purl.obolibrary.org/obo/MONDO_0004871,perianal hematoma +13.4891126,MONDO:0005224,http://purl.obolibrary.org/obo/MONDO_0005224,acute myeloblastic leukemia without maturation +13.4891126,MONDO:0006219,http://purl.obolibrary.org/obo/MONDO_0006219,gallbladder small cell neuroendocrine carcinoma +13.4891126,MONDO:0006826,http://purl.obolibrary.org/obo/MONDO_0006826,kwashiorkor +13.4891126,MONDO:0006865,http://purl.obolibrary.org/obo/MONDO_0006865,necrotizing ulcerative gingivitis +13.4891126,MONDO:0007909,http://purl.obolibrary.org/obo/MONDO_0007909,familial multiple lipomatosis +13.4891126,MONDO:0008265,http://purl.obolibrary.org/obo/MONDO_0008265,polycystic liver disease 1 +13.4891126,MONDO:0008816,http://purl.obolibrary.org/obo/MONDO_0008816,Chiari malformation type II +13.4891126,MONDO:0009853,http://purl.obolibrary.org/obo/MONDO_0009853,Imerslund-Grasbeck syndrome +13.4891126,MONDO:0010717,http://purl.obolibrary.org/obo/MONDO_0010717,pyruvate dehydrogenase E1-alpha deficiency +13.4891126,MONDO:0011107,http://purl.obolibrary.org/obo/MONDO_0011107,congenital hypotrichosis with juvenile macular dystrophy +13.4891126,MONDO:0011359,http://purl.obolibrary.org/obo/MONDO_0011359,acromelic frontonasal dysostosis +13.4891126,MONDO:0011581,http://purl.obolibrary.org/obo/MONDO_0011581,arrhythmogenic cardiomyopathy with woolly hair and keratoderma +13.4891126,MONDO:0015550,http://purl.obolibrary.org/obo/MONDO_0015550,suprabasal epidermolysis bullosa simplex +13.4891126,MONDO:0015871,http://purl.obolibrary.org/obo/MONDO_0015871,benign breast phyllodes tumor +13.4891126,MONDO:0016172,http://purl.obolibrary.org/obo/MONDO_0016172,acquired sensory ganglionopathy +13.4891126,MONDO:0016418,http://purl.obolibrary.org/obo/MONDO_0016418,"multiple system atrophy, cerebellar type" +13.4891126,MONDO:0016930,http://purl.obolibrary.org/obo/MONDO_0016930,partial trisomy/tetrasomy of chromosome 9 +13.4891126,MONDO:0016946,http://purl.obolibrary.org/obo/MONDO_0016946,partial trisomy of the short arm of chromosome 9 +13.4891126,MONDO:0017596,http://purl.obolibrary.org/obo/MONDO_0017596,diffuse large B-cell lymphoma of the central nervous system +13.4891126,MONDO:0019915,http://purl.obolibrary.org/obo/MONDO_0019915,maternal uniparental disomy of chromosome 14 +13.4891126,MONDO:0020574,http://purl.obolibrary.org/obo/MONDO_0020574,central nervous system nongerminomatous germ cell tumor +13.4891126,MONDO:0021429,http://purl.obolibrary.org/obo/MONDO_0021429,squamous cell carcinoma of floor of mouth +13.4891126,MONDO:0021506,http://purl.obolibrary.org/obo/MONDO_0021506,benign neoplasm of spinal cord +13.4891126,MONDO:0022430,http://purl.obolibrary.org/obo/MONDO_0022430,persistent fetal circulation syndrome +13.4891126,MONDO:0022620,http://purl.obolibrary.org/obo/MONDO_0022620,CD4 deficiency +13.4891126,MONDO:0024382,http://purl.obolibrary.org/obo/MONDO_0024382,"circadian rhythm sleep disorder, shift work type" +13.4891126,MONDO:0100108,http://purl.obolibrary.org/obo/MONDO_0100108,TPM3-related myopathy +13.4891126,NCBITaxon:10986,http://purl.obolibrary.org/obo/NCBITaxon_10986,none +13.4891126,NCBITaxon:11012,http://purl.obolibrary.org/obo/NCBITaxon_11012,none +13.4891126,NCBITaxon:1136878,http://purl.obolibrary.org/obo/NCBITaxon_1136878,none +13.4891126,NCBITaxon:11603,http://purl.obolibrary.org/obo/NCBITaxon_11603,none +13.4891126,NCBITaxon:12144,http://purl.obolibrary.org/obo/NCBITaxon_12144,none +13.4891126,NCBITaxon:12558,http://purl.obolibrary.org/obo/NCBITaxon_12558,none +13.4891126,NCBITaxon:147429,http://purl.obolibrary.org/obo/NCBITaxon_147429,none +13.4891126,NCBITaxon:147711,http://purl.obolibrary.org/obo/NCBITaxon_147711,none +13.4891126,NCBITaxon:1511864,http://purl.obolibrary.org/obo/NCBITaxon_1511864,none +13.4891126,NCBITaxon:1511865,http://purl.obolibrary.org/obo/NCBITaxon_1511865,none +13.4891126,NCBITaxon:156208,http://purl.obolibrary.org/obo/NCBITaxon_156208,none +13.4891126,NCBITaxon:1648033,http://purl.obolibrary.org/obo/NCBITaxon_1648033,none +13.4891126,NCBITaxon:32356,http://purl.obolibrary.org/obo/NCBITaxon_32356,none +13.4891126,NCBITaxon:32381,http://purl.obolibrary.org/obo/NCBITaxon_32381,none +13.4891126,NCBITaxon:333923,http://purl.obolibrary.org/obo/NCBITaxon_333923,none +13.4891126,NCBITaxon:33726,http://purl.obolibrary.org/obo/NCBITaxon_33726,none +13.4891126,NCBITaxon:370833,http://purl.obolibrary.org/obo/NCBITaxon_370833,none +13.4891126,NCBITaxon:4219,http://purl.obolibrary.org/obo/NCBITaxon_4219,none +13.4891126,NCBITaxon:44560,http://purl.obolibrary.org/obo/NCBITaxon_44560,none +13.4891126,NCBITaxon:4667,http://purl.obolibrary.org/obo/NCBITaxon_4667,none +13.4891126,NCBITaxon:59817,http://purl.obolibrary.org/obo/NCBITaxon_59817,none +13.4891126,NCBITaxon:76071,http://purl.obolibrary.org/obo/NCBITaxon_76071,none +13.4891126,NCBITaxon:8095,http://purl.obolibrary.org/obo/NCBITaxon_8095,none +13.4891126,NCBITaxon:8097,http://purl.obolibrary.org/obo/NCBITaxon_8097,none +13.4891126,PR:000000724,http://purl.obolibrary.org/obo/PR_000000724,voltage-gated potassium channel KCNF1 +13.4891126,PR:000000794,http://purl.obolibrary.org/obo/PR_000000794,voltage-gated potassium channel KCNH5 +13.4891126,PR:000001009,http://purl.obolibrary.org/obo/PR_000001009,integrin alpha-D +13.4891126,PR:000001702,http://purl.obolibrary.org/obo/PR_000001702,mas-related G-protein coupled receptor X1 +13.4891126,PR:000003653,http://purl.obolibrary.org/obo/PR_000003653,acrosin-binding protein +13.4891126,PR:000003654,http://purl.obolibrary.org/obo/PR_000003654,acrosomal protein SP-10 +13.4891126,PR:000004000,http://purl.obolibrary.org/obo/PR_000004000,angiomotin-like protein 2 +13.4891126,PR:000004056,http://purl.obolibrary.org/obo/PR_000004056,anoctamin-10 +13.4891126,PR:000004549,http://purl.obolibrary.org/obo/PR_000004549,none +13.4891126,PR:000004835,http://purl.obolibrary.org/obo/PR_000004835,TATA-binding protein-associated factor 172 +13.4891126,PR:000004966,http://purl.obolibrary.org/obo/PR_000004966,cancer-associated gene 1 protein +13.4891126,PR:000005029,http://purl.obolibrary.org/obo/PR_000005029,F-actin-capping protein subunit alpha-1 +13.4891126,PR:000005515,http://purl.obolibrary.org/obo/PR_000005515,creatine kinase M-type +13.4891126,PR:000005631,http://purl.obolibrary.org/obo/PR_000005631,cyclic nucleotide-gated cation channel alpha-4 +13.4891126,PR:000005865,http://purl.obolibrary.org/obo/PR_000005865,protein disulfide isomerase CRELD2 +13.4891126,PR:000006094,http://purl.obolibrary.org/obo/PR_000006094,cylicin-1 +13.4891126,PR:000006145,http://purl.obolibrary.org/obo/PR_000006145,cytochrome P450 4X1 +13.4891126,PR:000006254,http://purl.obolibrary.org/obo/PR_000006254,"D-2-hydroxyglutarate dehydrogenase, mitochondrial" +13.4891126,PR:000006455,http://purl.obolibrary.org/obo/PR_000006455,dehydrodolichyl diphosphate synthase complex subunit DHDDS +13.4891126,PR:000006682,http://purl.obolibrary.org/obo/PR_000006682,dihydropyrimidinase-related protein 4 +13.4891126,PR:000006872,http://purl.obolibrary.org/obo/PR_000006872,KH domain-containing protein 3-like +13.4891126,PR:000006887,http://purl.obolibrary.org/obo/PR_000006887,tumor necrosis factor receptor superfamily member 27 +13.4891126,PR:000006945,http://purl.obolibrary.org/obo/PR_000006945,EH domain-containing protein 4 +13.4891126,PR:000007054,http://purl.obolibrary.org/obo/PR_000007054,EMILIN-2 +13.4891126,PR:000007151,http://purl.obolibrary.org/obo/PR_000007151,epithelial-stromal interaction protein 1 +13.4891126,PR:000007238,http://purl.obolibrary.org/obo/PR_000007238,EVI5-like protein +13.4891126,PR:000007316,http://purl.obolibrary.org/obo/PR_000007316,fatty acid-binding protein 9 +13.4891126,PR:000007522,http://purl.obolibrary.org/obo/PR_000007522,fidgetin +13.4891126,PR:000007561,http://purl.obolibrary.org/obo/PR_000007561,leucine-rich repeat transmembrane protein FLRT2 +13.4891126,PR:000008116,http://purl.obolibrary.org/obo/PR_000008116,nucleolar GTP-binding protein 2 +13.4891126,PR:000008275,http://purl.obolibrary.org/obo/PR_000008275,G-rich sequence factor 1 +13.4891126,PR:000008298,http://purl.obolibrary.org/obo/PR_000008298,glutathione S-transferase A5 +13.4891126,PR:000008562,http://purl.obolibrary.org/obo/PR_000008562,histidine triad nucleotide-binding protein 2 +13.4891126,PR:000008647,http://purl.obolibrary.org/obo/PR_000008647,homeobox protein HMX2 +13.4891126,PR:000008712,http://purl.obolibrary.org/obo/PR_000008712,homeobox protein Hox-C5 +13.4891126,PR:000009023,http://purl.obolibrary.org/obo/PR_000009023,interphotoreceptor matrix proteoglycan 1 +13.4891126,PR:000009055,http://purl.obolibrary.org/obo/PR_000009055,protein inscuteable +13.4891126,PR:000009325,http://purl.obolibrary.org/obo/PR_000009325,kinesin-like protein KIFC3 +13.4891126,PR:000009409,http://purl.obolibrary.org/obo/PR_000009409,kallikrein-12 +13.4891126,PR:000009497,http://purl.obolibrary.org/obo/PR_000009497,"keratin, type II cuticular Hb1" +13.4891126,PR:000009760,http://purl.obolibrary.org/obo/PR_000009760,prolyl 3-hydroxylase 2 +13.4891126,PR:000009873,http://purl.obolibrary.org/obo/PR_000009873,leukemia NUP98 fusion partner 1 +13.4891126,PR:000010223,http://purl.obolibrary.org/obo/PR_000010223,muscleblind-like protein 3 +13.4891126,PR:000010293,http://purl.obolibrary.org/obo/PR_000010293,mediator of RNA polymerase II transcription subunit 21 +13.4891126,PR:000010566,http://purl.obolibrary.org/obo/PR_000010566,methylthioribose-1-phosphate isomerase +13.4891126,PR:000010695,http://purl.obolibrary.org/obo/PR_000010695,metallothionein-1A +13.4891126,PR:000011240,http://purl.obolibrary.org/obo/PR_000011240,NK1 transcription factor-related protein 2 +13.4891126,PR:000011582,http://purl.obolibrary.org/obo/PR_000011582,oligonucleotide/oligosaccharide-binding fold-containing protein 1 +13.4891126,PR:000012098,http://purl.obolibrary.org/obo/PR_000012098,"3-oxoacyl-[acyl-carrier-protein] synthase, mitochondrial" +13.4891126,PR:000012304,http://purl.obolibrary.org/obo/PR_000012304,beta-parvin +13.4891126,PR:000012343,http://purl.obolibrary.org/obo/PR_000012343,protocadherin-11 X-linked +13.4891126,PR:000012474,http://purl.obolibrary.org/obo/PR_000012474,"cAMP-specific 3',5'-cyclic phosphodiesterase 4C" +13.4891126,PR:000012723,http://purl.obolibrary.org/obo/PR_000012723,phosphoinositide-3-kinase-interacting protein 1 +13.4891126,PR:000012745,http://purl.obolibrary.org/obo/PR_000012745,phosphatidylinositol 4-phosphate 5-kinase type-1 beta +13.4891126,PR:000013320,http://purl.obolibrary.org/obo/PR_000013320,thymus-specific serine protease +13.4891126,PR:000013356,http://purl.obolibrary.org/obo/PR_000013356,pregnancy-specific beta-1-glycoprotein 9 +13.4891126,PR:000013378,http://purl.obolibrary.org/obo/PR_000013378,26S proteasome regulatory subunit 4 +13.4891126,PR:000013623,http://purl.obolibrary.org/obo/PR_000013623,guanine nucleotide exchange factor for Rab-3A +13.4891126,PR:000013748,http://purl.obolibrary.org/obo/PR_000013748,Ras GTPase-activating protein nGAP +13.4891126,PR:000013935,http://purl.obolibrary.org/obo/PR_000013935,response gene to complement 32 protein +13.4891126,PR:000013948,http://purl.obolibrary.org/obo/PR_000013948,regulator of G-protein signaling 13 +13.4891126,PR:000014055,http://purl.obolibrary.org/obo/PR_000014055,ribonuclease H2 subunit B +13.4891126,PR:000014079,http://purl.obolibrary.org/obo/PR_000014079,E3 ubiquitin-protein ligase RNF128 +13.4891126,PR:000014269,http://purl.obolibrary.org/obo/PR_000014269,40S ribosomal protein S26 +13.4891126,PR:000014327,http://purl.obolibrary.org/obo/PR_000014327,radial spoke head protein 3 +13.4891126,PR:000014488,http://purl.obolibrary.org/obo/PR_000014488,SCAN domain-containing protein 1 +13.4891126,PR:000014630,http://purl.obolibrary.org/obo/PR_000014630,semaphorin-6B +13.4891126,PR:000014632,http://purl.obolibrary.org/obo/PR_000014632,semaphorin-6D +13.4891126,PR:000015172,http://purl.obolibrary.org/obo/PR_000015172,sodium-dependent multivitamin transporter +13.4891126,PR:000015228,http://purl.obolibrary.org/obo/PR_000015228,solute carrier organic anion transporter family member 3A1 +13.4891126,PR:000015405,http://purl.obolibrary.org/obo/PR_000015405,Rho guanine nucleotide exchange factor 40 +13.4891126,PR:000015429,http://purl.obolibrary.org/obo/PR_000015429,transcription factor SOX-30 +13.4891126,PR:000015555,http://purl.obolibrary.org/obo/PR_000015555,testican-2 +13.4891126,PR:000015610,http://purl.obolibrary.org/obo/PR_000015610,polyprenol reductase +13.4891126,PR:000015615,http://purl.obolibrary.org/obo/PR_000015615,SLIT-ROBO Rho GTPase-activating protein 1 +13.4891126,PR:000015814,http://purl.obolibrary.org/obo/PR_000015814,Sin3 histone deacetylase corepressor complex component SDS3 +13.4891126,PR:000016029,http://purl.obolibrary.org/obo/PR_000016029,transcription initiation factor TFIID subunit 5 +13.4891126,PR:000016241,http://purl.obolibrary.org/obo/PR_000016241,dual specificity testis-specific protein kinase 1 +13.4891126,PR:000016646,http://purl.obolibrary.org/obo/PR_000016646,tripartite motif-containing protein 2 +13.4891126,PR:000016662,http://purl.obolibrary.org/obo/PR_000016662,tripartite motif-containing protein 55 +13.4891126,PR:000016764,http://purl.obolibrary.org/obo/PR_000016764,testis-specific Y-encoded-like protein 5 +13.4891126,PR:000017264,http://purl.obolibrary.org/obo/PR_000017264,synaptic vesicle membrane protein VAT-1 +13.4891126,PR:000017370,http://purl.obolibrary.org/obo/PR_000017370,"tryptophan--tRNA ligase, mitochondrial" +13.4891126,PR:000017432,http://purl.obolibrary.org/obo/PR_000017432,serine/threonine-protein kinase WNK2 +13.4891126,PR:000017557,http://purl.obolibrary.org/obo/PR_000017557,zonadhesin +13.4891126,PR:000017593,http://purl.obolibrary.org/obo/PR_000017593,zinc finger and BTB domain-containing protein 7B +13.4891126,PR:000017695,http://purl.obolibrary.org/obo/PR_000017695,zinc finger protein 10 +13.4891126,PR:000018198,http://purl.obolibrary.org/obo/PR_000018198,zinc finger protein 91 +13.4891126,PR:000022200,http://purl.obolibrary.org/obo/PR_000022200,sensor protein BasS +13.4891126,PR:000022394,http://purl.obolibrary.org/obo/PR_000022394,none +13.4891126,PR:000022738,http://purl.obolibrary.org/obo/PR_000022738,none +13.4891126,PR:000022895,http://purl.obolibrary.org/obo/PR_000022895,none +13.4891126,PR:000023296,http://purl.obolibrary.org/obo/PR_000023296,none +13.4891126,PR:000023554,http://purl.obolibrary.org/obo/PR_000023554,none +13.4891126,PR:000023643,http://purl.obolibrary.org/obo/PR_000023643,none +13.4891126,PR:000023988,http://purl.obolibrary.org/obo/PR_000023988,none +13.4891126,PR:000029029,http://purl.obolibrary.org/obo/PR_000029029,none +13.4891126,PR:000029038,http://purl.obolibrary.org/obo/PR_000029038,none +13.4891126,PR:000029418,http://purl.obolibrary.org/obo/PR_000029418,DnaJ homolog subfamily C member 15 +13.4891126,PR:000029796,http://purl.obolibrary.org/obo/PR_000029796,transmembrane protein 115 +13.4891126,PR:000030700,http://purl.obolibrary.org/obo/PR_000030700,CKLF-like MARVEL transmembrane domain-containing protein 3 +13.4891126,PR:000031162,http://purl.obolibrary.org/obo/PR_000031162,LIM and cysteine-rich domains protein 1 +13.4891126,PR:000031551,http://purl.obolibrary.org/obo/PR_000031551,protein disulfide isomerase CRELD1 +13.4891126,PR:000032437,http://purl.obolibrary.org/obo/PR_000032437,Ras association domain-containing protein 7 +13.4891126,PR:000032958,http://purl.obolibrary.org/obo/PR_000032958,none +13.4891126,PR:000034740,http://purl.obolibrary.org/obo/PR_000034740,none +13.4891126,PR:000035348,http://purl.obolibrary.org/obo/PR_000035348,none +13.4891126,PR:000050477,http://purl.obolibrary.org/obo/PR_000050477,none +13.4891126,PR:F4HXP9,http://purl.obolibrary.org/obo/PR_F4HXP9,none +13.4891126,PR:O14157,http://purl.obolibrary.org/obo/PR_O14157,none +13.4891126,PR:O14299,http://purl.obolibrary.org/obo/PR_O14299,none +13.4891126,PR:O42376,http://purl.obolibrary.org/obo/PR_O42376,none +13.4891126,PR:O65896,http://purl.obolibrary.org/obo/PR_O65896,none +13.4891126,PR:O80963,http://purl.obolibrary.org/obo/PR_O80963,none +13.4891126,PR:O82752,http://purl.obolibrary.org/obo/PR_O82752,none +13.4891126,PR:P01098,http://purl.obolibrary.org/obo/PR_P01098,none +13.4891126,PR:P08424,http://purl.obolibrary.org/obo/PR_P08424,none +13.4891126,PR:P0DJ06,http://purl.obolibrary.org/obo/PR_P0DJ06,none +13.4891126,PR:P21538,http://purl.obolibrary.org/obo/PR_P21538,none +13.4891126,PR:P23248,http://purl.obolibrary.org/obo/PR_P23248,none +13.4891126,PR:P26798,http://purl.obolibrary.org/obo/PR_P26798,none +13.4891126,PR:P32329,http://purl.obolibrary.org/obo/PR_P32329,none +13.4891126,PR:P38626,http://purl.obolibrary.org/obo/PR_P38626,none +13.4891126,PR:P42528,http://purl.obolibrary.org/obo/PR_P42528,none +13.4891126,PR:P46947,http://purl.obolibrary.org/obo/PR_P46947,none +13.4891126,PR:Q00711,http://purl.obolibrary.org/obo/PR_Q00711,none +13.4891126,PR:Q02205,http://purl.obolibrary.org/obo/PR_Q02205,none +13.4891126,PR:Q07560,http://purl.obolibrary.org/obo/PR_Q07560,none +13.4891126,PR:Q7ZVI7,http://purl.obolibrary.org/obo/PR_Q7ZVI7,none +13.4891126,PR:Q95078,http://purl.obolibrary.org/obo/PR_Q95078,none +13.4891126,PR:Q99039,http://purl.obolibrary.org/obo/PR_Q99039,none +13.4891126,PR:Q99JE4,http://purl.obolibrary.org/obo/PR_Q99JE4,none +13.4891126,PR:Q9LNC5,http://purl.obolibrary.org/obo/PR_Q9LNC5,none +13.4891126,PR:Q9SG02,http://purl.obolibrary.org/obo/PR_Q9SG02,none +13.4891126,PR:Q9SZI2,http://purl.obolibrary.org/obo/PR_Q9SZI2,none +13.4891126,PR:Q9U6B8,http://purl.obolibrary.org/obo/PR_Q9U6B8,none +13.4891126,PR:Q9ZNT1,http://purl.obolibrary.org/obo/PR_Q9ZNT1,none +13.4891126,PR:Q9ZRW8,http://purl.obolibrary.org/obo/PR_Q9ZRW8,none +13.4891126,PR:Q9ZVR7,http://purl.obolibrary.org/obo/PR_Q9ZVR7,none +13.4891126,SO:0000932,http://purl.obolibrary.org/obo/SO_0000932,pre_edited_mRNA +13.4891126,SO:0001780,http://purl.obolibrary.org/obo/SO_0001780,population_specific_variant +13.4891126,UBERON:0000019,http://purl.obolibrary.org/obo/UBERON_0000019,camera-type eye +13.4891126,UBERON:0000035,http://purl.obolibrary.org/obo/UBERON_0000035,primary ovarian follicle +13.4891126,UBERON:0000315,http://purl.obolibrary.org/obo/UBERON_0000315,subarachnoid space +13.4891126,UBERON:0001251,http://purl.obolibrary.org/obo/UBERON_0001251,marginal zone of spleen +13.4891126,UBERON:0001483,http://purl.obolibrary.org/obo/UBERON_0001483,skin of shoulder +13.4891126,UBERON:0001591,http://purl.obolibrary.org/obo/UBERON_0001591,thymic vein +13.4891126,UBERON:0001611,http://purl.obolibrary.org/obo/UBERON_0001611,sublingual artery +13.4891126,UBERON:0002007,http://purl.obolibrary.org/obo/UBERON_0002007,medulla of lymph node +13.4891126,UBERON:0002039,http://purl.obolibrary.org/obo/UBERON_0002039,inferior phrenic vein +13.4891126,UBERON:0002525,http://purl.obolibrary.org/obo/UBERON_0002525,brachial lymph node +13.4891126,UBERON:0004124,http://purl.obolibrary.org/obo/UBERON_0004124,myocardium trabecular layer +13.4891126,UBERON:0004482,http://purl.obolibrary.org/obo/UBERON_0004482,musculature of lower limb +13.4891126,UBERON:0005017,http://purl.obolibrary.org/obo/UBERON_0005017,mucosa of lacrimal sac +13.4891126,UBERON:0005368,http://purl.obolibrary.org/obo/UBERON_0005368,hippocampus molecular layer +13.4891126,UBERON:0006240,http://purl.obolibrary.org/obo/UBERON_0006240,future forebrain +13.4891126,UBERON:0007270,http://purl.obolibrary.org/obo/UBERON_0007270,pelvic appendage musculature +13.4891126,UBERON:0010898,http://purl.obolibrary.org/obo/UBERON_0010898,gastralium +13.4891126,UBERON:0015144,http://purl.obolibrary.org/obo/UBERON_0015144,autopod hair +13.4891126,UBERON:0015169,http://purl.obolibrary.org/obo/UBERON_0015169,tapetum +13.4891126,UBERON:0018554,http://purl.obolibrary.org/obo/UBERON_0018554,primary lateral incisor tooth +13.4891126,UBERON:0022383,http://purl.obolibrary.org/obo/UBERON_0022383,anterior parahippocampal gyrus +13.4891126,UBERON:0034715,http://purl.obolibrary.org/obo/UBERON_0034715,pineal tract +13.4891126,UBERON:0037459,http://purl.obolibrary.org/obo/UBERON_0037459,hair of limb +13.4891126,UBERON:2000603,http://purl.obolibrary.org/obo/UBERON_2000603,valvula cerebelli +13.4891126,UBERON:2005412,http://purl.obolibrary.org/obo/UBERON_2005412,transverse canal +13.5208613,CHEBI:16382,http://purl.obolibrary.org/obo/CHEBI_16382,iodide +13.5208613,CHEBI:17608,http://purl.obolibrary.org/obo/CHEBI_17608,D-aldohexose +13.5208613,CHEBI:17634,http://purl.obolibrary.org/obo/CHEBI_17634,D-glucose +13.5208613,CHEBI:25048,http://purl.obolibrary.org/obo/CHEBI_25048,linolenic acid +13.5208613,CHEBI:25508,http://purl.obolibrary.org/obo/CHEBI_25508,neuraminic acids +13.5208613,CHEBI:33405,http://purl.obolibrary.org/obo/CHEBI_33405,hydracid +13.5208613,CHEBI:35356,http://purl.obolibrary.org/obo/CHEBI_35356,dicarboximide +13.5208613,CHEBI:36711,http://purl.obolibrary.org/obo/CHEBI_36711,phosphoethanolamine +13.5208613,CHEBI:36893,http://purl.obolibrary.org/obo/CHEBI_36893,elemental iodine +13.5208613,CHEBI:36897,http://purl.obolibrary.org/obo/CHEBI_36897,monoatomic iodine +13.5208613,CHEBI:4194,http://purl.obolibrary.org/obo/CHEBI_4194,D-hexose +13.5208613,CHEBI:48669,http://purl.obolibrary.org/obo/CHEBI_48669,tranexamic acid +13.5208613,CHEBI:59554,http://purl.obolibrary.org/obo/CHEBI_59554,medium-chain fatty acid +13.5208613,CHEBI:63958,http://purl.obolibrary.org/obo/CHEBI_63958,cellulose synthesis inhibitor +13.5208613,CHEBI:68543,http://purl.obolibrary.org/obo/CHEBI_68543,pyrimidine synthesis inhibitor +13.5208613,CHEBI:76977,http://purl.obolibrary.org/obo/CHEBI_76977,corticotropin-releasing factor receptor antagonist +13.5208613,CHEBI:83822,http://purl.obolibrary.org/obo/CHEBI_83822,non-proteinogenic L-alpha-amino acid +13.5208613,CL:0000133,http://purl.obolibrary.org/obo/CL_0000133,neurectodermal cell +13.5208613,CL:0000564,http://purl.obolibrary.org/obo/CL_0000564,neutrophilic promyelocyte +13.5208613,CL:0000588,http://purl.obolibrary.org/obo/CL_0000588,odontoclast +13.5208613,DRUGBANK:DB00226,http://purl.obolibrary.org/obo/DRUGBANK_DB00226,none +13.5208613,DRUGBANK:DB01506,http://purl.obolibrary.org/obo/DRUGBANK_DB01506,none +13.5208613,DRUGBANK:DB01531,http://purl.obolibrary.org/obo/DRUGBANK_DB01531,none +13.5208613,DRUGBANK:DB02795,http://purl.obolibrary.org/obo/DRUGBANK_DB02795,none +13.5208613,DRUGBANK:DB05481,http://purl.obolibrary.org/obo/DRUGBANK_DB05481,none +13.5208613,DRUGBANK:DB05671,http://purl.obolibrary.org/obo/DRUGBANK_DB05671,none +13.5208613,DRUGBANK:DB05789,http://purl.obolibrary.org/obo/DRUGBANK_DB05789,none +13.5208613,DRUGBANK:DB06527,http://purl.obolibrary.org/obo/DRUGBANK_DB06527,none +13.5208613,DRUGBANK:DB06555,http://purl.obolibrary.org/obo/DRUGBANK_DB06555,none +13.5208613,DRUGBANK:DB06584,http://purl.obolibrary.org/obo/DRUGBANK_DB06584,none +13.5208613,DRUGBANK:DB07176,http://purl.obolibrary.org/obo/DRUGBANK_DB07176,none +13.5208613,DRUGBANK:DB08794,http://purl.obolibrary.org/obo/DRUGBANK_DB08794,none +13.5208613,DRUGBANK:DB09313,http://purl.obolibrary.org/obo/DRUGBANK_DB09313,none +13.5208613,DRUGBANK:DB10700,http://purl.obolibrary.org/obo/DRUGBANK_DB10700,none +13.5208613,DRUGBANK:DB11148,http://purl.obolibrary.org/obo/DRUGBANK_DB11148,none +13.5208613,DRUGBANK:DB11246,http://purl.obolibrary.org/obo/DRUGBANK_DB11246,none +13.5208613,DRUGBANK:DB11290,http://purl.obolibrary.org/obo/DRUGBANK_DB11290,none +13.5208613,DRUGBANK:DB11649,http://purl.obolibrary.org/obo/DRUGBANK_DB11649,none +13.5208613,DRUGBANK:DB11936,http://purl.obolibrary.org/obo/DRUGBANK_DB11936,none +13.5208613,DRUGBANK:DB12073,http://purl.obolibrary.org/obo/DRUGBANK_DB12073,none +13.5208613,DRUGBANK:DB12095,http://purl.obolibrary.org/obo/DRUGBANK_DB12095,none +13.5208613,DRUGBANK:DB12205,http://purl.obolibrary.org/obo/DRUGBANK_DB12205,none +13.5208613,DRUGBANK:DB12376,http://purl.obolibrary.org/obo/DRUGBANK_DB12376,none +13.5208613,DRUGBANK:DB12404,http://purl.obolibrary.org/obo/DRUGBANK_DB12404,none +13.5208613,DRUGBANK:DB13115,http://purl.obolibrary.org/obo/DRUGBANK_DB13115,none +13.5208613,DRUGBANK:DB13410,http://purl.obolibrary.org/obo/DRUGBANK_DB13410,none +13.5208613,DRUGBANK:DB13447,http://purl.obolibrary.org/obo/DRUGBANK_DB13447,none +13.5208613,DRUGBANK:DB13836,http://purl.obolibrary.org/obo/DRUGBANK_DB13836,none +13.5208613,DRUGBANK:DB14013,http://purl.obolibrary.org/obo/DRUGBANK_DB14013,none +13.5208613,DRUGBANK:DB14124,http://purl.obolibrary.org/obo/DRUGBANK_DB14124,none +13.5208613,DRUGBANK:DB14651,http://purl.obolibrary.org/obo/DRUGBANK_DB14651,none +13.5208613,DRUGBANK:DB14727,http://purl.obolibrary.org/obo/DRUGBANK_DB14727,none +13.5208613,DRUGBANK:DB15491,http://purl.obolibrary.org/obo/DRUGBANK_DB15491,none +13.5208613,DRUGBANK:DB15946,http://purl.obolibrary.org/obo/DRUGBANK_DB15946,none +13.5208613,DRUGBANK:DB16010,http://purl.obolibrary.org/obo/DRUGBANK_DB16010,none +13.5208613,GO:0001650,http://purl.obolibrary.org/obo/GO_0001650,fibrillar center +13.5208613,GO:0001662,http://purl.obolibrary.org/obo/GO_0001662,behavioral fear response +13.5208613,GO:0003677,http://purl.obolibrary.org/obo/GO_0003677,DNA binding +13.5208613,GO:0003868,http://purl.obolibrary.org/obo/GO_0003868,4-hydroxyphenylpyruvate dioxygenase activity +13.5208613,GO:0003984,http://purl.obolibrary.org/obo/GO_0003984,acetolactate synthase activity +13.5208613,GO:0004415,http://purl.obolibrary.org/obo/GO_0004415,hyalurononglucosaminidase activity +13.5208613,GO:0004569,http://purl.obolibrary.org/obo/GO_0004569,"glycoprotein endo-alpha-1,2-mannosidase activity" +13.5208613,GO:0006196,http://purl.obolibrary.org/obo/GO_0006196,AMP catabolic process +13.5208613,GO:0006705,http://purl.obolibrary.org/obo/GO_0006705,mineralocorticoid biosynthetic process +13.5208613,GO:0008138,http://purl.obolibrary.org/obo/GO_0008138,protein tyrosine/serine/threonine phosphatase activity +13.5208613,GO:0008585,http://purl.obolibrary.org/obo/GO_0008585,female gonad development +13.5208613,GO:0008829,http://purl.obolibrary.org/obo/GO_0008829,dCTP deaminase activity +13.5208613,GO:0009028,http://purl.obolibrary.org/obo/GO_0009028,tartronate-semialdehyde synthase activity +13.5208613,GO:0009825,http://purl.obolibrary.org/obo/GO_0009825,multidimensional cell growth +13.5208613,GO:0010021,http://purl.obolibrary.org/obo/GO_0010021,amylopectin biosynthetic process +13.5208613,GO:0010225,http://purl.obolibrary.org/obo/GO_0010225,response to UV-C +13.5208613,GO:0010461,http://purl.obolibrary.org/obo/GO_0010461,light-activated ion channel activity +13.5208613,GO:0010594,http://purl.obolibrary.org/obo/GO_0010594,regulation of endothelial cell migration +13.5208613,GO:0010954,http://purl.obolibrary.org/obo/GO_0010954,positive regulation of protein processing +13.5208613,GO:0015074,http://purl.obolibrary.org/obo/GO_0015074,DNA integration +13.5208613,GO:0015916,http://purl.obolibrary.org/obo/GO_0015916,fatty-acyl-CoA transport +13.5208613,GO:0016361,http://purl.obolibrary.org/obo/GO_0016361,"activin receptor activity, type I" +13.5208613,GO:0016463,http://purl.obolibrary.org/obo/GO_0016463,P-type zinc transporter activity +13.5208613,GO:0018918,http://purl.obolibrary.org/obo/GO_0018918,none +13.5208613,GO:0019336,http://purl.obolibrary.org/obo/GO_0019336,phenol-containing compound catabolic process +13.5208613,GO:0019860,http://purl.obolibrary.org/obo/GO_0019860,uracil metabolic process +13.5208613,GO:0019908,http://purl.obolibrary.org/obo/GO_0019908,nuclear cyclin-dependent protein kinase holoenzyme complex +13.5208613,GO:0020018,http://purl.obolibrary.org/obo/GO_0020018,ciliary pocket membrane +13.5208613,GO:0031413,http://purl.obolibrary.org/obo/GO_0031413,regulation of buoyancy +13.5208613,GO:0033608,http://purl.obolibrary.org/obo/GO_0033608,formyl-CoA transferase activity +13.5208613,GO:0035103,http://purl.obolibrary.org/obo/GO_0035103,sterol regulatory element binding protein cleavage +13.5208613,GO:0043087,http://purl.obolibrary.org/obo/GO_0043087,regulation of GTPase activity +13.5208613,GO:0043904,http://purl.obolibrary.org/obo/GO_0043904,isochorismate pyruvate lyase activity +13.5208613,GO:0044256,http://purl.obolibrary.org/obo/GO_0044256,protein digestion +13.5208613,GO:0045501,http://purl.obolibrary.org/obo/GO_0045501,regulation of sevenless signaling pathway +13.5208613,GO:0045676,http://purl.obolibrary.org/obo/GO_0045676,regulation of R7 cell differentiation +13.5208613,GO:0046122,http://purl.obolibrary.org/obo/GO_0046122,purine deoxyribonucleoside metabolic process +13.5208613,GO:0046406,http://purl.obolibrary.org/obo/GO_0046406,magnesium protoporphyrin IX methyltransferase activity +13.5208613,GO:0046505,http://purl.obolibrary.org/obo/GO_0046505,sulfolipid metabolic process +13.5208613,GO:0046963,http://purl.obolibrary.org/obo/GO_0046963,3'-phosphoadenosine 5'-phosphosulfate transport +13.5208613,GO:0046984,http://purl.obolibrary.org/obo/GO_0046984,regulation of hemoglobin biosynthetic process +13.5208613,GO:0047536,http://purl.obolibrary.org/obo/GO_0047536,2-aminoadipate transaminase activity +13.5208613,GO:0047631,http://purl.obolibrary.org/obo/GO_0047631,ADP-ribose diphosphatase activity +13.5208613,GO:0047712,http://purl.obolibrary.org/obo/GO_0047712,Cypridina-luciferin 2-monooxygenase activity +13.5208613,GO:0047873,http://purl.obolibrary.org/obo/GO_0047873,dolichyl-phosphatase activity +13.5208613,GO:0047966,http://purl.obolibrary.org/obo/GO_0047966,glycosulfatase activity +13.5208613,GO:0048647,http://purl.obolibrary.org/obo/GO_0048647,polyphenic determination +13.5208613,GO:0048648,http://purl.obolibrary.org/obo/GO_0048648,caste determination +13.5208613,GO:0051791,http://purl.obolibrary.org/obo/GO_0051791,medium-chain fatty acid metabolic process +13.5208613,GO:0061017,http://purl.obolibrary.org/obo/GO_0061017,hepatoblast differentiation +13.5208613,GO:0070224,http://purl.obolibrary.org/obo/GO_0070224,sulfide:quinone oxidoreductase activity +13.5208613,GO:0070375,http://purl.obolibrary.org/obo/GO_0070375,ERK5 cascade +13.5208613,GO:0071260,http://purl.obolibrary.org/obo/GO_0071260,cellular response to mechanical stimulus +13.5208613,GO:0071609,http://purl.obolibrary.org/obo/GO_0071609,chemokine (C-C motif) ligand 5 production +13.5208613,GO:0090409,http://purl.obolibrary.org/obo/GO_0090409,malonyl-CoA synthetase activity +13.5208613,GO:0110116,http://purl.obolibrary.org/obo/GO_0110116,regulation of compound eye photoreceptor cell differentiation +13.5208613,GO:1901337,http://purl.obolibrary.org/obo/GO_1901337,thioester transport +13.5208613,GO:1901812,http://purl.obolibrary.org/obo/GO_1901812,beta-carotene biosynthetic process +13.5208613,GO:1901999,http://purl.obolibrary.org/obo/GO_1901999,homogentisate metabolic process +13.5208613,GO:1902022,http://purl.obolibrary.org/obo/GO_1902022,L-lysine transport +13.5208613,GO:1902687,http://purl.obolibrary.org/obo/GO_1902687,glucosidase complex +13.5208613,GO:1903319,http://purl.obolibrary.org/obo/GO_1903319,positive regulation of protein maturation +13.5208613,GO:1904424,http://purl.obolibrary.org/obo/GO_1904424,regulation of GTP binding +13.5208613,GO:2000182,http://purl.obolibrary.org/obo/GO_2000182,regulation of progesterone biosynthetic process +13.5208613,GO:2000779,http://purl.obolibrary.org/obo/GO_2000779,regulation of double-strand break repair +13.5208613,GO:2001006,http://purl.obolibrary.org/obo/GO_2001006,regulation of cellulose biosynthetic process +13.5208613,HP:0001651,http://purl.obolibrary.org/obo/HP_0001651,Dextrocardia +13.5208613,HP:0004307,http://purl.obolibrary.org/obo/HP_0004307,Abnormal anatomic location of the heart +13.5208613,HP:0004905,http://purl.obolibrary.org/obo/HP_0004905,Low levels of vitamin A +13.5208613,HP:0005257,http://purl.obolibrary.org/obo/HP_0005257,Thoracic hypoplasia +13.5208613,HP:0008372,http://purl.obolibrary.org/obo/HP_0008372,Abnormality of vitamin A metabolism +13.5208613,HP:0012840,http://purl.obolibrary.org/obo/HP_0012840,Proximal +13.5208613,HP:0030357,http://purl.obolibrary.org/obo/HP_0030357,Small cell lung carcinoma +13.5208613,HP:0031258,http://purl.obolibrary.org/obo/HP_0031258,Delirium +13.5208613,MONDO:0000193,http://purl.obolibrary.org/obo/MONDO_0000193,cortisone reductase deficiency +13.5208613,MONDO:0000925,http://purl.obolibrary.org/obo/MONDO_0000925,hyperlucent lung +13.5208613,MONDO:0001202,http://purl.obolibrary.org/obo/MONDO_0001202,prostatic cyst +13.5208613,MONDO:0001366,http://purl.obolibrary.org/obo/MONDO_0001366,splenic sequestration +13.5208613,MONDO:0001618,http://purl.obolibrary.org/obo/MONDO_0001618,balanoposthitis +13.5208613,MONDO:0001651,http://purl.obolibrary.org/obo/MONDO_0001651,scrotum squamous cell carcinoma +13.5208613,MONDO:0001893,http://purl.obolibrary.org/obo/MONDO_0001893,spinal cord melanoma +13.5208613,MONDO:0002207,http://purl.obolibrary.org/obo/MONDO_0002207,vulval Paget disease +13.5208613,MONDO:0002222,http://purl.obolibrary.org/obo/MONDO_0002222,urethra leiomyoma +13.5208613,MONDO:0003147,http://purl.obolibrary.org/obo/MONDO_0003147,space motion sickness +13.5208613,MONDO:0003243,http://purl.obolibrary.org/obo/MONDO_0003243,hepatocellular clear cell carcinoma +13.5208613,MONDO:0003327,http://purl.obolibrary.org/obo/MONDO_0003327,peripheral ganglioneuroblastoma +13.5208613,MONDO:0003554,http://purl.obolibrary.org/obo/MONDO_0003554,adenosquamous colon carcinoma +13.5208613,MONDO:0004309,http://purl.obolibrary.org/obo/MONDO_0004309,sarcomatosis +13.5208613,MONDO:0004573,http://purl.obolibrary.org/obo/MONDO_0004573,ariboflavinosis +13.5208613,MONDO:0004650,http://purl.obolibrary.org/obo/MONDO_0004650,malignant carotid body paraganglioma +13.5208613,MONDO:0005339,http://purl.obolibrary.org/obo/MONDO_0005339,androgenetic alopecia +13.5208613,MONDO:0006060,http://purl.obolibrary.org/obo/MONDO_0006060,nasopharyngeal squamous cell carcinoma +13.5208613,MONDO:0006480,http://purl.obolibrary.org/obo/MONDO_0006480,"undifferentiated pleomorphic sarcoma, inflammatory variant" +13.5208613,MONDO:0006948,http://purl.obolibrary.org/obo/MONDO_0006948,retinal artery occlusion +13.5208613,MONDO:0007154,http://purl.obolibrary.org/obo/MONDO_0007154,arteriovenous malformations of the brain +13.5208613,MONDO:0007671,http://purl.obolibrary.org/obo/MONDO_0007671,fibronectin glomerulopathy +13.5208613,MONDO:0007690,http://purl.obolibrary.org/obo/MONDO_0007690,aromatase excess syndrome +13.5208613,MONDO:0009369,http://purl.obolibrary.org/obo/MONDO_0009369,non-immune hydrops fetalis +13.5208613,MONDO:0009370,http://purl.obolibrary.org/obo/MONDO_0009370,L-2-hydroxyglutaric aciduria +13.5208613,MONDO:0010356,http://purl.obolibrary.org/obo/MONDO_0010356,nephrogenic syndrome of inappropriate antidiuresis +13.5208613,MONDO:0010742,http://purl.obolibrary.org/obo/MONDO_0010742,pentalogy of Cantrell +13.5208613,MONDO:0011140,http://purl.obolibrary.org/obo/MONDO_0011140,benign familial neonatal-infantile seizures +13.5208613,MONDO:0012414,http://purl.obolibrary.org/obo/MONDO_0012414,neuronal ceroid lipofuscinosis 10 +13.5208613,MONDO:0013594,http://purl.obolibrary.org/obo/MONDO_0013594,spinocerebellar ataxia type 36 +13.5208613,MONDO:0015048,http://purl.obolibrary.org/obo/MONDO_0015048,amelogenesis imperfecta type 2 +13.5208613,MONDO:0015346,http://purl.obolibrary.org/obo/MONDO_0015346,Jeavons syndrome +13.5208613,MONDO:0015403,http://purl.obolibrary.org/obo/MONDO_0015403,non-involuting congenital hemangioma +13.5208613,MONDO:0015479,http://purl.obolibrary.org/obo/MONDO_0015479,submucosal cleft palate +13.5208613,MONDO:0016243,http://purl.obolibrary.org/obo/MONDO_0016243,hemoglobin E disease +13.5208613,MONDO:0017388,http://purl.obolibrary.org/obo/MONDO_0017388,celiac trunk compression syndrome +13.5208613,MONDO:0017628,http://purl.obolibrary.org/obo/MONDO_0017628,myospherulosis +13.5208613,MONDO:0018184,http://purl.obolibrary.org/obo/MONDO_0018184,gastric linitis plastica +13.5208613,MONDO:0019557,http://purl.obolibrary.org/obo/MONDO_0019557,chilblain lupus +13.5208613,MONDO:0019631,http://purl.obolibrary.org/obo/MONDO_0019631,persistent hyperplastic primary vitreous +13.5208613,MONDO:0019727,http://purl.obolibrary.org/obo/MONDO_0019727,mixed cryoglobulinemia type III +13.5208613,MONDO:0021208,http://purl.obolibrary.org/obo/MONDO_0021208,endocrine alopecia +13.5208613,MONDO:0043377,http://purl.obolibrary.org/obo/MONDO_0043377,juvenile spondyloarthropathy +13.5208613,MONDO:0044343,http://purl.obolibrary.org/obo/MONDO_0044343,cervical disc degenerative disorder +13.5208613,MONDO:0044783,http://purl.obolibrary.org/obo/MONDO_0044783,solid papillary breast carcinoma +13.5208613,NCBITaxon:1003878,http://purl.obolibrary.org/obo/NCBITaxon_1003878,none +13.5208613,NCBITaxon:117563,http://purl.obolibrary.org/obo/NCBITaxon_117563,none +13.5208613,NCBITaxon:1489885,http://purl.obolibrary.org/obo/NCBITaxon_1489885,none +13.5208613,NCBITaxon:1489894,http://purl.obolibrary.org/obo/NCBITaxon_1489894,none +13.5208613,NCBITaxon:152219,http://purl.obolibrary.org/obo/NCBITaxon_152219,none +13.5208613,NCBITaxon:153137,http://purl.obolibrary.org/obo/NCBITaxon_153137,none +13.5208613,NCBITaxon:163735,http://purl.obolibrary.org/obo/NCBITaxon_163735,none +13.5208613,NCBITaxon:186828,http://purl.obolibrary.org/obo/NCBITaxon_186828,none +13.5208613,NCBITaxon:2170045,http://purl.obolibrary.org/obo/NCBITaxon_2170045,none +13.5208613,NCBITaxon:223252,http://purl.obolibrary.org/obo/NCBITaxon_223252,none +13.5208613,NCBITaxon:2560155,http://purl.obolibrary.org/obo/NCBITaxon_2560155,none +13.5208613,NCBITaxon:2560586,http://purl.obolibrary.org/obo/NCBITaxon_2560586,none +13.5208613,NCBITaxon:3166,http://purl.obolibrary.org/obo/NCBITaxon_3166,none +13.5208613,NCBITaxon:35297,http://purl.obolibrary.org/obo/NCBITaxon_35297,none +13.5208613,NCBITaxon:3660,http://purl.obolibrary.org/obo/NCBITaxon_3660,none +13.5208613,NCBITaxon:38767,http://purl.obolibrary.org/obo/NCBITaxon_38767,none +13.5208613,NCBITaxon:39720,http://purl.obolibrary.org/obo/NCBITaxon_39720,none +13.5208613,NCBITaxon:43240,http://purl.obolibrary.org/obo/NCBITaxon_43240,none +13.5208613,NCBITaxon:47315,http://purl.obolibrary.org/obo/NCBITaxon_47315,none +13.5208613,NCBITaxon:48544,http://purl.obolibrary.org/obo/NCBITaxon_48544,none +13.5208613,NCBITaxon:53010,http://purl.obolibrary.org/obo/NCBITaxon_53010,none +13.5208613,NCBITaxon:58535,http://purl.obolibrary.org/obo/NCBITaxon_58535,none +13.5208613,NCBITaxon:6295,http://purl.obolibrary.org/obo/NCBITaxon_6295,Filarioidea +13.5208613,NCBITaxon:63221,http://purl.obolibrary.org/obo/NCBITaxon_63221,Homo sapiens neanderthalensis +13.5208613,NCBITaxon:64315,http://purl.obolibrary.org/obo/NCBITaxon_64315,none +13.5208613,NCBITaxon:6970,http://purl.obolibrary.org/obo/NCBITaxon_6970,none +13.5208613,NCBITaxon:73561,http://purl.obolibrary.org/obo/NCBITaxon_73561,none +13.5208613,NCBITaxon:7870,http://purl.obolibrary.org/obo/NCBITaxon_7870,none +13.5208613,PR:000000072,http://purl.obolibrary.org/obo/PR_000000072,activin/inhibin beta subunit +13.5208613,PR:000000702,http://purl.obolibrary.org/obo/PR_000000702,modulatory voltage-gated potassium channel subunit KCNS +13.5208613,PR:000001607,http://purl.obolibrary.org/obo/PR_000001607,mas-related G-protein coupled receptor MRG +13.5208613,PR:000002237,http://purl.obolibrary.org/obo/PR_000002237,none +13.5208613,PR:000003543,http://purl.obolibrary.org/obo/PR_000003543,cholesterol transporter ABCA5 +13.5208613,PR:000003893,http://purl.obolibrary.org/obo/PR_000003893,A-kinase anchor protein 6 +13.5208613,PR:000003941,http://purl.obolibrary.org/obo/PR_000003941,putative bifunctional UDP-N-acetylglucosamine transferase and deubiquitinase ALG13 +13.5208613,PR:000004239,http://purl.obolibrary.org/obo/PR_000004239,Rho GTPase-activating protein 6 +13.5208613,PR:000004652,http://purl.obolibrary.org/obo/PR_000004652,G patch domain and ankyrin repeat-containing protein 1 +13.5208613,PR:000004664,http://purl.obolibrary.org/obo/PR_000004664,Bardet-Biedl syndrome 10 protein +13.5208613,PR:000004745,http://purl.obolibrary.org/obo/PR_000004745,protein bicaudal D homolog 1 +13.5208613,PR:000004776,http://purl.obolibrary.org/obo/PR_000004776,ribosome biogenesis protein BMS1 +13.5208613,PR:000005131,http://purl.obolibrary.org/obo/PR_000005131,cyclin-I +13.5208613,PR:000005236,http://purl.obolibrary.org/obo/PR_000005236,cadherin-18 +13.5208613,PR:000005341,http://purl.obolibrary.org/obo/PR_000005341,centrosomal protein of 135 kDa +13.5208613,PR:000005557,http://purl.obolibrary.org/obo/PR_000005557,claudin-9 +13.5208613,PR:000005586,http://purl.obolibrary.org/obo/PR_000005586,dual specificity protein kinase CLK3 +13.5208613,PR:000005626,http://purl.obolibrary.org/obo/PR_000005626,cardiomyopathy-associated protein 5 +13.5208613,PR:000005688,http://purl.obolibrary.org/obo/PR_000005688,conserved oligomeric Golgi complex subunit 5 +13.5208613,PR:000005786,http://purl.obolibrary.org/obo/PR_000005786,"cytochrome c oxidase subunit 7A1, mitochondrial" +13.5208613,PR:000005951,http://purl.obolibrary.org/obo/PR_000005951,casein kinase II subunit alpha' +13.5208613,PR:000006551,http://purl.obolibrary.org/obo/PR_000006551,dystrophia myotonica WD repeat-containing protein +13.5208613,PR:000006650,http://purl.obolibrary.org/obo/PR_000006650,zinc finger protein ubi-d4 +13.5208613,PR:000006696,http://purl.obolibrary.org/obo/PR_000006696,Down syndrome cell adhesion molecule-like protein 1 +13.5208613,PR:000007096,http://purl.obolibrary.org/obo/PR_000007096,ectonucleoside triphosphate diphosphohydrolase 5 +13.5208613,PR:000007329,http://purl.obolibrary.org/obo/PR_000007329,Fas apoptotic inhibitory molecule 3 +13.5208613,PR:000007344,http://purl.obolibrary.org/obo/PR_000007344,"FERM, ARHGEF and pleckstrin domain-containing protein 2" +13.5208613,PR:000007671,http://purl.obolibrary.org/obo/PR_000007671,fibroblast growth factor receptor substrate 3 +13.5208613,PR:000007696,http://purl.obolibrary.org/obo/PR_000007696,far upstream element-binding protein 3 +13.5208613,PR:000007829,http://purl.obolibrary.org/obo/PR_000007829,N-acetylgalactosaminyltransferase 7 +13.5208613,PR:000007855,http://purl.obolibrary.org/obo/PR_000007855,dynein regulatory complex subunit 4 +13.5208613,PR:000008151,http://purl.obolibrary.org/obo/PR_000008151,Golgi SNAP receptor complex member 1 +13.5208613,PR:000008173,http://purl.obolibrary.org/obo/PR_000008173,glycoprotein hormone beta-5 +13.5208613,PR:000008349,http://purl.obolibrary.org/obo/PR_000008349,guanylate cyclase soluble subunit alpha-1 +13.5208613,PR:000008516,http://purl.obolibrary.org/obo/PR_000008516,transcription factor HES-2 +13.5208613,PR:000008539,http://purl.obolibrary.org/obo/PR_000008539,protein-cysteine N-palmitoyltransferase HHAT-like protein +13.5208613,PR:000008768,http://purl.obolibrary.org/obo/PR_000008768,heat shock factor-binding protein 1 +13.5208613,PR:000008934,http://purl.obolibrary.org/obo/PR_000008934,intraflagellar transport protein 20 +13.5208613,PR:000009050,http://purl.obolibrary.org/obo/PR_000009050,phosphatidylinositide phosphatase SAC2 +13.5208613,PR:000009150,http://purl.obolibrary.org/obo/PR_000009150,inter-alpha-trypsin inhibitor heavy chain H5 +13.5208613,PR:000009286,http://purl.obolibrary.org/obo/PR_000009286,kinesin-like protein KIF13A +13.5208613,PR:000009313,http://purl.obolibrary.org/obo/PR_000009313,kinesin-like protein KIF3C +13.5208613,PR:000009334,http://purl.obolibrary.org/obo/PR_000009334,killer cell immunoglobulin-like receptor 2DS3 +13.5208613,PR:000010026,http://purl.obolibrary.org/obo/PR_000010026,none +13.5208613,PR:000010208,http://purl.obolibrary.org/obo/PR_000010208,matrilin-4 +13.5208613,PR:000010294,http://purl.obolibrary.org/obo/PR_000010294,mediator of RNA polymerase II transcription subunit 22 +13.5208613,PR:000010306,http://purl.obolibrary.org/obo/PR_000010306,mediator of RNA polymerase II transcription subunit 7 +13.5208613,PR:000010416,http://purl.obolibrary.org/obo/PR_000010416,multiple inositol polyphosphate phosphatase 1 +13.5208613,PR:000010723,http://purl.obolibrary.org/obo/PR_000010723,"monofunctional C1-tetrahydrofolate synthase, mitochondrial" +13.5208613,PR:000010760,http://purl.obolibrary.org/obo/PR_000010760,mucin-15 +13.5208613,PR:000010816,http://purl.obolibrary.org/obo/PR_000010816,myeloma-overexpressed gene protein +13.5208613,PR:000010882,http://purl.obolibrary.org/obo/PR_000010882,myozenin-1 +13.5208613,PR:000010909,http://purl.obolibrary.org/obo/PR_000010909,major facilitator superfamily domain-containing protein 6 +13.5208613,PR:000011071,http://purl.obolibrary.org/obo/PR_000011071,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 +13.5208613,PR:000011095,http://purl.obolibrary.org/obo/PR_000011095,NADH dehydrogenase [ubiquinone] 1 subunit C2 +13.5208613,PR:000011102,http://purl.obolibrary.org/obo/PR_000011102,"NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial" +13.5208613,PR:000011292,http://purl.obolibrary.org/obo/PR_000011292,nicotinamide/nicotinic acid mononucleotide adenylyltransferase 3 +13.5208613,PR:000011481,http://purl.obolibrary.org/obo/PR_000011481,nuclear ubiquitous casein and cyclin-dependent kinase substrate 1 +13.5208613,PR:000011494,http://purl.obolibrary.org/obo/PR_000011494,diphosphoinositol polyphosphate phosphohydrolase 1 +13.5208613,PR:000011507,http://purl.obolibrary.org/obo/PR_000011507,nuclear pore complex protein Nup133 +13.5208613,PR:000011537,http://purl.obolibrary.org/obo/PR_000011537,nuclear RNA export factor 3 +13.5208613,PR:000012223,http://purl.obolibrary.org/obo/PR_000012223,protein-arginine deiminase type-6 +13.5208613,PR:000012233,http://purl.obolibrary.org/obo/PR_000012233,P antigen family member 4 +13.5208613,PR:000012618,http://purl.obolibrary.org/obo/PR_000012618,phosphoglucomutase-like protein 5 +13.5208613,PR:000012645,http://purl.obolibrary.org/obo/PR_000012645,PHD finger protein 19 +13.5208613,PR:000012857,http://purl.obolibrary.org/obo/PR_000012857,pleckstrin homology domain-containing family A member 8 +13.5208613,PR:000013026,http://purl.obolibrary.org/obo/PR_000013026,ribonuclease P/MRP protein subunit POP5 +13.5208613,PR:000013066,http://purl.obolibrary.org/obo/PR_000013066,serine/threonine-protein phosphatase with EF-hands 1 +13.5208613,PR:000013335,http://purl.obolibrary.org/obo/PR_000013335,protein prune homolog 2 +13.5208613,PR:000013784,http://purl.obolibrary.org/obo/PR_000013784,RNA-binding protein 12 +13.5208613,PR:000013998,http://purl.obolibrary.org/obo/PR_000013998,rho/Cdc42/Rac GTPase-activating protein RICS +13.5208613,PR:000014200,http://purl.obolibrary.org/obo/PR_000014200,60S ribosomal protein L21 +13.5208613,PR:000014514,http://purl.obolibrary.org/obo/PR_000014514,schwannomin-interacting protein 1 +13.5208613,PR:000014567,http://purl.obolibrary.org/obo/PR_000014567,protein sidekick-1 +13.5208613,PR:000015078,http://purl.obolibrary.org/obo/PR_000015078,zinc transporter 5 +13.5208613,PR:000015134,http://purl.obolibrary.org/obo/PR_000015134,zinc transporter SLC39A7 +13.5208613,PR:000015498,http://purl.obolibrary.org/obo/PR_000015498,speriolin +13.5208613,PR:000016539,http://purl.obolibrary.org/obo/PR_000016539,mitochondrial import receptor subunit TOM6 +13.5208613,PR:000016836,http://purl.obolibrary.org/obo/PR_000016836,tubby-related protein 3 +13.5208613,PR:000016965,http://purl.obolibrary.org/obo/PR_000016965,ubiquitin-conjugating enzyme E2 A +13.5208613,PR:000017149,http://purl.obolibrary.org/obo/PR_000017149,ubiquitin carboxyl-terminal hydrolase 13 +13.5208613,PR:000017168,http://purl.obolibrary.org/obo/PR_000017168,ubiquitin carboxyl-terminal hydrolase 3 +13.5208613,PR:000017368,http://purl.obolibrary.org/obo/PR_000017368,wings apart-like protein +13.5208613,PR:000017429,http://purl.obolibrary.org/obo/PR_000017429,Wilms tumor-associated protein +13.5208613,PR:000017578,http://purl.obolibrary.org/obo/PR_000017578,zinc finger and BTB domain-containing protein 38 +13.5208613,PR:000022130,http://purl.obolibrary.org/obo/PR_000022130,none +13.5208613,PR:000022401,http://purl.obolibrary.org/obo/PR_000022401,none +13.5208613,PR:000022766,http://purl.obolibrary.org/obo/PR_000022766,none +13.5208613,PR:000022837,http://purl.obolibrary.org/obo/PR_000022837,none +13.5208613,PR:000023356,http://purl.obolibrary.org/obo/PR_000023356,none +13.5208613,PR:000023570,http://purl.obolibrary.org/obo/PR_000023570,none +13.5208613,PR:000023704,http://purl.obolibrary.org/obo/PR_000023704,none +13.5208613,PR:000029130,http://purl.obolibrary.org/obo/PR_000029130,PAS domain-containing serine/threonine-protein kinase +13.5208613,PR:000029331,http://purl.obolibrary.org/obo/PR_000029331,coiled-coil domain-containing protein 56 +13.5208613,PR:000029628,http://purl.obolibrary.org/obo/PR_000029628,ribosomal oxygenase 2 +13.5208613,PR:000031333,http://purl.obolibrary.org/obo/PR_000031333,ATP-dependent DNA/RNA helicase DHX36 +13.5208613,PR:000031341,http://purl.obolibrary.org/obo/PR_000031341,lysine-specific demethylase 7A +13.5208613,PR:000031394,http://purl.obolibrary.org/obo/PR_000031394,WD repeat-containing protein 7 +13.5208613,PR:000031409,http://purl.obolibrary.org/obo/PR_000031409,FERM domain-containing protein 6 +13.5208613,PR:000031734,http://purl.obolibrary.org/obo/PR_000031734,palmitoyltransferase ZDHHC23 +13.5208613,PR:000031994,http://purl.obolibrary.org/obo/PR_000031994,YTH domain-containing family protein 1 +13.5208613,PR:000032162,http://purl.obolibrary.org/obo/PR_000032162,CUB and sushi domain-containing protein 3 +13.5208613,PR:000032882,http://purl.obolibrary.org/obo/PR_000032882,none +13.5208613,PR:000033634,http://purl.obolibrary.org/obo/PR_000033634,none +13.5208613,PR:000034686,http://purl.obolibrary.org/obo/PR_000034686,none +13.5208613,PR:000044424,http://purl.obolibrary.org/obo/PR_000044424,none +13.5208613,PR:000044450,http://purl.obolibrary.org/obo/PR_000044450,none +13.5208613,PR:A2AVQ5,http://purl.obolibrary.org/obo/PR_A2AVQ5,none +13.5208613,PR:M9NDE3,http://purl.obolibrary.org/obo/PR_M9NDE3,none +13.5208613,PR:O13729,http://purl.obolibrary.org/obo/PR_O13729,none +13.5208613,PR:O80605,http://purl.obolibrary.org/obo/PR_O80605,none +13.5208613,PR:O94261,http://purl.obolibrary.org/obo/PR_O94261,none +13.5208613,PR:P07871,http://purl.obolibrary.org/obo/PR_P07871,none +13.5208613,PR:P16521,http://purl.obolibrary.org/obo/PR_P16521,none +13.5208613,PR:P28173,http://purl.obolibrary.org/obo/PR_P28173,none +13.5208613,PR:P28795,http://purl.obolibrary.org/obo/PR_P28795,none +13.5208613,PR:P35844,http://purl.obolibrary.org/obo/PR_P35844,none +13.5208613,PR:P38827,http://purl.obolibrary.org/obo/PR_P38827,none +13.5208613,PR:P39083,http://purl.obolibrary.org/obo/PR_P39083,none +13.5208613,PR:P39938,http://purl.obolibrary.org/obo/PR_P39938,none +13.5208613,PR:P40995,http://purl.obolibrary.org/obo/PR_P40995,none +13.5208613,PR:P42804,http://purl.obolibrary.org/obo/PR_P42804,none +13.5208613,PR:P52550,http://purl.obolibrary.org/obo/PR_P52550,none +13.5208613,PR:P70612,http://purl.obolibrary.org/obo/PR_P70612,none +13.5208613,PR:P81641,http://purl.obolibrary.org/obo/PR_P81641,none +13.5208613,PR:P87306,http://purl.obolibrary.org/obo/PR_P87306,none +13.5208613,PR:P93735,http://purl.obolibrary.org/obo/PR_P93735,none +13.5208613,PR:P9WHB5,http://purl.obolibrary.org/obo/PR_P9WHB5,none +13.5208613,PR:Q04217,http://purl.obolibrary.org/obo/PR_Q04217,none +13.5208613,PR:Q1LUQ4,http://purl.obolibrary.org/obo/PR_Q1LUQ4,none +13.5208613,PR:Q3ZCV2,http://purl.obolibrary.org/obo/PR_Q3ZCV2,lymphocyte expansion molecule (human) +13.5208613,PR:Q55BX7,http://purl.obolibrary.org/obo/PR_Q55BX7,none +13.5208613,PR:Q6NPP4,http://purl.obolibrary.org/obo/PR_Q6NPP4,none +13.5208613,PR:Q7T2B0,http://purl.obolibrary.org/obo/PR_Q7T2B0,none +13.5208613,PR:Q8GWQ2,http://purl.obolibrary.org/obo/PR_Q8GWQ2,none +13.5208613,PR:Q8RWM3,http://purl.obolibrary.org/obo/PR_Q8RWM3,none +13.5208613,PR:Q9ASR0,http://purl.obolibrary.org/obo/PR_Q9ASR0,none +13.5208613,PR:Q9DGE0,http://purl.obolibrary.org/obo/PR_Q9DGE0,none +13.5208613,PR:Q9FDX9,http://purl.obolibrary.org/obo/PR_Q9FDX9,none +13.5208613,PR:Q9FHN8,http://purl.obolibrary.org/obo/PR_Q9FHN8,none +13.5208613,PR:Q9LK95,http://purl.obolibrary.org/obo/PR_Q9LK95,none +13.5208613,PR:Q9LPC6,http://purl.obolibrary.org/obo/PR_Q9LPC6,none +13.5208613,PR:Q9S972,http://purl.obolibrary.org/obo/PR_Q9S972,none +13.5208613,PR:Q9XF91,http://purl.obolibrary.org/obo/PR_Q9XF91,none +13.5208613,SO:0000015,http://purl.obolibrary.org/obo/SO_0000015,DPE_motif +13.5208613,SO:0000399,http://purl.obolibrary.org/obo/SO_0000399,U12_snRNA +13.5208613,SO:0000689,http://purl.obolibrary.org/obo/SO_0000689,cDNA_match +13.5208613,SO:0001385,http://purl.obolibrary.org/obo/SO_0001385,modified_amino_acid_feature +13.5208613,UBERON:0001146,http://purl.obolibrary.org/obo/UBERON_0001146,suprarenal vein +13.5208613,UBERON:0001545,http://purl.obolibrary.org/obo/UBERON_0001545,anterior tibial vein +13.5208613,UBERON:0001589,http://purl.obolibrary.org/obo/UBERON_0001589,internal thoracic vein +13.5208613,UBERON:0003060,http://purl.obolibrary.org/obo/UBERON_0003060,pronephric duct +13.5208613,UBERON:0003114,http://purl.obolibrary.org/obo/UBERON_0003114,pharyngeal arch 3 +13.5208613,UBERON:0004294,http://purl.obolibrary.org/obo/UBERON_0004294,glomerular capillary endothelium +13.5208613,UBERON:0004466,http://purl.obolibrary.org/obo/UBERON_0004466,musculature of leg +13.5208613,UBERON:0005350,http://purl.obolibrary.org/obo/UBERON_0005350,lobule simplex +13.5208613,UBERON:0005480,http://purl.obolibrary.org/obo/UBERON_0005480,superior orbital fissure +13.5208613,UBERON:0006428,http://purl.obolibrary.org/obo/UBERON_0006428,basisphenoid bone +13.5208613,UBERON:0007113,http://purl.obolibrary.org/obo/UBERON_0007113,venom +13.5208613,UBERON:0007277,http://purl.obolibrary.org/obo/UBERON_0007277,presumptive hindbrain +13.5208613,UBERON:0007619,http://purl.obolibrary.org/obo/UBERON_0007619,limiting membrane of retina +13.5208613,UBERON:0008124,http://purl.obolibrary.org/obo/UBERON_0008124,joint articular surface +13.5208613,UBERON:0008955,http://purl.obolibrary.org/obo/UBERON_0008955,middle lobe of lung +13.5208613,UBERON:0009039,http://purl.obolibrary.org/obo/UBERON_0009039,lymph node germinal center +13.5208613,UBERON:0011022,http://purl.obolibrary.org/obo/UBERON_0011022,flexor hallucis brevis muscle +13.5208613,UBERON:0011184,http://purl.obolibrary.org/obo/UBERON_0011184,epithelium of crypt of Lieberkuhn +13.5208613,UBERON:0014410,http://purl.obolibrary.org/obo/UBERON_0014410,fibularis quartus +13.5208613,UBERON:0014554,http://purl.obolibrary.org/obo/UBERON_0014554,CA1 stratum radiatum +13.5208613,UBERON:0018401,http://purl.obolibrary.org/obo/UBERON_0018401,posterior superior alveolar nerve +13.5208613,UBERON:2000716,http://purl.obolibrary.org/obo/UBERON_2000716,afferent portion of pharyngeal arch artery +13.5208613,UBERON:2002193,http://purl.obolibrary.org/obo/UBERON_2002193,dorsolateral septum +13.5536511,CHEBI:133748,http://purl.obolibrary.org/obo/CHEBI_133748,citrate anion +13.5536511,CHEBI:22583,http://purl.obolibrary.org/obo/CHEBI_22583,antifeedant +13.5536511,CHEBI:22718,http://purl.obolibrary.org/obo/CHEBI_22718,benzoates +13.5536511,CHEBI:23976,http://purl.obolibrary.org/obo/CHEBI_23976,ethanediol +13.5536511,CHEBI:24709,http://purl.obolibrary.org/obo/CHEBI_24709,hydroxylamines +13.5536511,CHEBI:24840,http://purl.obolibrary.org/obo/CHEBI_24840,inorganic sulfate salt +13.5536511,CHEBI:24921,http://purl.obolibrary.org/obo/CHEBI_24921,isoquinoline alkaloid +13.5536511,CHEBI:24951,http://purl.obolibrary.org/obo/CHEBI_24951,kanamycins +13.5536511,CHEBI:25491,http://purl.obolibrary.org/obo/CHEBI_25491,nematicide +13.5536511,CHEBI:25562,http://purl.obolibrary.org/obo/CHEBI_25562,nitrophenol +13.5536511,CHEBI:32461,http://purl.obolibrary.org/obo/CHEBI_32461,cysteinate residue +13.5536511,CHEBI:33666,http://purl.obolibrary.org/obo/CHEBI_33666,polycyclic hydrocarbon +13.5536511,CHEBI:33848,http://purl.obolibrary.org/obo/CHEBI_33848,polycyclic arene +13.5536511,CHEBI:35753,http://purl.obolibrary.org/obo/CHEBI_35753,tricarboxylic acid anion +13.5536511,CHEBI:35808,http://purl.obolibrary.org/obo/CHEBI_35808,citrate(2-) +13.5536511,CHEBI:36300,http://purl.obolibrary.org/obo/CHEBI_36300,tricarboxylic acid dianion +13.5536511,CHEBI:36785,http://purl.obolibrary.org/obo/CHEBI_36785,carbobicyclic compound +13.5536511,CHEBI:38627,http://purl.obolibrary.org/obo/CHEBI_38627,diazine +13.5536511,CHEBI:39124,http://purl.obolibrary.org/obo/CHEBI_39124,calcium ion +13.5536511,CHEBI:47804,http://purl.obolibrary.org/obo/CHEBI_47804,dibenzoazepine +13.5536511,CHEBI:50744,http://purl.obolibrary.org/obo/CHEBI_50744,citrate salt +13.5536511,CHEBI:50822,http://purl.obolibrary.org/obo/CHEBI_50822,iron oxide nanoparticle +13.5536511,CHEBI:51276,http://purl.obolibrary.org/obo/CHEBI_51276,thioureas +13.5536511,CHEBI:53142,http://purl.obolibrary.org/obo/CHEBI_53142,P2Y2 receptor agonist +13.5536511,CHEBI:53233,http://purl.obolibrary.org/obo/CHEBI_53233,"3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide" +13.5536511,CHEBI:63394,http://purl.obolibrary.org/obo/CHEBI_63394,ketoaldonic acid derivative +13.5536511,CHEBI:71168,http://purl.obolibrary.org/obo/CHEBI_71168,HIV-1 maturation inhibitor +13.5536511,CL:0000372,http://purl.obolibrary.org/obo/CL_0000372,tormogen cell +13.5536511,CL:0000486,http://purl.obolibrary.org/obo/CL_0000486,garland cell +13.5536511,CL:0000959,http://purl.obolibrary.org/obo/CL_0000959,T2 B cell +13.5536511,CL:0001014,http://purl.obolibrary.org/obo/CL_0001014,CD1a-positive Langerhans cell +13.5536511,CL:0002302,http://purl.obolibrary.org/obo/CL_0002302,type A synovial cell +13.5536511,DRUGBANK:DB01495,http://purl.obolibrary.org/obo/DRUGBANK_DB01495,none +13.5536511,DRUGBANK:DB02335,http://purl.obolibrary.org/obo/DRUGBANK_DB02335,none +13.5536511,DRUGBANK:DB02817,http://purl.obolibrary.org/obo/DRUGBANK_DB02817,none +13.5536511,DRUGBANK:DB03893,http://purl.obolibrary.org/obo/DRUGBANK_DB03893,none +13.5536511,DRUGBANK:DB04860,http://purl.obolibrary.org/obo/DRUGBANK_DB04860,none +13.5536511,DRUGBANK:DB04964,http://purl.obolibrary.org/obo/DRUGBANK_DB04964,none +13.5536511,DRUGBANK:DB05136,http://purl.obolibrary.org/obo/DRUGBANK_DB05136,none +13.5536511,DRUGBANK:DB05171,http://purl.obolibrary.org/obo/DRUGBANK_DB05171,none +13.5536511,DRUGBANK:DB05187,http://purl.obolibrary.org/obo/DRUGBANK_DB05187,none +13.5536511,DRUGBANK:DB05450,http://purl.obolibrary.org/obo/DRUGBANK_DB05450,none +13.5536511,DRUGBANK:DB05992,http://purl.obolibrary.org/obo/DRUGBANK_DB05992,none +13.5536511,DRUGBANK:DB06495,http://purl.obolibrary.org/obo/DRUGBANK_DB06495,none +13.5536511,DRUGBANK:DB07375,http://purl.obolibrary.org/obo/DRUGBANK_DB07375,none +13.5536511,DRUGBANK:DB07635,http://purl.obolibrary.org/obo/DRUGBANK_DB07635,none +13.5536511,DRUGBANK:DB08188,http://purl.obolibrary.org/obo/DRUGBANK_DB08188,none +13.5536511,DRUGBANK:DB08925,http://purl.obolibrary.org/obo/DRUGBANK_DB08925,none +13.5536511,DRUGBANK:DB09253,http://purl.obolibrary.org/obo/DRUGBANK_DB09253,none +13.5536511,DRUGBANK:DB10616,http://purl.obolibrary.org/obo/DRUGBANK_DB10616,none +13.5536511,DRUGBANK:DB10955,http://purl.obolibrary.org/obo/DRUGBANK_DB10955,none +13.5536511,DRUGBANK:DB11199,http://purl.obolibrary.org/obo/DRUGBANK_DB11199,none +13.5536511,DRUGBANK:DB11981,http://purl.obolibrary.org/obo/DRUGBANK_DB11981,none +13.5536511,DRUGBANK:DB12237,http://purl.obolibrary.org/obo/DRUGBANK_DB12237,none +13.5536511,DRUGBANK:DB12273,http://purl.obolibrary.org/obo/DRUGBANK_DB12273,none +13.5536511,DRUGBANK:DB12500,http://purl.obolibrary.org/obo/DRUGBANK_DB12500,none +13.5536511,DRUGBANK:DB12984,http://purl.obolibrary.org/obo/DRUGBANK_DB12984,none +13.5536511,DRUGBANK:DB13414,http://purl.obolibrary.org/obo/DRUGBANK_DB13414,none +13.5536511,DRUGBANK:DB13438,http://purl.obolibrary.org/obo/DRUGBANK_DB13438,none +13.5536511,DRUGBANK:DB13522,http://purl.obolibrary.org/obo/DRUGBANK_DB13522,none +13.5536511,DRUGBANK:DB13557,http://purl.obolibrary.org/obo/DRUGBANK_DB13557,none +13.5536511,DRUGBANK:DB13802,http://purl.obolibrary.org/obo/DRUGBANK_DB13802,none +13.5536511,DRUGBANK:DB13834,http://purl.obolibrary.org/obo/DRUGBANK_DB13834,none +13.5536511,DRUGBANK:DB14108,http://purl.obolibrary.org/obo/DRUGBANK_DB14108,none +13.5536511,DRUGBANK:DB14114,http://purl.obolibrary.org/obo/DRUGBANK_DB14114,none +13.5536511,DRUGBANK:DB14901,http://purl.obolibrary.org/obo/DRUGBANK_DB14901,none +13.5536511,DRUGBANK:DB15398,http://purl.obolibrary.org/obo/DRUGBANK_DB15398,none +13.5536511,DRUGBANK:DB15887,http://purl.obolibrary.org/obo/DRUGBANK_DB15887,none +13.5536511,DRUGBANK:DB16020,http://purl.obolibrary.org/obo/DRUGBANK_DB16020,none +13.5536511,GO:0000026,http://purl.obolibrary.org/obo/GO_0000026,"alpha-1,2-mannosyltransferase activity" +13.5536511,GO:0001058,http://purl.obolibrary.org/obo/GO_0001058,RNA polymerase V activity +13.5536511,GO:0002076,http://purl.obolibrary.org/obo/GO_0002076,osteoblast development +13.5536511,GO:0002386,http://purl.obolibrary.org/obo/GO_0002386,none +13.5536511,GO:0002387,http://purl.obolibrary.org/obo/GO_0002387,immune response in gut-associated lymphoid tissue +13.5536511,GO:0003697,http://purl.obolibrary.org/obo/GO_0003697,single-stranded DNA binding +13.5536511,GO:0005487,http://purl.obolibrary.org/obo/GO_0005487,none +13.5536511,GO:0005638,http://purl.obolibrary.org/obo/GO_0005638,lamin filament +13.5536511,GO:0006756,http://purl.obolibrary.org/obo/GO_0006756,AMP phosphorylation +13.5536511,GO:0007063,http://purl.obolibrary.org/obo/GO_0007063,regulation of sister chromatid cohesion +13.5536511,GO:0008127,http://purl.obolibrary.org/obo/GO_0008127,"quercetin 2,3-dioxygenase activity" +13.5536511,GO:0008215,http://purl.obolibrary.org/obo/GO_0008215,spermine metabolic process +13.5536511,GO:0008930,http://purl.obolibrary.org/obo/GO_0008930,methylthioadenosine nucleosidase activity +13.5536511,GO:0008955,http://purl.obolibrary.org/obo/GO_0008955,peptidoglycan glycosyltransferase activity +13.5536511,GO:0010449,http://purl.obolibrary.org/obo/GO_0010449,root meristem growth +13.5536511,GO:0014827,http://purl.obolibrary.org/obo/GO_0014827,intestine smooth muscle contraction +13.5536511,GO:0015474,http://purl.obolibrary.org/obo/GO_0015474,autotransporter activity +13.5536511,GO:0017017,http://purl.obolibrary.org/obo/GO_0017017,MAP kinase tyrosine/serine/threonine phosphatase activity +13.5536511,GO:0021871,http://purl.obolibrary.org/obo/GO_0021871,forebrain regionalization +13.5536511,GO:0030185,http://purl.obolibrary.org/obo/GO_0030185,nitric oxide transport +13.5536511,GO:0030196,http://purl.obolibrary.org/obo/GO_0030196,cyanide hydratase activity +13.5536511,GO:0030276,http://purl.obolibrary.org/obo/GO_0030276,clathrin binding +13.5536511,GO:0030325,http://purl.obolibrary.org/obo/GO_0030325,adrenal gland development +13.5536511,GO:0030596,http://purl.obolibrary.org/obo/GO_0030596,alpha-L-rhamnosidase activity +13.5536511,GO:0030696,http://purl.obolibrary.org/obo/GO_0030696,tRNA (m5U54) methyltransferase activity +13.5536511,GO:0031298,http://purl.obolibrary.org/obo/GO_0031298,replication fork protection complex +13.5536511,GO:0031345,http://purl.obolibrary.org/obo/GO_0031345,negative regulation of cell projection organization +13.5536511,GO:0033883,http://purl.obolibrary.org/obo/GO_0033883,pyridoxal phosphatase activity +13.5536511,GO:0034154,http://purl.obolibrary.org/obo/GO_0034154,toll-like receptor 7 signaling pathway +13.5536511,GO:0034465,http://purl.obolibrary.org/obo/GO_0034465,response to carbon monoxide +13.5536511,GO:0035546,http://purl.obolibrary.org/obo/GO_0035546,none +13.5536511,GO:0035615,http://purl.obolibrary.org/obo/GO_0035615,clathrin adaptor activity +13.5536511,GO:0035701,http://purl.obolibrary.org/obo/GO_0035701,hematopoietic stem cell migration +13.5536511,GO:0035784,http://purl.obolibrary.org/obo/GO_0035784,nickel cation homeostasis +13.5536511,GO:0038102,http://purl.obolibrary.org/obo/GO_0038102,activin receptor antagonist activity +13.5536511,GO:0042262,http://purl.obolibrary.org/obo/GO_0042262,DNA protection +13.5536511,GO:0042903,http://purl.obolibrary.org/obo/GO_0042903,tubulin deacetylase activity +13.5536511,GO:0045460,http://purl.obolibrary.org/obo/GO_0045460,sterigmatocystin metabolic process +13.5536511,GO:0046120,http://purl.obolibrary.org/obo/GO_0046120,deoxyribonucleoside biosynthetic process +13.5536511,GO:0046353,http://purl.obolibrary.org/obo/GO_0046353,aminoglycoside 3-N-acetyltransferase activity +13.5536511,GO:0046403,http://purl.obolibrary.org/obo/GO_0046403,polynucleotide 3'-phosphatase activity +13.5536511,GO:0046887,http://purl.obolibrary.org/obo/GO_0046887,positive regulation of hormone secretion +13.5536511,GO:0047192,http://purl.obolibrary.org/obo/GO_0047192,1-alkylglycerophosphocholine O-acetyltransferase activity +13.5536511,GO:0047965,http://purl.obolibrary.org/obo/GO_0047965,glycoprotein O-fatty-acyltransferase activity +13.5536511,GO:0051699,http://purl.obolibrary.org/obo/GO_0051699,proline oxidase activity +13.5536511,GO:0051795,http://purl.obolibrary.org/obo/GO_0051795,positive regulation of timing of catagen +13.5536511,GO:0051996,http://purl.obolibrary.org/obo/GO_0051996,squalene synthase activity +13.5536511,GO:0052564,http://purl.obolibrary.org/obo/GO_0052564,none +13.5536511,GO:0060209,http://purl.obolibrary.org/obo/GO_0060209,estrus +13.5536511,GO:0060236,http://purl.obolibrary.org/obo/GO_0060236,regulation of mitotic spindle organization +13.5536511,GO:0061337,http://purl.obolibrary.org/obo/GO_0061337,cardiac conduction +13.5536511,GO:0070302,http://purl.obolibrary.org/obo/GO_0070302,regulation of stress-activated protein kinase signaling cascade +13.5536511,GO:0072375,http://purl.obolibrary.org/obo/GO_0072375,medium-term memory +13.5536511,GO:0072619,http://purl.obolibrary.org/obo/GO_0072619,none +13.5536511,GO:0080053,http://purl.obolibrary.org/obo/GO_0080053,response to phenylalanine +13.5536511,GO:0097381,http://purl.obolibrary.org/obo/GO_0097381,photoreceptor disc membrane +13.5536511,GO:0140312,http://purl.obolibrary.org/obo/GO_0140312,cargo adaptor activity +13.5536511,GO:1900704,http://purl.obolibrary.org/obo/GO_1900704,regulation of siderophore biosynthetic process +13.5536511,GO:1901761,http://purl.obolibrary.org/obo/GO_1901761,oxytetracycline metabolic process +13.5536511,GO:1901763,http://purl.obolibrary.org/obo/GO_1901763,oxytetracycline biosynthetic process +13.5536511,GO:1904029,http://purl.obolibrary.org/obo/GO_1904029,regulation of cyclin-dependent protein kinase activity +13.5536511,GO:1904760,http://purl.obolibrary.org/obo/GO_1904760,regulation of myofibroblast differentiation +13.5536511,GO:1990814,http://purl.obolibrary.org/obo/GO_1990814,DNA/DNA annealing activity +13.5536511,GO:2000834,http://purl.obolibrary.org/obo/GO_2000834,regulation of androgen secretion +13.5536511,GO:2001308,http://purl.obolibrary.org/obo/GO_2001308,gliotoxin metabolic process +13.5536511,GO:2001310,http://purl.obolibrary.org/obo/GO_2001310,gliotoxin biosynthetic process +13.5536511,HP:0001919,http://purl.obolibrary.org/obo/HP_0001919,Acute kidney injury +13.5536511,HP:0001942,http://purl.obolibrary.org/obo/HP_0001942,Metabolic acidosis +13.5536511,HP:0002669,http://purl.obolibrary.org/obo/HP_0002669,Osteosarcoma +13.5536511,MONDO:0000525,http://purl.obolibrary.org/obo/MONDO_0000525,cecum villous adenoma +13.5536511,MONDO:0001237,http://purl.obolibrary.org/obo/MONDO_0001237,appendix lymphoma +13.5536511,MONDO:0002399,http://purl.obolibrary.org/obo/MONDO_0002399,"tenosynovial giant cell tumor, localized type" +13.5536511,MONDO:0003095,http://purl.obolibrary.org/obo/MONDO_0003095,laryngeal mucoepidermoid carcinoma +13.5536511,MONDO:0003371,http://purl.obolibrary.org/obo/MONDO_0003371,breast leiomyosarcoma +13.5536511,MONDO:0003502,http://purl.obolibrary.org/obo/MONDO_0003502,ureter squamous cell carcinoma +13.5536511,MONDO:0003717,http://purl.obolibrary.org/obo/MONDO_0003717,renal pelvis papillary tumor +13.5536511,MONDO:0004020,http://purl.obolibrary.org/obo/MONDO_0004020,mediastinal gray zone lymphoma +13.5536511,MONDO:0004048,http://purl.obolibrary.org/obo/MONDO_0004048,immature gastric teratoma +13.5536511,MONDO:0005837,http://purl.obolibrary.org/obo/MONDO_0005837,mandibular cancer +13.5536511,MONDO:0006049,http://purl.obolibrary.org/obo/MONDO_0006049,papillary lung adenocarcinoma +13.5536511,MONDO:0006160,http://purl.obolibrary.org/obo/MONDO_0006160,colorectal hamartoma +13.5536511,MONDO:0006303,http://purl.obolibrary.org/obo/MONDO_0006303,middle ear squamous cell carcinoma +13.5536511,MONDO:0006465,http://purl.obolibrary.org/obo/MONDO_0006465,thyroid gland oncocytic follicular carcinoma +13.5536511,MONDO:0006521,http://purl.obolibrary.org/obo/MONDO_0006521,acneiform dermatitis +13.5536511,MONDO:0006941,http://purl.obolibrary.org/obo/MONDO_0006941,rat-bite fever +13.5536511,MONDO:0007072,http://purl.obolibrary.org/obo/MONDO_0007072,ADULT syndrome +13.5536511,MONDO:0007445,http://purl.obolibrary.org/obo/MONDO_0007445,dermatopathia pigmentosa reticularis +13.5536511,MONDO:0008048,http://purl.obolibrary.org/obo/MONDO_0008048,autosomal dominant centronuclear myopathy +13.5536511,MONDO:0008377,http://purl.obolibrary.org/obo/MONDO_0008377,retinitis pigmentosa 1 +13.5536511,MONDO:0008561,http://purl.obolibrary.org/obo/MONDO_0008561,thumb deformity +13.5536511,MONDO:0008661,http://purl.obolibrary.org/obo/MONDO_0008661,vitiligo +13.5536511,MONDO:0008866,http://purl.obolibrary.org/obo/MONDO_0008866,"bifid nose, autosomal recessive" +13.5536511,MONDO:0009115,http://purl.obolibrary.org/obo/MONDO_0009115,congenital lactase deficiency +13.5536511,MONDO:0009203,http://purl.obolibrary.org/obo/MONDO_0009203,focal facial dermal dysplasia type III +13.5536511,MONDO:0009658,http://purl.obolibrary.org/obo/MONDO_0009658,Sanfilippo syndrome type D +13.5536511,MONDO:0010156,http://purl.obolibrary.org/obo/MONDO_0010156,Troyer syndrome +13.5536511,MONDO:0011640,http://purl.obolibrary.org/obo/MONDO_0011640,genitopatellar syndrome +13.5536511,MONDO:0012220,http://purl.obolibrary.org/obo/MONDO_0012220,Griscelli syndrome type 3 +13.5536511,MONDO:0013334,http://purl.obolibrary.org/obo/MONDO_0013334,cocoon syndrome +13.5536511,MONDO:0015044,http://purl.obolibrary.org/obo/MONDO_0015044,mu-heavy chain disease +13.5536511,MONDO:0015275,http://purl.obolibrary.org/obo/MONDO_0015275,partial atrioventricular canal +13.5536511,MONDO:0015414,http://purl.obolibrary.org/obo/MONDO_0015414,paramedian nasal cleft +13.5536511,MONDO:0015579,http://purl.obolibrary.org/obo/MONDO_0015579,Hb Bart's hydrops fetalis +13.5536511,MONDO:0016099,http://purl.obolibrary.org/obo/MONDO_0016099,overlap myositis +13.5536511,MONDO:0016396,http://purl.obolibrary.org/obo/MONDO_0016396,pontocerebellar hypoplasia type 1 +13.5536511,MONDO:0016495,http://purl.obolibrary.org/obo/MONDO_0016495,functional variant of Guillain-Barre syndrome +13.5536511,MONDO:0016759,http://purl.obolibrary.org/obo/MONDO_0016759,pontocerebellar hypoplasia type 2 +13.5536511,MONDO:0016829,http://purl.obolibrary.org/obo/MONDO_0016829,familial visceral myopathy +13.5536511,MONDO:0017050,http://purl.obolibrary.org/obo/MONDO_0017050,intraocular medulloepithelioma +13.5536511,MONDO:0017228,http://purl.obolibrary.org/obo/MONDO_0017228,autoimmune pancreatitis type 2 +13.5536511,MONDO:0017574,http://purl.obolibrary.org/obo/MONDO_0017574,chronic intestinal pseudoobstruction +13.5536511,MONDO:0019376,http://purl.obolibrary.org/obo/MONDO_0019376,West-Nile encephalitis +13.5536511,MONDO:0020526,http://purl.obolibrary.org/obo/MONDO_0020526,acute megakaryoblastic leukemia in down syndrome +13.5536511,MONDO:0021317,http://purl.obolibrary.org/obo/MONDO_0021317,cancer of cerebellum +13.5536511,MONDO:0021653,http://purl.obolibrary.org/obo/MONDO_0021653,cutaneous focal mucinosis +13.5536511,MONDO:0024309,http://purl.obolibrary.org/obo/MONDO_0024309,"neuropathy, hereditary sensory and autonomic, type 2A" +13.5536511,MONDO:0044141,http://purl.obolibrary.org/obo/MONDO_0044141,panic disorder without agoraphobia +13.5536511,MONDO:0044687,http://purl.obolibrary.org/obo/MONDO_0044687,chronic relapsing inflammatory optic neuropathy +13.5536511,NCBITaxon:103722,http://purl.obolibrary.org/obo/NCBITaxon_103722,none +13.5536511,NCBITaxon:10627,http://purl.obolibrary.org/obo/NCBITaxon_10627,none +13.5536511,NCBITaxon:11280,http://purl.obolibrary.org/obo/NCBITaxon_11280,none +13.5536511,NCBITaxon:1156497,http://purl.obolibrary.org/obo/NCBITaxon_1156497,none +13.5536511,NCBITaxon:11711,http://purl.obolibrary.org/obo/NCBITaxon_11711,none +13.5536511,NCBITaxon:1247190,http://purl.obolibrary.org/obo/NCBITaxon_1247190,none +13.5536511,NCBITaxon:12542,http://purl.obolibrary.org/obo/NCBITaxon_12542,Omsk hemorrhagic fever virus +13.5536511,NCBITaxon:12870,http://purl.obolibrary.org/obo/NCBITaxon_12870,Variola major virus +13.5536511,NCBITaxon:1299311,http://purl.obolibrary.org/obo/NCBITaxon_1299311,none +13.5536511,NCBITaxon:137732,http://purl.obolibrary.org/obo/NCBITaxon_137732,none +13.5536511,NCBITaxon:180526,http://purl.obolibrary.org/obo/NCBITaxon_180526,none +13.5536511,NCBITaxon:1972578,http://purl.obolibrary.org/obo/NCBITaxon_1972578,none +13.5536511,NCBITaxon:241806,http://purl.obolibrary.org/obo/NCBITaxon_241806,Polypodiopsida +13.5536511,NCBITaxon:2560536,http://purl.obolibrary.org/obo/NCBITaxon_2560536,none +13.5536511,NCBITaxon:2747931,http://purl.obolibrary.org/obo/NCBITaxon_2747931,none +13.5536511,NCBITaxon:28587,http://purl.obolibrary.org/obo/NCBITaxon_28587,none +13.5536511,NCBITaxon:290028,http://purl.obolibrary.org/obo/NCBITaxon_290028,none +13.5536511,NCBITaxon:31600,http://purl.obolibrary.org/obo/NCBITaxon_31600,none +13.5536511,NCBITaxon:322067,http://purl.obolibrary.org/obo/NCBITaxon_322067,none +13.5536511,NCBITaxon:337043,http://purl.obolibrary.org/obo/NCBITaxon_337043,none +13.5536511,NCBITaxon:34855,http://purl.obolibrary.org/obo/NCBITaxon_34855,none +13.5536511,NCBITaxon:34856,http://purl.obolibrary.org/obo/NCBITaxon_34856,none +13.5536511,NCBITaxon:426442,http://purl.obolibrary.org/obo/NCBITaxon_426442,Ixodinae +13.5536511,NCBITaxon:6944,http://purl.obolibrary.org/obo/NCBITaxon_6944,Ixodes +13.5536511,NCBITaxon:7220,http://purl.obolibrary.org/obo/NCBITaxon_7220,none +13.5536511,NCBITaxon:7504,http://purl.obolibrary.org/obo/NCBITaxon_7504,none +13.5536511,NCBITaxon:77763,http://purl.obolibrary.org/obo/NCBITaxon_77763,none +13.5536511,NCBITaxon:7871,http://purl.obolibrary.org/obo/NCBITaxon_7871,none +13.5536511,NCBITaxon:83553,http://purl.obolibrary.org/obo/NCBITaxon_83553,none +13.5536511,PR:000001718,http://purl.obolibrary.org/obo/PR_000001718,trace amine-associated receptor 9 +13.5536511,PR:000001878,http://purl.obolibrary.org/obo/PR_000001878,leukocyte-associated immunoglobulin-like receptor 2 +13.5536511,PR:000002054,http://purl.obolibrary.org/obo/PR_000002054,inward rectifier potassium channel 13 +13.5536511,PR:000003731,http://purl.obolibrary.org/obo/PR_000003731,a disintegrin and metalloproteinase with thrombospondin motifs 20 +13.5536511,PR:000003798,http://purl.obolibrary.org/obo/PR_000003798,zinc finger protein AEBP2 +13.5536511,PR:000004272,http://purl.obolibrary.org/obo/PR_000004272,E3 ubiquitin-protein ligase ARIH2 +13.5536511,PR:000004275,http://purl.obolibrary.org/obo/PR_000004275,ADP-ribosylation factor-like protein 11 +13.5536511,PR:000004421,http://purl.obolibrary.org/obo/PR_000004421,autophagy-related protein 9B +13.5536511,PR:000004432,http://purl.obolibrary.org/obo/PR_000004432,protein atonal homolog 8 +13.5536511,PR:000004750,http://purl.obolibrary.org/obo/PR_000004750,bridging integrator 3 +13.5536511,PR:000004762,http://purl.obolibrary.org/obo/PR_000004762,biogenesis of lysosome-related organelles complex 1 subunit 1 +13.5536511,PR:000004939,http://purl.obolibrary.org/obo/PR_000004939,calcium-binding tyrosine phosphorylation-regulated protein +13.5536511,PR:000004941,http://purl.obolibrary.org/obo/PR_000004941,voltage-dependent T-type calcium channel subunit alpha-1H +13.5536511,PR:000005026,http://purl.obolibrary.org/obo/PR_000005026,calcyphosin +13.5536511,PR:000005382,http://purl.obolibrary.org/obo/PR_000005382,complement factor H-related protein 4 +13.5536511,PR:000005575,http://purl.obolibrary.org/obo/PR_000005575,chloride intracellular channel protein 2 +13.5536511,PR:000005783,http://purl.obolibrary.org/obo/PR_000005783,cytochrome c oxidase subunit 6B1 +13.5536511,PR:000005792,http://purl.obolibrary.org/obo/PR_000005792,"cytochrome c oxidase subunit 8A, mitochondrial" +13.5536511,PR:000006344,http://purl.obolibrary.org/obo/PR_000006344,phospholipase DDHD2 +13.5536511,PR:000006657,http://purl.obolibrary.org/obo/PR_000006657,dolichol phosphate-mannose biosynthesis regulatory protein +13.5536511,PR:000006690,http://purl.obolibrary.org/obo/PR_000006690,dorsal root ganglia homeobox protein +13.5536511,PR:000007118,http://purl.obolibrary.org/obo/PR_000007118,mammalian ependymin-related protein 1 +13.5536511,PR:000007271,http://purl.obolibrary.org/obo/PR_000007271,exostosin-like 2 +13.5536511,PR:000007549,http://purl.obolibrary.org/obo/PR_000007549,FAD synthase +13.5536511,PR:000007950,http://purl.obolibrary.org/obo/PR_000007950,GDNF family receptor alpha-3 +13.5536511,PR:000008261,http://purl.obolibrary.org/obo/PR_000008261,rhodopsin kinase GRK7 +13.5536511,PR:000008656,http://purl.obolibrary.org/obo/PR_000008656,histamine N-methyltransferase +13.5536511,PR:000008740,http://purl.obolibrary.org/obo/PR_000008740,Hermansky-Pudlak syndrome 6 protein +13.5536511,PR:000008893,http://purl.obolibrary.org/obo/PR_000008893,isopentenyl-diphosphate Delta-isomerase 2 +13.5536511,PR:000008960,http://purl.obolibrary.org/obo/PR_000008960,immunoglobulin heavy constant gamma 2 +13.5536511,PR:000009154,http://purl.obolibrary.org/obo/PR_000009154,inositol-tetrakisphosphate 1-kinase +13.5536511,PR:000009242,http://purl.obolibrary.org/obo/PR_000009242,katanin p60 ATPase-containing subunit A1 +13.5536511,PR:000009336,http://purl.obolibrary.org/obo/PR_000009336,killer cell immunoglobulin-like receptor 2DS5 +13.5536511,PR:000009666,http://purl.obolibrary.org/obo/PR_000009666,lysosomal-associated transmembrane protein 5 +13.5536511,PR:000009695,http://purl.obolibrary.org/obo/PR_000009695,ladybird homeobox corepressor 1 +13.5536511,PR:000009765,http://purl.obolibrary.org/obo/PR_000009765,"beta-1,3-N-acetylglucosaminyltransferase lunatic fringe" +13.5536511,PR:000009896,http://purl.obolibrary.org/obo/PR_000009896,phosphatidate phosphatase LPIN3 +13.5536511,PR:000010042,http://purl.obolibrary.org/obo/PR_000010042,MAP kinase-activating death domain protein +13.5536511,PR:000010071,http://purl.obolibrary.org/obo/PR_000010071,melanoma-associated antigen B6 +13.5536511,PR:000010196,http://purl.obolibrary.org/obo/PR_000010196,microtubule-associated serine/threonine-protein kinase 2 +13.5536511,PR:000010399,http://purl.obolibrary.org/obo/PR_000010399,[F-actin]-monooxygenase MICAL1 +13.5536511,PR:000010483,http://purl.obolibrary.org/obo/PR_000010483,matrix metalloproteinase-24 +13.5536511,PR:000010493,http://purl.obolibrary.org/obo/PR_000010493,multimerin-2 +13.5536511,PR:000010744,http://purl.obolibrary.org/obo/PR_000010744,mitochondrial 18 kDa protein +13.5536511,PR:000010765,http://purl.obolibrary.org/obo/PR_000010765,mucin-20 +13.5536511,PR:000011198,http://purl.obolibrary.org/obo/PR_000011198,sodium/hydrogen exchanger 9B2 +13.5536511,PR:000011218,http://purl.obolibrary.org/obo/PR_000011218,magnesium transporter NIPA2 +13.5536511,PR:000011312,http://purl.obolibrary.org/obo/PR_000011312,nucleolar protein 6 +13.5536511,PR:000011458,http://purl.obolibrary.org/obo/PR_000011458,protein N-terminal asparagine amidohydrolase +13.5536511,PR:000011474,http://purl.obolibrary.org/obo/PR_000011474,NUAK family SNF1-like kinase 2 +13.5536511,PR:000011523,http://purl.obolibrary.org/obo/PR_000011523,nuclear pore complex protein Nup85 +13.5536511,PR:000011589,http://purl.obolibrary.org/obo/PR_000011589,otoconin-90 +13.5536511,PR:000012049,http://purl.obolibrary.org/obo/PR_000012049,oxysterol-binding protein-related protein 3 +13.5536511,PR:000012053,http://purl.obolibrary.org/obo/PR_000012053,oxysterol-binding protein-related protein 8 +13.5536511,PR:000012102,http://purl.obolibrary.org/obo/PR_000012102,none +13.5536511,PR:000012255,http://purl.obolibrary.org/obo/PR_000012255,pantothenate kinase 1 +13.5536511,PR:000012535,http://purl.obolibrary.org/obo/PR_000012535,peroxisomal trans-2-enoyl-CoA reductase +13.5536511,PR:000012570,http://purl.obolibrary.org/obo/PR_000012570,platelet factor 4 variant +13.5536511,PR:000013100,http://purl.obolibrary.org/obo/PR_000013100,protein phosphatase 1M +13.5536511,PR:000013416,http://purl.obolibrary.org/obo/PR_000013416,phosphatidylserine synthase 2 +13.5536511,PR:000013613,http://purl.obolibrary.org/obo/PR_000013613,Ras-related protein Rab-37 +13.5536511,PR:000013904,http://purl.obolibrary.org/obo/PR_000013904,RNA exonuclease 4 +13.5536511,PR:000013999,http://purl.obolibrary.org/obo/PR_000013999,rapamycin-insensitive companion of mTOR +13.5536511,PR:000014236,http://purl.obolibrary.org/obo/PR_000014236,60S ribosomal protein L9 +13.5536511,PR:000014298,http://purl.obolibrary.org/obo/PR_000014298,Ras-related GTP-binding protein B +13.5536511,PR:000015044,http://purl.obolibrary.org/obo/PR_000015044,solute carrier family 26 member 9 +13.5536511,PR:000015113,http://purl.obolibrary.org/obo/PR_000015113,proton-coupled amino acid transporter 4 +13.5536511,PR:000015852,http://purl.obolibrary.org/obo/PR_000015852,"sushi, von Willebrand factor type A, EGF and pentraxin domain-containing protein 1" +13.5536511,PR:000016084,http://purl.obolibrary.org/obo/PR_000016084,taste receptor type 2 member 60/135 +13.5536511,PR:000016573,http://purl.obolibrary.org/obo/PR_000016573,tumor protein D54 +13.5536511,PR:000016657,http://purl.obolibrary.org/obo/PR_000016657,E3 ubiquitin-protein ligase TRIM36 +13.5536511,PR:000016894,http://purl.obolibrary.org/obo/PR_000016894,none +13.5536511,PR:000016899,http://purl.obolibrary.org/obo/PR_000016899,none +13.5536511,PR:000017090,http://purl.obolibrary.org/obo/PR_000017090,protein unc-45 homolog A +13.5536511,PR:000017105,http://purl.obolibrary.org/obo/PR_000017105,RING finger protein unkempt +13.5536511,PR:000017132,http://purl.obolibrary.org/obo/PR_000017132,up-regulator of cell proliferation +13.5536511,PR:000017164,http://purl.obolibrary.org/obo/PR_000017164,ubiquitin carboxyl-terminal hydrolase 26 +13.5536511,PR:000017405,http://purl.obolibrary.org/obo/PR_000017405,WAP four-disulfide core domain protein 1 +13.5536511,PR:000017436,http://purl.obolibrary.org/obo/PR_000017436,protein Wnt-10a +13.5536511,PR:000017456,http://purl.obolibrary.org/obo/PR_000017456,ATPase WRNIP1 +13.5536511,PR:000017580,http://purl.obolibrary.org/obo/PR_000017580,zinc finger and BTB domain-containing protein 4 +13.5536511,PR:000017649,http://purl.obolibrary.org/obo/PR_000017649,E3 ubiquitin-protein ligase ZFP91 +13.5536511,PR:000017775,http://purl.obolibrary.org/obo/PR_000017775,zinc finger protein 24 +13.5536511,PR:000022032,http://purl.obolibrary.org/obo/PR_000022032,none +13.5536511,PR:000022038,http://purl.obolibrary.org/obo/PR_000022038,none +13.5536511,PR:000022441,http://purl.obolibrary.org/obo/PR_000022441,none +13.5536511,PR:000022784,http://purl.obolibrary.org/obo/PR_000022784,none +13.5536511,PR:000022973,http://purl.obolibrary.org/obo/PR_000022973,none +13.5536511,PR:000023102,http://purl.obolibrary.org/obo/PR_000023102,none +13.5536511,PR:000023167,http://purl.obolibrary.org/obo/PR_000023167,none +13.5536511,PR:000023245,http://purl.obolibrary.org/obo/PR_000023245,none +13.5536511,PR:000023247,http://purl.obolibrary.org/obo/PR_000023247,none +13.5536511,PR:000023788,http://purl.obolibrary.org/obo/PR_000023788,none +13.5536511,PR:000024015,http://purl.obolibrary.org/obo/PR_000024015,none +13.5536511,PR:000025582,http://purl.obolibrary.org/obo/PR_000025582,none +13.5536511,PR:000029368,http://purl.obolibrary.org/obo/PR_000029368,probable carboxypeptidase X1 +13.5536511,PR:000029380,http://purl.obolibrary.org/obo/PR_000029380,"discoidin, CUB and LCCL domain-containing protein 2" +13.5536511,PR:000029813,http://purl.obolibrary.org/obo/PR_000029813,calcium load-activated calcium channel +13.5536511,PR:000030365,http://purl.obolibrary.org/obo/PR_000030365,leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 2 +13.5536511,PR:000030385,http://purl.obolibrary.org/obo/PR_000030385,WD repeat-containing protein 6 +13.5536511,PR:000030470,http://purl.obolibrary.org/obo/PR_000030470,serine/arginine repetitive matrix protein 4 +13.5536511,PR:000030815,http://purl.obolibrary.org/obo/PR_000030815,actin-associated protein FAM107A +13.5536511,PR:000031040,http://purl.obolibrary.org/obo/PR_000031040,sterile alpha motif domain-containing protein 9-like +13.5536511,PR:000031881,http://purl.obolibrary.org/obo/PR_000031881,endoplasmic reticulum transmembrane helix translocase +13.5536511,PR:000032170,http://purl.obolibrary.org/obo/PR_000032170,YLP motif-containing protein 1 +13.5536511,PR:F4KCC2,http://purl.obolibrary.org/obo/PR_F4KCC2,none +13.5536511,PR:G5EFM9,http://purl.obolibrary.org/obo/PR_G5EFM9,none +13.5536511,PR:O21038,http://purl.obolibrary.org/obo/PR_O21038,none +13.5536511,PR:O22152,http://purl.obolibrary.org/obo/PR_O22152,none +13.5536511,PR:O80738,http://purl.obolibrary.org/obo/PR_O80738,none +13.5536511,PR:O94603,http://purl.obolibrary.org/obo/PR_O94603,none +13.5536511,PR:P05748,http://purl.obolibrary.org/obo/PR_P05748,none +13.5536511,PR:P06100,http://purl.obolibrary.org/obo/PR_P06100,none +13.5536511,PR:P08523,http://purl.obolibrary.org/obo/PR_P08523,none +13.5536511,PR:P22209,http://purl.obolibrary.org/obo/PR_P22209,none +13.5536511,PR:P32447,http://purl.obolibrary.org/obo/PR_P32447,none +13.5536511,PR:P38163,http://purl.obolibrary.org/obo/PR_P38163,none +13.5536511,PR:P38332,http://purl.obolibrary.org/obo/PR_P38332,none +13.5536511,PR:P38771,http://purl.obolibrary.org/obo/PR_P38771,none +13.5536511,PR:P38888,http://purl.obolibrary.org/obo/PR_P38888,none +13.5536511,PR:P48510,http://purl.obolibrary.org/obo/PR_P48510,none +13.5536511,PR:P63045,http://purl.obolibrary.org/obo/PR_P63045,none +13.5536511,PR:P87170,http://purl.obolibrary.org/obo/PR_P87170,none +13.5536511,PR:Q01525,http://purl.obolibrary.org/obo/PR_Q01525,none +13.5536511,PR:Q04121,http://purl.obolibrary.org/obo/PR_Q04121,none +13.5536511,PR:Q20845,http://purl.obolibrary.org/obo/PR_Q20845,none +13.5536511,PR:Q3THW5,http://purl.obolibrary.org/obo/PR_Q3THW5,none +13.5536511,PR:Q6EIX2,http://purl.obolibrary.org/obo/PR_Q6EIX2,none +13.5536511,PR:Q6NKX5,http://purl.obolibrary.org/obo/PR_Q6NKX5,none +13.5536511,PR:Q7JQF1,http://purl.obolibrary.org/obo/PR_Q7JQF1,none +13.5536511,PR:Q7KM13,http://purl.obolibrary.org/obo/PR_Q7KM13,none +13.5536511,PR:Q8MUF9,http://purl.obolibrary.org/obo/PR_Q8MUF9,none +13.5536511,PR:Q8R4G1,http://purl.obolibrary.org/obo/PR_Q8R4G1,none +13.5536511,PR:Q9FEB5,http://purl.obolibrary.org/obo/PR_Q9FEB5,none +13.5536511,PR:Q9FG38,http://purl.obolibrary.org/obo/PR_Q9FG38,none +13.5536511,PR:Q9FRL8,http://purl.obolibrary.org/obo/PR_Q9FRL8,none +13.5536511,PR:Q9LQT8,http://purl.obolibrary.org/obo/PR_Q9LQT8,none +13.5536511,PR:Q9LRH6,http://purl.obolibrary.org/obo/PR_Q9LRH6,none +13.5536511,PR:Q9LTT8,http://purl.obolibrary.org/obo/PR_Q9LTT8,none +13.5536511,PR:Q9P3T9,http://purl.obolibrary.org/obo/PR_Q9P3T9,none +13.5536511,PR:Q9SPG2,http://purl.obolibrary.org/obo/PR_Q9SPG2,none +13.5536511,PR:Q9STZ3,http://purl.obolibrary.org/obo/PR_Q9STZ3,none +13.5536511,PR:Q9V3V7,http://purl.obolibrary.org/obo/PR_Q9V3V7,none +13.5536511,PR:Q9XTY6,http://purl.obolibrary.org/obo/PR_Q9XTY6,none +13.5536511,SO:0000872,http://purl.obolibrary.org/obo/SO_0000872,trans_spliced_mRNA +13.5536511,SO:0001193,http://purl.obolibrary.org/obo/SO_0001193,GNA_oligo +13.5536511,SO:0001473,http://purl.obolibrary.org/obo/SO_0001473,miRNA_antiguide +13.5536511,SO:0002095,http://purl.obolibrary.org/obo/SO_0002095,scaRNA +13.5536511,UBERON:0001562,http://purl.obolibrary.org/obo/UBERON_0001562,digastric muscle group +13.5536511,UBERON:0002232,http://purl.obolibrary.org/obo/UBERON_0002232,olfactory gland +13.5536511,UBERON:0003021,http://purl.obolibrary.org/obo/UBERON_0003021,central lobule +13.5536511,UBERON:0003511,http://purl.obolibrary.org/obo/UBERON_0003511,iris blood vessel +13.5536511,UBERON:0003852,http://purl.obolibrary.org/obo/UBERON_0003852,rhombencephalon neural crest +13.5536511,UBERON:0004265,http://purl.obolibrary.org/obo/UBERON_0004265,outflow tract myocardium +13.5536511,UBERON:0004292,http://purl.obolibrary.org/obo/UBERON_0004292,cardiac skeleton +13.5536511,UBERON:0004544,http://purl.obolibrary.org/obo/UBERON_0004544,epididymis epithelium +13.5536511,UBERON:0005184,http://purl.obolibrary.org/obo/UBERON_0005184,hair medulla +13.5536511,UBERON:0005372,http://purl.obolibrary.org/obo/UBERON_0005372,hippocampus stratum radiatum +13.5536511,UBERON:0005628,http://purl.obolibrary.org/obo/UBERON_0005628,ileal artery +13.5536511,UBERON:0006067,http://purl.obolibrary.org/obo/UBERON_0006067,musculature of hindlimb zeugopod +13.5536511,UBERON:0008821,http://purl.obolibrary.org/obo/UBERON_0008821,middle mediastinum +13.5536511,UBERON:0008856,http://purl.obolibrary.org/obo/UBERON_0008856,stomach muscularis externa +13.5536511,UBERON:0008882,http://purl.obolibrary.org/obo/UBERON_0008882,spinal cord commissure +13.5536511,UBERON:0009632,http://purl.obolibrary.org/obo/UBERON_0009632,root of cervical nerve +13.5536511,UBERON:0010048,http://purl.obolibrary.org/obo/UBERON_0010048,Duvernoy's gland +13.5536511,UBERON:0010421,http://purl.obolibrary.org/obo/UBERON_0010421,spleen B cell corona +13.5536511,UBERON:0010422,http://purl.obolibrary.org/obo/UBERON_0010422,primary nodular lymphoid tissue +13.5536511,UBERON:0010755,http://purl.obolibrary.org/obo/UBERON_0010755,secondary follicle corona +13.5536511,UBERON:0011327,http://purl.obolibrary.org/obo/UBERON_0011327,deep temporal nerve +13.5536511,UBERON:0011810,http://purl.obolibrary.org/obo/UBERON_0011810,collection of feathers +13.5536511,UBERON:0011963,http://purl.obolibrary.org/obo/UBERON_0011963,talocalcaneonavicular joint +13.5536511,UBERON:0013223,http://purl.obolibrary.org/obo/UBERON_0013223,alveolar gland +13.5536511,UBERON:0015766,http://purl.obolibrary.org/obo/UBERON_0015766,epithelium of duct of salivary gland +13.5536511,UBERON:0016852,http://purl.obolibrary.org/obo/UBERON_0016852,skin scent gland +13.5536511,UBERON:2005018,http://purl.obolibrary.org/obo/UBERON_2005018,efferent filamental artery +13.5875526,CHEBI:134397,http://purl.obolibrary.org/obo/CHEBI_134397,tertiary allylic alcohol +13.5875526,CHEBI:16898,http://purl.obolibrary.org/obo/CHEBI_16898,pyrimidine +13.5875526,CHEBI:16947,http://purl.obolibrary.org/obo/CHEBI_16947,citrate(3-) +13.5875526,CHEBI:22658,http://purl.obolibrary.org/obo/CHEBI_22658,aspartate family amino acid +13.5875526,CHEBI:24373,http://purl.obolibrary.org/obo/CHEBI_24373,glycine derivative +13.5875526,CHEBI:26273,http://purl.obolibrary.org/obo/CHEBI_26273,proline derivative +13.5875526,CHEBI:27092,http://purl.obolibrary.org/obo/CHEBI_27092,tricarboxylic acid trianion +13.5875526,CHEBI:35804,http://purl.obolibrary.org/obo/CHEBI_35804,citrate(1-) +13.5875526,CHEBI:35923,http://purl.obolibrary.org/obo/CHEBI_35923,hydroperoxide +13.5875526,CHEBI:36299,http://purl.obolibrary.org/obo/CHEBI_36299,tricarboxylic acid monoanion +13.5875526,CHEBI:36758,http://purl.obolibrary.org/obo/CHEBI_36758,apo carotenoid sesquiterpenoid +13.5875526,CHEBI:38717,http://purl.obolibrary.org/obo/CHEBI_38717,carboxylic acid trianion +13.5875526,CHEBI:38958,http://purl.obolibrary.org/obo/CHEBI_38958,indole alkaloid +13.5875526,CHEBI:39215,http://purl.obolibrary.org/obo/CHEBI_39215,antibiotic pesticide +13.5875526,CHEBI:44785,http://purl.obolibrary.org/obo/CHEBI_44785,peroxide +13.5875526,CHEBI:50908,http://purl.obolibrary.org/obo/CHEBI_50908,hepatotoxic agent +13.5875526,CHEBI:62431,http://purl.obolibrary.org/obo/CHEBI_62431,abscisic acids +13.5875526,CHEBI:63563,http://purl.obolibrary.org/obo/CHEBI_63563,oligosaccharide derivative +13.5875526,CHEBI:64477,http://purl.obolibrary.org/obo/CHEBI_64477,monolignol +13.5875526,CHEBI:70774,http://purl.obolibrary.org/obo/CHEBI_70774,capsaicin receptor antagonist +13.5875526,CHEBI:73668,http://purl.obolibrary.org/obo/CHEBI_73668,peptide coupling reagent +13.5875526,CHEBI:75358,http://purl.obolibrary.org/obo/CHEBI_75358,curing agent +13.5875526,CL:0000440,http://purl.obolibrary.org/obo/CL_0000440,melanocyte stimulating hormone secreting cell +13.5875526,CL:0000712,http://purl.obolibrary.org/obo/CL_0000712,stratum granulosum cell +13.5875526,CL:0000897,http://purl.obolibrary.org/obo/CL_0000897,"CD4-positive, alpha-beta memory T cell" +13.5875526,CL:0002083,http://purl.obolibrary.org/obo/CL_0002083,type I cell of adrenal medulla +13.5875526,CL:0002678,http://purl.obolibrary.org/obo/CL_0002678,memory regulatory T cell +13.5875526,DRUGBANK:DB00240,http://purl.obolibrary.org/obo/DRUGBANK_DB00240,none +13.5875526,DRUGBANK:DB02446,http://purl.obolibrary.org/obo/DRUGBANK_DB02446,none +13.5875526,DRUGBANK:DB03034,http://purl.obolibrary.org/obo/DRUGBANK_DB03034,none +13.5875526,DRUGBANK:DB03167,http://purl.obolibrary.org/obo/DRUGBANK_DB03167,none +13.5875526,DRUGBANK:DB03606,http://purl.obolibrary.org/obo/DRUGBANK_DB03606,none +13.5875526,DRUGBANK:DB04746,http://purl.obolibrary.org/obo/DRUGBANK_DB04746,none +13.5875526,DRUGBANK:DB04784,http://purl.obolibrary.org/obo/DRUGBANK_DB04784,none +13.5875526,DRUGBANK:DB04900,http://purl.obolibrary.org/obo/DRUGBANK_DB04900,none +13.5875526,DRUGBANK:DB04901,http://purl.obolibrary.org/obo/DRUGBANK_DB04901,none +13.5875526,DRUGBANK:DB04941,http://purl.obolibrary.org/obo/DRUGBANK_DB04941,none +13.5875526,DRUGBANK:DB05387,http://purl.obolibrary.org/obo/DRUGBANK_DB05387,none +13.5875526,DRUGBANK:DB05399,http://purl.obolibrary.org/obo/DRUGBANK_DB05399,none +13.5875526,DRUGBANK:DB05465,http://purl.obolibrary.org/obo/DRUGBANK_DB05465,none +13.5875526,DRUGBANK:DB05929,http://purl.obolibrary.org/obo/DRUGBANK_DB05929,none +13.5875526,DRUGBANK:DB06343,http://purl.obolibrary.org/obo/DRUGBANK_DB06343,none +13.5875526,DRUGBANK:DB06433,http://purl.obolibrary.org/obo/DRUGBANK_DB06433,none +13.5875526,DRUGBANK:DB06662,http://purl.obolibrary.org/obo/DRUGBANK_DB06662,none +13.5875526,DRUGBANK:DB06902,http://purl.obolibrary.org/obo/DRUGBANK_DB06902,none +13.5875526,DRUGBANK:DB08810,http://purl.obolibrary.org/obo/DRUGBANK_DB08810,none +13.5875526,DRUGBANK:DB10536,http://purl.obolibrary.org/obo/DRUGBANK_DB10536,none +13.5875526,DRUGBANK:DB11401,http://purl.obolibrary.org/obo/DRUGBANK_DB11401,none +13.5875526,DRUGBANK:DB11624,http://purl.obolibrary.org/obo/DRUGBANK_DB11624,none +13.5875526,DRUGBANK:DB11634,http://purl.obolibrary.org/obo/DRUGBANK_DB11634,none +13.5875526,DRUGBANK:DB11825,http://purl.obolibrary.org/obo/DRUGBANK_DB11825,none +13.5875526,DRUGBANK:DB11847,http://purl.obolibrary.org/obo/DRUGBANK_DB11847,none +13.5875526,DRUGBANK:DB11899,http://purl.obolibrary.org/obo/DRUGBANK_DB11899,none +13.5875526,DRUGBANK:DB12356,http://purl.obolibrary.org/obo/DRUGBANK_DB12356,none +13.5875526,DRUGBANK:DB12467,http://purl.obolibrary.org/obo/DRUGBANK_DB12467,none +13.5875526,DRUGBANK:DB12592,http://purl.obolibrary.org/obo/DRUGBANK_DB12592,none +13.5875526,DRUGBANK:DB12851,http://purl.obolibrary.org/obo/DRUGBANK_DB12851,none +13.5875526,DRUGBANK:DB12943,http://purl.obolibrary.org/obo/DRUGBANK_DB12943,none +13.5875526,DRUGBANK:DB13268,http://purl.obolibrary.org/obo/DRUGBANK_DB13268,none +13.5875526,DRUGBANK:DB13269,http://purl.obolibrary.org/obo/DRUGBANK_DB13269,none +13.5875526,DRUGBANK:DB13304,http://purl.obolibrary.org/obo/DRUGBANK_DB13304,none +13.5875526,DRUGBANK:DB13474,http://purl.obolibrary.org/obo/DRUGBANK_DB13474,none +13.5875526,DRUGBANK:DB13675,http://purl.obolibrary.org/obo/DRUGBANK_DB13675,none +13.5875526,DRUGBANK:DB13976,http://purl.obolibrary.org/obo/DRUGBANK_DB13976,none +13.5875526,DRUGBANK:DB14166,http://purl.obolibrary.org/obo/DRUGBANK_DB14166,none +13.5875526,DRUGBANK:DB15130,http://purl.obolibrary.org/obo/DRUGBANK_DB15130,none +13.5875526,DRUGBANK:DB15215,http://purl.obolibrary.org/obo/DRUGBANK_DB15215,none +13.5875526,DRUGBANK:DB15412,http://purl.obolibrary.org/obo/DRUGBANK_DB15412,none +13.5875526,DRUGBANK:DB15539,http://purl.obolibrary.org/obo/DRUGBANK_DB15539,none +13.5875526,DRUGBANK:DB15583,http://purl.obolibrary.org/obo/DRUGBANK_DB15583,none +13.5875526,GO:0000247,http://purl.obolibrary.org/obo/GO_0000247,C-8 sterol isomerase activity +13.5875526,GO:0002339,http://purl.obolibrary.org/obo/GO_0002339,B cell selection +13.5875526,GO:0002343,http://purl.obolibrary.org/obo/GO_0002343,peripheral B cell selection +13.5875526,GO:0002344,http://purl.obolibrary.org/obo/GO_0002344,B cell affinity maturation +13.5875526,GO:0002792,http://purl.obolibrary.org/obo/GO_0002792,negative regulation of peptide secretion +13.5875526,GO:0003879,http://purl.obolibrary.org/obo/GO_0003879,ATP phosphoribosyltransferase activity +13.5875526,GO:0003880,http://purl.obolibrary.org/obo/GO_0003880,protein C-terminal carboxyl O-methyltransferase activity +13.5875526,GO:0003883,http://purl.obolibrary.org/obo/GO_0003883,CTP synthase activity +13.5875526,GO:0004029,http://purl.obolibrary.org/obo/GO_0004029,aldehyde dehydrogenase (NAD+) activity +13.5875526,GO:0004343,http://purl.obolibrary.org/obo/GO_0004343,glucosamine 6-phosphate N-acetyltransferase activity +13.5875526,GO:0005740,http://purl.obolibrary.org/obo/GO_0005740,mitochondrial envelope +13.5875526,GO:0006241,http://purl.obolibrary.org/obo/GO_0006241,CTP biosynthetic process +13.5875526,GO:0006728,http://purl.obolibrary.org/obo/GO_0006728,pteridine biosynthetic process +13.5875526,GO:0007137,http://purl.obolibrary.org/obo/GO_0007137,meiotic metaphase II +13.5875526,GO:0008381,http://purl.obolibrary.org/obo/GO_0008381,mechanosensitive ion channel activity +13.5875526,GO:0008608,http://purl.obolibrary.org/obo/GO_0008608,attachment of spindle microtubules to kinetochore +13.5875526,GO:0008677,http://purl.obolibrary.org/obo/GO_0008677,2-dehydropantoate 2-reductase activity +13.5875526,GO:0008890,http://purl.obolibrary.org/obo/GO_0008890,glycine C-acetyltransferase activity +13.5875526,GO:0009151,http://purl.obolibrary.org/obo/GO_0009151,purine deoxyribonucleotide metabolic process +13.5875526,GO:0010036,http://purl.obolibrary.org/obo/GO_0010036,response to boron-containing substance +13.5875526,GO:0015725,http://purl.obolibrary.org/obo/GO_0015725,none +13.5875526,GO:0015989,http://purl.obolibrary.org/obo/GO_0015989,light-driven proton transport +13.5875526,GO:0015996,http://purl.obolibrary.org/obo/GO_0015996,chlorophyll catabolic process +13.5875526,GO:0016098,http://purl.obolibrary.org/obo/GO_0016098,monoterpenoid metabolic process +13.5875526,GO:0016300,http://purl.obolibrary.org/obo/GO_0016300,tRNA (uracil) methyltransferase activity +13.5875526,GO:0019010,http://purl.obolibrary.org/obo/GO_0019010,farnesoic acid O-methyltransferase activity +13.5875526,GO:0019161,http://purl.obolibrary.org/obo/GO_0019161,diamine transaminase activity +13.5875526,GO:0030226,http://purl.obolibrary.org/obo/GO_0030226,apolipoprotein receptor activity +13.5875526,GO:0030791,http://purl.obolibrary.org/obo/GO_0030791,arsenite methyltransferase activity +13.5875526,GO:0031092,http://purl.obolibrary.org/obo/GO_0031092,platelet alpha granule membrane +13.5875526,GO:0031289,http://purl.obolibrary.org/obo/GO_0031289,actin phosphorylation +13.5875526,GO:0032673,http://purl.obolibrary.org/obo/GO_0032673,regulation of interleukin-4 production +13.5875526,GO:0033274,http://purl.obolibrary.org/obo/GO_0033274,response to vitamin B2 +13.5875526,GO:0033750,http://purl.obolibrary.org/obo/GO_0033750,ribosome localization +13.5875526,GO:0035145,http://purl.obolibrary.org/obo/GO_0035145,exon-exon junction complex +13.5875526,GO:0035385,http://purl.obolibrary.org/obo/GO_0035385,Roundabout signaling pathway +13.5875526,GO:0042094,http://purl.obolibrary.org/obo/GO_0042094,none +13.5875526,GO:0042268,http://purl.obolibrary.org/obo/GO_0042268,regulation of cytolysis +13.5875526,GO:0042425,http://purl.obolibrary.org/obo/GO_0042425,choline biosynthetic process +13.5875526,GO:0045026,http://purl.obolibrary.org/obo/GO_0045026,plasma membrane fusion +13.5875526,GO:0045149,http://purl.obolibrary.org/obo/GO_0045149,acetoin metabolic process +13.5875526,GO:0045599,http://purl.obolibrary.org/obo/GO_0045599,negative regulation of fat cell differentiation +13.5875526,GO:0046098,http://purl.obolibrary.org/obo/GO_0046098,guanine metabolic process +13.5875526,GO:0046653,http://purl.obolibrary.org/obo/GO_0046653,tetrahydrofolate metabolic process +13.5875526,GO:0047606,http://purl.obolibrary.org/obo/GO_0047606,hydroxynitrilase activity +13.5875526,GO:0050294,http://purl.obolibrary.org/obo/GO_0050294,steroid sulfotransferase activity +13.5875526,GO:0050806,http://purl.obolibrary.org/obo/GO_0050806,positive regulation of synaptic transmission +13.5875526,GO:0051346,http://purl.obolibrary.org/obo/GO_0051346,negative regulation of hydrolase activity +13.5875526,GO:0051733,http://purl.obolibrary.org/obo/GO_0051733,polydeoxyribonucleotide kinase activity +13.5875526,GO:0052572,http://purl.obolibrary.org/obo/GO_0052572,response to host immune response +13.5875526,GO:0052662,http://purl.obolibrary.org/obo/GO_0052662,zeaxanthin epoxidase activity +13.5875526,GO:0060127,http://purl.obolibrary.org/obo/GO_0060127,prolactin secreting cell differentiation +13.5875526,GO:0060193,http://purl.obolibrary.org/obo/GO_0060193,positive regulation of lipase activity +13.5875526,GO:0070125,http://purl.obolibrary.org/obo/GO_0070125,mitochondrial translational elongation +13.5875526,GO:0071312,http://purl.obolibrary.org/obo/GO_0071312,cellular response to alkaloid +13.5875526,GO:0090278,http://purl.obolibrary.org/obo/GO_0090278,negative regulation of peptide hormone secretion +13.5875526,GO:0090383,http://purl.obolibrary.org/obo/GO_0090383,phagosome acidification +13.5875526,GO:0090627,http://purl.obolibrary.org/obo/GO_0090627,plant epidermal cell differentiation +13.5875526,GO:0097154,http://purl.obolibrary.org/obo/GO_0097154,GABAergic neuron differentiation +13.5875526,GO:1901423,http://purl.obolibrary.org/obo/GO_1901423,response to benzene +13.5875526,GO:1903607,http://purl.obolibrary.org/obo/GO_1903607,cytochrome c biosynthetic process +13.5875526,GO:1990316,http://purl.obolibrary.org/obo/GO_1990316,Atg1/ULK1 kinase complex +13.5875526,HP:0000545,http://purl.obolibrary.org/obo/HP_0000545,Myopia +13.5875526,HP:0012056,http://purl.obolibrary.org/obo/HP_0012056,Cutaneous melanoma +13.5875526,HP:0025234,http://purl.obolibrary.org/obo/HP_0025234,Parasomnia +13.5875526,MONDO:0000293,http://purl.obolibrary.org/obo/MONDO_0000293,coenurosis +13.5875526,MONDO:0000965,http://purl.obolibrary.org/obo/MONDO_0000965,liver lipoma +13.5875526,MONDO:0001086,http://purl.obolibrary.org/obo/MONDO_0001086,partial optic atrophy +13.5875526,MONDO:0001463,http://purl.obolibrary.org/obo/MONDO_0001463,splenic flexure cancer +13.5875526,MONDO:0001579,http://purl.obolibrary.org/obo/MONDO_0001579,corneal staphyloma +13.5875526,MONDO:0002203,http://purl.obolibrary.org/obo/MONDO_0002203,constipation disorder +13.5875526,MONDO:0002671,http://purl.obolibrary.org/obo/MONDO_0002671,signet ring cell breast carcinoma +13.5875526,MONDO:0003035,http://purl.obolibrary.org/obo/MONDO_0003035,ovarian angiosarcoma +13.5875526,MONDO:0003170,http://purl.obolibrary.org/obo/MONDO_0003170,gliofibroma +13.5875526,MONDO:0003197,http://purl.obolibrary.org/obo/MONDO_0003197,granular cell carcinoma +13.5875526,MONDO:0003325,http://purl.obolibrary.org/obo/MONDO_0003325,nodular ganglioneuroblastoma +13.5875526,MONDO:0003908,http://purl.obolibrary.org/obo/MONDO_0003908,clivus meningioma +13.5875526,MONDO:0004245,http://purl.obolibrary.org/obo/MONDO_0004245,ependymal tumor of brain +13.5875526,MONDO:0004354,http://purl.obolibrary.org/obo/MONDO_0004354,neonatal leukemia +13.5875526,MONDO:0004398,http://purl.obolibrary.org/obo/MONDO_0004398,mediastinal schwannoma +13.5875526,MONDO:0004495,http://purl.obolibrary.org/obo/MONDO_0004495,myotonic cataract +13.5875526,MONDO:0005949,http://purl.obolibrary.org/obo/MONDO_0005949,roseolovirus infectious disease +13.5875526,MONDO:0006154,http://purl.obolibrary.org/obo/MONDO_0006154,colon mucosa-associated lymphoid tissue lymphoma +13.5875526,MONDO:0006386,http://purl.obolibrary.org/obo/MONDO_0006386,primary peritoneal serous adenocarcinoma +13.5875526,MONDO:0006715,http://purl.obolibrary.org/obo/MONDO_0006715,coronary stenosis +13.5875526,MONDO:0007956,http://purl.obolibrary.org/obo/MONDO_0007956,Pai syndrome +13.5875526,MONDO:0008209,http://purl.obolibrary.org/obo/MONDO_0008209,Char syndrome +13.5875526,MONDO:0008447,http://purl.obolibrary.org/obo/MONDO_0008447,hereditary spherocytosis type 1 +13.5875526,MONDO:0008592,http://purl.obolibrary.org/obo/MONDO_0008592,tricho-dento-osseous syndrome +13.5875526,MONDO:0008693,http://purl.obolibrary.org/obo/MONDO_0008693,ablepharon macrostomia syndrome +13.5875526,MONDO:0009009,http://purl.obolibrary.org/obo/MONDO_0009009,hypoplasminogenemia +13.5875526,MONDO:0009021,http://purl.obolibrary.org/obo/MONDO_0009021,Toriello-Carey syndrome +13.5875526,MONDO:0009071,http://purl.obolibrary.org/obo/MONDO_0009071,hereditary renal hypouricemia +13.5875526,MONDO:0009104,http://purl.obolibrary.org/obo/MONDO_0009104,Donnai-Barrow syndrome +13.5875526,MONDO:0009111,http://purl.obolibrary.org/obo/MONDO_0009111,dihydropyrimidinuria +13.5875526,MONDO:0009249,http://purl.obolibrary.org/obo/MONDO_0009249,hereditary fructose intolerance +13.5875526,MONDO:0010222,http://purl.obolibrary.org/obo/MONDO_0010222,X-linked Opitz G/BBB syndrome +13.5875526,MONDO:0010399,http://purl.obolibrary.org/obo/MONDO_0010399,chromosome Xp21 deletion syndrome +13.5875526,MONDO:0010555,http://purl.obolibrary.org/obo/MONDO_0010555,X-linked chondrodysplasia punctata 1 +13.5875526,MONDO:0011337,http://purl.obolibrary.org/obo/MONDO_0011337,familial hemophagocytic lymphohistiocytosis 2 +13.5875526,MONDO:0011439,http://purl.obolibrary.org/obo/MONDO_0011439,spinocerebellar ataxia type 12 +13.5875526,MONDO:0012335,http://purl.obolibrary.org/obo/MONDO_0012335,obesity due to pro-opiomelanocortin deficiency +13.5875526,MONDO:0012631,http://purl.obolibrary.org/obo/MONDO_0012631,Alzheimer disease 14 +13.5875526,MONDO:0013534,http://purl.obolibrary.org/obo/MONDO_0013534,apolipoprotein c-III deficiency +13.5875526,MONDO:0013691,http://purl.obolibrary.org/obo/MONDO_0013691,Feingold syndrome type 2 +13.5875526,MONDO:0014159,http://purl.obolibrary.org/obo/MONDO_0014159,autosomal recessive spinocerebellar ataxia 14 +13.5875526,MONDO:0014449,http://purl.obolibrary.org/obo/MONDO_0014449,congenital analbuminemia +13.5875526,MONDO:0015203,http://purl.obolibrary.org/obo/MONDO_0015203,coronary artery congenital malformation +13.5875526,MONDO:0016174,http://purl.obolibrary.org/obo/MONDO_0016174,paraneoplastic sensory ganglionopathy +13.5875526,MONDO:0016181,http://purl.obolibrary.org/obo/MONDO_0016181,solid tumor associated with an acquired peripheral neuropathy +13.5875526,MONDO:0016277,http://purl.obolibrary.org/obo/MONDO_0016277,malignant mixed epithelial and mesenchymal tumor of cervix uteri +13.5875526,MONDO:0016442,http://purl.obolibrary.org/obo/MONDO_0016442,elastoma +13.5875526,MONDO:0016473,http://purl.obolibrary.org/obo/MONDO_0016473,familial rhabdoid tumor +13.5875526,MONDO:0016526,http://purl.obolibrary.org/obo/MONDO_0016526,trisomy 9p +13.5875526,MONDO:0016596,http://purl.obolibrary.org/obo/MONDO_0016596,hyperphosphatasia-intellectual disability syndrome +13.5875526,MONDO:0016986,http://purl.obolibrary.org/obo/MONDO_0016986,congenital smooth muscle hamartoma +13.5875526,MONDO:0017004,http://purl.obolibrary.org/obo/MONDO_0017004,partial monosomy of the short arm of chromosome X +13.5875526,MONDO:0017286,http://purl.obolibrary.org/obo/MONDO_0017286,tempi syndrome +13.5875526,MONDO:0017768,http://purl.obolibrary.org/obo/MONDO_0017768,reflex epilepsy +13.5875526,MONDO:0018216,http://purl.obolibrary.org/obo/MONDO_0018216,17q21.31 microdeletion syndrome +13.5875526,MONDO:0019078,http://purl.obolibrary.org/obo/MONDO_0019078,Ritscher-Schinzel syndrome +13.5875526,MONDO:0019981,http://purl.obolibrary.org/obo/MONDO_0019981,unilateral multicystic dysplastic kidney +13.5875526,MONDO:0021159,http://purl.obolibrary.org/obo/MONDO_0021159,gonococcal salpingitis +13.5875526,MONDO:0021378,http://purl.obolibrary.org/obo/MONDO_0021378,neoplasm of endocardium +13.5875526,MONDO:0022037,http://purl.obolibrary.org/obo/MONDO_0022037,large-cell immunoblastic lymphoma +13.5875526,MONDO:0024877,http://purl.obolibrary.org/obo/MONDO_0024877,clitoris neoplasm +13.5875526,MONDO:0027029,http://purl.obolibrary.org/obo/MONDO_0027029,HHV-6 encephalitis +13.5875526,NCBITaxon:11318,http://purl.obolibrary.org/obo/NCBITaxon_11318,Dhori thogotovirus +13.5875526,NCBITaxon:119492,http://purl.obolibrary.org/obo/NCBITaxon_119492,none +13.5875526,NCBITaxon:1300,http://purl.obolibrary.org/obo/NCBITaxon_1300,Streptococcaceae +13.5875526,NCBITaxon:147547,http://purl.obolibrary.org/obo/NCBITaxon_147547,none +13.5875526,NCBITaxon:1520881,http://purl.obolibrary.org/obo/NCBITaxon_1520881,none +13.5875526,NCBITaxon:1521262,http://purl.obolibrary.org/obo/NCBITaxon_1521262,Polypodiidae +13.5875526,NCBITaxon:1913605,http://purl.obolibrary.org/obo/NCBITaxon_1913605,none +13.5875526,NCBITaxon:194960,http://purl.obolibrary.org/obo/NCBITaxon_194960,none +13.5875526,NCBITaxon:195055,http://purl.obolibrary.org/obo/NCBITaxon_195055,none +13.5875526,NCBITaxon:1980456,http://purl.obolibrary.org/obo/NCBITaxon_1980456,Andes orthohantavirus +13.5875526,NCBITaxon:1985702,http://purl.obolibrary.org/obo/NCBITaxon_1985702,none +13.5875526,NCBITaxon:228580,http://purl.obolibrary.org/obo/NCBITaxon_228580,none +13.5875526,NCBITaxon:265294,http://purl.obolibrary.org/obo/NCBITaxon_265294,none +13.5875526,NCBITaxon:27829,http://purl.obolibrary.org/obo/NCBITaxon_27829,Strongyloidea +13.5875526,NCBITaxon:319058,http://purl.obolibrary.org/obo/NCBITaxon_319058,none +13.5875526,NCBITaxon:32297,http://purl.obolibrary.org/obo/NCBITaxon_32297,none +13.5875526,NCBITaxon:32605,http://purl.obolibrary.org/obo/NCBITaxon_32605,none +13.5875526,NCBITaxon:32612,http://purl.obolibrary.org/obo/NCBITaxon_32612,none +13.5875526,NCBITaxon:3290,http://purl.obolibrary.org/obo/NCBITaxon_3290,none +13.5875526,NCBITaxon:33381,http://purl.obolibrary.org/obo/NCBITaxon_33381,none +13.5875526,NCBITaxon:375192,http://purl.obolibrary.org/obo/NCBITaxon_375192,none +13.5875526,NCBITaxon:3931,http://purl.obolibrary.org/obo/NCBITaxon_3931,none +13.5875526,NCBITaxon:423606,http://purl.obolibrary.org/obo/NCBITaxon_423606,none +13.5875526,NCBITaxon:476433,http://purl.obolibrary.org/obo/NCBITaxon_476433,none +13.5875526,NCBITaxon:476434,http://purl.obolibrary.org/obo/NCBITaxon_476434,none +13.5875526,NCBITaxon:52135,http://purl.obolibrary.org/obo/NCBITaxon_52135,none +13.5875526,NCBITaxon:60746,http://purl.obolibrary.org/obo/NCBITaxon_60746,none +13.5875526,NCBITaxon:626776,http://purl.obolibrary.org/obo/NCBITaxon_626776,none +13.5875526,NCBITaxon:6479,http://purl.obolibrary.org/obo/NCBITaxon_6479,none +13.5875526,NCBITaxon:65467,http://purl.obolibrary.org/obo/NCBITaxon_65467,none +13.5875526,NCBITaxon:775,http://purl.obolibrary.org/obo/NCBITaxon_775,Rickettsiaceae +13.5875526,NCBITaxon:946046,http://purl.obolibrary.org/obo/NCBITaxon_946046,none +13.5875526,PR:000001097,http://purl.obolibrary.org/obo/PR_000001097,2-oxoglutarate receptor 1 +13.5875526,PR:000001589,http://purl.obolibrary.org/obo/PR_000001589,putative gonadotropin-releasing hormone II receptor +13.5875526,PR:000001687,http://purl.obolibrary.org/obo/PR_000001687,none +13.5875526,PR:000002208,http://purl.obolibrary.org/obo/PR_000002208,proteasome subunit beta type-2 +13.5875526,PR:000003698,http://purl.obolibrary.org/obo/PR_000003698,actin-related protein 5 +13.5875526,PR:000003729,http://purl.obolibrary.org/obo/PR_000003729,a disintegrin and metalloproteinase with thrombospondin motifs 14 +13.5875526,PR:000003889,http://purl.obolibrary.org/obo/PR_000003889,A-kinase anchor protein 2 +13.5875526,PR:000004050,http://purl.obolibrary.org/obo/PR_000004050,ankyrin repeat domain-containing protein 6 +13.5875526,PR:000004133,http://purl.obolibrary.org/obo/PR_000004133,centromere protein S +13.5875526,PR:000004680,http://purl.obolibrary.org/obo/PR_000004680,breast carcinoma-amplified sequence 3 +13.5875526,PR:000004723,http://purl.obolibrary.org/obo/PR_000004723,bestrophin-3 +13.5875526,PR:000004914,http://purl.obolibrary.org/obo/PR_000004914,carbonic anhydrase-related protein 11 +13.5875526,PR:000005018,http://purl.obolibrary.org/obo/PR_000005018,calpain-6 +13.5875526,PR:000005046,http://purl.obolibrary.org/obo/PR_000005046,cocaine- and amphetamine-regulated transcript protein +13.5875526,PR:000005071,http://purl.obolibrary.org/obo/PR_000005071,E3 ubiquitin-protein ligase CBL-B +13.5875526,PR:000005461,http://purl.obolibrary.org/obo/PR_000005461,neuronal acetylcholine receptor subunit alpha-9 +13.5875526,PR:000005690,http://purl.obolibrary.org/obo/PR_000005690,conserved oligomeric Golgi complex subunit 7 +13.5875526,PR:000005754,http://purl.obolibrary.org/obo/PR_000005754,"2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial" +13.5875526,PR:000005915,http://purl.obolibrary.org/obo/PR_000005915,gamma-crystallin B +13.5875526,PR:000005970,http://purl.obolibrary.org/obo/PR_000005970,cystatin-8 +13.5875526,PR:000006075,http://purl.obolibrary.org/obo/PR_000006075,CXXC-type zinc finger protein 4 +13.5875526,PR:000006293,http://purl.obolibrary.org/obo/PR_000006293,protein DBF4 homolog B +13.5875526,PR:000006414,http://purl.obolibrary.org/obo/PR_000006414,sphingolipid Delta(4)-desaturase/C4-monooxygenase DES2 +13.5875526,PR:000006423,http://purl.obolibrary.org/obo/PR_000006423,derlin-2 +13.5875526,PR:000006483,http://purl.obolibrary.org/obo/PR_000006483,disco-interacting protein 2 homolog A +13.5875526,PR:000006615,http://purl.obolibrary.org/obo/PR_000006615,double C2-like domain-containing protein beta +13.5875526,PR:000006660,http://purl.obolibrary.org/obo/PR_000006660,dipeptidyl peptidase 3 +13.5875526,PR:000006758,http://purl.obolibrary.org/obo/PR_000006758,dual specificity protein phosphatase 8 +13.5875526,PR:000006790,http://purl.obolibrary.org/obo/PR_000006790,zinc finger protein DZIP1 +13.5875526,PR:000006881,http://purl.obolibrary.org/obo/PR_000006881,proteasome adapter and scaffold protein ECM29 +13.5875526,PR:000006976,http://purl.obolibrary.org/obo/PR_000006976,eukaryotic translation initiation factor 3 subunit D +13.5875526,PR:000007086,http://purl.obolibrary.org/obo/PR_000007086,ecto-NOX disulfide-thiol exchanger 2 +13.5875526,PR:000007100,http://purl.obolibrary.org/obo/PR_000007100,transcription and mRNA export factor ENY2 +13.5875526,PR:000007710,http://purl.obolibrary.org/obo/PR_000007710,"frataxin, mitochondrial" +13.5875526,PR:000007881,http://purl.obolibrary.org/obo/PR_000007881,homeobox protein GBX-1 +13.5875526,PR:000008070,http://purl.obolibrary.org/obo/PR_000008070,glia maturation factor beta +13.5875526,PR:000008125,http://purl.obolibrary.org/obo/PR_000008125,N-acetylglucosamine-1-phosphotransferase subunits alpha/beta +13.5875526,PR:000008177,http://purl.obolibrary.org/obo/PR_000008177,phosphatidylinositol-glycan-specific phospholipase D +13.5875526,PR:000008219,http://purl.obolibrary.org/obo/PR_000008219,GRB2-related adapter protein +13.5875526,PR:000008237,http://purl.obolibrary.org/obo/PR_000008237,"glutamate receptor ionotropic, delta-1" +13.5875526,PR:000008387,http://purl.obolibrary.org/obo/PR_000008387,none +13.5875526,PR:000008622,http://purl.obolibrary.org/obo/PR_000008622,homeobox-containing protein 1 +13.5875526,PR:000008955,http://purl.obolibrary.org/obo/PR_000008955,immunoglobulin heavy constant alpha 1 +13.5875526,PR:000009080,http://purl.obolibrary.org/obo/PR_000009080,inositol hexakisphosphate kinase 1 +13.5875526,PR:000009145,http://purl.obolibrary.org/obo/PR_000009145,integrin beta-like protein 1 +13.5875526,PR:000009176,http://purl.obolibrary.org/obo/PR_000009176,none +13.5875526,PR:000009268,http://purl.obolibrary.org/obo/PR_000009268,calcium-activated potassium channel subunit beta-3 +13.5875526,PR:000009437,http://purl.obolibrary.org/obo/PR_000009437,importin subunit alpha-7 +13.5875526,PR:000010440,http://purl.obolibrary.org/obo/PR_000010440,centromere protein U +13.5875526,PR:000010715,http://purl.obolibrary.org/obo/PR_000010715,"transcription termination factor 1, mitochondrial" +13.5875526,PR:000010885,http://purl.obolibrary.org/obo/PR_000010885,myopalladin +13.5875526,PR:000010954,http://purl.obolibrary.org/obo/PR_000010954,nucleus accumbens-associated protein 2 +13.5875526,PR:000011065,http://purl.obolibrary.org/obo/PR_000011065,bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 3 +13.5875526,PR:000011187,http://purl.obolibrary.org/obo/PR_000011187,NF-X1-type zinc finger protein NFXL1 +13.5875526,PR:000011284,http://purl.obolibrary.org/obo/PR_000011284,"nucleoside diphosphate kinase, mitochondrial" +13.5875526,PR:000012290,http://purl.obolibrary.org/obo/PR_000012290,protein mono-ADP-ribosyltransferase PARP10 +13.5875526,PR:000012334,http://purl.obolibrary.org/obo/PR_000012334,pterin-4-alpha-carbinolamine dehydratase 2 +13.5875526,PR:000012500,http://purl.obolibrary.org/obo/PR_000012500,protein disulfide-isomerase A5 +13.5875526,PR:000012789,http://purl.obolibrary.org/obo/PR_000012789,homeobox protein PKNOX2 +13.5875526,PR:000013251,http://purl.obolibrary.org/obo/PR_000013251,protamine-3 +13.5875526,PR:000013703,http://purl.obolibrary.org/obo/PR_000013703,spindle and kinetochore-associated protein RAMA1 +13.5875526,PR:000013787,http://purl.obolibrary.org/obo/PR_000013787,splicing factor 45 +13.5875526,PR:000014150,http://purl.obolibrary.org/obo/PR_000014150,ragulator complex protein LAMTOR2 +13.5875526,PR:000014243,http://purl.obolibrary.org/obo/PR_000014243,ribonuclease P protein subunit p21 +13.5875526,PR:000014333,http://purl.obolibrary.org/obo/PR_000014333,R-spondin-4 +13.5875526,PR:000014390,http://purl.obolibrary.org/obo/PR_000014390,none +13.5875526,PR:000014486,http://purl.obolibrary.org/obo/PR_000014486,secretory carrier-associated membrane protein 4 +13.5875526,PR:000014660,http://purl.obolibrary.org/obo/PR_000014660,septin-8 +13.5875526,PR:000014960,http://purl.obolibrary.org/obo/PR_000014960,sodium-dependent phosphate transport protein 4 +13.5875526,PR:000015007,http://purl.obolibrary.org/obo/PR_000015007,calcium-binding mitochondrial carrier protein Aralar1 +13.5875526,PR:000015452,http://purl.obolibrary.org/obo/PR_000015452,sperm-associated antigen 1 +13.5875526,PR:000015573,http://purl.obolibrary.org/obo/PR_000015573,cornifin-B +13.5875526,PR:000015681,http://purl.obolibrary.org/obo/PR_000015681,"CMP-N-acetylneuraminate-beta-1,4-galactoside alpha-2,3-sialyltransferase" +13.5875526,PR:000015695,http://purl.obolibrary.org/obo/PR_000015695,"alpha-N-acetylneuraminide alpha-2,8-sialyltransferase" +13.5875526,PR:000015739,http://purl.obolibrary.org/obo/PR_000015739,serine/threonine-protein kinase 10 +13.5875526,PR:000015743,http://purl.obolibrary.org/obo/PR_000015743,serine/threonine-protein kinase 17A +13.5875526,PR:000015998,http://purl.obolibrary.org/obo/PR_000015998,none +13.5875526,PR:000016627,http://purl.obolibrary.org/obo/PR_000016627,trem-like transcript 1 protein +13.5875526,PR:000016636,http://purl.obolibrary.org/obo/PR_000016636,thyrotropin-releasing hormone-degrading ectoenzyme +13.5875526,PR:000016658,http://purl.obolibrary.org/obo/PR_000016658,tripartite motif-containing protein 44 +13.5875526,PR:000016720,http://purl.obolibrary.org/obo/PR_000016720,testis-specific gene 10 protein +13.5875526,PR:000016809,http://purl.obolibrary.org/obo/PR_000016809,tubulin alpha-1C chain +13.5875526,PR:000016823,http://purl.obolibrary.org/obo/PR_000016823,tubulin delta chain +13.5875526,PR:000017174,http://purl.obolibrary.org/obo/PR_000017174,ubiquitin carboxyl-terminal hydrolase 35 +13.5875526,PR:000017275,http://purl.obolibrary.org/obo/PR_000017275,variable charge X-linked protein 1 +13.5875526,PR:000017321,http://purl.obolibrary.org/obo/PR_000017321,vacuolar protein sorting-associated protein 13C +13.5875526,PR:000017377,http://purl.obolibrary.org/obo/PR_000017377,postacrosomal sheath WW domain-binding protein +13.5875526,PR:000022043,http://purl.obolibrary.org/obo/PR_000022043,none +13.5875526,PR:000022173,http://purl.obolibrary.org/obo/PR_000022173,none +13.5875526,PR:000022792,http://purl.obolibrary.org/obo/PR_000022792,none +13.5875526,PR:000022799,http://purl.obolibrary.org/obo/PR_000022799,none +13.5875526,PR:000022935,http://purl.obolibrary.org/obo/PR_000022935,none +13.5875526,PR:000023031,http://purl.obolibrary.org/obo/PR_000023031,none +13.5875526,PR:000023138,http://purl.obolibrary.org/obo/PR_000023138,none +13.5875526,PR:000023250,http://purl.obolibrary.org/obo/PR_000023250,none +13.5875526,PR:000023268,http://purl.obolibrary.org/obo/PR_000023268,none +13.5875526,PR:000023609,http://purl.obolibrary.org/obo/PR_000023609,none +13.5875526,PR:000023693,http://purl.obolibrary.org/obo/PR_000023693,none +13.5875526,PR:000024012,http://purl.obolibrary.org/obo/PR_000024012,none +13.5875526,PR:000024159,http://purl.obolibrary.org/obo/PR_000024159,none +13.5875526,PR:000024259,http://purl.obolibrary.org/obo/PR_000024259,none +13.5875526,PR:000029141,http://purl.obolibrary.org/obo/PR_000029141,striated muscle preferentially expressed protein kinase +13.5875526,PR:000029377,http://purl.obolibrary.org/obo/PR_000029377,DDB1- and CUL4-associated factor 7 +13.5875526,PR:000029514,http://purl.obolibrary.org/obo/PR_000029514,adhesion G-protein coupled receptor G6 +13.5875526,PR:000029547,http://purl.obolibrary.org/obo/PR_000029547,high mobility group nucleosome-binding domain-containing protein 3 +13.5875526,PR:000030332,http://purl.obolibrary.org/obo/PR_000030332,E3 ubiquitin-protein ligase TRIM31 +13.5875526,PR:000030750,http://purl.obolibrary.org/obo/PR_000030750,WD repeat-containing protein 11 +13.5875526,PR:000031060,http://purl.obolibrary.org/obo/PR_000031060,regulation of nuclear pre-mRNA domain-containing protein 1B +13.5875526,PR:000031623,http://purl.obolibrary.org/obo/PR_000031623,humanin-like 2 +13.5875526,PR:000031780,http://purl.obolibrary.org/obo/PR_000031780,coiled-coil domain-containing protein 40 +13.5875526,PR:000031895,http://purl.obolibrary.org/obo/PR_000031895,"putative Dol-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-Dol alpha-1,2-glucosyltransferase" +13.5875526,PR:000031991,http://purl.obolibrary.org/obo/PR_000031991,leucine-rich repeat neuronal protein 3 +13.5875526,PR:000032173,http://purl.obolibrary.org/obo/PR_000032173,BRCA1-associated ATM activator 1 +13.5875526,PR:000032696,http://purl.obolibrary.org/obo/PR_000032696,treslin +13.5875526,PR:000034443,http://purl.obolibrary.org/obo/PR_000034443,none +13.5875526,PR:000035146,http://purl.obolibrary.org/obo/PR_000035146,none +13.5875526,PR:000037076,http://purl.obolibrary.org/obo/PR_000037076,none +13.5875526,PR:A1ZAJ2,http://purl.obolibrary.org/obo/PR_A1ZAJ2,none +13.5875526,PR:F1RBN2,http://purl.obolibrary.org/obo/PR_F1RBN2,none +13.5875526,PR:O35476,http://purl.obolibrary.org/obo/PR_O35476,none +13.5875526,PR:O35599,http://purl.obolibrary.org/obo/PR_O35599,none +13.5875526,PR:O42955,http://purl.obolibrary.org/obo/PR_O42955,none +13.5875526,PR:P02599,http://purl.obolibrary.org/obo/PR_P02599,none +13.5875526,PR:P04755,http://purl.obolibrary.org/obo/PR_P04755,none +13.5875526,PR:P05738,http://purl.obolibrary.org/obo/PR_P05738,none +13.5875526,PR:P08592,http://purl.obolibrary.org/obo/PR_P08592,none +13.5875526,PR:P10185,http://purl.obolibrary.org/obo/PR_P10185,none +13.5875526,PR:P27420,http://purl.obolibrary.org/obo/PR_P27420,none +13.5875526,PR:P32493,http://purl.obolibrary.org/obo/PR_P32493,none +13.5875526,PR:P32496,http://purl.obolibrary.org/obo/PR_P32496,none +13.5875526,PR:P32585,http://purl.obolibrary.org/obo/PR_P32585,none +13.5875526,PR:P34162,http://purl.obolibrary.org/obo/PR_P34162,none +13.5875526,PR:P36040,http://purl.obolibrary.org/obo/PR_P36040,none +13.5875526,PR:P43293,http://purl.obolibrary.org/obo/PR_P43293,none +13.5875526,PR:P46681,http://purl.obolibrary.org/obo/PR_P46681,none +13.5875526,PR:P47035,http://purl.obolibrary.org/obo/PR_P47035,none +13.5875526,PR:P47977,http://purl.obolibrary.org/obo/PR_P47977,none +13.5875526,PR:P54114,http://purl.obolibrary.org/obo/PR_P54114,none +13.5875526,PR:Q03063,http://purl.obolibrary.org/obo/PR_Q03063,none +13.5875526,PR:Q07471,http://purl.obolibrary.org/obo/PR_Q07471,none +13.5875526,PR:Q10282,http://purl.obolibrary.org/obo/PR_Q10282,none +13.5875526,PR:Q12315,http://purl.obolibrary.org/obo/PR_Q12315,none +13.5875526,PR:Q39072,http://purl.obolibrary.org/obo/PR_Q39072,none +13.5875526,PR:Q42525,http://purl.obolibrary.org/obo/PR_Q42525,none +13.5875526,PR:Q54KZ4,http://purl.obolibrary.org/obo/PR_Q54KZ4,none +13.5875526,PR:Q54ZS8,http://purl.obolibrary.org/obo/PR_Q54ZS8,none +13.5875526,PR:Q59PZ3,http://purl.obolibrary.org/obo/PR_Q59PZ3,none +13.5875526,PR:Q59SF7,http://purl.obolibrary.org/obo/PR_Q59SF7,none +13.5875526,PR:Q59X40,http://purl.obolibrary.org/obo/PR_Q59X40,none +13.5875526,PR:Q5A201,http://purl.obolibrary.org/obo/PR_Q5A201,none +13.5875526,PR:Q5AKU5,http://purl.obolibrary.org/obo/PR_Q5AKU5,none +13.5875526,PR:Q5TJ56,http://purl.obolibrary.org/obo/PR_Q5TJ56,none +13.5875526,PR:Q8AXB3,http://purl.obolibrary.org/obo/PR_Q8AXB3,none +13.5875526,PR:Q9FN48,http://purl.obolibrary.org/obo/PR_Q9FN48,none +13.5875526,PR:Q9JKU3,http://purl.obolibrary.org/obo/PR_Q9JKU3,none +13.5875526,PR:Q9LID6,http://purl.obolibrary.org/obo/PR_Q9LID6,none +13.5875526,PR:Q9LYU4,http://purl.obolibrary.org/obo/PR_Q9LYU4,none +13.5875526,PR:Q9LZ03,http://purl.obolibrary.org/obo/PR_Q9LZ03,none +13.5875526,PR:Q9M384,http://purl.obolibrary.org/obo/PR_Q9M384,none +13.5875526,PR:Q9PVN2,http://purl.obolibrary.org/obo/PR_Q9PVN2,none +13.5875526,PR:Q9VR82,http://purl.obolibrary.org/obo/PR_Q9VR82,none +13.5875526,PR:Q9VYX1,http://purl.obolibrary.org/obo/PR_Q9VYX1,none +13.5875526,PR:Q9W4Y2,http://purl.obolibrary.org/obo/PR_Q9W4Y2,none +13.5875526,SO:0000069,http://purl.obolibrary.org/obo/SO_0000069,inside_intron +13.5875526,SO:0001191,http://purl.obolibrary.org/obo/SO_0001191,TNA_oligo +13.5875526,SO:0001880,http://purl.obolibrary.org/obo/SO_0001880,feature_amplification +13.5875526,SO:0001889,http://purl.obolibrary.org/obo/SO_0001889,transcript_amplification +13.5875526,SO:0005857,http://purl.obolibrary.org/obo/SO_0005857,selenocysteinyl_tRNA +13.5875526,UBERON:0001072,http://purl.obolibrary.org/obo/UBERON_0001072,posterior vena cava +13.5875526,UBERON:0001188,http://purl.obolibrary.org/obo/UBERON_0001188,right testicular artery +13.5875526,UBERON:0001282,http://purl.obolibrary.org/obo/UBERON_0001282,intralobular bile duct +13.5875526,UBERON:0001510,http://purl.obolibrary.org/obo/UBERON_0001510,skin of knee +13.5875526,UBERON:0001563,http://purl.obolibrary.org/obo/UBERON_0001563,longus capitis muscle +13.5875526,UBERON:0001623,http://purl.obolibrary.org/obo/UBERON_0001623,dorsal nasal artery +13.5875526,UBERON:0001787,http://purl.obolibrary.org/obo/UBERON_0001787,photoreceptor layer of retina +13.5875526,UBERON:0002064,http://purl.obolibrary.org/obo/UBERON_0002064,common cardinal vein +13.5875526,UBERON:0002088,http://purl.obolibrary.org/obo/UBERON_0002088,lateral thoracic vein +13.5875526,UBERON:0002277,http://purl.obolibrary.org/obo/UBERON_0002277,spiral sulcus +13.5875526,UBERON:0002362,http://purl.obolibrary.org/obo/UBERON_0002362,arachnoid mater +13.5875526,UBERON:0002651,http://purl.obolibrary.org/obo/UBERON_0002651,anterior horn of lateral ventricle +13.5875526,UBERON:0003118,http://purl.obolibrary.org/obo/UBERON_0003118,pharyngeal arch artery 1 +13.5875526,UBERON:0003306,http://purl.obolibrary.org/obo/UBERON_0003306,floor plate of neural tube +13.5875526,UBERON:0004031,http://purl.obolibrary.org/obo/UBERON_0004031,head ectomesenchyme +13.5875526,UBERON:0004046,http://purl.obolibrary.org/obo/UBERON_0004046,anterior definitive endoderm +13.5875526,UBERON:0004601,http://purl.obolibrary.org/obo/UBERON_0004601,rib 1 +13.5875526,UBERON:0004823,http://purl.obolibrary.org/obo/UBERON_0004823,intrahepatic bile duct epithelium +13.5875526,UBERON:0005021,http://purl.obolibrary.org/obo/UBERON_0005021,mucosa of sphenoidal sinus +13.5875526,UBERON:0005410,http://purl.obolibrary.org/obo/UBERON_0005410,cartilaginous otic capsule +13.5875526,UBERON:0005598,http://purl.obolibrary.org/obo/UBERON_0005598,trunk somite +13.5875526,UBERON:0005879,http://purl.obolibrary.org/obo/UBERON_0005879,pharyngeal cleft +13.5875526,UBERON:0005895,http://purl.obolibrary.org/obo/UBERON_0005895,insect leg +13.5875526,UBERON:0006592,http://purl.obolibrary.org/obo/UBERON_0006592,transformed vein +13.5875526,UBERON:0008712,http://purl.obolibrary.org/obo/UBERON_0008712,stylohyoid muscle +13.5875526,UBERON:0010195,http://purl.obolibrary.org/obo/UBERON_0010195,renal portal system +13.5875526,UBERON:0013142,http://purl.obolibrary.org/obo/UBERON_0013142,soleal vein +13.5875526,UBERON:0016447,http://purl.obolibrary.org/obo/UBERON_0016447,hair of trunk +13.5875526,UBERON:0019197,http://purl.obolibrary.org/obo/UBERON_0019197,dorsal nerve of penis +13.5875526,UBERON:0022301,http://purl.obolibrary.org/obo/UBERON_0022301,long ciliary nerve +13.5875526,UBERON:0035649,http://purl.obolibrary.org/obo/UBERON_0035649,nerve of penis +13.5875526,UBERON:2002130,http://purl.obolibrary.org/obo/UBERON_2002130,caudal appendage +13.5875526,UBERON:2007013,http://purl.obolibrary.org/obo/UBERON_2007013,preplacodal ectoderm +13.622644,CHEBI:134091,http://purl.obolibrary.org/obo/CHEBI_134091,perfluorinated compound +13.622644,CHEBI:15351,http://purl.obolibrary.org/obo/CHEBI_15351,acetyl-CoA +13.622644,CHEBI:25235,http://purl.obolibrary.org/obo/CHEBI_25235,monomethoxybenzene +13.622644,CHEBI:26509,http://purl.obolibrary.org/obo/CHEBI_26509,quinoline alkaloid +13.622644,CHEBI:30742,http://purl.obolibrary.org/obo/CHEBI_30742,ethylene glycol +13.622644,CHEBI:32234,http://purl.obolibrary.org/obo/CHEBI_32234,titanium dioxide +13.622644,CHEBI:35410,http://purl.obolibrary.org/obo/CHEBI_35410,primary diamine +13.622644,CHEBI:35604,http://purl.obolibrary.org/obo/CHEBI_35604,carbon oxoanion +13.622644,CHEBI:41609,http://purl.obolibrary.org/obo/CHEBI_41609,carbonate +13.622644,CHEBI:46767,http://purl.obolibrary.org/obo/CHEBI_46767,pyrrolidinecarboxylic acid +13.622644,CHEBI:46895,http://purl.obolibrary.org/obo/CHEBI_46895,lipopeptide +13.622644,CHEBI:48730,http://purl.obolibrary.org/obo/CHEBI_48730,aluminosilicate mineral +13.622644,CHEBI:50855,http://purl.obolibrary.org/obo/CHEBI_50855,antiatherogenic agent +13.622644,CHEBI:51323,http://purl.obolibrary.org/obo/CHEBI_51323,cinchona alkaloid +13.622644,CHEBI:64459,http://purl.obolibrary.org/obo/CHEBI_64459,biaryl +13.622644,CHEBI:6476,http://purl.obolibrary.org/obo/CHEBI_6476,Linear DNA duplexes +13.622644,CL:0000049,http://purl.obolibrary.org/obo/CL_0000049,common myeloid progenitor +13.622644,CL:0000943,http://purl.obolibrary.org/obo/CL_0000943,Be1 Cell +13.622644,CL:0000944,http://purl.obolibrary.org/obo/CL_0000944,Be2 cell +13.622644,CL:0002356,http://purl.obolibrary.org/obo/CL_0002356,primitive reticulocyte +13.622644,CL:0007022,http://purl.obolibrary.org/obo/CL_0007022,micropylar cell +13.622644,DRUGBANK:DB00340,http://purl.obolibrary.org/obo/DRUGBANK_DB00340,none +13.622644,DRUGBANK:DB00473,http://purl.obolibrary.org/obo/DRUGBANK_DB00473,none +13.622644,DRUGBANK:DB01875,http://purl.obolibrary.org/obo/DRUGBANK_DB01875,none +13.622644,DRUGBANK:DB02385,http://purl.obolibrary.org/obo/DRUGBANK_DB02385,none +13.622644,DRUGBANK:DB02729,http://purl.obolibrary.org/obo/DRUGBANK_DB02729,none +13.622644,DRUGBANK:DB03578,http://purl.obolibrary.org/obo/DRUGBANK_DB03578,none +13.622644,DRUGBANK:DB03589,http://purl.obolibrary.org/obo/DRUGBANK_DB03589,none +13.622644,DRUGBANK:DB04092,http://purl.obolibrary.org/obo/DRUGBANK_DB04092,none +13.622644,DRUGBANK:DB04466,http://purl.obolibrary.org/obo/DRUGBANK_DB04466,none +13.622644,DRUGBANK:DB04517,http://purl.obolibrary.org/obo/DRUGBANK_DB04517,none +13.622644,DRUGBANK:DB04534,http://purl.obolibrary.org/obo/DRUGBANK_DB04534,none +13.622644,DRUGBANK:DB04629,http://purl.obolibrary.org/obo/DRUGBANK_DB04629,none +13.622644,DRUGBANK:DB05025,http://purl.obolibrary.org/obo/DRUGBANK_DB05025,none +13.622644,DRUGBANK:DB05169,http://purl.obolibrary.org/obo/DRUGBANK_DB05169,none +13.622644,DRUGBANK:DB05327,http://purl.obolibrary.org/obo/DRUGBANK_DB05327,none +13.622644,DRUGBANK:DB05343,http://purl.obolibrary.org/obo/DRUGBANK_DB05343,none +13.622644,DRUGBANK:DB06280,http://purl.obolibrary.org/obo/DRUGBANK_DB06280,none +13.622644,DRUGBANK:DB06610,http://purl.obolibrary.org/obo/DRUGBANK_DB06610,none +13.622644,DRUGBANK:DB06651,http://purl.obolibrary.org/obo/DRUGBANK_DB06651,none +13.622644,DRUGBANK:DB06660,http://purl.obolibrary.org/obo/DRUGBANK_DB06660,none +13.622644,DRUGBANK:DB08754,http://purl.obolibrary.org/obo/DRUGBANK_DB08754,none +13.622644,DRUGBANK:DB08902,http://purl.obolibrary.org/obo/DRUGBANK_DB08902,none +13.622644,DRUGBANK:DB11554,http://purl.obolibrary.org/obo/DRUGBANK_DB11554,none +13.622644,DRUGBANK:DB11651,http://purl.obolibrary.org/obo/DRUGBANK_DB11651,none +13.622644,DRUGBANK:DB11801,http://purl.obolibrary.org/obo/DRUGBANK_DB11801,none +13.622644,DRUGBANK:DB11851,http://purl.obolibrary.org/obo/DRUGBANK_DB11851,none +13.622644,DRUGBANK:DB11883,http://purl.obolibrary.org/obo/DRUGBANK_DB11883,none +13.622644,DRUGBANK:DB11905,http://purl.obolibrary.org/obo/DRUGBANK_DB11905,none +13.622644,DRUGBANK:DB11995,http://purl.obolibrary.org/obo/DRUGBANK_DB11995,none +13.622644,DRUGBANK:DB12194,http://purl.obolibrary.org/obo/DRUGBANK_DB12194,none +13.622644,DRUGBANK:DB12202,http://purl.obolibrary.org/obo/DRUGBANK_DB12202,none +13.622644,DRUGBANK:DB12674,http://purl.obolibrary.org/obo/DRUGBANK_DB12674,none +13.622644,DRUGBANK:DB13125,http://purl.obolibrary.org/obo/DRUGBANK_DB13125,none +13.622644,DRUGBANK:DB13507,http://purl.obolibrary.org/obo/DRUGBANK_DB13507,none +13.622644,DRUGBANK:DB13508,http://purl.obolibrary.org/obo/DRUGBANK_DB13508,none +13.622644,DRUGBANK:DB13539,http://purl.obolibrary.org/obo/DRUGBANK_DB13539,none +13.622644,DRUGBANK:DB13853,http://purl.obolibrary.org/obo/DRUGBANK_DB13853,none +13.622644,DRUGBANK:DB13931,http://purl.obolibrary.org/obo/DRUGBANK_DB13931,none +13.622644,DRUGBANK:DB13932,http://purl.obolibrary.org/obo/DRUGBANK_DB13932,none +13.622644,DRUGBANK:DB14012,http://purl.obolibrary.org/obo/DRUGBANK_DB14012,none +13.622644,DRUGBANK:DB14169,http://purl.obolibrary.org/obo/DRUGBANK_DB14169,none +13.622644,DRUGBANK:DB14268,http://purl.obolibrary.org/obo/DRUGBANK_DB14268,none +13.622644,DRUGBANK:DB14751,http://purl.obolibrary.org/obo/DRUGBANK_DB14751,none +13.622644,DRUGBANK:DB15059,http://purl.obolibrary.org/obo/DRUGBANK_DB15059,none +13.622644,DRUGBANK:DB15443,http://purl.obolibrary.org/obo/DRUGBANK_DB15443,none +13.622644,DRUGBANK:DB15576,http://purl.obolibrary.org/obo/DRUGBANK_DB15576,none +13.622644,DRUGBANK:DB16001,http://purl.obolibrary.org/obo/DRUGBANK_DB16001,none +13.622644,DRUGBANK:DB16151,http://purl.obolibrary.org/obo/DRUGBANK_DB16151,none +13.622644,GO:0001405,http://purl.obolibrary.org/obo/GO_0001405,"PAM complex, Tim23 associated import motor" +13.622644,GO:0001866,http://purl.obolibrary.org/obo/GO_0001866,NK T cell proliferation +13.622644,GO:0002314,http://purl.obolibrary.org/obo/GO_0002314,germinal center B cell differentiation +13.622644,GO:0003360,http://purl.obolibrary.org/obo/GO_0003360,brainstem development +13.622644,GO:0003843,http://purl.obolibrary.org/obo/GO_0003843,"1,3-beta-D-glucan synthase activity" +13.622644,GO:0003860,http://purl.obolibrary.org/obo/GO_0003860,3-hydroxyisobutyryl-CoA hydrolase activity +13.622644,GO:0004338,http://purl.obolibrary.org/obo/GO_0004338,"glucan exo-1,3-beta-glucosidase activity" +13.622644,GO:0005785,http://purl.obolibrary.org/obo/GO_0005785,signal recognition particle receptor complex +13.622644,GO:0006103,http://purl.obolibrary.org/obo/GO_0006103,2-oxoglutarate metabolic process +13.622644,GO:0006901,http://purl.obolibrary.org/obo/GO_0006901,vesicle coating +13.622644,GO:0007218,http://purl.obolibrary.org/obo/GO_0007218,neuropeptide signaling pathway +13.622644,GO:0007477,http://purl.obolibrary.org/obo/GO_0007477,notum development +13.622644,GO:0007560,http://purl.obolibrary.org/obo/GO_0007560,imaginal disc morphogenesis +13.622644,GO:0008096,http://purl.obolibrary.org/obo/GO_0008096,juvenile hormone epoxide hydrolase activity +13.622644,GO:0008914,http://purl.obolibrary.org/obo/GO_0008914,leucyltransferase activity +13.622644,GO:0010176,http://purl.obolibrary.org/obo/GO_0010176,homogentisate phytyltransferase activity +13.622644,GO:0010518,http://purl.obolibrary.org/obo/GO_0010518,positive regulation of phospholipase activity +13.622644,GO:0010715,http://purl.obolibrary.org/obo/GO_0010715,regulation of extracellular matrix disassembly +13.622644,GO:0010872,http://purl.obolibrary.org/obo/GO_0010872,regulation of cholesterol esterification +13.622644,GO:0010911,http://purl.obolibrary.org/obo/GO_0010911,regulation of isomerase activity +13.622644,GO:0015019,http://purl.obolibrary.org/obo/GO_0015019,heparan-alpha-glucosaminide N-acetyltransferase activity +13.622644,GO:0015876,http://purl.obolibrary.org/obo/GO_0015876,acetyl-CoA transport +13.622644,GO:0016242,http://purl.obolibrary.org/obo/GO_0016242,negative regulation of macroautophagy +13.622644,GO:0016260,http://purl.obolibrary.org/obo/GO_0016260,selenocysteine biosynthetic process +13.622644,GO:0016423,http://purl.obolibrary.org/obo/GO_0016423,tRNA (guanine) methyltransferase activity +13.622644,GO:0016760,http://purl.obolibrary.org/obo/GO_0016760,cellulose synthase (UDP-forming) activity +13.622644,GO:0017061,http://purl.obolibrary.org/obo/GO_0017061,S-methyl-5-thioadenosine phosphorylase activity +13.622644,GO:0018941,http://purl.obolibrary.org/obo/GO_0018941,organomercury metabolic process +13.622644,GO:0018942,http://purl.obolibrary.org/obo/GO_0018942,organometal metabolic process +13.622644,GO:0018977,http://purl.obolibrary.org/obo/GO_0018977,"1,1,1-trichloro-2,2-bis-(4-chlorophenyl)ethane metabolic process" +13.622644,GO:0019333,http://purl.obolibrary.org/obo/GO_0019333,denitrification pathway +13.622644,GO:0019342,http://purl.obolibrary.org/obo/GO_0019342,trypanothione biosynthetic process +13.622644,GO:0019533,http://purl.obolibrary.org/obo/GO_0019533,cellobiose transport +13.622644,GO:0019788,http://purl.obolibrary.org/obo/GO_0019788,NEDD8 transferase activity +13.622644,GO:0030081,http://purl.obolibrary.org/obo/GO_0030081,B800-820 antenna complex +13.622644,GO:0030878,http://purl.obolibrary.org/obo/GO_0030878,thyroid gland development +13.622644,GO:0031219,http://purl.obolibrary.org/obo/GO_0031219,levanase activity +13.622644,GO:0032649,http://purl.obolibrary.org/obo/GO_0032649,regulation of interferon-gamma production +13.622644,GO:0032660,http://purl.obolibrary.org/obo/GO_0032660,regulation of interleukin-17 production +13.622644,GO:0032872,http://purl.obolibrary.org/obo/GO_0032872,regulation of stress-activated MAPK cascade +13.622644,GO:0033565,http://purl.obolibrary.org/obo/GO_0033565,ESCRT-0 complex +13.622644,GO:0033676,http://purl.obolibrary.org/obo/GO_0033676,none +13.622644,GO:0035754,http://purl.obolibrary.org/obo/GO_0035754,B cell chemotaxis +13.622644,GO:0038188,http://purl.obolibrary.org/obo/GO_0038188,cholecystokinin signaling pathway +13.622644,GO:0039714,http://purl.obolibrary.org/obo/GO_0039714,cytoplasmic viral factory +13.622644,GO:0042117,http://purl.obolibrary.org/obo/GO_0042117,monocyte activation +13.622644,GO:0042191,http://purl.obolibrary.org/obo/GO_0042191,methylmercury metabolic process +13.622644,GO:0042788,http://purl.obolibrary.org/obo/GO_0042788,polysomal ribosome +13.622644,GO:0043300,http://purl.obolibrary.org/obo/GO_0043300,regulation of leukocyte degranulation +13.622644,GO:0043843,http://purl.obolibrary.org/obo/GO_0043843,ADP-specific glucokinase activity +13.622644,GO:0045638,http://purl.obolibrary.org/obo/GO_0045638,negative regulation of myeloid cell differentiation +13.622644,GO:0045944,http://purl.obolibrary.org/obo/GO_0045944,positive regulation of transcription by RNA polymerase II +13.622644,GO:0046073,http://purl.obolibrary.org/obo/GO_0046073,dTMP metabolic process +13.622644,GO:0046424,http://purl.obolibrary.org/obo/GO_0046424,ferulate 5-hydroxylase activity +13.622644,GO:0046630,http://purl.obolibrary.org/obo/GO_0046630,gamma-delta T cell proliferation +13.622644,GO:0046902,http://purl.obolibrary.org/obo/GO_0046902,regulation of mitochondrial membrane permeability +13.622644,GO:0047540,http://purl.obolibrary.org/obo/GO_0047540,2-enoate reductase activity +13.622644,GO:0048570,http://purl.obolibrary.org/obo/GO_0048570,notochord morphogenesis +13.622644,GO:0050215,http://purl.obolibrary.org/obo/GO_0050215,propanediol dehydratase activity +13.622644,GO:0050688,http://purl.obolibrary.org/obo/GO_0050688,regulation of defense response to virus +13.622644,GO:0050832,http://purl.obolibrary.org/obo/GO_0050832,defense response to fungus +13.622644,GO:0050994,http://purl.obolibrary.org/obo/GO_0050994,regulation of lipid catabolic process +13.622644,GO:0051732,http://purl.obolibrary.org/obo/GO_0051732,polyribonucleotide kinase activity +13.622644,GO:0052255,http://purl.obolibrary.org/obo/GO_0052255,none +13.622644,GO:0070487,http://purl.obolibrary.org/obo/GO_0070487,monocyte aggregation +13.622644,GO:0070730,http://purl.obolibrary.org/obo/GO_0070730,cAMP transport +13.622644,GO:0071347,http://purl.obolibrary.org/obo/GO_0071347,cellular response to interleukin-1 +13.622644,GO:0072541,http://purl.obolibrary.org/obo/GO_0072541,peroxynitrite reductase activity +13.622644,GO:0072720,http://purl.obolibrary.org/obo/GO_0072720,response to dithiothreitol +13.622644,GO:0085042,http://purl.obolibrary.org/obo/GO_0085042,periarbuscular membrane +13.622644,GO:0090360,http://purl.obolibrary.org/obo/GO_0090360,platelet-derived growth factor production +13.622644,GO:0097249,http://purl.obolibrary.org/obo/GO_0097249,none +13.622644,GO:0097326,http://purl.obolibrary.org/obo/GO_0097326,melanocyte adhesion +13.622644,GO:0097344,http://purl.obolibrary.org/obo/GO_0097344,Rix1 complex +13.622644,GO:0140303,http://purl.obolibrary.org/obo/GO_0140303,intramembrane lipid transporter activity +13.622644,GO:1901687,http://purl.obolibrary.org/obo/GO_1901687,glutathione derivative biosynthetic process +13.622644,GO:1903314,http://purl.obolibrary.org/obo/GO_1903314,regulation of nitrogen cycle metabolic process +13.622644,GO:1990177,http://purl.obolibrary.org/obo/GO_1990177,IHF-DNA complex +13.622644,GO:1990332,http://purl.obolibrary.org/obo/GO_1990332,Ire1 complex +13.622644,GO:1990415,http://purl.obolibrary.org/obo/GO_1990415,none +13.622644,GO:1990429,http://purl.obolibrary.org/obo/GO_1990429,peroxisomal importomer complex +13.622644,GO:1990708,http://purl.obolibrary.org/obo/GO_1990708,conditioned place preference +13.622644,GO:1990913,http://purl.obolibrary.org/obo/GO_1990913,sperm head plasma membrane +13.622644,GO:2000018,http://purl.obolibrary.org/obo/GO_2000018,regulation of male gonad development +13.622644,GO:2000300,http://purl.obolibrary.org/obo/GO_2000300,regulation of synaptic vesicle exocytosis +13.622644,GO:2000371,http://purl.obolibrary.org/obo/GO_2000371,regulation of DNA topoisomerase (ATP-hydrolyzing) activity +13.622644,GO:2000468,http://purl.obolibrary.org/obo/GO_2000468,regulation of peroxidase activity +13.622644,GO:2001225,http://purl.obolibrary.org/obo/GO_2001225,regulation of chloride transport +13.622644,HP:0001067,http://purl.obolibrary.org/obo/HP_0001067,Neurofibromas +13.622644,HP:0002538,http://purl.obolibrary.org/obo/HP_0002538,Abnormal cerebral cortex morphology +13.622644,HP:0003128,http://purl.obolibrary.org/obo/HP_0003128,Lactic acidosis +13.622644,HP:0004756,http://purl.obolibrary.org/obo/HP_0004756,Ventricular tachycardia +13.622644,HP:0100034,http://purl.obolibrary.org/obo/HP_0100034,Motor tics +13.622644,HP:0100615,http://purl.obolibrary.org/obo/HP_0100615,Ovarian neoplasm +13.622644,MONDO:0000107,http://purl.obolibrary.org/obo/MONDO_0000107,auriculocondylar syndrome +13.622644,MONDO:0000239,http://purl.obolibrary.org/obo/MONDO_0000239,adiaspiromycosis +13.622644,MONDO:0000302,http://purl.obolibrary.org/obo/MONDO_0000302,basidiobolomycosis +13.622644,MONDO:0000452,http://purl.obolibrary.org/obo/MONDO_0000452,progressive relapsing multiple sclerosis +13.622644,MONDO:0001093,http://purl.obolibrary.org/obo/MONDO_0001093,colonic lymphangioma +13.622644,MONDO:0001250,http://purl.obolibrary.org/obo/MONDO_0001250,keratomalacia +13.622644,MONDO:0001616,http://purl.obolibrary.org/obo/MONDO_0001616,lobomycosis +13.622644,MONDO:0001633,http://purl.obolibrary.org/obo/MONDO_0001633,central retinal artery occlusion +13.622644,MONDO:0001892,http://purl.obolibrary.org/obo/MONDO_0001892,spinal cord lymphoma +13.622644,MONDO:0002000,http://purl.obolibrary.org/obo/MONDO_0002000,anaerobic meningitis +13.622644,MONDO:0002386,http://purl.obolibrary.org/obo/MONDO_0002386,mixed epithelial stromal tumor of the kidney +13.622644,MONDO:0002396,http://purl.obolibrary.org/obo/MONDO_0002396,nephrogenic adenofibroma +13.622644,MONDO:0002594,http://purl.obolibrary.org/obo/MONDO_0002594,monkeypox +13.622644,MONDO:0002849,http://purl.obolibrary.org/obo/MONDO_0002849,liver rhabdomyosarcoma +13.622644,MONDO:0003195,http://purl.obolibrary.org/obo/MONDO_0003195,peritoneal serous adenocarcinoma +13.622644,MONDO:0003387,http://purl.obolibrary.org/obo/MONDO_0003387,urethra clear cell adenocarcinoma +13.622644,MONDO:0003467,http://purl.obolibrary.org/obo/MONDO_0003467,mediastinum synovial sarcoma +13.622644,MONDO:0004288,http://purl.obolibrary.org/obo/MONDO_0004288,scirrhous breast carcinoma +13.622644,MONDO:0004350,http://purl.obolibrary.org/obo/MONDO_0004350,pediatric extraocular retinoblastoma +13.622644,MONDO:0004390,http://purl.obolibrary.org/obo/MONDO_0004390,ocular hypotension +13.622644,MONDO:0004709,http://purl.obolibrary.org/obo/MONDO_0004709,occipital lobe neoplasm +13.622644,MONDO:0004759,http://purl.obolibrary.org/obo/MONDO_0004759,bestiality +13.622644,MONDO:0005050,http://purl.obolibrary.org/obo/MONDO_0005050,invasive ductal and lobular carcinoma +13.622644,MONDO:0005690,http://purl.obolibrary.org/obo/MONDO_0005690,Caplan syndrome +13.622644,MONDO:0006035,http://purl.obolibrary.org/obo/MONDO_0006035,gastric tubular adenocarcinoma +13.622644,MONDO:0006534,http://purl.obolibrary.org/obo/MONDO_0006534,cholinergic urticaria +13.622644,MONDO:0006548,http://purl.obolibrary.org/obo/MONDO_0006548,facial dermatosis +13.622644,MONDO:0008521,http://purl.obolibrary.org/obo/MONDO_0008521,tarsal-carpal coalition syndrome +13.622644,MONDO:0008748,http://purl.obolibrary.org/obo/MONDO_0008748,Hermansky-Pudlak syndrome 1 +13.622644,MONDO:0008795,http://purl.obolibrary.org/obo/MONDO_0008795,aniridia-cerebellar ataxia-intellectual disability syndrome +13.622644,MONDO:0008962,http://purl.obolibrary.org/obo/MONDO_0008962,Griscelli syndrome type 1 +13.622644,MONDO:0009266,http://purl.obolibrary.org/obo/MONDO_0009266,Gaucher disease type II +13.622644,MONDO:0010027,http://purl.obolibrary.org/obo/MONDO_0010027,"free sialic acid storage disease, infantile form" +13.622644,MONDO:0010149,http://purl.obolibrary.org/obo/MONDO_0010149,transcobalamin II deficiency +13.622644,MONDO:0010379,http://purl.obolibrary.org/obo/MONDO_0010379,Brunner syndrome +13.622644,MONDO:0010476,http://purl.obolibrary.org/obo/MONDO_0010476,neurodegeneration with brain iron accumulation 5 +13.622644,MONDO:0010535,http://purl.obolibrary.org/obo/MONDO_0010535,Bazex-Dupre-Christol syndrome +13.622644,MONDO:0011624,http://purl.obolibrary.org/obo/MONDO_0011624,transaldolase deficiency +13.622644,MONDO:0012176,http://purl.obolibrary.org/obo/MONDO_0012176,Emanuel syndrome +13.622644,MONDO:0012815,http://purl.obolibrary.org/obo/MONDO_0012815,Coats plus syndrome +13.622644,MONDO:0015052,http://purl.obolibrary.org/obo/MONDO_0015052,primary interstitial lung disease specific to childhood due to pulmonary surfactant protein anomalies +13.622644,MONDO:0015753,http://purl.obolibrary.org/obo/MONDO_0015753,cap myopathy +13.622644,MONDO:0016002,http://purl.obolibrary.org/obo/MONDO_0016002,"Ehlers-Danlos syndrome, kyphoscoliotic type 1" +13.622644,MONDO:0016342,http://purl.obolibrary.org/obo/MONDO_0016342,familial isolated arrhythmogenic right ventricular dysplasia +13.622644,MONDO:0016567,http://purl.obolibrary.org/obo/MONDO_0016567,locked-in syndrome +13.622644,MONDO:0016669,http://purl.obolibrary.org/obo/MONDO_0016669,sickle cell-hemoglobin c disease syndrome +13.622644,MONDO:0017569,http://purl.obolibrary.org/obo/MONDO_0017569,de Barsy syndrome +13.622644,MONDO:0017599,http://purl.obolibrary.org/obo/MONDO_0017599,splenic diffuse red pulp small B-cell lymphoma +13.622644,MONDO:0017677,http://purl.obolibrary.org/obo/MONDO_0017677,focal acral hyperkeratosis +13.622644,MONDO:0018054,http://purl.obolibrary.org/obo/MONDO_0018054,familial atrial fibrillation +13.622644,MONDO:0018903,http://purl.obolibrary.org/obo/MONDO_0018903,sarcocystosis +13.622644,MONDO:0019033,http://purl.obolibrary.org/obo/MONDO_0019033,primary cutis verticis gyrata +13.622644,MONDO:0019644,http://purl.obolibrary.org/obo/MONDO_0019644,"renal dysplasia, unilateral" +13.622644,MONDO:0019676,http://purl.obolibrary.org/obo/MONDO_0019676,brachydactyly type B +13.622644,MONDO:0019867,http://purl.obolibrary.org/obo/MONDO_0019867,mosaic trisomy 8 +13.622644,MONDO:0019934,http://purl.obolibrary.org/obo/MONDO_0019934,polyploidy +13.622644,MONDO:0019967,http://purl.obolibrary.org/obo/MONDO_0019967,Kienbock disease +13.622644,MONDO:0020175,http://purl.obolibrary.org/obo/MONDO_0020175,malignant tumor of palpebral epidermis +13.622644,MONDO:0020790,http://purl.obolibrary.org/obo/MONDO_0020790,"gaze palsy, familial horizontal, with progressive scoliosis 1" +13.622644,MONDO:0021283,http://purl.obolibrary.org/obo/MONDO_0021283,malignant teratoma of mediastinum +13.622644,MONDO:0021445,http://purl.obolibrary.org/obo/MONDO_0021445,benign neoplasm of oral cavity +13.622644,MONDO:0043103,http://purl.obolibrary.org/obo/MONDO_0043103,hypothyroidism due to iodide transport defect +13.622644,MONDO:0044793,http://purl.obolibrary.org/obo/MONDO_0044793,spitz nevus +13.622644,MONDO:0044794,http://purl.obolibrary.org/obo/MONDO_0044794,benign melanocytic skin nevus +13.622644,NCBITaxon:10254,http://purl.obolibrary.org/obo/NCBITaxon_10254,none +13.622644,NCBITaxon:10381,http://purl.obolibrary.org/obo/NCBITaxon_10381,none +13.622644,NCBITaxon:11053,http://purl.obolibrary.org/obo/NCBITaxon_11053,Dengue virus 1 +13.622644,NCBITaxon:110618,http://purl.obolibrary.org/obo/NCBITaxon_110618,Nectriaceae +13.622644,NCBITaxon:12269,http://purl.obolibrary.org/obo/NCBITaxon_12269,none +13.622644,NCBITaxon:12285,http://purl.obolibrary.org/obo/NCBITaxon_12285,none +13.622644,NCBITaxon:12451,http://purl.obolibrary.org/obo/NCBITaxon_12451,none +13.622644,NCBITaxon:136845,http://purl.obolibrary.org/obo/NCBITaxon_136845,none +13.622644,NCBITaxon:137475,http://purl.obolibrary.org/obo/NCBITaxon_137475,none +13.622644,NCBITaxon:163325,http://purl.obolibrary.org/obo/NCBITaxon_163325,none +13.622644,NCBITaxon:186745,http://purl.obolibrary.org/obo/NCBITaxon_186745,none +13.622644,NCBITaxon:198068,http://purl.obolibrary.org/obo/NCBITaxon_198068,none +13.622644,NCBITaxon:2082223,http://purl.obolibrary.org/obo/NCBITaxon_2082223,Panagrolaimomorpha +13.622644,NCBITaxon:22140,http://purl.obolibrary.org/obo/NCBITaxon_22140,none +13.622644,NCBITaxon:2560373,http://purl.obolibrary.org/obo/NCBITaxon_2560373,none +13.622644,NCBITaxon:25623,http://purl.obolibrary.org/obo/NCBITaxon_25623,none +13.622644,NCBITaxon:267071,http://purl.obolibrary.org/obo/NCBITaxon_267071,none +13.622644,NCBITaxon:270845,http://purl.obolibrary.org/obo/NCBITaxon_270845,none +13.622644,NCBITaxon:270846,http://purl.obolibrary.org/obo/NCBITaxon_270846,none +13.622644,NCBITaxon:2732890,http://purl.obolibrary.org/obo/NCBITaxon_2732890,none +13.622644,NCBITaxon:28781,http://purl.obolibrary.org/obo/NCBITaxon_28781,none +13.622644,NCBITaxon:303,http://purl.obolibrary.org/obo/NCBITaxon_303,none +13.622644,NCBITaxon:314539,http://purl.obolibrary.org/obo/NCBITaxon_314539,none +13.622644,NCBITaxon:316385,http://purl.obolibrary.org/obo/NCBITaxon_316385,none +13.622644,NCBITaxon:32008,http://purl.obolibrary.org/obo/NCBITaxon_32008,Burkholderia +13.622644,NCBITaxon:32325,http://purl.obolibrary.org/obo/NCBITaxon_32325,none +13.622644,NCBITaxon:33746,http://purl.obolibrary.org/obo/NCBITaxon_33746,none +13.622644,NCBITaxon:33988,http://purl.obolibrary.org/obo/NCBITaxon_33988,Rickettsieae +13.622644,NCBITaxon:3440,http://purl.obolibrary.org/obo/NCBITaxon_3440,none +13.622644,NCBITaxon:3563,http://purl.obolibrary.org/obo/NCBITaxon_3563,none +13.622644,NCBITaxon:36352,http://purl.obolibrary.org/obo/NCBITaxon_36352,none +13.622644,NCBITaxon:3661,http://purl.obolibrary.org/obo/NCBITaxon_3661,none +13.622644,NCBITaxon:388435,http://purl.obolibrary.org/obo/NCBITaxon_388435,none +13.622644,NCBITaxon:39443,http://purl.obolibrary.org/obo/NCBITaxon_39443,none +13.622644,NCBITaxon:39760,http://purl.obolibrary.org/obo/NCBITaxon_39760,none +13.622644,NCBITaxon:42004,http://purl.obolibrary.org/obo/NCBITaxon_42004,none +13.622644,NCBITaxon:42415,http://purl.obolibrary.org/obo/NCBITaxon_42415,Sigmodon hispidus +13.622644,NCBITaxon:44005,http://purl.obolibrary.org/obo/NCBITaxon_44005,none +13.622644,NCBITaxon:444888,http://purl.obolibrary.org/obo/NCBITaxon_444888,none +13.622644,NCBITaxon:451867,http://purl.obolibrary.org/obo/NCBITaxon_451867,Dothideomycetidae +13.622644,NCBITaxon:45219,http://purl.obolibrary.org/obo/NCBITaxon_45219,Guanarito mammarenavirus +13.622644,NCBITaxon:47757,http://purl.obolibrary.org/obo/NCBITaxon_47757,none +13.622644,NCBITaxon:48726,http://purl.obolibrary.org/obo/NCBITaxon_48726,none +13.622644,NCBITaxon:517,http://purl.obolibrary.org/obo/NCBITaxon_517,Bordetella +13.622644,NCBITaxon:53954,http://purl.obolibrary.org/obo/NCBITaxon_53954,none +13.622644,NCBITaxon:55746,http://purl.obolibrary.org/obo/NCBITaxon_55746,Panagrolaimoidea +13.622644,NCBITaxon:5598,http://purl.obolibrary.org/obo/NCBITaxon_5598,Alternaria +13.622644,NCBITaxon:7221,http://purl.obolibrary.org/obo/NCBITaxon_7221,none +13.622644,NCBITaxon:7505,http://purl.obolibrary.org/obo/NCBITaxon_7505,none +13.622644,NCBITaxon:77204,http://purl.obolibrary.org/obo/NCBITaxon_77204,none +13.622644,NCBITaxon:780,http://purl.obolibrary.org/obo/NCBITaxon_780,Rickettsia +13.622644,NCBITaxon:8088,http://purl.obolibrary.org/obo/NCBITaxon_8088,none +13.622644,NCBITaxon:8089,http://purl.obolibrary.org/obo/NCBITaxon_8089,none +13.622644,NCBITaxon:8090,http://purl.obolibrary.org/obo/NCBITaxon_8090,Oryzias latipes +13.622644,NCBITaxon:8224,http://purl.obolibrary.org/obo/NCBITaxon_8224,none +13.622644,NCBITaxon:8372,http://purl.obolibrary.org/obo/NCBITaxon_8372,none +13.622644,NCBITaxon:9153,http://purl.obolibrary.org/obo/NCBITaxon_9153,none +13.622644,NCBITaxon:family,http://purl.obolibrary.org/obo/NCBITaxon_family,none +13.622644,PR:000001306,http://purl.obolibrary.org/obo/PR_000001306,CD320 molecule +13.622644,PR:000001651,http://purl.obolibrary.org/obo/PR_000001651,G-protein coupled receptor 87 +13.622644,PR:000002144,http://purl.obolibrary.org/obo/PR_000002144,CD14 molecule isoform 1 +13.622644,PR:000003211,http://purl.obolibrary.org/obo/PR_000003211,serine/threonine-protein phosphatase 2A catalytic subunit alpha isoform +13.622644,PR:000003431,http://purl.obolibrary.org/obo/PR_000003431,transcription factor 20 +13.622644,PR:000003700,http://purl.obolibrary.org/obo/PR_000003700,actin-related protein 8 +13.622644,PR:000003724,http://purl.obolibrary.org/obo/PR_000003724,disintegrin and metalloproteinase domain-containing protein 7 +13.622644,PR:000003867,http://purl.obolibrary.org/obo/PR_000003867,allograft inflammatory factor 1-like +13.622644,PR:000004124,http://purl.obolibrary.org/obo/PR_000004124,protein APCDD1 +13.622644,PR:000004287,http://purl.obolibrary.org/obo/PR_000004287,ADP-ribosylation factor-like protein 4D +13.622644,PR:000004368,http://purl.obolibrary.org/obo/PR_000004368,histone chaperone ASF1B +13.622644,PR:000004412,http://purl.obolibrary.org/obo/PR_000004412,autophagy-related protein 2 homolog B +13.622644,PR:000004520,http://purl.obolibrary.org/obo/PR_000004520,cell death regulator Aven +13.622644,PR:000004824,http://purl.obolibrary.org/obo/PR_000004824,serine/threonine-protein kinase BRSK2 +13.622644,PR:000004853,http://purl.obolibrary.org/obo/PR_000004853,F-box/WD repeat-containing protein 1A +13.622644,PR:000004931,http://purl.obolibrary.org/obo/PR_000004931,CDK5 and ABL1 enzyme substrate 1 +13.622644,PR:000004983,http://purl.obolibrary.org/obo/PR_000004983,calcium-binding protein 8 +13.622644,PR:000005239,http://purl.obolibrary.org/obo/PR_000005239,cadherin-22 +13.622644,PR:000005329,http://purl.obolibrary.org/obo/PR_000005329,centromere protein I +13.622644,PR:000005470,http://purl.obolibrary.org/obo/PR_000005470,carbohydrate sulfotransferase 10 +13.622644,PR:000005484,http://purl.obolibrary.org/obo/PR_000005484,chondroitin sulfate synthase 3 +13.622644,PR:000005580,http://purl.obolibrary.org/obo/PR_000005580,clathrin interactor 1 +13.622644,PR:000006059,http://purl.obolibrary.org/obo/PR_000006059,pre-mRNA-splicing factor CWC22 +13.622644,PR:000006194,http://purl.obolibrary.org/obo/PR_000006194,none +13.622644,PR:000006262,http://purl.obolibrary.org/obo/PR_000006262,dachshund homolog 2 +13.622644,PR:000006567,http://purl.obolibrary.org/obo/PR_000006567,"dynein heavy chain 9, axonemal" +13.622644,PR:000006613,http://purl.obolibrary.org/obo/PR_000006613,deoxynucleotidyltransferase terminal-interacting protein 2 +13.622644,PR:000006687,http://purl.obolibrary.org/obo/PR_000006687,Dr1-associated corepressor +13.622644,PR:000007143,http://purl.obolibrary.org/obo/PR_000007143,epiplakin +13.622644,PR:000007195,http://purl.obolibrary.org/obo/PR_000007195,endothelial cell-selective adhesion molecule +13.622644,PR:000007242,http://purl.obolibrary.org/obo/PR_000007242,homeobox even-skipped homolog protein 2 +13.622644,PR:000007322,http://purl.obolibrary.org/obo/PR_000007322,FAS-associated factor 2 +13.622644,PR:000007627,http://purl.obolibrary.org/obo/PR_000007627,forkhead box protein I3 +13.622644,PR:000007930,http://purl.obolibrary.org/obo/PR_000007930,glycerophosphodiester phosphodiesterase domain-containing protein 5 +13.622644,PR:000007958,http://purl.obolibrary.org/obo/PR_000007958,gametogenetin +13.622644,PR:000008164,http://purl.obolibrary.org/obo/PR_000008164,glypican-2 +13.622644,PR:000008393,http://purl.obolibrary.org/obo/PR_000008393,none +13.622644,PR:000008671,http://purl.obolibrary.org/obo/PR_000008671,heterogeneous nuclear ribonucleoprotein M +13.622644,PR:000008747,http://purl.obolibrary.org/obo/PR_000008747,phospholipase A and acyltransferase 3 +13.622644,PR:000008815,http://purl.obolibrary.org/obo/PR_000008815,intraflagellar transport protein 25 homolog +13.622644,PR:000008866,http://purl.obolibrary.org/obo/PR_000008866,heterogeneous nuclear ribonucleoprotein A3 +13.622644,PR:000008882,http://purl.obolibrary.org/obo/PR_000008882,magnesium transporter NIPA4 +13.622644,PR:000009137,http://purl.obolibrary.org/obo/PR_000009137,integrin beta-1-binding protein 2 +13.622644,PR:000009153,http://purl.obolibrary.org/obo/PR_000009153,inosine triphosphate pyrophosphatase +13.622644,PR:000009169,http://purl.obolibrary.org/obo/PR_000009169,protein IWS1 +13.622644,PR:000009486,http://purl.obolibrary.org/obo/PR_000009486,"keratin, type II cytoskeletal 71" +13.622644,PR:000009593,http://purl.obolibrary.org/obo/PR_000009593,protein O-glucosyltransferase 1 +13.622644,PR:000009917,http://purl.obolibrary.org/obo/PR_000009917,low-density lipoprotein receptor-related protein 10 +13.622644,PR:000009947,http://purl.obolibrary.org/obo/PR_000009947,leucine-rich repeat transmembrane neuronal protein 2 +13.622644,PR:000010539,http://purl.obolibrary.org/obo/PR_000010539,M-phase phosphoprotein 9 +13.622644,PR:000010545,http://purl.obolibrary.org/obo/PR_000010545,MAGUK p55 subfamily member 4 +13.622644,PR:000011004,http://purl.obolibrary.org/obo/PR_000011004,N-acetylaspartate synthetase +13.622644,PR:000011349,http://purl.obolibrary.org/obo/PR_000011349,neuronal PAS domain-containing protein 1 +13.622644,PR:000011361,http://purl.obolibrary.org/obo/PR_000011361,FMRFamide-related neuropeptide FF +13.622644,PR:000011468,http://purl.obolibrary.org/obo/PR_000011468,netrin-G2 +13.622644,PR:000012497,http://purl.obolibrary.org/obo/PR_000012497,protein disulfide-isomerase A2 +13.622644,PR:000012594,http://purl.obolibrary.org/obo/PR_000012594,GPI inositol-deacylase +13.622644,PR:000012806,http://purl.obolibrary.org/obo/PR_000012806,cytosolic phospholipase A2 gamma +13.622644,PR:000012842,http://purl.obolibrary.org/obo/PR_000012842,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase zeta-1" +13.622644,PR:000012898,http://purl.obolibrary.org/obo/PR_000012898,plexin-B3 +13.622644,PR:000012950,http://purl.obolibrary.org/obo/PR_000012950,"polyribonucleotide nucleotidyltransferase 1, mitochondrial" +13.622644,PR:000013099,http://purl.obolibrary.org/obo/PR_000013099,protein phosphatase 1L +13.622644,PR:000013161,http://purl.obolibrary.org/obo/PR_000013161,lysosomal thioesterase PPT2 +13.622644,PR:000013297,http://purl.obolibrary.org/obo/PR_000013297,proline-rich protein 11 +13.622644,PR:000013352,http://purl.obolibrary.org/obo/PR_000013352,pregnancy-specific beta-1-glycoprotein 4 +13.622644,PR:000013640,http://purl.obolibrary.org/obo/PR_000013640,Ras-related protein Rab-7b +13.622644,PR:000014037,http://purl.obolibrary.org/obo/PR_000014037,RecQ-mediated genome instability protein 2 +13.622644,PR:000014193,http://purl.obolibrary.org/obo/PR_000014193,60S ribosomal protein L13a +13.622644,PR:000014353,http://purl.obolibrary.org/obo/PR_000014353,receptor-transporting protein 1 +13.622644,PR:000014562,http://purl.obolibrary.org/obo/PR_000014562,45 kDa calcium-binding protein +13.622644,PR:000014855,http://purl.obolibrary.org/obo/PR_000014855,protein Shroom2 +13.622644,PR:000015711,http://purl.obolibrary.org/obo/PR_000015711,STAM-binding protein +13.622644,PR:000015713,http://purl.obolibrary.org/obo/PR_000015713,signal-transducing adaptor protein 1 +13.622644,PR:000015731,http://purl.obolibrary.org/obo/PR_000015731,metalloreductase STEAP2 +13.622644,PR:000015777,http://purl.obolibrary.org/obo/PR_000015777,stereocilin +13.622644,PR:000015914,http://purl.obolibrary.org/obo/PR_000015914,synaptotagmin-like protein 3 +13.622644,PR:000015967,http://purl.obolibrary.org/obo/PR_000015967,none +13.622644,PR:000016011,http://purl.obolibrary.org/obo/PR_000016011,transcriptional adapter 2-beta +13.622644,PR:000016212,http://purl.obolibrary.org/obo/PR_000016212,G/T mismatch-specific thymine DNA glycosylase +13.622644,PR:000016304,http://purl.obolibrary.org/obo/PR_000016304,THAP domain-containing protein 11 +13.622644,PR:000016682,http://purl.obolibrary.org/obo/PR_000016682,tRNA (guanine-N(1)-)-methyltransferase +13.622644,PR:000016726,http://purl.obolibrary.org/obo/PR_000016726,teashirt homolog 2 +13.622644,PR:000016767,http://purl.obolibrary.org/obo/PR_000016767,pre-rRNA-processing protein TSR2 +13.622644,PR:000016777,http://purl.obolibrary.org/obo/PR_000016777,tau-tubulin kinase 1 +13.622644,PR:000016852,http://purl.obolibrary.org/obo/PR_000016852,gamma-taxilin +13.622644,PR:000016866,http://purl.obolibrary.org/obo/PR_000016866,thioredoxin domain-containing protein 9 +13.622644,PR:000016958,http://purl.obolibrary.org/obo/PR_000016958,ubiquitin-associated protein 1 +13.622644,PR:000016997,http://purl.obolibrary.org/obo/PR_000016997,ubiquitin-like protein 3 +13.622644,PR:000016998,http://purl.obolibrary.org/obo/PR_000016998,ubiquitin-like protein 4A +13.622644,PR:000017098,http://purl.obolibrary.org/obo/PR_000017098,protein unc-80 +13.622644,PR:000017404,http://purl.obolibrary.org/obo/PR_000017404,Wee1-like protein kinase 2 +13.622644,PR:000017549,http://purl.obolibrary.org/obo/PR_000017549,YTH domain-containing protein 1 +13.622644,PR:000018574,http://purl.obolibrary.org/obo/PR_000018574,"CD14 molecule, signal peptide removed form" +13.622644,PR:000018575,http://purl.obolibrary.org/obo/PR_000018575,none +13.622644,PR:000022129,http://purl.obolibrary.org/obo/PR_000022129,none +13.622644,PR:000022250,http://purl.obolibrary.org/obo/PR_000022250,none +13.622644,PR:000022567,http://purl.obolibrary.org/obo/PR_000022567,none +13.622644,PR:000022794,http://purl.obolibrary.org/obo/PR_000022794,none +13.622644,PR:000022901,http://purl.obolibrary.org/obo/PR_000022901,none +13.622644,PR:000023036,http://purl.obolibrary.org/obo/PR_000023036,none +13.622644,PR:000023199,http://purl.obolibrary.org/obo/PR_000023199,none +13.622644,PR:000023342,http://purl.obolibrary.org/obo/PR_000023342,none +13.622644,PR:000023389,http://purl.obolibrary.org/obo/PR_000023389,none +13.622644,PR:000023405,http://purl.obolibrary.org/obo/PR_000023405,none +13.622644,PR:000023418,http://purl.obolibrary.org/obo/PR_000023418,none +13.622644,PR:000023453,http://purl.obolibrary.org/obo/PR_000023453,none +13.622644,PR:000023526,http://purl.obolibrary.org/obo/PR_000023526,none +13.622644,PR:000023545,http://purl.obolibrary.org/obo/PR_000023545,sensor protein PhoQ +13.622644,PR:000023648,http://purl.obolibrary.org/obo/PR_000023648,none +13.622644,PR:000023854,http://purl.obolibrary.org/obo/PR_000023854,30S ribosomal protein S1 +13.622644,PR:000023861,http://purl.obolibrary.org/obo/PR_000023861,none +13.622644,PR:000025460,http://purl.obolibrary.org/obo/PR_000025460,"CD14 molecule isoform 1, signal peptide removed form" +13.622644,PR:000027069,http://purl.obolibrary.org/obo/PR_000027069,erythroid transcription factor isoform 2 +13.622644,PR:000028474,http://purl.obolibrary.org/obo/PR_000028474,none +13.622644,PR:000029387,http://purl.obolibrary.org/obo/PR_000029387,probable ATP-dependent RNA helicase DDX28 +13.622644,PR:000029494,http://purl.obolibrary.org/obo/PR_000029494,F-box only protein 31 +13.622644,PR:000029721,http://purl.obolibrary.org/obo/PR_000029721,rhomboid domain-containing protein 1 +13.622644,PR:000029838,http://purl.obolibrary.org/obo/PR_000029838,E3 ubiquitin-protein ligase TTC3 +13.622644,PR:000029900,http://purl.obolibrary.org/obo/PR_000029900,none +13.622644,PR:000030292,http://purl.obolibrary.org/obo/PR_000030292,none +13.622644,PR:000030522,http://purl.obolibrary.org/obo/PR_000030522,transmembrane protein 35A +13.622644,PR:000030697,http://purl.obolibrary.org/obo/PR_000030697,E3 ubiquitin-protein ligase PDZRN3 +13.622644,PR:000030707,http://purl.obolibrary.org/obo/PR_000030707,ATPase family AAA domain-containing protein 3A +13.622644,PR:000031188,http://purl.obolibrary.org/obo/PR_000031188,calcium-activated chloride channel regulator family member 3 +13.622644,PR:000031424,http://purl.obolibrary.org/obo/PR_000031424,Xaa-Pro aminopeptidase 3 +13.622644,PR:000031752,http://purl.obolibrary.org/obo/PR_000031752,palmitoyltransferase ZDHHC5 +13.622644,PR:000032201,http://purl.obolibrary.org/obo/PR_000032201,butyrophilin subfamily 2 member A1 +13.622644,PR:000032371,http://purl.obolibrary.org/obo/PR_000032371,"4-hydroxy-2-oxoglutarate aldolase, mitochondrial" +13.622644,PR:000032495,http://purl.obolibrary.org/obo/PR_000032495,mitochondrial potassium channel ATP-binding subunit +13.622644,PR:000032659,http://purl.obolibrary.org/obo/PR_000032659,tripartite motif-containing protein 67 +13.622644,PR:000032947,http://purl.obolibrary.org/obo/PR_000032947,none +13.622644,PR:000033420,http://purl.obolibrary.org/obo/PR_000033420,none +13.622644,PR:000036848,http://purl.obolibrary.org/obo/PR_000036848,CD14 molecule isoform 1 cleaved 2 +13.622644,PR:000037078,http://purl.obolibrary.org/obo/PR_000037078,sumoylated protein +13.622644,PR:B0F481,http://purl.obolibrary.org/obo/PR_B0F481,none +13.622644,PR:F4K5X6,http://purl.obolibrary.org/obo/PR_F4K5X6,none +13.622644,PR:F4KDF5,http://purl.obolibrary.org/obo/PR_F4KDF5,none +13.622644,PR:F8S296,http://purl.obolibrary.org/obo/PR_F8S296,none +13.622644,PR:O16867,http://purl.obolibrary.org/obo/PR_O16867,none +13.622644,PR:O22832,http://purl.obolibrary.org/obo/PR_O22832,none +13.622644,PR:O32163,http://purl.obolibrary.org/obo/PR_O32163,none +13.622644,PR:O55012,http://purl.obolibrary.org/obo/PR_O55012,none +13.622644,PR:P00697,http://purl.obolibrary.org/obo/PR_P00697,none +13.622644,PR:P04821,http://purl.obolibrary.org/obo/PR_P04821,none +13.622644,PR:P05743,http://purl.obolibrary.org/obo/PR_P05743,none +13.622644,PR:P23257,http://purl.obolibrary.org/obo/PR_P23257,none +13.622644,PR:P23321,http://purl.obolibrary.org/obo/PR_P23321,none +13.622644,PR:P24868,http://purl.obolibrary.org/obo/PR_P24868,none +13.622644,PR:P25997,http://purl.obolibrary.org/obo/PR_P25997,none +13.622644,PR:P28187,http://purl.obolibrary.org/obo/PR_P28187,none +13.622644,PR:P29505,http://purl.obolibrary.org/obo/PR_P29505,none +13.622644,PR:P29547,http://purl.obolibrary.org/obo/PR_P29547,none +13.622644,PR:P32561,http://purl.obolibrary.org/obo/PR_P32561,none +13.622644,PR:P33520,http://purl.obolibrary.org/obo/PR_P33520,none +13.622644,PR:P34343,http://purl.obolibrary.org/obo/PR_P34343,none +13.622644,PR:P34821,http://purl.obolibrary.org/obo/PR_P34821,none +13.622644,PR:P41127,http://purl.obolibrary.org/obo/PR_P41127,none +13.622644,PR:P41948,http://purl.obolibrary.org/obo/PR_P41948,none +13.622644,PR:P43534,http://purl.obolibrary.org/obo/PR_P43534,none +13.622644,PR:P50519,http://purl.obolibrary.org/obo/PR_P50519,none +13.622644,PR:P78774,http://purl.obolibrary.org/obo/PR_P78774,none +13.622644,PR:P92982,http://purl.obolibrary.org/obo/PR_P92982,none +13.622644,PR:Q05201,http://purl.obolibrary.org/obo/PR_Q05201,none +13.622644,PR:Q07468,http://purl.obolibrary.org/obo/PR_Q07468,none +13.622644,PR:Q0KHQ5,http://purl.obolibrary.org/obo/PR_Q0KHQ5,none +13.622644,PR:Q2KHM9,http://purl.obolibrary.org/obo/PR_Q2KHM9,protein moonraker (human) +13.622644,PR:Q38864,http://purl.obolibrary.org/obo/PR_Q38864,none +13.622644,PR:Q38897,http://purl.obolibrary.org/obo/PR_Q38897,none +13.622644,PR:Q6A000,http://purl.obolibrary.org/obo/PR_Q6A000,none +13.622644,PR:Q6DBW1,http://purl.obolibrary.org/obo/PR_Q6DBW1,none +13.622644,PR:Q6ZY51,http://purl.obolibrary.org/obo/PR_Q6ZY51,none +13.622644,PR:Q802G7,http://purl.obolibrary.org/obo/PR_Q802G7,none +13.622644,PR:Q84K00,http://purl.obolibrary.org/obo/PR_Q84K00,none +13.622644,PR:Q8GTR4,http://purl.obolibrary.org/obo/PR_Q8GTR4,none +13.622644,PR:Q8LPH6,http://purl.obolibrary.org/obo/PR_Q8LPH6,none +13.622644,PR:Q9C500,http://purl.obolibrary.org/obo/PR_Q9C500,none +13.622644,PR:Q9FJV5,http://purl.obolibrary.org/obo/PR_Q9FJV5,none +13.622644,PR:Q9FKA0,http://purl.obolibrary.org/obo/PR_Q9FKA0,none +13.622644,PR:Q9FPN7,http://purl.obolibrary.org/obo/PR_Q9FPN7,none +13.622644,PR:Q9LXR7,http://purl.obolibrary.org/obo/PR_Q9LXR7,none +13.622644,PR:Q9SCU7,http://purl.obolibrary.org/obo/PR_Q9SCU7,none +13.622644,PR:Q9ZPS9,http://purl.obolibrary.org/obo/PR_Q9ZPS9,none +13.622644,SO:0001317,http://purl.obolibrary.org/obo/SO_0001317,queuosine +13.622644,SO:0001383,http://purl.obolibrary.org/obo/SO_0001383,histone_binding_site +13.622644,SO:0001768,http://purl.obolibrary.org/obo/SO_0001768,fixed_variant +13.622644,SO:0001775,http://purl.obolibrary.org/obo/SO_0001775,maternal_variant +13.622644,SO:0002096,http://purl.obolibrary.org/obo/SO_0002096,short_tandem_repeat_variation +13.622644,UBERON:0001424,http://purl.obolibrary.org/obo/UBERON_0001424,ulna +13.622644,UBERON:0003330,http://purl.obolibrary.org/obo/UBERON_0003330,submucosa of rectum +13.622644,UBERON:0003898,http://purl.obolibrary.org/obo/UBERON_0003898,skeletal muscle tissue of trunk +13.622644,UBERON:0004022,http://purl.obolibrary.org/obo/UBERON_0004022,germinal neuroepithelium +13.622644,UBERON:0004677,http://purl.obolibrary.org/obo/UBERON_0004677,spinal cord gray commissure +13.622644,UBERON:0005018,http://purl.obolibrary.org/obo/UBERON_0005018,mucosa of nasal septum +13.622644,UBERON:0005371,http://purl.obolibrary.org/obo/UBERON_0005371,hippocampus stratum oriens +13.622644,UBERON:0005489,http://purl.obolibrary.org/obo/UBERON_0005489,anterior interventricular sulcus +13.622644,UBERON:0006076,http://purl.obolibrary.org/obo/UBERON_0006076,caudal region of vertebral column +13.622644,UBERON:0006616,http://purl.obolibrary.org/obo/UBERON_0006616,right external ear +13.622644,UBERON:0006801,http://purl.obolibrary.org/obo/UBERON_0006801,proximal head of humerus +13.622644,UBERON:0007603,http://purl.obolibrary.org/obo/UBERON_0007603,stratified cuboidal epithelium +13.622644,UBERON:0008188,http://purl.obolibrary.org/obo/UBERON_0008188,tendon of biceps brachii +13.622644,UBERON:0010688,http://purl.obolibrary.org/obo/UBERON_0010688,skeleton of manual acropodium +13.622644,UBERON:0010944,http://purl.obolibrary.org/obo/UBERON_0010944,posterior digastric muscle +13.622644,UBERON:0014638,http://purl.obolibrary.org/obo/UBERON_0014638,lumbar spinal cord dorsal horn +13.622644,UBERON:0015003,http://purl.obolibrary.org/obo/UBERON_0015003,ulna endochondral element +13.622644,UBERON:3001007,http://purl.obolibrary.org/obo/UBERON_3001007,body granules +13.6590116,CHEBI:140601,http://purl.obolibrary.org/obo/CHEBI_140601,fatty acid 4:0 +13.6590116,CHEBI:16038,http://purl.obolibrary.org/obo/CHEBI_16038,phosphatidylethanolamine +13.6590116,CHEBI:21601,http://purl.obolibrary.org/obo/CHEBI_21601,N-acetyl-D-hexosamine +13.6590116,CHEBI:21656,http://purl.obolibrary.org/obo/CHEBI_21656,N-acyl-hexosamine +13.6590116,CHEBI:24898,http://purl.obolibrary.org/obo/CHEBI_24898,isoleucine +13.6590116,CHEBI:35186,http://purl.obolibrary.org/obo/CHEBI_35186,terpene +13.6590116,CHEBI:35580,http://purl.obolibrary.org/obo/CHEBI_35580,N-oxide +13.6590116,CHEBI:35622,http://purl.obolibrary.org/obo/CHEBI_35622,thiazolidines +13.6590116,CHEBI:36314,http://purl.obolibrary.org/obo/CHEBI_36314,glycerophosphoethanolamine +13.6590116,CHEBI:3638,http://purl.obolibrary.org/obo/CHEBI_3638,chloroquine +13.6590116,CHEBI:3724,http://purl.obolibrary.org/obo/CHEBI_3724,citalopram hydrobromide +13.6590116,CHEBI:67137,http://purl.obolibrary.org/obo/CHEBI_67137,NMR shift reagent +13.6590116,CHEBI:7507,http://purl.obolibrary.org/obo/CHEBI_7507,neomycin +13.6590116,CL:0000569,http://purl.obolibrary.org/obo/CL_0000569,cardiac mesenchymal cell +13.6590116,CL:0002562,http://purl.obolibrary.org/obo/CL_0002562,hair germinal matrix cell +13.6590116,CL:0002582,http://purl.obolibrary.org/obo/CL_0002582,visceral preadipocyte +13.6590116,CL:0002664,http://purl.obolibrary.org/obo/CL_0002664,cardioblast +13.6590116,CL:0009003,http://purl.obolibrary.org/obo/CL_0009003,larval midgut cell +13.6590116,DRUGBANK:DB00785,http://purl.obolibrary.org/obo/DRUGBANK_DB00785,none +13.6590116,DRUGBANK:DB01031,http://purl.obolibrary.org/obo/DRUGBANK_DB01031,none +13.6590116,DRUGBANK:DB01419,http://purl.obolibrary.org/obo/DRUGBANK_DB01419,none +13.6590116,DRUGBANK:DB01567,http://purl.obolibrary.org/obo/DRUGBANK_DB01567,none +13.6590116,DRUGBANK:DB04947,http://purl.obolibrary.org/obo/DRUGBANK_DB04947,none +13.6590116,DRUGBANK:DB04969,http://purl.obolibrary.org/obo/DRUGBANK_DB04969,none +13.6590116,DRUGBANK:DB05207,http://purl.obolibrary.org/obo/DRUGBANK_DB05207,none +13.6590116,DRUGBANK:DB05724,http://purl.obolibrary.org/obo/DRUGBANK_DB05724,none +13.6590116,DRUGBANK:DB06393,http://purl.obolibrary.org/obo/DRUGBANK_DB06393,none +13.6590116,DRUGBANK:DB06734,http://purl.obolibrary.org/obo/DRUGBANK_DB06734,none +13.6590116,DRUGBANK:DB06787,http://purl.obolibrary.org/obo/DRUGBANK_DB06787,none +13.6590116,DRUGBANK:DB07669,http://purl.obolibrary.org/obo/DRUGBANK_DB07669,none +13.6590116,DRUGBANK:DB09047,http://purl.obolibrary.org/obo/DRUGBANK_DB09047,none +13.6590116,DRUGBANK:DB09461,http://purl.obolibrary.org/obo/DRUGBANK_DB09461,none +13.6590116,DRUGBANK:DB10449,http://purl.obolibrary.org/obo/DRUGBANK_DB10449,none +13.6590116,DRUGBANK:DB10695,http://purl.obolibrary.org/obo/DRUGBANK_DB10695,none +13.6590116,DRUGBANK:DB12045,http://purl.obolibrary.org/obo/DRUGBANK_DB12045,none +13.6590116,DRUGBANK:DB12064,http://purl.obolibrary.org/obo/DRUGBANK_DB12064,none +13.6590116,DRUGBANK:DB12155,http://purl.obolibrary.org/obo/DRUGBANK_DB12155,none +13.6590116,DRUGBANK:DB12222,http://purl.obolibrary.org/obo/DRUGBANK_DB12222,none +13.6590116,DRUGBANK:DB12274,http://purl.obolibrary.org/obo/DRUGBANK_DB12274,none +13.6590116,DRUGBANK:DB12323,http://purl.obolibrary.org/obo/DRUGBANK_DB12323,none +13.6590116,DRUGBANK:DB12487,http://purl.obolibrary.org/obo/DRUGBANK_DB12487,none +13.6590116,DRUGBANK:DB12743,http://purl.obolibrary.org/obo/DRUGBANK_DB12743,none +13.6590116,DRUGBANK:DB12992,http://purl.obolibrary.org/obo/DRUGBANK_DB12992,none +13.6590116,DRUGBANK:DB13039,http://purl.obolibrary.org/obo/DRUGBANK_DB13039,none +13.6590116,DRUGBANK:DB13360,http://purl.obolibrary.org/obo/DRUGBANK_DB13360,none +13.6590116,DRUGBANK:DB13442,http://purl.obolibrary.org/obo/DRUGBANK_DB13442,none +13.6590116,DRUGBANK:DB14626,http://purl.obolibrary.org/obo/DRUGBANK_DB14626,none +13.6590116,DRUGBANK:DB14663,http://purl.obolibrary.org/obo/DRUGBANK_DB14663,none +13.6590116,DRUGBANK:DB14670,http://purl.obolibrary.org/obo/DRUGBANK_DB14670,none +13.6590116,DRUGBANK:DB14707,http://purl.obolibrary.org/obo/DRUGBANK_DB14707,none +13.6590116,DRUGBANK:DB15663,http://purl.obolibrary.org/obo/DRUGBANK_DB15663,none +13.6590116,DRUGBANK:DB15979,http://purl.obolibrary.org/obo/DRUGBANK_DB15979,none +13.6590116,GO:0000079,http://purl.obolibrary.org/obo/GO_0000079,regulation of cyclin-dependent protein serine/threonine kinase activity +13.6590116,GO:0000286,http://purl.obolibrary.org/obo/GO_0000286,alanine dehydrogenase activity +13.6590116,GO:0000315,http://purl.obolibrary.org/obo/GO_0000315,organellar large ribosomal subunit +13.6590116,GO:0001408,http://purl.obolibrary.org/obo/GO_0001408,guanine nucleotide transport +13.6590116,GO:0001865,http://purl.obolibrary.org/obo/GO_0001865,NK T cell differentiation +13.6590116,GO:0001966,http://purl.obolibrary.org/obo/GO_0001966,thigmotaxis +13.6590116,GO:0002675,http://purl.obolibrary.org/obo/GO_0002675,positive regulation of acute inflammatory response +13.6590116,GO:0003992,http://purl.obolibrary.org/obo/GO_0003992,N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity +13.6590116,GO:0004328,http://purl.obolibrary.org/obo/GO_0004328,formamidase activity +13.6590116,GO:0004671,http://purl.obolibrary.org/obo/GO_0004671,protein C-terminal S-isoprenylcysteine carboxyl O-methyltransferase activity +13.6590116,GO:0005719,http://purl.obolibrary.org/obo/GO_0005719,none +13.6590116,GO:0005871,http://purl.obolibrary.org/obo/GO_0005871,kinesin complex +13.6590116,GO:0005933,http://purl.obolibrary.org/obo/GO_0005933,cellular bud +13.6590116,GO:0006042,http://purl.obolibrary.org/obo/GO_0006042,glucosamine biosynthetic process +13.6590116,GO:0006231,http://purl.obolibrary.org/obo/GO_0006231,dTMP biosynthetic process +13.6590116,GO:0006383,http://purl.obolibrary.org/obo/GO_0006383,transcription by RNA polymerase III +13.6590116,GO:0008331,http://purl.obolibrary.org/obo/GO_0008331,high voltage-gated calcium channel activity +13.6590116,GO:0008692,http://purl.obolibrary.org/obo/GO_0008692,3-hydroxybutyryl-CoA epimerase activity +13.6590116,GO:0008812,http://purl.obolibrary.org/obo/GO_0008812,choline dehydrogenase activity +13.6590116,GO:0009514,http://purl.obolibrary.org/obo/GO_0009514,glyoxysome +13.6590116,GO:0009759,http://purl.obolibrary.org/obo/GO_0009759,indole glucosinolate biosynthetic process +13.6590116,GO:0014743,http://purl.obolibrary.org/obo/GO_0014743,regulation of muscle hypertrophy +13.6590116,GO:0015627,http://purl.obolibrary.org/obo/GO_0015627,type II protein secretion system complex +13.6590116,GO:0015722,http://purl.obolibrary.org/obo/GO_0015722,canalicular bile acid transport +13.6590116,GO:0016516,http://purl.obolibrary.org/obo/GO_0016516,interleukin-4 receptor complex +13.6590116,GO:0016752,http://purl.obolibrary.org/obo/GO_0016752,sinapoyltransferase activity +13.6590116,GO:0016862,http://purl.obolibrary.org/obo/GO_0016862,"intramolecular oxidoreductase activity, interconverting keto- and enol-groups" +13.6590116,GO:0017108,http://purl.obolibrary.org/obo/GO_0017108,5'-flap endonuclease activity +13.6590116,GO:0018812,http://purl.obolibrary.org/obo/GO_0018812,3-hydroxyacyl-CoA dehydratase activity +13.6590116,GO:0018901,http://purl.obolibrary.org/obo/GO_0018901,"2,4-dichlorophenoxyacetic acid metabolic process" +13.6590116,GO:0019643,http://purl.obolibrary.org/obo/GO_0019643,reductive tricarboxylic acid cycle +13.6590116,GO:0019856,http://purl.obolibrary.org/obo/GO_0019856,pyrimidine nucleobase biosynthetic process +13.6590116,GO:0019907,http://purl.obolibrary.org/obo/GO_0019907,cyclin-dependent protein kinase activating kinase holoenzyme complex +13.6590116,GO:0021511,http://purl.obolibrary.org/obo/GO_0021511,spinal cord patterning +13.6590116,GO:0030152,http://purl.obolibrary.org/obo/GO_0030152,bacteriocin biosynthetic process +13.6590116,GO:0030158,http://purl.obolibrary.org/obo/GO_0030158,protein xylosyltransferase activity +13.6590116,GO:0031082,http://purl.obolibrary.org/obo/GO_0031082,BLOC complex +13.6590116,GO:0032106,http://purl.obolibrary.org/obo/GO_0032106,positive regulation of response to extracellular stimulus +13.6590116,GO:0032109,http://purl.obolibrary.org/obo/GO_0032109,positive regulation of response to nutrient levels +13.6590116,GO:0033523,http://purl.obolibrary.org/obo/GO_0033523,histone H2B ubiquitination +13.6590116,GO:0033791,http://purl.obolibrary.org/obo/GO_0033791,"3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanoyl-CoA 24-hydroxylase activity" +13.6590116,GO:0033944,http://purl.obolibrary.org/obo/GO_0033944,beta-galactofuranosidase activity +13.6590116,GO:0034072,http://purl.obolibrary.org/obo/GO_0034072,squalene cyclase activity +13.6590116,GO:0035337,http://purl.obolibrary.org/obo/GO_0035337,fatty-acyl-CoA metabolic process +13.6590116,GO:0035987,http://purl.obolibrary.org/obo/GO_0035987,endodermal cell differentiation +13.6590116,GO:0035989,http://purl.obolibrary.org/obo/GO_0035989,tendon development +13.6590116,GO:0036325,http://purl.obolibrary.org/obo/GO_0036325,vascular endothelial growth factor receptor-3 signaling pathway +13.6590116,GO:0036401,http://purl.obolibrary.org/obo/GO_0036401,pyrokinin receptor activity +13.6590116,GO:0036453,http://purl.obolibrary.org/obo/GO_0036453,transitive RNA interference +13.6590116,GO:0036484,http://purl.obolibrary.org/obo/GO_0036484,trunk neural crest cell migration +13.6590116,GO:0042697,http://purl.obolibrary.org/obo/GO_0042697,menopause +13.6590116,GO:0043768,http://purl.obolibrary.org/obo/GO_0043768,S-ribosylhomocysteine lyase activity +13.6590116,GO:0043880,http://purl.obolibrary.org/obo/GO_0043880,crotonyl-CoA reductase activity +13.6590116,GO:0043987,http://purl.obolibrary.org/obo/GO_0043987,histone H3-S10 phosphorylation +13.6590116,GO:0045168,http://purl.obolibrary.org/obo/GO_0045168,cell-cell signaling involved in cell fate commitment +13.6590116,GO:0045461,http://purl.obolibrary.org/obo/GO_0045461,sterigmatocystin biosynthetic process +13.6590116,GO:0045507,http://purl.obolibrary.org/obo/GO_0045507,interleukin-25 receptor activity +13.6590116,GO:0046090,http://purl.obolibrary.org/obo/GO_0046090,deoxyadenosine metabolic process +13.6590116,GO:0046126,http://purl.obolibrary.org/obo/GO_0046126,pyrimidine deoxyribonucleoside biosynthetic process +13.6590116,GO:0046224,http://purl.obolibrary.org/obo/GO_0046224,bacteriocin metabolic process +13.6590116,GO:0046293,http://purl.obolibrary.org/obo/GO_0046293,formaldehyde biosynthetic process +13.6590116,GO:0046484,http://purl.obolibrary.org/obo/GO_0046484,oxazole or thiazole metabolic process +13.6590116,GO:0046522,http://purl.obolibrary.org/obo/GO_0046522,S-methyl-5-thioribose kinase activity +13.6590116,GO:0047143,http://purl.obolibrary.org/obo/GO_0047143,chlorate reductase activity +13.6590116,GO:0047362,http://purl.obolibrary.org/obo/GO_0047362,thiosulfate-dithiol sulfurtransferase activity +13.6590116,GO:0050040,http://purl.obolibrary.org/obo/GO_0050040,lactate 2-monooxygenase activity +13.6590116,GO:0050211,http://purl.obolibrary.org/obo/GO_0050211,procollagen galactosyltransferase activity +13.6590116,GO:0050291,http://purl.obolibrary.org/obo/GO_0050291,sphingosine N-acyltransferase activity +13.6590116,GO:0050358,http://purl.obolibrary.org/obo/GO_0050358,tropinone reductase activity +13.6590116,GO:0051306,http://purl.obolibrary.org/obo/GO_0051306,mitotic sister chromatid separation +13.6590116,GO:0051329,http://purl.obolibrary.org/obo/GO_0051329,mitotic interphase +13.6590116,GO:0052838,http://purl.obolibrary.org/obo/GO_0052838,thiazole metabolic process +13.6590116,GO:0061520,http://purl.obolibrary.org/obo/GO_0061520,Langerhans cell differentiation +13.6590116,GO:0070818,http://purl.obolibrary.org/obo/GO_0070818,protoporphyrinogen oxidase activity +13.6590116,GO:0072546,http://purl.obolibrary.org/obo/GO_0072546,EMC complex +13.6590116,GO:0072652,http://purl.obolibrary.org/obo/GO_0072652,none +13.6590116,GO:0080145,http://purl.obolibrary.org/obo/GO_0080145,cysteine homeostasis +13.6590116,GO:0090092,http://purl.obolibrary.org/obo/GO_0090092,regulation of transmembrane receptor protein serine/threonine kinase signaling pathway +13.6590116,GO:0097264,http://purl.obolibrary.org/obo/GO_0097264,self proteolysis +13.6590116,GO:1901559,http://purl.obolibrary.org/obo/GO_1901559,response to ribavirin +13.6590116,GO:1904402,http://purl.obolibrary.org/obo/GO_1904402,response to nocodazole +13.6590116,GO:1990011,http://purl.obolibrary.org/obo/GO_1990011,laminated body +13.6590116,GO:1990680,http://purl.obolibrary.org/obo/GO_1990680,response to melanocyte-stimulating hormone +13.6590116,GO:2000249,http://purl.obolibrary.org/obo/GO_2000249,regulation of actin cytoskeleton reorganization +13.6590116,GO:2001088,http://purl.obolibrary.org/obo/GO_2001088,trisaccharide transport +13.6590116,GO:2001291,http://purl.obolibrary.org/obo/GO_2001291,codeine metabolic process +13.6590116,HP:0000027,http://purl.obolibrary.org/obo/HP_0000027,Azoospermia +13.6590116,HP:0000940,http://purl.obolibrary.org/obo/HP_0000940,Abnormal diaphysis morphology +13.6590116,HP:0003112,http://purl.obolibrary.org/obo/HP_0003112,Abnormal circulating amino acid concentration +13.6590116,HP:0006487,http://purl.obolibrary.org/obo/HP_0006487,Bowing of the long bones +13.6590116,HP:0033107,http://purl.obolibrary.org/obo/HP_0033107,Abnormal circulating proteinogenic amino acid concentration +13.6590116,MONDO:0000320,http://purl.obolibrary.org/obo/MONDO_0000320,glandular tularemia +13.6590116,MONDO:0000459,http://purl.obolibrary.org/obo/MONDO_0000459,mesenchymal glioblastoma +13.6590116,MONDO:0001016,http://purl.obolibrary.org/obo/MONDO_0001016,epididymis cancer +13.6590116,MONDO:0001756,http://purl.obolibrary.org/obo/MONDO_0001756,frontal sinus cancer +13.6590116,MONDO:0002061,http://purl.obolibrary.org/obo/MONDO_0002061,intraductal papillary breast neoplasm +13.6590116,MONDO:0002548,http://purl.obolibrary.org/obo/MONDO_0002548,cellular schwannoma +13.6590116,MONDO:0002949,http://purl.obolibrary.org/obo/MONDO_0002949,morpheaform basal cell carcinoma +13.6590116,MONDO:0003256,http://purl.obolibrary.org/obo/MONDO_0003256,neurohypophysis granular cell tumor +13.6590116,MONDO:0004125,http://purl.obolibrary.org/obo/MONDO_0004125,rectum leiomyoma +13.6590116,MONDO:0004671,http://purl.obolibrary.org/obo/MONDO_0004671,penis carcinoma in situ +13.6590116,MONDO:0004932,http://purl.obolibrary.org/obo/MONDO_0004932,null-cell leukemia +13.6590116,MONDO:0006061,http://purl.obolibrary.org/obo/MONDO_0006061,cervical artery dissection +13.6590116,MONDO:0006199,http://purl.obolibrary.org/obo/MONDO_0006199,endometrial undifferentiated carcinoma +13.6590116,MONDO:0006654,http://purl.obolibrary.org/obo/MONDO_0006654,anthracosis +13.6590116,MONDO:0006713,http://purl.obolibrary.org/obo/MONDO_0006713,corneal neovascularization +13.6590116,MONDO:0007086,http://purl.obolibrary.org/obo/MONDO_0007086,autosomal dominant Alport syndrome +13.6590116,MONDO:0007201,http://purl.obolibrary.org/obo/MONDO_0007201,"blepharophimosis, ptosis, and epicanthus inversus syndrome" +13.6590116,MONDO:0007296,http://purl.obolibrary.org/obo/MONDO_0007296,spinocerebellar ataxia type 31 +13.6590116,MONDO:0008295,http://purl.obolibrary.org/obo/MONDO_0008295,sporadic porphyria cutanea tarda +13.6590116,MONDO:0008662,http://purl.obolibrary.org/obo/MONDO_0008662,autosomal dominant vitreoretinochoroidopathy +13.6590116,MONDO:0008879,http://purl.obolibrary.org/obo/MONDO_0008879,Bowen-Conradi syndrome +13.6590116,MONDO:0008918,http://purl.obolibrary.org/obo/MONDO_0008918,carnitine-acylcarnitine translocase deficiency +13.6590116,MONDO:0009134,http://purl.obolibrary.org/obo/MONDO_0009134,congenital dyserythropoietic anemia type 2 +13.6590116,MONDO:0009239,http://purl.obolibrary.org/obo/MONDO_0009239,hypogonadotropic hypogonadism 24 without anosmia +13.6590116,MONDO:0009261,http://purl.obolibrary.org/obo/MONDO_0009261,GM1 gangliosidosis type 2 +13.6590116,MONDO:0009299,http://purl.obolibrary.org/obo/MONDO_0009299,46 XX gonadal dysgenesis +13.6590116,MONDO:0010201,http://purl.obolibrary.org/obo/MONDO_0010201,Winchester syndrome +13.6590116,MONDO:0010524,http://purl.obolibrary.org/obo/MONDO_0010524,X-linked sideroblastic anemia with ataxia +13.6590116,MONDO:0010759,http://purl.obolibrary.org/obo/MONDO_0010759,Wildervanck syndrome +13.6590116,MONDO:0010939,http://purl.obolibrary.org/obo/MONDO_0010939,low phospholipid associated cholelithiasis +13.6590116,MONDO:0011136,http://purl.obolibrary.org/obo/MONDO_0011136,Quebec platelet disorder +13.6590116,MONDO:0012344,http://purl.obolibrary.org/obo/MONDO_0012344,Alzheimer disease 11 +13.6590116,MONDO:0014421,http://purl.obolibrary.org/obo/MONDO_0014421,glucocorticoid resistance +13.6590116,MONDO:0015088,http://purl.obolibrary.org/obo/MONDO_0015088,autosomal dominant pure spastic paraplegia +13.6590116,MONDO:0015448,http://purl.obolibrary.org/obo/MONDO_0015448,mitochondrial complex III deficiency +13.6590116,MONDO:0015629,http://purl.obolibrary.org/obo/MONDO_0015629,von Willebrand disease type 2B +13.6590116,MONDO:0015739,http://purl.obolibrary.org/obo/MONDO_0015739,adult-onset nemaline myopathy +13.6590116,MONDO:0016266,http://purl.obolibrary.org/obo/MONDO_0016266,squamous cell carcinoma of the corpus uteri +13.6590116,MONDO:0016588,http://purl.obolibrary.org/obo/MONDO_0016588,infantile mercury poisoning +13.6590116,MONDO:0017338,http://purl.obolibrary.org/obo/MONDO_0017338,fatal multiple mitochondrial dysfunctions syndrome +13.6590116,MONDO:0017906,http://purl.obolibrary.org/obo/MONDO_0017906,amyloidosis cutis dyschromia +13.6590116,MONDO:0017923,http://purl.obolibrary.org/obo/MONDO_0017923,multiple synostoses syndrome +13.6590116,MONDO:0018924,http://purl.obolibrary.org/obo/MONDO_0018924,"microphthalmia, Lenz type" +13.6590116,MONDO:0019419,http://purl.obolibrary.org/obo/MONDO_0019419,X-linked intellectual disability-macrocephaly-macroorchidism syndrome +13.6590116,MONDO:0019675,http://purl.obolibrary.org/obo/MONDO_0019675,spondyloepimetaphyseal dysplasia with joint laxity +13.6590116,MONDO:0019732,http://purl.obolibrary.org/obo/MONDO_0019732,ALys amyloidosis +13.6590116,MONDO:0020337,http://purl.obolibrary.org/obo/MONDO_0020337,congenital dyserythropoietic anemia type 1 +13.6590116,MONDO:0020493,http://purl.obolibrary.org/obo/MONDO_0020493,Haddad syndrome +13.6590116,MONDO:0021097,http://purl.obolibrary.org/obo/MONDO_0021097,intraductal breast papilloma +13.6590116,MONDO:0025417,http://purl.obolibrary.org/obo/MONDO_0025417,fowlpox +13.6590116,MONDO:0041186,http://purl.obolibrary.org/obo/MONDO_0041186,Rowell syndrome +13.6590116,MONDO:0042451,http://purl.obolibrary.org/obo/MONDO_0042451,endomyometritis +13.6590116,MONDO:0044768,http://purl.obolibrary.org/obo/MONDO_0044768,vagus nerve paraganglioma +13.6590116,NCBITaxon:10744,http://purl.obolibrary.org/obo/NCBITaxon_10744,none +13.6590116,NCBITaxon:117982,http://purl.obolibrary.org/obo/NCBITaxon_117982,none +13.6590116,NCBITaxon:12180,http://purl.obolibrary.org/obo/NCBITaxon_12180,none +13.6590116,NCBITaxon:12241,http://purl.obolibrary.org/obo/NCBITaxon_12241,none +13.6590116,NCBITaxon:12436,http://purl.obolibrary.org/obo/NCBITaxon_12436,none +13.6590116,NCBITaxon:134362,http://purl.obolibrary.org/obo/NCBITaxon_134362,Capnodiales +13.6590116,NCBITaxon:140695,http://purl.obolibrary.org/obo/NCBITaxon_140695,none +13.6590116,NCBITaxon:140701,http://purl.obolibrary.org/obo/NCBITaxon_140701,none +13.6590116,NCBITaxon:147548,http://purl.obolibrary.org/obo/NCBITaxon_147548,none +13.6590116,NCBITaxon:1648030,http://purl.obolibrary.org/obo/NCBITaxon_1648030,Triticinae +13.6590116,NCBITaxon:170946,http://purl.obolibrary.org/obo/NCBITaxon_170946,none +13.6590116,NCBITaxon:186537,http://purl.obolibrary.org/obo/NCBITaxon_186537,Marburgvirus +13.6590116,NCBITaxon:191217,http://purl.obolibrary.org/obo/NCBITaxon_191217,none +13.6590116,NCBITaxon:196400,http://purl.obolibrary.org/obo/NCBITaxon_196400,none +13.6590116,NCBITaxon:27417,http://purl.obolibrary.org/obo/NCBITaxon_27417,none +13.6590116,NCBITaxon:291294,http://purl.obolibrary.org/obo/NCBITaxon_291294,none +13.6590116,NCBITaxon:29271,http://purl.obolibrary.org/obo/NCBITaxon_29271,none +13.6590116,NCBITaxon:30043,http://purl.obolibrary.org/obo/NCBITaxon_30043,none +13.6590116,NCBITaxon:338212,http://purl.obolibrary.org/obo/NCBITaxon_338212,none +13.6590116,NCBITaxon:34383,http://purl.obolibrary.org/obo/NCBITaxon_34383,none +13.6590116,NCBITaxon:35275,http://purl.obolibrary.org/obo/NCBITaxon_35275,none +13.6590116,NCBITaxon:35566,http://purl.obolibrary.org/obo/NCBITaxon_35566,none +13.6590116,NCBITaxon:3568,http://purl.obolibrary.org/obo/NCBITaxon_3568,none +13.6590116,NCBITaxon:400053,http://purl.obolibrary.org/obo/NCBITaxon_400053,Sylvaemus group +13.6590116,NCBITaxon:46619,http://purl.obolibrary.org/obo/NCBITaxon_46619,none +13.6590116,NCBITaxon:5719,http://purl.obolibrary.org/obo/NCBITaxon_5719,Parabasalia +13.6590116,NCBITaxon:5890,http://purl.obolibrary.org/obo/NCBITaxon_5890,none +13.6590116,NCBITaxon:6994,http://purl.obolibrary.org/obo/NCBITaxon_6994,none +13.6590116,NCBITaxon:724,http://purl.obolibrary.org/obo/NCBITaxon_724,Haemophilus +13.6590116,NCBITaxon:9154,http://purl.obolibrary.org/obo/NCBITaxon_9154,none +13.6590116,NCBITaxon:9157,http://purl.obolibrary.org/obo/NCBITaxon_9157,none +13.6590116,NCBITaxon:9435,http://purl.obolibrary.org/obo/NCBITaxon_9435,none +13.6590116,PR:000000683,http://purl.obolibrary.org/obo/PR_000000683,voltage-gated potassium channel alpha subunit KCNA4 +13.6590116,PR:000001101,http://purl.obolibrary.org/obo/PR_000001101,5-hydroxytryptamine receptor 5 +13.6590116,PR:000001469,http://purl.obolibrary.org/obo/PR_000001469,interleukin-28A +13.6590116,PR:000001689,http://purl.obolibrary.org/obo/PR_000001689,none +13.6590116,PR:000001716,http://purl.obolibrary.org/obo/PR_000001716,none +13.6590116,PR:000001983,http://purl.obolibrary.org/obo/PR_000001983,ATP-sensitive inward rectifier potassium channel 15 +13.6590116,PR:000002014,http://purl.obolibrary.org/obo/PR_000002014,MHC class II histocompatibility antigen alpha chain DQA2 +13.6590116,PR:000002148,http://purl.obolibrary.org/obo/PR_000002148,none +13.6590116,PR:000002149,http://purl.obolibrary.org/obo/PR_000002149,CD14 molecule isoform 1 cleaved 2 GPI-anchored form +13.6590116,PR:000003840,http://purl.obolibrary.org/obo/PR_000003840,lysophosphatidylcholine acyltransferase +13.6590116,PR:000003939,http://purl.obolibrary.org/obo/PR_000003939,"GDP-Man:Man(3)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase" +13.6590116,PR:000004256,http://purl.obolibrary.org/obo/PR_000004256,Rho guanine nucleotide exchange factor 3 +13.6590116,PR:000004665,http://purl.obolibrary.org/obo/PR_000004665,Bardet-Biedl syndrome 12 protein +13.6590116,PR:000004798,http://purl.obolibrary.org/obo/PR_000004798,"3'(2'),5'-bisphosphate nucleotidase 1" +13.6590116,PR:000004847,http://purl.obolibrary.org/obo/PR_000004847,protein BTG4 +13.6590116,PR:000004872,http://purl.obolibrary.org/obo/PR_000004872,nuclear nucleic acid-binding protein C1D +13.6590116,PR:000005077,http://purl.obolibrary.org/obo/PR_000005077,cerebellin-4 +13.6590116,PR:000005164,http://purl.obolibrary.org/obo/PR_000005164,CD2 cytoplasmic tail-binding protein 2 +13.6590116,PR:000005243,http://purl.obolibrary.org/obo/PR_000005243,cadherin-related family member 3 +13.6590116,PR:000005314,http://purl.obolibrary.org/obo/PR_000005314,cat eye syndrome critical region protein 2 +13.6590116,PR:000005352,http://purl.obolibrary.org/obo/PR_000005352,centrosomal protein of 57 kDa +13.6590116,PR:000005368,http://purl.obolibrary.org/obo/PR_000005368,carboxylesterase 5A +13.6590116,PR:000005587,http://purl.obolibrary.org/obo/PR_000005587,dual specificity protein kinase CLK4 +13.6590116,PR:000005681,http://purl.obolibrary.org/obo/PR_000005681,cordon-bleu protein-like 1 +13.6590116,PR:000006044,http://purl.obolibrary.org/obo/PR_000006044,CUE domain-containing protein 2 +13.6590116,PR:000006191,http://purl.obolibrary.org/obo/PR_000006191,none +13.6590116,PR:000006361,http://purl.obolibrary.org/obo/PR_000006361,ATP-dependent RNA helicase DDX25 +13.6590116,PR:000006373,http://purl.obolibrary.org/obo/PR_000006373,"2,4-dienoyl-CoA reductase [(3E)-enoyl-CoA-producing], mitochondrial" +13.6590116,PR:000006439,http://purl.obolibrary.org/obo/PR_000006439,protein DGCR6 +13.6590116,PR:000006526,http://purl.obolibrary.org/obo/PR_000006526,"dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial" +13.6590116,PR:000006546,http://purl.obolibrary.org/obo/PR_000006546,doublesex- and mab-3-related transcription factor A2 +13.6590116,PR:000006631,http://purl.obolibrary.org/obo/PR_000006631,docking protein 4 +13.6590116,PR:000006710,http://purl.obolibrary.org/obo/PR_000006710,kinetochore-associated protein DSN1 +13.6590116,PR:000006789,http://purl.obolibrary.org/obo/PR_000006789,"dynein assembly factor 4, axonemal" +13.6590116,PR:000006986,http://purl.obolibrary.org/obo/PR_000006986,eukaryotic initiation factor 4A-I +13.6590116,PR:000007180,http://purl.obolibrary.org/obo/PR_000007180,erlin-1 +13.6590116,PR:000007477,http://purl.obolibrary.org/obo/PR_000007477,"FYVE, RhoGEF and PH domain-containing protein 5" +13.6590116,PR:000007587,http://purl.obolibrary.org/obo/PR_000007587,fibronectin type III domain-containing protein 1 +13.6590116,PR:000007648,http://purl.obolibrary.org/obo/PR_000007648,forkhead box protein R2 +13.6590116,PR:000007876,http://purl.obolibrary.org/obo/PR_000007876,guanylate-binding protein 3 +13.6590116,PR:000007905,http://purl.obolibrary.org/obo/PR_000007905,"beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 3" +13.6590116,PR:000007955,http://purl.obolibrary.org/obo/PR_000007955,gamma-glutamylcyclotransferase +13.6590116,PR:000008046,http://purl.obolibrary.org/obo/PR_000008046,glycine receptor subunit beta +13.6590116,PR:000008206,http://purl.obolibrary.org/obo/PR_000008206,G-protein-signaling modulator 3 +13.6590116,PR:000008586,http://purl.obolibrary.org/obo/PR_000008586,histone H2B type 1-A +13.6590116,PR:000008766,http://purl.obolibrary.org/obo/PR_000008766,heparan-sulfate 6-O-sulfotransferase 2 +13.6590116,PR:000008783,http://purl.obolibrary.org/obo/PR_000008783,3-keto-steroid reductase/17-beta-hydroxysteroid dehydrogenase 7 +13.6590116,PR:000008899,http://purl.obolibrary.org/obo/PR_000008899,immediate early response gene 5 protein +13.6590116,PR:000009049,http://purl.obolibrary.org/obo/PR_000009049,phosphatidylinositol polyphosphate 5-phosphatase type IV +13.6590116,PR:000009350,http://purl.obolibrary.org/obo/PR_000009350,kinesin light chain 2 +13.6590116,PR:000009804,http://purl.obolibrary.org/obo/PR_000009804,leukocyte immunoglobulin-like receptor subfamily A member 2 +13.6590116,PR:000009958,http://purl.obolibrary.org/obo/PR_000009958,protein LSM14 homolog A +13.6590116,PR:000010234,http://purl.obolibrary.org/obo/PR_000010234,"methylcrotonoyl-CoA carboxylase beta chain, mitochondrial" +13.6590116,PR:000010262,http://purl.obolibrary.org/obo/PR_000010262,MAM domain-containing glycosylphosphatidylinositol anchor protein 2 +13.6590116,PR:000010318,http://purl.obolibrary.org/obo/PR_000010318,homeobox protein Meis3 +13.6590116,PR:000010455,http://purl.obolibrary.org/obo/PR_000010455,promotilin +13.6590116,PR:000010516,http://purl.obolibrary.org/obo/PR_000010516,2-acylglycerol O-acyltransferase 2 +13.6590116,PR:000010763,http://purl.obolibrary.org/obo/PR_000010763,mucin-19 +13.6590116,PR:000011085,http://purl.obolibrary.org/obo/PR_000011085,"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial" +13.6590116,PR:000011336,http://purl.obolibrary.org/obo/PR_000011336,homeobox protein notochord +13.6590116,PR:000011418,http://purl.obolibrary.org/obo/PR_000011418,nuclear receptor-binding protein +13.6590116,PR:000011451,http://purl.obolibrary.org/obo/PR_000011451,"5'(3')-deoxyribonucleotidase, cytosolic type" +13.6590116,PR:000011454,http://purl.obolibrary.org/obo/PR_000011454,cytosolic purine 5'-nucleotidase +13.6590116,PR:000011553,http://purl.obolibrary.org/obo/PR_000011553,none +13.6590116,PR:000012074,http://purl.obolibrary.org/obo/PR_000012074,proton channel OTOP1 +13.6590116,PR:000012344,http://purl.obolibrary.org/obo/PR_000012344,protocadherin-11 Y-linked +13.6590116,PR:000012410,http://purl.obolibrary.org/obo/PR_000012410,Polycomb group RING finger protein 1 +13.6590116,PR:000012514,http://purl.obolibrary.org/obo/PR_000012514,"[pyruvate dehydrogenase [acetyl-transferring]]-phosphatase 2, mitochondrial" +13.6590116,PR:000013155,http://purl.obolibrary.org/obo/PR_000013155,serine/threonine-protein phosphatase 4 regulatory subunit 2 +13.6590116,PR:000013180,http://purl.obolibrary.org/obo/PR_000013180,PR domain zinc finger protein 10 +13.6590116,PR:000013181,http://purl.obolibrary.org/obo/PR_000013181,PR domain zinc finger protein 12 +13.6590116,PR:000013375,http://purl.obolibrary.org/obo/PR_000013375,proteasome subunit beta type-7 +13.6590116,PR:000013602,http://purl.obolibrary.org/obo/PR_000013602,Ras-related protein Rab-28 +13.6590116,PR:000013731,http://purl.obolibrary.org/obo/PR_000013731,Rap guanine nucleotide exchange factor 6 +13.6590116,PR:000013823,http://purl.obolibrary.org/obo/PR_000013823,retinoid-binding protein 7 +13.6590116,PR:000013828,http://purl.obolibrary.org/obo/PR_000013828,roquin-1 +13.6590116,PR:000013926,http://purl.obolibrary.org/obo/PR_000013926,transcription factor RFX4 +13.6590116,PR:000013986,http://purl.obolibrary.org/obo/PR_000013986,mitochondrial Rho GTPase 2 +13.6590116,PR:000014015,http://purl.obolibrary.org/obo/PR_000014015,Ras and Rab interactor 3 +13.6590116,PR:000014199,http://purl.obolibrary.org/obo/PR_000014199,60S ribosomal protein L19 +13.6590116,PR:000014206,http://purl.obolibrary.org/obo/PR_000014206,60S ribosomal protein L26 +13.6590116,PR:000014264,http://purl.obolibrary.org/obo/PR_000014264,40S ribosomal protein S20 +13.6590116,PR:000014464,http://purl.obolibrary.org/obo/PR_000014464,SAM and SH3 domain-containing protein 3 +13.6590116,PR:000014727,http://purl.obolibrary.org/obo/PR_000014727,seizure protein 6 +13.6590116,PR:000014803,http://purl.obolibrary.org/obo/PR_000014803,N-sulphoglucosamine sulphohydrolase +13.6590116,PR:000014954,http://purl.obolibrary.org/obo/PR_000014954,monocarboxylate transporter 7 +13.6590116,PR:000015546,http://purl.obolibrary.org/obo/PR_000015546,protein spire homolog 1 +13.6590116,PR:000015850,http://purl.obolibrary.org/obo/PR_000015850,synaptic vesicle glycoprotein 2B +13.6590116,PR:000015859,http://purl.obolibrary.org/obo/PR_000015859,synaptonemal complex central element protein 1 +13.6590116,PR:000016380,http://purl.obolibrary.org/obo/PR_000016380,tolloid-like protein 2 +13.6590116,PR:000016448,http://purl.obolibrary.org/obo/PR_000016448,transmembrane protease serine 11A +13.6590116,PR:000016750,http://purl.obolibrary.org/obo/PR_000016750,tetraspanin-4 +13.6590116,PR:000017155,http://purl.obolibrary.org/obo/PR_000017155,ubiquitin carboxyl-terminal hydrolase 17-like protein 24 +13.6590116,PR:000017183,http://purl.obolibrary.org/obo/PR_000017183,ubiquitin carboxyl-terminal hydrolase 44 +13.6590116,PR:000017292,http://purl.obolibrary.org/obo/PR_000017292,transcription cofactor vestigial-like protein 3 +13.6590116,PR:000017410,http://purl.obolibrary.org/obo/PR_000017410,WAP four-disulfide core domain protein 5 +13.6590116,PR:000022145,http://purl.obolibrary.org/obo/PR_000022145,none +13.6590116,PR:000022336,http://purl.obolibrary.org/obo/PR_000022336,none +13.6590116,PR:000022375,http://purl.obolibrary.org/obo/PR_000022375,none +13.6590116,PR:000022560,http://purl.obolibrary.org/obo/PR_000022560,none +13.6590116,PR:000022720,http://purl.obolibrary.org/obo/PR_000022720,none +13.6590116,PR:000023198,http://purl.obolibrary.org/obo/PR_000023198,none +13.6590116,PR:000023210,http://purl.obolibrary.org/obo/PR_000023210,none +13.6590116,PR:000023317,http://purl.obolibrary.org/obo/PR_000023317,none +13.6590116,PR:000023406,http://purl.obolibrary.org/obo/PR_000023406,none +13.6590116,PR:000023661,http://purl.obolibrary.org/obo/PR_000023661,orotidine 5'-phosphate decarboxylase +13.6590116,PR:000023699,http://purl.obolibrary.org/obo/PR_000023699,none +13.6590116,PR:000023717,http://purl.obolibrary.org/obo/PR_000023717,none +13.6590116,PR:000025020,http://purl.obolibrary.org/obo/PR_000025020,interferon omega +13.6590116,PR:000026147,http://purl.obolibrary.org/obo/PR_000026147,small subunit of serine palmitoyltransferase +13.6590116,PR:000026149,http://purl.obolibrary.org/obo/PR_000026149,serine palmitoyltransferase small subunit B +13.6590116,PR:000026998,http://purl.obolibrary.org/obo/PR_000026998,microtubule-associated protein tau isoform Tau-E +13.6590116,PR:000029847,http://purl.obolibrary.org/obo/PR_000029847,probable ubiquitin carboxyl-terminal hydrolase FAF-Y +13.6590116,PR:000029898,http://purl.obolibrary.org/obo/PR_000029898,none +13.6590116,PR:000030255,http://purl.obolibrary.org/obo/PR_000030255,probable ATP-dependent RNA helicase DDX46 +13.6590116,PR:000031027,http://purl.obolibrary.org/obo/PR_000031027,nesprin-3 +13.6590116,PR:000031144,http://purl.obolibrary.org/obo/PR_000031144,BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 1 +13.6590116,PR:000031155,http://purl.obolibrary.org/obo/PR_000031155,leucine-rich repeat LGI family member 3 +13.6590116,PR:000031308,http://purl.obolibrary.org/obo/PR_000031308,ATP-binding cassette sub-family A member 13 +13.6590116,PR:000031718,http://purl.obolibrary.org/obo/PR_000031718,extracellular serine/threonine protein kinase Fam20C +13.6590116,PR:000031934,http://purl.obolibrary.org/obo/PR_000031934,protein PAT1 homolog 2 +13.6590116,PR:000032431,http://purl.obolibrary.org/obo/PR_000032431,DNA dC->dU-editing enzyme APOBEC-3D +13.6590116,PR:000032577,http://purl.obolibrary.org/obo/PR_000032577,transcription factor Dp family member 3 +13.6590116,PR:000032992,http://purl.obolibrary.org/obo/PR_000032992,none +13.6590116,PR:O14049,http://purl.obolibrary.org/obo/PR_O14049,none +13.6590116,PR:O21036,http://purl.obolibrary.org/obo/PR_O21036,none +13.6590116,PR:O23184,http://purl.obolibrary.org/obo/PR_O23184,none +13.6590116,PR:O82659,http://purl.obolibrary.org/obo/PR_O82659,none +13.6590116,PR:O88514,http://purl.obolibrary.org/obo/PR_O88514,none +13.6590116,PR:P07250,http://purl.obolibrary.org/obo/PR_P07250,none +13.6590116,PR:P10810,http://purl.obolibrary.org/obo/PR_P10810,none +13.6590116,PR:P36597,http://purl.obolibrary.org/obo/PR_P36597,none +13.6590116,PR:P38988,http://purl.obolibrary.org/obo/PR_P38988,none +13.6590116,PR:P39875,http://purl.obolibrary.org/obo/PR_P39875,none +13.6590116,PR:P53855,http://purl.obolibrary.org/obo/PR_P53855,none +13.6590116,PR:P92981,http://purl.obolibrary.org/obo/PR_P92981,none +13.6590116,PR:Q06505,http://purl.obolibrary.org/obo/PR_Q06505,none +13.6590116,PR:Q08BP9,http://purl.obolibrary.org/obo/PR_Q08BP9,none +13.6590116,PR:Q10576,http://purl.obolibrary.org/obo/PR_Q10576,none +13.6590116,PR:Q38937,http://purl.obolibrary.org/obo/PR_Q38937,none +13.6590116,PR:Q39258,http://purl.obolibrary.org/obo/PR_Q39258,none +13.6590116,PR:Q59DY5,http://purl.obolibrary.org/obo/PR_Q59DY5,none +13.6590116,PR:Q59SU1,http://purl.obolibrary.org/obo/PR_Q59SU1,none +13.6590116,PR:Q67Y93,http://purl.obolibrary.org/obo/PR_Q67Y93,none +13.6590116,PR:Q86B87,http://purl.obolibrary.org/obo/PR_Q86B87,none +13.6590116,PR:Q8GY55,http://purl.obolibrary.org/obo/PR_Q8GY55,none +13.6590116,PR:Q8K3M6,http://purl.obolibrary.org/obo/PR_Q8K3M6,none +13.6590116,PR:Q8VZ87,http://purl.obolibrary.org/obo/PR_Q8VZ87,none +13.6590116,PR:Q99MD6,http://purl.obolibrary.org/obo/PR_Q99MD6,none +13.6590116,PR:Q9C9B2,http://purl.obolibrary.org/obo/PR_Q9C9B2,none +13.6590116,PR:Q9FJ93,http://purl.obolibrary.org/obo/PR_Q9FJ93,none +13.6590116,PR:Q9FNA9,http://purl.obolibrary.org/obo/PR_Q9FNA9,none +13.6590116,PR:Q9SZR3,http://purl.obolibrary.org/obo/PR_Q9SZR3,none +13.6590116,PR:Q9SZZ8,http://purl.obolibrary.org/obo/PR_Q9SZZ8,none +13.6590116,PR:Q9ZWJ9,http://purl.obolibrary.org/obo/PR_Q9ZWJ9,none +13.6590116,SO:0000990,http://purl.obolibrary.org/obo/SO_0000990,class_I_RNA +13.6590116,SO:0001156,http://purl.obolibrary.org/obo/SO_0001156,DRE_motif +13.6590116,SO:0001815,http://purl.obolibrary.org/obo/SO_0001815,synonymous +13.6590116,SO:0001862,http://purl.obolibrary.org/obo/SO_0001862,GT_dinucleotide_repeat +13.6590116,SO:0001915,http://purl.obolibrary.org/obo/SO_0001915,transcription_start_cluster +13.6590116,SO:0001916,http://purl.obolibrary.org/obo/SO_0001916,CAGE_tag +13.6590116,SO:0001927,http://purl.obolibrary.org/obo/SO_0001927,telomeric_transcript +13.6590116,UBERON:0000439,http://purl.obolibrary.org/obo/UBERON_0000439,arachnoid trabecula +13.6590116,UBERON:0001833,http://purl.obolibrary.org/obo/UBERON_0001833,lip +13.6590116,UBERON:0001972,http://purl.obolibrary.org/obo/UBERON_0001972,submucosa of esophagus +13.6590116,UBERON:0002290,http://purl.obolibrary.org/obo/UBERON_0002290,choroid plexus of fourth ventricle +13.6590116,UBERON:0002655,http://purl.obolibrary.org/obo/UBERON_0002655,body of lateral ventricle +13.6590116,UBERON:0002666,http://purl.obolibrary.org/obo/UBERON_0002666,mesencephalic tract of trigeminal nerve +13.6590116,UBERON:0002908,http://purl.obolibrary.org/obo/UBERON_0002908,subparietal sulcus +13.6590116,UBERON:0003051,http://purl.obolibrary.org/obo/UBERON_0003051,ear vesicle +13.6590116,UBERON:0003119,http://purl.obolibrary.org/obo/UBERON_0003119,pharyngeal arch artery 2 +13.6590116,UBERON:0003259,http://purl.obolibrary.org/obo/UBERON_0003259,endoderm of midgut +13.6590116,UBERON:0003374,http://purl.obolibrary.org/obo/UBERON_0003374,chorionic ectoderm +13.6590116,UBERON:0005027,http://purl.obolibrary.org/obo/UBERON_0005027,mucosa of frontal sinus +13.6590116,UBERON:0005079,http://purl.obolibrary.org/obo/UBERON_0005079,eggshell +13.6590116,UBERON:0005200,http://purl.obolibrary.org/obo/UBERON_0005200,thoracic mammary gland +13.6590116,UBERON:0005357,http://purl.obolibrary.org/obo/UBERON_0005357,brain ependyma +13.6590116,UBERON:0006694,http://purl.obolibrary.org/obo/UBERON_0006694,cerebellum vasculature +13.6590116,UBERON:0006815,http://purl.obolibrary.org/obo/UBERON_0006815,areolar connective tissue +13.6590116,UBERON:0009050,http://purl.obolibrary.org/obo/UBERON_0009050,nucleus of solitary tract +13.6590116,UBERON:0010273,http://purl.obolibrary.org/obo/UBERON_0010273,zone of hyoid bone +13.6590116,UBERON:0010289,http://purl.obolibrary.org/obo/UBERON_0010289,scleral cartilage +13.6590116,UBERON:0011198,http://purl.obolibrary.org/obo/UBERON_0011198,muscle layer of large intestine +13.6590116,UBERON:0016853,http://purl.obolibrary.org/obo/UBERON_0016853,interdigital gland +13.6590116,UBERON:2002102,http://purl.obolibrary.org/obo/UBERON_2002102,epibranchial series +13.6590116,UBERON:3010071,http://purl.obolibrary.org/obo/UBERON_3010071,cranial crest +13.6967519,CHEBI:132943,http://purl.obolibrary.org/obo/CHEBI_132943,aspartate +13.6967519,CHEBI:133331,http://purl.obolibrary.org/obo/CHEBI_133331,metal oxide +13.6967519,CHEBI:25218,http://purl.obolibrary.org/obo/CHEBI_25218,methacrylate +13.6967519,CHEBI:29995,http://purl.obolibrary.org/obo/CHEBI_29995,aspartate(2-) +13.6967519,CHEBI:30772,http://purl.obolibrary.org/obo/CHEBI_30772,butyric acid +13.6967519,CHEBI:33892,http://purl.obolibrary.org/obo/CHEBI_33892,iron coordination entity +13.6967519,CHEBI:35551,http://purl.obolibrary.org/obo/CHEBI_35551,fluoroalkanoic acid +13.6967519,CHEBI:38976,http://purl.obolibrary.org/obo/CHEBI_38976,alkylbenzene +13.6967519,CHEBI:46345,http://purl.obolibrary.org/obo/CHEBI_46345,5-fluorouracil +13.6967519,CHEBI:48865,http://purl.obolibrary.org/obo/CHEBI_48865,thiadiazolidine +13.6967519,CHEBI:48901,http://purl.obolibrary.org/obo/CHEBI_48901,thiazoles +13.6967519,CHEBI:50990,http://purl.obolibrary.org/obo/CHEBI_50990,thiazolidinediones +13.6967519,CHEBI:59777,http://purl.obolibrary.org/obo/CHEBI_59777,ketal +13.6967519,CHEBI:59779,http://purl.obolibrary.org/obo/CHEBI_59779,cyclic ketal +13.6967519,CHEBI:70725,http://purl.obolibrary.org/obo/CHEBI_70725,adenosine A3 receptor antagonist +13.6967519,CHEBI:70868,http://purl.obolibrary.org/obo/CHEBI_70868,antileishmanial agent +13.6967519,CHEBI:73730,http://purl.obolibrary.org/obo/CHEBI_73730,PPARbeta/delta agonist +13.6967519,CHEBI:7444,http://purl.obolibrary.org/obo/CHEBI_7444,nadolol +13.6967519,CHEBI:8497,http://purl.obolibrary.org/obo/CHEBI_8497,propoxyphene +13.6967519,CL:0000580,http://purl.obolibrary.org/obo/CL_0000580,neutrophilic myelocyte +13.6967519,CL:0000919,http://purl.obolibrary.org/obo/CL_0000919,"CD8-positive, CD25-positive, alpha-beta regulatory T cell" +13.6967519,CL:0000973,http://purl.obolibrary.org/obo/CL_0000973,IgA memory B cell +13.6967519,CL:0002046,http://purl.obolibrary.org/obo/CL_0002046,early pro-B cell +13.6967519,CL:0002498,http://purl.obolibrary.org/obo/CL_0002498,secondary trophoblast giant cell +13.6967519,CL:1000309,http://purl.obolibrary.org/obo/CL_1000309,epicardial adipocyte +13.6967519,DRUGBANK:DB01447,http://purl.obolibrary.org/obo/DRUGBANK_DB01447,none +13.6967519,DRUGBANK:DB01826,http://purl.obolibrary.org/obo/DRUGBANK_DB01826,none +13.6967519,DRUGBANK:DB02163,http://purl.obolibrary.org/obo/DRUGBANK_DB02163,none +13.6967519,DRUGBANK:DB02400,http://purl.obolibrary.org/obo/DRUGBANK_DB02400,none +13.6967519,DRUGBANK:DB02483,http://purl.obolibrary.org/obo/DRUGBANK_DB02483,none +13.6967519,DRUGBANK:DB02710,http://purl.obolibrary.org/obo/DRUGBANK_DB02710,none +13.6967519,DRUGBANK:DB03144,http://purl.obolibrary.org/obo/DRUGBANK_DB03144,none +13.6967519,DRUGBANK:DB03799,http://purl.obolibrary.org/obo/DRUGBANK_DB03799,none +13.6967519,DRUGBANK:DB04338,http://purl.obolibrary.org/obo/DRUGBANK_DB04338,none +13.6967519,DRUGBANK:DB04687,http://purl.obolibrary.org/obo/DRUGBANK_DB04687,none +13.6967519,DRUGBANK:DB04778,http://purl.obolibrary.org/obo/DRUGBANK_DB04778,none +13.6967519,DRUGBANK:DB05496,http://purl.obolibrary.org/obo/DRUGBANK_DB05496,none +13.6967519,DRUGBANK:DB06741,http://purl.obolibrary.org/obo/DRUGBANK_DB06741,none +13.6967519,DRUGBANK:DB08473,http://purl.obolibrary.org/obo/DRUGBANK_DB08473,none +13.6967519,DRUGBANK:DB11011,http://purl.obolibrary.org/obo/DRUGBANK_DB11011,none +13.6967519,DRUGBANK:DB11563,http://purl.obolibrary.org/obo/DRUGBANK_DB11563,none +13.6967519,DRUGBANK:DB11583,http://purl.obolibrary.org/obo/DRUGBANK_DB11583,none +13.6967519,DRUGBANK:DB11618,http://purl.obolibrary.org/obo/DRUGBANK_DB11618,none +13.6967519,DRUGBANK:DB11636,http://purl.obolibrary.org/obo/DRUGBANK_DB11636,none +13.6967519,DRUGBANK:DB11701,http://purl.obolibrary.org/obo/DRUGBANK_DB11701,none +13.6967519,DRUGBANK:DB11920,http://purl.obolibrary.org/obo/DRUGBANK_DB11920,none +13.6967519,DRUGBANK:DB12174,http://purl.obolibrary.org/obo/DRUGBANK_DB12174,none +13.6967519,DRUGBANK:DB13237,http://purl.obolibrary.org/obo/DRUGBANK_DB13237,none +13.6967519,DRUGBANK:DB13521,http://purl.obolibrary.org/obo/DRUGBANK_DB13521,none +13.6967519,DRUGBANK:DB13546,http://purl.obolibrary.org/obo/DRUGBANK_DB13546,none +13.6967519,DRUGBANK:DB13698,http://purl.obolibrary.org/obo/DRUGBANK_DB13698,none +13.6967519,DRUGBANK:DB13790,http://purl.obolibrary.org/obo/DRUGBANK_DB13790,none +13.6967519,DRUGBANK:DB14040,http://purl.obolibrary.org/obo/DRUGBANK_DB14040,none +13.6967519,DRUGBANK:DB15764,http://purl.obolibrary.org/obo/DRUGBANK_DB15764,none +13.6967519,DRUGBANK:DB15996,http://purl.obolibrary.org/obo/DRUGBANK_DB15996,none +13.6967519,DRUGBANK:DB16142,http://purl.obolibrary.org/obo/DRUGBANK_DB16142,none +13.6967519,GO:0001945,http://purl.obolibrary.org/obo/GO_0001945,lymph vessel development +13.6967519,GO:0002762,http://purl.obolibrary.org/obo/GO_0002762,negative regulation of myeloid leukocyte differentiation +13.6967519,GO:0003415,http://purl.obolibrary.org/obo/GO_0003415,chondrocyte hypertrophy +13.6967519,GO:0003831,http://purl.obolibrary.org/obo/GO_0003831,"beta-N-acetylglucosaminylglycopeptide beta-1,4-galactosyltransferase activity" +13.6967519,GO:0003974,http://purl.obolibrary.org/obo/GO_0003974,UDP-N-acetylglucosamine 4-epimerase activity +13.6967519,GO:0004400,http://purl.obolibrary.org/obo/GO_0004400,histidinol-phosphate transaminase activity +13.6967519,GO:0004409,http://purl.obolibrary.org/obo/GO_0004409,homoaconitate hydratase activity +13.6967519,GO:0005762,http://purl.obolibrary.org/obo/GO_0005762,mitochondrial large ribosomal subunit +13.6967519,GO:0006044,http://purl.obolibrary.org/obo/GO_0006044,N-acetylglucosamine metabolic process +13.6967519,GO:0006448,http://purl.obolibrary.org/obo/GO_0006448,regulation of translational elongation +13.6967519,GO:0006558,http://purl.obolibrary.org/obo/GO_0006558,L-phenylalanine metabolic process +13.6967519,GO:0007556,http://purl.obolibrary.org/obo/GO_0007556,regulation of juvenile hormone metabolic process +13.6967519,GO:0008334,http://purl.obolibrary.org/obo/GO_0008334,histone mRNA metabolic process +13.6967519,GO:0008544,http://purl.obolibrary.org/obo/GO_0008544,epidermis development +13.6967519,GO:0008612,http://purl.obolibrary.org/obo/GO_0008612,peptidyl-lysine modification to peptidyl-hypusine +13.6967519,GO:0008882,http://purl.obolibrary.org/obo/GO_0008882,[glutamate-ammonia-ligase] adenylyltransferase activity +13.6967519,GO:0008949,http://purl.obolibrary.org/obo/GO_0008949,oxalyl-CoA decarboxylase activity +13.6967519,GO:0008969,http://purl.obolibrary.org/obo/GO_0008969,none +13.6967519,GO:0009753,http://purl.obolibrary.org/obo/GO_0009753,response to jasmonic acid +13.6967519,GO:0010112,http://purl.obolibrary.org/obo/GO_0010112,regulation of systemic acquired resistance +13.6967519,GO:0010470,http://purl.obolibrary.org/obo/GO_0010470,regulation of gastrulation +13.6967519,GO:0010692,http://purl.obolibrary.org/obo/GO_0010692,regulation of alkaline phosphatase activity +13.6967519,GO:0015826,http://purl.obolibrary.org/obo/GO_0015826,threonine transport +13.6967519,GO:0016153,http://purl.obolibrary.org/obo/GO_0016153,urocanate hydratase activity +13.6967519,GO:0018131,http://purl.obolibrary.org/obo/GO_0018131,oxazole or thiazole biosynthetic process +13.6967519,GO:0018342,http://purl.obolibrary.org/obo/GO_0018342,protein prenylation +13.6967519,GO:0018683,http://purl.obolibrary.org/obo/GO_0018683,camphor 5-monooxygenase activity +13.6967519,GO:0018687,http://purl.obolibrary.org/obo/GO_0018687,"biphenyl 2,3-dioxygenase activity" +13.6967519,GO:0019182,http://purl.obolibrary.org/obo/GO_0019182,histamine-gated chloride channel activity +13.6967519,GO:0019632,http://purl.obolibrary.org/obo/GO_0019632,shikimate metabolic process +13.6967519,GO:0021533,http://purl.obolibrary.org/obo/GO_0021533,cell differentiation in hindbrain +13.6967519,GO:0030048,http://purl.obolibrary.org/obo/GO_0030048,actin filament-based movement +13.6967519,GO:0030436,http://purl.obolibrary.org/obo/GO_0030436,asexual sporulation +13.6967519,GO:0030902,http://purl.obolibrary.org/obo/GO_0030902,hindbrain development +13.6967519,GO:0031320,http://purl.obolibrary.org/obo/GO_0031320,hexitol dehydrogenase activity +13.6967519,GO:0031335,http://purl.obolibrary.org/obo/GO_0031335,regulation of sulfur amino acid metabolic process +13.6967519,GO:0031529,http://purl.obolibrary.org/obo/GO_0031529,ruffle organization +13.6967519,GO:0032023,http://purl.obolibrary.org/obo/GO_0032023,trypsinogen activation +13.6967519,GO:0032395,http://purl.obolibrary.org/obo/GO_0032395,MHC class II receptor activity +13.6967519,GO:0033572,http://purl.obolibrary.org/obo/GO_0033572,transferrin transport +13.6967519,GO:0033807,http://purl.obolibrary.org/obo/GO_0033807,icosanoyl-CoA synthase activity +13.6967519,GO:0033946,http://purl.obolibrary.org/obo/GO_0033946,"xyloglucan-specific endo-beta-1,4-glucanase activity" +13.6967519,GO:0033986,http://purl.obolibrary.org/obo/GO_0033986,response to methanol +13.6967519,GO:0035711,http://purl.obolibrary.org/obo/GO_0035711,T-helper 1 cell activation +13.6967519,GO:0042371,http://purl.obolibrary.org/obo/GO_0042371,vitamin K biosynthetic process +13.6967519,GO:0042392,http://purl.obolibrary.org/obo/GO_0042392,sphingosine-1-phosphate phosphatase activity +13.6967519,GO:0042742,http://purl.obolibrary.org/obo/GO_0042742,defense response to bacterium +13.6967519,GO:0043057,http://purl.obolibrary.org/obo/GO_0043057,backward locomotion +13.6967519,GO:0044114,http://purl.obolibrary.org/obo/GO_0044114,development of symbiont in host +13.6967519,GO:0044115,http://purl.obolibrary.org/obo/GO_0044115,none +13.6967519,GO:0044777,http://purl.obolibrary.org/obo/GO_0044777,single-stranded DNA-binding protein complex +13.6967519,GO:0046038,http://purl.obolibrary.org/obo/GO_0046038,GMP catabolic process +13.6967519,GO:0046105,http://purl.obolibrary.org/obo/GO_0046105,thymidine biosynthetic process +13.6967519,GO:0046524,http://purl.obolibrary.org/obo/GO_0046524,sucrose-phosphate synthase activity +13.6967519,GO:0047434,http://purl.obolibrary.org/obo/GO_0047434,indolepyruvate decarboxylase activity +13.6967519,GO:0050058,http://purl.obolibrary.org/obo/GO_0050058,linoleate isomerase activity +13.6967519,GO:0050066,http://purl.obolibrary.org/obo/GO_0050066,"lysine 2,3-aminomutase activity" +13.6967519,GO:0050359,http://purl.obolibrary.org/obo/GO_0050359,tropomyosin kinase activity +13.6967519,GO:0051796,http://purl.obolibrary.org/obo/GO_0051796,negative regulation of timing of catagen +13.6967519,GO:0051995,http://purl.obolibrary.org/obo/GO_0051995,Se-methyltransferase activity +13.6967519,GO:0052744,http://purl.obolibrary.org/obo/GO_0052744,phosphatidylinositol monophosphate phosphatase activity +13.6967519,GO:0052837,http://purl.obolibrary.org/obo/GO_0052837,thiazole biosynthetic process +13.6967519,GO:0055002,http://purl.obolibrary.org/obo/GO_0055002,striated muscle cell development +13.6967519,GO:0060075,http://purl.obolibrary.org/obo/GO_0060075,regulation of resting membrane potential +13.6967519,GO:0060444,http://purl.obolibrary.org/obo/GO_0060444,branching involved in mammary gland duct morphogenesis +13.6967519,GO:0060486,http://purl.obolibrary.org/obo/GO_0060486,club cell differentiation +13.6967519,GO:0061333,http://purl.obolibrary.org/obo/GO_0061333,renal tubule morphogenesis +13.6967519,GO:0070369,http://purl.obolibrary.org/obo/GO_0070369,beta-catenin-TCF7L2 complex +13.6967519,GO:0070390,http://purl.obolibrary.org/obo/GO_0070390,transcription export complex 2 +13.6967519,GO:0070731,http://purl.obolibrary.org/obo/GO_0070731,cGMP transport +13.6967519,GO:0071077,http://purl.obolibrary.org/obo/GO_0071077,"adenosine 3',5'-bisphosphate transmembrane transporter activity" +13.6967519,GO:0085015,http://purl.obolibrary.org/obo/GO_0085015,dormancy maintenance of symbiont in host +13.6967519,GO:0090075,http://purl.obolibrary.org/obo/GO_0090075,relaxation of muscle +13.6967519,GO:0097178,http://purl.obolibrary.org/obo/GO_0097178,ruffle assembly +13.6967519,GO:0097255,http://purl.obolibrary.org/obo/GO_0097255,R2TP complex +13.6967519,GO:1900095,http://purl.obolibrary.org/obo/GO_1900095,regulation of dosage compensation by inactivation of X chromosome +13.6967519,GO:1900098,http://purl.obolibrary.org/obo/GO_1900098,regulation of plasma cell differentiation +13.6967519,GO:1901069,http://purl.obolibrary.org/obo/GO_1901069,guanosine-containing compound catabolic process +13.6967519,GO:1901556,http://purl.obolibrary.org/obo/GO_1901556,response to candesartan +13.6967519,GO:1902221,http://purl.obolibrary.org/obo/GO_1902221,erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process +13.6967519,GO:1903171,http://purl.obolibrary.org/obo/GO_1903171,carbon dioxide homeostasis +13.6967519,GO:1990130,http://purl.obolibrary.org/obo/GO_1990130,GATOR1 complex +13.6967519,GO:1990476,http://purl.obolibrary.org/obo/GO_1990476,"synaptic vesicle, resting pool" +13.6967519,GO:2000785,http://purl.obolibrary.org/obo/GO_2000785,regulation of autophagosome assembly +13.6967519,HP:0000090,http://purl.obolibrary.org/obo/HP_0000090,Nephronophthisis +13.6967519,HP:0012740,http://purl.obolibrary.org/obo/HP_0012740,Papilloma +13.6967519,HP:0012865,http://purl.obolibrary.org/obo/HP_0012865,Abnormal sperm head morphology +13.6967519,HP:0032169,http://purl.obolibrary.org/obo/HP_0032169,Severe infection +13.6967519,HP:0100957,http://purl.obolibrary.org/obo/HP_0100957,Abnormal renal medulla morphology +13.6967519,MONDO:0000457,http://purl.obolibrary.org/obo/MONDO_0000457,classical glioblastoma +13.6967519,MONDO:0001484,http://purl.obolibrary.org/obo/MONDO_0001484,paranoid schizophrenia +13.6967519,MONDO:0001667,http://purl.obolibrary.org/obo/MONDO_0001667,streptobacillus infectious disease +13.6967519,MONDO:0001848,http://purl.obolibrary.org/obo/MONDO_0001848,Morgagni cataract +13.6967519,MONDO:0002762,http://purl.obolibrary.org/obo/MONDO_0002762,esophagus verrucous carcinoma +13.6967519,MONDO:0003133,http://purl.obolibrary.org/obo/MONDO_0003133,exudative glomerulonephritis +13.6967519,MONDO:0003211,http://purl.obolibrary.org/obo/MONDO_0003211,nasal cavity adenocarcinoma +13.6967519,MONDO:0003216,http://purl.obolibrary.org/obo/MONDO_0003216,ureter adenocarcinoma +13.6967519,MONDO:0003593,http://purl.obolibrary.org/obo/MONDO_0003593,breast liposarcoma +13.6967519,MONDO:0004851,http://purl.obolibrary.org/obo/MONDO_0004851,toxic myocarditis +13.6967519,MONDO:0005588,http://purl.obolibrary.org/obo/MONDO_0005588,chemotherapy-induced oral mucositis +13.6967519,MONDO:0005911,http://purl.obolibrary.org/obo/MONDO_0005911,pharyngoconjunctival fever +13.6967519,MONDO:0006161,http://purl.obolibrary.org/obo/MONDO_0006161,colorectal juvenile polyp +13.6967519,MONDO:0006966,http://purl.obolibrary.org/obo/MONDO_0006966,secondary Parkinson disease +13.6967519,MONDO:0007134,http://purl.obolibrary.org/obo/MONDO_0007134,Cooks syndrome +13.6967519,MONDO:0007198,http://purl.obolibrary.org/obo/MONDO_0007198,Ascher syndrome +13.6967519,MONDO:0007920,http://purl.obolibrary.org/obo/MONDO_0007920,Meige disease +13.6967519,MONDO:0008016,http://purl.obolibrary.org/obo/MONDO_0008016,trismus-pseudocamptodactyly syndrome +13.6967519,MONDO:0008503,http://purl.obolibrary.org/obo/MONDO_0008503,Worster-Drought syndrome +13.6967519,MONDO:0008621,http://purl.obolibrary.org/obo/MONDO_0008621,uncombable hair syndrome +13.6967519,MONDO:0008709,http://purl.obolibrary.org/obo/MONDO_0008709,acrocephalopolydactyly +13.6967519,MONDO:0008995,http://purl.obolibrary.org/obo/MONDO_0008995,Yunis-Varon syndrome +13.6967519,MONDO:0009252,http://purl.obolibrary.org/obo/MONDO_0009252,essential fructosuria +13.6967519,MONDO:0009331,http://purl.obolibrary.org/obo/MONDO_0009331,isolated hemihyperplasia +13.6967519,MONDO:0010327,http://purl.obolibrary.org/obo/MONDO_0010327,HSD10 mitochondrial disease +13.6967519,MONDO:0010794,http://purl.obolibrary.org/obo/MONDO_0010794,NARP syndrome +13.6967519,MONDO:0010886,http://purl.obolibrary.org/obo/MONDO_0010886,2q37 microdeletion syndrome +13.6967519,MONDO:0011113,http://purl.obolibrary.org/obo/MONDO_0011113,Charcot-Marie-Tooth disease type 4C +13.6967519,MONDO:0012154,http://purl.obolibrary.org/obo/MONDO_0012154,myopia 6 +13.6967519,MONDO:0013532,http://purl.obolibrary.org/obo/MONDO_0013532,protein Z deficiency +13.6967519,MONDO:0013688,http://purl.obolibrary.org/obo/MONDO_0013688,linear and whorled nevoid hypermelanosis +13.6967519,MONDO:0014536,http://purl.obolibrary.org/obo/MONDO_0014536,thrombocytopenia 5 +13.6967519,MONDO:0015536,http://purl.obolibrary.org/obo/MONDO_0015536,papular xanthoma +13.6967519,MONDO:0016380,http://purl.obolibrary.org/obo/MONDO_0016380,acquired hypertrichosis lanuginosa +13.6967519,MONDO:0017591,http://purl.obolibrary.org/obo/MONDO_0017591,combined pulmonary fibrosis-emphysema syndrome +13.6967519,MONDO:0018178,http://purl.obolibrary.org/obo/MONDO_0018178,intestinal lymphangiectasia +13.6967519,MONDO:0018212,http://purl.obolibrary.org/obo/MONDO_0018212,familial cervical artery dissection +13.6967519,MONDO:0018368,http://purl.obolibrary.org/obo/MONDO_0018368,primary peritoneal serous/papillary carcinoma +13.6967519,MONDO:0018613,http://purl.obolibrary.org/obo/MONDO_0018613,AH amyloidosis +13.6967519,MONDO:0018617,http://purl.obolibrary.org/obo/MONDO_0018617,baroreflex failure +13.6967519,MONDO:0019115,http://purl.obolibrary.org/obo/MONDO_0019115,obesity due to melanocortin 4 receptor deficiency +13.6967519,MONDO:0019143,http://purl.obolibrary.org/obo/MONDO_0019143,angiostrongyliasis +13.6967519,MONDO:0019193,http://purl.obolibrary.org/obo/MONDO_0019193,acquired generalized lipodystrophy +13.6967519,MONDO:0019736,http://purl.obolibrary.org/obo/MONDO_0019736,dense deposit disease +13.6967519,MONDO:0020533,http://purl.obolibrary.org/obo/MONDO_0020533,streptobacillary rat-bite fever +13.6967519,MONDO:0021373,http://purl.obolibrary.org/obo/MONDO_0021373,neoplasm of parietal lobe +13.6967519,MONDO:0022972,http://purl.obolibrary.org/obo/MONDO_0022972,diabetic mastopathy +13.6967519,MONDO:0025489,http://purl.obolibrary.org/obo/MONDO_0025489,enzootic bovine leukosis +13.6967519,MONDO:0044719,http://purl.obolibrary.org/obo/MONDO_0044719,erythema multiforme major +13.6967519,MOP:0000783,http://purl.obolibrary.org/obo/MOP_0000783,none +13.6967519,NCBITaxon:10274,http://purl.obolibrary.org/obo/NCBITaxon_10274,none +13.6967519,NCBITaxon:10537,http://purl.obolibrary.org/obo/NCBITaxon_10537,Canine mastadenovirus A +13.6967519,NCBITaxon:10962,http://purl.obolibrary.org/obo/NCBITaxon_10962,none +13.6967519,NCBITaxon:11878,http://purl.obolibrary.org/obo/NCBITaxon_11878,none +13.6967519,NCBITaxon:119093,http://purl.obolibrary.org/obo/NCBITaxon_119093,Trichuridae +13.6967519,NCBITaxon:12177,http://purl.obolibrary.org/obo/NCBITaxon_12177,none +13.6967519,NCBITaxon:129105,http://purl.obolibrary.org/obo/NCBITaxon_129105,none +13.6967519,NCBITaxon:129141,http://purl.obolibrary.org/obo/NCBITaxon_129141,none +13.6967519,NCBITaxon:131083,http://purl.obolibrary.org/obo/NCBITaxon_131083,none +13.6967519,NCBITaxon:156690,http://purl.obolibrary.org/obo/NCBITaxon_156690,none +13.6967519,NCBITaxon:181550,http://purl.obolibrary.org/obo/NCBITaxon_181550,Trichomonadidae +13.6967519,NCBITaxon:186748,http://purl.obolibrary.org/obo/NCBITaxon_186748,none +13.6967519,NCBITaxon:2560061,http://purl.obolibrary.org/obo/NCBITaxon_2560061,none +13.6967519,NCBITaxon:28355,http://purl.obolibrary.org/obo/NCBITaxon_28355,none +13.6967519,NCBITaxon:32619,http://purl.obolibrary.org/obo/NCBITaxon_32619,none +13.6967519,NCBITaxon:33283,http://purl.obolibrary.org/obo/NCBITaxon_33283,none +13.6967519,NCBITaxon:347957,http://purl.obolibrary.org/obo/NCBITaxon_347957,none +13.6967519,NCBITaxon:362907,http://purl.obolibrary.org/obo/NCBITaxon_362907,none +13.6967519,NCBITaxon:37104,http://purl.obolibrary.org/obo/NCBITaxon_37104,Trichomonadida +13.6967519,NCBITaxon:39087,http://purl.obolibrary.org/obo/NCBITaxon_39087,Arvicolinae +13.6967519,NCBITaxon:4037,http://purl.obolibrary.org/obo/NCBITaxon_4037,none +13.6967519,NCBITaxon:53181,http://purl.obolibrary.org/obo/NCBITaxon_53181,none +13.6967519,NCBITaxon:57119,http://purl.obolibrary.org/obo/NCBITaxon_57119,none +13.6967519,NCBITaxon:5721,http://purl.obolibrary.org/obo/NCBITaxon_5721,Trichomonas +13.6967519,NCBITaxon:573824,http://purl.obolibrary.org/obo/NCBITaxon_573824,none +13.6967519,NCBITaxon:580240,http://purl.obolibrary.org/obo/NCBITaxon_580240,none +13.6967519,NCBITaxon:6296,http://purl.obolibrary.org/obo/NCBITaxon_6296,Onchocercidae +13.6967519,NCBITaxon:64949,http://purl.obolibrary.org/obo/NCBITaxon_64949,none +13.6967519,NCBITaxon:699166,http://purl.obolibrary.org/obo/NCBITaxon_699166,none +13.6967519,NCBITaxon:75746,http://purl.obolibrary.org/obo/NCBITaxon_75746,none +13.6967519,NCBITaxon:82658,http://purl.obolibrary.org/obo/NCBITaxon_82658,none +13.6967519,NCBITaxon:95341,http://purl.obolibrary.org/obo/NCBITaxon_95341,none +13.6967519,PR:000000216,http://purl.obolibrary.org/obo/PR_000000216,activin/inhibin beta A chain +13.6967519,PR:000002055,http://purl.obolibrary.org/obo/PR_000002055,inward rectifier potassium channel 16 +13.6967519,PR:000002073,http://purl.obolibrary.org/obo/PR_000002073,potassium channel subfamily K member 13 +13.6967519,PR:000003576,http://purl.obolibrary.org/obo/PR_000003576,monoacylglycerol lipase ABHD2 +13.6967519,PR:000003836,http://purl.obolibrary.org/obo/PR_000003836,1-acyl-sn-glycerol-3-phosphate acyltransferase gamma +13.6967519,PR:000003871,http://purl.obolibrary.org/obo/PR_000003871,androgen-induced gene 1 protein +13.6967519,PR:000004096,http://purl.obolibrary.org/obo/PR_000004096,AP-1 complex subunit sigma-1A +13.6967519,PR:000004138,http://purl.obolibrary.org/obo/PR_000004138,adipogenesis regulatory factor +13.6967519,PR:000004332,http://purl.obolibrary.org/obo/PR_000004332,protein ARV1 +13.6967519,PR:000004333,http://purl.obolibrary.org/obo/PR_000004333,armadillo repeat protein deleted in velo-cardio-facial syndrome +13.6967519,PR:000004389,http://purl.obolibrary.org/obo/PR_000004389,astrotactin-1 +13.6967519,PR:000004492,http://purl.obolibrary.org/obo/PR_000004492,V-type proton ATPase subunit H +13.6967519,PR:000004497,http://purl.obolibrary.org/obo/PR_000004497,cytoplasmic tRNA 2-thiolation protein 1 +13.6967519,PR:000004529,http://purl.obolibrary.org/obo/PR_000004529,Axin-1 up-regulated gene 1 protein +13.6967519,PR:000004635,http://purl.obolibrary.org/obo/PR_000004635,BAI1-associated protein 3 +13.6967519,PR:000004756,http://purl.obolibrary.org/obo/PR_000004756,bladder cancer-associated protein +13.6967519,PR:000004788,http://purl.obolibrary.org/obo/PR_000004788,BolA-like protein 3 +13.6967519,PR:000004866,http://purl.obolibrary.org/obo/PR_000004866,basic leucine zipper and W2 domain-containing protein 2 +13.6967519,PR:000004888,http://purl.obolibrary.org/obo/PR_000004888,complement C1q tumor necrosis factor-related protein 6 +13.6967519,PR:000005021,http://purl.obolibrary.org/obo/PR_000005021,calpain-9 +13.6967519,PR:000005185,http://purl.obolibrary.org/obo/PR_000005185,dual specificity protein phosphatase CDC14B +13.6967519,PR:000005209,http://purl.obolibrary.org/obo/PR_000005209,Cdc42 effector protein 2 +13.6967519,PR:000005263,http://purl.obolibrary.org/obo/PR_000005263,CDK5 regulatory subunit-associated protein 3 +13.6967519,PR:000005507,http://purl.obolibrary.org/obo/PR_000005507,Cbp/p300-interacting transactivator 4 +13.6967519,PR:000005525,http://purl.obolibrary.org/obo/PR_000005525,calcium-activated chloride channel regulator 4 +13.6967519,PR:000005576,http://purl.obolibrary.org/obo/PR_000005576,chloride intracellular channel protein 3 +13.6967519,PR:000005691,http://purl.obolibrary.org/obo/PR_000005691,conserved oligomeric Golgi complex subunit 8 +13.6967519,PR:000005738,http://purl.obolibrary.org/obo/PR_000005738,coatomer subunit gamma-2 +13.6967519,PR:000005872,http://purl.obolibrary.org/obo/PR_000005872,cysteine-rich motor neuron 2 protein +13.6967519,PR:000006314,http://purl.obolibrary.org/obo/PR_000006314,5' exonuclease Apollo +13.6967519,PR:000006352,http://purl.obolibrary.org/obo/PR_000006352,dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit +13.6967519,PR:000006375,http://purl.obolibrary.org/obo/PR_000006375,death effector domain-containing protein +13.6967519,PR:000006569,http://purl.obolibrary.org/obo/PR_000006569,"dynein intermediate chain 2, axonemal" +13.6967519,PR:000006593,http://purl.obolibrary.org/obo/PR_000006593,deoxyribonuclease-1-like 1 +13.6967519,PR:000006651,http://purl.obolibrary.org/obo/PR_000006651,zinc finger protein DPF3 +13.6967519,PR:000006941,http://purl.obolibrary.org/obo/PR_000006941,EH domain-binding protein 1 +13.6967519,PR:000007336,http://purl.obolibrary.org/obo/PR_000007336,Fanconi anemia group G protein +13.6967519,PR:000007963,http://purl.obolibrary.org/obo/PR_000007963,glutathione hydrolase 5 proenzyme +13.6967519,PR:000007978,http://purl.obolibrary.org/obo/PR_000007978,GTPase IMAP family member 4 +13.6967519,PR:000008129,http://purl.obolibrary.org/obo/PR_000008129,N-acetylglucosamine-6-sulfatase +13.6967519,PR:000008160,http://purl.obolibrary.org/obo/PR_000008160,"glycerol-3-phosphate acyltransferase 2, mitochondrial" +13.6967519,PR:000008518,http://purl.obolibrary.org/obo/PR_000008518,transcription factor HES-4 +13.6967519,PR:000008544,http://purl.obolibrary.org/obo/PR_000008544,HERV-H LTR-associating protein 2 +13.6967519,PR:000008665,http://purl.obolibrary.org/obo/PR_000008665,heterogeneous nuclear ribonucleoprotein F +13.6967519,PR:000008938,http://purl.obolibrary.org/obo/PR_000008938,intraflagellar transport protein 80 +13.6967519,PR:000009006,http://purl.obolibrary.org/obo/PR_000009006,immunoglobulin-like domain-containing receptor 1 +13.6967519,PR:000009306,http://purl.obolibrary.org/obo/PR_000009306,kinesin-like protein KIF26B +13.6967519,PR:000009446,http://purl.obolibrary.org/obo/PR_000009446,Kremen protein 2 +13.6967519,PR:000009819,http://purl.obolibrary.org/obo/PR_000009819,LIM and senescent cell antigen-like-containing domain protein 2 +13.6967519,PR:000009965,http://purl.obolibrary.org/obo/PR_000009965,U6 snRNA-associated Sm-like protein LSm7 +13.6967519,PR:000010108,http://purl.obolibrary.org/obo/PR_000010108,epididymis-specific alpha-mannosidase +13.6967519,PR:000010261,http://purl.obolibrary.org/obo/PR_000010261,MAM domain-containing glycosylphosphatidylinositol anchor protein 1 +13.6967519,PR:000010368,http://purl.obolibrary.org/obo/PR_000010368,malignant fibrous histiocytoma-amplified sequence 1 +13.6967519,PR:000010504,http://purl.obolibrary.org/obo/PR_000010504,MOB kinase activator 1B +13.6967519,PR:000010550,http://purl.obolibrary.org/obo/PR_000010550,3-mercaptopyruvate sulfurtransferase +13.6967519,PR:000010825,http://purl.obolibrary.org/obo/PR_000010825,myosin-15 +13.6967519,PR:000011283,http://purl.obolibrary.org/obo/PR_000011283,nucleoside diphosphate kinase 3 +13.6967519,PR:000011316,http://purl.obolibrary.org/obo/PR_000011316,nucleolar phosphoprotein p130 +13.6967519,PR:000011317,http://purl.obolibrary.org/obo/PR_000011317,nodal modulator 1 +13.6967519,PR:000011445,http://purl.obolibrary.org/obo/PR_000011445,kinetochore-associated protein NSL1 +13.6967519,PR:000011496,http://purl.obolibrary.org/obo/PR_000011496,ADP-sugar pyrophosphatase +13.6967519,PR:000011509,http://purl.obolibrary.org/obo/PR_000011509,nuclear pore complex protein Nup155 +13.6967519,PR:000011530,http://purl.obolibrary.org/obo/PR_000011530,dehydrodolichyl diphosphate synthase complex subunit NUS1 +13.6967519,PR:000012057,http://purl.obolibrary.org/obo/PR_000012057,oxidative stress-induced growth inhibitor 1 +13.6967519,PR:000012443,http://purl.obolibrary.org/obo/PR_000012443,cyclin-dependent kinase 18 +13.6967519,PR:000012563,http://purl.obolibrary.org/obo/PR_000012563,peroxisome assembly protein 26 +13.6967519,PR:000012662,http://purl.obolibrary.org/obo/PR_000012662,"phosphorylase b kinase gamma catalytic chain, liver/testis isoform" +13.6967519,PR:000013050,http://purl.obolibrary.org/obo/PR_000013050,suppressor of SWI4 1 +13.6967519,PR:000013093,http://purl.obolibrary.org/obo/PR_000013093,protein phosphatase 1E +13.6967519,PR:000013187,http://purl.obolibrary.org/obo/PR_000013187,PR domain zinc finger protein 4 +13.6967519,PR:000013307,http://purl.obolibrary.org/obo/PR_000013307,proline-rich protein 3 +13.6967519,PR:000013765,http://purl.obolibrary.org/obo/PR_000013765,Ras association domain-containing protein 4 +13.6967519,PR:000014499,http://purl.obolibrary.org/obo/PR_000014499,sciellin +13.6967519,PR:000014638,http://purl.obolibrary.org/obo/PR_000014638,sentrin-specific protease 5 +13.6967519,PR:000014754,http://purl.obolibrary.org/obo/PR_000014754,CLK4-associating serine/arginine rich protein +13.6967519,PR:000014867,http://purl.obolibrary.org/obo/PR_000014867,sialic acid-binding Ig-like lectin 14 +13.6967519,PR:000015024,http://purl.obolibrary.org/obo/PR_000015024,mitoferrin-2 +13.6967519,PR:000015170,http://purl.obolibrary.org/obo/PR_000015170,sodium/myo-inositol cotransporter +13.6967519,PR:000015264,http://purl.obolibrary.org/obo/PR_000015264,SWI/SNF complex subunit SMARCC2 +13.6967519,PR:000015287,http://purl.obolibrary.org/obo/PR_000015287,survival of motor neuron-related-splicing factor 30 +13.6967519,PR:000015961,http://purl.obolibrary.org/obo/PR_000015961,none +13.6967519,PR:000016042,http://purl.obolibrary.org/obo/PR_000016042,MAP3K7 C-terminal-like protein +13.6967519,PR:000016226,http://purl.obolibrary.org/obo/PR_000016226,tektin-1 +13.6967519,PR:000016535,http://purl.obolibrary.org/obo/PR_000016535,mitochondrial import receptor subunit TOM34 +13.6967519,PR:000016569,http://purl.obolibrary.org/obo/PR_000016569,trophoblast glycoprotein +13.6967519,PR:000016717,http://purl.obolibrary.org/obo/PR_000016717,tRNA-splicing endonuclease subunit Sen54 +13.6967519,PR:000016975,http://purl.obolibrary.org/obo/PR_000016975,ubiquitin-conjugating enzyme E2 G2 +13.6967519,PR:000017148,http://purl.obolibrary.org/obo/PR_000017148,ubiquitin carboxyl-terminal hydrolase 12 +13.6967519,PR:000017498,http://purl.obolibrary.org/obo/PR_000017498,exportin-4 +13.6967519,PR:000017915,http://purl.obolibrary.org/obo/PR_000017915,zinc finger protein 470 +13.6967519,PR:000017916,http://purl.obolibrary.org/obo/PR_000017916,zinc finger protein 471 +13.6967519,PR:000022111,http://purl.obolibrary.org/obo/PR_000022111,none +13.6967519,PR:000022144,http://purl.obolibrary.org/obo/PR_000022144,none +13.6967519,PR:000022224,http://purl.obolibrary.org/obo/PR_000022224,none +13.6967519,PR:000022230,http://purl.obolibrary.org/obo/PR_000022230,none +13.6967519,PR:000022310,http://purl.obolibrary.org/obo/PR_000022310,none +13.6967519,PR:000022555,http://purl.obolibrary.org/obo/PR_000022555,none +13.6967519,PR:000022758,http://purl.obolibrary.org/obo/PR_000022758,none +13.6967519,PR:000022787,http://purl.obolibrary.org/obo/PR_000022787,none +13.6967519,PR:000023176,http://purl.obolibrary.org/obo/PR_000023176,none +13.6967519,PR:000023380,http://purl.obolibrary.org/obo/PR_000023380,none +13.6967519,PR:000023920,http://purl.obolibrary.org/obo/PR_000023920,none +13.6967519,PR:000023963,http://purl.obolibrary.org/obo/PR_000023963,none +13.6967519,PR:000024120,http://purl.obolibrary.org/obo/PR_000024120,none +13.6967519,PR:000024145,http://purl.obolibrary.org/obo/PR_000024145,none +13.6967519,PR:000029129,http://purl.obolibrary.org/obo/PR_000029129,none +13.6967519,PR:000029350,http://purl.obolibrary.org/obo/PR_000029350,chromodomain Y-like protein +13.6967519,PR:000029639,http://purl.obolibrary.org/obo/PR_000029639,myocardial zonula adherens protein +13.6967519,PR:000029663,http://purl.obolibrary.org/obo/PR_000029663,protein kinase C and casein kinase substrate in neurons protein 3 +13.6967519,PR:000030613,http://purl.obolibrary.org/obo/PR_000030613,osteoclast stimulatory transmembrane protein +13.6967519,PR:000031586,http://purl.obolibrary.org/obo/PR_000031586,DNA excision repair protein ERCC-6-like 2 +13.6967519,PR:000031603,http://purl.obolibrary.org/obo/PR_000031603,zinc finger CW-type PWWP domain protein 1 +13.6967519,PR:000031674,http://purl.obolibrary.org/obo/PR_000031674,IgLON family member 5 +13.6967519,PR:000032034,http://purl.obolibrary.org/obo/PR_000032034,alpha-tubulin N-acetyltransferase 1 +13.6967519,PR:000032538,http://purl.obolibrary.org/obo/PR_000032538,solute carrier family 22 member 10 +13.6967519,PR:000034262,http://purl.obolibrary.org/obo/PR_000034262,none +13.6967519,PR:000035178,http://purl.obolibrary.org/obo/PR_000035178,none +13.6967519,PR:000036794,http://purl.obolibrary.org/obo/PR_000036794,histone H3.2 +13.6967519,PR:F1Q5S5,http://purl.obolibrary.org/obo/PR_F1Q5S5,none +13.6967519,PR:O23661,http://purl.obolibrary.org/obo/PR_O23661,none +13.6967519,PR:O46635,http://purl.obolibrary.org/obo/PR_O46635,none +13.6967519,PR:O59836,http://purl.obolibrary.org/obo/PR_O59836,none +13.6967519,PR:O64483,http://purl.obolibrary.org/obo/PR_O64483,none +13.6967519,PR:O82741,http://purl.obolibrary.org/obo/PR_O82741,none +13.6967519,PR:P10959,http://purl.obolibrary.org/obo/PR_P10959,none +13.6967519,PR:P11612,http://purl.obolibrary.org/obo/PR_P11612,none +13.6967519,PR:P17153,http://purl.obolibrary.org/obo/PR_P17153,none +13.6967519,PR:P17610,http://purl.obolibrary.org/obo/PR_P17610,none +13.6967519,PR:P38247,http://purl.obolibrary.org/obo/PR_P38247,none +13.6967519,PR:P38823,http://purl.obolibrary.org/obo/PR_P38823,none +13.6967519,PR:P47001,http://purl.obolibrary.org/obo/PR_P47001,none +13.6967519,PR:P47805,http://purl.obolibrary.org/obo/PR_P47805,none +13.6967519,PR:P50446,http://purl.obolibrary.org/obo/PR_P50446,none +13.6967519,PR:P55194,http://purl.obolibrary.org/obo/PR_P55194,none +13.6967519,PR:P68369,http://purl.obolibrary.org/obo/PR_P68369,none +13.6967519,PR:P81914,http://purl.obolibrary.org/obo/PR_P81914,none +13.6967519,PR:P87315,http://purl.obolibrary.org/obo/PR_P87315,none +13.6967519,PR:Q03218,http://purl.obolibrary.org/obo/PR_Q03218,none +13.6967519,PR:Q08109,http://purl.obolibrary.org/obo/PR_Q08109,none +13.6967519,PR:Q09696,http://purl.obolibrary.org/obo/PR_Q09696,none +13.6967519,PR:Q10746,http://purl.obolibrary.org/obo/PR_Q10746,none +13.6967519,PR:Q17330,http://purl.obolibrary.org/obo/PR_Q17330,none +13.6967519,PR:Q24255,http://purl.obolibrary.org/obo/PR_Q24255,none +13.6967519,PR:Q39192,http://purl.obolibrary.org/obo/PR_Q39192,none +13.6967519,PR:Q5APD4,http://purl.obolibrary.org/obo/PR_Q5APD4,none +13.6967519,PR:Q6NYY4,http://purl.obolibrary.org/obo/PR_Q6NYY4,none +13.6967519,PR:Q804W2,http://purl.obolibrary.org/obo/PR_Q804W2,none +13.6967519,PR:Q8LGU6,http://purl.obolibrary.org/obo/PR_Q8LGU6,none +13.6967519,PR:Q8VY88,http://purl.obolibrary.org/obo/PR_Q8VY88,none +13.6967519,PR:Q9BVV6,http://purl.obolibrary.org/obo/PR_Q9BVV6,protein TALPID3 (human) +13.6967519,PR:Q9ESY9,http://purl.obolibrary.org/obo/PR_Q9ESY9,none +13.6967519,PR:Q9I8V0,http://purl.obolibrary.org/obo/PR_Q9I8V0,none +13.6967519,PR:Q9LSD5,http://purl.obolibrary.org/obo/PR_Q9LSD5,none +13.6967519,PR:Q9P7Y8,http://purl.obolibrary.org/obo/PR_Q9P7Y8,none +13.6967519,PR:Q9S775,http://purl.obolibrary.org/obo/PR_Q9S775,none +13.6967519,PR:Q9S7E9,http://purl.obolibrary.org/obo/PR_Q9S7E9,none +13.6967519,PR:Q9SGA2,http://purl.obolibrary.org/obo/PR_Q9SGA2,none +13.6967519,PR:Q9XF43,http://purl.obolibrary.org/obo/PR_Q9XF43,none +13.6967519,PR:Q9Y7C4,http://purl.obolibrary.org/obo/PR_Q9Y7C4,none +13.6967519,SO:0000610,http://purl.obolibrary.org/obo/SO_0000610,polyA_sequence +13.6967519,SO:0001271,http://purl.obolibrary.org/obo/SO_0001271,tmRNA_gene +13.6967519,SO:0002124,http://purl.obolibrary.org/obo/SO_0002124,IG_D_gene +13.6967519,SO:1000018,http://purl.obolibrary.org/obo/SO_1000018,pyrimidine_to_purine_transversion +13.6967519,UBERON:0000319,http://purl.obolibrary.org/obo/UBERON_0000319,cytotrophoblast +13.6967519,UBERON:0000420,http://purl.obolibrary.org/obo/UBERON_0000420,myoepithelium +13.6967519,UBERON:0001156,http://purl.obolibrary.org/obo/UBERON_0001156,ascending colon +13.6967519,UBERON:0001247,http://purl.obolibrary.org/obo/UBERON_0001247,falciform ligament +13.6967519,UBERON:0001290,http://purl.obolibrary.org/obo/UBERON_0001290,proximal straight tubule +13.6967519,UBERON:0001358,http://purl.obolibrary.org/obo/UBERON_0001358,perineal artery +13.6967519,UBERON:0001410,http://purl.obolibrary.org/obo/UBERON_0001410,common palmar digital artery +13.6967519,UBERON:0001440,http://purl.obolibrary.org/obo/UBERON_0001440,forelimb skeleton +13.6967519,UBERON:0001552,http://purl.obolibrary.org/obo/UBERON_0001552,kidney arcuate artery +13.6967519,UBERON:0001634,http://purl.obolibrary.org/obo/UBERON_0001634,mesencephalic artery +13.6967519,UBERON:0003447,http://purl.obolibrary.org/obo/UBERON_0003447,digit nerve of manus +13.6967519,UBERON:0004857,http://purl.obolibrary.org/obo/UBERON_0004857,skeletal muscle connective tissue +13.6967519,UBERON:0005048,http://purl.obolibrary.org/obo/UBERON_0005048,mucosa of uterine tube +13.6967519,UBERON:0009472,http://purl.obolibrary.org/obo/UBERON_0009472,axilla +13.6967519,UBERON:0010146,http://purl.obolibrary.org/obo/UBERON_0010146,paraurethral duct +13.6967519,UBERON:0011012,http://purl.obolibrary.org/obo/UBERON_0011012,flexor pollicis brevis muscle +13.6967519,UBERON:0011769,http://purl.obolibrary.org/obo/UBERON_0011769,cartilaginous projection +13.6967519,UBERON:0016394,http://purl.obolibrary.org/obo/UBERON_0016394,anterior auricular lymph node +13.6967519,UBERON:0017627,http://purl.obolibrary.org/obo/UBERON_0017627,rectal valve +13.6967519,UBERON:0018234,http://purl.obolibrary.org/obo/UBERON_0018234,stroma of pancreas +13.6967519,UBERON:0019199,http://purl.obolibrary.org/obo/UBERON_0019199,lateral side of chest +13.6967519,UBERON:0034767,http://purl.obolibrary.org/obo/UBERON_0034767,buccal vestibule +13.6967519,UBERON:4300024,http://purl.obolibrary.org/obo/UBERON_4300024,spinal plate +13.7359726,CHEBI:131702,http://purl.obolibrary.org/obo/CHEBI_131702,stigmastane derivative +13.7359726,CHEBI:131703,http://purl.obolibrary.org/obo/CHEBI_131703,stigmastane sterol +13.7359726,CHEBI:134438,http://purl.obolibrary.org/obo/CHEBI_134438,titanium oxides +13.7359726,CHEBI:24610,http://purl.obolibrary.org/obo/CHEBI_24610,homocysteines +13.7359726,CHEBI:25990,http://purl.obolibrary.org/obo/CHEBI_25990,phenylethanolamines +13.7359726,CHEBI:26677,http://purl.obolibrary.org/obo/CHEBI_26677,silicon molecular entity +13.7359726,CHEBI:30212,http://purl.obolibrary.org/obo/CHEBI_30212,photon +13.7359726,CHEBI:32612,http://purl.obolibrary.org/obo/CHEBI_32612,isoleucinate +13.7359726,CHEBI:33425,http://purl.obolibrary.org/obo/CHEBI_33425,halogen oxoacid +13.7359726,CHEBI:33535,http://purl.obolibrary.org/obo/CHEBI_33535,sulfur hydride +13.7359726,CHEBI:33768,http://purl.obolibrary.org/obo/CHEBI_33768,titanium group molecular entity +13.7359726,CHEBI:35786,http://purl.obolibrary.org/obo/CHEBI_35786,phosphosphingolipid +13.7359726,CHEBI:35800,http://purl.obolibrary.org/obo/CHEBI_35800,nitroso compound +13.7359726,CHEBI:36341,http://purl.obolibrary.org/obo/CHEBI_36341,boson +13.7359726,CHEBI:37217,http://purl.obolibrary.org/obo/CHEBI_37217,titanium molecular entity +13.7359726,CHEBI:37926,http://purl.obolibrary.org/obo/CHEBI_37926,fluorescein isothiocyanate +13.7359726,CHEBI:38264,http://purl.obolibrary.org/obo/CHEBI_38264,2-amino-3-methylpentanoic acid +13.7359726,CHEBI:38418,http://purl.obolibrary.org/obo/CHEBI_38418,"1,3-thiazoles" +13.7359726,CHEBI:38975,http://purl.obolibrary.org/obo/CHEBI_38975,methylbenzene +13.7359726,CHEBI:51363,http://purl.obolibrary.org/obo/CHEBI_51363,carbene +13.7359726,CHEBI:61446,http://purl.obolibrary.org/obo/CHEBI_61446,polyelectrolyte polymer +13.7359726,CHEBI:8228,http://purl.obolibrary.org/obo/CHEBI_8228,pioglitazone +13.7359726,CHEBI:86478,http://purl.obolibrary.org/obo/CHEBI_86478,antibiotic antifungal agent +13.7359726,CL:0000806,http://purl.obolibrary.org/obo/CL_0000806,DN2 thymocyte +13.7359726,CL:0000874,http://purl.obolibrary.org/obo/CL_0000874,splenic red pulp macrophage +13.7359726,CL:0002033,http://purl.obolibrary.org/obo/CL_0002033,short term hematopoietic stem cell +13.7359726,CL:1001431,http://purl.obolibrary.org/obo/CL_1001431,kidney collecting duct principal cell +13.7359726,DRUGBANK:DB00097,http://purl.obolibrary.org/obo/DRUGBANK_DB00097,none +13.7359726,DRUGBANK:DB00253,http://purl.obolibrary.org/obo/DRUGBANK_DB00253,none +13.7359726,DRUGBANK:DB01063,http://purl.obolibrary.org/obo/DRUGBANK_DB01063,none +13.7359726,DRUGBANK:DB01352,http://purl.obolibrary.org/obo/DRUGBANK_DB01352,none +13.7359726,DRUGBANK:DB02867,http://purl.obolibrary.org/obo/DRUGBANK_DB02867,none +13.7359726,DRUGBANK:DB03704,http://purl.obolibrary.org/obo/DRUGBANK_DB03704,none +13.7359726,DRUGBANK:DB03815,http://purl.obolibrary.org/obo/DRUGBANK_DB03815,none +13.7359726,DRUGBANK:DB03917,http://purl.obolibrary.org/obo/DRUGBANK_DB03917,none +13.7359726,DRUGBANK:DB04094,http://purl.obolibrary.org/obo/DRUGBANK_DB04094,none +13.7359726,DRUGBANK:DB04349,http://purl.obolibrary.org/obo/DRUGBANK_DB04349,none +13.7359726,DRUGBANK:DB04527,http://purl.obolibrary.org/obo/DRUGBANK_DB04527,none +13.7359726,DRUGBANK:DB04781,http://purl.obolibrary.org/obo/DRUGBANK_DB04781,none +13.7359726,DRUGBANK:DB04843,http://purl.obolibrary.org/obo/DRUGBANK_DB04843,none +13.7359726,DRUGBANK:DB04862,http://purl.obolibrary.org/obo/DRUGBANK_DB04862,none +13.7359726,DRUGBANK:DB04872,http://purl.obolibrary.org/obo/DRUGBANK_DB04872,none +13.7359726,DRUGBANK:DB04919,http://purl.obolibrary.org/obo/DRUGBANK_DB04919,none +13.7359726,DRUGBANK:DB04926,http://purl.obolibrary.org/obo/DRUGBANK_DB04926,none +13.7359726,DRUGBANK:DB05168,http://purl.obolibrary.org/obo/DRUGBANK_DB05168,none +13.7359726,DRUGBANK:DB05491,http://purl.obolibrary.org/obo/DRUGBANK_DB05491,none +13.7359726,DRUGBANK:DB05918,http://purl.obolibrary.org/obo/DRUGBANK_DB05918,none +13.7359726,DRUGBANK:DB05984,http://purl.obolibrary.org/obo/DRUGBANK_DB05984,none +13.7359726,DRUGBANK:DB06162,http://purl.obolibrary.org/obo/DRUGBANK_DB06162,none +13.7359726,DRUGBANK:DB06321,http://purl.obolibrary.org/obo/DRUGBANK_DB06321,none +13.7359726,DRUGBANK:DB06598,http://purl.obolibrary.org/obo/DRUGBANK_DB06598,none +13.7359726,DRUGBANK:DB06746,http://purl.obolibrary.org/obo/DRUGBANK_DB06746,none +13.7359726,DRUGBANK:DB06987,http://purl.obolibrary.org/obo/DRUGBANK_DB06987,none +13.7359726,DRUGBANK:DB07558,http://purl.obolibrary.org/obo/DRUGBANK_DB07558,none +13.7359726,DRUGBANK:DB07623,http://purl.obolibrary.org/obo/DRUGBANK_DB07623,none +13.7359726,DRUGBANK:DB07951,http://purl.obolibrary.org/obo/DRUGBANK_DB07951,none +13.7359726,DRUGBANK:DB08012,http://purl.obolibrary.org/obo/DRUGBANK_DB08012,none +13.7359726,DRUGBANK:DB08142,http://purl.obolibrary.org/obo/DRUGBANK_DB08142,none +13.7359726,DRUGBANK:DB08544,http://purl.obolibrary.org/obo/DRUGBANK_DB08544,none +13.7359726,DRUGBANK:DB08598,http://purl.obolibrary.org/obo/DRUGBANK_DB08598,none +13.7359726,DRUGBANK:DB09006,http://purl.obolibrary.org/obo/DRUGBANK_DB09006,none +13.7359726,DRUGBANK:DB11646,http://purl.obolibrary.org/obo/DRUGBANK_DB11646,none +13.7359726,DRUGBANK:DB11693,http://purl.obolibrary.org/obo/DRUGBANK_DB11693,none +13.7359726,DRUGBANK:DB12094,http://purl.obolibrary.org/obo/DRUGBANK_DB12094,none +13.7359726,DRUGBANK:DB12226,http://purl.obolibrary.org/obo/DRUGBANK_DB12226,none +13.7359726,DRUGBANK:DB12454,http://purl.obolibrary.org/obo/DRUGBANK_DB12454,none +13.7359726,DRUGBANK:DB12565,http://purl.obolibrary.org/obo/DRUGBANK_DB12565,none +13.7359726,DRUGBANK:DB12584,http://purl.obolibrary.org/obo/DRUGBANK_DB12584,none +13.7359726,DRUGBANK:DB12651,http://purl.obolibrary.org/obo/DRUGBANK_DB12651,none +13.7359726,DRUGBANK:DB12804,http://purl.obolibrary.org/obo/DRUGBANK_DB12804,none +13.7359726,DRUGBANK:DB12855,http://purl.obolibrary.org/obo/DRUGBANK_DB12855,none +13.7359726,DRUGBANK:DB12985,http://purl.obolibrary.org/obo/DRUGBANK_DB12985,none +13.7359726,DRUGBANK:DB12987,http://purl.obolibrary.org/obo/DRUGBANK_DB12987,none +13.7359726,DRUGBANK:DB13114,http://purl.obolibrary.org/obo/DRUGBANK_DB13114,none +13.7359726,DRUGBANK:DB13362,http://purl.obolibrary.org/obo/DRUGBANK_DB13362,none +13.7359726,DRUGBANK:DB13416,http://purl.obolibrary.org/obo/DRUGBANK_DB13416,none +13.7359726,DRUGBANK:DB13652,http://purl.obolibrary.org/obo/DRUGBANK_DB13652,none +13.7359726,DRUGBANK:DB13656,http://purl.obolibrary.org/obo/DRUGBANK_DB13656,none +13.7359726,DRUGBANK:DB13680,http://purl.obolibrary.org/obo/DRUGBANK_DB13680,none +13.7359726,DRUGBANK:DB14116,http://purl.obolibrary.org/obo/DRUGBANK_DB14116,none +13.7359726,DRUGBANK:DB14210,http://purl.obolibrary.org/obo/DRUGBANK_DB14210,none +13.7359726,DRUGBANK:DB14299,http://purl.obolibrary.org/obo/DRUGBANK_DB14299,none +13.7359726,DRUGBANK:DB14738,http://purl.obolibrary.org/obo/DRUGBANK_DB14738,none +13.7359726,GO:0000084,http://purl.obolibrary.org/obo/GO_0000084,mitotic S phase +13.7359726,GO:0001738,http://purl.obolibrary.org/obo/GO_0001738,morphogenesis of a polarized epithelium +13.7359726,GO:0001863,http://purl.obolibrary.org/obo/GO_0001863,collectin receptor activity +13.7359726,GO:0001952,http://purl.obolibrary.org/obo/GO_0001952,regulation of cell-matrix adhesion +13.7359726,GO:0002793,http://purl.obolibrary.org/obo/GO_0002793,positive regulation of peptide secretion +13.7359726,GO:0002861,http://purl.obolibrary.org/obo/GO_0002861,regulation of inflammatory response to antigenic stimulus +13.7359726,GO:0002864,http://purl.obolibrary.org/obo/GO_0002864,regulation of acute inflammatory response to antigenic stimulus +13.7359726,GO:0002883,http://purl.obolibrary.org/obo/GO_0002883,regulation of hypersensitivity +13.7359726,GO:0003839,http://purl.obolibrary.org/obo/GO_0003839,gamma-glutamylcyclotransferase activity +13.7359726,GO:0003864,http://purl.obolibrary.org/obo/GO_0003864,3-methyl-2-oxobutanoate hydroxymethyltransferase activity +13.7359726,GO:0003935,http://purl.obolibrary.org/obo/GO_0003935,GTP cyclohydrolase II activity +13.7359726,GO:0004161,http://purl.obolibrary.org/obo/GO_0004161,dimethylallyltranstransferase activity +13.7359726,GO:0004329,http://purl.obolibrary.org/obo/GO_0004329,formate-tetrahydrofolate ligase activity +13.7359726,GO:0004637,http://purl.obolibrary.org/obo/GO_0004637,phosphoribosylamine-glycine ligase activity +13.7359726,GO:0004664,http://purl.obolibrary.org/obo/GO_0004664,prephenate dehydratase activity +13.7359726,GO:0004847,http://purl.obolibrary.org/obo/GO_0004847,urea carboxylase activity +13.7359726,GO:0005427,http://purl.obolibrary.org/obo/GO_0005427,proton-dependent oligopeptide secondary active transmembrane transporter activity +13.7359726,GO:0006784,http://purl.obolibrary.org/obo/GO_0006784,heme A biosynthetic process +13.7359726,GO:0007062,http://purl.obolibrary.org/obo/GO_0007062,sister chromatid cohesion +13.7359726,GO:0007113,http://purl.obolibrary.org/obo/GO_0007113,endomitotic cell cycle +13.7359726,GO:0007343,http://purl.obolibrary.org/obo/GO_0007343,egg activation +13.7359726,GO:0007557,http://purl.obolibrary.org/obo/GO_0007557,regulation of juvenile hormone biosynthetic process +13.7359726,GO:0009536,http://purl.obolibrary.org/obo/GO_0009536,plastid +13.7359726,GO:0009543,http://purl.obolibrary.org/obo/GO_0009543,chloroplast thylakoid lumen +13.7359726,GO:0009549,http://purl.obolibrary.org/obo/GO_0009549,cellulose microfibril +13.7359726,GO:0010238,http://purl.obolibrary.org/obo/GO_0010238,response to proline +13.7359726,GO:0010968,http://purl.obolibrary.org/obo/GO_0010968,regulation of microtubule nucleation +13.7359726,GO:0014706,http://purl.obolibrary.org/obo/GO_0014706,striated muscle tissue development +13.7359726,GO:0015322,http://purl.obolibrary.org/obo/GO_0015322,secondary active oligopeptide transmembrane transporter activity +13.7359726,GO:0015756,http://purl.obolibrary.org/obo/GO_0015756,fucose transmembrane transport +13.7359726,GO:0016019,http://purl.obolibrary.org/obo/GO_0016019,peptidoglycan immune receptor activity +13.7359726,GO:0016402,http://purl.obolibrary.org/obo/GO_0016402,pristanoyl-CoA oxidase activity +13.7359726,GO:0016629,http://purl.obolibrary.org/obo/GO_0016629,12-oxophytodienoate reductase activity +13.7359726,GO:0018027,http://purl.obolibrary.org/obo/GO_0018027,peptidyl-lysine dimethylation +13.7359726,GO:0018818,http://purl.obolibrary.org/obo/GO_0018818,acetylene hydratase activity +13.7359726,GO:0018885,http://purl.obolibrary.org/obo/GO_0018885,carbon tetrachloride metabolic process +13.7359726,GO:0019116,http://purl.obolibrary.org/obo/GO_0019116,hydroxy-nicotine oxidase activity +13.7359726,GO:0021766,http://purl.obolibrary.org/obo/GO_0021766,hippocampus development +13.7359726,GO:0022011,http://purl.obolibrary.org/obo/GO_0022011,myelination in peripheral nervous system +13.7359726,GO:0022623,http://purl.obolibrary.org/obo/GO_0022623,proteasome-activating nucleotidase complex +13.7359726,GO:0030299,http://purl.obolibrary.org/obo/GO_0030299,intestinal cholesterol absorption +13.7359726,GO:0031455,http://purl.obolibrary.org/obo/GO_0031455,glycine betaine metabolic process +13.7359726,GO:0031958,http://purl.obolibrary.org/obo/GO_0031958,corticosteroid receptor signaling pathway +13.7359726,GO:0031978,http://purl.obolibrary.org/obo/GO_0031978,plastid thylakoid lumen +13.7359726,GO:0032292,http://purl.obolibrary.org/obo/GO_0032292,peripheral nervous system axon ensheathment +13.7359726,GO:0032651,http://purl.obolibrary.org/obo/GO_0032651,regulation of interleukin-1 beta production +13.7359726,GO:0032793,http://purl.obolibrary.org/obo/GO_0032793,positive regulation of CREB transcription factor activity +13.7359726,GO:0032843,http://purl.obolibrary.org/obo/GO_0032843,hydroperoxide reductase activity +13.7359726,GO:0033157,http://purl.obolibrary.org/obo/GO_0033157,regulation of intracellular protein transport +13.7359726,GO:0036123,http://purl.obolibrary.org/obo/GO_0036123,histone H3-K9 dimethylation +13.7359726,GO:0036388,http://purl.obolibrary.org/obo/GO_0036388,pre-replicative complex assembly +13.7359726,GO:0038103,http://purl.obolibrary.org/obo/GO_0038103,activin receptor antagonist activity involved in negative regulation of nodal signaling pathway +13.7359726,GO:0042611,http://purl.obolibrary.org/obo/GO_0042611,MHC protein complex +13.7359726,GO:0042824,http://purl.obolibrary.org/obo/GO_0042824,MHC class I peptide loading complex +13.7359726,GO:0042983,http://purl.obolibrary.org/obo/GO_0042983,amyloid precursor protein biosynthetic process +13.7359726,GO:0043392,http://purl.obolibrary.org/obo/GO_0043392,negative regulation of DNA binding +13.7359726,GO:0045931,http://purl.obolibrary.org/obo/GO_0045931,positive regulation of mitotic cell cycle +13.7359726,GO:0046160,http://purl.obolibrary.org/obo/GO_0046160,heme a metabolic process +13.7359726,GO:0046898,http://purl.obolibrary.org/obo/GO_0046898,response to cycloheximide +13.7359726,GO:0046957,http://purl.obolibrary.org/obo/GO_0046957,negative phototaxis +13.7359726,GO:0047291,http://purl.obolibrary.org/obo/GO_0047291,"lactosylceramide alpha-2,3-sialyltransferase activity" +13.7359726,GO:0047622,http://purl.obolibrary.org/obo/GO_0047622,adenosine nucleosidase activity +13.7359726,GO:0047676,http://purl.obolibrary.org/obo/GO_0047676,arachidonate-CoA ligase activity +13.7359726,GO:0047770,http://purl.obolibrary.org/obo/GO_0047770,carboxylate reductase activity +13.7359726,GO:0047931,http://purl.obolibrary.org/obo/GO_0047931,glucosamine kinase activity +13.7359726,GO:0048582,http://purl.obolibrary.org/obo/GO_0048582,positive regulation of post-embryonic development +13.7359726,GO:0048629,http://purl.obolibrary.org/obo/GO_0048629,trichome patterning +13.7359726,GO:0050567,http://purl.obolibrary.org/obo/GO_0050567,glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity +13.7359726,GO:0050715,http://purl.obolibrary.org/obo/GO_0050715,none +13.7359726,GO:0050871,http://purl.obolibrary.org/obo/GO_0050871,positive regulation of B cell activation +13.7359726,GO:0052129,http://purl.obolibrary.org/obo/GO_0052129,negative energy taxis +13.7359726,GO:0070014,http://purl.obolibrary.org/obo/GO_0070014,sucrase-isomaltase complex +13.7359726,GO:0070163,http://purl.obolibrary.org/obo/GO_0070163,regulation of adiponectin secretion +13.7359726,GO:0070394,http://purl.obolibrary.org/obo/GO_0070394,lipoteichoic acid metabolic process +13.7359726,GO:0070431,http://purl.obolibrary.org/obo/GO_0070431,nucleotide-binding oligomerization domain containing 2 signaling pathway +13.7359726,GO:0070822,http://purl.obolibrary.org/obo/GO_0070822,Sin3-type complex +13.7359726,GO:0071936,http://purl.obolibrary.org/obo/GO_0071936,coreceptor activity involved in Wnt signaling pathway +13.7359726,GO:0080110,http://purl.obolibrary.org/obo/GO_0080110,sporopollenin biosynthetic process +13.7359726,GO:0090155,http://purl.obolibrary.org/obo/GO_0090155,negative regulation of sphingolipid biosynthetic process +13.7359726,GO:0090352,http://purl.obolibrary.org/obo/GO_0090352,regulation of nitrate assimilation +13.7359726,GO:0097652,http://purl.obolibrary.org/obo/GO_0097652,"phosphatidylinositol 3-kinase complex, class II" +13.7359726,GO:0099571,http://purl.obolibrary.org/obo/GO_0099571,postsynaptic cytoskeleton +13.7359726,GO:1900060,http://purl.obolibrary.org/obo/GO_1900060,negative regulation of ceramide biosynthetic process +13.7359726,GO:1902005,http://purl.obolibrary.org/obo/GO_1902005,regulation of proline biosynthetic process +13.7359726,GO:1903041,http://purl.obolibrary.org/obo/GO_1903041,regulation of chondrocyte hypertrophy +13.7359726,GO:1903708,http://purl.obolibrary.org/obo/GO_1903708,positive regulation of hemopoiesis +13.7359726,GO:1990879,http://purl.obolibrary.org/obo/GO_1990879,CST complex +13.7359726,HP:0000096,http://purl.obolibrary.org/obo/HP_0000096,Glomerular sclerosis +13.7359726,HP:0000563,http://purl.obolibrary.org/obo/HP_0000563,Keratoconus +13.7359726,HP:0000820,http://purl.obolibrary.org/obo/HP_0000820,Abnormality of the thyroid gland +13.7359726,HP:0002524,http://purl.obolibrary.org/obo/HP_0002524,Cataplexy +13.7359726,HP:0002536,http://purl.obolibrary.org/obo/HP_0002536,Abnormal cortical gyration +13.7359726,HP:0025318,http://purl.obolibrary.org/obo/HP_0025318,Ovarian carcinoma +13.7359726,HP:0030186,http://purl.obolibrary.org/obo/HP_0030186,Kinetic tremor +13.7359726,HP:0100723,http://purl.obolibrary.org/obo/HP_0100723,Gastrointestinal stroma tumor +13.7359726,MONDO:0000959,http://purl.obolibrary.org/obo/MONDO_0000959,malignant hypertensive renal disease +13.7359726,MONDO:0000963,http://purl.obolibrary.org/obo/MONDO_0000963,esophageal lipoma +13.7359726,MONDO:0002046,http://purl.obolibrary.org/obo/MONDO_0002046,alcohol abuse +13.7359726,MONDO:0002403,http://purl.obolibrary.org/obo/MONDO_0002403,synovium cancer +13.7359726,MONDO:0002414,http://purl.obolibrary.org/obo/MONDO_0002414,gastric hemangioma +13.7359726,MONDO:0003189,http://purl.obolibrary.org/obo/MONDO_0003189,middle ear adenocarcinoma +13.7359726,MONDO:0003475,http://purl.obolibrary.org/obo/MONDO_0003475,papillary ependymoma +13.7359726,MONDO:0003650,http://purl.obolibrary.org/obo/MONDO_0003650,mixed hepatoblastoma +13.7359726,MONDO:0004140,http://purl.obolibrary.org/obo/MONDO_0004140,intermediate malignant teratoma +13.7359726,MONDO:0004190,http://purl.obolibrary.org/obo/MONDO_0004190,nephrogenic adenoma of urinary bladder +13.7359726,MONDO:0004302,http://purl.obolibrary.org/obo/MONDO_0004302,chief cell adenoma +13.7359726,MONDO:0004866,http://purl.obolibrary.org/obo/MONDO_0004866,eustachian tube disease +13.7359726,MONDO:0004873,http://purl.obolibrary.org/obo/MONDO_0004873,internal hemorrhoid +13.7359726,MONDO:0006302,http://purl.obolibrary.org/obo/MONDO_0006302,micropapillary serous carcinoma +13.7359726,MONDO:0006352,http://purl.obolibrary.org/obo/MONDO_0006352,paranasal sinus adenoid cystic carcinoma +13.7359726,MONDO:0006580,http://purl.obolibrary.org/obo/MONDO_0006580,miliaria +13.7359726,MONDO:0006824,http://purl.obolibrary.org/obo/MONDO_0006824,Krebs 2 carcinoma +13.7359726,MONDO:0007391,http://purl.obolibrary.org/obo/MONDO_0007391,coxa vara +13.7359726,MONDO:0007841,http://purl.obolibrary.org/obo/MONDO_0007841,coxopodopatellar syndrome +13.7359726,MONDO:0008115,http://purl.obolibrary.org/obo/MONDO_0008115,Feingold syndrome type 1 +13.7359726,MONDO:0008161,http://purl.obolibrary.org/obo/MONDO_0008161,otodental syndrome +13.7359726,MONDO:0008174,http://purl.obolibrary.org/obo/MONDO_0008174,pachyonychia congenita 2 +13.7359726,MONDO:0008881,http://purl.obolibrary.org/obo/MONDO_0008881,kyphomelic dysplasia +13.7359726,MONDO:0008935,http://purl.obolibrary.org/obo/MONDO_0008935,cerebellar ataxia-hypogonadism syndrome +13.7359726,MONDO:0009567,http://purl.obolibrary.org/obo/MONDO_0009567,Marinesco-Sjogren syndrome +13.7359726,MONDO:0009583,http://purl.obolibrary.org/obo/MONDO_0009583,"blepharophimosis - intellectual disability syndrome, Ohdo type" +13.7359726,MONDO:0009660,http://purl.obolibrary.org/obo/MONDO_0009660,mucopolysaccharidosis type 4B +13.7359726,MONDO:0009863,http://purl.obolibrary.org/obo/MONDO_0009863,BH4-deficient hyperphenylalaninemia A +13.7359726,MONDO:0010213,http://purl.obolibrary.org/obo/MONDO_0010213,xeroderma pigmentosum group E +13.7359726,MONDO:0010663,http://purl.obolibrary.org/obo/MONDO_0010663,X-linked intellectual disability-hypotonic face syndrome +13.7359726,MONDO:0011087,http://purl.obolibrary.org/obo/MONDO_0011087,inflammatory bowel disease 2 +13.7359726,MONDO:0011308,http://purl.obolibrary.org/obo/MONDO_0011308,gracile syndrome +13.7359726,MONDO:0011518,http://purl.obolibrary.org/obo/MONDO_0011518,Wiedemann-Steiner syndrome +13.7359726,MONDO:0015738,http://purl.obolibrary.org/obo/MONDO_0015738,childhood-onset nemaline myopathy +13.7359726,MONDO:0015797,http://purl.obolibrary.org/obo/MONDO_0015797,UV-sensitive syndrome +13.7359726,MONDO:0015921,http://purl.obolibrary.org/obo/MONDO_0015921,ARX-related epileptic encephalopathy +13.7359726,MONDO:0016041,http://purl.obolibrary.org/obo/MONDO_0016041,congenital microgastria +13.7359726,MONDO:0016799,http://purl.obolibrary.org/obo/MONDO_0016799,mitochondrial oxidative phosphorylation disorder with no known mechanism +13.7359726,MONDO:0017736,http://purl.obolibrary.org/obo/MONDO_0017736,disorder of sialic acid metabolism +13.7359726,MONDO:0018449,http://purl.obolibrary.org/obo/MONDO_0018449,acquired cystic disease-associated renal cell carcinoma +13.7359726,MONDO:0018712,http://purl.obolibrary.org/obo/MONDO_0018712,composite hemangioendothelioma +13.7359726,MONDO:0018790,http://purl.obolibrary.org/obo/MONDO_0018790,COL4A1 or COL4A2-related cerebral small vessel disease with hemorrhagic tendancy +13.7359726,MONDO:0019321,http://purl.obolibrary.org/obo/MONDO_0019321,atypical Werner syndrome +13.7359726,MONDO:0020494,http://purl.obolibrary.org/obo/MONDO_0020494,oculootodental syndrome +13.7359726,MONDO:0020644,http://purl.obolibrary.org/obo/MONDO_0020644,lung non-Hodgkin lymphoma +13.7359726,MONDO:0021135,http://purl.obolibrary.org/obo/MONDO_0021135,rare or common +13.7359726,MONDO:0022196,http://purl.obolibrary.org/obo/MONDO_0022196,chronic erosive gastritis +13.7359726,MONDO:0024358,http://purl.obolibrary.org/obo/MONDO_0024358,complex sleep apnea +13.7359726,MONDO:0045071,http://purl.obolibrary.org/obo/MONDO_0045071,mycosis fungoides variant +13.7359726,NCBITaxon:107465,http://purl.obolibrary.org/obo/NCBITaxon_107465,none +13.7359726,NCBITaxon:11596,http://purl.obolibrary.org/obo/NCBITaxon_11596,none +13.7359726,NCBITaxon:12615,http://purl.obolibrary.org/obo/NCBITaxon_12615,none +13.7359726,NCBITaxon:126287,http://purl.obolibrary.org/obo/NCBITaxon_126287,none +13.7359726,NCBITaxon:1301143,http://purl.obolibrary.org/obo/NCBITaxon_1301143,none +13.7359726,NCBITaxon:1302176,http://purl.obolibrary.org/obo/NCBITaxon_1302176,none +13.7359726,NCBITaxon:1340802,http://purl.obolibrary.org/obo/NCBITaxon_1340802,none +13.7359726,NCBITaxon:136841,http://purl.obolibrary.org/obo/NCBITaxon_136841,Pseudomonas aeruginosa group +13.7359726,NCBITaxon:137,http://purl.obolibrary.org/obo/NCBITaxon_137,Spirochaetaceae +13.7359726,NCBITaxon:169618,http://purl.obolibrary.org/obo/NCBITaxon_169618,none +13.7359726,NCBITaxon:187214,http://purl.obolibrary.org/obo/NCBITaxon_187214,none +13.7359726,NCBITaxon:1980522,http://purl.obolibrary.org/obo/NCBITaxon_1980522,none +13.7359726,NCBITaxon:222556,http://purl.obolibrary.org/obo/NCBITaxon_222556,none +13.7359726,NCBITaxon:2301471,http://purl.obolibrary.org/obo/NCBITaxon_2301471,none +13.7359726,NCBITaxon:25628,http://purl.obolibrary.org/obo/NCBITaxon_25628,none +13.7359726,NCBITaxon:2572558,http://purl.obolibrary.org/obo/NCBITaxon_2572558,Ancylostomatoidea +13.7359726,NCBITaxon:2812636,http://purl.obolibrary.org/obo/NCBITaxon_2812636,none +13.7359726,NCBITaxon:287,http://purl.obolibrary.org/obo/NCBITaxon_287,Pseudomonas aeruginosa +13.7359726,NCBITaxon:32360,http://purl.obolibrary.org/obo/NCBITaxon_32360,none +13.7359726,NCBITaxon:33254,http://purl.obolibrary.org/obo/NCBITaxon_33254,none +13.7359726,NCBITaxon:33277,http://purl.obolibrary.org/obo/NCBITaxon_33277,none +13.7359726,NCBITaxon:33278,http://purl.obolibrary.org/obo/NCBITaxon_33278,Ancylostomatidae +13.7359726,NCBITaxon:333924,http://purl.obolibrary.org/obo/NCBITaxon_333924,none +13.7359726,NCBITaxon:33756,http://purl.obolibrary.org/obo/NCBITaxon_33756,none +13.7359726,NCBITaxon:338,http://purl.obolibrary.org/obo/NCBITaxon_338,none +13.7359726,NCBITaxon:358770,http://purl.obolibrary.org/obo/NCBITaxon_358770,none +13.7359726,NCBITaxon:36086,http://purl.obolibrary.org/obo/NCBITaxon_36086,Trichuris +13.7359726,NCBITaxon:36087,http://purl.obolibrary.org/obo/NCBITaxon_36087,Trichuris trichiura +13.7359726,NCBITaxon:37861,http://purl.obolibrary.org/obo/NCBITaxon_37861,none +13.7359726,NCBITaxon:38605,http://purl.obolibrary.org/obo/NCBITaxon_38605,Didelphimorphia +13.7359726,NCBITaxon:41088,http://purl.obolibrary.org/obo/NCBITaxon_41088,none +13.7359726,NCBITaxon:424573,http://purl.obolibrary.org/obo/NCBITaxon_424573,none +13.7359726,NCBITaxon:45269,http://purl.obolibrary.org/obo/NCBITaxon_45269,none +13.7359726,NCBITaxon:471278,http://purl.obolibrary.org/obo/NCBITaxon_471278,none +13.7359726,NCBITaxon:5073,http://purl.obolibrary.org/obo/NCBITaxon_5073,Penicillium +13.7359726,NCBITaxon:51023,http://purl.obolibrary.org/obo/NCBITaxon_51023,none +13.7359726,NCBITaxon:526119,http://purl.obolibrary.org/obo/NCBITaxon_526119,none +13.7359726,NCBITaxon:5690,http://purl.obolibrary.org/obo/NCBITaxon_5690,Trypanosoma +13.7359726,NCBITaxon:6029,http://purl.obolibrary.org/obo/NCBITaxon_6029,Microsporidia +13.7359726,NCBITaxon:6180,http://purl.obolibrary.org/obo/NCBITaxon_6180,Strigeidida +13.7359726,NCBITaxon:64290,http://purl.obolibrary.org/obo/NCBITaxon_64290,none +13.7359726,NCBITaxon:6956,http://purl.obolibrary.org/obo/NCBITaxon_6956,none +13.7359726,NCBITaxon:703530,http://purl.obolibrary.org/obo/NCBITaxon_703530,none +13.7359726,NCBITaxon:7149,http://purl.obolibrary.org/obo/NCBITaxon_7149,none +13.7359726,NCBITaxon:7381,http://purl.obolibrary.org/obo/NCBITaxon_7381,none +13.7359726,NCBITaxon:8229,http://purl.obolibrary.org/obo/NCBITaxon_8229,none +13.7359726,NCBITaxon:88646,http://purl.obolibrary.org/obo/NCBITaxon_88646,none +13.7359726,NCBITaxon:88741,http://purl.obolibrary.org/obo/NCBITaxon_88741,none +13.7359726,NCBITaxon:9265,http://purl.obolibrary.org/obo/NCBITaxon_9265,Didelphidae +13.7359726,PR:000002075,http://purl.obolibrary.org/obo/PR_000002075,potassium channel subfamily K member 17 +13.7359726,PR:000002078,http://purl.obolibrary.org/obo/PR_000002078,potassium channel subfamily K member 7 +13.7359726,PR:000003104,http://purl.obolibrary.org/obo/PR_000003104,14-3-3 protein epsilon +13.7359726,PR:000003665,http://purl.obolibrary.org/obo/PR_000003665,"acyl-coenzyme A synthetase ACSM2A, mitochondrial" +13.7359726,PR:000003789,http://purl.obolibrary.org/obo/PR_000003789,[protein ADP-ribosylarginine] hydrolase-like protein 1 +13.7359726,PR:000004009,http://purl.obolibrary.org/obo/PR_000004009,alpha-amylase 2B +13.7359726,PR:000004053,http://purl.obolibrary.org/obo/PR_000004053,ankyrin repeat and SAM domain-containing protein 6 +13.7359726,PR:000004172,http://purl.obolibrary.org/obo/PR_000004172,apoptosis-related protein 2 +13.7359726,PR:000004279,http://purl.obolibrary.org/obo/PR_000004279,ADP-ribosylation factor-like protein 15 +13.7359726,PR:000004614,http://purl.obolibrary.org/obo/PR_000004614,bile acid-CoA:amino acid N-acyltransferase +13.7359726,PR:000004653,http://purl.obolibrary.org/obo/PR_000004653,phosphatidylserine lipase ABHD16A +13.7359726,PR:000004815,http://purl.obolibrary.org/obo/PR_000004815,BRI3-binding protein +13.7359726,PR:000004916,http://purl.obolibrary.org/obo/PR_000004916,carbonic anhydrase 13 +13.7359726,PR:000005025,http://purl.obolibrary.org/obo/PR_000005025,caprin-2 +13.7359726,PR:000005144,http://purl.obolibrary.org/obo/PR_000005144,cell cycle progression protein 1 +13.7359726,PR:000005261,http://purl.obolibrary.org/obo/PR_000005261,mitochondrial tRNA methylthiotransferase CDK5RAP1 +13.7359726,PR:000005682,http://purl.obolibrary.org/obo/PR_000005682,negative elongation factor B +13.7359726,PR:000005777,http://purl.obolibrary.org/obo/PR_000005777,"cytochrome c oxidase subunit 4 isoform 2, mitochondrial" +13.7359726,PR:000005934,http://purl.obolibrary.org/obo/PR_000005934,chondroitin sulfate N-acetylgalactosaminyltransferase 2 +13.7359726,PR:000005950,http://purl.obolibrary.org/obo/PR_000005950,casein kinase II subunit alpha +13.7359726,PR:000006213,http://purl.obolibrary.org/obo/PR_000006213,none +13.7359726,PR:000006237,http://purl.obolibrary.org/obo/PR_000006237,none +13.7359726,PR:000006343,http://purl.obolibrary.org/obo/PR_000006343,phospholipase DDHD1 +13.7359726,PR:000006715,http://purl.obolibrary.org/obo/PR_000006715,D-aminoacyl-tRNA deacylase 1 +13.7359726,PR:000006995,http://purl.obolibrary.org/obo/PR_000006995,eukaryotic translation initiation factor 4E-binding protein 2 +13.7359726,PR:000007169,http://purl.obolibrary.org/obo/PR_000007169,DNA excision repair protein ERCC-6-like +13.7359726,PR:000007266,http://purl.obolibrary.org/obo/PR_000007266,exosome complex component RRP45 +13.7359726,PR:000007538,http://purl.obolibrary.org/obo/PR_000007538,peptidyl-prolyl cis-trans isomerase FKBP2 +13.7359726,PR:000007748,http://purl.obolibrary.org/obo/PR_000007748,glucose-6-phosphatase 3 +13.7359726,PR:000007755,http://purl.obolibrary.org/obo/PR_000007755,GRB2-associated-binding protein 3 +13.7359726,PR:000007962,http://purl.obolibrary.org/obo/PR_000007962,gamma-glutamyltranspeptidase 2 +13.7359726,PR:000008060,http://purl.obolibrary.org/obo/PR_000008060,glycine N-acyltransferase-like protein 1 +13.7359726,PR:000008157,http://purl.obolibrary.org/obo/PR_000008157,cell surface A33 antigen +13.7359726,PR:000008410,http://purl.obolibrary.org/obo/PR_000008410,none +13.7359726,PR:000008610,http://purl.obolibrary.org/obo/PR_000008610,hexokinase-3 +13.7359726,PR:000008935,http://purl.obolibrary.org/obo/PR_000008935,intraflagellar transport protein 52 +13.7359726,PR:000008939,http://purl.obolibrary.org/obo/PR_000008939,intraflagellar transport protein 81 +13.7359726,PR:000009112,http://purl.obolibrary.org/obo/PR_000009112,"iron-sulfur cluster assembly 2, mitochondrial" +13.7359726,PR:000009360,http://purl.obolibrary.org/obo/PR_000009360,krueppel-like factor 16 +13.7359726,PR:000009694,http://purl.obolibrary.org/obo/PR_000009694,transcription factor LBX2 +13.7359726,PR:000009710,http://purl.obolibrary.org/obo/PR_000009710,late cornified envelope protein 3B +13.7359726,PR:000009876,http://purl.obolibrary.org/obo/PR_000009876,ligand of Numb protein X 2 +13.7359726,PR:000009953,http://purl.obolibrary.org/obo/PR_000009953,large subunit GTPase 1 +13.7359726,PR:000010325,http://purl.obolibrary.org/obo/PR_000010325,meprin A subunit beta +13.7359726,PR:000010466,http://purl.obolibrary.org/obo/PR_000010466,monocyte to macrophage differentiation factor 2 +13.7359726,PR:000010509,http://purl.obolibrary.org/obo/PR_000010509,MOB-like protein phocein +13.7359726,PR:000010531,http://purl.obolibrary.org/obo/PR_000010531,mannose-P-dolichol utilization defect 1 protein +13.7359726,PR:000010538,http://purl.obolibrary.org/obo/PR_000010538,M-phase phosphoprotein 8 +13.7359726,PR:000010592,http://purl.obolibrary.org/obo/PR_000010592,"39S ribosomal protein L32, mitochondrial" +13.7359726,PR:000010657,http://purl.obolibrary.org/obo/PR_000010657,membrane-spanning 4-domains subfamily A member 3 +13.7359726,PR:000011020,http://purl.obolibrary.org/obo/PR_000011020,condensin complex subunit 1 +13.7359726,PR:000011068,http://purl.obolibrary.org/obo/PR_000011068,"NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial" +13.7359726,PR:000011322,http://purl.obolibrary.org/obo/PR_000011322,nucleolar protein 14 +13.7359726,PR:000011538,http://purl.obolibrary.org/obo/PR_000011538,nuclear RNA export factor 5 +13.7359726,PR:000011580,http://purl.obolibrary.org/obo/PR_000011580,ornithine decarboxylase antizyme 2 +13.7359726,PR:000012249,http://purl.obolibrary.org/obo/PR_000012249,paralemmin +13.7359726,PR:000012329,http://purl.obolibrary.org/obo/PR_000012329,pre-B-cell leukemia transcription factor 4 +13.7359726,PR:000012337,http://purl.obolibrary.org/obo/PR_000012337,poly(rC)-binding protein 3 +13.7359726,PR:000012584,http://purl.obolibrary.org/obo/PR_000012584,"ATP-dependent 6-phosphofructokinase, platelet type" +13.7359726,PR:000012766,http://purl.obolibrary.org/obo/PR_000012766,E3 ubiquitin-protein ligase Praja-1 +13.7359726,PR:000012985,http://purl.obolibrary.org/obo/PR_000012985,POLR1D gene translation product +13.7359726,PR:000013137,http://purl.obolibrary.org/obo/PR_000013137,serine/threonine-protein phosphatase 2A 55 kDa regulatory subunit B gamma isoform +13.7359726,PR:000013145,http://purl.obolibrary.org/obo/PR_000013145,serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit gamma isoform +13.7359726,PR:000013267,http://purl.obolibrary.org/obo/PR_000013267,prominin-2 +13.7359726,PR:000013494,http://purl.obolibrary.org/obo/PR_000013494,transcriptional activator protein Pur-alpha +13.7359726,PR:000013988,http://purl.obolibrary.org/obo/PR_000013988,Rho-related GTP-binding protein RhoV +13.7359726,PR:000014219,http://purl.obolibrary.org/obo/PR_000014219,60S ribosomal protein L36 +13.7359726,PR:000014246,http://purl.obolibrary.org/obo/PR_000014246,ribonuclease P protein subunit p38 +13.7359726,PR:000014484,http://purl.obolibrary.org/obo/PR_000014484,secretory carrier-associated membrane protein 2 +13.7359726,PR:000014520,http://purl.obolibrary.org/obo/PR_000014520,sex comb on midleg-like protein 2 +13.7359726,PR:000014693,http://purl.obolibrary.org/obo/PR_000014693,serpin B13 +13.7359726,PR:000014908,http://purl.obolibrary.org/obo/PR_000014908,exosome RNA helicase MTR4 +13.7359726,PR:000015028,http://purl.obolibrary.org/obo/PR_000015028,ADP/ATP translocase 4 +13.7359726,PR:000015258,http://purl.obolibrary.org/obo/PR_000015258,stromal membrane-associated protein 1 +13.7359726,PR:000015279,http://purl.obolibrary.org/obo/PR_000015279,mitochondrial dynamics protein MID51 +13.7359726,PR:000015449,http://purl.obolibrary.org/obo/PR_000015449,sperm acrosome membrane-associated protein 3 +13.7359726,PR:000015842,http://purl.obolibrary.org/obo/PR_000015842,surfeit locus protein 4 +13.7359726,PR:000015843,http://purl.obolibrary.org/obo/PR_000015843,surfeit locus protein 6 +13.7359726,PR:000016026,http://purl.obolibrary.org/obo/PR_000016026,transcription initiation factor TFIID subunit 3 +13.7359726,PR:000016199,http://purl.obolibrary.org/obo/PR_000016199,none +13.7359726,PR:000016201,http://purl.obolibrary.org/obo/PR_000016201,T-complex protein 11 +13.7359726,PR:000016249,http://purl.obolibrary.org/obo/PR_000016249,testis-expressed protein 11 +13.7359726,PR:000016312,http://purl.obolibrary.org/obo/PR_000016312,THO complex subunit 3 +13.7359726,PR:000016628,http://purl.obolibrary.org/obo/PR_000016628,trem-like transcript 2 protein +13.7359726,PR:000016862,http://purl.obolibrary.org/obo/PR_000016862,endoplasmic reticulum resident protein 44 +13.7359726,PR:000016928,http://purl.obolibrary.org/obo/PR_000016928,none +13.7359726,PR:000016988,http://purl.obolibrary.org/obo/PR_000016988,ubiquitin-conjugating enzyme E2 T +13.7359726,PR:000017022,http://purl.obolibrary.org/obo/PR_000017022,UBX domain-containing protein 6 +13.7359726,PR:000017079,http://purl.obolibrary.org/obo/PR_000017079,serine/threonine-protein kinase ULK3 +13.7359726,PR:000017153,http://purl.obolibrary.org/obo/PR_000017153,ubiquitin carboxyl-terminal hydrolase 17 +13.7359726,PR:000017262,http://purl.obolibrary.org/obo/PR_000017262,vasorin +13.7359726,PR:000017728,http://purl.obolibrary.org/obo/PR_000017728,zinc finger protein 174 +13.7359726,PR:000022284,http://purl.obolibrary.org/obo/PR_000022284,none +13.7359726,PR:000022485,http://purl.obolibrary.org/obo/PR_000022485,none +13.7359726,PR:000022517,http://purl.obolibrary.org/obo/PR_000022517,none +13.7359726,PR:000022564,http://purl.obolibrary.org/obo/PR_000022564,none +13.7359726,PR:000023269,http://purl.obolibrary.org/obo/PR_000023269,none +13.7359726,PR:000023610,http://purl.obolibrary.org/obo/PR_000023610,none +13.7359726,PR:000023615,http://purl.obolibrary.org/obo/PR_000023615,none +13.7359726,PR:000023734,http://purl.obolibrary.org/obo/PR_000023734,none +13.7359726,PR:000023882,http://purl.obolibrary.org/obo/PR_000023882,none +13.7359726,PR:000024049,http://purl.obolibrary.org/obo/PR_000024049,none +13.7359726,PR:000024091,http://purl.obolibrary.org/obo/PR_000024091,none +13.7359726,PR:000024098,http://purl.obolibrary.org/obo/PR_000024098,none +13.7359726,PR:000024855,http://purl.obolibrary.org/obo/PR_000024855,none +13.7359726,PR:000028343,http://purl.obolibrary.org/obo/PR_000028343,none +13.7359726,PR:000029181,http://purl.obolibrary.org/obo/PR_000029181,none +13.7359726,PR:000029355,http://purl.obolibrary.org/obo/PR_000029355,MICOS complex subunit MIC19 +13.7359726,PR:000029439,http://purl.obolibrary.org/obo/PR_000029439,"calcium uptake protein 2, mitochondrial" +13.7359726,PR:000030458,http://purl.obolibrary.org/obo/PR_000030458,protein ABHD11 +13.7359726,PR:000030536,http://purl.obolibrary.org/obo/PR_000030536,N-lysine methyltransferase SETD6 +13.7359726,PR:000030578,http://purl.obolibrary.org/obo/PR_000030578,"signal peptide, CUB and EGF-like domain-containing protein 3" +13.7359726,PR:000030767,http://purl.obolibrary.org/obo/PR_000030767,retrotransposon Gag-like protein 4 +13.7359726,PR:000031836,http://purl.obolibrary.org/obo/PR_000031836,BTB/POZ domain-containing protein 7 +13.7359726,PR:000031974,http://purl.obolibrary.org/obo/PR_000031974,fibronectin type III and SPRY domain-containing protein 2 +13.7359726,PR:000032165,http://purl.obolibrary.org/obo/PR_000032165,F-box/LRR-repeat protein 4 +13.7359726,PR:000032196,http://purl.obolibrary.org/obo/PR_000032196,tripartite motif-containing protein 34 +13.7359726,PR:000033465,http://purl.obolibrary.org/obo/PR_000033465,none +13.7359726,PR:000034925,http://purl.obolibrary.org/obo/PR_000034925,none +13.7359726,PR:F4IXW2,http://purl.obolibrary.org/obo/PR_F4IXW2,none +13.7359726,PR:O14295,http://purl.obolibrary.org/obo/PR_O14295,none +13.7359726,PR:O42659,http://purl.obolibrary.org/obo/PR_O42659,none +13.7359726,PR:O64481,http://purl.obolibrary.org/obo/PR_O64481,none +13.7359726,PR:O82289,http://purl.obolibrary.org/obo/PR_O82289,none +13.7359726,PR:O88445,http://purl.obolibrary.org/obo/PR_O88445,none +13.7359726,PR:P05303,http://purl.obolibrary.org/obo/PR_P05303,none +13.7359726,PR:P05623,http://purl.obolibrary.org/obo/PR_P05623,none +13.7359726,PR:P05734,http://purl.obolibrary.org/obo/PR_P05734,none +13.7359726,PR:P06106,http://purl.obolibrary.org/obo/PR_P06106,none +13.7359726,PR:P07262,http://purl.obolibrary.org/obo/PR_P07262,none +13.7359726,PR:P0CB49,http://purl.obolibrary.org/obo/PR_P0CB49,none +13.7359726,PR:P0CU18,http://purl.obolibrary.org/obo/PR_P0CU18,none +13.7359726,PR:P12370,http://purl.obolibrary.org/obo/PR_P12370,none +13.7359726,PR:P14747,http://purl.obolibrary.org/obo/PR_P14747,none +13.7359726,PR:P26310,http://purl.obolibrary.org/obo/PR_P26310,none +13.7359726,PR:P28178,http://purl.obolibrary.org/obo/PR_P28178,none +13.7359726,PR:P33890,http://purl.obolibrary.org/obo/PR_P33890,none +13.7359726,PR:P38666,http://purl.obolibrary.org/obo/PR_P38666,none +13.7359726,PR:P39734,http://purl.obolibrary.org/obo/PR_P39734,none +13.7359726,PR:Q05778,http://purl.obolibrary.org/obo/PR_Q05778,none +13.7359726,PR:Q06667,http://purl.obolibrary.org/obo/PR_Q06667,none +13.7359726,PR:Q09511,http://purl.obolibrary.org/obo/PR_Q09511,none +13.7359726,PR:Q12504,http://purl.obolibrary.org/obo/PR_Q12504,none +13.7359726,PR:Q12508,http://purl.obolibrary.org/obo/PR_Q12508,none +13.7359726,PR:Q3E9D5,http://purl.obolibrary.org/obo/PR_Q3E9D5,none +13.7359726,PR:Q54XZ0,http://purl.obolibrary.org/obo/PR_Q54XZ0,none +13.7359726,PR:Q550W1,http://purl.obolibrary.org/obo/PR_Q550W1,none +13.7359726,PR:Q7T381,http://purl.obolibrary.org/obo/PR_Q7T381,none +13.7359726,PR:Q7XZU0,http://purl.obolibrary.org/obo/PR_Q7XZU0,none +13.7359726,PR:Q802V6,http://purl.obolibrary.org/obo/PR_Q802V6,none +13.7359726,PR:Q8L5W7,http://purl.obolibrary.org/obo/PR_Q8L5W7,none +13.7359726,PR:Q8W475,http://purl.obolibrary.org/obo/PR_Q8W475,none +13.7359726,PR:Q91048,http://purl.obolibrary.org/obo/PR_Q91048,none +13.7359726,PR:Q92005,http://purl.obolibrary.org/obo/PR_Q92005,none +13.7359726,PR:Q92365,http://purl.obolibrary.org/obo/PR_Q92365,none +13.7359726,PR:Q96524,http://purl.obolibrary.org/obo/PR_Q96524,none +13.7359726,PR:Q9C744,http://purl.obolibrary.org/obo/PR_Q9C744,none +13.7359726,PR:Q9FF55,http://purl.obolibrary.org/obo/PR_Q9FF55,none +13.7359726,PR:Q9JLC3,http://purl.obolibrary.org/obo/PR_Q9JLC3,none +13.7359726,PR:Q9LK48,http://purl.obolibrary.org/obo/PR_Q9LK48,none +13.7359726,PR:Q9LSQ6,http://purl.obolibrary.org/obo/PR_Q9LSQ6,none +13.7359726,PR:Q9M2S3,http://purl.obolibrary.org/obo/PR_Q9M2S3,none +13.7359726,PR:Q9S851,http://purl.obolibrary.org/obo/PR_Q9S851,none +13.7359726,PR:Q9S9U0,http://purl.obolibrary.org/obo/PR_Q9S9U0,none +13.7359726,PR:Q9SIJ5,http://purl.obolibrary.org/obo/PR_Q9SIJ5,none +13.7359726,PR:Q9SYZ0,http://purl.obolibrary.org/obo/PR_Q9SYZ0,none +13.7359726,SO:0000200,http://purl.obolibrary.org/obo/SO_0000200,five_prime_coding_exon +13.7359726,SO:0001061,http://purl.obolibrary.org/obo/SO_0001061,propeptide_cleavage_site +13.7359726,SO:0001205,http://purl.obolibrary.org/obo/SO_0001205,SP6_RNA_Polymerase_Promoter +13.7359726,SO:0001214,http://purl.obolibrary.org/obo/SO_0001214,noncoding_region_of_exon +13.7359726,SO:0001833,http://purl.obolibrary.org/obo/SO_0001833,V_region +13.7359726,SO:0001907,http://purl.obolibrary.org/obo/SO_0001907,feature_elongation +13.7359726,SO:1000014,http://purl.obolibrary.org/obo/SO_1000014,purine_transition +13.7359726,SO:1000040,http://purl.obolibrary.org/obo/SO_1000040,inverted_tandem_duplication +13.7359726,UBERON:0000949,http://purl.obolibrary.org/obo/UBERON_0000949,endocrine system +13.7359726,UBERON:0001046,http://purl.obolibrary.org/obo/UBERON_0001046,hindgut +13.7359726,UBERON:0001340,http://purl.obolibrary.org/obo/UBERON_0001340,dorsal artery of penis +13.7359726,UBERON:0001849,http://purl.obolibrary.org/obo/UBERON_0001849,membranous labyrinth +13.7359726,UBERON:0002174,http://purl.obolibrary.org/obo/UBERON_0002174,middle lobe of right lung +13.7359726,UBERON:0002588,http://purl.obolibrary.org/obo/UBERON_0002588,decussation of superior cerebellar peduncle +13.7359726,UBERON:0002595,http://purl.obolibrary.org/obo/UBERON_0002595,orbital sulcus +13.7359726,UBERON:0002790,http://purl.obolibrary.org/obo/UBERON_0002790,dorsal acoustic stria +13.7359726,UBERON:0002886,http://purl.obolibrary.org/obo/UBERON_0002886,lateral amygdaloid nucleus +13.7359726,UBERON:0003240,http://purl.obolibrary.org/obo/UBERON_0003240,epithelium of lateral semicircular canal +13.7359726,UBERON:0003456,http://purl.obolibrary.org/obo/UBERON_0003456,respiratory system lymphatic vessel +13.7359726,UBERON:0003688,http://purl.obolibrary.org/obo/UBERON_0003688,omentum +13.7359726,UBERON:0004382,http://purl.obolibrary.org/obo/UBERON_0004382,epiphysis of humerus +13.7359726,UBERON:0004388,http://purl.obolibrary.org/obo/UBERON_0004388,epiphysis of fibula +13.7359726,UBERON:0004875,http://purl.obolibrary.org/obo/UBERON_0004875,nephrogenic cord +13.7359726,UBERON:0004999,http://purl.obolibrary.org/obo/UBERON_0004999,mucosa of biliary tree +13.7359726,UBERON:0005024,http://purl.obolibrary.org/obo/UBERON_0005024,mucosa of soft palate +13.7359726,UBERON:0005097,http://purl.obolibrary.org/obo/UBERON_0005097,renal connecting tubule +13.7359726,UBERON:0005302,http://purl.obolibrary.org/obo/UBERON_0005302,female preputial gland +13.7359726,UBERON:0006082,http://purl.obolibrary.org/obo/UBERON_0006082,fundus of urinary bladder +13.7359726,UBERON:0006163,http://purl.obolibrary.org/obo/UBERON_0006163,dorsal digital artery +13.7359726,UBERON:0006197,http://purl.obolibrary.org/obo/UBERON_0006197,auricular vein +13.7359726,UBERON:0006241,http://purl.obolibrary.org/obo/UBERON_0006241,future spinal cord +13.7359726,UBERON:0007276,http://purl.obolibrary.org/obo/UBERON_0007276,crista of ampulla of lateral semicircular duct of membranous laybrinth +13.7359726,UBERON:0008251,http://purl.obolibrary.org/obo/UBERON_0008251,water vascular system +13.7359726,UBERON:0008913,http://purl.obolibrary.org/obo/UBERON_0008913,perichondral bone +13.7359726,UBERON:0010014,http://purl.obolibrary.org/obo/UBERON_0010014,epigonal organ +13.7359726,UBERON:0010205,http://purl.obolibrary.org/obo/UBERON_0010205,mesencephalic vein +13.7359726,UBERON:0010373,http://purl.obolibrary.org/obo/UBERON_0010373,uncinate process of pancreas +13.7359726,UBERON:0010749,http://purl.obolibrary.org/obo/UBERON_0010749,middle pharyngeal constrictor +13.7359726,UBERON:0011017,http://purl.obolibrary.org/obo/UBERON_0011017,semispinalis muscle +13.7359726,UBERON:0011201,http://purl.obolibrary.org/obo/UBERON_0011201,muscle layer of small intestine +13.7359726,UBERON:0011641,http://purl.obolibrary.org/obo/UBERON_0011641,odontogenic mesenchyme of molar +13.7359726,UBERON:0011695,http://purl.obolibrary.org/obo/UBERON_0011695,embryonic cardiovascular system +13.7359726,UBERON:0014480,http://purl.obolibrary.org/obo/UBERON_0014480,blood feather +13.7359726,UBERON:0018227,http://purl.obolibrary.org/obo/UBERON_0018227,pulmonary lymphatic vessel +13.7359726,UBERON:0018276,http://purl.obolibrary.org/obo/UBERON_0018276,egg tooth +13.7359726,UBERON:2005093,http://purl.obolibrary.org/obo/UBERON_2005093,nasal vein +13.7359726,UBERON:2007043,http://purl.obolibrary.org/obo/UBERON_2007043,hindbrain neural tube +13.7767946,CHEBI:15854,http://purl.obolibrary.org/obo/CHEBI_15854,quinine +13.7767946,CHEBI:17497,http://purl.obolibrary.org/obo/CHEBI_17497,glycolic acid +13.7767946,CHEBI:24043,http://purl.obolibrary.org/obo/CHEBI_24043,flavones +13.7767946,CHEBI:24803,http://purl.obolibrary.org/obo/CHEBI_24803,indole-3-acetic acids +13.7767946,CHEBI:25477,http://purl.obolibrary.org/obo/CHEBI_25477,naphthalenes +13.7767946,CHEBI:25903,http://purl.obolibrary.org/obo/CHEBI_25903,peptide antibiotic +13.7767946,CHEBI:28619,http://purl.obolibrary.org/obo/CHEBI_28619,acrylamide +13.7767946,CHEBI:31899,http://purl.obolibrary.org/obo/CHEBI_31899,nemonapride +13.7767946,CHEBI:32471,http://purl.obolibrary.org/obo/CHEBI_32471,aspartate residue +13.7767946,CHEBI:32615,http://purl.obolibrary.org/obo/CHEBI_32615,isoleucine residue +13.7767946,CHEBI:33145,http://purl.obolibrary.org/obo/CHEBI_33145,boron oxoacid +13.7767946,CHEBI:33295,http://purl.obolibrary.org/obo/CHEBI_33295,diagnostic agent +13.7767946,CHEBI:33641,http://purl.obolibrary.org/obo/CHEBI_33641,olefin +13.7767946,CHEBI:33749,http://purl.obolibrary.org/obo/CHEBI_33749,platinum molecular entity +13.7767946,CHEBI:33978,http://purl.obolibrary.org/obo/CHEBI_33978,alkali metal hydroxide +13.7767946,CHEBI:37960,http://purl.obolibrary.org/obo/CHEBI_37960,cyanine dye +13.7767946,CHEBI:38124,http://purl.obolibrary.org/obo/CHEBI_38124,dialdehyde +13.7767946,CHEBI:38501,http://purl.obolibrary.org/obo/CHEBI_38501,none +13.7767946,CHEBI:4755,http://purl.obolibrary.org/obo/CHEBI_4755,econazole nitrate +13.7767946,CHEBI:51349,http://purl.obolibrary.org/obo/CHEBI_51349,polyamine macromolecule +13.7767946,CHEBI:58953,http://purl.obolibrary.org/obo/CHEBI_58953,saturated fatty acid anion +13.7767946,CHEBI:77068,http://purl.obolibrary.org/obo/CHEBI_77068,sphingoid 1-phosphate +13.7767946,CL:0000073,http://purl.obolibrary.org/obo/CL_0000073,barrier epithelial cell +13.7767946,CL:0000808,http://purl.obolibrary.org/obo/CL_0000808,DN4 thymocyte +13.7767946,CL:0000856,http://purl.obolibrary.org/obo/CL_0000856,neuromast hair cell +13.7767946,CL:0001039,http://purl.obolibrary.org/obo/CL_0001039,terminally differentiated osteoblast +13.7767946,CL:0002225,http://purl.obolibrary.org/obo/CL_0002225,secondary lens fiber +13.7767946,CL:0002238,http://purl.obolibrary.org/obo/CL_0002238,male gonocyte +13.7767946,CL:0002262,http://purl.obolibrary.org/obo/CL_0002262,endothelial cell of sinusoid +13.7767946,CL:0002537,http://purl.obolibrary.org/obo/CL_0002537,amnion mesenchymal stem cell +13.7767946,CL:1000692,http://purl.obolibrary.org/obo/CL_1000692,kidney interstitial fibroblast +13.7767946,DRUGBANK:DB00944,http://purl.obolibrary.org/obo/DRUGBANK_DB00944,none +13.7767946,DRUGBANK:DB02279,http://purl.obolibrary.org/obo/DRUGBANK_DB02279,none +13.7767946,DRUGBANK:DB02630,http://purl.obolibrary.org/obo/DRUGBANK_DB02630,none +13.7767946,DRUGBANK:DB02793,http://purl.obolibrary.org/obo/DRUGBANK_DB02793,none +13.7767946,DRUGBANK:DB04252,http://purl.obolibrary.org/obo/DRUGBANK_DB04252,none +13.7767946,DRUGBANK:DB04429,http://purl.obolibrary.org/obo/DRUGBANK_DB04429,none +13.7767946,DRUGBANK:DB05135,http://purl.obolibrary.org/obo/DRUGBANK_DB05135,none +13.7767946,DRUGBANK:DB05494,http://purl.obolibrary.org/obo/DRUGBANK_DB05494,none +13.7767946,DRUGBANK:DB06194,http://purl.obolibrary.org/obo/DRUGBANK_DB06194,none +13.7767946,DRUGBANK:DB06587,http://purl.obolibrary.org/obo/DRUGBANK_DB06587,none +13.7767946,DRUGBANK:DB09002,http://purl.obolibrary.org/obo/DRUGBANK_DB09002,none +13.7767946,DRUGBANK:DB10890,http://purl.obolibrary.org/obo/DRUGBANK_DB10890,none +13.7767946,DRUGBANK:DB10997,http://purl.obolibrary.org/obo/DRUGBANK_DB10997,none +13.7767946,DRUGBANK:DB11235,http://purl.obolibrary.org/obo/DRUGBANK_DB11235,none +13.7767946,DRUGBANK:DB11341,http://purl.obolibrary.org/obo/DRUGBANK_DB11341,none +13.7767946,DRUGBANK:DB11451,http://purl.obolibrary.org/obo/DRUGBANK_DB11451,none +13.7767946,DRUGBANK:DB11470,http://purl.obolibrary.org/obo/DRUGBANK_DB11470,none +13.7767946,DRUGBANK:DB11976,http://purl.obolibrary.org/obo/DRUGBANK_DB11976,none +13.7767946,DRUGBANK:DB12020,http://purl.obolibrary.org/obo/DRUGBANK_DB12020,none +13.7767946,DRUGBANK:DB12445,http://purl.obolibrary.org/obo/DRUGBANK_DB12445,none +13.7767946,DRUGBANK:DB12477,http://purl.obolibrary.org/obo/DRUGBANK_DB12477,none +13.7767946,DRUGBANK:DB12489,http://purl.obolibrary.org/obo/DRUGBANK_DB12489,none +13.7767946,DRUGBANK:DB12773,http://purl.obolibrary.org/obo/DRUGBANK_DB12773,none +13.7767946,DRUGBANK:DB13425,http://purl.obolibrary.org/obo/DRUGBANK_DB13425,none +13.7767946,DRUGBANK:DB13561,http://purl.obolibrary.org/obo/DRUGBANK_DB13561,none +13.7767946,DRUGBANK:DB13866,http://purl.obolibrary.org/obo/DRUGBANK_DB13866,none +13.7767946,DRUGBANK:DB13933,http://purl.obolibrary.org/obo/DRUGBANK_DB13933,none +13.7767946,DRUGBANK:DB14518,http://purl.obolibrary.org/obo/DRUGBANK_DB14518,none +13.7767946,DRUGBANK:DB15067,http://purl.obolibrary.org/obo/DRUGBANK_DB15067,none +13.7767946,DRUGBANK:DB15534,http://purl.obolibrary.org/obo/DRUGBANK_DB15534,none +13.7767946,DRUGBANK:DB15861,http://purl.obolibrary.org/obo/DRUGBANK_DB15861,none +13.7767946,DRUGBANK:DB15886,http://purl.obolibrary.org/obo/DRUGBANK_DB15886,none +13.7767946,GO:0000017,http://purl.obolibrary.org/obo/GO_0000017,alpha-glucoside transport +13.7767946,GO:0000938,http://purl.obolibrary.org/obo/GO_0000938,GARP complex +13.7767946,GO:0001602,http://purl.obolibrary.org/obo/GO_0001602,pancreatic polypeptide receptor activity +13.7767946,GO:0002520,http://purl.obolibrary.org/obo/GO_0002520,immune system development +13.7767946,GO:0002820,http://purl.obolibrary.org/obo/GO_0002820,negative regulation of adaptive immune response +13.7767946,GO:0003272,http://purl.obolibrary.org/obo/GO_0003272,endocardial cushion formation +13.7767946,GO:0003875,http://purl.obolibrary.org/obo/GO_0003875,ADP-ribosylarginine hydrolase activity +13.7767946,GO:0003963,http://purl.obolibrary.org/obo/GO_0003963,RNA-3'-phosphate cyclase activity +13.7767946,GO:0004482,http://purl.obolibrary.org/obo/GO_0004482,mRNA (guanine-N7-)-methyltransferase activity +13.7767946,GO:0005703,http://purl.obolibrary.org/obo/GO_0005703,polytene chromosome puff +13.7767946,GO:0006741,http://purl.obolibrary.org/obo/GO_0006741,NADP biosynthetic process +13.7767946,GO:0006948,http://purl.obolibrary.org/obo/GO_0006948,induction by virus of host cell-cell fusion +13.7767946,GO:0006991,http://purl.obolibrary.org/obo/GO_0006991,response to sterol depletion +13.7767946,GO:0008038,http://purl.obolibrary.org/obo/GO_0008038,neuron recognition +13.7767946,GO:0008062,http://purl.obolibrary.org/obo/GO_0008062,eclosion rhythm +13.7767946,GO:0008241,http://purl.obolibrary.org/obo/GO_0008241,peptidyl-dipeptidase activity +13.7767946,GO:0008521,http://purl.obolibrary.org/obo/GO_0008521,acetyl-CoA transmembrane transporter activity +13.7767946,GO:0008742,http://purl.obolibrary.org/obo/GO_0008742,L-ribulose-phosphate 4-epimerase activity +13.7767946,GO:0008743,http://purl.obolibrary.org/obo/GO_0008743,L-threonine 3-dehydrogenase activity +13.7767946,GO:0008851,http://purl.obolibrary.org/obo/GO_0008851,ethanolamine ammonia-lyase activity +13.7767946,GO:0009683,http://purl.obolibrary.org/obo/GO_0009683,indoleacetic acid metabolic process +13.7767946,GO:0010100,http://purl.obolibrary.org/obo/GO_0010100,negative regulation of photomorphogenesis +13.7767946,GO:0010184,http://purl.obolibrary.org/obo/GO_0010184,cytokinin transport +13.7767946,GO:0010481,http://purl.obolibrary.org/obo/GO_0010481,epidermal cell division +13.7767946,GO:0014014,http://purl.obolibrary.org/obo/GO_0014014,negative regulation of gliogenesis +13.7767946,GO:0014819,http://purl.obolibrary.org/obo/GO_0014819,regulation of skeletal muscle contraction +13.7767946,GO:0014910,http://purl.obolibrary.org/obo/GO_0014910,regulation of smooth muscle cell migration +13.7767946,GO:0015946,http://purl.obolibrary.org/obo/GO_0015946,methanol oxidation +13.7767946,GO:0016239,http://purl.obolibrary.org/obo/GO_0016239,positive regulation of macroautophagy +13.7767946,GO:0016848,http://purl.obolibrary.org/obo/GO_0016848,carbon-halide lyase activity +13.7767946,GO:0018530,http://purl.obolibrary.org/obo/GO_0018530,(R)-6-hydroxynicotine oxidase activity +13.7767946,GO:0019045,http://purl.obolibrary.org/obo/GO_0019045,latent virus replication +13.7767946,GO:0019507,http://purl.obolibrary.org/obo/GO_0019507,pyridine metabolic process +13.7767946,GO:0021707,http://purl.obolibrary.org/obo/GO_0021707,cerebellar granule cell differentiation +13.7767946,GO:0022620,http://purl.obolibrary.org/obo/GO_0022620,vegetative cell differentiation +13.7767946,GO:0030167,http://purl.obolibrary.org/obo/GO_0030167,proteoglycan catabolic process +13.7767946,GO:0030702,http://purl.obolibrary.org/obo/GO_0030702,none +13.7767946,GO:0030823,http://purl.obolibrary.org/obo/GO_0030823,none +13.7767946,GO:0032430,http://purl.obolibrary.org/obo/GO_0032430,positive regulation of phospholipase A2 activity +13.7767946,GO:0032957,http://purl.obolibrary.org/obo/GO_0032957,inositol trisphosphate metabolic process +13.7767946,GO:0033107,http://purl.obolibrary.org/obo/GO_0033107,Cvt vesicle +13.7767946,GO:0033530,http://purl.obolibrary.org/obo/GO_0033530,raffinose metabolic process +13.7767946,GO:0033755,http://purl.obolibrary.org/obo/GO_0033755,sulfur oxygenase/reductase activity +13.7767946,GO:0034146,http://purl.obolibrary.org/obo/GO_0034146,toll-like receptor 5 signaling pathway +13.7767946,GO:0036310,http://purl.obolibrary.org/obo/GO_0036310,ATP-dependent DNA/DNA annealing activity +13.7767946,GO:0042383,http://purl.obolibrary.org/obo/GO_0042383,sarcolemma +13.7767946,GO:0043265,http://purl.obolibrary.org/obo/GO_0043265,ectoplasm +13.7767946,GO:0043438,http://purl.obolibrary.org/obo/GO_0043438,acetoacetic acid metabolic process +13.7767946,GO:0043826,http://purl.obolibrary.org/obo/GO_0043826,sulfur oxygenase reductase activity +13.7767946,GO:0045065,http://purl.obolibrary.org/obo/GO_0045065,cytotoxic T cell differentiation +13.7767946,GO:0045575,http://purl.obolibrary.org/obo/GO_0045575,basophil activation +13.7767946,GO:0045671,http://purl.obolibrary.org/obo/GO_0045671,negative regulation of osteoclast differentiation +13.7767946,GO:0046506,http://purl.obolibrary.org/obo/GO_0046506,sulfolipid biosynthetic process +13.7767946,GO:0046634,http://purl.obolibrary.org/obo/GO_0046634,regulation of alpha-beta T cell activation +13.7767946,GO:0046854,http://purl.obolibrary.org/obo/GO_0046854,phosphatidylinositol phosphate biosynthetic process +13.7767946,GO:0047322,http://purl.obolibrary.org/obo/GO_0047322,[hydroxymethylglutaryl-CoA reductase (NADPH)] kinase activity +13.7767946,GO:0047464,http://purl.obolibrary.org/obo/GO_0047464,heparosan-N-sulfate-glucuronate 5-epimerase activity +13.7767946,GO:0047580,http://purl.obolibrary.org/obo/GO_0047580,4-hydroxyproline epimerase activity +13.7767946,GO:0047711,http://purl.obolibrary.org/obo/GO_0047711,blasticidin-S deaminase activity +13.7767946,GO:0047756,http://purl.obolibrary.org/obo/GO_0047756,chondroitin 4-sulfotransferase activity +13.7767946,GO:0048339,http://purl.obolibrary.org/obo/GO_0048339,paraxial mesoderm development +13.7767946,GO:0051185,http://purl.obolibrary.org/obo/GO_0051185,none +13.7767946,GO:0051206,http://purl.obolibrary.org/obo/GO_0051206,silicate metabolic process +13.7767946,GO:0061181,http://purl.obolibrary.org/obo/GO_0061181,regulation of chondrocyte development +13.7767946,GO:0061654,http://purl.obolibrary.org/obo/GO_0061654,NEDD8 conjugating enzyme activity +13.7767946,GO:0062207,http://purl.obolibrary.org/obo/GO_0062207,regulation of pattern recognition receptor signaling pathway +13.7767946,GO:0070395,http://purl.obolibrary.org/obo/GO_0070395,lipoteichoic acid biosynthetic process +13.7767946,GO:0070481,http://purl.obolibrary.org/obo/GO_0070481,"nuclear-transcribed mRNA catabolic process, non-stop decay" +13.7767946,GO:0071483,http://purl.obolibrary.org/obo/GO_0071483,cellular response to blue light +13.7767946,GO:0075733,http://purl.obolibrary.org/obo/GO_0075733,intracellular transport of virus +13.7767946,GO:0090118,http://purl.obolibrary.org/obo/GO_0090118,receptor-mediated endocytosis involved in cholesterol transport +13.7767946,GO:0090277,http://purl.obolibrary.org/obo/GO_0090277,positive regulation of peptide hormone secretion +13.7767946,GO:0090465,http://purl.obolibrary.org/obo/GO_0090465,arginine homeostasis +13.7767946,GO:0090481,http://purl.obolibrary.org/obo/GO_0090481,pyrimidine nucleotide-sugar transmembrane transport +13.7767946,GO:0098562,http://purl.obolibrary.org/obo/GO_0098562,cytoplasmic side of membrane +13.7767946,GO:0098788,http://purl.obolibrary.org/obo/GO_0098788,dendritic knob +13.7767946,GO:0120256,http://purl.obolibrary.org/obo/GO_0120256,olefinic compound catabolic process +13.7767946,GO:0140029,http://purl.obolibrary.org/obo/GO_0140029,exocytic process +13.7767946,GO:1901502,http://purl.obolibrary.org/obo/GO_1901502,ether catabolic process +13.7767946,GO:1902116,http://purl.obolibrary.org/obo/GO_1902116,negative regulation of organelle assembly +13.7767946,GO:1902583,http://purl.obolibrary.org/obo/GO_1902583,none +13.7767946,GO:1903062,http://purl.obolibrary.org/obo/GO_1903062,regulation of reverse cholesterol transport +13.7767946,GO:1904005,http://purl.obolibrary.org/obo/GO_1904005,regulation of phospholipase D activity +13.7767946,GO:1904467,http://purl.obolibrary.org/obo/GO_1904467,none +13.7767946,GO:2000106,http://purl.obolibrary.org/obo/GO_2000106,regulation of leukocyte apoptotic process +13.7767946,GO:2000292,http://purl.obolibrary.org/obo/GO_2000292,regulation of defecation +13.7767946,GO:2000870,http://purl.obolibrary.org/obo/GO_2000870,regulation of progesterone secretion +13.7767946,HP:0000980,http://purl.obolibrary.org/obo/HP_0000980,Pallor +13.7767946,HP:0001944,http://purl.obolibrary.org/obo/HP_0001944,Dehydration +13.7767946,HP:0003256,http://purl.obolibrary.org/obo/HP_0003256,Abnormality of the coagulation cascade +13.7767946,HP:0025304,http://purl.obolibrary.org/obo/HP_0025304,Periodic +13.7767946,HP:0045084,http://purl.obolibrary.org/obo/HP_0045084,Limb myoclonus +13.7767946,HP:0100845,http://purl.obolibrary.org/obo/HP_0100845,Anaphylactic shock +13.7767946,HP:0410030,http://purl.obolibrary.org/obo/HP_0410030,Cleft lip +13.7767946,MONDO:0000062,http://purl.obolibrary.org/obo/MONDO_0000062,isolated microphthalmia +13.7767946,MONDO:0000133,http://purl.obolibrary.org/obo/MONDO_0000133,immunodeficiency-centromeric instability-facial anomalies syndrome +13.7767946,MONDO:0000378,http://purl.obolibrary.org/obo/MONDO_0000378,malignant Sertoli cell tumor +13.7767946,MONDO:0000417,http://purl.obolibrary.org/obo/MONDO_0000417,early onset absence epilepsy +13.7767946,MONDO:0000749,http://purl.obolibrary.org/obo/MONDO_0000749,breast abscess +13.7767946,MONDO:0001326,http://purl.obolibrary.org/obo/MONDO_0001326,dental pulp necrosis +13.7767946,MONDO:0001665,http://purl.obolibrary.org/obo/MONDO_0001665,oculoglandular tularemia +13.7767946,MONDO:0001785,http://purl.obolibrary.org/obo/MONDO_0001785,malignant secondary hypertension +13.7767946,MONDO:0001923,http://purl.obolibrary.org/obo/MONDO_0001923,vitreoretinal dystrophy +13.7767946,MONDO:0001931,http://purl.obolibrary.org/obo/MONDO_0001931,pericholangitis +13.7767946,MONDO:0002410,http://purl.obolibrary.org/obo/MONDO_0002410,pyeloureteritis cystica +13.7767946,MONDO:0002452,http://purl.obolibrary.org/obo/MONDO_0002452,prostate leiomyoma +13.7767946,MONDO:0003813,http://purl.obolibrary.org/obo/MONDO_0003813,ovarian papillary tumor +13.7767946,MONDO:0004046,http://purl.obolibrary.org/obo/MONDO_0004046,childhood brain meningioma +13.7767946,MONDO:0004236,http://purl.obolibrary.org/obo/MONDO_0004236,duodenal somatostatinoma +13.7767946,MONDO:0004297,http://purl.obolibrary.org/obo/MONDO_0004297,lymphoepithelioma-like thymic carcinoma +13.7767946,MONDO:0004808,http://purl.obolibrary.org/obo/MONDO_0004808,benign mammary dysplasia +13.7767946,MONDO:0004827,http://purl.obolibrary.org/obo/MONDO_0004827,esophagus squamous cell papilloma +13.7767946,MONDO:0005256,http://purl.obolibrary.org/obo/MONDO_0005256,moderate heart failure +13.7767946,MONDO:0005654,http://purl.obolibrary.org/obo/MONDO_0005654,ascariasis +13.7767946,MONDO:0006117,http://purl.obolibrary.org/obo/MONDO_0006117,breast diffuse large B-cell lymphoma +13.7767946,MONDO:0006397,http://purl.obolibrary.org/obo/MONDO_0006397,renal cell carcinoma associated with Xp11.2 translocations/TFE3 gene fusions +13.7767946,MONDO:0006436,http://purl.obolibrary.org/obo/MONDO_0006436,submandibular gland adenoid cystic carcinoma +13.7767946,MONDO:0006551,http://purl.obolibrary.org/obo/MONDO_0006551,alopecia mucinosa +13.7767946,MONDO:0006800,http://purl.obolibrary.org/obo/MONDO_0006800,ideomotor apraxia +13.7767946,MONDO:0007055,http://purl.obolibrary.org/obo/MONDO_0007055,acromicric dysplasia +13.7767946,MONDO:0007137,http://purl.obolibrary.org/obo/MONDO_0007137,isolated congenital anosmia +13.7767946,MONDO:0007168,http://purl.obolibrary.org/obo/MONDO_0007168,atelosteogenesis type III +13.7767946,MONDO:0007744,http://purl.obolibrary.org/obo/MONDO_0007744,cholesterol-ester transfer protein deficiency +13.7767946,MONDO:0008922,http://purl.obolibrary.org/obo/MONDO_0008922,Sengers syndrome +13.7767946,MONDO:0009183,http://purl.obolibrary.org/obo/MONDO_0009183,junctional epidermolysis bullosa with pyloric atresia +13.7767946,MONDO:0009217,http://purl.obolibrary.org/obo/MONDO_0009217,Fanconi-like syndrome +13.7767946,MONDO:0009271,http://purl.obolibrary.org/obo/MONDO_0009271,geroderma osteodysplastica +13.7767946,MONDO:0009397,http://purl.obolibrary.org/obo/MONDO_0009397,neonatal severe primary hyperparathyroidism +13.7767946,MONDO:0009419,http://purl.obolibrary.org/obo/MONDO_0009419,Woodhouse-Sakati syndrome +13.7767946,MONDO:0009552,http://purl.obolibrary.org/obo/MONDO_0009552,mal de Meleda +13.7767946,MONDO:0009855,http://purl.obolibrary.org/obo/MONDO_0009855,d-bifunctional protein deficiency +13.7767946,MONDO:0010028,http://purl.obolibrary.org/obo/MONDO_0010028,sialuria +13.7767946,MONDO:0010091,http://purl.obolibrary.org/obo/MONDO_0010091,Cold-induced sweating syndrome 1 +13.7767946,MONDO:0010278,http://purl.obolibrary.org/obo/MONDO_0010278,Christianson syndrome +13.7767946,MONDO:0010299,http://purl.obolibrary.org/obo/MONDO_0010299,hypoxanthine guanine phosphoribosyltransferase partial deficiency +13.7767946,MONDO:0011472,http://purl.obolibrary.org/obo/MONDO_0011472,epidermolysis bullosa simplex due to plakophilin deficiency +13.7767946,MONDO:0011928,http://purl.obolibrary.org/obo/MONDO_0011928,caudal duplication +13.7767946,MONDO:0012345,http://purl.obolibrary.org/obo/MONDO_0012345,acral peeling skin syndrome +13.7767946,MONDO:0012475,http://purl.obolibrary.org/obo/MONDO_0012475,cone dystrophy with supernormal rod response +13.7767946,MONDO:0013426,http://purl.obolibrary.org/obo/MONDO_0013426,aneurysm-osteoarthritis syndrome +13.7767946,MONDO:0014507,http://purl.obolibrary.org/obo/MONDO_0014507,Catel-Manzke syndrome +13.7767946,MONDO:0015681,http://purl.obolibrary.org/obo/MONDO_0015681,childhood disintegrative disorder +13.7767946,MONDO:0016081,http://purl.obolibrary.org/obo/MONDO_0016081,coronary arterial fistulas +13.7767946,MONDO:0016674,http://purl.obolibrary.org/obo/MONDO_0016674,"46,XY partial gonadal dysgenesis" +13.7767946,MONDO:0017750,http://purl.obolibrary.org/obo/MONDO_0017750,defect in conserved oligomeric Golgi complex +13.7767946,MONDO:0017989,http://purl.obolibrary.org/obo/MONDO_0017989,His bundle tachycardia +13.7767946,MONDO:0018089,http://purl.obolibrary.org/obo/MONDO_0018089,double outlet right ventricle +13.7767946,MONDO:0018291,http://purl.obolibrary.org/obo/MONDO_0018291,congenital disorder of glycosylation with intestinal involvement +13.7767946,MONDO:0019314,http://purl.obolibrary.org/obo/MONDO_0019314,cutaneous mastocytoma +13.7767946,MONDO:0019677,http://purl.obolibrary.org/obo/MONDO_0019677,brachydactyly type E +13.7767946,MONDO:0020096,http://purl.obolibrary.org/obo/MONDO_0020096,autosomal recessive isolated diffuse palmoplantar keratoderma +13.7767946,MONDO:0020231,http://purl.obolibrary.org/obo/MONDO_0020231,cardiac disease with cataract +13.7767946,MONDO:0020479,http://purl.obolibrary.org/obo/MONDO_0020479,pituitary gigantism +13.7767946,MONDO:0020695,http://purl.obolibrary.org/obo/MONDO_0020695,hypotonic cerebral palsy +13.7767946,MONDO:0020759,http://purl.obolibrary.org/obo/MONDO_0020759,"epilepsy, childhood absence, susceptibility to, 1" +13.7767946,MONDO:0021726,http://purl.obolibrary.org/obo/MONDO_0021726,abdominal cystic lymphangioma +13.7767946,MONDO:0022839,http://purl.obolibrary.org/obo/MONDO_0022839,congenital human immunodeficiency virus +13.7767946,MONDO:0023483,http://purl.obolibrary.org/obo/MONDO_0023483,infectious myositis +13.7767946,MONDO:0024323,http://purl.obolibrary.org/obo/MONDO_0024323,glomangiomyoma +13.7767946,MONDO:0024919,http://purl.obolibrary.org/obo/MONDO_0024919,dog disease +13.7767946,MONDO:0025397,http://purl.obolibrary.org/obo/MONDO_0025397,canine distemper +13.7767946,MONDO:0043923,http://purl.obolibrary.org/obo/MONDO_0043923,"lichen planus, oral" +13.7767946,NCBITaxon:100755,http://purl.obolibrary.org/obo/NCBITaxon_100755,none +13.7767946,NCBITaxon:10838,http://purl.obolibrary.org/obo/NCBITaxon_10838,none +13.7767946,NCBITaxon:1090940,http://purl.obolibrary.org/obo/NCBITaxon_1090940,none +13.7767946,NCBITaxon:10941,http://purl.obolibrary.org/obo/NCBITaxon_10941,none +13.7767946,NCBITaxon:11765,http://purl.obolibrary.org/obo/NCBITaxon_11765,none +13.7767946,NCBITaxon:12173,http://purl.obolibrary.org/obo/NCBITaxon_12173,none +13.7767946,NCBITaxon:1301,http://purl.obolibrary.org/obo/NCBITaxon_1301,Streptococcus +13.7767946,NCBITaxon:1435485,http://purl.obolibrary.org/obo/NCBITaxon_1435485,none +13.7767946,NCBITaxon:1463138,http://purl.obolibrary.org/obo/NCBITaxon_1463138,none +13.7767946,NCBITaxon:161732,http://purl.obolibrary.org/obo/NCBITaxon_161732,none +13.7767946,NCBITaxon:167487,http://purl.obolibrary.org/obo/NCBITaxon_167487,none +13.7767946,NCBITaxon:1978532,http://purl.obolibrary.org/obo/NCBITaxon_1978532,none +13.7767946,NCBITaxon:2082224,http://purl.obolibrary.org/obo/NCBITaxon_2082224,Strongyloidoidea +13.7767946,NCBITaxon:208893,http://purl.obolibrary.org/obo/NCBITaxon_208893,none +13.7767946,NCBITaxon:216294,http://purl.obolibrary.org/obo/NCBITaxon_216294,none +13.7767946,NCBITaxon:235629,http://purl.obolibrary.org/obo/NCBITaxon_235629,none +13.7767946,NCBITaxon:235880,http://purl.obolibrary.org/obo/NCBITaxon_235880,none +13.7767946,NCBITaxon:2560069,http://purl.obolibrary.org/obo/NCBITaxon_2560069,Avulavirinae +13.7767946,NCBITaxon:28351,http://purl.obolibrary.org/obo/NCBITaxon_28351,none +13.7767946,NCBITaxon:29260,http://purl.obolibrary.org/obo/NCBITaxon_29260,none +13.7767946,NCBITaxon:3042,http://purl.obolibrary.org/obo/NCBITaxon_3042,none +13.7767946,NCBITaxon:316435,http://purl.obolibrary.org/obo/NCBITaxon_316435,none +13.7767946,NCBITaxon:344005,http://purl.obolibrary.org/obo/NCBITaxon_344005,none +13.7767946,NCBITaxon:352927,http://purl.obolibrary.org/obo/NCBITaxon_352927,none +13.7767946,NCBITaxon:37797,http://purl.obolibrary.org/obo/NCBITaxon_37797,none +13.7767946,NCBITaxon:39509,http://purl.obolibrary.org/obo/NCBITaxon_39509,none +13.7767946,NCBITaxon:40082,http://purl.obolibrary.org/obo/NCBITaxon_40082,none +13.7767946,NCBITaxon:41086,http://purl.obolibrary.org/obo/NCBITaxon_41086,none +13.7767946,NCBITaxon:46919,http://purl.obolibrary.org/obo/NCBITaxon_46919,Whitewater Arroyo mammarenavirus +13.7767946,NCBITaxon:47004,http://purl.obolibrary.org/obo/NCBITaxon_47004,none +13.7767946,NCBITaxon:47010,http://purl.obolibrary.org/obo/NCBITaxon_47010,none +13.7767946,NCBITaxon:5178,http://purl.obolibrary.org/obo/NCBITaxon_5178,none +13.7767946,NCBITaxon:558690,http://purl.obolibrary.org/obo/NCBITaxon_558690,none +13.7767946,NCBITaxon:6267,http://purl.obolibrary.org/obo/NCBITaxon_6267,Anisakidae +13.7767946,NCBITaxon:637912,http://purl.obolibrary.org/obo/NCBITaxon_637912,none +13.7767946,NCBITaxon:6489,http://purl.obolibrary.org/obo/NCBITaxon_6489,none +13.7767946,NCBITaxon:6490,http://purl.obolibrary.org/obo/NCBITaxon_6490,none +13.7767946,NCBITaxon:703537,http://purl.obolibrary.org/obo/NCBITaxon_703537,none +13.7767946,NCBITaxon:7135,http://purl.obolibrary.org/obo/NCBITaxon_7135,none +13.7767946,NCBITaxon:7136,http://purl.obolibrary.org/obo/NCBITaxon_7136,none +13.7767946,NCBITaxon:7263,http://purl.obolibrary.org/obo/NCBITaxon_7263,none +13.7767946,NCBITaxon:73144,http://purl.obolibrary.org/obo/NCBITaxon_73144,none +13.7767946,NCBITaxon:75546,http://purl.obolibrary.org/obo/NCBITaxon_75546,none +13.7767946,NCBITaxon:77698,http://purl.obolibrary.org/obo/NCBITaxon_77698,none +13.7767946,NCBITaxon:815,http://purl.obolibrary.org/obo/NCBITaxon_815,Bacteroidaceae +13.7767946,NCBITaxon:816,http://purl.obolibrary.org/obo/NCBITaxon_816,Bacteroides +13.7767946,NCBITaxon:9004,http://purl.obolibrary.org/obo/NCBITaxon_9004,none +13.7767946,NCBITaxon:93133,http://purl.obolibrary.org/obo/NCBITaxon_93133,none +13.7767946,NCBITaxon:9980,http://purl.obolibrary.org/obo/NCBITaxon_9980,none +13.7767946,NCBITaxon:9996,http://purl.obolibrary.org/obo/NCBITaxon_9996,none +13.7767946,PR:000001778,http://purl.obolibrary.org/obo/PR_000001778,inhibitor of nuclear factor kappa-B kinase subunit epsilon +13.7767946,PR:000002022,http://purl.obolibrary.org/obo/PR_000002022,MHC class II histocompatibility antigen beta chain DRB5 +13.7767946,PR:000003644,http://purl.obolibrary.org/obo/PR_000003644,peroxisomal acyl-coenzyme A oxidase 3 +13.7767946,PR:000003721,http://purl.obolibrary.org/obo/PR_000003721,disintegrin and metalloproteinase domain-containing protein 29 +13.7767946,PR:000003945,http://purl.obolibrary.org/obo/PR_000003945,dolichyl-phosphate beta-glucosyltransferase +13.7767946,PR:000004268,http://purl.obolibrary.org/obo/PR_000004268,AT-rich interactive domain-containing protein 4B +13.7767946,PR:000004451,http://purl.obolibrary.org/obo/PR_000004451,potassium-transporting ATPase alpha chain 1 +13.7767946,PR:000004473,http://purl.obolibrary.org/obo/PR_000004473,V-type proton ATPase 116 kDa subunit a isoform 4 +13.7767946,PR:000004514,http://purl.obolibrary.org/obo/PR_000004514,lipid droplet-regulating VLDL assembly factor AUP1 +13.7767946,PR:000004678,http://purl.obolibrary.org/obo/PR_000004678,breast carcinoma-amplified sequence 1 +13.7767946,PR:000005087,http://purl.obolibrary.org/obo/PR_000005087,chromobox protein homolog 6 +13.7767946,PR:000005766,http://purl.obolibrary.org/obo/PR_000005766,coronin-7 +13.7767946,PR:000005955,http://purl.obolibrary.org/obo/PR_000005955,centrosome and spindle pole-associated protein 1 +13.7767946,PR:000006178,http://purl.obolibrary.org/obo/PR_000006178,none +13.7767946,PR:000006349,http://purl.obolibrary.org/obo/PR_000006349,DNA damage-inducible transcript 4-like protein +13.7767946,PR:000006451,http://purl.obolibrary.org/obo/PR_000006451,diacylglycerol kinase zeta +13.7767946,PR:000006522,http://purl.obolibrary.org/obo/PR_000006522,protein delta homolog 2 +13.7767946,PR:000006553,http://purl.obolibrary.org/obo/PR_000006553,DmX-like protein 2 +13.7767946,PR:000006632,http://purl.obolibrary.org/obo/PR_000006632,docking protein 5 +13.7767946,PR:000006658,http://purl.obolibrary.org/obo/PR_000006658,dolichol-phosphate mannosyltransferase subunit 3 +13.7767946,PR:000006893,http://purl.obolibrary.org/obo/PR_000006893,ER degradation-enhancing alpha-mannosidase-like protein 2 +13.7767946,PR:000007139,http://purl.obolibrary.org/obo/PR_000007139,epsin-2 +13.7767946,PR:000007186,http://purl.obolibrary.org/obo/PR_000007186,serine/threonine-protein kinase/endoribonuclease IRE2 +13.7767946,PR:000007745,http://purl.obolibrary.org/obo/PR_000007745,megakaryocyte and platelet inhibitory receptor G6b +13.7767946,PR:000007847,http://purl.obolibrary.org/obo/PR_000007847,trifunctional purine biosynthetic protein adenosine-3 +13.7767946,PR:000007873,http://purl.obolibrary.org/obo/PR_000007873,"globoside alpha-1,3-N-acetylgalactosaminyltransferase 1" +13.7767946,PR:000008280,http://purl.obolibrary.org/obo/PR_000008280,gasdermin-A +13.7767946,PR:000008872,http://purl.obolibrary.org/obo/PR_000008872,hydrocephalus-inducing protein +13.7767946,PR:000008881,http://purl.obolibrary.org/obo/PR_000008881,induced by contact to basement membrane 1 protein +13.7767946,PR:000009048,http://purl.obolibrary.org/obo/PR_000009048,"type II inositol 1,4,5-trisphosphate 5-phosphatase" +13.7767946,PR:000009125,http://purl.obolibrary.org/obo/PR_000009125,integrin alpha-10 +13.7767946,PR:000009147,http://purl.obolibrary.org/obo/PR_000009147,inter-alpha-trypsin inhibitor heavy chain H2 +13.7767946,PR:000009267,http://purl.obolibrary.org/obo/PR_000009267,calcium-activated potassium channel subunit beta-2 +13.7767946,PR:000009382,http://purl.obolibrary.org/obo/PR_000009382,kelch-like protein 20 +13.7767946,PR:000009402,http://purl.obolibrary.org/obo/PR_000009402,kelch-like protein 6 +13.7767946,PR:000009403,http://purl.obolibrary.org/obo/PR_000009403,kelch-like protein 7 +13.7767946,PR:000009434,http://purl.obolibrary.org/obo/PR_000009434,importin subunit alpha-4 +13.7767946,PR:000009487,http://purl.obolibrary.org/obo/PR_000009487,"keratin, type II cytoskeletal 72" +13.7767946,PR:000009661,http://purl.obolibrary.org/obo/PR_000009661,glutathione S-transferase LANCL1 +13.7767946,PR:000009956,http://purl.obolibrary.org/obo/PR_000009956,U7 snRNA-associated Sm-like protein LSm11 +13.7767946,PR:000010101,http://purl.obolibrary.org/obo/PR_000010101,"mannosyl-oligosaccharide 1,2-alpha-mannosidase IA" +13.7767946,PR:000010195,http://purl.obolibrary.org/obo/PR_000010195,microtubule-associated serine/threonine-protein kinase 1 +13.7767946,PR:000010281,http://purl.obolibrary.org/obo/PR_000010281,mediator of RNA polymerase II transcription subunit 11 +13.7767946,PR:000010305,http://purl.obolibrary.org/obo/PR_000010305,mediator of RNA polymerase II transcription subunit 6 +13.7767946,PR:000010354,http://purl.obolibrary.org/obo/PR_000010354,mRNA N(3)-methylcytidine methyltransferase METTL8 +13.7767946,PR:000010435,http://purl.obolibrary.org/obo/PR_000010435,homeobox protein Mohawk +13.7767946,PR:000010535,http://purl.obolibrary.org/obo/PR_000010535,kinesin-like protein KIF20B +13.7767946,PR:000010536,http://purl.obolibrary.org/obo/PR_000010536,U3 small nucleolar ribonucleoprotein protein MPP10 +13.7767946,PR:000010565,http://purl.obolibrary.org/obo/PR_000010565,modulator of retrovirus infection +13.7767946,PR:000010809,http://purl.obolibrary.org/obo/PR_000010809,MYCBP-associated protein +13.7767946,PR:000010852,http://purl.obolibrary.org/obo/PR_000010852,myosin-XVIIIa +13.7767946,PR:000010980,http://purl.obolibrary.org/obo/PR_000010980,Nck-associated protein 5 +13.7767946,PR:000011287,http://purl.obolibrary.org/obo/PR_000011287,nucleoside diphosphate kinase 7 +13.7767946,PR:000011359,http://purl.obolibrary.org/obo/PR_000011359,neural proliferation differentiation and control protein 1 +13.7767946,PR:000011621,http://purl.obolibrary.org/obo/PR_000011621,obg-like ATPase 1 +13.7767946,PR:000012283,http://purl.obolibrary.org/obo/PR_000012283,partitioning defective 6 homolog gamma +13.7767946,PR:000012340,http://purl.obolibrary.org/obo/PR_000012340,"propionyl-CoA carboxylase beta chain, mitochondrial" +13.7767946,PR:000012428,http://purl.obolibrary.org/obo/PR_000012428,procollagen C-endopeptidase enhancer 2 +13.7767946,PR:000012434,http://purl.obolibrary.org/obo/PR_000012434,ProSAAS +13.7767946,PR:000012494,http://purl.obolibrary.org/obo/PR_000012494,"pyruvate dehydrogenase E1 component subunit alpha, testis-specific form, mitochondrial" +13.7767946,PR:000012744,http://purl.obolibrary.org/obo/PR_000012744,phosphatidylinositol 4-phosphate 5-kinase type-1 alpha +13.7767946,PR:000012787,http://purl.obolibrary.org/obo/PR_000012787,serine/threonine-protein kinase N3 +13.7767946,PR:000012793,http://purl.obolibrary.org/obo/PR_000012793,plakophilin-4 +13.7767946,PR:000012795,http://purl.obolibrary.org/obo/PR_000012795,group 10 secretory phospholipase A2 +13.7767946,PR:000012834,http://purl.obolibrary.org/obo/PR_000012834,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-4" +13.7767946,PR:000012999,http://purl.obolibrary.org/obo/PR_000012999,"DNA-directed RNA polymerases I, II, and III subunit RPABC5" +13.7767946,PR:000013221,http://purl.obolibrary.org/obo/PR_000013221,5'-AMP-activated protein kinase subunit beta-2 +13.7767946,PR:000013293,http://purl.obolibrary.org/obo/PR_000013293,ribose-phosphate pyrophosphokinase 2 +13.7767946,PR:000013576,http://purl.obolibrary.org/obo/PR_000013576,queuine tRNA-ribosyltransferase catalytic subunit 1 +13.7767946,PR:000013593,http://purl.obolibrary.org/obo/PR_000013593,Ras-related protein Rab-20 +13.7767946,PR:000013630,http://purl.obolibrary.org/obo/PR_000013630,Ras-related protein Rab-43 +13.7767946,PR:000013761,http://purl.obolibrary.org/obo/PR_000013761,RAS guanyl-releasing protein 4 +13.7767946,PR:000014021,http://purl.obolibrary.org/obo/PR_000014021,serine/threonine-protein kinase RIO3 +13.7767946,PR:000014033,http://purl.obolibrary.org/obo/PR_000014033,zinc finger protein Rlf +13.7767946,PR:000014177,http://purl.obolibrary.org/obo/PR_000014177,RNA polymerase II-associated protein 3 +13.7767946,PR:000014268,http://purl.obolibrary.org/obo/PR_000014268,40S ribosomal protein S25 +13.7767946,PR:000014478,http://purl.obolibrary.org/obo/PR_000014478,suprabasin +13.7767946,PR:000014651,http://purl.obolibrary.org/obo/PR_000014651,septin-12 +13.7767946,PR:000015005,http://purl.obolibrary.org/obo/PR_000015005,mitochondrial dicarboxylate carrier +13.7767946,PR:000015047,http://purl.obolibrary.org/obo/PR_000015047,solute carrier family 27 member 3 +13.7767946,PR:000015164,http://purl.obolibrary.org/obo/PR_000015164,anion exchange protein 4 +13.7767946,PR:000015342,http://purl.obolibrary.org/obo/PR_000015342,U1 small nuclear ribonucleoprotein C +13.7767946,PR:000015484,http://purl.obolibrary.org/obo/PR_000015484,"spermatogenesis-associated protein 19, mitochondrial" +13.7767946,PR:000015758,http://purl.obolibrary.org/obo/PR_000015758,serine/threonine-protein kinase 40 +13.7767946,PR:000015808,http://purl.obolibrary.org/obo/PR_000015808,serine/threonine/tyrosine-interacting protein +13.7767946,PR:000015858,http://purl.obolibrary.org/obo/PR_000015858,syntabulin +13.7767946,PR:000015897,http://purl.obolibrary.org/obo/PR_000015897,synaptotagmin-12 +13.7767946,PR:000016037,http://purl.obolibrary.org/obo/PR_000016037,transcription initiation factor TFIID subunit 9B +13.7767946,PR:000016320,http://purl.obolibrary.org/obo/PR_000016320,thyroid hormone receptor-associated protein 3 +13.7767946,PR:000016600,http://purl.obolibrary.org/obo/PR_000016600,T cell receptor alpha chain constant +13.7767946,PR:000016746,http://purl.obolibrary.org/obo/PR_000016746,tetraspanin-3 +13.7767946,PR:000016751,http://purl.obolibrary.org/obo/PR_000016751,tetraspanin-5 +13.7767946,PR:000016803,http://purl.obolibrary.org/obo/PR_000016803,protein tweety homolog 1 +13.7767946,PR:000017157,http://purl.obolibrary.org/obo/PR_000017157,ubiquitin carboxyl-terminal hydrolase 19 +13.7767946,PR:000017291,http://purl.obolibrary.org/obo/PR_000017291,transcription cofactor vestigial-like protein 2 +13.7767946,PR:000017500,http://purl.obolibrary.org/obo/PR_000017500,exportin-6 +13.7767946,PR:000017550,http://purl.obolibrary.org/obo/PR_000017550,14-3-3 protein gamma +13.7767946,PR:000022143,http://purl.obolibrary.org/obo/PR_000022143,none +13.7767946,PR:000022617,http://purl.obolibrary.org/obo/PR_000022617,none +13.7767946,PR:000022754,http://purl.obolibrary.org/obo/PR_000022754,none +13.7767946,PR:000022811,http://purl.obolibrary.org/obo/PR_000022811,none +13.7767946,PR:000023068,http://purl.obolibrary.org/obo/PR_000023068,none +13.7767946,PR:000023098,http://purl.obolibrary.org/obo/PR_000023098,none +13.7767946,PR:000023511,http://purl.obolibrary.org/obo/PR_000023511,none +13.7767946,PR:000023762,http://purl.obolibrary.org/obo/PR_000023762,none +13.7767946,PR:000023764,http://purl.obolibrary.org/obo/PR_000023764,none +13.7767946,PR:000023796,http://purl.obolibrary.org/obo/PR_000023796,none +13.7767946,PR:000024018,http://purl.obolibrary.org/obo/PR_000024018,none +13.7767946,PR:000024094,http://purl.obolibrary.org/obo/PR_000024094,none +13.7767946,PR:000029249,http://purl.obolibrary.org/obo/PR_000029249,none +13.7767946,PR:000029288,http://purl.obolibrary.org/obo/PR_000029288,phospholipid-transporting ATPase IG +13.7767946,PR:000029562,http://purl.obolibrary.org/obo/PR_000029562,iroquois-class homeodomain protein IRX-6 +13.7767946,PR:000030229,http://purl.obolibrary.org/obo/PR_000030229,"MHC class II histocompatibility antigen, DM alpha chain" +13.7767946,PR:000030709,http://purl.obolibrary.org/obo/PR_000030709,SH3 and cysteine-rich domain-containing protein 3 +13.7767946,PR:000030775,http://purl.obolibrary.org/obo/PR_000030775,draxin +13.7767946,PR:000030799,http://purl.obolibrary.org/obo/PR_000030799,purine nucleoside phosphorylase LACC1 +13.7767946,PR:000030892,http://purl.obolibrary.org/obo/PR_000030892,ribosome production factor 2 homolog +13.7767946,PR:000030920,http://purl.obolibrary.org/obo/PR_000030920,constitutive coactivator of PPAR-gamma-like protein 2 +13.7767946,PR:000030921,http://purl.obolibrary.org/obo/PR_000030921,VPS10 domain-containing receptor SorCS3 +13.7767946,PR:000031069,http://purl.obolibrary.org/obo/PR_000031069,WD repeat-containing protein 35 +13.7767946,PR:000031082,http://purl.obolibrary.org/obo/PR_000031082,lipoxygenase homology domain-containing protein 1 +13.7767946,PR:000031124,http://purl.obolibrary.org/obo/PR_000031124,serine protease HTRA4 +13.7767946,PR:000031335,http://purl.obolibrary.org/obo/PR_000031335,suppressor APC domain-containing protein 2 +13.7767946,PR:000031384,http://purl.obolibrary.org/obo/PR_000031384,integral membrane protein 2C +13.7767946,PR:000031571,http://purl.obolibrary.org/obo/PR_000031571,transcription factor AP-2-epsilon +13.7767946,PR:000031725,http://purl.obolibrary.org/obo/PR_000031725,DnaJ homolog subfamily C member 13 +13.7767946,PR:000031907,http://purl.obolibrary.org/obo/PR_000031907,"complex I intermediate-associated protein 30, mitochondrial" +13.7767946,PR:000032179,http://purl.obolibrary.org/obo/PR_000032179,F-box/SPRY domain-containing protein 1 +13.7767946,PR:000032244,http://purl.obolibrary.org/obo/PR_000032244,transmembrane protein 59 +13.7767946,PR:000032519,http://purl.obolibrary.org/obo/PR_000032519,TELO2-interacting protein 1 homolog +13.7767946,PR:000035018,http://purl.obolibrary.org/obo/PR_000035018,none +13.7767946,PR:000037080,http://purl.obolibrary.org/obo/PR_000037080,carboxylated protein +13.7767946,PR:000039120,http://purl.obolibrary.org/obo/PR_000039120,shootin-1 +13.7767946,PR:000044447,http://purl.obolibrary.org/obo/PR_000044447,none +13.7767946,PR:B7ZC32,http://purl.obolibrary.org/obo/PR_B7ZC32,kinesin-like protein KIF28P (human) +13.7767946,PR:D3YXS5,http://purl.obolibrary.org/obo/PR_D3YXS5,none +13.7767946,PR:F8WLE0,http://purl.obolibrary.org/obo/PR_F8WLE0,none +13.7767946,PR:G5E8K6,http://purl.obolibrary.org/obo/PR_G5E8K6,none +13.7767946,PR:O54990,http://purl.obolibrary.org/obo/PR_O54990,none +13.7767946,PR:O70342,http://purl.obolibrary.org/obo/PR_O70342,none +13.7767946,PR:O74873,http://purl.obolibrary.org/obo/PR_O74873,none +13.7767946,PR:O80339,http://purl.obolibrary.org/obo/PR_O80339,none +13.7767946,PR:O94534,http://purl.obolibrary.org/obo/PR_O94534,none +13.7767946,PR:P05374,http://purl.obolibrary.org/obo/PR_P05374,none +13.7767946,PR:P07273,http://purl.obolibrary.org/obo/PR_P07273,none +13.7767946,PR:P24822,http://purl.obolibrary.org/obo/PR_P24822,none +13.7767946,PR:P25646,http://purl.obolibrary.org/obo/PR_P25646,none +13.7767946,PR:P25867,http://purl.obolibrary.org/obo/PR_P25867,none +13.7767946,PR:P28584,http://purl.obolibrary.org/obo/PR_P28584,none +13.7767946,PR:P28693,http://purl.obolibrary.org/obo/PR_P28693,none +13.7767946,PR:P29447,http://purl.obolibrary.org/obo/PR_P29447,none +13.7767946,PR:P33332,http://purl.obolibrary.org/obo/PR_P33332,none +13.7767946,PR:P35206,http://purl.obolibrary.org/obo/PR_P35206,none +13.7767946,PR:P36037,http://purl.obolibrary.org/obo/PR_P36037,none +13.7767946,PR:P38903,http://purl.obolibrary.org/obo/PR_P38903,none +13.7767946,PR:P52917,http://purl.obolibrary.org/obo/PR_P52917,none +13.7767946,PR:P53407,http://purl.obolibrary.org/obo/PR_P53407,none +13.7767946,PR:P54120,http://purl.obolibrary.org/obo/PR_P54120,none +13.7767946,PR:P83941,http://purl.obolibrary.org/obo/PR_P83941,none +13.7767946,PR:Q42600,http://purl.obolibrary.org/obo/PR_Q42600,none +13.7767946,PR:Q54MH2,http://purl.obolibrary.org/obo/PR_Q54MH2,none +13.7767946,PR:Q55GF9,http://purl.obolibrary.org/obo/PR_Q55GF9,none +13.7767946,PR:Q5TJ57,http://purl.obolibrary.org/obo/PR_Q5TJ57,none +13.7767946,PR:Q5ZI03,http://purl.obolibrary.org/obo/PR_Q5ZI03,none +13.7767946,PR:Q6JHU7,http://purl.obolibrary.org/obo/PR_Q6JHU7,none +13.7767946,PR:Q7G193,http://purl.obolibrary.org/obo/PR_Q7G193,none +13.7767946,PR:Q7X9I4,http://purl.obolibrary.org/obo/PR_Q7X9I4,none +13.7767946,PR:Q7XYY2,http://purl.obolibrary.org/obo/PR_Q7XYY2,none +13.7767946,PR:Q8JI10,http://purl.obolibrary.org/obo/PR_Q8JI10,none +13.7767946,PR:Q8WZ69,http://purl.obolibrary.org/obo/PR_Q8WZ69,putative uncharacterized protein C11orf40 (human) +13.7767946,PR:Q98878,http://purl.obolibrary.org/obo/PR_Q98878,none +13.7767946,PR:Q9FHM4,http://purl.obolibrary.org/obo/PR_Q9FHM4,none +13.7767946,PR:Q9FNX5,http://purl.obolibrary.org/obo/PR_Q9FNX5,none +13.7767946,PR:Q9LF80,http://purl.obolibrary.org/obo/PR_Q9LF80,none +13.7767946,PR:Q9LNJ4,http://purl.obolibrary.org/obo/PR_Q9LNJ4,none +13.7767946,PR:Q9SAH0,http://purl.obolibrary.org/obo/PR_Q9SAH0,none +13.7767946,PR:Q9SKB2,http://purl.obolibrary.org/obo/PR_Q9SKB2,none +13.7767946,PR:Q9SL65,http://purl.obolibrary.org/obo/PR_Q9SL65,none +13.7767946,PR:Q9SZC9,http://purl.obolibrary.org/obo/PR_Q9SZC9,none +13.7767946,PR:Q9TX43,http://purl.obolibrary.org/obo/PR_Q9TX43,none +13.7767946,PR:Q9UUC1,http://purl.obolibrary.org/obo/PR_Q9UUC1,none +13.7767946,PR:Q9XI33,http://purl.obolibrary.org/obo/PR_Q9XI33,none +13.7767946,SO:0000328,http://purl.obolibrary.org/obo/SO_0000328,microarray_oligo +13.7767946,SO:0000809,http://purl.obolibrary.org/obo/SO_0000809,invalidated_cDNA_clone +13.7767946,SO:0000810,http://purl.obolibrary.org/obo/SO_0000810,chimeric_cDNA_clone +13.7767946,SO:0000989,http://purl.obolibrary.org/obo/SO_0000989,class_II_RNA +13.7767946,SO:0001231,http://purl.obolibrary.org/obo/SO_0001231,seven_methylguanine +13.7767946,SO:0001252,http://purl.obolibrary.org/obo/SO_0001252,RH_map +13.7767946,SO:0001758,http://purl.obolibrary.org/obo/SO_0001758,duplicated_pseudogene +13.7767946,SO:1000144,http://purl.obolibrary.org/obo/SO_1000144,free_duplication +13.7767946,UBERON:0000067,http://purl.obolibrary.org/obo/UBERON_0000067,none +13.7767946,UBERON:0001000,http://purl.obolibrary.org/obo/UBERON_0001000,vas deferens +13.7767946,UBERON:0001057,http://purl.obolibrary.org/obo/UBERON_0001057,corpus allatum +13.7767946,UBERON:0001285,http://purl.obolibrary.org/obo/UBERON_0001285,nephron +13.7767946,UBERON:0001734,http://purl.obolibrary.org/obo/UBERON_0001734,palatine uvula +13.7767946,UBERON:0001795,http://purl.obolibrary.org/obo/UBERON_0001795,inner plexiform layer of retina +13.7767946,UBERON:0002166,http://purl.obolibrary.org/obo/UBERON_0002166,endocardium of atrium +13.7767946,UBERON:0002904,http://purl.obolibrary.org/obo/UBERON_0002904,lateral occipital sulcus +13.7767946,UBERON:0002921,http://purl.obolibrary.org/obo/UBERON_0002921,longitudinal fissure +13.7767946,UBERON:0003430,http://purl.obolibrary.org/obo/UBERON_0003430,neck nerve +13.7767946,UBERON:0004164,http://purl.obolibrary.org/obo/UBERON_0004164,branchiomeric muscle +13.7767946,UBERON:0004405,http://purl.obolibrary.org/obo/UBERON_0004405,distal epiphysis of tibia +13.7767946,UBERON:0004563,http://purl.obolibrary.org/obo/UBERON_0004563,forelimb digital vein +13.7767946,UBERON:0004731,http://purl.obolibrary.org/obo/UBERON_0004731,neuromere +13.7767946,UBERON:0004878,http://purl.obolibrary.org/obo/UBERON_0004878,distal visceral endoderm +13.7767946,UBERON:0005311,http://purl.obolibrary.org/obo/UBERON_0005311,mammary placode +13.7767946,UBERON:0005333,http://purl.obolibrary.org/obo/UBERON_0005333,mammary bud +13.7767946,UBERON:0005402,http://purl.obolibrary.org/obo/UBERON_0005402,philtrum +13.7767946,UBERON:0005458,http://purl.obolibrary.org/obo/UBERON_0005458,left umbilical artery +13.7767946,UBERON:0005488,http://purl.obolibrary.org/obo/UBERON_0005488,superior mesenteric plexus +13.7767946,UBERON:0006279,http://purl.obolibrary.org/obo/UBERON_0006279,pleuroperitoneal canal +13.7767946,UBERON:0006606,http://purl.obolibrary.org/obo/UBERON_0006606,mandibular symphysis +13.7767946,UBERON:0006617,http://purl.obolibrary.org/obo/UBERON_0006617,left external ear +13.7767946,UBERON:0006664,http://purl.obolibrary.org/obo/UBERON_0006664,greater palatine artery +13.7767946,UBERON:0006875,http://purl.obolibrary.org/obo/UBERON_0006875,embryonic handplate +13.7767946,UBERON:0007125,http://purl.obolibrary.org/obo/UBERON_0007125,pharyngeal pouch 4 +13.7767946,UBERON:0007156,http://purl.obolibrary.org/obo/UBERON_0007156,inferior thyroid vein +13.7767946,UBERON:0007165,http://purl.obolibrary.org/obo/UBERON_0007165,proximal radio-ulnar joint +13.7767946,UBERON:0009042,http://purl.obolibrary.org/obo/UBERON_0009042,prostatic venous plexus +13.7767946,UBERON:0009629,http://purl.obolibrary.org/obo/UBERON_0009629,coccygeal nerve +13.7767946,UBERON:0009913,http://purl.obolibrary.org/obo/UBERON_0009913,renal lobe +13.7767946,UBERON:0011253,http://purl.obolibrary.org/obo/UBERON_0011253,gland of anal sac +13.7767946,UBERON:0011845,http://purl.obolibrary.org/obo/UBERON_0011845,duct of sebaceous gland +13.7767946,UBERON:0011931,http://purl.obolibrary.org/obo/UBERON_0011931,nasal hair +13.7767946,UBERON:0012473,http://purl.obolibrary.org/obo/UBERON_0012473,oral cirrus +13.7767946,UBERON:0013232,http://purl.obolibrary.org/obo/UBERON_0013232,serous acinus +13.7767946,UBERON:0013590,http://purl.obolibrary.org/obo/UBERON_0013590,cruciate sulcus +13.7767946,UBERON:0013644,http://purl.obolibrary.org/obo/UBERON_0013644,duodenal ampulla +13.7767946,UBERON:0014931,http://purl.obolibrary.org/obo/UBERON_0014931,periungual skin +13.7767946,UBERON:0015469,http://purl.obolibrary.org/obo/UBERON_0015469,splenic lymph node +13.7767946,UBERON:0016397,http://purl.obolibrary.org/obo/UBERON_0016397,submental lymph node +13.7767946,UBERON:0018583,http://purl.obolibrary.org/obo/UBERON_0018583,primary canine tooth +13.7767946,UBERON:0018681,http://purl.obolibrary.org/obo/UBERON_0018681,lesser splanchnic nerve +13.7767946,UBERON:0035771,http://purl.obolibrary.org/obo/UBERON_0035771,mesenteric plexus +13.7767946,UBERON:1000019,http://purl.obolibrary.org/obo/UBERON_1000019,top of head +13.7767946,UBERON:2000542,http://purl.obolibrary.org/obo/UBERON_2000542,medial column +13.7767946,UBERON:4200172,http://purl.obolibrary.org/obo/UBERON_4200172,neck of humerus +13.8193543,CHEBI:15343,http://purl.obolibrary.org/obo/CHEBI_15343,acetaldehyde +13.8193543,CHEBI:15756,http://purl.obolibrary.org/obo/CHEBI_15756,hexadecanoic acid +13.8193543,CHEBI:16112,http://purl.obolibrary.org/obo/CHEBI_16112,chlorogenic acid +13.8193543,CHEBI:16136,http://purl.obolibrary.org/obo/CHEBI_16136,hydrogen sulfide +13.8193543,CHEBI:24688,http://purl.obolibrary.org/obo/CHEBI_24688,monohydroxycinnamic acid +13.8193543,CHEBI:28683,http://purl.obolibrary.org/obo/CHEBI_28683,kynurenine +13.8193543,CHEBI:34543,http://purl.obolibrary.org/obo/CHEBI_34543,argipressin +13.8193543,CHEBI:36087,http://purl.obolibrary.org/obo/CHEBI_36087,cinnamate ester +13.8193543,CHEBI:37550,http://purl.obolibrary.org/obo/CHEBI_37550,sphingosine 1-phosphate +13.8193543,CHEBI:60832,http://purl.obolibrary.org/obo/CHEBI_60832,tubulin modulator +13.8193543,CHEBI:64155,http://purl.obolibrary.org/obo/CHEBI_64155,H4-receptor agonist +13.8193543,CHEBI:67008,http://purl.obolibrary.org/obo/CHEBI_67008,kynureninate +13.8193543,CHEBI:7044,http://purl.obolibrary.org/obo/CHEBI_7044,myoglobin +13.8193543,CHEBI:87113,http://purl.obolibrary.org/obo/CHEBI_87113,antibiotic antifungal drug +13.8193543,CL:0002352,http://purl.obolibrary.org/obo/CL_0002352,gestational hematopoietic stem cell +13.8193543,CL:0002604,http://purl.obolibrary.org/obo/CL_0002604,astrocyte of the hippocampus +13.8193543,CL:0002640,http://purl.obolibrary.org/obo/CL_0002640,amniotic epithelial stem cell +13.8193543,CL:1000324,http://purl.obolibrary.org/obo/CL_1000324,duodenal goblet cell +13.8193543,CL:1001580,http://purl.obolibrary.org/obo/CL_1001580,hippocampus glial cell +13.8193543,CL:1001589,http://purl.obolibrary.org/obo/CL_1001589,duodenum glandular cell +13.8193543,DRUGBANK:DB02156,http://purl.obolibrary.org/obo/DRUGBANK_DB02156,none +13.8193543,DRUGBANK:DB03395,http://purl.obolibrary.org/obo/DRUGBANK_DB03395,none +13.8193543,DRUGBANK:DB03701,http://purl.obolibrary.org/obo/DRUGBANK_DB03701,none +13.8193543,DRUGBANK:DB03740,http://purl.obolibrary.org/obo/DRUGBANK_DB03740,none +13.8193543,DRUGBANK:DB04737,http://purl.obolibrary.org/obo/DRUGBANK_DB04737,none +13.8193543,DRUGBANK:DB05237,http://purl.obolibrary.org/obo/DRUGBANK_DB05237,none +13.8193543,DRUGBANK:DB05252,http://purl.obolibrary.org/obo/DRUGBANK_DB05252,none +13.8193543,DRUGBANK:DB05322,http://purl.obolibrary.org/obo/DRUGBANK_DB05322,none +13.8193543,DRUGBANK:DB05441,http://purl.obolibrary.org/obo/DRUGBANK_DB05441,none +13.8193543,DRUGBANK:DB05793,http://purl.obolibrary.org/obo/DRUGBANK_DB05793,none +13.8193543,DRUGBANK:DB06198,http://purl.obolibrary.org/obo/DRUGBANK_DB06198,none +13.8193543,DRUGBANK:DB06397,http://purl.obolibrary.org/obo/DRUGBANK_DB06397,none +13.8193543,DRUGBANK:DB06556,http://purl.obolibrary.org/obo/DRUGBANK_DB06556,none +13.8193543,DRUGBANK:DB06647,http://purl.obolibrary.org/obo/DRUGBANK_DB06647,none +13.8193543,DRUGBANK:DB09003,http://purl.obolibrary.org/obo/DRUGBANK_DB09003,none +13.8193543,DRUGBANK:DB09353,http://purl.obolibrary.org/obo/DRUGBANK_DB09353,none +13.8193543,DRUGBANK:DB09555,http://purl.obolibrary.org/obo/DRUGBANK_DB09555,none +13.8193543,DRUGBANK:DB09568,http://purl.obolibrary.org/obo/DRUGBANK_DB09568,none +13.8193543,DRUGBANK:DB11844,http://purl.obolibrary.org/obo/DRUGBANK_DB11844,none +13.8193543,DRUGBANK:DB11854,http://purl.obolibrary.org/obo/DRUGBANK_DB11854,none +13.8193543,DRUGBANK:DB12012,http://purl.obolibrary.org/obo/DRUGBANK_DB12012,none +13.8193543,DRUGBANK:DB12034,http://purl.obolibrary.org/obo/DRUGBANK_DB12034,none +13.8193543,DRUGBANK:DB12186,http://purl.obolibrary.org/obo/DRUGBANK_DB12186,none +13.8193543,DRUGBANK:DB12285,http://purl.obolibrary.org/obo/DRUGBANK_DB12285,none +13.8193543,DRUGBANK:DB12325,http://purl.obolibrary.org/obo/DRUGBANK_DB12325,none +13.8193543,DRUGBANK:DB12396,http://purl.obolibrary.org/obo/DRUGBANK_DB12396,none +13.8193543,DRUGBANK:DB12534,http://purl.obolibrary.org/obo/DRUGBANK_DB12534,none +13.8193543,DRUGBANK:DB12979,http://purl.obolibrary.org/obo/DRUGBANK_DB12979,none +13.8193543,DRUGBANK:DB13286,http://purl.obolibrary.org/obo/DRUGBANK_DB13286,none +13.8193543,DRUGBANK:DB13326,http://purl.obolibrary.org/obo/DRUGBANK_DB13326,none +13.8193543,DRUGBANK:DB13369,http://purl.obolibrary.org/obo/DRUGBANK_DB13369,none +13.8193543,DRUGBANK:DB13533,http://purl.obolibrary.org/obo/DRUGBANK_DB13533,none +13.8193543,DRUGBANK:DB13563,http://purl.obolibrary.org/obo/DRUGBANK_DB13563,none +13.8193543,DRUGBANK:DB13567,http://purl.obolibrary.org/obo/DRUGBANK_DB13567,none +13.8193543,DRUGBANK:DB14218,http://purl.obolibrary.org/obo/DRUGBANK_DB14218,none +13.8193543,DRUGBANK:DB14330,http://purl.obolibrary.org/obo/DRUGBANK_DB14330,none +13.8193543,DRUGBANK:DB14376,http://purl.obolibrary.org/obo/DRUGBANK_DB14376,none +13.8193543,DRUGBANK:DB14538,http://purl.obolibrary.org/obo/DRUGBANK_DB14538,none +13.8193543,DRUGBANK:DB15205,http://purl.obolibrary.org/obo/DRUGBANK_DB15205,none +13.8193543,DRUGBANK:DB15493,http://purl.obolibrary.org/obo/DRUGBANK_DB15493,none +13.8193543,DRUGBANK:DB15736,http://purl.obolibrary.org/obo/DRUGBANK_DB15736,none +13.8193543,DRUGBANK:DB15831,http://purl.obolibrary.org/obo/DRUGBANK_DB15831,none +13.8193543,DRUGBANK:DB16308,http://purl.obolibrary.org/obo/DRUGBANK_DB16308,none +13.8193543,GO:0000087,http://purl.obolibrary.org/obo/GO_0000087,mitotic M phase +13.8193543,GO:0000236,http://purl.obolibrary.org/obo/GO_0000236,mitotic prometaphase +13.8193543,GO:0000255,http://purl.obolibrary.org/obo/GO_0000255,allantoin metabolic process +13.8193543,GO:0000304,http://purl.obolibrary.org/obo/GO_0000304,response to singlet oxygen +13.8193543,GO:0002228,http://purl.obolibrary.org/obo/GO_0002228,natural killer cell mediated immunity +13.8193543,GO:0003829,http://purl.obolibrary.org/obo/GO_0003829,"beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity" +13.8193543,GO:0004068,http://purl.obolibrary.org/obo/GO_0004068,aspartate 1-decarboxylase activity +13.8193543,GO:0004108,http://purl.obolibrary.org/obo/GO_0004108,citrate (Si)-synthase activity +13.8193543,GO:0004332,http://purl.obolibrary.org/obo/GO_0004332,fructose-bisphosphate aldolase activity +13.8193543,GO:0005891,http://purl.obolibrary.org/obo/GO_0005891,voltage-gated calcium channel complex +13.8193543,GO:0007096,http://purl.obolibrary.org/obo/GO_0007096,regulation of exit from mitosis +13.8193543,GO:0008444,http://purl.obolibrary.org/obo/GO_0008444,CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity +13.8193543,GO:0008736,http://purl.obolibrary.org/obo/GO_0008736,L-fucose isomerase activity +13.8193543,GO:0014735,http://purl.obolibrary.org/obo/GO_0014735,regulation of muscle atrophy +13.8193543,GO:0014841,http://purl.obolibrary.org/obo/GO_0014841,skeletal muscle satellite cell proliferation +13.8193543,GO:0015225,http://purl.obolibrary.org/obo/GO_0015225,biotin transmembrane transporter activity +13.8193543,GO:0015811,http://purl.obolibrary.org/obo/GO_0015811,L-cystine transport +13.8193543,GO:0017057,http://purl.obolibrary.org/obo/GO_0017057,6-phosphogluconolactonase activity +13.8193543,GO:0019150,http://purl.obolibrary.org/obo/GO_0019150,D-ribulokinase activity +13.8193543,GO:0019151,http://purl.obolibrary.org/obo/GO_0019151,galactose 1-dehydrogenase activity +13.8193543,GO:0019630,http://purl.obolibrary.org/obo/GO_0019630,quinate metabolic process +13.8193543,GO:0019682,http://purl.obolibrary.org/obo/GO_0019682,glyceraldehyde-3-phosphate metabolic process +13.8193543,GO:0022619,http://purl.obolibrary.org/obo/GO_0022619,generative cell differentiation +13.8193543,GO:0030089,http://purl.obolibrary.org/obo/GO_0030089,phycobilisome +13.8193543,GO:0030613,http://purl.obolibrary.org/obo/GO_0030613,"oxidoreductase activity, acting on phosphorus or arsenic in donors" +13.8193543,GO:0030809,http://purl.obolibrary.org/obo/GO_0030809,negative regulation of nucleotide biosynthetic process +13.8193543,GO:0031134,http://purl.obolibrary.org/obo/GO_0031134,sister chromatid biorientation +13.8193543,GO:0031341,http://purl.obolibrary.org/obo/GO_0031341,regulation of cell killing +13.8193543,GO:0031456,http://purl.obolibrary.org/obo/GO_0031456,glycine betaine biosynthetic process +13.8193543,GO:0032431,http://purl.obolibrary.org/obo/GO_0032431,activation of phospholipase A2 activity +13.8193543,GO:0033797,http://purl.obolibrary.org/obo/GO_0033797,selenate reductase activity +13.8193543,GO:0034026,http://purl.obolibrary.org/obo/GO_0034026,L-amino-acid alpha-ligase activity +13.8193543,GO:0034121,http://purl.obolibrary.org/obo/GO_0034121,regulation of toll-like receptor signaling pathway +13.8193543,GO:0034502,http://purl.obolibrary.org/obo/GO_0034502,protein localization to chromosome +13.8193543,GO:0035363,http://purl.obolibrary.org/obo/GO_0035363,histone locus body +13.8193543,GO:0035838,http://purl.obolibrary.org/obo/GO_0035838,growing cell tip +13.8193543,GO:0036400,http://purl.obolibrary.org/obo/GO_0036400,short neuropeptide F receptor activity +13.8193543,GO:0038083,http://purl.obolibrary.org/obo/GO_0038083,peptidyl-tyrosine autophosphorylation +13.8193543,GO:0040009,http://purl.obolibrary.org/obo/GO_0040009,regulation of growth rate +13.8193543,GO:0042357,http://purl.obolibrary.org/obo/GO_0042357,thiamine diphosphate metabolic process +13.8193543,GO:0042617,http://purl.obolibrary.org/obo/GO_0042617,paclitaxel biosynthetic process +13.8193543,GO:0042921,http://purl.obolibrary.org/obo/GO_0042921,glucocorticoid receptor signaling pathway +13.8193543,GO:0043010,http://purl.obolibrary.org/obo/GO_0043010,camera-type eye development +13.8193543,GO:0043031,http://purl.obolibrary.org/obo/GO_0043031,negative regulation of macrophage activation +13.8193543,GO:0043136,http://purl.obolibrary.org/obo/GO_0043136,glycerol-3-phosphatase activity +13.8193543,GO:0043256,http://purl.obolibrary.org/obo/GO_0043256,laminin complex +13.8193543,GO:0044000,http://purl.obolibrary.org/obo/GO_0044000,movement in host +13.8193543,GO:0044241,http://purl.obolibrary.org/obo/GO_0044241,lipid digestion +13.8193543,GO:0044301,http://purl.obolibrary.org/obo/GO_0044301,climbing fiber +13.8193543,GO:0044413,http://purl.obolibrary.org/obo/GO_0044413,none +13.8193543,GO:0044597,http://purl.obolibrary.org/obo/GO_0044597,daunorubicin metabolic process +13.8193543,GO:0045669,http://purl.obolibrary.org/obo/GO_0045669,positive regulation of osteoblast differentiation +13.8193543,GO:0045763,http://purl.obolibrary.org/obo/GO_0045763,negative regulation of cellular amino acid metabolic process +13.8193543,GO:0045807,http://purl.obolibrary.org/obo/GO_0045807,positive regulation of endocytosis +13.8193543,GO:0045922,http://purl.obolibrary.org/obo/GO_0045922,negative regulation of fatty acid metabolic process +13.8193543,GO:0046235,http://purl.obolibrary.org/obo/GO_0046235,none +13.8193543,GO:0046437,http://purl.obolibrary.org/obo/GO_0046437,D-amino acid biosynthetic process +13.8193543,GO:0046526,http://purl.obolibrary.org/obo/GO_0046526,D-xylulose reductase activity +13.8193543,GO:0046713,http://purl.obolibrary.org/obo/GO_0046713,borate transport +13.8193543,GO:0046990,http://purl.obolibrary.org/obo/GO_0046990,N-hydroxyarylamine O-acetyltransferase activity +13.8193543,GO:0046999,http://purl.obolibrary.org/obo/GO_0046999,regulation of conjugation +13.8193543,GO:0047375,http://purl.obolibrary.org/obo/GO_0047375,N-acetylgalactosaminoglycan deacetylase activity +13.8193543,GO:0048536,http://purl.obolibrary.org/obo/GO_0048536,spleen development +13.8193543,GO:0048573,http://purl.obolibrary.org/obo/GO_0048573,"photoperiodism, flowering" +13.8193543,GO:0050083,http://purl.obolibrary.org/obo/GO_0050083,malyl-CoA lyase activity +13.8193543,GO:0050105,http://purl.obolibrary.org/obo/GO_0050105,L-gulonolactone oxidase activity +13.8193543,GO:0050261,http://purl.obolibrary.org/obo/GO_0050261,ribose isomerase activity +13.8193543,GO:0050515,http://purl.obolibrary.org/obo/GO_0050515,4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity +13.8193543,GO:0050613,http://purl.obolibrary.org/obo/GO_0050613,delta14-sterol reductase activity +13.8193543,GO:0051176,http://purl.obolibrary.org/obo/GO_0051176,positive regulation of sulfur metabolic process +13.8193543,GO:0051337,http://purl.obolibrary.org/obo/GO_0051337,amitosis +13.8193543,GO:0051814,http://purl.obolibrary.org/obo/GO_0051814,none +13.8193543,GO:0052695,http://purl.obolibrary.org/obo/GO_0052695,cellular glucuronidation +13.8193543,GO:0060291,http://purl.obolibrary.org/obo/GO_0060291,long-term synaptic potentiation +13.8193543,GO:0061554,http://purl.obolibrary.org/obo/GO_0061554,ganglion formation +13.8193543,GO:0070228,http://purl.obolibrary.org/obo/GO_0070228,regulation of lymphocyte apoptotic process +13.8193543,GO:0070371,http://purl.obolibrary.org/obo/GO_0070371,ERK1 and ERK2 cascade +13.8193543,GO:0071375,http://purl.obolibrary.org/obo/GO_0071375,cellular response to peptide hormone stimulus +13.8193543,GO:0071622,http://purl.obolibrary.org/obo/GO_0071622,regulation of granulocyte chemotaxis +13.8193543,GO:0071771,http://purl.obolibrary.org/obo/GO_0071771,aldehyde decarbonylase activity +13.8193543,GO:0072539,http://purl.obolibrary.org/obo/GO_0072539,T-helper 17 cell differentiation +13.8193543,GO:0072737,http://purl.obolibrary.org/obo/GO_0072737,response to diamide +13.8193543,GO:0090427,http://purl.obolibrary.org/obo/GO_0090427,activation of meiosis +13.8193543,GO:0097373,http://purl.obolibrary.org/obo/GO_0097373,MCM core complex +13.8193543,GO:0097412,http://purl.obolibrary.org/obo/GO_0097412,hyaline inclusion +13.8193543,GO:0097475,http://purl.obolibrary.org/obo/GO_0097475,motor neuron migration +13.8193543,GO:0097628,http://purl.obolibrary.org/obo/GO_0097628,distal tip cell migration +13.8193543,GO:1901767,http://purl.obolibrary.org/obo/GO_1901767,carbapenem metabolic process +13.8193543,GO:1901769,http://purl.obolibrary.org/obo/GO_1901769,carbapenem biosynthetic process +13.8193543,GO:1901771,http://purl.obolibrary.org/obo/GO_1901771,daunorubicin biosynthetic process +13.8193543,GO:1901993,http://purl.obolibrary.org/obo/GO_1901993,regulation of meiotic cell cycle phase transition +13.8193543,GO:2000028,http://purl.obolibrary.org/obo/GO_2000028,"regulation of photoperiodism, flowering" +13.8193543,GO:2000291,http://purl.obolibrary.org/obo/GO_2000291,regulation of myoblast proliferation +13.8193543,GO:2000404,http://purl.obolibrary.org/obo/GO_2000404,regulation of T cell migration +13.8193543,HP:0000297,http://purl.obolibrary.org/obo/HP_0000297,Facial hypotonia +13.8193543,HP:0000301,http://purl.obolibrary.org/obo/HP_0000301,Abnormality of facial musculature +13.8193543,HP:0002583,http://purl.obolibrary.org/obo/HP_0002583,Colitis +13.8193543,HP:0003552,http://purl.obolibrary.org/obo/HP_0003552,Muscle stiffness +13.8193543,HP:0004327,http://purl.obolibrary.org/obo/HP_0004327,Abnormal vitreous humor morphology +13.8193543,HP:0007773,http://purl.obolibrary.org/obo/HP_0007773,Vitreoretinopathy +13.8193543,HP:0009733,http://purl.obolibrary.org/obo/HP_0009733,Glioma +13.8193543,HP:0011799,http://purl.obolibrary.org/obo/HP_0011799,Abnormality of facial soft tissue +13.8193543,HP:0030075,http://purl.obolibrary.org/obo/HP_0030075,Ductal carcinoma in situ +13.8193543,HP:0032242,http://purl.obolibrary.org/obo/HP_0032242,Cervical intraepithelial neoplasia +13.8193543,MONDO:0000310,http://purl.obolibrary.org/obo/MONDO_0000310,Alkhurma hemorrhagic fever +13.8193543,MONDO:0000467,http://purl.obolibrary.org/obo/MONDO_0000467,second-degree atrioventricular block +13.8193543,MONDO:0001784,http://purl.obolibrary.org/obo/MONDO_0001784,malignant renovascular hypertension +13.8193543,MONDO:0002016,http://purl.obolibrary.org/obo/MONDO_0002016,benign familial neonatal epilepsy +13.8193543,MONDO:0002318,http://purl.obolibrary.org/obo/MONDO_0002318,trachea leiomyoma +13.8193543,MONDO:0002634,http://purl.obolibrary.org/obo/MONDO_0002634,liposarcoma of bone +13.8193543,MONDO:0002718,http://purl.obolibrary.org/obo/MONDO_0002718,central nervous system teratoma +13.8193543,MONDO:0002865,http://purl.obolibrary.org/obo/MONDO_0002865,anus sarcoma +13.8193543,MONDO:0002951,http://purl.obolibrary.org/obo/MONDO_0002951,skin adenoid basal cell carcinoma +13.8193543,MONDO:0003027,http://purl.obolibrary.org/obo/MONDO_0003027,thyroid gland angiosarcoma +13.8193543,MONDO:0003369,http://purl.obolibrary.org/obo/MONDO_0003369,vagina leiomyosarcoma +13.8193543,MONDO:0003630,http://purl.obolibrary.org/obo/MONDO_0003630,pancreatic serous cystadenocarcinoma +13.8193543,MONDO:0003880,http://purl.obolibrary.org/obo/MONDO_0003880,ceruminous carcinoma +13.8193543,MONDO:0004274,http://purl.obolibrary.org/obo/MONDO_0004274,mixed epithelial/mesenchymal metaplastic breast carcinoma +13.8193543,MONDO:0004349,http://purl.obolibrary.org/obo/MONDO_0004349,retina lymphoma +13.8193543,MONDO:0004667,http://purl.obolibrary.org/obo/MONDO_0004667,sublingual gland cancer +13.8193543,MONDO:0004834,http://purl.obolibrary.org/obo/MONDO_0004834,ischemic fasciitis +13.8193543,MONDO:0005436,http://purl.obolibrary.org/obo/MONDO_0005436,postoperative ventricular dysfunction +13.8193543,MONDO:0005634,http://purl.obolibrary.org/obo/MONDO_0005634,acute hemorrhagic conjunctivitis +13.8193543,MONDO:0007208,http://purl.obolibrary.org/obo/MONDO_0007208,Boomerang dysplasia +13.8193543,MONDO:0007404,http://purl.obolibrary.org/obo/MONDO_0007404,Cri-du-chat syndrome +13.8193543,MONDO:0007486,http://purl.obolibrary.org/obo/MONDO_0007486,hereditary benign intraepithelial dyskeratosis +13.8193543,MONDO:0007813,http://purl.obolibrary.org/obo/MONDO_0007813,ichthyosis bullosa of Siemens +13.8193543,MONDO:0008072,http://purl.obolibrary.org/obo/MONDO_0008072,"IgA nephropathy, susceptibility to, 1" +13.8193543,MONDO:0008429,http://purl.obolibrary.org/obo/MONDO_0008429,singleton-Merten dysplasia +13.8193543,MONDO:0008438,http://purl.obolibrary.org/obo/MONDO_0008438,hereditary spastic paraplegia 4 +13.8193543,MONDO:0008518,http://purl.obolibrary.org/obo/MONDO_0008518,calcaneonavicular coalition +13.8193543,MONDO:0008546,http://purl.obolibrary.org/obo/MONDO_0008546,thanatophoric dysplasia type 1 +13.8193543,MONDO:0008740,http://purl.obolibrary.org/obo/MONDO_0008740,agnathia-otocephaly complex +13.8193543,MONDO:0008849,http://purl.obolibrary.org/obo/MONDO_0008849,atrophoderma vermiculata +13.8193543,MONDO:0008969,http://purl.obolibrary.org/obo/MONDO_0008969,cholesterol pneumonia +13.8193543,MONDO:0009406,http://purl.obolibrary.org/obo/MONDO_0009406,hypertrichotic osteochondrodysplasia Cantu type +13.8193543,MONDO:0009576,http://purl.obolibrary.org/obo/MONDO_0009576,megalocornea +13.8193543,MONDO:0009579,http://purl.obolibrary.org/obo/MONDO_0009579,Frank-Ter Haar syndrome +13.8193543,MONDO:0009767,http://purl.obolibrary.org/obo/MONDO_0009767,"oculocerebral hypopigmentation syndrome, Cross type" +13.8193543,MONDO:0009973,http://purl.obolibrary.org/obo/MONDO_0009973,reticular dysgenesis +13.8193543,MONDO:0011022,http://purl.obolibrary.org/obo/MONDO_0011022,Potocki-Shaffer syndrome +13.8193543,MONDO:0011671,http://purl.obolibrary.org/obo/MONDO_0011671,Huntington disease-like 2 +13.8193543,MONDO:0012350,http://purl.obolibrary.org/obo/MONDO_0012350,complement factor H deficiency +13.8193543,MONDO:0013566,http://purl.obolibrary.org/obo/MONDO_0013566,Fanconi anemia complementation group L +13.8193543,MONDO:0013607,http://purl.obolibrary.org/obo/MONDO_0013607,monocytopenia with susceptibility to infections +13.8193543,MONDO:0013767,http://purl.obolibrary.org/obo/MONDO_0013767,autoimmune lymphoproliferative syndrome type 4 +13.8193543,MONDO:0015291,http://purl.obolibrary.org/obo/MONDO_0015291,stromal keratitis +13.8193543,MONDO:0015702,http://purl.obolibrary.org/obo/MONDO_0015702,T-B+ severe combined immunodeficiency due to CD45 deficiency +13.8193543,MONDO:0016502,http://purl.obolibrary.org/obo/MONDO_0016502,Hermansky-Pudlak syndrome without pulmonary fibrosis +13.8193543,MONDO:0016739,http://purl.obolibrary.org/obo/MONDO_0016739,yolk sac tumor of central nervous system +13.8193543,MONDO:0016887,http://purl.obolibrary.org/obo/MONDO_0016887,partial deletion of the short arm of chromosome 5 +13.8193543,MONDO:0017227,http://purl.obolibrary.org/obo/MONDO_0017227,autoimmune pancreatitis type 1 +13.8193543,MONDO:0017395,http://purl.obolibrary.org/obo/MONDO_0017395,fixed pigmented erythema +13.8193543,MONDO:0017431,http://purl.obolibrary.org/obo/MONDO_0017431,non-syndromic limb overgrowth +13.8193543,MONDO:0017958,http://purl.obolibrary.org/obo/MONDO_0017958,magic syndrome +13.8193543,MONDO:0018081,http://purl.obolibrary.org/obo/MONDO_0018081,hemorrhagic fever-renal syndrome +13.8193543,MONDO:0018221,http://purl.obolibrary.org/obo/MONDO_0018221,immune hydrops fetalis +13.8193543,MONDO:0018588,http://purl.obolibrary.org/obo/MONDO_0018588,ALECT2 amyloidosis +13.8193543,MONDO:0019405,http://purl.obolibrary.org/obo/MONDO_0019405,facial onset sensory and motor neuronopathy +13.8193543,MONDO:0019431,http://purl.obolibrary.org/obo/MONDO_0019431,primitive portal vein thrombosis +13.8193543,MONDO:0019452,http://purl.obolibrary.org/obo/MONDO_0019452,"myeloproliferative neoplasm, unclassifiable" +13.8193543,MONDO:0019940,http://purl.obolibrary.org/obo/MONDO_0019940,hypertrichosis-acromegaloid facial appearance syndrome +13.8193543,MONDO:0020375,http://purl.obolibrary.org/obo/MONDO_0020375,coralliform cataract +13.8193543,MONDO:0020693,http://purl.obolibrary.org/obo/MONDO_0020693,glycogen storage disease due to liver phosphorylase kinase deficiency +13.8193543,MONDO:0021507,http://purl.obolibrary.org/obo/MONDO_0021507,benign neoplasm of brain stem +13.8193543,MONDO:0022645,http://purl.obolibrary.org/obo/MONDO_0022645,cardioencephalomyopathy +13.8193543,MONDO:0043294,http://purl.obolibrary.org/obo/MONDO_0043294,linear scleroderma +13.8193543,MONDO:0044013,http://purl.obolibrary.org/obo/MONDO_0044013,puerperal disorder +13.8193543,NCBITaxon:106218,http://purl.obolibrary.org/obo/NCBITaxon_106218,none +13.8193543,NCBITaxon:106219,http://purl.obolibrary.org/obo/NCBITaxon_106219,none +13.8193543,NCBITaxon:11024,http://purl.obolibrary.org/obo/NCBITaxon_11024,none +13.8193543,NCBITaxon:119825,http://purl.obolibrary.org/obo/NCBITaxon_119825,none +13.8193543,NCBITaxon:12118,http://purl.obolibrary.org/obo/NCBITaxon_12118,none +13.8193543,NCBITaxon:12172,http://purl.obolibrary.org/obo/NCBITaxon_12172,none +13.8193543,NCBITaxon:12541,http://purl.obolibrary.org/obo/NCBITaxon_12541,none +13.8193543,NCBITaxon:130309,http://purl.obolibrary.org/obo/NCBITaxon_130309,none +13.8193543,NCBITaxon:161378,http://purl.obolibrary.org/obo/NCBITaxon_161378,none +13.8193543,NCBITaxon:176656,http://purl.obolibrary.org/obo/NCBITaxon_176656,none +13.8193543,NCBITaxon:1817,http://purl.obolibrary.org/obo/NCBITaxon_1817,Nocardia +13.8193543,NCBITaxon:1891713,http://purl.obolibrary.org/obo/NCBITaxon_1891713,none +13.8193543,NCBITaxon:196894,http://purl.obolibrary.org/obo/NCBITaxon_196894,none +13.8193543,NCBITaxon:2056889,http://purl.obolibrary.org/obo/NCBITaxon_2056889,none +13.8193543,NCBITaxon:206351,http://purl.obolibrary.org/obo/NCBITaxon_206351,Neisseriales +13.8193543,NCBITaxon:2231384,http://purl.obolibrary.org/obo/NCBITaxon_2231384,none +13.8193543,NCBITaxon:228297,http://purl.obolibrary.org/obo/NCBITaxon_228297,none +13.8193543,NCBITaxon:235631,http://purl.obolibrary.org/obo/NCBITaxon_235631,none +13.8193543,NCBITaxon:242130,http://purl.obolibrary.org/obo/NCBITaxon_242130,none +13.8193543,NCBITaxon:2509494,http://purl.obolibrary.org/obo/NCBITaxon_2509494,Merbecovirus +13.8193543,NCBITaxon:31198,http://purl.obolibrary.org/obo/NCBITaxon_31198,none +13.8193543,NCBITaxon:31742,http://purl.obolibrary.org/obo/NCBITaxon_31742,none +13.8193543,NCBITaxon:31977,http://purl.obolibrary.org/obo/NCBITaxon_31977,none +13.8193543,NCBITaxon:32331,http://purl.obolibrary.org/obo/NCBITaxon_32331,none +13.8193543,NCBITaxon:38609,http://purl.obolibrary.org/obo/NCBITaxon_38609,Diprotodontia +13.8193543,NCBITaxon:38663,http://purl.obolibrary.org/obo/NCBITaxon_38663,none +13.8193543,NCBITaxon:39510,http://purl.obolibrary.org/obo/NCBITaxon_39510,none +13.8193543,NCBITaxon:40979,http://purl.obolibrary.org/obo/NCBITaxon_40979,none +13.8193543,NCBITaxon:422676,http://purl.obolibrary.org/obo/NCBITaxon_422676,Aconoidasida +13.8193543,NCBITaxon:481,http://purl.obolibrary.org/obo/NCBITaxon_481,Neisseriaceae +13.8193543,NCBITaxon:52280,http://purl.obolibrary.org/obo/NCBITaxon_52280,none +13.8193543,NCBITaxon:5506,http://purl.obolibrary.org/obo/NCBITaxon_5506,Fusarium +13.8193543,NCBITaxon:5804,http://purl.obolibrary.org/obo/NCBITaxon_5804,Eimeria maxima +13.8193543,NCBITaxon:59749,http://purl.obolibrary.org/obo/NCBITaxon_59749,none +13.8193543,NCBITaxon:6042,http://purl.obolibrary.org/obo/NCBITaxon_6042,none +13.8193543,NCBITaxon:6087,http://purl.obolibrary.org/obo/NCBITaxon_6087,none +13.8193543,NCBITaxon:64300,http://purl.obolibrary.org/obo/NCBITaxon_64300,none +13.8193543,NCBITaxon:6495,http://purl.obolibrary.org/obo/NCBITaxon_6495,none +13.8193543,NCBITaxon:6566,http://purl.obolibrary.org/obo/NCBITaxon_6566,none +13.8193543,NCBITaxon:7055,http://purl.obolibrary.org/obo/NCBITaxon_7055,none +13.8193543,NCBITaxon:909929,http://purl.obolibrary.org/obo/NCBITaxon_909929,none +13.8193543,NCBITaxon:909932,http://purl.obolibrary.org/obo/NCBITaxon_909932,none +13.8193543,NCBITaxon:9376,http://purl.obolibrary.org/obo/NCBITaxon_9376,none +13.8193543,NCBITaxon:9987,http://purl.obolibrary.org/obo/NCBITaxon_9987,Sylvilagus +13.8193543,NCBITaxon:9991,http://purl.obolibrary.org/obo/NCBITaxon_9991,none +13.8193543,PR:000001414,http://purl.obolibrary.org/obo/PR_000001414,CMRF35-like molecule 8 +13.8193543,PR:000001510,http://purl.obolibrary.org/obo/PR_000001510,probable G-protein coupled receptor 148 +13.8193543,PR:000001630,http://purl.obolibrary.org/obo/PR_000001630,hydroxycarboxylic acid receptor 3 +13.8193543,PR:000001920,http://purl.obolibrary.org/obo/PR_000001920,prostaglandin F2 receptor negative regulator +13.8193543,PR:000001928,http://purl.obolibrary.org/obo/PR_000001928,sialic acid-binding Ig-like lectin 6 +13.8193543,PR:000002029,http://purl.obolibrary.org/obo/PR_000002029,T-cell surface glycoprotein CD1e +13.8193543,PR:000003521,http://purl.obolibrary.org/obo/PR_000003521,neutral cholesterol ester hydrolase 1 +13.8193543,PR:000003608,http://purl.obolibrary.org/obo/PR_000003608,"Arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 2" +13.8193543,PR:000003813,http://purl.obolibrary.org/obo/PR_000003813,"Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 1" +13.8193543,PR:000004160,http://purl.obolibrary.org/obo/PR_000004160,apolipoprotein L3 +13.8193543,PR:000004341,http://purl.obolibrary.org/obo/PR_000004341,ankyrin repeat and SOCS box protein 1 +13.8193543,PR:000004426,http://purl.obolibrary.org/obo/PR_000004426,atlastin-3 +13.8193543,PR:000004428,http://purl.obolibrary.org/obo/PR_000004428,ATM interactor +13.8193543,PR:000004434,http://purl.obolibrary.org/obo/PR_000004434,potassium-transporting ATPase alpha chain 2 +13.8193543,PR:000004602,http://purl.obolibrary.org/obo/PR_000004602,"beta-1,4 N-acetylgalactosaminyltransferase 2" +13.8193543,PR:000004705,http://purl.obolibrary.org/obo/PR_000004705,B-cell CLL/lymphoma 9-like protein +13.8193543,PR:000004936,http://purl.obolibrary.org/obo/PR_000004936,calcium-binding protein 4 +13.8193543,PR:000005221,http://purl.obolibrary.org/obo/PR_000005221,cell division cycle-associated protein 3 +13.8193543,PR:000005237,http://purl.obolibrary.org/obo/PR_000005237,cadherin-19 +13.8193543,PR:000005394,http://purl.obolibrary.org/obo/PR_000005394,cingulin-like protein 1 +13.8193543,PR:000005467,http://purl.obolibrary.org/obo/PR_000005467,acetylcholine receptor subunit epsilon +13.8193543,PR:000005589,http://purl.obolibrary.org/obo/PR_000005589,chronic lymphocytic leukemia up-regulated protein 1 +13.8193543,PR:000005774,http://purl.obolibrary.org/obo/PR_000005774,"cytochrome c oxidase assembly protein COX18, mitochondrial" +13.8193543,PR:000005782,http://purl.obolibrary.org/obo/PR_000005782,"cytochrome c oxidase subunit 6A2, mitochondrial" +13.8193543,PR:000005785,http://purl.obolibrary.org/obo/PR_000005785,cytochrome c oxidase subunit 6C +13.8193543,PR:000005909,http://purl.obolibrary.org/obo/PR_000005909,beta-crystallin A2 +13.8193543,PR:000005978,http://purl.obolibrary.org/obo/PR_000005978,cleavage stimulation factor subunit 3 +13.8193543,PR:000006034,http://purl.obolibrary.org/obo/PR_000006034,cathepsin W +13.8193543,PR:000006127,http://purl.obolibrary.org/obo/PR_000006127,cytochrome P450 2U1 +13.8193543,PR:000006248,http://purl.obolibrary.org/obo/PR_000006248,none +13.8193543,PR:000006366,http://purl.obolibrary.org/obo/PR_000006366,ATP-dependent RNA helicase DDX42 +13.8193543,PR:000006579,http://purl.obolibrary.org/obo/PR_000006579,DnaJ homolog subfamily C member 1 +13.8193543,PR:000006626,http://purl.obolibrary.org/obo/PR_000006626,dedicator of cytokinesis protein 9 +13.8193543,PR:000006845,http://purl.obolibrary.org/obo/PR_000006845,DnaJ homolog subfamily B member 3 +13.8193543,PR:000007002,http://purl.obolibrary.org/obo/PR_000007002,eukaryotic translation initiation factor 5 +13.8193543,PR:000007115,http://purl.obolibrary.org/obo/PR_000007115,dematin +13.8193543,PR:000007199,http://purl.obolibrary.org/obo/PR_000007199,ESF1 +13.8193543,PR:000007257,http://purl.obolibrary.org/obo/PR_000007257,exosome complex component CSL4 +13.8193543,PR:000007258,http://purl.obolibrary.org/obo/PR_000007258,exosome component 10 +13.8193543,PR:000007293,http://purl.obolibrary.org/obo/PR_000007293,none +13.8193543,PR:000007502,http://purl.obolibrary.org/obo/PR_000007502,fibroblast growth factor-binding protein 2 +13.8193543,PR:000007523,http://purl.obolibrary.org/obo/PR_000007523,fidgetin-like protein 1 +13.8193543,PR:000007590,http://purl.obolibrary.org/obo/PR_000007590,folliculin-interacting protein 2 +13.8193543,PR:000007782,http://purl.obolibrary.org/obo/PR_000007782,gamma-aminobutyric acid receptor subunit rho-1 +13.8193543,PR:000007936,http://purl.obolibrary.org/obo/PR_000007936,gem-associated protein 7 +13.8193543,PR:000008009,http://purl.obolibrary.org/obo/PR_000008009,gap junction delta-4 protein +13.8193543,PR:000008093,http://purl.obolibrary.org/obo/PR_000008093,guanine nucleotide-binding protein G(t) subunit alpha-3 +13.8193543,PR:000008111,http://purl.obolibrary.org/obo/PR_000008111,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-7 +13.8193543,PR:000008611,http://purl.obolibrary.org/obo/PR_000008611,zinc finger protein 875 +13.8193543,PR:000008759,http://purl.obolibrary.org/obo/PR_000008759,heparan sulfate glucosamine 3-O-sulfotransferase 2 +13.8193543,PR:000009175,http://purl.obolibrary.org/obo/PR_000009175,none +13.8193543,PR:000009245,http://purl.obolibrary.org/obo/PR_000009245,katanin p80 WD40-containing subunit B1 +13.8193543,PR:000009419,http://purl.obolibrary.org/obo/PR_000009419,kallikrein-9 +13.8193543,PR:000009618,http://purl.obolibrary.org/obo/PR_000009618,none +13.8193543,PR:000009838,http://purl.obolibrary.org/obo/PR_000009838,lipase member I +13.8193543,PR:000009961,http://purl.obolibrary.org/obo/PR_000009961,U6 snRNA-associated Sm-like protein LSm3 +13.8193543,PR:000010072,http://purl.obolibrary.org/obo/PR_000010072,melanoma-associated antigen C1 +13.8193543,PR:000010144,http://purl.obolibrary.org/obo/PR_000010144,mitogen-activated protein kinase kinase kinase kinase 2 +13.8193543,PR:000010181,http://purl.obolibrary.org/obo/PR_000010181,E3 ubiquitin-protein ligase MARCHF7 +13.8193543,PR:000010296,http://purl.obolibrary.org/obo/PR_000010296,mediator of RNA polymerase II transcription subunit 24 +13.8193543,PR:000010451,http://purl.obolibrary.org/obo/PR_000010451,protein AF1q +13.8193543,PR:000010511,http://purl.obolibrary.org/obo/PR_000010511,molybdenum cofactor sulfurase +13.8193543,PR:000010619,http://purl.obolibrary.org/obo/PR_000010619,"28S ribosomal protein S11, mitochondrial" +13.8193543,PR:000010797,http://purl.obolibrary.org/obo/PR_000010797,myeloid-associated differentiation marker +13.8193543,PR:000011493,http://purl.obolibrary.org/obo/PR_000011493,cleavage and polyadenylation specificity factor subunit 5 +13.8193543,PR:000012063,http://purl.obolibrary.org/obo/PR_000012063,dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 4 +13.8193543,PR:000012213,http://purl.obolibrary.org/obo/PR_000012213,parkin coregulated gene protein +13.8193543,PR:000012482,http://purl.obolibrary.org/obo/PR_000012482,"retinal rod rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit gamma" +13.8193543,PR:000012637,http://purl.obolibrary.org/obo/PR_000012637,PHD finger protein 10 +13.8193543,PR:000012881,http://purl.obolibrary.org/obo/PR_000012881,pleiotropic regulator 1 +13.8193543,PR:000012891,http://purl.obolibrary.org/obo/PR_000012891,plexin domain-containing protein 2 +13.8193543,PR:000012951,http://purl.obolibrary.org/obo/PR_000012951,proline-rich nuclear receptor coactivator 1 +13.8193543,PR:000013098,http://purl.obolibrary.org/obo/PR_000013098,"protein phosphatase 1K, mitochondrial" +13.8193543,PR:000013109,http://purl.obolibrary.org/obo/PR_000013109,protein phosphatase 1 regulatory subunit 12C +13.8193543,PR:000013342,http://purl.obolibrary.org/obo/PR_000013342,PH and SEC7 domain-containing protein 3 +13.8193543,PR:000013505,http://purl.obolibrary.org/obo/PR_000013505,periodic tryptophan protein 2 +13.8193543,PR:000013523,http://purl.obolibrary.org/obo/PR_000013523,pygopus homolog 1 +13.8193543,PR:000013587,http://purl.obolibrary.org/obo/PR_000013587,Ras-related protein Rab-15 +13.8193543,PR:000013808,http://purl.obolibrary.org/obo/PR_000013808,RNA-binding protein 7 +13.8193543,PR:000014048,http://purl.obolibrary.org/obo/PR_000014048,ribonuclease 4 +13.8193543,PR:000014485,http://purl.obolibrary.org/obo/PR_000014485,secretory carrier-associated membrane protein 3 +13.8193543,PR:000014538,http://purl.obolibrary.org/obo/PR_000014538,secernin-1 +13.8193543,PR:000014669,http://purl.obolibrary.org/obo/PR_000014669,serine hydrolase-like protein +13.8193543,PR:000015270,http://purl.obolibrary.org/obo/PR_000015270,structural maintenance of chromosomes protein 1B +13.8193543,PR:000015720,http://purl.obolibrary.org/obo/PR_000015720,StAR-related lipid transfer protein 5 +13.8193543,PR:000015787,http://purl.obolibrary.org/obo/PR_000015787,syntaxin-12 +13.8193543,PR:000016021,http://purl.obolibrary.org/obo/PR_000016021,TATA box-binding protein-associated factor RNA polymerase I subunit B +13.8193543,PR:000016360,http://purl.obolibrary.org/obo/PR_000016360,protein mono-ADP-ribosyltransferase TIPARP +13.8193543,PR:000016470,http://purl.obolibrary.org/obo/PR_000016470,transmembrane and ubiquitin-like domain-containing protein 1 +13.8193543,PR:000016503,http://purl.obolibrary.org/obo/PR_000016503,"troponin C, skeletal muscle" +13.8193543,PR:000016689,http://purl.obolibrary.org/obo/PR_000016689,"CCA tRNA nucleotidyltransferase 1, mitochondrial" +13.8193543,PR:000016715,http://purl.obolibrary.org/obo/PR_000016715,tRNA-splicing endonuclease subunit Sen2 +13.8193543,PR:000016776,http://purl.obolibrary.org/obo/PR_000016776,GDP-L-fucose synthetase +13.8193543,PR:000016810,http://purl.obolibrary.org/obo/PR_000016810,tubulin alpha-3 chain +13.8193543,PR:000016934,http://purl.obolibrary.org/obo/PR_000016934,none +13.8193543,PR:000016993,http://purl.obolibrary.org/obo/PR_000016993,ubiquitin-protein ligase E3B +13.8193543,PR:000017097,http://purl.obolibrary.org/obo/PR_000017097,netrin receptor UNC5D +13.8193543,PR:000017122,http://purl.obolibrary.org/obo/PR_000017122,cytochrome b-c1 complex subunit 9 +13.8193543,PR:000017335,http://purl.obolibrary.org/obo/PR_000017335,vacuolar protein sorting-associated protein 37A +13.8193543,PR:000017424,http://purl.obolibrary.org/obo/PR_000017424,WAS/WASL-interacting protein family member 3 +13.8193543,PR:000017521,http://purl.obolibrary.org/obo/PR_000017521,YY1-associated factor 2 +13.8193543,PR:000017587,http://purl.obolibrary.org/obo/PR_000017587,zinc finger and BTB domain-containing protein 46 +13.8193543,PR:000017616,http://purl.obolibrary.org/obo/PR_000017616,palmitoyltransferase ZDHHC9 +13.8193543,PR:000017688,http://purl.obolibrary.org/obo/PR_000017688,zinc finger MYM-type protein 3 +13.8193543,PR:000017938,http://purl.obolibrary.org/obo/PR_000017938,zinc finger protein 503 +13.8193543,PR:000018058,http://purl.obolibrary.org/obo/PR_000018058,zinc finger protein 655 +13.8193543,PR:000021962,http://purl.obolibrary.org/obo/PR_000021962,none +13.8193543,PR:000022072,http://purl.obolibrary.org/obo/PR_000022072,none +13.8193543,PR:000022096,http://purl.obolibrary.org/obo/PR_000022096,none +13.8193543,PR:000022166,http://purl.obolibrary.org/obo/PR_000022166,none +13.8193543,PR:000022285,http://purl.obolibrary.org/obo/PR_000022285,none +13.8193543,PR:000022355,http://purl.obolibrary.org/obo/PR_000022355,none +13.8193543,PR:000022520,http://purl.obolibrary.org/obo/PR_000022520,none +13.8193543,PR:000022530,http://purl.obolibrary.org/obo/PR_000022530,none +13.8193543,PR:000022737,http://purl.obolibrary.org/obo/PR_000022737,none +13.8193543,PR:000022743,http://purl.obolibrary.org/obo/PR_000022743,none +13.8193543,PR:000022913,http://purl.obolibrary.org/obo/PR_000022913,none +13.8193543,PR:000023139,http://purl.obolibrary.org/obo/PR_000023139,none +13.8193543,PR:000023171,http://purl.obolibrary.org/obo/PR_000023171,none +13.8193543,PR:000023175,http://purl.obolibrary.org/obo/PR_000023175,none +13.8193543,PR:000023644,http://purl.obolibrary.org/obo/PR_000023644,none +13.8193543,PR:000023873,http://purl.obolibrary.org/obo/PR_000023873,none +13.8193543,PR:000024051,http://purl.obolibrary.org/obo/PR_000024051,none +13.8193543,PR:000026989,http://purl.obolibrary.org/obo/PR_000026989,microtubule-associated protein tau phosphorylated form +13.8193543,PR:000029117,http://purl.obolibrary.org/obo/PR_000029117,"adenylate kinase 4, mitochondrial" +13.8193543,PR:000029298,http://purl.obolibrary.org/obo/PR_000029298,BTB/POZ domain-containing adapter for CUL3-mediated RhoA degradation protein 3 +13.8193543,PR:000029348,http://purl.obolibrary.org/obo/PR_000029348,coiled-coil domain-containing protein 8 +13.8193543,PR:000029359,http://purl.obolibrary.org/obo/PR_000029359,CKLF-like MARVEL transmembrane domain-containing protein 6 +13.8193543,PR:000029484,http://purl.obolibrary.org/obo/PR_000029484,protein FAM83A +13.8193543,PR:000029509,http://purl.obolibrary.org/obo/PR_000029509,DNA-directed RNA polymerase II subunit GRINL1A +13.8193543,PR:000029630,http://purl.obolibrary.org/obo/PR_000029630,MKI67 FHA domain-interacting nucleolar phosphoprotein +13.8193543,PR:000029819,http://purl.obolibrary.org/obo/PR_000029819,thioredoxin-related transmembrane protein 2 +13.8193543,PR:000030224,http://purl.obolibrary.org/obo/PR_000030224,vacuolar ATPase assembly integral membrane protein VMA21 +13.8193543,PR:000030416,http://purl.obolibrary.org/obo/PR_000030416,protrudin +13.8193543,PR:000030841,http://purl.obolibrary.org/obo/PR_000030841,SET domain-containing protein 4 +13.8193543,PR:000030957,http://purl.obolibrary.org/obo/PR_000030957,interleukin-36 alpha +13.8193543,PR:000031288,http://purl.obolibrary.org/obo/PR_000031288,rabankyrin-5 +13.8193543,PR:000031357,http://purl.obolibrary.org/obo/PR_000031357,Ras association domain-containing protein 8 +13.8193543,PR:000033931,http://purl.obolibrary.org/obo/PR_000033931,none +13.8193543,PR:000035351,http://purl.obolibrary.org/obo/PR_000035351,none +13.8193543,PR:000036830,http://purl.obolibrary.org/obo/PR_000036830,none +13.8193543,PR:000037417,http://purl.obolibrary.org/obo/PR_000037417,none +13.8193543,PR:B2RYW8,http://purl.obolibrary.org/obo/PR_B2RYW8,none +13.8193543,PR:F4JLE5,http://purl.obolibrary.org/obo/PR_F4JLE5,none +13.8193543,PR:O14339,http://purl.obolibrary.org/obo/PR_O14339,none +13.8193543,PR:O35153,http://purl.obolibrary.org/obo/PR_O35153,none +13.8193543,PR:O42252,http://purl.obolibrary.org/obo/PR_O42252,none +13.8193543,PR:O59794,http://purl.obolibrary.org/obo/PR_O59794,none +13.8193543,PR:O94716,http://purl.obolibrary.org/obo/PR_O94716,none +13.8193543,PR:P05740,http://purl.obolibrary.org/obo/PR_P05740,none +13.8193543,PR:P07182,http://purl.obolibrary.org/obo/PR_P07182,none +13.8193543,PR:P08019,http://purl.obolibrary.org/obo/PR_P08019,none +13.8193543,PR:P19198,http://purl.obolibrary.org/obo/PR_P19198,none +13.8193543,PR:P23255,http://purl.obolibrary.org/obo/PR_P23255,none +13.8193543,PR:P32246,http://purl.obolibrary.org/obo/PR_P32246,C-C chemokine receptor type 1 (human) +13.8193543,PR:P32569,http://purl.obolibrary.org/obo/PR_P32569,none +13.8193543,PR:P38069,http://purl.obolibrary.org/obo/PR_P38069,none +13.8193543,PR:P38291,http://purl.obolibrary.org/obo/PR_P38291,none +13.8193543,PR:P39110,http://purl.obolibrary.org/obo/PR_P39110,none +13.8193543,PR:P42762,http://purl.obolibrary.org/obo/PR_P42762,none +13.8193543,PR:P46361,http://purl.obolibrary.org/obo/PR_P46361,none +13.8193543,PR:P46863,http://purl.obolibrary.org/obo/PR_P46863,none +13.8193543,PR:P46989,http://purl.obolibrary.org/obo/PR_P46989,none +13.8193543,PR:P48361,http://purl.obolibrary.org/obo/PR_P48361,none +13.8193543,PR:P48582,http://purl.obolibrary.org/obo/PR_P48582,none +13.8193543,PR:P92995,http://purl.obolibrary.org/obo/PR_P92995,none +13.8193543,PR:Q02486,http://purl.obolibrary.org/obo/PR_Q02486,none +13.8193543,PR:Q06058,http://purl.obolibrary.org/obo/PR_Q06058,none +13.8193543,PR:Q1MTQ0,http://purl.obolibrary.org/obo/PR_Q1MTQ0,none +13.8193543,PR:Q42510,http://purl.obolibrary.org/obo/PR_Q42510,none +13.8193543,PR:Q42546,http://purl.obolibrary.org/obo/PR_Q42546,none +13.8193543,PR:Q5AHZ7,http://purl.obolibrary.org/obo/PR_Q5AHZ7,none +13.8193543,PR:Q62740,http://purl.obolibrary.org/obo/PR_Q62740,none +13.8193543,PR:Q6UWU4,http://purl.obolibrary.org/obo/PR_Q6UWU4,bombesin receptor-activated protein C6orf89 (human) +13.8193543,PR:Q7SZP9,http://purl.obolibrary.org/obo/PR_Q7SZP9,none +13.8193543,PR:Q7TNS2,http://purl.obolibrary.org/obo/PR_Q7TNS2,none +13.8193543,PR:Q8BVK9,http://purl.obolibrary.org/obo/PR_Q8BVK9,none +13.8193543,PR:Q8H157,http://purl.obolibrary.org/obo/PR_Q8H157,none +13.8193543,PR:Q8L9V6,http://purl.obolibrary.org/obo/PR_Q8L9V6,none +13.8193543,PR:Q92376,http://purl.obolibrary.org/obo/PR_Q92376,none +13.8193543,PR:Q940I0,http://purl.obolibrary.org/obo/PR_Q940I0,none +13.8193543,PR:Q9CAE3,http://purl.obolibrary.org/obo/PR_Q9CAE3,none +13.8193543,PR:Q9FFZ1,http://purl.obolibrary.org/obo/PR_Q9FFZ1,none +13.8193543,PR:Q9FI56,http://purl.obolibrary.org/obo/PR_Q9FI56,none +13.8193543,PR:Q9FYH7,http://purl.obolibrary.org/obo/PR_Q9FYH7,none +13.8193543,PR:Q9LKR3,http://purl.obolibrary.org/obo/PR_Q9LKR3,none +13.8193543,PR:Q9LS94,http://purl.obolibrary.org/obo/PR_Q9LS94,none +13.8193543,PR:Q9MAM3,http://purl.obolibrary.org/obo/PR_Q9MAM3,none +13.8193543,PR:Q9P7F3,http://purl.obolibrary.org/obo/PR_Q9P7F3,none +13.8193543,PR:Q9SII6,http://purl.obolibrary.org/obo/PR_Q9SII6,none +13.8193543,PR:Q9SRX9,http://purl.obolibrary.org/obo/PR_Q9SRX9,none +13.8193543,PR:Q9Y7N2,http://purl.obolibrary.org/obo/PR_Q9Y7N2,none +13.8193543,SO:0000622,http://purl.obolibrary.org/obo/SO_0000622,C_box +13.8193543,SO:0001326,http://purl.obolibrary.org/obo/SO_0001326,seven_methylguanosine +13.8193543,SO:0001908,http://purl.obolibrary.org/obo/SO_0001908,internal_feature_elongation +13.8193543,SO:0002011,http://purl.obolibrary.org/obo/SO_0002011,intragenic_variant +13.8193543,SO:1000011,http://purl.obolibrary.org/obo/SO_1000011,C_to_T_transition +13.8193543,UBERON:0000082,http://purl.obolibrary.org/obo/UBERON_0000082,adult mammalian kidney +13.8193543,UBERON:0001254,http://purl.obolibrary.org/obo/UBERON_0001254,urothelium of ureter +13.8193543,UBERON:0001263,http://purl.obolibrary.org/obo/UBERON_0001263,pancreatic acinus +13.8193543,UBERON:0001335,http://purl.obolibrary.org/obo/UBERON_0001335,prostatic urethra +13.8193543,UBERON:0001454,http://purl.obolibrary.org/obo/UBERON_0001454,distal tarsal bone 3 +13.8193543,UBERON:0002056,http://purl.obolibrary.org/obo/UBERON_0002056,inferior suprarenal artery +13.8193543,UBERON:0002072,http://purl.obolibrary.org/obo/UBERON_0002072,hypodermis +13.8193543,UBERON:0002716,http://purl.obolibrary.org/obo/UBERON_0002716,collateral sulcus +13.8193543,UBERON:0002892,http://purl.obolibrary.org/obo/UBERON_0002892,medial amygdaloid nucleus +13.8193543,UBERON:0003084,http://purl.obolibrary.org/obo/UBERON_0003084,heart primordium +13.8193543,UBERON:0003332,http://purl.obolibrary.org/obo/UBERON_0003332,submucosa of duodenum +13.8193543,UBERON:0003445,http://purl.obolibrary.org/obo/UBERON_0003445,pes nerve +13.8193543,UBERON:0004214,http://purl.obolibrary.org/obo/UBERON_0004214,upper leg nerve +13.8193543,UBERON:0004876,http://purl.obolibrary.org/obo/UBERON_0004876,urogenital fold +13.8193543,UBERON:0005196,http://purl.obolibrary.org/obo/UBERON_0005196,spleen germinal center +13.8193543,UBERON:0005252,http://purl.obolibrary.org/obo/UBERON_0005252,lesser sac cavity +13.8193543,UBERON:0006172,http://purl.obolibrary.org/obo/UBERON_0006172,rectal diverticulum +13.8193543,UBERON:0006445,http://purl.obolibrary.org/obo/UBERON_0006445,caudal middle frontal gyrus +13.8193543,UBERON:0006447,http://purl.obolibrary.org/obo/UBERON_0006447,fifth lumbar spinal cord segment +13.8193543,UBERON:0007144,http://purl.obolibrary.org/obo/UBERON_0007144,embryonic post-anal tail +13.8193543,UBERON:0007247,http://purl.obolibrary.org/obo/UBERON_0007247,nucleus of superior olivary complex +13.8193543,UBERON:0010302,http://purl.obolibrary.org/obo/UBERON_0010302,amnioserosa +13.8193543,UBERON:0010513,http://purl.obolibrary.org/obo/UBERON_0010513,strand of zigzag hair +13.8193543,UBERON:0011160,http://purl.obolibrary.org/obo/UBERON_0011160,nasal suture +13.8193543,UBERON:0011863,http://purl.obolibrary.org/obo/UBERON_0011863,bone collagen fibril +13.8193543,UBERON:0014396,http://purl.obolibrary.org/obo/UBERON_0014396,interscapular fat pad +13.8193543,UBERON:0015108,http://purl.obolibrary.org/obo/UBERON_0015108,distal tarsal bone 3 endochondral element +13.8193543,UBERON:0015178,http://purl.obolibrary.org/obo/UBERON_0015178,somite border +13.8193543,UBERON:0018151,http://purl.obolibrary.org/obo/UBERON_0018151,skin of upper lip +13.8193543,UBERON:0018613,http://purl.obolibrary.org/obo/UBERON_0018613,secondary upper tooth +13.8193543,UBERON:0019325,http://purl.obolibrary.org/obo/UBERON_0019325,exorbital lacrimal gland +13.8193543,UBERON:0034953,http://purl.obolibrary.org/obo/UBERON_0034953,embryonic lymph sac +13.8193543,UBERON:4300025,http://purl.obolibrary.org/obo/UBERON_4300025,posterior dorsolateral plate +13.863806,CHEBI:25136,http://purl.obolibrary.org/obo/CHEBI_25136,malonyl-CoAs +13.863806,CHEBI:26948,http://purl.obolibrary.org/obo/CHEBI_26948,vitamin B1 +13.863806,CHEBI:28383,http://purl.obolibrary.org/obo/CHEBI_28383,"alpha,omega-dicarboxylic acid" +13.863806,CHEBI:29021,http://purl.obolibrary.org/obo/CHEBI_29021,hexane +13.863806,CHEBI:3311,http://purl.obolibrary.org/obo/CHEBI_3311,calcium carbonate +13.863806,CHEBI:35883,http://purl.obolibrary.org/obo/CHEBI_35883,phosphine +13.863806,CHEBI:36281,http://purl.obolibrary.org/obo/CHEBI_36281,caffeic acid +13.863806,CHEBI:50264,http://purl.obolibrary.org/obo/CHEBI_50264,thiazide +13.863806,CHEBI:5054,http://purl.obolibrary.org/obo/CHEBI_5054,Fibrin +13.863806,CHEBI:51336,http://purl.obolibrary.org/obo/CHEBI_51336,metal sulfate +13.863806,CHEBI:59864,http://purl.obolibrary.org/obo/CHEBI_59864,depigmentation drug +13.863806,CHEBI:6129,http://purl.obolibrary.org/obo/CHEBI_6129,ketorolac +13.863806,CHEBI:63048,http://purl.obolibrary.org/obo/CHEBI_63048,"1,3-thiazolium cation" +13.863806,CHEBI:65190,http://purl.obolibrary.org/obo/CHEBI_65190,first generation antipsychotic +13.863806,CHEBI:71027,http://purl.obolibrary.org/obo/CHEBI_71027,progesterone receptor modulator +13.863806,CHEBI:75382,http://purl.obolibrary.org/obo/CHEBI_75382,monastrol +13.863806,CL:0000105,http://purl.obolibrary.org/obo/CL_0000105,pseudounipolar neuron +13.863806,CL:0000462,http://purl.obolibrary.org/obo/CL_0000462,adepithelial cell +13.863806,CL:0000573,http://purl.obolibrary.org/obo/CL_0000573,retinal cone cell +13.863806,CL:0002084,http://purl.obolibrary.org/obo/CL_0002084,Boettcher cell +13.863806,CL:1000312,http://purl.obolibrary.org/obo/CL_1000312,bronchial goblet cell +13.863806,CL:1000329,http://purl.obolibrary.org/obo/CL_1000329,tracheal goblet cell +13.863806,CL:1000412,http://purl.obolibrary.org/obo/CL_1000412,endothelial cell of arteriole +13.863806,CL:1001577,http://purl.obolibrary.org/obo/CL_1001577,tonsil squamous cell +13.863806,DRUGBANK:DB00192,http://purl.obolibrary.org/obo/DRUGBANK_DB00192,none +13.863806,DRUGBANK:DB00858,http://purl.obolibrary.org/obo/DRUGBANK_DB00858,none +13.863806,DRUGBANK:DB01451,http://purl.obolibrary.org/obo/DRUGBANK_DB01451,none +13.863806,DRUGBANK:DB01672,http://purl.obolibrary.org/obo/DRUGBANK_DB01672,none +13.863806,DRUGBANK:DB01829,http://purl.obolibrary.org/obo/DRUGBANK_DB01829,none +13.863806,DRUGBANK:DB01860,http://purl.obolibrary.org/obo/DRUGBANK_DB01860,none +13.863806,DRUGBANK:DB02132,http://purl.obolibrary.org/obo/DRUGBANK_DB02132,none +13.863806,DRUGBANK:DB02317,http://purl.obolibrary.org/obo/DRUGBANK_DB02317,none +13.863806,DRUGBANK:DB02604,http://purl.obolibrary.org/obo/DRUGBANK_DB02604,none +13.863806,DRUGBANK:DB02643,http://purl.obolibrary.org/obo/DRUGBANK_DB02643,none +13.863806,DRUGBANK:DB03180,http://purl.obolibrary.org/obo/DRUGBANK_DB03180,none +13.863806,DRUGBANK:DB03609,http://purl.obolibrary.org/obo/DRUGBANK_DB03609,none +13.863806,DRUGBANK:DB03747,http://purl.obolibrary.org/obo/DRUGBANK_DB03747,none +13.863806,DRUGBANK:DB03794,http://purl.obolibrary.org/obo/DRUGBANK_DB03794,none +13.863806,DRUGBANK:DB04311,http://purl.obolibrary.org/obo/DRUGBANK_DB04311,none +13.863806,DRUGBANK:DB04367,http://purl.obolibrary.org/obo/DRUGBANK_DB04367,none +13.863806,DRUGBANK:DB04484,http://purl.obolibrary.org/obo/DRUGBANK_DB04484,none +13.863806,DRUGBANK:DB04487,http://purl.obolibrary.org/obo/DRUGBANK_DB04487,none +13.863806,DRUGBANK:DB04704,http://purl.obolibrary.org/obo/DRUGBANK_DB04704,none +13.863806,DRUGBANK:DB05047,http://purl.obolibrary.org/obo/DRUGBANK_DB05047,none +13.863806,DRUGBANK:DB05113,http://purl.obolibrary.org/obo/DRUGBANK_DB05113,none +13.863806,DRUGBANK:DB05532,http://purl.obolibrary.org/obo/DRUGBANK_DB05532,none +13.863806,DRUGBANK:DB06179,http://purl.obolibrary.org/obo/DRUGBANK_DB06179,none +13.863806,DRUGBANK:DB06258,http://purl.obolibrary.org/obo/DRUGBANK_DB06258,none +13.863806,DRUGBANK:DB06400,http://purl.obolibrary.org/obo/DRUGBANK_DB06400,none +13.863806,DRUGBANK:DB06506,http://purl.obolibrary.org/obo/DRUGBANK_DB06506,none +13.863806,DRUGBANK:DB09007,http://purl.obolibrary.org/obo/DRUGBANK_DB09007,none +13.863806,DRUGBANK:DB10445,http://purl.obolibrary.org/obo/DRUGBANK_DB10445,none +13.863806,DRUGBANK:DB11210,http://purl.obolibrary.org/obo/DRUGBANK_DB11210,none +13.863806,DRUGBANK:DB11594,http://purl.obolibrary.org/obo/DRUGBANK_DB11594,none +13.863806,DRUGBANK:DB11660,http://purl.obolibrary.org/obo/DRUGBANK_DB11660,none +13.863806,DRUGBANK:DB11891,http://purl.obolibrary.org/obo/DRUGBANK_DB11891,none +13.863806,DRUGBANK:DB12008,http://purl.obolibrary.org/obo/DRUGBANK_DB12008,none +13.863806,DRUGBANK:DB12108,http://purl.obolibrary.org/obo/DRUGBANK_DB12108,none +13.863806,DRUGBANK:DB12351,http://purl.obolibrary.org/obo/DRUGBANK_DB12351,none +13.863806,DRUGBANK:DB12625,http://purl.obolibrary.org/obo/DRUGBANK_DB12625,none +13.863806,DRUGBANK:DB12677,http://purl.obolibrary.org/obo/DRUGBANK_DB12677,none +13.863806,DRUGBANK:DB12812,http://purl.obolibrary.org/obo/DRUGBANK_DB12812,none +13.863806,DRUGBANK:DB13238,http://purl.obolibrary.org/obo/DRUGBANK_DB13238,none +13.863806,DRUGBANK:DB13363,http://purl.obolibrary.org/obo/DRUGBANK_DB13363,none +13.863806,DRUGBANK:DB13443,http://purl.obolibrary.org/obo/DRUGBANK_DB13443,none +13.863806,DRUGBANK:DB13629,http://purl.obolibrary.org/obo/DRUGBANK_DB13629,none +13.863806,DRUGBANK:DB13754,http://purl.obolibrary.org/obo/DRUGBANK_DB13754,none +13.863806,DRUGBANK:DB13785,http://purl.obolibrary.org/obo/DRUGBANK_DB13785,none +13.863806,DRUGBANK:DB13819,http://purl.obolibrary.org/obo/DRUGBANK_DB13819,none +13.863806,DRUGBANK:DB14134,http://purl.obolibrary.org/obo/DRUGBANK_DB14134,none +13.863806,DRUGBANK:DB14493,http://purl.obolibrary.org/obo/DRUGBANK_DB14493,none +13.863806,DRUGBANK:DB14640,http://purl.obolibrary.org/obo/DRUGBANK_DB14640,none +13.863806,DRUGBANK:DB14679,http://purl.obolibrary.org/obo/DRUGBANK_DB14679,none +13.863806,DRUGBANK:DB14708,http://purl.obolibrary.org/obo/DRUGBANK_DB14708,none +13.863806,DRUGBANK:DB14713,http://purl.obolibrary.org/obo/DRUGBANK_DB14713,none +13.863806,DRUGBANK:DB14800,http://purl.obolibrary.org/obo/DRUGBANK_DB14800,none +13.863806,DRUGBANK:DB14850,http://purl.obolibrary.org/obo/DRUGBANK_DB14850,none +13.863806,DRUGBANK:DB14951,http://purl.obolibrary.org/obo/DRUGBANK_DB14951,none +13.863806,DRUGBANK:DB15200,http://purl.obolibrary.org/obo/DRUGBANK_DB15200,none +13.863806,DRUGBANK:DB15971,http://purl.obolibrary.org/obo/DRUGBANK_DB15971,none +13.863806,DRUGBANK:DB16080,http://purl.obolibrary.org/obo/DRUGBANK_DB16080,none +13.863806,DRUGBANK:DB16138,http://purl.obolibrary.org/obo/DRUGBANK_DB16138,none +13.863806,GO:0000066,http://purl.obolibrary.org/obo/GO_0000066,none +13.863806,GO:0000122,http://purl.obolibrary.org/obo/GO_0000122,negative regulation of transcription by RNA polymerase II +13.863806,GO:0000314,http://purl.obolibrary.org/obo/GO_0000314,organellar small ribosomal subunit +13.863806,GO:0000740,http://purl.obolibrary.org/obo/GO_0000740,nuclear membrane fusion +13.863806,GO:0000787,http://purl.obolibrary.org/obo/GO_0000787,none +13.863806,GO:0000974,http://purl.obolibrary.org/obo/GO_0000974,Prp19 complex +13.863806,GO:0001562,http://purl.obolibrary.org/obo/GO_0001562,response to protozoan +13.863806,GO:0002063,http://purl.obolibrary.org/obo/GO_0002063,chondrocyte development +13.863806,GO:0002704,http://purl.obolibrary.org/obo/GO_0002704,negative regulation of leukocyte mediated immunity +13.863806,GO:0003403,http://purl.obolibrary.org/obo/GO_0003403,optic vesicle formation +13.863806,GO:0003944,http://purl.obolibrary.org/obo/GO_0003944,N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase activity +13.863806,GO:0004047,http://purl.obolibrary.org/obo/GO_0004047,aminomethyltransferase activity +13.863806,GO:0004140,http://purl.obolibrary.org/obo/GO_0004140,dephospho-CoA kinase activity +13.863806,GO:0004197,http://purl.obolibrary.org/obo/GO_0004197,cysteine-type endopeptidase activity +13.863806,GO:0004326,http://purl.obolibrary.org/obo/GO_0004326,tetrahydrofolylpolyglutamate synthase activity +13.863806,GO:0004369,http://purl.obolibrary.org/obo/GO_0004369,glycerol-3-phosphate oxidase activity +13.863806,GO:0005219,http://purl.obolibrary.org/obo/GO_0005219,ryanodine-sensitive calcium-release channel activity +13.863806,GO:0005983,http://purl.obolibrary.org/obo/GO_0005983,starch catabolic process +13.863806,GO:0006597,http://purl.obolibrary.org/obo/GO_0006597,spermine biosynthetic process +13.863806,GO:0007007,http://purl.obolibrary.org/obo/GO_0007007,inner mitochondrial membrane organization +13.863806,GO:0007144,http://purl.obolibrary.org/obo/GO_0007144,female meiosis I +13.863806,GO:0008114,http://purl.obolibrary.org/obo/GO_0008114,phosphogluconate 2-dehydrogenase activity +13.863806,GO:0008191,http://purl.obolibrary.org/obo/GO_0008191,metalloendopeptidase inhibitor activity +13.863806,GO:0008398,http://purl.obolibrary.org/obo/GO_0008398,sterol 14-demethylase activity +13.863806,GO:0008752,http://purl.obolibrary.org/obo/GO_0008752,FMN reductase activity +13.863806,GO:0008768,http://purl.obolibrary.org/obo/GO_0008768,UDP-sugar diphosphatase activity +13.863806,GO:0008790,http://purl.obolibrary.org/obo/GO_0008790,arabinose isomerase activity +13.863806,GO:0008813,http://purl.obolibrary.org/obo/GO_0008813,chorismate lyase activity +13.863806,GO:0009881,http://purl.obolibrary.org/obo/GO_0009881,photoreceptor activity +13.863806,GO:0009916,http://purl.obolibrary.org/obo/GO_0009916,alternative oxidase activity +13.863806,GO:0010218,http://purl.obolibrary.org/obo/GO_0010218,response to far red light +13.863806,GO:0010285,http://purl.obolibrary.org/obo/GO_0010285,"L,L-diaminopimelate aminotransferase activity" +13.863806,GO:0010349,http://purl.obolibrary.org/obo/GO_0010349,L-galactose dehydrogenase activity +13.863806,GO:0010501,http://purl.obolibrary.org/obo/GO_0010501,RNA secondary structure unwinding +13.863806,GO:0010559,http://purl.obolibrary.org/obo/GO_0010559,regulation of glycoprotein biosynthetic process +13.863806,GO:0014820,http://purl.obolibrary.org/obo/GO_0014820,tonic smooth muscle contraction +13.863806,GO:0016281,http://purl.obolibrary.org/obo/GO_0016281,eukaryotic translation initiation factor 4F complex +13.863806,GO:0016937,http://purl.obolibrary.org/obo/GO_0016937,short-branched-chain-acyl-CoA dehydrogenase activity +13.863806,GO:0017118,http://purl.obolibrary.org/obo/GO_0017118,lipoyltransferase activity +13.863806,GO:0018738,http://purl.obolibrary.org/obo/GO_0018738,S-formylglutathione hydrolase activity +13.863806,GO:0018952,http://purl.obolibrary.org/obo/GO_0018952,parathion metabolic process +13.863806,GO:0018965,http://purl.obolibrary.org/obo/GO_0018965,s-triazine compound metabolic process +13.863806,GO:0019086,http://purl.obolibrary.org/obo/GO_0019086,late viral transcription +13.863806,GO:0030662,http://purl.obolibrary.org/obo/GO_0030662,coated vesicle membrane +13.863806,GO:0030826,http://purl.obolibrary.org/obo/GO_0030826,none +13.863806,GO:0030877,http://purl.obolibrary.org/obo/GO_0030877,beta-catenin destruction complex +13.863806,GO:0031048,http://purl.obolibrary.org/obo/GO_0031048,heterochromatin assembly by small RNA +13.863806,GO:0031071,http://purl.obolibrary.org/obo/GO_0031071,cysteine desulfurase activity +13.863806,GO:0031083,http://purl.obolibrary.org/obo/GO_0031083,BLOC-1 complex +13.863806,GO:0031164,http://purl.obolibrary.org/obo/GO_0031164,contractile vacuolar membrane +13.863806,GO:0031333,http://purl.obolibrary.org/obo/GO_0031333,negative regulation of protein-containing complex assembly +13.863806,GO:0032239,http://purl.obolibrary.org/obo/GO_0032239,regulation of nucleobase-containing compound transport +13.863806,GO:0032641,http://purl.obolibrary.org/obo/GO_0032641,lymphotoxin A production +13.863806,GO:0034077,http://purl.obolibrary.org/obo/GO_0034077,butanediol metabolic process +13.863806,GO:0034594,http://purl.obolibrary.org/obo/GO_0034594,phosphatidylinositol trisphosphate phosphatase activity +13.863806,GO:0035498,http://purl.obolibrary.org/obo/GO_0035498,carnosine metabolic process +13.863806,GO:0035587,http://purl.obolibrary.org/obo/GO_0035587,none +13.863806,GO:0036074,http://purl.obolibrary.org/obo/GO_0036074,metaplastic ossification +13.863806,GO:0036345,http://purl.obolibrary.org/obo/GO_0036345,platelet maturation +13.863806,GO:0038037,http://purl.obolibrary.org/obo/GO_0038037,G protein-coupled receptor dimeric complex +13.863806,GO:0038130,http://purl.obolibrary.org/obo/GO_0038130,ERBB4 signaling pathway +13.863806,GO:0042353,http://purl.obolibrary.org/obo/GO_0042353,fucose biosynthetic process +13.863806,GO:0042566,http://purl.obolibrary.org/obo/GO_0042566,hydrogenosome +13.863806,GO:0043327,http://purl.obolibrary.org/obo/GO_0043327,chemotaxis to cAMP +13.863806,GO:0043452,http://purl.obolibrary.org/obo/GO_0043452,cellular alkyne metabolic process +13.863806,GO:0043555,http://purl.obolibrary.org/obo/GO_0043555,regulation of translation in response to stress +13.863806,GO:0045732,http://purl.obolibrary.org/obo/GO_0045732,positive regulation of protein catabolic process +13.863806,GO:0046116,http://purl.obolibrary.org/obo/GO_0046116,queuosine metabolic process +13.863806,GO:0046314,http://purl.obolibrary.org/obo/GO_0046314,phosphocreatine biosynthetic process +13.863806,GO:0046679,http://purl.obolibrary.org/obo/GO_0046679,response to streptomycin +13.863806,GO:0046866,http://purl.obolibrary.org/obo/GO_0046866,tetraterpenoid transport +13.863806,GO:0046867,http://purl.obolibrary.org/obo/GO_0046867,carotenoid transport +13.863806,GO:0046995,http://purl.obolibrary.org/obo/GO_0046995,"oxidoreductase activity, acting on hydrogen as donor, with other known acceptors" +13.863806,GO:0047162,http://purl.obolibrary.org/obo/GO_0047162,17-O-deacetylvindoline O-acetyltransferase activity +13.863806,GO:0048509,http://purl.obolibrary.org/obo/GO_0048509,regulation of meristem development +13.863806,GO:0048814,http://purl.obolibrary.org/obo/GO_0048814,regulation of dendrite morphogenesis +13.863806,GO:0050059,http://purl.obolibrary.org/obo/GO_0050059,lombricine kinase activity +13.863806,GO:0050062,http://purl.obolibrary.org/obo/GO_0050062,long-chain-fatty-acyl-CoA reductase activity +13.863806,GO:0050194,http://purl.obolibrary.org/obo/GO_0050194,phosphonoacetaldehyde hydrolase activity +13.863806,GO:0050233,http://purl.obolibrary.org/obo/GO_0050233,pyranose oxidase activity +13.863806,GO:0050262,http://purl.obolibrary.org/obo/GO_0050262,ribosylnicotinamide kinase activity +13.863806,GO:0050680,http://purl.obolibrary.org/obo/GO_0050680,negative regulation of epithelial cell proliferation +13.863806,GO:0050917,http://purl.obolibrary.org/obo/GO_0050917,sensory perception of umami taste +13.863806,GO:0051023,http://purl.obolibrary.org/obo/GO_0051023,none +13.863806,GO:0051230,http://purl.obolibrary.org/obo/GO_0051230,spindle disassembly +13.863806,GO:0051403,http://purl.obolibrary.org/obo/GO_0051403,stress-activated MAPK cascade +13.863806,GO:0060142,http://purl.obolibrary.org/obo/GO_0060142,regulation of syncytium formation by plasma membrane fusion +13.863806,GO:0060184,http://purl.obolibrary.org/obo/GO_0060184,cell cycle switching +13.863806,GO:0060964,http://purl.obolibrary.org/obo/GO_0060964,regulation of gene silencing by miRNA +13.863806,GO:0061077,http://purl.obolibrary.org/obo/GO_0061077,chaperone-mediated protein folding +13.863806,GO:0070232,http://purl.obolibrary.org/obo/GO_0070232,regulation of T cell apoptotic process +13.863806,GO:0070252,http://purl.obolibrary.org/obo/GO_0070252,actin-mediated cell contraction +13.863806,GO:0070543,http://purl.obolibrary.org/obo/GO_0070543,response to linoleic acid +13.863806,GO:0070561,http://purl.obolibrary.org/obo/GO_0070561,vitamin D receptor signaling pathway +13.863806,GO:0070920,http://purl.obolibrary.org/obo/GO_0070920,regulation of production of small RNA involved in gene silencing by RNA +13.863806,GO:0071212,http://purl.obolibrary.org/obo/GO_0071212,subsynaptic reticulum +13.863806,GO:0072607,http://purl.obolibrary.org/obo/GO_0072607,none +13.863806,GO:0089718,http://purl.obolibrary.org/obo/GO_0089718,amino acid import across plasma membrane +13.863806,GO:0090652,http://purl.obolibrary.org/obo/GO_0090652,basolateral cytoplasm +13.863806,GO:0097331,http://purl.obolibrary.org/obo/GO_0097331,response to cytarabine +13.863806,GO:0120246,http://purl.obolibrary.org/obo/GO_0120246,acetylenic compound metabolic process +13.863806,GO:0140359,http://purl.obolibrary.org/obo/GO_0140359,ABC-type transporter activity +13.863806,GO:1900079,http://purl.obolibrary.org/obo/GO_1900079,regulation of arginine biosynthetic process +13.863806,GO:1901185,http://purl.obolibrary.org/obo/GO_1901185,negative regulation of ERBB signaling pathway +13.863806,GO:1901328,http://purl.obolibrary.org/obo/GO_1901328,response to cytochalasin B +13.863806,GO:1901732,http://purl.obolibrary.org/obo/GO_1901732,quercetin metabolic process +13.863806,GO:1903018,http://purl.obolibrary.org/obo/GO_1903018,regulation of glycoprotein metabolic process +13.863806,GO:1903175,http://purl.obolibrary.org/obo/GO_1903175,fatty alcohol biosynthetic process +13.863806,GO:1903313,http://purl.obolibrary.org/obo/GO_1903313,positive regulation of mRNA metabolic process +13.863806,GO:1903798,http://purl.obolibrary.org/obo/GO_1903798,regulation of production of miRNAs involved in gene silencing by miRNA +13.863806,GO:1903862,http://purl.obolibrary.org/obo/GO_1903862,positive regulation of oxidative phosphorylation +13.863806,GO:1904292,http://purl.obolibrary.org/obo/GO_1904292,regulation of ERAD pathway +13.863806,GO:1990013,http://purl.obolibrary.org/obo/GO_1990013,presynaptic grid +13.863806,GO:2000035,http://purl.obolibrary.org/obo/GO_2000035,regulation of stem cell division +13.863806,GO:2000058,http://purl.obolibrary.org/obo/GO_2000058,regulation of ubiquitin-dependent protein catabolic process +13.863806,GO:2000191,http://purl.obolibrary.org/obo/GO_2000191,regulation of fatty acid transport +13.863806,GO:2000891,http://purl.obolibrary.org/obo/GO_2000891,cellobiose metabolic process +13.863806,GO:2001293,http://purl.obolibrary.org/obo/GO_2001293,malonyl-CoA metabolic process +13.863806,HP:0001927,http://purl.obolibrary.org/obo/HP_0001927,Acanthocytosis +13.863806,HP:0003287,http://purl.obolibrary.org/obo/HP_0003287,Abnormality of mitochondrial metabolism +13.863806,HP:0005293,http://purl.obolibrary.org/obo/HP_0005293,Venous insufficiency +13.863806,HP:0011110,http://purl.obolibrary.org/obo/HP_0011110,Recurrent tonsillitis +13.863806,HP:0032319,http://purl.obolibrary.org/obo/HP_0032319,Health status +13.863806,HP:0100765,http://purl.obolibrary.org/obo/HP_0100765,Abnormality of the tonsils +13.863806,MONDO:0000341,http://purl.obolibrary.org/obo/MONDO_0000341,paralytic poliomyelitis +13.863806,MONDO:0000950,http://purl.obolibrary.org/obo/MONDO_0000950,asthenopia +13.863806,MONDO:0001394,http://purl.obolibrary.org/obo/MONDO_0001394,chronic erythremia +13.863806,MONDO:0001431,http://purl.obolibrary.org/obo/MONDO_0001431,toxic or nutritional optic neuropathy +13.863806,MONDO:0001446,http://purl.obolibrary.org/obo/MONDO_0001446,low compliance bladder +13.863806,MONDO:0001847,http://purl.obolibrary.org/obo/MONDO_0001847,nuclear senile cataract +13.863806,MONDO:0002327,http://purl.obolibrary.org/obo/MONDO_0002327,intracranial cavernous angioma +13.863806,MONDO:0002552,http://purl.obolibrary.org/obo/MONDO_0002552,vascular myelopathy +13.863806,MONDO:0002859,http://purl.obolibrary.org/obo/MONDO_0002859,breast rhabdomyosarcoma +13.863806,MONDO:0002860,http://purl.obolibrary.org/obo/MONDO_0002860,testis rhabdomyosarcoma +13.863806,MONDO:0002938,http://purl.obolibrary.org/obo/MONDO_0002938,metatypical basal cell carcinoma +13.863806,MONDO:0003023,http://purl.obolibrary.org/obo/MONDO_0003023,aorta angiosarcoma +13.863806,MONDO:0003087,http://purl.obolibrary.org/obo/MONDO_0003087,mucoepidermoid breast carcinoma +13.863806,MONDO:0003586,http://purl.obolibrary.org/obo/MONDO_0003586,esophagus liposarcoma +13.863806,MONDO:0003596,http://purl.obolibrary.org/obo/MONDO_0003596,spindle cell liposarcoma +13.863806,MONDO:0004512,http://purl.obolibrary.org/obo/MONDO_0004512,meningeal melanomatosis +13.863806,MONDO:0005915,http://purl.obolibrary.org/obo/MONDO_0005915,pityriasis versicolor +13.863806,MONDO:0006088,http://purl.obolibrary.org/obo/MONDO_0006088,appendix adenoma +13.863806,MONDO:0006092,http://purl.obolibrary.org/obo/MONDO_0006092,appendix villous adenoma +13.863806,MONDO:0006217,http://purl.obolibrary.org/obo/MONDO_0006217,gallbladder adenosquamous carcinoma +13.863806,MONDO:0006571,http://purl.obolibrary.org/obo/MONDO_0006571,lichen nitidus +13.863806,MONDO:0006833,http://purl.obolibrary.org/obo/MONDO_0006833,lingual goiter +13.863806,MONDO:0006838,http://purl.obolibrary.org/obo/MONDO_0006838,lupus vulgaris +13.863806,MONDO:0007109,http://purl.obolibrary.org/obo/MONDO_0007109,congenital dyserythropoietic anemia type 3 +13.863806,MONDO:0007237,http://purl.obolibrary.org/obo/MONDO_0007237,familial juvenile hypertrophy of the breast +13.863806,MONDO:0008597,http://purl.obolibrary.org/obo/MONDO_0008597,"trichorhinophalangeal syndrome, type III" +13.863806,MONDO:0008647,http://purl.obolibrary.org/obo/MONDO_0008647,hypertrophic cardiomyopathy 1 +13.863806,MONDO:0008656,http://purl.obolibrary.org/obo/MONDO_0008656,benign paroxysmal positional nystagmus +13.863806,MONDO:0008908,http://purl.obolibrary.org/obo/MONDO_0008908,MGAT2-CDG +13.863806,MONDO:0008939,http://purl.obolibrary.org/obo/MONDO_0008939,isolated cerebellar hypoplasia/agenesis +13.863806,MONDO:0009015,http://purl.obolibrary.org/obo/MONDO_0009015,corneal dystrophy-perceptive deafness syndrome +13.863806,MONDO:0009699,http://purl.obolibrary.org/obo/MONDO_0009699,action myoclonus-renal failure syndrome +13.863806,MONDO:0010053,http://purl.obolibrary.org/obo/MONDO_0010053,hereditary spherocytosis type 3 +13.863806,MONDO:0010179,http://purl.obolibrary.org/obo/MONDO_0010179,isolated right ventricular hypoplasia +13.863806,MONDO:0010362,http://purl.obolibrary.org/obo/MONDO_0010362,glycogen storage disease IXd +13.863806,MONDO:0010898,http://purl.obolibrary.org/obo/MONDO_0010898,Autosomal dominant epilepsy with auditory features +13.863806,MONDO:0010908,http://purl.obolibrary.org/obo/MONDO_0010908,loose anagen syndrome +13.863806,MONDO:0011091,http://purl.obolibrary.org/obo/MONDO_0011091,Charcot-Marie-Tooth disease type 2D +13.863806,MONDO:0011502,http://purl.obolibrary.org/obo/MONDO_0011502,Wolfram syndrome 2 +13.863806,MONDO:0011561,http://purl.obolibrary.org/obo/MONDO_0011561,Alzheimer disease 6 +13.863806,MONDO:0011933,http://purl.obolibrary.org/obo/MONDO_0011933,ALG2-CDG +13.863806,MONDO:0012118,http://purl.obolibrary.org/obo/MONDO_0012118,COG7-CDG +13.863806,MONDO:0012186,http://purl.obolibrary.org/obo/MONDO_0012186,Fanconi anemia complementation group I +13.863806,MONDO:0012275,http://purl.obolibrary.org/obo/MONDO_0012275,fetal valproate syndrome +13.863806,MONDO:0012312,http://purl.obolibrary.org/obo/MONDO_0012312,short QT syndrome type 1 +13.863806,MONDO:0012401,http://purl.obolibrary.org/obo/MONDO_0012401,congenital stromal corneal dystrophy +13.863806,MONDO:0013325,http://purl.obolibrary.org/obo/MONDO_0013325,COG5-CDG +13.863806,MONDO:0013564,http://purl.obolibrary.org/obo/MONDO_0013564,anhaptoglobinemia +13.863806,MONDO:0014265,http://purl.obolibrary.org/obo/MONDO_0014265,Alzheimer disease 18 +13.863806,MONDO:0014506,http://purl.obolibrary.org/obo/MONDO_0014506,hypomyelinating leukodystrophy 9 +13.863806,MONDO:0014837,http://purl.obolibrary.org/obo/MONDO_0014837,thrombocytopenia 6 +13.863806,MONDO:0017114,http://purl.obolibrary.org/obo/MONDO_0017114,global cerebellar malformation +13.863806,MONDO:0017151,http://purl.obolibrary.org/obo/MONDO_0017151,pulmonary arterial hypertension associated with connective tissue disease +13.863806,MONDO:0017221,http://purl.obolibrary.org/obo/MONDO_0017221,"Pelizaeus-Merzbacher disease, connatal form" +13.863806,MONDO:0018175,http://purl.obolibrary.org/obo/MONDO_0018175,combined deficiency of factor V and factor VIII +13.863806,MONDO:0018694,http://purl.obolibrary.org/obo/MONDO_0018694,isolated tracheo-esophageal fistula +13.863806,MONDO:0018846,http://purl.obolibrary.org/obo/MONDO_0018846,penile agenesis +13.863806,MONDO:0020381,http://purl.obolibrary.org/obo/MONDO_0020381,patterned macular dystrophy +13.863806,MONDO:0020481,http://purl.obolibrary.org/obo/MONDO_0020481,myotonia fluctuans +13.863806,MONDO:0021284,http://purl.obolibrary.org/obo/MONDO_0021284,carcinoma in situ of ureter +13.863806,MONDO:0021377,http://purl.obolibrary.org/obo/MONDO_0021377,hypertrophic lichen planus +13.863806,MONDO:0021546,http://purl.obolibrary.org/obo/MONDO_0021546,ependymal tumor of spinal cord +13.863806,MONDO:0021777,http://purl.obolibrary.org/obo/MONDO_0021777,acute rheumatic heart disease +13.863806,MONDO:0022357,http://purl.obolibrary.org/obo/MONDO_0022357,congenital acardia +13.863806,MONDO:0023227,http://purl.obolibrary.org/obo/MONDO_0023227,gestational diabetes insipidus +13.863806,MONDO:0024495,http://purl.obolibrary.org/obo/MONDO_0024495,"tumor grade 1 or 2, general grading system" +13.863806,MONDO:0024613,http://purl.obolibrary.org/obo/MONDO_0024613,bipolar depression +13.863806,MONDO:0036990,http://purl.obolibrary.org/obo/MONDO_0036990,benign Leydig cell tumor +13.863806,MONDO:0044739,http://purl.obolibrary.org/obo/MONDO_0044739,Stevens-Johnson syndrome/toxic epidermal necrolysis overlap syndrome +13.863806,MONDO:0045055,http://purl.obolibrary.org/obo/MONDO_0045055,glycogen-rich carcinoma +13.863806,MONDO:0054869,http://purl.obolibrary.org/obo/MONDO_0054869,nondystrophic myotonia +13.863806,NCBITaxon:10053,http://purl.obolibrary.org/obo/NCBITaxon_10053,none +13.863806,NCBITaxon:11142,http://purl.obolibrary.org/obo/NCBITaxon_11142,none +13.863806,NCBITaxon:11856,http://purl.obolibrary.org/obo/NCBITaxon_11856,none +13.863806,NCBITaxon:12332,http://purl.obolibrary.org/obo/NCBITaxon_12332,none +13.863806,NCBITaxon:12730,http://purl.obolibrary.org/obo/NCBITaxon_12730,Human respirovirus 1 +13.863806,NCBITaxon:152177,http://purl.obolibrary.org/obo/NCBITaxon_152177,none +13.863806,NCBITaxon:184395,http://purl.obolibrary.org/obo/NCBITaxon_184395,none +13.863806,NCBITaxon:184396,http://purl.obolibrary.org/obo/NCBITaxon_184396,none +13.863806,NCBITaxon:2018325,http://purl.obolibrary.org/obo/NCBITaxon_2018325,none +13.863806,NCBITaxon:2153479,http://purl.obolibrary.org/obo/NCBITaxon_2153479,none +13.863806,NCBITaxon:220340,http://purl.obolibrary.org/obo/NCBITaxon_220340,none +13.863806,NCBITaxon:2231385,http://purl.obolibrary.org/obo/NCBITaxon_2231385,none +13.863806,NCBITaxon:29083,http://purl.obolibrary.org/obo/NCBITaxon_29083,none +13.863806,NCBITaxon:29169,http://purl.obolibrary.org/obo/NCBITaxon_29169,Ancylostoma +13.863806,NCBITaxon:29170,http://purl.obolibrary.org/obo/NCBITaxon_29170,none +13.863806,NCBITaxon:29262,http://purl.obolibrary.org/obo/NCBITaxon_29262,none +13.863806,NCBITaxon:323650,http://purl.obolibrary.org/obo/NCBITaxon_323650,none +13.863806,NCBITaxon:328429,http://purl.obolibrary.org/obo/NCBITaxon_328429,none +13.863806,NCBITaxon:3502,http://purl.obolibrary.org/obo/NCBITaxon_3502,none +13.863806,NCBITaxon:36668,http://purl.obolibrary.org/obo/NCBITaxon_36668,none +13.863806,NCBITaxon:397544,http://purl.obolibrary.org/obo/NCBITaxon_397544,none +13.863806,NCBITaxon:40064,http://purl.obolibrary.org/obo/NCBITaxon_40064,none +13.863806,NCBITaxon:40317,http://purl.obolibrary.org/obo/NCBITaxon_40317,none +13.863806,NCBITaxon:4747,http://purl.obolibrary.org/obo/NCBITaxon_4747,none +13.863806,NCBITaxon:48541,http://purl.obolibrary.org/obo/NCBITaxon_48541,none +13.863806,NCBITaxon:53469,http://purl.obolibrary.org/obo/NCBITaxon_53469,Ancylostomatinae +13.863806,NCBITaxon:5809,http://purl.obolibrary.org/obo/NCBITaxon_5809,Sarcocystidae +13.863806,NCBITaxon:62784,http://purl.obolibrary.org/obo/NCBITaxon_62784,none +13.863806,NCBITaxon:675070,http://purl.obolibrary.org/obo/NCBITaxon_675070,none +13.863806,NCBITaxon:70905,http://purl.obolibrary.org/obo/NCBITaxon_70905,none +13.863806,NCBITaxon:7190,http://purl.obolibrary.org/obo/NCBITaxon_7190,none +13.863806,NCBITaxon:7865,http://purl.obolibrary.org/obo/NCBITaxon_7865,none +13.863806,NCBITaxon:7866,http://purl.obolibrary.org/obo/NCBITaxon_7866,none +13.863806,NCBITaxon:7868,http://purl.obolibrary.org/obo/NCBITaxon_7868,none +13.863806,NCBITaxon:8689,http://purl.obolibrary.org/obo/NCBITaxon_8689,none +13.863806,NCBITaxon:8710,http://purl.obolibrary.org/obo/NCBITaxon_8710,none +13.863806,NCBITaxon:93954,http://purl.obolibrary.org/obo/NCBITaxon_93954,none +13.863806,NCBITaxon:9546,http://purl.obolibrary.org/obo/NCBITaxon_9546,none +13.863806,NCBITaxon:9822,http://purl.obolibrary.org/obo/NCBITaxon_9822,Sus +13.863806,NCBITaxon:9823,http://purl.obolibrary.org/obo/NCBITaxon_9823,Sus scrofa +13.863806,PR:000000787,http://purl.obolibrary.org/obo/PR_000000787,voltage-gated potassium channel KCNG1 +13.863806,PR:000001650,http://purl.obolibrary.org/obo/PR_000001650,probable G-protein coupled receptor 85 +13.863806,PR:000002182,http://purl.obolibrary.org/obo/PR_000002182,26S proteasome non-ATPase regulatory subunit 6 +13.863806,PR:000002211,http://purl.obolibrary.org/obo/PR_000002211,Rho GTPase-activating protein 10 +13.863806,PR:000003286,http://purl.obolibrary.org/obo/PR_000003286,TRAF-interacting protein with FHA domain-containing protein A +13.863806,PR:000003544,http://purl.obolibrary.org/obo/PR_000003544,ATP-binding cassette sub-family A member 6 +13.863806,PR:000003740,http://purl.obolibrary.org/obo/PR_000003740,ADAMTS-like protein 3 +13.863806,PR:000003758,http://purl.obolibrary.org/obo/PR_000003758,adenylate cyclase type 7 +13.863806,PR:000004046,http://purl.obolibrary.org/obo/PR_000004046,ankyrin repeat domain-containing protein 27 +13.863806,PR:000004139,http://purl.obolibrary.org/obo/PR_000004139,adipocyte plasma membrane-associated protein +13.863806,PR:000004146,http://purl.obolibrary.org/obo/PR_000004146,apolipoprotein B receptor +13.863806,PR:000004173,http://purl.obolibrary.org/obo/PR_000004173,apoptosis-related protein 3 +13.863806,PR:000004211,http://purl.obolibrary.org/obo/PR_000004211,brefeldin A-inhibited guanine nucleotide-exchange protein 3 +13.863806,PR:000004417,http://purl.obolibrary.org/obo/PR_000004417,cysteine protease ATG4D +13.863806,PR:000004482,http://purl.obolibrary.org/obo/PR_000004482,"V-type proton ATPase subunit B, brain isoform" +13.863806,PR:000004630,http://purl.obolibrary.org/obo/PR_000004630,adhesion G protein-coupled receptor B2 +13.863806,PR:000004773,http://purl.obolibrary.org/obo/PR_000004773,BMP-2-inducible protein kinase +13.863806,PR:000005032,http://purl.obolibrary.org/obo/PR_000005032,F-actin-capping protein subunit beta +13.863806,PR:000005039,http://purl.obolibrary.org/obo/PR_000005039,caspase recruitment domain-containing protein 6 +13.863806,PR:000005211,http://purl.obolibrary.org/obo/PR_000005211,Cdc42 effector protein 4 +13.863806,PR:000005322,http://purl.obolibrary.org/obo/PR_000005322,cell cycle exit and neuronal differentiation protein 1 +13.863806,PR:000005356,http://purl.obolibrary.org/obo/PR_000005356,centrosomal protein of 72 kDa +13.863806,PR:000005472,http://purl.obolibrary.org/obo/PR_000005472,carbohydrate sulfotransferase 12 +13.863806,PR:000005737,http://purl.obolibrary.org/obo/PR_000005737,coatomer subunit gamma-1 +13.863806,PR:000005811,http://purl.obolibrary.org/obo/PR_000005811,complexin-3 +13.863806,PR:000005992,http://purl.obolibrary.org/obo/PR_000005992,none +13.863806,PR:000006272,http://purl.obolibrary.org/obo/PR_000006272,D-amino-acid oxidase +13.863806,PR:000006308,http://purl.obolibrary.org/obo/PR_000006308,"enoyl-CoA Delta isomerase 1, mitochondrial" +13.863806,PR:000006435,http://purl.obolibrary.org/obo/PR_000006435,acyl-CoA wax alcohol acyltransferase 2 +13.863806,PR:000006654,http://purl.obolibrary.org/obo/PR_000006654,DPH3 +13.863806,PR:000006774,http://purl.obolibrary.org/obo/PR_000006774,cytoplasmic dynein 1 light intermediate chain 2 +13.863806,PR:000006851,http://purl.obolibrary.org/obo/PR_000006851,none +13.863806,PR:000007066,http://purl.obolibrary.org/obo/PR_000007066,adhesion G protein-coupled receptor E3 +13.863806,PR:000007219,http://purl.obolibrary.org/obo/PR_000007219,ethanolamine kinase 1 +13.863806,PR:000007305,http://purl.obolibrary.org/obo/PR_000007305,fatty-acid amide hydrolase 1 +13.863806,PR:000007424,http://purl.obolibrary.org/obo/PR_000007424,F-box/WD repeat-containing protein 2 +13.863806,PR:000007454,http://purl.obolibrary.org/obo/PR_000007454,protein fem-1 homolog A +13.863806,PR:000007504,http://purl.obolibrary.org/obo/PR_000007504,centrosomal protein 43 +13.863806,PR:000007863,http://purl.obolibrary.org/obo/PR_000007863,transcriptional repressor p66-beta +13.863806,PR:000008068,http://purl.obolibrary.org/obo/PR_000008068,glucocorticoid modulatory element-binding protein 1 +13.863806,PR:000008094,http://purl.obolibrary.org/obo/PR_000008094,guanine nucleotide-binding protein G(z) subunit alpha +13.863806,PR:000008122,http://purl.obolibrary.org/obo/PR_000008122,glucosamine-6-phosphate isomerase 1 +13.863806,PR:000008286,http://purl.obolibrary.org/obo/PR_000008286,serine/threonine-protein kinase haspin +13.863806,PR:000008447,http://purl.obolibrary.org/obo/PR_000008447,hyaluronan and proteoglycan link protein 4 +13.863806,PR:000008674,http://purl.obolibrary.org/obo/PR_000008674,heterogeneous nuclear ribonucleoprotein U-like protein 1 +13.863806,PR:000008841,http://purl.obolibrary.org/obo/PR_000008841,none +13.863806,PR:000008870,http://purl.obolibrary.org/obo/PR_000008870,none +13.863806,PR:000008877,http://purl.obolibrary.org/obo/PR_000008877,"isoleucine--tRNA ligase, mitochondrial" +13.863806,PR:000008908,http://purl.obolibrary.org/obo/PR_000008908,interferon-induced protein 44-like +13.863806,PR:000008936,http://purl.obolibrary.org/obo/PR_000008936,intraflagellar transport protein 57 +13.863806,PR:000009111,http://purl.obolibrary.org/obo/PR_000009111,"iron-sulfur cluster assembly 1, mitochondrial" +13.863806,PR:000009120,http://purl.obolibrary.org/obo/PR_000009120,intestine-specific homeobox +13.863806,PR:000009178,http://purl.obolibrary.org/obo/PR_000009178,none +13.863806,PR:000009307,http://purl.obolibrary.org/obo/PR_000009307,kinesin-like protein KIF27 +13.863806,PR:000009490,http://purl.obolibrary.org/obo/PR_000009490,"keratin, type II cytoskeletal 75" +13.863806,PR:000009502,http://purl.obolibrary.org/obo/PR_000009502,"keratin, type II cuticular Hb6" +13.863806,PR:000009615,http://purl.obolibrary.org/obo/PR_000009615,none +13.863806,PR:000009689,http://purl.obolibrary.org/obo/PR_000009689,layilin +13.863806,PR:000009730,http://purl.obolibrary.org/obo/PR_000009730,ligand-dependent corepressor +13.863806,PR:000009827,http://purl.obolibrary.org/obo/PR_000009827,protein lin-7 homolog C +13.863806,PR:000010029,http://purl.obolibrary.org/obo/PR_000010029,none +13.863806,PR:000010288,http://purl.obolibrary.org/obo/PR_000010288,mediator of RNA polymerase II transcription subunit 16 +13.863806,PR:000010417,http://purl.obolibrary.org/obo/PR_000010417,inositol oxygenase +13.863806,PR:000010757,http://purl.obolibrary.org/obo/PR_000010757,metaxin-3 +13.863806,PR:000011077,http://purl.obolibrary.org/obo/PR_000011077,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 +13.863806,PR:000011090,http://purl.obolibrary.org/obo/PR_000011090,NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 6 +13.863806,PR:000011216,http://purl.obolibrary.org/obo/PR_000011216,60S ribosome subunit biogenesis protein NIP7 +13.863806,PR:000011246,http://purl.obolibrary.org/obo/PR_000011246,homeobox protein Nkx-2.6 +13.863806,PR:000011252,http://purl.obolibrary.org/obo/PR_000011252,homeobox protein Nkx-6.3 +13.863806,PR:000011393,http://purl.obolibrary.org/obo/PR_000011393,nuclear receptor subfamily 1 group D member 2 +13.863806,PR:000011431,http://purl.obolibrary.org/obo/PR_000011431,nicotinamide riboside kinase 1 +13.863806,PR:000011520,http://purl.obolibrary.org/obo/PR_000011520,nucleoporin p54 +13.863806,PR:000011729,http://purl.obolibrary.org/obo/PR_000011729,olfactory receptor 1J2 +13.863806,PR:000012073,http://purl.obolibrary.org/obo/PR_000012073,otogelin +13.863806,PR:000012200,http://purl.obolibrary.org/obo/PR_000012200,transmembrane prolyl 4-hydroxylase +13.863806,PR:000012280,http://purl.obolibrary.org/obo/PR_000012280,partitioning defective 3 homolog B +13.863806,PR:000012287,http://purl.obolibrary.org/obo/PR_000012287,"presenilins-associated rhomboid-like protein, mitochondrial" +13.863806,PR:000012348,http://purl.obolibrary.org/obo/PR_000012348,protocadherin-18 +13.863806,PR:000012476,http://purl.obolibrary.org/obo/PR_000012476,myomegalin +13.863806,PR:000012689,http://purl.obolibrary.org/obo/PR_000012689,progesterone-induced-blocking factor 1 +13.863806,PR:000012800,http://purl.obolibrary.org/obo/PR_000012800,group IID secretory phospholipase A2 +13.863806,PR:000012861,http://purl.obolibrary.org/obo/PR_000012861,puratrophin-1 +13.863806,PR:000012959,http://purl.obolibrary.org/obo/PR_000012959,GDP-fucose protein O-fucosyltransferase 2 +13.863806,PR:000013139,http://purl.obolibrary.org/obo/PR_000013139,serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit alpha +13.863806,PR:000013182,http://purl.obolibrary.org/obo/PR_000013182,PR domain zinc finger protein 13 +13.863806,PR:000013275,http://purl.obolibrary.org/obo/PR_000013275,vitamin K-dependent protein Z +13.863806,PR:000013769,http://purl.obolibrary.org/obo/PR_000013769,ribonucleoprotein PTB-binding 1 +13.863806,PR:000013893,http://purl.obolibrary.org/obo/PR_000013893,regulated endocrine-specific protein 18 +13.863806,PR:000013976,http://purl.obolibrary.org/obo/PR_000013976,GTPase RhebL1 +13.863806,PR:000014019,http://purl.obolibrary.org/obo/PR_000014019,serine/threonine-protein kinase RIO1 +13.863806,PR:000014038,http://purl.obolibrary.org/obo/PR_000014038,required for meiotic nuclear division protein 1 +13.863806,PR:000014208,http://purl.obolibrary.org/obo/PR_000014208,60S ribosomal protein L27 +13.863806,PR:000014209,http://purl.obolibrary.org/obo/PR_000014209,60S ribosomal protein L27a +13.863806,PR:000014356,http://purl.obolibrary.org/obo/PR_000014356,receptor-transporting protein 4 +13.863806,PR:000014788,http://purl.obolibrary.org/obo/PR_000014788,SH3-containing GRB2-like protein 3-interacting protein 1 +13.863806,PR:000014935,http://purl.obolibrary.org/obo/PR_000014935,solute carrier family 13 member 3 +13.863806,PR:000015091,http://purl.obolibrary.org/obo/PR_000015091,UDP-N-acetylglucosamine transporter +13.863806,PR:000015230,http://purl.obolibrary.org/obo/PR_000015230,solute carrier organic anion transporter family member 4C1 +13.863806,PR:000015519,http://purl.obolibrary.org/obo/PR_000015519,maspardin +13.863806,PR:000015721,http://purl.obolibrary.org/obo/PR_000015721,StAR-related lipid transfer protein 6 +13.863806,PR:000015747,http://purl.obolibrary.org/obo/PR_000015747,serine/threonine-protein kinase 31 +13.863806,PR:000015776,http://purl.obolibrary.org/obo/PR_000015776,spermatid perinuclear RNA-binding protein +13.863806,PR:000015813,http://purl.obolibrary.org/obo/PR_000015813,"succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial" +13.863806,PR:000015879,http://purl.obolibrary.org/obo/PR_000015879,synaptogyrin-2 +13.863806,PR:000015892,http://purl.obolibrary.org/obo/PR_000015892,synaptophysin-like protein 2 +13.863806,PR:000015991,http://purl.obolibrary.org/obo/PR_000015991,none +13.863806,PR:000016064,http://purl.obolibrary.org/obo/PR_000016064,taste receptor type 2 member 10 +13.863806,PR:000016209,http://purl.obolibrary.org/obo/PR_000016209,tectonic-1 +13.863806,PR:000016227,http://purl.obolibrary.org/obo/PR_000016227,tektin-2 +13.863806,PR:000016234,http://purl.obolibrary.org/obo/PR_000016234,"testis, prostate and placenta-expressed protein" +13.863806,PR:000016308,http://purl.obolibrary.org/obo/PR_000016308,threonine synthase-like 1 +13.863806,PR:000016428,http://purl.obolibrary.org/obo/PR_000016428,trimeric intracellular cation channel type B +13.863806,PR:000016656,http://purl.obolibrary.org/obo/PR_000016656,E3 ubiquitin-protein ligase TRIM35 +13.863806,PR:000016688,http://purl.obolibrary.org/obo/PR_000016688,TMF-regulated nuclear protein +13.863806,PR:000016818,http://purl.obolibrary.org/obo/PR_000016818,tubulin beta-4B chain +13.863806,PR:000016856,http://purl.obolibrary.org/obo/PR_000016856,protein disulfide-isomerase TXNDC10 +13.863806,PR:000016890,http://purl.obolibrary.org/obo/PR_000016890,none +13.863806,PR:000016994,http://purl.obolibrary.org/obo/PR_000016994,ubiquitin-protein ligase E3C +13.863806,PR:000017064,http://purl.obolibrary.org/obo/PR_000017064,UDP-glucuronosyltransferase 2B4 +13.863806,PR:000017173,http://purl.obolibrary.org/obo/PR_000017173,ubiquitin carboxyl-terminal hydrolase 34 +13.863806,PR:000017290,http://purl.obolibrary.org/obo/PR_000017290,transcription cofactor vestigial-like protein 1 +13.863806,PR:000017460,http://purl.obolibrary.org/obo/PR_000017460,pre-mRNA-splicing regulator WTAP +13.863806,PR:000017625,http://purl.obolibrary.org/obo/PR_000017625,AN1-type zinc finger protein 6 +13.863806,PR:000018217,http://purl.obolibrary.org/obo/PR_000018217,zinc finger Ran-binding domain-containing protein 2 +13.863806,PR:000021983,http://purl.obolibrary.org/obo/PR_000021983,none +13.863806,PR:000022112,http://purl.obolibrary.org/obo/PR_000022112,none +13.863806,PR:000022199,http://purl.obolibrary.org/obo/PR_000022199,none +13.863806,PR:000022269,http://purl.obolibrary.org/obo/PR_000022269,none +13.863806,PR:000022273,http://purl.obolibrary.org/obo/PR_000022273,none +13.863806,PR:000022340,http://purl.obolibrary.org/obo/PR_000022340,none +13.863806,PR:000022361,http://purl.obolibrary.org/obo/PR_000022361,none +13.863806,PR:000022461,http://purl.obolibrary.org/obo/PR_000022461,none +13.863806,PR:000022891,http://purl.obolibrary.org/obo/PR_000022891,none +13.863806,PR:000023048,http://purl.obolibrary.org/obo/PR_000023048,none +13.863806,PR:000023258,http://purl.obolibrary.org/obo/PR_000023258,none +13.863806,PR:000023259,http://purl.obolibrary.org/obo/PR_000023259,none +13.863806,PR:000023305,http://purl.obolibrary.org/obo/PR_000023305,none +13.863806,PR:000023355,http://purl.obolibrary.org/obo/PR_000023355,none +13.863806,PR:000023491,http://purl.obolibrary.org/obo/PR_000023491,none +13.863806,PR:000024004,http://purl.obolibrary.org/obo/PR_000024004,none +13.863806,PR:000024185,http://purl.obolibrary.org/obo/PR_000024185,none +13.863806,PR:000024241,http://purl.obolibrary.org/obo/PR_000024241,none +13.863806,PR:000028457,http://purl.obolibrary.org/obo/PR_000028457,none +13.863806,PR:000029198,http://purl.obolibrary.org/obo/PR_000029198,none +13.863806,PR:000029275,http://purl.obolibrary.org/obo/PR_000029275,SMC5-SMC6 complex localization factor protein 1 +13.863806,PR:000029333,http://purl.obolibrary.org/obo/PR_000029333,coiled-coil domain-containing protein 62 +13.863806,PR:000029492,http://purl.obolibrary.org/obo/PR_000029492,protein FAM3C +13.863806,PR:000029728,http://purl.obolibrary.org/obo/PR_000029728,ribosomal RNA methyltransferase 1 +13.863806,PR:000029745,http://purl.obolibrary.org/obo/PR_000029745,SAM domain-containing protein SAMSN-1 +13.863806,PR:000029754,http://purl.obolibrary.org/obo/PR_000029754,SID1 transmembrane family member 2 +13.863806,PR:000029764,http://purl.obolibrary.org/obo/PR_000029764,WD40 repeat-containing protein SMU1 +13.863806,PR:000029867,http://purl.obolibrary.org/obo/PR_000029867,WD repeat-containing protein 72 +13.863806,PR:000030253,http://purl.obolibrary.org/obo/PR_000030253,centromere protein W +13.863806,PR:000030317,http://purl.obolibrary.org/obo/PR_000030317,trafficking protein particle complex subunit 2 +13.863806,PR:000030328,http://purl.obolibrary.org/obo/PR_000030328,none +13.863806,PR:000030339,http://purl.obolibrary.org/obo/PR_000030339,FXYD domain-containing ion transport regulator 4 +13.863806,PR:000030468,http://purl.obolibrary.org/obo/PR_000030468,sesquipedalian-1 +13.863806,PR:000030770,http://purl.obolibrary.org/obo/PR_000030770,a disintegrin and metalloproteinase with thrombospondin motifs 15 +13.863806,PR:000030830,http://purl.obolibrary.org/obo/PR_000030830,small integral membrane protein 1 +13.863806,PR:000030970,http://purl.obolibrary.org/obo/PR_000030970,CKLF-like MARVEL transmembrane domain-containing protein 5 +13.863806,PR:000031164,http://purl.obolibrary.org/obo/PR_000031164,Box C/D snoRNA protein 1 +13.863806,PR:000031172,http://purl.obolibrary.org/obo/PR_000031172,E3 UFM1-protein ligase 1 +13.863806,PR:000031299,http://purl.obolibrary.org/obo/PR_000031299,tudor domain-containing protein 6 +13.863806,PR:000031490,http://purl.obolibrary.org/obo/PR_000031490,leucine-rich repeat LGI family member 4 +13.863806,PR:000031567,http://purl.obolibrary.org/obo/PR_000031567,leucine-rich repeat-containing protein 3B +13.863806,PR:000032252,http://purl.obolibrary.org/obo/PR_000032252,a disintegrin and metalloproteinase with thrombospondin motifs 6 +13.863806,PR:000032499,http://purl.obolibrary.org/obo/PR_000032499,calcium permeable stress-gated cation channel 1 +13.863806,PR:000032988,http://purl.obolibrary.org/obo/PR_000032988,none +13.863806,PR:000033041,http://purl.obolibrary.org/obo/PR_000033041,none +13.863806,PR:000035056,http://purl.obolibrary.org/obo/PR_000035056,none +13.863806,PR:000035238,http://purl.obolibrary.org/obo/PR_000035238,none +13.863806,PR:A0JME2,http://purl.obolibrary.org/obo/PR_A0JME2,none +13.863806,PR:A8R7E6,http://purl.obolibrary.org/obo/PR_A8R7E6,none +13.863806,PR:A8WGP3,http://purl.obolibrary.org/obo/PR_A8WGP3,none +13.863806,PR:B9DFK5,http://purl.obolibrary.org/obo/PR_B9DFK5,none +13.863806,PR:G3V8T1,http://purl.obolibrary.org/obo/PR_G3V8T1,none +13.863806,PR:O04211,http://purl.obolibrary.org/obo/PR_O04211,none +13.863806,PR:O14207,http://purl.obolibrary.org/obo/PR_O14207,none +13.863806,PR:O22264,http://purl.obolibrary.org/obo/PR_O22264,none +13.863806,PR:O80340,http://purl.obolibrary.org/obo/PR_O80340,none +13.863806,PR:P04911,http://purl.obolibrary.org/obo/PR_P04911,none +13.863806,PR:P05178,http://purl.obolibrary.org/obo/PR_P05178,none +13.863806,PR:P0DMT0,http://purl.obolibrary.org/obo/PR_P0DMT0,myoregulin (human) +13.863806,PR:P10506,http://purl.obolibrary.org/obo/PR_P10506,none +13.863806,PR:P10849,http://purl.obolibrary.org/obo/PR_P10849,none +13.863806,PR:P13483,http://purl.obolibrary.org/obo/PR_P13483,none +13.863806,PR:P15567,http://purl.obolibrary.org/obo/PR_P15567,none +13.863806,PR:P22149,http://purl.obolibrary.org/obo/PR_P22149,none +13.863806,PR:P32028,http://purl.obolibrary.org/obo/PR_P32028,none +13.863806,PR:P32492,http://purl.obolibrary.org/obo/PR_P32492,none +13.863806,PR:P32828,http://purl.obolibrary.org/obo/PR_P32828,none +13.863806,PR:P35180,http://purl.obolibrary.org/obo/PR_P35180,none +13.863806,PR:P36150,http://purl.obolibrary.org/obo/PR_P36150,none +13.863806,PR:P38316,http://purl.obolibrary.org/obo/PR_P38316,none +13.863806,PR:P41697,http://purl.obolibrary.org/obo/PR_P41697,none +13.863806,PR:P46640,http://purl.obolibrary.org/obo/PR_P46640,none +13.863806,PR:P46867,http://purl.obolibrary.org/obo/PR_P46867,none +13.863806,PR:P96622,http://purl.obolibrary.org/obo/PR_P96622,none +13.863806,PR:P9WMF9,http://purl.obolibrary.org/obo/PR_P9WMF9,none +13.863806,PR:Q07970,http://purl.obolibrary.org/obo/PR_Q07970,none +13.863806,PR:Q2FVN1,http://purl.obolibrary.org/obo/PR_Q2FVN1,none +13.863806,PR:Q52KJ8,http://purl.obolibrary.org/obo/PR_Q52KJ8,none +13.863806,PR:Q54QT7,http://purl.obolibrary.org/obo/PR_Q54QT7,none +13.863806,PR:Q553K4,http://purl.obolibrary.org/obo/PR_Q553K4,none +13.863806,PR:Q56X52,http://purl.obolibrary.org/obo/PR_Q56X52,none +13.863806,PR:Q5ABD0,http://purl.obolibrary.org/obo/PR_Q5ABD0,none +13.863806,PR:Q62959,http://purl.obolibrary.org/obo/PR_Q62959,none +13.863806,PR:Q6IGX9,http://purl.obolibrary.org/obo/PR_Q6IGX9,none +13.863806,PR:Q6NQ72,http://purl.obolibrary.org/obo/PR_Q6NQ72,none +13.863806,PR:Q710E6,http://purl.obolibrary.org/obo/PR_Q710E6,none +13.863806,PR:Q7X911,http://purl.obolibrary.org/obo/PR_Q7X911,none +13.863806,PR:Q802G6,http://purl.obolibrary.org/obo/PR_Q802G6,none +13.863806,PR:Q90873,http://purl.obolibrary.org/obo/PR_Q90873,none +13.863806,PR:Q9CV60,http://purl.obolibrary.org/obo/PR_Q9CV60,none +13.863806,PR:Q9FHH5,http://purl.obolibrary.org/obo/PR_Q9FHH5,none +13.863806,PR:Q9FLU1,http://purl.obolibrary.org/obo/PR_Q9FLU1,none +13.863806,PR:Q9LE20,http://purl.obolibrary.org/obo/PR_Q9LE20,none +13.863806,PR:Q9LE59,http://purl.obolibrary.org/obo/PR_Q9LE59,none +13.863806,PR:Q9LVK3,http://purl.obolibrary.org/obo/PR_Q9LVK3,none +13.863806,PR:Q9M2U1,http://purl.obolibrary.org/obo/PR_Q9M2U1,none +13.863806,PR:Q9SCS2,http://purl.obolibrary.org/obo/PR_Q9SCS2,none +13.863806,PR:Q9SEZ7,http://purl.obolibrary.org/obo/PR_Q9SEZ7,none +13.863806,PR:Q9SYK0,http://purl.obolibrary.org/obo/PR_Q9SYK0,none +13.863806,PR:Q9VNB5,http://purl.obolibrary.org/obo/PR_Q9VNB5,none +13.863806,PR:Q9ZNX9,http://purl.obolibrary.org/obo/PR_Q9ZNX9,none +13.863806,PR:Q9ZVC2,http://purl.obolibrary.org/obo/PR_Q9ZVC2,none +13.863806,SO:0000018,http://purl.obolibrary.org/obo/SO_0000018,linkage_group +13.863806,SO:0000383,http://purl.obolibrary.org/obo/SO_0000383,MicF_RNA +13.863806,SO:0000647,http://purl.obolibrary.org/obo/SO_0000647,miRNA_primary_transcript +13.863806,SO:0000896,http://purl.obolibrary.org/obo/SO_0000896,translationally_regulated_gene +13.863806,SO:0001025,http://purl.obolibrary.org/obo/SO_0001025,polymorphic_sequence_variant +13.863806,SO:0001264,http://purl.obolibrary.org/obo/SO_0001264,gRNA_gene +13.863806,SO:0001456,http://purl.obolibrary.org/obo/SO_0001456,pyrrolysine +13.863806,SO:0001821,http://purl.obolibrary.org/obo/SO_0001821,inframe_insertion +13.863806,SO:0001836,http://purl.obolibrary.org/obo/SO_0001836,S_region +13.863806,SO:0002065,http://purl.obolibrary.org/obo/SO_0002065,SVA_insertion +13.863806,UBERON:0000162,http://purl.obolibrary.org/obo/UBERON_0000162,cloaca +13.863806,UBERON:0000424,http://purl.obolibrary.org/obo/UBERON_0000424,gastric pit +13.863806,UBERON:0000454,http://purl.obolibrary.org/obo/UBERON_0000454,cerebral subcortex +13.863806,UBERON:0001011,http://purl.obolibrary.org/obo/UBERON_0001011,hemolymph +13.863806,UBERON:0001303,http://purl.obolibrary.org/obo/UBERON_0001303,left uterine tube +13.863806,UBERON:0001735,http://purl.obolibrary.org/obo/UBERON_0001735,tonsillar ring +13.863806,UBERON:0001875,http://purl.obolibrary.org/obo/UBERON_0001875,globus pallidus +13.863806,UBERON:0002182,http://purl.obolibrary.org/obo/UBERON_0002182,main bronchus +13.863806,UBERON:0002361,http://purl.obolibrary.org/obo/UBERON_0002361,pia mater +13.863806,UBERON:0002570,http://purl.obolibrary.org/obo/UBERON_0002570,medial orbital gyrus +13.863806,UBERON:0004693,http://purl.obolibrary.org/obo/UBERON_0004693,Peyer's patch epithelium +13.863806,UBERON:0005068,http://purl.obolibrary.org/obo/UBERON_0005068,neural rod +13.863806,UBERON:0005197,http://purl.obolibrary.org/obo/UBERON_0005197,segmental spinal nerve +13.863806,UBERON:0006587,http://purl.obolibrary.org/obo/UBERON_0006587,ligamentum venosum +13.863806,UBERON:0007633,http://purl.obolibrary.org/obo/UBERON_0007633,nucleus of trapezoid body +13.863806,UBERON:0007719,http://purl.obolibrary.org/obo/UBERON_0007719,bone of reproductive organ +13.863806,UBERON:0007821,http://purl.obolibrary.org/obo/UBERON_0007821,lateral nasal cartilage +13.863806,UBERON:0008247,http://purl.obolibrary.org/obo/UBERON_0008247,tube foot +13.863806,UBERON:0008775,http://purl.obolibrary.org/obo/UBERON_0008775,proximal epiphysis of fibula +13.863806,UBERON:0008804,http://purl.obolibrary.org/obo/UBERON_0008804,stylopharyngeus muscle +13.863806,UBERON:0010071,http://purl.obolibrary.org/obo/UBERON_0010071,layer of tympanic membrane +13.863806,UBERON:0010292,http://purl.obolibrary.org/obo/UBERON_0010292,episcleral layer of eyeball +13.863806,UBERON:0011511,http://purl.obolibrary.org/obo/UBERON_0011511,iliococcygeus muscle +13.863806,UBERON:0011783,http://purl.obolibrary.org/obo/UBERON_0011783,feather follicle placode +13.863806,UBERON:0012115,http://purl.obolibrary.org/obo/UBERON_0012115,dental comb +13.863806,UBERON:0013193,http://purl.obolibrary.org/obo/UBERON_0013193,parakeratinized epithelium +13.863806,UBERON:0013766,http://purl.obolibrary.org/obo/UBERON_0013766,epicanthal fold +13.863806,UBERON:0014781,http://purl.obolibrary.org/obo/UBERON_0014781,stomodeal ectoderm +13.863806,UBERON:0018607,http://purl.obolibrary.org/obo/UBERON_0018607,permanent molar tooth 2 +13.863806,UBERON:2001935,http://purl.obolibrary.org/obo/UBERON_2001935,oral disk +13.863806,UBERON:2002200,http://purl.obolibrary.org/obo/UBERON_2002200,hypobranchial muscle +13.863806,UBERON:3010197,http://purl.obolibrary.org/obo/UBERON_3010197,lateral recess +13.863806,UBERON:4000172,http://purl.obolibrary.org/obo/UBERON_4000172,lepidotrichium +13.863806,UBERON:4000176,http://purl.obolibrary.org/obo/UBERON_4000176,anal fin lepidotrichium +13.863806,UBERON:4300016,http://purl.obolibrary.org/obo/UBERON_4300016,pelvic cartilage +13.863806,UBERON:4300037,http://purl.obolibrary.org/obo/UBERON_4300037,bony fin ray +13.863806,UBERON:4500008,http://purl.obolibrary.org/obo/UBERON_4500008,median fin lepidotrichium +13.910326,CHEBI:131620,http://purl.obolibrary.org/obo/CHEBI_131620,C24-steroid +13.910326,CHEBI:131657,http://purl.obolibrary.org/obo/CHEBI_131657,cholane derivative +13.910326,CHEBI:2136,http://purl.obolibrary.org/obo/CHEBI_2136,5S-rRNA precursor +13.910326,CHEBI:23652,http://purl.obolibrary.org/obo/CHEBI_23652,dextrins +13.910326,CHEBI:25140,http://purl.obolibrary.org/obo/CHEBI_25140,maltodextrin +13.910326,CHEBI:25357,http://purl.obolibrary.org/obo/CHEBI_25357,mitomycin +13.910326,CHEBI:25681,http://purl.obolibrary.org/obo/CHEBI_25681,omega-3 fatty acid +13.910326,CHEBI:27693,http://purl.obolibrary.org/obo/CHEBI_27693,sitosterol +13.910326,CHEBI:32732,http://purl.obolibrary.org/obo/CHEBI_32732,tryptophan residue +13.910326,CHEBI:33664,http://purl.obolibrary.org/obo/CHEBI_33664,monocyclic hydrocarbon +13.910326,CHEBI:35391,http://purl.obolibrary.org/obo/CHEBI_35391,aspartate(1-) +13.910326,CHEBI:35584,http://purl.obolibrary.org/obo/CHEBI_35584,purine +13.910326,CHEBI:36562,http://purl.obolibrary.org/obo/CHEBI_36562,main-group coordination entity +13.910326,CHEBI:37396,http://purl.obolibrary.org/obo/CHEBI_37396,proteoglycan +13.910326,CHEBI:38102,http://purl.obolibrary.org/obo/CHEBI_38102,triazines +13.910326,CHEBI:38131,http://purl.obolibrary.org/obo/CHEBI_38131,lactol +13.910326,CHEBI:38303,http://purl.obolibrary.org/obo/CHEBI_38303,azirinopyrroloindole +13.910326,CHEBI:39474,http://purl.obolibrary.org/obo/CHEBI_39474,polyazaalkane +13.910326,CHEBI:46686,http://purl.obolibrary.org/obo/CHEBI_46686,azaalkane +13.910326,CHEBI:46955,http://purl.obolibrary.org/obo/CHEBI_46955,anthracenes +13.910326,CHEBI:47854,http://purl.obolibrary.org/obo/CHEBI_47854,halo group +13.910326,CHEBI:50728,http://purl.obolibrary.org/obo/CHEBI_50728,methylene group +13.910326,CHEBI:50883,http://purl.obolibrary.org/obo/CHEBI_50883,boron nitride +13.910326,CHEBI:50912,http://purl.obolibrary.org/obo/CHEBI_50912,cardiotoxic agent +13.910326,CHEBI:52362,http://purl.obolibrary.org/obo/CHEBI_52362,ortho-fused heteroarene +13.910326,CHEBI:5653,http://purl.obolibrary.org/obo/CHEBI_5653,hemiacetal +13.910326,CHEBI:57560,http://purl.obolibrary.org/obo/CHEBI_57560,long-chain fatty acid anion +13.910326,CHEBI:59772,http://purl.obolibrary.org/obo/CHEBI_59772,hemiketal +13.910326,CHEBI:59780,http://purl.obolibrary.org/obo/CHEBI_59780,cyclic hemiketal +13.910326,CHEBI:64776,http://purl.obolibrary.org/obo/CHEBI_64776,inorganic anionic group +13.910326,CHEBI:66900,http://purl.obolibrary.org/obo/CHEBI_66900,prostaglandin receptor agonist +13.910326,CHEBI:68546,http://purl.obolibrary.org/obo/CHEBI_68546,phosphate group(2-) +13.910326,CHEBI:77178,http://purl.obolibrary.org/obo/CHEBI_77178,histological dye +13.910326,CHEBI:8093,http://purl.obolibrary.org/obo/CHEBI_8093,phenylephrine +13.910326,CL:0000024,http://purl.obolibrary.org/obo/CL_0000024,oogonial cell +13.910326,CL:0000102,http://purl.obolibrary.org/obo/CL_0000102,polymodal neuron +13.910326,CL:0000373,http://purl.obolibrary.org/obo/CL_0000373,histoblast +13.910326,CL:0002187,http://purl.obolibrary.org/obo/CL_0002187,basal cell of epidermis +13.910326,CL:0002583,http://purl.obolibrary.org/obo/CL_0002583,subcutaneous preadipocyte +13.910326,DRUGBANK:DB01857,http://purl.obolibrary.org/obo/DRUGBANK_DB01857,none +13.910326,DRUGBANK:DB02153,http://purl.obolibrary.org/obo/DRUGBANK_DB02153,none +13.910326,DRUGBANK:DB02495,http://purl.obolibrary.org/obo/DRUGBANK_DB02495,none +13.910326,DRUGBANK:DB02768,http://purl.obolibrary.org/obo/DRUGBANK_DB02768,none +13.910326,DRUGBANK:DB03593,http://purl.obolibrary.org/obo/DRUGBANK_DB03593,none +13.910326,DRUGBANK:DB03612,http://purl.obolibrary.org/obo/DRUGBANK_DB03612,none +13.910326,DRUGBANK:DB03632,http://purl.obolibrary.org/obo/DRUGBANK_DB03632,none +13.910326,DRUGBANK:DB04556,http://purl.obolibrary.org/obo/DRUGBANK_DB04556,none +13.910326,DRUGBANK:DB04826,http://purl.obolibrary.org/obo/DRUGBANK_DB04826,none +13.910326,DRUGBANK:DB05035,http://purl.obolibrary.org/obo/DRUGBANK_DB05035,none +13.910326,DRUGBANK:DB05223,http://purl.obolibrary.org/obo/DRUGBANK_DB05223,none +13.910326,DRUGBANK:DB05241,http://purl.obolibrary.org/obo/DRUGBANK_DB05241,none +13.910326,DRUGBANK:DB05426,http://purl.obolibrary.org/obo/DRUGBANK_DB05426,none +13.910326,DRUGBANK:DB05468,http://purl.obolibrary.org/obo/DRUGBANK_DB05468,none +13.910326,DRUGBANK:DB05675,http://purl.obolibrary.org/obo/DRUGBANK_DB05675,none +13.910326,DRUGBANK:DB05777,http://purl.obolibrary.org/obo/DRUGBANK_DB05777,none +13.910326,DRUGBANK:DB05810,http://purl.obolibrary.org/obo/DRUGBANK_DB05810,none +13.910326,DRUGBANK:DB06422,http://purl.obolibrary.org/obo/DRUGBANK_DB06422,none +13.910326,DRUGBANK:DB06766,http://purl.obolibrary.org/obo/DRUGBANK_DB06766,none +13.910326,DRUGBANK:DB07888,http://purl.obolibrary.org/obo/DRUGBANK_DB07888,none +13.910326,DRUGBANK:DB08955,http://purl.obolibrary.org/obo/DRUGBANK_DB08955,none +13.910326,DRUGBANK:DB09004,http://purl.obolibrary.org/obo/DRUGBANK_DB09004,none +13.910326,DRUGBANK:DB09191,http://purl.obolibrary.org/obo/DRUGBANK_DB09191,none +13.910326,DRUGBANK:DB09314,http://purl.obolibrary.org/obo/DRUGBANK_DB09314,none +13.910326,DRUGBANK:DB10466,http://purl.obolibrary.org/obo/DRUGBANK_DB10466,none +13.910326,DRUGBANK:DB10719,http://purl.obolibrary.org/obo/DRUGBANK_DB10719,none +13.910326,DRUGBANK:DB11209,http://purl.obolibrary.org/obo/DRUGBANK_DB11209,none +13.910326,DRUGBANK:DB11224,http://purl.obolibrary.org/obo/DRUGBANK_DB11224,none +13.910326,DRUGBANK:DB11233,http://purl.obolibrary.org/obo/DRUGBANK_DB11233,none +13.910326,DRUGBANK:DB11378,http://purl.obolibrary.org/obo/DRUGBANK_DB11378,none +13.910326,DRUGBANK:DB11497,http://purl.obolibrary.org/obo/DRUGBANK_DB11497,none +13.910326,DRUGBANK:DB11791,http://purl.obolibrary.org/obo/DRUGBANK_DB11791,none +13.910326,DRUGBANK:DB11826,http://purl.obolibrary.org/obo/DRUGBANK_DB11826,none +13.910326,DRUGBANK:DB11889,http://purl.obolibrary.org/obo/DRUGBANK_DB11889,none +13.910326,DRUGBANK:DB12152,http://purl.obolibrary.org/obo/DRUGBANK_DB12152,none +13.910326,DRUGBANK:DB12264,http://purl.obolibrary.org/obo/DRUGBANK_DB12264,none +13.910326,DRUGBANK:DB12486,http://purl.obolibrary.org/obo/DRUGBANK_DB12486,none +13.910326,DRUGBANK:DB12839,http://purl.obolibrary.org/obo/DRUGBANK_DB12839,none +13.910326,DRUGBANK:DB12887,http://purl.obolibrary.org/obo/DRUGBANK_DB12887,none +13.910326,DRUGBANK:DB13013,http://purl.obolibrary.org/obo/DRUGBANK_DB13013,none +13.910326,DRUGBANK:DB13017,http://purl.obolibrary.org/obo/DRUGBANK_DB13017,none +13.910326,DRUGBANK:DB13027,http://purl.obolibrary.org/obo/DRUGBANK_DB13027,none +13.910326,DRUGBANK:DB13163,http://purl.obolibrary.org/obo/DRUGBANK_DB13163,none +13.910326,DRUGBANK:DB13226,http://purl.obolibrary.org/obo/DRUGBANK_DB13226,none +13.910326,DRUGBANK:DB13538,http://purl.obolibrary.org/obo/DRUGBANK_DB13538,none +13.910326,DRUGBANK:DB13673,http://purl.obolibrary.org/obo/DRUGBANK_DB13673,none +13.910326,DRUGBANK:DB13697,http://purl.obolibrary.org/obo/DRUGBANK_DB13697,none +13.910326,DRUGBANK:DB13745,http://purl.obolibrary.org/obo/DRUGBANK_DB13745,none +13.910326,DRUGBANK:DB13810,http://purl.obolibrary.org/obo/DRUGBANK_DB13810,none +13.910326,DRUGBANK:DB14661,http://purl.obolibrary.org/obo/DRUGBANK_DB14661,none +13.910326,DRUGBANK:DB14805,http://purl.obolibrary.org/obo/DRUGBANK_DB14805,none +13.910326,DRUGBANK:DB14877,http://purl.obolibrary.org/obo/DRUGBANK_DB14877,none +13.910326,DRUGBANK:DB15019,http://purl.obolibrary.org/obo/DRUGBANK_DB15019,none +13.910326,DRUGBANK:DB15328,http://purl.obolibrary.org/obo/DRUGBANK_DB15328,none +13.910326,DRUGBANK:DB15944,http://purl.obolibrary.org/obo/DRUGBANK_DB15944,none +13.910326,DRUGBANK:DB16310,http://purl.obolibrary.org/obo/DRUGBANK_DB16310,none +13.910326,GO:0000281,http://purl.obolibrary.org/obo/GO_0000281,mitotic cytokinesis +13.910326,GO:0000719,http://purl.obolibrary.org/obo/GO_0000719,photoreactive repair +13.910326,GO:0002270,http://purl.obolibrary.org/obo/GO_0002270,plasmacytoid dendritic cell activation +13.910326,GO:0002542,http://purl.obolibrary.org/obo/GO_0002542,Factor XII activation +13.910326,GO:0003151,http://purl.obolibrary.org/obo/GO_0003151,outflow tract morphogenesis +13.910326,GO:0003960,http://purl.obolibrary.org/obo/GO_0003960,NADPH:quinone reductase activity +13.910326,GO:0004039,http://purl.obolibrary.org/obo/GO_0004039,allophanate hydrolase activity +13.910326,GO:0004459,http://purl.obolibrary.org/obo/GO_0004459,L-lactate dehydrogenase activity +13.910326,GO:0004880,http://purl.obolibrary.org/obo/GO_0004880,none +13.910326,GO:0004945,http://purl.obolibrary.org/obo/GO_0004945,angiotensin type II receptor activity +13.910326,GO:0005787,http://purl.obolibrary.org/obo/GO_0005787,signal peptidase complex +13.910326,GO:0005915,http://purl.obolibrary.org/obo/GO_0005915,zonula adherens +13.910326,GO:0006047,http://purl.obolibrary.org/obo/GO_0006047,UDP-N-acetylglucosamine metabolic process +13.910326,GO:0006048,http://purl.obolibrary.org/obo/GO_0006048,UDP-N-acetylglucosamine biosynthetic process +13.910326,GO:0006098,http://purl.obolibrary.org/obo/GO_0006098,pentose-phosphate shunt +13.910326,GO:0006543,http://purl.obolibrary.org/obo/GO_0006543,glutamine catabolic process +13.910326,GO:0007214,http://purl.obolibrary.org/obo/GO_0007214,gamma-aminobutyric acid signaling pathway +13.910326,GO:0008615,http://purl.obolibrary.org/obo/GO_0008615,pyridoxine biosynthetic process +13.910326,GO:0009133,http://purl.obolibrary.org/obo/GO_0009133,nucleoside diphosphate biosynthetic process +13.910326,GO:0009805,http://purl.obolibrary.org/obo/GO_0009805,coumarin biosynthetic process +13.910326,GO:0009814,http://purl.obolibrary.org/obo/GO_0009814,none +13.910326,GO:0009847,http://purl.obolibrary.org/obo/GO_0009847,spore germination +13.910326,GO:0009903,http://purl.obolibrary.org/obo/GO_0009903,chloroplast avoidance movement +13.910326,GO:0009918,http://purl.obolibrary.org/obo/GO_0009918,sterol delta7 reductase activity +13.910326,GO:0009956,http://purl.obolibrary.org/obo/GO_0009956,radial pattern formation +13.910326,GO:0010028,http://purl.obolibrary.org/obo/GO_0010028,xanthophyll cycle +13.910326,GO:0010334,http://purl.obolibrary.org/obo/GO_0010334,sesquiterpene synthase activity +13.910326,GO:0010477,http://purl.obolibrary.org/obo/GO_0010477,response to sulfur dioxide +13.910326,GO:0014733,http://purl.obolibrary.org/obo/GO_0014733,regulation of skeletal muscle adaptation +13.910326,GO:0015098,http://purl.obolibrary.org/obo/GO_0015098,molybdate ion transmembrane transporter activity +13.910326,GO:0015703,http://purl.obolibrary.org/obo/GO_0015703,chromate transport +13.910326,GO:0016205,http://purl.obolibrary.org/obo/GO_0016205,selenocysteine methyltransferase activity +13.910326,GO:0016212,http://purl.obolibrary.org/obo/GO_0016212,kynurenine-oxoglutarate transaminase activity +13.910326,GO:0018023,http://purl.obolibrary.org/obo/GO_0018023,peptidyl-lysine trimethylation +13.910326,GO:0018963,http://purl.obolibrary.org/obo/GO_0018963,phthalate metabolic process +13.910326,GO:0019146,http://purl.obolibrary.org/obo/GO_0019146,arabinose-5-phosphate isomerase activity +13.910326,GO:0019626,http://purl.obolibrary.org/obo/GO_0019626,short-chain fatty acid catabolic process +13.910326,GO:0021854,http://purl.obolibrary.org/obo/GO_0021854,hypothalamus development +13.910326,GO:0022886,http://purl.obolibrary.org/obo/GO_0022886,channel-forming ionophore activity +13.910326,GO:0030732,http://purl.obolibrary.org/obo/GO_0030732,methionine S-methyltransferase activity +13.910326,GO:0031076,http://purl.obolibrary.org/obo/GO_0031076,embryonic camera-type eye development +13.910326,GO:0032024,http://purl.obolibrary.org/obo/GO_0032024,positive regulation of insulin secretion +13.910326,GO:0033054,http://purl.obolibrary.org/obo/GO_0033054,D-glutamate metabolic process +13.910326,GO:0033333,http://purl.obolibrary.org/obo/GO_0033333,fin development +13.910326,GO:0034035,http://purl.obolibrary.org/obo/GO_0034035,purine ribonucleoside bisphosphate metabolic process +13.910326,GO:0034275,http://purl.obolibrary.org/obo/GO_0034275,kynurenic acid metabolic process +13.910326,GO:0034937,http://purl.obolibrary.org/obo/GO_0034937,perchlorate reductase activity +13.910326,GO:0035041,http://purl.obolibrary.org/obo/GO_0035041,sperm chromatin decondensation +13.910326,GO:0036430,http://purl.obolibrary.org/obo/GO_0036430,CMP kinase activity +13.910326,GO:0040040,http://purl.obolibrary.org/obo/GO_0040040,thermosensory behavior +13.910326,GO:0042387,http://purl.obolibrary.org/obo/GO_0042387,plasmatocyte differentiation +13.910326,GO:0043225,http://purl.obolibrary.org/obo/GO_0043225,ATPase-coupled inorganic anion transmembrane transporter activity +13.910326,GO:0043645,http://purl.obolibrary.org/obo/GO_0043645,cephalosporin metabolic process +13.910326,GO:0043721,http://purl.obolibrary.org/obo/GO_0043721,4-hydroxybutanoyl-CoA dehydratase activity +13.910326,GO:0044414,http://purl.obolibrary.org/obo/GO_0044414,suppression of host defenses by symbiont +13.910326,GO:0045450,http://purl.obolibrary.org/obo/GO_0045450,bicoid mRNA localization +13.910326,GO:0045686,http://purl.obolibrary.org/obo/GO_0045686,negative regulation of glial cell differentiation +13.910326,GO:0045793,http://purl.obolibrary.org/obo/GO_0045793,positive regulation of cell size +13.910326,GO:0046498,http://purl.obolibrary.org/obo/GO_0046498,S-adenosylhomocysteine metabolic process +13.910326,GO:0047348,http://purl.obolibrary.org/obo/GO_0047348,glycerol-3-phosphate cytidylyltransferase activity +13.910326,GO:0047727,http://purl.obolibrary.org/obo/GO_0047727,isobutyryl-CoA mutase activity +13.910326,GO:0048332,http://purl.obolibrary.org/obo/GO_0048332,mesoderm morphogenesis +13.910326,GO:0048634,http://purl.obolibrary.org/obo/GO_0048634,regulation of muscle organ development +13.910326,GO:0048653,http://purl.obolibrary.org/obo/GO_0048653,anther development +13.910326,GO:0048747,http://purl.obolibrary.org/obo/GO_0048747,none +13.910326,GO:0048853,http://purl.obolibrary.org/obo/GO_0048853,forebrain morphogenesis +13.910326,GO:0050182,http://purl.obolibrary.org/obo/GO_0050182,phosphate butyryltransferase activity +13.910326,GO:0050324,http://purl.obolibrary.org/obo/GO_0050324,taurocyamine kinase activity +13.910326,GO:0050342,http://purl.obolibrary.org/obo/GO_0050342,tocopherol O-methyltransferase activity +13.910326,GO:0050427,http://purl.obolibrary.org/obo/GO_0050427,3'-phosphoadenosine 5'-phosphosulfate metabolic process +13.910326,GO:0050513,http://purl.obolibrary.org/obo/GO_0050513,glycoprotein 2-beta-D-xylosyltransferase activity +13.910326,GO:0050821,http://purl.obolibrary.org/obo/GO_0050821,protein stabilization +13.910326,GO:0050881,http://purl.obolibrary.org/obo/GO_0050881,musculoskeletal movement +13.910326,GO:0051007,http://purl.obolibrary.org/obo/GO_0051007,squalene-hopene cyclase activity +13.910326,GO:0051805,http://purl.obolibrary.org/obo/GO_0051805,none +13.910326,GO:0051807,http://purl.obolibrary.org/obo/GO_0051807,none +13.910326,GO:0051833,http://purl.obolibrary.org/obo/GO_0051833,none +13.910326,GO:0051834,http://purl.obolibrary.org/obo/GO_0051834,none +13.910326,GO:0052318,http://purl.obolibrary.org/obo/GO_0052318,regulation of phytoalexin metabolic process +13.910326,GO:0052319,http://purl.obolibrary.org/obo/GO_0052319,regulation of phytoalexin biosynthetic process +13.910326,GO:0052642,http://purl.obolibrary.org/obo/GO_0052642,lysophosphatidic acid phosphatase activity +13.910326,GO:0052798,http://purl.obolibrary.org/obo/GO_0052798,"beta-galactoside alpha-2,3-sialyltransferase activity" +13.910326,GO:0055075,http://purl.obolibrary.org/obo/GO_0055075,potassium ion homeostasis +13.910326,GO:0060251,http://purl.obolibrary.org/obo/GO_0060251,regulation of glial cell proliferation +13.910326,GO:0060810,http://purl.obolibrary.org/obo/GO_0060810,intracellular mRNA localization involved in pattern specification process +13.910326,GO:0060811,http://purl.obolibrary.org/obo/GO_0060811,intracellular mRNA localization involved in anterior/posterior axis specification +13.910326,GO:0060840,http://purl.obolibrary.org/obo/GO_0060840,artery development +13.910326,GO:0061014,http://purl.obolibrary.org/obo/GO_0061014,positive regulation of mRNA catabolic process +13.910326,GO:0061157,http://purl.obolibrary.org/obo/GO_0061157,mRNA destabilization +13.910326,GO:0070531,http://purl.obolibrary.org/obo/GO_0070531,BRCA1-A complex +13.910326,GO:0070726,http://purl.obolibrary.org/obo/GO_0070726,cell wall assembly +13.910326,GO:0071839,http://purl.obolibrary.org/obo/GO_0071839,apoptotic process in bone marrow cell +13.910326,GO:0071901,http://purl.obolibrary.org/obo/GO_0071901,negative regulation of protein serine/threonine kinase activity +13.910326,GO:0097393,http://purl.obolibrary.org/obo/GO_0097393,telomeric repeat-containing RNA transcription +13.910326,GO:0098519,http://purl.obolibrary.org/obo/GO_0098519,"nucleotide phosphatase activity, acting on free nucleotides" +13.910326,GO:1900377,http://purl.obolibrary.org/obo/GO_1900377,negative regulation of secondary metabolite biosynthetic process +13.910326,GO:1900748,http://purl.obolibrary.org/obo/GO_1900748,positive regulation of vascular endothelial growth factor signaling pathway +13.910326,GO:1901322,http://purl.obolibrary.org/obo/GO_1901322,response to chloramphenicol +13.910326,GO:1902456,http://purl.obolibrary.org/obo/GO_1902456,regulation of stomatal opening +13.910326,GO:1904182,http://purl.obolibrary.org/obo/GO_1904182,regulation of pyruvate dehydrogenase activity +13.910326,GO:1904729,http://purl.obolibrary.org/obo/GO_1904729,regulation of intestinal lipid absorption +13.910326,GO:1990428,http://purl.obolibrary.org/obo/GO_1990428,miRNA transport +13.910326,GO:1990764,http://purl.obolibrary.org/obo/GO_1990764,myofibroblast contraction +13.910326,GO:1990765,http://purl.obolibrary.org/obo/GO_1990765,colon smooth muscle contraction +13.910326,GO:2000514,http://purl.obolibrary.org/obo/GO_2000514,"regulation of CD4-positive, alpha-beta T cell activation" +13.910326,GO:2000803,http://purl.obolibrary.org/obo/GO_2000803,endosomal signal transduction +13.910326,GO:2001204,http://purl.obolibrary.org/obo/GO_2001204,regulation of osteoclast development +13.910326,HP:0002840,http://purl.obolibrary.org/obo/HP_0002840,Lymphadenitis +13.910326,HP:0002890,http://purl.obolibrary.org/obo/HP_0002890,Thyroid carcinoma +13.910326,HP:0003312,http://purl.obolibrary.org/obo/HP_0003312,Abnormal form of the vertebral bodies +13.910326,HP:0032016,http://purl.obolibrary.org/obo/HP_0032016,Abnormal sputum +13.910326,MONDO:0000023,http://purl.obolibrary.org/obo/MONDO_0000023,infantile liver failure +13.910326,MONDO:0000727,http://purl.obolibrary.org/obo/MONDO_0000727,scapuloperoneal myopathy +13.910326,MONDO:0001133,http://purl.obolibrary.org/obo/MONDO_0001133,malignant essential hypertension +13.910326,MONDO:0001331,http://purl.obolibrary.org/obo/MONDO_0001331,conjunctival deposit +13.910326,MONDO:0001334,http://purl.obolibrary.org/obo/MONDO_0001334,hypertrichosis of eyelid +13.910326,MONDO:0001654,http://purl.obolibrary.org/obo/MONDO_0001654,spermatic cord cancer +13.910326,MONDO:0001929,http://purl.obolibrary.org/obo/MONDO_0001929,ascending cholangitis +13.910326,MONDO:0002285,http://purl.obolibrary.org/obo/MONDO_0002285,pupil disease +13.910326,MONDO:0002812,http://purl.obolibrary.org/obo/MONDO_0002812,infectious otitis interna +13.910326,MONDO:0002956,http://purl.obolibrary.org/obo/MONDO_0002956,skin cystic basal cell carcinoma +13.910326,MONDO:0003180,http://purl.obolibrary.org/obo/MONDO_0003180,cutaneous adenocystic carcinoma +13.910326,MONDO:0003442,http://purl.obolibrary.org/obo/MONDO_0003442,bladder papillary urothelial neoplasm +13.910326,MONDO:0003476,http://purl.obolibrary.org/obo/MONDO_0003476,clear cell ependymoma +13.910326,MONDO:0003720,http://purl.obolibrary.org/obo/MONDO_0003720,kidney fibrosarcoma +13.910326,MONDO:0003902,http://purl.obolibrary.org/obo/MONDO_0003902,brain stem hemangioblastoma +13.910326,MONDO:0003940,http://purl.obolibrary.org/obo/MONDO_0003940,Kummell disease +13.910326,MONDO:0003972,http://purl.obolibrary.org/obo/MONDO_0003972,gastric body carcinoma +13.910326,MONDO:0004266,http://purl.obolibrary.org/obo/MONDO_0004266,anal gland adenocarcinoma +13.910326,MONDO:0004275,http://purl.obolibrary.org/obo/MONDO_0004275,osteosarcoma arising in bone Paget disease +13.910326,MONDO:0004550,http://purl.obolibrary.org/obo/MONDO_0004550,malignant cornea melanoma +13.910326,MONDO:0005407,http://purl.obolibrary.org/obo/MONDO_0005407,childhood eosinophilic esophagitis +13.910326,MONDO:0005481,http://purl.obolibrary.org/obo/MONDO_0005481,contact dermatitis due to nickel +13.910326,MONDO:0005689,http://purl.obolibrary.org/obo/MONDO_0005689,cannabis dependence +13.910326,MONDO:0006246,http://purl.obolibrary.org/obo/MONDO_0006246,high grade surface osteosarcoma +13.910326,MONDO:0006601,http://purl.obolibrary.org/obo/MONDO_0006601,pityriasis rosea +13.910326,MONDO:0006714,http://purl.obolibrary.org/obo/MONDO_0006714,coronary aneurysm +13.910326,MONDO:0006888,http://purl.obolibrary.org/obo/MONDO_0006888,paraneoplastic polyneuropathy +13.910326,MONDO:0007537,http://purl.obolibrary.org/obo/MONDO_0007537,lateral meningocele syndrome +13.910326,MONDO:0007752,http://purl.obolibrary.org/obo/MONDO_0007752,hyperheparinemia +13.910326,MONDO:0007989,http://purl.obolibrary.org/obo/MONDO_0007989,congenital microcoria +13.910326,MONDO:0008219,http://purl.obolibrary.org/obo/MONDO_0008219,pemphigus vulgaris +13.910326,MONDO:0008620,http://purl.obolibrary.org/obo/MONDO_0008620,upper limb mesomelic dysplasia +13.910326,MONDO:0008996,http://purl.obolibrary.org/obo/MONDO_0008996,COACH syndrome 1 +13.910326,MONDO:0009049,http://purl.obolibrary.org/obo/MONDO_0009049,Cushing syndrome due to macronodular adrenal hyperplasia +13.910326,MONDO:0009138,http://purl.obolibrary.org/obo/MONDO_0009138,dysosteosclerosis +13.910326,MONDO:0009168,http://purl.obolibrary.org/obo/MONDO_0009168,Fowler syndrome +13.910326,MONDO:0009787,http://purl.obolibrary.org/obo/MONDO_0009787,3-methylglutaconic aciduria type 3 +13.910326,MONDO:0009946,http://purl.obolibrary.org/obo/MONDO_0009946,hemolytic anemia due to pyrimidine 5' nucleotidase deficiency +13.910326,MONDO:0010422,http://purl.obolibrary.org/obo/MONDO_0010422,Alzheimer disease 16 +13.910326,MONDO:0010598,http://purl.obolibrary.org/obo/MONDO_0010598,glycogen storage disease IXa +13.910326,MONDO:0010984,http://purl.obolibrary.org/obo/MONDO_0010984,Usher syndrome type 1D +13.910326,MONDO:0011038,http://purl.obolibrary.org/obo/MONDO_0011038,cerebellar ataxia-areflexia-pes cavus-optic atrophy-sensorineural hearing loss syndrome +13.910326,MONDO:0011099,http://purl.obolibrary.org/obo/MONDO_0011099,human HOXA1 syndromes +13.910326,MONDO:0011465,http://purl.obolibrary.org/obo/MONDO_0011465,infundibulocystic basal cell carcinoma +13.910326,MONDO:0012675,http://purl.obolibrary.org/obo/MONDO_0012675,corticosteroid-binding globulin deficiency +13.910326,MONDO:0013540,http://purl.obolibrary.org/obo/MONDO_0013540,deafness-lymphedema-leukemia syndrome +13.910326,MONDO:0013873,http://purl.obolibrary.org/obo/MONDO_0013873,IMAGe syndrome +13.910326,MONDO:0014720,http://purl.obolibrary.org/obo/MONDO_0014720,autosomal dominant optic atrophy plus syndrome +13.910326,MONDO:0015228,http://purl.obolibrary.org/obo/MONDO_0015228,pentasomy X +13.910326,MONDO:0015360,http://purl.obolibrary.org/obo/MONDO_0015360,autosomal dominant hereditary axonal motor and sensory neuropathy +13.910326,MONDO:0016010,http://purl.obolibrary.org/obo/MONDO_0016010,vitamin K-antagonist embryofetopathy +13.910326,MONDO:0016039,http://purl.obolibrary.org/obo/MONDO_0016039,infantile digital fibromatosis +13.910326,MONDO:0016709,http://purl.obolibrary.org/obo/MONDO_0016709,anaplastic/large cell medulloblastoma +13.910326,MONDO:0017419,http://purl.obolibrary.org/obo/MONDO_0017419,non-syndromic amelia +13.910326,MONDO:0017584,http://purl.obolibrary.org/obo/MONDO_0017584,Sagliker syndrome +13.910326,MONDO:0018654,http://purl.obolibrary.org/obo/MONDO_0018654,idiopathic dropped head syndrome +13.910326,MONDO:0018718,http://purl.obolibrary.org/obo/MONDO_0018718,vascular tumor with associated anomalies +13.910326,MONDO:0018835,http://purl.obolibrary.org/obo/MONDO_0018835,nodular regenerative hyperplasia of the liver +13.910326,MONDO:0019393,http://purl.obolibrary.org/obo/MONDO_0019393,idiopathic malabsorption due to bile acid synthesis defects +13.910326,MONDO:0019455,http://purl.obolibrary.org/obo/MONDO_0019455,acute panmyelosis with myelofibrosis +13.910326,MONDO:0019490,http://purl.obolibrary.org/obo/MONDO_0019490,progressive familial heart block +13.910326,MONDO:0019983,http://purl.obolibrary.org/obo/MONDO_0019983,multiloculated renal cyst +13.910326,MONDO:0021155,http://purl.obolibrary.org/obo/MONDO_0021155,X-linked cone-rod dystrophy +13.910326,MONDO:0021394,http://purl.obolibrary.org/obo/MONDO_0021394,polyp of vagina +13.910326,MONDO:0021475,http://purl.obolibrary.org/obo/MONDO_0021475,benign neoplasm of nasal cavity +13.910326,MONDO:0033818,http://purl.obolibrary.org/obo/MONDO_0033818,Terrien marginal degeneration +13.910326,MONDO:0100349,http://purl.obolibrary.org/obo/MONDO_0100349,COACH syndrome +13.910326,MOP:0000627,http://purl.obolibrary.org/obo/MOP_0000627,none +13.910326,MOP:0000691,http://purl.obolibrary.org/obo/MOP_0000691,none +13.910326,NCBITaxon:12179,http://purl.obolibrary.org/obo/NCBITaxon_12179,none +13.910326,NCBITaxon:122928,http://purl.obolibrary.org/obo/NCBITaxon_122928,none +13.910326,NCBITaxon:1312872,http://purl.obolibrary.org/obo/NCBITaxon_1312872,none +13.910326,NCBITaxon:1312873,http://purl.obolibrary.org/obo/NCBITaxon_1312873,none +13.910326,NCBITaxon:1445966,http://purl.obolibrary.org/obo/NCBITaxon_1445966,none +13.910326,NCBITaxon:1489798,http://purl.obolibrary.org/obo/NCBITaxon_1489798,none +13.910326,NCBITaxon:1489875,http://purl.obolibrary.org/obo/NCBITaxon_1489875,none +13.910326,NCBITaxon:1513458,http://purl.obolibrary.org/obo/NCBITaxon_1513458,none +13.910326,NCBITaxon:159150,http://purl.obolibrary.org/obo/NCBITaxon_159150,none +13.910326,NCBITaxon:162013,http://purl.obolibrary.org/obo/NCBITaxon_162013,none +13.910326,NCBITaxon:1783275,http://purl.obolibrary.org/obo/NCBITaxon_1783275,none +13.910326,NCBITaxon:213888,http://purl.obolibrary.org/obo/NCBITaxon_213888,none +13.910326,NCBITaxon:2231387,http://purl.obolibrary.org/obo/NCBITaxon_2231387,none +13.910326,NCBITaxon:2499400,http://purl.obolibrary.org/obo/NCBITaxon_2499400,none +13.910326,NCBITaxon:2501963,http://purl.obolibrary.org/obo/NCBITaxon_2501963,none +13.910326,NCBITaxon:2560195,http://purl.obolibrary.org/obo/NCBITaxon_2560195,Orthorubulavirus +13.910326,NCBITaxon:2560808,http://purl.obolibrary.org/obo/NCBITaxon_2560808,none +13.910326,NCBITaxon:28354,http://purl.obolibrary.org/obo/NCBITaxon_28354,none +13.910326,NCBITaxon:292440,http://purl.obolibrary.org/obo/NCBITaxon_292440,none +13.910326,NCBITaxon:31559,http://purl.obolibrary.org/obo/NCBITaxon_31559,none +13.910326,NCBITaxon:32290,http://purl.obolibrary.org/obo/NCBITaxon_32290,none +13.910326,NCBITaxon:33380,http://purl.obolibrary.org/obo/NCBITaxon_33380,none +13.910326,NCBITaxon:3372,http://purl.obolibrary.org/obo/NCBITaxon_3372,none +13.910326,NCBITaxon:3385,http://purl.obolibrary.org/obo/NCBITaxon_3385,none +13.910326,NCBITaxon:3386,http://purl.obolibrary.org/obo/NCBITaxon_3386,none +13.910326,NCBITaxon:3387,http://purl.obolibrary.org/obo/NCBITaxon_3387,none +13.910326,NCBITaxon:35082,http://purl.obolibrary.org/obo/NCBITaxon_35082,Cryptosporidiidae +13.910326,NCBITaxon:3629,http://purl.obolibrary.org/obo/NCBITaxon_3629,none +13.910326,NCBITaxon:366501,http://purl.obolibrary.org/obo/NCBITaxon_366501,none +13.910326,NCBITaxon:37194,http://purl.obolibrary.org/obo/NCBITaxon_37194,none +13.910326,NCBITaxon:3781,http://purl.obolibrary.org/obo/NCBITaxon_3781,none +13.910326,NCBITaxon:38837,http://purl.obolibrary.org/obo/NCBITaxon_38837,none +13.910326,NCBITaxon:41711,http://purl.obolibrary.org/obo/NCBITaxon_41711,none +13.910326,NCBITaxon:42882,http://purl.obolibrary.org/obo/NCBITaxon_42882,none +13.910326,NCBITaxon:443947,http://purl.obolibrary.org/obo/NCBITaxon_443947,none +13.910326,NCBITaxon:47316,http://purl.obolibrary.org/obo/NCBITaxon_47316,none +13.910326,NCBITaxon:47740,http://purl.obolibrary.org/obo/NCBITaxon_47740,none +13.910326,NCBITaxon:51025,http://purl.obolibrary.org/obo/NCBITaxon_51025,Oxyuroidea +13.910326,NCBITaxon:5303,http://purl.obolibrary.org/obo/NCBITaxon_5303,none +13.910326,NCBITaxon:5806,http://purl.obolibrary.org/obo/NCBITaxon_5806,Cryptosporidium +13.910326,NCBITaxon:59916,http://purl.obolibrary.org/obo/NCBITaxon_59916,none +13.910326,NCBITaxon:686617,http://purl.obolibrary.org/obo/NCBITaxon_686617,none +13.910326,NCBITaxon:70426,http://purl.obolibrary.org/obo/NCBITaxon_70426,Oxyuridomorpha +13.910326,NCBITaxon:7222,http://purl.obolibrary.org/obo/NCBITaxon_7222,none +13.910326,NCBITaxon:7231,http://purl.obolibrary.org/obo/NCBITaxon_7231,none +13.910326,NCBITaxon:7243,http://purl.obolibrary.org/obo/NCBITaxon_7243,none +13.910326,NCBITaxon:8107,http://purl.obolibrary.org/obo/NCBITaxon_8107,none +13.910326,NCBITaxon:81697,http://purl.obolibrary.org/obo/NCBITaxon_81697,none +13.910326,NCBITaxon:977912,http://purl.obolibrary.org/obo/NCBITaxon_977912,none +13.910326,NCBITaxon:98805,http://purl.obolibrary.org/obo/NCBITaxon_98805,none +13.910326,NCBITaxon:98808,http://purl.obolibrary.org/obo/NCBITaxon_98808,none +13.910326,PR:000001169,http://purl.obolibrary.org/obo/PR_000001169,5-hydroxytryptamine receptor 5A +13.910326,PR:000001517,http://purl.obolibrary.org/obo/PR_000001517,G-protein coupled receptor 161 +13.910326,PR:000001616,http://purl.obolibrary.org/obo/PR_000001616,muscarinic acetylcholine receptor M4 +13.910326,PR:000001637,http://purl.obolibrary.org/obo/PR_000001637,probable G-protein coupled receptor 153 +13.910326,PR:000001842,http://purl.obolibrary.org/obo/PR_000001842,T-lymphocyte surface antigen Ly-9 +13.910326,PR:000001913,http://purl.obolibrary.org/obo/PR_000001913,potassium channel subfamily K member 16 +13.910326,PR:000002157,http://purl.obolibrary.org/obo/PR_000002157,ecto-ADP-ribosyltransferase 5 +13.910326,PR:000003285,http://purl.obolibrary.org/obo/PR_000003285,TRAF-interacting protein with FHA domain-containing protein +13.910326,PR:000003557,http://purl.obolibrary.org/obo/PR_000003557,ATP-binding cassette sub-family C member 12 +13.910326,PR:000003584,http://purl.obolibrary.org/obo/PR_000003584,actin-binding LIM protein 1 +13.910326,PR:000003624,http://purl.obolibrary.org/obo/PR_000003624,alkaline ceramidase 2 +13.910326,PR:000003658,http://purl.obolibrary.org/obo/PR_000003658,"malonate--CoA ligase ACSF3, mitochondrial" +13.910326,PR:000003826,http://purl.obolibrary.org/obo/PR_000003826,cytosolic carboxypeptidase 6 +13.910326,PR:000003827,http://purl.obolibrary.org/obo/PR_000003827,cytosolic carboxypeptidase-like protein 5 +13.910326,PR:000003932,http://purl.obolibrary.org/obo/PR_000003932,2-aminomuconic semialdehyde dehydrogenase +13.910326,PR:000004106,http://purl.obolibrary.org/obo/PR_000004106,AP-3 complex subunit delta-1 +13.910326,PR:000004222,http://purl.obolibrary.org/obo/PR_000004222,Rho GTPase-activating protein 15 +13.910326,PR:000004228,http://purl.obolibrary.org/obo/PR_000004228,Rho GTPase-activating protein 22 +13.910326,PR:000004326,http://purl.obolibrary.org/obo/PR_000004326,arylsulfatase G +13.910326,PR:000004353,http://purl.obolibrary.org/obo/PR_000004353,ankyrin repeat and SOCS box protein 4 +13.910326,PR:000004406,http://purl.obolibrary.org/obo/PR_000004406,activating transcription factor 7-interacting protein 2 +13.910326,PR:000004414,http://purl.obolibrary.org/obo/PR_000004414,cysteine protease ATG4A +13.910326,PR:000004742,http://purl.obolibrary.org/obo/PR_000004742,betaine--homocysteine S-methyltransferase 1 +13.910326,PR:000004834,http://purl.obolibrary.org/obo/PR_000004834,brain-specific homeobox protein +13.910326,PR:000005059,http://purl.obolibrary.org/obo/PR_000005059,Cas scaffolding protein family member 4 +13.910326,PR:000005080,http://purl.obolibrary.org/obo/PR_000005080,carbonyl reductase family member 4 +13.910326,PR:000005346,http://purl.obolibrary.org/obo/PR_000005346,centrosomal protein of 192 kDa +13.910326,PR:000005354,http://purl.obolibrary.org/obo/PR_000005354,centrosomal protein of 68 kDa +13.910326,PR:000005392,http://purl.obolibrary.org/obo/PR_000005392,CGG triplet repeat-binding protein 1 +13.910326,PR:000005633,http://purl.obolibrary.org/obo/PR_000005633,protein cornichon +13.910326,PR:000005676,http://purl.obolibrary.org/obo/PR_000005676,contactin-associated protein-like 4 +13.910326,PR:000005680,http://purl.obolibrary.org/obo/PR_000005680,protein cordon-bleu +13.910326,PR:000005699,http://purl.obolibrary.org/obo/PR_000005699,collagen alpha-1(XV) chain +13.910326,PR:000005787,http://purl.obolibrary.org/obo/PR_000005787,"cytochrome c oxidase subunit 7A2, mitochondrial" +13.910326,PR:000006156,http://purl.obolibrary.org/obo/PR_000006156,cytohesin-4 +13.910326,PR:000006199,http://purl.obolibrary.org/obo/PR_000006199,none +13.910326,PR:000006285,http://purl.obolibrary.org/obo/PR_000006285,deleted in azoospermia protein 2 +13.910326,PR:000006425,http://purl.obolibrary.org/obo/PR_000006425,elongator complex protein 5 +13.910326,PR:000006769,http://purl.obolibrary.org/obo/PR_000006769,dymeclin +13.910326,PR:000006865,http://purl.obolibrary.org/obo/PR_000006865,E2F-associated phosphoprotein +13.910326,PR:000006980,http://purl.obolibrary.org/obo/PR_000006980,eukaryotic translation initiation factor 3 subunit H +13.910326,PR:000007342,http://purl.obolibrary.org/obo/PR_000007342,fatty acyl-CoA reductase 2 +13.910326,PR:000007385,http://purl.obolibrary.org/obo/PR_000007385,F-box/LRR-repeat protein 7 +13.910326,PR:000007441,http://purl.obolibrary.org/obo/PR_000007441,Fc receptor-like protein 2 +13.910326,PR:000007455,http://purl.obolibrary.org/obo/PR_000007455,protein fem-1 homolog B +13.910326,PR:000007637,http://purl.obolibrary.org/obo/PR_000007637,forkhead box protein N2 +13.910326,PR:000007655,http://purl.obolibrary.org/obo/PR_000007655,GSK-3-binding protein FRAT2 +13.910326,PR:000007665,http://purl.obolibrary.org/obo/PR_000007665,FERM domain-containing protein 3 +13.910326,PR:000007744,http://purl.obolibrary.org/obo/PR_000007744,Ras GTPase-activating protein-binding protein 2 +13.910326,PR:000007783,http://purl.obolibrary.org/obo/PR_000007783,gamma-aminobutyric acid receptor subunit rho-2 +13.910326,PR:000008033,http://purl.obolibrary.org/obo/PR_000008033,Golgi-associated plant pathogenesis-related protein 1 +13.910326,PR:000008100,http://purl.obolibrary.org/obo/PR_000008100,guanine nucleotide-binding protein subunit beta-4 +13.910326,PR:000008104,http://purl.obolibrary.org/obo/PR_000008104,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-11 +13.910326,PR:000008341,http://purl.obolibrary.org/obo/PR_000008341,gametocyte-specific factor 1 +13.910326,PR:000008347,http://purl.obolibrary.org/obo/PR_000008347,guanylate cyclase activator 2B +13.910326,PR:000008504,http://purl.obolibrary.org/obo/PR_000008504,E3 ubiquitin-protein ligase HECW2 +13.910326,PR:000008510,http://purl.obolibrary.org/obo/PR_000008510,hepatocyte cell adhesion molecule +13.910326,PR:000008837,http://purl.obolibrary.org/obo/PR_000008837,5-hydroxytryptamine receptor 3E +13.910326,PR:000008937,http://purl.obolibrary.org/obo/PR_000008937,intraflagellar transport protein 74 +13.910326,PR:000008988,http://purl.obolibrary.org/obo/PR_000008988,interleukin-1 family member 5 +13.910326,PR:000009013,http://purl.obolibrary.org/obo/PR_000009013,mitochondrial inner membrane protease subunit 2 +13.910326,PR:000009118,http://purl.obolibrary.org/obo/PR_000009118,isthmin-1 +13.910326,PR:000009193,http://purl.obolibrary.org/obo/PR_000009193,none +13.910326,PR:000009269,http://purl.obolibrary.org/obo/PR_000009269,calcium-activated potassium channel subunit beta-4 +13.910326,PR:000009375,http://purl.obolibrary.org/obo/PR_000009375,kelch-like protein 12 +13.910326,PR:000009424,http://purl.obolibrary.org/obo/PR_000009424,NKG2-F type II integral membrane protein +13.910326,PR:000009438,http://purl.obolibrary.org/obo/PR_000009438,importin subunit alpha-8 +13.910326,PR:000009470,http://purl.obolibrary.org/obo/PR_000009470,"keratin, type I cuticular Ha2" +13.910326,PR:000009937,http://purl.obolibrary.org/obo/PR_000009937,netrin-G1 ligand +13.910326,PR:000010047,http://purl.obolibrary.org/obo/PR_000010047,transcription factor MafA +13.910326,PR:000010253,http://purl.obolibrary.org/obo/PR_000010253,mucolipin-2 +13.910326,PR:000010254,http://purl.obolibrary.org/obo/PR_000010254,mucolipin-3 +13.910326,PR:000010285,http://purl.obolibrary.org/obo/PR_000010285,mediator of RNA polymerase II transcription subunit 13-like +13.910326,PR:000010342,http://purl.obolibrary.org/obo/PR_000010342,EEF1A lysine methyltransferase 2 +13.910326,PR:000010394,http://purl.obolibrary.org/obo/PR_000010394,melanoma inhibitory activity protein 2 +13.910326,PR:000010554,http://purl.obolibrary.org/obo/PR_000010554,myelin protein zero-like protein 1 +13.910326,PR:000010563,http://purl.obolibrary.org/obo/PR_000010563,melanoregulin +13.910326,PR:000010568,http://purl.obolibrary.org/obo/PR_000010568,"rRNA methyltransferase 1, mitochondrial" +13.910326,PR:000010735,http://purl.obolibrary.org/obo/PR_000010735,myotubularin-related protein 14 +13.910326,PR:000010738,http://purl.obolibrary.org/obo/PR_000010738,myotubularin-related protein 4 +13.910326,PR:000010741,http://purl.obolibrary.org/obo/PR_000010741,myotubularin-related protein 8 +13.910326,PR:000010860,http://purl.obolibrary.org/obo/PR_000010860,myosin-If +13.910326,PR:000010992,http://purl.obolibrary.org/obo/PR_000010992,"asparagine--tRNA ligase, cytoplasmic" +13.910326,PR:000011081,http://purl.obolibrary.org/obo/PR_000011081,"acyl carrier protein, mitochondrial" +13.910326,PR:000011129,http://purl.obolibrary.org/obo/PR_000011129,serine/threonine-protein kinase Nek3 +13.910326,PR:000011488,http://purl.obolibrary.org/obo/PR_000011488,U8 snoRNA-decapping enzyme +13.910326,PR:000011566,http://purl.obolibrary.org/obo/PR_000011566,none +13.910326,PR:000011577,http://purl.obolibrary.org/obo/PR_000011577,2'-5'-oligoadenylate synthase-like protein 1 +13.910326,PR:000011581,http://purl.obolibrary.org/obo/PR_000011581,ornithine decarboxylase antizyme 3 +13.910326,PR:000012264,http://purl.obolibrary.org/obo/PR_000012264,terminal nucleotidyltransferase 4B +13.910326,PR:000012345,http://purl.obolibrary.org/obo/PR_000012345,protocadherin-12 +13.910326,PR:000012350,http://purl.obolibrary.org/obo/PR_000012350,protocadherin-20 +13.910326,PR:000012414,http://purl.obolibrary.org/obo/PR_000012414,Polycomb group RING finger protein 6 +13.910326,PR:000012527,http://purl.obolibrary.org/obo/PR_000012527,Na(+)/H(+) exchange regulatory cofactor NHE-RF4 +13.910326,PR:000012818,http://purl.obolibrary.org/obo/PR_000012818,placenta-specific protein 4 +13.910326,PR:000012833,http://purl.obolibrary.org/obo/PR_000012833,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase delta-3" +13.910326,PR:000012855,http://purl.obolibrary.org/obo/PR_000012855,pleckstrin homology domain-containing family A member 3 +13.910326,PR:000012952,http://purl.obolibrary.org/obo/PR_000012952,proline-rich nuclear receptor coactivator 2 +13.910326,PR:000012978,http://purl.obolibrary.org/obo/PR_000012978,DNA polymerase lambda +13.910326,PR:000013244,http://purl.obolibrary.org/obo/PR_000013244,serine/threonine-protein kinase PRKX +13.910326,PR:000013350,http://purl.obolibrary.org/obo/PR_000013350,pregnancy-specific beta-1-glycoprotein 2 +13.910326,PR:000013619,http://purl.obolibrary.org/obo/PR_000013619,Ras-related protein Rab-3C +13.910326,PR:000013693,http://purl.obolibrary.org/obo/PR_000013693,ankycorbin +13.910326,PR:000013694,http://purl.obolibrary.org/obo/PR_000013694,retinoic acid-induced protein 2 +13.910326,PR:000013788,http://purl.obolibrary.org/obo/PR_000013788,pre-mRNA-splicing factor RBM22 +13.910326,PR:000013991,http://purl.obolibrary.org/obo/PR_000013991,rhophilin-2 +13.910326,PR:000014003,http://purl.obolibrary.org/obo/PR_000014003,RILP-like protein 2 +13.910326,PR:000014167,http://purl.obolibrary.org/obo/PR_000014167,retinitis pigmentosa 1-like 1 protein +13.910326,PR:000014370,http://purl.obolibrary.org/obo/PR_000014370,RWD domain-containing protein 1 +13.910326,PR:000014472,http://purl.obolibrary.org/obo/PR_000014472,ribosome maturation protein SBDS +13.910326,PR:000014755,http://purl.obolibrary.org/obo/PR_000014755,A-kinase anchor protein 17A +13.910326,PR:000014957,http://purl.obolibrary.org/obo/PR_000014957,monocarboxylate transporter 9 +13.910326,PR:000014968,http://purl.obolibrary.org/obo/PR_000014968,vesicular acetylcholine transporter +13.910326,PR:000015070,http://purl.obolibrary.org/obo/PR_000015070,"solute carrier family 2, facilitated glucose transporter member 7" +13.910326,PR:000015127,http://purl.obolibrary.org/obo/PR_000015127,zinc transporter ZIP13 +13.910326,PR:000015219,http://purl.obolibrary.org/obo/PR_000015219,sodium/hydrogen exchanger 7 +13.910326,PR:000015458,http://purl.obolibrary.org/obo/PR_000015458,SUN domain-containing protein 5 +13.910326,PR:000015481,http://purl.obolibrary.org/obo/PR_000015481,spermatogenesis-associated protein 16 +13.910326,PR:000015533,http://purl.obolibrary.org/obo/PR_000015533,serine protease inhibitor Kazal-type 2 +13.910326,PR:000015669,http://purl.obolibrary.org/obo/PR_000015669,afadin- and alpha-actinin-binding protein +13.910326,PR:000015820,http://purl.obolibrary.org/obo/PR_000015820,sulfotransferase 1A4 +13.910326,PR:000015823,http://purl.obolibrary.org/obo/PR_000015823,sulfotransferase 1C4 +13.910326,PR:000015926,http://purl.obolibrary.org/obo/PR_000015926,small EDRK-rich factor 1 +13.910326,PR:000016130,http://purl.obolibrary.org/obo/PR_000016130,tubulin-specific chaperone cofactor E-like protein +13.910326,PR:000016217,http://purl.obolibrary.org/obo/PR_000016217,tudor domain-containing protein 3 +13.910326,PR:000016309,http://purl.obolibrary.org/obo/PR_000016309,threonine synthase-like 2 +13.910326,PR:000016445,http://purl.obolibrary.org/obo/PR_000016445,tropomodulin-2 +13.910326,PR:000016501,http://purl.obolibrary.org/obo/PR_000016501,tenascin-N +13.910326,PR:000017088,http://purl.obolibrary.org/obo/PR_000017088,protein unc-13 homolog C +13.910326,PR:000017112,http://purl.obolibrary.org/obo/PR_000017112,uroplakin-1a +13.910326,PR:000017152,http://purl.obolibrary.org/obo/PR_000017152,ubiquitin carboxyl-terminal hydrolase 16 +13.910326,PR:000017176,http://purl.obolibrary.org/obo/PR_000017176,ubiquitin carboxyl-terminal hydrolase 37 +13.910326,PR:000017185,http://purl.obolibrary.org/obo/PR_000017185,ubiquitin carboxyl-terminal hydrolase 46 +13.910326,PR:000017187,http://purl.obolibrary.org/obo/PR_000017187,ubiquitin carboxyl-terminal hydrolase 48 +13.910326,PR:000017259,http://purl.obolibrary.org/obo/PR_000017259,"valine--tRNA ligase, mitochondrial" +13.910326,PR:000017314,http://purl.obolibrary.org/obo/PR_000017314,vascular non-inflammatory molecule 2 +13.910326,PR:000017315,http://purl.obolibrary.org/obo/PR_000017315,vascular non-inflammatory molecule 3 +13.910326,PR:000017361,http://purl.obolibrary.org/obo/PR_000017361,von Willebrand factor A domain-containing protein 1 +13.910326,PR:000017571,http://purl.obolibrary.org/obo/PR_000017571,zinc finger and BTB domain-containing protein 25 +13.910326,PR:000017627,http://purl.obolibrary.org/obo/PR_000017627,zinc finger homeobox protein 2 +13.910326,PR:000017675,http://purl.obolibrary.org/obo/PR_000017675,zinc finger protein with KRAB and SCAN domains 3 +13.910326,PR:000017859,http://purl.obolibrary.org/obo/PR_000017859,zinc finger protein 385A +13.910326,PR:000018203,http://purl.obolibrary.org/obo/PR_000018203,NFX1-type zinc finger-containing protein 1 +13.910326,PR:000018237,http://purl.obolibrary.org/obo/PR_000018237,ZW10 interactor +13.910326,PR:000021986,http://purl.obolibrary.org/obo/PR_000021986,none +13.910326,PR:000022177,http://purl.obolibrary.org/obo/PR_000022177,none +13.910326,PR:000022325,http://purl.obolibrary.org/obo/PR_000022325,none +13.910326,PR:000022417,http://purl.obolibrary.org/obo/PR_000022417,none +13.910326,PR:000022471,http://purl.obolibrary.org/obo/PR_000022471,transcriptional regulatory protein DpiA +13.910326,PR:000022665,http://purl.obolibrary.org/obo/PR_000022665,none +13.910326,PR:000022845,http://purl.obolibrary.org/obo/PR_000022845,none +13.910326,PR:000022911,http://purl.obolibrary.org/obo/PR_000022911,none +13.910326,PR:000023136,http://purl.obolibrary.org/obo/PR_000023136,none +13.910326,PR:000023308,http://purl.obolibrary.org/obo/PR_000023308,none +13.910326,PR:000023600,http://purl.obolibrary.org/obo/PR_000023600,none +13.910326,PR:000023602,http://purl.obolibrary.org/obo/PR_000023602,none +13.910326,PR:000023853,http://purl.obolibrary.org/obo/PR_000023853,none +13.910326,PR:000026089,http://purl.obolibrary.org/obo/PR_000026089,translation initiation factor 2 subunit 3/gamma +13.910326,PR:000029090,http://purl.obolibrary.org/obo/PR_000029090,"atypical kinase COQ8B, mitochondrial" +13.910326,PR:000029118,http://purl.obolibrary.org/obo/PR_000029118,adenylate kinase 7 +13.910326,PR:000029392,http://purl.obolibrary.org/obo/PR_000029392,probable ATP-dependent RNA helicase DDX53 +13.910326,PR:000029660,http://purl.obolibrary.org/obo/PR_000029660,OCIA domain-containing protein 1 +13.910326,PR:000029828,http://purl.obolibrary.org/obo/PR_000029828,probable tRNA pseudouridine synthase 1 +13.910326,PR:000030378,http://purl.obolibrary.org/obo/PR_000030378,PDZ domain-containing protein GIPC3 +13.910326,PR:000030577,http://purl.obolibrary.org/obo/PR_000030577,aurora kinase A and ninein-interacting protein +13.910326,PR:000030703,http://purl.obolibrary.org/obo/PR_000030703,leucine-rich repeat and fibronectin type-III domain-containing protein 2 +13.910326,PR:000030747,http://purl.obolibrary.org/obo/PR_000030747,ribosomal RNA-processing protein 8 +13.910326,PR:000030791,http://purl.obolibrary.org/obo/PR_000030791,ubiquitin-conjugating enzyme E2 W +13.910326,PR:000030842,http://purl.obolibrary.org/obo/PR_000030842,tripartite motif-containing protein 26 +13.910326,PR:000030858,http://purl.obolibrary.org/obo/PR_000030858,natural cytotoxicity triggering receptor 3 ligand 1 +13.910326,PR:000030918,http://purl.obolibrary.org/obo/PR_000030918,pleckstrin homology domain-containing family A member 5 +13.910326,PR:000031109,http://purl.obolibrary.org/obo/PR_000031109,RNA helicase Mov10l1 +13.910326,PR:000031203,http://purl.obolibrary.org/obo/PR_000031203,probable glutathione peroxidase 8 +13.910326,PR:000031246,http://purl.obolibrary.org/obo/PR_000031246,"centriole, cilia and spindle-associated protein" +13.910326,PR:000031466,http://purl.obolibrary.org/obo/PR_000031466,killin +13.910326,PR:000031503,http://purl.obolibrary.org/obo/PR_000031503,HORMA domain-containing protein 2 +13.910326,PR:000031937,http://purl.obolibrary.org/obo/PR_000031937,nucleolar MIF4G domain-containing protein 1 +13.910326,PR:000032204,http://purl.obolibrary.org/obo/PR_000032204,E3 ubiquitin-protein ligase TRIM58 +13.910326,PR:000032256,http://purl.obolibrary.org/obo/PR_000032256,coiled-coil domain-containing protein 103 +13.910326,PR:000032492,http://purl.obolibrary.org/obo/PR_000032492,actin-histidine N-methyltransferase +13.910326,PR:000033366,http://purl.obolibrary.org/obo/PR_000033366,none +13.910326,PR:000035327,http://purl.obolibrary.org/obo/PR_000035327,none +13.910326,PR:O65499,http://purl.obolibrary.org/obo/PR_O65499,none +13.910326,PR:O74884,http://purl.obolibrary.org/obo/PR_O74884,none +13.910326,PR:O80725,http://purl.obolibrary.org/obo/PR_O80725,none +13.910326,PR:P01347,http://purl.obolibrary.org/obo/PR_P01347,none +13.910326,PR:P02293,http://purl.obolibrary.org/obo/PR_P02293,none +13.910326,PR:P05759,http://purl.obolibrary.org/obo/PR_P05759,none +13.910326,PR:P15274,http://purl.obolibrary.org/obo/PR_P15274,none +13.910326,PR:P19358,http://purl.obolibrary.org/obo/PR_P19358,none +13.910326,PR:P20812,http://purl.obolibrary.org/obo/PR_P20812,none +13.910326,PR:P21240,http://purl.obolibrary.org/obo/PR_P21240,none +13.910326,PR:P29829,http://purl.obolibrary.org/obo/PR_P29829,none +13.910326,PR:P32603,http://purl.obolibrary.org/obo/PR_P32603,none +13.910326,PR:P33300,http://purl.obolibrary.org/obo/PR_P33300,none +13.910326,PR:P33314,http://purl.obolibrary.org/obo/PR_P33314,none +13.910326,PR:P34092,http://purl.obolibrary.org/obo/PR_P34092,none +13.910326,PR:P34802,http://purl.obolibrary.org/obo/PR_P34802,none +13.910326,PR:P35085,http://purl.obolibrary.org/obo/PR_P35085,none +13.910326,PR:P37236,http://purl.obolibrary.org/obo/PR_P37236,none +13.910326,PR:P38717,http://purl.obolibrary.org/obo/PR_P38717,none +13.910326,PR:P40477,http://purl.obolibrary.org/obo/PR_P40477,none +13.910326,PR:P40537,http://purl.obolibrary.org/obo/PR_P40537,none +13.910326,PR:P41912,http://purl.obolibrary.org/obo/PR_P41912,none +13.910326,PR:P48422,http://purl.obolibrary.org/obo/PR_P48422,none +13.910326,PR:P49723,http://purl.obolibrary.org/obo/PR_P49723,none +13.910326,PR:P50105,http://purl.obolibrary.org/obo/PR_P50105,none +13.910326,PR:P87148,http://purl.obolibrary.org/obo/PR_P87148,none +13.910326,PR:Q01389,http://purl.obolibrary.org/obo/PR_Q01389,none +13.910326,PR:Q01842,http://purl.obolibrary.org/obo/PR_Q01842,none +13.910326,PR:Q05466,http://purl.obolibrary.org/obo/PR_Q05466,none +13.910326,PR:Q07098,http://purl.obolibrary.org/obo/PR_Q07098,none +13.910326,PR:Q09553,http://purl.obolibrary.org/obo/PR_Q09553,none +13.910326,PR:Q10192,http://purl.obolibrary.org/obo/PR_Q10192,none +13.910326,PR:Q2L4W6,http://purl.obolibrary.org/obo/PR_Q2L4W6,none +13.910326,PR:Q38824,http://purl.obolibrary.org/obo/PR_Q38824,none +13.910326,PR:Q38929,http://purl.obolibrary.org/obo/PR_Q38929,none +13.910326,PR:Q38997,http://purl.obolibrary.org/obo/PR_Q38997,none +13.910326,PR:Q39160,http://purl.obolibrary.org/obo/PR_Q39160,none +13.910326,PR:Q59WB9,http://purl.obolibrary.org/obo/PR_Q59WB9,none +13.910326,PR:Q5FVH8,http://purl.obolibrary.org/obo/PR_Q5FVH8,none +13.910326,PR:Q63994,http://purl.obolibrary.org/obo/PR_Q63994,none +13.910326,PR:Q6Q4D0,http://purl.obolibrary.org/obo/PR_Q6Q4D0,none +13.910326,PR:Q8GZM7,http://purl.obolibrary.org/obo/PR_Q8GZM7,none +13.910326,PR:Q92354,http://purl.obolibrary.org/obo/PR_Q92354,none +13.910326,PR:Q946J8,http://purl.obolibrary.org/obo/PR_Q946J8,none +13.910326,PR:Q94F47,http://purl.obolibrary.org/obo/PR_Q94F47,none +13.910326,PR:Q96318,http://purl.obolibrary.org/obo/PR_Q96318,none +13.910326,PR:Q9FMF7,http://purl.obolibrary.org/obo/PR_Q9FMF7,none +13.910326,PR:Q9FZ81,http://purl.obolibrary.org/obo/PR_Q9FZ81,none +13.910326,PR:Q9LTB2,http://purl.obolibrary.org/obo/PR_Q9LTB2,none +13.910326,PR:Q9M1S8,http://purl.obolibrary.org/obo/PR_Q9M1S8,none +13.910326,PR:Q9M271,http://purl.obolibrary.org/obo/PR_Q9M271,none +13.910326,PR:Q9SFB0,http://purl.obolibrary.org/obo/PR_Q9SFB0,none +13.910326,PR:Q9SR37,http://purl.obolibrary.org/obo/PR_Q9SR37,none +13.910326,PR:Q9ZRT5,http://purl.obolibrary.org/obo/PR_Q9ZRT5,none +13.910326,SO:0000382,http://purl.obolibrary.org/obo/SO_0000382,group_IIB_intron +13.910326,SO:0000403,http://purl.obolibrary.org/obo/SO_0000403,U14_snoRNA +13.910326,SO:0000454,http://purl.obolibrary.org/obo/SO_0000454,rasiRNA +13.910326,SO:0000572,http://purl.obolibrary.org/obo/SO_0000572,DJ_gene_segment +13.910326,SO:0000578,http://purl.obolibrary.org/obo/SO_0000578,snoRNA_encoding +13.910326,SO:0001544,http://purl.obolibrary.org/obo/SO_0001544,editing_variant +13.910326,SO:0001795,http://purl.obolibrary.org/obo/SO_0001795,regional_centromere +13.910326,SO:1001196,http://purl.obolibrary.org/obo/SO_1001196,cryptogene +13.910326,SO:1001271,http://purl.obolibrary.org/obo/SO_1001271,archaeal_intron +13.910326,UBERON:0001292,http://purl.obolibrary.org/obo/UBERON_0001292,distal convoluted tubule +13.910326,UBERON:0001411,http://purl.obolibrary.org/obo/UBERON_0001411,basilic vein +13.910326,UBERON:0001727,http://purl.obolibrary.org/obo/UBERON_0001727,taste bud +13.910326,UBERON:0002197,http://purl.obolibrary.org/obo/UBERON_0002197,median eminence of neurohypophysis +13.910326,UBERON:0002215,http://purl.obolibrary.org/obo/UBERON_0002215,synchondrosis +13.910326,UBERON:0002293,http://purl.obolibrary.org/obo/UBERON_0002293,costochondral joint +13.910326,UBERON:0002903,http://purl.obolibrary.org/obo/UBERON_0002903,lunate sulcus +13.910326,UBERON:0003488,http://purl.obolibrary.org/obo/UBERON_0003488,abdominal mammary gland +13.910326,UBERON:0003926,http://purl.obolibrary.org/obo/UBERON_0003926,photoreceptor outer segment layer +13.910326,UBERON:0003994,http://purl.obolibrary.org/obo/UBERON_0003994,pelvic ligament +13.910326,UBERON:0004624,http://purl.obolibrary.org/obo/UBERON_0004624,sacral vertebra 3 +13.910326,UBERON:0004873,http://purl.obolibrary.org/obo/UBERON_0004873,splanchnopleure +13.910326,UBERON:0005322,http://purl.obolibrary.org/obo/UBERON_0005322,mesonephric nephron +13.910326,UBERON:0005882,http://purl.obolibrary.org/obo/UBERON_0005882,neural tube alar plate +13.910326,UBERON:0005994,http://purl.obolibrary.org/obo/UBERON_0005994,chorda tendineae +13.910326,UBERON:0006293,http://purl.obolibrary.org/obo/UBERON_0006293,spleen primordium +13.910326,UBERON:0006356,http://purl.obolibrary.org/obo/UBERON_0006356,epigastric vein +13.910326,UBERON:0006435,http://purl.obolibrary.org/obo/UBERON_0006435,os penis +13.910326,UBERON:0006449,http://purl.obolibrary.org/obo/UBERON_0006449,third lumbar spinal cord segment +13.910326,UBERON:0006612,http://purl.obolibrary.org/obo/UBERON_0006612,shell +13.910326,UBERON:0007118,http://purl.obolibrary.org/obo/UBERON_0007118,umbilicus +13.910326,UBERON:0007284,http://purl.obolibrary.org/obo/UBERON_0007284,presumptive neural plate +13.910326,UBERON:0009501,http://purl.obolibrary.org/obo/UBERON_0009501,mesenchyme of fronto-nasal process +13.910326,UBERON:0009647,http://purl.obolibrary.org/obo/UBERON_0009647,tympanic membrane epithelium +13.910326,UBERON:0012337,http://purl.obolibrary.org/obo/UBERON_0012337,cauda equina +13.910326,UBERON:0014280,http://purl.obolibrary.org/obo/UBERON_0014280,piriform cortex layer 2 +13.910326,UBERON:0014534,http://purl.obolibrary.org/obo/UBERON_0014534,external medullary lamina of thalamus +13.910326,UBERON:0014840,http://purl.obolibrary.org/obo/UBERON_0014840,supracoracoideus muscle +13.910326,UBERON:0015189,http://purl.obolibrary.org/obo/UBERON_0015189,perineural vascular plexus +13.910326,UBERON:0016920,http://purl.obolibrary.org/obo/UBERON_0016920,descending trunk of arch of aorta +13.910326,UBERON:2001286,http://purl.obolibrary.org/obo/UBERON_2001286,caudal vein plexus +13.910326,UBERON:2001366,http://purl.obolibrary.org/obo/UBERON_2001366,tract of the postoptic commissure +13.910326,UBERON:2002051,http://purl.obolibrary.org/obo/UBERON_2002051,scale circulus +13.9591162,CHEBI:16733,http://purl.obolibrary.org/obo/CHEBI_16733,D-alpha-amino acid +13.9591162,CHEBI:17076,http://purl.obolibrary.org/obo/CHEBI_17076,streptomycin +13.9591162,CHEBI:17623,http://purl.obolibrary.org/obo/CHEBI_17623,cyclomaltodextrin +13.9591162,CHEBI:22744,http://purl.obolibrary.org/obo/CHEBI_22744,benzyl group +13.9591162,CHEBI:23448,http://purl.obolibrary.org/obo/CHEBI_23448,cyclic oligosaccharide +13.9591162,CHEBI:23456,http://purl.obolibrary.org/obo/CHEBI_23456,cyclodextrin +13.9591162,CHEBI:23775,http://purl.obolibrary.org/obo/CHEBI_23775,dihydroxy-5beta-cholanic acid +13.9591162,CHEBI:24698,http://purl.obolibrary.org/obo/CHEBI_24698,hydroxyflavone +13.9591162,CHEBI:27008,http://purl.obolibrary.org/obo/CHEBI_27008,tin molecular entity +13.9591162,CHEBI:33452,http://purl.obolibrary.org/obo/CHEBI_33452,benzylic group +13.9591162,CHEBI:3387,http://purl.obolibrary.org/obo/CHEBI_3387,carbamazepine +13.9591162,CHEBI:35523,http://purl.obolibrary.org/obo/CHEBI_35523,bronchodilator agent +13.9591162,CHEBI:35617,http://purl.obolibrary.org/obo/CHEBI_35617,flavouring agent +13.9591162,CHEBI:38631,http://purl.obolibrary.org/obo/CHEBI_38631,aminoalkylindole +13.9591162,CHEBI:39362,http://purl.obolibrary.org/obo/CHEBI_39362,mononitrophenol +13.9591162,CHEBI:51580,http://purl.obolibrary.org/obo/CHEBI_51580,phthalocyanines +13.9591162,CHEBI:60201,http://purl.obolibrary.org/obo/CHEBI_60201,perylenes +13.9591162,CHEBI:60425,http://purl.obolibrary.org/obo/CHEBI_60425,amyloid fibril +13.9591162,CHEBI:64276,http://purl.obolibrary.org/obo/CHEBI_64276,glutaraldehyde +13.9591162,CHEBI:64933,http://purl.obolibrary.org/obo/CHEBI_64933,melanin synthesis inhibitor +13.9591162,CHEBI:72581,http://purl.obolibrary.org/obo/CHEBI_72581,rotenones +13.9591162,CHEBI:74818,http://purl.obolibrary.org/obo/CHEBI_74818,heteroaryl hydroxy compound +13.9591162,CHEBI:82025,http://purl.obolibrary.org/obo/CHEBI_82025,napropamide +13.9591162,CHEBI:85184,http://purl.obolibrary.org/obo/CHEBI_85184,dihydroxycholanic acid +13.9591162,CHEBI:87114,http://purl.obolibrary.org/obo/CHEBI_87114,antibiotic fungicide +13.9591162,CL:0000872,http://purl.obolibrary.org/obo/CL_0000872,splenic marginal zone macrophage +13.9591162,CL:0002275,http://purl.obolibrary.org/obo/CL_0002275,pancreatic PP cell +13.9591162,CL:0002617,http://purl.obolibrary.org/obo/CL_0002617,adipocyte of breast +13.9591162,CL:0002623,http://purl.obolibrary.org/obo/CL_0002623,acinar cell of salivary gland +13.9591162,CL:0005015,http://purl.obolibrary.org/obo/CL_0005015,inner phalangeal cell +13.9591162,CL:1001596,http://purl.obolibrary.org/obo/CL_1001596,salivary gland glandular cell +13.9591162,DRUGBANK:DB00429,http://purl.obolibrary.org/obo/DRUGBANK_DB00429,none +13.9591162,DRUGBANK:DB00517,http://purl.obolibrary.org/obo/DRUGBANK_DB00517,none +13.9591162,DRUGBANK:DB00838,http://purl.obolibrary.org/obo/DRUGBANK_DB00838,none +13.9591162,DRUGBANK:DB01459,http://purl.obolibrary.org/obo/DRUGBANK_DB01459,none +13.9591162,DRUGBANK:DB01500,http://purl.obolibrary.org/obo/DRUGBANK_DB01500,none +13.9591162,DRUGBANK:DB02098,http://purl.obolibrary.org/obo/DRUGBANK_DB02098,none +13.9591162,DRUGBANK:DB02105,http://purl.obolibrary.org/obo/DRUGBANK_DB02105,none +13.9591162,DRUGBANK:DB02462,http://purl.obolibrary.org/obo/DRUGBANK_DB02462,none +13.9591162,DRUGBANK:DB03718,http://purl.obolibrary.org/obo/DRUGBANK_DB03718,none +13.9591162,DRUGBANK:DB04408,http://purl.obolibrary.org/obo/DRUGBANK_DB04408,none +13.9591162,DRUGBANK:DB04436,http://purl.obolibrary.org/obo/DRUGBANK_DB04436,none +13.9591162,DRUGBANK:DB04914,http://purl.obolibrary.org/obo/DRUGBANK_DB04914,none +13.9591162,DRUGBANK:DB04970,http://purl.obolibrary.org/obo/DRUGBANK_DB04970,none +13.9591162,DRUGBANK:DB05027,http://purl.obolibrary.org/obo/DRUGBANK_DB05027,none +13.9591162,DRUGBANK:DB05449,http://purl.obolibrary.org/obo/DRUGBANK_DB05449,none +13.9591162,DRUGBANK:DB05493,http://purl.obolibrary.org/obo/DRUGBANK_DB05493,none +13.9591162,DRUGBANK:DB05713,http://purl.obolibrary.org/obo/DRUGBANK_DB05713,none +13.9591162,DRUGBANK:DB06197,http://purl.obolibrary.org/obo/DRUGBANK_DB06197,none +13.9591162,DRUGBANK:DB06250,http://purl.obolibrary.org/obo/DRUGBANK_DB06250,none +13.9591162,DRUGBANK:DB06294,http://purl.obolibrary.org/obo/DRUGBANK_DB06294,none +13.9591162,DRUGBANK:DB06309,http://purl.obolibrary.org/obo/DRUGBANK_DB06309,none +13.9591162,DRUGBANK:DB08996,http://purl.obolibrary.org/obo/DRUGBANK_DB08996,none +13.9591162,DRUGBANK:DB09184,http://purl.obolibrary.org/obo/DRUGBANK_DB09184,none +13.9591162,DRUGBANK:DB09285,http://purl.obolibrary.org/obo/DRUGBANK_DB09285,none +13.9591162,DRUGBANK:DB09380,http://purl.obolibrary.org/obo/DRUGBANK_DB09380,none +13.9591162,DRUGBANK:DB10547,http://purl.obolibrary.org/obo/DRUGBANK_DB10547,none +13.9591162,DRUGBANK:DB11665,http://purl.obolibrary.org/obo/DRUGBANK_DB11665,none +13.9591162,DRUGBANK:DB11679,http://purl.obolibrary.org/obo/DRUGBANK_DB11679,none +13.9591162,DRUGBANK:DB11743,http://purl.obolibrary.org/obo/DRUGBANK_DB11743,none +13.9591162,DRUGBANK:DB11959,http://purl.obolibrary.org/obo/DRUGBANK_DB11959,none +13.9591162,DRUGBANK:DB12024,http://purl.obolibrary.org/obo/DRUGBANK_DB12024,none +13.9591162,DRUGBANK:DB12048,http://purl.obolibrary.org/obo/DRUGBANK_DB12048,none +13.9591162,DRUGBANK:DB12220,http://purl.obolibrary.org/obo/DRUGBANK_DB12220,none +13.9591162,DRUGBANK:DB12240,http://purl.obolibrary.org/obo/DRUGBANK_DB12240,none +13.9591162,DRUGBANK:DB12241,http://purl.obolibrary.org/obo/DRUGBANK_DB12241,none +13.9591162,DRUGBANK:DB12392,http://purl.obolibrary.org/obo/DRUGBANK_DB12392,none +13.9591162,DRUGBANK:DB12678,http://purl.obolibrary.org/obo/DRUGBANK_DB12678,none +13.9591162,DRUGBANK:DB12852,http://purl.obolibrary.org/obo/DRUGBANK_DB12852,none +13.9591162,DRUGBANK:DB13042,http://purl.obolibrary.org/obo/DRUGBANK_DB13042,none +13.9591162,DRUGBANK:DB13045,http://purl.obolibrary.org/obo/DRUGBANK_DB13045,none +13.9591162,DRUGBANK:DB13314,http://purl.obolibrary.org/obo/DRUGBANK_DB13314,none +13.9591162,DRUGBANK:DB13331,http://purl.obolibrary.org/obo/DRUGBANK_DB13331,none +13.9591162,DRUGBANK:DB13365,http://purl.obolibrary.org/obo/DRUGBANK_DB13365,none +13.9591162,DRUGBANK:DB13676,http://purl.obolibrary.org/obo/DRUGBANK_DB13676,none +13.9591162,DRUGBANK:DB13688,http://purl.obolibrary.org/obo/DRUGBANK_DB13688,none +13.9591162,DRUGBANK:DB13804,http://purl.obolibrary.org/obo/DRUGBANK_DB13804,none +13.9591162,DRUGBANK:DB13838,http://purl.obolibrary.org/obo/DRUGBANK_DB13838,none +13.9591162,DRUGBANK:DB13890,http://purl.obolibrary.org/obo/DRUGBANK_DB13890,none +13.9591162,DRUGBANK:DB14044,http://purl.obolibrary.org/obo/DRUGBANK_DB14044,none +13.9591162,DRUGBANK:DB14171,http://purl.obolibrary.org/obo/DRUGBANK_DB14171,none +13.9591162,DRUGBANK:DB14246,http://purl.obolibrary.org/obo/DRUGBANK_DB14246,none +13.9591162,DRUGBANK:DB14489,http://purl.obolibrary.org/obo/DRUGBANK_DB14489,none +13.9591162,DRUGBANK:DB14613,http://purl.obolibrary.org/obo/DRUGBANK_DB14613,none +13.9591162,DRUGBANK:DB14636,http://purl.obolibrary.org/obo/DRUGBANK_DB14636,none +13.9591162,DRUGBANK:DB15051,http://purl.obolibrary.org/obo/DRUGBANK_DB15051,none +13.9591162,DRUGBANK:DB16062,http://purl.obolibrary.org/obo/DRUGBANK_DB16062,none +13.9591162,DRUGBANK:DB16158,http://purl.obolibrary.org/obo/DRUGBANK_DB16158,none +13.9591162,DRUGBANK:DB16194,http://purl.obolibrary.org/obo/DRUGBANK_DB16194,none +13.9591162,GO:0000177,http://purl.obolibrary.org/obo/GO_0000177,cytoplasmic exosome (RNase complex) +13.9591162,GO:0000178,http://purl.obolibrary.org/obo/GO_0000178,exosome (RNase complex) +13.9591162,GO:0000810,http://purl.obolibrary.org/obo/GO_0000810,diacylglycerol diphosphate phosphatase activity +13.9591162,GO:0001672,http://purl.obolibrary.org/obo/GO_0001672,regulation of chromatin assembly or disassembly +13.9591162,GO:0001681,http://purl.obolibrary.org/obo/GO_0001681,sialate O-acetylesterase activity +13.9591162,GO:0001760,http://purl.obolibrary.org/obo/GO_0001760,aminocarboxymuconate-semialdehyde decarboxylase activity +13.9591162,GO:0001873,http://purl.obolibrary.org/obo/GO_0001873,polysaccharide immune receptor activity +13.9591162,GO:0002165,http://purl.obolibrary.org/obo/GO_0002165,instar larval or pupal development +13.9591162,GO:0002176,http://purl.obolibrary.org/obo/GO_0002176,male germ cell proliferation +13.9591162,GO:0004015,http://purl.obolibrary.org/obo/GO_0004015,adenosylmethionine-8-amino-7-oxononanoate transaminase activity +13.9591162,GO:0004082,http://purl.obolibrary.org/obo/GO_0004082,bisphosphoglycerate mutase activity +13.9591162,GO:0004109,http://purl.obolibrary.org/obo/GO_0004109,coproporphyrinogen oxidase activity +13.9591162,GO:0004304,http://purl.obolibrary.org/obo/GO_0004304,estrone sulfotransferase activity +13.9591162,GO:0004755,http://purl.obolibrary.org/obo/GO_0004755,"saccharopine dehydrogenase (NADP+, L-glutamate-forming) activity" +13.9591162,GO:0005723,http://purl.obolibrary.org/obo/GO_0005723,alpha-heterochromatin +13.9591162,GO:0005763,http://purl.obolibrary.org/obo/GO_0005763,mitochondrial small ribosomal subunit +13.9591162,GO:0006085,http://purl.obolibrary.org/obo/GO_0006085,acetyl-CoA biosynthetic process +13.9591162,GO:0006580,http://purl.obolibrary.org/obo/GO_0006580,ethanolamine metabolic process +13.9591162,GO:0006799,http://purl.obolibrary.org/obo/GO_0006799,polyphosphate biosynthetic process +13.9591162,GO:0006893,http://purl.obolibrary.org/obo/GO_0006893,Golgi to plasma membrane transport +13.9591162,GO:0007413,http://purl.obolibrary.org/obo/GO_0007413,axonal fasciculation +13.9591162,GO:0008029,http://purl.obolibrary.org/obo/GO_0008029,pentraxin receptor activity +13.9591162,GO:0008030,http://purl.obolibrary.org/obo/GO_0008030,neuronal pentraxin receptor activity +13.9591162,GO:0008277,http://purl.obolibrary.org/obo/GO_0008277,regulation of G protein-coupled receptor signaling pathway +13.9591162,GO:0008617,http://purl.obolibrary.org/obo/GO_0008617,guanosine metabolic process +13.9591162,GO:0008646,http://purl.obolibrary.org/obo/GO_0008646,none +13.9591162,GO:0008690,http://purl.obolibrary.org/obo/GO_0008690,3-deoxy-manno-octulosonate cytidylyltransferase activity +13.9591162,GO:0008760,http://purl.obolibrary.org/obo/GO_0008760,UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity +13.9591162,GO:0008763,http://purl.obolibrary.org/obo/GO_0008763,UDP-N-acetylmuramate-L-alanine ligase activity +13.9591162,GO:0008908,http://purl.obolibrary.org/obo/GO_0008908,isochorismatase activity +13.9591162,GO:0009020,http://purl.obolibrary.org/obo/GO_0009020,tRNA (guanosine-2'-O-)-methyltransferase activity +13.9591162,GO:0009038,http://purl.obolibrary.org/obo/GO_0009038,undecaprenol kinase activity +13.9591162,GO:0009188,http://purl.obolibrary.org/obo/GO_0009188,ribonucleoside diphosphate biosynthetic process +13.9591162,GO:0009202,http://purl.obolibrary.org/obo/GO_0009202,deoxyribonucleoside triphosphate biosynthetic process +13.9591162,GO:0009211,http://purl.obolibrary.org/obo/GO_0009211,pyrimidine deoxyribonucleoside triphosphate metabolic process +13.9591162,GO:0009214,http://purl.obolibrary.org/obo/GO_0009214,cyclic nucleotide catabolic process +13.9591162,GO:0009730,http://purl.obolibrary.org/obo/GO_0009730,detection of carbohydrate stimulus +13.9591162,GO:0009732,http://purl.obolibrary.org/obo/GO_0009732,detection of hexose stimulus +13.9591162,GO:0009785,http://purl.obolibrary.org/obo/GO_0009785,blue light signaling pathway +13.9591162,GO:0009786,http://purl.obolibrary.org/obo/GO_0009786,regulation of asymmetric cell division +13.9591162,GO:0010228,http://purl.obolibrary.org/obo/GO_0010228,vegetative to reproductive phase transition of meristem +13.9591162,GO:0010446,http://purl.obolibrary.org/obo/GO_0010446,response to alkaline pH +13.9591162,GO:0010570,http://purl.obolibrary.org/obo/GO_0010570,regulation of filamentous growth +13.9591162,GO:0010669,http://purl.obolibrary.org/obo/GO_0010669,epithelial structure maintenance +13.9591162,GO:0010822,http://purl.obolibrary.org/obo/GO_0010822,positive regulation of mitochondrion organization +13.9591162,GO:0014701,http://purl.obolibrary.org/obo/GO_0014701,junctional sarcoplasmic reticulum membrane +13.9591162,GO:0015451,http://purl.obolibrary.org/obo/GO_0015451,decarboxylation-driven active transmembrane transporter activity +13.9591162,GO:0015741,http://purl.obolibrary.org/obo/GO_0015741,fumarate transport +13.9591162,GO:0015742,http://purl.obolibrary.org/obo/GO_0015742,alpha-ketoglutarate transport +13.9591162,GO:0015825,http://purl.obolibrary.org/obo/GO_0015825,L-serine transport +13.9591162,GO:0015843,http://purl.obolibrary.org/obo/GO_0015843,methylammonium transport +13.9591162,GO:0015877,http://purl.obolibrary.org/obo/GO_0015877,biopterin transport +13.9591162,GO:0016056,http://purl.obolibrary.org/obo/GO_0016056,rhodopsin mediated signaling pathway +13.9591162,GO:0016664,http://purl.obolibrary.org/obo/GO_0016664,"oxidoreductase activity, acting on other nitrogenous compounds as donors, iron-sulfur protein as acceptor" +13.9591162,GO:0018710,http://purl.obolibrary.org/obo/GO_0018710,acetone carboxylase activity +13.9591162,GO:0018801,http://purl.obolibrary.org/obo/GO_0018801,glutaconyl-CoA decarboxylase activity +13.9591162,GO:0018873,http://purl.obolibrary.org/obo/GO_0018873,atrazine metabolic process +13.9591162,GO:0018961,http://purl.obolibrary.org/obo/GO_0018961,pentachlorophenol metabolic process +13.9591162,GO:0019165,http://purl.obolibrary.org/obo/GO_0019165,thiamine kinase activity +13.9591162,GO:0019387,http://purl.obolibrary.org/obo/GO_0019387,"methanogenesis, from methanol" +13.9591162,GO:0019742,http://purl.obolibrary.org/obo/GO_0019742,pentacyclic triterpenoid metabolic process +13.9591162,GO:0019744,http://purl.obolibrary.org/obo/GO_0019744,hopanoid metabolic process +13.9591162,GO:0030142,http://purl.obolibrary.org/obo/GO_0030142,COPI-coated Golgi to ER transport vesicle +13.9591162,GO:0030277,http://purl.obolibrary.org/obo/GO_0030277,maintenance of gastrointestinal epithelium +13.9591162,GO:0030907,http://purl.obolibrary.org/obo/GO_0030907,MBF transcription complex +13.9591162,GO:0030990,http://purl.obolibrary.org/obo/GO_0030990,intraciliary transport particle +13.9591162,GO:0031597,http://purl.obolibrary.org/obo/GO_0031597,cytosolic proteasome complex +13.9591162,GO:0032200,http://purl.obolibrary.org/obo/GO_0032200,telomere organization +13.9591162,GO:0032396,http://purl.obolibrary.org/obo/GO_0032396,inhibitory MHC class I receptor activity +13.9591162,GO:0032882,http://purl.obolibrary.org/obo/GO_0032882,regulation of chitin metabolic process +13.9591162,GO:0033306,http://purl.obolibrary.org/obo/GO_0033306,phytol metabolic process +13.9591162,GO:0033397,http://purl.obolibrary.org/obo/GO_0033397,zeatin metabolic process +13.9591162,GO:0033495,http://purl.obolibrary.org/obo/GO_0033495,ferulate biosynthetic process +13.9591162,GO:0033522,http://purl.obolibrary.org/obo/GO_0033522,histone H2A ubiquitination +13.9591162,GO:0033921,http://purl.obolibrary.org/obo/GO_0033921,"capsular-polysaccharide endo-1,3-alpha-galactosidase activity" +13.9591162,GO:0034287,http://purl.obolibrary.org/obo/GO_0034287,detection of monosaccharide stimulus +13.9591162,GO:0035177,http://purl.obolibrary.org/obo/GO_0035177,larval foraging behavior +13.9591162,GO:0035209,http://purl.obolibrary.org/obo/GO_0035209,pupal development +13.9591162,GO:0035990,http://purl.obolibrary.org/obo/GO_0035990,tendon cell differentiation +13.9591162,GO:0038129,http://purl.obolibrary.org/obo/GO_0038129,ERBB3 signaling pathway +13.9591162,GO:0042212,http://purl.obolibrary.org/obo/GO_0042212,cresol metabolic process +13.9591162,GO:0042930,http://purl.obolibrary.org/obo/GO_0042930,enterobactin transport +13.9591162,GO:0043611,http://purl.obolibrary.org/obo/GO_0043611,isoprene metabolic process +13.9591162,GO:0043646,http://purl.obolibrary.org/obo/GO_0043646,cephalosporin biosynthetic process +13.9591162,GO:0044384,http://purl.obolibrary.org/obo/GO_0044384,host outer membrane +13.9591162,GO:0045025,http://purl.obolibrary.org/obo/GO_0045025,mitochondrial degradosome +13.9591162,GO:0046154,http://purl.obolibrary.org/obo/GO_0046154,rhodopsin metabolic process +13.9591162,GO:0046322,http://purl.obolibrary.org/obo/GO_0046322,negative regulation of fatty acid oxidation +13.9591162,GO:0046676,http://purl.obolibrary.org/obo/GO_0046676,negative regulation of insulin secretion +13.9591162,GO:0046680,http://purl.obolibrary.org/obo/GO_0046680,response to DDT +13.9591162,GO:0046859,http://purl.obolibrary.org/obo/GO_0046859,hydrogenosomal membrane +13.9591162,GO:0046862,http://purl.obolibrary.org/obo/GO_0046862,chromoplast membrane +13.9591162,GO:0047613,http://purl.obolibrary.org/obo/GO_0047613,aconitate decarboxylase activity +13.9591162,GO:0047950,http://purl.obolibrary.org/obo/GO_0047950,glutathione oxidase activity +13.9591162,GO:0048449,http://purl.obolibrary.org/obo/GO_0048449,floral organ formation +13.9591162,GO:0048738,http://purl.obolibrary.org/obo/GO_0048738,cardiac muscle tissue development +13.9591162,GO:0050077,http://purl.obolibrary.org/obo/GO_0050077,maleylpyruvate isomerase activity +13.9591162,GO:0050177,http://purl.obolibrary.org/obo/GO_0050177,phenylpyruvate decarboxylase activity +13.9591162,GO:0050178,http://purl.obolibrary.org/obo/GO_0050178,phenylpyruvate tautomerase activity +13.9591162,GO:0050341,http://purl.obolibrary.org/obo/GO_0050341,thymine dioxygenase activity +13.9591162,GO:0050765,http://purl.obolibrary.org/obo/GO_0050765,negative regulation of phagocytosis +13.9591162,GO:0051125,http://purl.obolibrary.org/obo/GO_0051125,regulation of actin nucleation +13.9591162,GO:0051594,http://purl.obolibrary.org/obo/GO_0051594,detection of glucose +13.9591162,GO:0052761,http://purl.obolibrary.org/obo/GO_0052761,"exo-1,4-beta-D-glucosaminidase activity" +13.9591162,GO:0060771,http://purl.obolibrary.org/obo/GO_0060771,phyllotactic patterning +13.9591162,GO:0062105,http://purl.obolibrary.org/obo/GO_0062105,RNA 2'-O-methyltransferase activity +13.9591162,GO:0070267,http://purl.obolibrary.org/obo/GO_0070267,oncosis +13.9591162,GO:0070366,http://purl.obolibrary.org/obo/GO_0070366,regulation of hepatocyte differentiation +13.9591162,GO:0070408,http://purl.obolibrary.org/obo/GO_0070408,carbamoyl phosphate metabolic process +13.9591162,GO:0071146,http://purl.obolibrary.org/obo/GO_0071146,none +13.9591162,GO:0071268,http://purl.obolibrary.org/obo/GO_0071268,homocysteine biosynthetic process +13.9591162,GO:0071877,http://purl.obolibrary.org/obo/GO_0071877,regulation of adenylate cyclase-inhibiting adrenergic receptor signaling pathway +13.9591162,GO:0071934,http://purl.obolibrary.org/obo/GO_0071934,thiamine transmembrane transport +13.9591162,GO:0072078,http://purl.obolibrary.org/obo/GO_0072078,nephron tubule morphogenesis +13.9591162,GO:0072088,http://purl.obolibrary.org/obo/GO_0072088,nephron epithelium morphogenesis +13.9591162,GO:0072531,http://purl.obolibrary.org/obo/GO_0072531,pyrimidine-containing compound transmembrane transport +13.9591162,GO:0072708,http://purl.obolibrary.org/obo/GO_0072708,response to sorbitol +13.9591162,GO:0072716,http://purl.obolibrary.org/obo/GO_0072716,response to actinomycin D +13.9591162,GO:0080113,http://purl.obolibrary.org/obo/GO_0080113,regulation of seed growth +13.9591162,GO:0097037,http://purl.obolibrary.org/obo/GO_0097037,heme export +13.9591162,GO:0097232,http://purl.obolibrary.org/obo/GO_0097232,lamellar body membrane +13.9591162,GO:0099523,http://purl.obolibrary.org/obo/GO_0099523,presynaptic cytosol +13.9591162,GO:0106030,http://purl.obolibrary.org/obo/GO_0106030,neuron projection fasciculation +13.9591162,GO:0106050,http://purl.obolibrary.org/obo/GO_0106050,tRNA 2'-O-methyltransferase activity +13.9591162,GO:0120033,http://purl.obolibrary.org/obo/GO_0120033,negative regulation of plasma membrane bounded cell projection assembly +13.9591162,GO:1900256,http://purl.obolibrary.org/obo/GO_1900256,regulation of beta1-adrenergic receptor activity +13.9591162,GO:1901266,http://purl.obolibrary.org/obo/GO_1901266,cephalosporin C metabolic process +13.9591162,GO:1901268,http://purl.obolibrary.org/obo/GO_1901268,cephalosporin C biosynthetic process +13.9591162,GO:1901655,http://purl.obolibrary.org/obo/GO_1901655,cellular response to ketone +13.9591162,GO:1902551,http://purl.obolibrary.org/obo/GO_1902551,regulation of catalase activity +13.9591162,GO:1902969,http://purl.obolibrary.org/obo/GO_1902969,mitotic DNA replication +13.9591162,GO:1904589,http://purl.obolibrary.org/obo/GO_1904589,regulation of protein import +13.9591162,GO:1905354,http://purl.obolibrary.org/obo/GO_1905354,exoribonuclease complex +13.9591162,GO:2000283,http://purl.obolibrary.org/obo/GO_2000283,negative regulation of cellular amino acid biosynthetic process +13.9591162,GO:2000746,http://purl.obolibrary.org/obo/GO_2000746,regulation of defecation rhythm +13.9591162,GO:2000843,http://purl.obolibrary.org/obo/GO_2000843,regulation of testosterone secretion +13.9591162,GO:2000881,http://purl.obolibrary.org/obo/GO_2000881,regulation of starch catabolic process +13.9591162,GO:2001032,http://purl.obolibrary.org/obo/GO_2001032,regulation of double-strand break repair via nonhomologous end joining +13.9591162,GO:2001252,http://purl.obolibrary.org/obo/GO_2001252,positive regulation of chromosome organization +13.9591162,HP:0001138,http://purl.obolibrary.org/obo/HP_0001138,Optic neuropathy +13.9591162,HP:0001645,http://purl.obolibrary.org/obo/HP_0001645,Sudden cardiac death +13.9591162,HP:0002105,http://purl.obolibrary.org/obo/HP_0002105,Hemoptysis +13.9591162,HP:0002516,http://purl.obolibrary.org/obo/HP_0002516,Increased intracranial pressure +13.9591162,HP:0012254,http://purl.obolibrary.org/obo/HP_0012254,Ewing sarcoma +13.9591162,HP:0100491,http://purl.obolibrary.org/obo/HP_0100491,Abnormality of lower limb joint +13.9591162,MONDO:0000141,http://purl.obolibrary.org/obo/MONDO_0000141,mosaic variegated aneuploidy syndrome +13.9591162,MONDO:0001417,http://purl.obolibrary.org/obo/MONDO_0001417,tracheal lymphoma +13.9591162,MONDO:0002143,http://purl.obolibrary.org/obo/MONDO_0002143,vaginal yolk sac tumor +13.9591162,MONDO:0002383,http://purl.obolibrary.org/obo/MONDO_0002383,Pacinian tumor +13.9591162,MONDO:0002935,http://purl.obolibrary.org/obo/MONDO_0002935,penis basal cell carcinoma +13.9591162,MONDO:0003172,http://purl.obolibrary.org/obo/MONDO_0003172,glomeruloid hemangioma +13.9591162,MONDO:0003474,http://purl.obolibrary.org/obo/MONDO_0003474,tanycytic ependymoma +13.9591162,MONDO:0004203,http://purl.obolibrary.org/obo/MONDO_0004203,female urethral cancer +13.9591162,MONDO:0004383,http://purl.obolibrary.org/obo/MONDO_0004383,adult central nervous system germinoma +13.9591162,MONDO:0004452,http://purl.obolibrary.org/obo/MONDO_0004452,childhood central nervous system germinoma +13.9591162,MONDO:0004477,http://purl.obolibrary.org/obo/MONDO_0004477,adrenal gland ganglioneuroblastoma +13.9591162,MONDO:0004819,http://purl.obolibrary.org/obo/MONDO_0004819,indolent plasma cell myeloma +13.9591162,MONDO:0005182,http://purl.obolibrary.org/obo/MONDO_0005182,serous cystadenofibroma +13.9591162,MONDO:0006297,http://purl.obolibrary.org/obo/MONDO_0006297,maxillary sinus adenoid cystic carcinoma +13.9591162,MONDO:0006711,http://purl.obolibrary.org/obo/MONDO_0006711,constrictive pericarditis +13.9591162,MONDO:0008059,http://purl.obolibrary.org/obo/MONDO_0008059,Naegeli-Franceschetti-Jadassohn syndrome +13.9591162,MONDO:0008134,http://purl.obolibrary.org/obo/MONDO_0008134,"autosomal dominant optic atrophy, classic form" +13.9591162,MONDO:0008299,http://purl.obolibrary.org/obo/MONDO_0008299,posterior column ataxia +13.9591162,MONDO:0008392,http://purl.obolibrary.org/obo/MONDO_0008392,Roussy-Levy syndrome +13.9591162,MONDO:0008416,http://purl.obolibrary.org/obo/MONDO_0008416,palmoplantar keratoderma-sclerodactyly syndrome +13.9591162,MONDO:0008547,http://purl.obolibrary.org/obo/MONDO_0008547,thanatophoric dysplasia type 2 +13.9591162,MONDO:0008613,http://purl.obolibrary.org/obo/MONDO_0008613,Tuftsin deficiency +13.9591162,MONDO:0008853,http://purl.obolibrary.org/obo/MONDO_0008853,Barber-Say syndrome +13.9591162,MONDO:0008972,http://purl.obolibrary.org/obo/MONDO_0008972,rhizomelic chondrodysplasia punctata type 1 +13.9591162,MONDO:0009919,http://purl.obolibrary.org/obo/MONDO_0009919,peroxisomal acyl-CoA oxidase deficiency +13.9591162,MONDO:0009990,http://purl.obolibrary.org/obo/MONDO_0009990,Revesz syndrome +13.9591162,MONDO:0010092,http://purl.obolibrary.org/obo/MONDO_0010092,Filippi syndrome +13.9591162,MONDO:0010171,http://purl.obolibrary.org/obo/MONDO_0010171,Usher syndrome type 1C +13.9591162,MONDO:0010214,http://purl.obolibrary.org/obo/MONDO_0010214,xeroderma pigmentosum variant type +13.9591162,MONDO:0010654,http://purl.obolibrary.org/obo/MONDO_0010654,Partington syndrome +13.9591162,MONDO:0011301,http://purl.obolibrary.org/obo/MONDO_0011301,pseudohypoparathyroidism type 1B +13.9591162,MONDO:0012407,http://purl.obolibrary.org/obo/MONDO_0012407,pyridoxal phosphate-responsive seizures +13.9591162,MONDO:0013497,http://purl.obolibrary.org/obo/MONDO_0013497,Okt4 epitope deficiency +13.9591162,MONDO:0014243,http://purl.obolibrary.org/obo/MONDO_0014243,Schaaf-Yang syndrome +13.9591162,MONDO:0014938,http://purl.obolibrary.org/obo/MONDO_0014938,aniridia 3 +13.9591162,MONDO:0015032,http://purl.obolibrary.org/obo/MONDO_0015032,intraneural perineurioma +13.9591162,MONDO:0015170,http://purl.obolibrary.org/obo/MONDO_0015170,congenital sodium diarrhea +13.9591162,MONDO:0015628,http://purl.obolibrary.org/obo/MONDO_0015628,von Willebrand disease type 2A +13.9591162,MONDO:0015723,http://purl.obolibrary.org/obo/MONDO_0015723,trisomy 12p +13.9591162,MONDO:0016094,http://purl.obolibrary.org/obo/MONDO_0016094,vaginal germ cell malignant tumor +13.9591162,MONDO:0016103,http://purl.obolibrary.org/obo/MONDO_0016103,isolated asymptomatic elevation of creatine phosphokinase +13.9591162,MONDO:0016541,http://purl.obolibrary.org/obo/MONDO_0016541,acquired secondary polycythemia +13.9591162,MONDO:0016619,http://purl.obolibrary.org/obo/MONDO_0016619,autosomal recessive hypohidrotic ectodermal dysplasia +13.9591162,MONDO:0017209,http://purl.obolibrary.org/obo/MONDO_0017209,infectious posterior uveitis +13.9591162,MONDO:0017392,http://purl.obolibrary.org/obo/MONDO_0017392,pre-descemet corneal dystrophy +13.9591162,MONDO:0017477,http://purl.obolibrary.org/obo/MONDO_0017477,lower limb hypertrophy +13.9591162,MONDO:0017571,http://purl.obolibrary.org/obo/MONDO_0017571,Proteus-like syndrome +13.9591162,MONDO:0017636,http://purl.obolibrary.org/obo/MONDO_0017636,hemiparkinsonism-hemiatrophy syndrome +13.9591162,MONDO:0019071,http://purl.obolibrary.org/obo/MONDO_0019071,pure hair and nail ectodermal dysplasia +13.9591162,MONDO:0019535,http://purl.obolibrary.org/obo/MONDO_0019535,drug-induced autoimmune hemolytic anemia +13.9591162,MONDO:0019642,http://purl.obolibrary.org/obo/MONDO_0019642,"vitamin D-dependent rickets, type 2" +13.9591162,MONDO:0019731,http://purl.obolibrary.org/obo/MONDO_0019731,AApoAI amyloidosis +13.9591162,MONDO:0019970,http://purl.obolibrary.org/obo/MONDO_0019970,Sinding-Larsen-Johansson disease +13.9591162,MONDO:0020541,http://purl.obolibrary.org/obo/MONDO_0020541,maligant granulosa cell tumor of ovary +13.9591162,MONDO:0020568,http://purl.obolibrary.org/obo/MONDO_0020568,cutaneous myiasis +13.9591162,MONDO:0020793,http://purl.obolibrary.org/obo/MONDO_0020793,oculopharyngodistal myopathy 1 +13.9591162,MONDO:0021136,http://purl.obolibrary.org/obo/MONDO_0021136,rare +13.9591162,MONDO:0021514,http://purl.obolibrary.org/obo/MONDO_0021514,benign neoplasm of pericardium +13.9591162,MONDO:0025113,http://purl.obolibrary.org/obo/MONDO_0025113,poultry disease +13.9591162,MONDO:0037870,http://purl.obolibrary.org/obo/MONDO_0037870,valine metabolism disease +13.9591162,MONDO:0043089,http://purl.obolibrary.org/obo/MONDO_0043089,acute posterior multifocal placoid pigment epitheliopathy +13.9591162,MONDO:0043789,http://purl.obolibrary.org/obo/MONDO_0043789,serum sickness +13.9591162,MONDO:0100272,http://purl.obolibrary.org/obo/MONDO_0100272,peroxisome biogenesis disorder due to PEX7 defect +13.9591162,MONDO:0100322,http://purl.obolibrary.org/obo/MONDO_0100322,non-Zellweger spectrum disorder +13.9591162,NCBITaxon:10068,http://purl.obolibrary.org/obo/NCBITaxon_10068,none +13.9591162,NCBITaxon:10168,http://purl.obolibrary.org/obo/NCBITaxon_10168,none +13.9591162,NCBITaxon:10169,http://purl.obolibrary.org/obo/NCBITaxon_10169,none +13.9591162,NCBITaxon:10618,http://purl.obolibrary.org/obo/NCBITaxon_10618,none +13.9591162,NCBITaxon:11007,http://purl.obolibrary.org/obo/NCBITaxon_11007,none +13.9591162,NCBITaxon:11011,http://purl.obolibrary.org/obo/NCBITaxon_11011,none +13.9591162,NCBITaxon:11069,http://purl.obolibrary.org/obo/NCBITaxon_11069,none +13.9591162,NCBITaxon:116704,http://purl.obolibrary.org/obo/NCBITaxon_116704,Eubrachyura +13.9591162,NCBITaxon:11830,http://purl.obolibrary.org/obo/NCBITaxon_11830,none +13.9591162,NCBITaxon:119210,http://purl.obolibrary.org/obo/NCBITaxon_119210,none +13.9591162,NCBITaxon:12151,http://purl.obolibrary.org/obo/NCBITaxon_12151,none +13.9591162,NCBITaxon:12330,http://purl.obolibrary.org/obo/NCBITaxon_12330,none +13.9591162,NCBITaxon:1271477,http://purl.obolibrary.org/obo/NCBITaxon_1271477,none +13.9591162,NCBITaxon:1312874,http://purl.obolibrary.org/obo/NCBITaxon_1312874,none +13.9591162,NCBITaxon:139032,http://purl.obolibrary.org/obo/NCBITaxon_139032,none +13.9591162,NCBITaxon:160691,http://purl.obolibrary.org/obo/NCBITaxon_160691,none +13.9591162,NCBITaxon:183662,http://purl.obolibrary.org/obo/NCBITaxon_183662,none +13.9591162,NCBITaxon:215920,http://purl.obolibrary.org/obo/NCBITaxon_215920,none +13.9591162,NCBITaxon:219299,http://purl.obolibrary.org/obo/NCBITaxon_219299,none +13.9591162,NCBITaxon:2509501,http://purl.obolibrary.org/obo/NCBITaxon_2509501,none +13.9591162,NCBITaxon:27457,http://purl.obolibrary.org/obo/NCBITaxon_27457,none +13.9591162,NCBITaxon:28844,http://purl.obolibrary.org/obo/NCBITaxon_28844,Diphyllobothrium +13.9591162,NCBITaxon:29122,http://purl.obolibrary.org/obo/NCBITaxon_29122,Oryzomys +13.9591162,NCBITaxon:29256,http://purl.obolibrary.org/obo/NCBITaxon_29256,none +13.9591162,NCBITaxon:30648,http://purl.obolibrary.org/obo/NCBITaxon_30648,Dipodidae +13.9591162,NCBITaxon:31695,http://purl.obolibrary.org/obo/NCBITaxon_31695,none +13.9591162,NCBITaxon:32363,http://purl.obolibrary.org/obo/NCBITaxon_32363,none +13.9591162,NCBITaxon:3349,http://purl.obolibrary.org/obo/NCBITaxon_3349,none +13.9591162,NCBITaxon:33765,http://purl.obolibrary.org/obo/NCBITaxon_33765,none +13.9591162,NCBITaxon:35285,http://purl.obolibrary.org/obo/NCBITaxon_35285,none +13.9591162,NCBITaxon:37020,http://purl.obolibrary.org/obo/NCBITaxon_37020,Oryzomys palustris +13.9591162,NCBITaxon:4107,http://purl.obolibrary.org/obo/NCBITaxon_4107,Solanum +13.9591162,NCBITaxon:41857,http://purl.obolibrary.org/obo/NCBITaxon_41857,none +13.9591162,NCBITaxon:424574,http://purl.obolibrary.org/obo/NCBITaxon_424574,Solaneae +13.9591162,NCBITaxon:4345,http://purl.obolibrary.org/obo/NCBITaxon_4345,none +13.9591162,NCBITaxon:44233,http://purl.obolibrary.org/obo/NCBITaxon_44233,none +13.9591162,NCBITaxon:4480,http://purl.obolibrary.org/obo/NCBITaxon_4480,none +13.9591162,NCBITaxon:4677,http://purl.obolibrary.org/obo/NCBITaxon_4677,none +13.9591162,NCBITaxon:47903,http://purl.obolibrary.org/obo/NCBITaxon_47903,none +13.9591162,NCBITaxon:482,http://purl.obolibrary.org/obo/NCBITaxon_482,Neisseria +13.9591162,NCBITaxon:504347,http://purl.obolibrary.org/obo/NCBITaxon_504347,none +13.9591162,NCBITaxon:6032,http://purl.obolibrary.org/obo/NCBITaxon_6032,Apansporoblastina +13.9591162,NCBITaxon:6103,http://purl.obolibrary.org/obo/NCBITaxon_6103,none +13.9591162,NCBITaxon:64698,http://purl.obolibrary.org/obo/NCBITaxon_64698,none +13.9591162,NCBITaxon:66266,http://purl.obolibrary.org/obo/NCBITaxon_66266,none +13.9591162,NCBITaxon:6752,http://purl.obolibrary.org/obo/NCBITaxon_6752,Brachyura +13.9591162,NCBITaxon:6893,http://purl.obolibrary.org/obo/NCBITaxon_6893,none +13.9591162,NCBITaxon:696098,http://purl.obolibrary.org/obo/NCBITaxon_696098,none +13.9591162,NCBITaxon:7137,http://purl.obolibrary.org/obo/NCBITaxon_7137,none +13.9591162,NCBITaxon:721813,http://purl.obolibrary.org/obo/NCBITaxon_721813,Maleae +13.9591162,NCBITaxon:74488,http://purl.obolibrary.org/obo/NCBITaxon_74488,none +13.9591162,NCBITaxon:889517,http://purl.obolibrary.org/obo/NCBITaxon_889517,none +13.9591162,NCBITaxon:9254,http://purl.obolibrary.org/obo/NCBITaxon_9254,Prototheria +13.9591162,NCBITaxon:9255,http://purl.obolibrary.org/obo/NCBITaxon_9255,Monotremata +13.9591162,NCBITaxon:9377,http://purl.obolibrary.org/obo/NCBITaxon_9377,none +13.9591162,NCBITaxon:94988,http://purl.obolibrary.org/obo/NCBITaxon_94988,none +13.9591162,NCBITaxon:95342,http://purl.obolibrary.org/obo/NCBITaxon_95342,none +13.9591162,NCBITaxon:980415,http://purl.obolibrary.org/obo/NCBITaxon_980415,none +13.9591162,PR:000001143,http://purl.obolibrary.org/obo/PR_000001143,basal cell adhesion molecule +13.9591162,PR:000002072,http://purl.obolibrary.org/obo/PR_000002072,potassium channel subfamily K member 12 +13.9591162,PR:000002159,http://purl.obolibrary.org/obo/PR_000002159,none +13.9591162,PR:000002984,http://purl.obolibrary.org/obo/PR_000002984,zinc finger protein Eos +13.9591162,PR:000003527,http://purl.obolibrary.org/obo/PR_000003527,angio-associated migratory cell protein +13.9591162,PR:000003837,http://purl.obolibrary.org/obo/PR_000003837,1-acyl-sn-glycerol-3-phosphate acyltransferase delta +13.9591162,PR:000003997,http://purl.obolibrary.org/obo/PR_000003997,protein AMN1 +13.9591162,PR:000004062,http://purl.obolibrary.org/obo/PR_000004062,anoctamin-7 +13.9591162,PR:000004097,http://purl.obolibrary.org/obo/PR_000004097,AP-1 complex subunit sigma-2 +13.9591162,PR:000004285,http://purl.obolibrary.org/obo/PR_000004285,ADP-ribosylation factor-like protein 4A +13.9591162,PR:000004364,http://purl.obolibrary.org/obo/PR_000004364,achaete-scute homolog 3 +13.9591162,PR:000004452,http://purl.obolibrary.org/obo/PR_000004452,potassium-transporting ATPase subunit beta +13.9591162,PR:000004495,http://purl.obolibrary.org/obo/PR_000004495,ATP synthase mitochondrial F1 complex assembly factor 1 +13.9591162,PR:000004739,http://purl.obolibrary.org/obo/PR_000004739,class E basic helix-loop-helix protein 23 +13.9591162,PR:000004857,http://purl.obolibrary.org/obo/PR_000004857,BUD13 +13.9591162,PR:000004903,http://purl.obolibrary.org/obo/PR_000004903,C4b-binding protein beta chain +13.9591162,PR:000005099,http://purl.obolibrary.org/obo/PR_000005099,SAGA-associated factor 29 +13.9591162,PR:000005353,http://purl.obolibrary.org/obo/PR_000005353,centrosomal protein of 63 kDa +13.9591162,PR:000005424,http://purl.obolibrary.org/obo/PR_000005424,chitinase-3-like protein 2 +13.9591162,PR:000005481,http://purl.obolibrary.org/obo/PR_000005481,carbohydrate sulfotransferase 8 +13.9591162,PR:000005845,http://purl.obolibrary.org/obo/PR_000005845,death domain-containing protein CRADD +13.9591162,PR:000005862,http://purl.obolibrary.org/obo/PR_000005862,CREB/ATF bZIP transcription factor +13.9591162,PR:000005926,http://purl.obolibrary.org/obo/PR_000005926,chondrosarcoma-associated gene 2/3A protein +13.9591162,PR:000006109,http://purl.obolibrary.org/obo/PR_000006109,cytochrome P450 26C1 +13.9591162,PR:000006209,http://purl.obolibrary.org/obo/PR_000006209,none +13.9591162,PR:000006337,http://purl.obolibrary.org/obo/PR_000006337,DET1- and DDB1-associated protein 1 +13.9591162,PR:000006377,http://purl.obolibrary.org/obo/PR_000006377,digestive organ expansion factor +13.9591162,PR:000006456,http://purl.obolibrary.org/obo/PR_000006456,"trans-1,2-dihydrobenzene-1,2-diol dehydrogenase" +13.9591162,PR:000006582,http://purl.obolibrary.org/obo/PR_000006582,mitochondrial import inner membrane translocase subunit TIM14 +13.9591162,PR:000006638,http://purl.obolibrary.org/obo/PR_000006638,protein downstream neighbor of Son +13.9591162,PR:000006653,http://purl.obolibrary.org/obo/PR_000006653,2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 +13.9591162,PR:000006780,http://purl.obolibrary.org/obo/PR_000006780,dynein light chain Tctex-type 3 +13.9591162,PR:000006894,http://purl.obolibrary.org/obo/PR_000006894,ER degradation-enhancing alpha-mannosidase-like protein 3 +13.9591162,PR:000006978,http://purl.obolibrary.org/obo/PR_000006978,eukaryotic translation initiation factor 3 subunit F +13.9591162,PR:000007213,http://purl.obolibrary.org/obo/PR_000007213,Ewing's tumor-associated antigen 1 +13.9591162,PR:000007236,http://purl.obolibrary.org/obo/PR_000007236,protein EVI2B +13.9591162,PR:000007308,http://purl.obolibrary.org/obo/PR_000007308,Fanconi anemia core complex-associated protein 24 +13.9591162,PR:000007505,http://purl.obolibrary.org/obo/PR_000007505,FGFR1 oncogene partner 2 +13.9591162,PR:000007533,http://purl.obolibrary.org/obo/PR_000007533,peptidyl-prolyl cis-trans isomerase FKBP11 +13.9591162,PR:000007658,http://purl.obolibrary.org/obo/PR_000007658,FRAS1-related extracellular matrix protein 3 +13.9591162,PR:000008067,http://purl.obolibrary.org/obo/PR_000008067,"GDP-mannose 4,6 dehydratase" +13.9591162,PR:000008097,http://purl.obolibrary.org/obo/PR_000008097,guanine nucleotide-binding protein G(I)/G(S)/G(T) subunit beta-2 +13.9591162,PR:000008374,http://purl.obolibrary.org/obo/PR_000008374,none +13.9591162,PR:000008434,http://purl.obolibrary.org/obo/PR_000008434,"trifunctional enzyme subunit beta, mitochondrial" +13.9591162,PR:000008462,http://purl.obolibrary.org/obo/PR_000008462,hemoglobin subunit mu +13.9591162,PR:000008505,http://purl.obolibrary.org/obo/PR_000008505,protein HEG homolog 1 +13.9591162,PR:000008560,http://purl.obolibrary.org/obo/PR_000008560,histone H4 transcription factor +13.9591162,PR:000008911,http://purl.obolibrary.org/obo/PR_000008911,interferon alpha-10 +13.9591162,PR:000009077,http://purl.obolibrary.org/obo/PR_000009077,integrator complex subunit 8 +13.9591162,PR:000009166,http://purl.obolibrary.org/obo/PR_000009166,"isovaleryl-CoA dehydrogenase, mitochondrial" +13.9591162,PR:000009290,http://purl.obolibrary.org/obo/PR_000009290,kinesin-like protein KIF16B +13.9591162,PR:000009594,http://purl.obolibrary.org/obo/PR_000009594,protein KTI12 +13.9591162,PR:000009690,http://purl.obolibrary.org/obo/PR_000009690,lupus brain antigen 1 +13.9591162,PR:000009699,http://purl.obolibrary.org/obo/PR_000009699,late cornified envelope protein 1A +13.9591162,PR:000009823,http://purl.obolibrary.org/obo/PR_000009823,protein lin-52 +13.9591162,PR:000009903,http://purl.obolibrary.org/obo/PR_000009903,phospholipid phosphatase-related protein type 1 +13.9591162,PR:000010019,http://purl.obolibrary.org/obo/PR_000010019,leucine zipper transcription factor-like protein 1 +13.9591162,PR:000010061,http://purl.obolibrary.org/obo/PR_000010061,melanoma-associated antigen 6 +13.9591162,PR:000010067,http://purl.obolibrary.org/obo/PR_000010067,melanoma-associated antigen B2 +13.9591162,PR:000010090,http://purl.obolibrary.org/obo/PR_000010090,protein MAK10 +13.9591162,PR:000010109,http://purl.obolibrary.org/obo/PR_000010109,alpha-mannosidase 2C1 +13.9591162,PR:000010569,http://purl.obolibrary.org/obo/PR_000010569,protein maestro +13.9591162,PR:000010665,http://purl.obolibrary.org/obo/PR_000010665,mesogenin-1 +13.9591162,PR:000010721,http://purl.obolibrary.org/obo/PR_000010721,mitochondrial ribosome-associated GTPase 1 +13.9591162,PR:000010731,http://purl.obolibrary.org/obo/PR_000010731,myotubularin-related protein 1 +13.9591162,PR:000011054,http://purl.obolibrary.org/obo/PR_000011054,NEDD4 family-interacting protein 2 +13.9591162,PR:000011220,http://purl.obolibrary.org/obo/PR_000011220,protein NipSnap homolog 1 +13.9591162,PR:000011297,http://purl.obolibrary.org/obo/PR_000011297,nicotinamide N-methyltransferase +13.9591162,PR:000011482,http://purl.obolibrary.org/obo/PR_000011482,nuclear migration protein nudC +13.9591162,PR:000011624,http://purl.obolibrary.org/obo/PR_000011624,noelin-2 +13.9591162,PR:000011630,http://purl.obolibrary.org/obo/PR_000011630,olfactomedin-like protein 3 +13.9591162,PR:000012278,http://purl.obolibrary.org/obo/PR_000012278,membrane progestin receptor beta +13.9591162,PR:000012612,http://purl.obolibrary.org/obo/PR_000012612,peptidoglycan recognition protein 3 +13.9591162,PR:000012628,http://purl.obolibrary.org/obo/PR_000012628,phosphatase and actin regulator 3 +13.9591162,PR:000012658,http://purl.obolibrary.org/obo/PR_000012658,"phosphorylase b kinase regulatory subunit alpha, skeletal muscle isoform" +13.9591162,PR:000012696,http://purl.obolibrary.org/obo/PR_000012696,GPI ethanolamine phosphate transferase 2 +13.9591162,PR:000012764,http://purl.obolibrary.org/obo/PR_000012764,piwi-like protein 3 +13.9591162,PR:000012767,http://purl.obolibrary.org/obo/PR_000012767,E3 ubiquitin-protein ligase Praja-2 +13.9591162,PR:000013027,http://purl.obolibrary.org/obo/PR_000013027,ribonuclease P protein subunit p20 +13.9591162,PR:000013189,http://purl.obolibrary.org/obo/PR_000013189,PR domain zinc finger protein 8 +13.9591162,PR:000013668,http://purl.obolibrary.org/obo/PR_000013668,double-strand-break repair protein rad21-like protein 1 +13.9591162,PR:000013857,http://purl.obolibrary.org/obo/PR_000013857,RAD52 motif-containing protein 1 +13.9591162,PR:000013920,http://purl.obolibrary.org/obo/PR_000013920,raftlin +13.9591162,PR:000013931,http://purl.obolibrary.org/obo/PR_000013931,regulatory factor X-associated protein +13.9591162,PR:000013966,http://purl.obolibrary.org/obo/PR_000013966,regulator of G-protein signaling 9-binding protein +13.9591162,PR:000014101,http://purl.obolibrary.org/obo/PR_000014101,E3 ubiquitin-protein ligase RNF168 +13.9591162,PR:000014222,http://purl.obolibrary.org/obo/PR_000014222,60S ribosomal protein L37 +13.9591162,PR:000014244,http://purl.obolibrary.org/obo/PR_000014244,ribonuclease P protein subunit p25 +13.9591162,PR:000014415,http://purl.obolibrary.org/obo/PR_000014415,protein S100-A7A +13.9591162,PR:000014433,http://purl.obolibrary.org/obo/PR_000014433,scaffold attachment factor B2 +13.9591162,PR:000014628,http://purl.obolibrary.org/obo/PR_000014628,semaphorin-5B +13.9591162,PR:000014853,http://purl.obolibrary.org/obo/PR_000014853,protein SHQ1 +13.9591162,PR:000015181,http://purl.obolibrary.org/obo/PR_000015181,sodium-dependent neutral amino acid transporter B(0)AT2 +13.9591162,PR:000015242,http://purl.obolibrary.org/obo/PR_000015242,SLIT and NTRK-like protein 6 +13.9591162,PR:000015280,http://purl.obolibrary.org/obo/PR_000015280,guanine nucleotide exchange protein SMCR8 +13.9591162,PR:000015556,http://purl.obolibrary.org/obo/PR_000015556,testican-3 +13.9591162,PR:000015584,http://purl.obolibrary.org/obo/PR_000015584,protein sprouty homolog 3 +13.9591162,PR:000015639,http://purl.obolibrary.org/obo/PR_000015639,serine/arginine repetitive matrix protein 2 +13.9591162,PR:000015688,http://purl.obolibrary.org/obo/PR_000015688,"alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2" +13.9591162,PR:000015723,http://purl.obolibrary.org/obo/PR_000015723,StAR-related lipid transfer protein 8 +13.9591162,PR:000015925,http://purl.obolibrary.org/obo/PR_000015925,none +13.9591162,PR:000016020,http://purl.obolibrary.org/obo/PR_000016020,TATA box-binding protein-associated factor RNA polymerase I subunit A +13.9591162,PR:000016041,http://purl.obolibrary.org/obo/PR_000016041,transgelin-3 +13.9591162,PR:000016135,http://purl.obolibrary.org/obo/PR_000016135,transducin beta-like protein 2 +13.9591162,PR:000016342,http://purl.obolibrary.org/obo/PR_000016342,mitochondrial import inner membrane translocase subunit Tim13 +13.9591162,PR:000016527,http://purl.obolibrary.org/obo/PR_000016527,target of EGR1 protein 1 +13.9591162,PR:000016821,http://purl.obolibrary.org/obo/PR_000016821,tubulin beta-6 chain +13.9591162,PR:000017010,http://purl.obolibrary.org/obo/PR_000017010,ubiquilin-4 +13.9591162,PR:000017018,http://purl.obolibrary.org/obo/PR_000017018,UBX domain-containing protein 1 +13.9591162,PR:000017061,http://purl.obolibrary.org/obo/PR_000017061,UDP-glucuronosyltransferase 2B15 +13.9591162,PR:000017080,http://purl.obolibrary.org/obo/PR_000017080,serine/threonine-protein kinase ULK4 +13.9591162,PR:000017162,http://purl.obolibrary.org/obo/PR_000017162,ubiquitin carboxyl-terminal hydrolase 24 +13.9591162,PR:000017412,http://purl.obolibrary.org/obo/PR_000017412,"WAP, Kazal, immunoglobulin, Kunitz and NTR domain-containing protein 1" +13.9591162,PR:000017483,http://purl.obolibrary.org/obo/PR_000017483,XK-related protein 4 +13.9591162,PR:000017544,http://purl.obolibrary.org/obo/PR_000017544,protein yippee-like 3 +13.9591162,PR:000017562,http://purl.obolibrary.org/obo/PR_000017562,zinc finger and BTB domain-containing protein 10 +13.9591162,PR:000017755,http://purl.obolibrary.org/obo/PR_000017755,zinc finger protein 217 +13.9591162,PR:000022065,http://purl.obolibrary.org/obo/PR_000022065,none +13.9591162,PR:000022182,http://purl.obolibrary.org/obo/PR_000022182,none +13.9591162,PR:000022194,http://purl.obolibrary.org/obo/PR_000022194,none +13.9591162,PR:000022265,http://purl.obolibrary.org/obo/PR_000022265,none +13.9591162,PR:000022342,http://purl.obolibrary.org/obo/PR_000022342,none +13.9591162,PR:000022626,http://purl.obolibrary.org/obo/PR_000022626,none +13.9591162,PR:000022714,http://purl.obolibrary.org/obo/PR_000022714,none +13.9591162,PR:000022991,http://purl.obolibrary.org/obo/PR_000022991,none +13.9591162,PR:000023084,http://purl.obolibrary.org/obo/PR_000023084,none +13.9591162,PR:000023227,http://purl.obolibrary.org/obo/PR_000023227,none +13.9591162,PR:000023244,http://purl.obolibrary.org/obo/PR_000023244,none +13.9591162,PR:000023353,http://purl.obolibrary.org/obo/PR_000023353,none +13.9591162,PR:000023478,http://purl.obolibrary.org/obo/PR_000023478,none +13.9591162,PR:000023636,http://purl.obolibrary.org/obo/PR_000023636,none +13.9591162,PR:000023737,http://purl.obolibrary.org/obo/PR_000023737,none +13.9591162,PR:000023787,http://purl.obolibrary.org/obo/PR_000023787,none +13.9591162,PR:000023894,http://purl.obolibrary.org/obo/PR_000023894,none +13.9591162,PR:000023929,http://purl.obolibrary.org/obo/PR_000023929,none +13.9591162,PR:000024034,http://purl.obolibrary.org/obo/PR_000024034,none +13.9591162,PR:000025879,http://purl.obolibrary.org/obo/PR_000025879,siroheme synthase +13.9591162,PR:000028296,http://purl.obolibrary.org/obo/PR_000028296,none +13.9591162,PR:000028338,http://purl.obolibrary.org/obo/PR_000028338,none +13.9591162,PR:000029421,http://purl.obolibrary.org/obo/PR_000029421,DnaJ homolog subfamily A member 4 +13.9591162,PR:000029500,http://purl.obolibrary.org/obo/PR_000029500,FUN14 domain-containing protein 2 +13.9591162,PR:000029546,http://purl.obolibrary.org/obo/PR_000029546,hexokinase HKDC1 +13.9591162,PR:000029790,http://purl.obolibrary.org/obo/PR_000029790,probable tRNA(His) guanylyltransferase +13.9591162,PR:000029825,http://purl.obolibrary.org/obo/PR_000029825,E3 ubiquitin-protein ligase TRIM56 +13.9591162,PR:000030433,http://purl.obolibrary.org/obo/PR_000030433,CKLF-like MARVEL transmembrane domain-containing protein 2 +13.9591162,PR:000030549,http://purl.obolibrary.org/obo/PR_000030549,pleckstrin homology domain-containing family B member 2 +13.9591162,PR:000030585,http://purl.obolibrary.org/obo/PR_000030585,"putative transferase CAF17, mitochondrial" +13.9591162,PR:000030615,http://purl.obolibrary.org/obo/PR_000030615,mitochondrial import inner membrane translocase subunit Tim21 +13.9591162,PR:000031108,http://purl.obolibrary.org/obo/PR_000031108,interleukin-11 receptor subunit alpha +13.9591162,PR:000031142,http://purl.obolibrary.org/obo/PR_000031142,"probable 2-oxoglutarate dehydrogenase E1 component DHKTD1, mitochondrial" +13.9591162,PR:000031244,http://purl.obolibrary.org/obo/PR_000031244,DDRGK domain-containing protein 1 +13.9591162,PR:000031289,http://purl.obolibrary.org/obo/PR_000031289,migration and invasion enhancer 1 +13.9591162,PR:000031528,http://purl.obolibrary.org/obo/PR_000031528,probable JmjC domain-containing histone demethylation protein 2C +13.9591162,PR:000031538,http://purl.obolibrary.org/obo/PR_000031538,caspase activity and apoptosis inhibitor 1 +13.9591162,PR:000031822,http://purl.obolibrary.org/obo/PR_000031822,PDZ domain-containing protein 7 +13.9591162,PR:000031890,http://purl.obolibrary.org/obo/PR_000031890,leucine zipper putative tumor suppressor 2 +13.9591162,PR:000031905,http://purl.obolibrary.org/obo/PR_000031905,coiled-coil domain-containing protein 22 +13.9591162,PR:000032018,http://purl.obolibrary.org/obo/PR_000032018,chromatin modification-related protein MEAF6 +13.9591162,PR:000032075,http://purl.obolibrary.org/obo/PR_000032075,CKLF-like MARVEL transmembrane domain-containing protein 8 +13.9591162,PR:000032308,http://purl.obolibrary.org/obo/PR_000032308,class A basic helix-loop-helix protein 9 +13.9591162,PR:000032331,http://purl.obolibrary.org/obo/PR_000032331,Rho-related BTB domain-containing protein 3 +13.9591162,PR:000032529,http://purl.obolibrary.org/obo/PR_000032529,mitochondrial 10-formyltetrahydrofolate dehydrogenase +13.9591162,PR:000032677,http://purl.obolibrary.org/obo/PR_000032677,lysosomal cobalamin transport escort protein LMBD1 +13.9591162,PR:000032930,http://purl.obolibrary.org/obo/PR_000032930,none +13.9591162,PR:000034191,http://purl.obolibrary.org/obo/PR_000034191,none +13.9591162,PR:000034600,http://purl.obolibrary.org/obo/PR_000034600,none +13.9591162,PR:000049764,http://purl.obolibrary.org/obo/PR_000049764,none +13.9591162,PR:000050053,http://purl.obolibrary.org/obo/PR_000050053,"Dol-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-Dol alpha-1,2-glucosyltransferase" +13.9591162,PR:A8C984,http://purl.obolibrary.org/obo/PR_A8C984,none +13.9591162,PR:O22456,http://purl.obolibrary.org/obo/PR_O22456,none +13.9591162,PR:O22607,http://purl.obolibrary.org/obo/PR_O22607,none +13.9591162,PR:O23463,http://purl.obolibrary.org/obo/PR_O23463,none +13.9591162,PR:P06582,http://purl.obolibrary.org/obo/PR_P06582,none +13.9591162,PR:P14284,http://purl.obolibrary.org/obo/PR_P14284,none +13.9591162,PR:P17678,http://purl.obolibrary.org/obo/PR_P17678,none +13.9591162,PR:P25071,http://purl.obolibrary.org/obo/PR_P25071,none +13.9591162,PR:P31396,http://purl.obolibrary.org/obo/PR_P31396,none +13.9591162,PR:P32081,http://purl.obolibrary.org/obo/PR_P32081,none +13.9591162,PR:P35554,http://purl.obolibrary.org/obo/PR_P35554,none +13.9591162,PR:P36598,http://purl.obolibrary.org/obo/PR_P36598,none +13.9591162,PR:P39015,http://purl.obolibrary.org/obo/PR_P39015,none +13.9591162,PR:P40185,http://purl.obolibrary.org/obo/PR_P40185,none +13.9591162,PR:P43123,http://purl.obolibrary.org/obo/PR_P43123,none +13.9591162,PR:P46674,http://purl.obolibrary.org/obo/PR_P46674,none +13.9591162,PR:P46936,http://purl.obolibrary.org/obo/PR_P46936,none +13.9591162,PR:P47117,http://purl.obolibrary.org/obo/PR_P47117,none +13.9591162,PR:P47774,http://purl.obolibrary.org/obo/PR_P47774,none +13.9591162,PR:P92994,http://purl.obolibrary.org/obo/PR_P92994,none +13.9591162,PR:Q06390,http://purl.obolibrary.org/obo/PR_Q06390,none +13.9591162,PR:Q0WRY5,http://purl.obolibrary.org/obo/PR_Q0WRY5,none +13.9591162,PR:Q12692,http://purl.obolibrary.org/obo/PR_Q12692,none +13.9591162,PR:Q2FZ31,http://purl.obolibrary.org/obo/PR_Q2FZ31,none +13.9591162,PR:Q38830,http://purl.obolibrary.org/obo/PR_Q38830,none +13.9591162,PR:Q56YJ8,http://purl.obolibrary.org/obo/PR_Q56YJ8,none +13.9591162,PR:Q5A1D5,http://purl.obolibrary.org/obo/PR_Q5A1D5,none +13.9591162,PR:Q63247,http://purl.obolibrary.org/obo/PR_Q63247,none +13.9591162,PR:Q6AWT8,http://purl.obolibrary.org/obo/PR_Q6AWT8,none +13.9591162,PR:Q6AXN6,http://purl.obolibrary.org/obo/PR_Q6AXN6,none +13.9591162,PR:Q6DHF9,http://purl.obolibrary.org/obo/PR_Q6DHF9,none +13.9591162,PR:Q6PUR7,http://purl.obolibrary.org/obo/PR_Q6PUR7,none +13.9591162,PR:Q7TMM9,http://purl.obolibrary.org/obo/PR_Q7TMM9,none +13.9591162,PR:Q7XJE5,http://purl.obolibrary.org/obo/PR_Q7XJE5,none +13.9591162,PR:Q8VYF5,http://purl.obolibrary.org/obo/PR_Q8VYF5,none +13.9591162,PR:Q9D9Z1,http://purl.obolibrary.org/obo/PR_Q9D9Z1,none +13.9591162,PR:Q9DER5,http://purl.obolibrary.org/obo/PR_Q9DER5,none +13.9591162,PR:Q9FI37,http://purl.obolibrary.org/obo/PR_Q9FI37,none +13.9591162,PR:Q9LD28,http://purl.obolibrary.org/obo/PR_Q9LD28,none +13.9591162,PR:Q9LYE3,http://purl.obolibrary.org/obo/PR_Q9LYE3,none +13.9591162,PR:Q9M7K4,http://purl.obolibrary.org/obo/PR_Q9M7K4,none +13.9591162,PR:Q9S814,http://purl.obolibrary.org/obo/PR_Q9S814,none +13.9591162,PR:Q9SAD4,http://purl.obolibrary.org/obo/PR_Q9SAD4,none +13.9591162,PR:Q9SK03,http://purl.obolibrary.org/obo/PR_Q9SK03,none +13.9591162,PR:Q9SSE9,http://purl.obolibrary.org/obo/PR_Q9SSE9,none +13.9591162,PR:Q9UT30,http://purl.obolibrary.org/obo/PR_Q9UT30,none +13.9591162,PR:Q9UTP3,http://purl.obolibrary.org/obo/PR_Q9UTP3,none +13.9591162,PR:Q9V498,http://purl.obolibrary.org/obo/PR_Q9V498,none +13.9591162,PR:Q9W148,http://purl.obolibrary.org/obo/PR_Q9W148,none +13.9591162,PR:Q9XEX4,http://purl.obolibrary.org/obo/PR_Q9XEX4,none +13.9591162,PR:Q9Y471,http://purl.obolibrary.org/obo/PR_Q9Y471,inactive cytidine monophosphate-N-acetylneuraminic acid hydroxylase (human) +13.9591162,PR:Q9ZV48,http://purl.obolibrary.org/obo/PR_Q9ZV48,none +13.9591162,SO:0000158,http://purl.obolibrary.org/obo/SO_0000158,fosmid +13.9591162,SO:0000411,http://purl.obolibrary.org/obo/SO_0000411,rescue_region +13.9591162,SO:0000482,http://purl.obolibrary.org/obo/SO_0000482,vertebrate_immunoglobulin_T_cell_receptor_gene_cluster +13.9591162,SO:0000659,http://purl.obolibrary.org/obo/SO_0000659,tmRNA_encoding +13.9591162,SO:0000942,http://purl.obolibrary.org/obo/SO_0000942,attP_site +13.9591162,UBERON:0000163,http://purl.obolibrary.org/obo/UBERON_0000163,embryonic cloaca +13.9591162,UBERON:0000408,http://purl.obolibrary.org/obo/UBERON_0000408,vertebral ganglion +13.9591162,UBERON:0001054,http://purl.obolibrary.org/obo/UBERON_0001054,Malpighian tubule +13.9591162,UBERON:0001549,http://purl.obolibrary.org/obo/UBERON_0001549,dorsal metatarsal vein +13.9591162,UBERON:0001617,http://purl.obolibrary.org/obo/UBERON_0001617,mental artery +13.9591162,UBERON:0001758,http://purl.obolibrary.org/obo/UBERON_0001758,periodontium +13.9591162,UBERON:0002238,http://purl.obolibrary.org/obo/UBERON_0002238,false rib +13.9591162,UBERON:0002536,http://purl.obolibrary.org/obo/UBERON_0002536,arthropod sensillum +13.9591162,UBERON:0002685,http://purl.obolibrary.org/obo/UBERON_0002685,anteroventral nucleus of thalamus +13.9591162,UBERON:0002839,http://purl.obolibrary.org/obo/UBERON_0002839,second cervical dorsal root ganglion +13.9591162,UBERON:0002949,http://purl.obolibrary.org/obo/UBERON_0002949,tectospinal tract +13.9591162,UBERON:0003390,http://purl.obolibrary.org/obo/UBERON_0003390,mesothelium of pleural cavity +13.9591162,UBERON:0003945,http://purl.obolibrary.org/obo/UBERON_0003945,somatic motor system +13.9591162,UBERON:0004054,http://purl.obolibrary.org/obo/UBERON_0004054,internal male genitalia +13.9591162,UBERON:0004724,http://purl.obolibrary.org/obo/UBERON_0004724,medial palpebral ligament +13.9591162,UBERON:0004850,http://purl.obolibrary.org/obo/UBERON_0004850,lymph node endothelium +13.9591162,UBERON:0004863,http://purl.obolibrary.org/obo/UBERON_0004863,thoracic sympathetic nerve trunk +13.9591162,UBERON:0006071,http://purl.obolibrary.org/obo/UBERON_0006071,caudal region +13.9591162,UBERON:0006270,http://purl.obolibrary.org/obo/UBERON_0006270,optic pit +13.9591162,UBERON:0006630,http://purl.obolibrary.org/obo/UBERON_0006630,left atrium auricular region +13.9591162,UBERON:0006652,http://purl.obolibrary.org/obo/UBERON_0006652,muscular layer of vagina +13.9591162,UBERON:0007168,http://purl.obolibrary.org/obo/UBERON_0007168,long head of biceps brachii +13.9591162,UBERON:0009616,http://purl.obolibrary.org/obo/UBERON_0009616,presumptive midbrain +13.9591162,UBERON:0010187,http://purl.obolibrary.org/obo/UBERON_0010187,female urethral gland +13.9591162,UBERON:0011342,http://purl.obolibrary.org/obo/UBERON_0011342,surface of mandible +13.9591162,UBERON:0011757,http://purl.obolibrary.org/obo/UBERON_0011757,differentiated genital tubercle +13.9591162,UBERON:0013228,http://purl.obolibrary.org/obo/UBERON_0013228,sweat gland of eyelid +13.9591162,UBERON:0013489,http://purl.obolibrary.org/obo/UBERON_0013489,superficial cervical fascia +13.9591162,UBERON:0014529,http://purl.obolibrary.org/obo/UBERON_0014529,lenticular fasciculus +13.9591162,UBERON:0014908,http://purl.obolibrary.org/obo/UBERON_0014908,cerebellopontine angle +13.9591162,UBERON:0014935,http://purl.obolibrary.org/obo/UBERON_0014935,cerebral cortex marginal layer +13.9591162,UBERON:0015145,http://purl.obolibrary.org/obo/UBERON_0015145,pes hair +13.9591162,UBERON:0016944,http://purl.obolibrary.org/obo/UBERON_0016944,upper premolar tooth +13.9591162,UBERON:0022254,http://purl.obolibrary.org/obo/UBERON_0022254,ventral thalamic fasciculus +13.9591162,UBERON:0034874,http://purl.obolibrary.org/obo/UBERON_0034874,air in respiratory system +13.9591162,UBERON:2000106,http://purl.obolibrary.org/obo/UBERON_2000106,extension +13.9591162,UBERON:2000636,http://purl.obolibrary.org/obo/UBERON_2000636,cerebellar crest +13.9591162,UBERON:2000732,http://purl.obolibrary.org/obo/UBERON_2000732,somite 3 +13.9591162,UBERON:3010146,http://purl.obolibrary.org/obo/UBERON_3010146,lacrimal +13.9591162,UBERON:3010404,http://purl.obolibrary.org/obo/UBERON_3010404,capillary system of liver +14.0104095,CHEBI:166828,http://purl.obolibrary.org/obo/CHEBI_166828,Saccharolipids +14.0104095,CHEBI:17138,http://purl.obolibrary.org/obo/CHEBI_17138,glyceraldehyde 3-phosphate +14.0104095,CHEBI:18292,http://purl.obolibrary.org/obo/CHEBI_18292,jasmonic acid +14.0104095,CHEBI:21638,http://purl.obolibrary.org/obo/CHEBI_21638,N-acylglucosamine +14.0104095,CHEBI:22698,http://purl.obolibrary.org/obo/CHEBI_22698,benzaldehydes +14.0104095,CHEBI:24079,http://purl.obolibrary.org/obo/CHEBI_24079,formamides +14.0104095,CHEBI:24402,http://purl.obolibrary.org/obo/CHEBI_24402,glycosphingolipid +14.0104095,CHEBI:25051,http://purl.obolibrary.org/obo/CHEBI_25051,lipid As +14.0104095,CHEBI:27504,http://purl.obolibrary.org/obo/CHEBI_27504,mitomycin C +14.0104095,CHEBI:33554,http://purl.obolibrary.org/obo/CHEBI_33554,organosulfonate oxoanion +14.0104095,CHEBI:33707,http://purl.obolibrary.org/obo/CHEBI_33707,gamma-amino acid +14.0104095,CHEBI:33862,http://purl.obolibrary.org/obo/CHEBI_33862,platinum coordination entity +14.0104095,CHEBI:35142,http://purl.obolibrary.org/obo/CHEBI_35142,aldotriose phosphate +14.0104095,CHEBI:35371,http://purl.obolibrary.org/obo/CHEBI_35371,lipooligosaccharide +14.0104095,CHEBI:35924,http://purl.obolibrary.org/obo/CHEBI_35924,peroxol +14.0104095,CHEBI:37863,http://purl.obolibrary.org/obo/CHEBI_37863,chalcoperoxol +14.0104095,CHEBI:38116,http://purl.obolibrary.org/obo/CHEBI_38116,sulfonamidate +14.0104095,CHEBI:46701,http://purl.obolibrary.org/obo/CHEBI_46701,pyrrolidinemonocarboxylic acid +14.0104095,CHEBI:48425,http://purl.obolibrary.org/obo/CHEBI_48425,topical anaesthetic +14.0104095,CHEBI:50511,http://purl.obolibrary.org/obo/CHEBI_50511,bipyridines +14.0104095,CHEBI:50535,http://purl.obolibrary.org/obo/CHEBI_50535,tin coordination entity +14.0104095,CHEBI:50916,http://purl.obolibrary.org/obo/CHEBI_50916,lipid kinase inhibitor +14.0104095,CHEBI:52990,http://purl.obolibrary.org/obo/CHEBI_52990,tin oxide +14.0104095,CHEBI:59640,http://purl.obolibrary.org/obo/CHEBI_59640,N-acetylglucosamine +14.0104095,CHEBI:72575,http://purl.obolibrary.org/obo/CHEBI_72575,alarm pheromone +14.0104095,CHEBI:73334,http://purl.obolibrary.org/obo/CHEBI_73334,thyroid hormone agonist +14.0104095,CHEBI:73539,http://purl.obolibrary.org/obo/CHEBI_73539,naphthyridine derivative +14.0104095,CHEBI:82719,http://purl.obolibrary.org/obo/CHEBI_82719,orciprenaline +14.0104095,CL:0000626,http://purl.obolibrary.org/obo/CL_0000626,olfactory granule cell +14.0104095,CL:0000884,http://purl.obolibrary.org/obo/CL_0000884,mucosa-associated lymphoid tissue macrophage +14.0104095,CL:0000885,http://purl.obolibrary.org/obo/CL_0000885,gut-associated lymphoid tissue macrophage +14.0104095,CL:0002048,http://purl.obolibrary.org/obo/CL_0002048,late pro-B cell +14.0104095,CL:0002061,http://purl.obolibrary.org/obo/CL_0002061,T-helper 9 cell +14.0104095,CL:0002149,http://purl.obolibrary.org/obo/CL_0002149,epithelial cell of uterus +14.0104095,CL:0002422,http://purl.obolibrary.org/obo/CL_0002422,enucleated reticulocyte +14.0104095,DRUGBANK:DB00463,http://purl.obolibrary.org/obo/DRUGBANK_DB00463,none +14.0104095,DRUGBANK:DB01841,http://purl.obolibrary.org/obo/DRUGBANK_DB01841,none +14.0104095,DRUGBANK:DB02114,http://purl.obolibrary.org/obo/DRUGBANK_DB02114,none +14.0104095,DRUGBANK:DB02721,http://purl.obolibrary.org/obo/DRUGBANK_DB02721,none +14.0104095,DRUGBANK:DB02740,http://purl.obolibrary.org/obo/DRUGBANK_DB02740,none +14.0104095,DRUGBANK:DB03018,http://purl.obolibrary.org/obo/DRUGBANK_DB03018,none +14.0104095,DRUGBANK:DB03158,http://purl.obolibrary.org/obo/DRUGBANK_DB03158,none +14.0104095,DRUGBANK:DB03859,http://purl.obolibrary.org/obo/DRUGBANK_DB03859,none +14.0104095,DRUGBANK:DB03941,http://purl.obolibrary.org/obo/DRUGBANK_DB03941,none +14.0104095,DRUGBANK:DB04533,http://purl.obolibrary.org/obo/DRUGBANK_DB04533,none +14.0104095,DRUGBANK:DB05010,http://purl.obolibrary.org/obo/DRUGBANK_DB05010,none +14.0104095,DRUGBANK:DB05408,http://purl.obolibrary.org/obo/DRUGBANK_DB05408,none +14.0104095,DRUGBANK:DB05474,http://purl.obolibrary.org/obo/DRUGBANK_DB05474,none +14.0104095,DRUGBANK:DB05501,http://purl.obolibrary.org/obo/DRUGBANK_DB05501,none +14.0104095,DRUGBANK:DB05806,http://purl.obolibrary.org/obo/DRUGBANK_DB05806,none +14.0104095,DRUGBANK:DB05943,http://purl.obolibrary.org/obo/DRUGBANK_DB05943,none +14.0104095,DRUGBANK:DB06013,http://purl.obolibrary.org/obo/DRUGBANK_DB06013,none +14.0104095,DRUGBANK:DB06112,http://purl.obolibrary.org/obo/DRUGBANK_DB06112,none +14.0104095,DRUGBANK:DB06184,http://purl.obolibrary.org/obo/DRUGBANK_DB06184,none +14.0104095,DRUGBANK:DB06437,http://purl.obolibrary.org/obo/DRUGBANK_DB06437,none +14.0104095,DRUGBANK:DB06465,http://purl.obolibrary.org/obo/DRUGBANK_DB06465,none +14.0104095,DRUGBANK:DB07870,http://purl.obolibrary.org/obo/DRUGBANK_DB07870,none +14.0104095,DRUGBANK:DB08982,http://purl.obolibrary.org/obo/DRUGBANK_DB08982,none +14.0104095,DRUGBANK:DB09120,http://purl.obolibrary.org/obo/DRUGBANK_DB09120,none +14.0104095,DRUGBANK:DB09197,http://purl.obolibrary.org/obo/DRUGBANK_DB09197,none +14.0104095,DRUGBANK:DB09355,http://purl.obolibrary.org/obo/DRUGBANK_DB09355,none +14.0104095,DRUGBANK:DB11115,http://purl.obolibrary.org/obo/DRUGBANK_DB11115,none +14.0104095,DRUGBANK:DB11529,http://purl.obolibrary.org/obo/DRUGBANK_DB11529,none +14.0104095,DRUGBANK:DB11810,http://purl.obolibrary.org/obo/DRUGBANK_DB11810,none +14.0104095,DRUGBANK:DB11850,http://purl.obolibrary.org/obo/DRUGBANK_DB11850,none +14.0104095,DRUGBANK:DB11893,http://purl.obolibrary.org/obo/DRUGBANK_DB11893,none +14.0104095,DRUGBANK:DB11957,http://purl.obolibrary.org/obo/DRUGBANK_DB11957,none +14.0104095,DRUGBANK:DB12109,http://purl.obolibrary.org/obo/DRUGBANK_DB12109,none +14.0104095,DRUGBANK:DB12350,http://purl.obolibrary.org/obo/DRUGBANK_DB12350,none +14.0104095,DRUGBANK:DB12380,http://purl.obolibrary.org/obo/DRUGBANK_DB12380,none +14.0104095,DRUGBANK:DB12384,http://purl.obolibrary.org/obo/DRUGBANK_DB12384,none +14.0104095,DRUGBANK:DB12589,http://purl.obolibrary.org/obo/DRUGBANK_DB12589,none +14.0104095,DRUGBANK:DB12692,http://purl.obolibrary.org/obo/DRUGBANK_DB12692,none +14.0104095,DRUGBANK:DB12702,http://purl.obolibrary.org/obo/DRUGBANK_DB12702,none +14.0104095,DRUGBANK:DB12820,http://purl.obolibrary.org/obo/DRUGBANK_DB12820,none +14.0104095,DRUGBANK:DB12878,http://purl.obolibrary.org/obo/DRUGBANK_DB12878,none +14.0104095,DRUGBANK:DB12927,http://purl.obolibrary.org/obo/DRUGBANK_DB12927,none +14.0104095,DRUGBANK:DB13353,http://purl.obolibrary.org/obo/DRUGBANK_DB13353,none +14.0104095,DRUGBANK:DB13554,http://purl.obolibrary.org/obo/DRUGBANK_DB13554,none +14.0104095,DRUGBANK:DB13687,http://purl.obolibrary.org/obo/DRUGBANK_DB13687,none +14.0104095,DRUGBANK:DB13793,http://purl.obolibrary.org/obo/DRUGBANK_DB13793,none +14.0104095,DRUGBANK:DB14035,http://purl.obolibrary.org/obo/DRUGBANK_DB14035,none +14.0104095,DRUGBANK:DB15377,http://purl.obolibrary.org/obo/DRUGBANK_DB15377,none +14.0104095,DRUGBANK:DB15410,http://purl.obolibrary.org/obo/DRUGBANK_DB15410,none +14.0104095,DRUGBANK:DB15456,http://purl.obolibrary.org/obo/DRUGBANK_DB15456,none +14.0104095,DRUGBANK:DB15840,http://purl.obolibrary.org/obo/DRUGBANK_DB15840,none +14.0104095,DRUGBANK:DB15991,http://purl.obolibrary.org/obo/DRUGBANK_DB15991,none +14.0104095,DRUGBANK:DB16026,http://purl.obolibrary.org/obo/DRUGBANK_DB16026,none +14.0104095,DRUGBANK:DB16093,http://purl.obolibrary.org/obo/DRUGBANK_DB16093,none +14.0104095,GO:0000417,http://purl.obolibrary.org/obo/GO_0000417,HIR complex +14.0104095,GO:0001762,http://purl.obolibrary.org/obo/GO_0001762,beta-alanine transport +14.0104095,GO:0003073,http://purl.obolibrary.org/obo/GO_0003073,regulation of systemic arterial blood pressure +14.0104095,GO:0003179,http://purl.obolibrary.org/obo/GO_0003179,heart valve morphogenesis +14.0104095,GO:0003774,http://purl.obolibrary.org/obo/GO_0003774,cytoskeletal motor activity +14.0104095,GO:0003921,http://purl.obolibrary.org/obo/GO_0003921,GMP synthase activity +14.0104095,GO:0004321,http://purl.obolibrary.org/obo/GO_0004321,fatty-acyl-CoA synthase activity +14.0104095,GO:0004438,http://purl.obolibrary.org/obo/GO_0004438,phosphatidylinositol-3-phosphatase activity +14.0104095,GO:0004733,http://purl.obolibrary.org/obo/GO_0004733,pyridoxamine-phosphate oxidase activity +14.0104095,GO:0004864,http://purl.obolibrary.org/obo/GO_0004864,protein phosphatase inhibitor activity +14.0104095,GO:0005728,http://purl.obolibrary.org/obo/GO_0005728,extrachromosomal rDNA circle +14.0104095,GO:0006598,http://purl.obolibrary.org/obo/GO_0006598,polyamine catabolic process +14.0104095,GO:0006971,http://purl.obolibrary.org/obo/GO_0006971,hypotonic response +14.0104095,GO:0007114,http://purl.obolibrary.org/obo/GO_0007114,cell budding +14.0104095,GO:0008345,http://purl.obolibrary.org/obo/GO_0008345,larval locomotory behavior +14.0104095,GO:0008401,http://purl.obolibrary.org/obo/GO_0008401,retinoic acid 4-hydroxylase activity +14.0104095,GO:0008616,http://purl.obolibrary.org/obo/GO_0008616,queuosine biosynthetic process +14.0104095,GO:0008683,http://purl.obolibrary.org/obo/GO_0008683,2-oxoglutarate decarboxylase activity +14.0104095,GO:0008906,http://purl.obolibrary.org/obo/GO_0008906,inosine kinase activity +14.0104095,GO:0008962,http://purl.obolibrary.org/obo/GO_0008962,phosphatidylglycerophosphatase activity +14.0104095,GO:0009083,http://purl.obolibrary.org/obo/GO_0009083,branched-chain amino acid catabolic process +14.0104095,GO:0009094,http://purl.obolibrary.org/obo/GO_0009094,L-phenylalanine biosynthetic process +14.0104095,GO:0009313,http://purl.obolibrary.org/obo/GO_0009313,oligosaccharide catabolic process +14.0104095,GO:0010032,http://purl.obolibrary.org/obo/GO_0010032,meiotic chromosome condensation +14.0104095,GO:0010053,http://purl.obolibrary.org/obo/GO_0010053,root epidermal cell differentiation +14.0104095,GO:0010089,http://purl.obolibrary.org/obo/GO_0010089,xylem development +14.0104095,GO:0010155,http://purl.obolibrary.org/obo/GO_0010155,regulation of proton transport +14.0104095,GO:0010191,http://purl.obolibrary.org/obo/GO_0010191,mucilage metabolic process +14.0104095,GO:0010192,http://purl.obolibrary.org/obo/GO_0010192,mucilage biosynthetic process +14.0104095,GO:0010541,http://purl.obolibrary.org/obo/GO_0010541,acropetal auxin transport +14.0104095,GO:0010955,http://purl.obolibrary.org/obo/GO_0010955,negative regulation of protein processing +14.0104095,GO:0015690,http://purl.obolibrary.org/obo/GO_0015690,aluminum cation transport +14.0104095,GO:0015788,http://purl.obolibrary.org/obo/GO_0015788,none +14.0104095,GO:0015887,http://purl.obolibrary.org/obo/GO_0015887,pantothenate transmembrane transport +14.0104095,GO:0016099,http://purl.obolibrary.org/obo/GO_0016099,monoterpenoid biosynthetic process +14.0104095,GO:0016157,http://purl.obolibrary.org/obo/GO_0016157,sucrose synthase activity +14.0104095,GO:0016539,http://purl.obolibrary.org/obo/GO_0016539,intein-mediated protein splicing +14.0104095,GO:0016589,http://purl.obolibrary.org/obo/GO_0016589,NURF complex +14.0104095,GO:0017125,http://purl.obolibrary.org/obo/GO_0017125,deoxycytidyl transferase activity +14.0104095,GO:0018787,http://purl.obolibrary.org/obo/GO_0018787,4-chlorobenzoyl-CoA dehalogenase activity +14.0104095,GO:0019745,http://purl.obolibrary.org/obo/GO_0019745,pentacyclic triterpenoid biosynthetic process +14.0104095,GO:0021984,http://purl.obolibrary.org/obo/GO_0021984,adenohypophysis development +14.0104095,GO:0030205,http://purl.obolibrary.org/obo/GO_0030205,dermatan sulfate metabolic process +14.0104095,GO:0030974,http://purl.obolibrary.org/obo/GO_0030974,thiamine pyrophosphate transmembrane transport +14.0104095,GO:0031258,http://purl.obolibrary.org/obo/GO_0031258,lamellipodium membrane +14.0104095,GO:0031338,http://purl.obolibrary.org/obo/GO_0031338,regulation of vesicle fusion +14.0104095,GO:0032242,http://purl.obolibrary.org/obo/GO_0032242,regulation of nucleoside transport +14.0104095,GO:0032272,http://purl.obolibrary.org/obo/GO_0032272,negative regulation of protein polymerization +14.0104095,GO:0032333,http://purl.obolibrary.org/obo/GO_0032333,activin secretion +14.0104095,GO:0032505,http://purl.obolibrary.org/obo/GO_0032505,reproduction of a single-celled organism +14.0104095,GO:0032507,http://purl.obolibrary.org/obo/GO_0032507,maintenance of protein location in cell +14.0104095,GO:0033334,http://purl.obolibrary.org/obo/GO_0033334,fin morphogenesis +14.0104095,GO:0034516,http://purl.obolibrary.org/obo/GO_0034516,response to vitamin B6 +14.0104095,GO:0034676,http://purl.obolibrary.org/obo/GO_0034676,integrin alpha6-beta4 complex +14.0104095,GO:0034785,http://purl.obolibrary.org/obo/GO_0034785,salicylate 5-hydroxylase activity +14.0104095,GO:0035340,http://purl.obolibrary.org/obo/GO_0035340,inosine transport +14.0104095,GO:0035579,http://purl.obolibrary.org/obo/GO_0035579,specific granule membrane +14.0104095,GO:0035624,http://purl.obolibrary.org/obo/GO_0035624,receptor transactivation +14.0104095,GO:0036335,http://purl.obolibrary.org/obo/GO_0036335,intestinal stem cell homeostasis +14.0104095,GO:0036478,http://purl.obolibrary.org/obo/GO_0036478,L-dopa decarboxylase activator activity +14.0104095,GO:0038183,http://purl.obolibrary.org/obo/GO_0038183,bile acid signaling pathway +14.0104095,GO:0042192,http://purl.obolibrary.org/obo/GO_0042192,methylmercury biosynthetic process +14.0104095,GO:0042226,http://purl.obolibrary.org/obo/GO_0042226,none +14.0104095,GO:0042263,http://purl.obolibrary.org/obo/GO_0042263,neuropeptide F receptor activity +14.0104095,GO:0042432,http://purl.obolibrary.org/obo/GO_0042432,indole biosynthetic process +14.0104095,GO:0042863,http://purl.obolibrary.org/obo/GO_0042863,pyochelin metabolic process +14.0104095,GO:0042864,http://purl.obolibrary.org/obo/GO_0042864,pyochelin biosynthetic process +14.0104095,GO:0043146,http://purl.obolibrary.org/obo/GO_0043146,none +14.0104095,GO:0043286,http://purl.obolibrary.org/obo/GO_0043286,regulation of poly(3-hydroxyalkanoate) biosynthetic process +14.0104095,GO:0043409,http://purl.obolibrary.org/obo/GO_0043409,negative regulation of MAPK cascade +14.0104095,GO:0043505,http://purl.obolibrary.org/obo/GO_0043505,CENP-A containing nucleosome +14.0104095,GO:0043890,http://purl.obolibrary.org/obo/GO_0043890,N-acetylgalactosamine-6-sulfatase activity +14.0104095,GO:0044317,http://purl.obolibrary.org/obo/GO_0044317,rod spherule +14.0104095,GO:0044545,http://purl.obolibrary.org/obo/GO_0044545,NSL complex +14.0104095,GO:0044557,http://purl.obolibrary.org/obo/GO_0044557,relaxation of smooth muscle +14.0104095,GO:0044769,http://purl.obolibrary.org/obo/GO_0044769,"ATPase activity, coupled to transmembrane movement of ions, rotational mechanism" +14.0104095,GO:0045098,http://purl.obolibrary.org/obo/GO_0045098,type III intermediate filament +14.0104095,GO:0045185,http://purl.obolibrary.org/obo/GO_0045185,maintenance of protein location +14.0104095,GO:0046274,http://purl.obolibrary.org/obo/GO_0046274,lignin catabolic process +14.0104095,GO:0046333,http://purl.obolibrary.org/obo/GO_0046333,octopamine metabolic process +14.0104095,GO:0046400,http://purl.obolibrary.org/obo/GO_0046400,keto-3-deoxy-D-manno-octulosonic acid metabolic process +14.0104095,GO:0046414,http://purl.obolibrary.org/obo/GO_0046414,organomercury biosynthetic process +14.0104095,GO:0046482,http://purl.obolibrary.org/obo/GO_0046482,para-aminobenzoic acid metabolic process +14.0104095,GO:0046637,http://purl.obolibrary.org/obo/GO_0046637,regulation of alpha-beta T cell differentiation +14.0104095,GO:0047142,http://purl.obolibrary.org/obo/GO_0047142,enzyme-thiol transhydrogenase (glutathione-disulfide) activity +14.0104095,GO:0047389,http://purl.obolibrary.org/obo/GO_0047389,glycerophosphocholine phosphodiesterase activity +14.0104095,GO:0047743,http://purl.obolibrary.org/obo/GO_0047743,chlordecone reductase activity +14.0104095,GO:0048521,http://purl.obolibrary.org/obo/GO_0048521,negative regulation of behavior +14.0104095,GO:0048543,http://purl.obolibrary.org/obo/GO_0048543,phytochrome chromophore biosynthetic process +14.0104095,GO:0048665,http://purl.obolibrary.org/obo/GO_0048665,neuron fate specification +14.0104095,GO:0050151,http://purl.obolibrary.org/obo/GO_0050151,oleate hydratase activity +14.0104095,GO:0050214,http://purl.obolibrary.org/obo/GO_0050214,progesterone monooxygenase activity +14.0104095,GO:0050267,http://purl.obolibrary.org/obo/GO_0050267,rubber cis-polyprenylcistransferase activity +14.0104095,GO:0050518,http://purl.obolibrary.org/obo/GO_0050518,2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity +14.0104095,GO:0050587,http://purl.obolibrary.org/obo/GO_0050587,chlorite O2-lyase activity +14.0104095,GO:0050813,http://purl.obolibrary.org/obo/GO_0050813,epothilone metabolic process +14.0104095,GO:0050814,http://purl.obolibrary.org/obo/GO_0050814,epothilone biosynthetic process +14.0104095,GO:0051328,http://purl.obolibrary.org/obo/GO_0051328,meiotic interphase +14.0104095,GO:0051353,http://purl.obolibrary.org/obo/GO_0051353,positive regulation of oxidoreductase activity +14.0104095,GO:0052701,http://purl.obolibrary.org/obo/GO_0052701,cellular modified histidine metabolic process +14.0104095,GO:0055087,http://purl.obolibrary.org/obo/GO_0055087,Ski complex +14.0104095,GO:0060053,http://purl.obolibrary.org/obo/GO_0060053,neurofilament cytoskeleton +14.0104095,GO:0060205,http://purl.obolibrary.org/obo/GO_0060205,cytoplasmic vesicle lumen +14.0104095,GO:0060729,http://purl.obolibrary.org/obo/GO_0060729,intestinal epithelial structure maintenance +14.0104095,GO:0060759,http://purl.obolibrary.org/obo/GO_0060759,regulation of response to cytokine stimulus +14.0104095,GO:0060996,http://purl.obolibrary.org/obo/GO_0060996,dendritic spine development +14.0104095,GO:0061664,http://purl.obolibrary.org/obo/GO_0061664,Pup ligase activity +14.0104095,GO:0070342,http://purl.obolibrary.org/obo/GO_0070342,brown fat cell proliferation +14.0104095,GO:0070522,http://purl.obolibrary.org/obo/GO_0070522,ERCC4-ERCC1 complex +14.0104095,GO:0070604,http://purl.obolibrary.org/obo/GO_0070604,none +14.0104095,GO:0071363,http://purl.obolibrary.org/obo/GO_0071363,cellular response to growth factor stimulus +14.0104095,GO:0071439,http://purl.obolibrary.org/obo/GO_0071439,clathrin complex +14.0104095,GO:0071637,http://purl.obolibrary.org/obo/GO_0071637,regulation of monocyte chemotactic protein-1 production +14.0104095,GO:0071669,http://purl.obolibrary.org/obo/GO_0071669,plant-type cell wall organization or biogenesis +14.0104095,GO:0071825,http://purl.obolibrary.org/obo/GO_0071825,protein-lipid complex subunit organization +14.0104095,GO:0072496,http://purl.obolibrary.org/obo/GO_0072496,Pup transferase activity +14.0104095,GO:0072609,http://purl.obolibrary.org/obo/GO_0072609,none +14.0104095,GO:0072706,http://purl.obolibrary.org/obo/GO_0072706,response to sodium dodecyl sulfate +14.0104095,GO:0080052,http://purl.obolibrary.org/obo/GO_0080052,response to histidine +14.0104095,GO:0090014,http://purl.obolibrary.org/obo/GO_0090014,leaflet formation +14.0104095,GO:0090030,http://purl.obolibrary.org/obo/GO_0090030,regulation of steroid hormone biosynthetic process +14.0104095,GO:0090594,http://purl.obolibrary.org/obo/GO_0090594,inflammatory response to wounding +14.0104095,GO:0097598,http://purl.obolibrary.org/obo/GO_0097598,sperm cytoplasmic droplet +14.0104095,GO:1901019,http://purl.obolibrary.org/obo/GO_1901019,regulation of calcium ion transmembrane transporter activity +14.0104095,GO:1901172,http://purl.obolibrary.org/obo/GO_1901172,phytoene metabolic process +14.0104095,GO:1901174,http://purl.obolibrary.org/obo/GO_1901174,phytoene biosynthetic process +14.0104095,GO:1901804,http://purl.obolibrary.org/obo/GO_1901804,beta-glucoside metabolic process +14.0104095,GO:1902018,http://purl.obolibrary.org/obo/GO_1902018,negative regulation of cilium assembly +14.0104095,GO:1902033,http://purl.obolibrary.org/obo/GO_1902033,regulation of hematopoietic stem cell proliferation +14.0104095,GO:1902223,http://purl.obolibrary.org/obo/GO_1902223,erythrose 4-phosphate/phosphoenolpyruvate family amino acid biosynthetic process +14.0104095,GO:1902490,http://purl.obolibrary.org/obo/GO_1902490,regulation of sperm capacitation +14.0104095,GO:1903318,http://purl.obolibrary.org/obo/GO_1903318,negative regulation of protein maturation +14.0104095,GO:1903421,http://purl.obolibrary.org/obo/GO_1903421,regulation of synaptic vesicle recycling +14.0104095,GO:1903726,http://purl.obolibrary.org/obo/GO_1903726,negative regulation of phospholipid metabolic process +14.0104095,GO:1904008,http://purl.obolibrary.org/obo/GO_1904008,response to monosodium glutamate +14.0104095,GO:1990357,http://purl.obolibrary.org/obo/GO_1990357,terminal web +14.0104095,GO:2000354,http://purl.obolibrary.org/obo/GO_2000354,regulation of ovarian follicle development +14.0104095,HP:0002248,http://purl.obolibrary.org/obo/HP_0002248,Hematemesis +14.0104095,HP:0002667,http://purl.obolibrary.org/obo/HP_0002667,Nephroblastoma +14.0104095,HP:0003521,http://purl.obolibrary.org/obo/HP_0003521,Disproportionate short-trunk short stature +14.0104095,HP:0004947,http://purl.obolibrary.org/obo/HP_0004947,Arteriovenous fistula +14.0104095,HP:0009827,http://purl.obolibrary.org/obo/HP_0009827,Amelia +14.0104095,HP:0030760,http://purl.obolibrary.org/obo/HP_0030760,Renal fibrosis +14.0104095,MONDO:0000156,http://purl.obolibrary.org/obo/MONDO_0000156,trigonocephaly +14.0104095,MONDO:0001017,http://purl.obolibrary.org/obo/MONDO_0001017,epididymal adenocarcinoma +14.0104095,MONDO:0001042,http://purl.obolibrary.org/obo/MONDO_0001042,patellar tendinitis +14.0104095,MONDO:0001109,http://purl.obolibrary.org/obo/MONDO_0001109,petrositis +14.0104095,MONDO:0001426,http://purl.obolibrary.org/obo/MONDO_0001426,mediastinum neurofibroma +14.0104095,MONDO:0001842,http://purl.obolibrary.org/obo/MONDO_0001842,uterine corpus dissecting leiomyoma +14.0104095,MONDO:0002250,http://purl.obolibrary.org/obo/MONDO_0002250,basilar artery insufficiency +14.0104095,MONDO:0002290,http://purl.obolibrary.org/obo/MONDO_0002290,clitoris cancer +14.0104095,MONDO:0002323,http://purl.obolibrary.org/obo/MONDO_0002323,cherry hemangioma +14.0104095,MONDO:0002469,http://purl.obolibrary.org/obo/MONDO_0002469,lacrimal gland carcinoma ex pleomorphic adenoma +14.0104095,MONDO:0002518,http://purl.obolibrary.org/obo/MONDO_0002518,gallbladder papillary neoplasm +14.0104095,MONDO:0002791,http://purl.obolibrary.org/obo/MONDO_0002791,large cell medulloblastoma +14.0104095,MONDO:0002801,http://purl.obolibrary.org/obo/MONDO_0002801,colonic pseudo-obstruction +14.0104095,MONDO:0003064,http://purl.obolibrary.org/obo/MONDO_0003064,inverted transitional cell papilloma +14.0104095,MONDO:0003177,http://purl.obolibrary.org/obo/MONDO_0003177,prostate adenoid cystic carcinoma +14.0104095,MONDO:0003204,http://purl.obolibrary.org/obo/MONDO_0003204,villous adenocarcinoma +14.0104095,MONDO:0003326,http://purl.obolibrary.org/obo/MONDO_0003326,intermixed schwannian stroma-rich ganglioneuroblastoma +14.0104095,MONDO:0003376,http://purl.obolibrary.org/obo/MONDO_0003376,mediastinum leiomyosarcoma +14.0104095,MONDO:0003588,http://purl.obolibrary.org/obo/MONDO_0003588,larynx liposarcoma +14.0104095,MONDO:0003716,http://purl.obolibrary.org/obo/MONDO_0003716,renal pelvis papillary urothelial carcinoma +14.0104095,MONDO:0003742,http://purl.obolibrary.org/obo/MONDO_0003742,heart fibrosarcoma +14.0104095,MONDO:0004582,http://purl.obolibrary.org/obo/MONDO_0004582,rheumatic myocarditis +14.0104095,MONDO:0004723,http://purl.obolibrary.org/obo/MONDO_0004723,liver leiomyoma +14.0104095,MONDO:0004828,http://purl.obolibrary.org/obo/MONDO_0004828,lower urinary tract calculus +14.0104095,MONDO:0006153,http://purl.obolibrary.org/obo/MONDO_0006153,colon juvenile polyp +14.0104095,MONDO:0006218,http://purl.obolibrary.org/obo/MONDO_0006218,gallbladder biliary intraepithelial neoplasia +14.0104095,MONDO:0006388,http://purl.obolibrary.org/obo/MONDO_0006388,prolactin-producing pituitary gland carcinoma +14.0104095,MONDO:0006428,http://purl.obolibrary.org/obo/MONDO_0006428,splenic diffuse large B-cell lymphoma +14.0104095,MONDO:0006464,http://purl.obolibrary.org/obo/MONDO_0006464,thyroid gland mucosa-associated lymphoid tissue lymphoma +14.0104095,MONDO:0006476,http://purl.obolibrary.org/obo/MONDO_0006476,undifferentiated gallbladder carcinoma +14.0104095,MONDO:0006482,http://purl.obolibrary.org/obo/MONDO_0006482,ureter small cell carcinoma +14.0104095,MONDO:0006809,http://purl.obolibrary.org/obo/MONDO_0006809,intracranial embolism +14.0104095,MONDO:0007048,http://purl.obolibrary.org/obo/MONDO_0007048,acrokeratosis verruciformis +14.0104095,MONDO:0007735,http://purl.obolibrary.org/obo/MONDO_0007735,congenital Horner syndrome +14.0104095,MONDO:0008600,http://purl.obolibrary.org/obo/MONDO_0008600,trigger thumb +14.0104095,MONDO:0008703,http://purl.obolibrary.org/obo/MONDO_0008703,"acromesomelic dysplasia, Grebe type" +14.0104095,MONDO:0009351,http://purl.obolibrary.org/obo/MONDO_0009351,homocarnosinosis +14.0104095,MONDO:0009374,http://purl.obolibrary.org/obo/MONDO_0009374,hydroxyprolinemia +14.0104095,MONDO:0009610,http://purl.obolibrary.org/obo/MONDO_0009610,3-methylglutaconic aciduria type 1 +14.0104095,MONDO:0009916,http://purl.obolibrary.org/obo/MONDO_0009916,"46,XY disorder of sex development due to 17-beta-hydroxysteroid dehydrogenase 3 deficiency" +14.0104095,MONDO:0009923,http://purl.obolibrary.org/obo/MONDO_0009923,"46,XY disorder of sex development due to 5-alpha-reductase 2 deficiency" +14.0104095,MONDO:0010686,http://purl.obolibrary.org/obo/MONDO_0010686,N syndrome +14.0104095,MONDO:0011010,http://purl.obolibrary.org/obo/MONDO_0011010,Matthew-Wood syndrome +14.0104095,MONDO:0011765,http://purl.obolibrary.org/obo/MONDO_0011765,multiple epiphyseal dysplasia type 5 +14.0104095,MONDO:0012146,http://purl.obolibrary.org/obo/MONDO_0012146,familial hemophagocytic lymphohistiocytosis 3 +14.0104095,MONDO:0012516,http://purl.obolibrary.org/obo/MONDO_0012516,mandibulofacial dysostosis-microcephaly syndrome +14.0104095,MONDO:0012520,http://purl.obolibrary.org/obo/MONDO_0012520,insulin-resistance syndrome type A +14.0104095,MONDO:0012630,http://purl.obolibrary.org/obo/MONDO_0012630,Alzheimer disease 13 +14.0104095,MONDO:0012640,http://purl.obolibrary.org/obo/MONDO_0012640,Charcot-Marie-Tooth disease type 4J +14.0104095,MONDO:0012774,http://purl.obolibrary.org/obo/MONDO_0012774,chromosome 15q13.3 microdeletion syndrome +14.0104095,MONDO:0013276,http://purl.obolibrary.org/obo/MONDO_0013276,Reynolds syndrome +14.0104095,MONDO:0014276,http://purl.obolibrary.org/obo/MONDO_0014276,combined immunodeficiency due to CD3gamma deficiency +14.0104095,MONDO:0015270,http://purl.obolibrary.org/obo/MONDO_0015270,butyrylcholinesterase deficiency +14.0104095,MONDO:0015720,http://purl.obolibrary.org/obo/MONDO_0015720,moderately severe hemophilia A +14.0104095,MONDO:0015735,http://purl.obolibrary.org/obo/MONDO_0015735,severe congenital nemaline myopathy +14.0104095,MONDO:0016416,http://purl.obolibrary.org/obo/MONDO_0016416,diphallia +14.0104095,MONDO:0016423,http://purl.obolibrary.org/obo/MONDO_0016423,autoimmune polyendocrinopathy type 4 +14.0104095,MONDO:0017222,http://purl.obolibrary.org/obo/MONDO_0017222,"Pelizaeus-Merzbacher disease, classic form" +14.0104095,MONDO:0017298,http://purl.obolibrary.org/obo/MONDO_0017298,acute zonal occult outer retinopathy +14.0104095,MONDO:0017348,http://purl.obolibrary.org/obo/MONDO_0017348,lymphoepithelial-like carcinoma +14.0104095,MONDO:0017439,http://purl.obolibrary.org/obo/MONDO_0017439,tetra-amelia +14.0104095,MONDO:0018674,http://purl.obolibrary.org/obo/MONDO_0018674,IgG4-related submandibular gland disease +14.0104095,MONDO:0018889,http://purl.obolibrary.org/obo/MONDO_0018889,hyaline body myopathy +14.0104095,MONDO:0019596,http://purl.obolibrary.org/obo/MONDO_0019596,"46,XY disorder of sex development due to testicular steroidogenesis defect" +14.0104095,MONDO:0019946,http://purl.obolibrary.org/obo/MONDO_0019946,ligneous conjunctivitis +14.0104095,MONDO:0020041,http://purl.obolibrary.org/obo/MONDO_0020041,"46,XY disorder of sex development due to a defect in testosterone metabolism by peripheral tissue" +14.0104095,MONDO:0020352,http://purl.obolibrary.org/obo/MONDO_0020352,"multiple system atrophy, parkinsonian type" +14.0104095,MONDO:0020540,http://purl.obolibrary.org/obo/MONDO_0020540,ovarian gynandroblastoma +14.0104095,MONDO:0021109,http://purl.obolibrary.org/obo/MONDO_0021109,inverted urothelial papilloma +14.0104095,MONDO:0021969,http://purl.obolibrary.org/obo/MONDO_0021969,Banti syndrome +14.0104095,MONDO:0042497,http://purl.obolibrary.org/obo/MONDO_0042497,mycotoxicosis +14.0104095,MONDO:0100012,http://purl.obolibrary.org/obo/MONDO_0100012,paratenonitis +14.0104095,MONDO:0100039,http://purl.obolibrary.org/obo/MONDO_0100039,CDKL5 disorder +14.0104095,MOP:0000632,http://purl.obolibrary.org/obo/MOP_0000632,none +14.0104095,NCBITaxon:105296,http://purl.obolibrary.org/obo/NCBITaxon_105296,none +14.0104095,NCBITaxon:10969,http://purl.obolibrary.org/obo/NCBITaxon_10969,none +14.0104095,NCBITaxon:11152,http://purl.obolibrary.org/obo/NCBITaxon_11152,Turkey coronavirus +14.0104095,NCBITaxon:11749,http://purl.obolibrary.org/obo/NCBITaxon_11749,none +14.0104095,NCBITaxon:11780,http://purl.obolibrary.org/obo/NCBITaxon_11780,none +14.0104095,NCBITaxon:11785,http://purl.obolibrary.org/obo/NCBITaxon_11785,none +14.0104095,NCBITaxon:11913,http://purl.obolibrary.org/obo/NCBITaxon_11913,none +14.0104095,NCBITaxon:11932,http://purl.obolibrary.org/obo/NCBITaxon_11932,none +14.0104095,NCBITaxon:12328,http://purl.obolibrary.org/obo/NCBITaxon_12328,none +14.0104095,NCBITaxon:12473,http://purl.obolibrary.org/obo/NCBITaxon_12473,none +14.0104095,NCBITaxon:1283210,http://purl.obolibrary.org/obo/NCBITaxon_1283210,none +14.0104095,NCBITaxon:1283211,http://purl.obolibrary.org/obo/NCBITaxon_1283211,none +14.0104095,NCBITaxon:1285590,http://purl.obolibrary.org/obo/NCBITaxon_1285590,none +14.0104095,NCBITaxon:159479,http://purl.obolibrary.org/obo/NCBITaxon_159479,none +14.0104095,NCBITaxon:169639,http://purl.obolibrary.org/obo/NCBITaxon_169639,none +14.0104095,NCBITaxon:1699513,http://purl.obolibrary.org/obo/NCBITaxon_1699513,none +14.0104095,NCBITaxon:1843489,http://purl.obolibrary.org/obo/NCBITaxon_1843489,none +14.0104095,NCBITaxon:1933274,http://purl.obolibrary.org/obo/NCBITaxon_1933274,none +14.0104095,NCBITaxon:1963761,http://purl.obolibrary.org/obo/NCBITaxon_1963761,Dipodoidea +14.0104095,NCBITaxon:200392,http://purl.obolibrary.org/obo/NCBITaxon_200392,none +14.0104095,NCBITaxon:222464,http://purl.obolibrary.org/obo/NCBITaxon_222464,none +14.0104095,NCBITaxon:2233857,http://purl.obolibrary.org/obo/NCBITaxon_2233857,none +14.0104095,NCBITaxon:255066,http://purl.obolibrary.org/obo/NCBITaxon_255066,none +14.0104095,NCBITaxon:2560602,http://purl.obolibrary.org/obo/NCBITaxon_2560602,Mumps orthorubulavirus +14.0104095,NCBITaxon:2560823,http://purl.obolibrary.org/obo/NCBITaxon_2560823,none +14.0104095,NCBITaxon:279896,http://purl.obolibrary.org/obo/NCBITaxon_279896,none +14.0104095,NCBITaxon:28889,http://purl.obolibrary.org/obo/NCBITaxon_28889,none +14.0104095,NCBITaxon:29255,http://purl.obolibrary.org/obo/NCBITaxon_29255,none +14.0104095,NCBITaxon:30033,http://purl.obolibrary.org/obo/NCBITaxon_30033,none +14.0104095,NCBITaxon:30036,http://purl.obolibrary.org/obo/NCBITaxon_30036,none +14.0104095,NCBITaxon:32624,http://purl.obolibrary.org/obo/NCBITaxon_32624,none +14.0104095,NCBITaxon:328061,http://purl.obolibrary.org/obo/NCBITaxon_328061,none +14.0104095,NCBITaxon:341730,http://purl.obolibrary.org/obo/NCBITaxon_341730,none +14.0104095,NCBITaxon:347219,http://purl.obolibrary.org/obo/NCBITaxon_347219,none +14.0104095,NCBITaxon:35516,http://purl.obolibrary.org/obo/NCBITaxon_35516,none +14.0104095,NCBITaxon:362246,http://purl.obolibrary.org/obo/NCBITaxon_362246,none +14.0104095,NCBITaxon:36734,http://purl.obolibrary.org/obo/NCBITaxon_36734,Unikaryonidae +14.0104095,NCBITaxon:3688,http://purl.obolibrary.org/obo/NCBITaxon_3688,none +14.0104095,NCBITaxon:41459,http://purl.obolibrary.org/obo/NCBITaxon_41459,none +14.0104095,NCBITaxon:441235,http://purl.obolibrary.org/obo/NCBITaxon_441235,none +14.0104095,NCBITaxon:46829,http://purl.obolibrary.org/obo/NCBITaxon_46829,none +14.0104095,NCBITaxon:470166,http://purl.obolibrary.org/obo/NCBITaxon_470166,none +14.0104095,NCBITaxon:502057,http://purl.obolibrary.org/obo/NCBITaxon_502057,none +14.0104095,NCBITaxon:51024,http://purl.obolibrary.org/obo/NCBITaxon_51024,none +14.0104095,NCBITaxon:51026,http://purl.obolibrary.org/obo/NCBITaxon_51026,Oxyuridae +14.0104095,NCBITaxon:51027,http://purl.obolibrary.org/obo/NCBITaxon_51027,Enterobius +14.0104095,NCBITaxon:51368,http://purl.obolibrary.org/obo/NCBITaxon_51368,none +14.0104095,NCBITaxon:51680,http://purl.obolibrary.org/obo/NCBITaxon_51680,none +14.0104095,NCBITaxon:52276,http://purl.obolibrary.org/obo/NCBITaxon_52276,none +14.0104095,NCBITaxon:5257,http://purl.obolibrary.org/obo/NCBITaxon_5257,none +14.0104095,NCBITaxon:5267,http://purl.obolibrary.org/obo/NCBITaxon_5267,none +14.0104095,NCBITaxon:52801,http://purl.obolibrary.org/obo/NCBITaxon_52801,none +14.0104095,NCBITaxon:586418,http://purl.obolibrary.org/obo/NCBITaxon_586418,none +14.0104095,NCBITaxon:586424,http://purl.obolibrary.org/obo/NCBITaxon_586424,none +14.0104095,NCBITaxon:58839,http://purl.obolibrary.org/obo/NCBITaxon_58839,Encephalitozoon intestinalis +14.0104095,NCBITaxon:6033,http://purl.obolibrary.org/obo/NCBITaxon_6033,Encephalitozoon +14.0104095,NCBITaxon:65619,http://purl.obolibrary.org/obo/NCBITaxon_65619,none +14.0104095,NCBITaxon:7246,http://purl.obolibrary.org/obo/NCBITaxon_7246,none +14.0104095,NCBITaxon:73950,http://purl.obolibrary.org/obo/NCBITaxon_73950,none +14.0104095,NCBITaxon:8070,http://purl.obolibrary.org/obo/NCBITaxon_8070,none +14.0104095,NCBITaxon:80941,http://purl.obolibrary.org/obo/NCBITaxon_80941,none +14.0104095,NCBITaxon:83810,http://purl.obolibrary.org/obo/NCBITaxon_83810,none +14.0104095,NCBITaxon:8399,http://purl.obolibrary.org/obo/NCBITaxon_8399,none +14.0104095,NCBITaxon:936885,http://purl.obolibrary.org/obo/NCBITaxon_936885,none +14.0104095,NCBITaxon:9378,http://purl.obolibrary.org/obo/NCBITaxon_9378,none +14.0104095,NCBITaxon:944644,http://purl.obolibrary.org/obo/NCBITaxon_944644,none +14.0104095,NCBITaxon:9533,http://purl.obolibrary.org/obo/NCBITaxon_9533,Cercopithecus +14.0104095,PR:000000670,http://purl.obolibrary.org/obo/PR_000000670,cation channel sperm-associated protein 2 +14.0104095,PR:000000798,http://purl.obolibrary.org/obo/PR_000000798,voltage-gated potassium channel KCNS1 +14.0104095,PR:000001571,http://purl.obolibrary.org/obo/PR_000001571,P2Y purinoceptor 14 +14.0104095,PR:000002086,http://purl.obolibrary.org/obo/PR_000002086,signal-regulatory protein beta-1 +14.0104095,PR:000002102,http://purl.obolibrary.org/obo/PR_000002102,sodium channel protein type 7 subunit alpha +14.0104095,PR:000003684,http://purl.obolibrary.org/obo/PR_000003684,actin-like protein 7A +14.0104095,PR:000003738,http://purl.obolibrary.org/obo/PR_000003738,ADAMTS-like protein 1 +14.0104095,PR:000004037,http://purl.obolibrary.org/obo/PR_000004037,ankyrin repeat and KH domain-containing protein 1 +14.0104095,PR:000004111,http://purl.obolibrary.org/obo/PR_000004111,AP-4 complex subunit beta-1 +14.0104095,PR:000004221,http://purl.obolibrary.org/obo/PR_000004221,Rho GTPase-activating protein 12 +14.0104095,PR:000004358,http://purl.obolibrary.org/obo/PR_000004358,ankyrin repeat and SOCS box protein 9 +14.0104095,PR:000004370,http://purl.obolibrary.org/obo/PR_000004370,asialoglycoprotein receptor 2 +14.0104095,PR:000004921,http://purl.obolibrary.org/obo/PR_000004921,"carbonic anhydrase 5A, mitochondrial" +14.0104095,PR:000005003,http://purl.obolibrary.org/obo/PR_000005003,cullin-associated NEDD8-dissociated protein 2 +14.0104095,PR:000005023,http://purl.obolibrary.org/obo/PR_000005023,calpain small subunit 2 +14.0104095,PR:000005360,http://purl.obolibrary.org/obo/PR_000005360,choline/ethanolaminephosphotransferase 1 +14.0104095,PR:000005516,http://purl.obolibrary.org/obo/PR_000005516,"creatine kinase U-type, mitochondrial" +14.0104095,PR:000005927,http://purl.obolibrary.org/obo/PR_000005927,cold shock domain-containing protein C2 +14.0104095,PR:000006077,http://purl.obolibrary.org/obo/PR_000006077,eukaryotic cytochrome b561 +14.0104095,PR:000006180,http://purl.obolibrary.org/obo/PR_000006180,none +14.0104095,PR:000006217,http://purl.obolibrary.org/obo/PR_000006217,none +14.0104095,PR:000006265,http://purl.obolibrary.org/obo/PR_000006265,dapper homolog 3 +14.0104095,PR:000006503,http://purl.obolibrary.org/obo/PR_000006503,dickkopf-like protein 1 +14.0104095,PR:000007042,http://purl.obolibrary.org/obo/PR_000007042,elongation of very long chain fatty acids protein 7 +14.0104095,PR:000007265,http://purl.obolibrary.org/obo/PR_000007265,exosome complex component RRP43 +14.0104095,PR:000007630,http://purl.obolibrary.org/obo/PR_000007630,forkhead box protein J3 +14.0104095,PR:000007669,http://purl.obolibrary.org/obo/PR_000007669,ferric-chelate reductase 1 +14.0104095,PR:000007698,http://purl.obolibrary.org/obo/PR_000007698,plasma alpha-L-fucosidase +14.0104095,PR:000007699,http://purl.obolibrary.org/obo/PR_000007699,L-fucose kinase +14.0104095,PR:000007780,http://purl.obolibrary.org/obo/PR_000007780,gamma-aminobutyric acid receptor subunit pi +14.0104095,PR:000007791,http://purl.obolibrary.org/obo/PR_000007791,acidic amino acid decarboxylase GADL1 +14.0104095,PR:000007909,http://purl.obolibrary.org/obo/PR_000007909,"glycine cleavage system H protein, mitochondrial" +14.0104095,PR:000007951,http://purl.obolibrary.org/obo/PR_000007951,GDNF family receptor alpha-4 +14.0104095,PR:000008113,http://purl.obolibrary.org/obo/PR_000008113,guanine nucleotide-binding protein G(T) subunit gamma-T1 +14.0104095,PR:000008193,http://purl.obolibrary.org/obo/PR_000008193,G-protein coupled receptor-associated sorting protein 2 +14.0104095,PR:000008255,http://purl.obolibrary.org/obo/PR_000008255,glutamate receptor-interacting protein 2 +14.0104095,PR:000008279,http://purl.obolibrary.org/obo/PR_000008279,homeobox protein goosecoid-2 +14.0104095,PR:000008962,http://purl.obolibrary.org/obo/PR_000008962,immunoglobulin heavy constant gamma 4 +14.0104095,PR:000009152,http://purl.obolibrary.org/obo/PR_000009152,intelectin-2 +14.0104095,PR:000009199,http://purl.obolibrary.org/obo/PR_000009199,Janus kinase and microtubule-interacting protein 1 +14.0104095,PR:000009447,http://purl.obolibrary.org/obo/PR_000009447,protein KRI1 +14.0104095,PR:000009718,http://purl.obolibrary.org/obo/PR_000009718,lysocardiolipin acyltransferase 1 +14.0104095,PR:000009726,http://purl.obolibrary.org/obo/PR_000009726,epididymal-specific lipocalin-6 +14.0104095,PR:000009803,http://purl.obolibrary.org/obo/PR_000009803,leukocyte immunoglobulin-like receptor subfamily A member 1 +14.0104095,PR:000009867,http://purl.obolibrary.org/obo/PR_000009867,leiomodin-3 +14.0104095,PR:000009938,http://purl.obolibrary.org/obo/PR_000009938,leucine-rich repeat-containing protein 50 +14.0104095,PR:000009986,http://purl.obolibrary.org/obo/PR_000009986,laeverin +14.0104095,PR:000010385,http://purl.obolibrary.org/obo/PR_000010385,"alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase B" +14.0104095,PR:000010400,http://purl.obolibrary.org/obo/PR_000010400,[F-actin]-monooxygenase MICAL2 +14.0104095,PR:000010414,http://purl.obolibrary.org/obo/PR_000010414,MIF4G domain-containing protein +14.0104095,PR:000010454,http://purl.obolibrary.org/obo/PR_000010454,protein AF-17 +14.0104095,PR:000010505,http://purl.obolibrary.org/obo/PR_000010505,MOB kinase activator 1A +14.0104095,PR:000010861,http://purl.obolibrary.org/obo/PR_000010861,myosin-Ig +14.0104095,PR:000011046,http://purl.obolibrary.org/obo/PR_000011046,nuclear receptor coactivator 7 +14.0104095,PR:000011066,http://purl.obolibrary.org/obo/PR_000011066,bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 4 +14.0104095,PR:000011253,http://purl.obolibrary.org/obo/PR_000011253,notchless protein homolog 1 +14.0104095,PR:000011285,http://purl.obolibrary.org/obo/PR_000011285,nucleoside diphosphate kinase homolog 5 +14.0104095,PR:000011329,http://purl.obolibrary.org/obo/PR_000011329,nitric oxide synthase-interacting protein +14.0104095,PR:000012257,http://purl.obolibrary.org/obo/PR_000012257,pantothenate kinase 3 +14.0104095,PR:000012307,http://purl.obolibrary.org/obo/PR_000012307,prostate and testis expressed protein 1 +14.0104095,PR:000012390,http://purl.obolibrary.org/obo/PR_000012390,protocadherin gamma-A12 +14.0104095,PR:000012703,http://purl.obolibrary.org/obo/PR_000012703,phosphatidylinositol N-acetylglucosaminyltransferase subunit P +14.0104095,PR:000012768,http://purl.obolibrary.org/obo/PR_000012768,pejvakin +14.0104095,PR:000013599,http://purl.obolibrary.org/obo/PR_000013599,Ras-related protein Rab-26 +14.0104095,PR:000013804,http://purl.obolibrary.org/obo/PR_000013804,RNA-binding protein 47 +14.0104095,PR:000013990,http://purl.obolibrary.org/obo/PR_000013990,rhophilin-1 +14.0104095,PR:000014027,http://purl.obolibrary.org/obo/PR_000014027,protein ripply2 +14.0104095,PR:000014216,http://purl.obolibrary.org/obo/PR_000014216,60S ribosomal protein L34 +14.0104095,PR:000014229,http://purl.obolibrary.org/obo/PR_000014229,60S ribosomal protein L41 +14.0104095,PR:000014536,http://purl.obolibrary.org/obo/PR_000014536,scrapie-responsive protein 1 +14.0104095,PR:000014595,http://purl.obolibrary.org/obo/PR_000014595,protein transport protein Sec61 subunit alpha isoform 1 +14.0104095,PR:000014653,http://purl.obolibrary.org/obo/PR_000014653,septin-14 +14.0104095,PR:000014710,http://purl.obolibrary.org/obo/PR_000014710,serpin I2 +14.0104095,PR:000014864,http://purl.obolibrary.org/obo/PR_000014864,sialic acid-binding Ig-like lectin 10 +14.0104095,PR:000015093,http://purl.obolibrary.org/obo/PR_000015093,adenosine 3'-phospho 5'-phosphosulfate transporter 1 +14.0104095,PR:000015241,http://purl.obolibrary.org/obo/PR_000015241,SLIT and NTRK-like protein 5 +14.0104095,PR:000015316,http://purl.obolibrary.org/obo/PR_000015316,snRNA-activating protein complex subunit 1 +14.0104095,PR:000015338,http://purl.obolibrary.org/obo/PR_000015338,U1 small nuclear ribonucleoprotein 70 kDa +14.0104095,PR:000015387,http://purl.obolibrary.org/obo/PR_000015387,sorting nexin-8 +14.0104095,PR:000015656,http://purl.obolibrary.org/obo/PR_000015656,Sjoegren syndrome nuclear autoantigen 1 +14.0104095,PR:000015662,http://purl.obolibrary.org/obo/PR_000015662,translocon-associated protein subunit delta +14.0104095,PR:000015851,http://purl.obolibrary.org/obo/PR_000015851,synaptic vesicle glycoprotein 2C +14.0104095,PR:000015868,http://purl.obolibrary.org/obo/PR_000015868,pre-mRNA-splicing factor SYF2 +14.0104095,PR:000015908,http://purl.obolibrary.org/obo/PR_000015908,synaptotagmin-6 +14.0104095,PR:000015937,http://purl.obolibrary.org/obo/PR_000015937,none +14.0104095,PR:000016038,http://purl.obolibrary.org/obo/PR_000016038,T-cell activation Rho GTPase-activating protein +14.0104095,PR:000016223,http://purl.obolibrary.org/obo/PR_000016223,beta-tectorin +14.0104095,PR:000016254,http://purl.obolibrary.org/obo/PR_000016254,testis-expressed protein 15 +14.0104095,PR:000016403,http://purl.obolibrary.org/obo/PR_000016403,transmembrane emp24 domain-containing protein 2 +14.0104095,PR:000016447,http://purl.obolibrary.org/obo/PR_000016447,tropomodulin-4 +14.0104095,PR:000016741,http://purl.obolibrary.org/obo/PR_000016741,tetraspanin-15 +14.0104095,PR:000017113,http://purl.obolibrary.org/obo/PR_000017113,uroplakin-1b +14.0104095,PR:000017175,http://purl.obolibrary.org/obo/PR_000017175,ubiquitin carboxyl-terminal hydrolase 36 +14.0104095,PR:000017514,http://purl.obolibrary.org/obo/PR_000017514,xylulose kinase +14.0104095,PR:000017634,http://purl.obolibrary.org/obo/PR_000017634,zinc finger and BTB domain-containing protein 14 +14.0104095,PR:000017757,http://purl.obolibrary.org/obo/PR_000017757,zinc finger protein 22 +14.0104095,PR:000018101,http://purl.obolibrary.org/obo/PR_000018101,zinc finger protein 704 +14.0104095,PR:000018213,http://purl.obolibrary.org/obo/PR_000018213,zona pellucida sperm-binding protein 4 +14.0104095,PR:000022107,http://purl.obolibrary.org/obo/PR_000022107,none +14.0104095,PR:000022131,http://purl.obolibrary.org/obo/PR_000022131,none +14.0104095,PR:000022378,http://purl.obolibrary.org/obo/PR_000022378,siroheme synthase cysG +14.0104095,PR:000022406,http://purl.obolibrary.org/obo/PR_000022406,none +14.0104095,PR:000023053,http://purl.obolibrary.org/obo/PR_000023053,none +14.0104095,PR:000023090,http://purl.obolibrary.org/obo/PR_000023090,none +14.0104095,PR:000023129,http://purl.obolibrary.org/obo/PR_000023129,none +14.0104095,PR:000023332,http://purl.obolibrary.org/obo/PR_000023332,none +14.0104095,PR:000023382,http://purl.obolibrary.org/obo/PR_000023382,none +14.0104095,PR:000023398,http://purl.obolibrary.org/obo/PR_000023398,none +14.0104095,PR:000023506,http://purl.obolibrary.org/obo/PR_000023506,none +14.0104095,PR:000023516,http://purl.obolibrary.org/obo/PR_000023516,none +14.0104095,PR:000023740,http://purl.obolibrary.org/obo/PR_000023740,none +14.0104095,PR:000023996,http://purl.obolibrary.org/obo/PR_000023996,none +14.0104095,PR:000024171,http://purl.obolibrary.org/obo/PR_000024171,none +14.0104095,PR:000025001,http://purl.obolibrary.org/obo/PR_000025001,none +14.0104095,PR:000029266,http://purl.obolibrary.org/obo/PR_000029266,alkylglycerol monooxygenase +14.0104095,PR:000029414,http://purl.obolibrary.org/obo/PR_000029414,ATP-dependent RNA helicase DHX33 +14.0104095,PR:000029516,http://purl.obolibrary.org/obo/PR_000029516,G-patch domain and KOW motifs-containing protein +14.0104095,PR:000029557,http://purl.obolibrary.org/obo/PR_000029557,intraflagellar transport protein 27 homolog +14.0104095,PR:000029577,http://purl.obolibrary.org/obo/PR_000029577,BTB/POZ domain-containing protein KCTD7 +14.0104095,PR:000029664,http://purl.obolibrary.org/obo/PR_000029664,prostate androgen-regulated mucin-like protein 1 +14.0104095,PR:000029743,http://purl.obolibrary.org/obo/PR_000029743,sterile alpha motif domain-containing protein 3 +14.0104095,PR:000029772,http://purl.obolibrary.org/obo/PR_000029772,starch-binding domain-containing protein 1 +14.0104095,PR:000030223,http://purl.obolibrary.org/obo/PR_000030223,tripartite motif-containing protein 65 +14.0104095,PR:000030455,http://purl.obolibrary.org/obo/PR_000030455,patched domain-containing protein 1 +14.0104095,PR:000030500,http://purl.obolibrary.org/obo/PR_000030500,FXYD domain-containing ion transport regulator 7 +14.0104095,PR:000030860,http://purl.obolibrary.org/obo/PR_000030860,extended synaptotagmin-1 +14.0104095,PR:000031156,http://purl.obolibrary.org/obo/PR_000031156,putative tyrosine-protein phosphatase TPTE +14.0104095,PR:000031169,http://purl.obolibrary.org/obo/PR_000031169,chromatin target of PRMT1 protein +14.0104095,PR:000031759,http://purl.obolibrary.org/obo/PR_000031759,ankyrin repeat domain-containing protein 55 +14.0104095,PR:000031896,http://purl.obolibrary.org/obo/PR_000031896,serine hydrolase RBBP9 +14.0104095,PR:000031915,http://purl.obolibrary.org/obo/PR_000031915,serine protease FAM111B +14.0104095,PR:000032082,http://purl.obolibrary.org/obo/PR_000032082,Rho-related BTB domain-containing protein 1 +14.0104095,PR:000032110,http://purl.obolibrary.org/obo/PR_000032110,protein Smaug homolog 1 +14.0104095,PR:000032284,http://purl.obolibrary.org/obo/PR_000032284,protein FAM13A +14.0104095,PR:000032436,http://purl.obolibrary.org/obo/PR_000032436,calmodulin-regulated spectrin-associated protein 3 +14.0104095,PR:000032530,http://purl.obolibrary.org/obo/PR_000032530,coiled-coil domain-containing protein 7 +14.0104095,PR:000032560,http://purl.obolibrary.org/obo/PR_000032560,humanin-like 3 +14.0104095,PR:000032690,http://purl.obolibrary.org/obo/PR_000032690,TELO2-interacting protein 2 +14.0104095,PR:000032798,http://purl.obolibrary.org/obo/PR_000032798,none +14.0104095,PR:000033391,http://purl.obolibrary.org/obo/PR_000033391,none +14.0104095,PR:000034328,http://purl.obolibrary.org/obo/PR_000034328,none +14.0104095,PR:000034384,http://purl.obolibrary.org/obo/PR_000034384,none +14.0104095,PR:000034411,http://purl.obolibrary.org/obo/PR_000034411,none +14.0104095,PR:000035150,http://purl.obolibrary.org/obo/PR_000035150,none +14.0104095,PR:000037010,http://purl.obolibrary.org/obo/PR_000037010,none +14.0104095,PR:000039905,http://purl.obolibrary.org/obo/PR_000039905,autophagy-related protein 101 +14.0104095,PR:O04130,http://purl.obolibrary.org/obo/PR_O04130,none +14.0104095,PR:O13978,http://purl.obolibrary.org/obo/PR_O13978,none +14.0104095,PR:O44386,http://purl.obolibrary.org/obo/PR_O44386,none +14.0104095,PR:O48946,http://purl.obolibrary.org/obo/PR_O48946,none +14.0104095,PR:O81210,http://purl.obolibrary.org/obo/PR_O81210,none +14.0104095,PR:O94376,http://purl.obolibrary.org/obo/PR_O94376,none +14.0104095,PR:O94436,http://purl.obolibrary.org/obo/PR_O94436,none +14.0104095,PR:P0DJ27,http://purl.obolibrary.org/obo/PR_P0DJ27,none +14.0104095,PR:P10634,http://purl.obolibrary.org/obo/PR_P10634,none +14.0104095,PR:P15456,http://purl.obolibrary.org/obo/PR_P15456,none +14.0104095,PR:P18480,http://purl.obolibrary.org/obo/PR_P18480,none +14.0104095,PR:P22146,http://purl.obolibrary.org/obo/PR_P22146,none +14.0104095,PR:P25362,http://purl.obolibrary.org/obo/PR_P25362,none +14.0104095,PR:P25644,http://purl.obolibrary.org/obo/PR_P25644,none +14.0104095,PR:P29383,http://purl.obolibrary.org/obo/PR_P29383,none +14.0104095,PR:P34139,http://purl.obolibrary.org/obo/PR_P34139,none +14.0104095,PR:P39960,http://purl.obolibrary.org/obo/PR_P39960,none +14.0104095,PR:P40535,http://purl.obolibrary.org/obo/PR_P40535,none +14.0104095,PR:P42697,http://purl.obolibrary.org/obo/PR_P42697,none +14.0104095,PR:P46654,http://purl.obolibrary.org/obo/PR_P46654,none +14.0104095,PR:P50875,http://purl.obolibrary.org/obo/PR_P50875,none +14.0104095,PR:P53078,http://purl.obolibrary.org/obo/PR_P53078,none +14.0104095,PR:P59845,http://purl.obolibrary.org/obo/PR_P59845,none +14.0104095,PR:P84244,http://purl.obolibrary.org/obo/PR_P84244,none +14.0104095,PR:P87284,http://purl.obolibrary.org/obo/PR_P87284,none +14.0104095,PR:P94072,http://purl.obolibrary.org/obo/PR_P94072,none +14.0104095,PR:Q38876,http://purl.obolibrary.org/obo/PR_Q38876,none +14.0104095,PR:Q5XJA0,http://purl.obolibrary.org/obo/PR_Q5XJA0,none +14.0104095,PR:Q5ZIE6,http://purl.obolibrary.org/obo/PR_Q5ZIE6,none +14.0104095,PR:Q62351,http://purl.obolibrary.org/obo/PR_Q62351,none +14.0104095,PR:Q63244,http://purl.obolibrary.org/obo/PR_Q63244,none +14.0104095,PR:Q6NKX1,http://purl.obolibrary.org/obo/PR_Q6NKX1,none +14.0104095,PR:Q6S592,http://purl.obolibrary.org/obo/PR_Q6S592,none +14.0104095,PR:Q6ZPI3,http://purl.obolibrary.org/obo/PR_Q6ZPI3,none +14.0104095,PR:Q7ZW98,http://purl.obolibrary.org/obo/PR_Q7ZW98,none +14.0104095,PR:Q802W2,http://purl.obolibrary.org/obo/PR_Q802W2,none +14.0104095,PR:Q8GW75,http://purl.obolibrary.org/obo/PR_Q8GW75,none +14.0104095,PR:Q8H136,http://purl.obolibrary.org/obo/PR_Q8H136,none +14.0104095,PR:Q8VWZ8,http://purl.obolibrary.org/obo/PR_Q8VWZ8,none +14.0104095,PR:Q99176,http://purl.obolibrary.org/obo/PR_Q99176,none +14.0104095,PR:Q9C5D3,http://purl.obolibrary.org/obo/PR_Q9C5D3,none +14.0104095,PR:Q9FE59,http://purl.obolibrary.org/obo/PR_Q9FE59,none +14.0104095,PR:Q9FLB6,http://purl.obolibrary.org/obo/PR_Q9FLB6,none +14.0104095,PR:Q9LFP6,http://purl.obolibrary.org/obo/PR_Q9LFP6,none +14.0104095,PR:Q9LRR7,http://purl.obolibrary.org/obo/PR_Q9LRR7,none +14.0104095,PR:Q9LZJ3,http://purl.obolibrary.org/obo/PR_Q9LZJ3,none +14.0104095,PR:Q9SMV6,http://purl.obolibrary.org/obo/PR_Q9SMV6,none +14.0104095,PR:Q9VCR6,http://purl.obolibrary.org/obo/PR_Q9VCR6,none +14.0104095,PR:Q9VRP5,http://purl.obolibrary.org/obo/PR_Q9VRP5,none +14.0104095,PR:Q9ZW22,http://purl.obolibrary.org/obo/PR_Q9ZW22,none +14.0104095,SO:0000083,http://purl.obolibrary.org/obo/SO_0000083,macronuclear_sequence +14.0104095,SO:0000206,http://purl.obolibrary.org/obo/SO_0000206,SINE_element +14.0104095,SO:0001126,http://purl.obolibrary.org/obo/SO_0001126,serine_threonine_motif +14.0104095,SO:0001213,http://purl.obolibrary.org/obo/SO_0001213,group_III_intron +14.0104095,SO:1000016,http://purl.obolibrary.org/obo/SO_1000016,G_to_A_transition +14.0104095,SO:1000027,http://purl.obolibrary.org/obo/SO_1000027,G_to_T_transversion +14.0104095,UBERON:0000351,http://purl.obolibrary.org/obo/UBERON_0000351,nuchal ligament +14.0104095,UBERON:0000461,http://purl.obolibrary.org/obo/UBERON_0000461,minor vestibular gland +14.0104095,UBERON:0001300,http://purl.obolibrary.org/obo/UBERON_0001300,scrotum +14.0104095,UBERON:0001574,http://purl.obolibrary.org/obo/UBERON_0001574,palatoglossus muscle +14.0104095,UBERON:0002906,http://purl.obolibrary.org/obo/UBERON_0002906,anterior occipital sulcus +14.0104095,UBERON:0003235,http://purl.obolibrary.org/obo/UBERON_0003235,epithelium of upper jaw +14.0104095,UBERON:0003252,http://purl.obolibrary.org/obo/UBERON_0003252,thoracic rib cage +14.0104095,UBERON:0003334,http://purl.obolibrary.org/obo/UBERON_0003334,serosa of rectum +14.0104095,UBERON:0004411,http://purl.obolibrary.org/obo/UBERON_0004411,proximal epiphysis of humerus +14.0104095,UBERON:0004659,http://purl.obolibrary.org/obo/UBERON_0004659,mandible neck +14.0104095,UBERON:0004687,http://purl.obolibrary.org/obo/UBERON_0004687,lieno-renal ligament +14.0104095,UBERON:0005006,http://purl.obolibrary.org/obo/UBERON_0005006,mucosa of renal pelvis +14.0104095,UBERON:0005167,http://purl.obolibrary.org/obo/UBERON_0005167,papillary duct +14.0104095,UBERON:0005214,http://purl.obolibrary.org/obo/UBERON_0005214,inner renal medulla interstitium +14.0104095,UBERON:0005304,http://purl.obolibrary.org/obo/UBERON_0005304,submucous nerve plexus +14.0104095,UBERON:0005817,http://purl.obolibrary.org/obo/UBERON_0005817,neuraxis flexure +14.0104095,UBERON:0007148,http://purl.obolibrary.org/obo/UBERON_0007148,lumen of hindgut +14.0104095,UBERON:0007522,http://purl.obolibrary.org/obo/UBERON_0007522,striated muscle sphincter +14.0104095,UBERON:0008873,http://purl.obolibrary.org/obo/UBERON_0008873,alveolar pore +14.0104095,UBERON:0009115,http://purl.obolibrary.org/obo/UBERON_0009115,thoracic thymus +14.0104095,UBERON:0009910,http://purl.obolibrary.org/obo/UBERON_0009910,posterior lateral plate mesoderm +14.0104095,UBERON:0010191,http://purl.obolibrary.org/obo/UBERON_0010191,aortic system +14.0104095,UBERON:0010264,http://purl.obolibrary.org/obo/UBERON_0010264,hepatopancreas +14.0104095,UBERON:0010946,http://purl.obolibrary.org/obo/UBERON_0010946,occipitofrontalis muscle +14.0104095,UBERON:0011207,http://purl.obolibrary.org/obo/UBERON_0011207,iliocostalis lumborum +14.0104095,UBERON:0011255,http://purl.obolibrary.org/obo/UBERON_0011255,Eimer's organ +14.0104095,UBERON:0012173,http://purl.obolibrary.org/obo/UBERON_0012173,middle suprarenal artery +14.0104095,UBERON:0013137,http://purl.obolibrary.org/obo/UBERON_0013137,external pudendal artery +14.0104095,UBERON:0014411,http://purl.obolibrary.org/obo/UBERON_0014411,greater sciatic notch +14.0104095,UBERON:0015881,http://purl.obolibrary.org/obo/UBERON_0015881,internal iliac lymph node +14.0104095,UBERON:0016943,http://purl.obolibrary.org/obo/UBERON_0016943,lower premolar tooth +14.0104095,UBERON:0018243,http://purl.obolibrary.org/obo/UBERON_0018243,thymic artery +14.0104095,UBERON:0022716,http://purl.obolibrary.org/obo/UBERON_0022716,lateral orbital frontal cortex +14.0104095,UBERON:0034931,http://purl.obolibrary.org/obo/UBERON_0034931,perforant path +14.0104095,UBERON:2001257,http://purl.obolibrary.org/obo/UBERON_2001257,medial floor plate +14.0104095,UBERON:2001976,http://purl.obolibrary.org/obo/UBERON_2001976,interorbital septum +14.0644767,CHEBI:13248,http://purl.obolibrary.org/obo/CHEBI_13248,anilide +14.0644767,CHEBI:15722,http://purl.obolibrary.org/obo/CHEBI_15722,peptidyl amide +14.0644767,CHEBI:16865,http://purl.obolibrary.org/obo/CHEBI_16865,gamma-aminobutyric acid +14.0644767,CHEBI:17596,http://purl.obolibrary.org/obo/CHEBI_17596,inosine +14.0644767,CHEBI:18019,http://purl.obolibrary.org/obo/CHEBI_18019,L-lysine +14.0644767,CHEBI:22297,http://purl.obolibrary.org/obo/CHEBI_22297,alditol phosphate +14.0644767,CHEBI:22299,http://purl.obolibrary.org/obo/CHEBI_22299,aldonate +14.0644767,CHEBI:22720,http://purl.obolibrary.org/obo/CHEBI_22720,benzodiazepine +14.0644767,CHEBI:23530,http://purl.obolibrary.org/obo/CHEBI_23530,cytokinin +14.0644767,CHEBI:24613,http://purl.obolibrary.org/obo/CHEBI_24613,homodetic cyclic peptide +14.0644767,CHEBI:24741,http://purl.obolibrary.org/obo/CHEBI_24741,hydroxyproline +14.0644767,CHEBI:24849,http://purl.obolibrary.org/obo/CHEBI_24849,inosyl group +14.0644767,CHEBI:24874,http://purl.obolibrary.org/obo/CHEBI_24874,iron ionophore +14.0644767,CHEBI:25409,http://purl.obolibrary.org/obo/CHEBI_25409,monoterpenoid +14.0644767,CHEBI:26144,http://purl.obolibrary.org/obo/CHEBI_26144,piperazines +14.0644767,CHEBI:2634,http://purl.obolibrary.org/obo/CHEBI_2634,amidine +14.0644767,CHEBI:26605,http://purl.obolibrary.org/obo/CHEBI_26605,saponin +14.0644767,CHEBI:26836,http://purl.obolibrary.org/obo/CHEBI_26836,sulfuric acid +14.0644767,CHEBI:28802,http://purl.obolibrary.org/obo/CHEBI_28802,flavonols +14.0644767,CHEBI:29214,http://purl.obolibrary.org/obo/CHEBI_29214,sulfonic acid +14.0644767,CHEBI:29287,http://purl.obolibrary.org/obo/CHEBI_29287,gold atom +14.0644767,CHEBI:30050,http://purl.obolibrary.org/obo/CHEBI_30050,gold(0) +14.0644767,CHEBI:32550,http://purl.obolibrary.org/obo/CHEBI_32550,L-lysinate +14.0644767,CHEBI:33760,http://purl.obolibrary.org/obo/CHEBI_33760,hexonate +14.0644767,CHEBI:35727,http://purl.obolibrary.org/obo/CHEBI_35727,triazoles +14.0644767,CHEBI:35803,http://purl.obolibrary.org/obo/CHEBI_35803,nitrosamine +14.0644767,CHEBI:37334,http://purl.obolibrary.org/obo/CHEBI_37334,diagnostic imaging agent +14.0644767,CHEBI:37930,http://purl.obolibrary.org/obo/CHEBI_37930,phenothiazine antipsychotic drug +14.0644767,CHEBI:39206,http://purl.obolibrary.org/obo/CHEBI_39206,dibenzopyridine +14.0644767,CHEBI:4466,http://purl.obolibrary.org/obo/CHEBI_4466,dexmedetomidine +14.0644767,CHEBI:46773,http://purl.obolibrary.org/obo/CHEBI_46773,hydroxypyrrolidine +14.0644767,CHEBI:47016,http://purl.obolibrary.org/obo/CHEBI_47016,tetrahydrofuranone +14.0644767,CHEBI:48552,http://purl.obolibrary.org/obo/CHEBI_48552,medetomidine +14.0644767,CHEBI:48854,http://purl.obolibrary.org/obo/CHEBI_48854,sulfurous acid +14.0644767,CHEBI:50562,http://purl.obolibrary.org/obo/CHEBI_50562,tartrate salt +14.0644767,CHEBI:63423,http://purl.obolibrary.org/obo/CHEBI_63423,alditol derivative +14.0644767,CHEBI:64924,http://purl.obolibrary.org/obo/CHEBI_64924,hepatitis C protease inhibitor +14.0644767,CHEBI:64951,http://purl.obolibrary.org/obo/CHEBI_64951,anti-HBV agent +14.0644767,CHEBI:65311,http://purl.obolibrary.org/obo/CHEBI_65311,corticotropin-releasing hormone +14.0644767,CHEBI:66991,http://purl.obolibrary.org/obo/CHEBI_66991,sympatholytic agent +14.0644767,CHEBI:73189,http://purl.obolibrary.org/obo/CHEBI_73189,brassinosteroid biosynthesis inhibitor +14.0644767,CHEBI:76778,http://purl.obolibrary.org/obo/CHEBI_76778,IMP residue +14.0644767,CHEBI:77318,http://purl.obolibrary.org/obo/CHEBI_77318,pregnane X receptor agonist +14.0644767,CHEBI:80337,http://purl.obolibrary.org/obo/CHEBI_80337,Calcitonin gene-related peptide 1 +14.0644767,CHEBI:80338,http://purl.obolibrary.org/obo/CHEBI_80338,Calcitonin gene-related peptide 2 +14.0644767,CHEBI:81909,http://purl.obolibrary.org/obo/CHEBI_81909,diclofop +14.0644767,CHEBI:82852,http://purl.obolibrary.org/obo/CHEBI_82852,inosine 5'-phosphate(1-) residue +14.0644767,CHEBI:8925,http://purl.obolibrary.org/obo/CHEBI_8925,ryanodine +14.0644767,CL:0000536,http://purl.obolibrary.org/obo/CL_0000536,secondary motor neuron +14.0644767,CL:0000582,http://purl.obolibrary.org/obo/CL_0000582,neutrophilic metamyelocyte +14.0644767,CL:0000744,http://purl.obolibrary.org/obo/CL_0000744,columnar chondrocyte +14.0644767,CL:0002486,http://purl.obolibrary.org/obo/CL_0002486,strial intermediate cell +14.0644767,CL:0002577,http://purl.obolibrary.org/obo/CL_0002577,placental epithelial cell +14.0644767,CL:0005025,http://purl.obolibrary.org/obo/CL_0005025,visceromotor neuron +14.0644767,CL:1000979,http://purl.obolibrary.org/obo/CL_1000979,ureter smooth muscle cell +14.0644767,DRUGBANK:DB01465,http://purl.obolibrary.org/obo/DRUGBANK_DB01465,none +14.0644767,DRUGBANK:DB01714,http://purl.obolibrary.org/obo/DRUGBANK_DB01714,none +14.0644767,DRUGBANK:DB02292,http://purl.obolibrary.org/obo/DRUGBANK_DB02292,none +14.0644767,DRUGBANK:DB02418,http://purl.obolibrary.org/obo/DRUGBANK_DB02418,none +14.0644767,DRUGBANK:DB02435,http://purl.obolibrary.org/obo/DRUGBANK_DB02435,none +14.0644767,DRUGBANK:DB02974,http://purl.obolibrary.org/obo/DRUGBANK_DB02974,none +14.0644767,DRUGBANK:DB03413,http://purl.obolibrary.org/obo/DRUGBANK_DB03413,none +14.0644767,DRUGBANK:DB03428,http://purl.obolibrary.org/obo/DRUGBANK_DB03428,none +14.0644767,DRUGBANK:DB03440,http://purl.obolibrary.org/obo/DRUGBANK_DB03440,none +14.0644767,DRUGBANK:DB03500,http://purl.obolibrary.org/obo/DRUGBANK_DB03500,none +14.0644767,DRUGBANK:DB03511,http://purl.obolibrary.org/obo/DRUGBANK_DB03511,none +14.0644767,DRUGBANK:DB03721,http://purl.obolibrary.org/obo/DRUGBANK_DB03721,none +14.0644767,DRUGBANK:DB03951,http://purl.obolibrary.org/obo/DRUGBANK_DB03951,none +14.0644767,DRUGBANK:DB04383,http://purl.obolibrary.org/obo/DRUGBANK_DB04383,none +14.0644767,DRUGBANK:DB04531,http://purl.obolibrary.org/obo/DRUGBANK_DB04531,none +14.0644767,DRUGBANK:DB05158,http://purl.obolibrary.org/obo/DRUGBANK_DB05158,none +14.0644767,DRUGBANK:DB05185,http://purl.obolibrary.org/obo/DRUGBANK_DB05185,none +14.0644767,DRUGBANK:DB05374,http://purl.obolibrary.org/obo/DRUGBANK_DB05374,none +14.0644767,DRUGBANK:DB05404,http://purl.obolibrary.org/obo/DRUGBANK_DB05404,none +14.0644767,DRUGBANK:DB05467,http://purl.obolibrary.org/obo/DRUGBANK_DB05467,none +14.0644767,DRUGBANK:DB05471,http://purl.obolibrary.org/obo/DRUGBANK_DB05471,none +14.0644767,DRUGBANK:DB05996,http://purl.obolibrary.org/obo/DRUGBANK_DB05996,none +14.0644767,DRUGBANK:DB06586,http://purl.obolibrary.org/obo/DRUGBANK_DB06586,none +14.0644767,DRUGBANK:DB07425,http://purl.obolibrary.org/obo/DRUGBANK_DB07425,none +14.0644767,DRUGBANK:DB08472,http://purl.obolibrary.org/obo/DRUGBANK_DB08472,none +14.0644767,DRUGBANK:DB08792,http://purl.obolibrary.org/obo/DRUGBANK_DB08792,none +14.0644767,DRUGBANK:DB08796,http://purl.obolibrary.org/obo/DRUGBANK_DB08796,none +14.0644767,DRUGBANK:DB09001,http://purl.obolibrary.org/obo/DRUGBANK_DB09001,none +14.0644767,DRUGBANK:DB09403,http://purl.obolibrary.org/obo/DRUGBANK_DB09403,none +14.0644767,DRUGBANK:DB10436,http://purl.obolibrary.org/obo/DRUGBANK_DB10436,none +14.0644767,DRUGBANK:DB10622,http://purl.obolibrary.org/obo/DRUGBANK_DB10622,none +14.0644767,DRUGBANK:DB10834,http://purl.obolibrary.org/obo/DRUGBANK_DB10834,none +14.0644767,DRUGBANK:DB11068,http://purl.obolibrary.org/obo/DRUGBANK_DB11068,none +14.0644767,DRUGBANK:DB11236,http://purl.obolibrary.org/obo/DRUGBANK_DB11236,none +14.0644767,DRUGBANK:DB11274,http://purl.obolibrary.org/obo/DRUGBANK_DB11274,none +14.0644767,DRUGBANK:DB11509,http://purl.obolibrary.org/obo/DRUGBANK_DB11509,none +14.0644767,DRUGBANK:DB11522,http://purl.obolibrary.org/obo/DRUGBANK_DB11522,none +14.0644767,DRUGBANK:DB11709,http://purl.obolibrary.org/obo/DRUGBANK_DB11709,none +14.0644767,DRUGBANK:DB11855,http://purl.obolibrary.org/obo/DRUGBANK_DB11855,none +14.0644767,DRUGBANK:DB11956,http://purl.obolibrary.org/obo/DRUGBANK_DB11956,none +14.0644767,DRUGBANK:DB12134,http://purl.obolibrary.org/obo/DRUGBANK_DB12134,none +14.0644767,DRUGBANK:DB12339,http://purl.obolibrary.org/obo/DRUGBANK_DB12339,none +14.0644767,DRUGBANK:DB12388,http://purl.obolibrary.org/obo/DRUGBANK_DB12388,none +14.0644767,DRUGBANK:DB12397,http://purl.obolibrary.org/obo/DRUGBANK_DB12397,none +14.0644767,DRUGBANK:DB12448,http://purl.obolibrary.org/obo/DRUGBANK_DB12448,none +14.0644767,DRUGBANK:DB12729,http://purl.obolibrary.org/obo/DRUGBANK_DB12729,none +14.0644767,DRUGBANK:DB12886,http://purl.obolibrary.org/obo/DRUGBANK_DB12886,none +14.0644767,DRUGBANK:DB13090,http://purl.obolibrary.org/obo/DRUGBANK_DB13090,none +14.0644767,DRUGBANK:DB13117,http://purl.obolibrary.org/obo/DRUGBANK_DB13117,none +14.0644767,DRUGBANK:DB13232,http://purl.obolibrary.org/obo/DRUGBANK_DB13232,none +14.0644767,DRUGBANK:DB13246,http://purl.obolibrary.org/obo/DRUGBANK_DB13246,none +14.0644767,DRUGBANK:DB13347,http://purl.obolibrary.org/obo/DRUGBANK_DB13347,none +14.0644767,DRUGBANK:DB13463,http://purl.obolibrary.org/obo/DRUGBANK_DB13463,none +14.0644767,DRUGBANK:DB13484,http://purl.obolibrary.org/obo/DRUGBANK_DB13484,none +14.0644767,DRUGBANK:DB13536,http://purl.obolibrary.org/obo/DRUGBANK_DB13536,none +14.0644767,DRUGBANK:DB13668,http://purl.obolibrary.org/obo/DRUGBANK_DB13668,none +14.0644767,DRUGBANK:DB13850,http://purl.obolibrary.org/obo/DRUGBANK_DB13850,none +14.0644767,DRUGBANK:DB13957,http://purl.obolibrary.org/obo/DRUGBANK_DB13957,none +14.0644767,DRUGBANK:DB14033,http://purl.obolibrary.org/obo/DRUGBANK_DB14033,none +14.0644767,DRUGBANK:DB14178,http://purl.obolibrary.org/obo/DRUGBANK_DB14178,none +14.0644767,DRUGBANK:DB14305,http://purl.obolibrary.org/obo/DRUGBANK_DB14305,none +14.0644767,DRUGBANK:DB14597,http://purl.obolibrary.org/obo/DRUGBANK_DB14597,none +14.0644767,DRUGBANK:DB14666,http://purl.obolibrary.org/obo/DRUGBANK_DB14666,none +14.0644767,DRUGBANK:DB14719,http://purl.obolibrary.org/obo/DRUGBANK_DB14719,none +14.0644767,DRUGBANK:DB14849,http://purl.obolibrary.org/obo/DRUGBANK_DB14849,none +14.0644767,DRUGBANK:DB14881,http://purl.obolibrary.org/obo/DRUGBANK_DB14881,none +14.0644767,DRUGBANK:DB14913,http://purl.obolibrary.org/obo/DRUGBANK_DB14913,none +14.0644767,DRUGBANK:DB14958,http://purl.obolibrary.org/obo/DRUGBANK_DB14958,none +14.0644767,DRUGBANK:DB15308,http://purl.obolibrary.org/obo/DRUGBANK_DB15308,none +14.0644767,DRUGBANK:DB15607,http://purl.obolibrary.org/obo/DRUGBANK_DB15607,none +14.0644767,DRUGBANK:DB15775,http://purl.obolibrary.org/obo/DRUGBANK_DB15775,none +14.0644767,DRUGBANK:DB15784,http://purl.obolibrary.org/obo/DRUGBANK_DB15784,none +14.0644767,DRUGBANK:DB16003,http://purl.obolibrary.org/obo/DRUGBANK_DB16003,none +14.0644767,DRUGBANK:DB16365,http://purl.obolibrary.org/obo/DRUGBANK_DB16365,none +14.0644767,GO:0000296,http://purl.obolibrary.org/obo/GO_0000296,spermine transport +14.0644767,GO:0000813,http://purl.obolibrary.org/obo/GO_0000813,ESCRT I complex +14.0644767,GO:0001910,http://purl.obolibrary.org/obo/GO_0001910,regulation of leukocyte mediated cytotoxicity +14.0644767,GO:0001959,http://purl.obolibrary.org/obo/GO_0001959,regulation of cytokine-mediated signaling pathway +14.0644767,GO:0002707,http://purl.obolibrary.org/obo/GO_0002707,negative regulation of lymphocyte mediated immunity +14.0644767,GO:0002775,http://purl.obolibrary.org/obo/GO_0002775,antimicrobial peptide production +14.0644767,GO:0002921,http://purl.obolibrary.org/obo/GO_0002921,negative regulation of humoral immune response +14.0644767,GO:0003159,http://purl.obolibrary.org/obo/GO_0003159,morphogenesis of an endothelium +14.0644767,GO:0004052,http://purl.obolibrary.org/obo/GO_0004052,arachidonate 12(S)-lipoxygenase activity +14.0644767,GO:0004617,http://purl.obolibrary.org/obo/GO_0004617,phosphoglycerate dehydrogenase activity +14.0644767,GO:0004745,http://purl.obolibrary.org/obo/GO_0004745,NAD-retinol dehydrogenase activity +14.0644767,GO:0006313,http://purl.obolibrary.org/obo/GO_0006313,"transposition, DNA-mediated" +14.0644767,GO:0006487,http://purl.obolibrary.org/obo/GO_0006487,protein N-linked glycosylation +14.0644767,GO:0006517,http://purl.obolibrary.org/obo/GO_0006517,protein deglycosylation +14.0644767,GO:0006572,http://purl.obolibrary.org/obo/GO_0006572,tyrosine catabolic process +14.0644767,GO:0007260,http://purl.obolibrary.org/obo/GO_0007260,tyrosine phosphorylation of STAT protein +14.0644767,GO:0008922,http://purl.obolibrary.org/obo/GO_0008922,long-chain fatty acid [acyl-carrier-protein] ligase activity +14.0644767,GO:0008934,http://purl.obolibrary.org/obo/GO_0008934,inositol monophosphate 1-phosphatase activity +14.0644767,GO:0009030,http://purl.obolibrary.org/obo/GO_0009030,thiamine-phosphate kinase activity +14.0644767,GO:0009109,http://purl.obolibrary.org/obo/GO_0009109,none +14.0644767,GO:0009832,http://purl.obolibrary.org/obo/GO_0009832,plant-type cell wall biogenesis +14.0644767,GO:0009964,http://purl.obolibrary.org/obo/GO_0009964,negative regulation of flavonoid biosynthetic process +14.0644767,GO:0010311,http://purl.obolibrary.org/obo/GO_0010311,lateral root formation +14.0644767,GO:0010452,http://purl.obolibrary.org/obo/GO_0010452,histone H3-K36 methylation +14.0644767,GO:0010830,http://purl.obolibrary.org/obo/GO_0010830,regulation of myotube differentiation +14.0644767,GO:0010847,http://purl.obolibrary.org/obo/GO_0010847,regulation of chromatin assembly +14.0644767,GO:0010907,http://purl.obolibrary.org/obo/GO_0010907,positive regulation of glucose metabolic process +14.0644767,GO:0015685,http://purl.obolibrary.org/obo/GO_0015685,ferric-enterobactin import into cell +14.0644767,GO:0015765,http://purl.obolibrary.org/obo/GO_0015765,methylgalactoside transport +14.0644767,GO:0016202,http://purl.obolibrary.org/obo/GO_0016202,regulation of striated muscle tissue development +14.0644767,GO:0016557,http://purl.obolibrary.org/obo/GO_0016557,peroxisome membrane biogenesis +14.0644767,GO:0016882,http://purl.obolibrary.org/obo/GO_0016882,cyclo-ligase activity +14.0644767,GO:0018775,http://purl.obolibrary.org/obo/GO_0018775,2-hydroxymuconate-semialdehyde hydrolase activity +14.0644767,GO:0019294,http://purl.obolibrary.org/obo/GO_0019294,keto-3-deoxy-D-manno-octulosonic acid biosynthetic process +14.0644767,GO:0019580,http://purl.obolibrary.org/obo/GO_0019580,galactarate metabolic process +14.0644767,GO:0019746,http://purl.obolibrary.org/obo/GO_0019746,hopanoid biosynthetic process +14.0644767,GO:0019859,http://purl.obolibrary.org/obo/GO_0019859,thymine metabolic process +14.0644767,GO:0022616,http://purl.obolibrary.org/obo/GO_0022616,DNA strand elongation +14.0644767,GO:0030208,http://purl.obolibrary.org/obo/GO_0030208,dermatan sulfate biosynthetic process +14.0644767,GO:0030409,http://purl.obolibrary.org/obo/GO_0030409,glutamate formimidoyltransferase activity +14.0644767,GO:0030685,http://purl.obolibrary.org/obo/GO_0030685,nucleolar preribosome +14.0644767,GO:0030837,http://purl.obolibrary.org/obo/GO_0030837,negative regulation of actin filament polymerization +14.0644767,GO:0031296,http://purl.obolibrary.org/obo/GO_0031296,B cell costimulation +14.0644767,GO:0031436,http://purl.obolibrary.org/obo/GO_0031436,BRCA1-BARD1 complex +14.0644767,GO:0031499,http://purl.obolibrary.org/obo/GO_0031499,TRAMP complex +14.0644767,GO:0031523,http://purl.obolibrary.org/obo/GO_0031523,Myb complex +14.0644767,GO:0031538,http://purl.obolibrary.org/obo/GO_0031538,negative regulation of anthocyanin metabolic process +14.0644767,GO:0031956,http://purl.obolibrary.org/obo/GO_0031956,medium-chain fatty acid-CoA ligase activity +14.0644767,GO:0032120,http://purl.obolibrary.org/obo/GO_0032120,ascospore-type prospore membrane formation +14.0644767,GO:0032301,http://purl.obolibrary.org/obo/GO_0032301,MutSalpha complex +14.0644767,GO:0032493,http://purl.obolibrary.org/obo/GO_0032493,response to bacterial lipoprotein +14.0644767,GO:0032495,http://purl.obolibrary.org/obo/GO_0032495,response to muramyl dipeptide +14.0644767,GO:0032925,http://purl.obolibrary.org/obo/GO_0032925,regulation of activin receptor signaling pathway +14.0644767,GO:0032997,http://purl.obolibrary.org/obo/GO_0032997,Fc receptor complex +14.0644767,GO:0033006,http://purl.obolibrary.org/obo/GO_0033006,regulation of mast cell activation involved in immune response +14.0644767,GO:0033040,http://purl.obolibrary.org/obo/GO_0033040,sour taste receptor activity +14.0644767,GO:0033071,http://purl.obolibrary.org/obo/GO_0033071,vancomycin metabolic process +14.0644767,GO:0033097,http://purl.obolibrary.org/obo/GO_0033097,amyloplast membrane +14.0644767,GO:0033105,http://purl.obolibrary.org/obo/GO_0033105,chlorosome envelope +14.0644767,GO:0033194,http://purl.obolibrary.org/obo/GO_0033194,response to hydroperoxide +14.0644767,GO:0033675,http://purl.obolibrary.org/obo/GO_0033675,pericanalicular vesicle +14.0644767,GO:0033857,http://purl.obolibrary.org/obo/GO_0033857,diphosphoinositol-pentakisphosphate kinase activity +14.0644767,GO:0034310,http://purl.obolibrary.org/obo/GO_0034310,primary alcohol catabolic process +14.0644767,GO:0034638,http://purl.obolibrary.org/obo/GO_0034638,phosphatidylcholine catabolic process +14.0644767,GO:0034646,http://purl.obolibrary.org/obo/GO_0034646,organelle-enclosing lipid monolayer +14.0644767,GO:0034729,http://purl.obolibrary.org/obo/GO_0034729,histone H3-K79 methylation +14.0644767,GO:0035049,http://purl.obolibrary.org/obo/GO_0035049,juvenile hormone acid methyltransferase activity +14.0644767,GO:0035168,http://purl.obolibrary.org/obo/GO_0035168,larval lymph gland hemocyte differentiation +14.0644767,GO:0035171,http://purl.obolibrary.org/obo/GO_0035171,lamellocyte differentiation +14.0644767,GO:0035237,http://purl.obolibrary.org/obo/GO_0035237,corazonin receptor activity +14.0644767,GO:0035267,http://purl.obolibrary.org/obo/GO_0035267,NuA4 histone acetyltransferase complex +14.0644767,GO:0035596,http://purl.obolibrary.org/obo/GO_0035596,methylthiotransferase activity +14.0644767,GO:0036347,http://purl.obolibrary.org/obo/GO_0036347,none +14.0644767,GO:0036372,http://purl.obolibrary.org/obo/GO_0036372,opsin transport +14.0644767,GO:0036379,http://purl.obolibrary.org/obo/GO_0036379,myofilament +14.0644767,GO:0038146,http://purl.obolibrary.org/obo/GO_0038146,chemokine (C-X-C motif) ligand 12 signaling pathway +14.0644767,GO:0042339,http://purl.obolibrary.org/obo/GO_0042339,keratan sulfate metabolic process +14.0644767,GO:0042942,http://purl.obolibrary.org/obo/GO_0042942,D-serine transport +14.0644767,GO:0043189,http://purl.obolibrary.org/obo/GO_0043189,H4/H2A histone acetyltransferase complex +14.0644767,GO:0043304,http://purl.obolibrary.org/obo/GO_0043304,regulation of mast cell degranulation +14.0644767,GO:0043307,http://purl.obolibrary.org/obo/GO_0043307,eosinophil activation +14.0644767,GO:0043370,http://purl.obolibrary.org/obo/GO_0043370,"regulation of CD4-positive, alpha-beta T cell differentiation" +14.0644767,GO:0043864,http://purl.obolibrary.org/obo/GO_0043864,indoleacetamide hydrolase activity +14.0644767,GO:0044310,http://purl.obolibrary.org/obo/GO_0044310,osmiophilic body +14.0644767,GO:0044380,http://purl.obolibrary.org/obo/GO_0044380,protein localization to cytoskeleton +14.0644767,GO:0044409,http://purl.obolibrary.org/obo/GO_0044409,entry into host +14.0644767,GO:0045439,http://purl.obolibrary.org/obo/GO_0045439,isopenicillin-N epimerase activity +14.0644767,GO:0045622,http://purl.obolibrary.org/obo/GO_0045622,regulation of T-helper cell differentiation +14.0644767,GO:0045721,http://purl.obolibrary.org/obo/GO_0045721,negative regulation of gluconeogenesis +14.0644767,GO:0046084,http://purl.obolibrary.org/obo/GO_0046084,adenine biosynthetic process +14.0644767,GO:0046102,http://purl.obolibrary.org/obo/GO_0046102,inosine metabolic process +14.0644767,GO:0047213,http://purl.obolibrary.org/obo/GO_0047213,anthocyanidin 3-O-glucosyltransferase activity +14.0644767,GO:0047365,http://purl.obolibrary.org/obo/GO_0047365,quercetin-3-sulfate 3'-sulfotransferase activity +14.0644767,GO:0047400,http://purl.obolibrary.org/obo/GO_0047400,phosphonoacetate hydrolase activity +14.0644767,GO:0047473,http://purl.obolibrary.org/obo/GO_0047473,D-alanine [D-alanyl carrier protein] ligase activity +14.0644767,GO:0047710,http://purl.obolibrary.org/obo/GO_0047710,bis(5'-adenosyl)-triphosphatase activity +14.0644767,GO:0047763,http://purl.obolibrary.org/obo/GO_0047763,caffeate O-methyltransferase activity +14.0644767,GO:0047764,http://purl.obolibrary.org/obo/GO_0047764,none +14.0644767,GO:0047768,http://purl.obolibrary.org/obo/GO_0047768,"carboxy-cis,cis-muconate cyclase activity" +14.0644767,GO:0047893,http://purl.obolibrary.org/obo/GO_0047893,flavonol 3-O-glucosyltransferase activity +14.0644767,GO:0047918,http://purl.obolibrary.org/obo/GO_0047918,"GDP-mannose 3,5-epimerase activity" +14.0644767,GO:0047973,http://purl.obolibrary.org/obo/GO_0047973,guanidinoacetate kinase activity +14.0644767,GO:0048070,http://purl.obolibrary.org/obo/GO_0048070,regulation of developmental pigmentation +14.0644767,GO:0048384,http://purl.obolibrary.org/obo/GO_0048384,retinoic acid receptor signaling pathway +14.0644767,GO:0048520,http://purl.obolibrary.org/obo/GO_0048520,positive regulation of behavior +14.0644767,GO:0050096,http://purl.obolibrary.org/obo/GO_0050096,methylaspartate ammonia-lyase activity +14.0644767,GO:0050187,http://purl.obolibrary.org/obo/GO_0050187,phosphoamidase activity +14.0644767,GO:0050451,http://purl.obolibrary.org/obo/GO_0050451,CoA-disulfide reductase activity +14.0644767,GO:0050627,http://purl.obolibrary.org/obo/GO_0050627,mycothione reductase activity +14.0644767,GO:0050737,http://purl.obolibrary.org/obo/GO_0050737,O-hydroxycinnamoyltransferase activity +14.0644767,GO:0051177,http://purl.obolibrary.org/obo/GO_0051177,meiotic sister chromatid cohesion +14.0644767,GO:0051228,http://purl.obolibrary.org/obo/GO_0051228,mitotic spindle disassembly +14.0644767,GO:0051282,http://purl.obolibrary.org/obo/GO_0051282,regulation of sequestering of calcium ion +14.0644767,GO:0051792,http://purl.obolibrary.org/obo/GO_0051792,medium-chain fatty acid biosynthetic process +14.0644767,GO:0051828,http://purl.obolibrary.org/obo/GO_0051828,none +14.0644767,GO:0052698,http://purl.obolibrary.org/obo/GO_0052698,ergothioneine metabolic process +14.0644767,GO:0052743,http://purl.obolibrary.org/obo/GO_0052743,inositol tetrakisphosphate phosphatase activity +14.0644767,GO:0060675,http://purl.obolibrary.org/obo/GO_0060675,ureteric bud morphogenesis +14.0644767,GO:0061140,http://purl.obolibrary.org/obo/GO_0061140,lung secretory cell differentiation +14.0644767,GO:0061355,http://purl.obolibrary.org/obo/GO_0061355,Wnt protein secretion +14.0644767,GO:0070310,http://purl.obolibrary.org/obo/GO_0070310,ATR-ATRIP complex +14.0644767,GO:0071318,http://purl.obolibrary.org/obo/GO_0071318,cellular response to ATP +14.0644767,GO:0071561,http://purl.obolibrary.org/obo/GO_0071561,nucleus-vacuole junction +14.0644767,GO:0072171,http://purl.obolibrary.org/obo/GO_0072171,mesonephric tubule morphogenesis +14.0644767,GO:0072698,http://purl.obolibrary.org/obo/GO_0072698,protein localization to microtubule cytoskeleton +14.0644767,GO:0090022,http://purl.obolibrary.org/obo/GO_0090022,regulation of neutrophil chemotaxis +14.0644767,GO:0090648,http://purl.obolibrary.org/obo/GO_0090648,response to environmental enrichment +14.0644767,GO:0097049,http://purl.obolibrary.org/obo/GO_0097049,motor neuron apoptotic process +14.0644767,GO:0097144,http://purl.obolibrary.org/obo/GO_0097144,BAX complex +14.0644767,GO:0097335,http://purl.obolibrary.org/obo/GO_0097335,response to quetiapine +14.0644767,GO:0097342,http://purl.obolibrary.org/obo/GO_0097342,ripoptosome +14.0644767,GO:0097454,http://purl.obolibrary.org/obo/GO_0097454,Schwann cell microvillus +14.0644767,GO:0097527,http://purl.obolibrary.org/obo/GO_0097527,necroptotic signaling pathway +14.0644767,GO:0098756,http://purl.obolibrary.org/obo/GO_0098756,response to interleukin-21 +14.0644767,GO:1900107,http://purl.obolibrary.org/obo/GO_1900107,regulation of nodal signaling pathway +14.0644767,GO:1900378,http://purl.obolibrary.org/obo/GO_1900378,positive regulation of secondary metabolite biosynthetic process +14.0644767,GO:1900989,http://purl.obolibrary.org/obo/GO_1900989,scopolamine metabolic process +14.0644767,GO:1901739,http://purl.obolibrary.org/obo/GO_1901739,regulation of myoblast fusion +14.0644767,GO:1901825,http://purl.obolibrary.org/obo/GO_1901825,zeaxanthin metabolic process +14.0644767,GO:1901861,http://purl.obolibrary.org/obo/GO_1901861,regulation of muscle tissue development +14.0644767,GO:1902182,http://purl.obolibrary.org/obo/GO_1902182,shoot apical meristem development +14.0644767,GO:1903069,http://purl.obolibrary.org/obo/GO_1903069,regulation of ER-associated ubiquitin-dependent protein catabolic process +14.0644767,GO:1903299,http://purl.obolibrary.org/obo/GO_1903299,regulation of hexokinase activity +14.0644767,GO:1903533,http://purl.obolibrary.org/obo/GO_1903533,regulation of protein targeting +14.0644767,GO:1903788,http://purl.obolibrary.org/obo/GO_1903788,positive regulation of glutathione biosynthetic process +14.0644767,GO:1904655,http://purl.obolibrary.org/obo/GO_1904655,positive regulation of lung alveolus development +14.0644767,GO:1990025,http://purl.obolibrary.org/obo/GO_1990025,F bouton +14.0644767,GO:2001169,http://purl.obolibrary.org/obo/GO_2001169,regulation of ATP biosynthetic process +14.0644767,GO:2001198,http://purl.obolibrary.org/obo/GO_2001198,regulation of dendritic cell differentiation +14.0644767,HP:0000926,http://purl.obolibrary.org/obo/HP_0000926,Platyspondyly +14.0644767,HP:0002133,http://purl.obolibrary.org/obo/HP_0002133,Status epilepticus +14.0644767,HP:0002789,http://purl.obolibrary.org/obo/HP_0002789,Tachypnea +14.0644767,HP:0003231,http://purl.obolibrary.org/obo/HP_0003231,Hypertyrosinemia +14.0644767,HP:0004338,http://purl.obolibrary.org/obo/HP_0004338,Abnormal circulating aromatic amino acid concentration +14.0644767,HP:0010917,http://purl.obolibrary.org/obo/HP_0010917,Abnormal circulating tyrosine concentration +14.0644767,HP:0030448,http://purl.obolibrary.org/obo/HP_0030448,Soft tissue sarcoma +14.0644767,HP:0040049,http://purl.obolibrary.org/obo/HP_0040049,Macular edema +14.0644767,HP:0100754,http://purl.obolibrary.org/obo/HP_0100754,Mania +14.0644767,MONDO:0000075,http://purl.obolibrary.org/obo/MONDO_0000075,"neuronopathy, distal hereditary motor" +14.0644767,MONDO:0000732,http://purl.obolibrary.org/obo/MONDO_0000732,combined oxidative phosphorylation deficiency +14.0644767,MONDO:0001678,http://purl.obolibrary.org/obo/MONDO_0001678,intestinal tuberculosis +14.0644767,MONDO:0001903,http://purl.obolibrary.org/obo/MONDO_0001903,calcific tendinitis +14.0644767,MONDO:0002121,http://purl.obolibrary.org/obo/MONDO_0002121,mononeuritis simplex +14.0644767,MONDO:0002697,http://purl.obolibrary.org/obo/MONDO_0002697,ovarian gonadoblastoma +14.0644767,MONDO:0002792,http://purl.obolibrary.org/obo/MONDO_0002792,cerebellar vermis medulloblastoma +14.0644767,MONDO:0002880,http://purl.obolibrary.org/obo/MONDO_0002880,ovarian adenosarcoma +14.0644767,MONDO:0002904,http://purl.obolibrary.org/obo/MONDO_0002904,echolalia +14.0644767,MONDO:0002962,http://purl.obolibrary.org/obo/MONDO_0002962,epidermolytic acanthoma +14.0644767,MONDO:0003306,http://purl.obolibrary.org/obo/MONDO_0003306,atypical neurofibroma +14.0644767,MONDO:0003558,http://purl.obolibrary.org/obo/MONDO_0003558,adenosquamous prostate carcinoma +14.0644767,MONDO:0003592,http://purl.obolibrary.org/obo/MONDO_0003592,gastric liposarcoma +14.0644767,MONDO:0003652,http://purl.obolibrary.org/obo/MONDO_0003652,acute urate nephropathy +14.0644767,MONDO:0004197,http://purl.obolibrary.org/obo/MONDO_0004197,male urethral cancer +14.0644767,MONDO:0004361,http://purl.obolibrary.org/obo/MONDO_0004361,adult spinal cord ependymoma +14.0644767,MONDO:0004824,http://purl.obolibrary.org/obo/MONDO_0004824,neonatal candidiasis +14.0644767,MONDO:0005805,http://purl.obolibrary.org/obo/MONDO_0005805,hypodermyiasis +14.0644767,MONDO:0005884,http://purl.obolibrary.org/obo/MONDO_0005884,opisthorchiasis +14.0644767,MONDO:0006309,http://purl.obolibrary.org/obo/MONDO_0006309,mucinous gastric adenocarcinoma +14.0644767,MONDO:0006537,http://purl.obolibrary.org/obo/MONDO_0006537,conjunctival pigmentation +14.0644767,MONDO:0006647,http://purl.obolibrary.org/obo/MONDO_0006647,anterior cerebral artery infarction +14.0644767,MONDO:0006674,http://purl.obolibrary.org/obo/MONDO_0006674,benign fibrous mesothelioma +14.0644767,MONDO:0006699,http://purl.obolibrary.org/obo/MONDO_0006699,choledocholithiasis +14.0644767,MONDO:0007028,http://purl.obolibrary.org/obo/MONDO_0007028,rotator cuff syndrome +14.0644767,MONDO:0007209,http://purl.obolibrary.org/obo/MONDO_0007209,Weismann-Netter syndrome +14.0644767,MONDO:0007412,http://purl.obolibrary.org/obo/MONDO_0007412,Beare-Stevenson cutis gyrata syndrome +14.0644767,MONDO:0007670,http://purl.obolibrary.org/obo/MONDO_0007670,hypotrichosis-lymphedema-telangiectasia syndrome (grouping) +14.0644767,MONDO:0008007,http://purl.obolibrary.org/obo/MONDO_0008007,tooth ankylosis +14.0644767,MONDO:0008348,http://purl.obolibrary.org/obo/MONDO_0008348,pulmonary nodular lymphoid hyperplasia +14.0644767,MONDO:0008641,http://purl.obolibrary.org/obo/MONDO_0008641,retinal vasculopathy with cerebral leukoencephalopathy and systemic manifestations +14.0644767,MONDO:0008673,http://purl.obolibrary.org/obo/MONDO_0008673,"acrofacial dysostosis, Weyers type" +14.0644767,MONDO:0009514,http://purl.obolibrary.org/obo/MONDO_0009514,Laurence-Moon syndrome +14.0644767,MONDO:0009527,http://purl.obolibrary.org/obo/MONDO_0009527,"lipase deficiency, combined" +14.0644767,MONDO:0009668,http://purl.obolibrary.org/obo/MONDO_0009668,lethal multiple pterygium syndrome +14.0644767,MONDO:0010056,http://purl.obolibrary.org/obo/MONDO_0010056,"spinal muscular atrophy, type IV" +14.0644767,MONDO:0010068,http://purl.obolibrary.org/obo/MONDO_0010068,"spondyloepimetaphyseal dysplasia, sponastrime type" +14.0644767,MONDO:0010227,http://purl.obolibrary.org/obo/MONDO_0010227,retinitis pigmentosa 3 +14.0644767,MONDO:0010263,http://purl.obolibrary.org/obo/MONDO_0010263,Alport syndrome-intellectual disability-midface hypoplasia-elliptocytosis syndrome +14.0644767,MONDO:0011128,http://purl.obolibrary.org/obo/MONDO_0011128,Sheldon-hall syndrome +14.0644767,MONDO:0011269,http://purl.obolibrary.org/obo/MONDO_0011269,psoriasis 2 +14.0644767,MONDO:0011595,http://purl.obolibrary.org/obo/MONDO_0011595,nonsyndromic congenital nail disorder 7 +14.0644767,MONDO:0011663,http://purl.obolibrary.org/obo/MONDO_0011663,juvenile primary lateral sclerosis +14.0644767,MONDO:0011694,http://purl.obolibrary.org/obo/MONDO_0011694,spinocerebellar ataxia type 15/16 +14.0644767,MONDO:0011743,http://purl.obolibrary.org/obo/MONDO_0011743,Alzheimer disease 4 +14.0644767,MONDO:0012271,http://purl.obolibrary.org/obo/MONDO_0012271,mesoaxial synostotic syndactyly with phalangeal reduction +14.0644767,MONDO:0012450,http://purl.obolibrary.org/obo/MONDO_0012450,spinocerebellar ataxia type 28 +14.0644767,MONDO:0013275,http://purl.obolibrary.org/obo/MONDO_0013275,hemolytic anemia due to glucophosphate isomerase deficiency +14.0644767,MONDO:0013456,http://purl.obolibrary.org/obo/MONDO_0013456,constitutional megaloblastic anemia with severe neurologic disease +14.0644767,MONDO:0013875,http://purl.obolibrary.org/obo/MONDO_0013875,"3-methylglutaconic aciduria with deafness, encephalopathy, and Leigh-like syndrome" +14.0644767,MONDO:0014109,http://purl.obolibrary.org/obo/MONDO_0014109,NGLY1-deficiency +14.0644767,MONDO:0014629,http://purl.obolibrary.org/obo/MONDO_0014629,autoimmune interstitial lung disease-arthritis syndrome +14.0644767,MONDO:0015031,http://purl.obolibrary.org/obo/MONDO_0015031,extraneural perineurioma +14.0644767,MONDO:0015344,http://purl.obolibrary.org/obo/MONDO_0015344,idiopathic acute transverse myelitis +14.0644767,MONDO:0015353,http://purl.obolibrary.org/obo/MONDO_0015353,"neuronopathy, distal hereditary motor, type 5A" +14.0644767,MONDO:0015636,http://purl.obolibrary.org/obo/MONDO_0015636,dirofilariasis +14.0644767,MONDO:0015703,http://purl.obolibrary.org/obo/MONDO_0015703,T-B+ severe combined immunodeficiency due to CD3delta/CD3epsilon/CD3zeta +14.0644767,MONDO:0016126,http://purl.obolibrary.org/obo/MONDO_0016126,viral myositis +14.0644767,MONDO:0016847,http://purl.obolibrary.org/obo/MONDO_0016847,trisomy 1q +14.0644767,MONDO:0016921,http://purl.obolibrary.org/obo/MONDO_0016921,partial duplication of chromosome 1 +14.0644767,MONDO:0016952,http://purl.obolibrary.org/obo/MONDO_0016952,partial duplication of the long arm of chromosome 1 +14.0644767,MONDO:0016990,http://purl.obolibrary.org/obo/MONDO_0016990,acquired prothrombin deficiency +14.0644767,MONDO:0017007,http://purl.obolibrary.org/obo/MONDO_0017007,partial deletion of the long arm of chromosome X +14.0644767,MONDO:0017203,http://purl.obolibrary.org/obo/MONDO_0017203,chronic endophthalmitis +14.0644767,MONDO:0017693,http://purl.obolibrary.org/obo/MONDO_0017693,glycogen storage disease due to glycogen synthase deficiency +14.0644767,MONDO:0017944,http://purl.obolibrary.org/obo/MONDO_0017944,invasive non-typhoidal salmonellosis +14.0644767,MONDO:0018289,http://purl.obolibrary.org/obo/MONDO_0018289,congenital disorder of glycosylation with dilated cardiomyopathy +14.0644767,MONDO:0019329,http://purl.obolibrary.org/obo/MONDO_0019329,microcystic lymphatic malformation +14.0644767,MONDO:0019856,http://purl.obolibrary.org/obo/MONDO_0019856,primary congenital hypothyroidism without thyroid developmental anomaly +14.0644767,MONDO:0019971,http://purl.obolibrary.org/obo/MONDO_0019971,melanoma of soft tissue +14.0644767,MONDO:0020488,http://purl.obolibrary.org/obo/MONDO_0020488,atypical progressive supranuclear palsy syndrome +14.0644767,MONDO:0020704,http://purl.obolibrary.org/obo/MONDO_0020704,inherited rippling muscle disease +14.0644767,MONDO:0020744,http://purl.obolibrary.org/obo/MONDO_0020744,Mobitz type I atrioventricular block +14.0644767,MONDO:0021070,http://purl.obolibrary.org/obo/MONDO_0021070,sublingual gland carcinoma +14.0644767,MONDO:0021915,http://purl.obolibrary.org/obo/MONDO_0021915,arakawa syndrome 2 +14.0644767,MONDO:0022453,http://purl.obolibrary.org/obo/MONDO_0022453,angiomyomatous hamartoma +14.0644767,MONDO:0022759,http://purl.obolibrary.org/obo/MONDO_0022759,trisomy 22 +14.0644767,MONDO:0022985,http://purl.obolibrary.org/obo/MONDO_0022985,diffuse cavernous hemangioma of the rectum +14.0644767,MONDO:0023528,http://purl.obolibrary.org/obo/MONDO_0023528,KSHV inflammatory cytokine syndrome +14.0644767,MONDO:0024675,http://purl.obolibrary.org/obo/MONDO_0024675,adult kidney Wilms tumor +14.0644767,MONDO:0030923,http://purl.obolibrary.org/obo/MONDO_0030923,frontotemporal dementia and/or amyotrophic lateral sclerosis +14.0644767,MONDO:0040732,http://purl.obolibrary.org/obo/MONDO_0040732,Pseudomonas aeruginosa infectious disease +14.0644767,MONDO:0043079,http://purl.obolibrary.org/obo/MONDO_0043079,acute articular rheumatism +14.0644767,MONDO:0043224,http://purl.obolibrary.org/obo/MONDO_0043224,multi-infarct dementia +14.0644767,MONDO:0100350,http://purl.obolibrary.org/obo/MONDO_0100350,"neuronopathy, distal hereditary motor, type 5" +14.0644767,NCBITaxon:10827,http://purl.obolibrary.org/obo/NCBITaxon_10827,none +14.0644767,NCBITaxon:11014,http://purl.obolibrary.org/obo/NCBITaxon_11014,none +14.0644767,NCBITaxon:11080,http://purl.obolibrary.org/obo/NCBITaxon_11080,Saint Louis encephalitis virus +14.0644767,NCBITaxon:1141493,http://purl.obolibrary.org/obo/NCBITaxon_1141493,none +14.0644767,NCBITaxon:11574,http://purl.obolibrary.org/obo/NCBITaxon_11574,none +14.0644767,NCBITaxon:116569,http://purl.obolibrary.org/obo/NCBITaxon_116569,none +14.0644767,NCBITaxon:11984,http://purl.obolibrary.org/obo/NCBITaxon_11984,none +14.0644767,NCBITaxon:12124,http://purl.obolibrary.org/obo/NCBITaxon_12124,none +14.0644767,NCBITaxon:12261,http://purl.obolibrary.org/obo/NCBITaxon_12261,none +14.0644767,NCBITaxon:12301,http://purl.obolibrary.org/obo/NCBITaxon_12301,none +14.0644767,NCBITaxon:1233383,http://purl.obolibrary.org/obo/NCBITaxon_1233383,none +14.0644767,NCBITaxon:129143,http://purl.obolibrary.org/obo/NCBITaxon_129143,none +14.0644767,NCBITaxon:1335626,http://purl.obolibrary.org/obo/NCBITaxon_1335626,Middle East respiratory syndrome-related coronavirus +14.0644767,NCBITaxon:135624,http://purl.obolibrary.org/obo/NCBITaxon_135624,Aeromonadales +14.0644767,NCBITaxon:143026,http://purl.obolibrary.org/obo/NCBITaxon_143026,none +14.0644767,NCBITaxon:143027,http://purl.obolibrary.org/obo/NCBITaxon_143027,none +14.0644767,NCBITaxon:143028,http://purl.obolibrary.org/obo/NCBITaxon_143028,none +14.0644767,NCBITaxon:1489943,http://purl.obolibrary.org/obo/NCBITaxon_1489943,none +14.0644767,NCBITaxon:1498442,http://purl.obolibrary.org/obo/NCBITaxon_1498442,none +14.0644767,NCBITaxon:1511872,http://purl.obolibrary.org/obo/NCBITaxon_1511872,none +14.0644767,NCBITaxon:167497,http://purl.obolibrary.org/obo/NCBITaxon_167497,none +14.0644767,NCBITaxon:186533,http://purl.obolibrary.org/obo/NCBITaxon_186533,none +14.0644767,NCBITaxon:191871,http://purl.obolibrary.org/obo/NCBITaxon_191871,none +14.0644767,NCBITaxon:195060,http://purl.obolibrary.org/obo/NCBITaxon_195060,none +14.0644767,NCBITaxon:195821,http://purl.obolibrary.org/obo/NCBITaxon_195821,none +14.0644767,NCBITaxon:196375,http://purl.obolibrary.org/obo/NCBITaxon_196375,none +14.0644767,NCBITaxon:204457,http://purl.obolibrary.org/obo/NCBITaxon_204457,none +14.0644767,NCBITaxon:216703,http://purl.obolibrary.org/obo/NCBITaxon_216703,none +14.0644767,NCBITaxon:21880,http://purl.obolibrary.org/obo/NCBITaxon_21880,none +14.0644767,NCBITaxon:218849,http://purl.obolibrary.org/obo/NCBITaxon_218849,none +14.0644767,NCBITaxon:223301,http://purl.obolibrary.org/obo/NCBITaxon_223301,none +14.0644767,NCBITaxon:2301094,http://purl.obolibrary.org/obo/NCBITaxon_2301094,none +14.0644767,NCBITaxon:240426,http://purl.obolibrary.org/obo/NCBITaxon_240426,none +14.0644767,NCBITaxon:249310,http://purl.obolibrary.org/obo/NCBITaxon_249310,none +14.0644767,NCBITaxon:2560538,http://purl.obolibrary.org/obo/NCBITaxon_2560538,none +14.0644767,NCBITaxon:2733300,http://purl.obolibrary.org/obo/NCBITaxon_2733300,none +14.0644767,NCBITaxon:2747210,http://purl.obolibrary.org/obo/NCBITaxon_2747210,none +14.0644767,NCBITaxon:2836339,http://purl.obolibrary.org/obo/NCBITaxon_2836339,none +14.0644767,NCBITaxon:30019,http://purl.obolibrary.org/obo/NCBITaxon_30019,none +14.0644767,NCBITaxon:301482,http://purl.obolibrary.org/obo/NCBITaxon_301482,none +14.0644767,NCBITaxon:30871,http://purl.obolibrary.org/obo/NCBITaxon_30871,none +14.0644767,NCBITaxon:31699,http://purl.obolibrary.org/obo/NCBITaxon_31699,none +14.0644767,NCBITaxon:32280,http://purl.obolibrary.org/obo/NCBITaxon_32280,none +14.0644767,NCBITaxon:33253,http://purl.obolibrary.org/obo/NCBITaxon_33253,none +14.0644767,NCBITaxon:34507,http://purl.obolibrary.org/obo/NCBITaxon_34507,none +14.0644767,NCBITaxon:3487,http://purl.obolibrary.org/obo/NCBITaxon_3487,none +14.0644767,NCBITaxon:351680,http://purl.obolibrary.org/obo/NCBITaxon_351680,none +14.0644767,NCBITaxon:35249,http://purl.obolibrary.org/obo/NCBITaxon_35249,none +14.0644767,NCBITaxon:35514,http://purl.obolibrary.org/obo/NCBITaxon_35514,none +14.0644767,NCBITaxon:36064,http://purl.obolibrary.org/obo/NCBITaxon_36064,none +14.0644767,NCBITaxon:37945,http://purl.obolibrary.org/obo/NCBITaxon_37945,none +14.0644767,NCBITaxon:38839,http://purl.obolibrary.org/obo/NCBITaxon_38839,none +14.0644767,NCBITaxon:392815,http://purl.obolibrary.org/obo/NCBITaxon_392815,none +14.0644767,NCBITaxon:39730,http://purl.obolibrary.org/obo/NCBITaxon_39730,none +14.0644767,NCBITaxon:40068,http://purl.obolibrary.org/obo/NCBITaxon_40068,none +14.0644767,NCBITaxon:41297,http://purl.obolibrary.org/obo/NCBITaxon_41297,none +14.0644767,NCBITaxon:41375,http://purl.obolibrary.org/obo/NCBITaxon_41375,none +14.0644767,NCBITaxon:42411,http://purl.obolibrary.org/obo/NCBITaxon_42411,none +14.0644767,NCBITaxon:48082,http://purl.obolibrary.org/obo/NCBITaxon_48082,none +14.0644767,NCBITaxon:48083,http://purl.obolibrary.org/obo/NCBITaxon_48083,none +14.0644767,NCBITaxon:4910,http://purl.obolibrary.org/obo/NCBITaxon_4910,none +14.0644767,NCBITaxon:50827,http://purl.obolibrary.org/obo/NCBITaxon_50827,none +14.0644767,NCBITaxon:51028,http://purl.obolibrary.org/obo/NCBITaxon_51028,Enterobius vermicularis +14.0644767,NCBITaxon:52860,http://purl.obolibrary.org/obo/NCBITaxon_52860,none +14.0644767,NCBITaxon:565303,http://purl.obolibrary.org/obo/NCBITaxon_565303,none +14.0644767,NCBITaxon:573977,http://purl.obolibrary.org/obo/NCBITaxon_573977,none +14.0644767,NCBITaxon:5810,http://purl.obolibrary.org/obo/NCBITaxon_5810,Toxoplasma +14.0644767,NCBITaxon:62352,http://purl.obolibrary.org/obo/NCBITaxon_62352,none +14.0644767,NCBITaxon:6332,http://purl.obolibrary.org/obo/NCBITaxon_6332,Trichinellidae +14.0644767,NCBITaxon:6333,http://purl.obolibrary.org/obo/NCBITaxon_6333,Trichinella +14.0644767,NCBITaxon:642,http://purl.obolibrary.org/obo/NCBITaxon_642,Aeromonas +14.0644767,NCBITaxon:6820,http://purl.obolibrary.org/obo/NCBITaxon_6820,none +14.0644767,NCBITaxon:6830,http://purl.obolibrary.org/obo/NCBITaxon_6830,Copepoda +14.0644767,NCBITaxon:686612,http://purl.obolibrary.org/obo/NCBITaxon_686612,none +14.0644767,NCBITaxon:7218,http://purl.obolibrary.org/obo/NCBITaxon_7218,none +14.0644767,NCBITaxon:72273,http://purl.obolibrary.org/obo/NCBITaxon_72273,Thiotrichales +14.0644767,NCBITaxon:8192,http://purl.obolibrary.org/obo/NCBITaxon_8192,none +14.0644767,NCBITaxon:8202,http://purl.obolibrary.org/obo/NCBITaxon_8202,none +14.0644767,NCBITaxon:8203,http://purl.obolibrary.org/obo/NCBITaxon_8203,none +14.0644767,NCBITaxon:8204,http://purl.obolibrary.org/obo/NCBITaxon_8204,none +14.0644767,NCBITaxon:83233,http://purl.obolibrary.org/obo/NCBITaxon_83233,none +14.0644767,NCBITaxon:84642,http://purl.obolibrary.org/obo/NCBITaxon_84642,Aeromonadaceae +14.0644767,NCBITaxon:91501,http://purl.obolibrary.org/obo/NCBITaxon_91501,none +14.0644767,NCBITaxon:943,http://purl.obolibrary.org/obo/NCBITaxon_943,Ehrlichia +14.0644767,NCBITaxon:943908,http://purl.obolibrary.org/obo/NCBITaxon_943908,none +14.0644767,PR:000001112,http://purl.obolibrary.org/obo/PR_000001112,G-protein coupled receptor 37-like 1 +14.0644767,PR:000001164,http://purl.obolibrary.org/obo/PR_000001164,5-hydroxytryptamine receptor 1E +14.0644767,PR:000001298,http://purl.obolibrary.org/obo/PR_000001298,CD180 molecule +14.0644767,PR:000001522,http://purl.obolibrary.org/obo/PR_000001522,none +14.0644767,PR:000001646,http://purl.obolibrary.org/obo/PR_000001646,G-protein coupled receptor 52 +14.0644767,PR:000001697,http://purl.obolibrary.org/obo/PR_000001697,none +14.0644767,PR:000001717,http://purl.obolibrary.org/obo/PR_000001717,trace amine-associated receptor 8 +14.0644767,PR:000002018,http://purl.obolibrary.org/obo/PR_000002018,MHC class II histocompatibility antigen beta chain DQB2 +14.0644767,PR:000002138,http://purl.obolibrary.org/obo/PR_000002138,cytokine SCM-1 beta +14.0644767,PR:000002341,http://purl.obolibrary.org/obo/PR_000002341,protein kinase C delta type +14.0644767,PR:000002977,http://purl.obolibrary.org/obo/PR_000002977,none +14.0644767,PR:000003154,http://purl.obolibrary.org/obo/PR_000003154,ubiquitin-conjugating enzyme E2 D3 +14.0644767,PR:000003575,http://purl.obolibrary.org/obo/PR_000003575,protein ABHD14B +14.0644767,PR:000003704,http://purl.obolibrary.org/obo/PR_000003704,"N-acyl-aromatic-L-amino acid amidohydrolase, carboxylate-forming" +14.0644767,PR:000003744,http://purl.obolibrary.org/obo/PR_000003744,Arf-GAP with dual PH domain-containing protein 2 +14.0644767,PR:000003817,http://purl.obolibrary.org/obo/PR_000003817,"Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 3" +14.0644767,PR:000003857,http://purl.obolibrary.org/obo/PR_000003857,protein AHNAK2 +14.0644767,PR:000003966,http://purl.obolibrary.org/obo/PR_000003966,alpha-protein kinase 2 +14.0644767,PR:000004054,http://purl.obolibrary.org/obo/PR_000004054,anillin +14.0644767,PR:000004120,http://purl.obolibrary.org/obo/PR_000004120,amyloid-beta A4 precursor protein-binding family B member 2 +14.0644767,PR:000004298,http://purl.obolibrary.org/obo/PR_000004298,armadillo repeat-containing protein 10 +14.0644767,PR:000004340,http://purl.obolibrary.org/obo/PR_000004340,"Arf-GAP with SH3 domain, ANK repeat and PH domain-containing protein 3" +14.0644767,PR:000004380,http://purl.obolibrary.org/obo/PR_000004380,aspartyl/asparaginyl beta-hydroxylase +14.0644767,PR:000004416,http://purl.obolibrary.org/obo/PR_000004416,cysteine protease ATG4C +14.0644767,PR:000004438,http://purl.obolibrary.org/obo/PR_000004438,sodium/potassium-transporting ATPase subunit alpha-4 +14.0644767,PR:000004456,http://purl.obolibrary.org/obo/PR_000004456,"ATP synthase subunit delta, mitochondrial" +14.0644767,PR:000004460,http://purl.obolibrary.org/obo/PR_000004460,"ATP synthase subunit e, mitochondrial" +14.0644767,PR:000004564,http://purl.obolibrary.org/obo/PR_000004564,none +14.0644767,PR:000004585,http://purl.obolibrary.org/obo/PR_000004585,"beta-1,3-galactosyltransferase 4" +14.0644767,PR:000004819,http://purl.obolibrary.org/obo/PR_000004819,protein HGH1 homolog +14.0644767,PR:000005001,http://purl.obolibrary.org/obo/PR_000005001,calmodulin-binding transcription activator 2 +14.0644767,PR:000005342,http://purl.obolibrary.org/obo/PR_000005342,centrosomal protein of 152 kDa +14.0644767,PR:000005367,http://purl.obolibrary.org/obo/PR_000005367,putative inactive carboxylesterase 4 +14.0644767,PR:000005415,http://purl.obolibrary.org/obo/PR_000005415,chromodomain-helicase-DNA-binding protein 9 +14.0644767,PR:000005550,http://purl.obolibrary.org/obo/PR_000005550,claudin-23 +14.0644767,PR:000005634,http://purl.obolibrary.org/obo/PR_000005634,protein cornichon homolog 2 +14.0644767,PR:000005660,http://purl.obolibrary.org/obo/PR_000005660,protein canopy homolog 3 +14.0644767,PR:000006037,http://purl.obolibrary.org/obo/PR_000006037,cortactin-binding protein 2 +14.0644767,PR:000006204,http://purl.obolibrary.org/obo/PR_000006204,none +14.0644767,PR:000006286,http://purl.obolibrary.org/obo/PR_000006286,deleted in azoospermia protein 3 +14.0644767,PR:000006421,http://purl.obolibrary.org/obo/PR_000006421,protein DEPP1 +14.0644767,PR:000006565,http://purl.obolibrary.org/obo/PR_000006565,"dynein heavy chain 6, axonemal" +14.0644767,PR:000006605,http://purl.obolibrary.org/obo/PR_000006605,dynamin-binding protein +14.0644767,PR:000006957,http://purl.obolibrary.org/obo/PR_000006957,eukaryotic translation initiation factor 2A +14.0644767,PR:000006963,http://purl.obolibrary.org/obo/PR_000006963,translation initiation factor eIF-2B subunit beta +14.0644767,PR:000006966,http://purl.obolibrary.org/obo/PR_000006966,translation initiation factor eIF-2B subunit epsilon +14.0644767,PR:000006992,http://purl.obolibrary.org/obo/PR_000006992,eukaryotic translation initiation factor 4E type 2 +14.0644767,PR:000006997,http://purl.obolibrary.org/obo/PR_000006997,eukaryotic translation initiation factor 4E transporter +14.0644767,PR:000007262,http://purl.obolibrary.org/obo/PR_000007262,exosome complex component RRP46 +14.0644767,PR:000007406,http://purl.obolibrary.org/obo/PR_000007406,F-box only protein 38 +14.0644767,PR:000007446,http://purl.obolibrary.org/obo/PR_000007446,Fc receptor-like B +14.0644767,PR:000007531,http://purl.obolibrary.org/obo/PR_000007531,four-jointed box protein 1 +14.0644767,PR:000007583,http://purl.obolibrary.org/obo/PR_000007583,ketosamine-3-kinase +14.0644767,PR:000007729,http://purl.obolibrary.org/obo/PR_000007729,none +14.0644767,PR:000007808,http://purl.obolibrary.org/obo/PR_000007808,galactose-3-O-sulfotransferase 2 +14.0644767,PR:000007822,http://purl.obolibrary.org/obo/PR_000007822,polypeptide N-acetylgalactosaminyltransferase 13 +14.0644767,PR:000008022,http://purl.obolibrary.org/obo/PR_000008022,"glycine dehydrogenase (decarboxylating), mitochondrial" +14.0644767,PR:000008291,http://purl.obolibrary.org/obo/PR_000008291,eukaryotic peptide chain release factor GTP-binding subunit ERF3B +14.0644767,PR:000008348,http://purl.obolibrary.org/obo/PR_000008348,guanylate cyclase soluble subunit alpha-2 +14.0644767,PR:000008354,http://purl.obolibrary.org/obo/PR_000008354,retinal guanylyl cyclase 2 +14.0644767,PR:000008362,http://purl.obolibrary.org/obo/PR_000008362,glycogenin-2 +14.0644767,PR:000008627,http://purl.obolibrary.org/obo/PR_000008627,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily E member 1-related +14.0644767,PR:000009081,http://purl.obolibrary.org/obo/PR_000009081,inositol hexakisphosphate kinase 2 +14.0644767,PR:000009138,http://purl.obolibrary.org/obo/PR_000009138,nicotinamide riboside kinase 2 +14.0644767,PR:000009139,http://purl.obolibrary.org/obo/PR_000009139,centromere protein R +14.0644767,PR:000009246,http://purl.obolibrary.org/obo/PR_000009246,kazrin +14.0644767,PR:000009278,http://purl.obolibrary.org/obo/PR_000009278,keratocan +14.0644767,PR:000009473,http://purl.obolibrary.org/obo/PR_000009473,"keratin, type I cuticular Ha4" +14.0644767,PR:000009731,http://purl.obolibrary.org/obo/PR_000009731,ligand-dependent nuclear receptor corepressor-like protein +14.0644767,PR:000010150,http://purl.obolibrary.org/obo/PR_000010150,microtubule-associated protein 9 +14.0644767,PR:000010320,http://purl.obolibrary.org/obo/PR_000010320,protein MEMO1 +14.0644767,PR:000010331,http://purl.obolibrary.org/obo/PR_000010331,mesoderm development candidate 2 +14.0644767,PR:000010407,http://purl.obolibrary.org/obo/PR_000010407,Mid1-interacting protein 1 +14.0644767,PR:000010519,http://purl.obolibrary.org/obo/PR_000010519,vacuolar fusion protein MON1 homolog A +14.0644767,PR:000010527,http://purl.obolibrary.org/obo/PR_000010527,mitochondrial amidoxime-reducing component 1 +14.0644767,PR:000010794,http://purl.obolibrary.org/obo/PR_000010794,matrix-remodeling-associated protein 5 +14.0644767,PR:000011072,http://purl.obolibrary.org/obo/PR_000011072,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 2 +14.0644767,PR:000011082,http://purl.obolibrary.org/obo/PR_000011082,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 2 +14.0644767,PR:000011093,http://purl.obolibrary.org/obo/PR_000011093,NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 +14.0644767,PR:000011618,http://purl.obolibrary.org/obo/PR_000011618,UDP-N-acetylglucosamine--peptide N-acetylglucosaminyltransferase 110 kDa subunit +14.0644767,PR:000012054,http://purl.obolibrary.org/obo/PR_000012054,oxysterol-binding protein-related protein 9 +14.0644767,PR:000012081,http://purl.obolibrary.org/obo/PR_000012081,ubiquitin thioesterase OTUB2 +14.0644767,PR:000012103,http://purl.obolibrary.org/obo/PR_000012103,none +14.0644767,PR:000012228,http://purl.obolibrary.org/obo/PR_000012228,platelet-activating factor acetylhydrolase IB subunit alpha2 +14.0644767,PR:000012306,http://purl.obolibrary.org/obo/PR_000012306,circadian clock protein PASD1 +14.0644767,PR:000012352,http://purl.obolibrary.org/obo/PR_000012352,cadherin-related family member 2 +14.0644767,PR:000012540,http://purl.obolibrary.org/obo/PR_000012540,E3 ubiquitin-protein ligase pellino homolog 3 +14.0644767,PR:000012613,http://purl.obolibrary.org/obo/PR_000012613,peptidoglycan recognition protein 4 +14.0644767,PR:000012666,http://purl.obolibrary.org/obo/PR_000012666,pleckstrin homology-like domain family B member 2 +14.0644767,PR:000012722,http://purl.obolibrary.org/obo/PR_000012722,"phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit gamma isoform" +14.0644767,PR:000012770,http://purl.obolibrary.org/obo/PR_000012770,polycystic kidney disease protein 1-like 1 +14.0644767,PR:000013005,http://purl.obolibrary.org/obo/PR_000013005,DNA-directed RNA polymerase III subunit RPC6 +14.0644767,PR:000013147,http://purl.obolibrary.org/obo/PR_000013147,serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit epsilon isoform +14.0644767,PR:000013238,http://purl.obolibrary.org/obo/PR_000013238,serine/threonine-protein kinase D3 +14.0644767,PR:000013351,http://purl.obolibrary.org/obo/PR_000013351,pregnancy-specific beta-1-glycoprotein 3 +14.0644767,PR:000013353,http://purl.obolibrary.org/obo/PR_000013353,pregnancy-specific beta-1-glycoprotein 5 +14.0644767,PR:000013499,http://purl.obolibrary.org/obo/PR_000013499,pseudouridylate synthase 7 +14.0644767,PR:000013886,http://purl.obolibrary.org/obo/PR_000013886,replication initiator 1 +14.0644767,PR:000013968,http://purl.obolibrary.org/obo/PR_000013968,inactive rhomboid protein 1 +14.0644767,PR:000014012,http://purl.obolibrary.org/obo/PR_000014012,regulating synaptic membrane exocytosis protein 4 +14.0644767,PR:000014064,http://purl.obolibrary.org/obo/PR_000014064,RING finger protein 10 +14.0644767,PR:000014103,http://purl.obolibrary.org/obo/PR_000014103,RING finger protein 17 +14.0644767,PR:000014113,http://purl.obolibrary.org/obo/PR_000014113,E3 ubiquitin-protein ligase RNF19A +14.0644767,PR:000014273,http://purl.obolibrary.org/obo/PR_000014273,40S ribosomal protein S28 +14.0644767,PR:000014346,http://purl.obolibrary.org/obo/PR_000014346,reticulon-2 +14.0644767,PR:000014359,http://purl.obolibrary.org/obo/PR_000014359,protein RUFY3 +14.0644767,PR:000014449,http://purl.obolibrary.org/obo/PR_000014449,SAP30-binding protein +14.0644767,PR:000014496,http://purl.obolibrary.org/obo/PR_000014496,scavenger receptor class F member 2 +14.0644767,PR:000014551,http://purl.obolibrary.org/obo/PR_000014551,protein SDA1 +14.0644767,PR:000014677,http://purl.obolibrary.org/obo/PR_000014677,stress-associated endoplasmic reticulum protein 2 +14.0644767,PR:000015079,http://purl.obolibrary.org/obo/PR_000015079,zinc transporter 6 +14.0644767,PR:000015180,http://purl.obolibrary.org/obo/PR_000015180,sodium- and chloride-dependent neutral and basic amino acid transporter B(0+) +14.0644767,PR:000015183,http://purl.obolibrary.org/obo/PR_000015183,sodium-dependent neutral amino acid transporter SLC6A17 +14.0644767,PR:000015491,http://purl.obolibrary.org/obo/PR_000015491,spermatogenesis-associated protein 4 +14.0644767,PR:000015679,http://purl.obolibrary.org/obo/PR_000015679,suppression of tumorigenicity 18 protein +14.0644767,PR:000016126,http://purl.obolibrary.org/obo/PR_000016126,tubulin-folding cofactor B +14.0644767,PR:000016494,http://purl.obolibrary.org/obo/PR_000016494,TNFAIP3-interacting protein 3 +14.0644767,PR:000016514,http://purl.obolibrary.org/obo/PR_000016514,transportin-2 +14.0644767,PR:000016824,http://purl.obolibrary.org/obo/PR_000016824,tubulin epsilon chain +14.0644767,PR:000017040,http://purl.obolibrary.org/obo/PR_000017040,ubiquitin recognition factor in ER-associated degradation protein 1 +14.0644767,PR:000017130,http://purl.obolibrary.org/obo/PR_000017130,nucleolar pre-ribosomal-associated protein 1 +14.0644767,PR:000017167,http://purl.obolibrary.org/obo/PR_000017167,ubiquitin carboxyl-terminal hydrolase 29 +14.0644767,PR:000017208,http://purl.obolibrary.org/obo/PR_000017208,U3 small nucleolar RNA-associated protein 6 +14.0644767,PR:000017252,http://purl.obolibrary.org/obo/PR_000017252,vesicle-associated membrane protein 5 +14.0644767,PR:000017351,http://purl.obolibrary.org/obo/PR_000017351,inactive serine/threonine-protein kinase VRK3 +14.0644767,PR:000022076,http://purl.obolibrary.org/obo/PR_000022076,none +14.0644767,PR:000022083,http://purl.obolibrary.org/obo/PR_000022083,none +14.0644767,PR:000022146,http://purl.obolibrary.org/obo/PR_000022146,none +14.0644767,PR:000022296,http://purl.obolibrary.org/obo/PR_000022296,none +14.0644767,PR:000022373,http://purl.obolibrary.org/obo/PR_000022373,none +14.0644767,PR:000022383,http://purl.obolibrary.org/obo/PR_000022383,none +14.0644767,PR:000022385,http://purl.obolibrary.org/obo/PR_000022385,none +14.0644767,PR:000022569,http://purl.obolibrary.org/obo/PR_000022569,none +14.0644767,PR:000022598,http://purl.obolibrary.org/obo/PR_000022598,none +14.0644767,PR:000022632,http://purl.obolibrary.org/obo/PR_000022632,none +14.0644767,PR:000022642,http://purl.obolibrary.org/obo/PR_000022642,none +14.0644767,PR:000022764,http://purl.obolibrary.org/obo/PR_000022764,none +14.0644767,PR:000022833,http://purl.obolibrary.org/obo/PR_000022833,none +14.0644767,PR:000022912,http://purl.obolibrary.org/obo/PR_000022912,none +14.0644767,PR:000023271,http://purl.obolibrary.org/obo/PR_000023271,none +14.0644767,PR:000023283,http://purl.obolibrary.org/obo/PR_000023283,none +14.0644767,PR:000023290,http://purl.obolibrary.org/obo/PR_000023290,none +14.0644767,PR:000023374,http://purl.obolibrary.org/obo/PR_000023374,none +14.0644767,PR:000023410,http://purl.obolibrary.org/obo/PR_000023410,none +14.0644767,PR:000023421,http://purl.obolibrary.org/obo/PR_000023421,none +14.0644767,PR:000023832,http://purl.obolibrary.org/obo/PR_000023832,none +14.0644767,PR:000023926,http://purl.obolibrary.org/obo/PR_000023926,none +14.0644767,PR:000023985,http://purl.obolibrary.org/obo/PR_000023985,none +14.0644767,PR:000027497,http://purl.obolibrary.org/obo/PR_000027497,none +14.0644767,PR:000028464,http://purl.obolibrary.org/obo/PR_000028464,none +14.0644767,PR:000029290,http://purl.obolibrary.org/obo/PR_000029290,phospholipid-transporting ATPase IA +14.0644767,PR:000029303,http://purl.obolibrary.org/obo/PR_000029303,bromodomain and WD repeat-containing protein 3 +14.0644767,PR:000029432,http://purl.obolibrary.org/obo/PR_000029432,DNA damage-regulated autophagy modulator protein 2 +14.0644767,PR:000029434,http://purl.obolibrary.org/obo/PR_000029434,"dynein heavy chain 8, axonemal" +14.0644767,PR:000029624,http://purl.obolibrary.org/obo/PR_000029624,multiple C2 and transmembrane domain-containing protein 2 +14.0644767,PR:000029758,http://purl.obolibrary.org/obo/PR_000029758,Schlafen family member 12 +14.0644767,PR:000029779,http://purl.obolibrary.org/obo/PR_000029779,TBC1 domain family member 10A +14.0644767,PR:000029783,http://purl.obolibrary.org/obo/PR_000029783,tudor domain-containing protein 5 +14.0644767,PR:000029868,http://purl.obolibrary.org/obo/PR_000029868,WD repeat-containing protein 74 +14.0644767,PR:000030504,http://purl.obolibrary.org/obo/PR_000030504,WASH complex subunit 2C +14.0644767,PR:000030528,http://purl.obolibrary.org/obo/PR_000030528,coiled-coil-helix-coiled-coil-helix domain-containing protein 7 +14.0644767,PR:000030548,http://purl.obolibrary.org/obo/PR_000030548,"probable glutamate--tRNA ligase, mitochondrial" +14.0644767,PR:000031116,http://purl.obolibrary.org/obo/PR_000031116,chitinase domain-containing protein 1 +14.0644767,PR:000031395,http://purl.obolibrary.org/obo/PR_000031395,cytoplasmic dynein 2 intermediate chain 2 +14.0644767,PR:000031654,http://purl.obolibrary.org/obo/PR_000031654,PDZ domain-containing protein GIPC2 +14.0644767,PR:000031756,http://purl.obolibrary.org/obo/PR_000031756,palmitoyltransferase ZDHHC13 +14.0644767,PR:000031804,http://purl.obolibrary.org/obo/PR_000031804,biorientation of chromosomes in cell division protein 1 +14.0644767,PR:000031899,http://purl.obolibrary.org/obo/PR_000031899,TOX high mobility group box family member 4 +14.0644767,PR:000032011,http://purl.obolibrary.org/obo/PR_000032011,BTB/POZ domain-containing protein KCTD1 +14.0644767,PR:000032071,http://purl.obolibrary.org/obo/PR_000032071,leucine-rich repeat-containing protein 3 +14.0644767,PR:000032092,http://purl.obolibrary.org/obo/PR_000032092,leucine-rich repeat-containing protein 26 +14.0644767,PR:000032226,http://purl.obolibrary.org/obo/PR_000032226,WD repeat and FYVE domain-containing protein 1 +14.0644767,PR:000032413,http://purl.obolibrary.org/obo/PR_000032413,tripartite motif-containing protein 6 +14.0644767,PR:000032433,http://purl.obolibrary.org/obo/PR_000032433,protein-L-isoaspartate O-methyltransferase domain-containing protein 1 +14.0644767,PR:000032543,http://purl.obolibrary.org/obo/PR_000032543,probable E3 ubiquitin-protein ligase HERC4 +14.0644767,PR:000032716,http://purl.obolibrary.org/obo/PR_000032716,SH3 domain-binding glutamic acid-rich protein +14.0644767,PR:000032762,http://purl.obolibrary.org/obo/PR_000032762,zinc finger FYVE domain-containing protein 26 +14.0644767,PR:000032765,http://purl.obolibrary.org/obo/PR_000032765,solute carrier family 22 member 17 +14.0644767,PR:000032782,http://purl.obolibrary.org/obo/PR_000032782,"calcium uniporter protein, mitochondrial" +14.0644767,PR:000032794,http://purl.obolibrary.org/obo/PR_000032794,acyl-CoA dehydrogenase family member 10 +14.0644767,PR:000032795,http://purl.obolibrary.org/obo/PR_000032795,"MHC class II histocompatibility antigen, DM beta chain" +14.0644767,PR:000032803,http://purl.obolibrary.org/obo/PR_000032803,Ras association domain-containing protein 3 +14.0644767,PR:000033161,http://purl.obolibrary.org/obo/PR_000033161,none +14.0644767,PR:000034064,http://purl.obolibrary.org/obo/PR_000034064,none +14.0644767,PR:000034355,http://purl.obolibrary.org/obo/PR_000034355,none +14.0644767,PR:000034737,http://purl.obolibrary.org/obo/PR_000034737,none +14.0644767,PR:000035152,http://purl.obolibrary.org/obo/PR_000035152,none +14.0644767,PR:000035208,http://purl.obolibrary.org/obo/PR_000035208,none +14.0644767,PR:000044428,http://purl.obolibrary.org/obo/PR_000044428,none +14.0644767,PR:A1ZA47,http://purl.obolibrary.org/obo/PR_A1ZA47,none +14.0644767,PR:B7TB45,http://purl.obolibrary.org/obo/PR_B7TB45,none +14.0644767,PR:F4IIM1,http://purl.obolibrary.org/obo/PR_F4IIM1,none +14.0644767,PR:F4J8D3,http://purl.obolibrary.org/obo/PR_F4J8D3,none +14.0644767,PR:F4JIF5,http://purl.obolibrary.org/obo/PR_F4JIF5,none +14.0644767,PR:F4JYE9,http://purl.obolibrary.org/obo/PR_F4JYE9,none +14.0644767,PR:O04294,http://purl.obolibrary.org/obo/PR_O04294,none +14.0644767,PR:O24409,http://purl.obolibrary.org/obo/PR_O24409,none +14.0644767,PR:O48573,http://purl.obolibrary.org/obo/PR_O48573,none +14.0644767,PR:O49782,http://purl.obolibrary.org/obo/PR_O49782,none +14.0644767,PR:O64495,http://purl.obolibrary.org/obo/PR_O64495,none +14.0644767,PR:O93567,http://purl.obolibrary.org/obo/PR_O93567,none +14.0644767,PR:O94715,http://purl.obolibrary.org/obo/PR_O94715,none +14.0644767,PR:P07183,http://purl.obolibrary.org/obo/PR_P07183,none +14.0644767,PR:P08723,http://purl.obolibrary.org/obo/PR_P08723,none +14.0644767,PR:P0C0V8,http://purl.obolibrary.org/obo/PR_P0C0V8,none +14.0644767,PR:P0C2H6,http://purl.obolibrary.org/obo/PR_P0C2H6,none +14.0644767,PR:P0C2H7,http://purl.obolibrary.org/obo/PR_P0C2H7,none +14.0644767,PR:P0C2H9,http://purl.obolibrary.org/obo/PR_P0C2H9,none +14.0644767,PR:P10610,http://purl.obolibrary.org/obo/PR_P10610,none +14.0644767,PR:P14136,http://purl.obolibrary.org/obo/PR_P14136,glial fibrillary acidic protein (human) +14.0644767,PR:P17255,http://purl.obolibrary.org/obo/PR_P17255,none +14.0644767,PR:P23301,http://purl.obolibrary.org/obo/PR_P23301,none +14.0644767,PR:P26955,http://purl.obolibrary.org/obo/PR_P26955,none +14.0644767,PR:P28167,http://purl.obolibrary.org/obo/PR_P28167,none +14.0644767,PR:P33421,http://purl.obolibrary.org/obo/PR_P33421,none +14.0644767,PR:P37012,http://purl.obolibrary.org/obo/PR_P37012,none +14.0644767,PR:P38801,http://purl.obolibrary.org/obo/PR_P38801,none +14.0644767,PR:P40037,http://purl.obolibrary.org/obo/PR_P40037,none +14.0644767,PR:P40367,http://purl.obolibrary.org/obo/PR_P40367,none +14.0644767,PR:P41088,http://purl.obolibrary.org/obo/PR_P41088,none +14.0644767,PR:P48149,http://purl.obolibrary.org/obo/PR_P48149,none +14.0644767,PR:Q03380,http://purl.obolibrary.org/obo/PR_Q03380,none +14.0644767,PR:Q06681,http://purl.obolibrary.org/obo/PR_Q06681,none +14.0644767,PR:Q12172,http://purl.obolibrary.org/obo/PR_Q12172,none +14.0644767,PR:Q12255,http://purl.obolibrary.org/obo/PR_Q12255,none +14.0644767,PR:Q42342,http://purl.obolibrary.org/obo/PR_Q42342,none +14.0644767,PR:Q54VB6,http://purl.obolibrary.org/obo/PR_Q54VB6,none +14.0644767,PR:Q7KR04,http://purl.obolibrary.org/obo/PR_Q7KR04,none +14.0644767,PR:Q7PC84,http://purl.obolibrary.org/obo/PR_Q7PC84,none +14.0644767,PR:Q8GZ52,http://purl.obolibrary.org/obo/PR_Q8GZ52,none +14.0644767,PR:Q8LDU4,http://purl.obolibrary.org/obo/PR_Q8LDU4,none +14.0644767,PR:Q8SWX0,http://purl.obolibrary.org/obo/PR_Q8SWX0,none +14.0644767,PR:Q8TGB2,http://purl.obolibrary.org/obo/PR_Q8TGB2,none +14.0644767,PR:Q8W420,http://purl.obolibrary.org/obo/PR_Q8W420,none +14.0644767,PR:Q8W4L5,http://purl.obolibrary.org/obo/PR_Q8W4L5,none +14.0644767,PR:Q94504,http://purl.obolibrary.org/obo/PR_Q94504,none +14.0644767,PR:Q9FYC2,http://purl.obolibrary.org/obo/PR_Q9FYC2,none +14.0644767,PR:Q9LKU2,http://purl.obolibrary.org/obo/PR_Q9LKU2,none +14.0644767,PR:Q9LSG3,http://purl.obolibrary.org/obo/PR_Q9LSG3,none +14.0644767,PR:Q9LVA1,http://purl.obolibrary.org/obo/PR_Q9LVA1,none +14.0644767,PR:Q9LYU7,http://purl.obolibrary.org/obo/PR_Q9LYU7,none +14.0644767,PR:Q9M099,http://purl.obolibrary.org/obo/PR_Q9M099,none +14.0644767,PR:Q9M157,http://purl.obolibrary.org/obo/PR_Q9M157,none +14.0644767,PR:Q9NKW1,http://purl.obolibrary.org/obo/PR_Q9NKW1,none +14.0644767,PR:Q9SN35,http://purl.obolibrary.org/obo/PR_Q9SN35,none +14.0644767,PR:Q9SSW1,http://purl.obolibrary.org/obo/PR_Q9SSW1,none +14.0644767,PR:Q9VZX1,http://purl.obolibrary.org/obo/PR_Q9VZX1,none +14.0644767,PR:Q9ZQ18,http://purl.obolibrary.org/obo/PR_Q9ZQ18,none +14.0644767,PR:Q9ZR03,http://purl.obolibrary.org/obo/PR_Q9ZR03,none +14.0644767,SO:0000378,http://purl.obolibrary.org/obo/SO_0000378,DsrA_RNA +14.0644767,SO:0000381,http://purl.obolibrary.org/obo/SO_0000381,group_IIA_intron +14.0644767,SO:0000631,http://purl.obolibrary.org/obo/SO_0000631,polycistronic_primary_transcript +14.0644767,SO:0001085,http://purl.obolibrary.org/obo/SO_0001085,sequence_conflict +14.0644767,SO:0001245,http://purl.obolibrary.org/obo/SO_0001245,miRNA_stem +14.0644767,SO:0001492,http://purl.obolibrary.org/obo/SO_0001492,intronic_regulatory_region +14.0644767,SO:0001590,http://purl.obolibrary.org/obo/SO_0001590,terminator_codon_variant +14.0644767,UBERON:0000003,http://purl.obolibrary.org/obo/UBERON_0000003,naris +14.0644767,UBERON:0001561,http://purl.obolibrary.org/obo/UBERON_0001561,subcostal artery +14.0644767,UBERON:0001688,http://purl.obolibrary.org/obo/UBERON_0001688,incus bone +14.0644767,UBERON:0002239,http://purl.obolibrary.org/obo/UBERON_0002239,floating rib +14.0644767,UBERON:0002541,http://purl.obolibrary.org/obo/UBERON_0002541,germ ring +14.0644767,UBERON:0002804,http://purl.obolibrary.org/obo/UBERON_0002804,left limbic lobe +14.0644767,UBERON:0002981,http://purl.obolibrary.org/obo/UBERON_0002981,pulvinar nucleus +14.0644767,UBERON:0003583,http://purl.obolibrary.org/obo/UBERON_0003583,larynx connective tissue +14.0644767,UBERON:0003869,http://purl.obolibrary.org/obo/UBERON_0003869,presumptive ganglion +14.0644767,UBERON:0003950,http://purl.obolibrary.org/obo/UBERON_0003950,inner ear canal +14.0644767,UBERON:0004554,http://purl.obolibrary.org/obo/UBERON_0004554,hindlimb digital artery +14.0644767,UBERON:0004858,http://purl.obolibrary.org/obo/UBERON_0004858,cellular cartilage +14.0644767,UBERON:0005192,http://purl.obolibrary.org/obo/UBERON_0005192,deferent duct artery +14.0644767,UBERON:0005301,http://purl.obolibrary.org/obo/UBERON_0005301,male preputial gland +14.0644767,UBERON:0005494,http://purl.obolibrary.org/obo/UBERON_0005494,intermediate mesenchyme +14.0644767,UBERON:0006138,http://purl.obolibrary.org/obo/UBERON_0006138,plantar digital artery +14.0644767,UBERON:0006267,http://purl.obolibrary.org/obo/UBERON_0006267,notochordal plate +14.0644767,UBERON:0006655,http://purl.obolibrary.org/obo/UBERON_0006655,septum of scrotum +14.0644767,UBERON:0006811,http://purl.obolibrary.org/obo/UBERON_0006811,occipital condyle +14.0644767,UBERON:0007169,http://purl.obolibrary.org/obo/UBERON_0007169,short head of biceps brachii +14.0644767,UBERON:0008187,http://purl.obolibrary.org/obo/UBERON_0008187,hypertrophic cartilage zone +14.0644767,UBERON:0008455,http://purl.obolibrary.org/obo/UBERON_0008455,rectus capitis posterior minor +14.0644767,UBERON:0008992,http://purl.obolibrary.org/obo/UBERON_0008992,chorion frondosum +14.0644767,UBERON:0009015,http://purl.obolibrary.org/obo/UBERON_0009015,upper back skin +14.0644767,UBERON:0009016,http://purl.obolibrary.org/obo/UBERON_0009016,ciliary stroma +14.0644767,UBERON:0009747,http://purl.obolibrary.org/obo/UBERON_0009747,tail fold of embryonic disc +14.0644767,UBERON:0009748,http://purl.obolibrary.org/obo/UBERON_0009748,cephalic neural fold +14.0644767,UBERON:0011765,http://purl.obolibrary.org/obo/UBERON_0011765,jugular lymph sac +14.0644767,UBERON:0012267,http://purl.obolibrary.org/obo/UBERON_0012267,equine splint bone +14.0644767,UBERON:0013119,http://purl.obolibrary.org/obo/UBERON_0013119,haemal node +14.0644767,UBERON:0013129,http://purl.obolibrary.org/obo/UBERON_0013129,bulb of vestibule +14.0644767,UBERON:0013244,http://purl.obolibrary.org/obo/UBERON_0013244,vaginal plate +14.0644767,UBERON:0014888,http://purl.obolibrary.org/obo/UBERON_0014888,iliotibialis muscle +14.0644767,UBERON:0015017,http://purl.obolibrary.org/obo/UBERON_0015017,incus endochondral element +14.0644767,UBERON:0026723,http://purl.obolibrary.org/obo/UBERON_0026723,inferior parietal sulcus +14.0644767,UBERON:0034942,http://purl.obolibrary.org/obo/UBERON_0034942,vibrissal follicle-sinus complex +14.0644767,UBERON:0034965,http://purl.obolibrary.org/obo/UBERON_0034965,middle thyroid vein +14.0644767,UBERON:0034995,http://purl.obolibrary.org/obo/UBERON_0034995,jaw mesenchyme +14.0644767,UBERON:2000620,http://purl.obolibrary.org/obo/UBERON_2000620,autopalatine +14.0644767,UBERON:2000691,http://purl.obolibrary.org/obo/UBERON_2000691,supraorbital bone +14.0644767,UBERON:2000707,http://purl.obolibrary.org/obo/UBERON_2000707,ventral zone +14.0644767,UBERON:2001256,http://purl.obolibrary.org/obo/UBERON_2001256,lateral floor plate +14.0644767,UBERON:2001904,http://purl.obolibrary.org/obo/UBERON_2001904,epibranchial element +14.0644767,UBERON:3010604,http://purl.obolibrary.org/obo/UBERON_3010604,cranial glands +14.0644767,UBERON:4200105,http://purl.obolibrary.org/obo/UBERON_4200105,nerve foramen +14.1216351,CHEBI:134249,http://purl.obolibrary.org/obo/CHEBI_134249,alkanesulfonate oxoanion +14.1216351,CHEBI:17620,http://purl.obolibrary.org/obo/CHEBI_17620,ferulic acid +14.1216351,CHEBI:18291,http://purl.obolibrary.org/obo/CHEBI_18291,manganese atom +14.1216351,CHEBI:22318,http://purl.obolibrary.org/obo/CHEBI_22318,none +14.1216351,CHEBI:24060,http://purl.obolibrary.org/obo/CHEBI_24060,fluoride salt +14.1216351,CHEBI:25154,http://purl.obolibrary.org/obo/CHEBI_25154,manganese molecular entity +14.1216351,CHEBI:25274,http://purl.obolibrary.org/obo/CHEBI_25274,methylamines +14.1216351,CHEBI:27897,http://purl.obolibrary.org/obo/CHEBI_27897,tryptophan +14.1216351,CHEBI:2955,http://purl.obolibrary.org/obo/CHEBI_2955,azithromycin +14.1216351,CHEBI:31696,http://purl.obolibrary.org/obo/CHEBI_31696,indocyanine green +14.1216351,CHEBI:31859,http://purl.obolibrary.org/obo/CHEBI_31859,modafinil +14.1216351,CHEBI:32149,http://purl.obolibrary.org/obo/CHEBI_32149,sodium sulfate +14.1216351,CHEBI:32790,http://purl.obolibrary.org/obo/CHEBI_32790,tyrosinate residue +14.1216351,CHEBI:33352,http://purl.obolibrary.org/obo/CHEBI_33352,manganese group element atom +14.1216351,CHEBI:33639,http://purl.obolibrary.org/obo/CHEBI_33639,ortho- and peri-fused compound +14.1216351,CHEBI:33645,http://purl.obolibrary.org/obo/CHEBI_33645,acyclic olefin +14.1216351,CHEBI:33743,http://purl.obolibrary.org/obo/CHEBI_33743,manganese group molecular entity +14.1216351,CHEBI:33823,http://purl.obolibrary.org/obo/CHEBI_33823,enol +14.1216351,CHEBI:33975,http://purl.obolibrary.org/obo/CHEBI_33975,magnesium salt +14.1216351,CHEBI:35115,http://purl.obolibrary.org/obo/CHEBI_35115,elemental manganese +14.1216351,CHEBI:35300,http://purl.obolibrary.org/obo/CHEBI_35300,ortho- and peri-fused polycyclic arene +14.1216351,CHEBI:37554,http://purl.obolibrary.org/obo/CHEBI_37554,fatty acyl-CoA +14.1216351,CHEBI:38111,http://purl.obolibrary.org/obo/CHEBI_38111,benzoindole +14.1216351,CHEBI:38856,http://purl.obolibrary.org/obo/CHEBI_38856,halophenol +14.1216351,CHEBI:47880,http://purl.obolibrary.org/obo/CHEBI_47880,steroid ester +14.1216351,CHEBI:50830,http://purl.obolibrary.org/obo/CHEBI_50830,fluorinated steroid +14.1216351,CHEBI:5801,http://purl.obolibrary.org/obo/CHEBI_5801,hydroxychloroquine +14.1216351,CHEBI:61951,http://purl.obolibrary.org/obo/CHEBI_61951,microtubule-destabilising agent +14.1216351,CHEBI:62081,http://purl.obolibrary.org/obo/CHEBI_62081,"1,1-diunsubstituted alkanesulfonate" +14.1216351,CHEBI:62868,http://purl.obolibrary.org/obo/CHEBI_62868,hepatoprotective agent +14.1216351,CHEBI:63673,http://purl.obolibrary.org/obo/CHEBI_63673,chemokine receptor 5 antagonist +14.1216351,CHEBI:65207,http://purl.obolibrary.org/obo/CHEBI_65207,vascular endothelial growth factor receptor antagonist +14.1216351,CHEBI:75701,http://purl.obolibrary.org/obo/CHEBI_75701,sarin +14.1216351,CHEBI:77495,http://purl.obolibrary.org/obo/CHEBI_77495,bradykinin receptor agonist +14.1216351,CL:0000382,http://purl.obolibrary.org/obo/CL_0000382,scolopale cell +14.1216351,CL:0000970,http://purl.obolibrary.org/obo/CL_0000970,unswitched memory B cell +14.1216351,CL:0002305,http://purl.obolibrary.org/obo/CL_0002305,epithelial cell of distal tubule +14.1216351,CL:0002592,http://purl.obolibrary.org/obo/CL_0002592,smooth muscle cell of the coronary artery +14.1216351,CL:0002606,http://purl.obolibrary.org/obo/CL_0002606,astrocyte of the spinal cord +14.1216351,DRUGBANK:DB00617,http://purl.obolibrary.org/obo/DRUGBANK_DB00617,none +14.1216351,DRUGBANK:DB01501,http://purl.obolibrary.org/obo/DRUGBANK_DB01501,none +14.1216351,DRUGBANK:DB02403,http://purl.obolibrary.org/obo/DRUGBANK_DB02403,none +14.1216351,DRUGBANK:DB02796,http://purl.obolibrary.org/obo/DRUGBANK_DB02796,none +14.1216351,DRUGBANK:DB02947,http://purl.obolibrary.org/obo/DRUGBANK_DB02947,none +14.1216351,DRUGBANK:DB03170,http://purl.obolibrary.org/obo/DRUGBANK_DB03170,none +14.1216351,DRUGBANK:DB04875,http://purl.obolibrary.org/obo/DRUGBANK_DB04875,none +14.1216351,DRUGBANK:DB04889,http://purl.obolibrary.org/obo/DRUGBANK_DB04889,none +14.1216351,DRUGBANK:DB05138,http://purl.obolibrary.org/obo/DRUGBANK_DB05138,none +14.1216351,DRUGBANK:DB05141,http://purl.obolibrary.org/obo/DRUGBANK_DB05141,none +14.1216351,DRUGBANK:DB05210,http://purl.obolibrary.org/obo/DRUGBANK_DB05210,none +14.1216351,DRUGBANK:DB05306,http://purl.obolibrary.org/obo/DRUGBANK_DB05306,none +14.1216351,DRUGBANK:DB05377,http://purl.obolibrary.org/obo/DRUGBANK_DB05377,none +14.1216351,DRUGBANK:DB05524,http://purl.obolibrary.org/obo/DRUGBANK_DB05524,none +14.1216351,DRUGBANK:DB05611,http://purl.obolibrary.org/obo/DRUGBANK_DB05611,none +14.1216351,DRUGBANK:DB06180,http://purl.obolibrary.org/obo/DRUGBANK_DB06180,none +14.1216351,DRUGBANK:DB06405,http://purl.obolibrary.org/obo/DRUGBANK_DB06405,none +14.1216351,DRUGBANK:DB06532,http://purl.obolibrary.org/obo/DRUGBANK_DB06532,none +14.1216351,DRUGBANK:DB07437,http://purl.obolibrary.org/obo/DRUGBANK_DB07437,none +14.1216351,DRUGBANK:DB07895,http://purl.obolibrary.org/obo/DRUGBANK_DB07895,none +14.1216351,DRUGBANK:DB08167,http://purl.obolibrary.org/obo/DRUGBANK_DB08167,none +14.1216351,DRUGBANK:DB08324,http://purl.obolibrary.org/obo/DRUGBANK_DB08324,none +14.1216351,DRUGBANK:DB08550,http://purl.obolibrary.org/obo/DRUGBANK_DB08550,none +14.1216351,DRUGBANK:DB08843,http://purl.obolibrary.org/obo/DRUGBANK_DB08843,none +14.1216351,DRUGBANK:DB08939,http://purl.obolibrary.org/obo/DRUGBANK_DB08939,none +14.1216351,DRUGBANK:DB08990,http://purl.obolibrary.org/obo/DRUGBANK_DB08990,none +14.1216351,DRUGBANK:DB09165,http://purl.obolibrary.org/obo/DRUGBANK_DB09165,none +14.1216351,DRUGBANK:DB09173,http://purl.obolibrary.org/obo/DRUGBANK_DB09173,none +14.1216351,DRUGBANK:DB09400,http://purl.obolibrary.org/obo/DRUGBANK_DB09400,none +14.1216351,DRUGBANK:DB11676,http://purl.obolibrary.org/obo/DRUGBANK_DB11676,none +14.1216351,DRUGBANK:DB11682,http://purl.obolibrary.org/obo/DRUGBANK_DB11682,none +14.1216351,DRUGBANK:DB11878,http://purl.obolibrary.org/obo/DRUGBANK_DB11878,none +14.1216351,DRUGBANK:DB12000,http://purl.obolibrary.org/obo/DRUGBANK_DB12000,none +14.1216351,DRUGBANK:DB12011,http://purl.obolibrary.org/obo/DRUGBANK_DB12011,none +14.1216351,DRUGBANK:DB12090,http://purl.obolibrary.org/obo/DRUGBANK_DB12090,none +14.1216351,DRUGBANK:DB12114,http://purl.obolibrary.org/obo/DRUGBANK_DB12114,none +14.1216351,DRUGBANK:DB12121,http://purl.obolibrary.org/obo/DRUGBANK_DB12121,none +14.1216351,DRUGBANK:DB12330,http://purl.obolibrary.org/obo/DRUGBANK_DB12330,none +14.1216351,DRUGBANK:DB12457,http://purl.obolibrary.org/obo/DRUGBANK_DB12457,none +14.1216351,DRUGBANK:DB12479,http://purl.obolibrary.org/obo/DRUGBANK_DB12479,none +14.1216351,DRUGBANK:DB12495,http://purl.obolibrary.org/obo/DRUGBANK_DB12495,none +14.1216351,DRUGBANK:DB12616,http://purl.obolibrary.org/obo/DRUGBANK_DB12616,none +14.1216351,DRUGBANK:DB12658,http://purl.obolibrary.org/obo/DRUGBANK_DB12658,none +14.1216351,DRUGBANK:DB12671,http://purl.obolibrary.org/obo/DRUGBANK_DB12671,none +14.1216351,DRUGBANK:DB12684,http://purl.obolibrary.org/obo/DRUGBANK_DB12684,none +14.1216351,DRUGBANK:DB12701,http://purl.obolibrary.org/obo/DRUGBANK_DB12701,none +14.1216351,DRUGBANK:DB12716,http://purl.obolibrary.org/obo/DRUGBANK_DB12716,none +14.1216351,DRUGBANK:DB12748,http://purl.obolibrary.org/obo/DRUGBANK_DB12748,none +14.1216351,DRUGBANK:DB12800,http://purl.obolibrary.org/obo/DRUGBANK_DB12800,none +14.1216351,DRUGBANK:DB12866,http://purl.obolibrary.org/obo/DRUGBANK_DB12866,none +14.1216351,DRUGBANK:DB12917,http://purl.obolibrary.org/obo/DRUGBANK_DB12917,none +14.1216351,DRUGBANK:DB12926,http://purl.obolibrary.org/obo/DRUGBANK_DB12926,none +14.1216351,DRUGBANK:DB12935,http://purl.obolibrary.org/obo/DRUGBANK_DB12935,none +14.1216351,DRUGBANK:DB12971,http://purl.obolibrary.org/obo/DRUGBANK_DB12971,none +14.1216351,DRUGBANK:DB13219,http://purl.obolibrary.org/obo/DRUGBANK_DB13219,none +14.1216351,DRUGBANK:DB13337,http://purl.obolibrary.org/obo/DRUGBANK_DB13337,none +14.1216351,DRUGBANK:DB13377,http://purl.obolibrary.org/obo/DRUGBANK_DB13377,none +14.1216351,DRUGBANK:DB13394,http://purl.obolibrary.org/obo/DRUGBANK_DB13394,none +14.1216351,DRUGBANK:DB13497,http://purl.obolibrary.org/obo/DRUGBANK_DB13497,none +14.1216351,DRUGBANK:DB13590,http://purl.obolibrary.org/obo/DRUGBANK_DB13590,none +14.1216351,DRUGBANK:DB13634,http://purl.obolibrary.org/obo/DRUGBANK_DB13634,none +14.1216351,DRUGBANK:DB13642,http://purl.obolibrary.org/obo/DRUGBANK_DB13642,none +14.1216351,DRUGBANK:DB13731,http://purl.obolibrary.org/obo/DRUGBANK_DB13731,none +14.1216351,DRUGBANK:DB13843,http://purl.obolibrary.org/obo/DRUGBANK_DB13843,none +14.1216351,DRUGBANK:DB13852,http://purl.obolibrary.org/obo/DRUGBANK_DB13852,none +14.1216351,DRUGBANK:DB14034,http://purl.obolibrary.org/obo/DRUGBANK_DB14034,none +14.1216351,DRUGBANK:DB14109,http://purl.obolibrary.org/obo/DRUGBANK_DB14109,none +14.1216351,DRUGBANK:DB14201,http://purl.obolibrary.org/obo/DRUGBANK_DB14201,none +14.1216351,DRUGBANK:DB14237,http://purl.obolibrary.org/obo/DRUGBANK_DB14237,none +14.1216351,DRUGBANK:DB14257,http://purl.obolibrary.org/obo/DRUGBANK_DB14257,none +14.1216351,DRUGBANK:DB14301,http://purl.obolibrary.org/obo/DRUGBANK_DB14301,none +14.1216351,DRUGBANK:DB14754,http://purl.obolibrary.org/obo/DRUGBANK_DB14754,none +14.1216351,DRUGBANK:DB14826,http://purl.obolibrary.org/obo/DRUGBANK_DB14826,none +14.1216351,DRUGBANK:DB15288,http://purl.obolibrary.org/obo/DRUGBANK_DB15288,none +14.1216351,DRUGBANK:DB15393,http://purl.obolibrary.org/obo/DRUGBANK_DB15393,none +14.1216351,DRUGBANK:DB15959,http://purl.obolibrary.org/obo/DRUGBANK_DB15959,none +14.1216351,DRUGBANK:DB15975,http://purl.obolibrary.org/obo/DRUGBANK_DB15975,none +14.1216351,GO:0000145,http://purl.obolibrary.org/obo/GO_0000145,exocyst +14.1216351,GO:0000153,http://purl.obolibrary.org/obo/GO_0000153,cytoplasmic ubiquitin ligase complex +14.1216351,GO:0000250,http://purl.obolibrary.org/obo/GO_0000250,lanosterol synthase activity +14.1216351,GO:0000723,http://purl.obolibrary.org/obo/GO_0000723,telomere maintenance +14.1216351,GO:0002823,http://purl.obolibrary.org/obo/GO_0002823,negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains +14.1216351,GO:0002901,http://purl.obolibrary.org/obo/GO_0002901,mature B cell apoptotic process +14.1216351,GO:0003097,http://purl.obolibrary.org/obo/GO_0003097,renal water transport +14.1216351,GO:0003849,http://purl.obolibrary.org/obo/GO_0003849,3-deoxy-7-phosphoheptulonate synthase activity +14.1216351,GO:0004037,http://purl.obolibrary.org/obo/GO_0004037,allantoicase activity +14.1216351,GO:0004076,http://purl.obolibrary.org/obo/GO_0004076,biotin synthase activity +14.1216351,GO:0004310,http://purl.obolibrary.org/obo/GO_0004310,farnesyl-diphosphate farnesyltransferase activity +14.1216351,GO:0004515,http://purl.obolibrary.org/obo/GO_0004515,nicotinate-nucleotide adenylyltransferase activity +14.1216351,GO:0004648,http://purl.obolibrary.org/obo/GO_0004648,O-phospho-L-serine:2-oxoglutarate aminotransferase activity +14.1216351,GO:0004783,http://purl.obolibrary.org/obo/GO_0004783,sulfite reductase (NADPH) activity +14.1216351,GO:0004836,http://purl.obolibrary.org/obo/GO_0004836,tyramine-beta hydroxylase activity +14.1216351,GO:0006061,http://purl.obolibrary.org/obo/GO_0006061,sorbitol biosynthetic process +14.1216351,GO:0006106,http://purl.obolibrary.org/obo/GO_0006106,fumarate metabolic process +14.1216351,GO:0006482,http://purl.obolibrary.org/obo/GO_0006482,protein demethylation +14.1216351,GO:0006552,http://purl.obolibrary.org/obo/GO_0006552,leucine catabolic process +14.1216351,GO:0007440,http://purl.obolibrary.org/obo/GO_0007440,foregut morphogenesis +14.1216351,GO:0007520,http://purl.obolibrary.org/obo/GO_0007520,myoblast fusion +14.1216351,GO:0008214,http://purl.obolibrary.org/obo/GO_0008214,protein dealkylation +14.1216351,GO:0008442,http://purl.obolibrary.org/obo/GO_0008442,3-hydroxyisobutyrate dehydrogenase activity +14.1216351,GO:0008593,http://purl.obolibrary.org/obo/GO_0008593,regulation of Notch signaling pathway +14.1216351,GO:0008801,http://purl.obolibrary.org/obo/GO_0008801,beta-phosphoglucomutase activity +14.1216351,GO:0008823,http://purl.obolibrary.org/obo/GO_0008823,cupric reductase activity +14.1216351,GO:0008980,http://purl.obolibrary.org/obo/GO_0008980,propionate kinase activity +14.1216351,GO:0009834,http://purl.obolibrary.org/obo/GO_0009834,plant-type secondary cell wall biogenesis +14.1216351,GO:0009953,http://purl.obolibrary.org/obo/GO_0009953,dorsal/ventral pattern formation +14.1216351,GO:0009969,http://purl.obolibrary.org/obo/GO_0009969,xyloglucan biosynthetic process +14.1216351,GO:0010522,http://purl.obolibrary.org/obo/GO_0010522,regulation of calcium ion transport into cytosol +14.1216351,GO:0010624,http://purl.obolibrary.org/obo/GO_0010624,regulation of Schwann cell proliferation +14.1216351,GO:0014019,http://purl.obolibrary.org/obo/GO_0014019,neuroblast development +14.1216351,GO:0014824,http://purl.obolibrary.org/obo/GO_0014824,artery smooth muscle contraction +14.1216351,GO:0015089,http://purl.obolibrary.org/obo/GO_0015089,high-affinity copper ion transmembrane transporter activity +14.1216351,GO:0016005,http://purl.obolibrary.org/obo/GO_0016005,phospholipase A2 activator activity +14.1216351,GO:0016063,http://purl.obolibrary.org/obo/GO_0016063,rhodopsin biosynthetic process +14.1216351,GO:0016223,http://purl.obolibrary.org/obo/GO_0016223,beta-alanine-pyruvate transaminase activity +14.1216351,GO:0016577,http://purl.obolibrary.org/obo/GO_0016577,histone demethylation +14.1216351,GO:0017188,http://purl.obolibrary.org/obo/GO_0017188,aspartate N-acetyltransferase activity +14.1216351,GO:0018666,http://purl.obolibrary.org/obo/GO_0018666,"2,4-dichlorophenol 6-monooxygenase activity" +14.1216351,GO:0018730,http://purl.obolibrary.org/obo/GO_0018730,glutaconate CoA-transferase activity +14.1216351,GO:0018788,http://purl.obolibrary.org/obo/GO_0018788,atrazine chlorohydrolase activity +14.1216351,GO:0019170,http://purl.obolibrary.org/obo/GO_0019170,methylglyoxal reductase (NADH-dependent) activity +14.1216351,GO:0019242,http://purl.obolibrary.org/obo/GO_0019242,methylglyoxal biosynthetic process +14.1216351,GO:0021982,http://purl.obolibrary.org/obo/GO_0021982,pineal gland development +14.1216351,GO:0030175,http://purl.obolibrary.org/obo/GO_0030175,filopodium +14.1216351,GO:0030550,http://purl.obolibrary.org/obo/GO_0030550,acetylcholine receptor inhibitor activity +14.1216351,GO:0030795,http://purl.obolibrary.org/obo/GO_0030795,methyl jasmonate methylesterase activity +14.1216351,GO:0030891,http://purl.obolibrary.org/obo/GO_0030891,VCB complex +14.1216351,GO:0031251,http://purl.obolibrary.org/obo/GO_0031251,PAN complex +14.1216351,GO:0031518,http://purl.obolibrary.org/obo/GO_0031518,CBF3 complex +14.1216351,GO:0031541,http://purl.obolibrary.org/obo/GO_0031541,negative regulation of anthocyanin biosynthetic process +14.1216351,GO:0031981,http://purl.obolibrary.org/obo/GO_0031981,nuclear lumen +14.1216351,GO:0032091,http://purl.obolibrary.org/obo/GO_0032091,negative regulation of protein binding +14.1216351,GO:0032445,http://purl.obolibrary.org/obo/GO_0032445,fructose import +14.1216351,GO:0032512,http://purl.obolibrary.org/obo/GO_0032512,none +14.1216351,GO:0032762,http://purl.obolibrary.org/obo/GO_0032762,mast cell cytokine production +14.1216351,GO:0032883,http://purl.obolibrary.org/obo/GO_0032883,regulation of chitin biosynthetic process +14.1216351,GO:0033004,http://purl.obolibrary.org/obo/GO_0033004,negative regulation of mast cell activation +14.1216351,GO:0033143,http://purl.obolibrary.org/obo/GO_0033143,regulation of intracellular steroid hormone receptor signaling pathway +14.1216351,GO:0033331,http://purl.obolibrary.org/obo/GO_0033331,ent-kaurene metabolic process +14.1216351,GO:0033717,http://purl.obolibrary.org/obo/GO_0033717,gluconate 2-dehydrogenase (acceptor) activity +14.1216351,GO:0033867,http://purl.obolibrary.org/obo/GO_0033867,Fas-activated serine/threonine kinase activity +14.1216351,GO:0034104,http://purl.obolibrary.org/obo/GO_0034104,negative regulation of tissue remodeling +14.1216351,GO:0035032,http://purl.obolibrary.org/obo/GO_0035032,"phosphatidylinositol 3-kinase complex, class III" +14.1216351,GO:0035071,http://purl.obolibrary.org/obo/GO_0035071,salivary gland cell autophagic cell death +14.1216351,GO:0035514,http://purl.obolibrary.org/obo/GO_0035514,DNA demethylase activity +14.1216351,GO:0035702,http://purl.obolibrary.org/obo/GO_0035702,monocyte homeostasis +14.1216351,GO:0035859,http://purl.obolibrary.org/obo/GO_0035859,Seh1-associated complex +14.1216351,GO:0036010,http://purl.obolibrary.org/obo/GO_0036010,protein localization to endosome +14.1216351,GO:0036032,http://purl.obolibrary.org/obo/GO_0036032,neural crest cell delamination +14.1216351,GO:0036132,http://purl.obolibrary.org/obo/GO_0036132,13-prostaglandin reductase activity +14.1216351,GO:0038193,http://purl.obolibrary.org/obo/GO_0038193,thromboxane A2 signaling pathway +14.1216351,GO:0042026,http://purl.obolibrary.org/obo/GO_0042026,protein refolding +14.1216351,GO:0042341,http://purl.obolibrary.org/obo/GO_0042341,cyanogenic glycoside metabolic process +14.1216351,GO:0042490,http://purl.obolibrary.org/obo/GO_0042490,mechanoreceptor differentiation +14.1216351,GO:0042659,http://purl.obolibrary.org/obo/GO_0042659,regulation of cell fate specification +14.1216351,GO:0042906,http://purl.obolibrary.org/obo/GO_0042906,xanthine transport +14.1216351,GO:0043213,http://purl.obolibrary.org/obo/GO_0043213,bacteriocin transport +14.1216351,GO:0043407,http://purl.obolibrary.org/obo/GO_0043407,negative regulation of MAP kinase activity +14.1216351,GO:0043433,http://purl.obolibrary.org/obo/GO_0043433,negative regulation of DNA-binding transcription factor activity +14.1216351,GO:0043506,http://purl.obolibrary.org/obo/GO_0043506,regulation of JUN kinase activity +14.1216351,GO:0043856,http://purl.obolibrary.org/obo/GO_0043856,anti-sigma factor antagonist activity +14.1216351,GO:0043902,http://purl.obolibrary.org/obo/GO_0043902,none +14.1216351,GO:0045064,http://purl.obolibrary.org/obo/GO_0045064,T-helper 2 cell differentiation +14.1216351,GO:0045136,http://purl.obolibrary.org/obo/GO_0045136,development of secondary sexual characteristics +14.1216351,GO:0045601,http://purl.obolibrary.org/obo/GO_0045601,regulation of endothelial cell differentiation +14.1216351,GO:0045634,http://purl.obolibrary.org/obo/GO_0045634,regulation of melanocyte differentiation +14.1216351,GO:0045727,http://purl.obolibrary.org/obo/GO_0045727,positive regulation of translation +14.1216351,GO:0045916,http://purl.obolibrary.org/obo/GO_0045916,negative regulation of complement activation +14.1216351,GO:0046099,http://purl.obolibrary.org/obo/GO_0046099,guanine biosynthetic process +14.1216351,GO:0046100,http://purl.obolibrary.org/obo/GO_0046100,hypoxanthine metabolic process +14.1216351,GO:0046328,http://purl.obolibrary.org/obo/GO_0046328,regulation of JNK cascade +14.1216351,GO:0046523,http://purl.obolibrary.org/obo/GO_0046523,S-methyl-5-thioribose-1-phosphate isomerase activity +14.1216351,GO:0046851,http://purl.obolibrary.org/obo/GO_0046851,negative regulation of bone remodeling +14.1216351,GO:0047188,http://purl.obolibrary.org/obo/GO_0047188,aromatic-hydroxylamine O-acetyltransferase activity +14.1216351,GO:0047436,http://purl.obolibrary.org/obo/GO_0047436,arylmalonate decarboxylase activity +14.1216351,GO:0047545,http://purl.obolibrary.org/obo/GO_0047545,2-hydroxyglutarate dehydrogenase activity +14.1216351,GO:0047725,http://purl.obolibrary.org/obo/GO_0047725,inulosucrase activity +14.1216351,GO:0047840,http://purl.obolibrary.org/obo/GO_0047840,dCTP diphosphatase activity +14.1216351,GO:0048307,http://purl.obolibrary.org/obo/GO_0048307,ferredoxin-nitrite reductase activity +14.1216351,GO:0048769,http://purl.obolibrary.org/obo/GO_0048769,sarcomerogenesis +14.1216351,GO:0050138,http://purl.obolibrary.org/obo/GO_0050138,nicotinate dehydrogenase activity +14.1216351,GO:0050221,http://purl.obolibrary.org/obo/GO_0050221,prostaglandin-E2 9-reductase activity +14.1216351,GO:0050251,http://purl.obolibrary.org/obo/GO_0050251,retinol isomerase activity +14.1216351,GO:0050347,http://purl.obolibrary.org/obo/GO_0050347,trans-octaprenyltranstransferase activity +14.1216351,GO:0050454,http://purl.obolibrary.org/obo/GO_0050454,coenzyme F420 hydrogenase activity +14.1216351,GO:0050659,http://purl.obolibrary.org/obo/GO_0050659,N-acetylgalactosamine 4-sulfate 6-O-sulfotransferase activity +14.1216351,GO:0050932,http://purl.obolibrary.org/obo/GO_0050932,regulation of pigment cell differentiation +14.1216351,GO:0051279,http://purl.obolibrary.org/obo/GO_0051279,regulation of release of sequestered calcium ion into cytosol +14.1216351,GO:0051933,http://purl.obolibrary.org/obo/GO_0051933,amino acid neurotransmitter reuptake +14.1216351,GO:0051935,http://purl.obolibrary.org/obo/GO_0051935,glutamate reuptake +14.1216351,GO:0052037,http://purl.obolibrary.org/obo/GO_0052037,none +14.1216351,GO:0052261,http://purl.obolibrary.org/obo/GO_0052261,none +14.1216351,GO:0052699,http://purl.obolibrary.org/obo/GO_0052699,ergothioneine biosynthetic process +14.1216351,GO:0052703,http://purl.obolibrary.org/obo/GO_0052703,cellular modified histidine biosynthetic process +14.1216351,GO:0060113,http://purl.obolibrary.org/obo/GO_0060113,inner ear receptor cell differentiation +14.1216351,GO:0060510,http://purl.obolibrary.org/obo/GO_0060510,type II pneumocyte differentiation +14.1216351,GO:0060541,http://purl.obolibrary.org/obo/GO_0060541,respiratory system development +14.1216351,GO:0060765,http://purl.obolibrary.org/obo/GO_0060765,regulation of androgen receptor signaling pathway +14.1216351,GO:0060992,http://purl.obolibrary.org/obo/GO_0060992,response to fungicide +14.1216351,GO:0070191,http://purl.obolibrary.org/obo/GO_0070191,methionine-R-sulfoxide reductase activity +14.1216351,GO:0070456,http://purl.obolibrary.org/obo/GO_0070456,galactose-1-phosphate phosphatase activity +14.1216351,GO:0070983,http://purl.obolibrary.org/obo/GO_0070983,dendrite guidance +14.1216351,GO:0071105,http://purl.obolibrary.org/obo/GO_0071105,response to interleukin-11 +14.1216351,GO:0080008,http://purl.obolibrary.org/obo/GO_0080008,Cul4-RING E3 ubiquitin ligase complex +14.1216351,GO:0080047,http://purl.obolibrary.org/obo/GO_0080047,GDP-L-galactose phosphorylase activity +14.1216351,GO:0090279,http://purl.obolibrary.org/obo/GO_0090279,regulation of calcium ion import +14.1216351,GO:0090511,http://purl.obolibrary.org/obo/GO_0090511,periclinal cell division +14.1216351,GO:0090571,http://purl.obolibrary.org/obo/GO_0090571,RNA polymerase II transcription repressor complex +14.1216351,GO:0097130,http://purl.obolibrary.org/obo/GO_0097130,cyclin D3-CDK4 complex +14.1216351,GO:0097184,http://purl.obolibrary.org/obo/GO_0097184,response to azide +14.1216351,GO:0097327,http://purl.obolibrary.org/obo/GO_0097327,response to antineoplastic agent +14.1216351,GO:0098712,http://purl.obolibrary.org/obo/GO_0098712,L-glutamate import across plasma membrane +14.1216351,GO:0099569,http://purl.obolibrary.org/obo/GO_0099569,presynaptic cytoskeleton +14.1216351,GO:1901402,http://purl.obolibrary.org/obo/GO_1901402,negative regulation of tetrapyrrole metabolic process +14.1216351,GO:1901464,http://purl.obolibrary.org/obo/GO_1901464,negative regulation of tetrapyrrole biosynthetic process +14.1216351,GO:1901532,http://purl.obolibrary.org/obo/GO_1901532,regulation of hematopoietic progenitor cell differentiation +14.1216351,GO:1901696,http://purl.obolibrary.org/obo/GO_1901696,cannabinoid biosynthetic process +14.1216351,GO:1901874,http://purl.obolibrary.org/obo/GO_1901874,negative regulation of post-translational protein modification +14.1216351,GO:1902107,http://purl.obolibrary.org/obo/GO_1902107,positive regulation of leukocyte differentiation +14.1216351,GO:1902837,http://purl.obolibrary.org/obo/GO_1902837,none +14.1216351,GO:1902858,http://purl.obolibrary.org/obo/GO_1902858,propionyl-CoA metabolic process +14.1216351,GO:1903489,http://purl.obolibrary.org/obo/GO_1903489,positive regulation of lactation +14.1216351,GO:1903502,http://purl.obolibrary.org/obo/GO_1903502,translation repressor complex +14.1216351,GO:1903802,http://purl.obolibrary.org/obo/GO_1903802,none +14.1216351,GO:1904669,http://purl.obolibrary.org/obo/GO_1904669,ATP export +14.1216351,GO:1990123,http://purl.obolibrary.org/obo/GO_1990123,none +14.1216351,GO:1990424,http://purl.obolibrary.org/obo/GO_1990424,protein arginine kinase activity +14.1216351,GO:1990791,http://purl.obolibrary.org/obo/GO_1990791,dorsal root ganglion development +14.1216351,GO:2000258,http://purl.obolibrary.org/obo/GO_2000258,negative regulation of protein activation cascade +14.1216351,GO:2000425,http://purl.obolibrary.org/obo/GO_2000425,regulation of apoptotic cell clearance +14.1216351,GO:2000823,http://purl.obolibrary.org/obo/GO_2000823,none +14.1216351,HP:0000978,http://purl.obolibrary.org/obo/HP_0000978,Bruising susceptibility +14.1216351,HP:0001339,http://purl.obolibrary.org/obo/HP_0001339,Lissencephaly +14.1216351,HP:0002107,http://purl.obolibrary.org/obo/HP_0002107,Pneumothorax +14.1216351,HP:0002808,http://purl.obolibrary.org/obo/HP_0002808,Kyphosis +14.1216351,HP:0002894,http://purl.obolibrary.org/obo/HP_0002894,Neoplasm of the pancreas +14.1216351,HP:0005214,http://purl.obolibrary.org/obo/HP_0005214,Intestinal obstruction +14.1216351,HP:0008443,http://purl.obolibrary.org/obo/HP_0008443,Spinal deformities +14.1216351,HP:0012118,http://purl.obolibrary.org/obo/HP_0012118,Laryngeal carcinoma +14.1216351,HP:0030809,http://purl.obolibrary.org/obo/HP_0030809,Abnormal tongue morphology +14.1216351,HP:0410280,http://purl.obolibrary.org/obo/HP_0410280,Pediatric onset +14.1216351,MONDO:0000172,http://purl.obolibrary.org/obo/MONDO_0000172,"muscular dystrophy-dystroglycanopathy, type B" +14.1216351,MONDO:0000192,http://purl.obolibrary.org/obo/MONDO_0000192,polyglucosan body myopathy +14.1216351,MONDO:0000969,http://purl.obolibrary.org/obo/MONDO_0000969,pleural lipoma +14.1216351,MONDO:0001259,http://purl.obolibrary.org/obo/MONDO_0001259,pituitary gland infarction +14.1216351,MONDO:0001273,http://purl.obolibrary.org/obo/MONDO_0001273,megacolon +14.1216351,MONDO:0001332,http://purl.obolibrary.org/obo/MONDO_0001332,palindromic rheumatism +14.1216351,MONDO:0001612,http://purl.obolibrary.org/obo/MONDO_0001612,carotid stenosis +14.1216351,MONDO:0002287,http://purl.obolibrary.org/obo/MONDO_0002287,glandular cystitis +14.1216351,MONDO:0002313,http://purl.obolibrary.org/obo/MONDO_0002313,vernal conjunctivitis +14.1216351,MONDO:0002401,http://purl.obolibrary.org/obo/MONDO_0002401,malignant tenosynovial giant cell tumor +14.1216351,MONDO:0002443,http://purl.obolibrary.org/obo/MONDO_0002443,bruxism +14.1216351,MONDO:0002842,http://purl.obolibrary.org/obo/MONDO_0002842,bacterial gastritis +14.1216351,MONDO:0002845,http://purl.obolibrary.org/obo/MONDO_0002845,necrotizing gastritis +14.1216351,MONDO:0002888,http://purl.obolibrary.org/obo/MONDO_0002888,intraorbital meningioma +14.1216351,MONDO:0003086,http://purl.obolibrary.org/obo/MONDO_0003086,thymic mucoepidermoid carcinoma +14.1216351,MONDO:0003233,http://purl.obolibrary.org/obo/MONDO_0003233,essential tremor +14.1216351,MONDO:0003360,http://purl.obolibrary.org/obo/MONDO_0003360,small intestine leiomyosarcoma +14.1216351,MONDO:0003400,http://purl.obolibrary.org/obo/MONDO_0003400,childhood endodermal sinus tumor +14.1216351,MONDO:0003444,http://purl.obolibrary.org/obo/MONDO_0003444,intrahepatic bile duct adenoma +14.1216351,MONDO:0003617,http://purl.obolibrary.org/obo/MONDO_0003617,chronic salpingitis +14.1216351,MONDO:0003771,http://purl.obolibrary.org/obo/MONDO_0003771,jugular foramen meningioma +14.1216351,MONDO:0003822,http://purl.obolibrary.org/obo/MONDO_0003822,non-invasive bladder papillary urothelial neoplasm +14.1216351,MONDO:0003985,http://purl.obolibrary.org/obo/MONDO_0003985,chest wall lymphoma +14.1216351,MONDO:0004092,http://purl.obolibrary.org/obo/MONDO_0004092,thymic basaloid carcinoma +14.1216351,MONDO:0004156,http://purl.obolibrary.org/obo/MONDO_0004156,pancreatic mucinous cystadenocarcinoma +14.1216351,MONDO:0004207,http://purl.obolibrary.org/obo/MONDO_0004207,pulmonary artery leiomyosarcoma +14.1216351,MONDO:0004924,http://purl.obolibrary.org/obo/MONDO_0004924,chronic canaliculitis +14.1216351,MONDO:0005223,http://purl.obolibrary.org/obo/MONDO_0005223,acute myeloid leukemia with minimal differentiation +14.1216351,MONDO:0006435,http://purl.obolibrary.org/obo/MONDO_0006435,submandibular gland adenocarcinoma +14.1216351,MONDO:0006578,http://purl.obolibrary.org/obo/MONDO_0006578,mediastinal lipomatosis +14.1216351,MONDO:0006678,http://purl.obolibrary.org/obo/MONDO_0006678,bladder calculus +14.1216351,MONDO:0006792,http://purl.obolibrary.org/obo/MONDO_0006792,hyperglobulinemic purpura +14.1216351,MONDO:0006979,http://purl.obolibrary.org/obo/MONDO_0006979,steatitis +14.1216351,MONDO:0007280,http://purl.obolibrary.org/obo/MONDO_0007280,cataract 8 multiple types +14.1216351,MONDO:0007693,http://purl.obolibrary.org/obo/MONDO_0007693,hypertrichosis cubiti-short stature syndrome +14.1216351,MONDO:0007762,http://purl.obolibrary.org/obo/MONDO_0007762,hyperlipoproteinemia type V +14.1216351,MONDO:0007816,http://purl.obolibrary.org/obo/MONDO_0007816,immune suppression +14.1216351,MONDO:0007878,http://purl.obolibrary.org/obo/MONDO_0007878,congenital laryngomalacia +14.1216351,MONDO:0007979,http://purl.obolibrary.org/obo/MONDO_0007979,metachondromatosis +14.1216351,MONDO:0008303,http://purl.obolibrary.org/obo/MONDO_0008303,familial male-limited precocious puberty +14.1216351,MONDO:0008497,http://purl.obolibrary.org/obo/MONDO_0008497,Stormorken syndrome +14.1216351,MONDO:0008610,http://purl.obolibrary.org/obo/MONDO_0008610,blue color blindness +14.1216351,MONDO:0008858,http://purl.obolibrary.org/obo/MONDO_0008858,Behr syndrome +14.1216351,MONDO:0008921,http://purl.obolibrary.org/obo/MONDO_0008921,carnosinemia +14.1216351,MONDO:0008929,http://purl.obolibrary.org/obo/MONDO_0008929,cataract-intellectual disability-hypogonadism syndrome +14.1216351,MONDO:0008966,http://purl.obolibrary.org/obo/MONDO_0008966,Aagenaes syndrome +14.1216351,MONDO:0008974,http://purl.obolibrary.org/obo/MONDO_0008974,Greenberg dysplasia +14.1216351,MONDO:0009007,http://purl.obolibrary.org/obo/MONDO_0009007,Jalili syndrome +14.1216351,MONDO:0009011,http://purl.obolibrary.org/obo/MONDO_0009011,constriction rings syndrome +14.1216351,MONDO:0009016,http://purl.obolibrary.org/obo/MONDO_0009016,band keratopathy +14.1216351,MONDO:0009153,http://purl.obolibrary.org/obo/MONDO_0009153,ectopia lentis et pupillae +14.1216351,MONDO:0009285,http://purl.obolibrary.org/obo/MONDO_0009285,gamma-glutamyl transpeptidase deficiency +14.1216351,MONDO:0009529,http://purl.obolibrary.org/obo/MONDO_0009529,pyruvate dehydrogenase E3 deficiency +14.1216351,MONDO:0009604,http://purl.obolibrary.org/obo/MONDO_0009604,methemoglobin reductase deficiency +14.1216351,MONDO:0009711,http://purl.obolibrary.org/obo/MONDO_0009711,congenital fiber-type disproportion myopathy +14.1216351,MONDO:0009830,http://purl.obolibrary.org/obo/MONDO_0009830,parkinsonian-pyramidal syndrome +14.1216351,MONDO:0010152,http://purl.obolibrary.org/obo/MONDO_0010152,trichomegaly-retina pigmentary degeneration-dwarfism syndrome +14.1216351,MONDO:0010176,http://purl.obolibrary.org/obo/MONDO_0010176,orofaciodigital syndrome type 6 +14.1216351,MONDO:0011029,http://purl.obolibrary.org/obo/MONDO_0011029,myeloid tumor suppressor +14.1216351,MONDO:0011242,http://purl.obolibrary.org/obo/MONDO_0011242,Bartter disease type 4a +14.1216351,MONDO:0011282,http://purl.obolibrary.org/obo/MONDO_0011282,tumor suppressor gene on chromosome 11 +14.1216351,MONDO:0012392,http://purl.obolibrary.org/obo/MONDO_0012392,2-methylbutyryl-CoA dehydrogenase deficiency +14.1216351,MONDO:0012594,http://purl.obolibrary.org/obo/MONDO_0012594,complement factor I deficiency +14.1216351,MONDO:0012648,http://purl.obolibrary.org/obo/MONDO_0012648,isobutyryl-CoA dehydrogenase deficiency +14.1216351,MONDO:0012957,http://purl.obolibrary.org/obo/MONDO_0012957,"multiple sclerosis, susceptibility to, 3" +14.1216351,MONDO:0013567,http://purl.obolibrary.org/obo/MONDO_0013567,atrial septal defect 3 +14.1216351,MONDO:0013681,http://purl.obolibrary.org/obo/MONDO_0013681,alpha-methylacyl-CoA racemase deficiency +14.1216351,MONDO:0013824,http://purl.obolibrary.org/obo/MONDO_0013824,Joubert syndrome 17 +14.1216351,MONDO:0014935,http://purl.obolibrary.org/obo/MONDO_0014935,frontometaphyseal dysplasia 2 +14.1216351,MONDO:0015631,http://purl.obolibrary.org/obo/MONDO_0015631,von Willebrand disease type 2N +14.1216351,MONDO:0015737,http://purl.obolibrary.org/obo/MONDO_0015737,typical nemaline myopathy +14.1216351,MONDO:0015863,http://purl.obolibrary.org/obo/MONDO_0015863,polyembryoma +14.1216351,MONDO:0016282,http://purl.obolibrary.org/obo/MONDO_0016282,rhabdomyosarcoma of the cervix uteri +14.1216351,MONDO:0016499,http://purl.obolibrary.org/obo/MONDO_0016499,acute pandysautonomia +14.1216351,MONDO:0016527,http://purl.obolibrary.org/obo/MONDO_0016527,glycogen storage disease due to lactate dehydrogenase deficiency +14.1216351,MONDO:0017346,http://purl.obolibrary.org/obo/MONDO_0017346,Epstein-Barr virus-positive diffuse large B-cell lymphoma of the elderly +14.1216351,MONDO:0017450,http://purl.obolibrary.org/obo/MONDO_0017450,split foot +14.1216351,MONDO:0019194,http://purl.obolibrary.org/obo/MONDO_0019194,localized lipodystrophy +14.1216351,MONDO:0019505,http://purl.obolibrary.org/obo/MONDO_0019505,hypomyelination-hypogonadotropic hypogonadism-hypodontia syndrome +14.1216351,MONDO:0019534,http://purl.obolibrary.org/obo/MONDO_0019534,mixed-type autoimmune hemolytic anemia +14.1216351,MONDO:0019733,http://purl.obolibrary.org/obo/MONDO_0019733,AFib amyloidosis +14.1216351,MONDO:0019957,http://purl.obolibrary.org/obo/MONDO_0019957,PPoma +14.1216351,MONDO:0020387,http://purl.obolibrary.org/obo/MONDO_0020387,double outlet right ventricle with subpulmonary ventricular septal defect +14.1216351,MONDO:0020661,http://purl.obolibrary.org/obo/MONDO_0020661,undifferentiated round cell sarcoma +14.1216351,MONDO:0020979,http://purl.obolibrary.org/obo/MONDO_0020979,pilosebaceous hamartoma +14.1216351,MONDO:0021078,http://purl.obolibrary.org/obo/MONDO_0021078,glandular papilloma +14.1216351,MONDO:0024348,http://purl.obolibrary.org/obo/MONDO_0024348,pityriasis capitis +14.1216351,MONDO:0024659,http://purl.obolibrary.org/obo/MONDO_0024659,colorectal Kaposi sarcoma +14.1216351,MONDO:0024662,http://purl.obolibrary.org/obo/MONDO_0024662,colorectal tubulovillous adenoma +14.1216351,MONDO:0024873,http://purl.obolibrary.org/obo/MONDO_0024873,clitoral carcinoma +14.1216351,MONDO:0024886,http://purl.obolibrary.org/obo/MONDO_0024886,serous adenofibroma +14.1216351,MONDO:0027407,http://purl.obolibrary.org/obo/MONDO_0027407,Kleefstra syndrome 1 +14.1216351,MONDO:0044646,http://purl.obolibrary.org/obo/MONDO_0044646,early-onset progressive diffuse brain atrophy-microcephaly-muscle weakness-optic atrophy syndrome +14.1216351,MONDO:0044749,http://purl.obolibrary.org/obo/MONDO_0044749,X-linked congenital stationary night blindness +14.1216351,MONDO:0044792,http://purl.obolibrary.org/obo/MONDO_0044792,large congenital melanocytic nevus +14.1216351,MONDO:0100001,http://purl.obolibrary.org/obo/MONDO_0100001,alpha-gal syndrome +14.1216351,MONDO:0100082,http://purl.obolibrary.org/obo/MONDO_0100082,LEOPARD syndrome 1 +14.1216351,MOP:0002093,http://purl.obolibrary.org/obo/MOP_0002093,none +14.1216351,NCBITaxon:10046,http://purl.obolibrary.org/obo/NCBITaxon_10046,none +14.1216351,NCBITaxon:10047,http://purl.obolibrary.org/obo/NCBITaxon_10047,Meriones unguiculatus +14.1216351,NCBITaxon:10096,http://purl.obolibrary.org/obo/NCBITaxon_10096,none +14.1216351,NCBITaxon:10103,http://purl.obolibrary.org/obo/NCBITaxon_10103,none +14.1216351,NCBITaxon:10256,http://purl.obolibrary.org/obo/NCBITaxon_10256,none +14.1216351,NCBITaxon:10271,http://purl.obolibrary.org/obo/NCBITaxon_10271,none +14.1216351,NCBITaxon:1046251,http://purl.obolibrary.org/obo/NCBITaxon_1046251,none +14.1216351,NCBITaxon:105387,http://purl.obolibrary.org/obo/NCBITaxon_105387,none +14.1216351,NCBITaxon:1055535,http://purl.obolibrary.org/obo/NCBITaxon_1055535,none +14.1216351,NCBITaxon:10653,http://purl.obolibrary.org/obo/NCBITaxon_10653,none +14.1216351,NCBITaxon:107269,http://purl.obolibrary.org/obo/NCBITaxon_107269,none +14.1216351,NCBITaxon:107270,http://purl.obolibrary.org/obo/NCBITaxon_107270,none +14.1216351,NCBITaxon:11212,http://purl.obolibrary.org/obo/NCBITaxon_11212,none +14.1216351,NCBITaxon:11274,http://purl.obolibrary.org/obo/NCBITaxon_11274,none +14.1216351,NCBITaxon:1141645,http://purl.obolibrary.org/obo/NCBITaxon_1141645,none +14.1216351,NCBITaxon:11958,http://purl.obolibrary.org/obo/NCBITaxon_11958,none +14.1216351,NCBITaxon:11961,http://purl.obolibrary.org/obo/NCBITaxon_11961,none +14.1216351,NCBITaxon:12165,http://purl.obolibrary.org/obo/NCBITaxon_12165,none +14.1216351,NCBITaxon:12435,http://purl.obolibrary.org/obo/NCBITaxon_12435,none +14.1216351,NCBITaxon:1297,http://purl.obolibrary.org/obo/NCBITaxon_1297,none +14.1216351,NCBITaxon:1476554,http://purl.obolibrary.org/obo/NCBITaxon_1476554,none +14.1216351,NCBITaxon:1505891,http://purl.obolibrary.org/obo/NCBITaxon_1505891,none +14.1216351,NCBITaxon:1643685,http://purl.obolibrary.org/obo/NCBITaxon_1643685,Borreliaceae +14.1216351,NCBITaxon:1699524,http://purl.obolibrary.org/obo/NCBITaxon_1699524,none +14.1216351,NCBITaxon:171638,http://purl.obolibrary.org/obo/NCBITaxon_171638,none +14.1216351,NCBITaxon:183924,http://purl.obolibrary.org/obo/NCBITaxon_183924,none +14.1216351,NCBITaxon:188787,http://purl.obolibrary.org/obo/NCBITaxon_188787,none +14.1216351,NCBITaxon:192196,http://purl.obolibrary.org/obo/NCBITaxon_192196,none +14.1216351,NCBITaxon:194965,http://purl.obolibrary.org/obo/NCBITaxon_194965,none +14.1216351,NCBITaxon:1972574,http://purl.obolibrary.org/obo/NCBITaxon_1972574,none +14.1216351,NCBITaxon:1972575,http://purl.obolibrary.org/obo/NCBITaxon_1972575,none +14.1216351,NCBITaxon:200255,http://purl.obolibrary.org/obo/NCBITaxon_200255,none +14.1216351,NCBITaxon:2170048,http://purl.obolibrary.org/obo/NCBITaxon_2170048,none +14.1216351,NCBITaxon:219120,http://purl.obolibrary.org/obo/NCBITaxon_219120,none +14.1216351,NCBITaxon:223262,http://purl.obolibrary.org/obo/NCBITaxon_223262,none +14.1216351,NCBITaxon:226859,http://purl.obolibrary.org/obo/NCBITaxon_226859,none +14.1216351,NCBITaxon:228579,http://purl.obolibrary.org/obo/NCBITaxon_228579,none +14.1216351,NCBITaxon:239728,http://purl.obolibrary.org/obo/NCBITaxon_239728,none +14.1216351,NCBITaxon:2636950,http://purl.obolibrary.org/obo/NCBITaxon_2636950,none +14.1216351,NCBITaxon:2696291,http://purl.obolibrary.org/obo/NCBITaxon_2696291,none +14.1216351,NCBITaxon:2732407,http://purl.obolibrary.org/obo/NCBITaxon_2732407,none +14.1216351,NCBITaxon:273357,http://purl.obolibrary.org/obo/NCBITaxon_273357,none +14.1216351,NCBITaxon:274692,http://purl.obolibrary.org/obo/NCBITaxon_274692,none +14.1216351,NCBITaxon:274705,http://purl.obolibrary.org/obo/NCBITaxon_274705,none +14.1216351,NCBITaxon:274794,http://purl.obolibrary.org/obo/NCBITaxon_274794,none +14.1216351,NCBITaxon:28300,http://purl.obolibrary.org/obo/NCBITaxon_28300,none +14.1216351,NCBITaxon:28890,http://purl.obolibrary.org/obo/NCBITaxon_28890,none +14.1216351,NCBITaxon:30955,http://purl.obolibrary.org/obo/NCBITaxon_30955,none +14.1216351,NCBITaxon:319076,http://purl.obolibrary.org/obo/NCBITaxon_319076,none +14.1216351,NCBITaxon:32311,http://purl.obolibrary.org/obo/NCBITaxon_32311,none +14.1216351,NCBITaxon:32366,http://purl.obolibrary.org/obo/NCBITaxon_32366,none +14.1216351,NCBITaxon:337050,http://purl.obolibrary.org/obo/NCBITaxon_337050,none +14.1216351,NCBITaxon:337729,http://purl.obolibrary.org/obo/NCBITaxon_337729,none +14.1216351,NCBITaxon:34820,http://purl.obolibrary.org/obo/NCBITaxon_34820,none +14.1216351,NCBITaxon:349171,http://purl.obolibrary.org/obo/NCBITaxon_349171,none +14.1216351,NCBITaxon:35341,http://purl.obolibrary.org/obo/NCBITaxon_35341,none +14.1216351,NCBITaxon:35581,http://purl.obolibrary.org/obo/NCBITaxon_35581,none +14.1216351,NCBITaxon:36772,http://purl.obolibrary.org/obo/NCBITaxon_36772,none +14.1216351,NCBITaxon:37844,http://purl.obolibrary.org/obo/NCBITaxon_37844,none +14.1216351,NCBITaxon:3932,http://purl.obolibrary.org/obo/NCBITaxon_3932,none +14.1216351,NCBITaxon:40371,http://purl.obolibrary.org/obo/NCBITaxon_40371,none +14.1216351,NCBITaxon:4118,http://purl.obolibrary.org/obo/NCBITaxon_4118,none +14.1216351,NCBITaxon:424565,http://purl.obolibrary.org/obo/NCBITaxon_424565,none +14.1216351,NCBITaxon:44024,http://purl.obolibrary.org/obo/NCBITaxon_44024,none +14.1216351,NCBITaxon:4762,http://purl.obolibrary.org/obo/NCBITaxon_4762,none +14.1216351,NCBITaxon:504568,http://purl.obolibrary.org/obo/NCBITaxon_504568,Salmoninae +14.1216351,NCBITaxon:50797,http://purl.obolibrary.org/obo/NCBITaxon_50797,none +14.1216351,NCBITaxon:649188,http://purl.obolibrary.org/obo/NCBITaxon_649188,Lujo mammarenavirus +14.1216351,NCBITaxon:655314,http://purl.obolibrary.org/obo/NCBITaxon_655314,none +14.1216351,NCBITaxon:68740,http://purl.obolibrary.org/obo/NCBITaxon_68740,none +14.1216351,NCBITaxon:68741,http://purl.obolibrary.org/obo/NCBITaxon_68741,none +14.1216351,NCBITaxon:6905,http://purl.obolibrary.org/obo/NCBITaxon_6905,none +14.1216351,NCBITaxon:69078,http://purl.obolibrary.org/obo/NCBITaxon_69078,none +14.1216351,NCBITaxon:73335,http://purl.obolibrary.org/obo/NCBITaxon_73335,none +14.1216351,NCBITaxon:74971,http://purl.obolibrary.org/obo/NCBITaxon_74971,none +14.1216351,NCBITaxon:761068,http://purl.obolibrary.org/obo/NCBITaxon_761068,none +14.1216351,NCBITaxon:762061,http://purl.obolibrary.org/obo/NCBITaxon_762061,none +14.1216351,NCBITaxon:7872,http://purl.obolibrary.org/obo/NCBITaxon_7872,none +14.1216351,NCBITaxon:83560,http://purl.obolibrary.org/obo/NCBITaxon_83560,Chlamydia muridarum +14.1216351,NCBITaxon:85454,http://purl.obolibrary.org/obo/NCBITaxon_85454,none +14.1216351,NCBITaxon:8602,http://purl.obolibrary.org/obo/NCBITaxon_8602,none +14.1216351,NCBITaxon:8677,http://purl.obolibrary.org/obo/NCBITaxon_8677,none +14.1216351,NCBITaxon:8678,http://purl.obolibrary.org/obo/NCBITaxon_8678,none +14.1216351,NCBITaxon:9223,http://purl.obolibrary.org/obo/NCBITaxon_9223,none +14.1216351,NCBITaxon:9224,http://purl.obolibrary.org/obo/NCBITaxon_9224,Psittacidae +14.1216351,PR:000001527,http://purl.obolibrary.org/obo/PR_000001527,"12-(S)-hydroxy-5,8,10,14-eicosatetraenoic acid receptor" +14.1216351,PR:000003547,http://purl.obolibrary.org/obo/PR_000003547,ATP-binding cassette sub-family A member 9 +14.1216351,PR:000003796,http://purl.obolibrary.org/obo/PR_000003796,adenylosuccinate synthetase isozyme 1 +14.1216351,PR:000003996,http://purl.obolibrary.org/obo/PR_000003996,protein amnionless +14.1216351,PR:000004043,http://purl.obolibrary.org/obo/PR_000004043,ankyrin repeat domain-containing protein 17 +14.1216351,PR:000004159,http://purl.obolibrary.org/obo/PR_000004159,apolipoprotein L2 +14.1216351,PR:000004194,http://purl.obolibrary.org/obo/PR_000004194,"Arf-GAP with Rho-GAP domain, ANK repeat and PH domain-containing protein 2" +14.1216351,PR:000004231,http://purl.obolibrary.org/obo/PR_000004231,Rho GTPase-activating protein 25 +14.1216351,PR:000004395,http://purl.obolibrary.org/obo/PR_000004395,caytaxin +14.1216351,PR:000004457,http://purl.obolibrary.org/obo/PR_000004457,"ATP synthase subunit epsilon, mitochondrial" +14.1216351,PR:000004468,http://purl.obolibrary.org/obo/PR_000004468,V-type proton ATPase subunit S1 +14.1216351,PR:000004496,http://purl.obolibrary.org/obo/PR_000004496,ATP synthase mitochondrial F1 complex assembly factor 2 +14.1216351,PR:000004567,http://purl.obolibrary.org/obo/PR_000004567,none +14.1216351,PR:000004658,http://purl.obolibrary.org/obo/PR_000004658,bromodomain adjacent to zinc finger domain protein 1B +14.1216351,PR:000004693,http://purl.obolibrary.org/obo/PR_000004693,Bcl-2-like protein 10 +14.1216351,PR:000004793,http://purl.obolibrary.org/obo/PR_000004793,valacyclovir hydrolase +14.1216351,PR:000004814,http://purl.obolibrary.org/obo/PR_000004814,brain protein I3 +14.1216351,PR:000004943,http://purl.obolibrary.org/obo/PR_000004943,voltage-dependent calcium channel subunit alpha-2/delta-2 +14.1216351,PR:000005220,http://purl.obolibrary.org/obo/PR_000005220,cell division cycle-associated protein 2 +14.1216351,PR:000005222,http://purl.obolibrary.org/obo/PR_000005222,cell division cycle-associated protein 4 +14.1216351,PR:000005294,http://purl.obolibrary.org/obo/PR_000005294,protein CDV3 +14.1216351,PR:000005579,http://purl.obolibrary.org/obo/PR_000005579,chloride intracellular channel protein 6 +14.1216351,PR:000005724,http://purl.obolibrary.org/obo/PR_000005724,collagen alpha-3(IX) chain +14.1216351,PR:000005789,http://purl.obolibrary.org/obo/PR_000005789,"cytochrome c oxidase subunit 7B, mitochondrial" +14.1216351,PR:000005945,http://purl.obolibrary.org/obo/PR_000005945,casein kinase I isoform delta +14.1216351,PR:000006042,http://purl.obolibrary.org/obo/PR_000006042,cortexin-3 +14.1216351,PR:000006079,http://purl.obolibrary.org/obo/PR_000006079,cytochrome b5 type B +14.1216351,PR:000006095,http://purl.obolibrary.org/obo/PR_000006095,cylicin-2 +14.1216351,PR:000006177,http://purl.obolibrary.org/obo/PR_000006177,none +14.1216351,PR:000006270,http://purl.obolibrary.org/obo/PR_000006270,triokinase/FMN cyclase +14.1216351,PR:000006549,http://purl.obolibrary.org/obo/PR_000006549,doublesex- and mab-3-related transcription factor C2 +14.1216351,PR:000006617,http://purl.obolibrary.org/obo/PR_000006617,dedicator of cytokinesis protein 10 +14.1216351,PR:000006655,http://purl.obolibrary.org/obo/PR_000006655,diphthine methyl ester synthase +14.1216351,PR:000006672,http://purl.obolibrary.org/obo/PR_000006672,protein dpy-19 2 +14.1216351,PR:000006722,http://purl.obolibrary.org/obo/PR_000006722,protein deltex-3 +14.1216351,PR:000006778,http://purl.obolibrary.org/obo/PR_000006778,dynein light chain roadblock-type 2 +14.1216351,PR:000006880,http://purl.obolibrary.org/obo/PR_000006880,extracellular matrix protein 2 +14.1216351,PR:000006932,http://purl.obolibrary.org/obo/PR_000006932,pikachurin +14.1216351,PR:000006985,http://purl.obolibrary.org/obo/PR_000006985,eukaryotic translation initiation factor 3 subunit M +14.1216351,PR:000007014,http://purl.obolibrary.org/obo/PR_000007014,zinc phosphodiesterase ELAC protein 1 +14.1216351,PR:000007111,http://purl.obolibrary.org/obo/PR_000007111,band 4.1-like protein 4A +14.1216351,PR:000007217,http://purl.obolibrary.org/obo/PR_000007217,"electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial" +14.1216351,PR:000007270,http://purl.obolibrary.org/obo/PR_000007270,exostosin-like 1 +14.1216351,PR:000007395,http://purl.obolibrary.org/obo/PR_000007395,F-box only protein 22 +14.1216351,PR:000007683,http://purl.obolibrary.org/obo/PR_000007683,fibrous sheath-interacting protein 1 +14.1216351,PR:000007821,http://purl.obolibrary.org/obo/PR_000007821,polypeptide N-acetylgalactosaminyltransferase 12 +14.1216351,PR:000007862,http://purl.obolibrary.org/obo/PR_000007862,transcriptional repressor p66-alpha +14.1216351,PR:000008114,http://purl.obolibrary.org/obo/PR_000008114,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-T2 +14.1216351,PR:000008197,http://purl.obolibrary.org/obo/PR_000008197,G-protein coupled receptor family C group 5 member D +14.1216351,PR:000008256,http://purl.obolibrary.org/obo/PR_000008256,GRIP1-associated protein 1 +14.1216351,PR:000008334,http://purl.obolibrary.org/obo/PR_000008334,GTP-binding protein 2 +14.1216351,PR:000008442,http://purl.obolibrary.org/obo/PR_000008442,hydroxyacid oxidase 2 +14.1216351,PR:000008446,http://purl.obolibrary.org/obo/PR_000008446,hyaluronan and proteoglycan link protein 3 +14.1216351,PR:000008676,http://purl.obolibrary.org/obo/PR_000008676,heterogeneous nuclear ribonucleoprotein D-like +14.1216351,PR:000008729,http://purl.obolibrary.org/obo/PR_000008729,hippocalcin-like protein 4 +14.1216351,PR:000008956,http://purl.obolibrary.org/obo/PR_000008956,immunoglobulin heavy constant alpha 2 +14.1216351,PR:000008995,http://purl.obolibrary.org/obo/PR_000008995,interleukin-1 receptor-like 2 +14.1216351,PR:000009024,http://purl.obolibrary.org/obo/PR_000009024,interphotoreceptor matrix proteoglycan 2 +14.1216351,PR:000009170,http://purl.obolibrary.org/obo/PR_000009170,iodotyrosine deiodinase 1 +14.1216351,PR:000009183,http://purl.obolibrary.org/obo/PR_000009183,none +14.1216351,PR:000009348,http://purl.obolibrary.org/obo/PR_000009348,beta-klotho +14.1216351,PR:000009501,http://purl.obolibrary.org/obo/PR_000009501,"keratin, type II cuticular Hb5" +14.1216351,PR:000009590,http://purl.obolibrary.org/obo/PR_000009590,keratinocyte differentiation-associated protein +14.1216351,PR:000009844,http://purl.obolibrary.org/obo/PR_000009844,protein limb expression 1 +14.1216351,PR:000009866,http://purl.obolibrary.org/obo/PR_000009866,leiomodin-2 +14.1216351,PR:000009932,http://purl.obolibrary.org/obo/PR_000009932,F-actin-uncapping protein LRRC16A +14.1216351,PR:000009966,http://purl.obolibrary.org/obo/PR_000009966,U6 snRNA-associated Sm-like protein LSm8 +14.1216351,PR:000010004,http://purl.obolibrary.org/obo/PR_000010004,Ly6/PLAUR domain-containing protein 3 +14.1216351,PR:000010035,http://purl.obolibrary.org/obo/PR_000010035,protein mab-21-like 2 +14.1216351,PR:000010146,http://purl.obolibrary.org/obo/PR_000010146,mitogen-activated protein kinase kinase kinase kinase 5 +14.1216351,PR:000010224,http://purl.obolibrary.org/obo/PR_000010224,lysophospholipid acyltransferase 1 +14.1216351,PR:000010525,http://purl.obolibrary.org/obo/PR_000010525,mitogen-activated protein kinase organizer 1 +14.1216351,PR:000010649,http://purl.obolibrary.org/obo/PR_000010649,mRNA turnover protein 4 +14.1216351,PR:000010814,http://purl.obolibrary.org/obo/PR_000010814,Myc target protein 1 +14.1216351,PR:000010912,http://purl.obolibrary.org/obo/PR_000010912,"methylmalonic aciduria type A, mitochondrial" +14.1216351,PR:000010935,http://purl.obolibrary.org/obo/PR_000010935,none +14.1216351,PR:000010973,http://purl.obolibrary.org/obo/PR_000010973,N-acylneuraminate-9-phosphatase +14.1216351,PR:000011025,http://purl.obolibrary.org/obo/PR_000011025,condensin-2 complex subunit H2 +14.1216351,PR:000011076,http://purl.obolibrary.org/obo/PR_000011076,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 5 +14.1216351,PR:000011101,http://purl.obolibrary.org/obo/PR_000011101,"NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial" +14.1216351,PR:000011219,http://purl.obolibrary.org/obo/PR_000011219,nipped-B-like protein +14.1216351,PR:000011227,http://purl.obolibrary.org/obo/PR_000011227,sodium/potassium-transporting ATPase subunit beta-1-interacting protein 2 +14.1216351,PR:000011301,http://purl.obolibrary.org/obo/PR_000011301,homeobox protein NOBOX +14.1216351,PR:000011330,http://purl.obolibrary.org/obo/PR_000011330,nostrin +14.1216351,PR:000011495,http://purl.obolibrary.org/obo/PR_000011495,diphosphoinositol polyphosphate phosphohydrolase 2 +14.1216351,PR:000011620,http://purl.obolibrary.org/obo/PR_000011620,oncoprotein-induced transcript 3 protein +14.1216351,PR:000011653,http://purl.obolibrary.org/obo/PR_000011653,olfactory receptor 10A2 +14.1216351,PR:000012084,http://purl.obolibrary.org/obo/PR_000012084,OTU domain-containing protein 7B +14.1216351,PR:000012101,http://purl.obolibrary.org/obo/PR_000012101,none +14.1216351,PR:000012196,http://purl.obolibrary.org/obo/PR_000012196,prolyl 4-hydroxylase subunit alpha-1 +14.1216351,PR:000012266,http://purl.obolibrary.org/obo/PR_000012266,papilin +14.1216351,PR:000012294,http://purl.obolibrary.org/obo/PR_000012294,protein mono-ADP-ribosyltransferase PARP15 +14.1216351,PR:000012406,http://purl.obolibrary.org/obo/PR_000012406,protocadherin gamma-C3 +14.1216351,PR:000012652,http://purl.obolibrary.org/obo/PR_000012652,PHD finger-like domain-containing protein 5A +14.1216351,PR:000012866,http://purl.obolibrary.org/obo/PR_000012866,placenta-expressed transcript 1 protein +14.1216351,PR:000012966,http://purl.obolibrary.org/obo/PR_000012966,DNA polymerase delta subunit 4 +14.1216351,PR:000013105,http://purl.obolibrary.org/obo/PR_000013105,serine/threonine-protein phosphatase 1 regulatory subunit 10 +14.1216351,PR:000013144,http://purl.obolibrary.org/obo/PR_000013144,serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit beta isoform +14.1216351,PR:000013174,http://purl.obolibrary.org/obo/PR_000013174,basic salivary proline-rich protein 3 +14.1216351,PR:000013311,http://purl.obolibrary.org/obo/PR_000013311,protein PPRC1 +14.1216351,PR:000013334,http://purl.obolibrary.org/obo/PR_000013334,exopolyphosphatase PRUNE1 +14.1216351,PR:000013349,http://purl.obolibrary.org/obo/PR_000013349,pregnancy-specific beta-1-glycoprotein 11 +14.1216351,PR:000013372,http://purl.obolibrary.org/obo/PR_000013372,proteasome subunit beta type-3 +14.1216351,PR:000013542,http://purl.obolibrary.org/obo/PR_000013542,none +14.1216351,PR:000013840,http://purl.obolibrary.org/obo/PR_000013840,reticulocalbin-3 +14.1216351,PR:000013842,http://purl.obolibrary.org/obo/PR_000013842,REST corepressor 2 +14.1216351,PR:000014164,http://purl.obolibrary.org/obo/PR_000014164,nuclear receptor ROR-beta +14.1216351,PR:000014214,http://purl.obolibrary.org/obo/PR_000014214,60S ribosomal protein L31 +14.1216351,PR:000014343,http://purl.obolibrary.org/obo/PR_000014343,rhotekin-2 +14.1216351,PR:000014358,http://purl.obolibrary.org/obo/PR_000014358,RUN and FYVE domain-containing protein 1 +14.1216351,PR:000014408,http://purl.obolibrary.org/obo/PR_000014408,protein S100-A16 +14.1216351,PR:000014451,http://purl.obolibrary.org/obo/PR_000014451,serine/threonine-protein phosphatase 6 regulatory subunit 1 +14.1216351,PR:000014507,http://purl.obolibrary.org/obo/PR_000014507,secretoglobin family 1D member 2 +14.1216351,PR:000014623,http://purl.obolibrary.org/obo/PR_000014623,semaphorin-4B +14.1216351,PR:000014839,http://purl.obolibrary.org/obo/PR_000014839,SH2 domain-containing adapter protein F +14.1216351,PR:000015012,http://purl.obolibrary.org/obo/PR_000015012,peroxisomal membrane protein PMP34 +14.1216351,PR:000015231,http://purl.obolibrary.org/obo/PR_000015231,Schlafen family member 5 +14.1216351,PR:000015259,http://purl.obolibrary.org/obo/PR_000015259,stromal membrane-associated protein 2 +14.1216351,PR:000015318,http://purl.obolibrary.org/obo/PR_000015318,snRNA-activating protein complex subunit 3 +14.1216351,PR:000015363,http://purl.obolibrary.org/obo/PR_000015363,sorting nexin-14 +14.1216351,PR:000015367,http://purl.obolibrary.org/obo/PR_000015367,sorting nexin-18 +14.1216351,PR:000015689,http://purl.obolibrary.org/obo/PR_000015689,"alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3" +14.1216351,PR:000015805,http://purl.obolibrary.org/obo/PR_000015805,syntaxin-binding protein 5-like +14.1216351,PR:000015841,http://purl.obolibrary.org/obo/PR_000015841,surfeit locus protein 2 +14.1216351,PR:000016131,http://purl.obolibrary.org/obo/PR_000016131,TANK-binding kinase 1-binding protein 1 +14.1216351,PR:000016190,http://purl.obolibrary.org/obo/PR_000016190,trichohyalin-like protein 1 +14.1216351,PR:000016418,http://purl.obolibrary.org/obo/PR_000016418,transmembrane protein 176B +14.1216351,PR:000016520,http://purl.obolibrary.org/obo/PR_000016520,trinucleotide repeat-containing gene 6C protein +14.1216351,PR:000016530,http://purl.obolibrary.org/obo/PR_000016530,TOM1-like protein 1 +14.1216351,PR:000016601,http://purl.obolibrary.org/obo/PR_000016601,TRAF3-interacting protein 1 +14.1216351,PR:000016683,http://purl.obolibrary.org/obo/PR_000016683,tRNA (adenine-N(1)-)-methyltransferase non-catalytic subunit TRM6 +14.1216351,PR:000016755,http://purl.obolibrary.org/obo/PR_000016755,tetraspanin-9 +14.1216351,PR:000016860,http://purl.obolibrary.org/obo/PR_000016860,thioredoxin domain-containing protein 2 +14.1216351,PR:000016882,http://purl.obolibrary.org/obo/PR_000016882,S-adenosyl-L-methionine-dependent tRNA 4-demethylwyosine synthase TYW1 +14.1216351,PR:000017084,http://purl.obolibrary.org/obo/PR_000017084,protein unc-119 homolog A +14.1216351,PR:000017140,http://purl.obolibrary.org/obo/PR_000017140,Usher syndrome type-1G protein +14.1216351,PR:000017186,http://purl.obolibrary.org/obo/PR_000017186,ubiquitin carboxyl-terminal hydrolase 47 +14.1216351,PR:000017288,http://purl.obolibrary.org/obo/PR_000017288,vezatin +14.1216351,PR:000017328,http://purl.obolibrary.org/obo/PR_000017328,vacuolar protein sorting-associated protein 26B +14.1216351,PR:000017554,http://purl.obolibrary.org/obo/PR_000017554,YY1-associated protein 1 +14.1216351,PR:000017615,http://purl.obolibrary.org/obo/PR_000017615,palmitoyltransferase ZDHHC7 +14.1216351,PR:000018100,http://purl.obolibrary.org/obo/PR_000018100,zinc finger protein 703 +14.1216351,PR:000022103,http://purl.obolibrary.org/obo/PR_000022103,none +14.1216351,PR:000022193,http://purl.obolibrary.org/obo/PR_000022193,none +14.1216351,PR:000022226,http://purl.obolibrary.org/obo/PR_000022226,none +14.1216351,PR:000022293,http://purl.obolibrary.org/obo/PR_000022293,none +14.1216351,PR:000022318,http://purl.obolibrary.org/obo/PR_000022318,none +14.1216351,PR:000022344,http://purl.obolibrary.org/obo/PR_000022344,none +14.1216351,PR:000022386,http://purl.obolibrary.org/obo/PR_000022386,none +14.1216351,PR:000022534,http://purl.obolibrary.org/obo/PR_000022534,none +14.1216351,PR:000022709,http://purl.obolibrary.org/obo/PR_000022709,none +14.1216351,PR:000022745,http://purl.obolibrary.org/obo/PR_000022745,none +14.1216351,PR:000022805,http://purl.obolibrary.org/obo/PR_000022805,none +14.1216351,PR:000022813,http://purl.obolibrary.org/obo/PR_000022813,none +14.1216351,PR:000022869,http://purl.obolibrary.org/obo/PR_000022869,protein hdeB +14.1216351,PR:000022898,http://purl.obolibrary.org/obo/PR_000022898,none +14.1216351,PR:000023121,http://purl.obolibrary.org/obo/PR_000023121,none +14.1216351,PR:000023202,http://purl.obolibrary.org/obo/PR_000023202,none +14.1216351,PR:000023272,http://purl.obolibrary.org/obo/PR_000023272,none +14.1216351,PR:000023616,http://purl.obolibrary.org/obo/PR_000023616,none +14.1216351,PR:000023731,http://purl.obolibrary.org/obo/PR_000023731,none +14.1216351,PR:000023876,http://purl.obolibrary.org/obo/PR_000023876,none +14.1216351,PR:000023881,http://purl.obolibrary.org/obo/PR_000023881,none +14.1216351,PR:000023887,http://purl.obolibrary.org/obo/PR_000023887,none +14.1216351,PR:000023983,http://purl.obolibrary.org/obo/PR_000023983,none +14.1216351,PR:000024082,http://purl.obolibrary.org/obo/PR_000024082,none +14.1216351,PR:000024086,http://purl.obolibrary.org/obo/PR_000024086,none +14.1216351,PR:000024223,http://purl.obolibrary.org/obo/PR_000024223,tyrosine-protein kinase wzc +14.1216351,PR:000025013,http://purl.obolibrary.org/obo/PR_000025013,none +14.1216351,PR:000028070,http://purl.obolibrary.org/obo/PR_000028070,none +14.1216351,PR:000028284,http://purl.obolibrary.org/obo/PR_000028284,none +14.1216351,PR:000029106,http://purl.obolibrary.org/obo/PR_000029106,"FAST kinase domain-containing protein 2, mitochondrial" +14.1216351,PR:000029201,http://purl.obolibrary.org/obo/PR_000029201,none +14.1216351,PR:000029274,http://purl.obolibrary.org/obo/PR_000029274,protein arginine N-methyltransferase 9 +14.1216351,PR:000029358,http://purl.obolibrary.org/obo/PR_000029358,CKLF-like MARVEL transmembrane domain-containing protein 1 +14.1216351,PR:000029464,http://purl.obolibrary.org/obo/PR_000029464,BRCA1-A complex subunit Abraxas 1 +14.1216351,PR:000029574,http://purl.obolibrary.org/obo/PR_000029574,BTB/POZ domain-containing protein KCTD5 +14.1216351,PR:000029594,http://purl.obolibrary.org/obo/PR_000029594,protein lifeguard 3 +14.1216351,PR:000029702,http://purl.obolibrary.org/obo/PR_000029702,tRNA pseudouridine synthase Pus10 +14.1216351,PR:000029742,http://purl.obolibrary.org/obo/PR_000029742,S-adenosylhomocysteine hydrolase-like protein 1 +14.1216351,PR:000029808,http://purl.obolibrary.org/obo/PR_000029808,transmembrane protein 45A +14.1216351,PR:000029841,http://purl.obolibrary.org/obo/PR_000029841,ubiquitin-associated domain-containing protein 2 +14.1216351,PR:000029902,http://purl.obolibrary.org/obo/PR_000029902,none +14.1216351,PR:000030226,http://purl.obolibrary.org/obo/PR_000030226,arrestin domain-containing protein 4 +14.1216351,PR:000030363,http://purl.obolibrary.org/obo/PR_000030363,poly(U)-specific endoribonuclease +14.1216351,PR:000030558,http://purl.obolibrary.org/obo/PR_000030558,outer dynein arm-docking complex subunit 2 +14.1216351,PR:000030604,http://purl.obolibrary.org/obo/PR_000030604,E3 ubiquitin-protein ligase TRIM17 +14.1216351,PR:000030640,http://purl.obolibrary.org/obo/PR_000030640,armadillo repeat-containing protein 8 +14.1216351,PR:000030659,http://purl.obolibrary.org/obo/PR_000030659,tubulin polymerization-promoting protein family member 3 +14.1216351,PR:000030806,http://purl.obolibrary.org/obo/PR_000030806,"succinate dehydrogenase assembly factor 1, mitochondrial" +14.1216351,PR:000030818,http://purl.obolibrary.org/obo/PR_000030818,RCC1 and BTB domain-containing protein 2 +14.1216351,PR:000030877,http://purl.obolibrary.org/obo/PR_000030877,thrombospondin type-1 domain-containing protein 1 +14.1216351,PR:000030926,http://purl.obolibrary.org/obo/PR_000030926,sterile alpha motif domain-containing protein 5 +14.1216351,PR:000031123,http://purl.obolibrary.org/obo/PR_000031123,adhesion G protein-coupled receptor G3 +14.1216351,PR:000031292,http://purl.obolibrary.org/obo/PR_000031292,ER membrane protein complex subunit 10 +14.1216351,PR:000031440,http://purl.obolibrary.org/obo/PR_000031440,urocanate hydratase +14.1216351,PR:000031606,http://purl.obolibrary.org/obo/PR_000031606,anaphase-promoting complex subunit 15 +14.1216351,PR:000031811,http://purl.obolibrary.org/obo/PR_000031811,CREB3 regulatory factor +14.1216351,PR:000031913,http://purl.obolibrary.org/obo/PR_000031913,otolin-1 +14.1216351,PR:000031952,http://purl.obolibrary.org/obo/PR_000031952,Rab-like protein 6 +14.1216351,PR:000032033,http://purl.obolibrary.org/obo/PR_000032033,cytochrome c oxidase assembly protein COX14 +14.1216351,PR:000032088,http://purl.obolibrary.org/obo/PR_000032088,armadillo repeat-containing X-linked protein 1 +14.1216351,PR:000032091,http://purl.obolibrary.org/obo/PR_000032091,Schlafen family member 12-like +14.1216351,PR:000032259,http://purl.obolibrary.org/obo/PR_000032259,kelch-like protein 40 +14.1216351,PR:000032262,http://purl.obolibrary.org/obo/PR_000032262,"coiled-coil domain-containing protein 90A, mitochondrial" +14.1216351,PR:000032392,http://purl.obolibrary.org/obo/PR_000032392,E3 ubiquitin-protein ligase TRIM38 +14.1216351,PR:000032663,http://purl.obolibrary.org/obo/PR_000032663,protein SOGA1 +14.1216351,PR:000032810,http://purl.obolibrary.org/obo/PR_000032810,leucine-rich repeat LGI family member 2 +14.1216351,PR:000032838,http://purl.obolibrary.org/obo/PR_000032838,none +14.1216351,PR:000033609,http://purl.obolibrary.org/obo/PR_000033609,none +14.1216351,PR:000033818,http://purl.obolibrary.org/obo/PR_000033818,none +14.1216351,PR:000034248,http://purl.obolibrary.org/obo/PR_000034248,none +14.1216351,PR:000034387,http://purl.obolibrary.org/obo/PR_000034387,none +14.1216351,PR:000034595,http://purl.obolibrary.org/obo/PR_000034595,none +14.1216351,PR:000035790,http://purl.obolibrary.org/obo/PR_000035790,none +14.1216351,PR:000035855,http://purl.obolibrary.org/obo/PR_000035855,none +14.1216351,PR:000035972,http://purl.obolibrary.org/obo/PR_000035972,none +14.1216351,PR:000037378,http://purl.obolibrary.org/obo/PR_000037378,none +14.1216351,PR:B6VQA5,http://purl.obolibrary.org/obo/PR_B6VQA5,none +14.1216351,PR:E9QAF0,http://purl.obolibrary.org/obo/PR_E9QAF0,none +14.1216351,PR:O42846,http://purl.obolibrary.org/obo/PR_O42846,none +14.1216351,PR:O82390,http://purl.obolibrary.org/obo/PR_O82390,none +14.1216351,PR:P01899-1,http://purl.obolibrary.org/obo/PR_P01899-1,none +14.1216351,PR:P05755,http://purl.obolibrary.org/obo/PR_P05755,none +14.1216351,PR:P0C0S6,http://purl.obolibrary.org/obo/PR_P0C0S6,none +14.1216351,PR:P0C0S7,http://purl.obolibrary.org/obo/PR_P0C0S7,none +14.1216351,PR:P0C2H8,http://purl.obolibrary.org/obo/PR_P0C2H8,none +14.1216351,PR:P16620,http://purl.obolibrary.org/obo/PR_P16620,none +14.1216351,PR:P17926,http://purl.obolibrary.org/obo/PR_P17926,none +14.1216351,PR:P18298,http://purl.obolibrary.org/obo/PR_P18298,none +14.1216351,PR:P21672,http://purl.obolibrary.org/obo/PR_P21672,none +14.1216351,PR:P24814,http://purl.obolibrary.org/obo/PR_P24814,none +14.1216351,PR:P27471,http://purl.obolibrary.org/obo/PR_P27471,none +14.1216351,PR:P37370,http://purl.obolibrary.org/obo/PR_P37370,none +14.1216351,PR:P38633,http://purl.obolibrary.org/obo/PR_P38633,none +14.1216351,PR:P38692,http://purl.obolibrary.org/obo/PR_P38692,none +14.1216351,PR:P48810,http://purl.obolibrary.org/obo/PR_P48810,none +14.1216351,PR:P49334,http://purl.obolibrary.org/obo/PR_P49334,none +14.1216351,PR:P54640,http://purl.obolibrary.org/obo/PR_P54640,none +14.1216351,PR:P54862,http://purl.obolibrary.org/obo/PR_P54862,none +14.1216351,PR:P61959,http://purl.obolibrary.org/obo/PR_P61959,none +14.1216351,PR:P66244,http://purl.obolibrary.org/obo/PR_P66244,none +14.1216351,PR:P79009,http://purl.obolibrary.org/obo/PR_P79009,none +14.1216351,PR:Q03042,http://purl.obolibrary.org/obo/PR_Q03042,none +14.1216351,PR:Q03101,http://purl.obolibrary.org/obo/PR_Q03101,none +14.1216351,PR:Q07350,http://purl.obolibrary.org/obo/PR_Q07350,none +14.1216351,PR:Q07657,http://purl.obolibrary.org/obo/PR_Q07657,none +14.1216351,PR:Q07951,http://purl.obolibrary.org/obo/PR_Q07951,none +14.1216351,PR:Q09811,http://purl.obolibrary.org/obo/PR_Q09811,none +14.1216351,PR:Q10156,http://purl.obolibrary.org/obo/PR_Q10156,none +14.1216351,PR:Q12285,http://purl.obolibrary.org/obo/PR_Q12285,none +14.1216351,PR:Q12320,http://purl.obolibrary.org/obo/PR_Q12320,none +14.1216351,PR:Q1H537,http://purl.obolibrary.org/obo/PR_Q1H537,none +14.1216351,PR:Q24JV9,http://purl.obolibrary.org/obo/PR_Q24JV9,none +14.1216351,PR:Q2PS26,http://purl.obolibrary.org/obo/PR_Q2PS26,none +14.1216351,PR:Q2V3I3,http://purl.obolibrary.org/obo/PR_Q2V3I3,none +14.1216351,PR:Q39191,http://purl.obolibrary.org/obo/PR_Q39191,none +14.1216351,PR:Q4VBH4,http://purl.obolibrary.org/obo/PR_Q4VBH4,none +14.1216351,PR:Q502L1,http://purl.obolibrary.org/obo/PR_Q502L1,none +14.1216351,PR:Q570R7,http://purl.obolibrary.org/obo/PR_Q570R7,none +14.1216351,PR:Q59P87,http://purl.obolibrary.org/obo/PR_Q59P87,none +14.1216351,PR:Q700D2,http://purl.obolibrary.org/obo/PR_Q700D2,none +14.1216351,PR:Q80VJ2,http://purl.obolibrary.org/obo/PR_Q80VJ2,none +14.1216351,PR:Q84J37,http://purl.obolibrary.org/obo/PR_Q84J37,none +14.1216351,PR:Q84JF5,http://purl.obolibrary.org/obo/PR_Q84JF5,none +14.1216351,PR:Q8L540,http://purl.obolibrary.org/obo/PR_Q8L540,none +14.1216351,PR:Q8R0E5,http://purl.obolibrary.org/obo/PR_Q8R0E5,none +14.1216351,PR:Q93YV0,http://purl.obolibrary.org/obo/PR_Q93YV0,none +14.1216351,PR:Q93ZN9,http://purl.obolibrary.org/obo/PR_Q93ZN9,none +14.1216351,PR:Q93ZX7,http://purl.obolibrary.org/obo/PR_Q93ZX7,none +14.1216351,PR:Q949X0,http://purl.obolibrary.org/obo/PR_Q949X0,none +14.1216351,PR:Q9C8Y3,http://purl.obolibrary.org/obo/PR_Q9C8Y3,none +14.1216351,PR:Q9FJ17,http://purl.obolibrary.org/obo/PR_Q9FJ17,none +14.1216351,PR:Q9FLI0,http://purl.obolibrary.org/obo/PR_Q9FLI0,none +14.1216351,PR:Q9FLN9,http://purl.obolibrary.org/obo/PR_Q9FLN9,none +14.1216351,PR:Q9LS09,http://purl.obolibrary.org/obo/PR_Q9LS09,none +14.1216351,PR:Q9LV04,http://purl.obolibrary.org/obo/PR_Q9LV04,none +14.1216351,PR:Q9S7B5,http://purl.obolibrary.org/obo/PR_Q9S7B5,none +14.1216351,PR:Q9SE43,http://purl.obolibrary.org/obo/PR_Q9SE43,none +14.1216351,PR:Q9SRY5,http://purl.obolibrary.org/obo/PR_Q9SRY5,none +14.1216351,PR:Q9V877,http://purl.obolibrary.org/obo/PR_Q9V877,none +14.1216351,PR:Q9Z172,http://purl.obolibrary.org/obo/PR_Q9Z172,none +14.1216351,SO:0000037,http://purl.obolibrary.org/obo/SO_0000037,locus_control_region +14.1216351,SO:0000161,http://purl.obolibrary.org/obo/SO_0000161,methylated_adenine +14.1216351,SO:0000209,http://purl.obolibrary.org/obo/SO_0000209,rRNA_primary_transcript +14.1216351,SO:0000365,http://purl.obolibrary.org/obo/SO_0000365,integron +14.1216351,SO:0000501,http://purl.obolibrary.org/obo/SO_0000501,reverse_Hoogsteen_base_pair +14.1216351,SO:0000943,http://purl.obolibrary.org/obo/SO_0000943,attB_site +14.1216351,SO:0000961,http://purl.obolibrary.org/obo/SO_0000961,RNA_chromosome +14.1216351,SO:0001206,http://purl.obolibrary.org/obo/SO_0001206,T3_RNA_Polymerase_Promoter +14.1216351,SO:0001952,http://purl.obolibrary.org/obo/SO_0001952,promoter_flanking_region +14.1216351,SO:0001979,http://purl.obolibrary.org/obo/SO_0001979,RNA_stability_element +14.1216351,UBERON:0000199,http://purl.obolibrary.org/obo/UBERON_0000199,neck of radius +14.1216351,UBERON:0001164,http://purl.obolibrary.org/obo/UBERON_0001164,greater curvature of stomach +14.1216351,UBERON:0001357,http://purl.obolibrary.org/obo/UBERON_0001357,inferior rectal artery +14.1216351,UBERON:0002269,http://purl.obolibrary.org/obo/UBERON_0002269,pupillary membrane +14.1216351,UBERON:0003449,http://purl.obolibrary.org/obo/UBERON_0003449,tail intervertebral disc +14.1216351,UBERON:0003842,http://purl.obolibrary.org/obo/UBERON_0003842,neural tube lumen +14.1216351,UBERON:0004242,http://purl.obolibrary.org/obo/UBERON_0004242,bronchus smooth muscle +14.1216351,UBERON:0004390,http://purl.obolibrary.org/obo/UBERON_0004390,epiphysis of metacarpal bone +14.1216351,UBERON:0005206,http://purl.obolibrary.org/obo/UBERON_0005206,choroid plexus stroma +14.1216351,UBERON:0005275,http://purl.obolibrary.org/obo/UBERON_0005275,dorsal skin of digit +14.1216351,UBERON:0005323,http://purl.obolibrary.org/obo/UBERON_0005323,mesonephric mesenchyme +14.1216351,UBERON:0005476,http://purl.obolibrary.org/obo/UBERON_0005476,spinal nerve trunk +14.1216351,UBERON:0005808,http://purl.obolibrary.org/obo/UBERON_0005808,bone tissue of long bone +14.1216351,UBERON:0005819,http://purl.obolibrary.org/obo/UBERON_0005819,cervical flexure +14.1216351,UBERON:0005968,http://purl.obolibrary.org/obo/UBERON_0005968,infundibulum of hair follicle +14.1216351,UBERON:0006450,http://purl.obolibrary.org/obo/UBERON_0006450,second lumbar spinal cord segment +14.1216351,UBERON:0007163,http://purl.obolibrary.org/obo/UBERON_0007163,superior nasal meatus +14.1216351,UBERON:0008425,http://purl.obolibrary.org/obo/UBERON_0008425,mammary ridge +14.1216351,UBERON:0008828,http://purl.obolibrary.org/obo/UBERON_0008828,presphenoid bone +14.1216351,UBERON:0008831,http://purl.obolibrary.org/obo/UBERON_0008831,inner spiral sulcus +14.1216351,UBERON:0009061,http://purl.obolibrary.org/obo/UBERON_0009061,anterior air sac +14.1216351,UBERON:0009664,http://purl.obolibrary.org/obo/UBERON_0009664,gut mesentery +14.1216351,UBERON:0009680,http://purl.obolibrary.org/obo/UBERON_0009680,set of upper jaw teeth +14.1216351,UBERON:0009771,http://purl.obolibrary.org/obo/UBERON_0009771,left anterior cardinal vein +14.1216351,UBERON:0010202,http://purl.obolibrary.org/obo/UBERON_0010202,lateral line +14.1216351,UBERON:0010389,http://purl.obolibrary.org/obo/UBERON_0010389,pterygoid bone +14.1216351,UBERON:0010425,http://purl.obolibrary.org/obo/UBERON_0010425,internal naris +14.1216351,UBERON:0011124,http://purl.obolibrary.org/obo/UBERON_0011124,xiphisternal joint +14.1216351,UBERON:0011619,http://purl.obolibrary.org/obo/UBERON_0011619,stylohyoid bone +14.1216351,UBERON:0011864,http://purl.obolibrary.org/obo/UBERON_0011864,tendon collagen fibril +14.1216351,UBERON:0011866,http://purl.obolibrary.org/obo/UBERON_0011866,condylar joint +14.1216351,UBERON:0012456,http://purl.obolibrary.org/obo/UBERON_0012456,Merkel nerve ending +14.1216351,UBERON:0012925,http://purl.obolibrary.org/obo/UBERON_0012925,bronchial bud +14.1216351,UBERON:0013150,http://purl.obolibrary.org/obo/UBERON_0013150,future brain vesicle +14.1216351,UBERON:0013528,http://purl.obolibrary.org/obo/UBERON_0013528,Brodmann (1909) area 11 +14.1216351,UBERON:0014532,http://purl.obolibrary.org/obo/UBERON_0014532,white matter lamina of cerebral hemisphere +14.1216351,UBERON:0014703,http://purl.obolibrary.org/obo/UBERON_0014703,anal membrane ectodermal component +14.1216351,UBERON:0015716,http://purl.obolibrary.org/obo/UBERON_0015716,anal canal epithelium +14.1216351,UBERON:0019201,http://purl.obolibrary.org/obo/UBERON_0019201,gemellus muscle +14.1216351,UBERON:0019310,http://purl.obolibrary.org/obo/UBERON_0019310,glossopharyngeal nerve root +14.1216351,UBERON:0034903,http://purl.obolibrary.org/obo/UBERON_0034903,left atrium endocardium +14.1216351,UBERON:3010496,http://purl.obolibrary.org/obo/UBERON_3010496,mandibular artery +14.1822597,CHEBI:132950,http://purl.obolibrary.org/obo/CHEBI_132950,tartrate +14.1822597,CHEBI:140310,http://purl.obolibrary.org/obo/CHEBI_140310,phenyl acetates +14.1822597,CHEBI:15193,http://purl.obolibrary.org/obo/CHEBI_15193,tartrate(2-) +14.1822597,CHEBI:16337,http://purl.obolibrary.org/obo/CHEBI_16337,phosphatidic acid +14.1822597,CHEBI:22289,http://purl.obolibrary.org/obo/CHEBI_22289,aldaric acid anion +14.1822597,CHEBI:22580,http://purl.obolibrary.org/obo/CHEBI_22580,anthraquinone +14.1822597,CHEBI:23690,http://purl.obolibrary.org/obo/CHEBI_23690,dicarboxylic acid amide +14.1822597,CHEBI:23697,http://purl.obolibrary.org/obo/CHEBI_23697,dichlorobenzene +14.1822597,CHEBI:24337,http://purl.obolibrary.org/obo/CHEBI_24337,glutathione derivative +14.1822597,CHEBI:24734,http://purl.obolibrary.org/obo/CHEBI_24734,hydroxyphenylalanine +14.1822597,CHEBI:25272,http://purl.obolibrary.org/obo/CHEBI_25272,methyladenine +14.1822597,CHEBI:26596,http://purl.obolibrary.org/obo/CHEBI_26596,salicylates +14.1822597,CHEBI:26707,http://purl.obolibrary.org/obo/CHEBI_26707,glycerol phosphate +14.1822597,CHEBI:27306,http://purl.obolibrary.org/obo/CHEBI_27306,vitamin B6 +14.1822597,CHEBI:29198,http://purl.obolibrary.org/obo/CHEBI_29198,phosphinate +14.1822597,CHEBI:29785,http://purl.obolibrary.org/obo/CHEBI_29785,nitro group +14.1822597,CHEBI:30929,http://purl.obolibrary.org/obo/CHEBI_30929,"2,3-dihydroxybutanedioate" +14.1822597,CHEBI:31355,http://purl.obolibrary.org/obo/CHEBI_31355,carboplatin +14.1822597,CHEBI:32146,http://purl.obolibrary.org/obo/CHEBI_32146,sodium hypochlorite +14.1822597,CHEBI:33798,http://purl.obolibrary.org/obo/CHEBI_33798,tetraric acid anion +14.1822597,CHEBI:33886,http://purl.obolibrary.org/obo/CHEBI_33886,glucuronic acids +14.1822597,CHEBI:35359,http://purl.obolibrary.org/obo/CHEBI_35359,carboxamidine +14.1822597,CHEBI:35396,http://purl.obolibrary.org/obo/CHEBI_35396,none +14.1822597,CHEBI:35397,http://purl.obolibrary.org/obo/CHEBI_35397,tartrate(1-) +14.1822597,CHEBI:35411,http://purl.obolibrary.org/obo/CHEBI_35411,"alkane-alpha,omega-diamine" +14.1822597,CHEBI:36939,http://purl.obolibrary.org/obo/CHEBI_36939,fluorine-18 atom +14.1822597,CHEBI:37142,http://purl.obolibrary.org/obo/CHEBI_37142,organoiodine compound +14.1822597,CHEBI:39027,http://purl.obolibrary.org/obo/CHEBI_39027,very-low-density lipoprotein +14.1822597,CHEBI:46687,http://purl.obolibrary.org/obo/CHEBI_46687,diazaalkane +14.1822597,CHEBI:48132,http://purl.obolibrary.org/obo/CHEBI_48132,tetracenomycin +14.1822597,CHEBI:48929,http://purl.obolibrary.org/obo/CHEBI_48929,"3-carboxy-2,3-dihydroxypropanoate" +14.1822597,CHEBI:49168,http://purl.obolibrary.org/obo/CHEBI_49168,dopa +14.1822597,CHEBI:50694,http://purl.obolibrary.org/obo/CHEBI_50694,minocycline +14.1822597,CHEBI:5137,http://purl.obolibrary.org/obo/CHEBI_5137,fluvastatin sodium +14.1822597,CHEBI:52267,http://purl.obolibrary.org/obo/CHEBI_52267,7-hydroxyflavonol +14.1822597,CHEBI:5417,http://purl.obolibrary.org/obo/CHEBI_5417,glucosamine +14.1822597,CHEBI:55417,http://purl.obolibrary.org/obo/CHEBI_55417,maleimides +14.1822597,CHEBI:60582,http://purl.obolibrary.org/obo/CHEBI_60582,polyfluorene polymer +14.1822597,CHEBI:75436,http://purl.obolibrary.org/obo/CHEBI_75436,gastrin +14.1822597,CHEBI:76619,http://purl.obolibrary.org/obo/CHEBI_76619,omega-methyl fatty acid anion +14.1822597,CHEBI:77307,http://purl.obolibrary.org/obo/CHEBI_77307,cardioprotective agent +14.1822597,CHEBI:78123,http://purl.obolibrary.org/obo/CHEBI_78123,fatty acid anion 16:0 +14.1822597,CHEBI:78361,http://purl.obolibrary.org/obo/CHEBI_78361,lichen metabolite +14.1822597,CHEBI:7896,http://purl.obolibrary.org/obo/CHEBI_7896,hexadecanoate +14.1822597,CHEBI:82843,http://purl.obolibrary.org/obo/CHEBI_82843,guazatine +14.1822597,CHEBI:83799,http://purl.obolibrary.org/obo/CHEBI_83799,nonstructural protein 5A inhibitor +14.1822597,CHEBI:83955,http://purl.obolibrary.org/obo/CHEBI_83955,2-saturated fatty acid anion +14.1822597,CHEBI:8673,http://purl.obolibrary.org/obo/CHEBI_8673,pyrimethamine +14.1822597,CHEBI:9194,http://purl.obolibrary.org/obo/CHEBI_9194,Solutol HS 15 +14.1822597,CL:0000008,http://purl.obolibrary.org/obo/CL_0000008,migratory cranial neural crest cell +14.1822597,CL:0002497,http://purl.obolibrary.org/obo/CL_0002497,primary trophoblast giant cell +14.1822597,CL:0002677,http://purl.obolibrary.org/obo/CL_0002677,naive regulatory T cell +14.1822597,CL:0007003,http://purl.obolibrary.org/obo/CL_0007003,preodontoblast +14.1822597,DRUGBANK:DB01237,http://purl.obolibrary.org/obo/DRUGBANK_DB01237,none +14.1822597,DRUGBANK:DB01467,http://purl.obolibrary.org/obo/DRUGBANK_DB01467,none +14.1822597,DRUGBANK:DB01487,http://purl.obolibrary.org/obo/DRUGBANK_DB01487,none +14.1822597,DRUGBANK:DB02081,http://purl.obolibrary.org/obo/DRUGBANK_DB02081,none +14.1822597,DRUGBANK:DB02942,http://purl.obolibrary.org/obo/DRUGBANK_DB02942,none +14.1822597,DRUGBANK:DB03058,http://purl.obolibrary.org/obo/DRUGBANK_DB03058,none +14.1822597,DRUGBANK:DB03369,http://purl.obolibrary.org/obo/DRUGBANK_DB03369,none +14.1822597,DRUGBANK:DB03725,http://purl.obolibrary.org/obo/DRUGBANK_DB03725,none +14.1822597,DRUGBANK:DB03999,http://purl.obolibrary.org/obo/DRUGBANK_DB03999,none +14.1822597,DRUGBANK:DB04046,http://purl.obolibrary.org/obo/DRUGBANK_DB04046,none +14.1822597,DRUGBANK:DB04526,http://purl.obolibrary.org/obo/DRUGBANK_DB04526,none +14.1822597,DRUGBANK:DB04631,http://purl.obolibrary.org/obo/DRUGBANK_DB04631,none +14.1822597,DRUGBANK:DB04676,http://purl.obolibrary.org/obo/DRUGBANK_DB04676,none +14.1822597,DRUGBANK:DB04814,http://purl.obolibrary.org/obo/DRUGBANK_DB04814,none +14.1822597,DRUGBANK:DB04851,http://purl.obolibrary.org/obo/DRUGBANK_DB04851,none +14.1822597,DRUGBANK:DB04882,http://purl.obolibrary.org/obo/DRUGBANK_DB04882,none +14.1822597,DRUGBANK:DB04983,http://purl.obolibrary.org/obo/DRUGBANK_DB04983,none +14.1822597,DRUGBANK:DB05123,http://purl.obolibrary.org/obo/DRUGBANK_DB05123,none +14.1822597,DRUGBANK:DB05321,http://purl.obolibrary.org/obo/DRUGBANK_DB05321,none +14.1822597,DRUGBANK:DB05625,http://purl.obolibrary.org/obo/DRUGBANK_DB05625,none +14.1822597,DRUGBANK:DB05864,http://purl.obolibrary.org/obo/DRUGBANK_DB05864,none +14.1822597,DRUGBANK:DB05906,http://purl.obolibrary.org/obo/DRUGBANK_DB05906,none +14.1822597,DRUGBANK:DB05964,http://purl.obolibrary.org/obo/DRUGBANK_DB05964,none +14.1822597,DRUGBANK:DB06190,http://purl.obolibrary.org/obo/DRUGBANK_DB06190,none +14.1822597,DRUGBANK:DB06293,http://purl.obolibrary.org/obo/DRUGBANK_DB06293,none +14.1822597,DRUGBANK:DB06394,http://purl.obolibrary.org/obo/DRUGBANK_DB06394,none +14.1822597,DRUGBANK:DB06457,http://purl.obolibrary.org/obo/DRUGBANK_DB06457,none +14.1822597,DRUGBANK:DB06580,http://purl.obolibrary.org/obo/DRUGBANK_DB06580,none +14.1822597,DRUGBANK:DB07863,http://purl.obolibrary.org/obo/DRUGBANK_DB07863,none +14.1822597,DRUGBANK:DB08427,http://purl.obolibrary.org/obo/DRUGBANK_DB08427,none +14.1822597,DRUGBANK:DB08619,http://purl.obolibrary.org/obo/DRUGBANK_DB08619,none +14.1822597,DRUGBANK:DB08723,http://purl.obolibrary.org/obo/DRUGBANK_DB08723,none +14.1822597,DRUGBANK:DB08994,http://purl.obolibrary.org/obo/DRUGBANK_DB08994,none +14.1822597,DRUGBANK:DB09192,http://purl.obolibrary.org/obo/DRUGBANK_DB09192,none +14.1822597,DRUGBANK:DB09423,http://purl.obolibrary.org/obo/DRUGBANK_DB09423,none +14.1822597,DRUGBANK:DB10935,http://purl.obolibrary.org/obo/DRUGBANK_DB10935,none +14.1822597,DRUGBANK:DB11206,http://purl.obolibrary.org/obo/DRUGBANK_DB11206,none +14.1822597,DRUGBANK:DB11278,http://purl.obolibrary.org/obo/DRUGBANK_DB11278,none +14.1822597,DRUGBANK:DB11781,http://purl.obolibrary.org/obo/DRUGBANK_DB11781,none +14.1822597,DRUGBANK:DB11809,http://purl.obolibrary.org/obo/DRUGBANK_DB11809,none +14.1822597,DRUGBANK:DB11811,http://purl.obolibrary.org/obo/DRUGBANK_DB11811,none +14.1822597,DRUGBANK:DB11833,http://purl.obolibrary.org/obo/DRUGBANK_DB11833,none +14.1822597,DRUGBANK:DB11852,http://purl.obolibrary.org/obo/DRUGBANK_DB11852,none +14.1822597,DRUGBANK:DB11941,http://purl.obolibrary.org/obo/DRUGBANK_DB11941,none +14.1822597,DRUGBANK:DB11955,http://purl.obolibrary.org/obo/DRUGBANK_DB11955,none +14.1822597,DRUGBANK:DB12102,http://purl.obolibrary.org/obo/DRUGBANK_DB12102,none +14.1822597,DRUGBANK:DB12137,http://purl.obolibrary.org/obo/DRUGBANK_DB12137,none +14.1822597,DRUGBANK:DB12253,http://purl.obolibrary.org/obo/DRUGBANK_DB12253,none +14.1822597,DRUGBANK:DB12287,http://purl.obolibrary.org/obo/DRUGBANK_DB12287,none +14.1822597,DRUGBANK:DB12320,http://purl.obolibrary.org/obo/DRUGBANK_DB12320,none +14.1822597,DRUGBANK:DB12355,http://purl.obolibrary.org/obo/DRUGBANK_DB12355,none +14.1822597,DRUGBANK:DB12366,http://purl.obolibrary.org/obo/DRUGBANK_DB12366,none +14.1822597,DRUGBANK:DB12410,http://purl.obolibrary.org/obo/DRUGBANK_DB12410,none +14.1822597,DRUGBANK:DB12560,http://purl.obolibrary.org/obo/DRUGBANK_DB12560,none +14.1822597,DRUGBANK:DB12848,http://purl.obolibrary.org/obo/DRUGBANK_DB12848,none +14.1822597,DRUGBANK:DB13085,http://purl.obolibrary.org/obo/DRUGBANK_DB13085,none +14.1822597,DRUGBANK:DB13113,http://purl.obolibrary.org/obo/DRUGBANK_DB13113,none +14.1822597,DRUGBANK:DB13626,http://purl.obolibrary.org/obo/DRUGBANK_DB13626,none +14.1822597,DRUGBANK:DB13788,http://purl.obolibrary.org/obo/DRUGBANK_DB13788,none +14.1822597,DRUGBANK:DB13820,http://purl.obolibrary.org/obo/DRUGBANK_DB13820,none +14.1822597,DRUGBANK:DB13848,http://purl.obolibrary.org/obo/DRUGBANK_DB13848,none +14.1822597,DRUGBANK:DB14070,http://purl.obolibrary.org/obo/DRUGBANK_DB14070,none +14.1822597,DRUGBANK:DB14529,http://purl.obolibrary.org/obo/DRUGBANK_DB14529,none +14.1822597,DRUGBANK:DB14655,http://purl.obolibrary.org/obo/DRUGBANK_DB14655,none +14.1822597,DRUGBANK:DB14731,http://purl.obolibrary.org/obo/DRUGBANK_DB14731,none +14.1822597,DRUGBANK:DB14993,http://purl.obolibrary.org/obo/DRUGBANK_DB14993,none +14.1822597,DRUGBANK:DB15034,http://purl.obolibrary.org/obo/DRUGBANK_DB15034,none +14.1822597,DRUGBANK:DB15284,http://purl.obolibrary.org/obo/DRUGBANK_DB15284,none +14.1822597,DRUGBANK:DB15413,http://purl.obolibrary.org/obo/DRUGBANK_DB15413,none +14.1822597,DRUGBANK:DB15826,http://purl.obolibrary.org/obo/DRUGBANK_DB15826,none +14.1822597,DRUGBANK:DB15883,http://purl.obolibrary.org/obo/DRUGBANK_DB15883,none +14.1822597,GO:0000033,http://purl.obolibrary.org/obo/GO_0000033,"alpha-1,3-mannosyltransferase activity" +14.1822597,GO:0001520,http://purl.obolibrary.org/obo/GO_0001520,outer dense fiber +14.1822597,GO:0001561,http://purl.obolibrary.org/obo/GO_0001561,fatty acid alpha-oxidation +14.1822597,GO:0002676,http://purl.obolibrary.org/obo/GO_0002676,regulation of chronic inflammatory response +14.1822597,GO:0002710,http://purl.obolibrary.org/obo/GO_0002710,negative regulation of T cell mediated immunity +14.1822597,GO:0003979,http://purl.obolibrary.org/obo/GO_0003979,UDP-glucose 6-dehydrogenase activity +14.1822597,GO:0004399,http://purl.obolibrary.org/obo/GO_0004399,histidinol dehydrogenase activity +14.1822597,GO:0004411,http://purl.obolibrary.org/obo/GO_0004411,"homogentisate 1,2-dioxygenase activity" +14.1822597,GO:0004474,http://purl.obolibrary.org/obo/GO_0004474,malate synthase activity +14.1822597,GO:0004781,http://purl.obolibrary.org/obo/GO_0004781,sulfate adenylyltransferase (ATP) activity +14.1822597,GO:0004865,http://purl.obolibrary.org/obo/GO_0004865,protein serine/threonine phosphatase inhibitor activity +14.1822597,GO:0005677,http://purl.obolibrary.org/obo/GO_0005677,chromatin silencing complex +14.1822597,GO:0005918,http://purl.obolibrary.org/obo/GO_0005918,septate junction +14.1822597,GO:0006271,http://purl.obolibrary.org/obo/GO_0006271,DNA strand elongation involved in DNA replication +14.1822597,GO:0008300,http://purl.obolibrary.org/obo/GO_0008300,isoprenoid catabolic process +14.1822597,GO:0008460,http://purl.obolibrary.org/obo/GO_0008460,"dTDP-glucose 4,6-dehydratase activity" +14.1822597,GO:0008734,http://purl.obolibrary.org/obo/GO_0008734,L-aspartate oxidase activity +14.1822597,GO:0008791,http://purl.obolibrary.org/obo/GO_0008791,arginine N-succinyltransferase activity +14.1822597,GO:0008796,http://purl.obolibrary.org/obo/GO_0008796,bis(5'-nucleosyl)-tetraphosphatase activity +14.1822597,GO:0009229,http://purl.obolibrary.org/obo/GO_0009229,thiamine diphosphate biosynthetic process +14.1822597,GO:0009333,http://purl.obolibrary.org/obo/GO_0009333,cysteine synthase complex +14.1822597,GO:0010164,http://purl.obolibrary.org/obo/GO_0010164,response to cesium ion +14.1822597,GO:0010347,http://purl.obolibrary.org/obo/GO_0010347,L-galactose-1-phosphate phosphatase activity +14.1822597,GO:0010710,http://purl.obolibrary.org/obo/GO_0010710,regulation of collagen catabolic process +14.1822597,GO:0010762,http://purl.obolibrary.org/obo/GO_0010762,regulation of fibroblast migration +14.1822597,GO:0010803,http://purl.obolibrary.org/obo/GO_0010803,regulation of tumor necrosis factor-mediated signaling pathway +14.1822597,GO:0015224,http://purl.obolibrary.org/obo/GO_0015224,biopterin transmembrane transporter activity +14.1822597,GO:0015762,http://purl.obolibrary.org/obo/GO_0015762,rhamnose transmembrane transport +14.1822597,GO:0015854,http://purl.obolibrary.org/obo/GO_0015854,guanine transport +14.1822597,GO:0015921,http://purl.obolibrary.org/obo/GO_0015921,lipopolysaccharide export +14.1822597,GO:0016508,http://purl.obolibrary.org/obo/GO_0016508,long-chain-enoyl-CoA hydratase activity +14.1822597,GO:0016926,http://purl.obolibrary.org/obo/GO_0016926,protein desumoylation +14.1822597,GO:0018577,http://purl.obolibrary.org/obo/GO_0018577,"catechol 2,3-dioxygenase activity" +14.1822597,GO:0018624,http://purl.obolibrary.org/obo/GO_0018624,toluene dioxygenase activity +14.1822597,GO:0018836,http://purl.obolibrary.org/obo/GO_0018836,alkylmercury lyase activity +14.1822597,GO:0018864,http://purl.obolibrary.org/obo/GO_0018864,acetylene metabolic process +14.1822597,GO:0019139,http://purl.obolibrary.org/obo/GO_0019139,cytokinin dehydrogenase activity +14.1822597,GO:0019875,http://purl.obolibrary.org/obo/GO_0019875,6-aminohexanoate-dimer hydrolase activity +14.1822597,GO:0030123,http://purl.obolibrary.org/obo/GO_0030123,AP-3 adaptor complex +14.1822597,GO:0030127,http://purl.obolibrary.org/obo/GO_0030127,COPII vesicle coat +14.1822597,GO:0030260,http://purl.obolibrary.org/obo/GO_0030260,none +14.1822597,GO:0030893,http://purl.obolibrary.org/obo/GO_0030893,meiotic cohesin complex +14.1822597,GO:0030914,http://purl.obolibrary.org/obo/GO_0030914,none +14.1822597,GO:0031387,http://purl.obolibrary.org/obo/GO_0031387,MPF complex +14.1822597,GO:0032155,http://purl.obolibrary.org/obo/GO_0032155,none +14.1822597,GO:0032370,http://purl.obolibrary.org/obo/GO_0032370,positive regulation of lipid transport +14.1822597,GO:0032423,http://purl.obolibrary.org/obo/GO_0032423,regulation of mismatch repair +14.1822597,GO:0032611,http://purl.obolibrary.org/obo/GO_0032611,interleukin-1 beta production +14.1822597,GO:0032845,http://purl.obolibrary.org/obo/GO_0032845,none +14.1822597,GO:0032922,http://purl.obolibrary.org/obo/GO_0032922,circadian regulation of gene expression +14.1822597,GO:0033024,http://purl.obolibrary.org/obo/GO_0033024,mast cell apoptotic process +14.1822597,GO:0033081,http://purl.obolibrary.org/obo/GO_0033081,regulation of T cell differentiation in thymus +14.1822597,GO:0033186,http://purl.obolibrary.org/obo/GO_0033186,CAF-1 complex +14.1822597,GO:0033231,http://purl.obolibrary.org/obo/GO_0033231,carbohydrate export +14.1822597,GO:0033627,http://purl.obolibrary.org/obo/GO_0033627,cell adhesion mediated by integrin +14.1822597,GO:0033796,http://purl.obolibrary.org/obo/GO_0033796,sulfur reductase activity +14.1822597,GO:0033900,http://purl.obolibrary.org/obo/GO_0033900,ribonuclease F activity +14.1822597,GO:0033959,http://purl.obolibrary.org/obo/GO_0033959,deoxyribodipyrimidine endonucleosidase activity +14.1822597,GO:0033968,http://purl.obolibrary.org/obo/GO_0033968,glutaryl-7-aminocephalosporanic-acid acylase activity +14.1822597,GO:0034707,http://purl.obolibrary.org/obo/GO_0034707,chloride channel complex +14.1822597,GO:0038039,http://purl.obolibrary.org/obo/GO_0038039,G protein-coupled receptor heterodimeric complex +14.1822597,GO:0038148,http://purl.obolibrary.org/obo/GO_0038148,chemokine (C-C motif) ligand 2 signaling pathway +14.1822597,GO:0038195,http://purl.obolibrary.org/obo/GO_0038195,urokinase plasminogen activator signaling pathway +14.1822597,GO:0042372,http://purl.obolibrary.org/obo/GO_0042372,phylloquinone biosynthetic process +14.1822597,GO:0042628,http://purl.obolibrary.org/obo/GO_0042628,mating plug formation +14.1822597,GO:0042919,http://purl.obolibrary.org/obo/GO_0042919,benzoate transport +14.1822597,GO:0043148,http://purl.obolibrary.org/obo/GO_0043148,none +14.1822597,GO:0043190,http://purl.obolibrary.org/obo/GO_0043190,ATP-binding cassette (ABC) transporter complex +14.1822597,GO:0043273,http://purl.obolibrary.org/obo/GO_0043273,CTPase activity +14.1822597,GO:0043464,http://purl.obolibrary.org/obo/GO_0043464,malolactic fermentation +14.1822597,GO:0043643,http://purl.obolibrary.org/obo/GO_0043643,tetracycline metabolic process +14.1822597,GO:0043717,http://purl.obolibrary.org/obo/GO_0043717,2-hydroxyglutaryl-CoA dehydratase activity +14.1822597,GO:0043852,http://purl.obolibrary.org/obo/GO_0043852,monomethylamine methyltransferase activity +14.1822597,GO:0044029,http://purl.obolibrary.org/obo/GO_0044029,hypomethylation of CpG island +14.1822597,GO:0044692,http://purl.obolibrary.org/obo/GO_0044692,exoribonuclease activator activity +14.1822597,GO:0044704,http://purl.obolibrary.org/obo/GO_0044704,none +14.1822597,GO:0045151,http://purl.obolibrary.org/obo/GO_0045151,acetoin biosynthetic process +14.1822597,GO:0045177,http://purl.obolibrary.org/obo/GO_0045177,apical part of cell +14.1822597,GO:0045462,http://purl.obolibrary.org/obo/GO_0045462,trichothecene 3-O-acetyltransferase activity +14.1822597,GO:0045666,http://purl.obolibrary.org/obo/GO_0045666,positive regulation of neuron differentiation +14.1822597,GO:0045920,http://purl.obolibrary.org/obo/GO_0045920,negative regulation of exocytosis +14.1822597,GO:0046051,http://purl.obolibrary.org/obo/GO_0046051,UTP metabolic process +14.1822597,GO:0046110,http://purl.obolibrary.org/obo/GO_0046110,xanthine metabolic process +14.1822597,GO:0046654,http://purl.obolibrary.org/obo/GO_0046654,tetrahydrofolate biosynthetic process +14.1822597,GO:0046874,http://purl.obolibrary.org/obo/GO_0046874,quinolinate metabolic process +14.1822597,GO:0046889,http://purl.obolibrary.org/obo/GO_0046889,positive regulation of lipid biosynthetic process +14.1822597,GO:0047097,http://purl.obolibrary.org/obo/GO_0047097,"phylloquinone monooxygenase (2,3-epoxidizing) activity" +14.1822597,GO:0047293,http://purl.obolibrary.org/obo/GO_0047293,4-hydroxybenzoate nonaprenyltransferase activity +14.1822597,GO:0047619,http://purl.obolibrary.org/obo/GO_0047619,acylcarnitine hydrolase activity +14.1822597,GO:0047735,http://purl.obolibrary.org/obo/GO_0047735,cellobiose dehydrogenase (acceptor) activity +14.1822597,GO:0047925,http://purl.obolibrary.org/obo/GO_0047925,geranoyl-CoA carboxylase activity +14.1822597,GO:0048333,http://purl.obolibrary.org/obo/GO_0048333,mesodermal cell differentiation +14.1822597,GO:0048794,http://purl.obolibrary.org/obo/GO_0048794,swim bladder development +14.1822597,GO:0050162,http://purl.obolibrary.org/obo/GO_0050162,oxalate oxidase activity +14.1822597,GO:0050231,http://purl.obolibrary.org/obo/GO_0050231,putrescine carbamoyltransferase activity +14.1822597,GO:0050371,http://purl.obolibrary.org/obo/GO_0050371,tyrosine phenol-lyase activity +14.1822597,GO:0050666,http://purl.obolibrary.org/obo/GO_0050666,regulation of homocysteine metabolic process +14.1822597,GO:0050732,http://purl.obolibrary.org/obo/GO_0050732,negative regulation of peptidyl-tyrosine phosphorylation +14.1822597,GO:0050902,http://purl.obolibrary.org/obo/GO_0050902,leukocyte adhesive activation +14.1822597,GO:0050907,http://purl.obolibrary.org/obo/GO_0050907,detection of chemical stimulus involved in sensory perception +14.1822597,GO:0050959,http://purl.obolibrary.org/obo/GO_0050959,echolocation +14.1822597,GO:0051031,http://purl.obolibrary.org/obo/GO_0051031,tRNA transport +14.1822597,GO:0051118,http://purl.obolibrary.org/obo/GO_0051118,"glucan endo-1,3-alpha-glucosidase activity" +14.1822597,GO:0051597,http://purl.obolibrary.org/obo/GO_0051597,response to methylmercury +14.1822597,GO:0051743,http://purl.obolibrary.org/obo/GO_0051743,red chlorophyll catabolite reductase activity +14.1822597,GO:0051806,http://purl.obolibrary.org/obo/GO_0051806,none +14.1822597,GO:0052793,http://purl.obolibrary.org/obo/GO_0052793,pectin acetylesterase activity +14.1822597,GO:0052874,http://purl.obolibrary.org/obo/GO_0052874,FMN reductase (NADH) activity +14.1822597,GO:0060171,http://purl.obolibrary.org/obo/GO_0060171,stereocilium membrane +14.1822597,GO:0070409,http://purl.obolibrary.org/obo/GO_0070409,carbamoyl phosphate biosynthetic process +14.1822597,GO:0070724,http://purl.obolibrary.org/obo/GO_0070724,BMP receptor complex +14.1822597,GO:0070747,http://purl.obolibrary.org/obo/GO_0070747,interleukin-35 receptor activity +14.1822597,GO:0071072,http://purl.obolibrary.org/obo/GO_0071072,negative regulation of phospholipid biosynthetic process +14.1822597,GO:0071265,http://purl.obolibrary.org/obo/GO_0071265,L-methionine biosynthetic process +14.1822597,GO:0071276,http://purl.obolibrary.org/obo/GO_0071276,cellular response to cadmium ion +14.1822597,GO:0071670,http://purl.obolibrary.org/obo/GO_0071670,smooth muscle cell chemotaxis +14.1822597,GO:0072197,http://purl.obolibrary.org/obo/GO_0072197,ureter morphogenesis +14.1822597,GO:0072565,http://purl.obolibrary.org/obo/GO_0072565,endothelial microparticle formation +14.1822597,GO:0072605,http://purl.obolibrary.org/obo/GO_0072605,none +14.1822597,GO:0072625,http://purl.obolibrary.org/obo/GO_0072625,none +14.1822597,GO:0080124,http://purl.obolibrary.org/obo/GO_0080124,pheophytinase activity +14.1822597,GO:0090311,http://purl.obolibrary.org/obo/GO_0090311,regulation of protein deacetylation +14.1822597,GO:0090400,http://purl.obolibrary.org/obo/GO_0090400,stress-induced premature senescence +14.1822597,GO:0097125,http://purl.obolibrary.org/obo/GO_0097125,cyclin B1-CDK1 complex +14.1822597,GO:0097387,http://purl.obolibrary.org/obo/GO_0097387,capitate projection +14.1822597,GO:0098533,http://purl.obolibrary.org/obo/GO_0098533,ATPase dependent transmembrane transport complex +14.1822597,GO:0098724,http://purl.obolibrary.org/obo/GO_0098724,symmetric stem cell division +14.1822597,GO:0098780,http://purl.obolibrary.org/obo/GO_0098780,response to mitochondrial depolarisation +14.1822597,GO:0099573,http://purl.obolibrary.org/obo/GO_0099573,glutamatergic postsynaptic density +14.1822597,GO:0120244,http://purl.obolibrary.org/obo/GO_0120244,terminal acetylenic compound metabolic process +14.1822597,GO:0140467,http://purl.obolibrary.org/obo/GO_0140467,integrated stress response signaling +14.1822597,GO:0150178,http://purl.obolibrary.org/obo/GO_0150178,regulation of phosphatidylserine metabolic process +14.1822597,GO:1900121,http://purl.obolibrary.org/obo/GO_1900121,negative regulation of receptor binding +14.1822597,GO:1900397,http://purl.obolibrary.org/obo/GO_1900397,regulation of pyrimidine nucleotide biosynthetic process +14.1822597,GO:1900468,http://purl.obolibrary.org/obo/GO_1900468,regulation of phosphatidylserine biosynthetic process +14.1822597,GO:1901083,http://purl.obolibrary.org/obo/GO_1901083,pyrrolizidine alkaloid metabolic process +14.1822597,GO:1901286,http://purl.obolibrary.org/obo/GO_1901286,iron-sulfur-molybdenum cofactor metabolic process +14.1822597,GO:1901288,http://purl.obolibrary.org/obo/GO_1901288,iron-sulfur-molybdenum cofactor biosynthetic process +14.1822597,GO:1901772,http://purl.obolibrary.org/obo/GO_1901772,lincomycin metabolic process +14.1822597,GO:1901960,http://purl.obolibrary.org/obo/GO_1901960,isobutanol metabolic process +14.1822597,GO:1901961,http://purl.obolibrary.org/obo/GO_1901961,isobutanol biosynthetic process +14.1822597,GO:1902351,http://purl.obolibrary.org/obo/GO_1902351,response to imidacloprid +14.1822597,GO:1902460,http://purl.obolibrary.org/obo/GO_1902460,regulation of mesenchymal stem cell proliferation +14.1822597,GO:1902713,http://purl.obolibrary.org/obo/GO_1902713,none +14.1822597,GO:1903310,http://purl.obolibrary.org/obo/GO_1903310,none +14.1822597,GO:1903492,http://purl.obolibrary.org/obo/GO_1903492,response to acetylsalicylate +14.1822597,GO:1903547,http://purl.obolibrary.org/obo/GO_1903547,regulation of growth hormone activity +14.1822597,GO:1905954,http://purl.obolibrary.org/obo/GO_1905954,positive regulation of lipid localization +14.1822597,GO:2000306,http://purl.obolibrary.org/obo/GO_2000306,positive regulation of photomorphogenesis +14.1822597,GO:2000398,http://purl.obolibrary.org/obo/GO_2000398,regulation of thymocyte aggregation +14.1822597,GO:2000739,http://purl.obolibrary.org/obo/GO_2000739,regulation of mesenchymal stem cell differentiation +14.1822597,GO:2001089,http://purl.obolibrary.org/obo/GO_2001089,maltotriose transport +14.1822597,GO:2001242,http://purl.obolibrary.org/obo/GO_2001242,regulation of intrinsic apoptotic signaling pathway +14.1822597,GO:2001302,http://purl.obolibrary.org/obo/GO_2001302,lipoxin A4 metabolic process +14.1822597,HP:0001702,http://purl.obolibrary.org/obo/HP_0001702,Abnormal tricuspid valve morphology +14.1822597,HP:0002170,http://purl.obolibrary.org/obo/HP_0002170,Intracranial hemorrhage +14.1822597,HP:0002198,http://purl.obolibrary.org/obo/HP_0002198,Dilated fourth ventricle +14.1822597,HP:0002885,http://purl.obolibrary.org/obo/HP_0002885,Medulloblastoma +14.1822597,HP:0003302,http://purl.obolibrary.org/obo/HP_0003302,Spondylolisthesis +14.1822597,HP:0003764,http://purl.obolibrary.org/obo/HP_0003764,Nevus +14.1822597,HP:0005541,http://purl.obolibrary.org/obo/HP_0005541,Congenital agranulocytosis +14.1822597,HP:0006705,http://purl.obolibrary.org/obo/HP_0006705,Abnormal atrioventricular valve morphology +14.1822597,HP:0009726,http://purl.obolibrary.org/obo/HP_0009726,Renal neoplasm +14.1822597,HP:0010950,http://purl.obolibrary.org/obo/HP_0010950,Abnormal fourth ventricle morphology +14.1822597,HP:0012384,http://purl.obolibrary.org/obo/HP_0012384,Rhinitis +14.1822597,HP:0100002,http://purl.obolibrary.org/obo/HP_0100002,Pleural mesothelioma +14.1822597,MONDO:0000458,http://purl.obolibrary.org/obo/MONDO_0000458,proneural glioblastoma +14.1822597,MONDO:0001216,http://purl.obolibrary.org/obo/MONDO_0001216,pulp degeneration +14.1822597,MONDO:0001370,http://purl.obolibrary.org/obo/MONDO_0001370,pericardial effusion +14.1822597,MONDO:0001386,http://purl.obolibrary.org/obo/MONDO_0001386,visual epilepsy +14.1822597,MONDO:0001452,http://purl.obolibrary.org/obo/MONDO_0001452,pseudoretinitis pigmentosa +14.1822597,MONDO:0001638,http://purl.obolibrary.org/obo/MONDO_0001638,protein-deficiency anemia +14.1822597,MONDO:0001739,http://purl.obolibrary.org/obo/MONDO_0001739,purulent labyrinthitis +14.1822597,MONDO:0001883,http://purl.obolibrary.org/obo/MONDO_0001883,blue toe syndrome +14.1822597,MONDO:0002293,http://purl.obolibrary.org/obo/MONDO_0002293,cutaneous ganglioneuroma +14.1822597,MONDO:0002470,http://purl.obolibrary.org/obo/MONDO_0002470,photosensitive trichothiodystrophy +14.1822597,MONDO:0002719,http://purl.obolibrary.org/obo/MONDO_0002719,conus medullaris neoplasm +14.1822597,MONDO:0003029,http://purl.obolibrary.org/obo/MONDO_0003029,skin angiosarcoma +14.1822597,MONDO:0003047,http://purl.obolibrary.org/obo/MONDO_0003047,thymic large cell neuroendocrine carcinoma +14.1822597,MONDO:0003154,http://purl.obolibrary.org/obo/MONDO_0003154,hemangioma of peripheral nerve +14.1822597,MONDO:0003307,http://purl.obolibrary.org/obo/MONDO_0003307,multiple mucosal neuroma +14.1822597,MONDO:0003682,http://purl.obolibrary.org/obo/MONDO_0003682,localized chondrosarcoma +14.1822597,MONDO:0003728,http://purl.obolibrary.org/obo/MONDO_0003728,breast fibrosarcoma +14.1822597,MONDO:0003874,http://purl.obolibrary.org/obo/MONDO_0003874,ovarian serous surface papillary adenocarcinoma +14.1822597,MONDO:0004035,http://purl.obolibrary.org/obo/MONDO_0004035,glomangiomatosis +14.1822597,MONDO:0004429,http://purl.obolibrary.org/obo/MONDO_0004429,skin meningioma +14.1822597,MONDO:0004698,http://purl.obolibrary.org/obo/MONDO_0004698,intestine carcinoma in situ +14.1822597,MONDO:0004910,http://purl.obolibrary.org/obo/MONDO_0004910,mitral valve prolapse +14.1822597,MONDO:0005037,http://purl.obolibrary.org/obo/MONDO_0005037,gastric intestinal type adenocarcinoma +14.1822597,MONDO:0005714,http://purl.obolibrary.org/obo/MONDO_0005714,congenital syphilis +14.1822597,MONDO:0006565,http://purl.obolibrary.org/obo/MONDO_0006565,juvenile dermatitis herpetiformis +14.1822597,MONDO:0006688,http://purl.obolibrary.org/obo/MONDO_0006688,byssinosis +14.1822597,MONDO:0006751,http://purl.obolibrary.org/obo/MONDO_0006751,Erysipelothrix infectious disease +14.1822597,MONDO:0007160,http://purl.obolibrary.org/obo/MONDO_0007160,Stickler syndrome type 1 +14.1822597,MONDO:0007446,http://purl.obolibrary.org/obo/MONDO_0007446,dermatosis papulosa nigra +14.1822597,MONDO:0007787,http://purl.obolibrary.org/obo/MONDO_0007787,Ambras type hypertrichosis universalis congenita +14.1822597,MONDO:0007918,http://purl.obolibrary.org/obo/MONDO_0007918,"microcephaly with or without chorioretinopathy, lymphedema, or intellectual disability" +14.1822597,MONDO:0007977,http://purl.obolibrary.org/obo/MONDO_0007977,"mesomelic dysplasia, Kantaputra type" +14.1822597,MONDO:0008148,http://purl.obolibrary.org/obo/MONDO_0008148,osteogenesis imperfecta type 4 +14.1822597,MONDO:0009166,http://purl.obolibrary.org/obo/MONDO_0009166,pontocerebellar hypoplasia type 4 +14.1822597,MONDO:0009492,http://purl.obolibrary.org/obo/MONDO_0009492,succinyl-CoA:3-ketoacid CoA transferase deficiency +14.1822597,MONDO:0009747,http://purl.obolibrary.org/obo/MONDO_0009747,Navajo neurohepatopathy +14.1822597,MONDO:0009955,http://purl.obolibrary.org/obo/MONDO_0009955,rapadilino syndrome +14.1822597,MONDO:0010008,http://purl.obolibrary.org/obo/MONDO_0010008,sarcosinemia +14.1822597,MONDO:0010041,http://purl.obolibrary.org/obo/MONDO_0010041,Charlevoix-Saguenay spastic ataxia +14.1822597,MONDO:0010192,http://purl.obolibrary.org/obo/MONDO_0010192,Waardenburg syndrome type 4A +14.1822597,MONDO:0010830,http://purl.obolibrary.org/obo/MONDO_0010830,neuronal ceroid lipofuscinosis 8 +14.1822597,MONDO:0011058,http://purl.obolibrary.org/obo/MONDO_0011058,autosomal dominant nonsyndromic deafness 9 +14.1822597,MONDO:0011217,http://purl.obolibrary.org/obo/MONDO_0011217,desmosterolosis +14.1822597,MONDO:0011257,http://purl.obolibrary.org/obo/MONDO_0011257,MPI-CDG +14.1822597,MONDO:0011275,http://purl.obolibrary.org/obo/MONDO_0011275,"acromesomelic dysplasia, Maroteaux type" +14.1822597,MONDO:0011402,http://purl.obolibrary.org/obo/MONDO_0011402,congenital cataracts-facial dysmorphism-neuropathy syndrome +14.1822597,MONDO:0011411,http://purl.obolibrary.org/obo/MONDO_0011411,Chudley-McCullough syndrome +14.1822597,MONDO:0011529,http://purl.obolibrary.org/obo/MONDO_0011529,spinocerebellar ataxia type 13 +14.1822597,MONDO:0012092,http://purl.obolibrary.org/obo/MONDO_0012092,hereditary sensory and autonomic neuropathy type 5 +14.1822597,MONDO:0012591,http://purl.obolibrary.org/obo/MONDO_0012591,osteogenesis imperfecta type 5 +14.1822597,MONDO:0012593,http://purl.obolibrary.org/obo/MONDO_0012593,brain-lung-thyroid syndrome +14.1822597,MONDO:0012789,http://purl.obolibrary.org/obo/MONDO_0012789,dystonia 16 +14.1822597,MONDO:0012985,http://purl.obolibrary.org/obo/MONDO_0012985,hereditary spherocytosis type 5 +14.1822597,MONDO:0013081,http://purl.obolibrary.org/obo/MONDO_0013081,lymphoproliferative syndrome 1 +14.1822597,MONDO:0013515,http://purl.obolibrary.org/obo/MONDO_0013515,osteogenesis imperfecta type 6 +14.1822597,MONDO:0013648,http://purl.obolibrary.org/obo/MONDO_0013648,familial progressive hyperpigmentation +14.1822597,MONDO:0014258,http://purl.obolibrary.org/obo/MONDO_0014258,congenital microcephaly - severe encephalopathy - progressive cerebral atrophy syndrome +14.1822597,MONDO:0015176,http://purl.obolibrary.org/obo/MONDO_0015176,undetermined colitis +14.1822597,MONDO:0015811,http://purl.obolibrary.org/obo/MONDO_0015811,primary cutaneous aggressive epidermotropic CD8+ T-cell lymphoma +14.1822597,MONDO:0015995,http://purl.obolibrary.org/obo/MONDO_0015995,melorheostosis with osteopoikilosis +14.1822597,MONDO:0016206,http://purl.obolibrary.org/obo/MONDO_0016206,idiopathic uveal effusion syndrome +14.1822597,MONDO:0016443,http://purl.obolibrary.org/obo/MONDO_0016443,papular elastorrhexis +14.1822597,MONDO:0016589,http://purl.obolibrary.org/obo/MONDO_0016589,progressive cerebello-cerebral atrophy +14.1822597,MONDO:0016902,http://purl.obolibrary.org/obo/MONDO_0016902,partial deletion of the long arm of chromosome 3 +14.1822597,MONDO:0016924,http://purl.obolibrary.org/obo/MONDO_0016924,partial duplication of chromosome 4 +14.1822597,MONDO:0016934,http://purl.obolibrary.org/obo/MONDO_0016934,partial duplication of chromosome 16 +14.1822597,MONDO:0016949,http://purl.obolibrary.org/obo/MONDO_0016949,partial duplication of the short arm of chromosome 16 +14.1822597,MONDO:0017332,http://purl.obolibrary.org/obo/MONDO_0017332,pyoderma gangrenosum-acne-suppurative hidradenitis syndrome +14.1822597,MONDO:0017353,http://purl.obolibrary.org/obo/MONDO_0017353,neonatal glycine encephalopathy +14.1822597,MONDO:0017390,http://purl.obolibrary.org/obo/MONDO_0017390,methylmalonic acidemia without homocystinuria +14.1822597,MONDO:0018126,http://purl.obolibrary.org/obo/MONDO_0018126,progressive myoclonic epilepsy with dystonia +14.1822597,MONDO:0018225,http://purl.obolibrary.org/obo/MONDO_0018225,ALK-positive large B-cell lymphoma +14.1822597,MONDO:0018266,http://purl.obolibrary.org/obo/MONDO_0018266,ataxia - telangiectasia variant +14.1822597,MONDO:0018318,http://purl.obolibrary.org/obo/MONDO_0018318,disorder of asparagine metabolism +14.1822597,MONDO:0018989,http://purl.obolibrary.org/obo/MONDO_0018989,recurrent acute pancreatitis +14.1822597,MONDO:0019386,http://purl.obolibrary.org/obo/MONDO_0019386,progressive rubella panencephalitis +14.1822597,MONDO:0019388,http://purl.obolibrary.org/obo/MONDO_0019388,pelvis syndrome +14.1822597,MONDO:0019511,http://purl.obolibrary.org/obo/MONDO_0019511,autosomal dominant medullary cystic kidney disease with hyperuricemia +14.1822597,MONDO:0019854,http://purl.obolibrary.org/obo/MONDO_0019854,thyroid ectopia +14.1822597,MONDO:0020218,http://purl.obolibrary.org/obo/MONDO_0020218,goniodysgenesis +14.1822597,MONDO:0020718,http://purl.obolibrary.org/obo/MONDO_0020718,congenital short bowel syndrome 1 +14.1822597,MONDO:0020980,http://purl.obolibrary.org/obo/MONDO_0020980,hair nevus +14.1822597,MONDO:0021491,http://purl.obolibrary.org/obo/MONDO_0021491,benign neoplasm of gum +14.1822597,MONDO:0021508,http://purl.obolibrary.org/obo/MONDO_0021508,benign neoplasm of epicardium +14.1822597,MONDO:0024491,http://purl.obolibrary.org/obo/MONDO_0024491,"tumor grade 1, general grading system" +14.1822597,MONDO:0044753,http://purl.obolibrary.org/obo/MONDO_0044753,lumbar spinal stenosis +14.1822597,MONDO:0100175,http://purl.obolibrary.org/obo/MONDO_0100175,TTN-related myopathy +14.1822597,NCBITaxon:10512,http://purl.obolibrary.org/obo/NCBITaxon_10512,Canine adenovirus 1 +14.1822597,NCBITaxon:105297,http://purl.obolibrary.org/obo/NCBITaxon_105297,none +14.1822597,NCBITaxon:106346,http://purl.obolibrary.org/obo/NCBITaxon_106346,none +14.1822597,NCBITaxon:10895,http://purl.obolibrary.org/obo/NCBITaxon_10895,none +14.1822597,NCBITaxon:116571,http://purl.obolibrary.org/obo/NCBITaxon_116571,none +14.1822597,NCBITaxon:11805,http://purl.obolibrary.org/obo/NCBITaxon_11805,none +14.1822597,NCBITaxon:118883,http://purl.obolibrary.org/obo/NCBITaxon_118883,none +14.1822597,NCBITaxon:12149,http://purl.obolibrary.org/obo/NCBITaxon_12149,none +14.1822597,NCBITaxon:122953,http://purl.obolibrary.org/obo/NCBITaxon_122953,none +14.1822597,NCBITaxon:12939,http://purl.obolibrary.org/obo/NCBITaxon_12939,Anemia +14.1822597,NCBITaxon:1299308,http://purl.obolibrary.org/obo/NCBITaxon_1299308,none +14.1822597,NCBITaxon:132475,http://purl.obolibrary.org/obo/NCBITaxon_132475,none +14.1822597,NCBITaxon:133977,http://purl.obolibrary.org/obo/NCBITaxon_133977,none +14.1822597,NCBITaxon:1511811,http://purl.obolibrary.org/obo/NCBITaxon_1511811,none +14.1822597,NCBITaxon:1511866,http://purl.obolibrary.org/obo/NCBITaxon_1511866,none +14.1822597,NCBITaxon:163742,http://purl.obolibrary.org/obo/NCBITaxon_163742,none +14.1822597,NCBITaxon:1643688,http://purl.obolibrary.org/obo/NCBITaxon_1643688,Leptospirales +14.1822597,NCBITaxon:170,http://purl.obolibrary.org/obo/NCBITaxon_170,Leptospiraceae +14.1822597,NCBITaxon:172278,http://purl.obolibrary.org/obo/NCBITaxon_172278,none +14.1822597,NCBITaxon:186457,http://purl.obolibrary.org/obo/NCBITaxon_186457,none +14.1822597,NCBITaxon:187267,http://purl.obolibrary.org/obo/NCBITaxon_187267,none +14.1822597,NCBITaxon:1955247,http://purl.obolibrary.org/obo/NCBITaxon_1955247,none +14.1822597,NCBITaxon:200400,http://purl.obolibrary.org/obo/NCBITaxon_200400,none +14.1822597,NCBITaxon:2049,http://purl.obolibrary.org/obo/NCBITaxon_2049,Actinomycetaceae +14.1822597,NCBITaxon:214504,http://purl.obolibrary.org/obo/NCBITaxon_214504,none +14.1822597,NCBITaxon:2281,http://purl.obolibrary.org/obo/NCBITaxon_2281,none +14.1822597,NCBITaxon:2284,http://purl.obolibrary.org/obo/NCBITaxon_2284,none +14.1822597,NCBITaxon:235633,http://purl.obolibrary.org/obo/NCBITaxon_235633,none +14.1822597,NCBITaxon:235895,http://purl.obolibrary.org/obo/NCBITaxon_235895,none +14.1822597,NCBITaxon:241778,http://purl.obolibrary.org/obo/NCBITaxon_241778,none +14.1822597,NCBITaxon:262967,http://purl.obolibrary.org/obo/NCBITaxon_262967,none +14.1822597,NCBITaxon:269190,http://purl.obolibrary.org/obo/NCBITaxon_269190,none +14.1822597,NCBITaxon:2763,http://purl.obolibrary.org/obo/NCBITaxon_2763,none +14.1822597,NCBITaxon:303179,http://purl.obolibrary.org/obo/NCBITaxon_303179,none +14.1822597,NCBITaxon:31658,http://purl.obolibrary.org/obo/NCBITaxon_31658,none +14.1822597,NCBITaxon:329639,http://purl.obolibrary.org/obo/NCBITaxon_329639,Canine minute virus +14.1822597,NCBITaxon:33259,http://purl.obolibrary.org/obo/NCBITaxon_33259,Toxocaridae +14.1822597,NCBITaxon:333751,http://purl.obolibrary.org/obo/NCBITaxon_333751,none +14.1822597,NCBITaxon:3401,http://purl.obolibrary.org/obo/NCBITaxon_3401,none +14.1822597,NCBITaxon:35541,http://purl.obolibrary.org/obo/NCBITaxon_35541,none +14.1822597,NCBITaxon:37206,http://purl.obolibrary.org/obo/NCBITaxon_37206,none +14.1822597,NCBITaxon:37437,http://purl.obolibrary.org/obo/NCBITaxon_37437,none +14.1822597,NCBITaxon:37438,http://purl.obolibrary.org/obo/NCBITaxon_37438,none +14.1822597,NCBITaxon:38804,http://purl.obolibrary.org/obo/NCBITaxon_38804,none +14.1822597,NCBITaxon:39752,http://purl.obolibrary.org/obo/NCBITaxon_39752,none +14.1822597,NCBITaxon:3990,http://purl.obolibrary.org/obo/NCBITaxon_3990,none +14.1822597,NCBITaxon:40058,http://purl.obolibrary.org/obo/NCBITaxon_40058,none +14.1822597,NCBITaxon:40143,http://purl.obolibrary.org/obo/NCBITaxon_40143,none +14.1822597,NCBITaxon:4074,http://purl.obolibrary.org/obo/NCBITaxon_4074,none +14.1822597,NCBITaxon:41073,http://purl.obolibrary.org/obo/NCBITaxon_41073,none +14.1822597,NCBITaxon:43707,http://purl.obolibrary.org/obo/NCBITaxon_43707,none +14.1822597,NCBITaxon:44158,http://purl.obolibrary.org/obo/NCBITaxon_44158,none +14.1822597,NCBITaxon:44419,http://purl.obolibrary.org/obo/NCBITaxon_44419,none +14.1822597,NCBITaxon:463360,http://purl.obolibrary.org/obo/NCBITaxon_463360,none +14.1822597,NCBITaxon:47100,http://purl.obolibrary.org/obo/NCBITaxon_47100,none +14.1822597,NCBITaxon:48981,http://purl.obolibrary.org/obo/NCBITaxon_48981,none +14.1822597,NCBITaxon:5268,http://purl.obolibrary.org/obo/NCBITaxon_5268,none +14.1822597,NCBITaxon:5317,http://purl.obolibrary.org/obo/NCBITaxon_5317,none +14.1822597,NCBITaxon:53260,http://purl.obolibrary.org/obo/NCBITaxon_53260,none +14.1822597,NCBITaxon:54970,http://purl.obolibrary.org/obo/NCBITaxon_54970,none +14.1822597,NCBITaxon:565302,http://purl.obolibrary.org/obo/NCBITaxon_565302,none +14.1822597,NCBITaxon:60876,http://purl.obolibrary.org/obo/NCBITaxon_60876,none +14.1822597,NCBITaxon:620894,http://purl.obolibrary.org/obo/NCBITaxon_620894,none +14.1822597,NCBITaxon:6264,http://purl.obolibrary.org/obo/NCBITaxon_6264,Toxocara +14.1822597,NCBITaxon:642478,http://purl.obolibrary.org/obo/NCBITaxon_642478,none +14.1822597,NCBITaxon:656083,http://purl.obolibrary.org/obo/NCBITaxon_656083,none +14.1822597,NCBITaxon:693762,http://purl.obolibrary.org/obo/NCBITaxon_693762,Schizaeales +14.1822597,NCBITaxon:693766,http://purl.obolibrary.org/obo/NCBITaxon_693766,Anemiaceae +14.1822597,NCBITaxon:7150,http://purl.obolibrary.org/obo/NCBITaxon_7150,none +14.1822597,NCBITaxon:72530,http://purl.obolibrary.org/obo/NCBITaxon_72530,none +14.1822597,NCBITaxon:7266,http://purl.obolibrary.org/obo/NCBITaxon_7266,none +14.1822597,NCBITaxon:7271,http://purl.obolibrary.org/obo/NCBITaxon_7271,none +14.1822597,NCBITaxon:78540,http://purl.obolibrary.org/obo/NCBITaxon_78540,none +14.1822597,NCBITaxon:85005,http://purl.obolibrary.org/obo/NCBITaxon_85005,none +14.1822597,NCBITaxon:85006,http://purl.obolibrary.org/obo/NCBITaxon_85006,Micrococcales +14.1822597,NCBITaxon:85752,http://purl.obolibrary.org/obo/NCBITaxon_85752,none +14.1822597,NCBITaxon:89471,http://purl.obolibrary.org/obo/NCBITaxon_89471,none +14.1822597,NCBITaxon:9108,http://purl.obolibrary.org/obo/NCBITaxon_9108,none +14.1822597,NCBITaxon:9119,http://purl.obolibrary.org/obo/NCBITaxon_9119,none +14.1822597,NCBITaxon:94247,http://purl.obolibrary.org/obo/NCBITaxon_94247,none +14.1822597,NCBITaxon:98659,http://purl.obolibrary.org/obo/NCBITaxon_98659,none +14.1822597,PR:000001026,http://purl.obolibrary.org/obo/PR_000001026,lymphocyte antigen 75 +14.1822597,PR:000001520,http://purl.obolibrary.org/obo/PR_000001520,probable G-protein coupled receptor 19 +14.1822597,PR:000003685,http://purl.obolibrary.org/obo/PR_000003685,actin-like protein 7B +14.1822597,PR:000003801,http://purl.obolibrary.org/obo/PR_000003801,equatorin +14.1822597,PR:000003895,http://purl.obolibrary.org/obo/PR_000003895,A-kinase anchor protein 8-like +14.1822597,PR:000003942,http://purl.obolibrary.org/obo/PR_000003942,UDP-N-acetylglucosamine transferase subunit ALG14 +14.1822597,PR:000004166,http://purl.obolibrary.org/obo/PR_000004166,MICOS complex subunit MIC26 +14.1822597,PR:000004252,http://purl.obolibrary.org/obo/PR_000004252,Rho guanine nucleotide exchange factor 17 +14.1822597,PR:000004410,http://purl.obolibrary.org/obo/PR_000004410,protein Atg16l2 +14.1822597,PR:000004471,http://purl.obolibrary.org/obo/PR_000004471,V-type proton ATPase 116 kDa subunit a1 +14.1822597,PR:000004476,http://purl.obolibrary.org/obo/PR_000004476,V-type proton ATPase subunit d 1 +14.1822597,PR:000004554,http://purl.obolibrary.org/obo/PR_000004554,none +14.1822597,PR:000004562,http://purl.obolibrary.org/obo/PR_000004562,none +14.1822597,PR:000004577,http://purl.obolibrary.org/obo/PR_000004577,none +14.1822597,PR:000004917,http://purl.obolibrary.org/obo/PR_000004917,carbonic anhydrase 14 +14.1822597,PR:000005019,http://purl.obolibrary.org/obo/PR_000005019,calpain-7 +14.1822597,PR:000005165,http://purl.obolibrary.org/obo/PR_000005165,CMRF35-like molecule 6 +14.1822597,PR:000005775,http://purl.obolibrary.org/obo/PR_000005775,cytochrome c oxidase assembly protein COX19 +14.1822597,PR:000005818,http://purl.obolibrary.org/obo/PR_000005818,copine-3 +14.1822597,PR:000005825,http://purl.obolibrary.org/obo/PR_000005825,carboxypeptidase O +14.1822597,PR:000005840,http://purl.obolibrary.org/obo/PR_000005840,inactive carboxypeptidase-like protein X2 +14.1822597,PR:000006374,http://purl.obolibrary.org/obo/PR_000006374,"peroxisomal 2,4-dienoyl-CoA reductase [(3E)-enoyl-CoA-producing]" +14.1822597,PR:000006393,http://purl.obolibrary.org/obo/PR_000006393,beta-defensin 114 +14.1822597,PR:000006580,http://purl.obolibrary.org/obo/PR_000006580,DnaJ homolog subfamily C member 10 +14.1822597,PR:000006597,http://purl.obolibrary.org/obo/PR_000006597,deoxyribonuclease-2-beta +14.1822597,PR:000006699,http://purl.obolibrary.org/obo/PR_000006699,vacuolar protein sorting-associated protein 26C +14.1822597,PR:000006723,http://purl.obolibrary.org/obo/PR_000006723,E3 ubiquitin-protein ligase DTX3L +14.1822597,PR:000007077,http://purl.obolibrary.org/obo/PR_000007077,"nuclease EXOG, mitochondrial" +14.1822597,PR:000007090,http://purl.obolibrary.org/obo/PR_000007090,glycerophosphocholine cholinephosphodiesterase ENPP6 +14.1822597,PR:000007220,http://purl.obolibrary.org/obo/PR_000007220,ethanolamine kinase 2 +14.1822597,PR:000007267,http://purl.obolibrary.org/obo/PR_000007267,exophilin-5 +14.1822597,PR:000007288,http://purl.obolibrary.org/obo/PR_000007288,none +14.1822597,PR:000007389,http://purl.obolibrary.org/obo/PR_000007389,F-box only protein 15 +14.1822597,PR:000007397,http://purl.obolibrary.org/obo/PR_000007397,F-box only protein 25 +14.1822597,PR:000007426,http://purl.obolibrary.org/obo/PR_000007426,F-box/WD repeat-containing protein 5 +14.1822597,PR:000007728,http://purl.obolibrary.org/obo/PR_000007728,none +14.1822597,PR:000007819,http://purl.obolibrary.org/obo/PR_000007819,polypeptide N-acetylgalactosaminyltransferase 10 +14.1822597,PR:000007820,http://purl.obolibrary.org/obo/PR_000007820,polypeptide N-acetylgalactosaminyltransferase 11 +14.1822597,PR:000007826,http://purl.obolibrary.org/obo/PR_000007826,polypeptide N-acetylgalactosaminyltransferase 4 +14.1822597,PR:000007837,http://purl.obolibrary.org/obo/PR_000007837,neutral alpha-glucosidase AB +14.1822597,PR:000007843,http://purl.obolibrary.org/obo/PR_000007843,GTPase-activating protein and VPS9 domain-containing protein 1 +14.1822597,PR:000007956,http://purl.obolibrary.org/obo/PR_000007956,vitamin K-dependent gamma-carboxylase +14.1822597,PR:000008118,http://purl.obolibrary.org/obo/PR_000008118,guanine nucleotide-binding protein-like 3-like protein +14.1822597,PR:000008148,http://purl.obolibrary.org/obo/PR_000008148,RAB6-interacting golgin +14.1822597,PR:000008200,http://purl.obolibrary.org/obo/PR_000008200,G protein-regulated inducer of neurite outgrowth 2 +14.1822597,PR:000008283,http://purl.obolibrary.org/obo/PR_000008283,genetic suppressor element 1 +14.1822597,PR:000008335,http://purl.obolibrary.org/obo/PR_000008335,"tRNA modification GTPase GTPBP3, mitochondrial" +14.1822597,PR:000008634,http://purl.obolibrary.org/obo/PR_000008634,high mobility group protein B4 +14.1822597,PR:000008672,http://purl.obolibrary.org/obo/PR_000008672,heterogeneous nuclear ribonucleoprotein R +14.1822597,PR:000008726,http://purl.obolibrary.org/obo/PR_000008726,heterochromatin protein 1-binding protein 3 +14.1822597,PR:000008822,http://purl.obolibrary.org/obo/PR_000008822,HSPB1-associated protein 1 +14.1822597,PR:000009011,http://purl.obolibrary.org/obo/PR_000009011,2-hydroxyacyl-CoA lyase 2 +14.1822597,PR:000009028,http://purl.obolibrary.org/obo/PR_000009028,protein INCA1 +14.1822597,PR:000009172,http://purl.obolibrary.org/obo/PR_000009172,none +14.1822597,PR:000009184,http://purl.obolibrary.org/obo/PR_000009184,none +14.1822597,PR:000009346,http://purl.obolibrary.org/obo/PR_000009346,Kita-kyushu lung cancer antigen 1 +14.1822597,PR:000009474,http://purl.obolibrary.org/obo/PR_000009474,"keratin, type I cuticular Ha5" +14.1822597,PR:000009596,http://purl.obolibrary.org/obo/PR_000009596,protein kintoun +14.1822597,PR:000009685,http://purl.obolibrary.org/obo/PR_000009685,putative BPIFA4P protein +14.1822597,PR:000009782,http://purl.obolibrary.org/obo/PR_000009782,ligatin +14.1822597,PR:000009948,http://purl.obolibrary.org/obo/PR_000009948,leucine-rich repeat transmembrane neuronal protein 3 +14.1822597,PR:000009957,http://purl.obolibrary.org/obo/PR_000009957,protein LSM12 +14.1822597,PR:000009993,http://purl.obolibrary.org/obo/PR_000009993,lymphocyte antigen 6 complex locus protein G6d +14.1822597,PR:000010009,http://purl.obolibrary.org/obo/PR_000010009,LYR motif-containing protein 1 +14.1822597,PR:000010044,http://purl.obolibrary.org/obo/PR_000010044,protein maelstrom +14.1822597,PR:000010077,http://purl.obolibrary.org/obo/PR_000010077,melanoma-associated antigen D4 +14.1822597,PR:000010381,http://purl.obolibrary.org/obo/PR_000010381,"alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase A" +14.1822597,PR:000010630,http://purl.obolibrary.org/obo/PR_000010630,"28S ribosomal protein S22, mitochondrial" +14.1822597,PR:000010728,http://purl.obolibrary.org/obo/PR_000010728,"translation initiation factor IF-3, mitochondrial" +14.1822597,PR:000010781,http://purl.obolibrary.org/obo/PR_000010781,musculoskeletal embryonic nuclear protein 1 +14.1822597,PR:000010864,http://purl.obolibrary.org/obo/PR_000010864,myosin-IIIB +14.1822597,PR:000010987,http://purl.obolibrary.org/obo/PR_000010987,nuclear prelamin A recognition factor +14.1822597,PR:000011222,http://purl.obolibrary.org/obo/PR_000011222,protein NipSnap homolog 3B +14.1822597,PR:000011269,http://purl.obolibrary.org/obo/PR_000011269,"NACHT, LRR and PYD domains-containing protein 14" +14.1822597,PR:000011303,http://purl.obolibrary.org/obo/PR_000011303,nucleolar complex protein 3 +14.1822597,PR:000011311,http://purl.obolibrary.org/obo/PR_000011311,nucleolar protein 4 +14.1822597,PR:000011492,http://purl.obolibrary.org/obo/PR_000011492,bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] +14.1822597,PR:000011497,http://purl.obolibrary.org/obo/PR_000011497,peroxisomal coenzyme A diphosphatase NUDT7 +14.1822597,PR:000011646,http://purl.obolibrary.org/obo/PR_000011646,opalin +14.1822597,PR:000012100,http://purl.obolibrary.org/obo/PR_000012100,oxytocin-neurophysin 1 +14.1822597,PR:000012311,http://purl.obolibrary.org/obo/PR_000012311,protein PAT1 homolog 1 +14.1822597,PR:000012415,http://purl.obolibrary.org/obo/PR_000012415,mRNA (2'-O-methyladenosine-N(6)-)-methyltransferase +14.1822597,PR:000012539,http://purl.obolibrary.org/obo/PR_000012539,E3 ubiquitin-protein ligase pellino homolog 2 +14.1822597,PR:000012572,http://purl.obolibrary.org/obo/PR_000012572,prefoldin subunit 1 +14.1822597,PR:000012742,http://purl.obolibrary.org/obo/PR_000012742,phosphatidylinositol 5-phosphate 4-kinase type-2 beta +14.1822597,PR:000012772,http://purl.obolibrary.org/obo/PR_000012772,polycystic kidney disease protein 1-like 3 +14.1822597,PR:000012854,http://purl.obolibrary.org/obo/PR_000012854,pleckstrin homology domain-containing family A member 2 +14.1822597,PR:000012968,http://purl.obolibrary.org/obo/PR_000012968,polymerase delta-interacting protein 3 +14.1822597,PR:000013072,http://purl.obolibrary.org/obo/PR_000013072,liprin-beta-1 +14.1822597,PR:000013085,http://purl.obolibrary.org/obo/PR_000013085,peptidyl-prolyl cis-trans isomerase-like 3 +14.1822597,PR:000013308,http://purl.obolibrary.org/obo/PR_000013308,proline-rich protein 4 +14.1822597,PR:000013323,http://purl.obolibrary.org/obo/PR_000013323,serine protease 23 +14.1822597,PR:000013495,http://purl.obolibrary.org/obo/PR_000013495,transcriptional activator protein Pur-beta +14.1822597,PR:000013504,http://purl.obolibrary.org/obo/PR_000013504,periodic tryptophan protein 1 +14.1822597,PR:000013575,http://purl.obolibrary.org/obo/PR_000013575,sulfhydryl oxidase 2 +14.1822597,PR:000013710,http://purl.obolibrary.org/obo/PR_000013710,Ran-binding protein 10 +14.1822597,PR:000013790,http://purl.obolibrary.org/obo/PR_000013790,RNA-binding protein 25 +14.1822597,PR:000013853,http://purl.obolibrary.org/obo/PR_000013853,retinol dehydrogenase 16 +14.1822597,PR:000014088,http://purl.obolibrary.org/obo/PR_000014088,E3 ubiquitin-protein ligase RNF144B +14.1822597,PR:000014176,http://purl.obolibrary.org/obo/PR_000014176,putative RNA polymerase II subunit B1 CTD phosphatase RPAP2 +14.1822597,PR:000014242,http://purl.obolibrary.org/obo/PR_000014242,ribonuclease P protein subunit p14 +14.1822597,PR:000014265,http://purl.obolibrary.org/obo/PR_000014265,40S ribosomal protein S21 +14.1822597,PR:000014274,http://purl.obolibrary.org/obo/PR_000014274,40S ribosomal protein S29 +14.1822597,PR:000014329,http://purl.obolibrary.org/obo/PR_000014329,radial spoke head protein 9 +14.1822597,PR:000014352,http://purl.obolibrary.org/obo/PR_000014352,reticulon-4 receptor-like 2 +14.1822597,PR:000014501,http://purl.obolibrary.org/obo/PR_000014501,Sec1 family domain-containing protein 2 +14.1822597,PR:000014541,http://purl.obolibrary.org/obo/PR_000014541,transcriptional repressor scratch 1 +14.1822597,PR:000014556,http://purl.obolibrary.org/obo/PR_000014556,serologically defined colon cancer antigen 1 +14.1822597,PR:000014728,http://purl.obolibrary.org/obo/PR_000014728,seizure 6-like protein +14.1822597,PR:000014736,http://purl.obolibrary.org/obo/PR_000014736,splicing factor 3B subunit 2 +14.1822597,PR:000014787,http://purl.obolibrary.org/obo/PR_000014787,Rho guanine nucleotide exchange factor 26 +14.1822597,PR:000014965,http://purl.obolibrary.org/obo/PR_000014965,solute carrier family 17 member 9 +14.1822597,PR:000015140,http://purl.obolibrary.org/obo/PR_000015140,solute carrier family 41 member 2 +14.1822597,PR:000015168,http://purl.obolibrary.org/obo/PR_000015168,sodium-coupled monocarboxylate transporter 2 +14.1822597,PR:000015343,http://purl.obolibrary.org/obo/PR_000015343,small nuclear ribonucleoprotein Sm D1 +14.1822597,PR:000015594,http://purl.obolibrary.org/obo/PR_000015594,"spectrin beta chain, non-erythrocytic 4" +14.1822597,PR:000015661,http://purl.obolibrary.org/obo/PR_000015661,translocon-associated protein subunit gamma +14.1822597,PR:000015680,http://purl.obolibrary.org/obo/PR_000015680,suppressor of tumorigenicity 20 protein +14.1822597,PR:000015753,http://purl.obolibrary.org/obo/PR_000015753,serine/threonine-protein kinase 36 +14.1822597,PR:000015803,http://purl.obolibrary.org/obo/PR_000015803,syntaxin-binding protein 4 +14.1822597,PR:000015828,http://purl.obolibrary.org/obo/PR_000015828,inactive C-alpha-formylglycine-generating enzyme 2 +14.1822597,PR:000015880,http://purl.obolibrary.org/obo/PR_000015880,synaptogyrin-3 +14.1822597,PR:000016210,http://purl.obolibrary.org/obo/PR_000016210,tectonic-2 +14.1822597,PR:000016376,http://purl.obolibrary.org/obo/PR_000016376,transducin-like enhancer protein 6 +14.1822597,PR:000016612,http://purl.obolibrary.org/obo/PR_000016612,trafficking protein particle complex subunit 10 +14.1822597,PR:000016707,http://purl.obolibrary.org/obo/PR_000016707,serine protease 58 +14.1822597,PR:000016740,http://purl.obolibrary.org/obo/PR_000016740,tetraspanin-14 +14.1822597,PR:000016804,http://purl.obolibrary.org/obo/PR_000016804,protein tweety homolog 2 +14.1822597,PR:000016842,http://purl.obolibrary.org/obo/PR_000016842,trafficking regulator of GLUT4 1 +14.1822597,PR:000016976,http://purl.obolibrary.org/obo/PR_000016976,ubiquitin-conjugating enzyme E2 H +14.1822597,PR:000017159,http://purl.obolibrary.org/obo/PR_000017159,ubiquitin carboxyl-terminal hydrolase 20 +14.1822597,PR:000017363,http://purl.obolibrary.org/obo/PR_000017363,von Willebrand factor C and EGF domain-containing protein +14.1822597,PR:000017385,http://purl.obolibrary.org/obo/PR_000017385,WD repeat- and FYVE domain-containing protein 4 +14.1822597,PR:000017463,http://purl.obolibrary.org/obo/PR_000017463,protein WWC2 +14.1822597,PR:000017621,http://purl.obolibrary.org/obo/PR_000017621,AN1-type zinc finger protein 2A +14.1822597,PR:000018206,http://purl.obolibrary.org/obo/PR_000018206,E3 ubiquitin-protein ligase ZNRF1 +14.1822597,PR:000018214,http://purl.obolibrary.org/obo/PR_000018214,zona pellucida-binding protein 1 +14.1822597,PR:000018253,http://purl.obolibrary.org/obo/PR_000018253,zinc finger protein 64 +14.1822597,PR:000021984,http://purl.obolibrary.org/obo/PR_000021984,none +14.1822597,PR:000022039,http://purl.obolibrary.org/obo/PR_000022039,none +14.1822597,PR:000022196,http://purl.obolibrary.org/obo/PR_000022196,none +14.1822597,PR:000022262,http://purl.obolibrary.org/obo/PR_000022262,none +14.1822597,PR:000022420,http://purl.obolibrary.org/obo/PR_000022420,none +14.1822597,PR:000022512,http://purl.obolibrary.org/obo/PR_000022512,none +14.1822597,PR:000022525,http://purl.obolibrary.org/obo/PR_000022525,none +14.1822597,PR:000022653,http://purl.obolibrary.org/obo/PR_000022653,none +14.1822597,PR:000022819,http://purl.obolibrary.org/obo/PR_000022819,none +14.1822597,PR:000022860,http://purl.obolibrary.org/obo/PR_000022860,none +14.1822597,PR:000022897,http://purl.obolibrary.org/obo/PR_000022897,none +14.1822597,PR:000023002,http://purl.obolibrary.org/obo/PR_000023002,none +14.1822597,PR:000023051,http://purl.obolibrary.org/obo/PR_000023051,none +14.1822597,PR:000023256,http://purl.obolibrary.org/obo/PR_000023256,none +14.1822597,PR:000023264,http://purl.obolibrary.org/obo/PR_000023264,none +14.1822597,PR:000023351,http://purl.obolibrary.org/obo/PR_000023351,none +14.1822597,PR:000023409,http://purl.obolibrary.org/obo/PR_000023409,none +14.1822597,PR:000023442,http://purl.obolibrary.org/obo/PR_000023442,none +14.1822597,PR:000023473,http://purl.obolibrary.org/obo/PR_000023473,none +14.1822597,PR:000023619,http://purl.obolibrary.org/obo/PR_000023619,none +14.1822597,PR:000023702,http://purl.obolibrary.org/obo/PR_000023702,none +14.1822597,PR:000024010,http://purl.obolibrary.org/obo/PR_000024010,none +14.1822597,PR:000024177,http://purl.obolibrary.org/obo/PR_000024177,none +14.1822597,PR:000024214,http://purl.obolibrary.org/obo/PR_000024214,none +14.1822597,PR:000026090,http://purl.obolibrary.org/obo/PR_000026090,"eukaryotic translation initiation factor 2 subunit 3, X-linked" +14.1822597,PR:000027513,http://purl.obolibrary.org/obo/PR_000027513,none +14.1822597,PR:000027713,http://purl.obolibrary.org/obo/PR_000027713,none +14.1822597,PR:000028157,http://purl.obolibrary.org/obo/PR_000028157,none +14.1822597,PR:000029103,http://purl.obolibrary.org/obo/PR_000029103,cyclin-Q +14.1822597,PR:000029264,http://purl.obolibrary.org/obo/PR_000029264,AT-hook DNA-binding motif-containing protein 1 +14.1822597,PR:000029293,http://purl.obolibrary.org/obo/PR_000029293,outer mitochondrial transmembrane helix translocase +14.1822597,PR:000029372,http://purl.obolibrary.org/obo/PR_000029372,pre-mRNA-splicing factor CWC25 homolog +14.1822597,PR:000029381,http://purl.obolibrary.org/obo/PR_000029381,probable ATP-dependent RNA helicase DDX10 +14.1822597,PR:000029542,http://purl.obolibrary.org/obo/PR_000029542,probable E3 ubiquitin-protein ligase HERC6 +14.1822597,PR:000029655,http://purl.obolibrary.org/obo/PR_000029655,28S rRNA (cytosine-C(5))-methyltransferase +14.1822597,PR:000029658,http://purl.obolibrary.org/obo/PR_000029658,NudC domain-containing protein 1 +14.1822597,PR:000029714,http://purl.obolibrary.org/obo/PR_000029714,roquin-2 +14.1822597,PR:000029882,http://purl.obolibrary.org/obo/PR_000029882,zinc finger BED domain-containing protein 3 +14.1822597,PR:000029895,http://purl.obolibrary.org/obo/PR_000029895,zinc finger HIT domain-containing protein 3 +14.1822597,PR:000030262,http://purl.obolibrary.org/obo/PR_000030262,lateral signaling target protein 2 homolog +14.1822597,PR:000030277,http://purl.obolibrary.org/obo/PR_000030277,tripartite motif-containing protein 46 +14.1822597,PR:000030354,http://purl.obolibrary.org/obo/PR_000030354,"CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase 2" +14.1822597,PR:000030466,http://purl.obolibrary.org/obo/PR_000030466,B9 domain-containing protein 1 +14.1822597,PR:000030469,http://purl.obolibrary.org/obo/PR_000030469,coiled-coil domain-containing protein 112 +14.1822597,PR:000030922,http://purl.obolibrary.org/obo/PR_000030922,protein FAM110A +14.1822597,PR:000030991,http://purl.obolibrary.org/obo/PR_000030991,refilin-A +14.1822597,PR:000031175,http://purl.obolibrary.org/obo/PR_000031175,E3 ubiquitin-protein ligase TRIM62 +14.1822597,PR:000031229,http://purl.obolibrary.org/obo/PR_000031229,phospholipid-transporting ATPase IF +14.1822597,PR:000031243,http://purl.obolibrary.org/obo/PR_000031243,WD repeat-containing protein 81 +14.1822597,PR:000031371,http://purl.obolibrary.org/obo/PR_000031371,immunoglobulin superfamily member 3 +14.1822597,PR:000031534,http://purl.obolibrary.org/obo/PR_000031534,methyl-CpG-binding domain protein 6 +14.1822597,PR:000031629,http://purl.obolibrary.org/obo/PR_000031629,immunoglobulin lambda-like polypeptide 5 +14.1822597,PR:000031921,http://purl.obolibrary.org/obo/PR_000031921,protein PBMUCL2 +14.1822597,PR:000032040,http://purl.obolibrary.org/obo/PR_000032040,probable cationic amino acid transporter +14.1822597,PR:000032057,http://purl.obolibrary.org/obo/PR_000032057,probable 18S rRNA (guanine-N(7))-methyltransferase +14.1822597,PR:000032135,http://purl.obolibrary.org/obo/PR_000032135,C-type lectin domain family 14 member A +14.1822597,PR:000032194,http://purl.obolibrary.org/obo/PR_000032194,MARVEL domain-containing protein 1 +14.1822597,PR:000032221,http://purl.obolibrary.org/obo/PR_000032221,probable tubulin polyglutamylase TTLL1 +14.1822597,PR:000032266,http://purl.obolibrary.org/obo/PR_000032266,LIM domain-containing protein 2 +14.1822597,PR:000032273,http://purl.obolibrary.org/obo/PR_000032273,probable ATP-dependent RNA helicase DDX43 +14.1822597,PR:000032311,http://purl.obolibrary.org/obo/PR_000032311,extended synaptotagmin-2 +14.1822597,PR:000032361,http://purl.obolibrary.org/obo/PR_000032361,RCC1 domain-containing protein 1 +14.1822597,PR:000032481,http://purl.obolibrary.org/obo/PR_000032481,multiple epidermal growth factor-like domains protein 6 +14.1822597,PR:000032631,http://purl.obolibrary.org/obo/PR_000032631,ribitol-5-phosphate xylosyltransferase 1 +14.1822597,PR:000032674,http://purl.obolibrary.org/obo/PR_000032674,pepsin A-4 +14.1822597,PR:000032796,http://purl.obolibrary.org/obo/PR_000032796,zinc finger MYND domain-containing protein 10 +14.1822597,PR:000032942,http://purl.obolibrary.org/obo/PR_000032942,none +14.1822597,PR:000033070,http://purl.obolibrary.org/obo/PR_000033070,none +14.1822597,PR:000033195,http://purl.obolibrary.org/obo/PR_000033195,none +14.1822597,PR:000033557,http://purl.obolibrary.org/obo/PR_000033557,none +14.1822597,PR:000034143,http://purl.obolibrary.org/obo/PR_000034143,none +14.1822597,PR:000034329,http://purl.obolibrary.org/obo/PR_000034329,none +14.1822597,PR:000034760,http://purl.obolibrary.org/obo/PR_000034760,none +14.1822597,PR:000036299,http://purl.obolibrary.org/obo/PR_000036299,none +14.1822597,PR:000036913,http://purl.obolibrary.org/obo/PR_000036913,none +14.1822597,PR:000039919,http://purl.obolibrary.org/obo/PR_000039919,longin and synaptobrevin domains protein +14.1822597,PR:000044426,http://purl.obolibrary.org/obo/PR_000044426,none +14.1822597,PR:000044692,http://purl.obolibrary.org/obo/PR_000044692,molybdopterin synthase catalytic subunit +14.1822597,PR:B5A5T4,http://purl.obolibrary.org/obo/PR_B5A5T4,none +14.1822597,PR:F4JVI3,http://purl.obolibrary.org/obo/PR_F4JVI3,none +14.1822597,PR:O13820,http://purl.obolibrary.org/obo/PR_O13820,none +14.1822597,PR:O57328,http://purl.obolibrary.org/obo/PR_O57328,none +14.1822597,PR:P0CX44,http://purl.obolibrary.org/obo/PR_P0CX44,none +14.1822597,PR:P0DOC7,http://purl.obolibrary.org/obo/PR_P0DOC7,none +14.1822597,PR:P15455,http://purl.obolibrary.org/obo/PR_P15455,none +14.1822597,PR:P20023,http://purl.obolibrary.org/obo/PR_P20023,complement receptor type 2 (human) +14.1822597,PR:P20817,http://purl.obolibrary.org/obo/PR_P20817,none +14.1822597,PR:P31169,http://purl.obolibrary.org/obo/PR_P31169,none +14.1822597,PR:P32318,http://purl.obolibrary.org/obo/PR_P32318,none +14.1822597,PR:P35056,http://purl.obolibrary.org/obo/PR_P35056,none +14.1822597,PR:P35200,http://purl.obolibrary.org/obo/PR_P35200,none +14.1822597,PR:P39113,http://purl.obolibrary.org/obo/PR_P39113,none +14.1822597,PR:P39518,http://purl.obolibrary.org/obo/PR_P39518,none +14.1822597,PR:P39714,http://purl.obolibrary.org/obo/PR_P39714,none +14.1822597,PR:P40986,http://purl.obolibrary.org/obo/PR_P40986,none +14.1822597,PR:P47135,http://purl.obolibrary.org/obo/PR_P47135,none +14.1822597,PR:P50087,http://purl.obolibrary.org/obo/PR_P50087,none +14.1822597,PR:P50942,http://purl.obolibrary.org/obo/PR_P50942,none +14.1822597,PR:P51420,http://purl.obolibrary.org/obo/PR_P51420,none +14.1822597,PR:P61823,http://purl.obolibrary.org/obo/PR_P61823,none +14.1822597,PR:P62630,http://purl.obolibrary.org/obo/PR_P62630,none +14.1822597,PR:P79065,http://purl.obolibrary.org/obo/PR_P79065,none +14.1822597,PR:P81918,http://purl.obolibrary.org/obo/PR_P81918,none +14.1822597,PR:P82712,http://purl.obolibrary.org/obo/PR_P82712,none +14.1822597,PR:P83858,http://purl.obolibrary.org/obo/PR_P83858,none +14.1822597,PR:P83861,http://purl.obolibrary.org/obo/PR_P83861,none +14.1822597,PR:Q05949,http://purl.obolibrary.org/obo/PR_Q05949,none +14.1822597,PR:Q08755,http://purl.obolibrary.org/obo/PR_Q08755,none +14.1822597,PR:Q0WQ91,http://purl.obolibrary.org/obo/PR_Q0WQ91,none +14.1822597,PR:Q1ACB3,http://purl.obolibrary.org/obo/PR_Q1ACB3,none +14.1822597,PR:Q24451,http://purl.obolibrary.org/obo/PR_Q24451,none +14.1822597,PR:Q2V452,http://purl.obolibrary.org/obo/PR_Q2V452,none +14.1822597,PR:Q38857,http://purl.obolibrary.org/obo/PR_Q38857,none +14.1822597,PR:Q38914,http://purl.obolibrary.org/obo/PR_Q38914,none +14.1822597,PR:Q3KRE8,http://purl.obolibrary.org/obo/PR_Q3KRE8,none +14.1822597,PR:Q54IK9,http://purl.obolibrary.org/obo/PR_Q54IK9,none +14.1822597,PR:Q54KB8,http://purl.obolibrary.org/obo/PR_Q54KB8,none +14.1822597,PR:Q5A651,http://purl.obolibrary.org/obo/PR_Q5A651,none +14.1822597,PR:Q5A688,http://purl.obolibrary.org/obo/PR_Q5A688,none +14.1822597,PR:Q61107,http://purl.obolibrary.org/obo/PR_Q61107,none +14.1822597,PR:Q66GI9,http://purl.obolibrary.org/obo/PR_Q66GI9,none +14.1822597,PR:Q67ZE1,http://purl.obolibrary.org/obo/PR_Q67ZE1,none +14.1822597,PR:Q6TBX7,http://purl.obolibrary.org/obo/PR_Q6TBX7,none +14.1822597,PR:Q7G191,http://purl.obolibrary.org/obo/PR_Q7G191,none +14.1822597,PR:Q7KR10,http://purl.obolibrary.org/obo/PR_Q7KR10,none +14.1822597,PR:Q7PC81,http://purl.obolibrary.org/obo/PR_Q7PC81,none +14.1822597,PR:Q7TN49,http://purl.obolibrary.org/obo/PR_Q7TN49,none +14.1822597,PR:Q7XJR2,http://purl.obolibrary.org/obo/PR_Q7XJR2,none +14.1822597,PR:Q80X08,http://purl.obolibrary.org/obo/PR_Q80X08,none +14.1822597,PR:Q8IN94,http://purl.obolibrary.org/obo/PR_Q8IN94,none +14.1822597,PR:Q96242,http://purl.obolibrary.org/obo/PR_Q96242,none +14.1822597,PR:Q9ATB4,http://purl.obolibrary.org/obo/PR_Q9ATB4,none +14.1822597,PR:Q9C9N6,http://purl.obolibrary.org/obo/PR_Q9C9N6,none +14.1822597,PR:Q9FE46,http://purl.obolibrary.org/obo/PR_Q9FE46,none +14.1822597,PR:Q9FKA7,http://purl.obolibrary.org/obo/PR_Q9FKA7,none +14.1822597,PR:Q9I8L5,http://purl.obolibrary.org/obo/PR_Q9I8L5,none +14.1822597,PR:Q9M0V3,http://purl.obolibrary.org/obo/PR_Q9M0V3,none +14.1822597,PR:Q9VS59,http://purl.obolibrary.org/obo/PR_Q9VS59,none +14.1822597,PR:Q9ZVQ3,http://purl.obolibrary.org/obo/PR_Q9ZVQ3,none +14.1822597,SO:0000059,http://purl.obolibrary.org/obo/SO_0000059,nuclease_binding_site +14.1822597,SO:0000097,http://purl.obolibrary.org/obo/SO_0000097,nucleomorph_gene +14.1822597,SO:0000394,http://purl.obolibrary.org/obo/SO_0000394,U4atac_snRNA +14.1822597,SO:0001003,http://purl.obolibrary.org/obo/SO_0001003,solo_LTR +14.1822597,SO:0001617,http://purl.obolibrary.org/obo/SO_0001617,polypeptide_truncation +14.1822597,SO:0001638,http://purl.obolibrary.org/obo/SO_0001638,piRNA_gene +14.1822597,SO:0001843,http://purl.obolibrary.org/obo/SO_0001843,CRE +14.1822597,SO:0001903,http://purl.obolibrary.org/obo/SO_0001903,none +14.1822597,SO:0001971,http://purl.obolibrary.org/obo/SO_0001971,zinc_finger_binding_site +14.1822597,SO:0002066,http://purl.obolibrary.org/obo/SO_0002066,mobile_element_deletion +14.1822597,SO:0002070,http://purl.obolibrary.org/obo/SO_0002070,Alu_deletion +14.1822597,SO:0100013,http://purl.obolibrary.org/obo/SO_0100013,hydrophobic_region_of_peptide +14.1822597,SO:1000020,http://purl.obolibrary.org/obo/SO_1000020,C_to_G_transversion +14.1822597,UBERON:0001009,http://purl.obolibrary.org/obo/UBERON_0001009,circulatory system +14.1822597,UBERON:0001312,http://purl.obolibrary.org/obo/UBERON_0001312,superior vesical artery +14.1822597,UBERON:0001618,http://purl.obolibrary.org/obo/UBERON_0001618,buccal artery +14.1822597,UBERON:0002564,http://purl.obolibrary.org/obo/UBERON_0002564,lateral orbital gyrus +14.1822597,UBERON:0002755,http://purl.obolibrary.org/obo/UBERON_0002755,pyramidal decussation +14.1822597,UBERON:0002833,http://purl.obolibrary.org/obo/UBERON_0002833,medial nucleus of trapezoid body +14.1822597,UBERON:0002835,http://purl.obolibrary.org/obo/UBERON_0002835,thoracic dorsal root ganglion +14.1822597,UBERON:0003002,http://purl.obolibrary.org/obo/UBERON_0003002,medial lemniscus +14.1822597,UBERON:0003246,http://purl.obolibrary.org/obo/UBERON_0003246,epithelium of endolymphatic sac +14.1822597,UBERON:0003307,http://purl.obolibrary.org/obo/UBERON_0003307,floor plate of midbrain +14.1822597,UBERON:0003573,http://purl.obolibrary.org/obo/UBERON_0003573,arm connective tissue +14.1822597,UBERON:0003885,http://purl.obolibrary.org/obo/UBERON_0003885,mesometrium +14.1822597,UBERON:0004109,http://purl.obolibrary.org/obo/UBERON_0004109,cortex of humerus +14.1822597,UBERON:0004269,http://purl.obolibrary.org/obo/UBERON_0004269,upper arm connective tissue +14.1822597,UBERON:0004389,http://purl.obolibrary.org/obo/UBERON_0004389,epiphysis of metatarsal bone +14.1822597,UBERON:0004680,http://purl.obolibrary.org/obo/UBERON_0004680,body of fornix +14.1822597,UBERON:0004903,http://purl.obolibrary.org/obo/UBERON_0004903,bronchoalveolar duct junction +14.1822597,UBERON:0005075,http://purl.obolibrary.org/obo/UBERON_0005075,forebrain-midbrain boundary +14.1822597,UBERON:0005473,http://purl.obolibrary.org/obo/UBERON_0005473,sacral region +14.1822597,UBERON:0005622,http://purl.obolibrary.org/obo/UBERON_0005622,right dorsal aorta +14.1822597,UBERON:0005920,http://purl.obolibrary.org/obo/UBERON_0005920,superior nasal concha +14.1822597,UBERON:0006205,http://purl.obolibrary.org/obo/UBERON_0006205,pectineal ligament +14.1822597,UBERON:0007160,http://purl.obolibrary.org/obo/UBERON_0007160,inferior petrosal sinus +14.1822597,UBERON:0008277,http://purl.obolibrary.org/obo/UBERON_0008277,none +14.1822597,UBERON:0008278,http://purl.obolibrary.org/obo/UBERON_0008278,none +14.1822597,UBERON:0008848,http://purl.obolibrary.org/obo/UBERON_0008848,cranial suspensory ligament +14.1822597,UBERON:0008944,http://purl.obolibrary.org/obo/UBERON_0008944,albumen +14.1822597,UBERON:0010160,http://purl.obolibrary.org/obo/UBERON_0010160,lumen of lymphatic vessel +14.1822597,UBERON:0011973,http://purl.obolibrary.org/obo/UBERON_0011973,epiphysis of phalanx of pes +14.1822597,UBERON:0012067,http://purl.obolibrary.org/obo/UBERON_0012067,primary bronchiole +14.1822597,UBERON:0012074,http://purl.obolibrary.org/obo/UBERON_0012074,bony part of hard palate +14.1822597,UBERON:0012373,http://purl.obolibrary.org/obo/UBERON_0012373,sympathetic nerve plexus +14.1822597,UBERON:0013194,http://purl.obolibrary.org/obo/UBERON_0013194,orthokeratinized epithelium +14.1822597,UBERON:0013601,http://purl.obolibrary.org/obo/UBERON_0013601,medial accessory nucleus of optic tract +14.1822597,UBERON:0013619,http://purl.obolibrary.org/obo/UBERON_0013619,upper secondary molar tooth +14.1822597,UBERON:0015846,http://purl.obolibrary.org/obo/UBERON_0015846,incisor mesenchyme +14.1822597,UBERON:0017618,http://purl.obolibrary.org/obo/UBERON_0017618,extensor pollicis brevis muscle +14.1822597,UBERON:0018150,http://purl.obolibrary.org/obo/UBERON_0018150,skin of lower lip +14.1822597,UBERON:0018577,http://purl.obolibrary.org/obo/UBERON_0018577,upper third secondary molar tooth +14.1822597,UBERON:0022287,http://purl.obolibrary.org/obo/UBERON_0022287,tear film +14.1822597,UBERON:0035034,http://purl.obolibrary.org/obo/UBERON_0035034,eyelid epithelium +14.1822597,UBERON:2001527,http://purl.obolibrary.org/obo/UBERON_2001527,epibranchial cartilage +14.1822597,UBERON:3010830,http://purl.obolibrary.org/obo/UBERON_3010830,spicule +14.2467983,CHEBI:119915,http://purl.obolibrary.org/obo/CHEBI_119915,fentanyl +14.2467983,CHEBI:15365,http://purl.obolibrary.org/obo/CHEBI_15365,acetylsalicylic acid +14.2467983,CHEBI:15429,http://purl.obolibrary.org/obo/CHEBI_15429,hydroxylamine +14.2467983,CHEBI:16716,http://purl.obolibrary.org/obo/CHEBI_16716,benzene +14.2467983,CHEBI:22617,http://purl.obolibrary.org/obo/CHEBI_22617,arginine derivative +14.2467983,CHEBI:23899,http://purl.obolibrary.org/obo/CHEBI_23899,icosanoid +14.2467983,CHEBI:24129,http://purl.obolibrary.org/obo/CHEBI_24129,furans +14.2467983,CHEBI:24182,http://purl.obolibrary.org/obo/CHEBI_24182,gallotannin +14.2467983,CHEBI:24745,http://purl.obolibrary.org/obo/CHEBI_24745,hydroxypyridine +14.2467983,CHEBI:25418,http://purl.obolibrary.org/obo/CHEBI_25418,morphinane alkaloid +14.2467983,CHEBI:26588,http://purl.obolibrary.org/obo/CHEBI_26588,"1,3,5-triazines" +14.2467983,CHEBI:27252,http://purl.obolibrary.org/obo/CHEBI_27252,uronic acid +14.2467983,CHEBI:30746,http://purl.obolibrary.org/obo/CHEBI_30746,benzoic acid +14.2467983,CHEBI:31728,http://purl.obolibrary.org/obo/CHEBI_31728,isoconazole nitrate +14.2467983,CHEBI:32599,http://purl.obolibrary.org/obo/CHEBI_32599,magnesium sulfate +14.2467983,CHEBI:33455,http://purl.obolibrary.org/obo/CHEBI_33455,nitrogen oxoacid +14.2467983,CHEBI:33662,http://purl.obolibrary.org/obo/CHEBI_33662,annulene +14.2467983,CHEBI:33741,http://purl.obolibrary.org/obo/CHEBI_33741,chromium group molecular entity +14.2467983,CHEBI:33842,http://purl.obolibrary.org/obo/CHEBI_33842,aromatic annulene +14.2467983,CHEBI:33854,http://purl.obolibrary.org/obo/CHEBI_33854,aromatic alcohol +14.2467983,CHEBI:35545,http://purl.obolibrary.org/obo/CHEBI_35545,bipyridine +14.2467983,CHEBI:36416,http://purl.obolibrary.org/obo/CHEBI_36416,mancude organic heterotricyclic parent +14.2467983,CHEBI:37080,http://purl.obolibrary.org/obo/CHEBI_37080,acrylate +14.2467983,CHEBI:38182,http://purl.obolibrary.org/obo/CHEBI_38182,monohydroxypyridine +14.2467983,CHEBI:38267,http://purl.obolibrary.org/obo/CHEBI_38267,boronic acid +14.2467983,CHEBI:46557,http://purl.obolibrary.org/obo/CHEBI_46557,zoledronic acid +14.2467983,CHEBI:48947,http://purl.obolibrary.org/obo/CHEBI_48947,clavulanic acid +14.2467983,CHEBI:4917,http://purl.obolibrary.org/obo/CHEBI_4917,eugenol +14.2467983,CHEBI:50411,http://purl.obolibrary.org/obo/CHEBI_50411,one-colour indicator +14.2467983,CHEBI:50748,http://purl.obolibrary.org/obo/CHEBI_50748,antipsoriatic +14.2467983,CHEBI:51369,http://purl.obolibrary.org/obo/CHEBI_51369,N-heterocyclic carbene +14.2467983,CHEBI:6015,http://purl.obolibrary.org/obo/CHEBI_6015,isoflurane +14.2467983,CHEBI:6104,http://purl.obolibrary.org/obo/CHEBI_6104,kanamycin +14.2467983,CHEBI:61159,http://purl.obolibrary.org/obo/CHEBI_61159,conjugated linoleic acid +14.2467983,CHEBI:61466,http://purl.obolibrary.org/obo/CHEBI_61466,polydimethylsiloxane polymer +14.2467983,CHEBI:64509,http://purl.obolibrary.org/obo/CHEBI_64509,oxapenam +14.2467983,CHEBI:6456,http://purl.obolibrary.org/obo/CHEBI_6456,lidocaine +14.2467983,CHEBI:66980,http://purl.obolibrary.org/obo/CHEBI_66980,nootropic agent +14.2467983,CHEBI:72571,http://purl.obolibrary.org/obo/CHEBI_72571,pro-angiogenic agent +14.2467983,CHEBI:75050,http://purl.obolibrary.org/obo/CHEBI_75050,chromogenic compound +14.2467983,CHEBI:75211,http://purl.obolibrary.org/obo/CHEBI_75211,tannic acid +14.2467983,CHEBI:77383,http://purl.obolibrary.org/obo/CHEBI_77383,"1,1-bis(phosphonic acid)" +14.2467983,CHEBI:78689,http://purl.obolibrary.org/obo/CHEBI_78689,hydrolysable tannin +14.2467983,CL:0000114,http://purl.obolibrary.org/obo/CL_0000114,surface ectodermal cell +14.2467983,CL:0000380,http://purl.obolibrary.org/obo/CL_0000380,thecogen cell +14.2467983,CL:0000892,http://purl.obolibrary.org/obo/CL_0000892,smooth muscle cell derived foam cell +14.2467983,CL:0005018,http://purl.obolibrary.org/obo/CL_0005018,ghrelin secreting cell +14.2467983,CL:0007000,http://purl.obolibrary.org/obo/CL_0007000,preameloblast +14.2467983,CL:1000325,http://purl.obolibrary.org/obo/CL_1000325,jejunal goblet cell +14.2467983,DRUGBANK:DB00011,http://purl.obolibrary.org/obo/DRUGBANK_DB00011,none +14.2467983,DRUGBANK:DB00326,http://purl.obolibrary.org/obo/DRUGBANK_DB00326,none +14.2467983,DRUGBANK:DB00453,http://purl.obolibrary.org/obo/DRUGBANK_DB00453,none +14.2467983,DRUGBANK:DB01349,http://purl.obolibrary.org/obo/DRUGBANK_DB01349,none +14.2467983,DRUGBANK:DB01514,http://purl.obolibrary.org/obo/DRUGBANK_DB01514,none +14.2467983,DRUGBANK:DB01661,http://purl.obolibrary.org/obo/DRUGBANK_DB01661,none +14.2467983,DRUGBANK:DB02299,http://purl.obolibrary.org/obo/DRUGBANK_DB02299,none +14.2467983,DRUGBANK:DB02534,http://purl.obolibrary.org/obo/DRUGBANK_DB02534,none +14.2467983,DRUGBANK:DB02545,http://purl.obolibrary.org/obo/DRUGBANK_DB02545,none +14.2467983,DRUGBANK:DB02567,http://purl.obolibrary.org/obo/DRUGBANK_DB02567,none +14.2467983,DRUGBANK:DB02654,http://purl.obolibrary.org/obo/DRUGBANK_DB02654,none +14.2467983,DRUGBANK:DB02914,http://purl.obolibrary.org/obo/DRUGBANK_DB02914,none +14.2467983,DRUGBANK:DB03074,http://purl.obolibrary.org/obo/DRUGBANK_DB03074,none +14.2467983,DRUGBANK:DB03103,http://purl.obolibrary.org/obo/DRUGBANK_DB03103,none +14.2467983,DRUGBANK:DB03140,http://purl.obolibrary.org/obo/DRUGBANK_DB03140,none +14.2467983,DRUGBANK:DB03176,http://purl.obolibrary.org/obo/DRUGBANK_DB03176,none +14.2467983,DRUGBANK:DB03868,http://purl.obolibrary.org/obo/DRUGBANK_DB03868,none +14.2467983,DRUGBANK:DB04640,http://purl.obolibrary.org/obo/DRUGBANK_DB04640,none +14.2467983,DRUGBANK:DB04959,http://purl.obolibrary.org/obo/DRUGBANK_DB04959,none +14.2467983,DRUGBANK:DB05006,http://purl.obolibrary.org/obo/DRUGBANK_DB05006,none +14.2467983,DRUGBANK:DB05107,http://purl.obolibrary.org/obo/DRUGBANK_DB05107,none +14.2467983,DRUGBANK:DB05150,http://purl.obolibrary.org/obo/DRUGBANK_DB05150,none +14.2467983,DRUGBANK:DB05212,http://purl.obolibrary.org/obo/DRUGBANK_DB05212,none +14.2467983,DRUGBANK:DB05317,http://purl.obolibrary.org/obo/DRUGBANK_DB05317,none +14.2467983,DRUGBANK:DB05391,http://purl.obolibrary.org/obo/DRUGBANK_DB05391,none +14.2467983,DRUGBANK:DB05820,http://purl.obolibrary.org/obo/DRUGBANK_DB05820,none +14.2467983,DRUGBANK:DB05885,http://purl.obolibrary.org/obo/DRUGBANK_DB05885,none +14.2467983,DRUGBANK:DB06083,http://purl.obolibrary.org/obo/DRUGBANK_DB06083,none +14.2467983,DRUGBANK:DB06182,http://purl.obolibrary.org/obo/DRUGBANK_DB06182,none +14.2467983,DRUGBANK:DB06364,http://purl.obolibrary.org/obo/DRUGBANK_DB06364,none +14.2467983,DRUGBANK:DB06657,http://purl.obolibrary.org/obo/DRUGBANK_DB06657,none +14.2467983,DRUGBANK:DB07069,http://purl.obolibrary.org/obo/DRUGBANK_DB07069,none +14.2467983,DRUGBANK:DB08593,http://purl.obolibrary.org/obo/DRUGBANK_DB08593,none +14.2467983,DRUGBANK:DB09114,http://purl.obolibrary.org/obo/DRUGBANK_DB09114,none +14.2467983,DRUGBANK:DB09229,http://purl.obolibrary.org/obo/DRUGBANK_DB09229,none +14.2467983,DRUGBANK:DB09306,http://purl.obolibrary.org/obo/DRUGBANK_DB09306,none +14.2467983,DRUGBANK:DB09507,http://purl.obolibrary.org/obo/DRUGBANK_DB09507,none +14.2467983,DRUGBANK:DB10371,http://purl.obolibrary.org/obo/DRUGBANK_DB10371,none +14.2467983,DRUGBANK:DB10409,http://purl.obolibrary.org/obo/DRUGBANK_DB10409,none +14.2467983,DRUGBANK:DB11262,http://purl.obolibrary.org/obo/DRUGBANK_DB11262,none +14.2467983,DRUGBANK:DB11399,http://purl.obolibrary.org/obo/DRUGBANK_DB11399,none +14.2467983,DRUGBANK:DB11894,http://purl.obolibrary.org/obo/DRUGBANK_DB11894,none +14.2467983,DRUGBANK:DB11949,http://purl.obolibrary.org/obo/DRUGBANK_DB11949,none +14.2467983,DRUGBANK:DB12541,http://purl.obolibrary.org/obo/DRUGBANK_DB12541,none +14.2467983,DRUGBANK:DB12556,http://purl.obolibrary.org/obo/DRUGBANK_DB12556,none +14.2467983,DRUGBANK:DB12566,http://purl.obolibrary.org/obo/DRUGBANK_DB12566,none +14.2467983,DRUGBANK:DB12608,http://purl.obolibrary.org/obo/DRUGBANK_DB12608,none +14.2467983,DRUGBANK:DB12633,http://purl.obolibrary.org/obo/DRUGBANK_DB12633,none +14.2467983,DRUGBANK:DB12776,http://purl.obolibrary.org/obo/DRUGBANK_DB12776,none +14.2467983,DRUGBANK:DB12836,http://purl.obolibrary.org/obo/DRUGBANK_DB12836,none +14.2467983,DRUGBANK:DB12849,http://purl.obolibrary.org/obo/DRUGBANK_DB12849,none +14.2467983,DRUGBANK:DB12868,http://purl.obolibrary.org/obo/DRUGBANK_DB12868,none +14.2467983,DRUGBANK:DB13034,http://purl.obolibrary.org/obo/DRUGBANK_DB13034,none +14.2467983,DRUGBANK:DB13097,http://purl.obolibrary.org/obo/DRUGBANK_DB13097,none +14.2467983,DRUGBANK:DB13104,http://purl.obolibrary.org/obo/DRUGBANK_DB13104,none +14.2467983,DRUGBANK:DB13202,http://purl.obolibrary.org/obo/DRUGBANK_DB13202,none +14.2467983,DRUGBANK:DB13355,http://purl.obolibrary.org/obo/DRUGBANK_DB13355,none +14.2467983,DRUGBANK:DB13571,http://purl.obolibrary.org/obo/DRUGBANK_DB13571,none +14.2467983,DRUGBANK:DB13609,http://purl.obolibrary.org/obo/DRUGBANK_DB13609,none +14.2467983,DRUGBANK:DB13685,http://purl.obolibrary.org/obo/DRUGBANK_DB13685,none +14.2467983,DRUGBANK:DB13844,http://purl.obolibrary.org/obo/DRUGBANK_DB13844,none +14.2467983,DRUGBANK:DB13845,http://purl.obolibrary.org/obo/DRUGBANK_DB13845,none +14.2467983,DRUGBANK:DB13889,http://purl.obolibrary.org/obo/DRUGBANK_DB13889,none +14.2467983,DRUGBANK:DB13908,http://purl.obolibrary.org/obo/DRUGBANK_DB13908,none +14.2467983,DRUGBANK:DB13927,http://purl.obolibrary.org/obo/DRUGBANK_DB13927,none +14.2467983,DRUGBANK:DB14139,http://purl.obolibrary.org/obo/DRUGBANK_DB14139,none +14.2467983,DRUGBANK:DB14324,http://purl.obolibrary.org/obo/DRUGBANK_DB14324,none +14.2467983,DRUGBANK:DB14501,http://purl.obolibrary.org/obo/DRUGBANK_DB14501,none +14.2467983,DRUGBANK:DB14635,http://purl.obolibrary.org/obo/DRUGBANK_DB14635,none +14.2467983,DRUGBANK:DB14668,http://purl.obolibrary.org/obo/DRUGBANK_DB14668,none +14.2467983,DRUGBANK:DB14677,http://purl.obolibrary.org/obo/DRUGBANK_DB14677,none +14.2467983,DRUGBANK:DB14716,http://purl.obolibrary.org/obo/DRUGBANK_DB14716,none +14.2467983,DRUGBANK:DB14777,http://purl.obolibrary.org/obo/DRUGBANK_DB14777,none +14.2467983,DRUGBANK:DB14795,http://purl.obolibrary.org/obo/DRUGBANK_DB14795,none +14.2467983,DRUGBANK:DB14864,http://purl.obolibrary.org/obo/DRUGBANK_DB14864,none +14.2467983,DRUGBANK:DB15000,http://purl.obolibrary.org/obo/DRUGBANK_DB15000,none +14.2467983,DRUGBANK:DB15213,http://purl.obolibrary.org/obo/DRUGBANK_DB15213,none +14.2467983,DRUGBANK:DB15383,http://purl.obolibrary.org/obo/DRUGBANK_DB15383,none +14.2467983,DRUGBANK:DB15901,http://purl.obolibrary.org/obo/DRUGBANK_DB15901,none +14.2467983,DRUGBANK:DB15947,http://purl.obolibrary.org/obo/DRUGBANK_DB15947,none +14.2467983,DRUGBANK:DB15981,http://purl.obolibrary.org/obo/DRUGBANK_DB15981,none +14.2467983,DRUGBANK:DB16055,http://purl.obolibrary.org/obo/DRUGBANK_DB16055,none +14.2467983,DRUGBANK:DB16376,http://purl.obolibrary.org/obo/DRUGBANK_DB16376,none +14.2467983,GO:0000298,http://purl.obolibrary.org/obo/GO_0000298,endopolyphosphatase activity +14.2467983,GO:0000789,http://purl.obolibrary.org/obo/GO_0000789,none +14.2467983,GO:0002133,http://purl.obolibrary.org/obo/GO_0002133,polycystin complex +14.2467983,GO:0002755,http://purl.obolibrary.org/obo/GO_0002755,MyD88-dependent toll-like receptor signaling pathway +14.2467983,GO:0004019,http://purl.obolibrary.org/obo/GO_0004019,adenylosuccinate synthase activity +14.2467983,GO:0004501,http://purl.obolibrary.org/obo/GO_0004501,ecdysone 20-monooxygenase activity +14.2467983,GO:0006198,http://purl.obolibrary.org/obo/GO_0006198,cAMP catabolic process +14.2467983,GO:0006228,http://purl.obolibrary.org/obo/GO_0006228,UTP biosynthetic process +14.2467983,GO:0006808,http://purl.obolibrary.org/obo/GO_0006808,regulation of nitrogen utilization +14.2467983,GO:0007175,http://purl.obolibrary.org/obo/GO_0007175,negative regulation of epidermal growth factor-activated receptor activity +14.2467983,GO:0008036,http://purl.obolibrary.org/obo/GO_0008036,diuretic hormone receptor activity +14.2467983,GO:0008050,http://purl.obolibrary.org/obo/GO_0008050,female courtship behavior +14.2467983,GO:0008116,http://purl.obolibrary.org/obo/GO_0008116,prostaglandin-I synthase activity +14.2467983,GO:0008454,http://purl.obolibrary.org/obo/GO_0008454,"alpha-1,3-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity" +14.2467983,GO:0008458,http://purl.obolibrary.org/obo/GO_0008458,carnitine O-octanoyltransferase activity +14.2467983,GO:0008568,http://purl.obolibrary.org/obo/GO_0008568,microtubule-severing ATPase activity +14.2467983,GO:0008623,http://purl.obolibrary.org/obo/GO_0008623,CHRAC +14.2467983,GO:0008664,http://purl.obolibrary.org/obo/GO_0008664,2'-5'-RNA ligase activity +14.2467983,GO:0008849,http://purl.obolibrary.org/obo/GO_0008849,enterochelin esterase activity +14.2467983,GO:0008860,http://purl.obolibrary.org/obo/GO_0008860,ferredoxin-NAD+ reductase activity +14.2467983,GO:0008881,http://purl.obolibrary.org/obo/GO_0008881,glutamate racemase activity +14.2467983,GO:0009111,http://purl.obolibrary.org/obo/GO_0009111,vitamin catabolic process +14.2467983,GO:0009420,http://purl.obolibrary.org/obo/GO_0009420,bacterial-type flagellum filament +14.2467983,GO:0009647,http://purl.obolibrary.org/obo/GO_0009647,skotomorphogenesis +14.2467983,GO:0009741,http://purl.obolibrary.org/obo/GO_0009741,response to brassinosteroid +14.2467983,GO:0009880,http://purl.obolibrary.org/obo/GO_0009880,embryonic pattern specification +14.2467983,GO:0010088,http://purl.obolibrary.org/obo/GO_0010088,phloem development +14.2467983,GO:0010286,http://purl.obolibrary.org/obo/GO_0010286,heat acclimation +14.2467983,GO:0010315,http://purl.obolibrary.org/obo/GO_0010315,auxin efflux +14.2467983,GO:0010413,http://purl.obolibrary.org/obo/GO_0010413,glucuronoxylan metabolic process +14.2467983,GO:0010417,http://purl.obolibrary.org/obo/GO_0010417,glucuronoxylan biosynthetic process +14.2467983,GO:0010928,http://purl.obolibrary.org/obo/GO_0010928,regulation of auxin mediated signaling pathway +14.2467983,GO:0014041,http://purl.obolibrary.org/obo/GO_0014041,regulation of neuron maturation +14.2467983,GO:0015048,http://purl.obolibrary.org/obo/GO_0015048,phthalate dioxygenase reductase activity +14.2467983,GO:0015149,http://purl.obolibrary.org/obo/GO_0015149,hexose transmembrane transporter activity +14.2467983,GO:0015673,http://purl.obolibrary.org/obo/GO_0015673,silver ion transport +14.2467983,GO:0015714,http://purl.obolibrary.org/obo/GO_0015714,phosphoenolpyruvate transport +14.2467983,GO:0016414,http://purl.obolibrary.org/obo/GO_0016414,O-octanoyltransferase activity +14.2467983,GO:0016580,http://purl.obolibrary.org/obo/GO_0016580,Sin3 complex +14.2467983,GO:0018537,http://purl.obolibrary.org/obo/GO_0018537,"coenzyme F420-dependent N5,N10-methenyltetrahydromethanopterin reductase activity" +14.2467983,GO:0019270,http://purl.obolibrary.org/obo/GO_0019270,aerobactin biosynthetic process +14.2467983,GO:0019519,http://purl.obolibrary.org/obo/GO_0019519,pentitol metabolic process +14.2467983,GO:0019700,http://purl.obolibrary.org/obo/GO_0019700,organic phosphonate catabolic process +14.2467983,GO:0019756,http://purl.obolibrary.org/obo/GO_0019756,cyanogenic glycoside biosynthetic process +14.2467983,GO:0020033,http://purl.obolibrary.org/obo/GO_0020033,antigenic variation +14.2467983,GO:0030201,http://purl.obolibrary.org/obo/GO_0030201,heparan sulfate proteoglycan metabolic process +14.2467983,GO:0030677,http://purl.obolibrary.org/obo/GO_0030677,ribonuclease P complex +14.2467983,GO:0030916,http://purl.obolibrary.org/obo/GO_0030916,otic vesicle formation +14.2467983,GO:0031018,http://purl.obolibrary.org/obo/GO_0031018,endocrine pancreas development +14.2467983,GO:0031290,http://purl.obolibrary.org/obo/GO_0031290,retinal ganglion cell axon guidance +14.2467983,GO:0032126,http://purl.obolibrary.org/obo/GO_0032126,eisosome +14.2467983,GO:0032601,http://purl.obolibrary.org/obo/GO_0032601,connective tissue growth factor production +14.2467983,GO:0032615,http://purl.obolibrary.org/obo/GO_0032615,interleukin-12 production +14.2467983,GO:0032808,http://purl.obolibrary.org/obo/GO_0032808,lacrimal gland development +14.2467983,GO:0033018,http://purl.obolibrary.org/obo/GO_0033018,sarcoplasmic reticulum lumen +14.2467983,GO:0033059,http://purl.obolibrary.org/obo/GO_0033059,cellular pigmentation +14.2467983,GO:0033072,http://purl.obolibrary.org/obo/GO_0033072,vancomycin biosynthetic process +14.2467983,GO:0033332,http://purl.obolibrary.org/obo/GO_0033332,ent-kaurene biosynthetic process +14.2467983,GO:0033398,http://purl.obolibrary.org/obo/GO_0033398,zeatin biosynthetic process +14.2467983,GO:0033817,http://purl.obolibrary.org/obo/GO_0033817,none +14.2467983,GO:0033907,http://purl.obolibrary.org/obo/GO_0033907,beta-D-fucosidase activity +14.2467983,GO:0033963,http://purl.obolibrary.org/obo/GO_0033963,"cholesterol-5,6-oxide hydrolase activity" +14.2467983,GO:0033971,http://purl.obolibrary.org/obo/GO_0033971,hydroxyisourate hydrolase activity +14.2467983,GO:0034014,http://purl.obolibrary.org/obo/GO_0034014,response to triglyceride +14.2467983,GO:0034276,http://purl.obolibrary.org/obo/GO_0034276,kynurenic acid biosynthetic process +14.2467983,GO:0034448,http://purl.obolibrary.org/obo/GO_0034448,none +14.2467983,GO:0034486,http://purl.obolibrary.org/obo/GO_0034486,vacuolar transmembrane transport +14.2467983,GO:0034515,http://purl.obolibrary.org/obo/GO_0034515,proteasome storage granule +14.2467983,GO:0035550,http://purl.obolibrary.org/obo/GO_0035550,urease complex +14.2467983,GO:0035590,http://purl.obolibrary.org/obo/GO_0035590,purinergic nucleotide receptor signaling pathway +14.2467983,GO:0036260,http://purl.obolibrary.org/obo/GO_0036260,RNA capping +14.2467983,GO:0036333,http://purl.obolibrary.org/obo/GO_0036333,hepatocyte homeostasis +14.2467983,GO:0038095,http://purl.obolibrary.org/obo/GO_0038095,Fc-epsilon receptor signaling pathway +14.2467983,GO:0042059,http://purl.obolibrary.org/obo/GO_0042059,negative regulation of epidermal growth factor receptor signaling pathway +14.2467983,GO:0042581,http://purl.obolibrary.org/obo/GO_0042581,specific granule +14.2467983,GO:0042783,http://purl.obolibrary.org/obo/GO_0042783,evasion of host immune response +14.2467983,GO:0042791,http://purl.obolibrary.org/obo/GO_0042791,5S class rRNA transcription by RNA polymerase III +14.2467983,GO:0043052,http://purl.obolibrary.org/obo/GO_0043052,thermotaxis +14.2467983,GO:0043251,http://purl.obolibrary.org/obo/GO_0043251,sodium-dependent organic anion transport +14.2467983,GO:0043397,http://purl.obolibrary.org/obo/GO_0043397,regulation of corticotropin-releasing hormone secretion +14.2467983,GO:0043639,http://purl.obolibrary.org/obo/GO_0043639,benzoate catabolic process +14.2467983,GO:0043966,http://purl.obolibrary.org/obo/GO_0043966,histone H3 acetylation +14.2467983,GO:0044294,http://purl.obolibrary.org/obo/GO_0044294,dendritic growth cone +14.2467983,GO:0045063,http://purl.obolibrary.org/obo/GO_0045063,T-helper 1 cell differentiation +14.2467983,GO:0045148,http://purl.obolibrary.org/obo/GO_0045148,tripeptide aminopeptidase activity +14.2467983,GO:0045639,http://purl.obolibrary.org/obo/GO_0045639,positive regulation of myeloid cell differentiation +14.2467983,GO:0045744,http://purl.obolibrary.org/obo/GO_0045744,negative regulation of G protein-coupled receptor signaling pathway +14.2467983,GO:0045840,http://purl.obolibrary.org/obo/GO_0045840,positive regulation of mitotic nuclear division +14.2467983,GO:0045945,http://purl.obolibrary.org/obo/GO_0045945,positive regulation of transcription by RNA polymerase III +14.2467983,GO:0046046,http://purl.obolibrary.org/obo/GO_0046046,TTP metabolic process +14.2467983,GO:0046107,http://purl.obolibrary.org/obo/GO_0046107,uracil biosynthetic process +14.2467983,GO:0046369,http://purl.obolibrary.org/obo/GO_0046369,galactose biosynthetic process +14.2467983,GO:0046439,http://purl.obolibrary.org/obo/GO_0046439,L-cysteine metabolic process +14.2467983,GO:0046442,http://purl.obolibrary.org/obo/GO_0046442,aerobactin metabolic process +14.2467983,GO:0047570,http://purl.obolibrary.org/obo/GO_0047570,3-oxoadipate enol-lactonase activity +14.2467983,GO:0047829,http://purl.obolibrary.org/obo/GO_0047829,D-nopaline dehydrogenase activity +14.2467983,GO:0047915,http://purl.obolibrary.org/obo/GO_0047915,ganglioside galactosyltransferase activity +14.2467983,GO:0048528,http://purl.obolibrary.org/obo/GO_0048528,post-embryonic root development +14.2467983,GO:0048840,http://purl.obolibrary.org/obo/GO_0048840,otolith development +14.2467983,GO:0050144,http://purl.obolibrary.org/obo/GO_0050144,nucleoside deoxyribosyltransferase activity +14.2467983,GO:0050184,http://purl.obolibrary.org/obo/GO_0050184,phosphatidylcholine desaturase activity +14.2467983,GO:0050189,http://purl.obolibrary.org/obo/GO_0050189,phosphoenolpyruvate phosphatase activity +14.2467983,GO:0050555,http://purl.obolibrary.org/obo/GO_0050555,2-hydroxypropyl-CoM lyase activity +14.2467983,GO:0050593,http://purl.obolibrary.org/obo/GO_0050593,N-methylcoclaurine 3'-monooxygenase activity +14.2467983,GO:0050614,http://purl.obolibrary.org/obo/GO_0050614,delta24-sterol reductase activity +14.2467983,GO:0050912,http://purl.obolibrary.org/obo/GO_0050912,detection of chemical stimulus involved in sensory perception of taste +14.2467983,GO:0050922,http://purl.obolibrary.org/obo/GO_0050922,negative regulation of chemotaxis +14.2467983,GO:0051809,http://purl.obolibrary.org/obo/GO_0051809,none +14.2467983,GO:0051866,http://purl.obolibrary.org/obo/GO_0051866,general adaptation syndrome +14.2467983,GO:0055024,http://purl.obolibrary.org/obo/GO_0055024,regulation of cardiac muscle tissue development +14.2467983,GO:0060119,http://purl.obolibrary.org/obo/GO_0060119,inner ear receptor cell development +14.2467983,GO:0060271,http://purl.obolibrary.org/obo/GO_0060271,cilium assembly +14.2467983,GO:0060592,http://purl.obolibrary.org/obo/GO_0060592,mammary gland formation +14.2467983,GO:0060631,http://purl.obolibrary.org/obo/GO_0060631,regulation of meiosis I +14.2467983,GO:0061099,http://purl.obolibrary.org/obo/GO_0061099,negative regulation of protein tyrosine kinase activity +14.2467983,GO:0061480,http://purl.obolibrary.org/obo/GO_0061480,response to asparaginase +14.2467983,GO:0070291,http://purl.obolibrary.org/obo/GO_0070291,N-acylethanolamine metabolic process +14.2467983,GO:0070472,http://purl.obolibrary.org/obo/GO_0070472,regulation of uterine smooth muscle contraction +14.2467983,GO:0070578,http://purl.obolibrary.org/obo/GO_0070578,RISC-loading complex +14.2467983,GO:0070625,http://purl.obolibrary.org/obo/GO_0070625,zymogen granule exocytosis +14.2467983,GO:0070777,http://purl.obolibrary.org/obo/GO_0070777,D-aspartate transport +14.2467983,GO:0071608,http://purl.obolibrary.org/obo/GO_0071608,macrophage inflammatory protein-1 alpha production +14.2467983,GO:0071878,http://purl.obolibrary.org/obo/GO_0071878,negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway +14.2467983,GO:0072358,http://purl.obolibrary.org/obo/GO_0072358,none +14.2467983,GO:0072640,http://purl.obolibrary.org/obo/GO_0072640,none +14.2467983,GO:0080018,http://purl.obolibrary.org/obo/GO_0080018,anthocyanin 5-O-glucosyltransferase activity +14.2467983,GO:0080028,http://purl.obolibrary.org/obo/GO_0080028,nitrile biosynthetic process +14.2467983,GO:0090357,http://purl.obolibrary.org/obo/GO_0090357,regulation of tryptophan metabolic process +14.2467983,GO:0090603,http://purl.obolibrary.org/obo/GO_0090603,sieve element differentiation +14.2467983,GO:0090696,http://purl.obolibrary.org/obo/GO_0090696,post-embryonic plant organ development +14.2467983,GO:0097145,http://purl.obolibrary.org/obo/GO_0097145,BAK complex +14.2467983,GO:0097442,http://purl.obolibrary.org/obo/GO_0097442,CA3 pyramidal cell dendrite +14.2467983,GO:0097542,http://purl.obolibrary.org/obo/GO_0097542,ciliary tip +14.2467983,GO:0098807,http://purl.obolibrary.org/obo/GO_0098807,chloroplast thylakoid membrane protein complex +14.2467983,GO:0140326,http://purl.obolibrary.org/obo/GO_0140326,ATPase-coupled intramembrane lipid transporter activity +14.2467983,GO:1900257,http://purl.obolibrary.org/obo/GO_1900257,negative regulation of beta1-adrenergic receptor activity +14.2467983,GO:1900274,http://purl.obolibrary.org/obo/GO_1900274,regulation of phospholipase C activity +14.2467983,GO:1900372,http://purl.obolibrary.org/obo/GO_1900372,negative regulation of purine nucleotide biosynthetic process +14.2467983,GO:1901067,http://purl.obolibrary.org/obo/GO_1901067,ferulate catabolic process +14.2467983,GO:1901349,http://purl.obolibrary.org/obo/GO_1901349,glucosinolate transport +14.2467983,GO:1901774,http://purl.obolibrary.org/obo/GO_1901774,lincomycin biosynthetic process +14.2467983,GO:1901827,http://purl.obolibrary.org/obo/GO_1901827,zeaxanthin biosynthetic process +14.2467983,GO:1902737,http://purl.obolibrary.org/obo/GO_1902737,dendritic filopodium +14.2467983,GO:1903793,http://purl.obolibrary.org/obo/GO_1903793,positive regulation of anion transport +14.2467983,GO:1903925,http://purl.obolibrary.org/obo/GO_1903925,response to bisphenol A +14.2467983,GO:1904069,http://purl.obolibrary.org/obo/GO_1904069,ascaroside metabolic process +14.2467983,GO:1904070,http://purl.obolibrary.org/obo/GO_1904070,ascaroside biosynthetic process +14.2467983,GO:1904195,http://purl.obolibrary.org/obo/GO_1904195,regulation of granulosa cell proliferation +14.2467983,GO:1904362,http://purl.obolibrary.org/obo/GO_1904362,regulation of calcitonin secretion +14.2467983,GO:1904616,http://purl.obolibrary.org/obo/GO_1904616,regulation of actin binding +14.2467983,GO:1990112,http://purl.obolibrary.org/obo/GO_1990112,RQC complex +14.2467983,GO:1990425,http://purl.obolibrary.org/obo/GO_1990425,ryanodine receptor complex +14.2467983,GO:1990627,http://purl.obolibrary.org/obo/GO_1990627,mitochondrial inner membrane fusion +14.2467983,GO:1990901,http://purl.obolibrary.org/obo/GO_1990901,old cell pole +14.2467983,GO:2000211,http://purl.obolibrary.org/obo/GO_2000211,regulation of glutamate metabolic process +14.2467983,GO:2000489,http://purl.obolibrary.org/obo/GO_2000489,regulation of hepatic stellate cell activation +14.2467983,GO:2000603,http://purl.obolibrary.org/obo/GO_2000603,regulation of secondary growth +14.2467983,GO:2000852,http://purl.obolibrary.org/obo/GO_2000852,regulation of corticosterone secretion +14.2467983,HP:0001305,http://purl.obolibrary.org/obo/HP_0001305,Dandy-Walker malformation +14.2467983,HP:0001686,http://purl.obolibrary.org/obo/HP_0001686,Loss of voice +14.2467983,HP:0001972,http://purl.obolibrary.org/obo/HP_0001972,Macrocytic anemia +14.2467983,HP:0002240,http://purl.obolibrary.org/obo/HP_0002240,Hepatomegaly +14.2467983,HP:0002619,http://purl.obolibrary.org/obo/HP_0002619,Varicose veins +14.2467983,HP:0002815,http://purl.obolibrary.org/obo/HP_0002815,Abnormality of the knee +14.2467983,HP:0002983,http://purl.obolibrary.org/obo/HP_0002983,Micromelia +14.2467983,HP:0005445,http://purl.obolibrary.org/obo/HP_0005445,Enlarged posterior fossa +14.2467983,HP:0006770,http://purl.obolibrary.org/obo/HP_0006770,Clear cell renal cell carcinoma +14.2467983,HP:0010295,http://purl.obolibrary.org/obo/HP_0010295,Aplasia/Hypoplasia of the tongue +14.2467983,HP:0011463,http://purl.obolibrary.org/obo/HP_0011463,Childhood onset +14.2467983,HP:0012730,http://purl.obolibrary.org/obo/HP_0012730,Aglossia +14.2467983,HP:0100310,http://purl.obolibrary.org/obo/HP_0100310,Epidural hemorrhage +14.2467983,MONDO:0000237,http://purl.obolibrary.org/obo/MONDO_0000237,erysipeloid +14.2467983,MONDO:0001508,http://purl.obolibrary.org/obo/MONDO_0001508,patulous eustachian tube +14.2467983,MONDO:0001555,http://purl.obolibrary.org/obo/MONDO_0001555,neonatal thyrotoxicosis +14.2467983,MONDO:0001743,http://purl.obolibrary.org/obo/MONDO_0001743,paranasal sinus lymphoma +14.2467983,MONDO:0002858,http://purl.obolibrary.org/obo/MONDO_0002858,ovary rhabdomyosarcoma +14.2467983,MONDO:0002876,http://purl.obolibrary.org/obo/MONDO_0002876,cervical adenosarcoma +14.2467983,MONDO:0003049,http://purl.obolibrary.org/obo/MONDO_0003049,ovarian large-cell neuroendocrine carcinoma +14.2467983,MONDO:0003093,http://purl.obolibrary.org/obo/MONDO_0003093,mucoepidermoid esophageal carcinoma +14.2467983,MONDO:0003439,http://purl.obolibrary.org/obo/MONDO_0003439,urinary bladder villous adenoma +14.2467983,MONDO:0003632,http://purl.obolibrary.org/obo/MONDO_0003632,endocervicitis +14.2467983,MONDO:0003666,http://purl.obolibrary.org/obo/MONDO_0003666,fallopian tube endometrioid adenocarcinoma +14.2467983,MONDO:0003829,http://purl.obolibrary.org/obo/MONDO_0003829,chromophil adenoma of the kidney +14.2467983,MONDO:0003866,http://purl.obolibrary.org/obo/MONDO_0003866,liver extraskeletal osteosarcoma +14.2467983,MONDO:0003978,http://purl.obolibrary.org/obo/MONDO_0003978,colon small cell neuroendocrine carcinoma +14.2467983,MONDO:0004130,http://purl.obolibrary.org/obo/MONDO_0004130,anus basaloid carcinoma +14.2467983,MONDO:0004194,http://purl.obolibrary.org/obo/MONDO_0004194,ovarian stromal hyperthecosis +14.2467983,MONDO:0004319,http://purl.obolibrary.org/obo/MONDO_0004319,hypercalcemic type ovarian small cell carcinoma +14.2467983,MONDO:0004440,http://purl.obolibrary.org/obo/MONDO_0004440,pineal region meningioma +14.2467983,MONDO:0004473,http://purl.obolibrary.org/obo/MONDO_0004473,epiglottis cancer +14.2467983,MONDO:0004901,http://purl.obolibrary.org/obo/MONDO_0004901,lingual-facial-buccal dyskinesia +14.2467983,MONDO:0005309,http://purl.obolibrary.org/obo/MONDO_0005309,spinal fracture +14.2467983,MONDO:0005974,http://purl.obolibrary.org/obo/MONDO_0005974,strongyloidiasis +14.2467983,MONDO:0006395,http://purl.obolibrary.org/obo/MONDO_0006395,rectal tubulovillous adenoma +14.2467983,MONDO:0006557,http://purl.obolibrary.org/obo/MONDO_0006557,hemangioma of subcutaneous tissue +14.2467983,MONDO:0006752,http://purl.obolibrary.org/obo/MONDO_0006752,Erysipelothrix rhusiopathiae infectious disease +14.2467983,MONDO:0006864,http://purl.obolibrary.org/obo/MONDO_0006864,necrotizing sialometaplasia +14.2467983,MONDO:0006887,http://purl.obolibrary.org/obo/MONDO_0006887,parametritis +14.2467983,MONDO:0007172,http://purl.obolibrary.org/obo/MONDO_0007172,atrial septal defect 1 +14.2467983,MONDO:0007315,http://purl.obolibrary.org/obo/MONDO_0007315,cherubism +14.2467983,MONDO:0007883,http://purl.obolibrary.org/obo/MONDO_0007883,lazy leukocyte syndrome +14.2467983,MONDO:0007982,http://purl.obolibrary.org/obo/MONDO_0007982,"metaphyseal chondrodysplasia, Jansen type" +14.2467983,MONDO:0008017,http://purl.obolibrary.org/obo/MONDO_0008017,hereditary mucoepithelial dysplasia +14.2467983,MONDO:0008098,http://purl.obolibrary.org/obo/MONDO_0008098,"mesomelic dwarfism, Nievergelt type" +14.2467983,MONDO:0008368,http://purl.obolibrary.org/obo/MONDO_0008368,autosomal dominant distal renal tubular acidosis +14.2467983,MONDO:0008389,http://purl.obolibrary.org/obo/MONDO_0008389,autosomal dominant Robinow syndrome +14.2467983,MONDO:0008408,http://purl.obolibrary.org/obo/MONDO_0008408,"scapuloperoneal spinal muscular atrophy, autosomal dominant" +14.2467983,MONDO:0008448,http://purl.obolibrary.org/obo/MONDO_0008448,spheroid body myopathy +14.2467983,MONDO:0008593,http://purl.obolibrary.org/obo/MONDO_0008593,trichomegaly +14.2467983,MONDO:0008765,http://purl.obolibrary.org/obo/MONDO_0008765,Leber congenital amaurosis 2 +14.2467983,MONDO:0009414,http://purl.obolibrary.org/obo/MONDO_0009414,glycogen storage disease due to hepatic glycogen synthase deficiency +14.2467983,MONDO:0009603,http://purl.obolibrary.org/obo/MONDO_0009603,3-hydroxyisobutyryl-CoA hydrolase deficiency +14.2467983,MONDO:0009798,http://purl.obolibrary.org/obo/MONDO_0009798,intellectual disability-cataracts-calcified pinnae-myopathy syndrome +14.2467983,MONDO:0009825,http://purl.obolibrary.org/obo/MONDO_0009825,5-oxoprolinase deficiency +14.2467983,MONDO:0010013,http://purl.obolibrary.org/obo/MONDO_0010013,schneckenbecken dysplasia +14.2467983,MONDO:0010142,http://purl.obolibrary.org/obo/MONDO_0010142,hypothyroidism due to TSH receptor mutations +14.2467983,MONDO:0010515,http://purl.obolibrary.org/obo/MONDO_0010515,Meester-Loeys syndrome +14.2467983,MONDO:0010549,http://purl.obolibrary.org/obo/MONDO_0010549,Charcot-Marie-Tooth disease X-linked dominant 1 +14.2467983,MONDO:0010666,http://purl.obolibrary.org/obo/MONDO_0010666,none +14.2467983,MONDO:0010704,http://purl.obolibrary.org/obo/MONDO_0010704,otopalatodigital syndrome type 1 +14.2467983,MONDO:0010711,http://purl.obolibrary.org/obo/MONDO_0010711,TARP syndrome +14.2467983,MONDO:0011246,http://purl.obolibrary.org/obo/MONDO_0011246,megaconial type congenital muscular dystrophy +14.2467983,MONDO:0011321,http://purl.obolibrary.org/obo/MONDO_0011321,expansile bone lesions +14.2467983,MONDO:0011397,http://purl.obolibrary.org/obo/MONDO_0011397,"autosomal dominant cerebellar ataxia, deafness and narcolepsy" +14.2467983,MONDO:0011425,http://purl.obolibrary.org/obo/MONDO_0011425,dilated cardiomyopathy 1H +14.2467983,MONDO:0011464,http://purl.obolibrary.org/obo/MONDO_0011464,spinocerebellar ataxia type 11 +14.2467983,MONDO:0011803,http://purl.obolibrary.org/obo/MONDO_0011803,hereditary spastic paraplegia 7 +14.2467983,MONDO:0011878,http://purl.obolibrary.org/obo/MONDO_0011878,Worth syndrome +14.2467983,MONDO:0011975,http://purl.obolibrary.org/obo/MONDO_0011975,paternal uniparental disomy of chromosome 14 +14.2467983,MONDO:0013127,http://purl.obolibrary.org/obo/MONDO_0013127,asphyxiating thoracic dystrophy 3 +14.2467983,MONDO:0013178,http://purl.obolibrary.org/obo/MONDO_0013178,congenital muscular dystrophy due to LMNA mutation +14.2467983,MONDO:0013357,http://purl.obolibrary.org/obo/MONDO_0013357,"chromosome 17q11.2 deletion syndrome, 1.4Mb" +14.2467983,MONDO:0013536,http://purl.obolibrary.org/obo/MONDO_0013536,heme oxygenase 1 deficiency +14.2467983,MONDO:0013576,http://purl.obolibrary.org/obo/MONDO_0013576,recurrent infections associated with rare immunoglobulin isotypes deficiency +14.2467983,MONDO:0013968,http://purl.obolibrary.org/obo/MONDO_0013968,PGM1-CDG +14.2467983,MONDO:0014218,http://purl.obolibrary.org/obo/MONDO_0014218,severe dermatitis-multiple allergies-metabolic wasting syndrome +14.2467983,MONDO:0014833,http://purl.obolibrary.org/obo/MONDO_0014833,heart and brain malformation syndrome +14.2467983,MONDO:0016444,http://purl.obolibrary.org/obo/MONDO_0016444,primary anetoderma +14.2467983,MONDO:0016665,http://purl.obolibrary.org/obo/MONDO_0016665,unclassified vasculitis +14.2467983,MONDO:0016779,http://purl.obolibrary.org/obo/MONDO_0016779,multiple congenital anomalies due to 14q32.2 maternally expressed gene defect +14.2467983,MONDO:0017257,http://purl.obolibrary.org/obo/MONDO_0017257,idiopathic posterior uveitis +14.2467983,MONDO:0017744,http://purl.obolibrary.org/obo/MONDO_0017744,disorder of O-xylosyl/N-acetylgalactosaminylglycan synthesis +14.2467983,MONDO:0017746,http://purl.obolibrary.org/obo/MONDO_0017746,atypical Rett syndrome +14.2467983,MONDO:0017876,http://purl.obolibrary.org/obo/MONDO_0017876,Venezuelan hemorrhagic fever +14.2467983,MONDO:0018031,http://purl.obolibrary.org/obo/MONDO_0018031,granulomatous slack skin disease +14.2467983,MONDO:0019095,http://purl.obolibrary.org/obo/MONDO_0019095,plague +14.2467983,MONDO:0019525,http://purl.obolibrary.org/obo/MONDO_0019525,tetrasomy X +14.2467983,MONDO:0020342,http://purl.obolibrary.org/obo/MONDO_0020342,congenital myopathy with excess of thin filaments +14.2467983,MONDO:0020428,http://purl.obolibrary.org/obo/MONDO_0020428,congenital Gerbode defect +14.2467983,MONDO:0020483,http://purl.obolibrary.org/obo/MONDO_0020483,acetazolamide-responsive myotonia +14.2467983,MONDO:0021001,http://purl.obolibrary.org/obo/MONDO_0021001,hemochromatosis type 1 +14.2467983,MONDO:0021285,http://purl.obolibrary.org/obo/MONDO_0021285,carcinoma in situ of urethra +14.2467983,MONDO:0021478,http://purl.obolibrary.org/obo/MONDO_0021478,benign neoplasm of nasopharynx +14.2467983,MONDO:0021529,http://purl.obolibrary.org/obo/MONDO_0021529,benign neoplasm of chest wall +14.2467983,MONDO:0021736,http://purl.obolibrary.org/obo/MONDO_0021736,proctosigmoiditis +14.2467983,MONDO:0023152,http://purl.obolibrary.org/obo/MONDO_0023152,fibrocartilaginous embolism +14.2467983,MONDO:0023679,http://purl.obolibrary.org/obo/MONDO_0023679,hematohidrosis +14.2467983,MONDO:0024363,http://purl.obolibrary.org/obo/MONDO_0024363,rapid eye movement sleep disorder +14.2467983,MONDO:0024663,http://purl.obolibrary.org/obo/MONDO_0024663,primary skin meningioma +14.2467983,MONDO:0030055,http://purl.obolibrary.org/obo/MONDO_0030055,sorbitol dehydrogenase deficiency with peripheral neuropathy +14.2467983,MONDO:0030702,http://purl.obolibrary.org/obo/MONDO_0030702,autoimmune atherosclerosis +14.2467983,MONDO:0040870,http://purl.obolibrary.org/obo/MONDO_0040870,primary polydipsia +14.2467983,MONDO:0041167,http://purl.obolibrary.org/obo/MONDO_0041167,carcinoid crisis +14.2467983,MONDO:0043004,http://purl.obolibrary.org/obo/MONDO_0043004,Weil's disease +14.2467983,MONDO:0044871,http://purl.obolibrary.org/obo/MONDO_0044871,"dystonia, focal, task-specific" +14.2467983,MONDO:0100347,http://purl.obolibrary.org/obo/MONDO_0100347,carcinoid syndrome +14.2467983,MOP:0000494,http://purl.obolibrary.org/obo/MOP_0000494,none +14.2467983,NCBITaxon:10093,http://purl.obolibrary.org/obo/NCBITaxon_10093,none +14.2467983,NCBITaxon:10264,http://purl.obolibrary.org/obo/NCBITaxon_10264,Pigeonpox virus +14.2467983,NCBITaxon:102815,http://purl.obolibrary.org/obo/NCBITaxon_102815,none +14.2467983,NCBITaxon:10442,http://purl.obolibrary.org/obo/NCBITaxon_10442,none +14.2467983,NCBITaxon:1176516,http://purl.obolibrary.org/obo/NCBITaxon_1176516,none +14.2467983,NCBITaxon:12129,http://purl.obolibrary.org/obo/NCBITaxon_12129,none +14.2467983,NCBITaxon:1227813,http://purl.obolibrary.org/obo/NCBITaxon_1227813,none +14.2467983,NCBITaxon:12470,http://purl.obolibrary.org/obo/NCBITaxon_12470,none +14.2467983,NCBITaxon:125945,http://purl.obolibrary.org/obo/NCBITaxon_125945,none +14.2467983,NCBITaxon:13366,http://purl.obolibrary.org/obo/NCBITaxon_13366,none +14.2467983,NCBITaxon:1350,http://purl.obolibrary.org/obo/NCBITaxon_1350,Enterococcus +14.2467983,NCBITaxon:136187,http://purl.obolibrary.org/obo/NCBITaxon_136187,none +14.2467983,NCBITaxon:138,http://purl.obolibrary.org/obo/NCBITaxon_138,Borrelia +14.2467983,NCBITaxon:1453408,http://purl.obolibrary.org/obo/NCBITaxon_1453408,none +14.2467983,NCBITaxon:146094,http://purl.obolibrary.org/obo/NCBITaxon_146094,none +14.2467983,NCBITaxon:147428,http://purl.obolibrary.org/obo/NCBITaxon_147428,none +14.2467983,NCBITaxon:1485168,http://purl.obolibrary.org/obo/NCBITaxon_1485168,Longamoebia +14.2467983,NCBITaxon:1489793,http://purl.obolibrary.org/obo/NCBITaxon_1489793,none +14.2467983,NCBITaxon:1593277,http://purl.obolibrary.org/obo/NCBITaxon_1593277,Onygenales incertae sedis +14.2467983,NCBITaxon:162481,http://purl.obolibrary.org/obo/NCBITaxon_162481,none +14.2467983,NCBITaxon:163725,http://purl.obolibrary.org/obo/NCBITaxon_163725,none +14.2467983,NCBITaxon:1648029,http://purl.obolibrary.org/obo/NCBITaxon_1648029,none +14.2467983,NCBITaxon:1648036,http://purl.obolibrary.org/obo/NCBITaxon_1648036,none +14.2467983,NCBITaxon:171,http://purl.obolibrary.org/obo/NCBITaxon_171,Leptospira +14.2467983,NCBITaxon:1827,http://purl.obolibrary.org/obo/NCBITaxon_1827,none +14.2467983,NCBITaxon:183605,http://purl.obolibrary.org/obo/NCBITaxon_183605,none +14.2467983,NCBITaxon:189458,http://purl.obolibrary.org/obo/NCBITaxon_189458,none +14.2467983,NCBITaxon:1933290,http://purl.obolibrary.org/obo/NCBITaxon_1933290,none +14.2467983,NCBITaxon:194961,http://purl.obolibrary.org/obo/NCBITaxon_194961,none +14.2467983,NCBITaxon:202994,http://purl.obolibrary.org/obo/NCBITaxon_202994,none +14.2467983,NCBITaxon:204815,http://purl.obolibrary.org/obo/NCBITaxon_204815,Takifugu niphobles +14.2467983,NCBITaxon:219121,http://purl.obolibrary.org/obo/NCBITaxon_219121,none +14.2467983,NCBITaxon:23672,http://purl.obolibrary.org/obo/NCBITaxon_23672,none +14.2467983,NCBITaxon:238069,http://purl.obolibrary.org/obo/NCBITaxon_238069,none +14.2467983,NCBITaxon:241780,http://purl.obolibrary.org/obo/NCBITaxon_241780,none +14.2467983,NCBITaxon:249199,http://purl.obolibrary.org/obo/NCBITaxon_249199,none +14.2467983,NCBITaxon:2560585,http://purl.obolibrary.org/obo/NCBITaxon_2560585,none +14.2467983,NCBITaxon:2560748,http://purl.obolibrary.org/obo/NCBITaxon_2560748,none +14.2467983,NCBITaxon:2613861,http://purl.obolibrary.org/obo/NCBITaxon_2613861,none +14.2467983,NCBITaxon:284812,http://purl.obolibrary.org/obo/NCBITaxon_284812,none +14.2467983,NCBITaxon:30013,http://purl.obolibrary.org/obo/NCBITaxon_30013,none +14.2467983,NCBITaxon:312185,http://purl.obolibrary.org/obo/NCBITaxon_312185,none +14.2467983,NCBITaxon:31722,http://purl.obolibrary.org/obo/NCBITaxon_31722,none +14.2467983,NCBITaxon:31770,http://purl.obolibrary.org/obo/NCBITaxon_31770,none +14.2467983,NCBITaxon:334202,http://purl.obolibrary.org/obo/NCBITaxon_334202,none +14.2467983,NCBITaxon:33677,http://purl.obolibrary.org/obo/NCBITaxon_33677,Acanthamoebidae +14.2467983,NCBITaxon:33759,http://purl.obolibrary.org/obo/NCBITaxon_33759,none +14.2467983,NCBITaxon:33763,http://purl.obolibrary.org/obo/NCBITaxon_33763,none +14.2467983,NCBITaxon:363716,http://purl.obolibrary.org/obo/NCBITaxon_363716,none +14.2467983,NCBITaxon:3689,http://purl.obolibrary.org/obo/NCBITaxon_3689,none +14.2467983,NCBITaxon:3754,http://purl.obolibrary.org/obo/NCBITaxon_3754,Prunus +14.2467983,NCBITaxon:37959,http://purl.obolibrary.org/obo/NCBITaxon_37959,none +14.2467983,NCBITaxon:39525,http://purl.obolibrary.org/obo/NCBITaxon_39525,none +14.2467983,NCBITaxon:39526,http://purl.obolibrary.org/obo/NCBITaxon_39526,none +14.2467983,NCBITaxon:397342,http://purl.obolibrary.org/obo/NCBITaxon_397342,none +14.2467983,NCBITaxon:41460,http://purl.obolibrary.org/obo/NCBITaxon_41460,none +14.2467983,NCBITaxon:43915,http://purl.obolibrary.org/obo/NCBITaxon_43915,none +14.2467983,NCBITaxon:450605,http://purl.obolibrary.org/obo/NCBITaxon_450605,none +14.2467983,NCBITaxon:45661,http://purl.obolibrary.org/obo/NCBITaxon_45661,none +14.2467983,NCBITaxon:4575,http://purl.obolibrary.org/obo/NCBITaxon_4575,none +14.2467983,NCBITaxon:47900,http://purl.obolibrary.org/obo/NCBITaxon_47900,none +14.2467983,NCBITaxon:51165,http://purl.obolibrary.org/obo/NCBITaxon_51165,none +14.2467983,NCBITaxon:54124,http://purl.obolibrary.org/obo/NCBITaxon_54124,none +14.2467983,NCBITaxon:54125,http://purl.obolibrary.org/obo/NCBITaxon_54125,none +14.2467983,NCBITaxon:555280,http://purl.obolibrary.org/obo/NCBITaxon_555280,Discosea +14.2467983,NCBITaxon:555407,http://purl.obolibrary.org/obo/NCBITaxon_555407,Centramoebida +14.2467983,NCBITaxon:57282,http://purl.obolibrary.org/obo/NCBITaxon_57282,none +14.2467983,NCBITaxon:5754,http://purl.obolibrary.org/obo/NCBITaxon_5754,Acanthamoeba +14.2467983,NCBITaxon:57910,http://purl.obolibrary.org/obo/NCBITaxon_57910,none +14.2467983,NCBITaxon:6250,http://purl.obolibrary.org/obo/NCBITaxon_6250,Ascarididae +14.2467983,NCBITaxon:6268,http://purl.obolibrary.org/obo/NCBITaxon_6268,Anisakis +14.2467983,NCBITaxon:6286,http://purl.obolibrary.org/obo/NCBITaxon_6286,Dirofilaria +14.2467983,NCBITaxon:64288,http://purl.obolibrary.org/obo/NCBITaxon_64288,none +14.2467983,NCBITaxon:64316,http://purl.obolibrary.org/obo/NCBITaxon_64316,none +14.2467983,NCBITaxon:6592,http://purl.obolibrary.org/obo/NCBITaxon_6592,none +14.2467983,NCBITaxon:688436,http://purl.obolibrary.org/obo/NCBITaxon_688436,none +14.2467983,NCBITaxon:721805,http://purl.obolibrary.org/obo/NCBITaxon_721805,Amygdaleae +14.2467983,NCBITaxon:7291,http://purl.obolibrary.org/obo/NCBITaxon_7291,none +14.2467983,NCBITaxon:74489,http://purl.obolibrary.org/obo/NCBITaxon_74489,none +14.2467983,NCBITaxon:8016,http://purl.obolibrary.org/obo/NCBITaxon_8016,Oncorhynchus +14.2467983,NCBITaxon:81710,http://purl.obolibrary.org/obo/NCBITaxon_81710,none +14.2467983,NCBITaxon:81852,http://purl.obolibrary.org/obo/NCBITaxon_81852,Enterococcaceae +14.2467983,NCBITaxon:862508,http://purl.obolibrary.org/obo/NCBITaxon_862508,none +14.2467983,NCBITaxon:866800,http://purl.obolibrary.org/obo/NCBITaxon_866800,none +14.2467983,PR:000000723,http://purl.obolibrary.org/obo/PR_000000723,voltage-gated potassium channel KCNB2 +14.2467983,PR:000000733,http://purl.obolibrary.org/obo/PR_000000733,none +14.2467983,PR:000001296,http://purl.obolibrary.org/obo/PR_000001296,CD109 molecule +14.2467983,PR:000001535,http://purl.obolibrary.org/obo/PR_000001535,G-protein coupled receptor 61 +14.2467983,PR:000001602,http://purl.obolibrary.org/obo/PR_000001602,mas-related G-protein coupled receptor D +14.2467983,PR:000001642,http://purl.obolibrary.org/obo/PR_000001642,probable G-protein coupled receptor 27 +14.2467983,PR:000002021,http://purl.obolibrary.org/obo/PR_000002021,MHC class II histocompatibility antigen beta chain DRB4 +14.2467983,PR:000002074,http://purl.obolibrary.org/obo/PR_000002074,potassium channel subfamily K member 15 +14.2467983,PR:000002081,http://purl.obolibrary.org/obo/PR_000002081,potassium channel subfamily T member 2 +14.2467983,PR:000003060,http://purl.obolibrary.org/obo/PR_000003060,protein kinase C gamma type +14.2467983,PR:000003623,http://purl.obolibrary.org/obo/PR_000003623,alkaline ceramidase 1 +14.2467983,PR:000003629,http://purl.obolibrary.org/obo/PR_000003629,2-amino-3-carboxymuconate-6-semialdehyde decarboxylase +14.2467983,PR:000003776,http://purl.obolibrary.org/obo/PR_000003776,adipogenin +14.2467983,PR:000003981,http://purl.obolibrary.org/obo/PR_000003981,solute carrier family 35 member G3 +14.2467983,PR:000004098,http://purl.obolibrary.org/obo/PR_000004098,AP-1 complex subunit sigma-3 +14.2467983,PR:000004119,http://purl.obolibrary.org/obo/PR_000004119,amyloid beta A4 precursor protein-binding family B member 1-interacting protein +14.2467983,PR:000004241,http://purl.obolibrary.org/obo/PR_000004241,Rho GTPase-activating protein 9 +14.2467983,PR:000004307,http://purl.obolibrary.org/obo/PR_000004307,actin-related protein 11 +14.2467983,PR:000004352,http://purl.obolibrary.org/obo/PR_000004352,ankyrin repeat and SOCS box protein 3 +14.2467983,PR:000004512,http://purl.obolibrary.org/obo/PR_000004512,ataxin-8 +14.2467983,PR:000004681,http://purl.obolibrary.org/obo/PR_000004681,breast carcinoma-amplified sequence 4 +14.2467983,PR:000004730,http://purl.obolibrary.org/obo/PR_000004730,protein BEX4 +14.2467983,PR:000004838,http://purl.obolibrary.org/obo/PR_000004838,biotinidase +14.2467983,PR:000004881,http://purl.obolibrary.org/obo/PR_000004881,complement C1q-like protein 3 +14.2467983,PR:000004953,http://purl.obolibrary.org/obo/PR_000004953,voltage-dependent calcium channel gamma-4 subunit +14.2467983,PR:000004970,http://purl.obolibrary.org/obo/PR_000004970,calcium-binding and coiled-coil domain-containing protein 1 +14.2467983,PR:000004998,http://purl.obolibrary.org/obo/PR_000004998,calmodulin-regulated spectrin-associated protein 1 +14.2467983,PR:000005014,http://purl.obolibrary.org/obo/PR_000005014,calpain-14 +14.2467983,PR:000005194,http://purl.obolibrary.org/obo/PR_000005194,anaphase-promoting complex subunit CDC26 +14.2467983,PR:000005333,http://purl.obolibrary.org/obo/PR_000005333,centromere protein M +14.2467983,PR:000005359,http://purl.obolibrary.org/obo/PR_000005359,centrosomal protein of 97 kDa +14.2467983,PR:000005364,http://purl.obolibrary.org/obo/PR_000005364,ceramide kinase-like protein +14.2467983,PR:000005488,http://purl.obolibrary.org/obo/PR_000005488,protein CIAO1 +14.2467983,PR:000005674,http://purl.obolibrary.org/obo/PR_000005674,contactin-associated protein-like 3 +14.2467983,PR:000005677,http://purl.obolibrary.org/obo/PR_000005677,contactin-associated protein-like 5 +14.2467983,PR:000005697,http://purl.obolibrary.org/obo/PR_000005697,collagen alpha-1(XIII) chain +14.2467983,PR:000005759,http://purl.obolibrary.org/obo/PR_000005759,ladybird homeobox corepressor 1-like protein +14.2467983,PR:000005829,http://purl.obolibrary.org/obo/PR_000005829,cleavage and polyadenylation specificity factor subunit 2 +14.2467983,PR:000006083,http://purl.obolibrary.org/obo/PR_000006083,cytochrome b5 reductase 4 +14.2467983,PR:000006129,http://purl.obolibrary.org/obo/PR_000006129,cytochrome P450 39A1 +14.2467983,PR:000006214,http://purl.obolibrary.org/obo/PR_000006214,none +14.2467983,PR:000006287,http://purl.obolibrary.org/obo/PR_000006287,deleted in azoospermia protein 4 +14.2467983,PR:000006346,http://purl.obolibrary.org/obo/PR_000006346,protein DDI1 homolog 2 +14.2467983,PR:000006429,http://purl.obolibrary.org/obo/PR_000006429,dexamethasone-induced protein +14.2467983,PR:000006649,http://purl.obolibrary.org/obo/PR_000006649,zinc finger protein neuro-d4 +14.2467983,PR:000006822,http://purl.obolibrary.org/obo/PR_000006822,none +14.2467983,PR:000007013,http://purl.obolibrary.org/obo/PR_000007013,chymotrypsin-like elastase family member 3B +14.2467983,PR:000007030,http://purl.obolibrary.org/obo/PR_000007030,RNA polymerase II elongation factor ELL3 +14.2467983,PR:000007092,http://purl.obolibrary.org/obo/PR_000007092,alpha-endosulfine +14.2467983,PR:000007108,http://purl.obolibrary.org/obo/PR_000007108,band 4.1-like protein 1 +14.2467983,PR:000007112,http://purl.obolibrary.org/obo/PR_000007112,band 4.1-like protein 4B +14.2467983,PR:000007264,http://purl.obolibrary.org/obo/PR_000007264,exosome complex component RRP42 +14.2467983,PR:000007334,http://purl.obolibrary.org/obo/PR_000007334,Fanconi anemia group E protein +14.2467983,PR:000007432,http://purl.obolibrary.org/obo/PR_000007432,high affinity immunoglobulin epsilon receptor subunit gamma +14.2467983,PR:000007474,http://purl.obolibrary.org/obo/PR_000007474,"FYVE, RhoGEF and PH domain-containing protein 2" +14.2467983,PR:000007567,http://purl.obolibrary.org/obo/PR_000007567,feline leukemia virus subgroup C receptor-related protein 2 +14.2467983,PR:000007591,http://purl.obolibrary.org/obo/PR_000007591,protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha +14.2467983,PR:000007596,http://purl.obolibrary.org/obo/PR_000007596,folate receptor gamma +14.2467983,PR:000008285,http://purl.obolibrary.org/obo/PR_000008285,germ cell-specific gene 1-like protein +14.2467983,PR:000008351,http://purl.obolibrary.org/obo/PR_000008351,guanylate cyclase soluble subunit beta-1 +14.2467983,PR:000008445,http://purl.obolibrary.org/obo/PR_000008445,hyaluronan and proteoglycan link protein 2 +14.2467983,PR:000008552,http://purl.obolibrary.org/obo/PR_000008552,hypermethylated in cancer 2 protein +14.2467983,PR:000008559,http://purl.obolibrary.org/obo/PR_000008559,putative spermatid-specific linker histone H1-like protein +14.2467983,PR:000008591,http://purl.obolibrary.org/obo/PR_000008591,histone H2B type 1-K +14.2467983,PR:000008595,http://purl.obolibrary.org/obo/PR_000008595,histone H4-like protein type G +14.2467983,PR:000008787,http://purl.obolibrary.org/obo/PR_000008787,3 beta-hydroxysteroid dehydrogenase type 7 +14.2467983,PR:000009076,http://purl.obolibrary.org/obo/PR_000009076,integrator complex subunit 7 +14.2467983,PR:000009084,http://purl.obolibrary.org/obo/PR_000009084,inositol polyphosphate multikinase +14.2467983,PR:000009285,http://purl.obolibrary.org/obo/PR_000009285,kinesin-like protein KIF12 +14.2467983,PR:000009293,http://purl.obolibrary.org/obo/PR_000009293,kinesin-like protein KIF18B +14.2467983,PR:000009372,http://purl.obolibrary.org/obo/PR_000009372,kelch-like protein 1 +14.2467983,PR:000009826,http://purl.obolibrary.org/obo/PR_000009826,protein lin-7 homolog B +14.2467983,PR:000009943,http://purl.obolibrary.org/obo/PR_000009943,leucine-rich repeat flightless-interacting protein 2 +14.2467983,PR:000009982,http://purl.obolibrary.org/obo/PR_000009982,leucine zipper protein 1 +14.2467983,PR:000010091,http://purl.obolibrary.org/obo/PR_000010091,protein MAK16 +14.2467983,PR:000010103,http://purl.obolibrary.org/obo/PR_000010103,"endoplasmic reticulum mannosyl-oligosaccharide 1,2-alpha-mannosidase" +14.2467983,PR:000010197,http://purl.obolibrary.org/obo/PR_000010197,microtubule-associated serine/threonine-protein kinase 3 +14.2467983,PR:000010298,http://purl.obolibrary.org/obo/PR_000010298,mediator of RNA polymerase II transcription subunit 26 +14.2467983,PR:000010302,http://purl.obolibrary.org/obo/PR_000010302,mediator of RNA polymerase II transcription subunit 30 +14.2467983,PR:000010477,http://purl.obolibrary.org/obo/PR_000010477,matrix metalloproteinase-17 +14.2467983,PR:000010650,http://purl.obolibrary.org/obo/PR_000010650,"inositol 1,4,5-triphosphate receptor associated 1" +14.2467983,PR:000010729,http://purl.obolibrary.org/obo/PR_000010729,tesmin +14.2467983,PR:000010823,http://purl.obolibrary.org/obo/PR_000010823,myosin-13 +14.2467983,PR:000010851,http://purl.obolibrary.org/obo/PR_000010851,myosin-XVI +14.2467983,PR:000010854,http://purl.obolibrary.org/obo/PR_000010854,myosin-XIX +14.2467983,PR:000010905,http://purl.obolibrary.org/obo/PR_000010905,none +14.2467983,PR:000010976,http://purl.obolibrary.org/obo/PR_000010976,nucleosome assembly protein 1-like 2 +14.2467983,PR:000011021,http://purl.obolibrary.org/obo/PR_000011021,condensin-2 complex subunit D3 +14.2467983,PR:000011024,http://purl.obolibrary.org/obo/PR_000011024,condensin complex subunit 2 +14.2467983,PR:000011277,http://purl.obolibrary.org/obo/PR_000011277,"NACHT, LRR and PYD domains-containing protein 9" +14.2467983,PR:000011386,http://purl.obolibrary.org/obo/PR_000011386,neuropeptide W +14.2467983,PR:000011625,http://purl.obolibrary.org/obo/PR_000011625,noelin-3 +14.2467983,PR:000011641,http://purl.obolibrary.org/obo/PR_000011641,one cut domain family member 3 +14.2467983,PR:000012045,http://purl.obolibrary.org/obo/PR_000012045,oxysterol-binding protein-related protein 10 +14.2467983,PR:000012060,http://purl.obolibrary.org/obo/PR_000012060,oncostatin-M-specific receptor subunit beta +14.2467983,PR:000012292,http://purl.obolibrary.org/obo/PR_000012292,protein mono-ADP-ribosyltransferase PARP12 +14.2467983,PR:000012413,http://purl.obolibrary.org/obo/PR_000012413,Polycomb group RING finger protein 5 +14.2467983,PR:000012518,http://purl.obolibrary.org/obo/PR_000012518,p53 and DNA damage-regulated protein 1 +14.2467983,PR:000012571,http://purl.obolibrary.org/obo/PR_000012571,phosphoribosylformylglycinamidine synthase +14.2467983,PR:000012629,http://purl.obolibrary.org/obo/PR_000012629,phosphatase and actin regulator 4 +14.2467983,PR:000012648,http://purl.obolibrary.org/obo/PR_000012648,PHD finger protein 21A +14.2467983,PR:000012684,http://purl.obolibrary.org/obo/PR_000012684,phosphatidylinositol 4-kinase beta +14.2467983,PR:000012757,http://purl.obolibrary.org/obo/PR_000012757,membrane-associated phosphatidylinositol transfer protein 2 +14.2467983,PR:000012780,http://purl.obolibrary.org/obo/PR_000012780,cAMP-dependent protein kinase inhibitor beta +14.2467983,PR:000012860,http://purl.obolibrary.org/obo/PR_000012860,pleckstrin homology domain-containing family G member 2 +14.2467983,PR:000012931,http://purl.obolibrary.org/obo/PR_000012931,paraneoplastic antigen Ma3 +14.2467983,PR:000012991,http://purl.obolibrary.org/obo/PR_000012991,"DNA-directed RNA polymerases I, II, and III subunit RPABC1" +14.2467983,PR:000013498,http://purl.obolibrary.org/obo/PR_000013498,tRNA pseudouridine synthase 3 +14.2467983,PR:000013546,http://purl.obolibrary.org/obo/PR_000013546,none +14.2467983,PR:000013650,http://purl.obolibrary.org/obo/PR_000013650,Rab GTPase-activating protein 1 +14.2467983,PR:000013831,http://purl.obolibrary.org/obo/PR_000013831,calcipressin-3 +14.2467983,PR:000013832,http://purl.obolibrary.org/obo/PR_000013832,RCC1 and BTB domain-containing protein 1 +14.2467983,PR:000013897,http://purl.obolibrary.org/obo/PR_000013897,resistin-like beta +14.2467983,PR:000013930,http://purl.obolibrary.org/obo/PR_000013930,DNA-binding protein RFXANK +14.2467983,PR:000014011,http://purl.obolibrary.org/obo/PR_000014011,regulating synaptic membrane exocytosis protein 3 +14.2467983,PR:000014020,http://purl.obolibrary.org/obo/PR_000014020,serine/threonine-protein kinase RIO2 +14.2467983,PR:000014210,http://purl.obolibrary.org/obo/PR_000014210,60S ribosomal protein L28 +14.2467983,PR:000014224,http://purl.obolibrary.org/obo/PR_000014224,60S ribosomal protein L38 +14.2467983,PR:000014278,http://purl.obolibrary.org/obo/PR_000014278,"40S ribosomal protein S4, Y isoform 1" +14.2467983,PR:000014294,http://purl.obolibrary.org/obo/PR_000014294,repetin +14.2467983,PR:000014312,http://purl.obolibrary.org/obo/PR_000014312,ribosomal RNA processing protein 1 homolog B +14.2467983,PR:000014435,http://purl.obolibrary.org/obo/PR_000014435,sarcoma antigen 1 +14.2467983,PR:000014442,http://purl.obolibrary.org/obo/PR_000014442,sphingomyelin synthase-related protein 1 +14.2467983,PR:000014584,http://purl.obolibrary.org/obo/PR_000014584,vesicle-trafficking protein SEC22b +14.2467983,PR:000014621,http://purl.obolibrary.org/obo/PR_000014621,semaphorin-3G +14.2467983,PR:000014825,http://purl.obolibrary.org/obo/PR_000014825,endophilin-A3 +14.2467983,PR:000014838,http://purl.obolibrary.org/obo/PR_000014838,SH2 domain-containing adapter protein D +14.2467983,PR:000015114,http://purl.obolibrary.org/obo/PR_000015114,glucose-6-phosphate exchanger SLC37A1 +14.2467983,PR:000015238,http://purl.obolibrary.org/obo/PR_000015238,SLIT and NTRK-like protein 2 +14.2467983,PR:000015379,http://purl.obolibrary.org/obo/PR_000015379,sorting nexin-30 +14.2467983,PR:000015382,http://purl.obolibrary.org/obo/PR_000015382,sorting nexin-33 +14.2467983,PR:000015483,http://purl.obolibrary.org/obo/PR_000015483,spermatogenesis-associated protein 18 +14.2467983,PR:000015727,http://purl.obolibrary.org/obo/PR_000015727,double-stranded RNA-binding protein Staufen homolog 2 +14.2467983,PR:000015762,http://purl.obolibrary.org/obo/PR_000015762,stathmin-4 +14.2467983,PR:000015785,http://purl.obolibrary.org/obo/PR_000015785,syntaxin-10 +14.2467983,PR:000015860,http://purl.obolibrary.org/obo/PR_000015860,synaptonemal complex central element protein 2 +14.2467983,PR:000015996,http://purl.obolibrary.org/obo/PR_000015996,none +14.2467983,PR:000016108,http://purl.obolibrary.org/obo/PR_000016108,TBC1 domain family member 24 +14.2467983,PR:000016112,http://purl.obolibrary.org/obo/PR_000016112,TBC1 domain family member 3 +14.2467983,PR:000016229,http://purl.obolibrary.org/obo/PR_000016229,tektin-4 +14.2467983,PR:000016284,http://purl.obolibrary.org/obo/PR_000016284,"dTDP-D-glucose 4,6-dehydratase" +14.2467983,PR:000016317,http://purl.obolibrary.org/obo/PR_000016317,thimet oligopeptidase +14.2467983,PR:000016359,http://purl.obolibrary.org/obo/PR_000016359,ribosome biogenesis protein NSA2 +14.2467983,PR:000016441,http://purl.obolibrary.org/obo/PR_000016441,TATA element modulatory factor +14.2467983,PR:000016491,http://purl.obolibrary.org/obo/PR_000016491,TRAF2 and NCK-interacting protein kinase +14.2467983,PR:000016552,http://purl.obolibrary.org/obo/PR_000016552,torsin-1A-interacting protein 2 +14.2467983,PR:000016779,http://purl.obolibrary.org/obo/PR_000016779,tetratricopeptide repeat protein 21B +14.2467983,PR:000016845,http://purl.obolibrary.org/obo/PR_000016845,twinfilin-2 +14.2467983,PR:000016892,http://purl.obolibrary.org/obo/PR_000016892,none +14.2467983,PR:000017085,http://purl.obolibrary.org/obo/PR_000017085,protein unc-119 homolog B +14.2467983,PR:000017217,http://purl.obolibrary.org/obo/PR_000017217,none +14.2467983,PR:000017367,http://purl.obolibrary.org/obo/PR_000017367,none +14.2467983,PR:000017376,http://purl.obolibrary.org/obo/PR_000017376,WW domain-binding protein 11 +14.2467983,PR:000017378,http://purl.obolibrary.org/obo/PR_000017378,WW domain-binding protein 4 +14.2467983,PR:000017420,http://purl.obolibrary.org/obo/PR_000017420,protein wibg +14.2467983,PR:000017485,http://purl.obolibrary.org/obo/PR_000017485,XK-related protein 6 +14.2467983,PR:000017542,http://purl.obolibrary.org/obo/PR_000017542,protein yippee-like 1 +14.2467983,PR:000017605,http://purl.obolibrary.org/obo/PR_000017605,zinc finger CCHC domain-containing protein 12 +14.2467983,PR:000017609,http://purl.obolibrary.org/obo/PR_000017609,DBF4-type zinc finger-containing protein 2 +14.2467983,PR:000018227,http://purl.obolibrary.org/obo/PR_000018227,zinc finger and SCAN domain-containing protein 21 +14.2467983,PR:000022114,http://purl.obolibrary.org/obo/PR_000022114,none +14.2467983,PR:000022254,http://purl.obolibrary.org/obo/PR_000022254,none +14.2467983,PR:000022307,http://purl.obolibrary.org/obo/PR_000022307,none +14.2467983,PR:000022362,http://purl.obolibrary.org/obo/PR_000022362,none +14.2467983,PR:000022488,http://purl.obolibrary.org/obo/PR_000022488,none +14.2467983,PR:000022503,http://purl.obolibrary.org/obo/PR_000022503,none +14.2467983,PR:000022890,http://purl.obolibrary.org/obo/PR_000022890,none +14.2467983,PR:000022972,http://purl.obolibrary.org/obo/PR_000022972,none +14.2467983,PR:000023013,http://purl.obolibrary.org/obo/PR_000023013,translation initiation factor IF-2 +14.2467983,PR:000023235,http://purl.obolibrary.org/obo/PR_000023235,none +14.2467983,PR:000023263,http://purl.obolibrary.org/obo/PR_000023263,none +14.2467983,PR:000023267,http://purl.obolibrary.org/obo/PR_000023267,none +14.2467983,PR:000023297,http://purl.obolibrary.org/obo/PR_000023297,none +14.2467983,PR:000023333,http://purl.obolibrary.org/obo/PR_000023333,none +14.2467983,PR:000023497,http://purl.obolibrary.org/obo/PR_000023497,none +14.2467983,PR:000023852,http://purl.obolibrary.org/obo/PR_000023852,none +14.2467983,PR:000023905,http://purl.obolibrary.org/obo/PR_000023905,none +14.2467983,PR:000023984,http://purl.obolibrary.org/obo/PR_000023984,none +14.2467983,PR:000024023,http://purl.obolibrary.org/obo/PR_000024023,none +14.2467983,PR:000024248,http://purl.obolibrary.org/obo/PR_000024248,none +14.2467983,PR:000025402,http://purl.obolibrary.org/obo/PR_000025402,T cell receptor co-receptor CD8 +14.2467983,PR:000026300,http://purl.obolibrary.org/obo/PR_000026300,E3 ubiquitin-protein ligase TRIM41 +14.2467983,PR:000029185,http://purl.obolibrary.org/obo/PR_000029185,none +14.2467983,PR:000029325,http://purl.obolibrary.org/obo/PR_000029325,cilia- and flagella-associated protein 45 +14.2467983,PR:000029367,http://purl.obolibrary.org/obo/PR_000029367,serine/threonine-protein phosphatase CPPED1 +14.2467983,PR:000029465,http://purl.obolibrary.org/obo/PR_000029465,protein eva-1 homolog A +14.2467983,PR:000029507,http://purl.obolibrary.org/obo/PR_000029507,GTPase IMAP family member 1 +14.2467983,PR:000029637,http://purl.obolibrary.org/obo/PR_000029637,"transcription termination factor 3, mitochondrial" +14.2467983,PR:000029688,http://purl.obolibrary.org/obo/PR_000029688,POC1 centriolar protein homolog B +14.2467983,PR:000029715,http://purl.obolibrary.org/obo/PR_000029715,E3 ubiquitin-protein ligase RFWD3 +14.2467983,PR:000029774,http://purl.obolibrary.org/obo/PR_000029774,"probable cysteine--tRNA ligase, mitochondrial" +14.2467983,PR:000030531,http://purl.obolibrary.org/obo/PR_000030531,protein FAM170A +14.2467983,PR:000030594,http://purl.obolibrary.org/obo/PR_000030594,metallophosphoesterase MPPED2 +14.2467983,PR:000030630,http://purl.obolibrary.org/obo/PR_000030630,geminin coiled-coil domain-containing protein 1 +14.2467983,PR:000030744,http://purl.obolibrary.org/obo/PR_000030744,microtubule cross-linking factor 1 +14.2467983,PR:000030745,http://purl.obolibrary.org/obo/PR_000030745,none +14.2467983,PR:000030795,http://purl.obolibrary.org/obo/PR_000030795,protein PHTF1 +14.2467983,PR:000031037,http://purl.obolibrary.org/obo/PR_000031037,ankyrin repeat and LEM domain-containing protein 2 +14.2467983,PR:000031063,http://purl.obolibrary.org/obo/PR_000031063,CAP-Gly domain-containing linker protein 4 +14.2467983,PR:000031262,http://purl.obolibrary.org/obo/PR_000031262,centrosomal protein POC5 +14.2467983,PR:000031269,http://purl.obolibrary.org/obo/PR_000031269,glutamate-rich WD repeat-containing protein 1 +14.2467983,PR:000031391,http://purl.obolibrary.org/obo/PR_000031391,CUB and sushi domain-containing protein 2 +14.2467983,PR:000031555,http://purl.obolibrary.org/obo/PR_000031555,BMP/retinoic acid-inducible neural-specific protein 3 +14.2467983,PR:000031649,http://purl.obolibrary.org/obo/PR_000031649,Ly6/PLAUR domain-containing protein 6 +14.2467983,PR:000031652,http://purl.obolibrary.org/obo/PR_000031652,sterile alpha motif domain-containing protein 12 +14.2467983,PR:000031659,http://purl.obolibrary.org/obo/PR_000031659,adhesion G protein-coupled receptor F5 +14.2467983,PR:000031830,http://purl.obolibrary.org/obo/PR_000031830,transmembrane protein 88 +14.2467983,PR:000031859,http://purl.obolibrary.org/obo/PR_000031859,cactin +14.2467983,PR:000031929,http://purl.obolibrary.org/obo/PR_000031929,ATPase family AAA domain-containing protein 3B +14.2467983,PR:000031970,http://purl.obolibrary.org/obo/PR_000031970,cytosolic iron-sulfur assembly component 2B +14.2467983,PR:000032122,http://purl.obolibrary.org/obo/PR_000032122,probable guanine nucleotide exchange factor MCF2L2 +14.2467983,PR:000032276,http://purl.obolibrary.org/obo/PR_000032276,CKLF-like MARVEL transmembrane domain-containing protein 4 +14.2467983,PR:000032350,http://purl.obolibrary.org/obo/PR_000032350,neuroblastoma breakpoint family member 1 +14.2467983,PR:000032424,http://purl.obolibrary.org/obo/PR_000032424,E3 ubiquitin-protein ligase TRIM4 +14.2467983,PR:000032487,http://purl.obolibrary.org/obo/PR_000032487,synaptonemal complex central element protein 3 +14.2467983,PR:000032586,http://purl.obolibrary.org/obo/PR_000032586,mitotic-spindle organizing protein 1 +14.2467983,PR:000032644,http://purl.obolibrary.org/obo/PR_000032644,probable E3 ubiquitin-protein ligase HERC3 +14.2467983,PR:000032648,http://purl.obolibrary.org/obo/PR_000032648,chemokine-like protein TAFA-4 +14.2467983,PR:000032678,http://purl.obolibrary.org/obo/PR_000032678,Rho family-interacting cell polarization regulator 2 +14.2467983,PR:000033024,http://purl.obolibrary.org/obo/PR_000033024,none +14.2467983,PR:000034367,http://purl.obolibrary.org/obo/PR_000034367,none +14.2467983,PR:000034574,http://purl.obolibrary.org/obo/PR_000034574,none +14.2467983,PR:000034828,http://purl.obolibrary.org/obo/PR_000034828,none +14.2467983,PR:000037407,http://purl.obolibrary.org/obo/PR_000037407,none +14.2467983,PR:000044693,http://purl.obolibrary.org/obo/PR_000044693,molybdopterin synthase sulfur carrier subunit +14.2467983,PR:A0AQW4,http://purl.obolibrary.org/obo/PR_A0AQW4,none +14.2467983,PR:B0K004,http://purl.obolibrary.org/obo/PR_B0K004,none +14.2467983,PR:F4IMK2,http://purl.obolibrary.org/obo/PR_F4IMK2,none +14.2467983,PR:O01840,http://purl.obolibrary.org/obo/PR_O01840,none +14.2467983,PR:O14229,http://purl.obolibrary.org/obo/PR_O14229,none +14.2467983,PR:O15091,http://purl.obolibrary.org/obo/PR_O15091,mitochondrial ribonuclease P catalytic subunit (human) +14.2467983,PR:O74215,http://purl.obolibrary.org/obo/PR_O74215,none +14.2467983,PR:P07350,http://purl.obolibrary.org/obo/PR_P07350,none +14.2467983,PR:P0CW41,http://purl.obolibrary.org/obo/PR_P0CW41,none +14.2467983,PR:P0DKH5,http://purl.obolibrary.org/obo/PR_P0DKH5,none +14.2467983,PR:P11154,http://purl.obolibrary.org/obo/PR_P11154,none +14.2467983,PR:P16972,http://purl.obolibrary.org/obo/PR_P16972,none +14.2467983,PR:P30115,http://purl.obolibrary.org/obo/PR_P30115,none +14.2467983,PR:P30625,http://purl.obolibrary.org/obo/PR_P30625,none +14.2467983,PR:P31376,http://purl.obolibrary.org/obo/PR_P31376,none +14.2467983,PR:P40955,http://purl.obolibrary.org/obo/PR_P40955,none +14.2467983,PR:P43286,http://purl.obolibrary.org/obo/PR_P43286,none +14.2467983,PR:P47771,http://purl.obolibrary.org/obo/PR_P47771,none +14.2467983,PR:P52016,http://purl.obolibrary.org/obo/PR_P52016,none +14.2467983,PR:P53969,http://purl.obolibrary.org/obo/PR_P53969,none +14.2467983,PR:P70709,http://purl.obolibrary.org/obo/PR_P70709,none +14.2467983,PR:P80317,http://purl.obolibrary.org/obo/PR_P80317,none +14.2467983,PR:P91454,http://purl.obolibrary.org/obo/PR_P91454,none +14.2467983,PR:Q02710,http://purl.obolibrary.org/obo/PR_Q02710,none +14.2467983,PR:Q07914,http://purl.obolibrary.org/obo/PR_Q07914,none +14.2467983,PR:Q12046,http://purl.obolibrary.org/obo/PR_Q12046,none +14.2467983,PR:Q24432,http://purl.obolibrary.org/obo/PR_Q24432,none +14.2467983,PR:Q27324,http://purl.obolibrary.org/obo/PR_Q27324,none +14.2467983,PR:Q38895,http://purl.obolibrary.org/obo/PR_Q38895,none +14.2467983,PR:Q59PL9,http://purl.obolibrary.org/obo/PR_Q59PL9,none +14.2467983,PR:Q59SI2,http://purl.obolibrary.org/obo/PR_Q59SI2,none +14.2467983,PR:Q5ABU7,http://purl.obolibrary.org/obo/PR_Q5ABU7,none +14.2467983,PR:Q5AJC0,http://purl.obolibrary.org/obo/PR_Q5AJC0,none +14.2467983,PR:Q5BJR4,http://purl.obolibrary.org/obo/PR_Q5BJR4,none +14.2467983,PR:Q5F297,http://purl.obolibrary.org/obo/PR_Q5F297,none +14.2467983,PR:Q60664,http://purl.obolibrary.org/obo/PR_Q60664,none +14.2467983,PR:Q60997,http://purl.obolibrary.org/obo/PR_Q60997,none +14.2467983,PR:Q64280,http://purl.obolibrary.org/obo/PR_Q64280,none +14.2467983,PR:Q70DU8,http://purl.obolibrary.org/obo/PR_Q70DU8,none +14.2467983,PR:Q76LT9,http://purl.obolibrary.org/obo/PR_Q76LT9,none +14.2467983,PR:Q7TQA9,http://purl.obolibrary.org/obo/PR_Q7TQA9,none +14.2467983,PR:Q86KR9,http://purl.obolibrary.org/obo/PR_Q86KR9,none +14.2467983,PR:Q8BG93,http://purl.obolibrary.org/obo/PR_Q8BG93,none +14.2467983,PR:Q8GZN1,http://purl.obolibrary.org/obo/PR_Q8GZN1,none +14.2467983,PR:Q8JZY4,http://purl.obolibrary.org/obo/PR_Q8JZY4,none +14.2467983,PR:Q8LDP4,http://purl.obolibrary.org/obo/PR_Q8LDP4,none +14.2467983,PR:Q8LPL5,http://purl.obolibrary.org/obo/PR_Q8LPL5,none +14.2467983,PR:Q8RY24,http://purl.obolibrary.org/obo/PR_Q8RY24,none +14.2467983,PR:Q8VZF1,http://purl.obolibrary.org/obo/PR_Q8VZF1,none +14.2467983,PR:Q9BQP7,http://purl.obolibrary.org/obo/PR_Q9BQP7,mitochondrial genome maintenance exonuclease 1 (human) +14.2467983,PR:Q9C598,http://purl.obolibrary.org/obo/PR_Q9C598,none +14.2467983,PR:Q9C932,http://purl.obolibrary.org/obo/PR_Q9C932,none +14.2467983,PR:Q9FKV1,http://purl.obolibrary.org/obo/PR_Q9FKV1,none +14.2467983,PR:Q9H305,http://purl.obolibrary.org/obo/PR_Q9H305,cell death-inducing p53-target protein 1 (human) +14.2467983,PR:Q9LF50,http://purl.obolibrary.org/obo/PR_Q9LF50,none +14.2467983,PR:Q9UST7,http://purl.obolibrary.org/obo/PR_Q9UST7,none +14.2467983,PR:Q9W0R5,http://purl.obolibrary.org/obo/PR_Q9W0R5,none +14.2467983,PR:Q9WVC2,http://purl.obolibrary.org/obo/PR_Q9WVC2,none +14.2467983,PR:Q9Y802,http://purl.obolibrary.org/obo/PR_Q9Y802,none +14.2467983,SO:0000111,http://purl.obolibrary.org/obo/SO_0000111,transposable_element_gene +14.2467983,SO:0000397,http://purl.obolibrary.org/obo/SO_0000397,U6atac_snRNA +14.2467983,SO:0001058,http://purl.obolibrary.org/obo/SO_0001058,none +14.2467983,SO:0001575,http://purl.obolibrary.org/obo/SO_0001575,splice_donor_variant +14.2467983,UBERON:0000068,http://purl.obolibrary.org/obo/UBERON_0000068,embryo stage +14.2467983,UBERON:0000930,http://purl.obolibrary.org/obo/UBERON_0000930,stomodeum +14.2467983,UBERON:0001165,http://purl.obolibrary.org/obo/UBERON_0001165,pyloric antrum +14.2467983,UBERON:0001261,http://purl.obolibrary.org/obo/UBERON_0001261,lamina propria of urinary bladder +14.2467983,UBERON:0001311,http://purl.obolibrary.org/obo/UBERON_0001311,inferior vesical artery +14.2467983,UBERON:0001743,http://purl.obolibrary.org/obo/UBERON_0001743,ligament of larynx +14.2467983,UBERON:0001749,http://purl.obolibrary.org/obo/UBERON_0001749,parenchyma of parathyroid gland +14.2467983,UBERON:0001850,http://purl.obolibrary.org/obo/UBERON_0001850,lacrimal drainage system +14.2467983,UBERON:0002178,http://purl.obolibrary.org/obo/UBERON_0002178,left main bronchus +14.2467983,UBERON:0002244,http://purl.obolibrary.org/obo/UBERON_0002244,premaxilla +14.2467983,UBERON:0002668,http://purl.obolibrary.org/obo/UBERON_0002668,oculomotor nerve root +14.2467983,UBERON:0002679,http://purl.obolibrary.org/obo/UBERON_0002679,anterodorsal nucleus of thalamus +14.2467983,UBERON:0002709,http://purl.obolibrary.org/obo/UBERON_0002709,posterior nuclear complex of thalamus +14.2467983,UBERON:0002739,http://purl.obolibrary.org/obo/UBERON_0002739,medial dorsal nucleus of thalamus +14.2467983,UBERON:0003521,http://purl.obolibrary.org/obo/UBERON_0003521,pes blood vessel +14.2467983,UBERON:0003997,http://purl.obolibrary.org/obo/UBERON_0003997,hyoid bone greater horn +14.2467983,UBERON:0004686,http://purl.obolibrary.org/obo/UBERON_0004686,gastro-splenic ligament +14.2467983,UBERON:0004749,http://purl.obolibrary.org/obo/UBERON_0004749,blastodisc +14.2467983,UBERON:0004803,http://purl.obolibrary.org/obo/UBERON_0004803,penis epithelium +14.2467983,UBERON:0005086,http://purl.obolibrary.org/obo/UBERON_0005086,hair follicle placode +14.2467983,UBERON:0005359,http://purl.obolibrary.org/obo/UBERON_0005359,spinal cord ependyma +14.2467983,UBERON:0005377,http://purl.obolibrary.org/obo/UBERON_0005377,olfactory bulb glomerular layer +14.2467983,UBERON:0006261,http://purl.obolibrary.org/obo/UBERON_0006261,male genital tubercle +14.2467983,UBERON:0006597,http://purl.obolibrary.org/obo/UBERON_0006597,quadrate bone +14.2467983,UBERON:0006721,http://purl.obolibrary.org/obo/UBERON_0006721,alisphenoid bone +14.2467983,UBERON:0008598,http://purl.obolibrary.org/obo/UBERON_0008598,risorius muscle +14.2467983,UBERON:0009967,http://purl.obolibrary.org/obo/UBERON_0009967,spleen venous sinus +14.2467983,UBERON:0011251,http://purl.obolibrary.org/obo/UBERON_0011251,levator claviculae muscle +14.2467983,UBERON:0011899,http://purl.obolibrary.org/obo/UBERON_0011899,epimysium +14.2467983,UBERON:0013221,http://purl.obolibrary.org/obo/UBERON_0013221,caudofemoralis +14.2467983,UBERON:0013541,http://purl.obolibrary.org/obo/UBERON_0013541,Brodmann (1909) area 10 +14.2467983,UBERON:0013592,http://purl.obolibrary.org/obo/UBERON_0013592,presylvian sulcus +14.2467983,UBERON:0014379,http://purl.obolibrary.org/obo/UBERON_0014379,adductor hallucis muscle +14.2467983,UBERON:0014760,http://purl.obolibrary.org/obo/UBERON_0014760,gustatory nucleus +14.2467983,UBERON:0015058,http://purl.obolibrary.org/obo/UBERON_0015058,alisphenoid endochondral element +14.2467983,UBERON:0015875,http://purl.obolibrary.org/obo/UBERON_0015875,heel +14.2467983,UBERON:0016896,http://purl.obolibrary.org/obo/UBERON_0016896,periosteum of long bone +14.2467983,UBERON:0018657,http://purl.obolibrary.org/obo/UBERON_0018657,pupal case +14.2467983,UBERON:0018667,http://purl.obolibrary.org/obo/UBERON_0018667,neck of scapula +14.2467983,UBERON:0022259,http://purl.obolibrary.org/obo/UBERON_0022259,white matter radiation +14.2467983,UBERON:0022534,http://purl.obolibrary.org/obo/UBERON_0022534,pericalcarine cortex +14.2467983,UBERON:0034991,http://purl.obolibrary.org/obo/UBERON_0034991,anterior cortical amygdaloid nucleus +14.2467983,UBERON:2002125,http://purl.obolibrary.org/obo/UBERON_2002125,caudal-fin organ +14.2467983,UBERON:2005025,http://purl.obolibrary.org/obo/UBERON_2005025,dorsal longitudinal anastomotic vessel +14.2467983,UBERON:3010011,http://purl.obolibrary.org/obo/UBERON_3010011,axillary glands +14.2467983,UBERON:3011120,http://purl.obolibrary.org/obo/UBERON_3011120,early proximal tubule +14.3157911,CHEBI:134207,http://purl.obolibrary.org/obo/CHEBI_134207,methylcytosine +14.3157911,CHEBI:15318,http://purl.obolibrary.org/obo/CHEBI_15318,xanthine +14.3157911,CHEBI:17062,http://purl.obolibrary.org/obo/CHEBI_17062,primary aliphatic amine +14.3157911,CHEBI:17517,http://purl.obolibrary.org/obo/CHEBI_17517,phosphatidylglycerol +14.3157911,CHEBI:22495,http://purl.obolibrary.org/obo/CHEBI_22495,aminobenzoic acid +14.3157911,CHEBI:22868,http://purl.obolibrary.org/obo/CHEBI_22868,bile salt +14.3157911,CHEBI:22950,http://purl.obolibrary.org/obo/CHEBI_22950,butan-4-olide +14.3157911,CHEBI:23505,http://purl.obolibrary.org/obo/CHEBI_23505,cystathionines +14.3157911,CHEBI:24156,http://purl.obolibrary.org/obo/CHEBI_24156,galactosamine +14.3157911,CHEBI:24360,http://purl.obolibrary.org/obo/CHEBI_24360,glycerophosphoglycerols +14.3157911,CHEBI:24592,http://purl.obolibrary.org/obo/CHEBI_24592,hexuronic acid +14.3157911,CHEBI:26347,http://purl.obolibrary.org/obo/CHEBI_26347,prostanoid +14.3157911,CHEBI:27283,http://purl.obolibrary.org/obo/CHEBI_27283,very long-chain fatty acid +14.3157911,CHEBI:28741,http://purl.obolibrary.org/obo/CHEBI_28741,sodium fluoride +14.3157911,CHEBI:33543,http://purl.obolibrary.org/obo/CHEBI_33543,sulfonate +14.3157911,CHEBI:33855,http://purl.obolibrary.org/obo/CHEBI_33855,arenecarbaldehyde +14.3157911,CHEBI:35444,http://purl.obolibrary.org/obo/CHEBI_35444,antinematodal drug +14.3157911,CHEBI:35735,http://purl.obolibrary.org/obo/CHEBI_35735,dicarboxylic acid monoamide +14.3157911,CHEBI:35915,http://purl.obolibrary.org/obo/CHEBI_35915,sterol ester +14.3157911,CHEBI:36770,http://purl.obolibrary.org/obo/CHEBI_36770,labdane diterpenoid +14.3157911,CHEBI:37659,http://purl.obolibrary.org/obo/CHEBI_37659,oleanolic acid +14.3157911,CHEBI:42485,http://purl.obolibrary.org/obo/CHEBI_42485,formyl group +14.3157911,CHEBI:46845,http://purl.obolibrary.org/obo/CHEBI_46845,N-alkylpiperazine +14.3157911,CHEBI:50247,http://purl.obolibrary.org/obo/CHEBI_50247,antidote +14.3157911,CHEBI:50265,http://purl.obolibrary.org/obo/CHEBI_50265,benzothiadiazine +14.3157911,CHEBI:50403,http://purl.obolibrary.org/obo/CHEBI_50403,ergostanoid +14.3157911,CHEBI:50685,http://purl.obolibrary.org/obo/CHEBI_50685,antitrichomonal drug +14.3157911,CHEBI:51129,http://purl.obolibrary.org/obo/CHEBI_51129,nitrohydrocarbon +14.3157911,CHEBI:51231,http://purl.obolibrary.org/obo/CHEBI_51231,DAPI +14.3157911,CHEBI:53030,http://purl.obolibrary.org/obo/CHEBI_53030,oxysterol +14.3157911,CHEBI:53205,http://purl.obolibrary.org/obo/CHEBI_53205,poly(methyl methacrylate) macromolecule +14.3157911,CHEBI:5420,http://purl.obolibrary.org/obo/CHEBI_5420,Glucosylated DNA +14.3157911,CHEBI:59238,http://purl.obolibrary.org/obo/CHEBI_59238,cyclic fatty acid +14.3157911,CHEBI:59520,http://purl.obolibrary.org/obo/CHEBI_59520,N-glycan +14.3157911,CHEBI:65191,http://purl.obolibrary.org/obo/CHEBI_65191,second generation antipsychotic +14.3157911,CHEBI:72771,http://purl.obolibrary.org/obo/CHEBI_72771,breast cancer resistance protein inhibitor +14.3157911,CHEBI:73477,http://purl.obolibrary.org/obo/CHEBI_73477,terminal acetylenic compound +14.3157911,CHEBI:75626,http://purl.obolibrary.org/obo/CHEBI_75626,oleyl oleate +14.3157911,CHEBI:7765,http://purl.obolibrary.org/obo/CHEBI_7765,Oligouronides +14.3157911,CHEBI:86468,http://purl.obolibrary.org/obo/CHEBI_86468,dimethylarginine +14.3157911,CL:0000880,http://purl.obolibrary.org/obo/CL_0000880,choroid-plexus macrophage +14.3157911,CL:0002154,http://purl.obolibrary.org/obo/CL_0002154,early promyelocyte +14.3157911,CL:0002255,http://purl.obolibrary.org/obo/CL_0002255,stromal cell of endometrium +14.3157911,CL:1000326,http://purl.obolibrary.org/obo/CL_1000326,ileal goblet cell +14.3157911,CL:1000417,http://purl.obolibrary.org/obo/CL_1000417,myoepithelial cell of sweat gland +14.3157911,DRUGBANK:DB01423,http://purl.obolibrary.org/obo/DRUGBANK_DB01423,none +14.3157911,DRUGBANK:DB01471,http://purl.obolibrary.org/obo/DRUGBANK_DB01471,none +14.3157911,DRUGBANK:DB01484,http://purl.obolibrary.org/obo/DRUGBANK_DB01484,none +14.3157911,DRUGBANK:DB01557,http://purl.obolibrary.org/obo/DRUGBANK_DB01557,none +14.3157911,DRUGBANK:DB02459,http://purl.obolibrary.org/obo/DRUGBANK_DB02459,none +14.3157911,DRUGBANK:DB02738,http://purl.obolibrary.org/obo/DRUGBANK_DB02738,none +14.3157911,DRUGBANK:DB02767,http://purl.obolibrary.org/obo/DRUGBANK_DB02767,none +14.3157911,DRUGBANK:DB03389,http://purl.obolibrary.org/obo/DRUGBANK_DB03389,none +14.3157911,DRUGBANK:DB03485,http://purl.obolibrary.org/obo/DRUGBANK_DB03485,none +14.3157911,DRUGBANK:DB03602,http://purl.obolibrary.org/obo/DRUGBANK_DB03602,none +14.3157911,DRUGBANK:DB04095,http://purl.obolibrary.org/obo/DRUGBANK_DB04095,none +14.3157911,DRUGBANK:DB04664,http://purl.obolibrary.org/obo/DRUGBANK_DB04664,none +14.3157911,DRUGBANK:DB04853,http://purl.obolibrary.org/obo/DRUGBANK_DB04853,none +14.3157911,DRUGBANK:DB04903,http://purl.obolibrary.org/obo/DRUGBANK_DB04903,none +14.3157911,DRUGBANK:DB04905,http://purl.obolibrary.org/obo/DRUGBANK_DB04905,none +14.3157911,DRUGBANK:DB04954,http://purl.obolibrary.org/obo/DRUGBANK_DB04954,none +14.3157911,DRUGBANK:DB04998,http://purl.obolibrary.org/obo/DRUGBANK_DB04998,none +14.3157911,DRUGBANK:DB05095,http://purl.obolibrary.org/obo/DRUGBANK_DB05095,none +14.3157911,DRUGBANK:DB05147,http://purl.obolibrary.org/obo/DRUGBANK_DB05147,none +14.3157911,DRUGBANK:DB05255,http://purl.obolibrary.org/obo/DRUGBANK_DB05255,none +14.3157911,DRUGBANK:DB05297,http://purl.obolibrary.org/obo/DRUGBANK_DB05297,none +14.3157911,DRUGBANK:DB05433,http://purl.obolibrary.org/obo/DRUGBANK_DB05433,none +14.3157911,DRUGBANK:DB05489,http://purl.obolibrary.org/obo/DRUGBANK_DB05489,none +14.3157911,DRUGBANK:DB05626,http://purl.obolibrary.org/obo/DRUGBANK_DB05626,none +14.3157911,DRUGBANK:DB05645,http://purl.obolibrary.org/obo/DRUGBANK_DB05645,none +14.3157911,DRUGBANK:DB05685,http://purl.obolibrary.org/obo/DRUGBANK_DB05685,none +14.3157911,DRUGBANK:DB05779,http://purl.obolibrary.org/obo/DRUGBANK_DB05779,none +14.3157911,DRUGBANK:DB05809,http://purl.obolibrary.org/obo/DRUGBANK_DB05809,none +14.3157911,DRUGBANK:DB05903,http://purl.obolibrary.org/obo/DRUGBANK_DB05903,none +14.3157911,DRUGBANK:DB06070,http://purl.obolibrary.org/obo/DRUGBANK_DB06070,none +14.3157911,DRUGBANK:DB06295,http://purl.obolibrary.org/obo/DRUGBANK_DB06295,none +14.3157911,DRUGBANK:DB06306,http://purl.obolibrary.org/obo/DRUGBANK_DB06306,none +14.3157911,DRUGBANK:DB06434,http://purl.obolibrary.org/obo/DRUGBANK_DB06434,none +14.3157911,DRUGBANK:DB06814,http://purl.obolibrary.org/obo/DRUGBANK_DB06814,none +14.3157911,DRUGBANK:DB08286,http://purl.obolibrary.org/obo/DRUGBANK_DB08286,none +14.3157911,DRUGBANK:DB08802,http://purl.obolibrary.org/obo/DRUGBANK_DB08802,none +14.3157911,DRUGBANK:DB09295,http://purl.obolibrary.org/obo/DRUGBANK_DB09295,none +14.3157911,DRUGBANK:DB09351,http://purl.obolibrary.org/obo/DRUGBANK_DB09351,none +14.3157911,DRUGBANK:DB09383,http://purl.obolibrary.org/obo/DRUGBANK_DB09383,none +14.3157911,DRUGBANK:DB10372,http://purl.obolibrary.org/obo/DRUGBANK_DB10372,none +14.3157911,DRUGBANK:DB10508,http://purl.obolibrary.org/obo/DRUGBANK_DB10508,none +14.3157911,DRUGBANK:DB10855,http://purl.obolibrary.org/obo/DRUGBANK_DB10855,none +14.3157911,DRUGBANK:DB11211,http://purl.obolibrary.org/obo/DRUGBANK_DB11211,none +14.3157911,DRUGBANK:DB11269,http://purl.obolibrary.org/obo/DRUGBANK_DB11269,none +14.3157911,DRUGBANK:DB11680,http://purl.obolibrary.org/obo/DRUGBANK_DB11680,none +14.3157911,DRUGBANK:DB11723,http://purl.obolibrary.org/obo/DRUGBANK_DB11723,none +14.3157911,DRUGBANK:DB11726,http://purl.obolibrary.org/obo/DRUGBANK_DB11726,none +14.3157911,DRUGBANK:DB11873,http://purl.obolibrary.org/obo/DRUGBANK_DB11873,none +14.3157911,DRUGBANK:DB11913,http://purl.obolibrary.org/obo/DRUGBANK_DB11913,none +14.3157911,DRUGBANK:DB12061,http://purl.obolibrary.org/obo/DRUGBANK_DB12061,none +14.3157911,DRUGBANK:DB12144,http://purl.obolibrary.org/obo/DRUGBANK_DB12144,none +14.3157911,DRUGBANK:DB12239,http://purl.obolibrary.org/obo/DRUGBANK_DB12239,none +14.3157911,DRUGBANK:DB12251,http://purl.obolibrary.org/obo/DRUGBANK_DB12251,none +14.3157911,DRUGBANK:DB12276,http://purl.obolibrary.org/obo/DRUGBANK_DB12276,none +14.3157911,DRUGBANK:DB12341,http://purl.obolibrary.org/obo/DRUGBANK_DB12341,none +14.3157911,DRUGBANK:DB12378,http://purl.obolibrary.org/obo/DRUGBANK_DB12378,none +14.3157911,DRUGBANK:DB12400,http://purl.obolibrary.org/obo/DRUGBANK_DB12400,none +14.3157911,DRUGBANK:DB12505,http://purl.obolibrary.org/obo/DRUGBANK_DB12505,none +14.3157911,DRUGBANK:DB12964,http://purl.obolibrary.org/obo/DRUGBANK_DB12964,none +14.3157911,DRUGBANK:DB12978,http://purl.obolibrary.org/obo/DRUGBANK_DB12978,none +14.3157911,DRUGBANK:DB13001,http://purl.obolibrary.org/obo/DRUGBANK_DB13001,none +14.3157911,DRUGBANK:DB13007,http://purl.obolibrary.org/obo/DRUGBANK_DB13007,none +14.3157911,DRUGBANK:DB13087,http://purl.obolibrary.org/obo/DRUGBANK_DB13087,none +14.3157911,DRUGBANK:DB13297,http://purl.obolibrary.org/obo/DRUGBANK_DB13297,none +14.3157911,DRUGBANK:DB13373,http://purl.obolibrary.org/obo/DRUGBANK_DB13373,none +14.3157911,DRUGBANK:DB13401,http://purl.obolibrary.org/obo/DRUGBANK_DB13401,none +14.3157911,DRUGBANK:DB13617,http://purl.obolibrary.org/obo/DRUGBANK_DB13617,none +14.3157911,DRUGBANK:DB13619,http://purl.obolibrary.org/obo/DRUGBANK_DB13619,none +14.3157911,DRUGBANK:DB13657,http://purl.obolibrary.org/obo/DRUGBANK_DB13657,none +14.3157911,DRUGBANK:DB13699,http://purl.obolibrary.org/obo/DRUGBANK_DB13699,none +14.3157911,DRUGBANK:DB13708,http://purl.obolibrary.org/obo/DRUGBANK_DB13708,none +14.3157911,DRUGBANK:DB13800,http://purl.obolibrary.org/obo/DRUGBANK_DB13800,none +14.3157911,DRUGBANK:DB14045,http://purl.obolibrary.org/obo/DRUGBANK_DB14045,none +14.3157911,DRUGBANK:DB14088,http://purl.obolibrary.org/obo/DRUGBANK_DB14088,none +14.3157911,DRUGBANK:DB14100,http://purl.obolibrary.org/obo/DRUGBANK_DB14100,none +14.3157911,DRUGBANK:DB14120,http://purl.obolibrary.org/obo/DRUGBANK_DB14120,none +14.3157911,DRUGBANK:DB14167,http://purl.obolibrary.org/obo/DRUGBANK_DB14167,none +14.3157911,DRUGBANK:DB14508,http://purl.obolibrary.org/obo/DRUGBANK_DB14508,none +14.3157911,DRUGBANK:DB14544,http://purl.obolibrary.org/obo/DRUGBANK_DB14544,none +14.3157911,DRUGBANK:DB14746,http://purl.obolibrary.org/obo/DRUGBANK_DB14746,none +14.3157911,DRUGBANK:DB14822,http://purl.obolibrary.org/obo/DRUGBANK_DB14822,none +14.3157911,DRUGBANK:DB15022,http://purl.obolibrary.org/obo/DRUGBANK_DB15022,none +14.3157911,DRUGBANK:DB15299,http://purl.obolibrary.org/obo/DRUGBANK_DB15299,none +14.3157911,DRUGBANK:DB15628,http://purl.obolibrary.org/obo/DRUGBANK_DB15628,none +14.3157911,DRUGBANK:DB15780,http://purl.obolibrary.org/obo/DRUGBANK_DB15780,none +14.3157911,DRUGBANK:DB15902,http://purl.obolibrary.org/obo/DRUGBANK_DB15902,none +14.3157911,DRUGBANK:DB15978,http://purl.obolibrary.org/obo/DRUGBANK_DB15978,none +14.3157911,DRUGBANK:DB16077,http://purl.obolibrary.org/obo/DRUGBANK_DB16077,none +14.3157911,DRUGBANK:DB16083,http://purl.obolibrary.org/obo/DRUGBANK_DB16083,none +14.3157911,DRUGBANK:DB16215,http://purl.obolibrary.org/obo/DRUGBANK_DB16215,none +14.3157911,DRUGBANK:DB16358,http://purl.obolibrary.org/obo/DRUGBANK_DB16358,none +14.3157911,GO:0002718,http://purl.obolibrary.org/obo/GO_0002718,regulation of cytokine production involved in immune response +14.3157911,GO:0003714,http://purl.obolibrary.org/obo/GO_0003714,transcription corepressor activity +14.3157911,GO:0003862,http://purl.obolibrary.org/obo/GO_0003862,3-isopropylmalate dehydrogenase activity +14.3157911,GO:0004118,http://purl.obolibrary.org/obo/GO_0004118,cGMP-stimulated cyclic-nucleotide phosphodiesterase activity +14.3157911,GO:0004252,http://purl.obolibrary.org/obo/GO_0004252,serine-type endopeptidase activity +14.3157911,GO:0004373,http://purl.obolibrary.org/obo/GO_0004373,glycogen (starch) synthase activity +14.3157911,GO:0004417,http://purl.obolibrary.org/obo/GO_0004417,hydroxyethylthiazole kinase activity +14.3157911,GO:0005826,http://purl.obolibrary.org/obo/GO_0005826,actomyosin contractile ring +14.3157911,GO:0005839,http://purl.obolibrary.org/obo/GO_0005839,proteasome core complex +14.3157911,GO:0005971,http://purl.obolibrary.org/obo/GO_0005971,ribonucleoside-diphosphate reductase complex +14.3157911,GO:0006080,http://purl.obolibrary.org/obo/GO_0006080,substituted mannan metabolic process +14.3157911,GO:0006234,http://purl.obolibrary.org/obo/GO_0006234,TTP biosynthetic process +14.3157911,GO:0006405,http://purl.obolibrary.org/obo/GO_0006405,RNA export from nucleus +14.3157911,GO:0006855,http://purl.obolibrary.org/obo/GO_0006855,xenobiotic transmembrane transport +14.3157911,GO:0006895,http://purl.obolibrary.org/obo/GO_0006895,Golgi to endosome transport +14.3157911,GO:0006896,http://purl.obolibrary.org/obo/GO_0006896,Golgi to vacuole transport +14.3157911,GO:0007422,http://purl.obolibrary.org/obo/GO_0007422,peripheral nervous system development +14.3157911,GO:0007482,http://purl.obolibrary.org/obo/GO_0007482,haltere development +14.3157911,GO:0008303,http://purl.obolibrary.org/obo/GO_0008303,caspase complex +14.3157911,GO:0008495,http://purl.obolibrary.org/obo/GO_0008495,protoheme IX farnesyltransferase activity +14.3157911,GO:0008673,http://purl.obolibrary.org/obo/GO_0008673,2-dehydro-3-deoxygluconokinase activity +14.3157911,GO:0008684,http://purl.obolibrary.org/obo/GO_0008684,2-oxopent-4-enoate hydratase activity +14.3157911,GO:0008803,http://purl.obolibrary.org/obo/GO_0008803,bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity +14.3157911,GO:0009042,http://purl.obolibrary.org/obo/GO_0009042,valine-pyruvate transaminase activity +14.3157911,GO:0009503,http://purl.obolibrary.org/obo/GO_0009503,thylakoid light-harvesting complex +14.3157911,GO:0009517,http://purl.obolibrary.org/obo/GO_0009517,PSII associated light-harvesting complex II +14.3157911,GO:0009608,http://purl.obolibrary.org/obo/GO_0009608,response to symbiont +14.3157911,GO:0010325,http://purl.obolibrary.org/obo/GO_0010325,raffinose family oligosaccharide biosynthetic process +14.3157911,GO:0010338,http://purl.obolibrary.org/obo/GO_0010338,leaf formation +14.3157911,GO:0014038,http://purl.obolibrary.org/obo/GO_0014038,regulation of Schwann cell differentiation +14.3157911,GO:0015154,http://purl.obolibrary.org/obo/GO_0015154,disaccharide transmembrane transporter activity +14.3157911,GO:0015157,http://purl.obolibrary.org/obo/GO_0015157,oligosaccharide transmembrane transporter activity +14.3157911,GO:0015235,http://purl.obolibrary.org/obo/GO_0015235,none +14.3157911,GO:0015247,http://purl.obolibrary.org/obo/GO_0015247,aminophospholipid flippase activity +14.3157911,GO:0015343,http://purl.obolibrary.org/obo/GO_0015343,siderophore transmembrane transporter activity +14.3157911,GO:0015720,http://purl.obolibrary.org/obo/GO_0015720,allantoin transport +14.3157911,GO:0016480,http://purl.obolibrary.org/obo/GO_0016480,negative regulation of transcription by RNA polymerase III +14.3157911,GO:0016487,http://purl.obolibrary.org/obo/GO_0016487,farnesol metabolic process +14.3157911,GO:0017172,http://purl.obolibrary.org/obo/GO_0017172,cysteine dioxygenase activity +14.3157911,GO:0018146,http://purl.obolibrary.org/obo/GO_0018146,keratan sulfate biosynthetic process +14.3157911,GO:0018969,http://purl.obolibrary.org/obo/GO_0018969,thiocyanate metabolic process +14.3157911,GO:0018971,http://purl.obolibrary.org/obo/GO_0018971,anaerobic toluene metabolic process +14.3157911,GO:0019158,http://purl.obolibrary.org/obo/GO_0019158,mannokinase activity +14.3157911,GO:0019185,http://purl.obolibrary.org/obo/GO_0019185,snRNA-activating protein complex +14.3157911,GO:0019305,http://purl.obolibrary.org/obo/GO_0019305,dTDP-rhamnose biosynthetic process +14.3157911,GO:0019322,http://purl.obolibrary.org/obo/GO_0019322,pentose biosynthetic process +14.3157911,GO:0019534,http://purl.obolibrary.org/obo/GO_0019534,toxin transmembrane transporter activity +14.3157911,GO:0019673,http://purl.obolibrary.org/obo/GO_0019673,GDP-mannose metabolic process +14.3157911,GO:0019784,http://purl.obolibrary.org/obo/GO_0019784,NEDD8-specific protease activity +14.3157911,GO:0030178,http://purl.obolibrary.org/obo/GO_0030178,negative regulation of Wnt signaling pathway +14.3157911,GO:0030253,http://purl.obolibrary.org/obo/GO_0030253,protein secretion by the type I secretion system +14.3157911,GO:0030269,http://purl.obolibrary.org/obo/GO_0030269,tetrahydromethanopterin S-methyltransferase activity +14.3157911,GO:0030374,http://purl.obolibrary.org/obo/GO_0030374,nuclear receptor coactivator activity +14.3157911,GO:0030375,http://purl.obolibrary.org/obo/GO_0030375,none +14.3157911,GO:0030473,http://purl.obolibrary.org/obo/GO_0030473,nuclear migration along microtubule +14.3157911,GO:0030585,http://purl.obolibrary.org/obo/GO_0030585,phosphoenolpyruvate carboxykinase (diphosphate) activity +14.3157911,GO:0030748,http://purl.obolibrary.org/obo/GO_0030748,amine N-methyltransferase activity +14.3157911,GO:0031001,http://purl.obolibrary.org/obo/GO_0031001,response to brefeldin A +14.3157911,GO:0031058,http://purl.obolibrary.org/obo/GO_0031058,positive regulation of histone modification +14.3157911,GO:0031217,http://purl.obolibrary.org/obo/GO_0031217,"glucan 1,4-beta-glucosidase activity" +14.3157911,GO:0031300,http://purl.obolibrary.org/obo/GO_0031300,intrinsic component of organelle membrane +14.3157911,GO:0031301,http://purl.obolibrary.org/obo/GO_0031301,integral component of organelle membrane +14.3157911,GO:0031464,http://purl.obolibrary.org/obo/GO_0031464,Cul4A-RING E3 ubiquitin ligase complex +14.3157911,GO:0031623,http://purl.obolibrary.org/obo/GO_0031623,receptor internalization +14.3157911,GO:0031919,http://purl.obolibrary.org/obo/GO_0031919,vitamin B6 transport +14.3157911,GO:0032204,http://purl.obolibrary.org/obo/GO_0032204,regulation of telomere maintenance +14.3157911,GO:0032573,http://purl.obolibrary.org/obo/GO_0032573,response to phylloquinone +14.3157911,GO:0032801,http://purl.obolibrary.org/obo/GO_0032801,receptor catabolic process +14.3157911,GO:0032892,http://purl.obolibrary.org/obo/GO_0032892,positive regulation of organic acid transport +14.3157911,GO:0032980,http://purl.obolibrary.org/obo/GO_0032980,keratinocyte activation +14.3157911,GO:0033005,http://purl.obolibrary.org/obo/GO_0033005,positive regulation of mast cell activation +14.3157911,GO:0033037,http://purl.obolibrary.org/obo/GO_0033037,polysaccharide localization +14.3157911,GO:0033304,http://purl.obolibrary.org/obo/GO_0033304,chlorophyll a metabolic process +14.3157911,GO:0033587,http://purl.obolibrary.org/obo/GO_0033587,none +14.3157911,GO:0033756,http://purl.obolibrary.org/obo/GO_0033756,Oplophorus-luciferin 2-monooxygenase activity +14.3157911,GO:0033824,http://purl.obolibrary.org/obo/GO_0033824,alternansucrase activity +14.3157911,GO:0034256,http://purl.obolibrary.org/obo/GO_0034256,chlorophyll(ide) b reductase activity +14.3157911,GO:0034418,http://purl.obolibrary.org/obo/GO_0034418,urate biosynthetic process +14.3157911,GO:0034593,http://purl.obolibrary.org/obo/GO_0034593,phosphatidylinositol bisphosphate phosphatase activity +14.3157911,GO:0034706,http://purl.obolibrary.org/obo/GO_0034706,sodium channel complex +14.3157911,GO:0034709,http://purl.obolibrary.org/obo/GO_0034709,methylosome +14.3157911,GO:0035369,http://purl.obolibrary.org/obo/GO_0035369,pre-B cell receptor complex +14.3157911,GO:0035529,http://purl.obolibrary.org/obo/GO_0035529,NADH pyrophosphatase activity +14.3157911,GO:0035588,http://purl.obolibrary.org/obo/GO_0035588,G protein-coupled purinergic receptor signaling pathway +14.3157911,GO:0036076,http://purl.obolibrary.org/obo/GO_0036076,ligamentous ossification +14.3157911,GO:0036504,http://purl.obolibrary.org/obo/GO_0036504,Golgi membrane fusion +14.3157911,GO:0038097,http://purl.obolibrary.org/obo/GO_0038097,positive regulation of mast cell activation by Fc-epsilon receptor signaling pathway +14.3157911,GO:0039694,http://purl.obolibrary.org/obo/GO_0039694,viral RNA genome replication +14.3157911,GO:0042086,http://purl.obolibrary.org/obo/GO_0042086,"5-methyl-5,6,7,8-tetrahydromethanopterin-dependent methyltransferase activity" +14.3157911,GO:0042222,http://purl.obolibrary.org/obo/GO_0042222,none +14.3157911,GO:0043799,http://purl.obolibrary.org/obo/GO_0043799,glycine oxidase activity +14.3157911,GO:0044774,http://purl.obolibrary.org/obo/GO_0044774,mitotic DNA integrity checkpoint signaling +14.3157911,GO:0044843,http://purl.obolibrary.org/obo/GO_0044843,cell cycle G1/S phase transition +14.3157911,GO:0045141,http://purl.obolibrary.org/obo/GO_0045141,meiotic telomere clustering +14.3157911,GO:0045437,http://purl.obolibrary.org/obo/GO_0045437,uridine nucleosidase activity +14.3157911,GO:0046352,http://purl.obolibrary.org/obo/GO_0046352,disaccharide catabolic process +14.3157911,GO:0046357,http://purl.obolibrary.org/obo/GO_0046357,galactarate biosynthetic process +14.3157911,GO:0046383,http://purl.obolibrary.org/obo/GO_0046383,dTDP-rhamnose metabolic process +14.3157911,GO:0046436,http://purl.obolibrary.org/obo/GO_0046436,D-alanine metabolic process +14.3157911,GO:0046575,http://purl.obolibrary.org/obo/GO_0046575,rhamnogalacturonan acetylesterase activity +14.3157911,GO:0047154,http://purl.obolibrary.org/obo/GO_0047154,methylmalonyl-CoA carboxytransferase activity +14.3157911,GO:0047420,http://purl.obolibrary.org/obo/GO_0047420,N-acyl-D-amino-acid deacylase activity +14.3157911,GO:0047704,http://purl.obolibrary.org/obo/GO_0047704,bile-salt sulfotransferase activity +14.3157911,GO:0047705,http://purl.obolibrary.org/obo/GO_0047705,bilirubin oxidase activity +14.3157911,GO:0047751,http://purl.obolibrary.org/obo/GO_0047751,cholestenone 5-alpha-reductase activity +14.3157911,GO:0047828,http://purl.obolibrary.org/obo/GO_0047828,D-lyxose ketol-isomerase activity +14.3157911,GO:0047921,http://purl.obolibrary.org/obo/GO_0047921,aminoglycoside 2'-N-acetyltransferase activity +14.3157911,GO:0047971,http://purl.obolibrary.org/obo/GO_0047971,guanidinobutyrase activity +14.3157911,GO:0048341,http://purl.obolibrary.org/obo/GO_0048341,paraxial mesoderm formation +14.3157911,GO:0048446,http://purl.obolibrary.org/obo/GO_0048446,petal morphogenesis +14.3157911,GO:0048460,http://purl.obolibrary.org/obo/GO_0048460,flower formation +14.3157911,GO:0048492,http://purl.obolibrary.org/obo/GO_0048492,ribulose bisphosphate carboxylase complex +14.3157911,GO:0048539,http://purl.obolibrary.org/obo/GO_0048539,bone marrow development +14.3157911,GO:0048667,http://purl.obolibrary.org/obo/GO_0048667,cell morphogenesis involved in neuron differentiation +14.3157911,GO:0048715,http://purl.obolibrary.org/obo/GO_0048715,negative regulation of oligodendrocyte differentiation +14.3157911,GO:0048733,http://purl.obolibrary.org/obo/GO_0048733,sebaceous gland development +14.3157911,GO:0048737,http://purl.obolibrary.org/obo/GO_0048737,imaginal disc-derived appendage development +14.3157911,GO:0050081,http://purl.obolibrary.org/obo/GO_0050081,maltose-6'-phosphate glucosidase activity +14.3157911,GO:0050193,http://purl.obolibrary.org/obo/GO_0050193,phosphoketolase activity +14.3157911,GO:0050213,http://purl.obolibrary.org/obo/GO_0050213,progesterone 5-alpha-reductase activity +14.3157911,GO:0050263,http://purl.obolibrary.org/obo/GO_0050263,ribosylpyrimidine nucleosidase activity +14.3157911,GO:0050403,http://purl.obolibrary.org/obo/GO_0050403,trans-zeatin O-beta-D-glucosyltransferase activity +14.3157911,GO:0050405,http://purl.obolibrary.org/obo/GO_0050405,[acetyl-CoA carboxylase] kinase activity +14.3157911,GO:0050487,http://purl.obolibrary.org/obo/GO_0050487,sulfoacetaldehyde acetyltransferase activity +14.3157911,GO:0050665,http://purl.obolibrary.org/obo/GO_0050665,hydrogen peroxide biosynthetic process +14.3157911,GO:0050921,http://purl.obolibrary.org/obo/GO_0050921,positive regulation of chemotaxis +14.3157911,GO:0050951,http://purl.obolibrary.org/obo/GO_0050951,sensory perception of temperature stimulus +14.3157911,GO:0050955,http://purl.obolibrary.org/obo/GO_0050955,thermoception +14.3157911,GO:0051069,http://purl.obolibrary.org/obo/GO_0051069,galactomannan metabolic process +14.3157911,GO:0055059,http://purl.obolibrary.org/obo/GO_0055059,asymmetric neuroblast division +14.3157911,GO:0055069,http://purl.obolibrary.org/obo/GO_0055069,zinc ion homeostasis +14.3157911,GO:0060026,http://purl.obolibrary.org/obo/GO_0060026,convergent extension +14.3157911,GO:0060207,http://purl.obolibrary.org/obo/GO_0060207,diestrus +14.3157911,GO:0061107,http://purl.obolibrary.org/obo/GO_0061107,seminal vesicle development +14.3157911,GO:0061912,http://purl.obolibrary.org/obo/GO_0061912,selective autophagy +14.3157911,GO:0065005,http://purl.obolibrary.org/obo/GO_0065005,protein-lipid complex assembly +14.3157911,GO:0070088,http://purl.obolibrary.org/obo/GO_0070088,PHA granule +14.3157911,GO:0070427,http://purl.obolibrary.org/obo/GO_0070427,nucleotide-binding oligomerization domain containing 1 signaling pathway +14.3157911,GO:0070443,http://purl.obolibrary.org/obo/GO_0070443,Mad-Max complex +14.3157911,GO:0070565,http://purl.obolibrary.org/obo/GO_0070565,telomere-telomerase complex +14.3157911,GO:0070914,http://purl.obolibrary.org/obo/GO_0070914,UV-damage excision repair +14.3157911,GO:0070938,http://purl.obolibrary.org/obo/GO_0070938,contractile ring +14.3157911,GO:0071104,http://purl.obolibrary.org/obo/GO_0071104,response to interleukin-9 +14.3157911,GO:0071243,http://purl.obolibrary.org/obo/GO_0071243,cellular response to arsenic-containing substance +14.3157911,GO:0071280,http://purl.obolibrary.org/obo/GO_0071280,cellular response to copper ion +14.3157911,GO:0071320,http://purl.obolibrary.org/obo/GO_0071320,cellular response to cAMP +14.3157911,GO:0071611,http://purl.obolibrary.org/obo/GO_0071611,granulocyte colony-stimulating factor production +14.3157911,GO:0072387,http://purl.obolibrary.org/obo/GO_0072387,flavin adenine dinucleotide metabolic process +14.3157911,GO:0072757,http://purl.obolibrary.org/obo/GO_0072757,cellular response to camptothecin +14.3157911,GO:0080146,http://purl.obolibrary.org/obo/GO_0080146,L-cysteine desulfhydrase activity +14.3157911,GO:0090202,http://purl.obolibrary.org/obo/GO_0090202,none +14.3157911,GO:0090220,http://purl.obolibrary.org/obo/GO_0090220,chromosome localization to nuclear envelope involved in homologous chromosome segregation +14.3157911,GO:0090579,http://purl.obolibrary.org/obo/GO_0090579,none +14.3157911,GO:0097089,http://purl.obolibrary.org/obo/GO_0097089,methyl-branched fatty acid metabolic process +14.3157911,GO:0097419,http://purl.obolibrary.org/obo/GO_0097419,Pick body +14.3157911,GO:0097511,http://purl.obolibrary.org/obo/GO_0097511,dendritic cell dendrite +14.3157911,GO:0140327,http://purl.obolibrary.org/obo/GO_0140327,flippase activity +14.3157911,GO:1901052,http://purl.obolibrary.org/obo/GO_1901052,sarcosine metabolic process +14.3157911,GO:1901116,http://purl.obolibrary.org/obo/GO_1901116,cephamycin C metabolic process +14.3157911,GO:1901118,http://purl.obolibrary.org/obo/GO_1901118,cephamycin C biosynthetic process +14.3157911,GO:1901677,http://purl.obolibrary.org/obo/GO_1901677,none +14.3157911,GO:1901728,http://purl.obolibrary.org/obo/GO_1901728,monensin A metabolic process +14.3157911,GO:1901800,http://purl.obolibrary.org/obo/GO_1901800,positive regulation of proteasomal protein catabolic process +14.3157911,GO:1902707,http://purl.obolibrary.org/obo/GO_1902707,hexose catabolic process to ethanol +14.3157911,GO:1903052,http://purl.obolibrary.org/obo/GO_1903052,positive regulation of proteolysis involved in cellular protein catabolic process +14.3157911,GO:1903309,http://purl.obolibrary.org/obo/GO_1903309,none +14.3157911,GO:1903364,http://purl.obolibrary.org/obo/GO_1903364,positive regulation of cellular protein catabolic process +14.3157911,GO:1903512,http://purl.obolibrary.org/obo/GO_1903512,phytanic acid metabolic process +14.3157911,GO:1903613,http://purl.obolibrary.org/obo/GO_1903613,regulation of protein tyrosine phosphatase activity +14.3157911,GO:1903664,http://purl.obolibrary.org/obo/GO_1903664,regulation of asexual reproduction +14.3157911,GO:1904204,http://purl.obolibrary.org/obo/GO_1904204,regulation of skeletal muscle hypertrophy +14.3157911,GO:1990268,http://purl.obolibrary.org/obo/GO_1990268,response to gold nanoparticle +14.3157911,GO:1990423,http://purl.obolibrary.org/obo/GO_1990423,RZZ complex +14.3157911,GO:1990578,http://purl.obolibrary.org/obo/GO_1990578,perinuclear endoplasmic reticulum membrane +14.3157911,GO:1990833,http://purl.obolibrary.org/obo/GO_1990833,clathrin-uncoating ATPase activity +14.3157911,GO:2001305,http://purl.obolibrary.org/obo/GO_2001305,xanthone-containing compound metabolic process +14.3157911,GO:2001307,http://purl.obolibrary.org/obo/GO_2001307,xanthone-containing compound biosynthetic process +14.3157911,HP:0000223,http://purl.obolibrary.org/obo/HP_0000223,Abnormality of taste sensation +14.3157911,HP:0002045,http://purl.obolibrary.org/obo/HP_0002045,Hypothermia +14.3157911,HP:0002352,http://purl.obolibrary.org/obo/HP_0002352,Leukoencephalopathy +14.3157911,HP:0002948,http://purl.obolibrary.org/obo/HP_0002948,Vertebral fusion +14.3157911,HP:0003828,http://purl.obolibrary.org/obo/HP_0003828,Variable expressivity +14.3157911,HP:0007269,http://purl.obolibrary.org/obo/HP_0007269,Spinal muscular atrophy +14.3157911,HP:0007302,http://purl.obolibrary.org/obo/HP_0007302,Bipolar affective disorder +14.3157911,HP:0007359,http://purl.obolibrary.org/obo/HP_0007359,Focal-onset seizure +14.3157911,HP:0009124,http://purl.obolibrary.org/obo/HP_0009124,Abnormal adipose tissue morphology +14.3157911,HP:0009125,http://purl.obolibrary.org/obo/HP_0009125,Lipodystrophy +14.3157911,HP:0010316,http://purl.obolibrary.org/obo/HP_0010316,Ebstein anomaly of the tricuspid valve +14.3157911,HP:0010628,http://purl.obolibrary.org/obo/HP_0010628,Facial palsy +14.3157911,HP:0012114,http://purl.obolibrary.org/obo/HP_0012114,Endometrial carcinoma +14.3157911,HP:0012838,http://purl.obolibrary.org/obo/HP_0012838,Localized +14.3157911,HP:0030810,http://purl.obolibrary.org/obo/HP_0030810,Abnormal tongue physiology +14.3157911,HP:0041051,http://purl.obolibrary.org/obo/HP_0041051,Ageusia +14.3157911,MONDO:0000151,http://purl.obolibrary.org/obo/MONDO_0000151,symphalangism +14.3157911,MONDO:0000345,http://purl.obolibrary.org/obo/MONDO_0000345,Oropouche fever +14.3157911,MONDO:0000968,http://purl.obolibrary.org/obo/MONDO_0000968,kidney lipoma +14.3157911,MONDO:0001130,http://purl.obolibrary.org/obo/MONDO_0001130,nasal cavity lymphoma +14.3157911,MONDO:0001290,http://purl.obolibrary.org/obo/MONDO_0001290,allergic cutaneous vasculitis +14.3157911,MONDO:0001594,http://purl.obolibrary.org/obo/MONDO_0001594,Achilles bursitis +14.3157911,MONDO:0001652,http://purl.obolibrary.org/obo/MONDO_0001652,scrotum melanoma +14.3157911,MONDO:0001742,http://purl.obolibrary.org/obo/MONDO_0001742,interval angle-closure glaucoma +14.3157911,MONDO:0001790,http://purl.obolibrary.org/obo/MONDO_0001790,spinal cord lipoma +14.3157911,MONDO:0001888,http://purl.obolibrary.org/obo/MONDO_0001888,anus lymphoma +14.3157911,MONDO:0001993,http://purl.obolibrary.org/obo/MONDO_0001993,seminal vesicle adenocarcinoma +14.3157911,MONDO:0002582,http://purl.obolibrary.org/obo/MONDO_0002582,subacute leukemia +14.3157911,MONDO:0002877,http://purl.obolibrary.org/obo/MONDO_0002877,cervical carcinosarcoma +14.3157911,MONDO:0002954,http://purl.obolibrary.org/obo/MONDO_0002954,superficial multifocal basal cell carcinoma +14.3157911,MONDO:0003465,http://purl.obolibrary.org/obo/MONDO_0003465,fibrous synovial sarcoma +14.3157911,MONDO:0003501,http://purl.obolibrary.org/obo/MONDO_0003501,external ear squamous cell carcinoma +14.3157911,MONDO:0003808,http://purl.obolibrary.org/obo/MONDO_0003808,mediastinal extraskeletal osteosarcoma +14.3157911,MONDO:0003915,http://purl.obolibrary.org/obo/MONDO_0003915,cortical thymoma +14.3157911,MONDO:0003944,http://purl.obolibrary.org/obo/MONDO_0003944,endobronchial leiomyoma +14.3157911,MONDO:0004272,http://purl.obolibrary.org/obo/MONDO_0004272,urinary bladder tuberculosis +14.3157911,MONDO:0004341,http://purl.obolibrary.org/obo/MONDO_0004341,colloid carcinoma of the pancreas +14.3157911,MONDO:0004410,http://purl.obolibrary.org/obo/MONDO_0004410,sarcomatoid penile squamous cell carcinoma +14.3157911,MONDO:0004640,http://purl.obolibrary.org/obo/MONDO_0004640,alcoholic gastritis +14.3157911,MONDO:0004742,http://purl.obolibrary.org/obo/MONDO_0004742,primary cerebellar degeneration +14.3157911,MONDO:0004881,http://purl.obolibrary.org/obo/MONDO_0004881,myositis fibrosa +14.3157911,MONDO:0005514,http://purl.obolibrary.org/obo/MONDO_0005514,nanophthalmia +14.3157911,MONDO:0005541,http://purl.obolibrary.org/obo/MONDO_0005541,spondylolysis +14.3157911,MONDO:0006267,http://purl.obolibrary.org/obo/MONDO_0006267,liver cavernous hemangioma +14.3157911,MONDO:0006763,http://purl.obolibrary.org/obo/MONDO_0006763,frozen shoulder +14.3157911,MONDO:0006848,http://purl.obolibrary.org/obo/MONDO_0006848,marasmus +14.3157911,MONDO:0006908,http://purl.obolibrary.org/obo/MONDO_0006908,pituitary apoplexy +14.3157911,MONDO:0007176,http://purl.obolibrary.org/obo/MONDO_0007176,helicoid peripapillary chorioretinal degeneration +14.3157911,MONDO:0007301,http://purl.obolibrary.org/obo/MONDO_0007301,cerebrocostomandibular syndrome +14.3157911,MONDO:0007496,http://purl.obolibrary.org/obo/MONDO_0007496,dystonia 12 +14.3157911,MONDO:0007607,http://purl.obolibrary.org/obo/MONDO_0007607,Birt-Hogg-Dube syndrome +14.3157911,MONDO:0007700,http://purl.obolibrary.org/obo/MONDO_0007700,hawkinsinuria +14.3157911,MONDO:0007876,http://purl.obolibrary.org/obo/MONDO_0007876,laryngeal abductor paralysis +14.3157911,MONDO:0007948,http://purl.obolibrary.org/obo/MONDO_0007948,marfanoid hypermobility syndrome +14.3157911,MONDO:0008031,http://purl.obolibrary.org/obo/MONDO_0008031,facioscapulohumeral muscular dystrophy 2 +14.3157911,MONDO:0008127,http://purl.obolibrary.org/obo/MONDO_0008127,ophthalmomandibulomelic dysplasia +14.3157911,MONDO:0008672,http://purl.obolibrary.org/obo/MONDO_0008672,Watson syndrome +14.3157911,MONDO:0008730,http://purl.obolibrary.org/obo/MONDO_0008730,congenital adrenal hyperplasia due to 17-alpha-hydroxylase deficiency +14.3157911,MONDO:0008847,http://purl.obolibrary.org/obo/MONDO_0008847,atrichia with papular lesions +14.3157911,MONDO:0009070,http://purl.obolibrary.org/obo/MONDO_0009070,D-glyceric aciduria +14.3157911,MONDO:0009150,http://purl.obolibrary.org/obo/MONDO_0009150,hypohidrotic ectodermal dysplasia-hypothyroidism-ciliary dyskinesia syndrome +14.3157911,MONDO:0009189,http://purl.obolibrary.org/obo/MONDO_0009189,multiple epiphyseal dysplasia type 4 +14.3157911,MONDO:0009232,http://purl.obolibrary.org/obo/MONDO_0009232,Fuhrmann syndrome +14.3157911,MONDO:0009478,http://purl.obolibrary.org/obo/MONDO_0009478,combined immunodeficiency due to DOCK8 deficiency +14.3157911,MONDO:0009491,http://purl.obolibrary.org/obo/MONDO_0009491,Haim-Munk syndrome +14.3157911,MONDO:0009628,http://purl.obolibrary.org/obo/MONDO_0009628,microcolon +14.3157911,MONDO:0009732,http://purl.obolibrary.org/obo/MONDO_0009732,"congenital nephrotic syndrome, Finnish type" +14.3157911,MONDO:0009774,http://purl.obolibrary.org/obo/MONDO_0009774,cloacal exstrophy +14.3157911,MONDO:0010005,http://purl.obolibrary.org/obo/MONDO_0010005,saccharopinuria +14.3157911,MONDO:0010086,http://purl.obolibrary.org/obo/MONDO_0010086,none +14.3157911,MONDO:0010457,http://purl.obolibrary.org/obo/MONDO_0010457,Ogden syndrome +14.3157911,MONDO:0010639,http://purl.obolibrary.org/obo/MONDO_0010639,laryngeal abductor paralysis-intellectual disability syndrome +14.3157911,MONDO:0010653,http://purl.obolibrary.org/obo/MONDO_0010653,Renpenning syndrome +14.3157911,MONDO:0010959,http://purl.obolibrary.org/obo/MONDO_0010959,van den Ende-Gupta syndrome +14.3157911,MONDO:0011071,http://purl.obolibrary.org/obo/MONDO_0011071,hereditary thrombocytopenia and hematologic cancer predisposition syndrome +14.3157911,MONDO:0011085,http://purl.obolibrary.org/obo/MONDO_0011085,Charcot-Marie-Tooth disease type 4D +14.3157911,MONDO:0011157,http://purl.obolibrary.org/obo/MONDO_0011157,Gomez-Lopez-Hernandez syndrome +14.3157911,MONDO:0011365,http://purl.obolibrary.org/obo/MONDO_0011365,"blepharophimosis - intellectual disability syndrome, SBBYS type" +14.3157911,MONDO:0011379,http://purl.obolibrary.org/obo/MONDO_0011379,medullary cystic kidney disease 2 +14.3157911,MONDO:0011647,http://purl.obolibrary.org/obo/MONDO_0011647,Alzheimer disease 7 +14.3157911,MONDO:0011873,http://purl.obolibrary.org/obo/MONDO_0011873,"Niemann-Pick disease, type C2" +14.3157911,MONDO:0011894,http://purl.obolibrary.org/obo/MONDO_0011894,Charcot-Marie-Tooth disease type 2E +14.3157911,MONDO:0012112,http://purl.obolibrary.org/obo/MONDO_0012112,hypertrophic cardiomyopathy 10 +14.3157911,MONDO:0012269,http://purl.obolibrary.org/obo/MONDO_0012269,chromosome 3q29 microdeletion syndrome +14.3157911,MONDO:0012683,http://purl.obolibrary.org/obo/MONDO_0012683,pontocerebellar hypoplasia type 6 +14.3157911,MONDO:0013452,http://purl.obolibrary.org/obo/MONDO_0013452,multisystemic smooth muscle dysfunction syndrome +14.3157911,MONDO:0014250,http://purl.obolibrary.org/obo/MONDO_0014250,familial hyperprolactinemia +14.3157911,MONDO:0014753,http://purl.obolibrary.org/obo/MONDO_0014753,autosomal recessive optic atrophy +14.3157911,MONDO:0015307,http://purl.obolibrary.org/obo/MONDO_0015307,Madras motor neuron disease +14.3157911,MONDO:0015716,http://purl.obolibrary.org/obo/MONDO_0015716,moderately severe hemophilia B +14.3157911,MONDO:0015736,http://purl.obolibrary.org/obo/MONDO_0015736,intermediate nemaline myopathy +14.3157911,MONDO:0016205,http://purl.obolibrary.org/obo/MONDO_0016205,IRVAN syndrome +14.3157911,MONDO:0016452,http://purl.obolibrary.org/obo/MONDO_0016452,idiopathic hypersomnia without long sleep time +14.3157911,MONDO:0016503,http://purl.obolibrary.org/obo/MONDO_0016503,congenital erosive and vesicular dermatosis +14.3157911,MONDO:0016505,http://purl.obolibrary.org/obo/MONDO_0016505,aldosterone-producing adrenal cortex adenoma +14.3157911,MONDO:0016534,http://purl.obolibrary.org/obo/MONDO_0016534,infundibulo-neurohypophysitis +14.3157911,MONDO:0016563,http://purl.obolibrary.org/obo/MONDO_0016563,progressive supranuclear palsy-corticobasal syndrome +14.3157911,MONDO:0016764,http://purl.obolibrary.org/obo/MONDO_0016764,isolated anophthalmia-microphthalmia syndrome +14.3157911,MONDO:0016931,http://purl.obolibrary.org/obo/MONDO_0016931,partial duplication of chromosome 10 +14.3157911,MONDO:0016965,http://purl.obolibrary.org/obo/MONDO_0016965,partial duplication of the long arm of chromosome 15 +14.3157911,MONDO:0016994,http://purl.obolibrary.org/obo/MONDO_0016994,microcephalic osteodysplastic primordial dwarfism types I and III +14.3157911,MONDO:0017096,http://purl.obolibrary.org/obo/MONDO_0017096,isolated focal cortical dysplasia type Ia +14.3157911,MONDO:0017398,http://purl.obolibrary.org/obo/MONDO_0017398,3MC syndrome +14.3157911,MONDO:0017425,http://purl.obolibrary.org/obo/MONDO_0017425,preaxial polydactyly of fingers +14.3157911,MONDO:0017783,http://purl.obolibrary.org/obo/MONDO_0017783,congenital pancreatic cyst +14.3157911,MONDO:0018050,http://purl.obolibrary.org/obo/MONDO_0018050,tibial aplasia-ectrodactyly syndrome +14.3157911,MONDO:0018067,http://purl.obolibrary.org/obo/MONDO_0018067,triploidy +14.3157911,MONDO:0018128,http://purl.obolibrary.org/obo/MONDO_0018128,phalangeal microgeodic syndrome +14.3157911,MONDO:0018335,http://purl.obolibrary.org/obo/MONDO_0018335,deep dermatophytosis +14.3157911,MONDO:0019158,http://purl.obolibrary.org/obo/MONDO_0019158,tropical endomyocardial fibrosis +14.3157911,MONDO:0019161,http://purl.obolibrary.org/obo/MONDO_0019161,pseudohypoaldosteronism type 1 +14.3157911,MONDO:0019476,http://purl.obolibrary.org/obo/MONDO_0019476,primary cutaneous peripheral T-cell lymphoma not otherwise specified +14.3157911,MONDO:0019538,http://purl.obolibrary.org/obo/MONDO_0019538,Gaisbock syndrome +14.3157911,MONDO:0019556,http://purl.obolibrary.org/obo/MONDO_0019556,pressure-induced localized lipoatrophy +14.3157911,MONDO:0019778,http://purl.obolibrary.org/obo/MONDO_0019778,Smith-Fineman-Myers syndrome +14.3157911,MONDO:0019908,http://purl.obolibrary.org/obo/MONDO_0019908,ring chromosome 15 +14.3157911,MONDO:0019947,http://purl.obolibrary.org/obo/MONDO_0019947,rippling muscle disease 2 +14.3157911,MONDO:0020368,http://purl.obolibrary.org/obo/MONDO_0020368,Axenfeld anomaly +14.3157911,MONDO:0020499,http://purl.obolibrary.org/obo/MONDO_0020499,Nipah virus disease +14.3157911,MONDO:0020555,http://purl.obolibrary.org/obo/MONDO_0020555,pleuropulmonary blastoma type 1 +14.3157911,MONDO:0020600,http://purl.obolibrary.org/obo/MONDO_0020600,acute pharyngitis +14.3157911,MONDO:0020687,http://purl.obolibrary.org/obo/MONDO_0020687,supratentorial ependymal tumor +14.3157911,MONDO:0025293,http://purl.obolibrary.org/obo/MONDO_0025293,poult enteritis mortality syndrome +14.3157911,MONDO:0025369,http://purl.obolibrary.org/obo/MONDO_0025369,Nairobi sheep disease +14.3157911,MONDO:0033947,http://purl.obolibrary.org/obo/MONDO_0033947,hereditary angioedema with normal C1Inh +14.3157911,MONDO:0043327,http://purl.obolibrary.org/obo/MONDO_0043327,cerebrospinal fluid leak +14.3157911,MONDO:0043339,http://purl.obolibrary.org/obo/MONDO_0043339,lathyrism +14.3157911,MONDO:0045004,http://purl.obolibrary.org/obo/MONDO_0045004,skeletal ligament disease +14.3157911,MONDO:0100088,http://purl.obolibrary.org/obo/MONDO_0100088,late-onset familial alzheimer disease +14.3157911,MONDO:0100124,http://purl.obolibrary.org/obo/MONDO_0100124,NAA10-related syndrome +14.3157911,MONDO:0100247,http://purl.obolibrary.org/obo/MONDO_0100247,multiple congenital anomalies-hypotonia-seizures syndrome +14.3157911,NCBITaxon:10119,http://purl.obolibrary.org/obo/NCBITaxon_10119,none +14.3157911,NCBITaxon:10170,http://purl.obolibrary.org/obo/NCBITaxon_10170,none +14.3157911,NCBITaxon:10172,http://purl.obolibrary.org/obo/NCBITaxon_10172,none +14.3157911,NCBITaxon:104637,http://purl.obolibrary.org/obo/NCBITaxon_104637,none +14.3157911,NCBITaxon:1051792,http://purl.obolibrary.org/obo/NCBITaxon_1051792,none +14.3157911,NCBITaxon:105427,http://purl.obolibrary.org/obo/NCBITaxon_105427,none +14.3157911,NCBITaxon:10979,http://purl.obolibrary.org/obo/NCBITaxon_10979,none +14.3157911,NCBITaxon:111970,http://purl.obolibrary.org/obo/NCBITaxon_111970,none +14.3157911,NCBITaxon:115121,http://purl.obolibrary.org/obo/NCBITaxon_115121,none +14.3157911,NCBITaxon:116706,http://purl.obolibrary.org/obo/NCBITaxon_116706,Heterotremata +14.3157911,NCBITaxon:118968,http://purl.obolibrary.org/obo/NCBITaxon_118968,Coxiellaceae +14.3157911,NCBITaxon:119428,http://purl.obolibrary.org/obo/NCBITaxon_119428,none +14.3157911,NCBITaxon:12072,http://purl.obolibrary.org/obo/NCBITaxon_12072,none +14.3157911,NCBITaxon:123746,http://purl.obolibrary.org/obo/NCBITaxon_123746,none +14.3157911,NCBITaxon:123747,http://purl.obolibrary.org/obo/NCBITaxon_123747,none +14.3157911,NCBITaxon:12627,http://purl.obolibrary.org/obo/NCBITaxon_12627,none +14.3157911,NCBITaxon:1299309,http://purl.obolibrary.org/obo/NCBITaxon_1299309,none +14.3157911,NCBITaxon:1302552,http://purl.obolibrary.org/obo/NCBITaxon_1302552,none +14.3157911,NCBITaxon:1344955,http://purl.obolibrary.org/obo/NCBITaxon_1344955,none +14.3157911,NCBITaxon:135619,http://purl.obolibrary.org/obo/NCBITaxon_135619,none +14.3157911,NCBITaxon:136843,http://purl.obolibrary.org/obo/NCBITaxon_136843,none +14.3157911,NCBITaxon:13687,http://purl.obolibrary.org/obo/NCBITaxon_13687,none +14.3157911,NCBITaxon:140295,http://purl.obolibrary.org/obo/NCBITaxon_140295,none +14.3157911,NCBITaxon:1429985,http://purl.obolibrary.org/obo/NCBITaxon_1429985,none +14.3157911,NCBITaxon:1489343,http://purl.obolibrary.org/obo/NCBITaxon_1489343,Osteoglossocephala +14.3157911,NCBITaxon:1511763,http://purl.obolibrary.org/obo/NCBITaxon_1511763,none +14.3157911,NCBITaxon:1513234,http://purl.obolibrary.org/obo/NCBITaxon_1513234,none +14.3157911,NCBITaxon:1513235,http://purl.obolibrary.org/obo/NCBITaxon_1513235,none +14.3157911,NCBITaxon:1513308,http://purl.obolibrary.org/obo/NCBITaxon_1513308,none +14.3157911,NCBITaxon:151781,http://purl.obolibrary.org/obo/NCBITaxon_151781,none +14.3157911,NCBITaxon:156152,http://purl.obolibrary.org/obo/NCBITaxon_156152,none +14.3157911,NCBITaxon:1579337,http://purl.obolibrary.org/obo/NCBITaxon_1579337,none +14.3157911,NCBITaxon:158332,http://purl.obolibrary.org/obo/NCBITaxon_158332,none +14.3157911,NCBITaxon:159139,http://purl.obolibrary.org/obo/NCBITaxon_159139,none +14.3157911,NCBITaxon:160358,http://purl.obolibrary.org/obo/NCBITaxon_160358,none +14.3157911,NCBITaxon:163743,http://purl.obolibrary.org/obo/NCBITaxon_163743,none +14.3157911,NCBITaxon:165808,http://purl.obolibrary.org/obo/NCBITaxon_165808,none +14.3157911,NCBITaxon:1762,http://purl.obolibrary.org/obo/NCBITaxon_1762,Mycobacteriaceae +14.3157911,NCBITaxon:1763,http://purl.obolibrary.org/obo/NCBITaxon_1763,Mycobacterium +14.3157911,NCBITaxon:1779147,http://purl.obolibrary.org/obo/NCBITaxon_1779147,none +14.3157911,NCBITaxon:186822,http://purl.obolibrary.org/obo/NCBITaxon_186822,none +14.3157911,NCBITaxon:1972572,http://purl.obolibrary.org/obo/NCBITaxon_1972572,none +14.3157911,NCBITaxon:211513,http://purl.obolibrary.org/obo/NCBITaxon_211513,none +14.3157911,NCBITaxon:21472,http://purl.obolibrary.org/obo/NCBITaxon_21472,none +14.3157911,NCBITaxon:2204151,http://purl.obolibrary.org/obo/NCBITaxon_2204151,none +14.3157911,NCBITaxon:2231390,http://purl.obolibrary.org/obo/NCBITaxon_2231390,none +14.3157911,NCBITaxon:224313,http://purl.obolibrary.org/obo/NCBITaxon_224313,Odontophoridae +14.3157911,NCBITaxon:230741,http://purl.obolibrary.org/obo/NCBITaxon_230741,none +14.3157911,NCBITaxon:235883,http://purl.obolibrary.org/obo/NCBITaxon_235883,none +14.3157911,NCBITaxon:241818,http://purl.obolibrary.org/obo/NCBITaxon_241818,none +14.3157911,NCBITaxon:241819,http://purl.obolibrary.org/obo/NCBITaxon_241819,none +14.3157911,NCBITaxon:2560087,http://purl.obolibrary.org/obo/NCBITaxon_2560087,none +14.3157911,NCBITaxon:261002,http://purl.obolibrary.org/obo/NCBITaxon_261002,none +14.3157911,NCBITaxon:262,http://purl.obolibrary.org/obo/NCBITaxon_262,Francisella +14.3157911,NCBITaxon:262335,http://purl.obolibrary.org/obo/NCBITaxon_262335,none +14.3157911,NCBITaxon:2733314,http://purl.obolibrary.org/obo/NCBITaxon_2733314,none +14.3157911,NCBITaxon:28876,http://purl.obolibrary.org/obo/NCBITaxon_28876,none +14.3157911,NCBITaxon:292278,http://purl.obolibrary.org/obo/NCBITaxon_292278,none +14.3157911,NCBITaxon:294,http://purl.obolibrary.org/obo/NCBITaxon_294,none +14.3157911,NCBITaxon:29979,http://purl.obolibrary.org/obo/NCBITaxon_29979,none +14.3157911,NCBITaxon:31089,http://purl.obolibrary.org/obo/NCBITaxon_31089,Osteoglossomorpha +14.3157911,NCBITaxon:32061,http://purl.obolibrary.org/obo/NCBITaxon_32061,none +14.3157911,NCBITaxon:32064,http://purl.obolibrary.org/obo/NCBITaxon_32064,none +14.3157911,NCBITaxon:3208,http://purl.obolibrary.org/obo/NCBITaxon_3208,none +14.3157911,NCBITaxon:327386,http://purl.obolibrary.org/obo/NCBITaxon_327386,none +14.3157911,NCBITaxon:330379,http://purl.obolibrary.org/obo/NCBITaxon_330379,none +14.3157911,NCBITaxon:33374,http://purl.obolibrary.org/obo/NCBITaxon_33374,none +14.3157911,NCBITaxon:33375,http://purl.obolibrary.org/obo/NCBITaxon_33375,none +14.3157911,NCBITaxon:3345,http://purl.obolibrary.org/obo/NCBITaxon_3345,none +14.3157911,NCBITaxon:34064,http://purl.obolibrary.org/obo/NCBITaxon_34064,Francisellaceae +14.3157911,NCBITaxon:35291,http://purl.obolibrary.org/obo/NCBITaxon_35291,none +14.3157911,NCBITaxon:35460,http://purl.obolibrary.org/obo/NCBITaxon_35460,none +14.3157911,NCBITaxon:35461,http://purl.obolibrary.org/obo/NCBITaxon_35461,none +14.3157911,NCBITaxon:35582,http://purl.obolibrary.org/obo/NCBITaxon_35582,none +14.3157911,NCBITaxon:35583,http://purl.obolibrary.org/obo/NCBITaxon_35583,none +14.3157911,NCBITaxon:365047,http://purl.obolibrary.org/obo/NCBITaxon_365047,none +14.3157911,NCBITaxon:373506,http://purl.obolibrary.org/obo/NCBITaxon_373506,none +14.3157911,NCBITaxon:3749,http://purl.obolibrary.org/obo/NCBITaxon_3749,Malus +14.3157911,NCBITaxon:38668,http://purl.obolibrary.org/obo/NCBITaxon_38668,none +14.3157911,NCBITaxon:3982,http://purl.obolibrary.org/obo/NCBITaxon_3982,none +14.3157911,NCBITaxon:3983,http://purl.obolibrary.org/obo/NCBITaxon_3983,none +14.3157911,NCBITaxon:40687,http://purl.obolibrary.org/obo/NCBITaxon_40687,none +14.3157911,NCBITaxon:41116,http://purl.obolibrary.org/obo/NCBITaxon_41116,none +14.3157911,NCBITaxon:41712,http://purl.obolibrary.org/obo/NCBITaxon_41712,Osteoglossiformes +14.3157911,NCBITaxon:41773,http://purl.obolibrary.org/obo/NCBITaxon_41773,none +14.3157911,NCBITaxon:41819,http://purl.obolibrary.org/obo/NCBITaxon_41819,Ceratopogonidae +14.3157911,NCBITaxon:41820,http://purl.obolibrary.org/obo/NCBITaxon_41820,Culicoides +14.3157911,NCBITaxon:43801,http://purl.obolibrary.org/obo/NCBITaxon_43801,Ceratopogoninae +14.3157911,NCBITaxon:43911,http://purl.obolibrary.org/obo/NCBITaxon_43911,none +14.3157911,NCBITaxon:46436,http://purl.obolibrary.org/obo/NCBITaxon_46436,none +14.3157911,NCBITaxon:47563,http://purl.obolibrary.org/obo/NCBITaxon_47563,none +14.3157911,NCBITaxon:483850,http://purl.obolibrary.org/obo/NCBITaxon_483850,none +14.3157911,NCBITaxon:483851,http://purl.obolibrary.org/obo/NCBITaxon_483851,none +14.3157911,NCBITaxon:4842,http://purl.obolibrary.org/obo/NCBITaxon_4842,none +14.3157911,NCBITaxon:4919,http://purl.obolibrary.org/obo/NCBITaxon_4919,none +14.3157911,NCBITaxon:50519,http://purl.obolibrary.org/obo/NCBITaxon_50519,none +14.3157911,NCBITaxon:50713,http://purl.obolibrary.org/obo/NCBITaxon_50713,none +14.3157911,NCBITaxon:51034,http://purl.obolibrary.org/obo/NCBITaxon_51034,none +14.3157911,NCBITaxon:526418,http://purl.obolibrary.org/obo/NCBITaxon_526418,none +14.3157911,NCBITaxon:536056,http://purl.obolibrary.org/obo/NCBITaxon_536056,none +14.3157911,NCBITaxon:53747,http://purl.obolibrary.org/obo/NCBITaxon_53747,none +14.3157911,NCBITaxon:58262,http://purl.obolibrary.org/obo/NCBITaxon_58262,Culicoidini +14.3157911,NCBITaxon:63723,http://purl.obolibrary.org/obo/NCBITaxon_63723,none +14.3157911,NCBITaxon:64287,http://purl.obolibrary.org/obo/NCBITaxon_64287,none +14.3157911,NCBITaxon:64694,http://purl.obolibrary.org/obo/NCBITaxon_64694,none +14.3157911,NCBITaxon:6658,http://purl.obolibrary.org/obo/NCBITaxon_6658,none +14.3157911,NCBITaxon:69598,http://purl.obolibrary.org/obo/NCBITaxon_69598,none +14.3157911,NCBITaxon:7001,http://purl.obolibrary.org/obo/NCBITaxon_7001,none +14.3157911,NCBITaxon:72549,http://purl.obolibrary.org/obo/NCBITaxon_72549,none +14.3157911,NCBITaxon:7262,http://purl.obolibrary.org/obo/NCBITaxon_7262,none +14.3157911,NCBITaxon:75966,http://purl.obolibrary.org/obo/NCBITaxon_75966,none +14.3157911,NCBITaxon:8020,http://purl.obolibrary.org/obo/NCBITaxon_8020,none +14.3157911,NCBITaxon:84308,http://purl.obolibrary.org/obo/NCBITaxon_84308,none +14.3157911,NCBITaxon:8464,http://purl.obolibrary.org/obo/NCBITaxon_8464,Cryptodira +14.3157911,NCBITaxon:90883,http://purl.obolibrary.org/obo/NCBITaxon_90883,none +14.3157911,NCBITaxon:96867,http://purl.obolibrary.org/obo/NCBITaxon_96867,none +14.3157911,NCBITaxon:983543,http://purl.obolibrary.org/obo/NCBITaxon_983543,none +14.3157911,PR:000001436,http://purl.obolibrary.org/obo/PR_000001436,P2Y purinoceptor 11 +14.3157911,PR:000001508,http://purl.obolibrary.org/obo/PR_000001508,probable G-protein coupled receptor 142 +14.3157911,PR:000001523,http://purl.obolibrary.org/obo/PR_000001523,G-protein coupled receptor 22 +14.3157911,PR:000001537,http://purl.obolibrary.org/obo/PR_000001537,probable G-protein coupled receptor 75 +14.3157911,PR:000001617,http://purl.obolibrary.org/obo/PR_000001617,muscarinic acetylcholine receptor M5 +14.3157911,PR:000001641,http://purl.obolibrary.org/obo/PR_000001641,G-protein coupled receptor 26 +14.3157911,PR:000001973,http://purl.obolibrary.org/obo/PR_000001973,voltage-dependent T-type calcium channel subunit alpha-1I +14.3157911,PR:000002020,http://purl.obolibrary.org/obo/PR_000002020,MHC class II histocompatibility antigen beta chain DRB3 +14.3157911,PR:000002175,http://purl.obolibrary.org/obo/PR_000002175,14-3-3 protein beta/alpha +14.3157911,PR:000002978,http://purl.obolibrary.org/obo/PR_000002978,lymphocyte antigen 6G +14.3157911,PR:000003592,http://purl.obolibrary.org/obo/PR_000003592,ankyrin repeat and BTB/POZ domain-containing protein 1 +14.3157911,PR:000003683,http://purl.obolibrary.org/obo/PR_000003683,actin-like protein 6B +14.3157911,PR:000004095,http://purl.obolibrary.org/obo/PR_000004095,AP-1 complex subunit mu-2 +14.3157911,PR:000004112,http://purl.obolibrary.org/obo/PR_000004112,AP-4 complex subunit epsilon-1 +14.3157911,PR:000004212,http://purl.obolibrary.org/obo/PR_000004212,arfaptin-1 +14.3157911,PR:000004244,http://purl.obolibrary.org/obo/PR_000004244,Rho GDP-dissociation inhibitor 3 +14.3157911,PR:000004251,http://purl.obolibrary.org/obo/PR_000004251,Rho guanine nucleotide exchange factor 16 +14.3157911,PR:000004253,http://purl.obolibrary.org/obo/PR_000004253,Rho guanine nucleotide exchange factor 18 +14.3157911,PR:000004459,http://purl.obolibrary.org/obo/PR_000004459,"ATP synthase subunit d, mitochondrial" +14.3157911,PR:000004484,http://purl.obolibrary.org/obo/PR_000004484,V-type proton ATPase subunit C 2 +14.3157911,PR:000005030,http://purl.obolibrary.org/obo/PR_000005030,F-actin-capping protein subunit alpha-2 +14.3157911,PR:000005076,http://purl.obolibrary.org/obo/PR_000005076,cerebellin-3 +14.3157911,PR:000005166,http://purl.obolibrary.org/obo/PR_000005166,CMRF35-like molecule 7 +14.3157911,PR:000005269,http://purl.obolibrary.org/obo/PR_000005269,cyclin-dependent kinase-like 1 +14.3157911,PR:000005344,http://purl.obolibrary.org/obo/PR_000005344,centrosomal protein of 170 kDa +14.3157911,PR:000005444,http://purl.obolibrary.org/obo/PR_000005444,chondrolectin +14.3157911,PR:000005595,http://purl.obolibrary.org/obo/PR_000005595,cytokine-dependent hematopoietic cell linker +14.3157911,PR:000005654,http://purl.obolibrary.org/obo/PR_000005654,CCR4-NOT transcription complex subunit 6-like +14.3157911,PR:000005853,http://purl.obolibrary.org/obo/PR_000005853,cysteine-rich C-terminal protein 1 +14.3157911,PR:000005895,http://purl.obolibrary.org/obo/PR_000005895,cisplatin resistance-associated overexpressed protein +14.3157911,PR:000005899,http://purl.obolibrary.org/obo/PR_000005899,cytotoxic and regulatory T-cell molecule +14.3157911,PR:000005988,http://purl.obolibrary.org/obo/PR_000005988,cancer/testis antigen 1 +14.3157911,PR:000006302,http://purl.obolibrary.org/obo/PR_000006302,homeobox protein DBX2 +14.3157911,PR:000006329,http://purl.obolibrary.org/obo/PR_000006329,dCTP pyrophosphatase 1 +14.3157911,PR:000006389,http://purl.obolibrary.org/obo/PR_000006389,beta-defensin 110 +14.3157911,PR:000006519,http://purl.obolibrary.org/obo/PR_000006519,disks large-associated protein 4 +14.3157911,PR:000006581,http://purl.obolibrary.org/obo/PR_000006581,DnaJ homolog subfamily C member 14 +14.3157911,PR:000006952,http://purl.obolibrary.org/obo/PR_000006952,EP300-interacting inhibitor of differentiation 2 +14.3157911,PR:000007000,http://purl.obolibrary.org/obo/PR_000007000,eukaryotic translation initiation factor 4 gamma 3 +14.3157911,PR:000007001,http://purl.obolibrary.org/obo/PR_000007001,eukaryotic translation initiation factor 4H +14.3157911,PR:000007097,http://purl.obolibrary.org/obo/PR_000007097,ectonucleoside triphosphate diphosphohydrolase 6 +14.3157911,PR:000007121,http://purl.obolibrary.org/obo/PR_000007121,ephrin type-A receptor 10 +14.3157911,PR:000007216,http://purl.obolibrary.org/obo/PR_000007216,electron transfer flavoprotein subunit beta +14.3157911,PR:000007289,http://purl.obolibrary.org/obo/PR_000007289,none +14.3157911,PR:000007361,http://purl.obolibrary.org/obo/PR_000007361,fibulin-7 +14.3157911,PR:000007649,http://purl.obolibrary.org/obo/PR_000007649,forkhead box protein S1 +14.3157911,PR:000007662,http://purl.obolibrary.org/obo/PR_000007662,protein FRG2 +14.3157911,PR:000008069,http://purl.obolibrary.org/obo/PR_000008069,glucocorticoid modulatory element-binding protein 2 +14.3157911,PR:000008105,http://purl.obolibrary.org/obo/PR_000008105,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-12 +14.3157911,PR:000008146,http://purl.obolibrary.org/obo/PR_000008146,GON-4-like protein +14.3157911,PR:000008196,http://purl.obolibrary.org/obo/PR_000008196,G-protein coupled receptor family C group 5 member C +14.3157911,PR:000008363,http://purl.obolibrary.org/obo/PR_000008363,LARGE xylosyl- and glucuronyltransferase 2 +14.3157911,PR:000008503,http://purl.obolibrary.org/obo/PR_000008503,E3 ubiquitin-protein ligase HECW1 +14.3157911,PR:000008662,http://purl.obolibrary.org/obo/PR_000008662,heterogeneous nuclear ribonucleoproteins C1/C2 +14.3157911,PR:000008668,http://purl.obolibrary.org/obo/PR_000008668,heterogeneous nuclear ribonucleoprotein H3 +14.3157911,PR:000008821,http://purl.obolibrary.org/obo/PR_000008821,heat shock protein beta-9 +14.3157911,PR:000008850,http://purl.obolibrary.org/obo/PR_000008850,hyaluronidase-4 +14.3157911,PR:000008928,http://purl.obolibrary.org/obo/PR_000008928,interferon omega-1 +14.3157911,PR:000009045,http://purl.obolibrary.org/obo/PR_000009045,inositol polyphosphate-4-phosphatase type I A +14.3157911,PR:000009121,http://purl.obolibrary.org/obo/PR_000009121,pre-mRNA-splicing factor ISY1 +14.3157911,PR:000009186,http://purl.obolibrary.org/obo/PR_000009186,none +14.3157911,PR:000009243,http://purl.obolibrary.org/obo/PR_000009243,katanin p60 ATPase-containing subunit A-like 1 +14.3157911,PR:000009309,http://purl.obolibrary.org/obo/PR_000009309,kinesin-like protein KIF2B +14.3157911,PR:000009494,http://purl.obolibrary.org/obo/PR_000009494,"keratin, type II cytoskeletal 79" +14.3157911,PR:000009499,http://purl.obolibrary.org/obo/PR_000009499,"keratin, type II cuticular Hb3" +14.3157911,PR:000009640,http://purl.obolibrary.org/obo/PR_000009640,lethal(3)malignant brain tumor-like protein 1 +14.3157911,PR:000009646,http://purl.obolibrary.org/obo/PR_000009646,"serine beta-lactamase-like protein LACTB, mitochondrial" +14.3157911,PR:000009701,http://purl.obolibrary.org/obo/PR_000009701,late cornified envelope protein 1C +14.3157911,PR:000009741,http://purl.obolibrary.org/obo/PR_000009741,L-lactate dehydrogenase A-like 6B +14.3157911,PR:000009824,http://purl.obolibrary.org/obo/PR_000009824,protein lin-54 +14.3157911,PR:000009872,http://purl.obolibrary.org/obo/PR_000009872,endoplasmic reticulum junction formation protein lunapark +14.3157911,PR:000009931,http://purl.obolibrary.org/obo/PR_000009931,leucine-rich repeat-containing protein 10 +14.3157911,PR:000009955,http://purl.obolibrary.org/obo/PR_000009955,U7 snRNA-associated Sm-like protein LSm10 +14.3157911,PR:000010017,http://purl.obolibrary.org/obo/PR_000010017,lysozyme-like protein 6 +14.3157911,PR:000010049,http://purl.obolibrary.org/obo/PR_000010049,transcription factor MafF +14.3157911,PR:000010132,http://purl.obolibrary.org/obo/PR_000010132,mitogen-activated protein kinase kinase kinase 13 +14.3157911,PR:000010441,http://purl.obolibrary.org/obo/PR_000010441,myeloid leukemia factor 2 +14.3157911,PR:000010481,http://purl.obolibrary.org/obo/PR_000010481,matrix metalloproteinase-21 +14.3157911,PR:000010528,http://purl.obolibrary.org/obo/PR_000010528,mitochondrial amidoxime reducing component 2 +14.3157911,PR:000010739,http://purl.obolibrary.org/obo/PR_000010739,myotubularin-related protein 6 +14.3157911,PR:000010778,http://purl.obolibrary.org/obo/PR_000010778,caveolae-associated protein 4 +14.3157911,PR:000011151,http://purl.obolibrary.org/obo/PR_000011151,neuralized-like protein 4 +14.3157911,PR:000011235,http://purl.obolibrary.org/obo/PR_000011235,NF-kappa-B inhibitor-interacting Ras-like protein 1 +14.3157911,PR:000011501,http://purl.obolibrary.org/obo/PR_000011501,nuclear fragile X mental retardation-interacting protein 1 +14.3157911,PR:000012247,http://purl.obolibrary.org/obo/PR_000012247,paladin +14.3157911,PR:000012461,http://purl.obolibrary.org/obo/PR_000012461,phosducin-like protein 2 +14.3157911,PR:000012641,http://purl.obolibrary.org/obo/PR_000012641,PHD finger protein 14 +14.3157911,PR:000012651,http://purl.obolibrary.org/obo/PR_000012651,PHD finger protein 3 +14.3157911,PR:000012693,http://purl.obolibrary.org/obo/PR_000012693,GPI mannosyltransferase 3 +14.3157911,PR:000012720,http://purl.obolibrary.org/obo/PR_000012720,"phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit beta isoform" +14.3157911,PR:000012848,http://purl.obolibrary.org/obo/PR_000012848,phospholipase D6 +14.3157911,PR:000012852,http://purl.obolibrary.org/obo/PR_000012852,pleckstrin-2 +14.3157911,PR:000012961,http://purl.obolibrary.org/obo/PR_000012961,DNA polymerase alpha subunit B +14.3157911,PR:000013006,http://purl.obolibrary.org/obo/PR_000013006,DNA-directed RNA polymerase III subunit RPC7 +14.3157911,PR:000013106,http://purl.obolibrary.org/obo/PR_000013106,E3 ubiquitin-protein ligase PPP1R11 +14.3157911,PR:000013114,http://purl.obolibrary.org/obo/PR_000013114,protein phosphatase 1 regulatory subunit 14C +14.3157911,PR:000013146,http://purl.obolibrary.org/obo/PR_000013146,serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit delta isoform +14.3157911,PR:000013169,http://purl.obolibrary.org/obo/PR_000013169,PML-RARA-regulated adapter molecule 1 +14.3157911,PR:000013326,http://purl.obolibrary.org/obo/PR_000013326,serine protease 33 +14.3157911,PR:000013332,http://purl.obolibrary.org/obo/PR_000013332,protogenin +14.3157911,PR:000013354,http://purl.obolibrary.org/obo/PR_000013354,pregnancy-specific beta-1-glycoprotein 6 +14.3157911,PR:000013395,http://purl.obolibrary.org/obo/PR_000013395,proteasome activator complex subunit 4 +14.3157911,PR:000013513,http://purl.obolibrary.org/obo/PR_000013513,peroxisomal testis-specific protein 1 +14.3157911,PR:000013605,http://purl.obolibrary.org/obo/PR_000013605,Ras-related protein Rab-30 +14.3157911,PR:000013637,http://purl.obolibrary.org/obo/PR_000013637,Ras-related protein Rab-6B +14.3157911,PR:000013844,http://purl.obolibrary.org/obo/PR_000013844,Capz-interacting protein +14.3157911,PR:000013868,http://purl.obolibrary.org/obo/PR_000013868,receptor expression-enhancing protein 6 +14.3157911,PR:000013910,http://purl.obolibrary.org/obo/PR_000013910,E3 ubiquitin-protein ligase rififylin +14.3157911,PR:000013932,http://purl.obolibrary.org/obo/PR_000013932,tRNA methyltransferase 10 homolog C +14.3157911,PR:000014450,http://purl.obolibrary.org/obo/PR_000014450,histone deacetylase complex subunit SAP30L +14.3157911,PR:000014625,http://purl.obolibrary.org/obo/PR_000014625,semaphorin-4F +14.3157911,PR:000015143,http://purl.obolibrary.org/obo/PR_000015143,solute carrier family 43 member 3 +14.3157911,PR:000015155,http://purl.obolibrary.org/obo/PR_000015155,sodium-driven chloride bicarbonate exchanger +14.3157911,PR:000015315,http://purl.obolibrary.org/obo/PR_000015315,clathrin coat assembly protein AP180 +14.3157911,PR:000015365,http://purl.obolibrary.org/obo/PR_000015365,sorting nexin-16 +14.3157911,PR:000015537,http://purl.obolibrary.org/obo/PR_000015537,serine protease inhibitor Kazal-type 6 +14.3157911,PR:000015565,http://purl.obolibrary.org/obo/PR_000015565,signal peptide peptidase-like 2C +14.3157911,PR:000015595,http://purl.obolibrary.org/obo/PR_000015595,"spectrin beta chain, non-erythrocytic 5" +14.3157911,PR:000015654,http://purl.obolibrary.org/obo/PR_000015654,protein phosphatase Slingshot homolog 2 +14.3157911,PR:000015655,http://purl.obolibrary.org/obo/PR_000015655,protein phosphatase Slingshot homolog 3 +14.3157911,PR:000015916,http://purl.obolibrary.org/obo/PR_000015916,synaptotagmin-like protein 5 +14.3157911,PR:000016016,http://purl.obolibrary.org/obo/PR_000016016,transcription initiation factor TFIID subunit 11 +14.3157911,PR:000016018,http://purl.obolibrary.org/obo/PR_000016018,transcription initiation factor TFIID subunit 13 +14.3157911,PR:000016034,http://purl.obolibrary.org/obo/PR_000016034,transcription initiation factor TFIID subunit 7-like +14.3157911,PR:000016085,http://purl.obolibrary.org/obo/PR_000016085,taste receptor type 2 member 7 +14.3157911,PR:000016247,http://purl.obolibrary.org/obo/PR_000016247,testis-expressed protein 10 +14.3157911,PR:000016248,http://purl.obolibrary.org/obo/PR_000016248,testis-expressed protein 101 +14.3157911,PR:000016250,http://purl.obolibrary.org/obo/PR_000016250,testis-expressed protein 12 +14.3157911,PR:000016551,http://purl.obolibrary.org/obo/PR_000016551,torsin-1A-interacting protein 1 +14.3157911,PR:000016615,http://purl.obolibrary.org/obo/PR_000016615,trafficking protein particle complex subunit 4 +14.3157911,PR:000016739,http://purl.obolibrary.org/obo/PR_000016739,tetraspanin-13 +14.3157911,PR:000016760,http://purl.obolibrary.org/obo/PR_000016760,testis-specific Y-encoded-like protein 1 +14.3157911,PR:000016774,http://purl.obolibrary.org/obo/PR_000016774,testis-specific serine/threonine-protein kinase 6 +14.3157911,PR:000016831,http://purl.obolibrary.org/obo/PR_000016831,gamma-tubulin complex component 6 +14.3157911,PR:000016837,http://purl.obolibrary.org/obo/PR_000016837,tubby-related protein 4 +14.3157911,PR:000016857,http://purl.obolibrary.org/obo/PR_000016857,thioredoxin domain-containing protein 11 +14.3157911,PR:000016923,http://purl.obolibrary.org/obo/PR_000016923,none +14.3157911,PR:000016960,http://purl.obolibrary.org/obo/PR_000016960,ubiquitin-associated protein 2-like +14.3157911,PR:000017215,http://purl.obolibrary.org/obo/PR_000017215,UDP-glucuronic acid decarboxylase 1 +14.3157911,PR:000017336,http://purl.obolibrary.org/obo/PR_000017336,vacuolar protein sorting-associated protein 37B +14.3157911,PR:000017419,http://purl.obolibrary.org/obo/PR_000017419,negative elongation factor A +14.3157911,PR:000017589,http://purl.obolibrary.org/obo/PR_000017589,telomere zinc finger-associated protein +14.3157911,PR:000017608,http://purl.obolibrary.org/obo/PR_000017608,zinc finger CCHC domain-containing protein 8 +14.3157911,PR:000017658,http://purl.obolibrary.org/obo/PR_000017658,zinc finger FYVE domain-containing protein 16 +14.3157911,PR:000017671,http://purl.obolibrary.org/obo/PR_000017671,zinc finger imprinted 2 +14.3157911,PR:000017804,http://purl.obolibrary.org/obo/PR_000017804,zinc finger protein 281 +14.3157911,PR:000017874,http://purl.obolibrary.org/obo/PR_000017874,zinc finger protein 41 +14.3157911,PR:000018221,http://purl.obolibrary.org/obo/PR_000018221,zinc finger and SCAN domain-containing protein 10 +14.3157911,PR:000022094,http://purl.obolibrary.org/obo/PR_000022094,none +14.3157911,PR:000022185,http://purl.obolibrary.org/obo/PR_000022185,none +14.3157911,PR:000022348,http://purl.obolibrary.org/obo/PR_000022348,none +14.3157911,PR:000022466,http://purl.obolibrary.org/obo/PR_000022466,none +14.3157911,PR:000022721,http://purl.obolibrary.org/obo/PR_000022721,none +14.3157911,PR:000022850,http://purl.obolibrary.org/obo/PR_000022850,none +14.3157911,PR:000022903,http://purl.obolibrary.org/obo/PR_000022903,none +14.3157911,PR:000022905,http://purl.obolibrary.org/obo/PR_000022905,bifunctional protein HldE +14.3157911,PR:000023000,http://purl.obolibrary.org/obo/PR_000023000,none +14.3157911,PR:000023166,http://purl.obolibrary.org/obo/PR_000023166,none +14.3157911,PR:000023246,http://purl.obolibrary.org/obo/PR_000023246,none +14.3157911,PR:000023350,http://purl.obolibrary.org/obo/PR_000023350,none +14.3157911,PR:000023381,http://purl.obolibrary.org/obo/PR_000023381,none +14.3157911,PR:000023501,http://purl.obolibrary.org/obo/PR_000023501,none +14.3157911,PR:000023512,http://purl.obolibrary.org/obo/PR_000023512,none +14.3157911,PR:000023579,http://purl.obolibrary.org/obo/PR_000023579,none +14.3157911,PR:000023594,http://purl.obolibrary.org/obo/PR_000023594,none +14.3157911,PR:000023808,http://purl.obolibrary.org/obo/PR_000023808,none +14.3157911,PR:000023997,http://purl.obolibrary.org/obo/PR_000023997,none +14.3157911,PR:000024053,http://purl.obolibrary.org/obo/PR_000024053,none +14.3157911,PR:000024114,http://purl.obolibrary.org/obo/PR_000024114,none +14.3157911,PR:000025577,http://purl.obolibrary.org/obo/PR_000025577,none +14.3157911,PR:000025669,http://purl.obolibrary.org/obo/PR_000025669,none +14.3157911,PR:000027654,http://purl.obolibrary.org/obo/PR_000027654,microtubule-associated protein tau isoform Fetal-tau phosphorylated form +14.3157911,PR:000029778,http://purl.obolibrary.org/obo/PR_000029778,probable methyltransferase TARBP1 +14.3157911,PR:000029856,http://purl.obolibrary.org/obo/PR_000029856,WD repeat-containing protein 18 +14.3157911,PR:000029952,http://purl.obolibrary.org/obo/PR_000029952,none +14.3157911,PR:000030199,http://purl.obolibrary.org/obo/PR_000030199,"cytochrome c oxidase assembly protein COX20, mitochondrial" +14.3157911,PR:000030280,http://purl.obolibrary.org/obo/PR_000030280,"probable proline--tRNA ligase, mitochondrial" +14.3157911,PR:000030340,http://purl.obolibrary.org/obo/PR_000030340,protein FAM83D +14.3157911,PR:000030474,http://purl.obolibrary.org/obo/PR_000030474,ER membrane protein complex subunit 1 +14.3157911,PR:000030488,http://purl.obolibrary.org/obo/PR_000030488,EF-hand calcium-binding domain-containing protein 4B +14.3157911,PR:000030650,http://purl.obolibrary.org/obo/PR_000030650,SH2 domain-containing adapter protein E +14.3157911,PR:000030667,http://purl.obolibrary.org/obo/PR_000030667,"ATP synthase F(0) complex subunit C1, mitochondrial" +14.3157911,PR:000031050,http://purl.obolibrary.org/obo/PR_000031050,phenazine biosynthesis-like domain-containing protein +14.3157911,PR:000031127,http://purl.obolibrary.org/obo/PR_000031127,zinc finger CCCH domain-containing protein 7B +14.3157911,PR:000031226,http://purl.obolibrary.org/obo/PR_000031226,protein AAR2 homolog +14.3157911,PR:000031355,http://purl.obolibrary.org/obo/PR_000031355,"protein O-linked-mannose beta-1,4-N-acetylglucosaminyltransferase 2" +14.3157911,PR:000031377,http://purl.obolibrary.org/obo/PR_000031377,protein shisa-9 +14.3157911,PR:000031501,http://purl.obolibrary.org/obo/PR_000031501,Golgi pH regulator B +14.3157911,PR:000031521,http://purl.obolibrary.org/obo/PR_000031521,growth hormone-inducible transmembrane protein +14.3157911,PR:000031599,http://purl.obolibrary.org/obo/PR_000031599,protein MGARP +14.3157911,PR:000031610,http://purl.obolibrary.org/obo/PR_000031610,protein FAM168A +14.3157911,PR:000031829,http://purl.obolibrary.org/obo/PR_000031829,FAD-dependent oxidoreductase domain-containing protein 1 +14.3157911,PR:000032060,http://purl.obolibrary.org/obo/PR_000032060,none +14.3157911,PR:000032065,http://purl.obolibrary.org/obo/PR_000032065,transmembrane protein 98 +14.3157911,PR:000032445,http://purl.obolibrary.org/obo/PR_000032445,ubiquinol-cytochrome-c reductase complex assembly factor 2 +14.3157911,PR:000032536,http://purl.obolibrary.org/obo/PR_000032536,coiled-coil domain-containing protein 3 +14.3157911,PR:000032711,http://purl.obolibrary.org/obo/PR_000032711,protein Aster-C +14.3157911,PR:000032778,http://purl.obolibrary.org/obo/PR_000032778,intraflagellar transport protein 43 homolog +14.3157911,PR:000032808,http://purl.obolibrary.org/obo/PR_000032808,tetratricopeptide repeat protein 7A +14.3157911,PR:000032814,http://purl.obolibrary.org/obo/PR_000032814,protein O-mannosyl-transferase TMTC2 +14.3157911,PR:000033141,http://purl.obolibrary.org/obo/PR_000033141,none +14.3157911,PR:000033202,http://purl.obolibrary.org/obo/PR_000033202,none +14.3157911,PR:000033331,http://purl.obolibrary.org/obo/PR_000033331,none +14.3157911,PR:000033356,http://purl.obolibrary.org/obo/PR_000033356,none +14.3157911,PR:000033793,http://purl.obolibrary.org/obo/PR_000033793,none +14.3157911,PR:000033843,http://purl.obolibrary.org/obo/PR_000033843,none +14.3157911,PR:000034282,http://purl.obolibrary.org/obo/PR_000034282,none +14.3157911,PR:000034749,http://purl.obolibrary.org/obo/PR_000034749,cilia- and flagella-associated protein 221 +14.3157911,PR:000034780,http://purl.obolibrary.org/obo/PR_000034780,none +14.3157911,PR:000034897,http://purl.obolibrary.org/obo/PR_000034897,none +14.3157911,PR:000035286,http://purl.obolibrary.org/obo/PR_000035286,none +14.3157911,PR:000036925,http://purl.obolibrary.org/obo/PR_000036925,none +14.3157911,PR:A2AAE1,http://purl.obolibrary.org/obo/PR_A2AAE1,none +14.3157911,PR:A4IG55,http://purl.obolibrary.org/obo/PR_A4IG55,none +14.3157911,PR:A7YE96,http://purl.obolibrary.org/obo/PR_A7YE96,none +14.3157911,PR:F4JLK2,http://purl.obolibrary.org/obo/PR_F4JLK2,none +14.3157911,PR:F4JPW1,http://purl.obolibrary.org/obo/PR_F4JPW1,none +14.3157911,PR:F4K0A6,http://purl.obolibrary.org/obo/PR_F4K0A6,none +14.3157911,PR:O04905,http://purl.obolibrary.org/obo/PR_O04905,none +14.3157911,PR:O23066,http://purl.obolibrary.org/obo/PR_O23066,none +14.3157911,PR:O64758,http://purl.obolibrary.org/obo/PR_O64758,none +14.3157911,PR:O74370,http://purl.obolibrary.org/obo/PR_O74370,none +14.3157911,PR:O80341,http://purl.obolibrary.org/obo/PR_O80341,none +14.3157911,PR:O80462,http://purl.obolibrary.org/obo/PR_O80462,none +14.3157911,PR:O80939,http://purl.obolibrary.org/obo/PR_O80939,none +14.3157911,PR:O82481,http://purl.obolibrary.org/obo/PR_O82481,none +14.3157911,PR:O82587,http://purl.obolibrary.org/obo/PR_O82587,none +14.3157911,PR:O94251,http://purl.obolibrary.org/obo/PR_O94251,none +14.3157911,PR:O94742,http://purl.obolibrary.org/obo/PR_O94742,none +14.3157911,PR:P00688,http://purl.obolibrary.org/obo/PR_P00688,none +14.3157911,PR:P04650,http://purl.obolibrary.org/obo/PR_P04650,none +14.3157911,PR:P06487,http://purl.obolibrary.org/obo/PR_P06487,none +14.3157911,PR:P0CG51,http://purl.obolibrary.org/obo/PR_P0CG51,none +14.3157911,PR:P0CG71,http://purl.obolibrary.org/obo/PR_P0CG71,none +14.3157911,PR:P10649,http://purl.obolibrary.org/obo/PR_P10649,none +14.3157911,PR:P12970,http://purl.obolibrary.org/obo/PR_P12970,none +14.3157911,PR:P13677,http://purl.obolibrary.org/obo/PR_P13677,none +14.3157911,PR:P17478,http://purl.obolibrary.org/obo/PR_P17478,none +14.3157911,PR:P17988,http://purl.obolibrary.org/obo/PR_P17988,none +14.3157911,PR:P20448,http://purl.obolibrary.org/obo/PR_P20448,none +14.3157911,PR:P21374,http://purl.obolibrary.org/obo/PR_P21374,none +14.3157911,PR:P25693,http://purl.obolibrary.org/obo/PR_P25693,none +14.3157911,PR:P25696,http://purl.obolibrary.org/obo/PR_P25696,none +14.3157911,PR:P28185,http://purl.obolibrary.org/obo/PR_P28185,none +14.3157911,PR:P32429,http://purl.obolibrary.org/obo/PR_P32429,none +14.3157911,PR:P38341,http://purl.obolibrary.org/obo/PR_P38341,none +14.3157911,PR:P39079,http://purl.obolibrary.org/obo/PR_P39079,none +14.3157911,PR:P54639,http://purl.obolibrary.org/obo/PR_P54639,none +14.3157911,PR:P79058,http://purl.obolibrary.org/obo/PR_P79058,none +14.3157911,PR:P94416,http://purl.obolibrary.org/obo/PR_P94416,none +14.3157911,PR:Q02330,http://purl.obolibrary.org/obo/PR_Q02330,none +14.3157911,PR:Q02753,http://purl.obolibrary.org/obo/PR_Q02753,none +14.3157911,PR:Q03465,http://purl.obolibrary.org/obo/PR_Q03465,none +14.3157911,PR:Q04437,http://purl.obolibrary.org/obo/PR_Q04437,none +14.3157911,PR:Q07099,http://purl.obolibrary.org/obo/PR_Q07099,none +14.3157911,PR:Q10243,http://purl.obolibrary.org/obo/PR_Q10243,none +14.3157911,PR:Q2LD37,http://purl.obolibrary.org/obo/PR_Q2LD37,transmembrane protein KIAA1109 (human) +14.3157911,PR:Q38865,http://purl.obolibrary.org/obo/PR_Q38865,none +14.3157911,PR:Q39112,http://purl.obolibrary.org/obo/PR_Q39112,none +14.3157911,PR:Q4V5A3,http://purl.obolibrary.org/obo/PR_Q4V5A3,none +14.3157911,PR:Q54BD4,http://purl.obolibrary.org/obo/PR_Q54BD4,none +14.3157911,PR:Q55CA0,http://purl.obolibrary.org/obo/PR_Q55CA0,none +14.3157911,PR:Q59NP5,http://purl.obolibrary.org/obo/PR_Q59NP5,none +14.3157911,PR:Q5A3K2,http://purl.obolibrary.org/obo/PR_Q5A3K2,none +14.3157911,PR:Q7XJ98,http://purl.obolibrary.org/obo/PR_Q7XJ98,none +14.3157911,PR:Q84M91,http://purl.obolibrary.org/obo/PR_Q84M91,none +14.3157911,PR:Q84MC7,http://purl.obolibrary.org/obo/PR_Q84MC7,none +14.3157911,PR:Q8GXU8,http://purl.obolibrary.org/obo/PR_Q8GXU8,none +14.3157911,PR:Q8L981,http://purl.obolibrary.org/obo/PR_Q8L981,none +14.3157911,PR:Q940Y5,http://purl.obolibrary.org/obo/PR_Q940Y5,none +14.3157911,PR:Q9C8E1,http://purl.obolibrary.org/obo/PR_Q9C8E1,none +14.3157911,PR:Q9C8K2,http://purl.obolibrary.org/obo/PR_Q9C8K2,none +14.3157911,PR:Q9C8Z9,http://purl.obolibrary.org/obo/PR_Q9C8Z9,none +14.3157911,PR:Q9DB10,http://purl.obolibrary.org/obo/PR_Q9DB10,none +14.3157911,PR:Q9FIM9,http://purl.obolibrary.org/obo/PR_Q9FIM9,none +14.3157911,PR:Q9LHH7,http://purl.obolibrary.org/obo/PR_Q9LHH7,none +14.3157911,PR:Q9LJY0,http://purl.obolibrary.org/obo/PR_Q9LJY0,none +14.3157911,PR:Q9LSN7,http://purl.obolibrary.org/obo/PR_Q9LSN7,none +14.3157911,PR:Q9LVI4,http://purl.obolibrary.org/obo/PR_Q9LVI4,none +14.3157911,PR:Q9M158,http://purl.obolibrary.org/obo/PR_Q9M158,none +14.3157911,PR:Q9M2P2,http://purl.obolibrary.org/obo/PR_Q9M2P2,none +14.3157911,PR:Q9S7I3,http://purl.obolibrary.org/obo/PR_Q9S7I3,none +14.3157911,PR:Q9SDN0,http://purl.obolibrary.org/obo/PR_Q9SDN0,none +14.3157911,PR:Q9SEU4,http://purl.obolibrary.org/obo/PR_Q9SEU4,none +14.3157911,PR:Q9SKG5,http://purl.obolibrary.org/obo/PR_Q9SKG5,none +14.3157911,PR:Q9SUM4,http://purl.obolibrary.org/obo/PR_Q9SUM4,none +14.3157911,PR:Q9SW80,http://purl.obolibrary.org/obo/PR_Q9SW80,none +14.3157911,PR:Q9SZ42,http://purl.obolibrary.org/obo/PR_Q9SZ42,none +14.3157911,PR:Q9UN81,http://purl.obolibrary.org/obo/PR_Q9UN81,none +14.3157911,PR:Q9XY35,http://purl.obolibrary.org/obo/PR_Q9XY35,none +14.3157911,PR:Q9Z0E6,http://purl.obolibrary.org/obo/PR_Q9Z0E6,none +14.3157911,PR:Q9ZSD4,http://purl.obolibrary.org/obo/PR_Q9ZSD4,none +14.3157911,SO:0000091,http://purl.obolibrary.org/obo/SO_0000091,apicoplast_gene +14.3157911,SO:0000157,http://purl.obolibrary.org/obo/SO_0000157,phagemid +14.3157911,SO:0000380,http://purl.obolibrary.org/obo/SO_0000380,hammerhead_ribozyme +14.3157911,SO:0000558,http://purl.obolibrary.org/obo/SO_0000558,C_cluster +14.3157911,SO:0000638,http://purl.obolibrary.org/obo/SO_0000638,transcribed_spacer_region +14.3157911,SO:0000680,http://purl.obolibrary.org/obo/SO_0000680,non_canonical_start_codon +14.3157911,SO:0000838,http://purl.obolibrary.org/obo/SO_0000838,rRNA_primary_transcript_region +14.3157911,SO:0000975,http://purl.obolibrary.org/obo/SO_0000975,minicircle_gene +14.3157911,SO:0001254,http://purl.obolibrary.org/obo/SO_0001254,polyploid +14.3157911,SO:0001535,http://purl.obolibrary.org/obo/SO_0001535,P_TIR_transposon +14.3157911,SO:0001609,http://purl.obolibrary.org/obo/SO_0001609,elongated_polypeptide +14.3157911,SO:0001626,http://purl.obolibrary.org/obo/SO_0001626,incomplete_terminal_codon_variant +14.3157911,SO:0001920,http://purl.obolibrary.org/obo/SO_0001920,N6_methyladenine +14.3157911,UBERON:0001001,http://purl.obolibrary.org/obo/UBERON_0001001,chitin-based cuticle +14.3157911,UBERON:0001122,http://purl.obolibrary.org/obo/UBERON_0001122,scalenus medius +14.3157911,UBERON:0001163,http://purl.obolibrary.org/obo/UBERON_0001163,lesser curvature of stomach +14.3157911,UBERON:0001248,http://purl.obolibrary.org/obo/UBERON_0001248,hilum of spleen +14.3157911,UBERON:0001664,http://purl.obolibrary.org/obo/UBERON_0001664,inferior cerebral vein +14.3157911,UBERON:0001763,http://purl.obolibrary.org/obo/UBERON_0001763,odontogenic papilla +14.3157911,UBERON:0001882,http://purl.obolibrary.org/obo/UBERON_0001882,nucleus accumbens +14.3157911,UBERON:0002202,http://purl.obolibrary.org/obo/UBERON_0002202,submucosa of trachea +14.3157911,UBERON:0002499,http://purl.obolibrary.org/obo/UBERON_0002499,cochlear labyrinth +14.3157911,UBERON:0002531,http://purl.obolibrary.org/obo/UBERON_0002531,paired fin bud +14.3157911,UBERON:0002547,http://purl.obolibrary.org/obo/UBERON_0002547,tadpole +14.3157911,UBERON:0002727,http://purl.obolibrary.org/obo/UBERON_0002727,medial medullary lamina of globus pallidus +14.3157911,UBERON:0002895,http://purl.obolibrary.org/obo/UBERON_0002895,secondary olfactory cortex +14.3157911,UBERON:0003269,http://purl.obolibrary.org/obo/UBERON_0003269,skeletal muscle tissue of eye +14.3157911,UBERON:0003355,http://purl.obolibrary.org/obo/UBERON_0003355,epithelium of incisor +14.3157911,UBERON:0003368,http://purl.obolibrary.org/obo/UBERON_0003368,epithelium of hard palate +14.3157911,UBERON:0003434,http://purl.obolibrary.org/obo/UBERON_0003434,wrist nerve +14.3157911,UBERON:0003974,http://purl.obolibrary.org/obo/UBERON_0003974,upper part of vagina +14.3157911,UBERON:0004726,http://purl.obolibrary.org/obo/UBERON_0004726,vasa recta +14.3157911,UBERON:0004788,http://purl.obolibrary.org/obo/UBERON_0004788,kidney pelvis urothelium +14.3157911,UBERON:0004794,http://purl.obolibrary.org/obo/UBERON_0004794,esophagus secretion +14.3157911,UBERON:0006195,http://purl.obolibrary.org/obo/UBERON_0006195,renal sinus of left kidney +14.3157911,UBERON:0006514,http://purl.obolibrary.org/obo/UBERON_0006514,pallidum +14.3157911,UBERON:0006742,http://purl.obolibrary.org/obo/UBERON_0006742,canthus +14.3157911,UBERON:0007105,http://purl.obolibrary.org/obo/UBERON_0007105,vitelline duct +14.3157911,UBERON:0007157,http://purl.obolibrary.org/obo/UBERON_0007157,superior thyroid vein +14.3157911,UBERON:0007491,http://purl.obolibrary.org/obo/UBERON_0007491,chitin-based acellular structure +14.3157911,UBERON:0007626,http://purl.obolibrary.org/obo/UBERON_0007626,subparaventricular zone +14.3157911,UBERON:0007812,http://purl.obolibrary.org/obo/UBERON_0007812,post-anal tail +14.3157911,UBERON:0009006,http://purl.obolibrary.org/obo/UBERON_0009006,deep inguinal lymph node +14.3157911,UBERON:0009102,http://purl.obolibrary.org/obo/UBERON_0009102,supraneural body +14.3157911,UBERON:0009568,http://purl.obolibrary.org/obo/UBERON_0009568,trunk region of vertebral column +14.3157911,UBERON:0009668,http://purl.obolibrary.org/obo/UBERON_0009668,ventral mesentery +14.3157911,UBERON:0010233,http://purl.obolibrary.org/obo/UBERON_0010233,stroma of thyroid gland +14.3157911,UBERON:0011244,http://purl.obolibrary.org/obo/UBERON_0011244,perpendicular plate of ethmoid +14.3157911,UBERON:0011565,http://purl.obolibrary.org/obo/UBERON_0011565,lumen of gastrointestinal system +14.3157911,UBERON:0011631,http://purl.obolibrary.org/obo/UBERON_0011631,tabular bone +14.3157911,UBERON:0011642,http://purl.obolibrary.org/obo/UBERON_0011642,oral epithelium from ectoderm +14.3157911,UBERON:0011646,http://purl.obolibrary.org/obo/UBERON_0011646,patagialis muscle +14.3157911,UBERON:0011792,http://purl.obolibrary.org/obo/UBERON_0011792,feather muscle +14.3157911,UBERON:0012489,http://purl.obolibrary.org/obo/UBERON_0012489,muscle layer of colon +14.3157911,UBERON:0013760,http://purl.obolibrary.org/obo/UBERON_0013760,external cervical os +14.3157911,UBERON:0014448,http://purl.obolibrary.org/obo/UBERON_0014448,feathered ear tuft +14.3157911,UBERON:0014770,http://purl.obolibrary.org/obo/UBERON_0014770,palpebral artery +14.3157911,UBERON:0014779,http://purl.obolibrary.org/obo/UBERON_0014779,liver reticuloendothelial system +14.3157911,UBERON:0014793,http://purl.obolibrary.org/obo/UBERON_0014793,musculature of pectoral complex +14.3157911,UBERON:0015142,http://purl.obolibrary.org/obo/UBERON_0015142,falciform fat +14.3157911,UBERON:0015170,http://purl.obolibrary.org/obo/UBERON_0015170,nauplius eye +14.3157911,UBERON:0015837,http://purl.obolibrary.org/obo/UBERON_0015837,incisor dental pulp +14.3157911,UBERON:0015839,http://purl.obolibrary.org/obo/UBERON_0015839,molar epithelium +14.3157911,UBERON:0015843,http://purl.obolibrary.org/obo/UBERON_0015843,molar enamel organ +14.3157911,UBERON:0016401,http://purl.obolibrary.org/obo/UBERON_0016401,pancreaticoduodenal lymph node +14.3157911,UBERON:0016402,http://purl.obolibrary.org/obo/UBERON_0016402,mesocolic lymph node +14.3157911,UBERON:0018656,http://purl.obolibrary.org/obo/UBERON_0018656,puparium +14.3157911,UBERON:0018676,http://purl.obolibrary.org/obo/UBERON_0018676,renal nerve plexus +14.3157911,UBERON:0025102,http://purl.obolibrary.org/obo/UBERON_0025102,inferior occipital sulcus +14.3157911,UBERON:0035001,http://purl.obolibrary.org/obo/UBERON_0035001,posteromedial cortical amygdaloid nucleus +14.3157911,UBERON:0035127,http://purl.obolibrary.org/obo/UBERON_0035127,suture of hard palate +14.3157911,UBERON:0037531,http://purl.obolibrary.org/obo/UBERON_0037531,intestinal lymph node +14.3157911,UBERON:0039168,http://purl.obolibrary.org/obo/UBERON_0039168,colic lymph node +14.3157911,UBERON:2001073,http://purl.obolibrary.org/obo/UBERON_2001073,axial vasculature +14.3157911,UBERON:3000982,http://purl.obolibrary.org/obo/UBERON_3000982,tail external integument structure +14.3898991,CHEBI:16150,http://purl.obolibrary.org/obo/CHEBI_16150,benzoate +14.3898991,CHEBI:16494,http://purl.obolibrary.org/obo/CHEBI_16494,lipoic acid +14.3898991,CHEBI:16883,http://purl.obolibrary.org/obo/CHEBI_16883,galactogen +14.3898991,CHEBI:17578,http://purl.obolibrary.org/obo/CHEBI_17578,toluene +14.3898991,CHEBI:18308,http://purl.obolibrary.org/obo/CHEBI_18308,acrylic acid +14.3898991,CHEBI:22213,http://purl.obolibrary.org/obo/CHEBI_22213,acridines +14.3898991,CHEBI:22581,http://purl.obolibrary.org/obo/CHEBI_22581,antiauxins +14.3898991,CHEBI:22653,http://purl.obolibrary.org/obo/CHEBI_22653,asparagine +14.3898991,CHEBI:22927,http://purl.obolibrary.org/obo/CHEBI_22927,bromine atom +14.3898991,CHEBI:23870,http://purl.obolibrary.org/obo/CHEBI_23870,dodecyl group +14.3898991,CHEBI:23953,http://purl.obolibrary.org/obo/CHEBI_23953,erythromycins +14.3898991,CHEBI:24472,http://purl.obolibrary.org/obo/CHEBI_24472,halohydrocarbon +14.3898991,CHEBI:24650,http://purl.obolibrary.org/obo/CHEBI_24650,hydroxamic acid +14.3898991,CHEBI:24810,http://purl.obolibrary.org/obo/CHEBI_24810,indol-3-yl carboxylic acid +14.3898991,CHEBI:25340,http://purl.obolibrary.org/obo/CHEBI_25340,methylpyridines +14.3898991,CHEBI:27551,http://purl.obolibrary.org/obo/CHEBI_27551,5-methylcytosine +14.3898991,CHEBI:29149,http://purl.obolibrary.org/obo/CHEBI_29149,periodic acid +14.3898991,CHEBI:29321,http://purl.obolibrary.org/obo/CHEBI_29321,sodium nitroprusside +14.3898991,CHEBI:32660,http://purl.obolibrary.org/obo/CHEBI_32660,asparaginate +14.3898991,CHEBI:33428,http://purl.obolibrary.org/obo/CHEBI_33428,iodine oxoacid +14.3898991,CHEBI:33555,http://purl.obolibrary.org/obo/CHEBI_33555,arenesulfonic acid +14.3898991,CHEBI:35296,http://purl.obolibrary.org/obo/CHEBI_35296,ortho-fused polycyclic arene +14.3898991,CHEBI:35427,http://purl.obolibrary.org/obo/CHEBI_35427,ortho-fused polycyclic hydrocarbon +14.3898991,CHEBI:37335,http://purl.obolibrary.org/obo/CHEBI_37335,MRI contrast agent +14.3898991,CHEBI:37484,http://purl.obolibrary.org/obo/CHEBI_37484,dihydroxyanthraquinone +14.3898991,CHEBI:37485,http://purl.obolibrary.org/obo/CHEBI_37485,hydroxyanthraquinones +14.3898991,CHEBI:38298,http://purl.obolibrary.org/obo/CHEBI_38298,benzodioxoles +14.3898991,CHEBI:38684,http://purl.obolibrary.org/obo/CHEBI_38684,tetrahydroxyflavone +14.3898991,CHEBI:39192,http://purl.obolibrary.org/obo/CHEBI_39192,dithiolanes +14.3898991,CHEBI:42471,http://purl.obolibrary.org/obo/CHEBI_42471,forskolin +14.3898991,CHEBI:46867,http://purl.obolibrary.org/obo/CHEBI_46867,indolyl carboxylic acid +14.3898991,CHEBI:48021,http://purl.obolibrary.org/obo/CHEBI_48021,peptide nucleic acid +14.3898991,CHEBI:48525,http://purl.obolibrary.org/obo/CHEBI_48525,calcimimetic +14.3898991,CHEBI:48847,http://purl.obolibrary.org/obo/CHEBI_48847,heterocyclic fatty acid +14.3898991,CHEBI:51337,http://purl.obolibrary.org/obo/CHEBI_51337,organic sulfate salt +14.3898991,CHEBI:53258,http://purl.obolibrary.org/obo/CHEBI_53258,sodium citrate +14.3898991,CHEBI:59643,http://purl.obolibrary.org/obo/CHEBI_59643,thia fatty acid +14.3898991,CHEBI:60143,http://purl.obolibrary.org/obo/CHEBI_60143,polyamine polymer +14.3898991,CHEBI:61372,http://purl.obolibrary.org/obo/CHEBI_61372,poly(acrylic acid) polymer +14.3898991,CHEBI:66987,http://purl.obolibrary.org/obo/CHEBI_66987,radiation protective agent +14.3898991,CHEBI:71418,http://purl.obolibrary.org/obo/CHEBI_71418,triamcinolone acetonide +14.3898991,CHEBI:75620,http://purl.obolibrary.org/obo/CHEBI_75620,decyl oleate +14.3898991,CHEBI:78547,http://purl.obolibrary.org/obo/CHEBI_78547,protein kinase A agonist +14.3898991,CHEBI:80344,http://purl.obolibrary.org/obo/CHEBI_80344,Insulin-like growth factor II +14.3898991,CHEBI:82048,http://purl.obolibrary.org/obo/CHEBI_82048,zoxamide +14.3898991,CHEBI:86324,http://purl.obolibrary.org/obo/CHEBI_86324,quinolone antibiotic +14.3898991,CHEBI:87022,http://purl.obolibrary.org/obo/CHEBI_87022,benzamide fungicide +14.3898991,CL:0000825,http://purl.obolibrary.org/obo/CL_0000825,pro-NK cell +14.3898991,CL:0000853,http://purl.obolibrary.org/obo/CL_0000853,olfactory epithelial support cell +14.3898991,CL:0002241,http://purl.obolibrary.org/obo/CL_0002241,pulmonary interstitial fibroblast +14.3898991,CL:0002358,http://purl.obolibrary.org/obo/CL_0002358,pyrenocyte +14.3898991,CL:0002665,http://purl.obolibrary.org/obo/CL_0002665,otic fibrocyte +14.3898991,CL:1001575,http://purl.obolibrary.org/obo/CL_1001575,uterine cervix squamous cell +14.3898991,DRUGBANK:DB00018,http://purl.obolibrary.org/obo/DRUGBANK_DB00018,none +14.3898991,DRUGBANK:DB00416,http://purl.obolibrary.org/obo/DRUGBANK_DB00416,none +14.3898991,DRUGBANK:DB01125,http://purl.obolibrary.org/obo/DRUGBANK_DB01125,none +14.3898991,DRUGBANK:DB01480,http://purl.obolibrary.org/obo/DRUGBANK_DB01480,none +14.3898991,DRUGBANK:DB01521,http://purl.obolibrary.org/obo/DRUGBANK_DB01521,none +14.3898991,DRUGBANK:DB01569,http://purl.obolibrary.org/obo/DRUGBANK_DB01569,none +14.3898991,DRUGBANK:DB01631,http://purl.obolibrary.org/obo/DRUGBANK_DB01631,none +14.3898991,DRUGBANK:DB01758,http://purl.obolibrary.org/obo/DRUGBANK_DB01758,none +14.3898991,DRUGBANK:DB02007,http://purl.obolibrary.org/obo/DRUGBANK_DB02007,none +14.3898991,DRUGBANK:DB02196,http://purl.obolibrary.org/obo/DRUGBANK_DB02196,none +14.3898991,DRUGBANK:DB02835,http://purl.obolibrary.org/obo/DRUGBANK_DB02835,none +14.3898991,DRUGBANK:DB02978,http://purl.obolibrary.org/obo/DRUGBANK_DB02978,none +14.3898991,DRUGBANK:DB03108,http://purl.obolibrary.org/obo/DRUGBANK_DB03108,none +14.3898991,DRUGBANK:DB03142,http://purl.obolibrary.org/obo/DRUGBANK_DB03142,none +14.3898991,DRUGBANK:DB03177,http://purl.obolibrary.org/obo/DRUGBANK_DB03177,none +14.3898991,DRUGBANK:DB03822,http://purl.obolibrary.org/obo/DRUGBANK_DB03822,none +14.3898991,DRUGBANK:DB03848,http://purl.obolibrary.org/obo/DRUGBANK_DB03848,none +14.3898991,DRUGBANK:DB03997,http://purl.obolibrary.org/obo/DRUGBANK_DB03997,none +14.3898991,DRUGBANK:DB04202,http://purl.obolibrary.org/obo/DRUGBANK_DB04202,none +14.3898991,DRUGBANK:DB04205,http://purl.obolibrary.org/obo/DRUGBANK_DB04205,none +14.3898991,DRUGBANK:DB04541,http://purl.obolibrary.org/obo/DRUGBANK_DB04541,none +14.3898991,DRUGBANK:DB04542,http://purl.obolibrary.org/obo/DRUGBANK_DB04542,none +14.3898991,DRUGBANK:DB04787,http://purl.obolibrary.org/obo/DRUGBANK_DB04787,none +14.3898991,DRUGBANK:DB04873,http://purl.obolibrary.org/obo/DRUGBANK_DB04873,none +14.3898991,DRUGBANK:DB04972,http://purl.obolibrary.org/obo/DRUGBANK_DB04972,none +14.3898991,DRUGBANK:DB04975,http://purl.obolibrary.org/obo/DRUGBANK_DB04975,none +14.3898991,DRUGBANK:DB05128,http://purl.obolibrary.org/obo/DRUGBANK_DB05128,none +14.3898991,DRUGBANK:DB05292,http://purl.obolibrary.org/obo/DRUGBANK_DB05292,none +14.3898991,DRUGBANK:DB05305,http://purl.obolibrary.org/obo/DRUGBANK_DB05305,none +14.3898991,DRUGBANK:DB05470,http://purl.obolibrary.org/obo/DRUGBANK_DB05470,none +14.3898991,DRUGBANK:DB05659,http://purl.obolibrary.org/obo/DRUGBANK_DB05659,none +14.3898991,DRUGBANK:DB05776,http://purl.obolibrary.org/obo/DRUGBANK_DB05776,none +14.3898991,DRUGBANK:DB05798,http://purl.obolibrary.org/obo/DRUGBANK_DB05798,none +14.3898991,DRUGBANK:DB06097,http://purl.obolibrary.org/obo/DRUGBANK_DB06097,none +14.3898991,DRUGBANK:DB06129,http://purl.obolibrary.org/obo/DRUGBANK_DB06129,none +14.3898991,DRUGBANK:DB07423,http://purl.obolibrary.org/obo/DRUGBANK_DB07423,none +14.3898991,DRUGBANK:DB07594,http://purl.obolibrary.org/obo/DRUGBANK_DB07594,none +14.3898991,DRUGBANK:DB07941,http://purl.obolibrary.org/obo/DRUGBANK_DB07941,none +14.3898991,DRUGBANK:DB08052,http://purl.obolibrary.org/obo/DRUGBANK_DB08052,none +14.3898991,DRUGBANK:DB08339,http://purl.obolibrary.org/obo/DRUGBANK_DB08339,none +14.3898991,DRUGBANK:DB08748,http://purl.obolibrary.org/obo/DRUGBANK_DB08748,none +14.3898991,DRUGBANK:DB08988,http://purl.obolibrary.org/obo/DRUGBANK_DB08988,none +14.3898991,DRUGBANK:DB09254,http://purl.obolibrary.org/obo/DRUGBANK_DB09254,none +14.3898991,DRUGBANK:DB09537,http://purl.obolibrary.org/obo/DRUGBANK_DB09537,none +14.3898991,DRUGBANK:DB10825,http://purl.obolibrary.org/obo/DRUGBANK_DB10825,none +14.3898991,DRUGBANK:DB11107,http://purl.obolibrary.org/obo/DRUGBANK_DB11107,none +14.3898991,DRUGBANK:DB11141,http://purl.obolibrary.org/obo/DRUGBANK_DB11141,none +14.3898991,DRUGBANK:DB11144,http://purl.obolibrary.org/obo/DRUGBANK_DB11144,none +14.3898991,DRUGBANK:DB11168,http://purl.obolibrary.org/obo/DRUGBANK_DB11168,none +14.3898991,DRUGBANK:DB11379,http://purl.obolibrary.org/obo/DRUGBANK_DB11379,none +14.3898991,DRUGBANK:DB11741,http://purl.obolibrary.org/obo/DRUGBANK_DB11741,none +14.3898991,DRUGBANK:DB11766,http://purl.obolibrary.org/obo/DRUGBANK_DB11766,none +14.3898991,DRUGBANK:DB11860,http://purl.obolibrary.org/obo/DRUGBANK_DB11860,none +14.3898991,DRUGBANK:DB11946,http://purl.obolibrary.org/obo/DRUGBANK_DB11946,none +14.3898991,DRUGBANK:DB12055,http://purl.obolibrary.org/obo/DRUGBANK_DB12055,none +14.3898991,DRUGBANK:DB12089,http://purl.obolibrary.org/obo/DRUGBANK_DB12089,none +14.3898991,DRUGBANK:DB12158,http://purl.obolibrary.org/obo/DRUGBANK_DB12158,none +14.3898991,DRUGBANK:DB12177,http://purl.obolibrary.org/obo/DRUGBANK_DB12177,none +14.3898991,DRUGBANK:DB12203,http://purl.obolibrary.org/obo/DRUGBANK_DB12203,none +14.3898991,DRUGBANK:DB12204,http://purl.obolibrary.org/obo/DRUGBANK_DB12204,none +14.3898991,DRUGBANK:DB12259,http://purl.obolibrary.org/obo/DRUGBANK_DB12259,none +14.3898991,DRUGBANK:DB12424,http://purl.obolibrary.org/obo/DRUGBANK_DB12424,none +14.3898991,DRUGBANK:DB12451,http://purl.obolibrary.org/obo/DRUGBANK_DB12451,none +14.3898991,DRUGBANK:DB12508,http://purl.obolibrary.org/obo/DRUGBANK_DB12508,none +14.3898991,DRUGBANK:DB12528,http://purl.obolibrary.org/obo/DRUGBANK_DB12528,none +14.3898991,DRUGBANK:DB12567,http://purl.obolibrary.org/obo/DRUGBANK_DB12567,none +14.3898991,DRUGBANK:DB12568,http://purl.obolibrary.org/obo/DRUGBANK_DB12568,none +14.3898991,DRUGBANK:DB12799,http://purl.obolibrary.org/obo/DRUGBANK_DB12799,none +14.3898991,DRUGBANK:DB12882,http://purl.obolibrary.org/obo/DRUGBANK_DB12882,none +14.3898991,DRUGBANK:DB12906,http://purl.obolibrary.org/obo/DRUGBANK_DB12906,none +14.3898991,DRUGBANK:DB12921,http://purl.obolibrary.org/obo/DRUGBANK_DB12921,none +14.3898991,DRUGBANK:DB12951,http://purl.obolibrary.org/obo/DRUGBANK_DB12951,none +14.3898991,DRUGBANK:DB12988,http://purl.obolibrary.org/obo/DRUGBANK_DB12988,none +14.3898991,DRUGBANK:DB13101,http://purl.obolibrary.org/obo/DRUGBANK_DB13101,none +14.3898991,DRUGBANK:DB13118,http://purl.obolibrary.org/obo/DRUGBANK_DB13118,none +14.3898991,DRUGBANK:DB13164,http://purl.obolibrary.org/obo/DRUGBANK_DB13164,none +14.3898991,DRUGBANK:DB13205,http://purl.obolibrary.org/obo/DRUGBANK_DB13205,none +14.3898991,DRUGBANK:DB13290,http://purl.obolibrary.org/obo/DRUGBANK_DB13290,none +14.3898991,DRUGBANK:DB13309,http://purl.obolibrary.org/obo/DRUGBANK_DB13309,none +14.3898991,DRUGBANK:DB13313,http://purl.obolibrary.org/obo/DRUGBANK_DB13313,none +14.3898991,DRUGBANK:DB13519,http://purl.obolibrary.org/obo/DRUGBANK_DB13519,none +14.3898991,DRUGBANK:DB13543,http://purl.obolibrary.org/obo/DRUGBANK_DB13543,none +14.3898991,DRUGBANK:DB13658,http://purl.obolibrary.org/obo/DRUGBANK_DB13658,none +14.3898991,DRUGBANK:DB13684,http://purl.obolibrary.org/obo/DRUGBANK_DB13684,none +14.3898991,DRUGBANK:DB13714,http://purl.obolibrary.org/obo/DRUGBANK_DB13714,none +14.3898991,DRUGBANK:DB13735,http://purl.obolibrary.org/obo/DRUGBANK_DB13735,none +14.3898991,DRUGBANK:DB13741,http://purl.obolibrary.org/obo/DRUGBANK_DB13741,none +14.3898991,DRUGBANK:DB14030,http://purl.obolibrary.org/obo/DRUGBANK_DB14030,none +14.3898991,DRUGBANK:DB14175,http://purl.obolibrary.org/obo/DRUGBANK_DB14175,none +14.3898991,DRUGBANK:DB14321,http://purl.obolibrary.org/obo/DRUGBANK_DB14321,none +14.3898991,DRUGBANK:DB14557,http://purl.obolibrary.org/obo/DRUGBANK_DB14557,none +14.3898991,DRUGBANK:DB14632,http://purl.obolibrary.org/obo/DRUGBANK_DB14632,none +14.3898991,DRUGBANK:DB14650,http://purl.obolibrary.org/obo/DRUGBANK_DB14650,none +14.3898991,DRUGBANK:DB14710,http://purl.obolibrary.org/obo/DRUGBANK_DB14710,none +14.3898991,DRUGBANK:DB14916,http://purl.obolibrary.org/obo/DRUGBANK_DB14916,none +14.3898991,DRUGBANK:DB15035,http://purl.obolibrary.org/obo/DRUGBANK_DB15035,none +14.3898991,DRUGBANK:DB15098,http://purl.obolibrary.org/obo/DRUGBANK_DB15098,none +14.3898991,DRUGBANK:DB15207,http://purl.obolibrary.org/obo/DRUGBANK_DB15207,none +14.3898991,DRUGBANK:DB15208,http://purl.obolibrary.org/obo/DRUGBANK_DB15208,none +14.3898991,DRUGBANK:DB15233,http://purl.obolibrary.org/obo/DRUGBANK_DB15233,none +14.3898991,DRUGBANK:DB15235,http://purl.obolibrary.org/obo/DRUGBANK_DB15235,none +14.3898991,DRUGBANK:DB15273,http://purl.obolibrary.org/obo/DRUGBANK_DB15273,none +14.3898991,DRUGBANK:DB15749,http://purl.obolibrary.org/obo/DRUGBANK_DB15749,none +14.3898991,DRUGBANK:DB15772,http://purl.obolibrary.org/obo/DRUGBANK_DB15772,none +14.3898991,DRUGBANK:DB16022,http://purl.obolibrary.org/obo/DRUGBANK_DB16022,none +14.3898991,DRUGBANK:DB16305,http://purl.obolibrary.org/obo/DRUGBANK_DB16305,none +14.3898991,GO:0000175,http://purl.obolibrary.org/obo/GO_0000175,3'-5'-exoribonuclease activity +14.3898991,GO:0001652,http://purl.obolibrary.org/obo/GO_0001652,granular component +14.3898991,GO:0001839,http://purl.obolibrary.org/obo/GO_0001839,neural plate morphogenesis +14.3898991,GO:0002444,http://purl.obolibrary.org/obo/GO_0002444,myeloid leukocyte mediated immunity +14.3898991,GO:0002686,http://purl.obolibrary.org/obo/GO_0002686,negative regulation of leukocyte migration +14.3898991,GO:0002763,http://purl.obolibrary.org/obo/GO_0002763,positive regulation of myeloid leukocyte differentiation +14.3898991,GO:0003197,http://purl.obolibrary.org/obo/GO_0003197,endocardial cushion development +14.3898991,GO:0003882,http://purl.obolibrary.org/obo/GO_0003882,CDP-diacylglycerol-serine O-phosphatidyltransferase activity +14.3898991,GO:0004397,http://purl.obolibrary.org/obo/GO_0004397,histidine ammonia-lyase activity +14.3898991,GO:0004425,http://purl.obolibrary.org/obo/GO_0004425,indole-3-glycerol-phosphate synthase activity +14.3898991,GO:0004535,http://purl.obolibrary.org/obo/GO_0004535,poly(A)-specific ribonuclease activity +14.3898991,GO:0004582,http://purl.obolibrary.org/obo/GO_0004582,dolichyl-phosphate beta-D-mannosyltransferase activity +14.3898991,GO:0004596,http://purl.obolibrary.org/obo/GO_0004596,peptide alpha-N-acetyltransferase activity +14.3898991,GO:0004633,http://purl.obolibrary.org/obo/GO_0004633,phosphopantothenoylcysteine decarboxylase activity +14.3898991,GO:0004943,http://purl.obolibrary.org/obo/GO_0004943,none +14.3898991,GO:0005355,http://purl.obolibrary.org/obo/GO_0005355,glucose transmembrane transporter activity +14.3898991,GO:0005947,http://purl.obolibrary.org/obo/GO_0005947,mitochondrial alpha-ketoglutarate dehydrogenase complex +14.3898991,GO:0006003,http://purl.obolibrary.org/obo/GO_0006003,"fructose 2,6-bisphosphate metabolic process" +14.3898991,GO:0007179,http://purl.obolibrary.org/obo/GO_0007179,transforming growth factor beta receptor signaling pathway +14.3898991,GO:0008447,http://purl.obolibrary.org/obo/GO_0008447,L-ascorbate oxidase activity +14.3898991,GO:0008679,http://purl.obolibrary.org/obo/GO_0008679,2-hydroxy-3-oxopropionate reductase activity +14.3898991,GO:0008746,http://purl.obolibrary.org/obo/GO_0008746,NAD(P)+ transhydrogenase activity +14.3898991,GO:0008905,http://purl.obolibrary.org/obo/GO_0008905,mannose-phosphate guanylyltransferase activity +14.3898991,GO:0008986,http://purl.obolibrary.org/obo/GO_0008986,"pyruvate, water dikinase activity" +14.3898991,GO:0008995,http://purl.obolibrary.org/obo/GO_0008995,ribonuclease E activity +14.3898991,GO:0009212,http://purl.obolibrary.org/obo/GO_0009212,pyrimidine deoxyribonucleoside triphosphate biosynthetic process +14.3898991,GO:0009298,http://purl.obolibrary.org/obo/GO_0009298,GDP-mannose biosynthetic process +14.3898991,GO:0009539,http://purl.obolibrary.org/obo/GO_0009539,photosystem II reaction center +14.3898991,GO:0010046,http://purl.obolibrary.org/obo/GO_0010046,response to mycotoxin +14.3898991,GO:0010137,http://purl.obolibrary.org/obo/GO_0010137,ureide biosynthetic process +14.3898991,GO:0010353,http://purl.obolibrary.org/obo/GO_0010353,response to trehalose +14.3898991,GO:0010823,http://purl.obolibrary.org/obo/GO_0010823,negative regulation of mitochondrion organization +14.3898991,GO:0010958,http://purl.obolibrary.org/obo/GO_0010958,regulation of amino acid import across plasma membrane +14.3898991,GO:0015211,http://purl.obolibrary.org/obo/GO_0015211,purine nucleoside transmembrane transporter activity +14.3898991,GO:0015603,http://purl.obolibrary.org/obo/GO_0015603,iron chelate transmembrane transporter activity +14.3898991,GO:0015818,http://purl.obolibrary.org/obo/GO_0015818,isoleucine transport +14.3898991,GO:0016115,http://purl.obolibrary.org/obo/GO_0016115,terpenoid catabolic process +14.3898991,GO:0016232,http://purl.obolibrary.org/obo/GO_0016232,HNK-1 sulfotransferase activity +14.3898991,GO:0016652,http://purl.obolibrary.org/obo/GO_0016652,"oxidoreductase activity, acting on NAD(P)H, NAD(P) as acceptor" +14.3898991,GO:0017041,http://purl.obolibrary.org/obo/GO_0017041,galactosylgalactosylglucosylceramidase activity +14.3898991,GO:0017128,http://purl.obolibrary.org/obo/GO_0017128,phospholipid scramblase activity +14.3898991,GO:0018669,http://purl.obolibrary.org/obo/GO_0018669,3-hydroxybenzoate 6-monooxygenase activity +14.3898991,GO:0018833,http://purl.obolibrary.org/obo/GO_0018833,DDT-dehydrochlorinase activity +14.3898991,GO:0018846,http://purl.obolibrary.org/obo/GO_0018846,styrene-oxide isomerase activity +14.3898991,GO:0018865,http://purl.obolibrary.org/obo/GO_0018865,acrylonitrile metabolic process +14.3898991,GO:0018937,http://purl.obolibrary.org/obo/GO_0018937,nitroglycerin metabolic process +14.3898991,GO:0019354,http://purl.obolibrary.org/obo/GO_0019354,siroheme biosynthetic process +14.3898991,GO:0019520,http://purl.obolibrary.org/obo/GO_0019520,aldonic acid metabolic process +14.3898991,GO:0019730,http://purl.obolibrary.org/obo/GO_0019730,antimicrobial humoral response +14.3898991,GO:0019897,http://purl.obolibrary.org/obo/GO_0019897,extrinsic component of plasma membrane +14.3898991,GO:0030062,http://purl.obolibrary.org/obo/GO_0030062,mitochondrial tricarboxylic acid cycle enzyme complex +14.3898991,GO:0030176,http://purl.obolibrary.org/obo/GO_0030176,integral component of endoplasmic reticulum membrane +14.3898991,GO:0030300,http://purl.obolibrary.org/obo/GO_0030300,regulation of intestinal cholesterol absorption +14.3898991,GO:0030810,http://purl.obolibrary.org/obo/GO_0030810,positive regulation of nucleotide biosynthetic process +14.3898991,GO:0030958,http://purl.obolibrary.org/obo/GO_0030958,RITS complex +14.3898991,GO:0030992,http://purl.obolibrary.org/obo/GO_0030992,intraciliary transport particle B +14.3898991,GO:0031227,http://purl.obolibrary.org/obo/GO_0031227,intrinsic component of endoplasmic reticulum membrane +14.3898991,GO:0031254,http://purl.obolibrary.org/obo/GO_0031254,cell trailing edge +14.3898991,GO:0031260,http://purl.obolibrary.org/obo/GO_0031260,pseudopodium membrane +14.3898991,GO:0031527,http://purl.obolibrary.org/obo/GO_0031527,filopodium membrane +14.3898991,GO:0031639,http://purl.obolibrary.org/obo/GO_0031639,plasminogen activation +14.3898991,GO:0031943,http://purl.obolibrary.org/obo/GO_0031943,regulation of glucocorticoid metabolic process +14.3898991,GO:0031985,http://purl.obolibrary.org/obo/GO_0031985,Golgi cisterna +14.3898991,GO:0032006,http://purl.obolibrary.org/obo/GO_0032006,regulation of TOR signaling +14.3898991,GO:0032338,http://purl.obolibrary.org/obo/GO_0032338,regulation of inhibin secretion +14.3898991,GO:0032387,http://purl.obolibrary.org/obo/GO_0032387,negative regulation of intracellular transport +14.3898991,GO:0032436,http://purl.obolibrary.org/obo/GO_0032436,positive regulation of proteasomal ubiquitin-dependent protein catabolic process +14.3898991,GO:0032908,http://purl.obolibrary.org/obo/GO_0032908,regulation of transforming growth factor beta1 production +14.3898991,GO:0033108,http://purl.obolibrary.org/obo/GO_0033108,mitochondrial respiratory chain complex assembly +14.3898991,GO:0033244,http://purl.obolibrary.org/obo/GO_0033244,regulation of penicillin metabolic process +14.3898991,GO:0033258,http://purl.obolibrary.org/obo/GO_0033258,plastid DNA metabolic process +14.3898991,GO:0033259,http://purl.obolibrary.org/obo/GO_0033259,plastid DNA replication +14.3898991,GO:0033305,http://purl.obolibrary.org/obo/GO_0033305,chlorophyll a biosynthetic process +14.3898991,GO:0033740,http://purl.obolibrary.org/obo/GO_0033740,hydroxylamine oxidoreductase activity +14.3898991,GO:0033813,http://purl.obolibrary.org/obo/GO_0033813,deacetylcephalosporin-C acetyltransferase activity +14.3898991,GO:0033841,http://purl.obolibrary.org/obo/GO_0033841,6G-fructosyltransferase activity +14.3898991,GO:0033855,http://purl.obolibrary.org/obo/GO_0033855,nicotianamine aminotransferase activity +14.3898991,GO:0033918,http://purl.obolibrary.org/obo/GO_0033918,kappa-carrageenase activity +14.3898991,GO:0034632,http://purl.obolibrary.org/obo/GO_0034632,retinol transmembrane transporter activity +14.3898991,GO:0035034,http://purl.obolibrary.org/obo/GO_0035034,histone acetyltransferase regulator activity +14.3898991,GO:0035354,http://purl.obolibrary.org/obo/GO_0035354,Toll-like receptor 1-Toll-like receptor 2 protein complex +14.3898991,GO:0035805,http://purl.obolibrary.org/obo/GO_0035805,egg coat +14.3898991,GO:0036124,http://purl.obolibrary.org/obo/GO_0036124,histone H3-K9 trimethylation +14.3898991,GO:0039530,http://purl.obolibrary.org/obo/GO_0039530,MDA-5 signaling pathway +14.3898991,GO:0039585,http://purl.obolibrary.org/obo/GO_0039585,PKR-mediated signaling +14.3898991,GO:0040034,http://purl.obolibrary.org/obo/GO_0040034,"regulation of development, heterochronic" +14.3898991,GO:0042354,http://purl.obolibrary.org/obo/GO_0042354,L-fucose metabolic process +14.3898991,GO:0042397,http://purl.obolibrary.org/obo/GO_0042397,phosphagen catabolic process +14.3898991,GO:0042751,http://purl.obolibrary.org/obo/GO_0042751,estivation +14.3898991,GO:0042851,http://purl.obolibrary.org/obo/GO_0042851,L-alanine metabolic process +14.3898991,GO:0042989,http://purl.obolibrary.org/obo/GO_0042989,sequestering of actin monomers +14.3898991,GO:0043091,http://purl.obolibrary.org/obo/GO_0043091,none +14.3898991,GO:0043403,http://purl.obolibrary.org/obo/GO_0043403,skeletal muscle tissue regeneration +14.3898991,GO:0043445,http://purl.obolibrary.org/obo/GO_0043445,acetone biosynthetic process +14.3898991,GO:0043644,http://purl.obolibrary.org/obo/GO_0043644,tetracycline biosynthetic process +14.3898991,GO:0044175,http://purl.obolibrary.org/obo/GO_0044175,host cell endosome membrane +14.3898991,GO:0044393,http://purl.obolibrary.org/obo/GO_0044393,microspike +14.3898991,GO:0045334,http://purl.obolibrary.org/obo/GO_0045334,clathrin-coated endocytic vesicle +14.3898991,GO:0045443,http://purl.obolibrary.org/obo/GO_0045443,juvenile hormone secretion +14.3898991,GO:0045506,http://purl.obolibrary.org/obo/GO_0045506,interleukin-24 receptor activity +14.3898991,GO:0045722,http://purl.obolibrary.org/obo/GO_0045722,positive regulation of gluconeogenesis +14.3898991,GO:0045939,http://purl.obolibrary.org/obo/GO_0045939,negative regulation of steroid metabolic process +14.3898991,GO:0046156,http://purl.obolibrary.org/obo/GO_0046156,siroheme metabolic process +14.3898991,GO:0046409,http://purl.obolibrary.org/obo/GO_0046409,p-coumarate 3-hydroxylase activity +14.3898991,GO:0046440,http://purl.obolibrary.org/obo/GO_0046440,L-lysine metabolic process +14.3898991,GO:0046443,http://purl.obolibrary.org/obo/GO_0046443,FAD metabolic process +14.3898991,GO:0046520,http://purl.obolibrary.org/obo/GO_0046520,sphingoid biosynthetic process +14.3898991,GO:0046684,http://purl.obolibrary.org/obo/GO_0046684,response to pyrethroid +14.3898991,GO:0046964,http://purl.obolibrary.org/obo/GO_0046964,3'-phosphoadenosine 5'-phosphosulfate transmembrane transporter activity +14.3898991,GO:0047131,http://purl.obolibrary.org/obo/GO_0047131,"saccharopine dehydrogenase (NAD+, L-glutamate-forming) activity" +14.3898991,GO:0047216,http://purl.obolibrary.org/obo/GO_0047216,inositol 3-alpha-galactosyltransferase activity +14.3898991,GO:0047238,http://purl.obolibrary.org/obo/GO_0047238,glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase activity +14.3898991,GO:0047403,http://purl.obolibrary.org/obo/GO_0047403,lacto-N-biosidase activity +14.3898991,GO:0047507,http://purl.obolibrary.org/obo/GO_0047507,(deoxy)nucleoside-phosphate kinase activity +14.3898991,GO:0047569,http://purl.obolibrary.org/obo/GO_0047569,3-oxoadipate CoA-transferase activity +14.3898991,GO:0047803,http://purl.obolibrary.org/obo/GO_0047803,cysteine lyase activity +14.3898991,GO:0047896,http://purl.obolibrary.org/obo/GO_0047896,formaldehyde transketolase activity +14.3898991,GO:0048353,http://purl.obolibrary.org/obo/GO_0048353,primary endosperm nucleus +14.3898991,GO:0048530,http://purl.obolibrary.org/obo/GO_0048530,fruit morphogenesis +14.3898991,GO:0050017,http://purl.obolibrary.org/obo/GO_0050017,L-3-cyanoalanine synthase activity +14.3898991,GO:0050331,http://purl.obolibrary.org/obo/GO_0050331,thiamine-diphosphate kinase activity +14.3898991,GO:0050568,http://purl.obolibrary.org/obo/GO_0050568,protein-glutamine glutaminase activity +14.3898991,GO:0050611,http://purl.obolibrary.org/obo/GO_0050611,arsenate reductase (azurin) activity +14.3898991,GO:0050914,http://purl.obolibrary.org/obo/GO_0050914,sensory perception of salty taste +14.3898991,GO:0051070,http://purl.obolibrary.org/obo/GO_0051070,galactomannan biosynthetic process +14.3898991,GO:0051295,http://purl.obolibrary.org/obo/GO_0051295,establishment of meiotic spindle localization +14.3898991,GO:0051547,http://purl.obolibrary.org/obo/GO_0051547,regulation of keratinocyte migration +14.3898991,GO:0051750,http://purl.obolibrary.org/obo/GO_0051750,"delta3,5-delta2,4-dienoyl-CoA isomerase activity" +14.3898991,GO:0051954,http://purl.obolibrary.org/obo/GO_0051954,positive regulation of amine transport +14.3898991,GO:0051957,http://purl.obolibrary.org/obo/GO_0051957,positive regulation of amino acid transport +14.3898991,GO:0052320,http://purl.obolibrary.org/obo/GO_0052320,positive regulation of phytoalexin metabolic process +14.3898991,GO:0052322,http://purl.obolibrary.org/obo/GO_0052322,positive regulation of phytoalexin biosynthetic process +14.3898991,GO:0052552,http://purl.obolibrary.org/obo/GO_0052552,none +14.3898991,GO:0052553,http://purl.obolibrary.org/obo/GO_0052553,modulation by symbiont of host immune response +14.3898991,GO:0052575,http://purl.obolibrary.org/obo/GO_0052575,carbohydrate localization +14.3898991,GO:0052882,http://purl.obolibrary.org/obo/GO_0052882,"oxidoreductase activity, acting on phosphorus or arsenic in donors, with a copper protein as acceptor" +14.3898991,GO:0060017,http://purl.obolibrary.org/obo/GO_0060017,parathyroid gland development +14.3898991,GO:0060049,http://purl.obolibrary.org/obo/GO_0060049,regulation of protein glycosylation +14.3898991,GO:0060263,http://purl.obolibrary.org/obo/GO_0060263,regulation of respiratory burst +14.3898991,GO:0060603,http://purl.obolibrary.org/obo/GO_0060603,mammary gland duct morphogenesis +14.3898991,GO:0061055,http://purl.obolibrary.org/obo/GO_0061055,myotome development +14.3898991,GO:0061541,http://purl.obolibrary.org/obo/GO_0061541,rhabdomere morphogenesis +14.3898991,GO:0061580,http://purl.obolibrary.org/obo/GO_0061580,colon epithelial cell migration +14.3898991,GO:0061584,http://purl.obolibrary.org/obo/GO_0061584,hypocretin secretion +14.3898991,GO:0070218,http://purl.obolibrary.org/obo/GO_0070218,sulfide ion homeostasis +14.3898991,GO:0070260,http://purl.obolibrary.org/obo/GO_0070260,5'-tyrosyl-DNA phosphodiesterase activity +14.3898991,GO:0070397,http://purl.obolibrary.org/obo/GO_0070397,wall teichoic acid metabolic process +14.3898991,GO:0070419,http://purl.obolibrary.org/obo/GO_0070419,nonhomologous end joining complex +14.3898991,GO:0070772,http://purl.obolibrary.org/obo/GO_0070772,PAS complex +14.3898991,GO:0071438,http://purl.obolibrary.org/obo/GO_0071438,none +14.3898991,GO:0071601,http://purl.obolibrary.org/obo/GO_0071601,sphere organelle +14.3898991,GO:0071827,http://purl.obolibrary.org/obo/GO_0071827,plasma lipoprotein particle organization +14.3898991,GO:0071942,http://purl.obolibrary.org/obo/GO_0071942,XPC complex +14.3898991,GO:0072028,http://purl.obolibrary.org/obo/GO_0072028,nephron morphogenesis +14.3898991,GO:0072073,http://purl.obolibrary.org/obo/GO_0072073,kidney epithelium development +14.3898991,GO:0072102,http://purl.obolibrary.org/obo/GO_0072102,glomerulus morphogenesis +14.3898991,GO:0072739,http://purl.obolibrary.org/obo/GO_0072739,response to anisomycin +14.3898991,GO:0075260,http://purl.obolibrary.org/obo/GO_0075260,regulation of spore-bearing organ development +14.3898991,GO:0080031,http://purl.obolibrary.org/obo/GO_0080031,methyl salicylate esterase activity +14.3898991,GO:0080183,http://purl.obolibrary.org/obo/GO_0080183,response to photooxidative stress +14.3898991,GO:0090056,http://purl.obolibrary.org/obo/GO_0090056,regulation of chlorophyll metabolic process +14.3898991,GO:0090077,http://purl.obolibrary.org/obo/GO_0090077,foam cell differentiation +14.3898991,GO:0090196,http://purl.obolibrary.org/obo/GO_0090196,none +14.3898991,GO:0090467,http://purl.obolibrary.org/obo/GO_0090467,none +14.3898991,GO:0097054,http://purl.obolibrary.org/obo/GO_0097054,L-glutamate biosynthetic process +14.3898991,GO:0097094,http://purl.obolibrary.org/obo/GO_0097094,craniofacial suture morphogenesis +14.3898991,GO:0097420,http://purl.obolibrary.org/obo/GO_0097420,skein-like inclusion +14.3898991,GO:0098532,http://purl.obolibrary.org/obo/GO_0098532,histone H3-K27 trimethylation +14.3898991,GO:0098594,http://purl.obolibrary.org/obo/GO_0098594,mucin granule +14.3898991,GO:0106019,http://purl.obolibrary.org/obo/GO_0106019,"phosphatidylinositol-4,5-bisphosphate phosphatase activity" +14.3898991,GO:1900088,http://purl.obolibrary.org/obo/GO_1900088,regulation of inositol biosynthetic process +14.3898991,GO:1900196,http://purl.obolibrary.org/obo/GO_1900196,regulation of penicillin biosynthetic process +14.3898991,GO:1900705,http://purl.obolibrary.org/obo/GO_1900705,negative regulation of siderophore biosynthetic process +14.3898991,GO:1901086,http://purl.obolibrary.org/obo/GO_1901086,benzylpenicillin metabolic process +14.3898991,GO:1901125,http://purl.obolibrary.org/obo/GO_1901125,candicidin metabolic process +14.3898991,GO:1901127,http://purl.obolibrary.org/obo/GO_1901127,candicidin biosynthetic process +14.3898991,GO:1901186,http://purl.obolibrary.org/obo/GO_1901186,positive regulation of ERBB signaling pathway +14.3898991,GO:1901392,http://purl.obolibrary.org/obo/GO_1901392,regulation of transforming growth factor beta1 activation +14.3898991,GO:1901426,http://purl.obolibrary.org/obo/GO_1901426,response to furfural +14.3898991,GO:1901535,http://purl.obolibrary.org/obo/GO_1901535,regulation of DNA demethylation +14.3898991,GO:1901673,http://purl.obolibrary.org/obo/GO_1901673,regulation of mitotic spindle assembly +14.3898991,GO:1902024,http://purl.obolibrary.org/obo/GO_1902024,L-histidine transport +14.3898991,GO:1902094,http://purl.obolibrary.org/obo/GO_1902094,none +14.3898991,GO:1902292,http://purl.obolibrary.org/obo/GO_1902292,cell cycle DNA replication initiation +14.3898991,GO:1902688,http://purl.obolibrary.org/obo/GO_1902688,regulation of NAD metabolic process +14.3898991,GO:1903524,http://purl.obolibrary.org/obo/GO_1903524,positive regulation of blood circulation +14.3898991,GO:1903963,http://purl.obolibrary.org/obo/GO_1903963,arachidonate transport +14.3898991,GO:1904054,http://purl.obolibrary.org/obo/GO_1904054,regulation of cholangiocyte proliferation +14.3898991,GO:1905207,http://purl.obolibrary.org/obo/GO_1905207,regulation of cardiocyte differentiation +14.3898991,GO:1905879,http://purl.obolibrary.org/obo/GO_1905879,regulation of oogenesis +14.3898991,GO:1990101,http://purl.obolibrary.org/obo/GO_1990101,DnaA-oriC complex +14.3898991,GO:1990272,http://purl.obolibrary.org/obo/GO_1990272,anti-Mullerian hormone receptor activity +14.3898991,GO:1990728,http://purl.obolibrary.org/obo/GO_1990728,mitotic spindle assembly checkpoint MAD1-MAD2 complex +14.3898991,GO:2000023,http://purl.obolibrary.org/obo/GO_2000023,regulation of lateral root development +14.3898991,GO:2000725,http://purl.obolibrary.org/obo/GO_2000725,regulation of cardiac muscle cell differentiation +14.3898991,GO:2001135,http://purl.obolibrary.org/obo/GO_2001135,regulation of endocytic recycling +14.3898991,GO:2001303,http://purl.obolibrary.org/obo/GO_2001303,lipoxin A4 biosynthetic process +14.3898991,GO:2001316,http://purl.obolibrary.org/obo/GO_2001316,kojic acid metabolic process +14.3898991,GO:2001317,http://purl.obolibrary.org/obo/GO_2001317,kojic acid biosynthetic process +14.3898991,HP:0001028,http://purl.obolibrary.org/obo/HP_0001028,Hemangioma +14.3898991,HP:0001427,http://purl.obolibrary.org/obo/HP_0001427,Mitochondrial inheritance +14.3898991,HP:0001609,http://purl.obolibrary.org/obo/HP_0001609,Hoarse voice +14.3898991,HP:0001629,http://purl.obolibrary.org/obo/HP_0001629,Ventricular septal defect +14.3898991,HP:0002249,http://purl.obolibrary.org/obo/HP_0002249,Melena +14.3898991,HP:0002865,http://purl.obolibrary.org/obo/HP_0002865,Medullary thyroid carcinoma +14.3898991,HP:0012831,http://purl.obolibrary.org/obo/HP_0012831,Laterality +14.3898991,HP:0025275,http://purl.obolibrary.org/obo/HP_0025275,Lateral +14.3898991,HP:0030764,http://purl.obolibrary.org/obo/HP_0030764,Ochronosis +14.3898991,HP:0031047,http://purl.obolibrary.org/obo/HP_0031047,Paraproteinemia +14.3898991,HP:0040279,http://purl.obolibrary.org/obo/HP_0040279,Frequency +14.3898991,HP:0040282,http://purl.obolibrary.org/obo/HP_0040282,Frequent +14.3898991,HP:0100753,http://purl.obolibrary.org/obo/HP_0100753,Schizophrenia +14.3898991,MONDO:0000240,http://purl.obolibrary.org/obo/MONDO_0000240,invasive aspergillosis +14.3898991,MONDO:0000262,http://purl.obolibrary.org/obo/MONDO_0000262,otomycosis +14.3898991,MONDO:0000337,http://purl.obolibrary.org/obo/MONDO_0000337,exanthema subitum +14.3898991,MONDO:0000375,http://purl.obolibrary.org/obo/MONDO_0000375,bronchus carcinoma in situ +14.3898991,MONDO:0000739,http://purl.obolibrary.org/obo/MONDO_0000739,uvulitis +14.3898991,MONDO:0000754,http://purl.obolibrary.org/obo/MONDO_0000754,anal fistula +14.3898991,MONDO:0000813,http://purl.obolibrary.org/obo/MONDO_0000813,cardiac tuberculosis +14.3898991,MONDO:0001470,http://purl.obolibrary.org/obo/MONDO_0001470,anal margin squamous cell carcinoma +14.3898991,MONDO:0001977,http://purl.obolibrary.org/obo/MONDO_0001977,ureteral lymphoma +14.3898991,MONDO:0002301,http://purl.obolibrary.org/obo/MONDO_0002301,frontal sinus squamous cell carcinoma +14.3898991,MONDO:0002667,http://purl.obolibrary.org/obo/MONDO_0002667,gallbladder signet ring cell adenocarcinoma +14.3898991,MONDO:0002796,http://purl.obolibrary.org/obo/MONDO_0002796,melanotic medulloblastoma +14.3898991,MONDO:0003298,http://purl.obolibrary.org/obo/MONDO_0003298,vulvar leiomyoma +14.3898991,MONDO:0003479,http://purl.obolibrary.org/obo/MONDO_0003479,toxic pneumonitis +14.3898991,MONDO:0003595,http://purl.obolibrary.org/obo/MONDO_0003595,sclerosing liposarcoma +14.3898991,MONDO:0003840,http://purl.obolibrary.org/obo/MONDO_0003840,epicardium lipoma +14.3898991,MONDO:0004238,http://purl.obolibrary.org/obo/MONDO_0004238,petrous apex meningioma +14.3898991,MONDO:0004249,http://purl.obolibrary.org/obo/MONDO_0004249,pediatric supratentorial ependymoma +14.3898991,MONDO:0004269,http://purl.obolibrary.org/obo/MONDO_0004269,breast cystic hypersecretory carcinoma +14.3898991,MONDO:0004291,http://purl.obolibrary.org/obo/MONDO_0004291,subglottis squamous cell carcinoma +14.3898991,MONDO:0004365,http://purl.obolibrary.org/obo/MONDO_0004365,necrotic uveal melanoma +14.3898991,MONDO:0004368,http://purl.obolibrary.org/obo/MONDO_0004368,sphenoorbital meningioma +14.3898991,MONDO:0004464,http://purl.obolibrary.org/obo/MONDO_0004464,nephrogenic adenoma of the urethra +14.3898991,MONDO:0004902,http://purl.obolibrary.org/obo/MONDO_0004902,interstitial keratitis +14.3898991,MONDO:0004918,http://purl.obolibrary.org/obo/MONDO_0004918,central corneal ulcer +14.3898991,MONDO:0006163,http://purl.obolibrary.org/obo/MONDO_0006163,colorectal serrated adenocarcinoma +14.3898991,MONDO:0006228,http://purl.obolibrary.org/obo/MONDO_0006228,gastric papillary adenocarcinoma +14.3898991,MONDO:0006268,http://purl.obolibrary.org/obo/MONDO_0006268,liver diffuse large B-cell lymphoma +14.3898991,MONDO:0006520,http://purl.obolibrary.org/obo/MONDO_0006520,Achenbach syndrome +14.3898991,MONDO:0006581,http://purl.obolibrary.org/obo/MONDO_0006581,miliaria rubra +14.3898991,MONDO:0006855,http://purl.obolibrary.org/obo/MONDO_0006855,mesenteric vascular occlusion +14.3898991,MONDO:0007031,http://purl.obolibrary.org/obo/MONDO_0007031,familial abdominal aortic aneurysm +14.3898991,MONDO:0007279,http://purl.obolibrary.org/obo/MONDO_0007279,cataract 7 +14.3898991,MONDO:0007303,http://purl.obolibrary.org/obo/MONDO_0007303,cervical rib disease +14.3898991,MONDO:0007339,http://purl.obolibrary.org/obo/MONDO_0007339,blepharocheilodontic syndrome +14.3898991,MONDO:0007566,http://purl.obolibrary.org/obo/MONDO_0007566,multiple self-healing squamous epithelioma +14.3898991,MONDO:0007612,http://purl.obolibrary.org/obo/MONDO_0007612,gingival fibromatosis-progressive deafness syndrome +14.3898991,MONDO:0007615,http://purl.obolibrary.org/obo/MONDO_0007615,laurin-Sandrow syndrome +14.3898991,MONDO:0007722,http://purl.obolibrary.org/obo/MONDO_0007722,heterochromia iridis +14.3898991,MONDO:0007869,http://purl.obolibrary.org/obo/MONDO_0007869,Kyrle disease +14.3898991,MONDO:0008311,http://purl.obolibrary.org/obo/MONDO_0008311,progeria-short stature-pigmented nevi syndrome +14.3898991,MONDO:0008680,http://purl.obolibrary.org/obo/MONDO_0008680,Wilms tumor 2 +14.3898991,MONDO:0008683,http://purl.obolibrary.org/obo/MONDO_0008683,Wilms tumor 3 +14.3898991,MONDO:0008702,http://purl.obolibrary.org/obo/MONDO_0008702,achondrogenesis type II +14.3898991,MONDO:0008716,http://purl.obolibrary.org/obo/MONDO_0008716,acrogeria +14.3898991,MONDO:0009145,http://purl.obolibrary.org/obo/MONDO_0009145,SchC6pf-Schulz-Passarge syndrome +14.3898991,MONDO:0009169,http://purl.obolibrary.org/obo/MONDO_0009169,endocardial fibroelastosis +14.3898991,MONDO:0009245,http://purl.obolibrary.org/obo/MONDO_0009245,none +14.3898991,MONDO:0009296,http://purl.obolibrary.org/obo/MONDO_0009296,glycoprotein storage disease +14.3898991,MONDO:0009465,http://purl.obolibrary.org/obo/MONDO_0009465,multiple intestinal atresia +14.3898991,MONDO:0009683,http://purl.obolibrary.org/obo/MONDO_0009683,autosomal recessive limb-girdle muscular dystrophy type 2H +14.3898991,MONDO:0009700,http://purl.obolibrary.org/obo/MONDO_0009700,Carey-Fineman-Ziter syndrome +14.3898991,MONDO:0009706,http://purl.obolibrary.org/obo/MONDO_0009706,hereditary myopathy with lactic acidosis due to ISCU deficiency +14.3898991,MONDO:0009715,http://purl.obolibrary.org/obo/MONDO_0009715,"myotonia congenita, autosomal recessive" +14.3898991,MONDO:0009876,http://purl.obolibrary.org/obo/MONDO_0009876,isolated growth hormone deficiency type IA +14.3898991,MONDO:0010098,http://purl.obolibrary.org/obo/MONDO_0010098,taurodontism +14.3898991,MONDO:0010172,http://purl.obolibrary.org/obo/MONDO_0010172,VACTERL with hydrocephalus +14.3898991,MONDO:0010328,http://purl.obolibrary.org/obo/MONDO_0010328,alpha-thalassemia-myelodysplastic syndrome +14.3898991,MONDO:0010475,http://purl.obolibrary.org/obo/MONDO_0010475,X-linked central congenital hypothyroidism with late-onset testicular enlargement +14.3898991,MONDO:0010879,http://purl.obolibrary.org/obo/MONDO_0010879,CODAS syndrome +14.3898991,MONDO:0011025,http://purl.obolibrary.org/obo/MONDO_0011025,Cayman type cerebellar ataxia +14.3898991,MONDO:0011223,http://purl.obolibrary.org/obo/MONDO_0011223,amyotrophic lateral sclerosis type 4 +14.3898991,MONDO:0011938,http://purl.obolibrary.org/obo/MONDO_0011938,atrial septal defect 2 +14.3898991,MONDO:0012166,http://purl.obolibrary.org/obo/MONDO_0012166,autosomal dominant sensory ataxia 1 +14.3898991,MONDO:0012222,http://purl.obolibrary.org/obo/MONDO_0012222,alpha-N-acetylgalactosaminidase deficiency type 2 +14.3898991,MONDO:0012348,http://purl.obolibrary.org/obo/MONDO_0012348,maturity-onset diabetes of the young type 8 +14.3898991,MONDO:0012570,http://purl.obolibrary.org/obo/MONDO_0012570,body skin hyperlaxity due to vitamin K-dependent coagulation factor deficiency +14.3898991,MONDO:0012650,http://purl.obolibrary.org/obo/MONDO_0012650,Cernunnos-XLF deficiency +14.3898991,MONDO:0012690,http://purl.obolibrary.org/obo/MONDO_0012690,Noonan syndrome 5 +14.3898991,MONDO:0012726,http://purl.obolibrary.org/obo/MONDO_0012726,autosomal dominant familial hematuria-retinal arteriolar tortuosity-contractures syndrome +14.3898991,MONDO:0013135,http://purl.obolibrary.org/obo/MONDO_0013135,familial hemophagocytic lymphohistiocytosis 5 +14.3898991,MONDO:0014036,http://purl.obolibrary.org/obo/MONDO_0014036,Alzheimer disease 17 +14.3898991,MONDO:0014205,http://purl.obolibrary.org/obo/MONDO_0014205,severe feeding difficulties-failure to thrive-microcephaly due to ASXL3 deficiency syndrome +14.3898991,MONDO:0015538,http://purl.obolibrary.org/obo/MONDO_0015538,indeterminate dendritic cell tumor +14.3898991,MONDO:0015810,http://purl.obolibrary.org/obo/MONDO_0015810,primary cutaneous CD4+ small/medium-sized pleomorphic T-cell lymphoma +14.3898991,MONDO:0015912,http://purl.obolibrary.org/obo/MONDO_0015912,macrothrombocytopenia and granulocyte inclusions with or without nephritis or sensorineural hearing loss +14.3898991,MONDO:0016153,http://purl.obolibrary.org/obo/MONDO_0016153,qualitative or quantitative defects of TRIM32 +14.3898991,MONDO:0016500,http://purl.obolibrary.org/obo/MONDO_0016500,acute sensory ataxic neuropathy +14.3898991,MONDO:0016533,http://purl.obolibrary.org/obo/MONDO_0016533,apolipoprotein A-II amyloidosis +14.3898991,MONDO:0016548,http://purl.obolibrary.org/obo/MONDO_0016548,megacystis-megaureter syndrome +14.3898991,MONDO:0016689,http://purl.obolibrary.org/obo/MONDO_0016689,gemistocytic astrocytoma +14.3898991,MONDO:0016751,http://purl.obolibrary.org/obo/MONDO_0016751,malignant perineurioma +14.3898991,MONDO:0017058,http://purl.obolibrary.org/obo/MONDO_0017058,autosomal recessive intermediate Charcot-Marie-Tooth disease +14.3898991,MONDO:0017436,http://purl.obolibrary.org/obo/MONDO_0017436,lethal congenital contracture syndrome +14.3898991,MONDO:0017659,http://purl.obolibrary.org/obo/MONDO_0017659,sporadic hyperekplexia +14.3898991,MONDO:0017785,http://purl.obolibrary.org/obo/MONDO_0017785,PENS syndrome +14.3898991,MONDO:0017813,http://purl.obolibrary.org/obo/MONDO_0017813,van Maldergem syndrome +14.3898991,MONDO:0018146,http://purl.obolibrary.org/obo/MONDO_0018146,idiopathic macular telangiectasia type 1 +14.3898991,MONDO:0018161,http://purl.obolibrary.org/obo/MONDO_0018161,non-hereditary retinoblastoma +14.3898991,MONDO:0019504,http://purl.obolibrary.org/obo/MONDO_0019504,superior limbic keratoconjunctivitis +14.3898991,MONDO:0019532,http://purl.obolibrary.org/obo/MONDO_0019532,"autoimmune hemolytic anemia, warm type" +14.3898991,MONDO:0019773,http://purl.obolibrary.org/obo/MONDO_0019773,myelomeningocele +14.3898991,MONDO:0019846,http://purl.obolibrary.org/obo/MONDO_0019846,acquired central diabetes insipidus +14.3898991,MONDO:0019982,http://purl.obolibrary.org/obo/MONDO_0019982,bilateral multicystic dysplastic kidney +14.3898991,MONDO:0020773,http://purl.obolibrary.org/obo/MONDO_0020773,cerebrospinal fluid rhinorrhea +14.3898991,MONDO:0021142,http://purl.obolibrary.org/obo/MONDO_0021142,acquired rippling muscle disease +14.3898991,MONDO:0021513,http://purl.obolibrary.org/obo/MONDO_0021513,benign neoplasm of tonsil +14.3898991,MONDO:0021745,http://purl.obolibrary.org/obo/MONDO_0021745,psychosocial short stature +14.3898991,MONDO:0022171,http://purl.obolibrary.org/obo/MONDO_0022171,chromhidrosis +14.3898991,MONDO:0023067,http://purl.obolibrary.org/obo/MONDO_0023067,endemic Kaposi sarcoma +14.3898991,MONDO:0024387,http://purl.obolibrary.org/obo/MONDO_0024387,benign ovarian sex cord-stromal tumor +14.3898991,MONDO:0025030,http://purl.obolibrary.org/obo/MONDO_0025030,digital dermatitis in cattle +14.3898991,MONDO:0100071,http://purl.obolibrary.org/obo/MONDO_0100071,cardiocutaneous syndrome +14.3898991,MONDO:0100311,http://purl.obolibrary.org/obo/MONDO_0100311,sensory ataxia +14.3898991,NCBITaxon:103782,http://purl.obolibrary.org/obo/NCBITaxon_103782,none +14.3898991,NCBITaxon:104394,http://purl.obolibrary.org/obo/NCBITaxon_104394,none +14.3898991,NCBITaxon:110195,http://purl.obolibrary.org/obo/NCBITaxon_110195,none +14.3898991,NCBITaxon:1112519,http://purl.obolibrary.org/obo/NCBITaxon_1112519,none +14.3898991,NCBITaxon:11228,http://purl.obolibrary.org/obo/NCBITaxon_11228,none +14.3898991,NCBITaxon:11277,http://purl.obolibrary.org/obo/NCBITaxon_11277,none +14.3898991,NCBITaxon:115001,http://purl.obolibrary.org/obo/NCBITaxon_115001,none +14.3898991,NCBITaxon:115002,http://purl.obolibrary.org/obo/NCBITaxon_115002,none +14.3898991,NCBITaxon:116557,http://purl.obolibrary.org/obo/NCBITaxon_116557,none +14.3898991,NCBITaxon:116561,http://purl.obolibrary.org/obo/NCBITaxon_116561,none +14.3898991,NCBITaxon:117893,http://purl.obolibrary.org/obo/NCBITaxon_117893,Batoidea +14.3898991,NCBITaxon:11935,http://purl.obolibrary.org/obo/NCBITaxon_11935,none +14.3898991,NCBITaxon:1211845,http://purl.obolibrary.org/obo/NCBITaxon_1211845,none +14.3898991,NCBITaxon:12182,http://purl.obolibrary.org/obo/NCBITaxon_12182,none +14.3898991,NCBITaxon:12474,http://purl.obolibrary.org/obo/NCBITaxon_12474,none +14.3898991,NCBITaxon:12742,http://purl.obolibrary.org/obo/NCBITaxon_12742,none +14.3898991,NCBITaxon:131082,http://purl.obolibrary.org/obo/NCBITaxon_131082,none +14.3898991,NCBITaxon:131226,http://purl.obolibrary.org/obo/NCBITaxon_131226,none +14.3898991,NCBITaxon:134681,http://purl.obolibrary.org/obo/NCBITaxon_134681,none +14.3898991,NCBITaxon:1508594,http://purl.obolibrary.org/obo/NCBITaxon_1508594,none +14.3898991,NCBITaxon:1511860,http://purl.obolibrary.org/obo/NCBITaxon_1511860,none +14.3898991,NCBITaxon:1511892,http://purl.obolibrary.org/obo/NCBITaxon_1511892,none +14.3898991,NCBITaxon:1535289,http://purl.obolibrary.org/obo/NCBITaxon_1535289,none +14.3898991,NCBITaxon:158372,http://purl.obolibrary.org/obo/NCBITaxon_158372,none +14.3898991,NCBITaxon:158463,http://purl.obolibrary.org/obo/NCBITaxon_158463,none +14.3898991,NCBITaxon:1654,http://purl.obolibrary.org/obo/NCBITaxon_1654,Actinomyces +14.3898991,NCBITaxon:167129,http://purl.obolibrary.org/obo/NCBITaxon_167129,none +14.3898991,NCBITaxon:169617,http://purl.obolibrary.org/obo/NCBITaxon_169617,none +14.3898991,NCBITaxon:186328,http://purl.obolibrary.org/obo/NCBITaxon_186328,none +14.3898991,NCBITaxon:186842,http://purl.obolibrary.org/obo/NCBITaxon_186842,none +14.3898991,NCBITaxon:1933307,http://purl.obolibrary.org/obo/NCBITaxon_1933307,none +14.3898991,NCBITaxon:1955150,http://purl.obolibrary.org/obo/NCBITaxon_1955150,none +14.3898991,NCBITaxon:1972577,http://purl.obolibrary.org/obo/NCBITaxon_1972577,none +14.3898991,NCBITaxon:202566,http://purl.obolibrary.org/obo/NCBITaxon_202566,none +14.3898991,NCBITaxon:2070,http://purl.obolibrary.org/obo/NCBITaxon_2070,none +14.3898991,NCBITaxon:2131,http://purl.obolibrary.org/obo/NCBITaxon_2131,none +14.3898991,NCBITaxon:2132,http://purl.obolibrary.org/obo/NCBITaxon_2132,none +14.3898991,NCBITaxon:233875,http://purl.obolibrary.org/obo/NCBITaxon_233875,none +14.3898991,NCBITaxon:242980,http://purl.obolibrary.org/obo/NCBITaxon_242980,none +14.3898991,NCBITaxon:242981,http://purl.obolibrary.org/obo/NCBITaxon_242981,none +14.3898991,NCBITaxon:243363,http://purl.obolibrary.org/obo/NCBITaxon_243363,none +14.3898991,NCBITaxon:243881,http://purl.obolibrary.org/obo/NCBITaxon_243881,none +14.3898991,NCBITaxon:2560194,http://purl.obolibrary.org/obo/NCBITaxon_2560194,Orthoavulavirus +14.3898991,NCBITaxon:2560319,http://purl.obolibrary.org/obo/NCBITaxon_2560319,Avian orthoavulavirus 1 +14.3898991,NCBITaxon:2560646,http://purl.obolibrary.org/obo/NCBITaxon_2560646,none +14.3898991,NCBITaxon:256548,http://purl.obolibrary.org/obo/NCBITaxon_256548,none +14.3898991,NCBITaxon:2726947,http://purl.obolibrary.org/obo/NCBITaxon_2726947,none +14.3898991,NCBITaxon:273360,http://purl.obolibrary.org/obo/NCBITaxon_273360,none +14.3898991,NCBITaxon:2734494,http://purl.obolibrary.org/obo/NCBITaxon_2734494,none +14.3898991,NCBITaxon:28291,http://purl.obolibrary.org/obo/NCBITaxon_28291,none +14.3898991,NCBITaxon:2842323,http://purl.obolibrary.org/obo/NCBITaxon_2842323,none +14.3898991,NCBITaxon:2842612,http://purl.obolibrary.org/obo/NCBITaxon_2842612,none +14.3898991,NCBITaxon:29264,http://purl.obolibrary.org/obo/NCBITaxon_29264,none +14.3898991,NCBITaxon:298437,http://purl.obolibrary.org/obo/NCBITaxon_298437,none +14.3898991,NCBITaxon:298438,http://purl.obolibrary.org/obo/NCBITaxon_298438,none +14.3898991,NCBITaxon:298439,http://purl.obolibrary.org/obo/NCBITaxon_298439,none +14.3898991,NCBITaxon:301959,http://purl.obolibrary.org/obo/NCBITaxon_301959,none +14.3898991,NCBITaxon:304859,http://purl.obolibrary.org/obo/NCBITaxon_304859,none +14.3898991,NCBITaxon:3051,http://purl.obolibrary.org/obo/NCBITaxon_3051,none +14.3898991,NCBITaxon:3052,http://purl.obolibrary.org/obo/NCBITaxon_3052,none +14.3898991,NCBITaxon:306031,http://purl.obolibrary.org/obo/NCBITaxon_306031,none +14.3898991,NCBITaxon:31244,http://purl.obolibrary.org/obo/NCBITaxon_31244,Schistosomatoidea +14.3898991,NCBITaxon:32354,http://purl.obolibrary.org/obo/NCBITaxon_32354,none +14.3898991,NCBITaxon:337724,http://purl.obolibrary.org/obo/NCBITaxon_337724,none +14.3898991,NCBITaxon:337752,http://purl.obolibrary.org/obo/NCBITaxon_337752,none +14.3898991,NCBITaxon:3402,http://purl.obolibrary.org/obo/NCBITaxon_3402,none +14.3898991,NCBITaxon:349174,http://purl.obolibrary.org/obo/NCBITaxon_349174,none +14.3898991,NCBITaxon:352926,http://purl.obolibrary.org/obo/NCBITaxon_352926,none +14.3898991,NCBITaxon:35320,http://purl.obolibrary.org/obo/NCBITaxon_35320,none +14.3898991,NCBITaxon:353768,http://purl.obolibrary.org/obo/NCBITaxon_353768,none +14.3898991,NCBITaxon:3593,http://purl.obolibrary.org/obo/NCBITaxon_3593,none +14.3898991,NCBITaxon:3615,http://purl.obolibrary.org/obo/NCBITaxon_3615,none +14.3898991,NCBITaxon:36427,http://purl.obolibrary.org/obo/NCBITaxon_36427,none +14.3898991,NCBITaxon:38062,http://purl.obolibrary.org/obo/NCBITaxon_38062,none +14.3898991,NCBITaxon:380624,http://purl.obolibrary.org/obo/NCBITaxon_380624,none +14.3898991,NCBITaxon:38404,http://purl.obolibrary.org/obo/NCBITaxon_38404,none +14.3898991,NCBITaxon:39719,http://purl.obolibrary.org/obo/NCBITaxon_39719,none +14.3898991,NCBITaxon:4050,http://purl.obolibrary.org/obo/NCBITaxon_4050,none +14.3898991,NCBITaxon:40640,http://purl.obolibrary.org/obo/NCBITaxon_40640,none +14.3898991,NCBITaxon:4071,http://purl.obolibrary.org/obo/NCBITaxon_4071,none +14.3898991,NCBITaxon:42168,http://purl.obolibrary.org/obo/NCBITaxon_42168,none +14.3898991,NCBITaxon:424564,http://purl.obolibrary.org/obo/NCBITaxon_424564,none +14.3898991,NCBITaxon:4305,http://purl.obolibrary.org/obo/NCBITaxon_4305,none +14.3898991,NCBITaxon:432261,http://purl.obolibrary.org/obo/NCBITaxon_432261,none +14.3898991,NCBITaxon:446,http://purl.obolibrary.org/obo/NCBITaxon_446,Legionella pneumophila +14.3898991,NCBITaxon:45709,http://purl.obolibrary.org/obo/NCBITaxon_45709,none +14.3898991,NCBITaxon:46917,http://purl.obolibrary.org/obo/NCBITaxon_46917,none +14.3898991,NCBITaxon:47101,http://purl.obolibrary.org/obo/NCBITaxon_47101,none +14.3898991,NCBITaxon:474943,http://purl.obolibrary.org/obo/NCBITaxon_474943,none +14.3898991,NCBITaxon:476429,http://purl.obolibrary.org/obo/NCBITaxon_476429,none +14.3898991,NCBITaxon:4776,http://purl.obolibrary.org/obo/NCBITaxon_4776,none +14.3898991,NCBITaxon:4777,http://purl.obolibrary.org/obo/NCBITaxon_4777,none +14.3898991,NCBITaxon:4783,http://purl.obolibrary.org/obo/NCBITaxon_4783,none +14.3898991,NCBITaxon:50434,http://purl.obolibrary.org/obo/NCBITaxon_50434,none +14.3898991,NCBITaxon:50629,http://purl.obolibrary.org/obo/NCBITaxon_50629,none +14.3898991,NCBITaxon:5097,http://purl.obolibrary.org/obo/NCBITaxon_5097,none +14.3898991,NCBITaxon:51354,http://purl.obolibrary.org/obo/NCBITaxon_51354,none +14.3898991,NCBITaxon:558016,http://purl.obolibrary.org/obo/NCBITaxon_558016,none +14.3898991,NCBITaxon:55951,http://purl.obolibrary.org/obo/NCBITaxon_55951,none +14.3898991,NCBITaxon:585893,http://purl.obolibrary.org/obo/NCBITaxon_585893,none +14.3898991,NCBITaxon:61172,http://purl.obolibrary.org/obo/NCBITaxon_61172,none +14.3898991,NCBITaxon:6251,http://purl.obolibrary.org/obo/NCBITaxon_6251,Ascaris +14.3898991,NCBITaxon:6665,http://purl.obolibrary.org/obo/NCBITaxon_6665,none +14.3898991,NCBITaxon:686609,http://purl.obolibrary.org/obo/NCBITaxon_686609,none +14.3898991,NCBITaxon:687332,http://purl.obolibrary.org/obo/NCBITaxon_687332,none +14.3898991,NCBITaxon:691504,http://purl.obolibrary.org/obo/NCBITaxon_691504,none +14.3898991,NCBITaxon:70910,http://purl.obolibrary.org/obo/NCBITaxon_70910,none +14.3898991,NCBITaxon:7248,http://purl.obolibrary.org/obo/NCBITaxon_7248,none +14.3898991,NCBITaxon:7514,http://purl.obolibrary.org/obo/NCBITaxon_7514,none +14.3898991,NCBITaxon:7873,http://purl.obolibrary.org/obo/NCBITaxon_7873,none +14.3898991,NCBITaxon:80937,http://purl.obolibrary.org/obo/NCBITaxon_80937,none +14.3898991,NCBITaxon:81583,http://purl.obolibrary.org/obo/NCBITaxon_81583,none +14.3898991,NCBITaxon:84337,http://purl.obolibrary.org/obo/NCBITaxon_84337,none +14.3898991,NCBITaxon:85010,http://purl.obolibrary.org/obo/NCBITaxon_85010,none +14.3898991,NCBITaxon:93678,http://purl.obolibrary.org/obo/NCBITaxon_93678,none +14.3898991,NCBITaxon:94015,http://purl.obolibrary.org/obo/NCBITaxon_94015,none +14.3898991,NCBITaxon:94017,http://purl.obolibrary.org/obo/NCBITaxon_94017,none +14.3898991,NCBITaxon:94020,http://purl.obolibrary.org/obo/NCBITaxon_94020,none +14.3898991,NCBITaxon:9569,http://purl.obolibrary.org/obo/NCBITaxon_9569,Colobinae +14.3898991,NCBITaxon:98660,http://purl.obolibrary.org/obo/NCBITaxon_98660,none +14.3898991,NCBITaxon:997821,http://purl.obolibrary.org/obo/NCBITaxon_997821,none +14.3898991,PR:000000813,http://purl.obolibrary.org/obo/PR_000000813,voltage-gated potassium channel subunit KCNA6 +14.3898991,PR:000001340,http://purl.obolibrary.org/obo/PR_000001340,cytokine receptor common subunit gamma +14.3898991,PR:000001506,http://purl.obolibrary.org/obo/PR_000001506,probable G-protein coupled receptor 139 +14.3898991,PR:000001713,http://purl.obolibrary.org/obo/PR_000001713,putative trace amine-associated receptor 3 +14.3898991,PR:000002179,http://purl.obolibrary.org/obo/PR_000002179,26S proteasome non-ATPase regulatory subunit 13 +14.3898991,PR:000003581,http://purl.obolibrary.org/obo/PR_000003581,target of Nesh-SH3 +14.3898991,PR:000003673,http://purl.obolibrary.org/obo/PR_000003673,"acyl-CoA synthetase short-chain family member 3, mitochondrial" +14.3898991,PR:000003709,http://purl.obolibrary.org/obo/PR_000003709,adenosine deaminase-like protein +14.3898991,PR:000003750,http://purl.obolibrary.org/obo/PR_000003750,tRNA-specific adenosine deaminase-like protein 3 +14.3898991,PR:000003785,http://purl.obolibrary.org/obo/PR_000003785,activity-dependent neuroprotector homeobox protein 2 +14.3898991,PR:000003885,http://purl.obolibrary.org/obo/PR_000003885,A-kinase anchor protein 11 +14.3898991,PR:000003955,http://purl.obolibrary.org/obo/PR_000003955,alkylated DNA repair protein alkB homolog 8 +14.3898991,PR:000004015,http://purl.obolibrary.org/obo/PR_000004015,anaphase-promoting complex subunit 13 +14.3898991,PR:000004039,http://purl.obolibrary.org/obo/PR_000004039,ankyrin repeat family A protein 2 +14.3898991,PR:000004045,http://purl.obolibrary.org/obo/PR_000004045,ankyrin repeat domain-containing protein 23 +14.3898991,PR:000004100,http://purl.obolibrary.org/obo/PR_000004100,AP-2 complex subunit alpha-2 +14.3898991,PR:000004163,http://purl.obolibrary.org/obo/PR_000004163,apolipoprotein L6 +14.3898991,PR:000004288,http://purl.obolibrary.org/obo/PR_000004288,ADP-ribosylation factor-like protein 5A +14.3898991,PR:000004361,http://purl.obolibrary.org/obo/PR_000004361,activating signal cointegrator 1 complex subunit 3 +14.3898991,PR:000004461,http://purl.obolibrary.org/obo/PR_000004461,"ATP synthase-coupling factor 6, mitochondrial" +14.3898991,PR:000004737,http://purl.obolibrary.org/obo/PR_000004737,protein BHLHB9 +14.3898991,PR:000004934,http://purl.obolibrary.org/obo/PR_000004934,calcium-binding protein 2 +14.3898991,PR:000004989,http://purl.obolibrary.org/obo/PR_000004989,calcium/calmodulin-dependent protein kinase type 1D +14.3898991,PR:000005052,http://purl.obolibrary.org/obo/PR_000005052,caskin-1 +14.3898991,PR:000005145,http://purl.obolibrary.org/obo/PR_000005145,cyclin-dependent kinase 20 +14.3898991,PR:000005212,http://purl.obolibrary.org/obo/PR_000005212,Cdc42 effector protein 5 +14.3898991,PR:000005355,http://purl.obolibrary.org/obo/PR_000005355,centrosomal protein of 70 kDa +14.3898991,PR:000005454,http://purl.obolibrary.org/obo/PR_000005454,neuronal acetylcholine receptor subunit alpha-10 +14.3898991,PR:000005571,http://purl.obolibrary.org/obo/PR_000005571,C-type lectin domain family 4 member F +14.3898991,PR:000005625,http://purl.obolibrary.org/obo/PR_000005625,"UMP-CMP kinase 2, mitochondrial" +14.3898991,PR:000005791,http://purl.obolibrary.org/obo/PR_000005791,"cytochrome c oxidase subunit 7C, mitochondrial" +14.3898991,PR:000005822,http://purl.obolibrary.org/obo/PR_000005822,copine-7 +14.3898991,PR:000005823,http://purl.obolibrary.org/obo/PR_000005823,copine-8 +14.3898991,PR:000005877,http://purl.obolibrary.org/obo/PR_000005877,cysteine-rich PDZ-binding protein +14.3898991,PR:000005935,http://purl.obolibrary.org/obo/PR_000005935,chondroitin sulfate glucuronyltransferase +14.3898991,PR:000005977,http://purl.obolibrary.org/obo/PR_000005977,cleavage stimulation factor subunit 2 tau variant +14.3898991,PR:000006032,http://purl.obolibrary.org/obo/PR_000006032,cathepsin O +14.3898991,PR:000006146,http://purl.obolibrary.org/obo/PR_000006146,cytochrome P450 4Z1 +14.3898991,PR:000006159,http://purl.obolibrary.org/obo/PR_000006159,cytospin-A +14.3898991,PR:000006303,http://purl.obolibrary.org/obo/PR_000006303,DDB1- and CUL4-associated factor 15 +14.3898991,PR:000006311,http://purl.obolibrary.org/obo/PR_000006311,serine/threonine-protein kinase DCLK2 +14.3898991,PR:000006330,http://purl.obolibrary.org/obo/PR_000006330,DCN1-like protein 1 +14.3898991,PR:000006493,http://purl.obolibrary.org/obo/PR_000006493,DIS3-like exonuclease 2 +14.3898991,PR:000006724,http://purl.obolibrary.org/obo/PR_000006724,E3 ubiquitin-protein ligase DTX4 +14.3898991,PR:000006821,http://purl.obolibrary.org/obo/PR_000006821,none +14.3898991,PR:000007089,http://purl.obolibrary.org/obo/PR_000007089,ectonucleotide pyrophosphatase/phosphodiesterase family member 5 +14.3898991,PR:000007095,http://purl.obolibrary.org/obo/PR_000007095,ectonucleoside triphosphate diphosphohydrolase 4 +14.3898991,PR:000007113,http://purl.obolibrary.org/obo/PR_000007113,band 4.1-like protein 5 +14.3898991,PR:000007140,http://purl.obolibrary.org/obo/PR_000007140,epsin-3 +14.3898991,PR:000007176,http://purl.obolibrary.org/obo/PR_000007176,endoplasmic reticulum-Golgi intermediate compartment protein 3 +14.3898991,PR:000007306,http://purl.obolibrary.org/obo/PR_000007306,fatty-acid amide hydrolase 2 +14.3898991,PR:000007459,http://purl.obolibrary.org/obo/PR_000007459,Fer-1-like protein 4 +14.3898991,PR:000007475,http://purl.obolibrary.org/obo/PR_000007475,"FYVE, RhoGEF and PH domain-containing protein 3" +14.3898991,PR:000007688,http://purl.obolibrary.org/obo/PR_000007688,follistatin-related protein 5 +14.3898991,PR:000007708,http://purl.obolibrary.org/obo/PR_000007708,protein fuzzy +14.3898991,PR:000007734,http://purl.obolibrary.org/obo/PR_000007734,none +14.3898991,PR:000007850,http://purl.obolibrary.org/obo/PR_000007850,GAS2-like protein 1 +14.3898991,PR:000007879,http://purl.obolibrary.org/obo/PR_000007879,guanylate-binding protein 6 +14.3898991,PR:000008108,http://purl.obolibrary.org/obo/PR_000008108,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-3 +14.3898991,PR:000008109,http://purl.obolibrary.org/obo/PR_000008109,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-4 +14.3898991,PR:000008469,http://purl.obolibrary.org/obo/PR_000008469,holocytochrome c-type synthase +14.3898991,PR:000008527,http://purl.obolibrary.org/obo/PR_000008527,protein HEXIM2 +14.3898991,PR:000008754,http://purl.obolibrary.org/obo/PR_000008754,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 +14.3898991,PR:000008804,http://purl.obolibrary.org/obo/PR_000008804,heat shock 70 kDa protein 13 +14.3898991,PR:000008830,http://purl.obolibrary.org/obo/PR_000008830,HIV Tat-specific factor 1 +14.3898991,PR:000008990,http://purl.obolibrary.org/obo/PR_000008990,interleukin-1 family member 9 +14.3898991,PR:000009100,http://purl.obolibrary.org/obo/PR_000009100,DDB1- and CUL4-associated factor 6 +14.3898991,PR:000009156,http://purl.obolibrary.org/obo/PR_000009156,inositol-trisphosphate 3-kinase B +14.3898991,PR:000009241,http://purl.obolibrary.org/obo/PR_000009241,eukaryote-type lysine--tRNA ligase +14.3898991,PR:000009276,http://purl.obolibrary.org/obo/PR_000009276,3-ketodihydrosphingosine reductase +14.3898991,PR:000009321,http://purl.obolibrary.org/obo/PR_000009321,kinesin-like protein KIF9 +14.3898991,PR:000009381,http://purl.obolibrary.org/obo/PR_000009381,kelch-like protein 2 +14.3898991,PR:000009425,http://purl.obolibrary.org/obo/PR_000009425,killer cell lectin-like receptor subfamily F member 1 +14.3898991,PR:000009436,http://purl.obolibrary.org/obo/PR_000009436,importin subunit alpha-6 +14.3898991,PR:000009464,http://purl.obolibrary.org/obo/PR_000009464,"keratin, type I cytoskeletal 25" +14.3898991,PR:000009588,http://purl.obolibrary.org/obo/PR_000009588,keratinocyte-associated protein 2 +14.3898991,PR:000009670,http://purl.obolibrary.org/obo/PR_000009670,La-related protein 4 +14.3898991,PR:000009700,http://purl.obolibrary.org/obo/PR_000009700,late cornified envelope protein 1B +14.3898991,PR:000009852,http://purl.obolibrary.org/obo/PR_000009852,vesicular integral-membrane protein VIP36 +14.3898991,PR:000009900,http://purl.obolibrary.org/obo/PR_000009900,BPI fold-containing family B member 4 +14.3898991,PR:000009923,http://purl.obolibrary.org/obo/PR_000009923,low-density lipoprotein receptor-related protein 3 +14.3898991,PR:000009949,http://purl.obolibrary.org/obo/PR_000009949,leucine-rich repeat transmembrane neuronal protein 4 +14.3898991,PR:000010016,http://purl.obolibrary.org/obo/PR_000010016,lysozyme-like protein 4 +14.3898991,PR:000010079,http://purl.obolibrary.org/obo/PR_000010079,melanoma-associated antigen E2 +14.3898991,PR:000010176,http://purl.obolibrary.org/obo/PR_000010176,E3 ubiquitin-protein ligase MARCHF2 +14.3898991,PR:000010198,http://purl.obolibrary.org/obo/PR_000010198,microtubule-associated serine/threonine-protein kinase 4 +14.3898991,PR:000010341,http://purl.obolibrary.org/obo/PR_000010341,tRNA (guanine-N(7)-)-methyltransferase +14.3898991,PR:000010432,http://purl.obolibrary.org/obo/PR_000010432,makorin-2 +14.3898991,PR:000010590,http://purl.obolibrary.org/obo/PR_000010590,"39S ribosomal protein L3, mitochondrial" +14.3898991,PR:000010602,http://purl.obolibrary.org/obo/PR_000010602,"39S ribosomal protein L41, mitochondrial" +14.3898991,PR:000010745,http://purl.obolibrary.org/obo/PR_000010745,"poly(A) RNA polymerase, mitochondrial" +14.3898991,PR:000010871,http://purl.obolibrary.org/obo/PR_000010871,myosin-IXa +14.3898991,PR:000010947,http://purl.obolibrary.org/obo/PR_000010947,inactive N-acetylated-alpha-linked acidic dipeptidase-like protein 2 +14.3898991,PR:000010960,http://purl.obolibrary.org/obo/PR_000010960,N-acetyl-D-glucosamine kinase +14.3898991,PR:000010985,http://purl.obolibrary.org/obo/PR_000010985,nicotinate phosphoribosyltransferase +14.3898991,PR:000010999,http://purl.obolibrary.org/obo/PR_000010999,N-acetyltransferase 14 +14.3898991,PR:000011109,http://purl.obolibrary.org/obo/PR_000011109,N-terminal EF-hand calcium-binding protein 1 +14.3898991,PR:000011131,http://purl.obolibrary.org/obo/PR_000011131,serine/threonine-protein kinase Nek5 +14.3898991,PR:000011161,http://purl.obolibrary.org/obo/PR_000011161,NFAT activation molecule 1 +14.3898991,PR:000011193,http://purl.obolibrary.org/obo/PR_000011193,ephexin-1 +14.3898991,PR:000011236,http://purl.obolibrary.org/obo/PR_000011236,NF-kappa-B inhibitor-interacting Ras-like protein 2 +14.3898991,PR:000011502,http://purl.obolibrary.org/obo/PR_000011502,nuclear fragile X mental retardation-interacting protein 2 +14.3898991,PR:000011511,http://purl.obolibrary.org/obo/PR_000011511,nucleoporin NUP188 +14.3898991,PR:000011517,http://purl.obolibrary.org/obo/PR_000011517,nucleoporin Nup37 +14.3898991,PR:000011534,http://purl.obolibrary.org/obo/PR_000011534,nuclear valosin-containing protein-like +14.3898991,PR:000011540,http://purl.obolibrary.org/obo/PR_000011540,nucleoredoxin-like protein 1 +14.3898991,PR:000011543,http://purl.obolibrary.org/obo/PR_000011543,neurexophilin-2 +14.3898991,PR:000011604,http://purl.obolibrary.org/obo/PR_000011604,outer dense fiber protein 4 +14.3898991,PR:000011610,http://purl.obolibrary.org/obo/PR_000011610,orofacial cleft 1 candidate gene 1 protein +14.3898991,PR:000012064,http://purl.obolibrary.org/obo/PR_000012064,organic solute transporter subunit alpha +14.3898991,PR:000012182,http://purl.obolibrary.org/obo/PR_000012182,none +14.3898991,PR:000012184,http://purl.obolibrary.org/obo/PR_000012184,none +14.3898991,PR:000012299,http://purl.obolibrary.org/obo/PR_000012299,protein mono-ADP-ribosyltransferase PARP6 +14.3898991,PR:000012324,http://purl.obolibrary.org/obo/PR_000012324,prostate and breast cancer overexpressed gene 1 protein +14.3898991,PR:000012338,http://purl.obolibrary.org/obo/PR_000012338,poly(rC)-binding protein 4 +14.3898991,PR:000012412,http://purl.obolibrary.org/obo/PR_000012412,Polycomb group RING finger protein 3 +14.3898991,PR:000012483,http://purl.obolibrary.org/obo/PR_000012483,"retinal cone rhodopsin-sensitive cGMP 3',5'-cyclic phosphodiesterase subunit gamma" +14.3898991,PR:000012573,http://purl.obolibrary.org/obo/PR_000012573,prefoldin subunit 2 +14.3898991,PR:000012755,http://purl.obolibrary.org/obo/PR_000012755,cytoplasmic phosphatidylinositol transfer protein 1 +14.3898991,PR:000012803,http://purl.obolibrary.org/obo/PR_000012803,group 3 secretory phospholipase A2 +14.3898991,PR:000012846,http://purl.obolibrary.org/obo/PR_000012846,5'-3' exonuclease PLD4 +14.3898991,PR:000012863,http://purl.obolibrary.org/obo/PR_000012863,pleckstrin homology domain-containing family G member 6 +14.3898991,PR:000013168,http://purl.obolibrary.org/obo/PR_000013168,PRA1 family protein 2 +14.3898991,PR:000013175,http://purl.obolibrary.org/obo/PR_000013175,basic salivary proline-rich protein 4 +14.3898991,PR:000013229,http://purl.obolibrary.org/obo/PR_000013229,cAMP-dependent protein kinase type I-beta regulatory subunit +14.3898991,PR:000013294,http://purl.obolibrary.org/obo/PR_000013294,phosphoribosyl pyrophosphate synthase-associated protein 1 +14.3898991,PR:000013315,http://purl.obolibrary.org/obo/PR_000013315,transmembrane gamma-carboxyglutamic acid protein 4 +14.3898991,PR:000013401,http://purl.obolibrary.org/obo/PR_000013401,psoriasis susceptibility 1 candidate gene 1 protein +14.3898991,PR:000013444,http://purl.obolibrary.org/obo/PR_000013444,very-long-chain (3R)-3-hydroxyacyl-CoA dehydratase 3 +14.3898991,PR:000013545,http://purl.obolibrary.org/obo/PR_000013545,none +14.3898991,PR:000013583,http://purl.obolibrary.org/obo/PR_000013583,Rab11 family-interacting protein 4 +14.3898991,PR:000013612,http://purl.obolibrary.org/obo/PR_000013612,Ras-related protein Rab-36 +14.3898991,PR:000013641,http://purl.obolibrary.org/obo/PR_000013641,Ras-related protein Rab-7L1 +14.3898991,PR:000013651,http://purl.obolibrary.org/obo/PR_000013651,Rab GTPase-activating protein 1-like +14.3898991,PR:000013725,http://purl.obolibrary.org/obo/PR_000013725,Ras-related protein Rap-2c +14.3898991,PR:000013754,http://purl.obolibrary.org/obo/PR_000013754,Ras-GEF domain-containing family member 1B +14.3898991,PR:000014080,http://purl.obolibrary.org/obo/PR_000014080,E3 ubiquitin-protein ligase RNF13 +14.3898991,PR:000014173,http://purl.obolibrary.org/obo/PR_000014173,replication protein A 30 kDa subunit +14.3898991,PR:000014310,http://purl.obolibrary.org/obo/PR_000014310,RRP12-like protein +14.3898991,PR:000014367,http://purl.obolibrary.org/obo/PR_000014367,iporin +14.3898991,PR:000014406,http://purl.obolibrary.org/obo/PR_000014406,protein S100-A13 +14.3898991,PR:000014412,http://purl.obolibrary.org/obo/PR_000014412,protein S100-A5 +14.3898991,PR:000014428,http://purl.obolibrary.org/obo/PR_000014428,SAC3 domain-containing protein 1 +14.3898991,PR:000014518,http://purl.obolibrary.org/obo/PR_000014518,polycomb protein SCMH1 +14.3898991,PR:000014555,http://purl.obolibrary.org/obo/PR_000014555,syntenin-2 +14.3898991,PR:000014561,http://purl.obolibrary.org/obo/PR_000014561,stromal cell-derived factor 2-like protein 1 +14.3898991,PR:000014737,http://purl.obolibrary.org/obo/PR_000014737,splicing factor 3B subunit 3 +14.3898991,PR:000014851,http://purl.obolibrary.org/obo/PR_000014851,sedoheptulokinase +14.3898991,PR:000014923,http://purl.obolibrary.org/obo/PR_000014923,sodium/bile acid cotransporter 7 +14.3898991,PR:000014989,http://purl.obolibrary.org/obo/PR_000014989,solute carrier family 22 member 20 +14.3898991,PR:000015126,http://purl.obolibrary.org/obo/PR_000015126,zinc transporter ZIP12 +14.3898991,PR:000015266,http://purl.obolibrary.org/obo/PR_000015266,SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily D member 2 +14.3898991,PR:000015303,http://purl.obolibrary.org/obo/PR_000015303,smoothelin-like protein 1 +14.3898991,PR:000015368,http://purl.obolibrary.org/obo/PR_000015368,sorting nexin-19 +14.3898991,PR:000015547,http://purl.obolibrary.org/obo/PR_000015547,protein spire homolog 2 +14.3898991,PR:000015589,http://purl.obolibrary.org/obo/PR_000015589,SPRY domain-containing SOCS box protein 4 +14.3898991,PR:000015640,http://purl.obolibrary.org/obo/PR_000015640,serine/arginine-rich splicing factor 12 +14.3898991,PR:000015668,http://purl.obolibrary.org/obo/PR_000015668,protein SSX2 +14.3898991,PR:000015691,http://purl.obolibrary.org/obo/PR_000015691,"alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5" +14.3898991,PR:000015855,http://purl.obolibrary.org/obo/PR_000015855,synaptic vesicle 2-related protein +14.3898991,PR:000016063,http://purl.obolibrary.org/obo/PR_000016063,taste receptor type 2 member 1/119 +14.3898991,PR:000016144,http://purl.obolibrary.org/obo/PR_000016144,T-box transcription factor TBX10 +14.3898991,PR:000016166,http://purl.obolibrary.org/obo/PR_000016166,transcription elongation factor A protein-like 7 +14.3898991,PR:000016207,http://purl.obolibrary.org/obo/PR_000016207,dynein regulatory complex subunit 5 +14.3898991,PR:000016298,http://purl.obolibrary.org/obo/PR_000016298,protein-glutamine gamma-glutamyltransferase Z +14.3898991,PR:000016326,http://purl.obolibrary.org/obo/PR_000016326,TGFB1-induced anti-apoptotic factor 1 +14.3898991,PR:000016560,http://purl.obolibrary.org/obo/PR_000016560,tumor protein p53-inducible protein 11 +14.3898991,PR:000016572,http://purl.obolibrary.org/obo/PR_000016572,tumor protein D53 +14.3898991,PR:000016716,http://purl.obolibrary.org/obo/PR_000016716,tRNA-splicing endonuclease subunit Sen34 +14.3898991,PR:000016773,http://purl.obolibrary.org/obo/PR_000016773,testis-specific serine/threonine-protein kinase 4 +14.3898991,PR:000016843,http://purl.obolibrary.org/obo/PR_000016843,speckle targeted PIP5K1A-regulated poly(A) polymerase +14.3898991,PR:000016858,http://purl.obolibrary.org/obo/PR_000016858,thioredoxin domain-containing protein 12 +14.3898991,PR:000017143,http://purl.obolibrary.org/obo/PR_000017143,"ATP synthase membrane subunit K, mitochondrial" +14.3898991,PR:000017188,http://purl.obolibrary.org/obo/PR_000017188,ubiquitin carboxyl-terminal hydrolase 49 +14.3898991,PR:000017307,http://purl.obolibrary.org/obo/PR_000017307,vitelline membrane outer layer protein 1 +14.3898991,PR:000017388,http://purl.obolibrary.org/obo/PR_000017388,ribosome biogenesis protein WDR12 +14.3898991,PR:000017461,http://purl.obolibrary.org/obo/PR_000017461,Wilms tumor protein 1-interacting protein +14.3898991,PR:000017487,http://purl.obolibrary.org/obo/PR_000017487,XK-related protein 8 +14.3898991,PR:000017524,http://purl.obolibrary.org/obo/PR_000017524,"tyrosine--tRNA ligase, mitochondrial" +14.3898991,PR:000017551,http://purl.obolibrary.org/obo/PR_000017551,14-3-3 protein eta +14.3898991,PR:000017567,http://purl.obolibrary.org/obo/PR_000017567,zinc finger and BTB domain-containing protein 2 +14.3898991,PR:000017664,http://purl.obolibrary.org/obo/PR_000017664,zinc fingers and homeoboxes protein 3 +14.3898991,PR:000017684,http://purl.obolibrary.org/obo/PR_000017684,zinc finger MIZ domain-containing protein 2 +14.3898991,PR:000017746,http://purl.obolibrary.org/obo/PR_000017746,zinc finger protein 202 +14.3898991,PR:000017823,http://purl.obolibrary.org/obo/PR_000017823,zinc finger protein 32 +14.3898991,PR:000021947,http://purl.obolibrary.org/obo/PR_000021947,none +14.3898991,PR:000021954,http://purl.obolibrary.org/obo/PR_000021954,none +14.3898991,PR:000022025,http://purl.obolibrary.org/obo/PR_000022025,none +14.3898991,PR:000022118,http://purl.obolibrary.org/obo/PR_000022118,none +14.3898991,PR:000022309,http://purl.obolibrary.org/obo/PR_000022309,none +14.3898991,PR:000022609,http://purl.obolibrary.org/obo/PR_000022609,none +14.3898991,PR:000022641,http://purl.obolibrary.org/obo/PR_000022641,none +14.3898991,PR:000022889,http://purl.obolibrary.org/obo/PR_000022889,none +14.3898991,PR:000023104,http://purl.obolibrary.org/obo/PR_000023104,none +14.3898991,PR:000023161,http://purl.obolibrary.org/obo/PR_000023161,none +14.3898991,PR:000023203,http://purl.obolibrary.org/obo/PR_000023203,none +14.3898991,PR:000023257,http://purl.obolibrary.org/obo/PR_000023257,none +14.3898991,PR:000023279,http://purl.obolibrary.org/obo/PR_000023279,none +14.3898991,PR:000023281,http://purl.obolibrary.org/obo/PR_000023281,none +14.3898991,PR:000023304,http://purl.obolibrary.org/obo/PR_000023304,none +14.3898991,PR:000023362,http://purl.obolibrary.org/obo/PR_000023362,none +14.3898991,PR:000023503,http://purl.obolibrary.org/obo/PR_000023503,none +14.3898991,PR:000023529,http://purl.obolibrary.org/obo/PR_000023529,none +14.3898991,PR:000023559,http://purl.obolibrary.org/obo/PR_000023559,none +14.3898991,PR:000023573,http://purl.obolibrary.org/obo/PR_000023573,none +14.3898991,PR:000023659,http://purl.obolibrary.org/obo/PR_000023659,none +14.3898991,PR:000023822,http://purl.obolibrary.org/obo/PR_000023822,none +14.3898991,PR:000023897,http://purl.obolibrary.org/obo/PR_000023897,none +14.3898991,PR:000023975,http://purl.obolibrary.org/obo/PR_000023975,none +14.3898991,PR:000024085,http://purl.obolibrary.org/obo/PR_000024085,none +14.3898991,PR:000025562,http://purl.obolibrary.org/obo/PR_000025562,amyloid-beta precursor protein sequence variant E693G (human) +14.3898991,PR:000027077,http://purl.obolibrary.org/obo/PR_000027077,TAK1 kinase complex +14.3898991,PR:000027595,http://purl.obolibrary.org/obo/PR_000027595,none +14.3898991,PR:000029092,http://purl.obolibrary.org/obo/PR_000029092,aminoglycoside phosphotransferase domain-containing protein 1 +14.3898991,PR:000029095,http://purl.obolibrary.org/obo/PR_000029095,ankyrin repeat domain-containing protein 54 +14.3898991,PR:000029142,http://purl.obolibrary.org/obo/PR_000029142,glycosaminoglycan xylosylkinase +14.3898991,PR:000029397,http://purl.obolibrary.org/obo/PR_000029397,probable ATP-dependent RNA helicase DDX60 +14.3898991,PR:000029413,http://purl.obolibrary.org/obo/PR_000029413,putative pre-mRNA-splicing factor ATP-dependent RNA helicase DHX32 +14.3898991,PR:000029448,http://purl.obolibrary.org/obo/PR_000029448,HERV-K_7p22.1 provirus ancestral Env polyprotein +14.3898991,PR:000029486,http://purl.obolibrary.org/obo/PR_000029486,protein FAM83H +14.3898991,PR:000029598,http://purl.obolibrary.org/obo/PR_000029598,"capping protein, Arp2/3 and myosin-I linker protein 2" +14.3898991,PR:000029622,http://purl.obolibrary.org/obo/PR_000029622,MBT domain-containing protein 1 +14.3898991,PR:000029623,http://purl.obolibrary.org/obo/PR_000029623,multiple C2 and transmembrane domain-containing protein 1 +14.3898991,PR:000029767,http://purl.obolibrary.org/obo/PR_000029767,protein Spindly +14.3898991,PR:000030428,http://purl.obolibrary.org/obo/PR_000030428,PIH1 domain-containing protein 1 +14.3898991,PR:000030459,http://purl.obolibrary.org/obo/PR_000030459,immunoglobulin-like domain-containing receptor 2 +14.3898991,PR:000030653,http://purl.obolibrary.org/obo/PR_000030653,V-set and transmembrane domain-containing protein 1 +14.3898991,PR:000030673,http://purl.obolibrary.org/obo/PR_000030673,transmembrane protein 100 +14.3898991,PR:000030825,http://purl.obolibrary.org/obo/PR_000030825,adhesion G-protein coupled receptor F1 +14.3898991,PR:000030999,http://purl.obolibrary.org/obo/PR_000030999,protein SMG9 +14.3898991,PR:000031031,http://purl.obolibrary.org/obo/PR_000031031,OTU domain-containing protein 1 +14.3898991,PR:000031143,http://purl.obolibrary.org/obo/PR_000031143,pepsin A-3 +14.3898991,PR:000031231,http://purl.obolibrary.org/obo/PR_000031231,androglobin +14.3898991,PR:000031311,http://purl.obolibrary.org/obo/PR_000031311,CKLF-like MARVEL transmembrane domain-containing protein 7 +14.3898991,PR:000031483,http://purl.obolibrary.org/obo/PR_000031483,ankyrin repeat and SAM domain-containing protein 3 +14.3898991,PR:000031631,http://purl.obolibrary.org/obo/PR_000031631,ropporin-1A +14.3898991,PR:000031783,http://purl.obolibrary.org/obo/PR_000031783,allergin-1 +14.3898991,PR:000031916,http://purl.obolibrary.org/obo/PR_000031916,protein phosphatase 1 regulatory subunit 28 +14.3898991,PR:000032061,http://purl.obolibrary.org/obo/PR_000032061,inward rectifier potassium channel 18 +14.3898991,PR:000032105,http://purl.obolibrary.org/obo/PR_000032105,KAT8 regulatory NSL complex subunit 2 +14.3898991,PR:000032148,http://purl.obolibrary.org/obo/PR_000032148,lysosome-associated membrane glycoprotein 5 +14.3898991,PR:000032210,http://purl.obolibrary.org/obo/PR_000032210,surfactant-associated protein 3 +14.3898991,PR:000032282,http://purl.obolibrary.org/obo/PR_000032282,DEP domain-containing protein 1B +14.3898991,PR:000032376,http://purl.obolibrary.org/obo/PR_000032376,leucine-rich repeat and fibronectin type-III domain-containing protein 5 +14.3898991,PR:000032421,http://purl.obolibrary.org/obo/PR_000032421,cadherin-like and PC-esterase domain-containing protein 1 +14.3898991,PR:000032448,http://purl.obolibrary.org/obo/PR_000032448,spermatogenesis-associated protein 32 +14.3898991,PR:000032809,http://purl.obolibrary.org/obo/PR_000032809,epoxide hydrolase 3 +14.3898991,PR:000032827,http://purl.obolibrary.org/obo/PR_000032827,FERM and PDZ domain-containing protein 4 +14.3898991,PR:000033715,http://purl.obolibrary.org/obo/PR_000033715,none +14.3898991,PR:000033791,http://purl.obolibrary.org/obo/PR_000033791,none +14.3898991,PR:000035067,http://purl.obolibrary.org/obo/PR_000035067,none +14.3898991,PR:000037458,http://purl.obolibrary.org/obo/PR_000037458,none +14.3898991,PR:000044413,http://purl.obolibrary.org/obo/PR_000044413,none +14.3898991,PR:000050385,http://purl.obolibrary.org/obo/PR_000050385,histone H3 (human) +14.3898991,PR:A3KPF5,http://purl.obolibrary.org/obo/PR_A3KPF5,none +14.3898991,PR:A8WFT6,http://purl.obolibrary.org/obo/PR_A8WFT6,none +14.3898991,PR:F4JTB3,http://purl.obolibrary.org/obo/PR_F4JTB3,none +14.3898991,PR:O04373,http://purl.obolibrary.org/obo/PR_O04373,none +14.3898991,PR:O07623,http://purl.obolibrary.org/obo/PR_O07623,none +14.3898991,PR:O13748,http://purl.obolibrary.org/obo/PR_O13748,none +14.3898991,PR:O14122,http://purl.obolibrary.org/obo/PR_O14122,none +14.3898991,PR:O22752,http://purl.obolibrary.org/obo/PR_O22752,none +14.3898991,PR:O23674,http://purl.obolibrary.org/obo/PR_O23674,none +14.3898991,PR:O48582,http://purl.obolibrary.org/obo/PR_O48582,none +14.3898991,PR:O48818,http://purl.obolibrary.org/obo/PR_O48818,none +14.3898991,PR:O49603,http://purl.obolibrary.org/obo/PR_O49603,none +14.3898991,PR:O61125,http://purl.obolibrary.org/obo/PR_O61125,none +14.3898991,PR:P01901-1,http://purl.obolibrary.org/obo/PR_P01901-1,none +14.3898991,PR:P02845,http://purl.obolibrary.org/obo/PR_P02845,none +14.3898991,PR:P09089,http://purl.obolibrary.org/obo/PR_P09089,none +14.3898991,PR:P0A308,http://purl.obolibrary.org/obo/PR_P0A308,none +14.3898991,PR:P17972,http://purl.obolibrary.org/obo/PR_P17972,none +14.3898991,PR:P23501,http://purl.obolibrary.org/obo/PR_P23501,none +14.3898991,PR:P27521,http://purl.obolibrary.org/obo/PR_P27521,none +14.3898991,PR:P29511,http://purl.obolibrary.org/obo/PR_P29511,none +14.3898991,PR:P29514,http://purl.obolibrary.org/obo/PR_P29514,none +14.3898991,PR:P30974,http://purl.obolibrary.org/obo/PR_P30974,none +14.3898991,PR:P32380,http://purl.obolibrary.org/obo/PR_P32380,none +14.3898991,PR:P33760,http://purl.obolibrary.org/obo/PR_P33760,none +14.3898991,PR:P38340,http://purl.obolibrary.org/obo/PR_P38340,none +14.3898991,PR:P38922,http://purl.obolibrary.org/obo/PR_P38922,none +14.3898991,PR:P40061,http://purl.obolibrary.org/obo/PR_P40061,none +14.3898991,PR:P40422,http://purl.obolibrary.org/obo/PR_P40422,none +14.3898991,PR:P41277,http://purl.obolibrary.org/obo/PR_P41277,none +14.3898991,PR:P41805,http://purl.obolibrary.org/obo/PR_P41805,none +14.3898991,PR:P47057,http://purl.obolibrary.org/obo/PR_P47057,none +14.3898991,PR:P51521,http://purl.obolibrary.org/obo/PR_P51521,none +14.3898991,PR:P53114,http://purl.obolibrary.org/obo/PR_P53114,none +14.3898991,PR:P56223,http://purl.obolibrary.org/obo/PR_P56223,none +14.3898991,PR:P79007,http://purl.obolibrary.org/obo/PR_P79007,none +14.3898991,PR:P81909,http://purl.obolibrary.org/obo/PR_P81909,none +14.3898991,PR:P84243,http://purl.obolibrary.org/obo/PR_P84243,histone H3.3 (human) +14.3898991,PR:P84245,http://purl.obolibrary.org/obo/PR_P84245,none +14.3898991,PR:Q02725,http://purl.obolibrary.org/obo/PR_Q02725,none +14.3898991,PR:Q03433,http://purl.obolibrary.org/obo/PR_Q03433,none +14.3898991,PR:Q04119,http://purl.obolibrary.org/obo/PR_Q04119,none +14.3898991,PR:Q08001,http://purl.obolibrary.org/obo/PR_Q08001,none +14.3898991,PR:Q12114,http://purl.obolibrary.org/obo/PR_Q12114,none +14.3898991,PR:Q12132,http://purl.obolibrary.org/obo/PR_Q12132,none +14.3898991,PR:Q26365,http://purl.obolibrary.org/obo/PR_Q26365,none +14.3898991,PR:Q54C71,http://purl.obolibrary.org/obo/PR_Q54C71,none +14.3898991,PR:Q54GV0,http://purl.obolibrary.org/obo/PR_Q54GV0,none +14.3898991,PR:Q54GY6,http://purl.obolibrary.org/obo/PR_Q54GY6,none +14.3898991,PR:Q54QC8,http://purl.obolibrary.org/obo/PR_Q54QC8,none +14.3898991,PR:Q5A5N5,http://purl.obolibrary.org/obo/PR_Q5A5N5,none +14.3898991,PR:Q5M755,http://purl.obolibrary.org/obo/PR_Q5M755,none +14.3898991,PR:Q7PC85,http://purl.obolibrary.org/obo/PR_Q7PC85,none +14.3898991,PR:Q84MA2,http://purl.obolibrary.org/obo/PR_Q84MA2,none +14.3898991,PR:Q8GWK6,http://purl.obolibrary.org/obo/PR_Q8GWK6,none +14.3898991,PR:Q8LDM2,http://purl.obolibrary.org/obo/PR_Q8LDM2,none +14.3898991,PR:Q8QFV0,http://purl.obolibrary.org/obo/PR_Q8QFV0,none +14.3898991,PR:Q8VCC2,http://purl.obolibrary.org/obo/PR_Q8VCC2,none +14.3898991,PR:Q92052,http://purl.obolibrary.org/obo/PR_Q92052,none +14.3898991,PR:Q92371,http://purl.obolibrary.org/obo/PR_Q92371,none +14.3898991,PR:Q93WL3,http://purl.obolibrary.org/obo/PR_Q93WL3,none +14.3898991,PR:Q94BR5,http://purl.obolibrary.org/obo/PR_Q94BR5,none +14.3898991,PR:Q94K41,http://purl.obolibrary.org/obo/PR_Q94K41,none +14.3898991,PR:Q9C5Q8,http://purl.obolibrary.org/obo/PR_Q9C5Q8,none +14.3898991,PR:Q9ES58,http://purl.obolibrary.org/obo/PR_Q9ES58,none +14.3898991,PR:Q9FEN9,http://purl.obolibrary.org/obo/PR_Q9FEN9,none +14.3898991,PR:Q9FK25,http://purl.obolibrary.org/obo/PR_Q9FK25,none +14.3898991,PR:Q9FLR1,http://purl.obolibrary.org/obo/PR_Q9FLR1,none +14.3898991,PR:Q9FQ25,http://purl.obolibrary.org/obo/PR_Q9FQ25,none +14.3898991,PR:Q9FUT0,http://purl.obolibrary.org/obo/PR_Q9FUT0,none +14.3898991,PR:Q9JMC8,http://purl.obolibrary.org/obo/PR_Q9JMC8,none +14.3898991,PR:Q9LKB9,http://purl.obolibrary.org/obo/PR_Q9LKB9,none +14.3898991,PR:Q9LMX7,http://purl.obolibrary.org/obo/PR_Q9LMX7,none +14.3898991,PR:Q9LY09,http://purl.obolibrary.org/obo/PR_Q9LY09,none +14.3898991,PR:Q9M7Q2,http://purl.obolibrary.org/obo/PR_Q9M7Q2,none +14.3898991,PR:Q9M9F9,http://purl.obolibrary.org/obo/PR_Q9M9F9,none +14.3898991,PR:Q9SAH8,http://purl.obolibrary.org/obo/PR_Q9SAH8,none +14.3898991,PR:Q9SCU0,http://purl.obolibrary.org/obo/PR_Q9SCU0,none +14.3898991,PR:Q9SJ25,http://purl.obolibrary.org/obo/PR_Q9SJ25,none +14.3898991,PR:Q9SPG5,http://purl.obolibrary.org/obo/PR_Q9SPG5,none +14.3898991,PR:Q9STT8,http://purl.obolibrary.org/obo/PR_Q9STT8,none +14.3898991,PR:Q9SUE7,http://purl.obolibrary.org/obo/PR_Q9SUE7,none +14.3898991,PR:Q9SZE2,http://purl.obolibrary.org/obo/PR_Q9SZE2,none +14.3898991,PR:Q9TW28,http://purl.obolibrary.org/obo/PR_Q9TW28,none +14.3898991,PR:Q9USG6,http://purl.obolibrary.org/obo/PR_Q9USG6,none +14.3898991,PR:Q9UTT1,http://purl.obolibrary.org/obo/PR_Q9UTT1,none +14.3898991,PR:Q9VFK6,http://purl.obolibrary.org/obo/PR_Q9VFK6,none +14.3898991,PR:Q9VWR5,http://purl.obolibrary.org/obo/PR_Q9VWR5,none +14.3898991,PR:Q9W6A7,http://purl.obolibrary.org/obo/PR_Q9W6A7,none +14.3898991,PR:Q9YI97,http://purl.obolibrary.org/obo/PR_Q9YI97,none +14.3898991,PR:Q9ZUH5,http://purl.obolibrary.org/obo/PR_Q9ZUH5,none +14.3898991,SO:0000398,http://purl.obolibrary.org/obo/SO_0000398,U11_snRNA +14.3898991,SO:0000639,http://purl.obolibrary.org/obo/SO_0000639,internal_transcribed_spacer_region +14.3898991,SO:0001166,http://purl.obolibrary.org/obo/SO_0001166,GAGA_motif +14.3898991,SO:0001545,http://purl.obolibrary.org/obo/SO_0001545,polyadenylation_variant +14.3898991,SO:1000013,http://purl.obolibrary.org/obo/SO_1000013,T_to_C_transition +14.3898991,UBERON:0000031,http://purl.obolibrary.org/obo/UBERON_0000031,lamina propria of trachea +14.3898991,UBERON:0000069,http://purl.obolibrary.org/obo/UBERON_0000069,larval stage +14.3898991,UBERON:0001045,http://purl.obolibrary.org/obo/UBERON_0001045,midgut +14.3898991,UBERON:0001166,http://purl.obolibrary.org/obo/UBERON_0001166,pylorus +14.3898991,UBERON:0001684,http://purl.obolibrary.org/obo/UBERON_0001684,mandible +14.3898991,UBERON:0001693,http://purl.obolibrary.org/obo/UBERON_0001693,exoccipital bone +14.3898991,UBERON:0002288,http://purl.obolibrary.org/obo/UBERON_0002288,choroid plexus of third ventricle +14.3898991,UBERON:0002592,http://purl.obolibrary.org/obo/UBERON_0002592,juxtarestiform body +14.3898991,UBERON:0002805,http://purl.obolibrary.org/obo/UBERON_0002805,right limbic lobe +14.3898991,UBERON:0002871,http://purl.obolibrary.org/obo/UBERON_0002871,hypoglossal nucleus +14.3898991,UBERON:0003238,http://purl.obolibrary.org/obo/UBERON_0003238,epithelium of superior semicircular canal +14.3898991,UBERON:0003585,http://purl.obolibrary.org/obo/UBERON_0003585,dermis connective tissue +14.3898991,UBERON:0004150,http://purl.obolibrary.org/obo/UBERON_0004150,coronary sinus valve +14.3898991,UBERON:0004471,http://purl.obolibrary.org/obo/UBERON_0004471,musculature of pectoral girdle +14.3898991,UBERON:0004779,http://purl.obolibrary.org/obo/UBERON_0004779,respiratory system lamina propria +14.3898991,UBERON:0004812,http://purl.obolibrary.org/obo/UBERON_0004812,male prepuce epithelium +14.3898991,UBERON:0004946,http://purl.obolibrary.org/obo/UBERON_0004946,submucosa of ileum +14.3898991,UBERON:0004993,http://purl.obolibrary.org/obo/UBERON_0004993,mucosa of sigmoid colon +14.3898991,UBERON:0005405,http://purl.obolibrary.org/obo/UBERON_0005405,pararenal fat +14.3898991,UBERON:0005490,http://purl.obolibrary.org/obo/UBERON_0005490,posterior interventricular sulcus +14.3898991,UBERON:0005969,http://purl.obolibrary.org/obo/UBERON_0005969,eye trabecular meshwork +14.3898991,UBERON:0005971,http://purl.obolibrary.org/obo/UBERON_0005971,amniotic fold +14.3898991,UBERON:0006198,http://purl.obolibrary.org/obo/UBERON_0006198,dorsal intercostal artery +14.3898991,UBERON:0007141,http://purl.obolibrary.org/obo/UBERON_0007141,visceral mesothelium +14.3898991,UBERON:0007274,http://purl.obolibrary.org/obo/UBERON_0007274,crista of ampulla of anterior semicircular duct of membranous laybrinth +14.3898991,UBERON:0007373,http://purl.obolibrary.org/obo/UBERON_0007373,inferior surface of tongue +14.3898991,UBERON:0007639,http://purl.obolibrary.org/obo/UBERON_0007639,hippocampus alveus +14.3898991,UBERON:0007640,http://purl.obolibrary.org/obo/UBERON_0007640,hippocampus stratum lacunosum moleculare +14.3898991,UBERON:0007822,http://purl.obolibrary.org/obo/UBERON_0007822,vomeronasal cartilage +14.3898991,UBERON:0008433,http://purl.obolibrary.org/obo/UBERON_0008433,lumbar vertebral arch +14.3898991,UBERON:0009095,http://purl.obolibrary.org/obo/UBERON_0009095,tip of renal papilla +14.3898991,UBERON:0009122,http://purl.obolibrary.org/obo/UBERON_0009122,adenohypophyseal placode +14.3898991,UBERON:0009126,http://purl.obolibrary.org/obo/UBERON_0009126,nodosal placode +14.3898991,UBERON:0009565,http://purl.obolibrary.org/obo/UBERON_0009565,nail of manual digit +14.3898991,UBERON:0009679,http://purl.obolibrary.org/obo/UBERON_0009679,set of lower jaw teeth +14.3898991,UBERON:0009756,http://purl.obolibrary.org/obo/UBERON_0009756,spermaceti organ +14.3898991,UBERON:0009948,http://purl.obolibrary.org/obo/UBERON_0009948,clavicular air sac +14.3898991,UBERON:0010062,http://purl.obolibrary.org/obo/UBERON_0010062,pharyngotympanic tube epithelium +14.3898991,UBERON:0010193,http://purl.obolibrary.org/obo/UBERON_0010193,renal portal vein +14.3898991,UBERON:0011635,http://purl.obolibrary.org/obo/UBERON_0011635,splenial bone +14.3898991,UBERON:0011877,http://purl.obolibrary.org/obo/UBERON_0011877,margin of tongue +14.3898991,UBERON:0012326,http://purl.obolibrary.org/obo/UBERON_0012326,gubernacular bulb +14.3898991,UBERON:0013594,http://purl.obolibrary.org/obo/UBERON_0013594,ectosylvian sulcus +14.3898991,UBERON:0014691,http://purl.obolibrary.org/obo/UBERON_0014691,right gastric vein +14.3898991,UBERON:0015051,http://purl.obolibrary.org/obo/UBERON_0015051,exoccipital endochondral element +14.3898991,UBERON:0015149,http://purl.obolibrary.org/obo/UBERON_0015149,ventral hair +14.3898991,UBERON:0016855,http://purl.obolibrary.org/obo/UBERON_0016855,ventral part of optic cup +14.3898991,UBERON:0018251,http://purl.obolibrary.org/obo/UBERON_0018251,meningeal vein +14.3898991,UBERON:0018410,http://purl.obolibrary.org/obo/UBERON_0018410,lacteal +14.3898991,UBERON:0018584,http://purl.obolibrary.org/obo/UBERON_0018584,secondary canine tooth +14.3898991,UBERON:0022364,http://purl.obolibrary.org/obo/UBERON_0022364,occipital fusiform gyrus +14.3898991,UBERON:0034934,http://purl.obolibrary.org/obo/UBERON_0034934,Weber's gland +14.3898991,UBERON:0034949,http://purl.obolibrary.org/obo/UBERON_0034949,lymphatic valve +14.3898991,UBERON:0035122,http://purl.obolibrary.org/obo/UBERON_0035122,interincisive suture +14.3898991,UBERON:0035150,http://purl.obolibrary.org/obo/UBERON_0035150,superior cerebral vein +14.3898991,UBERON:2001200,http://purl.obolibrary.org/obo/UBERON_2001200,corpuscles of Stannius +14.3898991,UBERON:2005044,http://purl.obolibrary.org/obo/UBERON_2005044,optic artery +14.3898991,UBERON:2005174,http://purl.obolibrary.org/obo/UBERON_2005174,ventral liver lobe +14.3898991,UBERON:3010186,http://purl.obolibrary.org/obo/UBERON_3010186,outer metatarsal tubercle +14.3898991,UBERON:4300090,http://purl.obolibrary.org/obo/UBERON_4300090,X bone +14.3898991,UBERON:4300091,http://purl.obolibrary.org/obo/UBERON_4300091,Y bone +14.4699418,CHEBI:134251,http://purl.obolibrary.org/obo/CHEBI_134251,guaiacols +14.4699418,CHEBI:16411,http://purl.obolibrary.org/obo/CHEBI_16411,indole-3-acetic acid +14.4699418,CHEBI:168396,http://purl.obolibrary.org/obo/CHEBI_168396,mycophenolic acid +14.4699418,CHEBI:16933,http://purl.obolibrary.org/obo/CHEBI_16933,ergosterol +14.4699418,CHEBI:17561,http://purl.obolibrary.org/obo/CHEBI_17561,L-cysteine +14.4699418,CHEBI:17761,http://purl.obolibrary.org/obo/CHEBI_17761,ceramide +14.4699418,CHEBI:20156,http://purl.obolibrary.org/obo/CHEBI_20156,3-oxo-Delta(1) steroid +14.4699418,CHEBI:20984,http://purl.obolibrary.org/obo/CHEBI_20984,D-gluconate adduct +14.4699418,CHEBI:22680,http://purl.obolibrary.org/obo/CHEBI_22680,azide +14.4699418,CHEBI:22888,http://purl.obolibrary.org/obo/CHEBI_22888,biphenyls +14.4699418,CHEBI:24190,http://purl.obolibrary.org/obo/CHEBI_24190,gamma-glutamyl group +14.4699418,CHEBI:24385,http://purl.obolibrary.org/obo/CHEBI_24385,glycoglycerolipid +14.4699418,CHEBI:24410,http://purl.obolibrary.org/obo/CHEBI_24410,glycosylphosphatidylinositol +14.4699418,CHEBI:25214,http://purl.obolibrary.org/obo/CHEBI_25214,metal-sulfur cluster +14.4699418,CHEBI:26333,http://purl.obolibrary.org/obo/CHEBI_26333,prostaglandin +14.4699418,CHEBI:26463,http://purl.obolibrary.org/obo/CHEBI_26463,pyruvate family amino acid +14.4699418,CHEBI:27338,http://purl.obolibrary.org/obo/CHEBI_27338,xylene +14.4699418,CHEBI:27386,http://purl.obolibrary.org/obo/CHEBI_27386,cinnamic acid +14.4699418,CHEBI:28312,http://purl.obolibrary.org/obo/CHEBI_28312,chlorhexidine gluconate +14.4699418,CHEBI:28499,http://purl.obolibrary.org/obo/CHEBI_28499,kaempferol +14.4699418,CHEBI:30408,http://purl.obolibrary.org/obo/CHEBI_30408,iron-sulfur cluster +14.4699418,CHEBI:30805,http://purl.obolibrary.org/obo/CHEBI_30805,dodecanoic acid +14.4699418,CHEBI:31206,http://purl.obolibrary.org/obo/CHEBI_31206,ammonium chloride +14.4699418,CHEBI:32443,http://purl.obolibrary.org/obo/CHEBI_32443,L-cysteinate(2-) +14.4699418,CHEBI:32588,http://purl.obolibrary.org/obo/CHEBI_32588,potassium chloride +14.4699418,CHEBI:32664,http://purl.obolibrary.org/obo/CHEBI_32664,asparagine residue +14.4699418,CHEBI:33327,http://purl.obolibrary.org/obo/CHEBI_33327,silicon oxide +14.4699418,CHEBI:33426,http://purl.obolibrary.org/obo/CHEBI_33426,chlorine oxoacid +14.4699418,CHEBI:33644,http://purl.obolibrary.org/obo/CHEBI_33644,acetylenes +14.4699418,CHEBI:33731,http://purl.obolibrary.org/obo/CHEBI_33731,cluster +14.4699418,CHEBI:33733,http://purl.obolibrary.org/obo/CHEBI_33733,heteronuclear cluster +14.4699418,CHEBI:33804,http://purl.obolibrary.org/obo/CHEBI_33804,gluconates +14.4699418,CHEBI:33989,http://purl.obolibrary.org/obo/CHEBI_33989,alkaline earth hydroxide +14.4699418,CHEBI:35218,http://purl.obolibrary.org/obo/CHEBI_35218,anthocyanin cation +14.4699418,CHEBI:36053,http://purl.obolibrary.org/obo/CHEBI_36053,acaricide drug +14.4699418,CHEBI:36063,http://purl.obolibrary.org/obo/CHEBI_36063,oxytocic +14.4699418,CHEBI:36388,http://purl.obolibrary.org/obo/CHEBI_36388,saturated organic heterocyclic parent +14.4699418,CHEBI:36389,http://purl.obolibrary.org/obo/CHEBI_36389,saturated organic heteromonocyclic parent +14.4699418,CHEBI:38635,http://purl.obolibrary.org/obo/CHEBI_38635,3-methyladenine +14.4699418,CHEBI:40304,http://purl.obolibrary.org/obo/CHEBI_40304,8-hydroxy-2'-deoxyguanosine +14.4699418,CHEBI:40863,http://purl.obolibrary.org/obo/CHEBI_40863,"3,4-dihydroxy-9,10-dioxo-9,10-dihydroanthracene-2-sulfonic acid" +14.4699418,CHEBI:42820,http://purl.obolibrary.org/obo/CHEBI_42820,guanidine +14.4699418,CHEBI:47040,http://purl.obolibrary.org/obo/CHEBI_47040,lipid A +14.4699418,CHEBI:48923,http://purl.obolibrary.org/obo/CHEBI_48923,erythromycin +14.4699418,CHEBI:50141,http://purl.obolibrary.org/obo/CHEBI_50141,bronchoconstrictor agent +14.4699418,CHEBI:51402,http://purl.obolibrary.org/obo/CHEBI_51402,phenylenediamine +14.4699418,CHEBI:51686,http://purl.obolibrary.org/obo/CHEBI_51686,haematoxylin +14.4699418,CHEBI:59770,http://purl.obolibrary.org/obo/CHEBI_59770,cyclic acetal +14.4699418,CHEBI:60783,http://purl.obolibrary.org/obo/CHEBI_60783,nucleoside analogue +14.4699418,CHEBI:6872,http://purl.obolibrary.org/obo/CHEBI_6872,methylene blue +14.4699418,CHEBI:73690,http://purl.obolibrary.org/obo/CHEBI_73690,erythrose 4-phosphate/phosphoenolpyruvate family amino acid +14.4699418,CHEBI:77166,http://purl.obolibrary.org/obo/CHEBI_77166,"3-oxo-Delta(1),Delta(4)-steroid" +14.4699418,CHEBI:84144,http://purl.obolibrary.org/obo/CHEBI_84144,L-phenylalanine derivative +14.4699418,CL:0000454,http://purl.obolibrary.org/obo/CL_0000454,epinephrine secreting cell +14.4699418,CL:0000805,http://purl.obolibrary.org/obo/CL_0000805,immature single positive thymocyte +14.4699418,CL:0000981,http://purl.obolibrary.org/obo/CL_0000981,double negative memory B cell +14.4699418,CL:0002309,http://purl.obolibrary.org/obo/CL_0002309,corticotroph +14.4699418,CL:0002351,http://purl.obolibrary.org/obo/CL_0002351,progenitor cell of endocrine pancreas +14.4699418,CL:1001572,http://purl.obolibrary.org/obo/CL_1001572,colon endothelial cell +14.4699418,DRUGBANK:DB01549,http://purl.obolibrary.org/obo/DRUGBANK_DB01549,none +14.4699418,DRUGBANK:DB01710,http://purl.obolibrary.org/obo/DRUGBANK_DB01710,none +14.4699418,DRUGBANK:DB01995,http://purl.obolibrary.org/obo/DRUGBANK_DB01995,none +14.4699418,DRUGBANK:DB02032,http://purl.obolibrary.org/obo/DRUGBANK_DB02032,none +14.4699418,DRUGBANK:DB02423,http://purl.obolibrary.org/obo/DRUGBANK_DB02423,none +14.4699418,DRUGBANK:DB02460,http://purl.obolibrary.org/obo/DRUGBANK_DB02460,none +14.4699418,DRUGBANK:DB02494,http://purl.obolibrary.org/obo/DRUGBANK_DB02494,none +14.4699418,DRUGBANK:DB02932,http://purl.obolibrary.org/obo/DRUGBANK_DB02932,none +14.4699418,DRUGBANK:DB03032,http://purl.obolibrary.org/obo/DRUGBANK_DB03032,none +14.4699418,DRUGBANK:DB03686,http://purl.obolibrary.org/obo/DRUGBANK_DB03686,none +14.4699418,DRUGBANK:DB03716,http://purl.obolibrary.org/obo/DRUGBANK_DB03716,none +14.4699418,DRUGBANK:DB03926,http://purl.obolibrary.org/obo/DRUGBANK_DB03926,none +14.4699418,DRUGBANK:DB04068,http://purl.obolibrary.org/obo/DRUGBANK_DB04068,none +14.4699418,DRUGBANK:DB04113,http://purl.obolibrary.org/obo/DRUGBANK_DB04113,none +14.4699418,DRUGBANK:DB04303,http://purl.obolibrary.org/obo/DRUGBANK_DB04303,none +14.4699418,DRUGBANK:DB04361,http://purl.obolibrary.org/obo/DRUGBANK_DB04361,none +14.4699418,DRUGBANK:DB04368,http://purl.obolibrary.org/obo/DRUGBANK_DB04368,none +14.4699418,DRUGBANK:DB04605,http://purl.obolibrary.org/obo/DRUGBANK_DB04605,none +14.4699418,DRUGBANK:DB04662,http://purl.obolibrary.org/obo/DRUGBANK_DB04662,none +14.4699418,DRUGBANK:DB05052,http://purl.obolibrary.org/obo/DRUGBANK_DB05052,none +14.4699418,DRUGBANK:DB05060,http://purl.obolibrary.org/obo/DRUGBANK_DB05060,none +14.4699418,DRUGBANK:DB05111,http://purl.obolibrary.org/obo/DRUGBANK_DB05111,none +14.4699418,DRUGBANK:DB05298,http://purl.obolibrary.org/obo/DRUGBANK_DB05298,none +14.4699418,DRUGBANK:DB05320,http://purl.obolibrary.org/obo/DRUGBANK_DB05320,none +14.4699418,DRUGBANK:DB05336,http://purl.obolibrary.org/obo/DRUGBANK_DB05336,none +14.4699418,DRUGBANK:DB05393,http://purl.obolibrary.org/obo/DRUGBANK_DB05393,none +14.4699418,DRUGBANK:DB05460,http://purl.obolibrary.org/obo/DRUGBANK_DB05460,none +14.4699418,DRUGBANK:DB05463,http://purl.obolibrary.org/obo/DRUGBANK_DB05463,none +14.4699418,DRUGBANK:DB05737,http://purl.obolibrary.org/obo/DRUGBANK_DB05737,none +14.4699418,DRUGBANK:DB05899,http://purl.obolibrary.org/obo/DRUGBANK_DB05899,none +14.4699418,DRUGBANK:DB05913,http://purl.obolibrary.org/obo/DRUGBANK_DB05913,none +14.4699418,DRUGBANK:DB06134,http://purl.obolibrary.org/obo/DRUGBANK_DB06134,none +14.4699418,DRUGBANK:DB06314,http://purl.obolibrary.org/obo/DRUGBANK_DB06314,none +14.4699418,DRUGBANK:DB06333,http://purl.obolibrary.org/obo/DRUGBANK_DB06333,none +14.4699418,DRUGBANK:DB06371,http://purl.obolibrary.org/obo/DRUGBANK_DB06371,none +14.4699418,DRUGBANK:DB06467,http://purl.obolibrary.org/obo/DRUGBANK_DB06467,none +14.4699418,DRUGBANK:DB06498,http://purl.obolibrary.org/obo/DRUGBANK_DB06498,none +14.4699418,DRUGBANK:DB06523,http://purl.obolibrary.org/obo/DRUGBANK_DB06523,none +14.4699418,DRUGBANK:DB06525,http://purl.obolibrary.org/obo/DRUGBANK_DB06525,none +14.4699418,DRUGBANK:DB06538,http://purl.obolibrary.org/obo/DRUGBANK_DB06538,none +14.4699418,DRUGBANK:DB06585,http://purl.obolibrary.org/obo/DRUGBANK_DB06585,none +14.4699418,DRUGBANK:DB07394,http://purl.obolibrary.org/obo/DRUGBANK_DB07394,none +14.4699418,DRUGBANK:DB07891,http://purl.obolibrary.org/obo/DRUGBANK_DB07891,none +14.4699418,DRUGBANK:DB08782,http://purl.obolibrary.org/obo/DRUGBANK_DB08782,none +14.4699418,DRUGBANK:DB09175,http://purl.obolibrary.org/obo/DRUGBANK_DB09175,none +14.4699418,DRUGBANK:DB09190,http://purl.obolibrary.org/obo/DRUGBANK_DB09190,none +14.4699418,DRUGBANK:DB09200,http://purl.obolibrary.org/obo/DRUGBANK_DB09200,none +14.4699418,DRUGBANK:DB09247,http://purl.obolibrary.org/obo/DRUGBANK_DB09247,none +14.4699418,DRUGBANK:DB09275,http://purl.obolibrary.org/obo/DRUGBANK_DB09275,none +14.4699418,DRUGBANK:DB09284,http://purl.obolibrary.org/obo/DRUGBANK_DB09284,none +14.4699418,DRUGBANK:DB09332,http://purl.obolibrary.org/obo/DRUGBANK_DB09332,none +14.4699418,DRUGBANK:DB09342,http://purl.obolibrary.org/obo/DRUGBANK_DB09342,none +14.4699418,DRUGBANK:DB09373,http://purl.obolibrary.org/obo/DRUGBANK_DB09373,none +14.4699418,DRUGBANK:DB10803,http://purl.obolibrary.org/obo/DRUGBANK_DB10803,none +14.4699418,DRUGBANK:DB11079,http://purl.obolibrary.org/obo/DRUGBANK_DB11079,none +14.4699418,DRUGBANK:DB11207,http://purl.obolibrary.org/obo/DRUGBANK_DB11207,none +14.4699418,DRUGBANK:DB11332,http://purl.obolibrary.org/obo/DRUGBANK_DB11332,none +14.4699418,DRUGBANK:DB11392,http://purl.obolibrary.org/obo/DRUGBANK_DB11392,none +14.4699418,DRUGBANK:DB11625,http://purl.obolibrary.org/obo/DRUGBANK_DB11625,none +14.4699418,DRUGBANK:DB11687,http://purl.obolibrary.org/obo/DRUGBANK_DB11687,none +14.4699418,DRUGBANK:DB11700,http://purl.obolibrary.org/obo/DRUGBANK_DB11700,none +14.4699418,DRUGBANK:DB11868,http://purl.obolibrary.org/obo/DRUGBANK_DB11868,none +14.4699418,DRUGBANK:DB11925,http://purl.obolibrary.org/obo/DRUGBANK_DB11925,none +14.4699418,DRUGBANK:DB11966,http://purl.obolibrary.org/obo/DRUGBANK_DB11966,none +14.4699418,DRUGBANK:DB11971,http://purl.obolibrary.org/obo/DRUGBANK_DB11971,none +14.4699418,DRUGBANK:DB12035,http://purl.obolibrary.org/obo/DRUGBANK_DB12035,none +14.4699418,DRUGBANK:DB12042,http://purl.obolibrary.org/obo/DRUGBANK_DB12042,none +14.4699418,DRUGBANK:DB12081,http://purl.obolibrary.org/obo/DRUGBANK_DB12081,none +14.4699418,DRUGBANK:DB12100,http://purl.obolibrary.org/obo/DRUGBANK_DB12100,none +14.4699418,DRUGBANK:DB12157,http://purl.obolibrary.org/obo/DRUGBANK_DB12157,none +14.4699418,DRUGBANK:DB12206,http://purl.obolibrary.org/obo/DRUGBANK_DB12206,none +14.4699418,DRUGBANK:DB12279,http://purl.obolibrary.org/obo/DRUGBANK_DB12279,none +14.4699418,DRUGBANK:DB12282,http://purl.obolibrary.org/obo/DRUGBANK_DB12282,none +14.4699418,DRUGBANK:DB12288,http://purl.obolibrary.org/obo/DRUGBANK_DB12288,none +14.4699418,DRUGBANK:DB12304,http://purl.obolibrary.org/obo/DRUGBANK_DB12304,none +14.4699418,DRUGBANK:DB12306,http://purl.obolibrary.org/obo/DRUGBANK_DB12306,none +14.4699418,DRUGBANK:DB12354,http://purl.obolibrary.org/obo/DRUGBANK_DB12354,none +14.4699418,DRUGBANK:DB12386,http://purl.obolibrary.org/obo/DRUGBANK_DB12386,none +14.4699418,DRUGBANK:DB12576,http://purl.obolibrary.org/obo/DRUGBANK_DB12576,none +14.4699418,DRUGBANK:DB12611,http://purl.obolibrary.org/obo/DRUGBANK_DB12611,none +14.4699418,DRUGBANK:DB12619,http://purl.obolibrary.org/obo/DRUGBANK_DB12619,none +14.4699418,DRUGBANK:DB12649,http://purl.obolibrary.org/obo/DRUGBANK_DB12649,none +14.4699418,DRUGBANK:DB12780,http://purl.obolibrary.org/obo/DRUGBANK_DB12780,none +14.4699418,DRUGBANK:DB12823,http://purl.obolibrary.org/obo/DRUGBANK_DB12823,none +14.4699418,DRUGBANK:DB13065,http://purl.obolibrary.org/obo/DRUGBANK_DB13065,none +14.4699418,DRUGBANK:DB13127,http://purl.obolibrary.org/obo/DRUGBANK_DB13127,none +14.4699418,DRUGBANK:DB13252,http://purl.obolibrary.org/obo/DRUGBANK_DB13252,none +14.4699418,DRUGBANK:DB13282,http://purl.obolibrary.org/obo/DRUGBANK_DB13282,none +14.4699418,DRUGBANK:DB13328,http://purl.obolibrary.org/obo/DRUGBANK_DB13328,none +14.4699418,DRUGBANK:DB13419,http://purl.obolibrary.org/obo/DRUGBANK_DB13419,none +14.4699418,DRUGBANK:DB13433,http://purl.obolibrary.org/obo/DRUGBANK_DB13433,none +14.4699418,DRUGBANK:DB13516,http://purl.obolibrary.org/obo/DRUGBANK_DB13516,none +14.4699418,DRUGBANK:DB13681,http://purl.obolibrary.org/obo/DRUGBANK_DB13681,none +14.4699418,DRUGBANK:DB13762,http://purl.obolibrary.org/obo/DRUGBANK_DB13762,none +14.4699418,DRUGBANK:DB13808,http://purl.obolibrary.org/obo/DRUGBANK_DB13808,none +14.4699418,DRUGBANK:DB13849,http://purl.obolibrary.org/obo/DRUGBANK_DB13849,none +14.4699418,DRUGBANK:DB13929,http://purl.obolibrary.org/obo/DRUGBANK_DB13929,none +14.4699418,DRUGBANK:DB14211,http://purl.obolibrary.org/obo/DRUGBANK_DB14211,none +14.4699418,DRUGBANK:DB14270,http://purl.obolibrary.org/obo/DRUGBANK_DB14270,none +14.4699418,DRUGBANK:DB14718,http://purl.obolibrary.org/obo/DRUGBANK_DB14718,none +14.4699418,DRUGBANK:DB14757,http://purl.obolibrary.org/obo/DRUGBANK_DB14757,none +14.4699418,DRUGBANK:DB14760,http://purl.obolibrary.org/obo/DRUGBANK_DB14760,none +14.4699418,DRUGBANK:DB14767,http://purl.obolibrary.org/obo/DRUGBANK_DB14767,none +14.4699418,DRUGBANK:DB14776,http://purl.obolibrary.org/obo/DRUGBANK_DB14776,none +14.4699418,DRUGBANK:DB14888,http://purl.obolibrary.org/obo/DRUGBANK_DB14888,none +14.4699418,DRUGBANK:DB14959,http://purl.obolibrary.org/obo/DRUGBANK_DB14959,none +14.4699418,DRUGBANK:DB14962,http://purl.obolibrary.org/obo/DRUGBANK_DB14962,none +14.4699418,DRUGBANK:DB14974,http://purl.obolibrary.org/obo/DRUGBANK_DB14974,none +14.4699418,DRUGBANK:DB14988,http://purl.obolibrary.org/obo/DRUGBANK_DB14988,none +14.4699418,DRUGBANK:DB14991,http://purl.obolibrary.org/obo/DRUGBANK_DB14991,none +14.4699418,DRUGBANK:DB15090,http://purl.obolibrary.org/obo/DRUGBANK_DB15090,none +14.4699418,DRUGBANK:DB15135,http://purl.obolibrary.org/obo/DRUGBANK_DB15135,none +14.4699418,DRUGBANK:DB15202,http://purl.obolibrary.org/obo/DRUGBANK_DB15202,none +14.4699418,DRUGBANK:DB15227,http://purl.obolibrary.org/obo/DRUGBANK_DB15227,none +14.4699418,DRUGBANK:DB15250,http://purl.obolibrary.org/obo/DRUGBANK_DB15250,none +14.4699418,DRUGBANK:DB15252,http://purl.obolibrary.org/obo/DRUGBANK_DB15252,none +14.4699418,DRUGBANK:DB15598,http://purl.obolibrary.org/obo/DRUGBANK_DB15598,none +14.4699418,DRUGBANK:DB15642,http://purl.obolibrary.org/obo/DRUGBANK_DB15642,none +14.4699418,DRUGBANK:DB15803,http://purl.obolibrary.org/obo/DRUGBANK_DB15803,none +14.4699418,DRUGBANK:DB15922,http://purl.obolibrary.org/obo/DRUGBANK_DB15922,none +14.4699418,DRUGBANK:DB16089,http://purl.obolibrary.org/obo/DRUGBANK_DB16089,none +14.4699418,DRUGBANK:DB16181,http://purl.obolibrary.org/obo/DRUGBANK_DB16181,none +14.4699418,DRUGBANK:DB16291,http://purl.obolibrary.org/obo/DRUGBANK_DB16291,none +14.4699418,GO:0001541,http://purl.obolibrary.org/obo/GO_0001541,ovarian follicle development +14.4699418,GO:0001651,http://purl.obolibrary.org/obo/GO_0001651,dense fibrillar component +14.4699418,GO:0001973,http://purl.obolibrary.org/obo/GO_0001973,G protein-coupled adenosine receptor signaling pathway +14.4699418,GO:0002069,http://purl.obolibrary.org/obo/GO_0002069,columnar/cuboidal epithelial cell maturation +14.4699418,GO:0002185,http://purl.obolibrary.org/obo/GO_0002185,creatine kinase complex +14.4699418,GO:0002320,http://purl.obolibrary.org/obo/GO_0002320,lymphoid progenitor cell differentiation +14.4699418,GO:0002328,http://purl.obolibrary.org/obo/GO_0002328,pro-B cell differentiation +14.4699418,GO:0002631,http://purl.obolibrary.org/obo/GO_0002631,regulation of granuloma formation +14.4699418,GO:0003091,http://purl.obolibrary.org/obo/GO_0003091,renal water homeostasis +14.4699418,GO:0003095,http://purl.obolibrary.org/obo/GO_0003095,pressure natriuresis +14.4699418,GO:0003160,http://purl.obolibrary.org/obo/GO_0003160,endocardium morphogenesis +14.4699418,GO:0003334,http://purl.obolibrary.org/obo/GO_0003334,keratinocyte development +14.4699418,GO:0003826,http://purl.obolibrary.org/obo/GO_0003826,none +14.4699418,GO:0003853,http://purl.obolibrary.org/obo/GO_0003853,2-methylacyl-CoA dehydrogenase activity +14.4699418,GO:0004439,http://purl.obolibrary.org/obo/GO_0004439,"phosphatidylinositol-4,5-bisphosphate 5-phosphatase activity" +14.4699418,GO:0004461,http://purl.obolibrary.org/obo/GO_0004461,lactose synthase activity +14.4699418,GO:0004475,http://purl.obolibrary.org/obo/GO_0004475,mannose-1-phosphate guanylyltransferase activity +14.4699418,GO:0004504,http://purl.obolibrary.org/obo/GO_0004504,peptidylglycine monooxygenase activity +14.4699418,GO:0004746,http://purl.obolibrary.org/obo/GO_0004746,riboflavin synthase activity +14.4699418,GO:0004790,http://purl.obolibrary.org/obo/GO_0004790,thioether S-methyltransferase activity +14.4699418,GO:0005310,http://purl.obolibrary.org/obo/GO_0005310,dicarboxylic acid transmembrane transporter activity +14.4699418,GO:0005671,http://purl.obolibrary.org/obo/GO_0005671,none +14.4699418,GO:0006285,http://purl.obolibrary.org/obo/GO_0006285,"base-excision repair, AP site formation" +14.4699418,GO:0006366,http://purl.obolibrary.org/obo/GO_0006366,transcription by RNA polymerase II +14.4699418,GO:0006785,http://purl.obolibrary.org/obo/GO_0006785,heme B biosynthetic process +14.4699418,GO:0006867,http://purl.obolibrary.org/obo/GO_0006867,asparagine transport +14.4699418,GO:0007077,http://purl.obolibrary.org/obo/GO_0007077,mitotic nuclear membrane disassembly +14.4699418,GO:0007133,http://purl.obolibrary.org/obo/GO_0007133,meiotic anaphase I +14.4699418,GO:0007212,http://purl.obolibrary.org/obo/GO_0007212,dopamine receptor signaling pathway +14.4699418,GO:0008003,http://purl.obolibrary.org/obo/GO_0008003,none +14.4699418,GO:0008101,http://purl.obolibrary.org/obo/GO_0008101,none +14.4699418,GO:0008153,http://purl.obolibrary.org/obo/GO_0008153,para-aminobenzoic acid biosynthetic process +14.4699418,GO:0008251,http://purl.obolibrary.org/obo/GO_0008251,tRNA-specific adenosine deaminase activity +14.4699418,GO:0008275,http://purl.obolibrary.org/obo/GO_0008275,gamma-tubulin small complex +14.4699418,GO:0008411,http://purl.obolibrary.org/obo/GO_0008411,4-hydroxybutyrate CoA-transferase activity +14.4699418,GO:0008414,http://purl.obolibrary.org/obo/GO_0008414,CDP-alcohol phosphotransferase activity +14.4699418,GO:0008419,http://purl.obolibrary.org/obo/GO_0008419,RNA lariat debranching enzyme activity +14.4699418,GO:0008670,http://purl.obolibrary.org/obo/GO_0008670,"2,4-dienoyl-CoA reductase (NADPH) activity" +14.4699418,GO:0008993,http://purl.obolibrary.org/obo/GO_0008993,rhamnulokinase activity +14.4699418,GO:0009155,http://purl.obolibrary.org/obo/GO_0009155,purine deoxyribonucleotide catabolic process +14.4699418,GO:0009170,http://purl.obolibrary.org/obo/GO_0009170,purine deoxyribonucleoside monophosphate metabolic process +14.4699418,GO:0009264,http://purl.obolibrary.org/obo/GO_0009264,deoxyribonucleotide catabolic process +14.4699418,GO:0009756,http://purl.obolibrary.org/obo/GO_0009756,carbohydrate mediated signaling +14.4699418,GO:0009963,http://purl.obolibrary.org/obo/GO_0009963,positive regulation of flavonoid biosynthetic process +14.4699418,GO:0010017,http://purl.obolibrary.org/obo/GO_0010017,red or far-red light signaling pathway +14.4699418,GO:0010466,http://purl.obolibrary.org/obo/GO_0010466,negative regulation of peptidase activity +14.4699418,GO:0010894,http://purl.obolibrary.org/obo/GO_0010894,negative regulation of steroid biosynthetic process +14.4699418,GO:0015271,http://purl.obolibrary.org/obo/GO_0015271,outward rectifier potassium channel activity +14.4699418,GO:0015277,http://purl.obolibrary.org/obo/GO_0015277,kainate selective glutamate receptor activity +14.4699418,GO:0015713,http://purl.obolibrary.org/obo/GO_0015713,phosphoglycerate transmembrane transport +14.4699418,GO:0015717,http://purl.obolibrary.org/obo/GO_0015717,triose phosphate transport +14.4699418,GO:0015764,http://purl.obolibrary.org/obo/GO_0015764,N-acetylglucosamine transport +14.4699418,GO:0015786,http://purl.obolibrary.org/obo/GO_0015786,UDP-glucose transmembrane transport +14.4699418,GO:0016250,http://purl.obolibrary.org/obo/GO_0016250,N-sulfoglucosamine sulfohydrolase activity +14.4699418,GO:0016404,http://purl.obolibrary.org/obo/GO_0016404,15-hydroxyprostaglandin dehydrogenase (NAD+) activity +14.4699418,GO:0016461,http://purl.obolibrary.org/obo/GO_0016461,unconventional myosin complex +14.4699418,GO:0016753,http://purl.obolibrary.org/obo/GO_0016753,O-sinapoyltransferase activity +14.4699418,GO:0016826,http://purl.obolibrary.org/obo/GO_0016826,"hydrolase activity, acting on acid sulfur-nitrogen bonds" +14.4699418,GO:0017095,http://purl.obolibrary.org/obo/GO_0017095,heparan sulfate 6-O-sulfotransferase activity +14.4699418,GO:0018525,http://purl.obolibrary.org/obo/GO_0018525,4-hydroxybenzoyl-CoA reductase activity +14.4699418,GO:0018639,http://purl.obolibrary.org/obo/GO_0018639,xylene monooxygenase activity +14.4699418,GO:0018739,http://purl.obolibrary.org/obo/GO_0018739,4-hydroxybenzoyl-CoA thioesterase activity +14.4699418,GO:0018917,http://purl.obolibrary.org/obo/GO_0018917,none +14.4699418,GO:0018982,http://purl.obolibrary.org/obo/GO_0018982,vanillin metabolic process +14.4699418,GO:0018992,http://purl.obolibrary.org/obo/GO_0018992,germ-line sex determination +14.4699418,GO:0019187,http://purl.obolibrary.org/obo/GO_0019187,"beta-1,4-mannosyltransferase activity" +14.4699418,GO:0019662,http://purl.obolibrary.org/obo/GO_0019662,non-glycolytic fermentation +14.4699418,GO:0020009,http://purl.obolibrary.org/obo/GO_0020009,microneme +14.4699418,GO:0030239,http://purl.obolibrary.org/obo/GO_0030239,myofibril assembly +14.4699418,GO:0030270,http://purl.obolibrary.org/obo/GO_0030270,formylmethanofuran-tetrahydromethanopterin N-formyltransferase activity +14.4699418,GO:0030915,http://purl.obolibrary.org/obo/GO_0030915,Smc5-Smc6 complex +14.4699418,GO:0030981,http://purl.obolibrary.org/obo/GO_0030981,cortical microtubule cytoskeleton +14.4699418,GO:0031057,http://purl.obolibrary.org/obo/GO_0031057,negative regulation of histone modification +14.4699418,GO:0031063,http://purl.obolibrary.org/obo/GO_0031063,regulation of histone deacetylation +14.4699418,GO:0031278,http://purl.obolibrary.org/obo/GO_0031278,"alpha-1,2-galactosyltransferase activity" +14.4699418,GO:0031299,http://purl.obolibrary.org/obo/GO_0031299,taurine-pyruvate aminotransferase activity +14.4699418,GO:0031532,http://purl.obolibrary.org/obo/GO_0031532,actin cytoskeleton reorganization +14.4699418,GO:0032580,http://purl.obolibrary.org/obo/GO_0032580,Golgi cisterna membrane +14.4699418,GO:0032585,http://purl.obolibrary.org/obo/GO_0032585,multivesicular body membrane +14.4699418,GO:0032674,http://purl.obolibrary.org/obo/GO_0032674,regulation of interleukin-5 production +14.4699418,GO:0032807,http://purl.obolibrary.org/obo/GO_0032807,DNA ligase IV complex +14.4699418,GO:0032933,http://purl.obolibrary.org/obo/GO_0032933,SREBP signaling pathway +14.4699418,GO:0033052,http://purl.obolibrary.org/obo/GO_0033052,cyanoamino acid metabolic process +14.4699418,GO:0033195,http://purl.obolibrary.org/obo/GO_0033195,response to alkyl hydroperoxide +14.4699418,GO:0033241,http://purl.obolibrary.org/obo/GO_0033241,regulation of cellular amine catabolic process +14.4699418,GO:0033765,http://purl.obolibrary.org/obo/GO_0033765,"steroid dehydrogenase activity, acting on the CH-CH group of donors" +14.4699418,GO:0034079,http://purl.obolibrary.org/obo/GO_0034079,butanediol biosynthetic process +14.4699418,GO:0034081,http://purl.obolibrary.org/obo/GO_0034081,polyketide synthase complex +14.4699418,GO:0034286,http://purl.obolibrary.org/obo/GO_0034286,response to maltose +14.4699418,GO:0034313,http://purl.obolibrary.org/obo/GO_0034313,diol catabolic process +14.4699418,GO:0034753,http://purl.obolibrary.org/obo/GO_0034753,nuclear aryl hydrocarbon receptor complex +14.4699418,GO:0034774,http://purl.obolibrary.org/obo/GO_0034774,secretory granule lumen +14.4699418,GO:0035641,http://purl.obolibrary.org/obo/GO_0035641,locomotory exploration behavior +14.4699418,GO:0035927,http://purl.obolibrary.org/obo/GO_0035927,RNA import into mitochondrion +14.4699418,GO:0036315,http://purl.obolibrary.org/obo/GO_0036315,cellular response to sterol +14.4699418,GO:0036369,http://purl.obolibrary.org/obo/GO_0036369,transcription factor catabolic process +14.4699418,GO:0042071,http://purl.obolibrary.org/obo/GO_0042071,leucokinin receptor activity +14.4699418,GO:0042216,http://purl.obolibrary.org/obo/GO_0042216,phenanthrene catabolic process +14.4699418,GO:0042267,http://purl.obolibrary.org/obo/GO_0042267,natural killer cell mediated cytotoxicity +14.4699418,GO:0042350,http://purl.obolibrary.org/obo/GO_0042350,GDP-L-fucose biosynthetic process +14.4699418,GO:0042582,http://purl.obolibrary.org/obo/GO_0042582,azurophil granule +14.4699418,GO:0042846,http://purl.obolibrary.org/obo/GO_0042846,glycol catabolic process +14.4699418,GO:0043587,http://purl.obolibrary.org/obo/GO_0043587,tongue morphogenesis +14.4699418,GO:0043751,http://purl.obolibrary.org/obo/GO_0043751,polyphosphate:AMP phosphotransferase activity +14.4699418,GO:0043758,http://purl.obolibrary.org/obo/GO_0043758,acetate-CoA ligase (ADP-forming) activity +14.4699418,GO:0043936,http://purl.obolibrary.org/obo/GO_0043936,asexual sporulation resulting in formation of a cellular spore +14.4699418,GO:0044230,http://purl.obolibrary.org/obo/GO_0044230,host cell envelope +14.4699418,GO:0044823,http://purl.obolibrary.org/obo/GO_0044823,retroviral integrase activity +14.4699418,GO:0045007,http://purl.obolibrary.org/obo/GO_0045007,depurination +14.4699418,GO:0045672,http://purl.obolibrary.org/obo/GO_0045672,positive regulation of osteoclast differentiation +14.4699418,GO:0045779,http://purl.obolibrary.org/obo/GO_0045779,negative regulation of bone resorption +14.4699418,GO:0046106,http://purl.obolibrary.org/obo/GO_0046106,thymine biosynthetic process +14.4699418,GO:0046296,http://purl.obolibrary.org/obo/GO_0046296,glycolate catabolic process +14.4699418,GO:0046368,http://purl.obolibrary.org/obo/GO_0046368,GDP-L-fucose metabolic process +14.4699418,GO:0046386,http://purl.obolibrary.org/obo/GO_0046386,deoxyribose phosphate catabolic process +14.4699418,GO:0046480,http://purl.obolibrary.org/obo/GO_0046480,galactolipid galactosyltransferase activity +14.4699418,GO:0046492,http://purl.obolibrary.org/obo/GO_0046492,heme B metabolic process +14.4699418,GO:0046718,http://purl.obolibrary.org/obo/GO_0046718,viral entry into host cell +14.4699418,GO:0046818,http://purl.obolibrary.org/obo/GO_0046818,dense nuclear body +14.4699418,GO:0046836,http://purl.obolibrary.org/obo/GO_0046836,glycolipid transport +14.4699418,GO:0046909,http://purl.obolibrary.org/obo/GO_0046909,none +14.4699418,GO:0046956,http://purl.obolibrary.org/obo/GO_0046956,positive phototaxis +14.4699418,GO:0046961,http://purl.obolibrary.org/obo/GO_0046961,"proton-transporting ATPase activity, rotational mechanism" +14.4699418,GO:0046997,http://purl.obolibrary.org/obo/GO_0046997,"oxidoreductase activity, acting on the CH-NH group of donors, flavin as acceptor" +14.4699418,GO:0047237,http://purl.obolibrary.org/obo/GO_0047237,glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase activity +14.4699418,GO:0047300,http://purl.obolibrary.org/obo/GO_0047300,pyridoxamine-pyruvate transaminase activity +14.4699418,GO:0047390,http://purl.obolibrary.org/obo/GO_0047390,glycerophosphocholine cholinephosphodiesterase activity +14.4699418,GO:0047496,http://purl.obolibrary.org/obo/GO_0047496,vesicle transport along microtubule +14.4699418,GO:0047572,http://purl.obolibrary.org/obo/GO_0047572,3-phosphoglycerate phosphatase activity +14.4699418,GO:0047658,http://purl.obolibrary.org/obo/GO_0047658,alpha-amino-acid esterase activity +14.4699418,GO:0048179,http://purl.obolibrary.org/obo/GO_0048179,activin receptor complex +14.4699418,GO:0048188,http://purl.obolibrary.org/obo/GO_0048188,Set1C/COMPASS complex +14.4699418,GO:0048217,http://purl.obolibrary.org/obo/GO_0048217,pectic matrix +14.4699418,GO:0048483,http://purl.obolibrary.org/obo/GO_0048483,autonomic nervous system development +14.4699418,GO:0048527,http://purl.obolibrary.org/obo/GO_0048527,lateral root development +14.4699418,GO:0048866,http://purl.obolibrary.org/obo/GO_0048866,stem cell fate specification +14.4699418,GO:0050044,http://purl.obolibrary.org/obo/GO_0050044,galactose-6-phosphate isomerase activity +14.4699418,GO:0050394,http://purl.obolibrary.org/obo/GO_0050394,viomycin kinase activity +14.4699418,GO:0050521,http://purl.obolibrary.org/obo/GO_0050521,"alpha-glucan, water dikinase activity" +14.4699418,GO:0050687,http://purl.obolibrary.org/obo/GO_0050687,negative regulation of defense response to virus +14.4699418,GO:0050766,http://purl.obolibrary.org/obo/GO_0050766,positive regulation of phagocytosis +14.4699418,GO:0050891,http://purl.obolibrary.org/obo/GO_0050891,multicellular organismal water homeostasis +14.4699418,GO:0051148,http://purl.obolibrary.org/obo/GO_0051148,negative regulation of muscle cell differentiation +14.4699418,GO:0051211,http://purl.obolibrary.org/obo/GO_0051211,anisotropic cell growth +14.4699418,GO:0051326,http://purl.obolibrary.org/obo/GO_0051326,telophase +14.4699418,GO:0051354,http://purl.obolibrary.org/obo/GO_0051354,negative regulation of oxidoreductase activity +14.4699418,GO:0051615,http://purl.obolibrary.org/obo/GO_0051615,histamine uptake +14.4699418,GO:0052128,http://purl.obolibrary.org/obo/GO_0052128,positive energy taxis +14.4699418,GO:0060428,http://purl.obolibrary.org/obo/GO_0060428,lung epithelium development +14.4699418,GO:0060836,http://purl.obolibrary.org/obo/GO_0060836,lymphatic endothelial cell differentiation +14.4699418,GO:0060998,http://purl.obolibrary.org/obo/GO_0060998,regulation of dendritic spine development +14.4699418,GO:0070276,http://purl.obolibrary.org/obo/GO_0070276,halogen metabolic process +14.4699418,GO:0070417,http://purl.obolibrary.org/obo/GO_0070417,cellular response to cold +14.4699418,GO:0070704,http://purl.obolibrary.org/obo/GO_0070704,sterol desaturase activity +14.4699418,GO:0070814,http://purl.obolibrary.org/obo/GO_0070814,hydrogen sulfide biosynthetic process +14.4699418,GO:0070972,http://purl.obolibrary.org/obo/GO_0070972,protein localization to endoplasmic reticulum +14.4699418,GO:0071218,http://purl.obolibrary.org/obo/GO_0071218,cellular response to misfolded protein +14.4699418,GO:0071290,http://purl.obolibrary.org/obo/GO_0071290,cellular response to platinum ion +14.4699418,GO:0071359,http://purl.obolibrary.org/obo/GO_0071359,cellular response to dsRNA +14.4699418,GO:0071489,http://purl.obolibrary.org/obo/GO_0071489,cellular response to red or far red light +14.4699418,GO:0071501,http://purl.obolibrary.org/obo/GO_0071501,cellular response to sterol depletion +14.4699418,GO:0072006,http://purl.obolibrary.org/obo/GO_0072006,nephron development +14.4699418,GO:0072566,http://purl.obolibrary.org/obo/GO_0072566,chemokine (C-X-C motif) ligand 1 production +14.4699418,GO:0072735,http://purl.obolibrary.org/obo/GO_0072735,response to tert-butyl hydroperoxide +14.4699418,GO:0090273,http://purl.obolibrary.org/obo/GO_0090273,regulation of somatostatin secretion +14.4699418,GO:0090322,http://purl.obolibrary.org/obo/GO_0090322,regulation of superoxide metabolic process +14.4699418,GO:0090510,http://purl.obolibrary.org/obo/GO_0090510,anticlinal cell division +14.4699418,GO:0090658,http://purl.obolibrary.org/obo/GO_0090658,cone matrix sheath +14.4699418,GO:0097021,http://purl.obolibrary.org/obo/GO_0097021,lymphocyte migration into lymphoid organs +14.4699418,GO:0097257,http://purl.obolibrary.org/obo/GO_0097257,leukotriene B4 12-hydroxy dehydrogenase activity +14.4699418,GO:0097334,http://purl.obolibrary.org/obo/GO_0097334,response to perphenazine +14.4699418,GO:0097512,http://purl.obolibrary.org/obo/GO_0097512,cardiac myofibril +14.4699418,GO:0097691,http://purl.obolibrary.org/obo/GO_0097691,bacterial extracellular vesicle +14.4699418,GO:0099518,http://purl.obolibrary.org/obo/GO_0099518,vesicle cytoskeletal trafficking +14.4699418,GO:0106068,http://purl.obolibrary.org/obo/GO_0106068,SUMO ligase complex +14.4699418,GO:1900057,http://purl.obolibrary.org/obo/GO_1900057,positive regulation of leaf senescence +14.4699418,GO:1900081,http://purl.obolibrary.org/obo/GO_1900081,regulation of arginine catabolic process +14.4699418,GO:1900991,http://purl.obolibrary.org/obo/GO_1900991,scopolamine biosynthetic process +14.4699418,GO:1901085,http://purl.obolibrary.org/obo/GO_1901085,pyrrolizidine alkaloid biosynthetic process +14.4699418,GO:1901088,http://purl.obolibrary.org/obo/GO_1901088,benzylpenicillin biosynthetic process +14.4699418,GO:1901367,http://purl.obolibrary.org/obo/GO_1901367,response to L-cysteine +14.4699418,GO:1901501,http://purl.obolibrary.org/obo/GO_1901501,response to xylene +14.4699418,GO:1901642,http://purl.obolibrary.org/obo/GO_1901642,nucleoside transmembrane transport +14.4699418,GO:1901730,http://purl.obolibrary.org/obo/GO_1901730,monensin A biosynthetic process +14.4699418,GO:1901806,http://purl.obolibrary.org/obo/GO_1901806,beta-glucoside biosynthetic process +14.4699418,GO:1902711,http://purl.obolibrary.org/obo/GO_1902711,GABA-A receptor complex +14.4699418,GO:1902926,http://purl.obolibrary.org/obo/GO_1902926,inulin metabolic process +14.4699418,GO:1903165,http://purl.obolibrary.org/obo/GO_1903165,response to polycyclic arene +14.4699418,GO:1903185,http://purl.obolibrary.org/obo/GO_1903185,L-dopa biosynthetic process +14.4699418,GO:1903449,http://purl.obolibrary.org/obo/GO_1903449,"androst-4-ene-3,17-dione biosynthetic process" +14.4699418,GO:1903541,http://purl.obolibrary.org/obo/GO_1903541,regulation of exosomal secretion +14.4699418,GO:1903935,http://purl.obolibrary.org/obo/GO_1903935,response to sodium arsenite +14.4699418,GO:1904177,http://purl.obolibrary.org/obo/GO_1904177,regulation of adipose tissue development +14.4699418,GO:1904610,http://purl.obolibrary.org/obo/GO_1904610,"response to 3,3',4,4',5-pentachlorobiphenyl" +14.4699418,GO:1904681,http://purl.obolibrary.org/obo/GO_1904681,response to 3-methylcholanthrene +14.4699418,GO:1904742,http://purl.obolibrary.org/obo/GO_1904742,regulation of telomeric DNA binding +14.4699418,GO:1904948,http://purl.obolibrary.org/obo/GO_1904948,midbrain dopaminergic neuron differentiation +14.4699418,GO:2000001,http://purl.obolibrary.org/obo/GO_2000001,regulation of DNA damage checkpoint +14.4699418,GO:2000069,http://purl.obolibrary.org/obo/GO_2000069,regulation of post-embryonic root development +14.4699418,GO:2000177,http://purl.obolibrary.org/obo/GO_2000177,regulation of neural precursor cell proliferation +14.4699418,GO:2000482,http://purl.obolibrary.org/obo/GO_2000482,none +14.4699418,GO:2001179,http://purl.obolibrary.org/obo/GO_2001179,none +14.4699418,HP:0000144,http://purl.obolibrary.org/obo/HP_0000144,Decreased fertility +14.4699418,HP:0000168,http://purl.obolibrary.org/obo/HP_0000168,Abnormality of the gingiva +14.4699418,HP:0000211,http://purl.obolibrary.org/obo/HP_0000211,Trismus +14.4699418,HP:0002180,http://purl.obolibrary.org/obo/HP_0002180,Neurodegeneration +14.4699418,HP:0002970,http://purl.obolibrary.org/obo/HP_0002970,Genu varum +14.4699418,HP:0002979,http://purl.obolibrary.org/obo/HP_0002979,Bowing of the legs +14.4699418,HP:0002981,http://purl.obolibrary.org/obo/HP_0002981,Abnormality of the calf +14.4699418,MONDO:0000233,http://purl.obolibrary.org/obo/MONDO_0000233,Japanese spotted fever +14.4699418,MONDO:0000321,http://purl.obolibrary.org/obo/MONDO_0000321,typhoidal tularemia +14.4699418,MONDO:0000343,http://purl.obolibrary.org/obo/MONDO_0000343,Barmah forest virus disease +14.4699418,MONDO:0000488,http://purl.obolibrary.org/obo/MONDO_0000488,periampullary adenoma +14.4699418,MONDO:0000645,http://purl.obolibrary.org/obo/MONDO_0000645,fallopian tube benign neoplasm +14.4699418,MONDO:0000724,http://purl.obolibrary.org/obo/MONDO_0000724,specific language impairment +14.4699418,MONDO:0000955,http://purl.obolibrary.org/obo/MONDO_0000955,ileum cancer +14.4699418,MONDO:0000970,http://purl.obolibrary.org/obo/MONDO_0000970,breast lipoma +14.4699418,MONDO:0001811,http://purl.obolibrary.org/obo/MONDO_0001811,tetanic cataract +14.4699418,MONDO:0001912,http://purl.obolibrary.org/obo/MONDO_0001912,acute frontal sinusitis +14.4699418,MONDO:0001945,http://purl.obolibrary.org/obo/MONDO_0001945,postencephalitic Parkinson disease +14.4699418,MONDO:0002062,http://purl.obolibrary.org/obo/MONDO_0002062,breast myofibroblastoma +14.4699418,MONDO:0002739,http://purl.obolibrary.org/obo/MONDO_0002739,extrahepatic bile duct mucinous adenocarcinoma +14.4699418,MONDO:0003069,http://purl.obolibrary.org/obo/MONDO_0003069,suppurative lymphadenitis +14.4699418,MONDO:0003136,http://purl.obolibrary.org/obo/MONDO_0003136,anti-basement membrane glomerulonephritis +14.4699418,MONDO:0003296,http://purl.obolibrary.org/obo/MONDO_0003296,cellular leiomyoma +14.4699418,MONDO:0003347,http://purl.obolibrary.org/obo/MONDO_0003347,inflammatory leiomyosarcoma +14.4699418,MONDO:0003390,http://purl.obolibrary.org/obo/MONDO_0003390,glycogen-rich clear cell breast carcinoma +14.4699418,MONDO:0003417,http://purl.obolibrary.org/obo/MONDO_0003417,internuclear ophthalmoplegia +14.4699418,MONDO:0003433,http://purl.obolibrary.org/obo/MONDO_0003433,water-clear cell adenoma +14.4699418,MONDO:0003594,http://purl.obolibrary.org/obo/MONDO_0003594,mixed liposarcoma +14.4699418,MONDO:0003774,http://purl.obolibrary.org/obo/MONDO_0003774,cerebral convexity meningioma +14.4699418,MONDO:0003932,http://purl.obolibrary.org/obo/MONDO_0003932,childhood optic nerve glioma +14.4699418,MONDO:0003967,http://purl.obolibrary.org/obo/MONDO_0003967,synchronous multifocal osteogenic sarcoma +14.4699418,MONDO:0003983,http://purl.obolibrary.org/obo/MONDO_0003983,synchronous bilateral breast carcinoma +14.4699418,MONDO:0003994,http://purl.obolibrary.org/obo/MONDO_0003994,botryoid-type embryonal rhabdomyosarcoma of the vagina +14.4699418,MONDO:0004170,http://purl.obolibrary.org/obo/MONDO_0004170,nodular episcleritis +14.4699418,MONDO:0004426,http://purl.obolibrary.org/obo/MONDO_0004426,frontal convexity meningioma +14.4699418,MONDO:0004510,http://purl.obolibrary.org/obo/MONDO_0004510,inflammatory liposarcoma +14.4699418,MONDO:0004744,http://purl.obolibrary.org/obo/MONDO_0004744,borderline glaucoma +14.4699418,MONDO:0005261,http://purl.obolibrary.org/obo/MONDO_0005261,none +14.4699418,MONDO:0005320,http://purl.obolibrary.org/obo/MONDO_0005320,tibia fracture +14.4699418,MONDO:0005356,http://purl.obolibrary.org/obo/MONDO_0005356,coronary vasospasm +14.4699418,MONDO:0005396,http://purl.obolibrary.org/obo/MONDO_0005396,thoracic aortic aneurysm +14.4699418,MONDO:0005448,http://purl.obolibrary.org/obo/MONDO_0005448,hepatitis C induced liver cirrhosis +14.4699418,MONDO:0005630,http://purl.obolibrary.org/obo/MONDO_0005630,actinobacillosis +14.4699418,MONDO:0006119,http://purl.obolibrary.org/obo/MONDO_0006119,breast mucosa-associated lymphoid tissue lymphoma +14.4699418,MONDO:0006224,http://purl.obolibrary.org/obo/MONDO_0006224,gastric hamartomatous polyp +14.4699418,MONDO:0006251,http://purl.obolibrary.org/obo/MONDO_0006251,inclusion body fibromatosis +14.4699418,MONDO:0006336,http://purl.obolibrary.org/obo/MONDO_0006336,ovarian endometrioid adenocarcinoma with squamous differentiation +14.4699418,MONDO:0006387,http://purl.obolibrary.org/obo/MONDO_0006387,primary pulmonary diffuse large B-cell lymphoma +14.4699418,MONDO:0006636,http://purl.obolibrary.org/obo/MONDO_0006636,Actinobacillus infectious disease +14.4699418,MONDO:0006992,http://purl.obolibrary.org/obo/MONDO_0006992,syphilitic aortitis +14.4699418,MONDO:0007101,http://purl.obolibrary.org/obo/MONDO_0007101,familial primary localized cutaneous amyloidosis +14.4699418,MONDO:0007158,http://purl.obolibrary.org/obo/MONDO_0007158,arthrogryposis- oculomotor limitation-electroretinal anomalies syndrome +14.4699418,MONDO:0007238,http://purl.obolibrary.org/obo/MONDO_0007238,amastia +14.4699418,MONDO:0007359,http://purl.obolibrary.org/obo/MONDO_0007359,commissural lip pits +14.4699418,MONDO:0007733,http://purl.obolibrary.org/obo/MONDO_0007733,holoprosencephaly 3 +14.4699418,MONDO:0007780,http://purl.obolibrary.org/obo/MONDO_0007780,"hypertelorism, Teebi type" +14.4699418,MONDO:0007854,http://purl.obolibrary.org/obo/MONDO_0007854,keratolytic winter erythema +14.4699418,MONDO:0007932,http://purl.obolibrary.org/obo/MONDO_0007932,age related macular degeneration 2 +14.4699418,MONDO:0008205,http://purl.obolibrary.org/obo/MONDO_0008205,patella aplasia/hypoplasia +14.4699418,MONDO:0008404,http://purl.obolibrary.org/obo/MONDO_0008404,scalp-ear-nipple syndrome +14.4699418,MONDO:0008477,http://purl.obolibrary.org/obo/MONDO_0008477,"spondylometaphyseal dysplasia, Kozlowski type" +14.4699418,MONDO:0008686,http://purl.obolibrary.org/obo/MONDO_0008686,isolated familial woolly hair disorder +14.4699418,MONDO:0009121,http://purl.obolibrary.org/obo/MONDO_0009121,von Voss-Cherstvoy syndrome +14.4699418,MONDO:0009278,http://purl.obolibrary.org/obo/MONDO_0009278,hyperinsulinism due to short chain 3-hydroxylacyl-CoA dehydrogenase deficiency +14.4699418,MONDO:0010164,http://purl.obolibrary.org/obo/MONDO_0010164,"phocomelia, Schinzel type" +14.4699418,MONDO:0010306,http://purl.obolibrary.org/obo/MONDO_0010306,"X-linked intellectual disability, Cabezas type" +14.4699418,MONDO:0010818,http://purl.obolibrary.org/obo/MONDO_0010818,retinitis pigmentosa 12 +14.4699418,MONDO:0011082,http://purl.obolibrary.org/obo/MONDO_0011082,oculoauriculofrontonasal syndrome +14.4699418,MONDO:0011186,http://purl.obolibrary.org/obo/MONDO_0011186,Usher syndrome type 1F +14.4699418,MONDO:0011196,http://purl.obolibrary.org/obo/MONDO_0011196,amyotrophic lateral sclerosis type 5 +14.4699418,MONDO:0011213,http://purl.obolibrary.org/obo/MONDO_0011213,Pierpont syndrome +14.4699418,MONDO:0011327,http://purl.obolibrary.org/obo/MONDO_0011327,neuronal intranuclear inclusion disease +14.4699418,MONDO:0011417,http://purl.obolibrary.org/obo/MONDO_0011417,hemochromatosis type 3 +14.4699418,MONDO:0011503,http://purl.obolibrary.org/obo/MONDO_0011503,cortisone reductase deficiency 1 +14.4699418,MONDO:0011524,http://purl.obolibrary.org/obo/MONDO_0011524,Dianzani autoimmune lymphoproliferative disease +14.4699418,MONDO:0011656,http://purl.obolibrary.org/obo/MONDO_0011656,paget disease of bone 4 +14.4699418,MONDO:0011698,http://purl.obolibrary.org/obo/MONDO_0011698,glycine N-methyltransferase deficiency +14.4699418,MONDO:0011725,http://purl.obolibrary.org/obo/MONDO_0011725,Crigler-Najjar syndrome type 2 +14.4699418,MONDO:0011777,http://purl.obolibrary.org/obo/MONDO_0011777,Alzheimer disease 8 +14.4699418,MONDO:0012014,http://purl.obolibrary.org/obo/MONDO_0012014,Charcot-Marie-Tooth disease recessive intermediate A +14.4699418,MONDO:0012200,http://purl.obolibrary.org/obo/MONDO_0012200,posterior polymorphous corneal dystrophy 3 +14.4699418,MONDO:0012204,http://purl.obolibrary.org/obo/MONDO_0012204,familial pseudohyperkalemia +14.4699418,MONDO:0012552,http://purl.obolibrary.org/obo/MONDO_0012552,multiple endocrine neoplasia type 4 +14.4699418,MONDO:0012580,http://purl.obolibrary.org/obo/MONDO_0012580,hereditary pulmonary alveolar proteinosis +14.4699418,MONDO:0012981,http://purl.obolibrary.org/obo/MONDO_0012981,hereditary spherocytosis type 4 +14.4699418,MONDO:0013256,http://purl.obolibrary.org/obo/MONDO_0013256,chromosome 15q24 deletion syndrome +14.4699418,MONDO:0013420,http://purl.obolibrary.org/obo/MONDO_0013420,age related macular degeneration 12 +14.4699418,MONDO:0013586,http://purl.obolibrary.org/obo/MONDO_0013586,Chitotriosidase deficiency +14.4699418,MONDO:0013659,http://purl.obolibrary.org/obo/MONDO_0013659,microcephaly-capillary malformation syndrome +14.4699418,MONDO:0014637,http://purl.obolibrary.org/obo/MONDO_0014637,DOCK2 deficiency +14.4699418,MONDO:0014738,http://purl.obolibrary.org/obo/MONDO_0014738,autosomal dominant nonsyndromic deafness 69 +14.4699418,MONDO:0014873,http://purl.obolibrary.org/obo/MONDO_0014873,nevus comedonicus syndrome +14.4699418,MONDO:0015697,http://purl.obolibrary.org/obo/MONDO_0015697,immunoglobulin heavy chain deficiency +14.4699418,MONDO:0015727,http://purl.obolibrary.org/obo/MONDO_0015727,mosaic trisomy 15 +14.4699418,MONDO:0015743,http://purl.obolibrary.org/obo/MONDO_0015743,idiopathic bilateral vestibulopathy +14.4699418,MONDO:0015799,http://purl.obolibrary.org/obo/MONDO_0015799,Smith-McCort dysplasia +14.4699418,MONDO:0015855,http://purl.obolibrary.org/obo/MONDO_0015855,isolated congenital breast hypoplasia/aplasia +14.4699418,MONDO:0015884,http://purl.obolibrary.org/obo/MONDO_0015884,autosomal dominant hypohidrotic ectodermal dysplasia +14.4699418,MONDO:0015944,http://purl.obolibrary.org/obo/MONDO_0015944,axial mesodermal dysplasia spectrum +14.4699418,MONDO:0016459,http://purl.obolibrary.org/obo/MONDO_0016459,2q23.1 microdeletion syndrome +14.4699418,MONDO:0016573,http://purl.obolibrary.org/obo/MONDO_0016573,acute fatty liver of pregnancy +14.4699418,MONDO:0016771,http://purl.obolibrary.org/obo/MONDO_0016771,annular atrophic lichen planus +14.4699418,MONDO:0016877,http://purl.obolibrary.org/obo/MONDO_0016877,partial deletion of the long arm of chromosome 12 +14.4699418,MONDO:0016900,http://purl.obolibrary.org/obo/MONDO_0016900,partial deletion of the long arm of chromosome 1 +14.4699418,MONDO:0016923,http://purl.obolibrary.org/obo/MONDO_0016923,partial duplication of chromosome 3 +14.4699418,MONDO:0016954,http://purl.obolibrary.org/obo/MONDO_0016954,partial duplication of the long arm of chromosome 3 +14.4699418,MONDO:0017051,http://purl.obolibrary.org/obo/MONDO_0017051,classic maple syrup urine disease +14.4699418,MONDO:0017157,http://purl.obolibrary.org/obo/MONDO_0017157,pulmonary hypertension owing to lung disease and/or hypoxia +14.4699418,MONDO:0017219,http://purl.obolibrary.org/obo/MONDO_0017219,microform holoprosencephaly +14.4699418,MONDO:0017277,http://purl.obolibrary.org/obo/MONDO_0017277,partial deletion of chromosome 12 +14.4699418,MONDO:0017454,http://purl.obolibrary.org/obo/MONDO_0017454,triphalangeal thumb-polysyndactyly syndrome +14.4699418,MONDO:0017638,http://purl.obolibrary.org/obo/MONDO_0017638,manganese poisoning +14.4699418,MONDO:0017787,http://purl.obolibrary.org/obo/MONDO_0017787,erythroderma desquamativum +14.4699418,MONDO:0018034,http://purl.obolibrary.org/obo/MONDO_0018034,thalidomide embryopathy +14.4699418,MONDO:0018083,http://purl.obolibrary.org/obo/MONDO_0018083,transient tyrosinemia of the newborn +14.4699418,MONDO:0018469,http://purl.obolibrary.org/obo/MONDO_0018469,pulmonary non-tuberculous mycobacterial infection +14.4699418,MONDO:0018667,http://purl.obolibrary.org/obo/MONDO_0018667,pleural empyema +14.4699418,MONDO:0019204,http://purl.obolibrary.org/obo/MONDO_0019204,respiratory bronchiolitis-interstitial lung disease syndrome +14.4699418,MONDO:0019498,http://purl.obolibrary.org/obo/MONDO_0019498,tungiasis +14.4699418,MONDO:0019540,http://purl.obolibrary.org/obo/MONDO_0019540,diffuse alveolar hemorrhage +14.4699418,MONDO:0019575,http://purl.obolibrary.org/obo/MONDO_0019575,hypotrichosis simplex of the scalp +14.4699418,MONDO:0019660,http://purl.obolibrary.org/obo/MONDO_0019660,Pfeiffer syndrome type 2 +14.4699418,MONDO:0019784,http://purl.obolibrary.org/obo/MONDO_0019784,12q14 microdeletion syndrome +14.4699418,MONDO:0019969,http://purl.obolibrary.org/obo/MONDO_0019969,panner disease +14.4699418,MONDO:0020435,http://purl.obolibrary.org/obo/MONDO_0020435,"atrial septal defect, coronary sinus type" +14.4699418,MONDO:0020485,http://purl.obolibrary.org/obo/MONDO_0020485,King-Denborough syndrome +14.4699418,MONDO:0020495,http://purl.obolibrary.org/obo/MONDO_0020495,peho-like syndrome +14.4699418,MONDO:0020520,http://purl.obolibrary.org/obo/MONDO_0020520,adult pulmonary Langerhans cell histiocytosis +14.4699418,MONDO:0020707,http://purl.obolibrary.org/obo/MONDO_0020707,central hearing loss +14.4699418,MONDO:0021202,http://purl.obolibrary.org/obo/MONDO_0021202,allergic otitis media +14.4699418,MONDO:0021485,http://purl.obolibrary.org/obo/MONDO_0021485,benign neoplasm of iris +14.4699418,MONDO:0021490,http://purl.obolibrary.org/obo/MONDO_0021490,benign neoplasm of sebaceous gland +14.4699418,MONDO:0021493,http://purl.obolibrary.org/obo/MONDO_0021493,benign neoplasm of minor salivary gland +14.4699418,MONDO:0021809,http://purl.obolibrary.org/obo/MONDO_0021809,primary dysautonomia +14.4699418,MONDO:0021879,http://purl.obolibrary.org/obo/MONDO_0021879,small cell variant anaplastic large cell lymphoma +14.4699418,MONDO:0022768,http://purl.obolibrary.org/obo/MONDO_0022768,chronic polyradiculoneuritis +14.4699418,MONDO:0022968,http://purl.obolibrary.org/obo/MONDO_0022968,dextrocardia with situs inversus +14.4699418,MONDO:0023628,http://purl.obolibrary.org/obo/MONDO_0023628,levator syndrome +14.4699418,MONDO:0034150,http://purl.obolibrary.org/obo/MONDO_0034150,idiopathic gastroparesis +14.4699418,MONDO:0041259,http://purl.obolibrary.org/obo/MONDO_0041259,diphtheritic myocarditis +14.4699418,MONDO:0041536,http://purl.obolibrary.org/obo/MONDO_0041536,Far-East scarlet-like fever +14.4699418,MONDO:0044699,http://purl.obolibrary.org/obo/MONDO_0044699,SIN3A-related intellectual disability syndrome +14.4699418,MONDO:0044906,http://purl.obolibrary.org/obo/MONDO_0044906,bladder urothelial papilloma +14.4699418,MONDO:0045045,http://purl.obolibrary.org/obo/MONDO_0045045,selective IgG immunodeficiency +14.4699418,MONDO:0100020,http://purl.obolibrary.org/obo/MONDO_0100020,atypical childhood epilepsy with centrotemporal spikes +14.4699418,MOP:0000637,http://purl.obolibrary.org/obo/MOP_0000637,none +14.4699418,MOP:0000690,http://purl.obolibrary.org/obo/MOP_0000690,none +14.4699418,NCBITaxon:1010797,http://purl.obolibrary.org/obo/NCBITaxon_1010797,none +14.4699418,NCBITaxon:10176,http://purl.obolibrary.org/obo/NCBITaxon_10176,none +14.4699418,NCBITaxon:10177,http://purl.obolibrary.org/obo/NCBITaxon_10177,none +14.4699418,NCBITaxon:10178,http://purl.obolibrary.org/obo/NCBITaxon_10178,none +14.4699418,NCBITaxon:10179,http://purl.obolibrary.org/obo/NCBITaxon_10179,none +14.4699418,NCBITaxon:103846,http://purl.obolibrary.org/obo/NCBITaxon_103846,none +14.4699418,NCBITaxon:1046403,http://purl.obolibrary.org/obo/NCBITaxon_1046403,none +14.4699418,NCBITaxon:10514,http://purl.obolibrary.org/obo/NCBITaxon_10514,Canine adenovirus 2 +14.4699418,NCBITaxon:10583,http://purl.obolibrary.org/obo/NCBITaxon_10583,none +14.4699418,NCBITaxon:109042,http://purl.obolibrary.org/obo/NCBITaxon_109042,none +14.4699418,NCBITaxon:10963,http://purl.obolibrary.org/obo/NCBITaxon_10963,none +14.4699418,NCBITaxon:11023,http://purl.obolibrary.org/obo/NCBITaxon_11023,none +14.4699418,NCBITaxon:1106,http://purl.obolibrary.org/obo/NCBITaxon_1106,none +14.4699418,NCBITaxon:1141640,http://purl.obolibrary.org/obo/NCBITaxon_1141640,none +14.4699418,NCBITaxon:115136,http://purl.obolibrary.org/obo/NCBITaxon_115136,none +14.4699418,NCBITaxon:1162778,http://purl.obolibrary.org/obo/NCBITaxon_1162778,none +14.4699418,NCBITaxon:1162779,http://purl.obolibrary.org/obo/NCBITaxon_1162779,none +14.4699418,NCBITaxon:11800,http://purl.obolibrary.org/obo/NCBITaxon_11800,none +14.4699418,NCBITaxon:118040,http://purl.obolibrary.org/obo/NCBITaxon_118040,Squalomorphii +14.4699418,NCBITaxon:118964,http://purl.obolibrary.org/obo/NCBITaxon_118964,none +14.4699418,NCBITaxon:11960,http://purl.obolibrary.org/obo/NCBITaxon_11960,none +14.4699418,NCBITaxon:1202464,http://purl.obolibrary.org/obo/NCBITaxon_1202464,none +14.4699418,NCBITaxon:1202465,http://purl.obolibrary.org/obo/NCBITaxon_1202465,none +14.4699418,NCBITaxon:12056,http://purl.obolibrary.org/obo/NCBITaxon_12056,none +14.4699418,NCBITaxon:12111,http://purl.obolibrary.org/obo/NCBITaxon_12111,none +14.4699418,NCBITaxon:121495,http://purl.obolibrary.org/obo/NCBITaxon_121495,none +14.4699418,NCBITaxon:12273,http://purl.obolibrary.org/obo/NCBITaxon_12273,none +14.4699418,NCBITaxon:1268,http://purl.obolibrary.org/obo/NCBITaxon_1268,none +14.4699418,NCBITaxon:1274499,http://purl.obolibrary.org/obo/NCBITaxon_1274499,none +14.4699418,NCBITaxon:129732,http://purl.obolibrary.org/obo/NCBITaxon_129732,none +14.4699418,NCBITaxon:1298,http://purl.obolibrary.org/obo/NCBITaxon_1298,none +14.4699418,NCBITaxon:129912,http://purl.obolibrary.org/obo/NCBITaxon_129912,none +14.4699418,NCBITaxon:1359206,http://purl.obolibrary.org/obo/NCBITaxon_1359206,none +14.4699418,NCBITaxon:13632,http://purl.obolibrary.org/obo/NCBITaxon_13632,none +14.4699418,NCBITaxon:1392869,http://purl.obolibrary.org/obo/NCBITaxon_1392869,none +14.4699418,NCBITaxon:146095,http://purl.obolibrary.org/obo/NCBITaxon_146095,none +14.4699418,NCBITaxon:147387,http://purl.obolibrary.org/obo/NCBITaxon_147387,Poeae +14.4699418,NCBITaxon:1485,http://purl.obolibrary.org/obo/NCBITaxon_1485,Clostridium +14.4699418,NCBITaxon:1489876,http://purl.obolibrary.org/obo/NCBITaxon_1489876,none +14.4699418,NCBITaxon:1489877,http://purl.obolibrary.org/obo/NCBITaxon_1489877,none +14.4699418,NCBITaxon:1489883,http://purl.obolibrary.org/obo/NCBITaxon_1489883,none +14.4699418,NCBITaxon:1511861,http://purl.obolibrary.org/obo/NCBITaxon_1511861,none +14.4699418,NCBITaxon:159151,http://purl.obolibrary.org/obo/NCBITaxon_159151,none +14.4699418,NCBITaxon:160060,http://purl.obolibrary.org/obo/NCBITaxon_160060,none +14.4699418,NCBITaxon:160061,http://purl.obolibrary.org/obo/NCBITaxon_160061,none +14.4699418,NCBITaxon:163747,http://purl.obolibrary.org/obo/NCBITaxon_163747,none +14.4699418,NCBITaxon:1648037,http://purl.obolibrary.org/obo/NCBITaxon_1648037,Poodae +14.4699418,NCBITaxon:167161,http://purl.obolibrary.org/obo/NCBITaxon_167161,none +14.4699418,NCBITaxon:1804623,http://purl.obolibrary.org/obo/NCBITaxon_1804623,none +14.4699418,NCBITaxon:183710,http://purl.obolibrary.org/obo/NCBITaxon_183710,none +14.4699418,NCBITaxon:1847,http://purl.obolibrary.org/obo/NCBITaxon_1847,none +14.4699418,NCBITaxon:1911602,http://purl.obolibrary.org/obo/NCBITaxon_1911602,none +14.4699418,NCBITaxon:192752,http://purl.obolibrary.org/obo/NCBITaxon_192752,none +14.4699418,NCBITaxon:1933189,http://purl.obolibrary.org/obo/NCBITaxon_1933189,none +14.4699418,NCBITaxon:1980471,http://purl.obolibrary.org/obo/NCBITaxon_1980471,none +14.4699418,NCBITaxon:1993396,http://purl.obolibrary.org/obo/NCBITaxon_1993396,none +14.4699418,NCBITaxon:229219,http://purl.obolibrary.org/obo/NCBITaxon_229219,Blastomyces +14.4699418,NCBITaxon:24921,http://purl.obolibrary.org/obo/NCBITaxon_24921,none +14.4699418,NCBITaxon:2501368,http://purl.obolibrary.org/obo/NCBITaxon_2501368,none +14.4699418,NCBITaxon:2501369,http://purl.obolibrary.org/obo/NCBITaxon_2501369,none +14.4699418,NCBITaxon:2560382,http://purl.obolibrary.org/obo/NCBITaxon_2560382,none +14.4699418,NCBITaxon:2560627,http://purl.obolibrary.org/obo/NCBITaxon_2560627,none +14.4699418,NCBITaxon:2560800,http://purl.obolibrary.org/obo/NCBITaxon_2560800,none +14.4699418,NCBITaxon:2603560,http://purl.obolibrary.org/obo/NCBITaxon_2603560,none +14.4699418,NCBITaxon:260684,http://purl.obolibrary.org/obo/NCBITaxon_260684,none +14.4699418,NCBITaxon:263004,http://purl.obolibrary.org/obo/NCBITaxon_263004,none +14.4699418,NCBITaxon:273347,http://purl.obolibrary.org/obo/NCBITaxon_273347,none +14.4699418,NCBITaxon:2743726,http://purl.obolibrary.org/obo/NCBITaxon_2743726,none +14.4699418,NCBITaxon:27760,http://purl.obolibrary.org/obo/NCBITaxon_27760,none +14.4699418,NCBITaxon:27884,http://purl.obolibrary.org/obo/NCBITaxon_27884,none +14.4699418,NCBITaxon:27885,http://purl.obolibrary.org/obo/NCBITaxon_27885,none +14.4699418,NCBITaxon:28056,http://purl.obolibrary.org/obo/NCBITaxon_28056,none +14.4699418,NCBITaxon:282414,http://purl.obolibrary.org/obo/NCBITaxon_282414,none +14.4699418,NCBITaxon:28284,http://purl.obolibrary.org/obo/NCBITaxon_28284,none +14.4699418,NCBITaxon:29465,http://purl.obolibrary.org/obo/NCBITaxon_29465,none +14.4699418,NCBITaxon:299071,http://purl.obolibrary.org/obo/NCBITaxon_299071,Ajellomycetaceae +14.4699418,NCBITaxon:30062,http://purl.obolibrary.org/obo/NCBITaxon_30062,none +14.4699418,NCBITaxon:301297,http://purl.obolibrary.org/obo/NCBITaxon_301297,none +14.4699418,NCBITaxon:30511,http://purl.obolibrary.org/obo/NCBITaxon_30511,none +14.4699418,NCBITaxon:31092,http://purl.obolibrary.org/obo/NCBITaxon_31092,none +14.4699418,NCBITaxon:311200,http://purl.obolibrary.org/obo/NCBITaxon_311200,none +14.4699418,NCBITaxon:311201,http://purl.obolibrary.org/obo/NCBITaxon_311201,none +14.4699418,NCBITaxon:312295,http://purl.obolibrary.org/obo/NCBITaxon_312295,none +14.4699418,NCBITaxon:31245,http://purl.obolibrary.org/obo/NCBITaxon_31245,Schistosomatidae +14.4699418,NCBITaxon:312687,http://purl.obolibrary.org/obo/NCBITaxon_312687,none +14.4699418,NCBITaxon:31732,http://purl.obolibrary.org/obo/NCBITaxon_31732,none +14.4699418,NCBITaxon:32305,http://purl.obolibrary.org/obo/NCBITaxon_32305,none +14.4699418,NCBITaxon:325455,http://purl.obolibrary.org/obo/NCBITaxon_325455,none +14.4699418,NCBITaxon:325676,http://purl.obolibrary.org/obo/NCBITaxon_325676,none +14.4699418,NCBITaxon:334203,http://purl.obolibrary.org/obo/NCBITaxon_334203,none +14.4699418,NCBITaxon:337736,http://purl.obolibrary.org/obo/NCBITaxon_337736,none +14.4699418,NCBITaxon:3484,http://purl.obolibrary.org/obo/NCBITaxon_3484,none +14.4699418,NCBITaxon:352925,http://purl.obolibrary.org/obo/NCBITaxon_352925,none +14.4699418,NCBITaxon:35306,http://purl.obolibrary.org/obo/NCBITaxon_35306,none +14.4699418,NCBITaxon:357811,http://purl.obolibrary.org/obo/NCBITaxon_357811,none +14.4699418,NCBITaxon:37442,http://purl.obolibrary.org/obo/NCBITaxon_37442,none +14.4699418,NCBITaxon:375434,http://purl.obolibrary.org/obo/NCBITaxon_375434,none +14.4699418,NCBITaxon:37960,http://purl.obolibrary.org/obo/NCBITaxon_37960,none +14.4699418,NCBITaxon:3987,http://purl.obolibrary.org/obo/NCBITaxon_3987,none +14.4699418,NCBITaxon:40666,http://purl.obolibrary.org/obo/NCBITaxon_40666,none +14.4699418,NCBITaxon:41071,http://purl.obolibrary.org/obo/NCBITaxon_41071,none +14.4699418,NCBITaxon:41995,http://purl.obolibrary.org/obo/NCBITaxon_41995,none +14.4699418,NCBITaxon:43761,http://purl.obolibrary.org/obo/NCBITaxon_43761,none +14.4699418,NCBITaxon:44249,http://purl.obolibrary.org/obo/NCBITaxon_44249,none +14.4699418,NCBITaxon:45426,http://purl.obolibrary.org/obo/NCBITaxon_45426,none +14.4699418,NCBITaxon:458132,http://purl.obolibrary.org/obo/NCBITaxon_458132,none +14.4699418,NCBITaxon:467989,http://purl.obolibrary.org/obo/NCBITaxon_467989,none +14.4699418,NCBITaxon:46920,http://purl.obolibrary.org/obo/NCBITaxon_46920,none +14.4699418,NCBITaxon:47416,http://purl.obolibrary.org/obo/NCBITaxon_47416,none +14.4699418,NCBITaxon:475176,http://purl.obolibrary.org/obo/NCBITaxon_475176,none +14.4699418,NCBITaxon:48088,http://purl.obolibrary.org/obo/NCBITaxon_48088,none +14.4699418,NCBITaxon:48089,http://purl.obolibrary.org/obo/NCBITaxon_48089,none +14.4699418,NCBITaxon:526476,http://purl.obolibrary.org/obo/NCBITaxon_526476,none +14.4699418,NCBITaxon:535382,http://purl.obolibrary.org/obo/NCBITaxon_535382,none +14.4699418,NCBITaxon:54292,http://purl.obolibrary.org/obo/NCBITaxon_54292,Apodemus flavicollis +14.4699418,NCBITaxon:56772,http://purl.obolibrary.org/obo/NCBITaxon_56772,none +14.4699418,NCBITaxon:5863,http://purl.obolibrary.org/obo/NCBITaxon_5863,Piroplasmida +14.4699418,NCBITaxon:60710,http://purl.obolibrary.org/obo/NCBITaxon_60710,none +14.4699418,NCBITaxon:6088,http://purl.obolibrary.org/obo/NCBITaxon_6088,none +14.4699418,NCBITaxon:6142,http://purl.obolibrary.org/obo/NCBITaxon_6142,none +14.4699418,NCBITaxon:61434,http://purl.obolibrary.org/obo/NCBITaxon_61434,none +14.4699418,NCBITaxon:63298,http://purl.obolibrary.org/obo/NCBITaxon_63298,none +14.4699418,NCBITaxon:638272,http://purl.obolibrary.org/obo/NCBITaxon_638272,none +14.4699418,NCBITaxon:64958,http://purl.obolibrary.org/obo/NCBITaxon_64958,none +14.4699418,NCBITaxon:6548,http://purl.obolibrary.org/obo/NCBITaxon_6548,none +14.4699418,NCBITaxon:674981,http://purl.obolibrary.org/obo/NCBITaxon_674981,none +14.4699418,NCBITaxon:675074,http://purl.obolibrary.org/obo/NCBITaxon_675074,none +14.4699418,NCBITaxon:675389,http://purl.obolibrary.org/obo/NCBITaxon_675389,none +14.4699418,NCBITaxon:69082,http://purl.obolibrary.org/obo/NCBITaxon_69082,none +14.4699418,NCBITaxon:693066,http://purl.obolibrary.org/obo/NCBITaxon_693066,none +14.4699418,NCBITaxon:696871,http://purl.obolibrary.org/obo/NCBITaxon_696871,none +14.4699418,NCBITaxon:72539,http://purl.obolibrary.org/obo/NCBITaxon_72539,none +14.4699418,NCBITaxon:75041,http://purl.obolibrary.org/obo/NCBITaxon_75041,none +14.4699418,NCBITaxon:75382,http://purl.obolibrary.org/obo/NCBITaxon_75382,none +14.4699418,NCBITaxon:83871,http://purl.obolibrary.org/obo/NCBITaxon_83871,none +14.4699418,NCBITaxon:83881,http://purl.obolibrary.org/obo/NCBITaxon_83881,none +14.4699418,NCBITaxon:83882,http://purl.obolibrary.org/obo/NCBITaxon_83882,none +14.4699418,NCBITaxon:8486,http://purl.obolibrary.org/obo/NCBITaxon_8486,none +14.4699418,NCBITaxon:85008,http://purl.obolibrary.org/obo/NCBITaxon_85008,none +14.4699418,NCBITaxon:85578,http://purl.obolibrary.org/obo/NCBITaxon_85578,none +14.4699418,NCBITaxon:8560,http://purl.obolibrary.org/obo/NCBITaxon_8560,none +14.4699418,NCBITaxon:857473,http://purl.obolibrary.org/obo/NCBITaxon_857473,none +14.4699418,NCBITaxon:8634,http://purl.obolibrary.org/obo/NCBITaxon_8634,none +14.4699418,NCBITaxon:8764,http://purl.obolibrary.org/obo/NCBITaxon_8764,none +14.4699418,NCBITaxon:95622,http://purl.obolibrary.org/obo/NCBITaxon_95622,none +14.4699418,NCBITaxon:99568,http://purl.obolibrary.org/obo/NCBITaxon_99568,none +14.4699418,PR:000000809,http://purl.obolibrary.org/obo/PR_000000809,voltage-gated potassium channel subunit KCNA10 +14.4699418,PR:000001140,http://purl.obolibrary.org/obo/PR_000001140,interleukin-17C +14.4699418,PR:000001284,http://purl.obolibrary.org/obo/PR_000001284,B- and T-lymphocyte attenuator +14.4699418,PR:000001440,http://purl.obolibrary.org/obo/PR_000001440,galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 1 +14.4699418,PR:000001503,http://purl.obolibrary.org/obo/PR_000001503,probable G-protein coupled receptor 101 +14.4699418,PR:000001704,http://purl.obolibrary.org/obo/PR_000001704,mas-related G-protein coupled receptor X3 +14.4699418,PR:000001746,http://purl.obolibrary.org/obo/PR_000001746,translocation-associated membrane protein 2 +14.4699418,PR:000001884,http://purl.obolibrary.org/obo/PR_000001884,macrophage receptor MARCO +14.4699418,PR:000002183,http://purl.obolibrary.org/obo/PR_000002183,BH3-interacting domain death agonist +14.4699418,PR:000003627,http://purl.obolibrary.org/obo/PR_000003627,apoptotic chromatin condensation inducer in the nucleus +14.4699418,PR:000003630,http://purl.obolibrary.org/obo/PR_000003630,"protein ACN9, mitochondrial" +14.4699418,PR:000003755,http://purl.obolibrary.org/obo/PR_000003755,adenylate cyclase type 4 +14.4699418,PR:000004030,http://purl.obolibrary.org/obo/PR_000004030,angiopoietin-related protein 5 +14.4699418,PR:000004059,http://purl.obolibrary.org/obo/PR_000004059,anoctamin-4 +14.4699418,PR:000004064,http://purl.obolibrary.org/obo/PR_000004064,anoctamin-9 +14.4699418,PR:000004114,http://purl.obolibrary.org/obo/PR_000004114,AP-4 complex subunit sigma-1 +14.4699418,PR:000004411,http://purl.obolibrary.org/obo/PR_000004411,autophagy-related protein 2 homolog A +14.4699418,PR:000004828,http://purl.obolibrary.org/obo/PR_000004828,bromodomain and WD repeat-containing protein 1 +14.4699418,PR:000004871,http://purl.obolibrary.org/obo/PR_000004871,none +14.4699418,PR:000004950,http://purl.obolibrary.org/obo/PR_000004950,voltage-dependent calcium channel gamma-1 subunit +14.4699418,PR:000005031,http://purl.obolibrary.org/obo/PR_000005031,F-actin-capping protein subunit alpha-3 +14.4699418,PR:000005109,http://purl.obolibrary.org/obo/PR_000005109,calicin +14.4699418,PR:000005167,http://purl.obolibrary.org/obo/PR_000005167,CMRF35-like molecule 5 +14.4699418,PR:000005197,http://purl.obolibrary.org/obo/PR_000005197,cyclin-dependent kinase 11A +14.4699418,PR:000005271,http://purl.obolibrary.org/obo/PR_000005271,cyclin-dependent kinase-like 3 +14.4699418,PR:000005441,http://purl.obolibrary.org/obo/PR_000005441,charged multivesicular body protein 7 +14.4699418,PR:000005466,http://purl.obolibrary.org/obo/PR_000005466,acetylcholine receptor subunit delta +14.4699418,PR:000005616,http://purl.obolibrary.org/obo/PR_000005616,clusterin-associated protein 1 +14.4699418,PR:000005647,http://purl.obolibrary.org/obo/PR_000005647,biogenesis of lysosome-related organelles complex 1 subunit 4 +14.4699418,PR:000005661,http://purl.obolibrary.org/obo/PR_000005661,protein canopy homolog 4 +14.4699418,PR:000005717,http://purl.obolibrary.org/obo/PR_000005717,collagen alpha-6(IV) chain +14.4699418,PR:000005718,http://purl.obolibrary.org/obo/PR_000005718,collagen alpha-3(V) chain +14.4699418,PR:000005781,http://purl.obolibrary.org/obo/PR_000005781,"cytochrome c oxidase subunit 6A1, mitochondrial" +14.4699418,PR:000005975,http://purl.obolibrary.org/obo/PR_000005975,cleavage stimulation factor subunit 1 +14.4699418,PR:000006201,http://purl.obolibrary.org/obo/PR_000006201,none +14.4699418,PR:000006356,http://purl.obolibrary.org/obo/PR_000006356,ATP-dependent RNA helicase DDX18 +14.4699418,PR:000006383,http://purl.obolibrary.org/obo/PR_000006383,beta-defensin 105 +14.4699418,PR:000006486,http://purl.obolibrary.org/obo/PR_000006486,GTP-binding protein Di-Ras1 +14.4699418,PR:000006574,http://purl.obolibrary.org/obo/PR_000006574,DnaJ homolog subfamily B member 13 +14.4699418,PR:000006585,http://purl.obolibrary.org/obo/PR_000006585,DnaJ homolog subfamily C member 24 +14.4699418,PR:000006591,http://purl.obolibrary.org/obo/PR_000006591,axonemal dynein light intermediate polypeptide 1 +14.4699418,PR:000006645,http://purl.obolibrary.org/obo/PR_000006645,mucin-like protein 3 +14.4699418,PR:000006700,http://purl.obolibrary.org/obo/PR_000006700,Down syndrome critical region protein 4 +14.4699418,PR:000006812,http://purl.obolibrary.org/obo/PR_000006812,none +14.4699418,PR:000006818,http://purl.obolibrary.org/obo/PR_000006818,none +14.4699418,PR:000006953,http://purl.obolibrary.org/obo/PR_000006953,EP300-interacting inhibitor of differentiation 2B +14.4699418,PR:000006979,http://purl.obolibrary.org/obo/PR_000006979,eukaryotic translation initiation factor 3 subunit G +14.4699418,PR:000007057,http://purl.obolibrary.org/obo/PR_000007057,echinoderm microtubule-associated protein-like 2 +14.4699418,PR:000007083,http://purl.obolibrary.org/obo/PR_000007083,enolase-phosphatase E1 +14.4699418,PR:000007157,http://purl.obolibrary.org/obo/PR_000007157,GTPase ERas +14.4699418,PR:000007182,http://purl.obolibrary.org/obo/PR_000007182,erythroid membrane-associated protein +14.4699418,PR:000007377,http://purl.obolibrary.org/obo/PR_000007377,F-box/LRR-repeat protein 19 +14.4699418,PR:000007379,http://purl.obolibrary.org/obo/PR_000007379,F-box/LRR-repeat protein 20 +14.4699418,PR:000007462,http://purl.obolibrary.org/obo/PR_000007462,Fer3-like protein +14.4699418,PR:000007530,http://purl.obolibrary.org/obo/PR_000007530,Flt3-interacting zinc finger protein 1 +14.4699418,PR:000007647,http://purl.obolibrary.org/obo/PR_000007647,forkhead box protein R1 +14.4699418,PR:000008054,http://purl.obolibrary.org/obo/PR_000008054,BRD4-interacting chromatin-remodeling complex-associated protein +14.4699418,PR:000008072,http://purl.obolibrary.org/obo/PR_000008072,GEM-interacting protein +14.4699418,PR:000008239,http://purl.obolibrary.org/obo/PR_000008239,delphilin +14.4699418,PR:000008583,http://purl.obolibrary.org/obo/PR_000008583,histone H2A type 1-B/E +14.4699418,PR:000008761,http://purl.obolibrary.org/obo/PR_000008761,heparan sulfate glucosamine 3-O-sulfotransferase 3B1 +14.4699418,PR:000008789,http://purl.obolibrary.org/obo/PR_000008789,hydroxysteroid dehydrogenase-like protein 2 +14.4699418,PR:000008869,http://purl.obolibrary.org/obo/PR_000008869,none +14.4699418,PR:000008971,http://purl.obolibrary.org/obo/PR_000008971,immunoglobulin superfamily member 5 +14.4699418,PR:000009074,http://purl.obolibrary.org/obo/PR_000009074,integrator complex subunit 5 +14.4699418,PR:000009085,http://purl.obolibrary.org/obo/PR_000009085,importin-11 +14.4699418,PR:000009219,http://purl.obolibrary.org/obo/PR_000009219,junction-mediating and -regulatory protein +14.4699418,PR:000009244,http://purl.obolibrary.org/obo/PR_000009244,katanin p60 ATPase-containing subunit A-like 2 +14.4699418,PR:000009303,http://purl.obolibrary.org/obo/PR_000009303,kinesin-like protein KIF24 +14.4699418,PR:000009324,http://purl.obolibrary.org/obo/PR_000009324,kinesin-like protein KIFC2 +14.4699418,PR:000009339,http://purl.obolibrary.org/obo/PR_000009339,killer cell immunoglobulin-like receptor 3DL3 +14.4699418,PR:000009373,http://purl.obolibrary.org/obo/PR_000009373,kelch-like protein 10 +14.4699418,PR:000009578,http://purl.obolibrary.org/obo/PR_000009578,keratin-associated protein 6-1 +14.4699418,PR:000009657,http://purl.obolibrary.org/obo/PR_000009657,laminin subunit beta-4 +14.4699418,PR:000009675,http://purl.obolibrary.org/obo/PR_000009675,LAS1-like protein +14.4699418,PR:000009711,http://purl.obolibrary.org/obo/PR_000009711,late cornified envelope protein 3C +14.4699418,PR:000009727,http://purl.obolibrary.org/obo/PR_000009727,epididymal-specific lipocalin-8 +14.4699418,PR:000009822,http://purl.obolibrary.org/obo/PR_000009822,protein lin-37 +14.4699418,PR:000009855,http://purl.obolibrary.org/obo/PR_000009855,protein LMBR1L +14.4699418,PR:000009877,http://purl.obolibrary.org/obo/PR_000009877,loss of heterozygosity 11 chromosomal region 2 gene A protein +14.4699418,PR:000009934,http://purl.obolibrary.org/obo/PR_000009934,leucine-rich repeat-containing protein 25 +14.4699418,PR:000009998,http://purl.obolibrary.org/obo/PR_000009998,cell growth-regulating nucleolar protein +14.4699418,PR:000010022,http://purl.obolibrary.org/obo/PR_000010022,none +14.4699418,PR:000010055,http://purl.obolibrary.org/obo/PR_000010055,melanoma-associated antigen 11 +14.4699418,PR:000010102,http://purl.obolibrary.org/obo/PR_000010102,"mannosyl-oligosaccharide 1,2-alpha-mannosidase IB" +14.4699418,PR:000010177,http://purl.obolibrary.org/obo/PR_000010177,E3 ubiquitin-protein ligase MARCHF3 +14.4699418,PR:000010357,http://purl.obolibrary.org/obo/PR_000010357,RNA-binding protein MEX3B +14.4699418,PR:000010401,http://purl.obolibrary.org/obo/PR_000010401,[F-actin]-monooxygenase MICAL3 +14.4699418,PR:000010552,http://purl.obolibrary.org/obo/PR_000010552,Mpv17-like protein +14.4699418,PR:000010556,http://purl.obolibrary.org/obo/PR_000010556,myelin protein zero-like protein 3 +14.4699418,PR:000010692,http://purl.obolibrary.org/obo/PR_000010692,NADH-ubiquinone oxidoreductase chain 4L +14.4699418,PR:000010719,http://purl.obolibrary.org/obo/PR_000010719,"methionyl-tRNA formyltransferase, mitochondrial" +14.4699418,PR:000010720,http://purl.obolibrary.org/obo/PR_000010720,mitochondrial fission regulator 1 +14.4699418,PR:000011069,http://purl.obolibrary.org/obo/PR_000011069,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 +14.4699418,PR:000011087,http://purl.obolibrary.org/obo/PR_000011087,NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 +14.4699418,PR:000011110,http://purl.obolibrary.org/obo/PR_000011110,N-terminal EF-hand calcium-binding protein 2 +14.4699418,PR:000011127,http://purl.obolibrary.org/obo/PR_000011127,serine/threonine-protein kinase Nek11 +14.4699418,PR:000011266,http://purl.obolibrary.org/obo/PR_000011266,"NACHT, LRR and PYD domains-containing protein 11" +14.4699418,PR:000011962,http://purl.obolibrary.org/obo/PR_000011962,olfactory receptor 6C3 +14.4699418,PR:000012051,http://purl.obolibrary.org/obo/PR_000012051,oxysterol-binding protein-related protein 6 +14.4699418,PR:000012071,http://purl.obolibrary.org/obo/PR_000012071,otoancorin +14.4699418,PR:000012203,http://purl.obolibrary.org/obo/PR_000012203,proteasomal ATPase-associated factor 1 +14.4699418,PR:000012492,http://purl.obolibrary.org/obo/PR_000012492,platelet-derived growth factor receptor-like protein +14.4699418,PR:000012654,http://purl.obolibrary.org/obo/PR_000012654,PHD finger protein 7 +14.4699418,PR:000012730,http://purl.obolibrary.org/obo/PR_000012730,paired immunoglobulin-like type 2 receptor alpha +14.4699418,PR:000013054,http://purl.obolibrary.org/obo/PR_000013054,phospholipid phosphatase 5 +14.4699418,PR:000013096,http://purl.obolibrary.org/obo/PR_000013096,protein phosphatase 1H +14.4699418,PR:000013118,http://purl.obolibrary.org/obo/PR_000013118,protein phosphatase 1 regulatory subunit 16A +14.4699418,PR:000013143,http://purl.obolibrary.org/obo/PR_000013143,serine/threonine-protein phosphatase 2A 56 kDa regulatory subunit alpha isoform +14.4699418,PR:000013223,http://purl.obolibrary.org/obo/PR_000013223,cAMP-dependent protein kinase catalytic subunit beta +14.4699418,PR:000013474,http://purl.obolibrary.org/obo/PR_000013474,receptor-type tyrosine-protein phosphatase-like N +14.4699418,PR:000013487,http://purl.obolibrary.org/obo/PR_000013487,pituitary tumor-transforming gene 1 protein-interacting protein +14.4699418,PR:000013516,http://purl.obolibrary.org/obo/PR_000013516,pyrroline-5-carboxylate reductase 2 +14.4699418,PR:000013533,http://purl.obolibrary.org/obo/PR_000013533,inactive serine/threonine-protein kinase PLK5 +14.4699418,PR:000013615,http://purl.obolibrary.org/obo/PR_000013615,Ras-related protein Rab-39A +14.4699418,PR:000013722,http://purl.obolibrary.org/obo/PR_000013722,Rap1 GTPase-GDP dissociation stimulator 1 +14.4699418,PR:000013746,http://purl.obolibrary.org/obo/PR_000013746,Ras GTPase-activating protein 4 +14.4699418,PR:000013768,http://purl.obolibrary.org/obo/PR_000013768,Ras association domain-containing protein 9 +14.4699418,PR:000013814,http://purl.obolibrary.org/obo/PR_000013814,"RNA-binding motif protein, Y chromosome, family 1 member B" +14.4699418,PR:000013856,http://purl.obolibrary.org/obo/PR_000013856,epidermal retinol dehydrogenase 2 +14.4699418,PR:000014132,http://purl.obolibrary.org/obo/PR_000014132,E3 ubiquitin-protein ligase RNF38 +14.4699418,PR:000014334,http://purl.obolibrary.org/obo/PR_000014334,arginine/serine-rich coiled-coil protein 1 +14.4699418,PR:000014371,http://purl.obolibrary.org/obo/PR_000014371,RWD domain-containing protein 3 +14.4699418,PR:000014533,http://purl.obolibrary.org/obo/PR_000014533,short coiled-coil protein +14.4699418,PR:000014649,http://purl.obolibrary.org/obo/PR_000014649,septin-10 +14.4699418,PR:000014731,http://purl.obolibrary.org/obo/PR_000014731,splicing factor 3 subunit 1 +14.4699418,PR:000014750,http://purl.obolibrary.org/obo/PR_000014750,serine/arginine-rich splicing factor 11 +14.4699418,PR:000014770,http://purl.obolibrary.org/obo/PR_000014770,surfactant-associated protein 2 +14.4699418,PR:000014842,http://purl.obolibrary.org/obo/PR_000014842,protein shisa-2 +14.4699418,PR:000014858,http://purl.obolibrary.org/obo/PR_000014858,"sucrase-isomaltase, intestinal" +14.4699418,PR:000014865,http://purl.obolibrary.org/obo/PR_000014865,sialic acid-binding Ig-like lectin 11 +14.4699418,PR:000014914,http://purl.obolibrary.org/obo/PR_000014914,SLAM family member 8 +14.4699418,PR:000015082,http://purl.obolibrary.org/obo/PR_000015082,zinc transporter 9 +14.4699418,PR:000015094,http://purl.obolibrary.org/obo/PR_000015094,adenosine 3'-phospho 5'-phosphosulfate transporter 2 +14.4699418,PR:000015095,http://purl.obolibrary.org/obo/PR_000015095,UDP-xylose and UDP-N-acetylglucosamine transporter +14.4699418,PR:000015116,http://purl.obolibrary.org/obo/PR_000015116,sugar phosphate exchanger 3 +14.4699418,PR:000015175,http://purl.obolibrary.org/obo/PR_000015175,sodium/glucose cotransporter 4 +14.4699418,PR:000015297,http://purl.obolibrary.org/obo/PR_000015297,acid sphingomyelinase-like phosphodiesterase 3b +14.4699418,PR:000015317,http://purl.obolibrary.org/obo/PR_000015317,snRNA-activating protein complex subunit 2 +14.4699418,PR:000015488,http://purl.obolibrary.org/obo/PR_000015488,spermatogenesis-associated protein 22 +14.4699418,PR:000015502,http://purl.obolibrary.org/obo/PR_000015502,SPATS2-like protein +14.4699418,PR:000015614,http://purl.obolibrary.org/obo/PR_000015614,serum response factor-binding protein 1 +14.4699418,PR:000015670,http://purl.obolibrary.org/obo/PR_000015670,protein SSX3 +14.4699418,PR:000015716,http://purl.obolibrary.org/obo/PR_000015716,START domain-containing protein 10 +14.4699418,PR:000015724,http://purl.obolibrary.org/obo/PR_000015724,StAR-related lipid transfer protein 9 +14.4699418,PR:000015806,http://purl.obolibrary.org/obo/PR_000015806,syntaxin-binding protein 6 +14.4699418,PR:000015895,http://purl.obolibrary.org/obo/PR_000015895,synaptotagmin-10 +14.4699418,PR:000015898,http://purl.obolibrary.org/obo/PR_000015898,synaptotagmin-13 +14.4699418,PR:000016047,http://purl.obolibrary.org/obo/PR_000016047,protein TANC2 +14.4699418,PR:000016182,http://purl.obolibrary.org/obo/PR_000016182,transcription factor 25 +14.4699418,PR:000016325,http://purl.obolibrary.org/obo/PR_000016325,thymocyte nuclear protein 1 +14.4699418,PR:000016387,http://purl.obolibrary.org/obo/PR_000016387,transmembrane 4 L6 family member 4 +14.4699418,PR:000016451,http://purl.obolibrary.org/obo/PR_000016451,transmembrane protease serine 11E +14.4699418,PR:000016605,http://purl.obolibrary.org/obo/PR_000016605,TRAF-type zinc finger domain-containing protein 1 +14.4699418,PR:000016630,http://purl.obolibrary.org/obo/PR_000016630,trem-like transcript 4 protein +14.4699418,PR:000016680,http://purl.obolibrary.org/obo/PR_000016680,tRNA (uracil-5-)-methyltransferase homolog A +14.4699418,PR:000016691,http://purl.obolibrary.org/obo/PR_000016691,trophinin-associated protein +14.4699418,PR:000016925,http://purl.obolibrary.org/obo/PR_000016925,none +14.4699418,PR:000017014,http://purl.obolibrary.org/obo/PR_000017014,E3 ubiquitin-protein ligase UBR3 +14.4699418,PR:000017169,http://purl.obolibrary.org/obo/PR_000017169,ubiquitin carboxyl-terminal hydrolase 30 +14.4699418,PR:000017317,http://purl.obolibrary.org/obo/PR_000017317,pre-B lymphocyte protein 3 +14.4699418,PR:000017536,http://purl.obolibrary.org/obo/PR_000017536,protein YIPF6 +14.4699418,PR:000017660,http://purl.obolibrary.org/obo/PR_000017660,zymogen granule membrane protein 16 +14.4699418,PR:000017814,http://purl.obolibrary.org/obo/PR_000017814,zinc finger protein 3 +14.4699418,PR:000017945,http://purl.obolibrary.org/obo/PR_000017945,zinc finger protein 512B +14.4699418,PR:000018172,http://purl.obolibrary.org/obo/PR_000018172,zinc finger protein 81 +14.4699418,PR:000022153,http://purl.obolibrary.org/obo/PR_000022153,none +14.4699418,PR:000022225,http://purl.obolibrary.org/obo/PR_000022225,none +14.4699418,PR:000022311,http://purl.obolibrary.org/obo/PR_000022311,none +14.4699418,PR:000022321,http://purl.obolibrary.org/obo/PR_000022321,none +14.4699418,PR:000022431,http://purl.obolibrary.org/obo/PR_000022431,none +14.4699418,PR:000022686,http://purl.obolibrary.org/obo/PR_000022686,none +14.4699418,PR:000022739,http://purl.obolibrary.org/obo/PR_000022739,none +14.4699418,PR:000022770,http://purl.obolibrary.org/obo/PR_000022770,none +14.4699418,PR:000022775,http://purl.obolibrary.org/obo/PR_000022775,none +14.4699418,PR:000022817,http://purl.obolibrary.org/obo/PR_000022817,none +14.4699418,PR:000022868,http://purl.obolibrary.org/obo/PR_000022868,none +14.4699418,PR:000022908,http://purl.obolibrary.org/obo/PR_000022908,none +14.4699418,PR:000022992,http://purl.obolibrary.org/obo/PR_000022992,none +14.4699418,PR:000023284,http://purl.obolibrary.org/obo/PR_000023284,none +14.4699418,PR:000023313,http://purl.obolibrary.org/obo/PR_000023313,none +14.4699418,PR:000023383,http://purl.obolibrary.org/obo/PR_000023383,none +14.4699418,PR:000023430,http://purl.obolibrary.org/obo/PR_000023430,none +14.4699418,PR:000023488,http://purl.obolibrary.org/obo/PR_000023488,none +14.4699418,PR:000023490,http://purl.obolibrary.org/obo/PR_000023490,none +14.4699418,PR:000023496,http://purl.obolibrary.org/obo/PR_000023496,none +14.4699418,PR:000023553,http://purl.obolibrary.org/obo/PR_000023553,none +14.4699418,PR:000023571,http://purl.obolibrary.org/obo/PR_000023571,none +14.4699418,PR:000023664,http://purl.obolibrary.org/obo/PR_000023664,none +14.4699418,PR:000023700,http://purl.obolibrary.org/obo/PR_000023700,none +14.4699418,PR:000023916,http://purl.obolibrary.org/obo/PR_000023916,none +14.4699418,PR:000023945,http://purl.obolibrary.org/obo/PR_000023945,none +14.4699418,PR:000023967,http://purl.obolibrary.org/obo/PR_000023967,none +14.4699418,PR:000023999,http://purl.obolibrary.org/obo/PR_000023999,none +14.4699418,PR:000024052,http://purl.obolibrary.org/obo/PR_000024052,none +14.4699418,PR:000024148,http://purl.obolibrary.org/obo/PR_000024148,none +14.4699418,PR:000024188,http://purl.obolibrary.org/obo/PR_000024188,none +14.4699418,PR:000024210,http://purl.obolibrary.org/obo/PR_000024210,none +14.4699418,PR:000024227,http://purl.obolibrary.org/obo/PR_000024227,none +14.4699418,PR:000025581,http://purl.obolibrary.org/obo/PR_000025581,none +14.4699418,PR:000026230,http://purl.obolibrary.org/obo/PR_000026230,SUN domain-containing protein 3 +14.4699418,PR:000027935,http://purl.obolibrary.org/obo/PR_000027935,STAT dimer +14.4699418,PR:000029128,http://purl.obolibrary.org/obo/PR_000029128,"NAD kinase 2, mitochondrial" +14.4699418,PR:000029179,http://purl.obolibrary.org/obo/PR_000029179,none +14.4699418,PR:000029243,http://purl.obolibrary.org/obo/PR_000029243,none +14.4699418,PR:000029297,http://purl.obolibrary.org/obo/PR_000029297,a disintegrin and metalloproteinase with thrombospondin motifs 19 +14.4699418,PR:000029497,http://purl.obolibrary.org/obo/PR_000029497,FERM domain-containing protein 5 +14.4699418,PR:000029517,http://purl.obolibrary.org/obo/PR_000029517,G patch domain-containing protein 1 +14.4699418,PR:000029543,http://purl.obolibrary.org/obo/PR_000029543,probable ATP-dependent DNA helicase HFM1 +14.4699418,PR:000029620,http://purl.obolibrary.org/obo/PR_000029620,MARVEL domain-containing protein 3 +14.4699418,PR:000029723,http://purl.obolibrary.org/obo/PR_000029723,ribosomal L1 domain-containing protein 1 +14.4699418,PR:000029724,http://purl.obolibrary.org/obo/PR_000029724,regulator of microtubule dynamics protein 1 +14.4699418,PR:000029797,http://purl.obolibrary.org/obo/PR_000029797,transmembrane protein 127 +14.4699418,PR:000029839,http://purl.obolibrary.org/obo/PR_000029839,tetratricopeptide repeat protein 4 +14.4699418,PR:000029876,http://purl.obolibrary.org/obo/PR_000029876,3'-5' RNA helicase YTHDC2 +14.4699418,PR:000030213,http://purl.obolibrary.org/obo/PR_000030213,solute carrier family 25 member 40 +14.4699418,PR:000030216,http://purl.obolibrary.org/obo/PR_000030216,EF-hand domain-containing family member C2 +14.4699418,PR:000030242,http://purl.obolibrary.org/obo/PR_000030242,E3 ubiquitin-protein ligase TRIM7 +14.4699418,PR:000030605,http://purl.obolibrary.org/obo/PR_000030605,E3 ubiquitin-protein ligase HECTD3 +14.4699418,PR:000030628,http://purl.obolibrary.org/obo/PR_000030628,DENN domain-containing protein 3 +14.4699418,PR:000030692,http://purl.obolibrary.org/obo/PR_000030692,protein dispatched homolog 3 +14.4699418,PR:000030704,http://purl.obolibrary.org/obo/PR_000030704,POTE ankyrin domain family member D +14.4699418,PR:000030781,http://purl.obolibrary.org/obo/PR_000030781,BTB/POZ domain-containing protein 3 +14.4699418,PR:000030819,http://purl.obolibrary.org/obo/PR_000030819,glucose-induced degradation protein 8 homolog +14.4699418,PR:000030826,http://purl.obolibrary.org/obo/PR_000030826,E3 ubiquitin-protein ligase TRIM52 +14.4699418,PR:000030843,http://purl.obolibrary.org/obo/PR_000030843,exonuclease 3'-5' domain-containing protein 2 +14.4699418,PR:000030876,http://purl.obolibrary.org/obo/PR_000030876,DnaJ homolog subfamily B member 8 +14.4699418,PR:000030964,http://purl.obolibrary.org/obo/PR_000030964,glucose-induced degradation protein 4 homolog +14.4699418,PR:000031019,http://purl.obolibrary.org/obo/PR_000031019,arrestin domain-containing protein 1 +14.4699418,PR:000031023,http://purl.obolibrary.org/obo/PR_000031023,OTU domain-containing protein 3 +14.4699418,PR:000031130,http://purl.obolibrary.org/obo/PR_000031130,protein TESPA1 +14.4699418,PR:000031160,http://purl.obolibrary.org/obo/PR_000031160,protein SDE2 homolog +14.4699418,PR:000031180,http://purl.obolibrary.org/obo/PR_000031180,proline-rich transmembrane protein 1 +14.4699418,PR:000031205,http://purl.obolibrary.org/obo/PR_000031205,RANBP2-like and GRIP domain-containing protein 2 +14.4699418,PR:000031236,http://purl.obolibrary.org/obo/PR_000031236,intraflagellar transport protein 46 homolog +14.4699418,PR:000031433,http://purl.obolibrary.org/obo/PR_000031433,probable E3 ubiquitin-protein ligase HECTD2 +14.4699418,PR:000031470,http://purl.obolibrary.org/obo/PR_000031470,AP-5 complex subunit zeta-1 +14.4699418,PR:000031474,http://purl.obolibrary.org/obo/PR_000031474,protein FAM83B +14.4699418,PR:000031492,http://purl.obolibrary.org/obo/PR_000031492,"phosphatidate cytidylyltransferase, mitochondrial" +14.4699418,PR:000031557,http://purl.obolibrary.org/obo/PR_000031557,complex III assembly factor LYRM7 +14.4699418,PR:000031607,http://purl.obolibrary.org/obo/PR_000031607,tetratricopeptide repeat protein 12 +14.4699418,PR:000031637,http://purl.obolibrary.org/obo/PR_000031637,OCIA domain-containing protein 2 +14.4699418,PR:000031778,http://purl.obolibrary.org/obo/PR_000031778,epidermal growth factor-like protein 8 +14.4699418,PR:000031917,http://purl.obolibrary.org/obo/PR_000031917,anaphase-promoting complex subunit 16 +14.4699418,PR:000031969,http://purl.obolibrary.org/obo/PR_000031969,C-type lectin domain family 2 member B +14.4699418,PR:000032074,http://purl.obolibrary.org/obo/PR_000032074,adipolin +14.4699418,PR:000032241,http://purl.obolibrary.org/obo/PR_000032241,MORC family CW-type zinc finger protein 4 +14.4699418,PR:000032286,http://purl.obolibrary.org/obo/PR_000032286,tectonin beta-propeller repeat-containing protein 2 +14.4699418,PR:000032360,http://purl.obolibrary.org/obo/PR_000032360,transmembrane and coiled-coil domains protein 1 +14.4699418,PR:000032550,http://purl.obolibrary.org/obo/PR_000032550,fibronectin type 3 and ankyrin repeat domains protein 1 +14.4699418,PR:000032564,http://purl.obolibrary.org/obo/PR_000032564,transmembrane protein 176A +14.4699418,PR:000032589,http://purl.obolibrary.org/obo/PR_000032589,TLR4 interactor with leucine rich repeats +14.4699418,PR:000032605,http://purl.obolibrary.org/obo/PR_000032605,palmitoyltransferase ZDHHC6 +14.4699418,PR:000033319,http://purl.obolibrary.org/obo/PR_000033319,none +14.4699418,PR:000034322,http://purl.obolibrary.org/obo/PR_000034322,none +14.4699418,PR:000035253,http://purl.obolibrary.org/obo/PR_000035253,none +14.4699418,PR:000035534,http://purl.obolibrary.org/obo/PR_000035534,none +14.4699418,PR:000035959,http://purl.obolibrary.org/obo/PR_000035959,none +14.4699418,PR:000037457,http://purl.obolibrary.org/obo/PR_000037457,none +14.4699418,PR:000042817,http://purl.obolibrary.org/obo/PR_000042817,TOR2A gene translation product +14.4699418,PR:000044414,http://purl.obolibrary.org/obo/PR_000044414,none +14.4699418,PR:000049762,http://purl.obolibrary.org/obo/PR_000049762,none +14.4699418,PR:A4IG61,http://purl.obolibrary.org/obo/PR_A4IG61,none +14.4699418,PR:B0M1H3,http://purl.obolibrary.org/obo/PR_B0M1H3,none +14.4699418,PR:B9DGT7,http://purl.obolibrary.org/obo/PR_B9DGT7,none +14.4699418,PR:G5EC86,http://purl.obolibrary.org/obo/PR_G5EC86,none +14.4699418,PR:O02482,http://purl.obolibrary.org/obo/PR_O02482,none +14.4699418,PR:O04660,http://purl.obolibrary.org/obo/PR_O04660,none +14.4699418,PR:O22788,http://purl.obolibrary.org/obo/PR_O22788,none +14.4699418,PR:O24521,http://purl.obolibrary.org/obo/PR_O24521,none +14.4699418,PR:O35698,http://purl.obolibrary.org/obo/PR_O35698,none +14.4699418,PR:O59748,http://purl.obolibrary.org/obo/PR_O59748,none +14.4699418,PR:O60016,http://purl.obolibrary.org/obo/PR_O60016,none +14.4699418,PR:O65517,http://purl.obolibrary.org/obo/PR_O65517,none +14.4699418,PR:O65683,http://purl.obolibrary.org/obo/PR_O65683,none +14.4699418,PR:O76324,http://purl.obolibrary.org/obo/PR_O76324,none +14.4699418,PR:O80634,http://purl.obolibrary.org/obo/PR_O80634,none +14.4699418,PR:O88536,http://purl.obolibrary.org/obo/PR_O88536,none +14.4699418,PR:O96622,http://purl.obolibrary.org/obo/PR_O96622,none +14.4699418,PR:P0C1S7,http://purl.obolibrary.org/obo/PR_P0C1S7,none +14.4699418,PR:P0CT53,http://purl.obolibrary.org/obo/PR_P0CT53,none +14.4699418,PR:P13800,http://purl.obolibrary.org/obo/PR_P13800,none +14.4699418,PR:P18828,http://purl.obolibrary.org/obo/PR_P18828,none +14.4699418,PR:P24488,http://purl.obolibrary.org/obo/PR_P24488,none +14.4699418,PR:P26260,http://purl.obolibrary.org/obo/PR_P26260,none +14.4699418,PR:P31532,http://purl.obolibrary.org/obo/PR_P31532,none +14.4699418,PR:P33399,http://purl.obolibrary.org/obo/PR_P33399,none +14.4699418,PR:P34241,http://purl.obolibrary.org/obo/PR_P34241,none +14.4699418,PR:P34751,http://purl.obolibrary.org/obo/PR_P34751,none +14.4699418,PR:P38359,http://purl.obolibrary.org/obo/PR_P38359,none +14.4699418,PR:P38758,http://purl.obolibrary.org/obo/PR_P38758,none +14.4699418,PR:P38759,http://purl.obolibrary.org/obo/PR_P38759,none +14.4699418,PR:P38889,http://purl.obolibrary.org/obo/PR_P38889,none +14.4699418,PR:P38891,http://purl.obolibrary.org/obo/PR_P38891,none +14.4699418,PR:P40917,http://purl.obolibrary.org/obo/PR_P40917,none +14.4699418,PR:P41546,http://purl.obolibrary.org/obo/PR_P41546,none +14.4699418,PR:P42801,http://purl.obolibrary.org/obo/PR_P42801,none +14.4699418,PR:P43256,http://purl.obolibrary.org/obo/PR_P43256,none +14.4699418,PR:P43273,http://purl.obolibrary.org/obo/PR_P43273,none +14.4699418,PR:P45975,http://purl.obolibrary.org/obo/PR_P45975,none +14.4699418,PR:P46995,http://purl.obolibrary.org/obo/PR_P46995,none +14.4699418,PR:P47792,http://purl.obolibrary.org/obo/PR_P47792,none +14.4699418,PR:P47822,http://purl.obolibrary.org/obo/PR_P47822,none +14.4699418,PR:P50110,http://purl.obolibrary.org/obo/PR_P50110,none +14.4699418,PR:P53046,http://purl.obolibrary.org/obo/PR_P53046,none +14.4699418,PR:P54150,http://purl.obolibrary.org/obo/PR_P54150,none +14.4699418,PR:P62270,http://purl.obolibrary.org/obo/PR_P62270,none +14.4699418,PR:P70505,http://purl.obolibrary.org/obo/PR_P70505,none +14.4699418,PR:P87058,http://purl.obolibrary.org/obo/PR_P87058,none +14.4699418,PR:P9WPV3,http://purl.obolibrary.org/obo/PR_P9WPV3,none +14.4699418,PR:Q02971,http://purl.obolibrary.org/obo/PR_Q02971,none +14.4699418,PR:Q03388,http://purl.obolibrary.org/obo/PR_Q03388,none +14.4699418,PR:Q06738,http://purl.obolibrary.org/obo/PR_Q06738,none +14.4699418,PR:Q07969,http://purl.obolibrary.org/obo/PR_Q07969,none +14.4699418,PR:Q09410,http://purl.obolibrary.org/obo/PR_Q09410,none +14.4699418,PR:Q0H8B9,http://purl.obolibrary.org/obo/PR_Q0H8B9,none +14.4699418,PR:Q10137,http://purl.obolibrary.org/obo/PR_Q10137,none +14.4699418,PR:Q12748,http://purl.obolibrary.org/obo/PR_Q12748,none +14.4699418,PR:Q20898,http://purl.obolibrary.org/obo/PR_Q20898,none +14.4699418,PR:Q2FYS5,http://purl.obolibrary.org/obo/PR_Q2FYS5,none +14.4699418,PR:Q2V3H2,http://purl.obolibrary.org/obo/PR_Q2V3H2,none +14.4699418,PR:Q38906,http://purl.obolibrary.org/obo/PR_Q38906,none +14.4699418,PR:Q3S4A7,http://purl.obolibrary.org/obo/PR_Q3S4A7,none +14.4699418,PR:Q43295,http://purl.obolibrary.org/obo/PR_Q43295,none +14.4699418,PR:Q4KSH9,http://purl.obolibrary.org/obo/PR_Q4KSH9,none +14.4699418,PR:Q59MA6,http://purl.obolibrary.org/obo/PR_Q59MA6,none +14.4699418,PR:Q59QC7,http://purl.obolibrary.org/obo/PR_Q59QC7,none +14.4699418,PR:Q59XX2,http://purl.obolibrary.org/obo/PR_Q59XX2,none +14.4699418,PR:Q5AD77,http://purl.obolibrary.org/obo/PR_Q5AD77,none +14.4699418,PR:Q5F356,http://purl.obolibrary.org/obo/PR_Q5F356,none +14.4699418,PR:Q5XIS8,http://purl.obolibrary.org/obo/PR_Q5XIS8,none +14.4699418,PR:Q60990,http://purl.obolibrary.org/obo/PR_Q60990,none +14.4699418,PR:Q66GQ3,http://purl.obolibrary.org/obo/PR_Q66GQ3,none +14.4699418,PR:Q66GT5,http://purl.obolibrary.org/obo/PR_Q66GT5,none +14.4699418,PR:Q6DG38,http://purl.obolibrary.org/obo/PR_Q6DG38,none +14.4699418,PR:Q7ZU80,http://purl.obolibrary.org/obo/PR_Q7ZU80,none +14.4699418,PR:Q7ZUC7,http://purl.obolibrary.org/obo/PR_Q7ZUC7,none +14.4699418,PR:Q8BS95,http://purl.obolibrary.org/obo/PR_Q8BS95,none +14.4699418,PR:Q8R311,http://purl.obolibrary.org/obo/PR_Q8R311,none +14.4699418,PR:Q91V08,http://purl.obolibrary.org/obo/PR_Q91V08,none +14.4699418,PR:Q923Y4,http://purl.obolibrary.org/obo/PR_Q923Y4,none +14.4699418,PR:Q93ZM9,http://purl.obolibrary.org/obo/PR_Q93ZM9,none +14.4699418,PR:Q94FY7,http://purl.obolibrary.org/obo/PR_Q94FY7,none +14.4699418,PR:Q96286,http://purl.obolibrary.org/obo/PR_Q96286,none +14.4699418,PR:Q9BUH6,http://purl.obolibrary.org/obo/PR_Q9BUH6,protein PAXX (human) +14.4699418,PR:Q9FVQ6,http://purl.obolibrary.org/obo/PR_Q9FVQ6,none +14.4699418,PR:Q9JIP3,http://purl.obolibrary.org/obo/PR_Q9JIP3,none +14.4699418,PR:Q9LF24,http://purl.obolibrary.org/obo/PR_Q9LF24,none +14.4699418,PR:Q9LND1,http://purl.obolibrary.org/obo/PR_Q9LND1,none +14.4699418,PR:Q9LS42,http://purl.obolibrary.org/obo/PR_Q9LS42,none +14.4699418,PR:Q9LSI7,http://purl.obolibrary.org/obo/PR_Q9LSI7,none +14.4699418,PR:Q9LW62,http://purl.obolibrary.org/obo/PR_Q9LW62,none +14.4699418,PR:Q9LZK4,http://purl.obolibrary.org/obo/PR_Q9LZK4,none +14.4699418,PR:Q9R0I8,http://purl.obolibrary.org/obo/PR_Q9R0I8,none +14.4699418,PR:Q9S7I8,http://purl.obolibrary.org/obo/PR_Q9S7I8,none +14.4699418,PR:Q9SA36,http://purl.obolibrary.org/obo/PR_Q9SA36,none +14.4699418,PR:Q9SGJ6,http://purl.obolibrary.org/obo/PR_Q9SGJ6,none +14.4699418,PR:Q9SNC3,http://purl.obolibrary.org/obo/PR_Q9SNC3,none +14.4699418,PR:Q9SYT0,http://purl.obolibrary.org/obo/PR_Q9SYT0,none +14.4699418,PR:Q9USK8,http://purl.obolibrary.org/obo/PR_Q9USK8,none +14.4699418,PR:Q9VTI8,http://purl.obolibrary.org/obo/PR_Q9VTI8,none +14.4699418,PR:Q9VUF8,http://purl.obolibrary.org/obo/PR_Q9VUF8,none +14.4699418,PR:Q9VWF2,http://purl.obolibrary.org/obo/PR_Q9VWF2,none +14.4699418,PR:Q9ZUP3,http://purl.obolibrary.org/obo/PR_Q9ZUP3,none +14.4699418,SO:0000368,http://purl.obolibrary.org/obo/SO_0000368,transposable_element_insertion_site +14.4699418,SO:0000384,http://purl.obolibrary.org/obo/SO_0000384,OxyS_RNA +14.4699418,SO:0000878,http://purl.obolibrary.org/obo/SO_0000878,monocistronic +14.4699418,SO:0001009,http://purl.obolibrary.org/obo/SO_0001009,DNA_constraint_sequence +14.4699418,SO:0001582,http://purl.obolibrary.org/obo/SO_0001582,initiator_codon_variant +14.4699418,SO:0001845,http://purl.obolibrary.org/obo/SO_0001845,DRE +14.4699418,SO:0002032,http://purl.obolibrary.org/obo/SO_0002032,moR +14.4699418,UBERON:0000116,http://purl.obolibrary.org/obo/UBERON_0000116,lung saccule +14.4699418,UBERON:0000156,http://purl.obolibrary.org/obo/UBERON_0000156,theca externa +14.4699418,UBERON:0001329,http://purl.obolibrary.org/obo/UBERON_0001329,prostate gland anterior lobe +14.4699418,UBERON:0001553,http://purl.obolibrary.org/obo/UBERON_0001553,medial tarsal artery +14.4699418,UBERON:0002092,http://purl.obolibrary.org/obo/UBERON_0002092,brain dura mater +14.4699418,UBERON:0002325,http://purl.obolibrary.org/obo/UBERON_0002325,epithelium of urethra +14.4699418,UBERON:0002440,http://purl.obolibrary.org/obo/UBERON_0002440,inferior cervical ganglion +14.4699418,UBERON:0002631,http://purl.obolibrary.org/obo/UBERON_0002631,cerebral crus +14.4699418,UBERON:0002699,http://purl.obolibrary.org/obo/UBERON_0002699,supraopticohypophysial tract +14.4699418,UBERON:0003046,http://purl.obolibrary.org/obo/UBERON_0003046,ventral acoustic stria +14.4699418,UBERON:0003236,http://purl.obolibrary.org/obo/UBERON_0003236,epithelium of lower jaw +14.4699418,UBERON:0003254,http://purl.obolibrary.org/obo/UBERON_0003254,amniotic ectoderm +14.4699418,UBERON:0003860,http://purl.obolibrary.org/obo/UBERON_0003860,hindlimb mesenchyme +14.4699418,UBERON:0004026,http://purl.obolibrary.org/obo/UBERON_0004026,caudal ganglionic eminence +14.4699418,UBERON:0004822,http://purl.obolibrary.org/obo/UBERON_0004822,extrahepatic bile duct epithelium +14.4699418,UBERON:0004895,http://purl.obolibrary.org/obo/UBERON_0004895,alveolar smooth muscle +14.4699418,UBERON:0004992,http://purl.obolibrary.org/obo/UBERON_0004992,mucosa of descending colon +14.4699418,UBERON:0005348,http://purl.obolibrary.org/obo/UBERON_0005348,ansiform lobule +14.4699418,UBERON:0005424,http://purl.obolibrary.org/obo/UBERON_0005424,presumptive retinal pigmented epithelium +14.4699418,UBERON:0005470,http://purl.obolibrary.org/obo/UBERON_0005470,right umbilical artery +14.4699418,UBERON:0005597,http://purl.obolibrary.org/obo/UBERON_0005597,lung primordium +14.4699418,UBERON:0005973,http://purl.obolibrary.org/obo/UBERON_0005973,blood-inner ear barrier +14.4699418,UBERON:0006140,http://purl.obolibrary.org/obo/UBERON_0006140,palmar digital vein +14.4699418,UBERON:0006194,http://purl.obolibrary.org/obo/UBERON_0006194,renal sinus of right kidney +14.4699418,UBERON:0006334,http://purl.obolibrary.org/obo/UBERON_0006334,posterior lateral line +14.4699418,UBERON:0006359,http://purl.obolibrary.org/obo/UBERON_0006359,mesoduodenum +14.4699418,UBERON:0006493,http://purl.obolibrary.org/obo/UBERON_0006493,C7 segment of cervical spinal cord +14.4699418,UBERON:0006594,http://purl.obolibrary.org/obo/UBERON_0006594,gubernacular cord +14.4699418,UBERON:0006685,http://purl.obolibrary.org/obo/UBERON_0006685,pharyngeal tubercle +14.4699418,UBERON:0006762,http://purl.obolibrary.org/obo/UBERON_0006762,suspensory ligament of lens +14.4699418,UBERON:0006852,http://purl.obolibrary.org/obo/UBERON_0006852,glomerular visceral epithelium +14.4699418,UBERON:0006919,http://purl.obolibrary.org/obo/UBERON_0006919,tongue squamous epithelium +14.4699418,UBERON:0006948,http://purl.obolibrary.org/obo/UBERON_0006948,efferent duct epithelium +14.4699418,UBERON:0007722,http://purl.obolibrary.org/obo/UBERON_0007722,interphalangeal joint of manus +14.4699418,UBERON:0008330,http://purl.obolibrary.org/obo/UBERON_0008330,vestibule of vagina +14.4699418,UBERON:0008783,http://purl.obolibrary.org/obo/UBERON_0008783,dorsal venous arch +14.4699418,UBERON:0008832,http://purl.obolibrary.org/obo/UBERON_0008832,outer spiral sulcus +14.4699418,UBERON:0008838,http://purl.obolibrary.org/obo/UBERON_0008838,metapodial pad +14.4699418,UBERON:0009210,http://purl.obolibrary.org/obo/UBERON_0009210,pharyngeal membrane +14.4699418,UBERON:0009717,http://purl.obolibrary.org/obo/UBERON_0009717,coronal organ +14.4699418,UBERON:0009914,http://purl.obolibrary.org/obo/UBERON_0009914,renal lobule +14.4699418,UBERON:0009984,http://purl.obolibrary.org/obo/UBERON_0009984,medial condyle of femur +14.4699418,UBERON:0010251,http://purl.obolibrary.org/obo/UBERON_0010251,anterior meningeal artery +14.4699418,UBERON:0010277,http://purl.obolibrary.org/obo/UBERON_0010277,mesocardium +14.4699418,UBERON:0010696,http://purl.obolibrary.org/obo/UBERON_0010696,skeleton of pedal acropodium +14.4699418,UBERON:0010869,http://purl.obolibrary.org/obo/UBERON_0010869,calcar +14.4699418,UBERON:0010937,http://purl.obolibrary.org/obo/UBERON_0010937,salpingopharyngeus muscle +14.4699418,UBERON:0011193,http://purl.obolibrary.org/obo/UBERON_0011193,inferior ophthalmic vein +14.4699418,UBERON:0011778,http://purl.obolibrary.org/obo/UBERON_0011778,motor nucleus of vagal nerve +14.4699418,UBERON:0011944,http://purl.obolibrary.org/obo/UBERON_0011944,subintestinal vein +14.4699418,UBERON:0012488,http://purl.obolibrary.org/obo/UBERON_0012488,muscle layer of duodenum +14.4699418,UBERON:0013145,http://purl.obolibrary.org/obo/UBERON_0013145,accessory saphenous vein +14.4699418,UBERON:0013146,http://purl.obolibrary.org/obo/UBERON_0013146,venous system of brain +14.4699418,UBERON:0013776,http://purl.obolibrary.org/obo/UBERON_0013776,skin of palmar/plantar part of autopod +14.4699418,UBERON:0014402,http://purl.obolibrary.org/obo/UBERON_0014402,sex-specific anatomical structure +14.4699418,UBERON:0014765,http://purl.obolibrary.org/obo/UBERON_0014765,crus of diaphragm +14.4699418,UBERON:0015146,http://purl.obolibrary.org/obo/UBERON_0015146,manus hair +14.4699418,UBERON:0015855,http://purl.obolibrary.org/obo/UBERON_0015855,ventral ectodermal ridge +14.4699418,UBERON:0016498,http://purl.obolibrary.org/obo/UBERON_0016498,intestinal-cloacal junction +14.4699418,UBERON:0018111,http://purl.obolibrary.org/obo/UBERON_0018111,muscle layer of rectum +14.4699418,UBERON:0018673,http://purl.obolibrary.org/obo/UBERON_0018673,neck of fibula +14.4699418,UBERON:0034936,http://purl.obolibrary.org/obo/UBERON_0034936,pars plana of ciliary body +14.4699418,UBERON:0034999,http://purl.obolibrary.org/obo/UBERON_0034999,posterolateral cortical amygdaloid nucleus +14.4699418,UBERON:2000073,http://purl.obolibrary.org/obo/UBERON_2000073,somite 5 +14.4699418,UBERON:2000711,http://purl.obolibrary.org/obo/UBERON_2000711,DEL +14.4699418,UBERON:2000857,http://purl.obolibrary.org/obo/UBERON_2000857,somite 4 +14.4699418,UBERON:2001244,http://purl.obolibrary.org/obo/UBERON_2001244,epibranchial 5 cartilage +14.4699418,UBERON:2005012,http://purl.obolibrary.org/obo/UBERON_2005012,afferent filamental artery +14.4699418,UBERON:2005039,http://purl.obolibrary.org/obo/UBERON_2005039,anterior lateral mesoderm +14.4699418,UBERON:3010100,http://purl.obolibrary.org/obo/UBERON_3010100,mental gland +14.5569532,CHEBI:100147,http://purl.obolibrary.org/obo/CHEBI_100147,nalidixic acid +14.5569532,CHEBI:134363,http://purl.obolibrary.org/obo/CHEBI_134363,tertiary amine oxide +14.5569532,CHEBI:15724,http://purl.obolibrary.org/obo/CHEBI_15724,trimethylamine N-oxide +14.5569532,CHEBI:16961,http://purl.obolibrary.org/obo/CHEBI_16961,monoacylglycerol phosphate +14.5569532,CHEBI:21644,http://purl.obolibrary.org/obo/CHEBI_21644,N-acyl-L-amino acid +14.5569532,CHEBI:22501,http://purl.obolibrary.org/obo/CHEBI_22501,aminodiol +14.5569532,CHEBI:22958,http://purl.obolibrary.org/obo/CHEBI_22958,butenedioic acid +14.5569532,CHEBI:23150,http://purl.obolibrary.org/obo/CHEBI_23150,chlorophenol +14.5569532,CHEBI:23230,http://purl.obolibrary.org/obo/CHEBI_23230,chromanes +14.5569532,CHEBI:23628,http://purl.obolibrary.org/obo/CHEBI_23628,deoxyhexose +14.5569532,CHEBI:23639,http://purl.obolibrary.org/obo/CHEBI_23639,deoxy sugar +14.5569532,CHEBI:24028,http://purl.obolibrary.org/obo/CHEBI_24028,iron(3+) chelator +14.5569532,CHEBI:2427,http://purl.obolibrary.org/obo/CHEBI_2427,Acid amide +14.5569532,CHEBI:24469,http://purl.obolibrary.org/obo/CHEBI_24469,haloalkane +14.5569532,CHEBI:24937,http://purl.obolibrary.org/obo/CHEBI_24937,jasmonates +14.5569532,CHEBI:25061,http://purl.obolibrary.org/obo/CHEBI_25061,lipopeptide antibiotic +14.5569532,CHEBI:26672,http://purl.obolibrary.org/obo/CHEBI_26672,siderophore +14.5569532,CHEBI:26961,http://purl.obolibrary.org/obo/CHEBI_26961,thiophenes +14.5569532,CHEBI:27177,http://purl.obolibrary.org/obo/CHEBI_27177,L-tyrosine derivative +14.5569532,CHEBI:27452,http://purl.obolibrary.org/obo/CHEBI_27452,styrene +14.5569532,CHEBI:27856,http://purl.obolibrary.org/obo/CHEBI_27856,acetamide +14.5569532,CHEBI:27915,http://purl.obolibrary.org/obo/CHEBI_27915,melamine +14.5569532,CHEBI:28824,http://purl.obolibrary.org/obo/CHEBI_28824,stigmasterol +14.5569532,CHEBI:28842,http://purl.obolibrary.org/obo/CHEBI_28842,octadecanoic acid +14.5569532,CHEBI:30353,http://purl.obolibrary.org/obo/CHEBI_30353,isopropyl group +14.5569532,CHEBI:30768,http://purl.obolibrary.org/obo/CHEBI_30768,propionic acid +14.5569532,CHEBI:32035,http://purl.obolibrary.org/obo/CHEBI_32035,potassium hydroxide +14.5569532,CHEBI:32145,http://purl.obolibrary.org/obo/CHEBI_32145,sodium hydroxide +14.5569532,CHEBI:32957,http://purl.obolibrary.org/obo/CHEBI_32957,lysophosphatidic acids +14.5569532,CHEBI:33286,http://purl.obolibrary.org/obo/CHEBI_33286,agrochemical +14.5569532,CHEBI:34594,http://purl.obolibrary.org/obo/CHEBI_34594,Butylate +14.5569532,CHEBI:35150,http://purl.obolibrary.org/obo/CHEBI_35150,calcium hydroxide +14.5569532,CHEBI:35549,http://purl.obolibrary.org/obo/CHEBI_35549,perfluorooctanoic acid +14.5569532,CHEBI:35785,http://purl.obolibrary.org/obo/CHEBI_35785,sphingoid +14.5569532,CHEBI:35910,http://purl.obolibrary.org/obo/CHEBI_35910,2-oxo monocarboxylic acid +14.5569532,CHEBI:36606,http://purl.obolibrary.org/obo/CHEBI_36606,acid anhydride +14.5569532,CHEBI:36835,http://purl.obolibrary.org/obo/CHEBI_36835,3alpha-hydroxy steroid +14.5569532,CHEBI:37852,http://purl.obolibrary.org/obo/CHEBI_37852,organoammonium sulfate salt +14.5569532,CHEBI:37947,http://purl.obolibrary.org/obo/CHEBI_37947,benzothiazoles +14.5569532,CHEBI:38175,http://purl.obolibrary.org/obo/CHEBI_38175,"triamino-1,3,5-triazine" +14.5569532,CHEBI:38275,http://purl.obolibrary.org/obo/CHEBI_38275,pyrrolidinone +14.5569532,CHEBI:38697,http://purl.obolibrary.org/obo/CHEBI_38697,anthocyanin +14.5569532,CHEBI:38774,http://purl.obolibrary.org/obo/CHEBI_38774,hydroxyquinoline +14.5569532,CHEBI:41264,http://purl.obolibrary.org/obo/CHEBI_41264,butyl group +14.5569532,CHEBI:46670,http://purl.obolibrary.org/obo/CHEBI_46670,serpentine mineral +14.5569532,CHEBI:4670,http://purl.obolibrary.org/obo/CHEBI_4670,dobutamine +14.5569532,CHEBI:50131,http://purl.obolibrary.org/obo/CHEBI_50131,5-aza-2'-deoxycytidine +14.5569532,CHEBI:50505,http://purl.obolibrary.org/obo/CHEBI_50505,sweetening agent +14.5569532,CHEBI:51324,http://purl.obolibrary.org/obo/CHEBI_51324,vinylarene +14.5569532,CHEBI:60616,http://purl.obolibrary.org/obo/CHEBI_60616,polythiophene polymer +14.5569532,CHEBI:61376,http://purl.obolibrary.org/obo/CHEBI_61376,atactic polymer +14.5569532,CHEBI:61777,http://purl.obolibrary.org/obo/CHEBI_61777,terpene glycoside +14.5569532,CHEBI:64730,http://purl.obolibrary.org/obo/CHEBI_64730,collagen cross-link +14.5569532,CHEBI:65254,http://purl.obolibrary.org/obo/CHEBI_65254,LRH-1 agonist +14.5569532,CHEBI:6804,http://purl.obolibrary.org/obo/CHEBI_6804,methacholine +14.5569532,CHEBI:73360,http://purl.obolibrary.org/obo/CHEBI_73360,EC 3.4.11.18 (methionyl aminopeptidase) inhibitor +14.5569532,CHEBI:73361,http://purl.obolibrary.org/obo/CHEBI_73361,methionine aminopeptidase 2 inhibitor +14.5569532,CHEBI:73537,http://purl.obolibrary.org/obo/CHEBI_73537,"1,8-naphthyridine derivative" +14.5569532,CHEBI:76787,http://purl.obolibrary.org/obo/CHEBI_76787,EC 3.4.11.* (aminopeptidase) inhibitor +14.5569532,CHEBI:80628,http://purl.obolibrary.org/obo/CHEBI_80628,O-Phosphoseryl-tRNA(Sec) +14.5569532,CHEBI:86267,http://purl.obolibrary.org/obo/CHEBI_86267,nitrotyrosine +14.5569532,CHEBI:86426,http://purl.obolibrary.org/obo/CHEBI_86426,triazole antifungal agent +14.5569532,CL:0000560,http://purl.obolibrary.org/obo/CL_0000560,band form neutrophil +14.5569532,CL:0000691,http://purl.obolibrary.org/obo/CL_0000691,stellate interneuron +14.5569532,CL:0000870,http://purl.obolibrary.org/obo/CL_0000870,Peyer's patch macrophage +14.5569532,CL:0000960,http://purl.obolibrary.org/obo/CL_0000960,T3 B cell +14.5569532,CL:0002493,http://purl.obolibrary.org/obo/CL_0002493,strial basal cell +14.5569532,CL:0002545,http://purl.obolibrary.org/obo/CL_0002545,thoracic aorta endothelial cell +14.5569532,CL:0002553,http://purl.obolibrary.org/obo/CL_0002553,fibroblast of lung +14.5569532,DRUGBANK:DB00061,http://purl.obolibrary.org/obo/DRUGBANK_DB00061,none +14.5569532,DRUGBANK:DB01145,http://purl.obolibrary.org/obo/DRUGBANK_DB01145,none +14.5569532,DRUGBANK:DB01397,http://purl.obolibrary.org/obo/DRUGBANK_DB01397,none +14.5569532,DRUGBANK:DB01458,http://purl.obolibrary.org/obo/DRUGBANK_DB01458,none +14.5569532,DRUGBANK:DB01932,http://purl.obolibrary.org/obo/DRUGBANK_DB01932,none +14.5569532,DRUGBANK:DB02055,http://purl.obolibrary.org/obo/DRUGBANK_DB02055,none +14.5569532,DRUGBANK:DB02230,http://purl.obolibrary.org/obo/DRUGBANK_DB02230,none +14.5569532,DRUGBANK:DB02699,http://purl.obolibrary.org/obo/DRUGBANK_DB02699,none +14.5569532,DRUGBANK:DB02825,http://purl.obolibrary.org/obo/DRUGBANK_DB02825,none +14.5569532,DRUGBANK:DB02844,http://purl.obolibrary.org/obo/DRUGBANK_DB02844,none +14.5569532,DRUGBANK:DB02910,http://purl.obolibrary.org/obo/DRUGBANK_DB02910,none +14.5569532,DRUGBANK:DB03204,http://purl.obolibrary.org/obo/DRUGBANK_DB03204,none +14.5569532,DRUGBANK:DB03394,http://purl.obolibrary.org/obo/DRUGBANK_DB03394,none +14.5569532,DRUGBANK:DB03610,http://purl.obolibrary.org/obo/DRUGBANK_DB03610,none +14.5569532,DRUGBANK:DB04130,http://purl.obolibrary.org/obo/DRUGBANK_DB04130,none +14.5569532,DRUGBANK:DB04350,http://purl.obolibrary.org/obo/DRUGBANK_DB04350,none +14.5569532,DRUGBANK:DB04404,http://purl.obolibrary.org/obo/DRUGBANK_DB04404,none +14.5569532,DRUGBANK:DB04837,http://purl.obolibrary.org/obo/DRUGBANK_DB04837,none +14.5569532,DRUGBANK:DB05461,http://purl.obolibrary.org/obo/DRUGBANK_DB05461,none +14.5569532,DRUGBANK:DB05966,http://purl.obolibrary.org/obo/DRUGBANK_DB05966,none +14.5569532,DRUGBANK:DB06111,http://purl.obolibrary.org/obo/DRUGBANK_DB06111,none +14.5569532,DRUGBANK:DB06163,http://purl.obolibrary.org/obo/DRUGBANK_DB06163,none +14.5569532,DRUGBANK:DB06169,http://purl.obolibrary.org/obo/DRUGBANK_DB06169,none +14.5569532,DRUGBANK:DB06529,http://purl.obolibrary.org/obo/DRUGBANK_DB06529,none +14.5569532,DRUGBANK:DB06550,http://purl.obolibrary.org/obo/DRUGBANK_DB06550,none +14.5569532,DRUGBANK:DB06731,http://purl.obolibrary.org/obo/DRUGBANK_DB06731,none +14.5569532,DRUGBANK:DB08857,http://purl.obolibrary.org/obo/DRUGBANK_DB08857,none +14.5569532,DRUGBANK:DB08892,http://purl.obolibrary.org/obo/DRUGBANK_DB08892,none +14.5569532,DRUGBANK:DB08945,http://purl.obolibrary.org/obo/DRUGBANK_DB08945,none +14.5569532,DRUGBANK:DB09103,http://purl.obolibrary.org/obo/DRUGBANK_DB09103,none +14.5569532,DRUGBANK:DB09534,http://purl.obolibrary.org/obo/DRUGBANK_DB09534,none +14.5569532,DRUGBANK:DB11175,http://purl.obolibrary.org/obo/DRUGBANK_DB11175,none +14.5569532,DRUGBANK:DB11436,http://purl.obolibrary.org/obo/DRUGBANK_DB11436,none +14.5569532,DRUGBANK:DB11669,http://purl.obolibrary.org/obo/DRUGBANK_DB11669,none +14.5569532,DRUGBANK:DB11731,http://purl.obolibrary.org/obo/DRUGBANK_DB11731,none +14.5569532,DRUGBANK:DB11749,http://purl.obolibrary.org/obo/DRUGBANK_DB11749,none +14.5569532,DRUGBANK:DB11796,http://purl.obolibrary.org/obo/DRUGBANK_DB11796,none +14.5569532,DRUGBANK:DB11953,http://purl.obolibrary.org/obo/DRUGBANK_DB11953,none +14.5569532,DRUGBANK:DB11975,http://purl.obolibrary.org/obo/DRUGBANK_DB11975,none +14.5569532,DRUGBANK:DB12041,http://purl.obolibrary.org/obo/DRUGBANK_DB12041,none +14.5569532,DRUGBANK:DB12071,http://purl.obolibrary.org/obo/DRUGBANK_DB12071,none +14.5569532,DRUGBANK:DB12080,http://purl.obolibrary.org/obo/DRUGBANK_DB12080,none +14.5569532,DRUGBANK:DB12209,http://purl.obolibrary.org/obo/DRUGBANK_DB12209,none +14.5569532,DRUGBANK:DB12258,http://purl.obolibrary.org/obo/DRUGBANK_DB12258,none +14.5569532,DRUGBANK:DB12292,http://purl.obolibrary.org/obo/DRUGBANK_DB12292,none +14.5569532,DRUGBANK:DB12303,http://purl.obolibrary.org/obo/DRUGBANK_DB12303,none +14.5569532,DRUGBANK:DB12305,http://purl.obolibrary.org/obo/DRUGBANK_DB12305,none +14.5569532,DRUGBANK:DB12333,http://purl.obolibrary.org/obo/DRUGBANK_DB12333,none +14.5569532,DRUGBANK:DB12432,http://purl.obolibrary.org/obo/DRUGBANK_DB12432,none +14.5569532,DRUGBANK:DB12562,http://purl.obolibrary.org/obo/DRUGBANK_DB12562,none +14.5569532,DRUGBANK:DB12572,http://purl.obolibrary.org/obo/DRUGBANK_DB12572,none +14.5569532,DRUGBANK:DB12579,http://purl.obolibrary.org/obo/DRUGBANK_DB12579,none +14.5569532,DRUGBANK:DB12587,http://purl.obolibrary.org/obo/DRUGBANK_DB12587,none +14.5569532,DRUGBANK:DB12742,http://purl.obolibrary.org/obo/DRUGBANK_DB12742,none +14.5569532,DRUGBANK:DB12796,http://purl.obolibrary.org/obo/DRUGBANK_DB12796,none +14.5569532,DRUGBANK:DB12805,http://purl.obolibrary.org/obo/DRUGBANK_DB12805,none +14.5569532,DRUGBANK:DB12807,http://purl.obolibrary.org/obo/DRUGBANK_DB12807,none +14.5569532,DRUGBANK:DB12928,http://purl.obolibrary.org/obo/DRUGBANK_DB12928,none +14.5569532,DRUGBANK:DB12956,http://purl.obolibrary.org/obo/DRUGBANK_DB12956,none +14.5569532,DRUGBANK:DB12986,http://purl.obolibrary.org/obo/DRUGBANK_DB12986,none +14.5569532,DRUGBANK:DB12993,http://purl.obolibrary.org/obo/DRUGBANK_DB12993,none +14.5569532,DRUGBANK:DB13086,http://purl.obolibrary.org/obo/DRUGBANK_DB13086,none +14.5569532,DRUGBANK:DB13303,http://purl.obolibrary.org/obo/DRUGBANK_DB13303,none +14.5569532,DRUGBANK:DB13325,http://purl.obolibrary.org/obo/DRUGBANK_DB13325,none +14.5569532,DRUGBANK:DB13354,http://purl.obolibrary.org/obo/DRUGBANK_DB13354,none +14.5569532,DRUGBANK:DB13486,http://purl.obolibrary.org/obo/DRUGBANK_DB13486,none +14.5569532,DRUGBANK:DB13489,http://purl.obolibrary.org/obo/DRUGBANK_DB13489,none +14.5569532,DRUGBANK:DB13565,http://purl.obolibrary.org/obo/DRUGBANK_DB13565,none +14.5569532,DRUGBANK:DB13592,http://purl.obolibrary.org/obo/DRUGBANK_DB13592,none +14.5569532,DRUGBANK:DB13612,http://purl.obolibrary.org/obo/DRUGBANK_DB13612,none +14.5569532,DRUGBANK:DB13678,http://purl.obolibrary.org/obo/DRUGBANK_DB13678,none +14.5569532,DRUGBANK:DB13739,http://purl.obolibrary.org/obo/DRUGBANK_DB13739,none +14.5569532,DRUGBANK:DB13883,http://purl.obolibrary.org/obo/DRUGBANK_DB13883,none +14.5569532,DRUGBANK:DB13978,http://purl.obolibrary.org/obo/DRUGBANK_DB13978,none +14.5569532,DRUGBANK:DB13992,http://purl.obolibrary.org/obo/DRUGBANK_DB13992,none +14.5569532,DRUGBANK:DB14121,http://purl.obolibrary.org/obo/DRUGBANK_DB14121,none +14.5569532,DRUGBANK:DB14194,http://purl.obolibrary.org/obo/DRUGBANK_DB14194,none +14.5569532,DRUGBANK:DB14824,http://purl.obolibrary.org/obo/DRUGBANK_DB14824,none +14.5569532,DRUGBANK:DB14873,http://purl.obolibrary.org/obo/DRUGBANK_DB14873,none +14.5569532,DRUGBANK:DB14895,http://purl.obolibrary.org/obo/DRUGBANK_DB14895,none +14.5569532,DRUGBANK:DB14907,http://purl.obolibrary.org/obo/DRUGBANK_DB14907,none +14.5569532,DRUGBANK:DB14945,http://purl.obolibrary.org/obo/DRUGBANK_DB14945,none +14.5569532,DRUGBANK:DB15011,http://purl.obolibrary.org/obo/DRUGBANK_DB15011,none +14.5569532,DRUGBANK:DB15038,http://purl.obolibrary.org/obo/DRUGBANK_DB15038,none +14.5569532,DRUGBANK:DB15114,http://purl.obolibrary.org/obo/DRUGBANK_DB15114,none +14.5569532,DRUGBANK:DB15133,http://purl.obolibrary.org/obo/DRUGBANK_DB15133,none +14.5569532,DRUGBANK:DB15317,http://purl.obolibrary.org/obo/DRUGBANK_DB15317,none +14.5569532,DRUGBANK:DB15408,http://purl.obolibrary.org/obo/DRUGBANK_DB15408,none +14.5569532,DRUGBANK:DB15469,http://purl.obolibrary.org/obo/DRUGBANK_DB15469,none +14.5569532,DRUGBANK:DB15489,http://purl.obolibrary.org/obo/DRUGBANK_DB15489,none +14.5569532,DRUGBANK:DB15525,http://purl.obolibrary.org/obo/DRUGBANK_DB15525,none +14.5569532,DRUGBANK:DB15550,http://purl.obolibrary.org/obo/DRUGBANK_DB15550,none +14.5569532,DRUGBANK:DB15622,http://purl.obolibrary.org/obo/DRUGBANK_DB15622,none +14.5569532,DRUGBANK:DB15646,http://purl.obolibrary.org/obo/DRUGBANK_DB15646,none +14.5569532,DRUGBANK:DB15945,http://purl.obolibrary.org/obo/DRUGBANK_DB15945,none +14.5569532,DRUGBANK:DB15965,http://purl.obolibrary.org/obo/DRUGBANK_DB15965,none +14.5569532,DRUGBANK:DB16031,http://purl.obolibrary.org/obo/DRUGBANK_DB16031,none +14.5569532,DRUGBANK:DB16205,http://purl.obolibrary.org/obo/DRUGBANK_DB16205,none +14.5569532,DRUGBANK:DB16231,http://purl.obolibrary.org/obo/DRUGBANK_DB16231,none +14.5569532,DRUGBANK:DB16278,http://purl.obolibrary.org/obo/DRUGBANK_DB16278,none +14.5569532,DRUGBANK:DB16345,http://purl.obolibrary.org/obo/DRUGBANK_DB16345,none +14.5569532,DRUGBANK:DB16349,http://purl.obolibrary.org/obo/DRUGBANK_DB16349,none +14.5569532,GO:0000098,http://purl.obolibrary.org/obo/GO_0000098,sulfur amino acid catabolic process +14.5569532,GO:0000133,http://purl.obolibrary.org/obo/GO_0000133,polarisome +14.5569532,GO:0000578,http://purl.obolibrary.org/obo/GO_0000578,embryonic axis specification +14.5569532,GO:0000990,http://purl.obolibrary.org/obo/GO_0000990,none +14.5569532,GO:0000996,http://purl.obolibrary.org/obo/GO_0000996,none +14.5569532,GO:0001705,http://purl.obolibrary.org/obo/GO_0001705,ectoderm formation +14.5569532,GO:0001888,http://purl.obolibrary.org/obo/GO_0001888,glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity +14.5569532,GO:0001990,http://purl.obolibrary.org/obo/GO_0001990,regulation of systemic arterial blood pressure by hormone +14.5569532,GO:0002090,http://purl.obolibrary.org/obo/GO_0002090,regulation of receptor internalization +14.5569532,GO:0002213,http://purl.obolibrary.org/obo/GO_0002213,defense response to insect +14.5569532,GO:0002266,http://purl.obolibrary.org/obo/GO_0002266,follicular dendritic cell activation +14.5569532,GO:0002273,http://purl.obolibrary.org/obo/GO_0002273,plasmacytoid dendritic cell differentiation +14.5569532,GO:0002355,http://purl.obolibrary.org/obo/GO_0002355,detection of tumor cell +14.5569532,GO:0002441,http://purl.obolibrary.org/obo/GO_0002441,histamine secretion involved in inflammatory response +14.5569532,GO:0002575,http://purl.obolibrary.org/obo/GO_0002575,basophil chemotaxis +14.5569532,GO:0002643,http://purl.obolibrary.org/obo/GO_0002643,regulation of tolerance induction +14.5569532,GO:0002922,http://purl.obolibrary.org/obo/GO_0002922,positive regulation of humoral immune response +14.5569532,GO:0003044,http://purl.obolibrary.org/obo/GO_0003044,regulation of systemic arterial blood pressure mediated by a chemical signal +14.5569532,GO:0003206,http://purl.obolibrary.org/obo/GO_0003206,cardiac chamber morphogenesis +14.5569532,GO:0004073,http://purl.obolibrary.org/obo/GO_0004073,aspartate-semialdehyde dehydrogenase activity +14.5569532,GO:0006235,http://purl.obolibrary.org/obo/GO_0006235,dTTP biosynthetic process +14.5569532,GO:0007141,http://purl.obolibrary.org/obo/GO_0007141,male meiosis I +14.5569532,GO:0007266,http://purl.obolibrary.org/obo/GO_0007266,Rho protein signal transduction +14.5569532,GO:0008441,http://purl.obolibrary.org/obo/GO_0008441,"3'(2'),5'-bisphosphate nucleotidase activity" +14.5569532,GO:0008777,http://purl.obolibrary.org/obo/GO_0008777,acetylornithine deacetylase activity +14.5569532,GO:0008781,http://purl.obolibrary.org/obo/GO_0008781,N-acylneuraminate cytidylyltransferase activity +14.5569532,GO:0008841,http://purl.obolibrary.org/obo/GO_0008841,dihydrofolate synthase activity +14.5569532,GO:0008877,http://purl.obolibrary.org/obo/GO_0008877,glucose-1-phosphatase activity +14.5569532,GO:0008885,http://purl.obolibrary.org/obo/GO_0008885,glutathionylspermidine synthase activity +14.5569532,GO:0008965,http://purl.obolibrary.org/obo/GO_0008965,phosphoenolpyruvate-protein phosphotransferase activity +14.5569532,GO:0009071,http://purl.obolibrary.org/obo/GO_0009071,serine family amino acid catabolic process +14.5569532,GO:0009136,http://purl.obolibrary.org/obo/GO_0009136,purine nucleoside diphosphate biosynthetic process +14.5569532,GO:0009138,http://purl.obolibrary.org/obo/GO_0009138,pyrimidine nucleoside diphosphate metabolic process +14.5569532,GO:0009180,http://purl.obolibrary.org/obo/GO_0009180,purine ribonucleoside diphosphate biosynthetic process +14.5569532,GO:0009193,http://purl.obolibrary.org/obo/GO_0009193,pyrimidine ribonucleoside diphosphate metabolic process +14.5569532,GO:0009684,http://purl.obolibrary.org/obo/GO_0009684,indoleacetic acid biosynthetic process +14.5569532,GO:0009689,http://purl.obolibrary.org/obo/GO_0009689,induction of phytoalexin biosynthetic process +14.5569532,GO:0009824,http://purl.obolibrary.org/obo/GO_0009824,AMP dimethylallyltransferase activity +14.5569532,GO:0009897,http://purl.obolibrary.org/obo/GO_0009897,external side of plasma membrane +14.5569532,GO:0009948,http://purl.obolibrary.org/obo/GO_0009948,anterior/posterior axis specification +14.5569532,GO:0010182,http://purl.obolibrary.org/obo/GO_0010182,sugar mediated signaling pathway +14.5569532,GO:0010187,http://purl.obolibrary.org/obo/GO_0010187,negative regulation of seed germination +14.5569532,GO:0010268,http://purl.obolibrary.org/obo/GO_0010268,brassinosteroid homeostasis +14.5569532,GO:0010282,http://purl.obolibrary.org/obo/GO_0010282,senescence-associated vacuole +14.5569532,GO:0010951,http://purl.obolibrary.org/obo/GO_0010951,negative regulation of endopeptidase activity +14.5569532,GO:0014848,http://purl.obolibrary.org/obo/GO_0014848,urinary tract smooth muscle contraction +14.5569532,GO:0014897,http://purl.obolibrary.org/obo/GO_0014897,striated muscle hypertrophy +14.5569532,GO:0015012,http://purl.obolibrary.org/obo/GO_0015012,heparan sulfate proteoglycan biosynthetic process +14.5569532,GO:0015204,http://purl.obolibrary.org/obo/GO_0015204,urea transmembrane transporter activity +14.5569532,GO:0015265,http://purl.obolibrary.org/obo/GO_0015265,urea channel activity +14.5569532,GO:0015293,http://purl.obolibrary.org/obo/GO_0015293,symporter activity +14.5569532,GO:0015294,http://purl.obolibrary.org/obo/GO_0015294,solute:cation symporter activity +14.5569532,GO:0015759,http://purl.obolibrary.org/obo/GO_0015759,beta-glucoside transport +14.5569532,GO:0015856,http://purl.obolibrary.org/obo/GO_0015856,cytosine transport +14.5569532,GO:0015861,http://purl.obolibrary.org/obo/GO_0015861,cytidine transport +14.5569532,GO:0015883,http://purl.obolibrary.org/obo/GO_0015883,FAD transport +14.5569532,GO:0016226,http://purl.obolibrary.org/obo/GO_0016226,iron-sulfur cluster assembly +14.5569532,GO:0016264,http://purl.obolibrary.org/obo/GO_0016264,gap junction assembly +14.5569532,GO:0016272,http://purl.obolibrary.org/obo/GO_0016272,prefoldin complex +14.5569532,GO:0016314,http://purl.obolibrary.org/obo/GO_0016314,"phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase activity" +14.5569532,GO:0016584,http://purl.obolibrary.org/obo/GO_0016584,nucleosome positioning +14.5569532,GO:0016587,http://purl.obolibrary.org/obo/GO_0016587,Isw1 complex +14.5569532,GO:0016632,http://purl.obolibrary.org/obo/GO_0016632,"oxidoreductase activity, acting on the CH-CH group of donors, cytochrome as acceptor" +14.5569532,GO:0016707,http://purl.obolibrary.org/obo/GO_0016707,gibberellin 3-beta-dioxygenase activity +14.5569532,GO:0016987,http://purl.obolibrary.org/obo/GO_0016987,sigma factor activity +14.5569532,GO:0018345,http://purl.obolibrary.org/obo/GO_0018345,protein palmitoylation +14.5569532,GO:0018623,http://purl.obolibrary.org/obo/GO_0018623,"benzoate 1,2-dioxygenase activity" +14.5569532,GO:0018638,http://purl.obolibrary.org/obo/GO_0018638,toluene 4-monooxygenase activity +14.5569532,GO:0018760,http://purl.obolibrary.org/obo/GO_0018760,thiocyanate hydrolase activity +14.5569532,GO:0018786,http://purl.obolibrary.org/obo/GO_0018786,haloalkane dehalogenase activity +14.5569532,GO:0019307,http://purl.obolibrary.org/obo/GO_0019307,mannose biosynthetic process +14.5569532,GO:0019326,http://purl.obolibrary.org/obo/GO_0019326,nitrotoluene metabolic process +14.5569532,GO:0019646,http://purl.obolibrary.org/obo/GO_0019646,aerobic electron transport chain +14.5569532,GO:0021801,http://purl.obolibrary.org/obo/GO_0021801,cerebral cortex radial glia-guided migration +14.5569532,GO:0021852,http://purl.obolibrary.org/obo/GO_0021852,pyramidal neuron migration to cerebral cortex +14.5569532,GO:0021915,http://purl.obolibrary.org/obo/GO_0021915,neural tube development +14.5569532,GO:0022030,http://purl.obolibrary.org/obo/GO_0022030,telencephalon glial cell migration +14.5569532,GO:0030801,http://purl.obolibrary.org/obo/GO_0030801,none +14.5569532,GO:0030816,http://purl.obolibrary.org/obo/GO_0030816,none +14.5569532,GO:0031163,http://purl.obolibrary.org/obo/GO_0031163,metallo-sulfur cluster assembly +14.5569532,GO:0031281,http://purl.obolibrary.org/obo/GO_0031281,positive regulation of cyclase activity +14.5569532,GO:0031445,http://purl.obolibrary.org/obo/GO_0031445,regulation of heterochromatin assembly +14.5569532,GO:0031469,http://purl.obolibrary.org/obo/GO_0031469,polyhedral organelle +14.5569532,GO:0031547,http://purl.obolibrary.org/obo/GO_0031547,brain-derived neurotrophic factor receptor signaling pathway +14.5569532,GO:0031627,http://purl.obolibrary.org/obo/GO_0031627,telomeric loop formation +14.5569532,GO:0031914,http://purl.obolibrary.org/obo/GO_0031914,negative regulation of synaptic plasticity +14.5569532,GO:0032043,http://purl.obolibrary.org/obo/GO_0032043,mitochondrial DNA catabolic process +14.5569532,GO:0032467,http://purl.obolibrary.org/obo/GO_0032467,positive regulation of cytokinesis +14.5569532,GO:0032608,http://purl.obolibrary.org/obo/GO_0032608,interferon-beta production +14.5569532,GO:0032776,http://purl.obolibrary.org/obo/GO_0032776,DNA methylation on cytosine +14.5569532,GO:0032815,http://purl.obolibrary.org/obo/GO_0032815,negative regulation of natural killer cell activation +14.5569532,GO:0033353,http://purl.obolibrary.org/obo/GO_0033353,S-adenosylmethionine cycle +14.5569532,GO:0033700,http://purl.obolibrary.org/obo/GO_0033700,phospholipid efflux +14.5569532,GO:0033815,http://purl.obolibrary.org/obo/GO_0033815,biphenyl synthase activity +14.5569532,GO:0033816,http://purl.obolibrary.org/obo/GO_0033816,diaminobutyrate acetyltransferase activity +14.5569532,GO:0033872,http://purl.obolibrary.org/obo/GO_0033872,[heparan sulfate]-glucosamine 3-sulfotransferase 3 activity +14.5569532,GO:0034485,http://purl.obolibrary.org/obo/GO_0034485,"phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity" +14.5569532,GO:0035066,http://purl.obolibrary.org/obo/GO_0035066,positive regulation of histone acetylation +14.5569532,GO:0035236,http://purl.obolibrary.org/obo/GO_0035236,proctolin receptor activity +14.5569532,GO:0035539,http://purl.obolibrary.org/obo/GO_0035539,"8-oxo-7,8-dihydrodeoxyguanosine triphosphate pyrophosphatase activity" +14.5569532,GO:0035809,http://purl.obolibrary.org/obo/GO_0035809,regulation of urine volume +14.5569532,GO:0035904,http://purl.obolibrary.org/obo/GO_0035904,aorta development +14.5569532,GO:0036039,http://purl.obolibrary.org/obo/GO_0036039,curcumin metabolic process +14.5569532,GO:0036236,http://purl.obolibrary.org/obo/GO_0036236,acyl glucuronidation +14.5569532,GO:0036290,http://purl.obolibrary.org/obo/GO_0036290,protein trans-autophosphorylation +14.5569532,GO:0036318,http://purl.obolibrary.org/obo/GO_0036318,peptide pheromone receptor activity +14.5569532,GO:0038003,http://purl.obolibrary.org/obo/GO_0038003,G protein-coupled opioid receptor signaling pathway +14.5569532,GO:0038150,http://purl.obolibrary.org/obo/GO_0038150,C-C chemokine receptor CCR2 signaling pathway +14.5569532,GO:0038151,http://purl.obolibrary.org/obo/GO_0038151,CCL2-activated CCR2 signaling pathway +14.5569532,GO:0038169,http://purl.obolibrary.org/obo/GO_0038169,somatostatin receptor signaling pathway +14.5569532,GO:0039641,http://purl.obolibrary.org/obo/GO_0039641,viral inner membrane +14.5569532,GO:0042138,http://purl.obolibrary.org/obo/GO_0042138,meiotic DNA double-strand break formation +14.5569532,GO:0042822,http://purl.obolibrary.org/obo/GO_0042822,pyridoxal phosphate metabolic process +14.5569532,GO:0043581,http://purl.obolibrary.org/obo/GO_0043581,none +14.5569532,GO:0043586,http://purl.obolibrary.org/obo/GO_0043586,tongue development +14.5569532,GO:0043610,http://purl.obolibrary.org/obo/GO_0043610,regulation of carbohydrate utilization +14.5569532,GO:0043703,http://purl.obolibrary.org/obo/GO_0043703,photoreceptor cell fate determination +14.5569532,GO:0043771,http://purl.obolibrary.org/obo/GO_0043771,cytidine kinase activity +14.5569532,GO:0043822,http://purl.obolibrary.org/obo/GO_0043822,ribonuclease M5 activity +14.5569532,GO:0043844,http://purl.obolibrary.org/obo/GO_0043844,ADP-specific phosphofructokinase activity +14.5569532,GO:0044457,http://purl.obolibrary.org/obo/GO_0044457,none +14.5569532,GO:0045435,http://purl.obolibrary.org/obo/GO_0045435,lycopene epsilon cyclase activity +14.5569532,GO:0045600,http://purl.obolibrary.org/obo/GO_0045600,positive regulation of fat cell differentiation +14.5569532,GO:0046044,http://purl.obolibrary.org/obo/GO_0046044,TMP metabolic process +14.5569532,GO:0046075,http://purl.obolibrary.org/obo/GO_0046075,dTTP metabolic process +14.5569532,GO:0046109,http://purl.obolibrary.org/obo/GO_0046109,uridine biosynthetic process +14.5569532,GO:0046152,http://purl.obolibrary.org/obo/GO_0046152,ommochrome metabolic process +14.5569532,GO:0046158,http://purl.obolibrary.org/obo/GO_0046158,ocellus pigment metabolic process +14.5569532,GO:0046315,http://purl.obolibrary.org/obo/GO_0046315,phosphocreatine catabolic process +14.5569532,GO:0046557,http://purl.obolibrary.org/obo/GO_0046557,"glucan endo-1,6-beta-glucosidase activity" +14.5569532,GO:0046624,http://purl.obolibrary.org/obo/GO_0046624,sphingolipid transporter activity +14.5569532,GO:0046687,http://purl.obolibrary.org/obo/GO_0046687,response to chromate +14.5569532,GO:0046835,http://purl.obolibrary.org/obo/GO_0046835,carbohydrate phosphorylation +14.5569532,GO:0047305,http://purl.obolibrary.org/obo/GO_0047305,(R)-3-amino-2-methylpropionate-pyruvate transaminase activity +14.5569532,GO:0047686,http://purl.obolibrary.org/obo/GO_0047686,arylsulfate sulfotransferase activity +14.5569532,GO:0047747,http://purl.obolibrary.org/obo/GO_0047747,cholate-CoA ligase activity +14.5569532,GO:0047785,http://purl.obolibrary.org/obo/GO_0047785,cortisol sulfotransferase activity +14.5569532,GO:0047810,http://purl.obolibrary.org/obo/GO_0047810,D-alanine:2-oxoglutarate aminotransferase activity +14.5569532,GO:0047884,http://purl.obolibrary.org/obo/GO_0047884,FAD diphosphatase activity +14.5569532,GO:0047960,http://purl.obolibrary.org/obo/GO_0047960,glycine dehydrogenase activity +14.5569532,GO:0047995,http://purl.obolibrary.org/obo/GO_0047995,hydroxyphenylpyruvate reductase activity +14.5569532,GO:0048060,http://purl.obolibrary.org/obo/GO_0048060,negative gravitaxis +14.5569532,GO:0048175,http://purl.obolibrary.org/obo/GO_0048175,none +14.5569532,GO:0048237,http://purl.obolibrary.org/obo/GO_0048237,rough endoplasmic reticulum lumen +14.5569532,GO:0048238,http://purl.obolibrary.org/obo/GO_0048238,smooth endoplasmic reticulum lumen +14.5569532,GO:0048760,http://purl.obolibrary.org/obo/GO_0048760,plant parenchymal cell differentiation +14.5569532,GO:0048825,http://purl.obolibrary.org/obo/GO_0048825,cotyledon development +14.5569532,GO:0050148,http://purl.obolibrary.org/obo/GO_0050148,nucleotide diphosphokinase activity +14.5569532,GO:0050224,http://purl.obolibrary.org/obo/GO_0050224,prunasin beta-glucosidase activity +14.5569532,GO:0050915,http://purl.obolibrary.org/obo/GO_0050915,sensory perception of sour taste +14.5569532,GO:0051056,http://purl.obolibrary.org/obo/GO_0051056,regulation of small GTPase mediated signal transduction +14.5569532,GO:0051150,http://purl.obolibrary.org/obo/GO_0051150,regulation of smooth muscle cell differentiation +14.5569532,GO:0051312,http://purl.obolibrary.org/obo/GO_0051312,chromosome decondensation +14.5569532,GO:0051595,http://purl.obolibrary.org/obo/GO_0051595,response to methylglyoxal +14.5569532,GO:0051745,http://purl.obolibrary.org/obo/GO_0051745,4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity +14.5569532,GO:0051752,http://purl.obolibrary.org/obo/GO_0051752,"phosphoglucan, water dikinase activity" +14.5569532,GO:0051931,http://purl.obolibrary.org/obo/GO_0051931,regulation of sensory perception +14.5569532,GO:0051994,http://purl.obolibrary.org/obo/GO_0051994,P-methyltransferase activity +14.5569532,GO:0052167,http://purl.obolibrary.org/obo/GO_0052167,modulation by symbiont of host innate immune response +14.5569532,GO:0052306,http://purl.obolibrary.org/obo/GO_0052306,none +14.5569532,GO:0055070,http://purl.obolibrary.org/obo/GO_0055070,copper ion homeostasis +14.5569532,GO:0060788,http://purl.obolibrary.org/obo/GO_0060788,ectodermal placode formation +14.5569532,GO:0060792,http://purl.obolibrary.org/obo/GO_0060792,sweat gland development +14.5569532,GO:0061638,http://purl.obolibrary.org/obo/GO_0061638,CENP-A containing chromatin +14.5569532,GO:0070022,http://purl.obolibrary.org/obo/GO_0070022,none +14.5569532,GO:0070179,http://purl.obolibrary.org/obo/GO_0070179,D-serine biosynthetic process +14.5569532,GO:0070398,http://purl.obolibrary.org/obo/GO_0070398,wall teichoic acid biosynthetic process +14.5569532,GO:0070559,http://purl.obolibrary.org/obo/GO_0070559,lysosomal multienzyme complex +14.5569532,GO:0070982,http://purl.obolibrary.org/obo/GO_0070982,L-asparagine metabolic process +14.5569532,GO:0071012,http://purl.obolibrary.org/obo/GO_0071012,catalytic step 1 spliceosome +14.5569532,GO:0071166,http://purl.obolibrary.org/obo/GO_0071166,ribonucleoprotein complex localization +14.5569532,GO:0071168,http://purl.obolibrary.org/obo/GO_0071168,protein localization to chromatin +14.5569532,GO:0071281,http://purl.obolibrary.org/obo/GO_0071281,cellular response to iron ion +14.5569532,GO:0071335,http://purl.obolibrary.org/obo/GO_0071335,hair follicle cell proliferation +14.5569532,GO:0071618,http://purl.obolibrary.org/obo/GO_0071618,lysophosphatidylethanolamine acyltransferase activity +14.5569532,GO:0071925,http://purl.obolibrary.org/obo/GO_0071925,thymic stromal lymphopoietin production +14.5569532,GO:0072388,http://purl.obolibrary.org/obo/GO_0072388,flavin adenine dinucleotide biosynthetic process +14.5569532,GO:0072503,http://purl.obolibrary.org/obo/GO_0072503,cellular divalent inorganic cation homeostasis +14.5569532,GO:0072526,http://purl.obolibrary.org/obo/GO_0072526,pyridine-containing compound catabolic process +14.5569532,GO:0090133,http://purl.obolibrary.org/obo/GO_0090133,mesendoderm migration +14.5569532,GO:0097165,http://purl.obolibrary.org/obo/GO_0097165,nuclear stress granule +14.5569532,GO:0097196,http://purl.obolibrary.org/obo/GO_0097196,Shu complex +14.5569532,GO:0097329,http://purl.obolibrary.org/obo/GO_0097329,response to antimetabolite +14.5569532,GO:0097465,http://purl.obolibrary.org/obo/GO_0097465,somatic spine +14.5569532,GO:0120261,http://purl.obolibrary.org/obo/GO_0120261,regulation of heterochromatin organization +14.5569532,GO:0140650,http://purl.obolibrary.org/obo/GO_0140650,radial glia-guided pyramidal neuron migration +14.5569532,GO:0150180,http://purl.obolibrary.org/obo/GO_0150180,negative regulation of phosphatidylserine metabolic process +14.5569532,GO:1900027,http://purl.obolibrary.org/obo/GO_1900027,regulation of ruffle assembly +14.5569532,GO:1900126,http://purl.obolibrary.org/obo/GO_1900126,negative regulation of hyaluronan biosynthetic process +14.5569532,GO:1900242,http://purl.obolibrary.org/obo/GO_1900242,regulation of synaptic vesicle endocytosis +14.5569532,GO:1900373,http://purl.obolibrary.org/obo/GO_1900373,positive regulation of purine nucleotide biosynthetic process +14.5569532,GO:1900469,http://purl.obolibrary.org/obo/GO_1900469,negative regulation of phosphatidylserine biosynthetic process +14.5569532,GO:1901096,http://purl.obolibrary.org/obo/GO_1901096,regulation of autophagosome maturation +14.5569532,GO:1901131,http://purl.obolibrary.org/obo/GO_1901131,kanamycin metabolic process +14.5569532,GO:1901133,http://purl.obolibrary.org/obo/GO_1901133,kanamycin biosynthetic process +14.5569532,GO:1901738,http://purl.obolibrary.org/obo/GO_1901738,regulation of vitamin A metabolic process +14.5569532,GO:1901755,http://purl.obolibrary.org/obo/GO_1901755,vitamin D3 biosynthetic process +14.5569532,GO:1901985,http://purl.obolibrary.org/obo/GO_1901985,positive regulation of protein acetylation +14.5569532,GO:1902036,http://purl.obolibrary.org/obo/GO_1902036,regulation of hematopoietic stem cell differentiation +14.5569532,GO:1902235,http://purl.obolibrary.org/obo/GO_1902235,regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway +14.5569532,GO:1902410,http://purl.obolibrary.org/obo/GO_1902410,mitotic cytokinetic process +14.5569532,GO:1903109,http://purl.obolibrary.org/obo/GO_1903109,positive regulation of mitochondrial transcription +14.5569532,GO:1903279,http://purl.obolibrary.org/obo/GO_1903279,regulation of calcium:sodium antiporter activity +14.5569532,GO:1904566,http://purl.obolibrary.org/obo/GO_1904566,cellular response to 1-oleoyl-sn-glycerol 3-phosphate +14.5569532,GO:1904752,http://purl.obolibrary.org/obo/GO_1904752,regulation of vascular associated smooth muscle cell migration +14.5569532,GO:1905508,http://purl.obolibrary.org/obo/GO_1905508,protein localization to microtubule organizing center +14.5569532,GO:1990060,http://purl.obolibrary.org/obo/GO_1990060,maltose transport complex +14.5569532,GO:1990342,http://purl.obolibrary.org/obo/GO_1990342,heterochromatin island +14.5569532,GO:1990475,http://purl.obolibrary.org/obo/GO_1990475,"synaptic vesicle, recycling pool" +14.5569532,GO:1990586,http://purl.obolibrary.org/obo/GO_1990586,divisome complex +14.5569532,GO:1990917,http://purl.obolibrary.org/obo/GO_1990917,ooplasm +14.5569532,GO:2000014,http://purl.obolibrary.org/obo/GO_2000014,regulation of endosperm development +14.5569532,GO:2000647,http://purl.obolibrary.org/obo/GO_2000647,negative regulation of stem cell proliferation +14.5569532,GO:2000758,http://purl.obolibrary.org/obo/GO_2000758,positive regulation of peptidyl-lysine acetylation +14.5569532,HP:0000171,http://purl.obolibrary.org/obo/HP_0000171,Microglossia +14.5569532,HP:0000230,http://purl.obolibrary.org/obo/HP_0000230,Gingivitis +14.5569532,HP:0000789,http://purl.obolibrary.org/obo/HP_0000789,Infertility +14.5569532,HP:0002666,http://purl.obolibrary.org/obo/HP_0002666,Pheochromocytoma +14.5569532,HP:0002668,http://purl.obolibrary.org/obo/HP_0002668,Paraganglioma +14.5569532,HP:0002748,http://purl.obolibrary.org/obo/HP_0002748,Rickets +14.5569532,HP:0020034,http://purl.obolibrary.org/obo/HP_0020034,Diffuse +14.5569532,HP:0030153,http://purl.obolibrary.org/obo/HP_0030153,Cholangiocarcinoma +14.5569532,HP:0030430,http://purl.obolibrary.org/obo/HP_0030430,Neuroma +14.5569532,HP:0031690,http://purl.obolibrary.org/obo/HP_0031690,Opportunistic infection +14.5569532,HP:0100001,http://purl.obolibrary.org/obo/HP_0100001,Malignant mesothelioma +14.5569532,HP:0100244,http://purl.obolibrary.org/obo/HP_0100244,Fibrosarcoma +14.5569532,HP:0100273,http://purl.obolibrary.org/obo/HP_0100273,Neoplasm of the colon +14.5569532,HP:0100568,http://purl.obolibrary.org/obo/HP_0100568,Neoplasm of the endocrine system +14.5569532,MONDO:0000060,http://purl.obolibrary.org/obo/MONDO_0000060,microcephalic osteodysplastic primordial dwarfism +14.5569532,MONDO:0000374,http://purl.obolibrary.org/obo/MONDO_0000374,bile duct carcinoma in situ +14.5569532,MONDO:0000466,http://purl.obolibrary.org/obo/MONDO_0000466,first-degree atrioventricular block +14.5569532,MONDO:0000964,http://purl.obolibrary.org/obo/MONDO_0000964,skin lipoma +14.5569532,MONDO:0001226,http://purl.obolibrary.org/obo/MONDO_0001226,acute contagious conjunctivitis +14.5569532,MONDO:0001532,http://purl.obolibrary.org/obo/MONDO_0001532,capillariasis +14.5569532,MONDO:0001556,http://purl.obolibrary.org/obo/MONDO_0001556,urethral obstruction +14.5569532,MONDO:0001629,http://purl.obolibrary.org/obo/MONDO_0001629,Jaccoud syndrome +14.5569532,MONDO:0001901,http://purl.obolibrary.org/obo/MONDO_0001901,selective IgG subclass deficiency +14.5569532,MONDO:0001954,http://purl.obolibrary.org/obo/MONDO_0001954,thrombophlebitis migrans +14.5569532,MONDO:0002127,http://purl.obolibrary.org/obo/MONDO_0002127,urethral stricture +14.5569532,MONDO:0002617,http://purl.obolibrary.org/obo/MONDO_0002617,bone angiosarcoma +14.5569532,MONDO:0002734,http://purl.obolibrary.org/obo/MONDO_0002734,anal mucinous adenocarcinoma +14.5569532,MONDO:0002851,http://purl.obolibrary.org/obo/MONDO_0002851,mediastinum rhabdomyosarcoma +14.5569532,MONDO:0002950,http://purl.obolibrary.org/obo/MONDO_0002950,skin clear cell basal cell carcinoma +14.5569532,MONDO:0003082,http://purl.obolibrary.org/obo/MONDO_0003082,filamentary keratitis +14.5569532,MONDO:0003104,http://purl.obolibrary.org/obo/MONDO_0003104,epicardium cancer +14.5569532,MONDO:0003315,http://purl.obolibrary.org/obo/MONDO_0003315,endometrium carcinoma in situ +14.5569532,MONDO:0003550,http://purl.obolibrary.org/obo/MONDO_0003550,esophageal adenosquamous carcinoma +14.5569532,MONDO:0003712,http://purl.obolibrary.org/obo/MONDO_0003712,angiokeratoma of mibelli +14.5569532,MONDO:0003848,http://purl.obolibrary.org/obo/MONDO_0003848,ectopic thymus +14.5569532,MONDO:0003942,http://purl.obolibrary.org/obo/MONDO_0003942,eosinophilic variant of chromophobe renal cell carcinoma +14.5569532,MONDO:0003956,http://purl.obolibrary.org/obo/MONDO_0003956,Baastrup syndrome +14.5569532,MONDO:0004336,http://purl.obolibrary.org/obo/MONDO_0004336,rectal signet ring cell adenocarcinoma +14.5569532,MONDO:0004533,http://purl.obolibrary.org/obo/MONDO_0004533,perineural angioma +14.5569532,MONDO:0004651,http://purl.obolibrary.org/obo/MONDO_0004651,smallpox +14.5569532,MONDO:0004708,http://purl.obolibrary.org/obo/MONDO_0004708,esophagus carcinoma in situ +14.5569532,MONDO:0004715,http://purl.obolibrary.org/obo/MONDO_0004715,liver carcinoma in situ +14.5569532,MONDO:0004899,http://purl.obolibrary.org/obo/MONDO_0004899,monofixation syndrome +14.5569532,MONDO:0004904,http://purl.obolibrary.org/obo/MONDO_0004904,toxic maculopathy +14.5569532,MONDO:0005049,http://purl.obolibrary.org/obo/MONDO_0005049,intracranial hemorrhage +14.5569532,MONDO:0005874,http://purl.obolibrary.org/obo/MONDO_0005874,neuroschistosomiasis +14.5569532,MONDO:0006197,http://purl.obolibrary.org/obo/MONDO_0006197,endometrial small cell carcinoma +14.5569532,MONDO:0006234,http://purl.obolibrary.org/obo/MONDO_0006234,grade III prostatic intraepithelial neoplasia +14.5569532,MONDO:0006257,http://purl.obolibrary.org/obo/MONDO_0006257,jejunal neuroendocrine tumor G1 +14.5569532,MONDO:0006426,http://purl.obolibrary.org/obo/MONDO_0006426,spinal cord primitive neuroectodermal tumor +14.5569532,MONDO:0006452,http://purl.obolibrary.org/obo/MONDO_0006452,thymic sarcomatoid carcinoma +14.5569532,MONDO:0006479,http://purl.obolibrary.org/obo/MONDO_0006479,undifferentiated pancreatic carcinoma with osteoclast-like giant cells +14.5569532,MONDO:0006532,http://purl.obolibrary.org/obo/MONDO_0006532,cholesteatoma of external ear +14.5569532,MONDO:0006679,http://purl.obolibrary.org/obo/MONDO_0006679,bladder neck obstruction +14.5569532,MONDO:0006961,http://purl.obolibrary.org/obo/MONDO_0006961,scrapie +14.5569532,MONDO:0006982,http://purl.obolibrary.org/obo/MONDO_0006982,subacute thyroiditis +14.5569532,MONDO:0007058,http://purl.obolibrary.org/obo/MONDO_0007058,acropectorovertebral dysplasia +14.5569532,MONDO:0007059,http://purl.obolibrary.org/obo/MONDO_0007059,acrorenal syndrome +14.5569532,MONDO:0007139,http://purl.obolibrary.org/obo/MONDO_0007139,Antipyrine metabolism +14.5569532,MONDO:0007271,http://purl.obolibrary.org/obo/MONDO_0007271,familial cutaneous collagenoma +14.5569532,MONDO:0007300,http://purl.obolibrary.org/obo/MONDO_0007300,cerebral sarcoma +14.5569532,MONDO:0007448,http://purl.obolibrary.org/obo/MONDO_0007448,familial dermatographia +14.5569532,MONDO:0007538,http://purl.obolibrary.org/obo/MONDO_0007538,"amelogenesis imperfecta, type 3A" +14.5569532,MONDO:0007765,http://purl.obolibrary.org/obo/MONDO_0007765,hyperostosis cranialis interna +14.5569532,MONDO:0007819,http://purl.obolibrary.org/obo/MONDO_0007819,solitary median maxillary central incisor syndrome +14.5569532,MONDO:0007866,http://purl.obolibrary.org/obo/MONDO_0007866,Bart-Pumphrey syndrome +14.5569532,MONDO:0007934,http://purl.obolibrary.org/obo/MONDO_0007934,benign concentric annular macular dystrophy +14.5569532,MONDO:0008373,http://purl.obolibrary.org/obo/MONDO_0008373,retinal arterial tortuosity +14.5569532,MONDO:0008395,http://purl.obolibrary.org/obo/MONDO_0008395,Ruvalcaba syndrome +14.5569532,MONDO:0008437,http://purl.obolibrary.org/obo/MONDO_0008437,hereditary spastic paraplegia 3A +14.5569532,MONDO:0008542,http://purl.obolibrary.org/obo/MONDO_0008542,tetralogy of fallot +14.5569532,MONDO:0008663,http://purl.obolibrary.org/obo/MONDO_0008663,snowflake vitreoretinal degeneration +14.5569532,MONDO:0008854,http://purl.obolibrary.org/obo/MONDO_0008854,Bardet-Biedl syndrome 1 +14.5569532,MONDO:0008961,http://purl.obolibrary.org/obo/MONDO_0008961,Charcot-Marie-Tooth disease type 4A +14.5569532,MONDO:0009112,http://purl.obolibrary.org/obo/MONDO_0009112,rhizomelic chondrodysplasia punctata type 2 +14.5569532,MONDO:0009421,http://purl.obolibrary.org/obo/MONDO_0009421,"hypogonadism, male" +14.5569532,MONDO:0009626,http://purl.obolibrary.org/obo/MONDO_0009626,pseudo-TORCH syndrome +14.5569532,MONDO:0009745,http://purl.obolibrary.org/obo/MONDO_0009745,neuronal ceroid lipofuscinosis 5 +14.5569532,MONDO:0009933,http://purl.obolibrary.org/obo/MONDO_0009933,congenital pulmonary lymphangiectasia +14.5569532,MONDO:0010455,http://purl.obolibrary.org/obo/MONDO_0010455,"X-linked immunodeficiency with magnesium defect, Epstein-Barr virus infection and neoplasia" +14.5569532,MONDO:0010690,http://purl.obolibrary.org/obo/MONDO_0010690,congenital stationary night blindness 1A +14.5569532,MONDO:0010847,http://purl.obolibrary.org/obo/MONDO_0010847,spinocerebellar ataxia type 4 +14.5569532,MONDO:0010949,http://purl.obolibrary.org/obo/MONDO_0010949,Charcot-Marie-Tooth disease type 2B +14.5569532,MONDO:0011066,http://purl.obolibrary.org/obo/MONDO_0011066,Charcot-Marie-Tooth disease type 4B1 +14.5569532,MONDO:0011092,http://purl.obolibrary.org/obo/MONDO_0011092,ribbing disease +14.5569532,MONDO:0011227,http://purl.obolibrary.org/obo/MONDO_0011227,short stature-auditory canal atresia-mandibular hypoplasia-skeletal anomalies syndrome +14.5569532,MONDO:0011233,http://purl.obolibrary.org/obo/MONDO_0011233,Axenfeld-Rieger syndrome type 3 +14.5569532,MONDO:0011285,http://purl.obolibrary.org/obo/MONDO_0011285,age related macular degeneration 1 +14.5569532,MONDO:0011773,http://purl.obolibrary.org/obo/MONDO_0011773,anauxetic dysplasia +14.5569532,MONDO:0011899,http://purl.obolibrary.org/obo/MONDO_0011899,Noonan syndrome-like disorder with loose anagen hair +14.5569532,MONDO:0011951,http://purl.obolibrary.org/obo/MONDO_0011951,amyotrophic lateral sclerosis type 6 +14.5569532,MONDO:0011977,http://purl.obolibrary.org/obo/MONDO_0011977,8q22.1 microdeletion syndrome +14.5569532,MONDO:0012028,http://purl.obolibrary.org/obo/MONDO_0012028,"autoimmune disease, susceptibility to, 3" +14.5569532,MONDO:0012251,http://purl.obolibrary.org/obo/MONDO_0012251,MEDNIK syndrome +14.5569532,MONDO:0012290,http://purl.obolibrary.org/obo/MONDO_0012290,CEDNIK syndrome +14.5569532,MONDO:0012297,http://purl.obolibrary.org/obo/MONDO_0012297,SPOAN syndrome +14.5569532,MONDO:0012391,http://purl.obolibrary.org/obo/MONDO_0012391,neuronal ceroid lipofuscinosis 8 northern epilepsy variant +14.5569532,MONDO:0012435,http://purl.obolibrary.org/obo/MONDO_0012435,3-methylglutaconic aciduria type 5 +14.5569532,MONDO:0012610,http://purl.obolibrary.org/obo/MONDO_0012610,inflammatory bowel disease 10 +14.5569532,MONDO:0012624,http://purl.obolibrary.org/obo/MONDO_0012624,acyl-CoA dehydrogenase 9 deficiency +14.5569532,MONDO:0012735,http://purl.obolibrary.org/obo/MONDO_0012735,Temple-Baraitser syndrome +14.5569532,MONDO:0012905,http://purl.obolibrary.org/obo/MONDO_0012905,hypomyelinating leukodystrophy 6 +14.5569532,MONDO:0012912,http://purl.obolibrary.org/obo/MONDO_0012912,pseudopseudohypoparathyroidism +14.5569532,MONDO:0013166,http://purl.obolibrary.org/obo/MONDO_0013166,GABA aminotransferase deficiency +14.5569532,MONDO:0013555,http://purl.obolibrary.org/obo/MONDO_0013555,Hermansky-Pudlak syndrome 3 +14.5569532,MONDO:0014054,http://purl.obolibrary.org/obo/MONDO_0014054,lymphoproliferative syndrome 2 +14.5569532,MONDO:0014223,http://purl.obolibrary.org/obo/MONDO_0014223,amyotrophic lateral sclerosis type 19 +14.5569532,MONDO:0014633,http://purl.obolibrary.org/obo/MONDO_0014633,myoclonic-atonic epilepsy +14.5569532,MONDO:0014722,http://purl.obolibrary.org/obo/MONDO_0014722,Roifman syndrome +14.5569532,MONDO:0015064,http://purl.obolibrary.org/obo/MONDO_0015064,"jejunal neuroendocrine tumor, well differentiated, low or intermediate grade" +14.5569532,MONDO:0015101,http://purl.obolibrary.org/obo/MONDO_0015101,Marin-Amat syndrome +14.5569532,MONDO:0015240,http://purl.obolibrary.org/obo/MONDO_0015240,digitotalar dysmorphism +14.5569532,MONDO:0015378,http://purl.obolibrary.org/obo/MONDO_0015378,fourth branchial cleft anomaly +14.5569532,MONDO:0015439,http://purl.obolibrary.org/obo/MONDO_0015439,ring chromosome 4 +14.5569532,MONDO:0015705,http://purl.obolibrary.org/obo/MONDO_0015705,autosomal recessive centronuclear myopathy +14.5569532,MONDO:0016012,http://purl.obolibrary.org/obo/MONDO_0016012,diethylstilbestrol syndrome +14.5569532,MONDO:0016085,http://purl.obolibrary.org/obo/MONDO_0016085,Cole-Carpenter syndrome +14.5569532,MONDO:0016430,http://purl.obolibrary.org/obo/MONDO_0016430,Balo concentric sclerosis +14.5569532,MONDO:0016521,http://purl.obolibrary.org/obo/MONDO_0016521,muscular pseudohypertrophy-hypothyroidism syndrome +14.5569532,MONDO:0016557,http://purl.obolibrary.org/obo/MONDO_0016557,leukonychia totalis +14.5569532,MONDO:0016605,http://purl.obolibrary.org/obo/MONDO_0016605,perinatal lethal hypophosphatasia +14.5569532,MONDO:0016740,http://purl.obolibrary.org/obo/MONDO_0016740,choriocarcinoma of the central nervous system +14.5569532,MONDO:0016936,http://purl.obolibrary.org/obo/MONDO_0016936,partial trisomy/tetrasomy of chromosome 18 +14.5569532,MONDO:0016951,http://purl.obolibrary.org/obo/MONDO_0016951,partial trisomy/tetrasomy of the short arm of chromosome 18 +14.5569532,MONDO:0016984,http://purl.obolibrary.org/obo/MONDO_0016984,nevus of Ota +14.5569532,MONDO:0017092,http://purl.obolibrary.org/obo/MONDO_0017092,unilateral polymicrogyria +14.5569532,MONDO:0017136,http://purl.obolibrary.org/obo/MONDO_0017136,omodysplasia +14.5569532,MONDO:0017215,http://purl.obolibrary.org/obo/MONDO_0017215,calciphylaxis +14.5569532,MONDO:0017684,http://purl.obolibrary.org/obo/MONDO_0017684,disorder of beta and omega amino acid metabolism +14.5569532,MONDO:0017825,http://purl.obolibrary.org/obo/MONDO_0017825,silent pituitary adenoma +14.5569532,MONDO:0018135,http://purl.obolibrary.org/obo/MONDO_0018135,oculocutaneous albinism type 1 +14.5569532,MONDO:0018223,http://purl.obolibrary.org/obo/MONDO_0018223,systemic Epstein-Barr virus-positive T-cell lymphoproliferative disease of childhood +14.5569532,MONDO:0018500,http://purl.obolibrary.org/obo/MONDO_0018500,cutaneous larva migrans +14.5569532,MONDO:0018550,http://purl.obolibrary.org/obo/MONDO_0018550,spastic paraplegia-optic atrophy-neuropathy and spastic paraplegia-optic atrophy-neuropathy-related disorder +14.5569532,MONDO:0019346,http://purl.obolibrary.org/obo/MONDO_0019346,sialidosis type 1 +14.5569532,MONDO:0019370,http://purl.obolibrary.org/obo/MONDO_0019370,vulvovaginal gingival syndrome +14.5569532,MONDO:0019921,http://purl.obolibrary.org/obo/MONDO_0019921,paternal uniparental disomy of chromosome 6 +14.5569532,MONDO:0020310,http://purl.obolibrary.org/obo/MONDO_0020310,familial focal epilepsy with variable foci +14.5569532,MONDO:0020379,http://purl.obolibrary.org/obo/MONDO_0020379,early-onset zonular cataract +14.5569532,MONDO:0020506,http://purl.obolibrary.org/obo/MONDO_0020506,ovarioleukodystrophy +14.5569532,MONDO:0020557,http://purl.obolibrary.org/obo/MONDO_0020557,pleuropulmonary blastoma type 3 +14.5569532,MONDO:0020709,http://purl.obolibrary.org/obo/MONDO_0020709,Majocchi granuloma +14.5569532,MONDO:0021019,http://purl.obolibrary.org/obo/MONDO_0021019,X-linked recessive ocular albinism +14.5569532,MONDO:0021279,http://purl.obolibrary.org/obo/MONDO_0021279,mucoepidermoid carcinoma of submandibular gland +14.5569532,MONDO:0021334,http://purl.obolibrary.org/obo/MONDO_0021334,immunoproliferative disorder +14.5569532,MONDO:0021455,http://purl.obolibrary.org/obo/MONDO_0021455,benign neoplasm of neck +14.5569532,MONDO:0021702,http://purl.obolibrary.org/obo/MONDO_0021702,alcohol amnestic disorder +14.5569532,MONDO:0021742,http://purl.obolibrary.org/obo/MONDO_0021742,puerperal infection +14.5569532,MONDO:0021783,http://purl.obolibrary.org/obo/MONDO_0021783,streptococcal sore throat +14.5569532,MONDO:0022022,http://purl.obolibrary.org/obo/MONDO_0022022,bowenoid papulosis +14.5569532,MONDO:0022691,http://purl.obolibrary.org/obo/MONDO_0022691,cerebello-olivary atrophy +14.5569532,MONDO:0022799,http://purl.obolibrary.org/obo/MONDO_0022799,cold urticaria +14.5569532,MONDO:0022805,http://purl.obolibrary.org/obo/MONDO_0022805,colonic malakoplakia +14.5569532,MONDO:0040699,http://purl.obolibrary.org/obo/MONDO_0040699,necrotizing scleritis +14.5569532,MONDO:0043277,http://purl.obolibrary.org/obo/MONDO_0043277,mosaic trisomy 6 +14.5569532,MONDO:0100273,http://purl.obolibrary.org/obo/MONDO_0100273,glyceronephosphate O-acyltransferase deficiency +14.5569532,NCBITaxon:1048899,http://purl.obolibrary.org/obo/NCBITaxon_1048899,none +14.5569532,NCBITaxon:10519,http://purl.obolibrary.org/obo/NCBITaxon_10519,none +14.5569532,NCBITaxon:105255,http://purl.obolibrary.org/obo/NCBITaxon_105255,none +14.5569532,NCBITaxon:106822,http://purl.obolibrary.org/obo/NCBITaxon_106822,none +14.5569532,NCBITaxon:106844,http://purl.obolibrary.org/obo/NCBITaxon_106844,none +14.5569532,NCBITaxon:107441,http://purl.obolibrary.org/obo/NCBITaxon_107441,none +14.5569532,NCBITaxon:108599,http://purl.obolibrary.org/obo/NCBITaxon_108599,none +14.5569532,NCBITaxon:1110380,http://purl.obolibrary.org/obo/NCBITaxon_1110380,none +14.5569532,NCBITaxon:1141625,http://purl.obolibrary.org/obo/NCBITaxon_1141625,none +14.5569532,NCBITaxon:1141636,http://purl.obolibrary.org/obo/NCBITaxon_1141636,none +14.5569532,NCBITaxon:1141637,http://purl.obolibrary.org/obo/NCBITaxon_1141637,none +14.5569532,NCBITaxon:1141641,http://purl.obolibrary.org/obo/NCBITaxon_1141641,none +14.5569532,NCBITaxon:1141643,http://purl.obolibrary.org/obo/NCBITaxon_1141643,none +14.5569532,NCBITaxon:114921,http://purl.obolibrary.org/obo/NCBITaxon_114921,none +14.5569532,NCBITaxon:11575,http://purl.obolibrary.org/obo/NCBITaxon_11575,none +14.5569532,NCBITaxon:11792,http://purl.obolibrary.org/obo/NCBITaxon_11792,none +14.5569532,NCBITaxon:1182517,http://purl.obolibrary.org/obo/NCBITaxon_1182517,none +14.5569532,NCBITaxon:11832,http://purl.obolibrary.org/obo/NCBITaxon_11832,none +14.5569532,NCBITaxon:11877,http://purl.obolibrary.org/obo/NCBITaxon_11877,none +14.5569532,NCBITaxon:12041,http://purl.obolibrary.org/obo/NCBITaxon_12041,none +14.5569532,NCBITaxon:12152,http://purl.obolibrary.org/obo/NCBITaxon_12152,none +14.5569532,NCBITaxon:12164,http://purl.obolibrary.org/obo/NCBITaxon_12164,none +14.5569532,NCBITaxon:124313,http://purl.obolibrary.org/obo/NCBITaxon_124313,none +14.5569532,NCBITaxon:12458,http://purl.obolibrary.org/obo/NCBITaxon_12458,none +14.5569532,NCBITaxon:12471,http://purl.obolibrary.org/obo/NCBITaxon_12471,none +14.5569532,NCBITaxon:12809,http://purl.obolibrary.org/obo/NCBITaxon_12809,none +14.5569532,NCBITaxon:1307119,http://purl.obolibrary.org/obo/NCBITaxon_1307119,none +14.5569532,NCBITaxon:1384672,http://purl.obolibrary.org/obo/NCBITaxon_1384672,none +14.5569532,NCBITaxon:138950,http://purl.obolibrary.org/obo/NCBITaxon_138950,Enterovirus C +14.5569532,NCBITaxon:141863,http://purl.obolibrary.org/obo/NCBITaxon_141863,none +14.5569532,NCBITaxon:1425342,http://purl.obolibrary.org/obo/NCBITaxon_1425342,none +14.5569532,NCBITaxon:1435461,http://purl.obolibrary.org/obo/NCBITaxon_1435461,none +14.5569532,NCBITaxon:1461175,http://purl.obolibrary.org/obo/NCBITaxon_1461175,none +14.5569532,NCBITaxon:1472344,http://purl.obolibrary.org/obo/NCBITaxon_1472344,none +14.5569532,NCBITaxon:1489904,http://purl.obolibrary.org/obo/NCBITaxon_1489904,none +14.5569532,NCBITaxon:150284,http://purl.obolibrary.org/obo/NCBITaxon_150284,none +14.5569532,NCBITaxon:162484,http://purl.obolibrary.org/obo/NCBITaxon_162484,none +14.5569532,NCBITaxon:1648026,http://purl.obolibrary.org/obo/NCBITaxon_1648026,none +14.5569532,NCBITaxon:164882,http://purl.obolibrary.org/obo/NCBITaxon_164882,none +14.5569532,NCBITaxon:1684327,http://purl.obolibrary.org/obo/NCBITaxon_1684327,none +14.5569532,NCBITaxon:171552,http://purl.obolibrary.org/obo/NCBITaxon_171552,none +14.5569532,NCBITaxon:172148,http://purl.obolibrary.org/obo/NCBITaxon_172148,Alkhumra hemorrhagic fever virus +14.5569532,NCBITaxon:184872,http://purl.obolibrary.org/obo/NCBITaxon_184872,none +14.5569532,NCBITaxon:1933299,http://purl.obolibrary.org/obo/NCBITaxon_1933299,none +14.5569532,NCBITaxon:1985357,http://purl.obolibrary.org/obo/NCBITaxon_1985357,none +14.5569532,NCBITaxon:198719,http://purl.obolibrary.org/obo/NCBITaxon_198719,none +14.5569532,NCBITaxon:198724,http://purl.obolibrary.org/obo/NCBITaxon_198724,none +14.5569532,NCBITaxon:203682,http://purl.obolibrary.org/obo/NCBITaxon_203682,none +14.5569532,NCBITaxon:222459,http://purl.obolibrary.org/obo/NCBITaxon_222459,none +14.5569532,NCBITaxon:226545,http://purl.obolibrary.org/obo/NCBITaxon_226545,none +14.5569532,NCBITaxon:226557,http://purl.obolibrary.org/obo/NCBITaxon_226557,none +14.5569532,NCBITaxon:226558,http://purl.obolibrary.org/obo/NCBITaxon_226558,none +14.5569532,NCBITaxon:226834,http://purl.obolibrary.org/obo/NCBITaxon_226834,none +14.5569532,NCBITaxon:226835,http://purl.obolibrary.org/obo/NCBITaxon_226835,none +14.5569532,NCBITaxon:226854,http://purl.obolibrary.org/obo/NCBITaxon_226854,none +14.5569532,NCBITaxon:226855,http://purl.obolibrary.org/obo/NCBITaxon_226855,none +14.5569532,NCBITaxon:229634,http://purl.obolibrary.org/obo/NCBITaxon_229634,none +14.5569532,NCBITaxon:232378,http://purl.obolibrary.org/obo/NCBITaxon_232378,none +14.5569532,NCBITaxon:234634,http://purl.obolibrary.org/obo/NCBITaxon_234634,none +14.5569532,NCBITaxon:240288,http://purl.obolibrary.org/obo/NCBITaxon_240288,none +14.5569532,NCBITaxon:249583,http://purl.obolibrary.org/obo/NCBITaxon_249583,none +14.5569532,NCBITaxon:2560065,http://purl.obolibrary.org/obo/NCBITaxon_2560065,none +14.5569532,NCBITaxon:2560577,http://purl.obolibrary.org/obo/NCBITaxon_2560577,none +14.5569532,NCBITaxon:284555,http://purl.obolibrary.org/obo/NCBITaxon_284555,none +14.5569532,NCBITaxon:303185,http://purl.obolibrary.org/obo/NCBITaxon_303185,none +14.5569532,NCBITaxon:309541,http://purl.obolibrary.org/obo/NCBITaxon_309541,none +14.5569532,NCBITaxon:311413,http://purl.obolibrary.org/obo/NCBITaxon_311413,none +14.5569532,NCBITaxon:31647,http://purl.obolibrary.org/obo/NCBITaxon_31647,none +14.5569532,NCBITaxon:32382,http://purl.obolibrary.org/obo/NCBITaxon_32382,none +14.5569532,NCBITaxon:33361,http://purl.obolibrary.org/obo/NCBITaxon_33361,none +14.5569532,NCBITaxon:337076,http://purl.obolibrary.org/obo/NCBITaxon_337076,none +14.5569532,NCBITaxon:339419,http://purl.obolibrary.org/obo/NCBITaxon_339419,none +14.5569532,NCBITaxon:34619,http://purl.obolibrary.org/obo/NCBITaxon_34619,Dermacentor +14.5569532,NCBITaxon:34621,http://purl.obolibrary.org/obo/NCBITaxon_34621,Dermacentor variabilis +14.5569532,NCBITaxon:34862,http://purl.obolibrary.org/obo/NCBITaxon_34862,none +14.5569532,NCBITaxon:35281,http://purl.obolibrary.org/obo/NCBITaxon_35281,none +14.5569532,NCBITaxon:35340,http://purl.obolibrary.org/obo/NCBITaxon_35340,none +14.5569532,NCBITaxon:35875,http://purl.obolibrary.org/obo/NCBITaxon_35875,none +14.5569532,NCBITaxon:36151,http://purl.obolibrary.org/obo/NCBITaxon_36151,none +14.5569532,NCBITaxon:36419,http://purl.obolibrary.org/obo/NCBITaxon_36419,none +14.5569532,NCBITaxon:365149,http://purl.obolibrary.org/obo/NCBITaxon_365149,none +14.5569532,NCBITaxon:37962,http://purl.obolibrary.org/obo/NCBITaxon_37962,none +14.5569532,NCBITaxon:38664,http://purl.obolibrary.org/obo/NCBITaxon_38664,none +14.5569532,NCBITaxon:3867,http://purl.obolibrary.org/obo/NCBITaxon_3867,none +14.5569532,NCBITaxon:42410,http://purl.obolibrary.org/obo/NCBITaxon_42410,none +14.5569532,NCBITaxon:426437,http://purl.obolibrary.org/obo/NCBITaxon_426437,Rhipicephalinae +14.5569532,NCBITaxon:43737,http://purl.obolibrary.org/obo/NCBITaxon_43737,none +14.5569532,NCBITaxon:43901,http://purl.obolibrary.org/obo/NCBITaxon_43901,none +14.5569532,NCBITaxon:44234,http://purl.obolibrary.org/obo/NCBITaxon_44234,none +14.5569532,NCBITaxon:45470,http://purl.obolibrary.org/obo/NCBITaxon_45470,none +14.5569532,NCBITaxon:45478,http://purl.obolibrary.org/obo/NCBITaxon_45478,none +14.5569532,NCBITaxon:455363,http://purl.obolibrary.org/obo/NCBITaxon_455363,none +14.5569532,NCBITaxon:4573,http://purl.obolibrary.org/obo/NCBITaxon_4573,none +14.5569532,NCBITaxon:46347,http://purl.obolibrary.org/obo/NCBITaxon_46347,none +14.5569532,NCBITaxon:46589,http://purl.obolibrary.org/obo/NCBITaxon_46589,none +14.5569532,NCBITaxon:46599,http://purl.obolibrary.org/obo/NCBITaxon_46599,none +14.5569532,NCBITaxon:47006,http://purl.obolibrary.org/obo/NCBITaxon_47006,none +14.5569532,NCBITaxon:483045,http://purl.obolibrary.org/obo/NCBITaxon_483045,none +14.5569532,NCBITaxon:488317,http://purl.obolibrary.org/obo/NCBITaxon_488317,none +14.5569532,NCBITaxon:49891,http://purl.obolibrary.org/obo/NCBITaxon_49891,none +14.5569532,NCBITaxon:49990,http://purl.obolibrary.org/obo/NCBITaxon_49990,none +14.5569532,NCBITaxon:50362,http://purl.obolibrary.org/obo/NCBITaxon_50362,none +14.5569532,NCBITaxon:51278,http://purl.obolibrary.org/obo/NCBITaxon_51278,none +14.5569532,NCBITaxon:51279,http://purl.obolibrary.org/obo/NCBITaxon_51279,none +14.5569532,NCBITaxon:52807,http://purl.obolibrary.org/obo/NCBITaxon_52807,none +14.5569532,NCBITaxon:52808,http://purl.obolibrary.org/obo/NCBITaxon_52808,none +14.5569532,NCBITaxon:5415,http://purl.obolibrary.org/obo/NCBITaxon_5415,none +14.5569532,NCBITaxon:548687,http://purl.obolibrary.org/obo/NCBITaxon_548687,none +14.5569532,NCBITaxon:55669,http://purl.obolibrary.org/obo/NCBITaxon_55669,none +14.5569532,NCBITaxon:561281,http://purl.obolibrary.org/obo/NCBITaxon_561281,none +14.5569532,NCBITaxon:5819,http://purl.obolibrary.org/obo/NCBITaxon_5819,Haemosporida +14.5569532,NCBITaxon:58531,http://purl.obolibrary.org/obo/NCBITaxon_58531,none +14.5569532,NCBITaxon:59303,http://purl.obolibrary.org/obo/NCBITaxon_59303,none +14.5569532,NCBITaxon:6125,http://purl.obolibrary.org/obo/NCBITaxon_6125,none +14.5569532,NCBITaxon:6181,http://purl.obolibrary.org/obo/NCBITaxon_6181,Schistosoma +14.5569532,NCBITaxon:64318,http://purl.obolibrary.org/obo/NCBITaxon_64318,none +14.5569532,NCBITaxon:67771,http://purl.obolibrary.org/obo/NCBITaxon_67771,none +14.5569532,NCBITaxon:70692,http://purl.obolibrary.org/obo/NCBITaxon_70692,none +14.5569532,NCBITaxon:71972,http://purl.obolibrary.org/obo/NCBITaxon_71972,none +14.5569532,NCBITaxon:72750,http://purl.obolibrary.org/obo/NCBITaxon_72750,none +14.5569532,NCBITaxon:745,http://purl.obolibrary.org/obo/NCBITaxon_745,Pasteurella +14.5569532,NCBITaxon:76052,http://purl.obolibrary.org/obo/NCBITaxon_76052,none +14.5569532,NCBITaxon:7796,http://purl.obolibrary.org/obo/NCBITaxon_7796,none +14.5569532,NCBITaxon:7797,http://purl.obolibrary.org/obo/NCBITaxon_7797,none +14.5569532,NCBITaxon:83544,http://purl.obolibrary.org/obo/NCBITaxon_83544,none +14.5569532,NCBITaxon:838,http://purl.obolibrary.org/obo/NCBITaxon_838,none +14.5569532,NCBITaxon:86626,http://purl.obolibrary.org/obo/NCBITaxon_86626,none +14.5569532,NCBITaxon:8783,http://purl.obolibrary.org/obo/NCBITaxon_8783,Palaeognathae +14.5569532,NCBITaxon:8802,http://purl.obolibrary.org/obo/NCBITaxon_8802,none +14.5569532,NCBITaxon:8803,http://purl.obolibrary.org/obo/NCBITaxon_8803,none +14.5569532,NCBITaxon:8804,http://purl.obolibrary.org/obo/NCBITaxon_8804,none +14.5569532,NCBITaxon:8805,http://purl.obolibrary.org/obo/NCBITaxon_8805,none +14.5569532,NCBITaxon:9008,http://purl.obolibrary.org/obo/NCBITaxon_9008,none +14.5569532,NCBITaxon:90886,http://purl.obolibrary.org/obo/NCBITaxon_90886,none +14.5569532,NCBITaxon:92439,http://purl.obolibrary.org/obo/NCBITaxon_92439,none +14.5569532,NCBITaxon:95178,http://purl.obolibrary.org/obo/NCBITaxon_95178,none +14.5569532,NCBITaxon:9596,http://purl.obolibrary.org/obo/NCBITaxon_9596,Pan +14.5569532,PR:000000782,http://purl.obolibrary.org/obo/PR_000000782,voltage-gated potassium channel KCNC2 +14.5569532,PR:000000789,http://purl.obolibrary.org/obo/PR_000000789,voltage-gated potassium channel subfamily G member 4 +14.5569532,PR:000000800,http://purl.obolibrary.org/obo/PR_000000800,voltage-gated potassium channel KCNS3 +14.5569532,PR:000001165,http://purl.obolibrary.org/obo/PR_000001165,5-hydroxytryptamine receptor 1F +14.5569532,PR:000001908,http://purl.obolibrary.org/obo/PR_000001908,platelet glycoprotein Ib beta chain +14.5569532,PR:000002980,http://purl.obolibrary.org/obo/PR_000002980,lymphocyte antigen 6C2 +14.5569532,PR:000003051,http://purl.obolibrary.org/obo/PR_000003051,transmembrane protease serine 9 +14.5569532,PR:000003634,http://purl.obolibrary.org/obo/PR_000003634,acyl-coenzyme A thioesterase 11 +14.5569532,PR:000003637,http://purl.obolibrary.org/obo/PR_000003637,peroxisomal succinyl-coenzyme A thioesterase +14.5569532,PR:000003717,http://purl.obolibrary.org/obo/PR_000003717,disintegrin and metalloproteinase domain-containing protein 21 +14.5569532,PR:000003870,http://purl.obolibrary.org/obo/PR_000003870,apoptosis-inducing factor 3 +14.5569532,PR:000003938,http://purl.obolibrary.org/obo/PR_000003938,"Dol-P-Glc:Glc(2)Man(9)GlcNAc(2)-PP-Dol alpha-1,2-glucosyltransferase A" +14.5569532,PR:000003994,http://purl.obolibrary.org/obo/PR_000003994,AMME syndrome candidate gene 1 protein +14.5569532,PR:000004047,http://purl.obolibrary.org/obo/PR_000004047,serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit A +14.5569532,PR:000004092,http://purl.obolibrary.org/obo/PR_000004092,AP-1 complex subunit gamma-like 2 +14.5569532,PR:000004219,http://purl.obolibrary.org/obo/PR_000004219,Rho GTPase-activating protein 11A +14.5569532,PR:000004220,http://purl.obolibrary.org/obo/PR_000004220,Rho GTPase-activating protein 11B +14.5569532,PR:000004250,http://purl.obolibrary.org/obo/PR_000004250,Rho guanine nucleotide exchange factor 15 +14.5569532,PR:000004346,http://purl.obolibrary.org/obo/PR_000004346,ankyrin repeat and SOCS box protein 14 +14.5569532,PR:000004483,http://purl.obolibrary.org/obo/PR_000004483,V-type proton ATPase subunit C 1 +14.5569532,PR:000004525,http://purl.obolibrary.org/obo/PR_000004525,annexin-2 receptor +14.5569532,PR:000004560,http://purl.obolibrary.org/obo/PR_000004560,none +14.5569532,PR:000004578,http://purl.obolibrary.org/obo/PR_000004578,none +14.5569532,PR:000004673,http://purl.obolibrary.org/obo/PR_000004673,brevican core protein +14.5569532,PR:000004791,http://purl.obolibrary.org/obo/PR_000004791,protein aurora borealis +14.5569532,PR:000004795,http://purl.obolibrary.org/obo/PR_000004795,BPI fold-containing family B member 2 +14.5569532,PR:000004886,http://purl.obolibrary.org/obo/PR_000004886,complement C1q tumor necrosis factor-related protein 4 +14.5569532,PR:000004911,http://purl.obolibrary.org/obo/PR_000004911,complement component C9 +14.5569532,PR:000004956,http://purl.obolibrary.org/obo/PR_000004956,voltage-dependent calcium channel gamma-7 subunit +14.5569532,PR:000004990,http://purl.obolibrary.org/obo/PR_000004990,calcium/calmodulin-dependent protein kinase type 1G +14.5569532,PR:000004997,http://purl.obolibrary.org/obo/PR_000004997,calcium signal-modulating cyclophilin ligand +14.5569532,PR:000005011,http://purl.obolibrary.org/obo/PR_000005011,calpain-11 +14.5569532,PR:000005073,http://purl.obolibrary.org/obo/PR_000005073,E3 ubiquitin-protein ligase Hakai +14.5569532,PR:000005106,http://purl.obolibrary.org/obo/PR_000005106,protein Daple +14.5569532,PR:000005206,http://purl.obolibrary.org/obo/PR_000005206,serine/threonine-protein kinase MRCK beta +14.5569532,PR:000005300,http://purl.obolibrary.org/obo/PR_000005300,carcinoembryonic antigen-related cell adhesion molecule 16 +14.5569532,PR:000005305,http://purl.obolibrary.org/obo/PR_000005305,carcinoembryonic antigen-related cell adhesion molecule 4 +14.5569532,PR:000005389,http://purl.obolibrary.org/obo/PR_000005389,choriogonadotropin subunit beta variant 1 +14.5569532,PR:000005526,http://purl.obolibrary.org/obo/PR_000005526,chloride channel CLIC-like protein 1 +14.5569532,PR:000005635,http://purl.obolibrary.org/obo/PR_000005635,protein cornichon homolog 3 +14.5569532,PR:000005788,http://purl.obolibrary.org/obo/PR_000005788,"cytochrome c oxidase subunit 7A-related protein, mitochondrial" +14.5569532,PR:000005799,http://purl.obolibrary.org/obo/PR_000005799,carboxypeptidase A5 +14.5569532,PR:000005821,http://purl.obolibrary.org/obo/PR_000005821,copine-6 +14.5569532,PR:000005914,http://purl.obolibrary.org/obo/PR_000005914,gamma-crystallin A +14.5569532,PR:000006016,http://purl.obolibrary.org/obo/PR_000006016,CTP synthase 2 +14.5569532,PR:000006054,http://purl.obolibrary.org/obo/PR_000006054,protein CutA +14.5569532,PR:000006093,http://purl.obolibrary.org/obo/PR_000006093,cysteine and histidine-rich protein 1 +14.5569532,PR:000006192,http://purl.obolibrary.org/obo/PR_000006192,none +14.5569532,PR:000006239,http://purl.obolibrary.org/obo/PR_000006239,none +14.5569532,PR:000006325,http://purl.obolibrary.org/obo/PR_000006325,dynactin subunit 3 +14.5569532,PR:000006363,http://purl.obolibrary.org/obo/PR_000006363,ATP-dependent RNA helicase DDX39 +14.5569532,PR:000006376,http://purl.obolibrary.org/obo/PR_000006376,DNA-binding death effector domain-containing protein 2 +14.5569532,PR:000006416,http://purl.obolibrary.org/obo/PR_000006416,exonuclease V +14.5569532,PR:000006446,http://purl.obolibrary.org/obo/PR_000006446,diacylglycerol kinase gamma +14.5569532,PR:000006637,http://purl.obolibrary.org/obo/PR_000006637,decapping and exoribonuclease protein +14.5569532,PR:000006702,http://purl.obolibrary.org/obo/PR_000006702,Down syndrome critical region protein 8 +14.5569532,PR:000006742,http://purl.obolibrary.org/obo/PR_000006742,dual specificity protein phosphatase 15 +14.5569532,PR:000006749,http://purl.obolibrary.org/obo/PR_000006749,dual specificity protein phosphatase 23 +14.5569532,PR:000006785,http://purl.obolibrary.org/obo/PR_000006785,dual specificity tyrosine-phosphorylation-regulated kinase 4 +14.5569532,PR:000006929,http://purl.obolibrary.org/obo/PR_000006929,protein eyes shut +14.5569532,PR:000006954,http://purl.obolibrary.org/obo/PR_000006954,EP300-interacting inhibitor of differentiation 3 +14.5569532,PR:000006993,http://purl.obolibrary.org/obo/PR_000006993,eukaryotic translation initiation factor 4E type 3 +14.5569532,PR:000007055,http://purl.obolibrary.org/obo/PR_000007055,EMILIN-3 +14.5569532,PR:000007434,http://purl.obolibrary.org/obo/PR_000007434,IgGFc-binding protein +14.5569532,PR:000007524,http://purl.obolibrary.org/obo/PR_000007524,filamin-A-interacting protein 1 +14.5569532,PR:000007689,http://purl.obolibrary.org/obo/PR_000007689,formimidoyltransferase-cyclodeaminase +14.5569532,PR:000007784,http://purl.obolibrary.org/obo/PR_000007784,gamma-aminobutyric acid receptor subunit rho-3 +14.5569532,PR:000007929,http://purl.obolibrary.org/obo/PR_000007929,glycerophosphodiester phosphodiesterase domain-containing protein 2 +14.5569532,PR:000008135,http://purl.obolibrary.org/obo/PR_000008135,golgin subfamily A member 7 +14.5569532,PR:000008199,http://purl.obolibrary.org/obo/PR_000008199,G protein-regulated inducer of neurite outgrowth 1 +14.5569532,PR:000008289,http://purl.obolibrary.org/obo/PR_000008289,GSK3B-interacting protein +14.5569532,PR:000008464,http://purl.obolibrary.org/obo/PR_000008464,hemoglobin subunit theta-1 +14.5569532,PR:000008642,http://purl.obolibrary.org/obo/PR_000008642,Rho GTPase-activating protein 45 +14.5569532,PR:000008709,http://purl.obolibrary.org/obo/PR_000008709,homeobox protein Hox-C12 +14.5569532,PR:000008835,http://purl.obolibrary.org/obo/PR_000008835,5-hydroxytryptamine receptor 3C +14.5569532,PR:000008836,http://purl.obolibrary.org/obo/PR_000008836,5-hydroxytryptamine receptor 3D +14.5569532,PR:000008854,http://purl.obolibrary.org/obo/PR_000008854,huntingtin-interacting protein K +14.5569532,PR:000008912,http://purl.obolibrary.org/obo/PR_000008912,interferon alpha-14 +14.5569532,PR:000008916,http://purl.obolibrary.org/obo/PR_000008916,interferon alpha-21 +14.5569532,PR:000008954,http://purl.obolibrary.org/obo/PR_000008954,insulin-like growth factor-binding protein-like 1 +14.5569532,PR:000008970,http://purl.obolibrary.org/obo/PR_000008970,immunoglobulin superfamily member 11 +14.5569532,PR:000009025,http://purl.obolibrary.org/obo/PR_000009025,immortalization up-regulated protein +14.5569532,PR:000009051,http://purl.obolibrary.org/obo/PR_000009051,"phosphatidylinositol 4,5-bisphosphate 5-phosphatase A" +14.5569532,PR:000009247,http://purl.obolibrary.org/obo/PR_000009247,Kazal-type serine protease inhibitor domain-containing protein 1 +14.5569532,PR:000009393,http://purl.obolibrary.org/obo/PR_000009393,kelch-like protein 31 +14.5569532,PR:000009478,http://purl.obolibrary.org/obo/PR_000009478,"keratin, type I cytoskeletal 39" +14.5569532,PR:000009480,http://purl.obolibrary.org/obo/PR_000009480,"keratin, type I cytoskeletal 40" +14.5569532,PR:000009597,http://purl.obolibrary.org/obo/PR_000009597,kyphoscoliosis peptidase +14.5569532,PR:000009639,http://purl.obolibrary.org/obo/PR_000009639,"L-2-hydroxyglutarate dehydrogenase, mitochondrial" +14.5569532,PR:000009671,http://purl.obolibrary.org/obo/PR_000009671,La-related protein 4B +14.5569532,PR:000009763,http://purl.obolibrary.org/obo/PR_000009763,leptin receptor overlapping transcript-like 1 +14.5569532,PR:000009831,http://purl.obolibrary.org/obo/PR_000009831,protein Lines homolog 1 +14.5569532,PR:000009918,http://purl.obolibrary.org/obo/PR_000009918,low-density lipoprotein receptor-related protein 11 +14.5569532,PR:000010031,http://purl.obolibrary.org/obo/PR_000010031,Mis18-binding protein 1 +14.5569532,PR:000010360,http://purl.obolibrary.org/obo/PR_000010360,microfibrillar-associated protein 1 +14.5569532,PR:000010419,http://purl.obolibrary.org/obo/PR_000010419,mirror-image polydactyly gene 1 protein +14.5569532,PR:000010574,http://purl.obolibrary.org/obo/PR_000010574,"39S ribosomal protein L12, mitochondrial" +14.5569532,PR:000010734,http://purl.obolibrary.org/obo/PR_000010734,myotubularin-related protein 12 +14.5569532,PR:000010930,http://purl.obolibrary.org/obo/PR_000010930,none +14.5569532,PR:000011075,http://purl.obolibrary.org/obo/PR_000011075,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 4-like 2 +14.5569532,PR:000011165,http://purl.obolibrary.org/obo/PR_000011165,NFATC2-interacting protein +14.5569532,PR:000011286,http://purl.obolibrary.org/obo/PR_000011286,nucleoside diphosphate kinase 6 +14.5569532,PR:000011345,http://purl.obolibrary.org/obo/PR_000011345,nuclear protein NP60 +14.5569532,PR:000011464,http://purl.obolibrary.org/obo/PR_000011464,netrin-3 +14.5569532,PR:000012039,http://purl.obolibrary.org/obo/PR_000012039,ORM1-like protein 1 +14.5569532,PR:000012082,http://purl.obolibrary.org/obo/PR_000012082,OTU domain-containing protein 5 +14.5569532,PR:000012087,http://purl.obolibrary.org/obo/PR_000012087,esterase OVCA2 +14.5569532,PR:000012232,http://purl.obolibrary.org/obo/PR_000012232,P antigen family member 1 +14.5569532,PR:000012250,http://purl.obolibrary.org/obo/PR_000012250,paralemmin-2 +14.5569532,PR:000012276,http://purl.obolibrary.org/obo/PR_000012276,membrane progestin receptor gamma +14.5569532,PR:000012404,http://purl.obolibrary.org/obo/PR_000012404,protocadherin gamma-B6 +14.5569532,PR:000012556,http://purl.obolibrary.org/obo/PR_000012556,peroxisomal membrane protein 11B +14.5569532,PR:000012728,http://purl.obolibrary.org/obo/PR_000012728,phosphoinositide 3-kinase regulatory subunit 5 +14.5569532,PR:000012746,http://purl.obolibrary.org/obo/PR_000012746,phosphatidylinositol 4-phosphate 5-kinase type-1 gamma +14.5569532,PR:000012796,http://purl.obolibrary.org/obo/PR_000012796,group XIIA secretory phospholipase A2 +14.5569532,PR:000012957,http://purl.obolibrary.org/obo/PR_000012957,protein POF1B +14.5569532,PR:000013065,http://purl.obolibrary.org/obo/PR_000013065,phosphopantothenate--cysteine ligase +14.5569532,PR:000013222,http://purl.obolibrary.org/obo/PR_000013222,cAMP-dependent protein kinase catalytic subunit alpha +14.5569532,PR:000013301,http://purl.obolibrary.org/obo/PR_000013301,proline-rich protein 15 +14.5569532,PR:000013396,http://purl.obolibrary.org/obo/PR_000013396,proteasome inhibitor PI31 subunit +14.5569532,PR:000013400,http://purl.obolibrary.org/obo/PR_000013400,proteasome assembly chaperone 4 +14.5569532,PR:000013480,http://purl.obolibrary.org/obo/PR_000013480,receptor-type tyrosine-protein phosphatase T +14.5569532,PR:000013489,http://purl.obolibrary.org/obo/PR_000013489,securin-3 +14.5569532,PR:000013525,http://purl.obolibrary.org/obo/PR_000013525,pyrin and HIN domain-containing protein 1 +14.5569532,PR:000013561,http://purl.obolibrary.org/obo/PR_000013561,glutamine--tRNA ligase +14.5569532,PR:000013604,http://purl.obolibrary.org/obo/PR_000013604,Ras-related protein Rab-2B +14.5569532,PR:000013622,http://purl.obolibrary.org/obo/PR_000013622,Rab3 GTPase-activating protein non-catalytic subunit +14.5569532,PR:000013681,http://purl.obolibrary.org/obo/PR_000013681,helicase ARIP4 +14.5569532,PR:000013711,http://purl.obolibrary.org/obo/PR_000013711,Ran-binding protein 17 +14.5569532,PR:000013734,http://purl.obolibrary.org/obo/PR_000013734,43 kDa receptor-associated protein of the synapse +14.5569532,PR:000013793,http://purl.obolibrary.org/obo/PR_000013793,RNA-binding protein 28 +14.5569532,PR:000013847,http://purl.obolibrary.org/obo/PR_000013847,negative elongation factor E +14.5569532,PR:000013887,http://purl.obolibrary.org/obo/PR_000013887,RalBP1-associated Eps domain-containing protein 1 +14.5569532,PR:000013972,http://purl.obolibrary.org/obo/PR_000013972,rhomboid-related protein 3 +14.5569532,PR:000013989,http://purl.obolibrary.org/obo/PR_000013989,rhox homeobox family member 1 +14.5569532,PR:000014026,http://purl.obolibrary.org/obo/PR_000014026,protein ripply1 +14.5569532,PR:000014049,http://purl.obolibrary.org/obo/PR_000014049,ribonuclease K6 +14.5569532,PR:000014072,http://purl.obolibrary.org/obo/PR_000014072,E3 ubiquitin-protein ligase RNF115 +14.5569532,PR:000014077,http://purl.obolibrary.org/obo/PR_000014077,E3 ubiquitin-protein ligase RNF125 +14.5569532,PR:000014354,http://purl.obolibrary.org/obo/PR_000014354,receptor-transporting protein 2 +14.5569532,PR:000014355,http://purl.obolibrary.org/obo/PR_000014355,receptor-transporting protein 3 +14.5569532,PR:000014361,http://purl.obolibrary.org/obo/PR_000014361,RUN domain-containing protein 3A +14.5569532,PR:000014475,http://purl.obolibrary.org/obo/PR_000014475,serine/threonine-protein kinase SBK1 +14.5569532,PR:000014487,http://purl.obolibrary.org/obo/PR_000014487,secretory carrier-associated membrane protein 5 +14.5569532,PR:000014573,http://purl.obolibrary.org/obo/PR_000014573,signal peptidase complex catalytic subunit SEC11A +14.5569532,PR:000014576,http://purl.obolibrary.org/obo/PR_000014576,SEC14-like protein 1 +14.5569532,PR:000014591,http://purl.obolibrary.org/obo/PR_000014591,protein transport protein Sec24C +14.5569532,PR:000014647,http://purl.obolibrary.org/obo/PR_000014647,O-phosphoseryl-tRNA(Sec) selenium transferase +14.5569532,PR:000014712,http://purl.obolibrary.org/obo/PR_000014712,SERTA domain-containing protein 2 +14.5569532,PR:000014805,http://purl.obolibrary.org/obo/PR_000014805,small G protein signaling modulator 2 +14.5569532,PR:000014868,http://purl.obolibrary.org/obo/PR_000014868,sialic acid-binding Ig-like lectin 15 +14.5569532,PR:000014915,http://purl.obolibrary.org/obo/PR_000014915,SLAM family member 9 +14.5569532,PR:000014931,http://purl.obolibrary.org/obo/PR_000014931,solute carrier family 12 member 8 +14.5569532,PR:000015003,http://purl.obolibrary.org/obo/PR_000015003,mitochondrial sodium/calcium exchanger protein +14.5569532,PR:000015089,http://purl.obolibrary.org/obo/PR_000015089,CMP-sialic acid transporter +14.5569532,PR:000015106,http://purl.obolibrary.org/obo/PR_000015106,solute carrier family 35 member F2 +14.5569532,PR:000015125,http://purl.obolibrary.org/obo/PR_000015125,zinc transporter ZIP11 +14.5569532,PR:000015145,http://purl.obolibrary.org/obo/PR_000015145,choline transporter-like protein 3 +14.5569532,PR:000015166,http://purl.obolibrary.org/obo/PR_000015166,sodium/glucose cotransporter 5 +14.5569532,PR:000015185,http://purl.obolibrary.org/obo/PR_000015185,sodium-dependent neutral amino acid transporter B(0)AT1 +14.5569532,PR:000015281,http://purl.obolibrary.org/obo/PR_000015281,serine/threonine-protein phosphatase 4 regulatory subunit 3A +14.5569532,PR:000015334,http://purl.obolibrary.org/obo/PR_000015334,U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein +14.5569532,PR:000015380,http://purl.obolibrary.org/obo/PR_000015380,sorting nexin-31 +14.5569532,PR:000015386,http://purl.obolibrary.org/obo/PR_000015386,sorting nexin-7 +14.5569532,PR:000015436,http://purl.obolibrary.org/obo/PR_000015436,nuclear autoantigen Sp-100 +14.5569532,PR:000015448,http://purl.obolibrary.org/obo/PR_000015448,sperm acrosome membrane-associated protein 1 +14.5569532,PR:000015456,http://purl.obolibrary.org/obo/PR_000015456,sperm-associated antigen 17 +14.5569532,PR:000015703,http://purl.obolibrary.org/obo/PR_000015703,SH3 and cysteine-rich domain-containing protein +14.5569532,PR:000015950,http://purl.obolibrary.org/obo/PR_000015950,none +14.5569532,PR:000016099,http://purl.obolibrary.org/obo/PR_000016099,TBC1 domain family member 15 +14.5569532,PR:000016136,http://purl.obolibrary.org/obo/PR_000016136,transducin beta-like protein 3 +14.5569532,PR:000016228,http://purl.obolibrary.org/obo/PR_000016228,tektin-3 +14.5569532,PR:000016409,http://purl.obolibrary.org/obo/PR_000016409,porimin +14.5569532,PR:000016424,http://purl.obolibrary.org/obo/PR_000016424,cell cycle control protein 50B +14.5569532,PR:000016438,http://purl.obolibrary.org/obo/PR_000016438,transmembrane protein 8 +14.5569532,PR:000016549,http://purl.obolibrary.org/obo/PR_000016549,E3 ubiquitin-protein ligase Topors +14.5569532,PR:000016563,http://purl.obolibrary.org/obo/PR_000016563,EKC/KEOPS complex subunit TP53RK +14.5569532,PR:000016603,http://purl.obolibrary.org/obo/PR_000016603,TRAF3-interacting JNK-activating modulator +14.5569532,PR:000016641,http://purl.obolibrary.org/obo/PR_000016641,tripartite motif-containing protein 10 +14.5569532,PR:000016664,http://purl.obolibrary.org/obo/PR_000016664,tripartite motif-containing protein 66 +14.5569532,PR:000016723,http://purl.obolibrary.org/obo/PR_000016723,centrosomal protein of 41 kDa +14.5569532,PR:000016744,http://purl.obolibrary.org/obo/PR_000016744,tetraspanin-18 +14.5569532,PR:000016826,http://purl.obolibrary.org/obo/PR_000016826,tubulin gamma-2 chain +14.5569532,PR:000016865,http://purl.obolibrary.org/obo/PR_000016865,thioredoxin domain-containing protein 8 +14.5569532,PR:000017118,http://purl.obolibrary.org/obo/PR_000017118,uridine phosphorylase 2 +14.5569532,PR:000017142,http://purl.obolibrary.org/obo/PR_000017142,Usher syndrome type-1C protein-binding protein 1 +14.5569532,PR:000017392,http://purl.obolibrary.org/obo/PR_000017392,tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit WDR4 +14.5569532,PR:000017502,http://purl.obolibrary.org/obo/PR_000017502,exportin-T +14.5569532,PR:000017561,http://purl.obolibrary.org/obo/PR_000017561,zinc finger and BTB domain-containing protein 1 +14.5569532,PR:000017610,http://purl.obolibrary.org/obo/PR_000017610,palmitoyltransferase ZDHHC15 +14.5569532,PR:000017624,http://purl.obolibrary.org/obo/PR_000017624,AN1-type zinc finger protein 5 +14.5569532,PR:000018122,http://purl.obolibrary.org/obo/PR_000018122,zinc finger protein 74 +14.5569532,PR:000018216,http://purl.obolibrary.org/obo/PR_000018216,ubiquitin thioesterase ZRANB1 +14.5569532,PR:000022128,http://purl.obolibrary.org/obo/PR_000022128,none +14.5569532,PR:000022136,http://purl.obolibrary.org/obo/PR_000022136,none +14.5569532,PR:000022341,http://purl.obolibrary.org/obo/PR_000022341,none +14.5569532,PR:000022379,http://purl.obolibrary.org/obo/PR_000022379,none +14.5569532,PR:000022398,http://purl.obolibrary.org/obo/PR_000022398,none +14.5569532,PR:000022483,http://purl.obolibrary.org/obo/PR_000022483,none +14.5569532,PR:000022559,http://purl.obolibrary.org/obo/PR_000022559,none +14.5569532,PR:000022662,http://purl.obolibrary.org/obo/PR_000022662,none +14.5569532,PR:000022812,http://purl.obolibrary.org/obo/PR_000022812,none +14.5569532,PR:000022818,http://purl.obolibrary.org/obo/PR_000022818,none +14.5569532,PR:000022863,http://purl.obolibrary.org/obo/PR_000022863,none +14.5569532,PR:000022904,http://purl.obolibrary.org/obo/PR_000022904,ADP-L-glycero-D-manno-heptose-6-epimerase +14.5569532,PR:000022933,http://purl.obolibrary.org/obo/PR_000022933,none +14.5569532,PR:000023123,http://purl.obolibrary.org/obo/PR_000023123,none +14.5569532,PR:000023148,http://purl.obolibrary.org/obo/PR_000023148,none +14.5569532,PR:000023169,http://purl.obolibrary.org/obo/PR_000023169,none +14.5569532,PR:000023217,http://purl.obolibrary.org/obo/PR_000023217,none +14.5569532,PR:000023394,http://purl.obolibrary.org/obo/PR_000023394,none +14.5569532,PR:000023408,http://purl.obolibrary.org/obo/PR_000023408,none +14.5569532,PR:000023433,http://purl.obolibrary.org/obo/PR_000023433,none +14.5569532,PR:000023468,http://purl.obolibrary.org/obo/PR_000023468,none +14.5569532,PR:000023470,http://purl.obolibrary.org/obo/PR_000023470,none +14.5569532,PR:000023504,http://purl.obolibrary.org/obo/PR_000023504,none +14.5569532,PR:000023510,http://purl.obolibrary.org/obo/PR_000023510,none +14.5569532,PR:000023522,http://purl.obolibrary.org/obo/PR_000023522,none +14.5569532,PR:000023606,http://purl.obolibrary.org/obo/PR_000023606,none +14.5569532,PR:000023637,http://purl.obolibrary.org/obo/PR_000023637,none +14.5569532,PR:000023646,http://purl.obolibrary.org/obo/PR_000023646,none +14.5569532,PR:000023647,http://purl.obolibrary.org/obo/PR_000023647,none +14.5569532,PR:000023674,http://purl.obolibrary.org/obo/PR_000023674,none +14.5569532,PR:000023720,http://purl.obolibrary.org/obo/PR_000023720,none +14.5569532,PR:000023724,http://purl.obolibrary.org/obo/PR_000023724,none +14.5569532,PR:000023803,http://purl.obolibrary.org/obo/PR_000023803,none +14.5569532,PR:000023884,http://purl.obolibrary.org/obo/PR_000023884,none +14.5569532,PR:000023892,http://purl.obolibrary.org/obo/PR_000023892,RNA-splicing ligase RtcB +14.5569532,PR:000023910,http://purl.obolibrary.org/obo/PR_000023910,none +14.5569532,PR:000024009,http://purl.obolibrary.org/obo/PR_000024009,none +14.5569532,PR:000024031,http://purl.obolibrary.org/obo/PR_000024031,none +14.5569532,PR:000024136,http://purl.obolibrary.org/obo/PR_000024136,none +14.5569532,PR:000027936,http://purl.obolibrary.org/obo/PR_000027936,STAT3 homodimer +14.5569532,PR:000028315,http://purl.obolibrary.org/obo/PR_000028315,none +14.5569532,PR:000029513,http://purl.obolibrary.org/obo/PR_000029513,adhesion G protein-coupled receptor A3 +14.5569532,PR:000029522,http://purl.obolibrary.org/obo/PR_000029522,glutathione S-transferase C-terminal domain-containing protein +14.5569532,PR:000029610,http://purl.obolibrary.org/obo/PR_000029610,leucine-rich repeat and fibronectin type-III domain-containing protein 4 +14.5569532,PR:000029670,http://purl.obolibrary.org/obo/PR_000029670,PDZ domain-containing protein 8 +14.5569532,PR:000029731,http://purl.obolibrary.org/obo/PR_000029731,RUN domain-containing protein 3B +14.5569532,PR:000029769,http://purl.obolibrary.org/obo/PR_000029769,S1 RNA-binding domain-containing protein 1 +14.5569532,PR:000029823,http://purl.obolibrary.org/obo/PR_000029823,E3 ubiquitin ligase TRIM40 +14.5569532,PR:000029860,http://purl.obolibrary.org/obo/PR_000029860,WD repeat-containing protein 3 +14.5569532,PR:000030275,http://purl.obolibrary.org/obo/PR_000030275,F-BAR domain only protein 1 +14.5569532,PR:000030278,http://purl.obolibrary.org/obo/PR_000030278,coiled-coil and C2 domain-containing protein 1B +14.5569532,PR:000030287,http://purl.obolibrary.org/obo/PR_000030287,plasminogen receptor (KT) +14.5569532,PR:000030320,http://purl.obolibrary.org/obo/PR_000030320,ELMO domain-containing protein 2 +14.5569532,PR:000030347,http://purl.obolibrary.org/obo/PR_000030347,probable crossover junction endonuclease EME2 +14.5569532,PR:000030454,http://purl.obolibrary.org/obo/PR_000030454,ciliogenesis and planar polarity effector 2 +14.5569532,PR:000030467,http://purl.obolibrary.org/obo/PR_000030467,probable G-protein coupled receptor 21 +14.5569532,PR:000030621,http://purl.obolibrary.org/obo/PR_000030621,COMM domain-containing protein 7 +14.5569532,PR:000030646,http://purl.obolibrary.org/obo/PR_000030646,transmembrane protein FAM155B +14.5569532,PR:000030649,http://purl.obolibrary.org/obo/PR_000030649,putative N-acetyltransferase 8B +14.5569532,PR:000030663,http://purl.obolibrary.org/obo/PR_000030663,none +14.5569532,PR:000030693,http://purl.obolibrary.org/obo/PR_000030693,LIM and calponin homology domains-containing protein 1 +14.5569532,PR:000030727,http://purl.obolibrary.org/obo/PR_000030727,cotranscriptional regulator FAM172A +14.5569532,PR:000030761,http://purl.obolibrary.org/obo/PR_000030761,UBX domain-containing protein 7 +14.5569532,PR:000030834,http://purl.obolibrary.org/obo/PR_000030834,WD repeat and FYVE domain-containing protein 2 +14.5569532,PR:000030855,http://purl.obolibrary.org/obo/PR_000030855,18S rRNA aminocarboxypropyltransferase +14.5569532,PR:000030866,http://purl.obolibrary.org/obo/PR_000030866,F-BAR and double SH3 domains protein 2 +14.5569532,PR:000030935,http://purl.obolibrary.org/obo/PR_000030935,centrosomal protein of 83 kDa +14.5569532,PR:000030937,http://purl.obolibrary.org/obo/PR_000030937,protein FAM161A +14.5569532,PR:000030950,http://purl.obolibrary.org/obo/PR_000030950,neuronal regeneration-related protein +14.5569532,PR:000030951,http://purl.obolibrary.org/obo/PR_000030951,cysteine-rich secretory protein LCCL domain-containing 1 +14.5569532,PR:000031010,http://purl.obolibrary.org/obo/PR_000031010,transmembrane protein 72 +14.5569532,PR:000031067,http://purl.obolibrary.org/obo/PR_000031067,"leucine-rich repeat, immunoglobulin-like domain and transmembrane domain-containing protein 3" +14.5569532,PR:000031085,http://purl.obolibrary.org/obo/PR_000031085,DDB1- and CUL4-associated factor 17 +14.5569532,PR:000031193,http://purl.obolibrary.org/obo/PR_000031193,BRISC complex subunit Abraxas 2 +14.5569532,PR:000031219,http://purl.obolibrary.org/obo/PR_000031219,prostaglandin reductase 3 +14.5569532,PR:000031234,http://purl.obolibrary.org/obo/PR_000031234,protein THEMIS +14.5569532,PR:000031252,http://purl.obolibrary.org/obo/PR_000031252,sperm-egg fusion protein Juno +14.5569532,PR:000031317,http://purl.obolibrary.org/obo/PR_000031317,putative ATP-dependent RNA helicase TDRD12 +14.5569532,PR:000031393,http://purl.obolibrary.org/obo/PR_000031393,dynein assembly factor with WDR repeat domains 1 +14.5569532,PR:000031448,http://purl.obolibrary.org/obo/PR_000031448,transcription factor SPT20 +14.5569532,PR:000031488,http://purl.obolibrary.org/obo/PR_000031488,transmembrane protein 47 +14.5569532,PR:000031517,http://purl.obolibrary.org/obo/PR_000031517,protein Aster-B +14.5569532,PR:000031522,http://purl.obolibrary.org/obo/PR_000031522,von Willebrand factor A domain-containing protein 2 +14.5569532,PR:000031611,http://purl.obolibrary.org/obo/PR_000031611,NEDD8-conjugating enzyme UBE2F +14.5569532,PR:000031807,http://purl.obolibrary.org/obo/PR_000031807,bromo adjacent homology domain-containing 1 protein +14.5569532,PR:000031813,http://purl.obolibrary.org/obo/PR_000031813,BTB/POZ domain-containing protein KCTD16 +14.5569532,PR:000031871,http://purl.obolibrary.org/obo/PR_000031871,NUT family member 2B +14.5569532,PR:000031941,http://purl.obolibrary.org/obo/PR_000031941,SET and MYND domain-containing protein 5 +14.5569532,PR:000032044,http://purl.obolibrary.org/obo/PR_000032044,coiled-coil domain-containing protein 85B +14.5569532,PR:000032052,http://purl.obolibrary.org/obo/PR_000032052,BEN domain-containing protein 3 +14.5569532,PR:000032115,http://purl.obolibrary.org/obo/PR_000032115,pentatricopeptide repeat-containing protein 1 +14.5569532,PR:000032319,http://purl.obolibrary.org/obo/PR_000032319,LEM domain-containing protein 1 +14.5569532,PR:000032370,http://purl.obolibrary.org/obo/PR_000032370,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 +14.5569532,PR:000032375,http://purl.obolibrary.org/obo/PR_000032375,transmembrane 9 superfamily member 4 +14.5569532,PR:000032500,http://purl.obolibrary.org/obo/PR_000032500,pyridoxal-dependent decarboxylase domain-containing protein 1 +14.5569532,PR:000032642,http://purl.obolibrary.org/obo/PR_000032642,spermatogenesis-defective protein 39 homolog +14.5569532,PR:000032657,http://purl.obolibrary.org/obo/PR_000032657,BTB/POZ domain-containing protein KCTD17 +14.5569532,PR:000032815,http://purl.obolibrary.org/obo/PR_000032815,neuferricin +14.5569532,PR:000033209,http://purl.obolibrary.org/obo/PR_000033209,none +14.5569532,PR:000033406,http://purl.obolibrary.org/obo/PR_000033406,none +14.5569532,PR:000033493,http://purl.obolibrary.org/obo/PR_000033493,none +14.5569532,PR:000033968,http://purl.obolibrary.org/obo/PR_000033968,none +14.5569532,PR:000034141,http://purl.obolibrary.org/obo/PR_000034141,none +14.5569532,PR:000034400,http://purl.obolibrary.org/obo/PR_000034400,none +14.5569532,PR:000034602,http://purl.obolibrary.org/obo/PR_000034602,none +14.5569532,PR:000034888,http://purl.obolibrary.org/obo/PR_000034888,none +14.5569532,PR:000035254,http://purl.obolibrary.org/obo/PR_000035254,none +14.5569532,PR:000035315,http://purl.obolibrary.org/obo/PR_000035315,none +14.5569532,PR:000036836,http://purl.obolibrary.org/obo/PR_000036836,none +14.5569532,PR:000037380,http://purl.obolibrary.org/obo/PR_000037380,none +14.5569532,PR:000050514,http://purl.obolibrary.org/obo/PR_000050514,none +14.5569532,PR:A0MES8,http://purl.obolibrary.org/obo/PR_A0MES8,none +14.5569532,PR:A2AJX4,http://purl.obolibrary.org/obo/PR_A2AJX4,none +14.5569532,PR:B9DHQ0,http://purl.obolibrary.org/obo/PR_B9DHQ0,none +14.5569532,PR:E1BXS0,http://purl.obolibrary.org/obo/PR_E1BXS0,none +14.5569532,PR:F4JGZ1,http://purl.obolibrary.org/obo/PR_F4JGZ1,none +14.5569532,PR:F4K4J0,http://purl.obolibrary.org/obo/PR_F4K4J0,none +14.5569532,PR:O04309,http://purl.obolibrary.org/obo/PR_O04309,none +14.5569532,PR:O14064,http://purl.obolibrary.org/obo/PR_O14064,none +14.5569532,PR:O23561,http://purl.obolibrary.org/obo/PR_O23561,none +14.5569532,PR:O35305,http://purl.obolibrary.org/obo/PR_O35305,none +14.5569532,PR:O74345,http://purl.obolibrary.org/obo/PR_O74345,none +14.5569532,PR:O74396,http://purl.obolibrary.org/obo/PR_O74396,none +14.5569532,PR:O81242,http://purl.obolibrary.org/obo/PR_O81242,none +14.5569532,PR:O81439,http://purl.obolibrary.org/obo/PR_O81439,none +14.5569532,PR:O81902,http://purl.obolibrary.org/obo/PR_O81902,none +14.5569532,PR:O82210,http://purl.obolibrary.org/obo/PR_O82210,none +14.5569532,PR:P00359,http://purl.obolibrary.org/obo/PR_P00359,none +14.5569532,PR:P02793,http://purl.obolibrary.org/obo/PR_P02793,none +14.5569532,PR:P06480,http://purl.obolibrary.org/obo/PR_P06480,none +14.5569532,PR:P10659,http://purl.obolibrary.org/obo/PR_P10659,none +14.5569532,PR:P13712,http://purl.obolibrary.org/obo/PR_P13712,none +14.5569532,PR:P14724,http://purl.obolibrary.org/obo/PR_P14724,none +14.5569532,PR:P20065,http://purl.obolibrary.org/obo/PR_P20065,none +14.5569532,PR:P21881,http://purl.obolibrary.org/obo/PR_P21881,none +14.5569532,PR:P22816,http://purl.obolibrary.org/obo/PR_P22816,none +14.5569532,PR:P23644,http://purl.obolibrary.org/obo/PR_P23644,none +14.5569532,PR:P25378,http://purl.obolibrary.org/obo/PR_P25378,none +14.5569532,PR:P31377,http://purl.obolibrary.org/obo/PR_P31377,none +14.5569532,PR:P32907,http://purl.obolibrary.org/obo/PR_P32907,none +14.5569532,PR:P33122,http://purl.obolibrary.org/obo/PR_P33122,none +14.5569532,PR:P33308,http://purl.obolibrary.org/obo/PR_P33308,none +14.5569532,PR:P34219,http://purl.obolibrary.org/obo/PR_P34219,none +14.5569532,PR:P34223,http://purl.obolibrary.org/obo/PR_P34223,none +14.5569532,PR:P36112,http://purl.obolibrary.org/obo/PR_P36112,none +14.5569532,PR:P36511,http://purl.obolibrary.org/obo/PR_P36511,none +14.5569532,PR:P38883,http://purl.obolibrary.org/obo/PR_P38883,none +14.5569532,PR:P40956,http://purl.obolibrary.org/obo/PR_P40956,none +14.5569532,PR:P41272,http://purl.obolibrary.org/obo/PR_P41272,none +14.5569532,PR:P41911,http://purl.obolibrary.org/obo/PR_P41911,none +14.5569532,PR:P42271,http://purl.obolibrary.org/obo/PR_P42271,none +14.5569532,PR:P46984,http://purl.obolibrary.org/obo/PR_P46984,none +14.5569532,PR:P50524,http://purl.obolibrary.org/obo/PR_P50524,none +14.5569532,PR:P51996,http://purl.obolibrary.org/obo/PR_P51996,none +14.5569532,PR:P53159,http://purl.obolibrary.org/obo/PR_P53159,none +14.5569532,PR:P53163,http://purl.obolibrary.org/obo/PR_P53163,none +14.5569532,PR:P54873,http://purl.obolibrary.org/obo/PR_P54873,none +14.5569532,PR:P59233,http://purl.obolibrary.org/obo/PR_P59233,none +14.5569532,PR:P78968,http://purl.obolibrary.org/obo/PR_P78968,none +14.5569532,PR:Q03330,http://purl.obolibrary.org/obo/PR_Q03330,none +14.5569532,PR:Q05809,http://purl.obolibrary.org/obo/PR_Q05809,none +14.5569532,PR:Q06630,http://purl.obolibrary.org/obo/PR_Q06630,none +14.5569532,PR:Q09684,http://purl.obolibrary.org/obo/PR_Q09684,none +14.5569532,PR:Q18PI6,http://purl.obolibrary.org/obo/PR_Q18PI6,none +14.5569532,PR:Q1G1A4,http://purl.obolibrary.org/obo/PR_Q1G1A4,none +14.5569532,PR:Q24188,http://purl.obolibrary.org/obo/PR_Q24188,none +14.5569532,PR:Q2MH31,http://purl.obolibrary.org/obo/PR_Q2MH31,none +14.5569532,PR:Q38903,http://purl.obolibrary.org/obo/PR_Q38903,none +14.5569532,PR:Q38904,http://purl.obolibrary.org/obo/PR_Q38904,none +14.5569532,PR:Q39083,http://purl.obolibrary.org/obo/PR_Q39083,none +14.5569532,PR:Q41906,http://purl.obolibrary.org/obo/PR_Q41906,none +14.5569532,PR:Q55FP0,http://purl.obolibrary.org/obo/PR_Q55FP0,none +14.5569532,PR:Q59PW0,http://purl.obolibrary.org/obo/PR_Q59PW0,none +14.5569532,PR:Q5APJ9,http://purl.obolibrary.org/obo/PR_Q5APJ9,none +14.5569532,PR:Q63474,http://purl.obolibrary.org/obo/PR_Q63474,none +14.5569532,PR:Q66I24,http://purl.obolibrary.org/obo/PR_Q66I24,none +14.5569532,PR:Q6DBM8,http://purl.obolibrary.org/obo/PR_Q6DBM8,none +14.5569532,PR:Q6DBQ1,http://purl.obolibrary.org/obo/PR_Q6DBQ1,none +14.5569532,PR:Q6GPD1,http://purl.obolibrary.org/obo/PR_Q6GPD1,none +14.5569532,PR:Q6P0D1,http://purl.obolibrary.org/obo/PR_Q6P0D1,none +14.5569532,PR:Q6WWW4,http://purl.obolibrary.org/obo/PR_Q6WWW4,none +14.5569532,PR:Q7ZUL1,http://purl.obolibrary.org/obo/PR_Q7ZUL1,none +14.5569532,PR:Q803H5,http://purl.obolibrary.org/obo/PR_Q803H5,none +14.5569532,PR:Q84W65,http://purl.obolibrary.org/obo/PR_Q84W65,none +14.5569532,PR:Q84XV2,http://purl.obolibrary.org/obo/PR_Q84XV2,none +14.5569532,PR:Q8L3Z8,http://purl.obolibrary.org/obo/PR_Q8L3Z8,none +14.5569532,PR:Q8NCR6,http://purl.obolibrary.org/obo/PR_Q8NCR6,spermatid-specific manchette-related protein 1 (human) +14.5569532,PR:Q8T5Z7,http://purl.obolibrary.org/obo/PR_Q8T5Z7,none +14.5569532,PR:Q8TE69,http://purl.obolibrary.org/obo/PR_Q8TE69,protein EOLA1 (human) +14.5569532,PR:Q8UVJ7,http://purl.obolibrary.org/obo/PR_Q8UVJ7,none +14.5569532,PR:Q8VDD8,http://purl.obolibrary.org/obo/PR_Q8VDD8,none +14.5569532,PR:Q93WF6,http://purl.obolibrary.org/obo/PR_Q93WF6,none +14.5569532,PR:Q9C8M5,http://purl.obolibrary.org/obo/PR_Q9C8M5,none +14.5569532,PR:Q9FGK9,http://purl.obolibrary.org/obo/PR_Q9FGK9,none +14.5569532,PR:Q9FH36,http://purl.obolibrary.org/obo/PR_Q9FH36,none +14.5569532,PR:Q9FI39,http://purl.obolibrary.org/obo/PR_Q9FI39,none +14.5569532,PR:Q9FL25,http://purl.obolibrary.org/obo/PR_Q9FL25,none +14.5569532,PR:Q9FUS6,http://purl.obolibrary.org/obo/PR_Q9FUS6,none +14.5569532,PR:Q9FVV7,http://purl.obolibrary.org/obo/PR_Q9FVV7,none +14.5569532,PR:Q9LM76,http://purl.obolibrary.org/obo/PR_Q9LM76,none +14.5569532,PR:Q9LPG6,http://purl.obolibrary.org/obo/PR_Q9LPG6,none +14.5569532,PR:Q9LU05,http://purl.obolibrary.org/obo/PR_Q9LU05,none +14.5569532,PR:Q9LUB6,http://purl.obolibrary.org/obo/PR_Q9LUB6,none +14.5569532,PR:Q9LY50,http://purl.obolibrary.org/obo/PR_Q9LY50,none +14.5569532,PR:Q9M1C9,http://purl.obolibrary.org/obo/PR_Q9M1C9,none +14.5569532,PR:Q9M274,http://purl.obolibrary.org/obo/PR_Q9M274,none +14.5569532,PR:Q9MAQ0,http://purl.obolibrary.org/obo/PR_Q9MAQ0,none +14.5569532,PR:Q9NGX9,http://purl.obolibrary.org/obo/PR_Q9NGX9,none +14.5569532,PR:Q9SVU0,http://purl.obolibrary.org/obo/PR_Q9SVU0,none +14.5569532,PR:Q9SYI3,http://purl.obolibrary.org/obo/PR_Q9SYI3,none +14.5569532,PR:Q9SZ58,http://purl.obolibrary.org/obo/PR_Q9SZ58,none +14.5569532,PR:Q9UR06,http://purl.obolibrary.org/obo/PR_Q9UR06,none +14.5569532,PR:Q9URY2,http://purl.obolibrary.org/obo/PR_Q9URY2,none +14.5569532,PR:Q9USV3,http://purl.obolibrary.org/obo/PR_Q9USV3,none +14.5569532,PR:Q9V9J3,http://purl.obolibrary.org/obo/PR_Q9V9J3,none +14.5569532,PR:Q9VKJ9,http://purl.obolibrary.org/obo/PR_Q9VKJ9,none +14.5569532,PR:Q9VNM1,http://purl.obolibrary.org/obo/PR_Q9VNM1,none +14.5569532,PR:Q9XGU0,http://purl.obolibrary.org/obo/PR_Q9XGU0,none +14.5569532,SO:0000084,http://purl.obolibrary.org/obo/SO_0000084,micronuclear_sequence +14.5569532,SO:0000174,http://purl.obolibrary.org/obo/SO_0000174,TATA_box +14.5569532,SO:0000322,http://purl.obolibrary.org/obo/SO_0000322,nuclease_hypersensitive_site +14.5569532,SO:0000591,http://purl.obolibrary.org/obo/SO_0000591,pseudoknot +14.5569532,SO:0000623,http://purl.obolibrary.org/obo/SO_0000623,snRNA_encoding +14.5569532,SO:0000670,http://purl.obolibrary.org/obo/SO_0000670,chromosome_breakage_sequence +14.5569532,SO:0000684,http://purl.obolibrary.org/obo/SO_0000684,nuclease_sensitive_site +14.5569532,SO:0000807,http://purl.obolibrary.org/obo/SO_0000807,engineered_tag +14.5569532,SO:0000977,http://purl.obolibrary.org/obo/SO_0000977,anchor_binding_site +14.5569532,SO:0001386,http://purl.obolibrary.org/obo/SO_0001386,modified_glycine +14.5569532,SO:0001493,http://purl.obolibrary.org/obo/SO_0001493,centromere_DNA_Element_I +14.5569532,SO:0001653,http://purl.obolibrary.org/obo/SO_0001653,retinoic_acid_responsive_element +14.5569532,SO:0001817,http://purl.obolibrary.org/obo/SO_0001817,inframe +14.5569532,SO:0002331,http://purl.obolibrary.org/obo/SO_0002331,accessible_DNA_region +14.5569532,UBERON:0000100,http://purl.obolibrary.org/obo/UBERON_0000100,blastopore +14.5569532,UBERON:0000202,http://purl.obolibrary.org/obo/UBERON_0000202,glial blood brain barrier +14.5569532,UBERON:0000203,http://purl.obolibrary.org/obo/UBERON_0000203,pallium +14.5569532,UBERON:0000204,http://purl.obolibrary.org/obo/UBERON_0000204,ventral part of telencephalon +14.5569532,UBERON:0001284,http://purl.obolibrary.org/obo/UBERON_0001284,renal column +14.5569532,UBERON:0001316,http://purl.obolibrary.org/obo/UBERON_0001316,external iliac vein +14.5569532,UBERON:0001317,http://purl.obolibrary.org/obo/UBERON_0001317,internal iliac vein +14.5569532,UBERON:0001665,http://purl.obolibrary.org/obo/UBERON_0001665,triceps surae +14.5569532,UBERON:0001741,http://purl.obolibrary.org/obo/UBERON_0001741,corniculate cartilage +14.5569532,UBERON:0001811,http://purl.obolibrary.org/obo/UBERON_0001811,conjunctiva +14.5569532,UBERON:0001920,http://purl.obolibrary.org/obo/UBERON_0001920,paraventricular nucleus of thalamus +14.5569532,UBERON:0002154,http://purl.obolibrary.org/obo/UBERON_0002154,lateral reticular nucleus +14.5569532,UBERON:0002432,http://purl.obolibrary.org/obo/UBERON_0002432,pars intermedia of adenohypophysis +14.5569532,UBERON:0002500,http://purl.obolibrary.org/obo/UBERON_0002500,zygomatic arch +14.5569532,UBERON:0002503,http://purl.obolibrary.org/obo/UBERON_0002503,greater trochanter +14.5569532,UBERON:0002778,http://purl.obolibrary.org/obo/UBERON_0002778,ventral pallidum +14.5569532,UBERON:0002837,http://purl.obolibrary.org/obo/UBERON_0002837,sacral dorsal root ganglion +14.5569532,UBERON:0002915,http://purl.obolibrary.org/obo/UBERON_0002915,postcentral sulcus of parietal lobe +14.5569532,UBERON:0003548,http://purl.obolibrary.org/obo/UBERON_0003548,forebrain meninges +14.5569532,UBERON:0003611,http://purl.obolibrary.org/obo/UBERON_0003611,respiratory system elastic tissue +14.5569532,UBERON:0003820,http://purl.obolibrary.org/obo/UBERON_0003820,prostate bud +14.5569532,UBERON:0003976,http://purl.obolibrary.org/obo/UBERON_0003976,saccule duct +14.5569532,UBERON:0003990,http://purl.obolibrary.org/obo/UBERON_0003990,spinal cord motor column +14.5569532,UBERON:0004162,http://purl.obolibrary.org/obo/UBERON_0004162,pulmonary myocardium +14.5569532,UBERON:0004248,http://purl.obolibrary.org/obo/UBERON_0004248,pedal digit bone +14.5569532,UBERON:0004603,http://purl.obolibrary.org/obo/UBERON_0004603,rib 3 +14.5569532,UBERON:0004771,http://purl.obolibrary.org/obo/UBERON_0004771,posterior nasal aperture +14.5569532,UBERON:0005283,http://purl.obolibrary.org/obo/UBERON_0005283,tela choroidea +14.5569532,UBERON:0005457,http://purl.obolibrary.org/obo/UBERON_0005457,left thymus lobe +14.5569532,UBERON:0005484,http://purl.obolibrary.org/obo/UBERON_0005484,tricuspid valve leaflet +14.5569532,UBERON:0005796,http://purl.obolibrary.org/obo/UBERON_0005796,duplex uterus +14.5569532,UBERON:0005998,http://purl.obolibrary.org/obo/UBERON_0005998,tricuspid valve cusp +14.5569532,UBERON:0006489,http://purl.obolibrary.org/obo/UBERON_0006489,C2 segment of cervical spinal cord +14.5569532,UBERON:0006564,http://purl.obolibrary.org/obo/UBERON_0006564,superficial palmar arch +14.5569532,UBERON:0006632,http://purl.obolibrary.org/obo/UBERON_0006632,musculo-phrenic artery +14.5569532,UBERON:0006657,http://purl.obolibrary.org/obo/UBERON_0006657,glenoid fossa +14.5569532,UBERON:0006913,http://purl.obolibrary.org/obo/UBERON_0006913,lip epithelium +14.5569532,UBERON:0006953,http://purl.obolibrary.org/obo/UBERON_0006953,ejaculatory duct epithelium +14.5569532,UBERON:0008194,http://purl.obolibrary.org/obo/UBERON_0008194,tibiotarsus +14.5569532,UBERON:0008243,http://purl.obolibrary.org/obo/UBERON_0008243,upper back muscle +14.5569532,UBERON:0008246,http://purl.obolibrary.org/obo/UBERON_0008246,pyloric stomach +14.5569532,UBERON:0008320,http://purl.obolibrary.org/obo/UBERON_0008320,common penile artery +14.5569532,UBERON:0008321,http://purl.obolibrary.org/obo/UBERON_0008321,deep artery of penis +14.5569532,UBERON:0008434,http://purl.obolibrary.org/obo/UBERON_0008434,cervical vertebral arch +14.5569532,UBERON:0008595,http://purl.obolibrary.org/obo/UBERON_0008595,levator anguli oris +14.5569532,UBERON:0008840,http://purl.obolibrary.org/obo/UBERON_0008840,plantar pad +14.5569532,UBERON:0009643,http://purl.obolibrary.org/obo/UBERON_0009643,central tegmental tract +14.5569532,UBERON:0009965,http://purl.obolibrary.org/obo/UBERON_0009965,coxal gland +14.5569532,UBERON:0010156,http://purl.obolibrary.org/obo/UBERON_0010156,sphenofrontal suture +14.5569532,UBERON:0010240,http://purl.obolibrary.org/obo/UBERON_0010240,zygomatic gland +14.5569532,UBERON:0010300,http://purl.obolibrary.org/obo/UBERON_0010300,epithelial scleral papilla layer +14.5569532,UBERON:0010402,http://purl.obolibrary.org/obo/UBERON_0010402,epidermis suprabasal layer +14.5569532,UBERON:0010418,http://purl.obolibrary.org/obo/UBERON_0010418,urethral opening +14.5569532,UBERON:0011085,http://purl.obolibrary.org/obo/UBERON_0011085,palatoquadrate arch +14.5569532,UBERON:0012240,http://purl.obolibrary.org/obo/UBERON_0012240,urethral meatus +14.5569532,UBERON:0012457,http://purl.obolibrary.org/obo/UBERON_0012457,Ruffini nerve ending +14.5569532,UBERON:0013219,http://purl.obolibrary.org/obo/UBERON_0013219,parotoid gland +14.5569532,UBERON:0013623,http://purl.obolibrary.org/obo/UBERON_0013623,pedal autopod pad +14.5569532,UBERON:0013778,http://purl.obolibrary.org/obo/UBERON_0013778,skin of sole of pes +14.5569532,UBERON:0014734,http://purl.obolibrary.org/obo/UBERON_0014734,allocortex +14.5569532,UBERON:0015011,http://purl.obolibrary.org/obo/UBERON_0015011,tibiotarsus endochondral element +14.5569532,UBERON:0015177,http://purl.obolibrary.org/obo/UBERON_0015177,helicine artery +14.5569532,UBERON:0015246,http://purl.obolibrary.org/obo/UBERON_0015246,septal organ of Masera +14.5569532,UBERON:0016396,http://purl.obolibrary.org/obo/UBERON_0016396,intraglandular lymph node +14.5569532,UBERON:0016856,http://purl.obolibrary.org/obo/UBERON_0016856,digit 6 +14.5569532,UBERON:0016930,http://purl.obolibrary.org/obo/UBERON_0016930,ridge of tooth +14.5569532,UBERON:0018684,http://purl.obolibrary.org/obo/UBERON_0018684,sacral splanchnic nerve +14.5569532,UBERON:0026584,http://purl.obolibrary.org/obo/UBERON_0026584,tympanic canal +14.5569532,UBERON:0034693,http://purl.obolibrary.org/obo/UBERON_0034693,cremasteric artery +14.5569532,UBERON:0034928,http://purl.obolibrary.org/obo/UBERON_0034928,dorsal surface of penis +14.5569532,UBERON:0036269,http://purl.obolibrary.org/obo/UBERON_0036269,penis blood vessel +14.5569532,UBERON:0036294,http://purl.obolibrary.org/obo/UBERON_0036294,mucosa of lip +14.5569532,UBERON:2000728,http://purl.obolibrary.org/obo/UBERON_2000728,somite 2 +14.5569532,UBERON:2002154,http://purl.obolibrary.org/obo/UBERON_2002154,opercular cavity +14.5569532,UBERON:2005295,http://purl.obolibrary.org/obo/UBERON_2005295,axial blood vessel +14.5569532,UBERON:4200054,http://purl.obolibrary.org/obo/UBERON_4200054,heterocercal tail +14.5569532,UBERON:5002544,http://purl.obolibrary.org/obo/UBERON_5002544,digit plus metapodial segment +14.6522634,CHEBI:12777,http://purl.obolibrary.org/obo/CHEBI_12777,vitamin A +14.6522634,CHEBI:133135,http://purl.obolibrary.org/obo/CHEBI_133135,chromenochromene +14.6522634,CHEBI:134394,http://purl.obolibrary.org/obo/CHEBI_134394,primary allylic alcohol +14.6522634,CHEBI:134441,http://purl.obolibrary.org/obo/CHEBI_134441,titanium oxide nanoparticle +14.6522634,CHEBI:15367,http://purl.obolibrary.org/obo/CHEBI_15367,all-trans-retinoic acid +14.6522634,CHEBI:15531,http://purl.obolibrary.org/obo/CHEBI_15531,malonyl-CoA +14.6522634,CHEBI:15765,http://purl.obolibrary.org/obo/CHEBI_15765,L-dopa +14.6522634,CHEBI:16249,http://purl.obolibrary.org/obo/CHEBI_16249,protein disulfide +14.6522634,CHEBI:16393,http://purl.obolibrary.org/obo/CHEBI_16393,sphingosine +14.6522634,CHEBI:16995,http://purl.obolibrary.org/obo/CHEBI_16995,oxalic acid +14.6522634,CHEBI:17858,http://purl.obolibrary.org/obo/CHEBI_17858,glutathione disulfide +14.6522634,CHEBI:18182,http://purl.obolibrary.org/obo/CHEBI_18182,soluble variant-surface-glycoprotein +14.6522634,CHEBI:21545,http://purl.obolibrary.org/obo/CHEBI_21545,N-acetyl-L-amino acid +14.6522634,CHEBI:21575,http://purl.obolibrary.org/obo/CHEBI_21575,N-acetyl-amino acid +14.6522634,CHEBI:21968,http://purl.obolibrary.org/obo/CHEBI_21968,O-phosphoamino acid +14.6522634,CHEBI:22743,http://purl.obolibrary.org/obo/CHEBI_22743,benzyl alcohols +14.6522634,CHEBI:23115,http://purl.obolibrary.org/obo/CHEBI_23115,chlorohydrocarbon +14.6522634,CHEBI:23148,http://purl.obolibrary.org/obo/CHEBI_23148,chloromethanes +14.6522634,CHEBI:23229,http://purl.obolibrary.org/obo/CHEBI_23229,chromanol +14.6522634,CHEBI:23623,http://purl.obolibrary.org/obo/CHEBI_23623,deoxyglucose +14.6522634,CHEBI:24280,http://purl.obolibrary.org/obo/CHEBI_24280,D-glucosyl group +14.6522634,CHEBI:24281,http://purl.obolibrary.org/obo/CHEBI_24281,glucosyl group +14.6522634,CHEBI:24403,http://purl.obolibrary.org/obo/CHEBI_24403,glycosyl group +14.6522634,CHEBI:24654,http://purl.obolibrary.org/obo/CHEBI_24654,hydroxy fatty acid +14.6522634,CHEBI:24757,http://purl.obolibrary.org/obo/CHEBI_24757,hypochlorous acid +14.6522634,CHEBI:25370,http://purl.obolibrary.org/obo/CHEBI_25370,molybdenum molecular entity +14.6522634,CHEBI:26051,http://purl.obolibrary.org/obo/CHEBI_26051,phosphoamino acid +14.6522634,CHEBI:26738,http://purl.obolibrary.org/obo/CHEBI_26738,sphingenine +14.6522634,CHEBI:26743,http://purl.obolibrary.org/obo/CHEBI_26743,sphing-4-enine +14.6522634,CHEBI:27162,http://purl.obolibrary.org/obo/CHEBI_27162,tryptamines +14.6522634,CHEBI:27242,http://purl.obolibrary.org/obo/CHEBI_27242,uridines +14.6522634,CHEBI:27792,http://purl.obolibrary.org/obo/CHEBI_27792,DL-cycloserine +14.6522634,CHEBI:28201,http://purl.obolibrary.org/obo/CHEBI_28201,rotenone +14.6522634,CHEBI:28800,http://purl.obolibrary.org/obo/CHEBI_28800,N-acetylgalactosamine +14.6522634,CHEBI:28939,http://purl.obolibrary.org/obo/CHEBI_28939,N-acetyl-L-cysteine +14.6522634,CHEBI:29861,http://purl.obolibrary.org/obo/CHEBI_29861,perylene +14.6522634,CHEBI:30347,http://purl.obolibrary.org/obo/CHEBI_30347,ethylenediamine +14.6522634,CHEBI:30351,http://purl.obolibrary.org/obo/CHEBI_30351,"2,2'-bipyridine" +14.6522634,CHEBI:30527,http://purl.obolibrary.org/obo/CHEBI_30527,flavin +14.6522634,CHEBI:32111,http://purl.obolibrary.org/obo/CHEBI_32111,saccharin +14.6522634,CHEBI:33253,http://purl.obolibrary.org/obo/CHEBI_33253,nucleon +14.6522634,CHEBI:33456,http://purl.obolibrary.org/obo/CHEBI_33456,organoheteryl group +14.6522634,CHEBI:33909,http://purl.obolibrary.org/obo/CHEBI_33909,metallotetrapyrrole +14.6522634,CHEBI:35202,http://purl.obolibrary.org/obo/CHEBI_35202,molybdenum coordination entity +14.6522634,CHEBI:35428,http://purl.obolibrary.org/obo/CHEBI_35428,ortho-fused bicyclic hydrocarbon +14.6522634,CHEBI:35878,http://purl.obolibrary.org/obo/CHEBI_35878,phosphanes +14.6522634,CHEBI:35879,http://purl.obolibrary.org/obo/CHEBI_35879,phosphorus hydride +14.6522634,CHEBI:36243,http://purl.obolibrary.org/obo/CHEBI_36243,propanoate ester +14.6522634,CHEBI:36339,http://purl.obolibrary.org/obo/CHEBI_36339,baryon +14.6522634,CHEBI:36343,http://purl.obolibrary.org/obo/CHEBI_36343,composite particle +14.6522634,CHEBI:36344,http://purl.obolibrary.org/obo/CHEBI_36344,hadron +14.6522634,CHEBI:36347,http://purl.obolibrary.org/obo/CHEBI_36347,nuclear particle +14.6522634,CHEBI:36828,http://purl.obolibrary.org/obo/CHEBI_36828,pseudohalide anion +14.6522634,CHEBI:36829,http://purl.obolibrary.org/obo/CHEBI_36829,polyatomic monoanion +14.6522634,CHEBI:36973,http://purl.obolibrary.org/obo/CHEBI_36973,graphene +14.6522634,CHEBI:37193,http://purl.obolibrary.org/obo/CHEBI_37193,elemental lead +14.6522634,CHEBI:37716,http://purl.obolibrary.org/obo/CHEBI_37716,mixed diacylamine +14.6522634,CHEBI:37949,http://purl.obolibrary.org/obo/CHEBI_37949,azacycloalkane +14.6522634,CHEBI:38925,http://purl.obolibrary.org/obo/CHEBI_38925,benzopteridine +14.6522634,CHEBI:45892,http://purl.obolibrary.org/obo/CHEBI_45892,trifluoroacetic acid +14.6522634,CHEBI:465284,http://purl.obolibrary.org/obo/CHEBI_465284,ganciclovir +14.6522634,CHEBI:46963,http://purl.obolibrary.org/obo/CHEBI_46963,"2-aminooctadecene-1,3-diol" +14.6522634,CHEBI:46964,http://purl.obolibrary.org/obo/CHEBI_46964,"2-aminooctadec-4-ene-1,3-diol" +14.6522634,CHEBI:48109,http://purl.obolibrary.org/obo/CHEBI_48109,nitrobenzenes +14.6522634,CHEBI:48592,http://purl.obolibrary.org/obo/CHEBI_48592,piperidinecarboxamide +14.6522634,CHEBI:49202,http://purl.obolibrary.org/obo/CHEBI_49202,elemental platinum +14.6522634,CHEBI:50263,http://purl.obolibrary.org/obo/CHEBI_50263,2-hydroxydicarboxylic acid +14.6522634,CHEBI:50471,http://purl.obolibrary.org/obo/CHEBI_50471,primary arylamine +14.6522634,CHEBI:51050,http://purl.obolibrary.org/obo/CHEBI_51050,titanium dioxide nanoparticle +14.6522634,CHEBI:51082,http://purl.obolibrary.org/obo/CHEBI_51082,nitrate salt +14.6522634,CHEBI:51084,http://purl.obolibrary.org/obo/CHEBI_51084,inorganic nitrate salt +14.6522634,CHEBI:51759,http://purl.obolibrary.org/obo/CHEBI_51759,methacrylamide +14.6522634,CHEBI:53289,http://purl.obolibrary.org/obo/CHEBI_53289,donepezil +14.6522634,CHEBI:55505,http://purl.obolibrary.org/obo/CHEBI_55505,"1,2-benzisothiazole" +14.6522634,CHEBI:59792,http://purl.obolibrary.org/obo/CHEBI_59792,thioacetal +14.6522634,CHEBI:59793,http://purl.obolibrary.org/obo/CHEBI_59793,monothioacetal +14.6522634,CHEBI:600103,http://purl.obolibrary.org/obo/CHEBI_600103,daptomycin +14.6522634,CHEBI:60159,http://purl.obolibrary.org/obo/CHEBI_60159,poly(lactic acid) polymer +14.6522634,CHEBI:61373,http://purl.obolibrary.org/obo/CHEBI_61373,isotactic polymer +14.6522634,CHEBI:65321,http://purl.obolibrary.org/obo/CHEBI_65321,terpenoid indole alkaloid +14.6522634,CHEBI:65323,http://purl.obolibrary.org/obo/CHEBI_65323,monoterpenoid indole alkaloid +14.6522634,CHEBI:6650,http://purl.obolibrary.org/obo/CHEBI_6650,malic acid +14.6522634,CHEBI:68534,http://purl.obolibrary.org/obo/CHEBI_68534,enzalutamide +14.6522634,CHEBI:71181,http://purl.obolibrary.org/obo/CHEBI_71181,Sir2 inhibitor +14.6522634,CHEBI:71543,http://purl.obolibrary.org/obo/CHEBI_71543,rotenoid +14.6522634,CHEBI:71947,http://purl.obolibrary.org/obo/CHEBI_71947,tyrocidine +14.6522634,CHEBI:72579,http://purl.obolibrary.org/obo/CHEBI_72579,tetrahydrochromenochromene +14.6522634,CHEBI:72600,http://purl.obolibrary.org/obo/CHEBI_72600,spiroketal +14.6522634,CHEBI:74955,http://purl.obolibrary.org/obo/CHEBI_74955,O(4)-phosphonatotyrosine(2-) +14.6522634,CHEBI:74956,http://purl.obolibrary.org/obo/CHEBI_74956,O(4)-phosphotyrosine +14.6522634,CHEBI:78236,http://purl.obolibrary.org/obo/CHEBI_78236,N-acetyl-L-cysteinate +14.6522634,CHEBI:80233,http://purl.obolibrary.org/obo/CHEBI_80233,Atrial natriuretic peptide +14.6522634,CHEBI:84186,http://purl.obolibrary.org/obo/CHEBI_84186,L-proline derivative +14.6522634,CHEBI:86235,http://purl.obolibrary.org/obo/CHEBI_86235,ferrous carbonate +14.6522634,CHEBI:87100,http://purl.obolibrary.org/obo/CHEBI_87100,triazole fungicide +14.6522634,CHEBI:87228,http://purl.obolibrary.org/obo/CHEBI_87228,sulfonamide antibiotic +14.6522634,CHEBI:90852,http://purl.obolibrary.org/obo/CHEBI_90852,N-sulfonylcarboxamide +14.6522634,CHEBI:9754,http://purl.obolibrary.org/obo/CHEBI_9754,tris +14.6522634,CHEBI:9907,http://purl.obolibrary.org/obo/CHEBI_9907,ursodeoxycholic acid +14.6522634,CL:0000022,http://purl.obolibrary.org/obo/CL_0000022,female germ line stem cell +14.6522634,CL:0000196,http://purl.obolibrary.org/obo/CL_0000196,flight muscle cell +14.6522634,CL:0000444,http://purl.obolibrary.org/obo/CL_0000444,obliquely striated muscle cell +14.6522634,CL:0000474,http://purl.obolibrary.org/obo/CL_0000474,pericardial nephrocyte +14.6522634,CL:0000693,http://purl.obolibrary.org/obo/CL_0000693,neurogliaform cell +14.6522634,CL:0000705,http://purl.obolibrary.org/obo/CL_0000705,R6 photoreceptor cell +14.6522634,CL:0000768,http://purl.obolibrary.org/obo/CL_0000768,immature basophil +14.6522634,CL:0000833,http://purl.obolibrary.org/obo/CL_0000833,eosinophilic promyelocyte +14.6522634,CL:0002080,http://purl.obolibrary.org/obo/CL_0002080,pancreatic centro-acinar cell +14.6522634,CL:0002151,http://purl.obolibrary.org/obo/CL_0002151,late promyelocyte +14.6522634,CL:0002289,http://purl.obolibrary.org/obo/CL_0002289,type I taste bud cell +14.6522634,CL:0002354,http://purl.obolibrary.org/obo/CL_0002354,yolk sac hematopoietic stem cell +14.6522634,CL:0008003,http://purl.obolibrary.org/obo/CL_0008003,somatic muscle myotube +14.6522634,CL:1000082,http://purl.obolibrary.org/obo/CL_1000082,stretch receptor cell +14.6522634,CL:1000698,http://purl.obolibrary.org/obo/CL_1000698,kidney resident macrophage +14.6522634,DRUGBANK:DB00505,http://purl.obolibrary.org/obo/DRUGBANK_DB00505,none +14.6522634,DRUGBANK:DB01298,http://purl.obolibrary.org/obo/DRUGBANK_DB01298,none +14.6522634,DRUGBANK:DB01539,http://purl.obolibrary.org/obo/DRUGBANK_DB01539,none +14.6522634,DRUGBANK:DB01724,http://purl.obolibrary.org/obo/DRUGBANK_DB01724,none +14.6522634,DRUGBANK:DB03263,http://purl.obolibrary.org/obo/DRUGBANK_DB03263,none +14.6522634,DRUGBANK:DB03297,http://purl.obolibrary.org/obo/DRUGBANK_DB03297,none +14.6522634,DRUGBANK:DB03450,http://purl.obolibrary.org/obo/DRUGBANK_DB03450,none +14.6522634,DRUGBANK:DB03628,http://purl.obolibrary.org/obo/DRUGBANK_DB03628,none +14.6522634,DRUGBANK:DB03923,http://purl.obolibrary.org/obo/DRUGBANK_DB03923,none +14.6522634,DRUGBANK:DB03975,http://purl.obolibrary.org/obo/DRUGBANK_DB03975,none +14.6522634,DRUGBANK:DB04220,http://purl.obolibrary.org/obo/DRUGBANK_DB04220,none +14.6522634,DRUGBANK:DB04282,http://purl.obolibrary.org/obo/DRUGBANK_DB04282,none +14.6522634,DRUGBANK:DB04682,http://purl.obolibrary.org/obo/DRUGBANK_DB04682,none +14.6522634,DRUGBANK:DB04738,http://purl.obolibrary.org/obo/DRUGBANK_DB04738,none +14.6522634,DRUGBANK:DB04822,http://purl.obolibrary.org/obo/DRUGBANK_DB04822,none +14.6522634,DRUGBANK:DB04893,http://purl.obolibrary.org/obo/DRUGBANK_DB04893,none +14.6522634,DRUGBANK:DB04988,http://purl.obolibrary.org/obo/DRUGBANK_DB04988,none +14.6522634,DRUGBANK:DB05012,http://purl.obolibrary.org/obo/DRUGBANK_DB05012,none +14.6522634,DRUGBANK:DB05077,http://purl.obolibrary.org/obo/DRUGBANK_DB05077,none +14.6522634,DRUGBANK:DB05112,http://purl.obolibrary.org/obo/DRUGBANK_DB05112,none +14.6522634,DRUGBANK:DB05409,http://purl.obolibrary.org/obo/DRUGBANK_DB05409,none +14.6522634,DRUGBANK:DB05542,http://purl.obolibrary.org/obo/DRUGBANK_DB05542,none +14.6522634,DRUGBANK:DB05580,http://purl.obolibrary.org/obo/DRUGBANK_DB05580,none +14.6522634,DRUGBANK:DB05710,http://purl.obolibrary.org/obo/DRUGBANK_DB05710,none +14.6522634,DRUGBANK:DB05824,http://purl.obolibrary.org/obo/DRUGBANK_DB05824,none +14.6522634,DRUGBANK:DB05855,http://purl.obolibrary.org/obo/DRUGBANK_DB05855,none +14.6522634,DRUGBANK:DB05870,http://purl.obolibrary.org/obo/DRUGBANK_DB05870,none +14.6522634,DRUGBANK:DB05959,http://purl.obolibrary.org/obo/DRUGBANK_DB05959,none +14.6522634,DRUGBANK:DB06040,http://purl.obolibrary.org/obo/DRUGBANK_DB06040,none +14.6522634,DRUGBANK:DB06229,http://purl.obolibrary.org/obo/DRUGBANK_DB06229,none +14.6522634,DRUGBANK:DB06231,http://purl.obolibrary.org/obo/DRUGBANK_DB06231,none +14.6522634,DRUGBANK:DB06236,http://purl.obolibrary.org/obo/DRUGBANK_DB06236,none +14.6522634,DRUGBANK:DB06313,http://purl.obolibrary.org/obo/DRUGBANK_DB06313,none +14.6522634,DRUGBANK:DB06331,http://purl.obolibrary.org/obo/DRUGBANK_DB06331,none +14.6522634,DRUGBANK:DB06435,http://purl.obolibrary.org/obo/DRUGBANK_DB06435,none +14.6522634,DRUGBANK:DB07331,http://purl.obolibrary.org/obo/DRUGBANK_DB07331,none +14.6522634,DRUGBANK:DB08460,http://purl.obolibrary.org/obo/DRUGBANK_DB08460,none +14.6522634,DRUGBANK:DB08568,http://purl.obolibrary.org/obo/DRUGBANK_DB08568,none +14.6522634,DRUGBANK:DB08928,http://purl.obolibrary.org/obo/DRUGBANK_DB08928,none +14.6522634,DRUGBANK:DB08973,http://purl.obolibrary.org/obo/DRUGBANK_DB08973,none +14.6522634,DRUGBANK:DB09199,http://purl.obolibrary.org/obo/DRUGBANK_DB09199,none +14.6522634,DRUGBANK:DB09304,http://purl.obolibrary.org/obo/DRUGBANK_DB09304,none +14.6522634,DRUGBANK:DB10357,http://purl.obolibrary.org/obo/DRUGBANK_DB10357,none +14.6522634,DRUGBANK:DB10382,http://purl.obolibrary.org/obo/DRUGBANK_DB10382,none +14.6522634,DRUGBANK:DB10817,http://purl.obolibrary.org/obo/DRUGBANK_DB10817,none +14.6522634,DRUGBANK:DB11323,http://purl.obolibrary.org/obo/DRUGBANK_DB11323,none +14.6522634,DRUGBANK:DB11668,http://purl.obolibrary.org/obo/DRUGBANK_DB11668,none +14.6522634,DRUGBANK:DB11713,http://purl.obolibrary.org/obo/DRUGBANK_DB11713,none +14.6522634,DRUGBANK:DB11818,http://purl.obolibrary.org/obo/DRUGBANK_DB11818,none +14.6522634,DRUGBANK:DB11896,http://purl.obolibrary.org/obo/DRUGBANK_DB11896,none +14.6522634,DRUGBANK:DB11910,http://purl.obolibrary.org/obo/DRUGBANK_DB11910,none +14.6522634,DRUGBANK:DB11927,http://purl.obolibrary.org/obo/DRUGBANK_DB11927,none +14.6522634,DRUGBANK:DB12059,http://purl.obolibrary.org/obo/DRUGBANK_DB12059,none +14.6522634,DRUGBANK:DB12128,http://purl.obolibrary.org/obo/DRUGBANK_DB12128,none +14.6522634,DRUGBANK:DB12260,http://purl.obolibrary.org/obo/DRUGBANK_DB12260,none +14.6522634,DRUGBANK:DB12316,http://purl.obolibrary.org/obo/DRUGBANK_DB12316,none +14.6522634,DRUGBANK:DB12509,http://purl.obolibrary.org/obo/DRUGBANK_DB12509,none +14.6522634,DRUGBANK:DB12561,http://purl.obolibrary.org/obo/DRUGBANK_DB12561,none +14.6522634,DRUGBANK:DB12591,http://purl.obolibrary.org/obo/DRUGBANK_DB12591,none +14.6522634,DRUGBANK:DB12683,http://purl.obolibrary.org/obo/DRUGBANK_DB12683,none +14.6522634,DRUGBANK:DB12761,http://purl.obolibrary.org/obo/DRUGBANK_DB12761,none +14.6522634,DRUGBANK:DB12777,http://purl.obolibrary.org/obo/DRUGBANK_DB12777,none +14.6522634,DRUGBANK:DB12781,http://purl.obolibrary.org/obo/DRUGBANK_DB12781,none +14.6522634,DRUGBANK:DB12784,http://purl.obolibrary.org/obo/DRUGBANK_DB12784,none +14.6522634,DRUGBANK:DB12845,http://purl.obolibrary.org/obo/DRUGBANK_DB12845,none +14.6522634,DRUGBANK:DB12933,http://purl.obolibrary.org/obo/DRUGBANK_DB12933,none +14.6522634,DRUGBANK:DB13011,http://purl.obolibrary.org/obo/DRUGBANK_DB13011,none +14.6522634,DRUGBANK:DB13230,http://purl.obolibrary.org/obo/DRUGBANK_DB13230,none +14.6522634,DRUGBANK:DB13253,http://purl.obolibrary.org/obo/DRUGBANK_DB13253,none +14.6522634,DRUGBANK:DB13299,http://purl.obolibrary.org/obo/DRUGBANK_DB13299,none +14.6522634,DRUGBANK:DB13368,http://purl.obolibrary.org/obo/DRUGBANK_DB13368,none +14.6522634,DRUGBANK:DB13379,http://purl.obolibrary.org/obo/DRUGBANK_DB13379,none +14.6522634,DRUGBANK:DB13382,http://purl.obolibrary.org/obo/DRUGBANK_DB13382,none +14.6522634,DRUGBANK:DB13469,http://purl.obolibrary.org/obo/DRUGBANK_DB13469,none +14.6522634,DRUGBANK:DB13509,http://purl.obolibrary.org/obo/DRUGBANK_DB13509,none +14.6522634,DRUGBANK:DB13572,http://purl.obolibrary.org/obo/DRUGBANK_DB13572,none +14.6522634,DRUGBANK:DB13635,http://purl.obolibrary.org/obo/DRUGBANK_DB13635,none +14.6522634,DRUGBANK:DB13662,http://purl.obolibrary.org/obo/DRUGBANK_DB13662,none +14.6522634,DRUGBANK:DB13712,http://purl.obolibrary.org/obo/DRUGBANK_DB13712,none +14.6522634,DRUGBANK:DB13770,http://purl.obolibrary.org/obo/DRUGBANK_DB13770,none +14.6522634,DRUGBANK:DB13930,http://purl.obolibrary.org/obo/DRUGBANK_DB13930,none +14.6522634,DRUGBANK:DB14543,http://purl.obolibrary.org/obo/DRUGBANK_DB14543,none +14.6522634,DRUGBANK:DB14830,http://purl.obolibrary.org/obo/DRUGBANK_DB14830,none +14.6522634,DRUGBANK:DB14852,http://purl.obolibrary.org/obo/DRUGBANK_DB14852,none +14.6522634,DRUGBANK:DB14855,http://purl.obolibrary.org/obo/DRUGBANK_DB14855,none +14.6522634,DRUGBANK:DB14980,http://purl.obolibrary.org/obo/DRUGBANK_DB14980,none +14.6522634,DRUGBANK:DB15101,http://purl.obolibrary.org/obo/DRUGBANK_DB15101,none +14.6522634,DRUGBANK:DB15113,http://purl.obolibrary.org/obo/DRUGBANK_DB15113,none +14.6522634,DRUGBANK:DB15120,http://purl.obolibrary.org/obo/DRUGBANK_DB15120,none +14.6522634,DRUGBANK:DB15170,http://purl.obolibrary.org/obo/DRUGBANK_DB15170,none +14.6522634,DRUGBANK:DB15193,http://purl.obolibrary.org/obo/DRUGBANK_DB15193,none +14.6522634,DRUGBANK:DB15271,http://purl.obolibrary.org/obo/DRUGBANK_DB15271,none +14.6522634,DRUGBANK:DB15824,http://purl.obolibrary.org/obo/DRUGBANK_DB15824,none +14.6522634,DRUGBANK:DB16038,http://purl.obolibrary.org/obo/DRUGBANK_DB16038,none +14.6522634,DRUGBANK:DB16047,http://purl.obolibrary.org/obo/DRUGBANK_DB16047,none +14.6522634,DRUGBANK:DB16201,http://purl.obolibrary.org/obo/DRUGBANK_DB16201,none +14.6522634,GO:0000210,http://purl.obolibrary.org/obo/GO_0000210,NAD+ diphosphatase activity +14.6522634,GO:0000919,http://purl.obolibrary.org/obo/GO_0000919,cell plate assembly +14.6522634,GO:0001678,http://purl.obolibrary.org/obo/GO_0001678,cellular glucose homeostasis +14.6522634,GO:0002115,http://purl.obolibrary.org/obo/GO_0002115,store-operated calcium entry +14.6522634,GO:0002159,http://purl.obolibrary.org/obo/GO_0002159,desmosome assembly +14.6522634,GO:0002283,http://purl.obolibrary.org/obo/GO_0002283,neutrophil activation involved in immune response +14.6522634,GO:0002370,http://purl.obolibrary.org/obo/GO_0002370,natural killer cell cytokine production +14.6522634,GO:0002407,http://purl.obolibrary.org/obo/GO_0002407,dendritic cell chemotaxis +14.6522634,GO:0002467,http://purl.obolibrary.org/obo/GO_0002467,germinal center formation +14.6522634,GO:0002934,http://purl.obolibrary.org/obo/GO_0002934,desmosome organization +14.6522634,GO:0003156,http://purl.obolibrary.org/obo/GO_0003156,regulation of animal organ formation +14.6522634,GO:0003203,http://purl.obolibrary.org/obo/GO_0003203,endocardial cushion morphogenesis +14.6522634,GO:0003407,http://purl.obolibrary.org/obo/GO_0003407,neural retina development +14.6522634,GO:0003942,http://purl.obolibrary.org/obo/GO_0003942,N-acetyl-gamma-glutamyl-phosphate reductase activity +14.6522634,GO:0004107,http://purl.obolibrary.org/obo/GO_0004107,chorismate synthase activity +14.6522634,GO:0004176,http://purl.obolibrary.org/obo/GO_0004176,ATP-dependent peptidase activity +14.6522634,GO:0004354,http://purl.obolibrary.org/obo/GO_0004354,glutamate dehydrogenase (NADP+) activity +14.6522634,GO:0004394,http://purl.obolibrary.org/obo/GO_0004394,heparan sulfate 2-O-sulfotransferase activity +14.6522634,GO:0004739,http://purl.obolibrary.org/obo/GO_0004739,pyruvate dehydrogenase (acetyl-transferring) activity +14.6522634,GO:0005088,http://purl.obolibrary.org/obo/GO_0005088,none +14.6522634,GO:0005231,http://purl.obolibrary.org/obo/GO_0005231,excitatory extracellular ligand-gated ion channel activity +14.6522634,GO:0005786,http://purl.obolibrary.org/obo/GO_0005786,"signal recognition particle, endoplasmic reticulum targeting" +14.6522634,GO:0005894,http://purl.obolibrary.org/obo/GO_0005894,interleukin-3 receptor complex +14.6522634,GO:0006406,http://purl.obolibrary.org/obo/GO_0006406,mRNA export from nucleus +14.6522634,GO:0006546,http://purl.obolibrary.org/obo/GO_0006546,glycine catabolic process +14.6522634,GO:0006589,http://purl.obolibrary.org/obo/GO_0006589,octopamine biosynthetic process +14.6522634,GO:0006747,http://purl.obolibrary.org/obo/GO_0006747,FAD biosynthetic process +14.6522634,GO:0006874,http://purl.obolibrary.org/obo/GO_0006874,cellular calcium ion homeostasis +14.6522634,GO:0007029,http://purl.obolibrary.org/obo/GO_0007029,endoplasmic reticulum organization +14.6522634,GO:0007553,http://purl.obolibrary.org/obo/GO_0007553,regulation of ecdysteroid metabolic process +14.6522634,GO:0008343,http://purl.obolibrary.org/obo/GO_0008343,adult feeding behavior +14.6522634,GO:0008594,http://purl.obolibrary.org/obo/GO_0008594,photoreceptor cell morphogenesis +14.6522634,GO:0008696,http://purl.obolibrary.org/obo/GO_0008696,4-amino-4-deoxychorismate lyase activity +14.6522634,GO:0008712,http://purl.obolibrary.org/obo/GO_0008712,ADP-glyceromanno-heptose 6-epimerase activity +14.6522634,GO:0008816,http://purl.obolibrary.org/obo/GO_0008816,citryl-CoA lyase activity +14.6522634,GO:0008832,http://purl.obolibrary.org/obo/GO_0008832,dGTPase activity +14.6522634,GO:0008880,http://purl.obolibrary.org/obo/GO_0008880,glucuronate isomerase activity +14.6522634,GO:0008928,http://purl.obolibrary.org/obo/GO_0008928,mannose-1-phosphate guanylyltransferase (GDP) activity +14.6522634,GO:0008970,http://purl.obolibrary.org/obo/GO_0008970,phospholipase A1 activity +14.6522634,GO:0008973,http://purl.obolibrary.org/obo/GO_0008973,phosphopentomutase activity +14.6522634,GO:0009325,http://purl.obolibrary.org/obo/GO_0009325,nitrate reductase complex +14.6522634,GO:0009399,http://purl.obolibrary.org/obo/GO_0009399,nitrogen fixation +14.6522634,GO:0009521,http://purl.obolibrary.org/obo/GO_0009521,photosystem +14.6522634,GO:0009792,http://purl.obolibrary.org/obo/GO_0009792,embryo development ending in birth or egg hatching +14.6522634,GO:0009898,http://purl.obolibrary.org/obo/GO_0009898,cytoplasmic side of plasma membrane +14.6522634,GO:0009976,http://purl.obolibrary.org/obo/GO_0009976,tocopherol cyclase activity +14.6522634,GO:0009978,http://purl.obolibrary.org/obo/GO_0009978,allene oxide synthase activity +14.6522634,GO:0010075,http://purl.obolibrary.org/obo/GO_0010075,regulation of meristem growth +14.6522634,GO:0010092,http://purl.obolibrary.org/obo/GO_0010092,specification of animal organ identity +14.6522634,GO:0010161,http://purl.obolibrary.org/obo/GO_0010161,red light signaling pathway +14.6522634,GO:0010236,http://purl.obolibrary.org/obo/GO_0010236,plastoquinone biosynthetic process +14.6522634,GO:0010240,http://purl.obolibrary.org/obo/GO_0010240,plastid pyruvate dehydrogenase complex +14.6522634,GO:0010977,http://purl.obolibrary.org/obo/GO_0010977,negative regulation of neuron projection development +14.6522634,GO:0014002,http://purl.obolibrary.org/obo/GO_0014002,astrocyte development +14.6522634,GO:0014020,http://purl.obolibrary.org/obo/GO_0014020,primary neural tube formation +14.6522634,GO:0014732,http://purl.obolibrary.org/obo/GO_0014732,skeletal muscle atrophy +14.6522634,GO:0014734,http://purl.obolibrary.org/obo/GO_0014734,skeletal muscle hypertrophy +14.6522634,GO:0014891,http://purl.obolibrary.org/obo/GO_0014891,striated muscle atrophy +14.6522634,GO:0015350,http://purl.obolibrary.org/obo/GO_0015350,methotrexate transmembrane transporter activity +14.6522634,GO:0015679,http://purl.obolibrary.org/obo/GO_0015679,plasma membrane copper ion transport +14.6522634,GO:0015719,http://purl.obolibrary.org/obo/GO_0015719,allantoate transport +14.6522634,GO:0015735,http://purl.obolibrary.org/obo/GO_0015735,uronic acid transmembrane transport +14.6522634,GO:0016513,http://purl.obolibrary.org/obo/GO_0016513,core-binding factor complex +14.6522634,GO:0016633,http://purl.obolibrary.org/obo/GO_0016633,galactonolactone dehydrogenase activity +14.6522634,GO:0016669,http://purl.obolibrary.org/obo/GO_0016669,"oxidoreductase activity, acting on a sulfur group of donors, cytochrome as acceptor" +14.6522634,GO:0016754,http://purl.obolibrary.org/obo/GO_0016754,sinapoylglucose-malate O-sinapoyltransferase activity +14.6522634,GO:0016793,http://purl.obolibrary.org/obo/GO_0016793,triphosphoric monoester hydrolase activity +14.6522634,GO:0017023,http://purl.obolibrary.org/obo/GO_0017023,myosin phosphatase complex +14.6522634,GO:0018661,http://purl.obolibrary.org/obo/GO_0018661,orcinol 2-monooxygenase activity +14.6522634,GO:0018673,http://purl.obolibrary.org/obo/GO_0018673,anthraniloyl-CoA monooxygenase activity +14.6522634,GO:0018677,http://purl.obolibrary.org/obo/GO_0018677,pentachlorophenol monooxygenase activity +14.6522634,GO:0018861,http://purl.obolibrary.org/obo/GO_0018861,4-chlorobenzoate-CoA ligase activity +14.6522634,GO:0018923,http://purl.obolibrary.org/obo/GO_0018923,limonene metabolic process +14.6522634,GO:0018973,http://purl.obolibrary.org/obo/GO_0018973,trinitrotoluene metabolic process +14.6522634,GO:0018974,http://purl.obolibrary.org/obo/GO_0018974,"2,4,6-trinitrotoluene metabolic process" +14.6522634,GO:0019271,http://purl.obolibrary.org/obo/GO_0019271,aerobactin transport +14.6522634,GO:0019659,http://purl.obolibrary.org/obo/GO_0019659,glucose catabolic process to lactate +14.6522634,GO:0019874,http://purl.obolibrary.org/obo/GO_0019874,6-aminohexanoate-cyclic-dimer hydrolase activity +14.6522634,GO:0021551,http://purl.obolibrary.org/obo/GO_0021551,central nervous system morphogenesis +14.6522634,GO:0030032,http://purl.obolibrary.org/obo/GO_0030032,lamellipodium assembly +14.6522634,GO:0030686,http://purl.obolibrary.org/obo/GO_0030686,90S preribosome +14.6522634,GO:0030730,http://purl.obolibrary.org/obo/GO_0030730,sequestering of triglyceride +14.6522634,GO:0030746,http://purl.obolibrary.org/obo/GO_0030746,isoflavone 4'-O-methyltransferase activity +14.6522634,GO:0030769,http://purl.obolibrary.org/obo/GO_0030769,macrocin O-methyltransferase activity +14.6522634,GO:0030804,http://purl.obolibrary.org/obo/GO_0030804,none +14.6522634,GO:0030819,http://purl.obolibrary.org/obo/GO_0030819,none +14.6522634,GO:0030852,http://purl.obolibrary.org/obo/GO_0030852,regulation of granulocyte differentiation +14.6522634,GO:0030892,http://purl.obolibrary.org/obo/GO_0030892,mitotic cohesin complex +14.6522634,GO:0030978,http://purl.obolibrary.org/obo/GO_0030978,alpha-glucan metabolic process +14.6522634,GO:0030989,http://purl.obolibrary.org/obo/GO_0030989,dynein-driven meiotic oscillatory nuclear movement +14.6522634,GO:0031539,http://purl.obolibrary.org/obo/GO_0031539,positive regulation of anthocyanin metabolic process +14.6522634,GO:0031542,http://purl.obolibrary.org/obo/GO_0031542,positive regulation of anthocyanin biosynthetic process +14.6522634,GO:0032069,http://purl.obolibrary.org/obo/GO_0032069,regulation of nuclease activity +14.6522634,GO:0032088,http://purl.obolibrary.org/obo/GO_0032088,negative regulation of NF-kappaB transcription factor activity +14.6522634,GO:0032373,http://purl.obolibrary.org/obo/GO_0032373,positive regulation of sterol transport +14.6522634,GO:0032376,http://purl.obolibrary.org/obo/GO_0032376,positive regulation of cholesterol transport +14.6522634,GO:0032626,http://purl.obolibrary.org/obo/GO_0032626,interleukin-22 production +14.6522634,GO:0032873,http://purl.obolibrary.org/obo/GO_0032873,negative regulation of stress-activated MAPK cascade +14.6522634,GO:0033524,http://purl.obolibrary.org/obo/GO_0033524,sinapate ester metabolic process +14.6522634,GO:0033998,http://purl.obolibrary.org/obo/GO_0033998,inulin fructotransferase (DFA-III-forming) activity +14.6522634,GO:0034342,http://purl.obolibrary.org/obo/GO_0034342,response to type III interferon +14.6522634,GO:0034596,http://purl.obolibrary.org/obo/GO_0034596,phosphatidylinositol phosphate 4-phosphatase activity +14.6522634,GO:0034674,http://purl.obolibrary.org/obo/GO_0034674,integrin alpha5-beta1 complex +14.6522634,GO:0035238,http://purl.obolibrary.org/obo/GO_0035238,vitamin A biosynthetic process +14.6522634,GO:0035355,http://purl.obolibrary.org/obo/GO_0035355,Toll-like receptor 2-Toll-like receptor 6 protein complex +14.6522634,GO:0035620,http://purl.obolibrary.org/obo/GO_0035620,none +14.6522634,GO:0035725,http://purl.obolibrary.org/obo/GO_0035725,sodium ion transmembrane transport +14.6522634,GO:0035799,http://purl.obolibrary.org/obo/GO_0035799,ureter maturation +14.6522634,GO:0035824,http://purl.obolibrary.org/obo/GO_0035824,long tract gene conversion +14.6522634,GO:0035881,http://purl.obolibrary.org/obo/GO_0035881,amacrine cell differentiation +14.6522634,GO:0035924,http://purl.obolibrary.org/obo/GO_0035924,cellular response to vascular endothelial growth factor stimulus +14.6522634,GO:0036300,http://purl.obolibrary.org/obo/GO_0036300,B cell receptor internalization +14.6522634,GO:0036339,http://purl.obolibrary.org/obo/GO_0036339,lymphocyte adhesion to endothelial cell of high endothelial venule +14.6522634,GO:0038048,http://purl.obolibrary.org/obo/GO_0038048,dynorphin receptor activity +14.6522634,GO:0038194,http://purl.obolibrary.org/obo/GO_0038194,thyroid-stimulating hormone signaling pathway +14.6522634,GO:0040025,http://purl.obolibrary.org/obo/GO_0040025,vulval development +14.6522634,GO:0042189,http://purl.obolibrary.org/obo/GO_0042189,vanillin biosynthetic process +14.6522634,GO:0042365,http://purl.obolibrary.org/obo/GO_0042365,water-soluble vitamin catabolic process +14.6522634,GO:0042556,http://purl.obolibrary.org/obo/GO_0042556,eukaryotic elongation factor-2 kinase regulator activity +14.6522634,GO:0042766,http://purl.obolibrary.org/obo/GO_0042766,nucleosome mobilization +14.6522634,GO:0042836,http://purl.obolibrary.org/obo/GO_0042836,D-glucarate metabolic process +14.6522634,GO:0042895,http://purl.obolibrary.org/obo/GO_0042895,none +14.6522634,GO:0043034,http://purl.obolibrary.org/obo/GO_0043034,costamere +14.6522634,GO:0043312,http://purl.obolibrary.org/obo/GO_0043312,neutrophil degranulation +14.6522634,GO:0043420,http://purl.obolibrary.org/obo/GO_0043420,anthranilate metabolic process +14.6522634,GO:0043523,http://purl.obolibrary.org/obo/GO_0043523,regulation of neuron apoptotic process +14.6522634,GO:0043939,http://purl.obolibrary.org/obo/GO_0043939,negative regulation of sporulation +14.6522634,GO:0043970,http://purl.obolibrary.org/obo/GO_0043970,histone H3-K9 acetylation +14.6522634,GO:0044222,http://purl.obolibrary.org/obo/GO_0044222,anammoxosome +14.6522634,GO:0044291,http://purl.obolibrary.org/obo/GO_0044291,cell-cell contact zone +14.6522634,GO:0044773,http://purl.obolibrary.org/obo/GO_0044773,mitotic DNA damage checkpoint signaling +14.6522634,GO:0044839,http://purl.obolibrary.org/obo/GO_0044839,cell cycle G2/M phase transition +14.6522634,GO:0045069,http://purl.obolibrary.org/obo/GO_0045069,regulation of viral genome replication +14.6522634,GO:0045170,http://purl.obolibrary.org/obo/GO_0045170,spectrosome +14.6522634,GO:0045762,http://purl.obolibrary.org/obo/GO_0045762,positive regulation of adenylate cyclase activity +14.6522634,GO:0046053,http://purl.obolibrary.org/obo/GO_0046053,dAMP metabolic process +14.6522634,GO:0046569,http://purl.obolibrary.org/obo/GO_0046569,glyoxal oxidase activity +14.6522634,GO:0046662,http://purl.obolibrary.org/obo/GO_0046662,regulation of oviposition +14.6522634,GO:0047091,http://purl.obolibrary.org/obo/GO_0047091,L-lysine 6-monooxygenase (NADPH) activity +14.6522634,GO:0047196,http://purl.obolibrary.org/obo/GO_0047196,long-chain-alcohol O-fatty-acyltransferase activity +14.6522634,GO:0047603,http://purl.obolibrary.org/obo/GO_0047603,acetoacetyl-CoA hydrolase activity +14.6522634,GO:0047626,http://purl.obolibrary.org/obo/GO_0047626,adenosylmethionine hydrolase activity +14.6522634,GO:0047852,http://purl.obolibrary.org/obo/GO_0047852,diferric-transferrin reductase activity +14.6522634,GO:0047988,http://purl.obolibrary.org/obo/GO_0047988,hydroxyacid-oxoacid transhydrogenase activity +14.6522634,GO:0048095,http://purl.obolibrary.org/obo/GO_0048095,female pigmentation +14.6522634,GO:0048143,http://purl.obolibrary.org/obo/GO_0048143,astrocyte activation +14.6522634,GO:0048382,http://purl.obolibrary.org/obo/GO_0048382,mesendoderm development +14.6522634,GO:0048500,http://purl.obolibrary.org/obo/GO_0048500,signal recognition particle +14.6522634,GO:0048749,http://purl.obolibrary.org/obo/GO_0048749,compound eye development +14.6522634,GO:0048788,http://purl.obolibrary.org/obo/GO_0048788,cytoskeleton of presynaptic active zone +14.6522634,GO:0048857,http://purl.obolibrary.org/obo/GO_0048857,neural nucleus development +14.6522634,GO:0050109,http://purl.obolibrary.org/obo/GO_0050109,morphine 6-dehydrogenase activity +14.6522634,GO:0050137,http://purl.obolibrary.org/obo/GO_0050137,NADPH peroxidase activity +14.6522634,GO:0050152,http://purl.obolibrary.org/obo/GO_0050152,omega-amidase activity +14.6522634,GO:0050170,http://purl.obolibrary.org/obo/GO_0050170,peptidyl-glutaminase activity +14.6522634,GO:0050439,http://purl.obolibrary.org/obo/GO_0050439,2-hydroxy-3-oxoadipate synthase activity +14.6522634,GO:0050456,http://purl.obolibrary.org/obo/GO_0050456,cystine reductase activity +14.6522634,GO:0050486,http://purl.obolibrary.org/obo/GO_0050486,"intramolecular transferase activity, transferring hydroxy groups" +14.6522634,GO:0050736,http://purl.obolibrary.org/obo/GO_0050736,O-malonyltransferase activity +14.6522634,GO:0051061,http://purl.obolibrary.org/obo/GO_0051061,ADP reductase activity +14.6522634,GO:0051075,http://purl.obolibrary.org/obo/GO_0051075,S-adenosylmethionine:tRNA ribosyltransferase-isomerase activity +14.6522634,GO:0051143,http://purl.obolibrary.org/obo/GO_0051143,propanediol metabolic process +14.6522634,GO:0051237,http://purl.obolibrary.org/obo/GO_0051237,maintenance of RNA location +14.6522634,GO:0051349,http://purl.obolibrary.org/obo/GO_0051349,positive regulation of lyase activity +14.6522634,GO:0051601,http://purl.obolibrary.org/obo/GO_0051601,exocyst localization +14.6522634,GO:0051765,http://purl.obolibrary.org/obo/GO_0051765,inositol tetrakisphosphate kinase activity +14.6522634,GO:0051780,http://purl.obolibrary.org/obo/GO_0051780,behavioral response to nutrient +14.6522634,GO:0051953,http://purl.obolibrary.org/obo/GO_0051953,negative regulation of amine transport +14.6522634,GO:0051988,http://purl.obolibrary.org/obo/GO_0051988,regulation of attachment of spindle microtubules to kinetochore +14.6522634,GO:0052659,http://purl.obolibrary.org/obo/GO_0052659,"inositol-1,3,4,5-tetrakisphosphate 5-phosphatase activity" +14.6522634,GO:0052664,http://purl.obolibrary.org/obo/GO_0052664,nitroalkane oxidase activity +14.6522634,GO:0052706,http://purl.obolibrary.org/obo/GO_0052706,histidine N-methyltransferase activity +14.6522634,GO:0052731,http://purl.obolibrary.org/obo/GO_0052731,phosphocholine phosphatase activity +14.6522634,GO:0052815,http://purl.obolibrary.org/obo/GO_0052815,medium-chain acyl-CoA hydrolase activity +14.6522634,GO:0060215,http://purl.obolibrary.org/obo/GO_0060215,primitive hemopoiesis +14.6522634,GO:0060361,http://purl.obolibrary.org/obo/GO_0060361,flight +14.6522634,GO:0060363,http://purl.obolibrary.org/obo/GO_0060363,cranial suture morphogenesis +14.6522634,GO:0060375,http://purl.obolibrary.org/obo/GO_0060375,regulation of mast cell differentiation +14.6522634,GO:0060736,http://purl.obolibrary.org/obo/GO_0060736,prostate gland growth +14.6522634,GO:0060919,http://purl.obolibrary.org/obo/GO_0060919,auxin influx +14.6522634,GO:0061550,http://purl.obolibrary.org/obo/GO_0061550,cranial ganglion development +14.6522634,GO:0061565,http://purl.obolibrary.org/obo/GO_0061565,dAMP phosphorylation +14.6522634,GO:0061756,http://purl.obolibrary.org/obo/GO_0061756,leukocyte adhesion to vascular endothelial cell +14.6522634,GO:0070001,http://purl.obolibrary.org/obo/GO_0070001,aspartic-type peptidase activity +14.6522634,GO:0070274,http://purl.obolibrary.org/obo/GO_0070274,RES complex +14.6522634,GO:0070301,http://purl.obolibrary.org/obo/GO_0070301,cellular response to hydrogen peroxide +14.6522634,GO:0070303,http://purl.obolibrary.org/obo/GO_0070303,negative regulation of stress-activated protein kinase signaling cascade +14.6522634,GO:0070665,http://purl.obolibrary.org/obo/GO_0070665,positive regulation of leukocyte proliferation +14.6522634,GO:0070966,http://purl.obolibrary.org/obo/GO_0070966,"nuclear-transcribed mRNA catabolic process, no-go decay" +14.6522634,GO:0070980,http://purl.obolibrary.org/obo/GO_0070980,biphenyl catabolic process +14.6522634,GO:0070987,http://purl.obolibrary.org/obo/GO_0070987,error-free translesion synthesis +14.6522634,GO:0071357,http://purl.obolibrary.org/obo/GO_0071357,cellular response to type I interferon +14.6522634,GO:0071491,http://purl.obolibrary.org/obo/GO_0071491,cellular response to red light +14.6522634,GO:0071539,http://purl.obolibrary.org/obo/GO_0071539,protein localization to centrosome +14.6522634,GO:0071696,http://purl.obolibrary.org/obo/GO_0071696,ectodermal placode development +14.6522634,GO:0071698,http://purl.obolibrary.org/obo/GO_0071698,olfactory placode development +14.6522634,GO:0071748,http://purl.obolibrary.org/obo/GO_0071748,monomeric IgA immunoglobulin complex +14.6522634,GO:0071798,http://purl.obolibrary.org/obo/GO_0071798,response to prostaglandin D +14.6522634,GO:0071818,http://purl.obolibrary.org/obo/GO_0071818,BAT3 complex +14.6522634,GO:0072379,http://purl.obolibrary.org/obo/GO_0072379,ER membrane insertion complex +14.6522634,GO:0072665,http://purl.obolibrary.org/obo/GO_0072665,protein localization to vacuole +14.6522634,GO:0080162,http://purl.obolibrary.org/obo/GO_0080162,intracellular auxin transport +14.6522634,GO:0080167,http://purl.obolibrary.org/obo/GO_0080167,response to karrikin +14.6522634,GO:0090162,http://purl.obolibrary.org/obo/GO_0090162,establishment of epithelial cell polarity +14.6522634,GO:0097047,http://purl.obolibrary.org/obo/GO_0097047,DNA replication termination region +14.6522634,GO:0097205,http://purl.obolibrary.org/obo/GO_0097205,renal filtration +14.6522634,GO:0097424,http://purl.obolibrary.org/obo/GO_0097424,nucleolus-associated heterochromatin +14.6522634,GO:0097581,http://purl.obolibrary.org/obo/GO_0097581,lamellipodium organization +14.6522634,GO:0097603,http://purl.obolibrary.org/obo/GO_0097603,temperature-gated ion channel activity +14.6522634,GO:0098869,http://purl.obolibrary.org/obo/GO_0098869,cellular oxidant detoxification +14.6522634,GO:0110110,http://purl.obolibrary.org/obo/GO_0110110,positive regulation of animal organ morphogenesis +14.6522634,GO:1900866,http://purl.obolibrary.org/obo/GO_1900866,glycolate transport +14.6522634,GO:1901003,http://purl.obolibrary.org/obo/GO_1901003,negative regulation of fermentation +14.6522634,GO:1901080,http://purl.obolibrary.org/obo/GO_1901080,regulation of relaxation of smooth muscle +14.6522634,GO:1901156,http://purl.obolibrary.org/obo/GO_1901156,neomycin metabolic process +14.6522634,GO:1901256,http://purl.obolibrary.org/obo/GO_1901256,regulation of macrophage colony-stimulating factor production +14.6522634,GO:1901329,http://purl.obolibrary.org/obo/GO_1901329,regulation of odontoblast differentiation +14.6522634,GO:1901784,http://purl.obolibrary.org/obo/GO_1901784,p-cresol metabolic process +14.6522634,GO:1901994,http://purl.obolibrary.org/obo/GO_1901994,negative regulation of meiotic cell cycle phase transition +14.6522634,GO:1902265,http://purl.obolibrary.org/obo/GO_1902265,abscisic acid homeostasis +14.6522634,GO:1902315,http://purl.obolibrary.org/obo/GO_1902315,nuclear cell cycle DNA replication initiation +14.6522634,GO:1902446,http://purl.obolibrary.org/obo/GO_1902446,regulation of shade avoidance +14.6522634,GO:1902564,http://purl.obolibrary.org/obo/GO_1902564,negative regulation of neutrophil activation +14.6522634,GO:1902566,http://purl.obolibrary.org/obo/GO_1902566,regulation of eosinophil activation +14.6522634,GO:1902900,http://purl.obolibrary.org/obo/GO_1902900,gut granule assembly +14.6522634,GO:1902912,http://purl.obolibrary.org/obo/GO_1902912,pyruvate kinase complex +14.6522634,GO:1903147,http://purl.obolibrary.org/obo/GO_1903147,negative regulation of autophagy of mitochondrion +14.6522634,GO:1903302,http://purl.obolibrary.org/obo/GO_1903302,regulation of pyruvate kinase activity +14.6522634,GO:1903513,http://purl.obolibrary.org/obo/GO_1903513,endoplasmic reticulum to cytosol transport +14.6522634,GO:1903622,http://purl.obolibrary.org/obo/GO_1903622,regulation of RNA polymerase III activity +14.6522634,GO:1903929,http://purl.obolibrary.org/obo/GO_1903929,primary palate development +14.6522634,GO:1903937,http://purl.obolibrary.org/obo/GO_1903937,response to acrylamide +14.6522634,GO:1904567,http://purl.obolibrary.org/obo/GO_1904567,response to wortmannin +14.6522634,GO:1904714,http://purl.obolibrary.org/obo/GO_1904714,regulation of chaperone-mediated autophagy +14.6522634,GO:1904732,http://purl.obolibrary.org/obo/GO_1904732,regulation of electron transfer activity +14.6522634,GO:1904844,http://purl.obolibrary.org/obo/GO_1904844,response to L-glutamine +14.6522634,GO:1904959,http://purl.obolibrary.org/obo/GO_1904959,regulation of cytochrome-c oxidase activity +14.6522634,GO:1905097,http://purl.obolibrary.org/obo/GO_1905097,regulation of guanyl-nucleotide exchange factor activity +14.6522634,GO:1990120,http://purl.obolibrary.org/obo/GO_1990120,messenger ribonucleoprotein complex assembly +14.6522634,GO:1990178,http://purl.obolibrary.org/obo/GO_1990178,HU-DNA complex +14.6522634,GO:1990660,http://purl.obolibrary.org/obo/GO_1990660,calprotectin complex +14.6522634,GO:2000485,http://purl.obolibrary.org/obo/GO_2000485,regulation of glutamine transport +14.6522634,GO:2000523,http://purl.obolibrary.org/obo/GO_2000523,regulation of T cell costimulation +14.6522634,GO:2001106,http://purl.obolibrary.org/obo/GO_2001106,regulation of Rho guanyl-nucleotide exchange factor activity +14.6522634,GO:2001115,http://purl.obolibrary.org/obo/GO_2001115,methanopterin-containing compound metabolic process +14.6522634,GO:2001116,http://purl.obolibrary.org/obo/GO_2001116,methanopterin-containing compound biosynthetic process +14.6522634,GO:2001182,http://purl.obolibrary.org/obo/GO_2001182,none +14.6522634,HP:0000047,http://purl.obolibrary.org/obo/HP_0000047,Hypospadias +14.6522634,HP:0000142,http://purl.obolibrary.org/obo/HP_0000142,Abnormal vagina morphology +14.6522634,HP:0001051,http://purl.obolibrary.org/obo/HP_0001051,Seborrheic dermatitis +14.6522634,HP:0001511,http://purl.obolibrary.org/obo/HP_0001511,Intrauterine growth retardation +14.6522634,HP:0001658,http://purl.obolibrary.org/obo/HP_0001658,Myocardial infarction +14.6522634,HP:0006824,http://purl.obolibrary.org/obo/HP_0006824,Cranial nerve paralysis +14.6522634,HP:0008069,http://purl.obolibrary.org/obo/HP_0008069,Neoplasm of the skin +14.6522634,HP:0009588,http://purl.obolibrary.org/obo/HP_0009588,Vestibular Schwannoma +14.6522634,HP:0010525,http://purl.obolibrary.org/obo/HP_0010525,Finger agnosia +14.6522634,HP:0010614,http://purl.obolibrary.org/obo/HP_0010614,Fibroma +14.6522634,HP:0100570,http://purl.obolibrary.org/obo/HP_0100570,Carcinoid tumor +14.6522634,HP:0200146,http://purl.obolibrary.org/obo/HP_0200146,Mucoid extracellular matrix accumulation +14.6522634,MONDO:0000090,http://purl.obolibrary.org/obo/MONDO_0000090,progressive external ophthalmoplegia with mitochondrial DNA deletions +14.6522634,MONDO:0000890,http://purl.obolibrary.org/obo/MONDO_0000890,Zika virus congenital syndrome +14.6522634,MONDO:0000994,http://purl.obolibrary.org/obo/MONDO_0000994,malignant prostate phyllodes tumor +14.6522634,MONDO:0001990,http://purl.obolibrary.org/obo/MONDO_0001990,malignant cardiac peripheral nerve sheath neoplasm +14.6522634,MONDO:0002710,http://purl.obolibrary.org/obo/MONDO_0002710,infiltrating angiolipoma +14.6522634,MONDO:0002726,http://purl.obolibrary.org/obo/MONDO_0002726,cutaneous solitary mastocytoma +14.6522634,MONDO:0002837,http://purl.obolibrary.org/obo/MONDO_0002837,sarcomatoid transitional cell carcinoma +14.6522634,MONDO:0002850,http://purl.obolibrary.org/obo/MONDO_0002850,central nervous system rhabdomyosarcoma +14.6522634,MONDO:0003033,http://purl.obolibrary.org/obo/MONDO_0003033,prostate angiosarcoma +14.6522634,MONDO:0003034,http://purl.obolibrary.org/obo/MONDO_0003034,mediastinum angiosarcoma +14.6522634,MONDO:0003317,http://purl.obolibrary.org/obo/MONDO_0003317,metachronous kidney Wilms' tumor +14.6522634,MONDO:0003364,http://purl.obolibrary.org/obo/MONDO_0003364,gallbladder leiomyosarcoma +14.6522634,MONDO:0003609,http://purl.obolibrary.org/obo/MONDO_0003609,seminal vesicle cystadenoma +14.6522634,MONDO:0003740,http://purl.obolibrary.org/obo/MONDO_0003740,AIDS phobia +14.6522634,MONDO:0003846,http://purl.obolibrary.org/obo/MONDO_0003846,viral esophagitis +14.6522634,MONDO:0003867,http://purl.obolibrary.org/obo/MONDO_0003867,diffuse meningeal melanocytosis +14.6522634,MONDO:0003884,http://purl.obolibrary.org/obo/MONDO_0003884,lipoma of the rectum +14.6522634,MONDO:0004040,http://purl.obolibrary.org/obo/MONDO_0004040,urinary bladder inverted papilloma +14.6522634,MONDO:0004108,http://purl.obolibrary.org/obo/MONDO_0004108,diaphragma sellae meningioma +14.6522634,MONDO:0004242,http://purl.obolibrary.org/obo/MONDO_0004242,active peptic ulcer disease +14.6522634,MONDO:0004248,http://purl.obolibrary.org/obo/MONDO_0004248,pediatric infratentorial ependymoma +14.6522634,MONDO:0004258,http://purl.obolibrary.org/obo/MONDO_0004258,female orgasmic disorder +14.6522634,MONDO:0004267,http://purl.obolibrary.org/obo/MONDO_0004267,squamous papillomatosis +14.6522634,MONDO:0004340,http://purl.obolibrary.org/obo/MONDO_0004340,mixed ductal-endocrine carcinoma of pancreas +14.6522634,MONDO:0004725,http://purl.obolibrary.org/obo/MONDO_0004725,rectum carcinoma in situ +14.6522634,MONDO:0004732,http://purl.obolibrary.org/obo/MONDO_0004732,kidney carcinoma in situ +14.6522634,MONDO:0005186,http://purl.obolibrary.org/obo/MONDO_0005186,cocaine dependence +14.6522634,MONDO:0005430,http://purl.obolibrary.org/obo/MONDO_0005430,early onset hypertension +14.6522634,MONDO:0005482,http://purl.obolibrary.org/obo/MONDO_0005482,molar-incisor hypomineralization +14.6522634,MONDO:0005544,http://purl.obolibrary.org/obo/MONDO_0005544,hippocampal sclerosis of aging +14.6522634,MONDO:0005705,http://purl.obolibrary.org/obo/MONDO_0005705,clonorchiasis +14.6522634,MONDO:0006149,http://purl.obolibrary.org/obo/MONDO_0006149,clear cell papillary cystadenoma +14.6522634,MONDO:0006164,http://purl.obolibrary.org/obo/MONDO_0006164,colorectal sessile serrated adenoma/polyp +14.6522634,MONDO:0006225,http://purl.obolibrary.org/obo/MONDO_0006225,gastric mantle cell lymphoma +14.6522634,MONDO:0006340,http://purl.obolibrary.org/obo/MONDO_0006340,ovarian serous adenofibroma +14.6522634,MONDO:0006380,http://purl.obolibrary.org/obo/MONDO_0006380,pleural sarcomatoid mesothelioma +14.6522634,MONDO:0006466,http://purl.obolibrary.org/obo/MONDO_0006466,thyroid gland spindle cell tumor with thymus-like differentiation +14.6522634,MONDO:0006710,http://purl.obolibrary.org/obo/MONDO_0006710,complex partial epilepsy +14.6522634,MONDO:0006782,http://purl.obolibrary.org/obo/MONDO_0006782,hemometra +14.6522634,MONDO:0007040,http://purl.obolibrary.org/obo/MONDO_0007040,Sakati-Nyhan syndrome +14.6522634,MONDO:0007103,http://purl.obolibrary.org/obo/MONDO_0007103,amyotrophic lateral sclerosis type 1 +14.6522634,MONDO:0007230,http://purl.obolibrary.org/obo/MONDO_0007230,Brachymorphism-onychodysplasia-dysphalangism syndrome +14.6522634,MONDO:0007286,http://purl.obolibrary.org/obo/MONDO_0007286,cataract 30 +14.6522634,MONDO:0007493,http://purl.obolibrary.org/obo/MONDO_0007493,torsion dystonia 4 +14.6522634,MONDO:0007605,http://purl.obolibrary.org/obo/MONDO_0007605,fibrinolytic defect +14.6522634,MONDO:0007625,http://purl.obolibrary.org/obo/MONDO_0007625,focal epithelial hyperplasia of the oral mucosa +14.6522634,MONDO:0007837,http://purl.obolibrary.org/obo/MONDO_0007837,Johnson neuroectodermal syndrome +14.6522634,MONDO:0007839,http://purl.obolibrary.org/obo/MONDO_0007839,Aase-Smith syndrome +14.6522634,MONDO:0008003,http://purl.obolibrary.org/obo/MONDO_0008003,autosomal dominant progressive external ophthalmoplegia +14.6522634,MONDO:0008725,http://purl.obolibrary.org/obo/MONDO_0008725,congenital lipoid adrenal hyperplasia due to STAR deficency +14.6522634,MONDO:0008786,http://purl.obolibrary.org/obo/MONDO_0008786,pyridoxine-responsive sideroblastic anemia +14.6522634,MONDO:0008901,http://purl.obolibrary.org/obo/MONDO_0008901,Tel Hashomer camptodactyly syndrome +14.6522634,MONDO:0009437,http://purl.obolibrary.org/obo/MONDO_0009437,Bamforth-Lazarus syndrome +14.6522634,MONDO:0009473,http://purl.obolibrary.org/obo/MONDO_0009473,isotretinoin-like syndrome +14.6522634,MONDO:0009794,http://purl.obolibrary.org/obo/MONDO_0009794,orofaciodigital syndrome IV +14.6522634,MONDO:0009809,http://purl.obolibrary.org/obo/MONDO_0009809,"multicentric osteolysis, nodulosis, and arthropathy" +14.6522634,MONDO:0009998,http://purl.obolibrary.org/obo/MONDO_0009998,Richieri Costa-Pereira syndrome +14.6522634,MONDO:0010401,http://purl.obolibrary.org/obo/MONDO_0010401,X-linked myopathy with postural muscle atrophy +14.6522634,MONDO:0010425,http://purl.obolibrary.org/obo/MONDO_0010425,Lisch epithelial corneal dystrophy +14.6522634,MONDO:0010441,http://purl.obolibrary.org/obo/MONDO_0010441,CK syndrome +14.6522634,MONDO:0010854,http://purl.obolibrary.org/obo/MONDO_0010854,Toriello-Lacassie-Droste syndrome +14.6522634,MONDO:0010926,http://purl.obolibrary.org/obo/MONDO_0010926,familial hypocalciuric hypercalcemia 3 +14.6522634,MONDO:0010930,http://purl.obolibrary.org/obo/MONDO_0010930,anophthalmia plus syndrome +14.6522634,MONDO:0010975,http://purl.obolibrary.org/obo/MONDO_0010975,arrhythmogenic right ventricular dysplasia 2 +14.6522634,MONDO:0010995,http://purl.obolibrary.org/obo/MONDO_0010995,Charcot-Marie-Tooth disease type 1C +14.6522634,MONDO:0011134,http://purl.obolibrary.org/obo/MONDO_0011134,curry-Jones syndrome +14.6522634,MONDO:0011168,http://purl.obolibrary.org/obo/MONDO_0011168,type 1 diabetes mellitus 10 +14.6522634,MONDO:0011215,http://purl.obolibrary.org/obo/MONDO_0011215,osteocraniostenosis +14.6522634,MONDO:0011381,http://purl.obolibrary.org/obo/MONDO_0011381,dominant beta-thalassemia +14.6522634,MONDO:0011493,http://purl.obolibrary.org/obo/MONDO_0011493,Stickler syndrome type 2 +14.6522634,MONDO:0011701,http://purl.obolibrary.org/obo/MONDO_0011701,inflammatory bowel disease 4 +14.6522634,MONDO:0011945,http://purl.obolibrary.org/obo/MONDO_0011945,Gaucher disease perinatal lethal +14.6522634,MONDO:0012061,http://purl.obolibrary.org/obo/MONDO_0012061,familial sick sinus syndrome +14.6522634,MONDO:0012077,http://purl.obolibrary.org/obo/MONDO_0012077,amyotrophic lateral sclerosis type 8 +14.6522634,MONDO:0012790,http://purl.obolibrary.org/obo/MONDO_0012790,amyotrophic lateral sclerosis type 10 +14.6522634,MONDO:0013254,http://purl.obolibrary.org/obo/MONDO_0013254,"microcephaly, seizures, and developmental delay" +14.6522634,MONDO:0013889,http://purl.obolibrary.org/obo/MONDO_0013889,short stature-optic atrophy-Pelger-HuC+t anomaly syndrome +14.6522634,MONDO:0014358,http://purl.obolibrary.org/obo/MONDO_0014358,AHDC1-related intellectual disability - obstructive sleep apnea - mild dysmorphism syndrome +14.6522634,MONDO:0014433,http://purl.obolibrary.org/obo/MONDO_0014433,Bardet-Biedl syndrome 4 +14.6522634,MONDO:0016021,http://purl.obolibrary.org/obo/MONDO_0016021,none +14.6522634,MONDO:0016467,http://purl.obolibrary.org/obo/MONDO_0016467,isotretinoin syndrome +14.6522634,MONDO:0016490,http://purl.obolibrary.org/obo/MONDO_0016490,hemoglobin C-beta-thalassemia syndrome +14.6522634,MONDO:0016687,http://purl.obolibrary.org/obo/MONDO_0016687,protoplasmic astrocytoma +14.6522634,MONDO:0016941,http://purl.obolibrary.org/obo/MONDO_0016941,partial duplication of the short arm of chromosome 4 +14.6522634,MONDO:0017446,http://purl.obolibrary.org/obo/MONDO_0017446,apodia +14.6522634,MONDO:0017893,http://purl.obolibrary.org/obo/MONDO_0017893,inherited acute myeloid leukemia +14.6522634,MONDO:0018257,http://purl.obolibrary.org/obo/MONDO_0018257,familial syringomyelia +14.6522634,MONDO:0018359,http://purl.obolibrary.org/obo/MONDO_0018359,neonatal dermatomyositis +14.6522634,MONDO:0018451,http://purl.obolibrary.org/obo/MONDO_0018451,X-linked distal hereditary motor neuropathy +14.6522634,MONDO:0018486,http://purl.obolibrary.org/obo/MONDO_0018486,visual snow syndrome +14.6522634,MONDO:0018489,http://purl.obolibrary.org/obo/MONDO_0018489,autoimmune encephalopathy with parasomnia and obstructive sleep apnea +14.6522634,MONDO:0018761,http://purl.obolibrary.org/obo/MONDO_0018761,SMARCA4-deficient sarcoma of thorax +14.6522634,MONDO:0018786,http://purl.obolibrary.org/obo/MONDO_0018786,pontine autosomal dominant microangiopathy with leukoencephalopathy +14.6522634,MONDO:0018789,http://purl.obolibrary.org/obo/MONDO_0018789,COL4A1 or COL4A2-related cerebral small vessel disease with ischemic tendancy +14.6522634,MONDO:0018992,http://purl.obolibrary.org/obo/MONDO_0018992,IgG4-related thyroid disease +14.6522634,MONDO:0019107,http://purl.obolibrary.org/obo/MONDO_0019107,Rh deficiency syndrome +14.6522634,MONDO:0019190,http://purl.obolibrary.org/obo/MONDO_0019190,juvenile polyposis of infancy +14.6522634,MONDO:0019601,http://purl.obolibrary.org/obo/MONDO_0019601,autosomal recessive axonal hereditary motor and sensory neuropathy +14.6522634,MONDO:0019629,http://purl.obolibrary.org/obo/MONDO_0019629,sclerocornea +14.6522634,MONDO:0019753,http://purl.obolibrary.org/obo/MONDO_0019753,localized Castleman disease +14.6522634,MONDO:0019776,http://purl.obolibrary.org/obo/MONDO_0019776,Juberg-Marsidi syndrome +14.6522634,MONDO:0019791,http://purl.obolibrary.org/obo/MONDO_0019791,recessive mitochondrial ataxia syndrome +14.6522634,MONDO:0019807,http://purl.obolibrary.org/obo/MONDO_0019807,mesocardia +14.6522634,MONDO:0019878,http://purl.obolibrary.org/obo/MONDO_0019878,3q26 microduplication syndrome +14.6522634,MONDO:0020219,http://purl.obolibrary.org/obo/MONDO_0020219,corneogoniodysgenesis +14.6522634,MONDO:0020293,http://purl.obolibrary.org/obo/MONDO_0020293,ascending aorta anomaly +14.6522634,MONDO:0020482,http://purl.obolibrary.org/obo/MONDO_0020482,myotonia permanens +14.6522634,MONDO:0020685,http://purl.obolibrary.org/obo/MONDO_0020685,infratentorial ependymal tumor +14.6522634,MONDO:0021081,http://purl.obolibrary.org/obo/MONDO_0021081,anti-NMDA receptor encephalitis +14.6522634,MONDO:0021296,http://purl.obolibrary.org/obo/MONDO_0021296,carcinoma in situ of renal pelvis +14.6522634,MONDO:0021464,http://purl.obolibrary.org/obo/MONDO_0021464,benign neoplasm of cecum +14.6522634,MONDO:0022481,http://purl.obolibrary.org/obo/MONDO_0022481,APO A-i deficiency +14.6522634,MONDO:0023164,http://purl.obolibrary.org/obo/MONDO_0023164,viral pericarditis +14.6522634,MONDO:0023581,http://purl.obolibrary.org/obo/MONDO_0023581,Kuster syndrome +14.6522634,MONDO:0024485,http://purl.obolibrary.org/obo/MONDO_0024485,papillary urothelial hyperplasia +14.6522634,MONDO:0024648,http://purl.obolibrary.org/obo/MONDO_0024648,optic tract meningioma +14.6522634,MONDO:0024673,http://purl.obolibrary.org/obo/MONDO_0024673,skin lymphangioma +14.6522634,MONDO:0024891,http://purl.obolibrary.org/obo/MONDO_0024891,non-infectious meningitis +14.6522634,MONDO:0033946,http://purl.obolibrary.org/obo/MONDO_0033946,hereditary angioedema with C1Inh deficiency +14.6522634,MONDO:0041093,http://purl.obolibrary.org/obo/MONDO_0041093,central retinal vein occlusion with macular edema +14.6522634,MONDO:0042981,http://purl.obolibrary.org/obo/MONDO_0042981,aortic valve stenosis +14.6522634,MONDO:0400003,http://purl.obolibrary.org/obo/MONDO_0400003,skeletal fluorosis +14.6522634,MONDO:0700066,http://purl.obolibrary.org/obo/MONDO_0700066,myopathy caused by varation in FKRP +14.6522634,NCBITaxon:10042,http://purl.obolibrary.org/obo/NCBITaxon_10042,none +14.6522634,NCBITaxon:10112,http://purl.obolibrary.org/obo/NCBITaxon_10112,none +14.6522634,NCBITaxon:10252,http://purl.obolibrary.org/obo/NCBITaxon_10252,none +14.6522634,NCBITaxon:10253,http://purl.obolibrary.org/obo/NCBITaxon_10253,none +14.6522634,NCBITaxon:103819,http://purl.obolibrary.org/obo/NCBITaxon_103819,none +14.6522634,NCBITaxon:104263,http://purl.obolibrary.org/obo/NCBITaxon_104263,none +14.6522634,NCBITaxon:10533,http://purl.obolibrary.org/obo/NCBITaxon_10533,none +14.6522634,NCBITaxon:10596,http://purl.obolibrary.org/obo/NCBITaxon_10596,none +14.6522634,NCBITaxon:10640,http://purl.obolibrary.org/obo/NCBITaxon_10640,none +14.6522634,NCBITaxon:11070,http://purl.obolibrary.org/obo/NCBITaxon_11070,none +14.6522634,NCBITaxon:116172,http://purl.obolibrary.org/obo/NCBITaxon_116172,none +14.6522634,NCBITaxon:1172985,http://purl.obolibrary.org/obo/NCBITaxon_1172985,none +14.6522634,NCBITaxon:117743,http://purl.obolibrary.org/obo/NCBITaxon_117743,none +14.6522634,NCBITaxon:117887,http://purl.obolibrary.org/obo/NCBITaxon_117887,none +14.6522634,NCBITaxon:11812,http://purl.obolibrary.org/obo/NCBITaxon_11812,none +14.6522634,NCBITaxon:11970,http://purl.obolibrary.org/obo/NCBITaxon_11970,none +14.6522634,NCBITaxon:1204416,http://purl.obolibrary.org/obo/NCBITaxon_1204416,none +14.6522634,NCBITaxon:12064,http://purl.obolibrary.org/obo/NCBITaxon_12064,none +14.6522634,NCBITaxon:12134,http://purl.obolibrary.org/obo/NCBITaxon_12134,none +14.6522634,NCBITaxon:12142,http://purl.obolibrary.org/obo/NCBITaxon_12142,none +14.6522634,NCBITaxon:1214459,http://purl.obolibrary.org/obo/NCBITaxon_1214459,none +14.6522634,NCBITaxon:122232,http://purl.obolibrary.org/obo/NCBITaxon_122232,none +14.6522634,NCBITaxon:1248331,http://purl.obolibrary.org/obo/NCBITaxon_1248331,none +14.6522634,NCBITaxon:1285591,http://purl.obolibrary.org/obo/NCBITaxon_1285591,none +14.6522634,NCBITaxon:1285594,http://purl.obolibrary.org/obo/NCBITaxon_1285594,none +14.6522634,NCBITaxon:13000,http://purl.obolibrary.org/obo/NCBITaxon_13000,none +14.6522634,NCBITaxon:1301283,http://purl.obolibrary.org/obo/NCBITaxon_1301283,none +14.6522634,NCBITaxon:130308,http://purl.obolibrary.org/obo/NCBITaxon_130308,none +14.6522634,NCBITaxon:1313215,http://purl.obolibrary.org/obo/NCBITaxon_1313215,none +14.6522634,NCBITaxon:1326982,http://purl.obolibrary.org/obo/NCBITaxon_1326982,none +14.6522634,NCBITaxon:13336,http://purl.obolibrary.org/obo/NCBITaxon_13336,none +14.6522634,NCBITaxon:135656,http://purl.obolibrary.org/obo/NCBITaxon_135656,none +14.6522634,NCBITaxon:1391702,http://purl.obolibrary.org/obo/NCBITaxon_1391702,none +14.6522634,NCBITaxon:14101,http://purl.obolibrary.org/obo/NCBITaxon_14101,none +14.6522634,NCBITaxon:141217,http://purl.obolibrary.org/obo/NCBITaxon_141217,none +14.6522634,NCBITaxon:1489869,http://purl.obolibrary.org/obo/NCBITaxon_1489869,none +14.6522634,NCBITaxon:150174,http://purl.obolibrary.org/obo/NCBITaxon_150174,none +14.6522634,NCBITaxon:1511857,http://purl.obolibrary.org/obo/NCBITaxon_1511857,none +14.6522634,NCBITaxon:159639,http://purl.obolibrary.org/obo/NCBITaxon_159639,none +14.6522634,NCBITaxon:159987,http://purl.obolibrary.org/obo/NCBITaxon_159987,none +14.6522634,NCBITaxon:160400,http://purl.obolibrary.org/obo/NCBITaxon_160400,none +14.6522634,NCBITaxon:1605,http://purl.obolibrary.org/obo/NCBITaxon_1605,none +14.6522634,NCBITaxon:163699,http://purl.obolibrary.org/obo/NCBITaxon_163699,none +14.6522634,NCBITaxon:1639119,http://purl.obolibrary.org/obo/NCBITaxon_1639119,Plasmodiidae +14.6522634,NCBITaxon:167019,http://purl.obolibrary.org/obo/NCBITaxon_167019,none +14.6522634,NCBITaxon:169173,http://purl.obolibrary.org/obo/NCBITaxon_169173,none +14.6522634,NCBITaxon:185955,http://purl.obolibrary.org/obo/NCBITaxon_185955,none +14.6522634,NCBITaxon:186845,http://purl.obolibrary.org/obo/NCBITaxon_186845,none +14.6522634,NCBITaxon:187268,http://purl.obolibrary.org/obo/NCBITaxon_187268,none +14.6522634,NCBITaxon:1890424,http://purl.obolibrary.org/obo/NCBITaxon_1890424,none +14.6522634,NCBITaxon:192199,http://purl.obolibrary.org/obo/NCBITaxon_192199,none +14.6522634,NCBITaxon:1927081,http://purl.obolibrary.org/obo/NCBITaxon_1927081,none +14.6522634,NCBITaxon:1927087,http://purl.obolibrary.org/obo/NCBITaxon_1927087,none +14.6522634,NCBITaxon:1933301,http://purl.obolibrary.org/obo/NCBITaxon_1933301,none +14.6522634,NCBITaxon:1972611,http://purl.obolibrary.org/obo/NCBITaxon_1972611,none +14.6522634,NCBITaxon:1980465,http://purl.obolibrary.org/obo/NCBITaxon_1980465,none +14.6522634,NCBITaxon:1985706,http://purl.obolibrary.org/obo/NCBITaxon_1985706,none +14.6522634,NCBITaxon:200644,http://purl.obolibrary.org/obo/NCBITaxon_200644,none +14.6522634,NCBITaxon:206156,http://purl.obolibrary.org/obo/NCBITaxon_206156,none +14.6522634,NCBITaxon:209529,http://purl.obolibrary.org/obo/NCBITaxon_209529,none +14.6522634,NCBITaxon:2116661,http://purl.obolibrary.org/obo/NCBITaxon_2116661,none +14.6522634,NCBITaxon:214486,http://purl.obolibrary.org/obo/NCBITaxon_214486,none +14.6522634,NCBITaxon:225962,http://purl.obolibrary.org/obo/NCBITaxon_225962,none +14.6522634,NCBITaxon:23216,http://purl.obolibrary.org/obo/NCBITaxon_23216,none +14.6522634,NCBITaxon:244254,http://purl.obolibrary.org/obo/NCBITaxon_244254,none +14.6522634,NCBITaxon:248061,http://purl.obolibrary.org/obo/NCBITaxon_248061,none +14.6522634,NCBITaxon:2486286,http://purl.obolibrary.org/obo/NCBITaxon_2486286,none +14.6522634,NCBITaxon:2560368,http://purl.obolibrary.org/obo/NCBITaxon_2560368,none +14.6522634,NCBITaxon:2601529,http://purl.obolibrary.org/obo/NCBITaxon_2601529,Tetramitia +14.6522634,NCBITaxon:2601530,http://purl.obolibrary.org/obo/NCBITaxon_2601530,Eutetramitia +14.6522634,NCBITaxon:2734495,http://purl.obolibrary.org/obo/NCBITaxon_2734495,none +14.6522634,NCBITaxon:2747309,http://purl.obolibrary.org/obo/NCBITaxon_2747309,none +14.6522634,NCBITaxon:27479,http://purl.obolibrary.org/obo/NCBITaxon_27479,Reduviidae +14.6522634,NCBITaxon:2767887,http://purl.obolibrary.org/obo/NCBITaxon_2767887,none +14.6522634,NCBITaxon:2806,http://purl.obolibrary.org/obo/NCBITaxon_2806,none +14.6522634,NCBITaxon:283824,http://purl.obolibrary.org/obo/NCBITaxon_283824,none +14.6522634,NCBITaxon:2840022,http://purl.obolibrary.org/obo/NCBITaxon_2840022,none +14.6522634,NCBITaxon:2840023,http://purl.obolibrary.org/obo/NCBITaxon_2840023,none +14.6522634,NCBITaxon:2840024,http://purl.obolibrary.org/obo/NCBITaxon_2840024,none +14.6522634,NCBITaxon:2841637,http://purl.obolibrary.org/obo/NCBITaxon_2841637,none +14.6522634,NCBITaxon:284551,http://purl.obolibrary.org/obo/NCBITaxon_284551,none +14.6522634,NCBITaxon:28609,http://purl.obolibrary.org/obo/NCBITaxon_28609,none +14.6522634,NCBITaxon:30042,http://purl.obolibrary.org/obo/NCBITaxon_30042,none +14.6522634,NCBITaxon:30364,http://purl.obolibrary.org/obo/NCBITaxon_30364,none +14.6522634,NCBITaxon:30559,http://purl.obolibrary.org/obo/NCBITaxon_30559,None +14.6522634,NCBITaxon:309542,http://purl.obolibrary.org/obo/NCBITaxon_309542,none +14.6522634,NCBITaxon:31504,http://purl.obolibrary.org/obo/NCBITaxon_31504,none +14.6522634,NCBITaxon:31750,http://purl.obolibrary.org/obo/NCBITaxon_31750,none +14.6522634,NCBITaxon:3214,http://purl.obolibrary.org/obo/NCBITaxon_3214,none +14.6522634,NCBITaxon:327833,http://purl.obolibrary.org/obo/NCBITaxon_327833,none +14.6522634,NCBITaxon:33356,http://purl.obolibrary.org/obo/NCBITaxon_33356,Reduvioidea +14.6522634,NCBITaxon:33357,http://purl.obolibrary.org/obo/NCBITaxon_33357,none +14.6522634,NCBITaxon:3348,http://purl.obolibrary.org/obo/NCBITaxon_3348,none +14.6522634,NCBITaxon:340017,http://purl.obolibrary.org/obo/NCBITaxon_340017,none +14.6522634,NCBITaxon:3432,http://purl.obolibrary.org/obo/NCBITaxon_3432,none +14.6522634,NCBITaxon:34680,http://purl.obolibrary.org/obo/NCBITaxon_34680,none +14.6522634,NCBITaxon:34695,http://purl.obolibrary.org/obo/NCBITaxon_34695,none +14.6522634,NCBITaxon:348097,http://purl.obolibrary.org/obo/NCBITaxon_348097,none +14.6522634,NCBITaxon:348771,http://purl.obolibrary.org/obo/NCBITaxon_348771,none +14.6522634,NCBITaxon:35302,http://purl.obolibrary.org/obo/NCBITaxon_35302,none +14.6522634,NCBITaxon:37115,http://purl.obolibrary.org/obo/NCBITaxon_37115,none +14.6522634,NCBITaxon:379529,http://purl.obolibrary.org/obo/NCBITaxon_379529,none +14.6522634,NCBITaxon:380437,http://purl.obolibrary.org/obo/NCBITaxon_380437,none +14.6522634,NCBITaxon:38293,http://purl.obolibrary.org/obo/NCBITaxon_38293,none +14.6522634,NCBITaxon:38294,http://purl.obolibrary.org/obo/NCBITaxon_38294,none +14.6522634,NCBITaxon:3877,http://purl.obolibrary.org/obo/NCBITaxon_3877,none +14.6522634,NCBITaxon:3934,http://purl.obolibrary.org/obo/NCBITaxon_3934,none +14.6522634,NCBITaxon:39718,http://purl.obolibrary.org/obo/NCBITaxon_39718,none +14.6522634,NCBITaxon:39987,http://purl.obolibrary.org/obo/NCBITaxon_39987,none +14.6522634,NCBITaxon:404260,http://purl.obolibrary.org/obo/NCBITaxon_404260,none +14.6522634,NCBITaxon:40548,http://purl.obolibrary.org/obo/NCBITaxon_40548,none +14.6522634,NCBITaxon:42113,http://purl.obolibrary.org/obo/NCBITaxon_42113,Clitellata +14.6522634,NCBITaxon:42644,http://purl.obolibrary.org/obo/NCBITaxon_42644,none +14.6522634,NCBITaxon:42645,http://purl.obolibrary.org/obo/NCBITaxon_42645,none +14.6522634,NCBITaxon:43740,http://purl.obolibrary.org/obo/NCBITaxon_43740,none +14.6522634,NCBITaxon:45234,http://purl.obolibrary.org/obo/NCBITaxon_45234,none +14.6522634,NCBITaxon:460926,http://purl.obolibrary.org/obo/NCBITaxon_460926,none +14.6522634,NCBITaxon:4671,http://purl.obolibrary.org/obo/NCBITaxon_4671,none +14.6522634,NCBITaxon:4679,http://purl.obolibrary.org/obo/NCBITaxon_4679,none +14.6522634,NCBITaxon:468,http://purl.obolibrary.org/obo/NCBITaxon_468,Moraxellaceae +14.6522634,NCBITaxon:47299,http://purl.obolibrary.org/obo/NCBITaxon_47299,none +14.6522634,NCBITaxon:49546,http://purl.obolibrary.org/obo/NCBITaxon_49546,Flavobacteriaceae +14.6522634,NCBITaxon:5006,http://purl.obolibrary.org/obo/NCBITaxon_5006,none +14.6522634,NCBITaxon:5129,http://purl.obolibrary.org/obo/NCBITaxon_5129,none +14.6522634,NCBITaxon:5258,http://purl.obolibrary.org/obo/NCBITaxon_5258,none +14.6522634,NCBITaxon:55872,http://purl.obolibrary.org/obo/NCBITaxon_55872,Dracunculoidea +14.6522634,NCBITaxon:57112,http://purl.obolibrary.org/obo/NCBITaxon_57112,none +14.6522634,NCBITaxon:5752,http://purl.obolibrary.org/obo/NCBITaxon_5752,Heterolobosea +14.6522634,NCBITaxon:5820,http://purl.obolibrary.org/obo/NCBITaxon_5820,Plasmodium +14.6522634,NCBITaxon:59504,http://purl.obolibrary.org/obo/NCBITaxon_59504,none +14.6522634,NCBITaxon:5988,http://purl.obolibrary.org/obo/NCBITaxon_5988,Litostomatea +14.6522634,NCBITaxon:613,http://purl.obolibrary.org/obo/NCBITaxon_613,none +14.6522634,NCBITaxon:6208,http://purl.obolibrary.org/obo/NCBITaxon_6208,Taeniidae +14.6522634,NCBITaxon:643680,http://purl.obolibrary.org/obo/NCBITaxon_643680,none +14.6522634,NCBITaxon:657,http://purl.obolibrary.org/obo/NCBITaxon_657,none +14.6522634,NCBITaxon:658763,http://purl.obolibrary.org/obo/NCBITaxon_658763,none +14.6522634,NCBITaxon:6668,http://purl.obolibrary.org/obo/NCBITaxon_6668,none +14.6522634,NCBITaxon:6675,http://purl.obolibrary.org/obo/NCBITaxon_6675,none +14.6522634,NCBITaxon:6676,http://purl.obolibrary.org/obo/NCBITaxon_6676,none +14.6522634,NCBITaxon:67761,http://purl.obolibrary.org/obo/NCBITaxon_67761,none +14.6522634,NCBITaxon:6839,http://purl.obolibrary.org/obo/NCBITaxon_6839,none +14.6522634,NCBITaxon:686611,http://purl.obolibrary.org/obo/NCBITaxon_686611,none +14.6522634,NCBITaxon:686616,http://purl.obolibrary.org/obo/NCBITaxon_686616,none +14.6522634,NCBITaxon:69079,http://purl.obolibrary.org/obo/NCBITaxon_69079,none +14.6522634,NCBITaxon:71526,http://purl.obolibrary.org/obo/NCBITaxon_71526,none +14.6522634,NCBITaxon:72149,http://purl.obolibrary.org/obo/NCBITaxon_72149,none +14.6522634,NCBITaxon:7273,http://purl.obolibrary.org/obo/NCBITaxon_7273,none +14.6522634,NCBITaxon:745716,http://purl.obolibrary.org/obo/NCBITaxon_745716,none +14.6522634,NCBITaxon:76343,http://purl.obolibrary.org/obo/NCBITaxon_76343,none +14.6522634,NCBITaxon:77225,http://purl.obolibrary.org/obo/NCBITaxon_77225,none +14.6522634,NCBITaxon:77658,http://purl.obolibrary.org/obo/NCBITaxon_77658,none +14.6522634,NCBITaxon:8277,http://purl.obolibrary.org/obo/NCBITaxon_8277,none +14.6522634,NCBITaxon:83158,http://purl.obolibrary.org/obo/NCBITaxon_83158,Sarcoptoidea +14.6522634,NCBITaxon:83872,http://purl.obolibrary.org/obo/NCBITaxon_83872,none +14.6522634,NCBITaxon:83910,http://purl.obolibrary.org/obo/NCBITaxon_83910,none +14.6522634,NCBITaxon:83911,http://purl.obolibrary.org/obo/NCBITaxon_83911,none +14.6522634,NCBITaxon:84739,http://purl.obolibrary.org/obo/NCBITaxon_84739,none +14.6522634,NCBITaxon:8511,http://purl.obolibrary.org/obo/NCBITaxon_8511,none +14.6522634,NCBITaxon:86782,http://purl.obolibrary.org/obo/NCBITaxon_86782,none +14.6522634,NCBITaxon:930881,http://purl.obolibrary.org/obo/NCBITaxon_930881,none +14.6522634,NCBITaxon:9398,http://purl.obolibrary.org/obo/NCBITaxon_9398,none +14.6522634,NCBITaxon:94699,http://purl.obolibrary.org/obo/NCBITaxon_94699,none +14.6522634,NCBITaxon:9598,http://purl.obolibrary.org/obo/NCBITaxon_9598,Pan troglodytes +14.6522634,PR:000001419,http://purl.obolibrary.org/obo/PR_000001419,G-protein coupled receptor 182 +14.6522634,PR:000001513,http://purl.obolibrary.org/obo/PR_000001513,G-protein coupled receptor 151 +14.6522634,PR:000001647,http://purl.obolibrary.org/obo/PR_000001647,probable G-protein coupled receptor 63 +14.6522634,PR:000001922,http://purl.obolibrary.org/obo/PR_000001922,sialomucin core protein 24 +14.6522634,PR:000002322,http://purl.obolibrary.org/obo/PR_000002322,none +14.6522634,PR:000003538,http://purl.obolibrary.org/obo/PR_000003538,ATP-binding cassette sub-family A member 10 +14.6522634,PR:000003635,http://purl.obolibrary.org/obo/PR_000003635,acetyl-coenzyme A thioesterase +14.6522634,PR:000003749,http://purl.obolibrary.org/obo/PR_000003749,tRNA-specific adenosine deaminase 2 +14.6522634,PR:000004093,http://purl.obolibrary.org/obo/PR_000004093,synergin gamma +14.6522634,PR:000004164,http://purl.obolibrary.org/obo/PR_000004164,apolipoprotein L domain-containing protein 1 +14.6522634,PR:000004225,http://purl.obolibrary.org/obo/PR_000004225,Rho GTPase-activating protein 19 +14.6522634,PR:000004226,http://purl.obolibrary.org/obo/PR_000004226,Rho GTPase-activating protein 20 +14.6522634,PR:000004240,http://purl.obolibrary.org/obo/PR_000004240,Rho GTPase-activating protein 8 +14.6522634,PR:000004327,http://purl.obolibrary.org/obo/PR_000004327,arylsulfatase H +14.6522634,PR:000004343,http://purl.obolibrary.org/obo/PR_000004343,ankyrin repeat and SOCS box protein 11 +14.6522634,PR:000004486,http://purl.obolibrary.org/obo/PR_000004486,V-type proton ATPase subunit E 1 +14.6522634,PR:000004587,http://purl.obolibrary.org/obo/PR_000004587,"beta-1,3-galactosyltransferase 6" +14.6522634,PR:000004588,http://purl.obolibrary.org/obo/PR_000004588,"beta-1,3-glucosyltransferase" +14.6522634,PR:000004595,http://purl.obolibrary.org/obo/PR_000004595,"UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5" +14.6522634,PR:000004660,http://purl.obolibrary.org/obo/PR_000004660,bromodomain adjacent to zinc finger domain protein 2B +14.6522634,PR:000004718,http://purl.obolibrary.org/obo/PR_000004718,protein BEAN +14.6522634,PR:000004836,http://purl.obolibrary.org/obo/PR_000004836,BTB/POZ domain-containing protein 1 +14.6522634,PR:000004937,http://purl.obolibrary.org/obo/PR_000004937,calcium-binding protein 5 +14.6522634,PR:000005042,http://purl.obolibrary.org/obo/PR_000005042,calcium-regulated heat-stable protein 1 +14.6522634,PR:000005093,http://purl.obolibrary.org/obo/PR_000005093,coiled-coil and C2 domain-containing protein 2A +14.6522634,PR:000005169,http://purl.obolibrary.org/obo/PR_000005169,CMRF35-like molecule 9 +14.6522634,PR:000005205,http://purl.obolibrary.org/obo/PR_000005205,serine/threonine-protein kinase MRCK alpha +14.6522634,PR:000005276,http://purl.obolibrary.org/obo/PR_000005276,CDKN2A-interacting protein +14.6522634,PR:000005285,http://purl.obolibrary.org/obo/PR_000005285,cerebellar degeneration-related protein 2-like +14.6522634,PR:000005323,http://purl.obolibrary.org/obo/PR_000005323,histone H3-like centromeric protein A +14.6522634,PR:000005343,http://purl.obolibrary.org/obo/PR_000005343,centrosomal protein of 164 kDa +14.6522634,PR:000005468,http://purl.obolibrary.org/obo/PR_000005468,acetylcholine receptor subunit gamma +14.6522634,PR:000005493,http://purl.obolibrary.org/obo/PR_000005493,cell death activator CIDE-B +14.6522634,PR:000005500,http://purl.obolibrary.org/obo/PR_000005500,U3 small nucleolar RNA-associated protein 4 homolog +14.6522634,PR:000005658,http://purl.obolibrary.org/obo/PR_000005658,protein canopy homolog 1 +14.6522634,PR:000005763,http://purl.obolibrary.org/obo/PR_000005763,coronin-2A +14.6522634,PR:000005831,http://purl.obolibrary.org/obo/PR_000005831,integrator complex subunit 11 +14.6522634,PR:000005861,http://purl.obolibrary.org/obo/PR_000005861,cAMP-responsive element-binding protein-like 2 +14.6522634,PR:000005916,http://purl.obolibrary.org/obo/PR_000005916,gamma-crystallin C +14.6522634,PR:000006019,http://purl.obolibrary.org/obo/PR_000006019,chymotrypsinogen B2 +14.6522634,PR:000006160,http://purl.obolibrary.org/obo/PR_000006160,cysteine and tyrosine-rich protein 1 +14.6522634,PR:000006162,http://purl.obolibrary.org/obo/PR_000006162,none +14.6522634,PR:000006202,http://purl.obolibrary.org/obo/PR_000006202,none +14.6522634,PR:000006307,http://purl.obolibrary.org/obo/PR_000006307,protocadherin-23 +14.6522634,PR:000006322,http://purl.obolibrary.org/obo/PR_000006322,deoxycytidylate deaminase +14.6522634,PR:000006444,http://purl.obolibrary.org/obo/PR_000006444,diacylglycerol kinase delta +14.6522634,PR:000006633,http://purl.obolibrary.org/obo/PR_000006633,docking protein 6 +14.6522634,PR:000006701,http://purl.obolibrary.org/obo/PR_000006701,protein ripply3 +14.6522634,PR:000006733,http://purl.obolibrary.org/obo/PR_000006733,tRNA-dihydrouridine synthase 2-like +14.6522634,PR:000007324,http://purl.obolibrary.org/obo/PR_000007324,fumarylacetoacetate hydrolase domain-containing protein 1 +14.6522634,PR:000007444,http://purl.obolibrary.org/obo/PR_000007444,Fc receptor-like protein 6 +14.6522634,PR:000007543,http://purl.obolibrary.org/obo/PR_000007543,peptidyl-prolyl cis-trans isomerase FKBP7 +14.6522634,PR:000007560,http://purl.obolibrary.org/obo/PR_000007560,leucine-rich repeat transmembrane protein FLRT1 +14.6522634,PR:000007586,http://purl.obolibrary.org/obo/PR_000007586,formin-binding protein 4 +14.6522634,PR:000007626,http://purl.obolibrary.org/obo/PR_000007626,forkhead box protein I2 +14.6522634,PR:000007684,http://purl.obolibrary.org/obo/PR_000007684,fibrous sheath-interacting protein 2 +14.6522634,PR:000007775,http://purl.obolibrary.org/obo/PR_000007775,gamma-aminobutyric acid receptor subunit delta +14.6522634,PR:000007830,http://purl.obolibrary.org/obo/PR_000007830,polypeptide N-acetylgalactosaminyltransferase 9 +14.6522634,PR:000007996,http://purl.obolibrary.org/obo/PR_000007996,gap junction alpha-9 protein +14.6522634,PR:000008063,http://purl.obolibrary.org/obo/PR_000008063,glycerate kinase +14.6522634,PR:000008071,http://purl.obolibrary.org/obo/PR_000008071,glia maturation factor gamma +14.6522634,PR:000008106,http://purl.obolibrary.org/obo/PR_000008106,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-13 +14.6522634,PR:000008252,http://purl.obolibrary.org/obo/PR_000008252,glutamate [NMDA] receptor-associated protein 1 +14.6522634,PR:000008657,http://purl.obolibrary.org/obo/PR_000008657,heterogeneous nuclear ribonucleoprotein A0 +14.6522634,PR:000008760,http://purl.obolibrary.org/obo/PR_000008760,heparan sulfate glucosamine 3-O-sulfotransferase 3A1 +14.6522634,PR:000008858,http://purl.obolibrary.org/obo/PR_000008858,none +14.6522634,PR:000008890,http://purl.obolibrary.org/obo/PR_000008890,"isocitrate dehydrogenase [NAD] subunit beta, mitochondrial" +14.6522634,PR:000008975,http://purl.obolibrary.org/obo/PR_000008975,invasion-inhibitory protein 45 +14.6522634,PR:000009083,http://purl.obolibrary.org/obo/PR_000009083,interactor protein for cytohesin exchange factors 1 +14.6522634,PR:000009119,http://purl.obolibrary.org/obo/PR_000009119,isthmin-2 +14.6522634,PR:000009195,http://purl.obolibrary.org/obo/PR_000009195,protein jagunal homolog 1 +14.6522634,PR:000009249,http://purl.obolibrary.org/obo/PR_000009249,E3 ubiquitin-protein ligase KCMF1 +14.6522634,PR:000009405,http://purl.obolibrary.org/obo/PR_000009405,kelch-like protein 9 +14.6522634,PR:000009496,http://purl.obolibrary.org/obo/PR_000009496,"keratin, type II cytoskeletal 80" +14.6522634,PR:000009691,http://purl.obolibrary.org/obo/PR_000009691,protein LBH +14.6522634,PR:000009752,http://purl.obolibrary.org/obo/PR_000009752,"leucine-, glutamate- and lysine-rich protein 1" +14.6522634,PR:000009787,http://purl.obolibrary.org/obo/PR_000009787,LHFPL tetraspan subfamily member 3 protein +14.6522634,PR:000009815,http://purl.obolibrary.org/obo/PR_000009815,lck-interacting transmembrane adapter 1 +14.6522634,PR:000009858,http://purl.obolibrary.org/obo/PR_000009858,leishmanolysin-like peptidase +14.6522634,PR:000009889,http://purl.obolibrary.org/obo/PR_000009889,putative apolipoprotein(a)-like protein 2 +14.6522634,PR:000009893,http://purl.obolibrary.org/obo/PR_000009893,acyl-CoA:lysophosphatidylglycerol acyltransferase 1 +14.6522634,PR:000009994,http://purl.obolibrary.org/obo/PR_000009994,lymphocyte antigen 6 complex locus protein G6f +14.6522634,PR:000010168,http://purl.obolibrary.org/obo/PR_000010168,mitogen-activated protein kinase-binding protein 1 +14.6522634,PR:000010349,http://purl.obolibrary.org/obo/PR_000010349,N(6)-adenine-specific methyltransferase METTL4 +14.6522634,PR:000010507,http://purl.obolibrary.org/obo/PR_000010507,MOB kinase activator 3B +14.6522634,PR:000010520,http://purl.obolibrary.org/obo/PR_000010520,vacuolar fusion protein MON1 homolog B +14.6522634,PR:000010663,http://purl.obolibrary.org/obo/PR_000010663,membrane-spanning 4-domains subfamily A member 8B +14.6522634,PR:000010740,http://purl.obolibrary.org/obo/PR_000010740,myotubularin-related protein 7 +14.6522634,PR:000010777,http://purl.obolibrary.org/obo/PR_000010777,cadherin-related family member 5 +14.6522634,PR:000010880,http://purl.obolibrary.org/obo/PR_000010880,myomesin-3 +14.6522634,PR:000010927,http://purl.obolibrary.org/obo/PR_000010927,none +14.6522634,PR:000010965,http://purl.obolibrary.org/obo/PR_000010965,nuclear apoptosis-inducing factor 1 +14.6522634,PR:000011079,http://purl.obolibrary.org/obo/PR_000011079,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 +14.6522634,PR:000011084,http://purl.obolibrary.org/obo/PR_000011084,NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 +14.6522634,PR:000011088,http://purl.obolibrary.org/obo/PR_000011088,NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 +14.6522634,PR:000011181,http://purl.obolibrary.org/obo/PR_000011181,tonsoku-like protein +14.6522634,PR:000011299,http://purl.obolibrary.org/obo/PR_000011299,ribosomal oxygenase 1 +14.6522634,PR:000011457,http://purl.obolibrary.org/obo/PR_000011457,"5'(3')-deoxyribonucleotidase, mitochondrial" +14.6522634,PR:000011600,http://purl.obolibrary.org/obo/PR_000011600,outer dense fiber protein 3 +14.6522634,PR:000012065,http://purl.obolibrary.org/obo/PR_000012065,organic solute transporter subunit beta +14.6522634,PR:000012078,http://purl.obolibrary.org/obo/PR_000012078,otospiralin +14.6522634,PR:000012291,http://purl.obolibrary.org/obo/PR_000012291,protein mono-ADP-ribosyltransferase PARP11 +14.6522634,PR:000012295,http://purl.obolibrary.org/obo/PR_000012295,protein mono-ADP-ribosyltransferase PARP16 +14.6522634,PR:000012422,http://purl.obolibrary.org/obo/PR_000012422,PEST proteolytic signal-containing nuclear protein +14.6522634,PR:000012591,http://purl.obolibrary.org/obo/PR_000012591,pepsin A-5 +14.6522634,PR:000012596,http://purl.obolibrary.org/obo/PR_000012596,PGAP2-interacting protein +14.6522634,PR:000012597,http://purl.obolibrary.org/obo/PR_000012597,piggyBac transposable element-derived protein 1 +14.6522634,PR:000012601,http://purl.obolibrary.org/obo/PR_000012601,piggyBac transposable element-derived protein 5 +14.6522634,PR:000012650,http://purl.obolibrary.org/obo/PR_000012650,PHD finger protein 23 +14.6522634,PR:000012717,http://purl.obolibrary.org/obo/PR_000012717,phosphatidylinositol 4-phosphate 3-kinase C2 domain-containing subunit gamma +14.6522634,PR:000012945,http://purl.obolibrary.org/obo/PR_000012945,patatin-like phospholipase domain-containing protein 5 +14.6522634,PR:000012948,http://purl.obolibrary.org/obo/PR_000012948,calcium-independent phospholipase A2-gamma +14.6522634,PR:000012971,http://purl.obolibrary.org/obo/PR_000012971,DNA polymerase epsilon subunit 3 +14.6522634,PR:000013067,http://purl.obolibrary.org/obo/PR_000013067,serine/threonine-protein phosphatase with EF-hands 2 +14.6522634,PR:000013166,http://purl.obolibrary.org/obo/PR_000013166,small nuclear protein PRAC1 +14.6522634,PR:000013274,http://purl.obolibrary.org/obo/PR_000013274,prospero homeobox protein 2 +14.6522634,PR:000013295,http://purl.obolibrary.org/obo/PR_000013295,phosphoribosyl pyrophosphate synthase-associated protein 2 +14.6522634,PR:000013312,http://purl.obolibrary.org/obo/PR_000013312,transmembrane gamma-carboxyglutamic acid protein 1 +14.6522634,PR:000013371,http://purl.obolibrary.org/obo/PR_000013371,proteasome subunit beta type-11 +14.6522634,PR:000013488,http://purl.obolibrary.org/obo/PR_000013488,securin-2 +14.6522634,PR:000013511,http://purl.obolibrary.org/obo/PR_000013511,peroxisomal membrane protein 4 +14.6522634,PR:000013532,http://purl.obolibrary.org/obo/PR_000013532,group IIC secretory phospholipase A2 +14.6522634,PR:000013548,http://purl.obolibrary.org/obo/PR_000013548,none +14.6522634,PR:000013638,http://purl.obolibrary.org/obo/PR_000013638,Ras-related protein Rab-6C +14.6522634,PR:000013657,http://purl.obolibrary.org/obo/PR_000013657,Rab-like protein 2B +14.6522634,PR:000013700,http://purl.obolibrary.org/obo/PR_000013700,Ras-specific guanine nucleotide-releasing factor RalGPS2 +14.6522634,PR:000013851,http://purl.obolibrary.org/obo/PR_000013851,retinol dehydrogenase 13 +14.6522634,PR:000013929,http://purl.obolibrary.org/obo/PR_000013929,DNA-binding protein RFX7 +14.6522634,PR:000014130,http://purl.obolibrary.org/obo/PR_000014130,RING finger protein 32 +14.6522634,PR:000014156,http://purl.obolibrary.org/obo/PR_000014156,protein rogdi +14.6522634,PR:000014204,http://purl.obolibrary.org/obo/PR_000014204,60S ribosomal protein L23a +14.6522634,PR:000014519,http://purl.obolibrary.org/obo/PR_000014519,sex comb on midleg-like protein 1 +14.6522634,PR:000014611,http://purl.obolibrary.org/obo/PR_000014611,"protein adenylyltransferase SelO, mitochondrial" +14.6522634,PR:000014631,http://purl.obolibrary.org/obo/PR_000014631,semaphorin-6C +14.6522634,PR:000014946,http://purl.obolibrary.org/obo/PR_000014946,monocarboxylate transporter 11 +14.6522634,PR:000015184,http://purl.obolibrary.org/obo/PR_000015184,inactive sodium-dependent neutral amino acid transporter B(0)AT3 +14.6522634,PR:000015278,http://purl.obolibrary.org/obo/PR_000015278,Smith-Magenis syndrome chromosome region candidate gene 7 protein +14.6522634,PR:000015296,http://purl.obolibrary.org/obo/PR_000015296,acid sphingomyelinase-like phosphodiesterase 3a +14.6522634,PR:000015344,http://purl.obolibrary.org/obo/PR_000015344,small nuclear ribonucleoprotein Sm D2 +14.6522634,PR:000015356,http://purl.obolibrary.org/obo/PR_000015356,SNRPN upstream reading frame protein +14.6522634,PR:000015364,http://purl.obolibrary.org/obo/PR_000015364,sorting nexin-15 +14.6522634,PR:000015375,http://purl.obolibrary.org/obo/PR_000015375,Rho GTPase-activating protein 33 +14.6522634,PR:000015534,http://purl.obolibrary.org/obo/PR_000015534,serine protease inhibitor Kazal-type 4 +14.6522634,PR:000015536,http://purl.obolibrary.org/obo/PR_000015536,serine protease inhibitor Kazal-type 13 +14.6522634,PR:000015575,http://purl.obolibrary.org/obo/PR_000015575,small proline-rich protein 2B +14.6522634,PR:000015576,http://purl.obolibrary.org/obo/PR_000015576,small proline-rich protein 2D +14.6522634,PR:000015578,http://purl.obolibrary.org/obo/PR_000015578,small proline-rich protein 2F +14.6522634,PR:000015646,http://purl.obolibrary.org/obo/PR_000015646,SS18-like protein 2 +14.6522634,PR:000015749,http://purl.obolibrary.org/obo/PR_000015749,serine/threonine-protein kinase 32B +14.6522634,PR:000015750,http://purl.obolibrary.org/obo/PR_000015750,serine/threonine-protein kinase 32C +14.6522634,PR:000015779,http://purl.obolibrary.org/obo/PR_000015779,striatin-3 +14.6522634,PR:000015809,http://purl.obolibrary.org/obo/PR_000015809,serine/threonine/tyrosine-interacting-like protein 1 +14.6522634,PR:000016316,http://purl.obolibrary.org/obo/PR_000016316,THO complex subunit 7 +14.6522634,PR:000016395,http://purl.obolibrary.org/obo/PR_000016395,transmembrane channel-like protein 4 +14.6522634,PR:000016442,http://purl.obolibrary.org/obo/PR_000016442,transmembrane inner ear expressed protein +14.6522634,PR:000016477,http://purl.obolibrary.org/obo/PR_000016477,tumor necrosis factor alpha-induced protein 8-like protein 1 +14.6522634,PR:000016736,http://purl.obolibrary.org/obo/PR_000016736,tetraspanin-10 +14.6522634,PR:000016769,http://purl.obolibrary.org/obo/PR_000016769,protein TSSC4 +14.6522634,PR:000016784,http://purl.obolibrary.org/obo/PR_000016784,M-phase-specific PLK1-interacting protein +14.6522634,PR:000016795,http://purl.obolibrary.org/obo/PR_000016795,tubulin polyglutamylase TTLL6 +14.6522634,PR:000016796,http://purl.obolibrary.org/obo/PR_000016796,tubulin polyglutamylase TTLL7 +14.6522634,PR:000016835,http://purl.obolibrary.org/obo/PR_000016835,tubby-related protein 2 +14.6522634,PR:000016978,http://purl.obolibrary.org/obo/PR_000016978,ubiquitin-conjugating enzyme E2 J1 +14.6522634,PR:000016984,http://purl.obolibrary.org/obo/PR_000016984,ubiquitin-conjugating enzyme E2 Q1 +14.6522634,PR:000017057,http://purl.obolibrary.org/obo/PR_000017057,UDP-glucuronosyltransferase 2A1 +14.6522634,PR:000017062,http://purl.obolibrary.org/obo/PR_000017062,UDP-glucuronosyltransferase 2B17 +14.6522634,PR:000017082,http://purl.obolibrary.org/obo/PR_000017082,uromodulin-like 1 +14.6522634,PR:000017181,http://purl.obolibrary.org/obo/PR_000017181,ubiquitin carboxyl-terminal hydrolase 42 +14.6522634,PR:000017199,http://purl.obolibrary.org/obo/PR_000017199,uronyl 2-sulfotransferase +14.6522634,PR:000017204,http://purl.obolibrary.org/obo/PR_000017204,U3 small nucleolar RNA-associated protein 18 +14.6522634,PR:000017362,http://purl.obolibrary.org/obo/PR_000017362,brorin +14.6522634,PR:000017402,http://purl.obolibrary.org/obo/PR_000017402,DDB1- and CUL4-associated factor 13 +14.6522634,PR:000017623,http://purl.obolibrary.org/obo/PR_000017623,AN1-type zinc finger protein 3 +14.6522634,PR:000017774,http://purl.obolibrary.org/obo/PR_000017774,zinc finger protein 239 +14.6522634,PR:000017792,http://purl.obolibrary.org/obo/PR_000017792,zinc finger protein 268 +14.6522634,PR:000017833,http://purl.obolibrary.org/obo/PR_000017833,zinc finger protein 331 +14.6522634,PR:000018075,http://purl.obolibrary.org/obo/PR_000018075,zinc finger protein 675 +14.6522634,PR:000018111,http://purl.obolibrary.org/obo/PR_000018111,zinc finger protein 711 +14.6522634,PR:000018129,http://purl.obolibrary.org/obo/PR_000018129,zinc finger protein 76 +14.6522634,PR:000022050,http://purl.obolibrary.org/obo/PR_000022050,none +14.6522634,PR:000022053,http://purl.obolibrary.org/obo/PR_000022053,none +14.6522634,PR:000022117,http://purl.obolibrary.org/obo/PR_000022117,none +14.6522634,PR:000022203,http://purl.obolibrary.org/obo/PR_000022203,none +14.6522634,PR:000022227,http://purl.obolibrary.org/obo/PR_000022227,none +14.6522634,PR:000022264,http://purl.obolibrary.org/obo/PR_000022264,none +14.6522634,PR:000022270,http://purl.obolibrary.org/obo/PR_000022270,none +14.6522634,PR:000022299,http://purl.obolibrary.org/obo/PR_000022299,none +14.6522634,PR:000022330,http://purl.obolibrary.org/obo/PR_000022330,sensor protein CreC +14.6522634,PR:000022363,http://purl.obolibrary.org/obo/PR_000022363,none +14.6522634,PR:000022372,http://purl.obolibrary.org/obo/PR_000022372,none +14.6522634,PR:000022388,http://purl.obolibrary.org/obo/PR_000022388,none +14.6522634,PR:000022421,http://purl.obolibrary.org/obo/PR_000022421,none +14.6522634,PR:000022422,http://purl.obolibrary.org/obo/PR_000022422,none +14.6522634,PR:000022644,http://purl.obolibrary.org/obo/PR_000022644,none +14.6522634,PR:000022651,http://purl.obolibrary.org/obo/PR_000022651,none +14.6522634,PR:000022765,http://purl.obolibrary.org/obo/PR_000022765,none +14.6522634,PR:000022800,http://purl.obolibrary.org/obo/PR_000022800,none +14.6522634,PR:000022862,http://purl.obolibrary.org/obo/PR_000022862,none +14.6522634,PR:000023122,http://purl.obolibrary.org/obo/PR_000023122,none +14.6522634,PR:000023128,http://purl.obolibrary.org/obo/PR_000023128,none +14.6522634,PR:000023134,http://purl.obolibrary.org/obo/PR_000023134,none +14.6522634,PR:000023137,http://purl.obolibrary.org/obo/PR_000023137,none +14.6522634,PR:000023142,http://purl.obolibrary.org/obo/PR_000023142,none +14.6522634,PR:000023222,http://purl.obolibrary.org/obo/PR_000023222,none +14.6522634,PR:000023399,http://purl.obolibrary.org/obo/PR_000023399,none +14.6522634,PR:000023422,http://purl.obolibrary.org/obo/PR_000023422,none +14.6522634,PR:000023641,http://purl.obolibrary.org/obo/PR_000023641,none +14.6522634,PR:000023709,http://purl.obolibrary.org/obo/PR_000023709,none +14.6522634,PR:000023712,http://purl.obolibrary.org/obo/PR_000023712,none +14.6522634,PR:000023826,http://purl.obolibrary.org/obo/PR_000023826,none +14.6522634,PR:000023875,http://purl.obolibrary.org/obo/PR_000023875,none +14.6522634,PR:000023880,http://purl.obolibrary.org/obo/PR_000023880,none +14.6522634,PR:000023913,http://purl.obolibrary.org/obo/PR_000023913,none +14.6522634,PR:000024050,http://purl.obolibrary.org/obo/PR_000024050,none +14.6522634,PR:000024103,http://purl.obolibrary.org/obo/PR_000024103,none +14.6522634,PR:000024109,http://purl.obolibrary.org/obo/PR_000024109,none +14.6522634,PR:000024110,http://purl.obolibrary.org/obo/PR_000024110,none +14.6522634,PR:000024212,http://purl.obolibrary.org/obo/PR_000024212,none +14.6522634,PR:000025624,http://purl.obolibrary.org/obo/PR_000025624,E3 ubiquitin-protein ligase SH3RF1 +14.6522634,PR:000029040,http://purl.obolibrary.org/obo/PR_000029040,none +14.6522634,PR:000029305,http://purl.obolibrary.org/obo/PR_000029305,BTB/POZ domain-containing protein 10 +14.6522634,PR:000029351,http://purl.obolibrary.org/obo/PR_000029351,chromodomain Y-like protein 2 +14.6522634,PR:000029411,http://purl.obolibrary.org/obo/PR_000029411,dehydrogenase/reductase SDR family member 7 +14.6522634,PR:000029527,http://purl.obolibrary.org/obo/PR_000029527,procollagen galactosyltransferase 1 +14.6522634,PR:000029549,http://purl.obolibrary.org/obo/PR_000029549,hyccin +14.6522634,PR:000029559,http://purl.obolibrary.org/obo/PR_000029559,interleukin-36 beta +14.6522634,PR:000029602,http://purl.obolibrary.org/obo/PR_000029602,leucine-rich repeat-containing protein 4B +14.6522634,PR:000029605,http://purl.obolibrary.org/obo/PR_000029605,leucine-rich repeat-containing protein 59 +14.6522634,PR:000029607,http://purl.obolibrary.org/obo/PR_000029607,volume-regulated anion channel subunit LRRC8D +14.6522634,PR:000029619,http://purl.obolibrary.org/obo/PR_000029619,MAP7 domain-containing protein 3 +14.6522634,PR:000029666,http://purl.obolibrary.org/obo/PR_000029666,PCI domain-containing protein 2 +14.6522634,PR:000029700,http://purl.obolibrary.org/obo/PR_000029700,"pentatricopeptide repeat-containing protein 3, mitochondrial" +14.6522634,PR:000029751,http://purl.obolibrary.org/obo/PR_000029751,SH2 domain-containing protein 4A +14.6522634,PR:000029768,http://purl.obolibrary.org/obo/PR_000029768,spindle and centriole-associated protein 1 +14.6522634,PR:000029809,http://purl.obolibrary.org/obo/PR_000029809,transmembrane protein 45B +14.6522634,PR:000029816,http://purl.obolibrary.org/obo/PR_000029816,transmembrane protein 79 +14.6522634,PR:000029855,http://purl.obolibrary.org/obo/PR_000029855,WD repeat-containing protein 13 +14.6522634,PR:000029861,http://purl.obolibrary.org/obo/PR_000029861,cilia- and flagella-associated protein 44 +14.6522634,PR:000029874,http://purl.obolibrary.org/obo/PR_000029874,WD repeat-containing protein WRAP73 +14.6522634,PR:000029879,http://purl.obolibrary.org/obo/PR_000029879,YTH domain-containing family protein 3 +14.6522634,PR:000029889,http://purl.obolibrary.org/obo/PR_000029889,palmitoyltransferase ZDHHC14 +14.6522634,PR:000030296,http://purl.obolibrary.org/obo/PR_000030296,bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 +14.6522634,PR:000030318,http://purl.obolibrary.org/obo/PR_000030318,cutaneous T-cell lymphoma-associated antigen 1 +14.6522634,PR:000030367,http://purl.obolibrary.org/obo/PR_000030367,BTB/POZ domain-containing protein 2 +14.6522634,PR:000030392,http://purl.obolibrary.org/obo/PR_000030392,pleckstrin homology domain-containing family A member 6 +14.6522634,PR:000030423,http://purl.obolibrary.org/obo/PR_000030423,membrane progestin receptor delta +14.6522634,PR:000030445,http://purl.obolibrary.org/obo/PR_000030445,transmembrane emp24 domain-containing protein 7 +14.6522634,PR:000030451,http://purl.obolibrary.org/obo/PR_000030451,Rho GTPase-activating protein 42 +14.6522634,PR:000030527,http://purl.obolibrary.org/obo/PR_000030527,volume-regulated anion channel subunit LRRC8B +14.6522634,PR:000030665,http://purl.obolibrary.org/obo/PR_000030665,PILR alpha-associated neural protein +14.6522634,PR:000030678,http://purl.obolibrary.org/obo/PR_000030678,immunoglobulin superfamily containing leucine-rich repeat protein 2 +14.6522634,PR:000030695,http://purl.obolibrary.org/obo/PR_000030695,ethylmalonyl-CoA decarboxylase +14.6522634,PR:000030739,http://purl.obolibrary.org/obo/PR_000030739,putative membrane-spanning 4-domains subfamily A member 4E +14.6522634,PR:000030840,http://purl.obolibrary.org/obo/PR_000030840,"CDGSH iron-sulfur domain-containing protein 3, mitochondrial" +14.6522634,PR:000030844,http://purl.obolibrary.org/obo/PR_000030844,SH3 domain-containing YSC84-like protein 1 +14.6522634,PR:000030847,http://purl.obolibrary.org/obo/PR_000030847,tubulin polymerization-promoting protein family member 2 +14.6522634,PR:000030850,http://purl.obolibrary.org/obo/PR_000030850,protein unc-79 homolog +14.6522634,PR:000030872,http://purl.obolibrary.org/obo/PR_000030872,tripartite motif-containing protein 15 +14.6522634,PR:000031084,http://purl.obolibrary.org/obo/PR_000031084,E3 ubiquitin-protein ligase TRIM50 +14.6522634,PR:000031286,http://purl.obolibrary.org/obo/PR_000031286,tripartite motif-containing protein 16-like protein +14.6522634,PR:000031485,http://purl.obolibrary.org/obo/PR_000031485,PR domain-containing protein 11 +14.6522634,PR:000031531,http://purl.obolibrary.org/obo/PR_000031531,putative E3 ubiquitin-protein ligase UBR7 +14.6522634,PR:000031613,http://purl.obolibrary.org/obo/PR_000031613,pyridine nucleotide-disulfide oxidoreductase domain-containing protein 2 +14.6522634,PR:000031686,http://purl.obolibrary.org/obo/PR_000031686,putative C->U-editing enzyme APOBEC-4 +14.6522634,PR:000031695,http://purl.obolibrary.org/obo/PR_000031695,glycerophosphocholine phosphodiesterase GPCPD1 +14.6522634,PR:000031702,http://purl.obolibrary.org/obo/PR_000031702,"complex I assembly factor TIMMDC1, mitochondrial" +14.6522634,PR:000031748,http://purl.obolibrary.org/obo/PR_000031748,transmembrane protein 165 +14.6522634,PR:000031796,http://purl.obolibrary.org/obo/PR_000031796,isochorismatase domain-containing protein 1 +14.6522634,PR:000031839,http://purl.obolibrary.org/obo/PR_000031839,bis(5'-adenosyl)-triphosphatase ENPP4 +14.6522634,PR:000031919,http://purl.obolibrary.org/obo/PR_000031919,SLAIN motif-containing protein 1 +14.6522634,PR:000031926,http://purl.obolibrary.org/obo/PR_000031926,ventricular zone-expressed PH domain-containing protein homolog 1 +14.6522634,PR:000031965,http://purl.obolibrary.org/obo/PR_000031965,endoplasmic reticulum lectin 1 +14.6522634,PR:000031990,http://purl.obolibrary.org/obo/PR_000031990,immunoglobulin superfamily member 6 +14.6522634,PR:000032176,http://purl.obolibrary.org/obo/PR_000032176,"NADH dehydrogenase (ubiquinone) complex I, assembly factor 6" +14.6522634,PR:000032374,http://purl.obolibrary.org/obo/PR_000032374,"complex I assembly factor TMEM126B, mitochondrial" +14.6522634,PR:000032412,http://purl.obolibrary.org/obo/PR_000032412,BTB/POZ domain-containing protein KCTD9 +14.6522634,PR:000032414,http://purl.obolibrary.org/obo/PR_000032414,leucine-rich repeat and calponin homology domain-containing protein 1 +14.6522634,PR:000032429,http://purl.obolibrary.org/obo/PR_000032429,probable ATP-dependent RNA helicase DHX37 +14.6522634,PR:000032464,http://purl.obolibrary.org/obo/PR_000032464,protein FAM40B +14.6522634,PR:000032563,http://purl.obolibrary.org/obo/PR_000032563,Ras-like protein family member 12 +14.6522634,PR:000032625,http://purl.obolibrary.org/obo/PR_000032625,phostensin +14.6522634,PR:000032634,http://purl.obolibrary.org/obo/PR_000032634,ankyrin repeat domain-containing protein 49 +14.6522634,PR:000032775,http://purl.obolibrary.org/obo/PR_000032775,SET and MYND domain-containing protein 4 +14.6522634,PR:000032812,http://purl.obolibrary.org/obo/PR_000032812,palmitoyltransferase ZDHHC21 +14.6522634,PR:000032831,http://purl.obolibrary.org/obo/PR_000032831,none +14.6522634,PR:000033043,http://purl.obolibrary.org/obo/PR_000033043,none +14.6522634,PR:000033076,http://purl.obolibrary.org/obo/PR_000033076,none +14.6522634,PR:000033157,http://purl.obolibrary.org/obo/PR_000033157,none +14.6522634,PR:000033182,http://purl.obolibrary.org/obo/PR_000033182,none +14.6522634,PR:000033326,http://purl.obolibrary.org/obo/PR_000033326,none +14.6522634,PR:000033485,http://purl.obolibrary.org/obo/PR_000033485,none +14.6522634,PR:000033531,http://purl.obolibrary.org/obo/PR_000033531,none +14.6522634,PR:000033689,http://purl.obolibrary.org/obo/PR_000033689,none +14.6522634,PR:000033727,http://purl.obolibrary.org/obo/PR_000033727,none +14.6522634,PR:000033781,http://purl.obolibrary.org/obo/PR_000033781,none +14.6522634,PR:000033819,http://purl.obolibrary.org/obo/PR_000033819,none +14.6522634,PR:000033992,http://purl.obolibrary.org/obo/PR_000033992,none +14.6522634,PR:000034094,http://purl.obolibrary.org/obo/PR_000034094,none +14.6522634,PR:000034666,http://purl.obolibrary.org/obo/PR_000034666,none +14.6522634,PR:000034682,http://purl.obolibrary.org/obo/PR_000034682,none +14.6522634,PR:000034794,http://purl.obolibrary.org/obo/PR_000034794,none +14.6522634,PR:000035058,http://purl.obolibrary.org/obo/PR_000035058,none +14.6522634,PR:000035305,http://purl.obolibrary.org/obo/PR_000035305,none +14.6522634,PR:000036039,http://purl.obolibrary.org/obo/PR_000036039,none +14.6522634,PR:000044448,http://purl.obolibrary.org/obo/PR_000044448,none +14.6522634,PR:000044451,http://purl.obolibrary.org/obo/PR_000044451,none +14.6522634,PR:000044674,http://purl.obolibrary.org/obo/PR_000044674,small integral membrane protein 29 +14.6522634,PR:B3H4X8,http://purl.obolibrary.org/obo/PR_B3H4X8,none +14.6522634,PR:F4I460,http://purl.obolibrary.org/obo/PR_F4I460,none +14.6522634,PR:O04314,http://purl.obolibrary.org/obo/PR_O04314,none +14.6522634,PR:O14002,http://purl.obolibrary.org/obo/PR_O14002,none +14.6522634,PR:O22881,http://purl.obolibrary.org/obo/PR_O22881,none +14.6522634,PR:O23016,http://purl.obolibrary.org/obo/PR_O23016,none +14.6522634,PR:O23244,http://purl.obolibrary.org/obo/PR_O23244,none +14.6522634,PR:O42916,http://purl.obolibrary.org/obo/PR_O42916,none +14.6522634,PR:O60174,http://purl.obolibrary.org/obo/PR_O60174,none +14.6522634,PR:O74254,http://purl.obolibrary.org/obo/PR_O74254,none +14.6522634,PR:O74539,http://purl.obolibrary.org/obo/PR_O74539,none +14.6522634,PR:O80713,http://purl.obolibrary.org/obo/PR_O80713,none +14.6522634,PR:O88788,http://purl.obolibrary.org/obo/PR_O88788,none +14.6522634,PR:O94290,http://purl.obolibrary.org/obo/PR_O94290,none +14.6522634,PR:P00179,http://purl.obolibrary.org/obo/PR_P00179,none +14.6522634,PR:P02294,http://purl.obolibrary.org/obo/PR_P02294,none +14.6522634,PR:P07256,http://purl.obolibrary.org/obo/PR_P07256,none +14.6522634,PR:P08920,http://purl.obolibrary.org/obo/PR_P08920,none +14.6522634,PR:P08921,http://purl.obolibrary.org/obo/PR_P08921,none +14.6522634,PR:P16580,http://purl.obolibrary.org/obo/PR_P16580,none +14.6522634,PR:P21657,http://purl.obolibrary.org/obo/PR_P21657,none +14.6522634,PR:P24399,http://purl.obolibrary.org/obo/PR_P24399,none +14.6522634,PR:P25613,http://purl.obolibrary.org/obo/PR_P25613,none +14.6522634,PR:P25807,http://purl.obolibrary.org/obo/PR_P25807,none +14.6522634,PR:P32795,http://purl.obolibrary.org/obo/PR_P32795,none +14.6522634,PR:P32864,http://purl.obolibrary.org/obo/PR_P32864,none +14.6522634,PR:P34217,http://purl.obolibrary.org/obo/PR_P34217,none +14.6522634,PR:P36017,http://purl.obolibrary.org/obo/PR_P36017,none +14.6522634,PR:P36161,http://purl.obolibrary.org/obo/PR_P36161,none +14.6522634,PR:P36611,http://purl.obolibrary.org/obo/PR_P36611,none +14.6522634,PR:P38089,http://purl.obolibrary.org/obo/PR_P38089,none +14.6522634,PR:P38850,http://purl.obolibrary.org/obo/PR_P38850,none +14.6522634,PR:P39207,http://purl.obolibrary.org/obo/PR_P39207,none +14.6522634,PR:P42825,http://purl.obolibrary.org/obo/PR_P42825,none +14.6522634,PR:P45895,http://purl.obolibrary.org/obo/PR_P45895,none +14.6522634,PR:P49956,http://purl.obolibrary.org/obo/PR_P49956,none +14.6522634,PR:P50076,http://purl.obolibrary.org/obo/PR_P50076,none +14.6522634,PR:P53079,http://purl.obolibrary.org/obo/PR_P53079,none +14.6522634,PR:P61957,http://purl.obolibrary.org/obo/PR_P61957,none +14.6522634,PR:P79762,http://purl.obolibrary.org/obo/PR_P79762,none +14.6522634,PR:P91615,http://purl.obolibrary.org/obo/PR_P91615,none +14.6522634,PR:P93312,http://purl.obolibrary.org/obo/PR_P93312,none +14.6522634,PR:Q02283,http://purl.obolibrary.org/obo/PR_Q02283,none +14.6522634,PR:Q06148,http://purl.obolibrary.org/obo/PR_Q06148,none +14.6522634,PR:Q08923,http://purl.obolibrary.org/obo/PR_Q08923,none +14.6522634,PR:Q09459,http://purl.obolibrary.org/obo/PR_Q09459,none +14.6522634,PR:Q09900,http://purl.obolibrary.org/obo/PR_Q09900,none +14.6522634,PR:Q2FUQ3,http://purl.obolibrary.org/obo/PR_Q2FUQ3,none +14.6522634,PR:Q39016,http://purl.obolibrary.org/obo/PR_Q39016,none +14.6522634,PR:Q39227,http://purl.obolibrary.org/obo/PR_Q39227,none +14.6522634,PR:Q42381,http://purl.obolibrary.org/obo/PR_Q42381,none +14.6522634,PR:Q42588,http://purl.obolibrary.org/obo/PR_Q42588,none +14.6522634,PR:Q4PSU4,http://purl.obolibrary.org/obo/PR_Q4PSU4,none +14.6522634,PR:Q4U3Q4,http://purl.obolibrary.org/obo/PR_Q4U3Q4,none +14.6522634,PR:Q500U8,http://purl.obolibrary.org/obo/PR_Q500U8,none +14.6522634,PR:Q54QT9,http://purl.obolibrary.org/obo/PR_Q54QT9,none +14.6522634,PR:Q54V32,http://purl.obolibrary.org/obo/PR_Q54V32,none +14.6522634,PR:Q5AD07,http://purl.obolibrary.org/obo/PR_Q5AD07,none +14.6522634,PR:Q5ADP9,http://purl.obolibrary.org/obo/PR_Q5ADP9,none +14.6522634,PR:Q5AED9,http://purl.obolibrary.org/obo/PR_Q5AED9,none +14.6522634,PR:Q5AMQ4,http://purl.obolibrary.org/obo/PR_Q5AMQ4,none +14.6522634,PR:Q5RHD1,http://purl.obolibrary.org/obo/PR_Q5RHD1,none +14.6522634,PR:Q5XJB9,http://purl.obolibrary.org/obo/PR_Q5XJB9,none +14.6522634,PR:Q5ZKL9,http://purl.obolibrary.org/obo/PR_Q5ZKL9,none +14.6522634,PR:Q5ZKW0,http://purl.obolibrary.org/obo/PR_Q5ZKW0,none +14.6522634,PR:Q6AXJ2,http://purl.obolibrary.org/obo/PR_Q6AXJ2,none +14.6522634,PR:Q7ZVH1,http://purl.obolibrary.org/obo/PR_Q7ZVH1,none +14.6522634,PR:Q86PC9,http://purl.obolibrary.org/obo/PR_Q86PC9,none +14.6522634,PR:Q8AYN0,http://purl.obolibrary.org/obo/PR_Q8AYN0,none +14.6522634,PR:Q8JIS6,http://purl.obolibrary.org/obo/PR_Q8JIS6,none +14.6522634,PR:Q8LDR0,http://purl.obolibrary.org/obo/PR_Q8LDR0,none +14.6522634,PR:Q8LGA1,http://purl.obolibrary.org/obo/PR_Q8LGA1,none +14.6522634,PR:Q8QZR3,http://purl.obolibrary.org/obo/PR_Q8QZR3,none +14.6522634,PR:Q8VXY9,http://purl.obolibrary.org/obo/PR_Q8VXY9,none +14.6522634,PR:Q8VZ95,http://purl.obolibrary.org/obo/PR_Q8VZ95,none +14.6522634,PR:Q8W2F3,http://purl.obolibrary.org/obo/PR_Q8W2F3,none +14.6522634,PR:Q8YB35,http://purl.obolibrary.org/obo/PR_Q8YB35,none +14.6522634,PR:Q90826,http://purl.obolibrary.org/obo/PR_Q90826,none +14.6522634,PR:Q923B3,http://purl.obolibrary.org/obo/PR_Q923B3,none +14.6522634,PR:Q93ZB9,http://purl.obolibrary.org/obo/PR_Q93ZB9,none +14.6522634,PR:Q96305,http://purl.obolibrary.org/obo/PR_Q96305,none +14.6522634,PR:Q9D5U8,http://purl.obolibrary.org/obo/PR_Q9D5U8,none +14.6522634,PR:Q9FFD0,http://purl.obolibrary.org/obo/PR_Q9FFD0,none +14.6522634,PR:Q9FGM1,http://purl.obolibrary.org/obo/PR_Q9FGM1,none +14.6522634,PR:Q9FUP0,http://purl.obolibrary.org/obo/PR_Q9FUP0,none +14.6522634,PR:Q9FVS9,http://purl.obolibrary.org/obo/PR_Q9FVS9,none +14.6522634,PR:Q9LD95,http://purl.obolibrary.org/obo/PR_Q9LD95,none +14.6522634,PR:Q9LF05,http://purl.obolibrary.org/obo/PR_Q9LF05,none +14.6522634,PR:Q9LF37,http://purl.obolibrary.org/obo/PR_Q9LF37,none +14.6522634,PR:Q9LFM5,http://purl.obolibrary.org/obo/PR_Q9LFM5,none +14.6522634,PR:Q9LFT6,http://purl.obolibrary.org/obo/PR_Q9LFT6,none +14.6522634,PR:Q9LIS2,http://purl.obolibrary.org/obo/PR_Q9LIS2,none +14.6522634,PR:Q9LQK7,http://purl.obolibrary.org/obo/PR_Q9LQK7,none +14.6522634,PR:Q9LR47,http://purl.obolibrary.org/obo/PR_Q9LR47,none +14.6522634,PR:Q9NVM9,http://purl.obolibrary.org/obo/PR_Q9NVM9,integrator complex subunit 13 (human) +14.6522634,PR:Q9SA96,http://purl.obolibrary.org/obo/PR_Q9SA96,none +14.6522634,PR:Q9SCW4,http://purl.obolibrary.org/obo/PR_Q9SCW4,none +14.6522634,PR:Q9SD85,http://purl.obolibrary.org/obo/PR_Q9SD85,none +14.6522634,PR:Q9SM02,http://purl.obolibrary.org/obo/PR_Q9SM02,none +14.6522634,PR:Q9SMX5,http://purl.obolibrary.org/obo/PR_Q9SMX5,none +14.6522634,PR:Q9STX5,http://purl.obolibrary.org/obo/PR_Q9STX5,none +14.6522634,PR:Q9SYC8,http://purl.obolibrary.org/obo/PR_Q9SYC8,none +14.6522634,PR:Q9VBY8,http://purl.obolibrary.org/obo/PR_Q9VBY8,none +14.6522634,PR:Q9VHJ4,http://purl.obolibrary.org/obo/PR_Q9VHJ4,none +14.6522634,PR:Q9XFT3,http://purl.obolibrary.org/obo/PR_Q9XFT3,none +14.6522634,PR:Q9XI00,http://purl.obolibrary.org/obo/PR_Q9XI00,none +14.6522634,PR:Q9Z176,http://purl.obolibrary.org/obo/PR_Q9Z176,none +14.6522634,PR:Q9ZPW7,http://purl.obolibrary.org/obo/PR_Q9ZPW7,none +14.6522634,PR:Q9ZWA9,http://purl.obolibrary.org/obo/PR_Q9ZWA9,none +14.6522634,PR:Q9ZWT2,http://purl.obolibrary.org/obo/PR_Q9ZWT2,none +14.6522634,SO:0000389,http://purl.obolibrary.org/obo/SO_0000389,spot_42_RNA +14.6522634,SO:0000829,http://purl.obolibrary.org/obo/SO_0000829,nucleomorphic_chromosome +14.6522634,SO:0000915,http://purl.obolibrary.org/obo/SO_0000915,engineered_insert +14.6522634,SO:0000949,http://purl.obolibrary.org/obo/SO_0000949,dif_site +14.6522634,SO:0001266,http://purl.obolibrary.org/obo/SO_0001266,scRNA_gene +14.6522634,SO:0001480,http://purl.obolibrary.org/obo/SO_0001480,PAC_end +14.6522634,SO:0001592,http://purl.obolibrary.org/obo/SO_0001592,minus_1_frameshift_variant +14.6522634,SO:0001759,http://purl.obolibrary.org/obo/SO_0001759,unitary_pseudogene +14.6522634,SO:0001876,http://purl.obolibrary.org/obo/SO_0001876,partial_genomic_sequence_assembly +14.6522634,SO:0001910,http://purl.obolibrary.org/obo/SO_0001910,frameshift_truncation +14.6522634,SO:0001959,http://purl.obolibrary.org/obo/SO_0001959,TCT_motif +14.6522634,SO:0100012,http://purl.obolibrary.org/obo/SO_0100012,peptide_coil +14.6522634,UBERON:0000046,http://purl.obolibrary.org/obo/UBERON_0000046,stemma +14.6522634,UBERON:0000164,http://purl.obolibrary.org/obo/UBERON_0000164,primitive urogenital sinus +14.6522634,UBERON:0000430,http://purl.obolibrary.org/obo/UBERON_0000430,ventral intermediate nucleus of thalamus +14.6522634,UBERON:0001265,http://purl.obolibrary.org/obo/UBERON_0001265,trabecula of spleen +14.6522634,UBERON:0001306,http://purl.obolibrary.org/obo/UBERON_0001306,cumulus oophorus +14.6522634,UBERON:0001342,http://purl.obolibrary.org/obo/UBERON_0001342,mesovarium +14.6522634,UBERON:0001554,http://purl.obolibrary.org/obo/UBERON_0001554,skin of hip +14.6522634,UBERON:0001951,http://purl.obolibrary.org/obo/UBERON_0001951,epithelium of nasopharynx +14.6522634,UBERON:0002009,http://purl.obolibrary.org/obo/UBERON_0002009,pulmonary nerve plexus +14.6522634,UBERON:0002023,http://purl.obolibrary.org/obo/UBERON_0002023,claustrum of brain +14.6522634,UBERON:0002090,http://purl.obolibrary.org/obo/UBERON_0002090,postcranial axial skeleton +14.6522634,UBERON:0002556,http://purl.obolibrary.org/obo/UBERON_0002556,corticotectal tract +14.6522634,UBERON:0002637,http://purl.obolibrary.org/obo/UBERON_0002637,ventral anterior nucleus of thalamus +14.6522634,UBERON:0003243,http://purl.obolibrary.org/obo/UBERON_0003243,epithelium of cochlear duct +14.6522634,UBERON:0003273,http://purl.obolibrary.org/obo/UBERON_0003273,none +14.6522634,UBERON:0003316,http://purl.obolibrary.org/obo/UBERON_0003316,mesenchyme of yolk sac +14.6522634,UBERON:0003369,http://purl.obolibrary.org/obo/UBERON_0003369,fossa ovalis of heart +14.6522634,UBERON:0003483,http://purl.obolibrary.org/obo/UBERON_0003483,thymus lymphoid tissue +14.6522634,UBERON:0003618,http://purl.obolibrary.org/obo/UBERON_0003618,aorta tunica media +14.6522634,UBERON:0003999,http://purl.obolibrary.org/obo/UBERON_0003999,hyoid bone body +14.6522634,UBERON:0004076,http://purl.obolibrary.org/obo/UBERON_0004076,cerebellum vermis lobule III +14.6522634,UBERON:0004170,http://purl.obolibrary.org/obo/UBERON_0004170,spinal cord ventral commissure +14.6522634,UBERON:0004300,http://purl.obolibrary.org/obo/UBERON_0004300,distal phalanx +14.6522634,UBERON:0004605,http://purl.obolibrary.org/obo/UBERON_0004605,rib 5 +14.6522634,UBERON:0004757,http://purl.obolibrary.org/obo/UBERON_0004757,rectal salt gland +14.6522634,UBERON:0004767,http://purl.obolibrary.org/obo/UBERON_0004767,vomerine tooth +14.6522634,UBERON:0004817,http://purl.obolibrary.org/obo/UBERON_0004817,lacrimal gland epithelium +14.6522634,UBERON:0004868,http://purl.obolibrary.org/obo/UBERON_0004868,tapetum lucidum of camera-type eye +14.6522634,UBERON:0004996,http://purl.obolibrary.org/obo/UBERON_0004996,mucosa of cardia of stomach +14.6522634,UBERON:0005449,http://purl.obolibrary.org/obo/UBERON_0005449,greater sac +14.6522634,UBERON:0005641,http://purl.obolibrary.org/obo/UBERON_0005641,none +14.6522634,UBERON:0006062,http://purl.obolibrary.org/obo/UBERON_0006062,zygapophysis +14.6522634,UBERON:0006092,http://purl.obolibrary.org/obo/UBERON_0006092,cuneus cortex +14.6522634,UBERON:0006303,http://purl.obolibrary.org/obo/UBERON_0006303,tracheal diverticulum +14.6522634,UBERON:0006451,http://purl.obolibrary.org/obo/UBERON_0006451,fourth lumbar spinal cord segment +14.6522634,UBERON:0006457,http://purl.obolibrary.org/obo/UBERON_0006457,first thoracic spinal cord segment +14.6522634,UBERON:0006610,http://purl.obolibrary.org/obo/UBERON_0006610,tunica albuginea +14.6522634,UBERON:0006847,http://purl.obolibrary.org/obo/UBERON_0006847,cerebellar commissure +14.6522634,UBERON:0006864,http://purl.obolibrary.org/obo/UBERON_0006864,distal metaphysis of femur +14.6522634,UBERON:0006923,http://purl.obolibrary.org/obo/UBERON_0006923,vagina squamous epithelium +14.6522634,UBERON:0007613,http://purl.obolibrary.org/obo/UBERON_0007613,extensor digitorum lateralis muscle +14.6522634,UBERON:0007614,http://purl.obolibrary.org/obo/UBERON_0007614,extensor digiti minimi muscle +14.6522634,UBERON:0007687,http://purl.obolibrary.org/obo/UBERON_0007687,kidney field +14.6522634,UBERON:0007838,http://purl.obolibrary.org/obo/UBERON_0007838,spinal cord white commissure +14.6522634,UBERON:0007993,http://purl.obolibrary.org/obo/UBERON_0007993,ulnar sesamoid bone +14.6522634,UBERON:0008878,http://purl.obolibrary.org/obo/UBERON_0008878,palmar part of manus +14.6522634,UBERON:0009200,http://purl.obolibrary.org/obo/UBERON_0009200,limb epidermis +14.6522634,UBERON:0009293,http://purl.obolibrary.org/obo/UBERON_0009293,embryonic frontal process +14.6522634,UBERON:0009671,http://purl.obolibrary.org/obo/UBERON_0009671,nasal fin +14.6522634,UBERON:0010141,http://purl.obolibrary.org/obo/UBERON_0010141,primitive sex cord of indifferent gonad +14.6522634,UBERON:0010388,http://purl.obolibrary.org/obo/UBERON_0010388,proximal segment of rib +14.6522634,UBERON:0010713,http://purl.obolibrary.org/obo/UBERON_0010713,paired fin skeleton +14.6522634,UBERON:0010939,http://purl.obolibrary.org/obo/UBERON_0010939,zygomaticomandibularis muscle +14.6522634,UBERON:0011137,http://purl.obolibrary.org/obo/UBERON_0011137,axial skeletal system +14.6522634,UBERON:0011371,http://purl.obolibrary.org/obo/UBERON_0011371,sternocephalicus muscle +14.6522634,UBERON:0011609,http://purl.obolibrary.org/obo/UBERON_0011609,ceratohyal element +14.6522634,UBERON:0011623,http://purl.obolibrary.org/obo/UBERON_0011623,horn of thyroid cartilage +14.6522634,UBERON:0011945,http://purl.obolibrary.org/obo/UBERON_0011945,luminal layer of epithelium +14.6522634,UBERON:0012352,http://purl.obolibrary.org/obo/UBERON_0012352,mesangial matrix +14.6522634,UBERON:0012648,http://purl.obolibrary.org/obo/UBERON_0012648,ampulla of uterine tube +14.6522634,UBERON:0013512,http://purl.obolibrary.org/obo/UBERON_0013512,row of feathers +14.6522634,UBERON:0013599,http://purl.obolibrary.org/obo/UBERON_0013599,dorsal accessory nucleus of optic tract +14.6522634,UBERON:0013745,http://purl.obolibrary.org/obo/UBERON_0013745,zona intermedia of adrenal gland +14.6522634,UBERON:0014400,http://purl.obolibrary.org/obo/UBERON_0014400,hepatic sinusoidal space +14.6522634,UBERON:0014401,http://purl.obolibrary.org/obo/UBERON_0014401,renal venous blood vessel +14.6522634,UBERON:0014403,http://purl.obolibrary.org/obo/UBERON_0014403,male anatomical structure +14.6522634,UBERON:0014456,http://purl.obolibrary.org/obo/UBERON_0014456,extraperitoneal space +14.6522634,UBERON:0014769,http://purl.obolibrary.org/obo/UBERON_0014769,palpebral vein +14.6522634,UBERON:0014799,http://purl.obolibrary.org/obo/UBERON_0014799,acromiotrapezius muscle +14.6522634,UBERON:0015222,http://purl.obolibrary.org/obo/UBERON_0015222,ventral nasal meatus +14.6522634,UBERON:0015838,http://purl.obolibrary.org/obo/UBERON_0015838,molar dental pulp +14.6522634,UBERON:0016413,http://purl.obolibrary.org/obo/UBERON_0016413,medullary cavity of long bone +14.6522634,UBERON:0018140,http://purl.obolibrary.org/obo/UBERON_0018140,mammary lobe +14.6522634,UBERON:0018233,http://purl.obolibrary.org/obo/UBERON_0018233,gland of Zeis +14.6522634,UBERON:0022260,http://purl.obolibrary.org/obo/UBERON_0022260,radiation of cerebral hemisphere +14.6522634,UBERON:0022264,http://purl.obolibrary.org/obo/UBERON_0022264,optic radiation +14.6522634,UBERON:0022325,http://purl.obolibrary.org/obo/UBERON_0022325,entorhinal cortex layer 5 +14.6522634,UBERON:0022358,http://purl.obolibrary.org/obo/UBERON_0022358,placenta blood vessel +14.6522634,UBERON:0034749,http://purl.obolibrary.org/obo/UBERON_0034749,retrolenticular part of internal capsule +14.6522634,UBERON:2000532,http://purl.obolibrary.org/obo/UBERON_2000532,lateral division +14.6522634,UBERON:2001349,http://purl.obolibrary.org/obo/UBERON_2001349,stratum opticum +14.6522634,UBERON:3010131,http://purl.obolibrary.org/obo/UBERON_3010131,orbital cartilages +14.7576239,CHEBI:127342,http://purl.obolibrary.org/obo/CHEBI_127342,atomoxetine +14.7576239,CHEBI:13534,http://purl.obolibrary.org/obo/CHEBI_13534,acyl-carrier protein +14.7576239,CHEBI:15378,http://purl.obolibrary.org/obo/CHEBI_15378,hydron +14.7576239,CHEBI:16277,http://purl.obolibrary.org/obo/CHEBI_16277,haloacetic acid +14.7576239,CHEBI:16794,http://purl.obolibrary.org/obo/CHEBI_16794,scopolamine +14.7576239,CHEBI:16919,http://purl.obolibrary.org/obo/CHEBI_16919,creatine +14.7576239,CHEBI:17203,http://purl.obolibrary.org/obo/CHEBI_17203,L-proline +14.7576239,CHEBI:17230,http://purl.obolibrary.org/obo/CHEBI_17230,homocysteine +14.7576239,CHEBI:17362,http://purl.obolibrary.org/obo/CHEBI_17362,quinoline +14.7576239,CHEBI:17549,http://purl.obolibrary.org/obo/CHEBI_17549,5-aminolevulinic acid +14.7576239,CHEBI:18021,http://purl.obolibrary.org/obo/CHEBI_18021,phosphoenolpyruvate +14.7576239,CHEBI:18422,http://purl.obolibrary.org/obo/CHEBI_18422,sulfur dioxide +14.7576239,CHEBI:21655,http://purl.obolibrary.org/obo/CHEBI_21655,N-acylgalactosamine +14.7576239,CHEBI:22324,http://purl.obolibrary.org/obo/CHEBI_22324,alkyl phosphate +14.7576239,CHEBI:22798,http://purl.obolibrary.org/obo/CHEBI_22798,beta-D-glucoside +14.7576239,CHEBI:23128,http://purl.obolibrary.org/obo/CHEBI_23128,chloroalkane +14.7576239,CHEBI:24298,http://purl.obolibrary.org/obo/CHEBI_24298,glucuronic acid +14.7576239,CHEBI:24631,http://purl.obolibrary.org/obo/CHEBI_24631,hydrazines +14.7576239,CHEBI:24636,http://purl.obolibrary.org/obo/CHEBI_24636,proton +14.7576239,CHEBI:24897,http://purl.obolibrary.org/obo/CHEBI_24897,isoindoles +14.7576239,CHEBI:24943,http://purl.obolibrary.org/obo/CHEBI_24943,juvenile hormone +14.7576239,CHEBI:25513,http://purl.obolibrary.org/obo/CHEBI_25513,neutral glycosphingolipid +14.7576239,CHEBI:26761,http://purl.obolibrary.org/obo/CHEBI_26761,steroid antibiotic +14.7576239,CHEBI:26841,http://purl.obolibrary.org/obo/CHEBI_26841,synthetic auxin +14.7576239,CHEBI:27013,http://purl.obolibrary.org/obo/CHEBI_27013,tocopherol +14.7576239,CHEBI:29988,http://purl.obolibrary.org/obo/CHEBI_29988,L-glutamate(2-) +14.7576239,CHEBI:32816,http://purl.obolibrary.org/obo/CHEBI_32816,pyruvic acid +14.7576239,CHEBI:32862,http://purl.obolibrary.org/obo/CHEBI_32862,L-prolinate +14.7576239,CHEBI:33101,http://purl.obolibrary.org/obo/CHEBI_33101,nitrogen dioxide +14.7576239,CHEBI:33184,http://purl.obolibrary.org/obo/CHEBI_33184,long-chain fatty acyl-CoA +14.7576239,CHEBI:33234,http://purl.obolibrary.org/obo/CHEBI_33234,vitamin E +14.7576239,CHEBI:33252,http://purl.obolibrary.org/obo/CHEBI_33252,atomic nucleus +14.7576239,CHEBI:33298,http://purl.obolibrary.org/obo/CHEBI_33298,lithium molecular entity +14.7576239,CHEBI:34921,http://purl.obolibrary.org/obo/CHEBI_34921,phthalocyanine +14.7576239,CHEBI:35191,http://purl.obolibrary.org/obo/CHEBI_35191,triterpene +14.7576239,CHEBI:35478,http://purl.obolibrary.org/obo/CHEBI_35478,lithium salt +14.7576239,CHEBI:35931,http://purl.obolibrary.org/obo/CHEBI_35931,delta-amino acid +14.7576239,CHEBI:35950,http://purl.obolibrary.org/obo/CHEBI_35950,4-oxo monocarboxylic acid +14.7576239,CHEBI:36563,http://purl.obolibrary.org/obo/CHEBI_36563,zinc group coordination entity +14.7576239,CHEBI:36566,http://purl.obolibrary.org/obo/CHEBI_36566,zinc coordination entity +14.7576239,CHEBI:36757,http://purl.obolibrary.org/obo/CHEBI_36757,farnesane sesquiterpenoid +14.7576239,CHEBI:36981,http://purl.obolibrary.org/obo/CHEBI_36981,flavin nucleotide +14.7576239,CHEBI:38016,http://purl.obolibrary.org/obo/CHEBI_38016,ethanolamine sulfate salt +14.7576239,CHEBI:38196,http://purl.obolibrary.org/obo/CHEBI_38196,hydroxymethylpyridine +14.7576239,CHEBI:38207,http://purl.obolibrary.org/obo/CHEBI_38207,aminopyridine +14.7576239,CHEBI:38551,http://purl.obolibrary.org/obo/CHEBI_38551,cytochrome b +14.7576239,CHEBI:38757,http://purl.obolibrary.org/obo/CHEBI_38757,isoflavones +14.7576239,CHEBI:39208,http://purl.obolibrary.org/obo/CHEBI_39208,antibiotic insecticide +14.7576239,CHEBI:39279,http://purl.obolibrary.org/obo/CHEBI_39279,halomethane +14.7576239,CHEBI:39437,http://purl.obolibrary.org/obo/CHEBI_39437,tocol +14.7576239,CHEBI:46714,http://purl.obolibrary.org/obo/CHEBI_46714,halide mineral +14.7576239,CHEBI:46718,http://purl.obolibrary.org/obo/CHEBI_46718,sulfide salt +14.7576239,CHEBI:46848,http://purl.obolibrary.org/obo/CHEBI_46848,N-arylpiperazine +14.7576239,CHEBI:472552,http://purl.obolibrary.org/obo/CHEBI_472552,5-bromo-2'-deoxyuridine +14.7576239,CHEBI:51245,http://purl.obolibrary.org/obo/CHEBI_51245,phenanthridines +14.7576239,CHEBI:51454,http://purl.obolibrary.org/obo/CHEBI_51454,cyclopropanes +14.7576239,CHEBI:53091,http://purl.obolibrary.org/obo/CHEBI_53091,carbodiimide +14.7576239,CHEBI:53559,http://purl.obolibrary.org/obo/CHEBI_53559,topoisomerase IV inhibitor +14.7576239,CHEBI:5778,http://purl.obolibrary.org/obo/CHEBI_5778,hydrochlorothiazide +14.7576239,CHEBI:60736,http://purl.obolibrary.org/obo/CHEBI_60736,poly(caprolactone) polymer +14.7576239,CHEBI:60882,http://purl.obolibrary.org/obo/CHEBI_60882,poly(acrylamide) polymer +14.7576239,CHEBI:60980,http://purl.obolibrary.org/obo/CHEBI_60980,beta-glucoside +14.7576239,CHEBI:61050,http://purl.obolibrary.org/obo/CHEBI_61050,alkyl hydroperoxide +14.7576239,CHEBI:62941,http://purl.obolibrary.org/obo/CHEBI_62941,glycosylceramide +14.7576239,CHEBI:65256,http://purl.obolibrary.org/obo/CHEBI_65256,antimicrobial food preservative +14.7576239,CHEBI:66924,http://purl.obolibrary.org/obo/CHEBI_66924,creatinate +14.7576239,CHEBI:66952,http://purl.obolibrary.org/obo/CHEBI_66952,homocysteinate +14.7576239,CHEBI:73623,http://purl.obolibrary.org/obo/CHEBI_73623,tolerogen +14.7576239,CHEBI:74222,http://purl.obolibrary.org/obo/CHEBI_74222,gamma-lactam +14.7576239,CHEBI:75414,http://purl.obolibrary.org/obo/CHEBI_75414,platelet-activating factor receptor agonist +14.7576239,CHEBI:77973,http://purl.obolibrary.org/obo/CHEBI_77973,antifoaming agent +14.7576239,CHEBI:81639,http://purl.obolibrary.org/obo/CHEBI_81639,Core protein +14.7576239,CHEBI:8642,http://purl.obolibrary.org/obo/CHEBI_8642,puromycin dihydrochloride +14.7576239,CHEBI:9648,http://purl.obolibrary.org/obo/CHEBI_9648,tramadol +14.7576239,CHEBI:9908,http://purl.obolibrary.org/obo/CHEBI_9908,ursolic acid +14.7576239,CL:0000041,http://purl.obolibrary.org/obo/CL_0000041,mature eosinophil +14.7576239,CL:0000514,http://purl.obolibrary.org/obo/CL_0000514,smooth muscle myoblast +14.7576239,CL:0000722,http://purl.obolibrary.org/obo/CL_0000722,cystoblast +14.7576239,CL:0000729,http://purl.obolibrary.org/obo/CL_0000729,tertiary pigment cell +14.7576239,CL:0000938,http://purl.obolibrary.org/obo/CL_0000938,"CD16-negative, CD56-bright natural killer cell, human" +14.7576239,CL:0000957,http://purl.obolibrary.org/obo/CL_0000957,large pre-B-II cell +14.7576239,CL:0002581,http://purl.obolibrary.org/obo/CL_0002581,perirenal preadipocyte +14.7576239,CL:0007006,http://purl.obolibrary.org/obo/CL_0007006,chordamesodermal cell +14.7576239,DRUGBANK:DB00070,http://purl.obolibrary.org/obo/DRUGBANK_DB00070,none +14.7576239,DRUGBANK:DB00942,http://purl.obolibrary.org/obo/DRUGBANK_DB00942,none +14.7576239,DRUGBANK:DB01510,http://purl.obolibrary.org/obo/DRUGBANK_DB01510,none +14.7576239,DRUGBANK:DB01516,http://purl.obolibrary.org/obo/DRUGBANK_DB01516,none +14.7576239,DRUGBANK:DB01846,http://purl.obolibrary.org/obo/DRUGBANK_DB01846,none +14.7576239,DRUGBANK:DB01936,http://purl.obolibrary.org/obo/DRUGBANK_DB01936,none +14.7576239,DRUGBANK:DB02030,http://purl.obolibrary.org/obo/DRUGBANK_DB02030,none +14.7576239,DRUGBANK:DB02668,http://purl.obolibrary.org/obo/DRUGBANK_DB02668,none +14.7576239,DRUGBANK:DB02756,http://purl.obolibrary.org/obo/DRUGBANK_DB02756,none +14.7576239,DRUGBANK:DB02865,http://purl.obolibrary.org/obo/DRUGBANK_DB02865,none +14.7576239,DRUGBANK:DB03003,http://purl.obolibrary.org/obo/DRUGBANK_DB03003,none +14.7576239,DRUGBANK:DB03169,http://purl.obolibrary.org/obo/DRUGBANK_DB03169,none +14.7576239,DRUGBANK:DB03171,http://purl.obolibrary.org/obo/DRUGBANK_DB03171,none +14.7576239,DRUGBANK:DB03189,http://purl.obolibrary.org/obo/DRUGBANK_DB03189,none +14.7576239,DRUGBANK:DB03383,http://purl.obolibrary.org/obo/DRUGBANK_DB03383,none +14.7576239,DRUGBANK:DB03506,http://purl.obolibrary.org/obo/DRUGBANK_DB03506,none +14.7576239,DRUGBANK:DB03616,http://purl.obolibrary.org/obo/DRUGBANK_DB03616,none +14.7576239,DRUGBANK:DB04036,http://purl.obolibrary.org/obo/DRUGBANK_DB04036,none +14.7576239,DRUGBANK:DB04122,http://purl.obolibrary.org/obo/DRUGBANK_DB04122,none +14.7576239,DRUGBANK:DB04304,http://purl.obolibrary.org/obo/DRUGBANK_DB04304,none +14.7576239,DRUGBANK:DB04382,http://purl.obolibrary.org/obo/DRUGBANK_DB04382,none +14.7576239,DRUGBANK:DB04409,http://purl.obolibrary.org/obo/DRUGBANK_DB04409,none +14.7576239,DRUGBANK:DB04863,http://purl.obolibrary.org/obo/DRUGBANK_DB04863,none +14.7576239,DRUGBANK:DB04887,http://purl.obolibrary.org/obo/DRUGBANK_DB04887,none +14.7576239,DRUGBANK:DB04956,http://purl.obolibrary.org/obo/DRUGBANK_DB04956,none +14.7576239,DRUGBANK:DB04973,http://purl.obolibrary.org/obo/DRUGBANK_DB04973,none +14.7576239,DRUGBANK:DB05253,http://purl.obolibrary.org/obo/DRUGBANK_DB05253,none +14.7576239,DRUGBANK:DB05290,http://purl.obolibrary.org/obo/DRUGBANK_DB05290,none +14.7576239,DRUGBANK:DB05353,http://purl.obolibrary.org/obo/DRUGBANK_DB05353,none +14.7576239,DRUGBANK:DB05380,http://purl.obolibrary.org/obo/DRUGBANK_DB05380,none +14.7576239,DRUGBANK:DB05592,http://purl.obolibrary.org/obo/DRUGBANK_DB05592,none +14.7576239,DRUGBANK:DB05739,http://purl.obolibrary.org/obo/DRUGBANK_DB05739,none +14.7576239,DRUGBANK:DB05821,http://purl.obolibrary.org/obo/DRUGBANK_DB05821,none +14.7576239,DRUGBANK:DB05825,http://purl.obolibrary.org/obo/DRUGBANK_DB05825,none +14.7576239,DRUGBANK:DB05934,http://purl.obolibrary.org/obo/DRUGBANK_DB05934,none +14.7576239,DRUGBANK:DB05936,http://purl.obolibrary.org/obo/DRUGBANK_DB05936,none +14.7576239,DRUGBANK:DB06049,http://purl.obolibrary.org/obo/DRUGBANK_DB06049,none +14.7576239,DRUGBANK:DB06077,http://purl.obolibrary.org/obo/DRUGBANK_DB06077,none +14.7576239,DRUGBANK:DB06094,http://purl.obolibrary.org/obo/DRUGBANK_DB06094,none +14.7576239,DRUGBANK:DB06260,http://purl.obolibrary.org/obo/DRUGBANK_DB06260,none +14.7576239,DRUGBANK:DB06472,http://purl.obolibrary.org/obo/DRUGBANK_DB06472,none +14.7576239,DRUGBANK:DB06568,http://purl.obolibrary.org/obo/DRUGBANK_DB06568,none +14.7576239,DRUGBANK:DB06597,http://purl.obolibrary.org/obo/DRUGBANK_DB06597,none +14.7576239,DRUGBANK:DB06642,http://purl.obolibrary.org/obo/DRUGBANK_DB06642,none +14.7576239,DRUGBANK:DB06649,http://purl.obolibrary.org/obo/DRUGBANK_DB06649,none +14.7576239,DRUGBANK:DB06920,http://purl.obolibrary.org/obo/DRUGBANK_DB06920,none +14.7576239,DRUGBANK:DB07302,http://purl.obolibrary.org/obo/DRUGBANK_DB07302,none +14.7576239,DRUGBANK:DB07731,http://purl.obolibrary.org/obo/DRUGBANK_DB07731,none +14.7576239,DRUGBANK:DB08084,http://purl.obolibrary.org/obo/DRUGBANK_DB08084,none +14.7576239,DRUGBANK:DB08694,http://purl.obolibrary.org/obo/DRUGBANK_DB08694,none +14.7576239,DRUGBANK:DB08967,http://purl.obolibrary.org/obo/DRUGBANK_DB08967,none +14.7576239,DRUGBANK:DB09108,http://purl.obolibrary.org/obo/DRUGBANK_DB09108,none +14.7576239,DRUGBANK:DB10413,http://purl.obolibrary.org/obo/DRUGBANK_DB10413,none +14.7576239,DRUGBANK:DB10813,http://purl.obolibrary.org/obo/DRUGBANK_DB10813,none +14.7576239,DRUGBANK:DB10835,http://purl.obolibrary.org/obo/DRUGBANK_DB10835,none +14.7576239,DRUGBANK:DB10844,http://purl.obolibrary.org/obo/DRUGBANK_DB10844,none +14.7576239,DRUGBANK:DB11051,http://purl.obolibrary.org/obo/DRUGBANK_DB11051,none +14.7576239,DRUGBANK:DB11294,http://purl.obolibrary.org/obo/DRUGBANK_DB11294,none +14.7576239,DRUGBANK:DB11462,http://purl.obolibrary.org/obo/DRUGBANK_DB11462,none +14.7576239,DRUGBANK:DB11513,http://purl.obolibrary.org/obo/DRUGBANK_DB11513,none +14.7576239,DRUGBANK:DB11580,http://purl.obolibrary.org/obo/DRUGBANK_DB11580,none +14.7576239,DRUGBANK:DB11648,http://purl.obolibrary.org/obo/DRUGBANK_DB11648,none +14.7576239,DRUGBANK:DB11745,http://purl.obolibrary.org/obo/DRUGBANK_DB11745,none +14.7576239,DRUGBANK:DB11772,http://purl.obolibrary.org/obo/DRUGBANK_DB11772,none +14.7576239,DRUGBANK:DB11856,http://purl.obolibrary.org/obo/DRUGBANK_DB11856,none +14.7576239,DRUGBANK:DB11857,http://purl.obolibrary.org/obo/DRUGBANK_DB11857,none +14.7576239,DRUGBANK:DB11922,http://purl.obolibrary.org/obo/DRUGBANK_DB11922,none +14.7576239,DRUGBANK:DB12009,http://purl.obolibrary.org/obo/DRUGBANK_DB12009,none +14.7576239,DRUGBANK:DB12077,http://purl.obolibrary.org/obo/DRUGBANK_DB12077,none +14.7576239,DRUGBANK:DB12211,http://purl.obolibrary.org/obo/DRUGBANK_DB12211,none +14.7576239,DRUGBANK:DB12280,http://purl.obolibrary.org/obo/DRUGBANK_DB12280,none +14.7576239,DRUGBANK:DB12286,http://purl.obolibrary.org/obo/DRUGBANK_DB12286,none +14.7576239,DRUGBANK:DB12345,http://purl.obolibrary.org/obo/DRUGBANK_DB12345,none +14.7576239,DRUGBANK:DB12374,http://purl.obolibrary.org/obo/DRUGBANK_DB12374,none +14.7576239,DRUGBANK:DB12530,http://purl.obolibrary.org/obo/DRUGBANK_DB12530,none +14.7576239,DRUGBANK:DB12570,http://purl.obolibrary.org/obo/DRUGBANK_DB12570,none +14.7576239,DRUGBANK:DB12574,http://purl.obolibrary.org/obo/DRUGBANK_DB12574,none +14.7576239,DRUGBANK:DB12594,http://purl.obolibrary.org/obo/DRUGBANK_DB12594,none +14.7576239,DRUGBANK:DB12696,http://purl.obolibrary.org/obo/DRUGBANK_DB12696,none +14.7576239,DRUGBANK:DB12740,http://purl.obolibrary.org/obo/DRUGBANK_DB12740,none +14.7576239,DRUGBANK:DB12876,http://purl.obolibrary.org/obo/DRUGBANK_DB12876,none +14.7576239,DRUGBANK:DB12896,http://purl.obolibrary.org/obo/DRUGBANK_DB12896,none +14.7576239,DRUGBANK:DB12911,http://purl.obolibrary.org/obo/DRUGBANK_DB12911,none +14.7576239,DRUGBANK:DB12974,http://purl.obolibrary.org/obo/DRUGBANK_DB12974,none +14.7576239,DRUGBANK:DB13022,http://purl.obolibrary.org/obo/DRUGBANK_DB13022,none +14.7576239,DRUGBANK:DB13062,http://purl.obolibrary.org/obo/DRUGBANK_DB13062,none +14.7576239,DRUGBANK:DB13175,http://purl.obolibrary.org/obo/DRUGBANK_DB13175,none +14.7576239,DRUGBANK:DB13222,http://purl.obolibrary.org/obo/DRUGBANK_DB13222,none +14.7576239,DRUGBANK:DB13278,http://purl.obolibrary.org/obo/DRUGBANK_DB13278,none +14.7576239,DRUGBANK:DB13444,http://purl.obolibrary.org/obo/DRUGBANK_DB13444,none +14.7576239,DRUGBANK:DB13475,http://purl.obolibrary.org/obo/DRUGBANK_DB13475,none +14.7576239,DRUGBANK:DB13491,http://purl.obolibrary.org/obo/DRUGBANK_DB13491,none +14.7576239,DRUGBANK:DB13607,http://purl.obolibrary.org/obo/DRUGBANK_DB13607,none +14.7576239,DRUGBANK:DB13631,http://purl.obolibrary.org/obo/DRUGBANK_DB13631,none +14.7576239,DRUGBANK:DB13683,http://purl.obolibrary.org/obo/DRUGBANK_DB13683,none +14.7576239,DRUGBANK:DB13768,http://purl.obolibrary.org/obo/DRUGBANK_DB13768,none +14.7576239,DRUGBANK:DB14072,http://purl.obolibrary.org/obo/DRUGBANK_DB14072,none +14.7576239,DRUGBANK:DB14342,http://purl.obolibrary.org/obo/DRUGBANK_DB14342,none +14.7576239,DRUGBANK:DB14630,http://purl.obolibrary.org/obo/DRUGBANK_DB14630,none +14.7576239,DRUGBANK:DB14761,http://purl.obolibrary.org/obo/DRUGBANK_DB14761,none +14.7576239,DRUGBANK:DB14802,http://purl.obolibrary.org/obo/DRUGBANK_DB14802,none +14.7576239,DRUGBANK:DB14856,http://purl.obolibrary.org/obo/DRUGBANK_DB14856,none +14.7576239,DRUGBANK:DB14860,http://purl.obolibrary.org/obo/DRUGBANK_DB14860,none +14.7576239,DRUGBANK:DB14887,http://purl.obolibrary.org/obo/DRUGBANK_DB14887,none +14.7576239,DRUGBANK:DB14922,http://purl.obolibrary.org/obo/DRUGBANK_DB14922,none +14.7576239,DRUGBANK:DB14956,http://purl.obolibrary.org/obo/DRUGBANK_DB14956,none +14.7576239,DRUGBANK:DB14975,http://purl.obolibrary.org/obo/DRUGBANK_DB14975,none +14.7576239,DRUGBANK:DB15002,http://purl.obolibrary.org/obo/DRUGBANK_DB15002,none +14.7576239,DRUGBANK:DB15018,http://purl.obolibrary.org/obo/DRUGBANK_DB15018,none +14.7576239,DRUGBANK:DB15055,http://purl.obolibrary.org/obo/DRUGBANK_DB15055,none +14.7576239,DRUGBANK:DB15206,http://purl.obolibrary.org/obo/DRUGBANK_DB15206,none +14.7576239,DRUGBANK:DB15222,http://purl.obolibrary.org/obo/DRUGBANK_DB15222,none +14.7576239,DRUGBANK:DB15344,http://purl.obolibrary.org/obo/DRUGBANK_DB15344,none +14.7576239,DRUGBANK:DB15499,http://purl.obolibrary.org/obo/DRUGBANK_DB15499,none +14.7576239,DRUGBANK:DB15528,http://purl.obolibrary.org/obo/DRUGBANK_DB15528,none +14.7576239,DRUGBANK:DB15795,http://purl.obolibrary.org/obo/DRUGBANK_DB15795,none +14.7576239,DRUGBANK:DB15821,http://purl.obolibrary.org/obo/DRUGBANK_DB15821,none +14.7576239,DRUGBANK:DB15860,http://purl.obolibrary.org/obo/DRUGBANK_DB15860,none +14.7576239,DRUGBANK:DB16106,http://purl.obolibrary.org/obo/DRUGBANK_DB16106,none +14.7576239,DRUGBANK:DB16118,http://purl.obolibrary.org/obo/DRUGBANK_DB16118,none +14.7576239,DRUGBANK:DB16129,http://purl.obolibrary.org/obo/DRUGBANK_DB16129,none +14.7576239,DRUGBANK:DB16190,http://purl.obolibrary.org/obo/DRUGBANK_DB16190,none +14.7576239,GO:0000125,http://purl.obolibrary.org/obo/GO_0000125,none +14.7576239,GO:0000309,http://purl.obolibrary.org/obo/GO_0000309,nicotinamide-nucleotide adenylyltransferase activity +14.7576239,GO:0000729,http://purl.obolibrary.org/obo/GO_0000729,DNA double-strand break processing +14.7576239,GO:0000800,http://purl.obolibrary.org/obo/GO_0000800,lateral element +14.7576239,GO:0001061,http://purl.obolibrary.org/obo/GO_0001061,none +14.7576239,GO:0001302,http://purl.obolibrary.org/obo/GO_0001302,none +14.7576239,GO:0002236,http://purl.obolibrary.org/obo/GO_0002236,detection of misfolded protein +14.7576239,GO:0002268,http://purl.obolibrary.org/obo/GO_0002268,follicular dendritic cell differentiation +14.7576239,GO:0002330,http://purl.obolibrary.org/obo/GO_0002330,pre-B cell receptor expression +14.7576239,GO:0002507,http://purl.obolibrary.org/obo/GO_0002507,tolerance induction +14.7576239,GO:0002553,http://purl.obolibrary.org/obo/GO_0002553,histamine secretion by mast cell +14.7576239,GO:0002577,http://purl.obolibrary.org/obo/GO_0002577,regulation of antigen processing and presentation +14.7576239,GO:0002724,http://purl.obolibrary.org/obo/GO_0002724,regulation of T cell cytokine production +14.7576239,GO:0002756,http://purl.obolibrary.org/obo/GO_0002756,MyD88-independent toll-like receptor signaling pathway +14.7576239,GO:0003181,http://purl.obolibrary.org/obo/GO_0003181,atrioventricular valve morphogenesis +14.7576239,GO:0003404,http://purl.obolibrary.org/obo/GO_0003404,optic vesicle morphogenesis +14.7576239,GO:0003746,http://purl.obolibrary.org/obo/GO_0003746,translation elongation factor activity +14.7576239,GO:0003837,http://purl.obolibrary.org/obo/GO_0003837,beta-ureidopropionase activity +14.7576239,GO:0003874,http://purl.obolibrary.org/obo/GO_0003874,6-pyruvoyltetrahydropterin synthase activity +14.7576239,GO:0003947,http://purl.obolibrary.org/obo/GO_0003947,(N-acetylneuraminyl)-galactosylglucosylceramide N-acetylgalactosaminyltransferase activity +14.7576239,GO:0004449,http://purl.obolibrary.org/obo/GO_0004449,isocitrate dehydrogenase (NAD+) activity +14.7576239,GO:0004575,http://purl.obolibrary.org/obo/GO_0004575,sucrose alpha-glucosidase activity +14.7576239,GO:0004756,http://purl.obolibrary.org/obo/GO_0004756,"selenide, water dikinase activity" +14.7576239,GO:0004789,http://purl.obolibrary.org/obo/GO_0004789,thiamine-phosphate diphosphorylase activity +14.7576239,GO:0004793,http://purl.obolibrary.org/obo/GO_0004793,threonine aldolase activity +14.7576239,GO:0005078,http://purl.obolibrary.org/obo/GO_0005078,MAP-kinase scaffold activity +14.7576239,GO:0005198,http://purl.obolibrary.org/obo/GO_0005198,structural molecule activity +14.7576239,GO:0005850,http://purl.obolibrary.org/obo/GO_0005850,eukaryotic translation initiation factor 2 complex +14.7576239,GO:0005994,http://purl.obolibrary.org/obo/GO_0005994,melibiose metabolic process +14.7576239,GO:0006014,http://purl.obolibrary.org/obo/GO_0006014,D-ribose metabolic process +14.7576239,GO:0006072,http://purl.obolibrary.org/obo/GO_0006072,glycerol-3-phosphate metabolic process +14.7576239,GO:0006230,http://purl.obolibrary.org/obo/GO_0006230,TMP biosynthetic process +14.7576239,GO:0006363,http://purl.obolibrary.org/obo/GO_0006363,termination of RNA polymerase I transcription +14.7576239,GO:0006488,http://purl.obolibrary.org/obo/GO_0006488,dolichol-linked oligosaccharide biosynthetic process +14.7576239,GO:0006490,http://purl.obolibrary.org/obo/GO_0006490,oligosaccharide-lipid intermediate biosynthetic process +14.7576239,GO:0006727,http://purl.obolibrary.org/obo/GO_0006727,ommochrome biosynthetic process +14.7576239,GO:0006827,http://purl.obolibrary.org/obo/GO_0006827,none +14.7576239,GO:0007254,http://purl.obolibrary.org/obo/GO_0007254,JNK cascade +14.7576239,GO:0007528,http://purl.obolibrary.org/obo/GO_0007528,neuromuscular junction development +14.7576239,GO:0007554,http://purl.obolibrary.org/obo/GO_0007554,regulation of ecdysteroid biosynthetic process +14.7576239,GO:0007628,http://purl.obolibrary.org/obo/GO_0007628,adult walking behavior +14.7576239,GO:0007633,http://purl.obolibrary.org/obo/GO_0007633,pattern orientation +14.7576239,GO:0007637,http://purl.obolibrary.org/obo/GO_0007637,proboscis extension reflex +14.7576239,GO:0008055,http://purl.obolibrary.org/obo/GO_0008055,ocellus pigment biosynthetic process +14.7576239,GO:0008115,http://purl.obolibrary.org/obo/GO_0008115,sarcosine oxidase activity +14.7576239,GO:0008333,http://purl.obolibrary.org/obo/GO_0008333,endosome to lysosome transport +14.7576239,GO:0008349,http://purl.obolibrary.org/obo/GO_0008349,MAP kinase kinase kinase kinase activity +14.7576239,GO:0008449,http://purl.obolibrary.org/obo/GO_0008449,N-acetylglucosamine-6-sulfatase activity +14.7576239,GO:0008467,http://purl.obolibrary.org/obo/GO_0008467,[heparan sulfate]-glucosamine 3-sulfotransferase 1 activity +14.7576239,GO:0008475,http://purl.obolibrary.org/obo/GO_0008475,procollagen-lysine 5-dioxygenase activity +14.7576239,GO:0008519,http://purl.obolibrary.org/obo/GO_0008519,ammonium transmembrane transporter activity +14.7576239,GO:0008737,http://purl.obolibrary.org/obo/GO_0008737,L-fuculokinase activity +14.7576239,GO:0008756,http://purl.obolibrary.org/obo/GO_0008756,o-succinylbenzoate-CoA ligase activity +14.7576239,GO:0008771,http://purl.obolibrary.org/obo/GO_0008771,[citrate (pro-3S)-lyase] ligase activity +14.7576239,GO:0008784,http://purl.obolibrary.org/obo/GO_0008784,alanine racemase activity +14.7576239,GO:0008820,http://purl.obolibrary.org/obo/GO_0008820,cobinamide phosphate guanylyltransferase activity +14.7576239,GO:0008903,http://purl.obolibrary.org/obo/GO_0008903,hydroxypyruvate isomerase activity +14.7576239,GO:0008909,http://purl.obolibrary.org/obo/GO_0008909,isochorismate synthase activity +14.7576239,GO:0008913,http://purl.obolibrary.org/obo/GO_0008913,lauroyltransferase activity +14.7576239,GO:0008929,http://purl.obolibrary.org/obo/GO_0008929,methylglyoxal synthase activity +14.7576239,GO:0008961,http://purl.obolibrary.org/obo/GO_0008961,phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity +14.7576239,GO:0008963,http://purl.obolibrary.org/obo/GO_0008963,phospho-N-acetylmuramoyl-pentapeptide-transferase activity +14.7576239,GO:0008968,http://purl.obolibrary.org/obo/GO_0008968,D-sedoheptulose 7-phosphate isomerase activity +14.7576239,GO:0009018,http://purl.obolibrary.org/obo/GO_0009018,sucrose phosphorylase activity +14.7576239,GO:0009087,http://purl.obolibrary.org/obo/GO_0009087,methionine catabolic process +14.7576239,GO:0009139,http://purl.obolibrary.org/obo/GO_0009139,pyrimidine nucleoside diphosphate biosynthetic process +14.7576239,GO:0009194,http://purl.obolibrary.org/obo/GO_0009194,pyrimidine ribonucleoside diphosphate biosynthetic process +14.7576239,GO:0009397,http://purl.obolibrary.org/obo/GO_0009397,folic acid-containing compound catabolic process +14.7576239,GO:0009523,http://purl.obolibrary.org/obo/GO_0009523,photosystem II +14.7576239,GO:0009783,http://purl.obolibrary.org/obo/GO_0009783,photosystem II antenna complex +14.7576239,GO:0009922,http://purl.obolibrary.org/obo/GO_0009922,fatty acid elongase activity +14.7576239,GO:0010101,http://purl.obolibrary.org/obo/GO_0010101,post-embryonic root morphogenesis +14.7576239,GO:0010102,http://purl.obolibrary.org/obo/GO_0010102,lateral root morphogenesis +14.7576239,GO:0010132,http://purl.obolibrary.org/obo/GO_0010132,dhurrin biosynthetic process +14.7576239,GO:0010214,http://purl.obolibrary.org/obo/GO_0010214,seed coat development +14.7576239,GO:0010260,http://purl.obolibrary.org/obo/GO_0010260,animal organ senescence +14.7576239,GO:0010574,http://purl.obolibrary.org/obo/GO_0010574,regulation of vascular endothelial growth factor production +14.7576239,GO:0010585,http://purl.obolibrary.org/obo/GO_0010585,glutamine secretion +14.7576239,GO:0010829,http://purl.obolibrary.org/obo/GO_0010829,negative regulation of glucose transmembrane transport +14.7576239,GO:0015065,http://purl.obolibrary.org/obo/GO_0015065,none +14.7576239,GO:0015105,http://purl.obolibrary.org/obo/GO_0015105,arsenite transmembrane transporter activity +14.7576239,GO:0015155,http://purl.obolibrary.org/obo/GO_0015155,lactose transmembrane transporter activity +14.7576239,GO:0015683,http://purl.obolibrary.org/obo/GO_0015683,none +14.7576239,GO:0015709,http://purl.obolibrary.org/obo/GO_0015709,thiosulfate transport +14.7576239,GO:0015729,http://purl.obolibrary.org/obo/GO_0015729,oxaloacetate transport +14.7576239,GO:0015736,http://purl.obolibrary.org/obo/GO_0015736,hexuronate transmembrane transport +14.7576239,GO:0015773,http://purl.obolibrary.org/obo/GO_0015773,raffinose transport +14.7576239,GO:0016074,http://purl.obolibrary.org/obo/GO_0016074,sno(s)RNA metabolic process +14.7576239,GO:0016768,http://purl.obolibrary.org/obo/GO_0016768,spermine synthase activity +14.7576239,GO:0017004,http://purl.obolibrary.org/obo/GO_0017004,cytochrome complex assembly +14.7576239,GO:0018467,http://purl.obolibrary.org/obo/GO_0018467,formaldehyde dehydrogenase activity +14.7576239,GO:0018576,http://purl.obolibrary.org/obo/GO_0018576,"catechol 1,2-dioxygenase activity" +14.7576239,GO:0018744,http://purl.obolibrary.org/obo/GO_0018744,"limonene-1,2-epoxide hydrolase activity" +14.7576239,GO:0018774,http://purl.obolibrary.org/obo/GO_0018774,"2,6-dioxo-6-phenylhexa-3-enoate hydrolase activity" +14.7576239,GO:0018860,http://purl.obolibrary.org/obo/GO_0018860,anthranilate-CoA ligase activity +14.7576239,GO:0018862,http://purl.obolibrary.org/obo/GO_0018862,phenylphosphate carboxylase activity +14.7576239,GO:0018915,http://purl.obolibrary.org/obo/GO_0018915,ethylbenzene metabolic process +14.7576239,GO:0018920,http://purl.obolibrary.org/obo/GO_0018920,glyphosate metabolic process +14.7576239,GO:0019046,http://purl.obolibrary.org/obo/GO_0019046,release from viral latency +14.7576239,GO:0019178,http://purl.obolibrary.org/obo/GO_0019178,NADP phosphatase activity +14.7576239,GO:0019365,http://purl.obolibrary.org/obo/GO_0019365,pyridine nucleotide salvage +14.7576239,GO:0019543,http://purl.obolibrary.org/obo/GO_0019543,propionate catabolic process +14.7576239,GO:0019586,http://purl.obolibrary.org/obo/GO_0019586,galacturonate metabolic process +14.7576239,GO:0019614,http://purl.obolibrary.org/obo/GO_0019614,catechol-containing compound catabolic process +14.7576239,GO:0019785,http://purl.obolibrary.org/obo/GO_0019785,ISG15-specific protease activity +14.7576239,GO:0019899,http://purl.obolibrary.org/obo/GO_0019899,enzyme binding +14.7576239,GO:0019900,http://purl.obolibrary.org/obo/GO_0019900,kinase binding +14.7576239,GO:0021545,http://purl.obolibrary.org/obo/GO_0021545,cranial nerve development +14.7576239,GO:0021879,http://purl.obolibrary.org/obo/GO_0021879,forebrain neuron differentiation +14.7576239,GO:0021954,http://purl.obolibrary.org/obo/GO_0021954,central nervous system neuron development +14.7576239,GO:0030341,http://purl.obolibrary.org/obo/GO_0030341,chondroitin AC lyase activity +14.7576239,GO:0030342,http://purl.obolibrary.org/obo/GO_0030342,"1-alpha,25-dihydroxyvitamin D3 24-hydroxylase activity" +14.7576239,GO:0030526,http://purl.obolibrary.org/obo/GO_0030526,granulocyte macrophage colony-stimulating factor receptor complex +14.7576239,GO:0030603,http://purl.obolibrary.org/obo/GO_0030603,oxaloacetase activity +14.7576239,GO:0030614,http://purl.obolibrary.org/obo/GO_0030614,"oxidoreductase activity, acting on phosphorus or arsenic in donors, disulfide as acceptor" +14.7576239,GO:0030682,http://purl.obolibrary.org/obo/GO_0030682,mitigation of host defenses by symbiont +14.7576239,GO:0030697,http://purl.obolibrary.org/obo/GO_0030697,S-adenosylmethionine-dependent tRNA (m5U54) methyltransferase activity +14.7576239,GO:0030703,http://purl.obolibrary.org/obo/GO_0030703,eggshell formation +14.7576239,GO:0031017,http://purl.obolibrary.org/obo/GO_0031017,exocrine pancreas development +14.7576239,GO:0031028,http://purl.obolibrary.org/obo/GO_0031028,septation initiation signaling +14.7576239,GO:0031282,http://purl.obolibrary.org/obo/GO_0031282,regulation of guanylate cyclase activity +14.7576239,GO:0031425,http://purl.obolibrary.org/obo/GO_0031425,chloroplast RNA processing +14.7576239,GO:0031440,http://purl.obolibrary.org/obo/GO_0031440,regulation of mRNA 3'-end processing +14.7576239,GO:0031524,http://purl.obolibrary.org/obo/GO_0031524,menthol metabolic process +14.7576239,GO:0031663,http://purl.obolibrary.org/obo/GO_0031663,lipopolysaccharide-mediated signaling pathway +14.7576239,GO:0031991,http://purl.obolibrary.org/obo/GO_0031991,regulation of actomyosin contractile ring contraction +14.7576239,GO:0031998,http://purl.obolibrary.org/obo/GO_0031998,regulation of fatty acid beta-oxidation +14.7576239,GO:0032021,http://purl.obolibrary.org/obo/GO_0032021,NELF complex +14.7576239,GO:0032046,http://purl.obolibrary.org/obo/GO_0032046,micropexophagy-specific membrane apparatus +14.7576239,GO:0032127,http://purl.obolibrary.org/obo/GO_0032127,dense core granule membrane +14.7576239,GO:0032369,http://purl.obolibrary.org/obo/GO_0032369,negative regulation of lipid transport +14.7576239,GO:0032444,http://purl.obolibrary.org/obo/GO_0032444,activin responsive factor complex +14.7576239,GO:0032480,http://purl.obolibrary.org/obo/GO_0032480,negative regulation of type I interferon production +14.7576239,GO:0032645,http://purl.obolibrary.org/obo/GO_0032645,regulation of granulocyte macrophage colony-stimulating factor production +14.7576239,GO:0032656,http://purl.obolibrary.org/obo/GO_0032656,regulation of interleukin-13 production +14.7576239,GO:0032666,http://purl.obolibrary.org/obo/GO_0032666,regulation of interleukin-22 production +14.7576239,GO:0032817,http://purl.obolibrary.org/obo/GO_0032817,regulation of natural killer cell proliferation +14.7576239,GO:0032899,http://purl.obolibrary.org/obo/GO_0032899,regulation of neurotrophin production +14.7576239,GO:0032947,http://purl.obolibrary.org/obo/GO_0032947,none +14.7576239,GO:0032954,http://purl.obolibrary.org/obo/GO_0032954,regulation of cytokinetic process +14.7576239,GO:0033009,http://purl.obolibrary.org/obo/GO_0033009,nucleomorph +14.7576239,GO:0033016,http://purl.obolibrary.org/obo/GO_0033016,rhoptry membrane +14.7576239,GO:0033553,http://purl.obolibrary.org/obo/GO_0033553,rDNA heterochromatin +14.7576239,GO:0033773,http://purl.obolibrary.org/obo/GO_0033773,isoflavone 2'-hydroxylase activity +14.7576239,GO:0033792,http://purl.obolibrary.org/obo/GO_0033792,bile-acid 7alpha-dehydroxylase activity +14.7576239,GO:0033819,http://purl.obolibrary.org/obo/GO_0033819,lipoyl(octanoyl) transferase activity +14.7576239,GO:0033821,http://purl.obolibrary.org/obo/GO_0033821,DNA beta-glucosyltransferase activity +14.7576239,GO:0033858,http://purl.obolibrary.org/obo/GO_0033858,N-acetylgalactosamine kinase activity +14.7576239,GO:0033982,http://purl.obolibrary.org/obo/GO_0033982,3-dehydro-L-gulonate-6-phosphate decarboxylase activity +14.7576239,GO:0033996,http://purl.obolibrary.org/obo/GO_0033996,levan fructotransferase (DFA-IV-forming) activity +14.7576239,GO:0034044,http://purl.obolibrary.org/obo/GO_0034044,exomer complex +14.7576239,GO:0034229,http://purl.obolibrary.org/obo/GO_0034229,ethanolamine transport +14.7576239,GO:0034545,http://purl.obolibrary.org/obo/GO_0034545,fumarylpyruvate hydrolase activity +14.7576239,GO:0034598,http://purl.obolibrary.org/obo/GO_0034598,phosphothreonine lyase activity +14.7576239,GO:0034661,http://purl.obolibrary.org/obo/GO_0034661,ncRNA catabolic process +14.7576239,GO:0034668,http://purl.obolibrary.org/obo/GO_0034668,integrin alpha4-beta1 complex +14.7576239,GO:0035577,http://purl.obolibrary.org/obo/GO_0035577,azurophil granule membrane +14.7576239,GO:0035632,http://purl.obolibrary.org/obo/GO_0035632,mitochondrial prohibitin complex +14.7576239,GO:0035743,http://purl.obolibrary.org/obo/GO_0035743,"CD4-positive, alpha-beta T cell cytokine production" +14.7576239,GO:0036125,http://purl.obolibrary.org/obo/GO_0036125,fatty acid beta-oxidation multienzyme complex +14.7576239,GO:0036301,http://purl.obolibrary.org/obo/GO_0036301,macrophage colony-stimulating factor production +14.7576239,GO:0038157,http://purl.obolibrary.org/obo/GO_0038157,granulocyte-macrophage colony-stimulating factor signaling pathway +14.7576239,GO:0038170,http://purl.obolibrary.org/obo/GO_0038170,somatostatin signaling pathway +14.7576239,GO:0038172,http://purl.obolibrary.org/obo/GO_0038172,interleukin-33-mediated signaling pathway +14.7576239,GO:0042420,http://purl.obolibrary.org/obo/GO_0042420,dopamine catabolic process +14.7576239,GO:0042424,http://purl.obolibrary.org/obo/GO_0042424,catecholamine catabolic process +14.7576239,GO:0042443,http://purl.obolibrary.org/obo/GO_0042443,phenylethylamine metabolic process +14.7576239,GO:0042560,http://purl.obolibrary.org/obo/GO_0042560,pteridine-containing compound catabolic process +14.7576239,GO:0042688,http://purl.obolibrary.org/obo/GO_0042688,crystal cell differentiation +14.7576239,GO:0042823,http://purl.obolibrary.org/obo/GO_0042823,pyridoxal phosphate biosynthetic process +14.7576239,GO:0042954,http://purl.obolibrary.org/obo/GO_0042954,none +14.7576239,GO:0042973,http://purl.obolibrary.org/obo/GO_0042973,"glucan endo-1,3-beta-D-glucosidase activity" +14.7576239,GO:0043009,http://purl.obolibrary.org/obo/GO_0043009,chordate embryonic development +14.7576239,GO:0043132,http://purl.obolibrary.org/obo/GO_0043132,NAD transport +14.7576239,GO:0043173,http://purl.obolibrary.org/obo/GO_0043173,nucleotide salvage +14.7576239,GO:0043330,http://purl.obolibrary.org/obo/GO_0043330,response to exogenous dsRNA +14.7576239,GO:0043508,http://purl.obolibrary.org/obo/GO_0043508,negative regulation of JUN kinase activity +14.7576239,GO:0043896,http://purl.obolibrary.org/obo/GO_0043896,"glucan 1,6-alpha-glucosidase activity" +14.7576239,GO:0044001,http://purl.obolibrary.org/obo/GO_0044001,migration in host +14.7576239,GO:0044100,http://purl.obolibrary.org/obo/GO_0044100,sporoplasm +14.7576239,GO:0044284,http://purl.obolibrary.org/obo/GO_0044284,mitochondrial crista junction +14.7576239,GO:0045130,http://purl.obolibrary.org/obo/GO_0045130,keratan sulfotransferase activity +14.7576239,GO:0045175,http://purl.obolibrary.org/obo/GO_0045175,basal protein localization +14.7576239,GO:0045252,http://purl.obolibrary.org/obo/GO_0045252,oxoglutarate dehydrogenase complex +14.7576239,GO:0045342,http://purl.obolibrary.org/obo/GO_0045342,MHC class II biosynthetic process +14.7576239,GO:0045442,http://purl.obolibrary.org/obo/GO_0045442,deacetoxycephalosporin-C hydroxylase activity +14.7576239,GO:0045620,http://purl.obolibrary.org/obo/GO_0045620,negative regulation of lymphocyte differentiation +14.7576239,GO:0045655,http://purl.obolibrary.org/obo/GO_0045655,regulation of monocyte differentiation +14.7576239,GO:0045917,http://purl.obolibrary.org/obo/GO_0045917,positive regulation of complement activation +14.7576239,GO:0045921,http://purl.obolibrary.org/obo/GO_0045921,positive regulation of exocytosis +14.7576239,GO:0046087,http://purl.obolibrary.org/obo/GO_0046087,cytidine metabolic process +14.7576239,GO:0046202,http://purl.obolibrary.org/obo/GO_0046202,cyanide biosynthetic process +14.7576239,GO:0046278,http://purl.obolibrary.org/obo/GO_0046278,"3,4-dihydroxybenzoate metabolic process" +14.7576239,GO:0046300,http://purl.obolibrary.org/obo/GO_0046300,"2,4-dichlorophenoxyacetic acid catabolic process" +14.7576239,GO:0046325,http://purl.obolibrary.org/obo/GO_0046325,negative regulation of glucose import +14.7576239,GO:0046329,http://purl.obolibrary.org/obo/GO_0046329,negative regulation of JNK cascade +14.7576239,GO:0046509,http://purl.obolibrary.org/obo/GO_0046509,"1,2-diacylglycerol 3-beta-galactosyltransferase activity" +14.7576239,GO:0046525,http://purl.obolibrary.org/obo/GO_0046525,xylosylprotein 4-beta-galactosyltransferase activity +14.7576239,GO:0046563,http://purl.obolibrary.org/obo/GO_0046563,methanol oxidase activity +14.7576239,GO:0046657,http://purl.obolibrary.org/obo/GO_0046657,folic acid catabolic process +14.7576239,GO:0046727,http://purl.obolibrary.org/obo/GO_0046727,capsomere +14.7576239,GO:0046910,http://purl.obolibrary.org/obo/GO_0046910,pectinesterase inhibitor activity +14.7576239,GO:0046919,http://purl.obolibrary.org/obo/GO_0046919,pyruvyltransferase activity +14.7576239,GO:0046949,http://purl.obolibrary.org/obo/GO_0046949,fatty-acyl-CoA biosynthetic process +14.7576239,GO:0047172,http://purl.obolibrary.org/obo/GO_0047172,shikimate O-hydroxycinnamoyltransferase activity +14.7576239,GO:0047180,http://purl.obolibrary.org/obo/GO_0047180,salutaridinol 7-O-acetyltransferase activity +14.7576239,GO:0047251,http://purl.obolibrary.org/obo/GO_0047251,thiohydroximate beta-D-glucosyltransferase activity +14.7576239,GO:0047358,http://purl.obolibrary.org/obo/GO_0047358,UDP-glucose-glycoprotein glucose phosphotransferase activity +14.7576239,GO:0047641,http://purl.obolibrary.org/obo/GO_0047641,aldose-6-phosphate reductase (NADPH) activity +14.7576239,GO:0047739,http://purl.obolibrary.org/obo/GO_0047739,cephalosporin-C deacetylase activity +14.7576239,GO:0047869,http://purl.obolibrary.org/obo/GO_0047869,dimethylpropiothetin dethiomethylase activity +14.7576239,GO:0047939,http://purl.obolibrary.org/obo/GO_0047939,L-glucuronate reductase activity +14.7576239,GO:0047958,http://purl.obolibrary.org/obo/GO_0047958,glycine:2-oxoglutarate aminotransferase activity +14.7576239,GO:0047974,http://purl.obolibrary.org/obo/GO_0047974,guanosine deaminase activity +14.7576239,GO:0047991,http://purl.obolibrary.org/obo/GO_0047991,hydroxylamine oxidase activity +14.7576239,GO:0048011,http://purl.obolibrary.org/obo/GO_0048011,neurotrophin TRK receptor signaling pathway +14.7576239,GO:0048014,http://purl.obolibrary.org/obo/GO_0048014,Tie signaling pathway +14.7576239,GO:0048016,http://purl.obolibrary.org/obo/GO_0048016,inositol phosphate-mediated signaling +14.7576239,GO:0048532,http://purl.obolibrary.org/obo/GO_0048532,anatomical structure arrangement +14.7576239,GO:0048548,http://purl.obolibrary.org/obo/GO_0048548,regulation of pinocytosis +14.7576239,GO:0048763,http://purl.obolibrary.org/obo/GO_0048763,calcium-induced calcium release activity +14.7576239,GO:0048764,http://purl.obolibrary.org/obo/GO_0048764,trichoblast maturation +14.7576239,GO:0048765,http://purl.obolibrary.org/obo/GO_0048765,root hair cell differentiation +14.7576239,GO:0048851,http://purl.obolibrary.org/obo/GO_0048851,hypophysis formation +14.7576239,GO:0050089,http://purl.obolibrary.org/obo/GO_0050089,mannose isomerase activity +14.7576239,GO:0050091,http://purl.obolibrary.org/obo/GO_0050091,melilotate 3-monooxygenase activity +14.7576239,GO:0050228,http://purl.obolibrary.org/obo/GO_0050228,pterin deaminase activity +14.7576239,GO:0050236,http://purl.obolibrary.org/obo/GO_0050236,pyridoxine:NADP 4-dehydrogenase activity +14.7576239,GO:0050372,http://purl.obolibrary.org/obo/GO_0050372,ubiquitin-calmodulin ligase activity +14.7576239,GO:0050373,http://purl.obolibrary.org/obo/GO_0050373,UDP-arabinose 4-epimerase activity +14.7576239,GO:0050406,http://purl.obolibrary.org/obo/GO_0050406,[acetyl-CoA carboxylase]-phosphatase activity +14.7576239,GO:0050531,http://purl.obolibrary.org/obo/GO_0050531,mannosyl-3-phosphoglycerate phosphatase activity +14.7576239,GO:0050571,http://purl.obolibrary.org/obo/GO_0050571,"1,5-anhydro-D-fructose reductase activity" +14.7576239,GO:0050577,http://purl.obolibrary.org/obo/GO_0050577,GDP-L-fucose synthase activity +14.7576239,GO:0050594,http://purl.obolibrary.org/obo/GO_0050594,tabersonine 16-hydroxylase activity +14.7576239,GO:0050610,http://purl.obolibrary.org/obo/GO_0050610,methylarsonate reductase activity +14.7576239,GO:0051175,http://purl.obolibrary.org/obo/GO_0051175,negative regulation of sulfur metabolic process +14.7576239,GO:0051351,http://purl.obolibrary.org/obo/GO_0051351,positive regulation of ligase activity +14.7576239,GO:0051470,http://purl.obolibrary.org/obo/GO_0051470,ectoine transport +14.7576239,GO:0051815,http://purl.obolibrary.org/obo/GO_0051815,none +14.7576239,GO:0051919,http://purl.obolibrary.org/obo/GO_0051919,positive regulation of fibrinolysis +14.7576239,GO:0052697,http://purl.obolibrary.org/obo/GO_0052697,xenobiotic glucuronidation +14.7576239,GO:0055078,http://purl.obolibrary.org/obo/GO_0055078,sodium ion homeostasis +14.7576239,GO:0060019,http://purl.obolibrary.org/obo/GO_0060019,radial glial cell differentiation +14.7576239,GO:0060128,http://purl.obolibrary.org/obo/GO_0060128,corticotropin hormone secreting cell differentiation +14.7576239,GO:0060388,http://purl.obolibrary.org/obo/GO_0060388,vitelline envelope +14.7576239,GO:0060757,http://purl.obolibrary.org/obo/GO_0060757,adult foraging behavior +14.7576239,GO:0061383,http://purl.obolibrary.org/obo/GO_0061383,trabecula morphogenesis +14.7576239,GO:0061792,http://purl.obolibrary.org/obo/GO_0061792,secretory granule maturation +14.7576239,GO:0070271,http://purl.obolibrary.org/obo/GO_0070271,none +14.7576239,GO:0070339,http://purl.obolibrary.org/obo/GO_0070339,response to bacterial lipopeptide +14.7576239,GO:0070623,http://purl.obolibrary.org/obo/GO_0070623,regulation of thiamine biosynthetic process +14.7576239,GO:0070815,http://purl.obolibrary.org/obo/GO_0070815,peptidyl-lysine 5-dioxygenase activity +14.7576239,GO:0071352,http://purl.obolibrary.org/obo/GO_0071352,cellular response to interleukin-2 +14.7576239,GO:0071354,http://purl.obolibrary.org/obo/GO_0071354,cellular response to interleukin-6 +14.7576239,GO:0071361,http://purl.obolibrary.org/obo/GO_0071361,cellular response to ethanol +14.7576239,GO:0071436,http://purl.obolibrary.org/obo/GO_0071436,none +14.7576239,GO:0071553,http://purl.obolibrary.org/obo/GO_0071553,G protein-coupled pyrimidinergic nucleotide receptor activity +14.7576239,GO:0071635,http://purl.obolibrary.org/obo/GO_0071635,negative regulation of transforming growth factor beta production +14.7576239,GO:0072189,http://purl.obolibrary.org/obo/GO_0072189,ureter development +14.7576239,GO:0080024,http://purl.obolibrary.org/obo/GO_0080024,indolebutyric acid metabolic process +14.7576239,GO:0080132,http://purl.obolibrary.org/obo/GO_0080132,fatty acid alpha-hydroxylase activity +14.7576239,GO:0080186,http://purl.obolibrary.org/obo/GO_0080186,developmental vegetative growth +14.7576239,GO:0085036,http://purl.obolibrary.org/obo/GO_0085036,extrahaustorial matrix +14.7576239,GO:0090088,http://purl.obolibrary.org/obo/GO_0090088,regulation of oligopeptide transport +14.7576239,GO:0090434,http://purl.obolibrary.org/obo/GO_0090434,oleoyl-CoA ligase activity +14.7576239,GO:0097087,http://purl.obolibrary.org/obo/GO_0097087,interleukin-17A production +14.7576239,GO:0097131,http://purl.obolibrary.org/obo/GO_0097131,cyclin D1-CDK6 complex +14.7576239,GO:0097270,http://purl.obolibrary.org/obo/GO_0097270,dishabituation +14.7576239,GO:0097452,http://purl.obolibrary.org/obo/GO_0097452,GAIT complex +14.7576239,GO:0098867,http://purl.obolibrary.org/obo/GO_0098867,intramembranous bone growth +14.7576239,GO:0099610,http://purl.obolibrary.org/obo/GO_0099610,action potential initiation +14.7576239,GO:1900056,http://purl.obolibrary.org/obo/GO_1900056,negative regulation of leaf senescence +14.7576239,GO:1900136,http://purl.obolibrary.org/obo/GO_1900136,regulation of chemokine activity +14.7576239,GO:1900268,http://purl.obolibrary.org/obo/GO_1900268,regulation of reverse transcription +14.7576239,GO:1901028,http://purl.obolibrary.org/obo/GO_1901028,regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway +14.7576239,GO:1901077,http://purl.obolibrary.org/obo/GO_1901077,regulation of relaxation of muscle +14.7576239,GO:1901756,http://purl.obolibrary.org/obo/GO_1901756,butirosin metabolic process +14.7576239,GO:1901758,http://purl.obolibrary.org/obo/GO_1901758,butirosin biosynthetic process +14.7576239,GO:1901891,http://purl.obolibrary.org/obo/GO_1901891,regulation of cell septum assembly +14.7576239,GO:1901893,http://purl.obolibrary.org/obo/GO_1901893,positive regulation of cell septum assembly +14.7576239,GO:1902006,http://purl.obolibrary.org/obo/GO_1902006,negative regulation of proline biosynthetic process +14.7576239,GO:1902412,http://purl.obolibrary.org/obo/GO_1902412,regulation of mitotic cytokinesis +14.7576239,GO:1902570,http://purl.obolibrary.org/obo/GO_1902570,protein localization to nucleolus +14.7576239,GO:1902591,http://purl.obolibrary.org/obo/GO_1902591,none +14.7576239,GO:1902779,http://purl.obolibrary.org/obo/GO_1902779,cellular response to alkane +14.7576239,GO:1902782,http://purl.obolibrary.org/obo/GO_1902782,response to decane +14.7576239,GO:1902974,http://purl.obolibrary.org/obo/GO_1902974,meiotic DNA replication initiation +14.7576239,GO:1903189,http://purl.obolibrary.org/obo/GO_1903189,glyoxal metabolic process +14.7576239,GO:1903436,http://purl.obolibrary.org/obo/GO_1903436,regulation of mitotic cytokinetic process +14.7576239,GO:1903438,http://purl.obolibrary.org/obo/GO_1903438,positive regulation of mitotic cytokinetic process +14.7576239,GO:1903490,http://purl.obolibrary.org/obo/GO_1903490,positive regulation of mitotic cytokinesis +14.7576239,GO:1903511,http://purl.obolibrary.org/obo/GO_1903511,orotic acid metabolic process +14.7576239,GO:1903789,http://purl.obolibrary.org/obo/GO_1903789,regulation of amino acid transmembrane transport +14.7576239,GO:1903903,http://purl.obolibrary.org/obo/GO_1903903,regulation of establishment of T cell polarity +14.7576239,GO:1904092,http://purl.obolibrary.org/obo/GO_1904092,regulation of autophagic cell death +14.7576239,GO:1904298,http://purl.obolibrary.org/obo/GO_1904298,regulation of transcytosis +14.7576239,GO:1904726,http://purl.obolibrary.org/obo/GO_1904726,regulation of replicative senescence +14.7576239,GO:1905953,http://purl.obolibrary.org/obo/GO_1905953,negative regulation of lipid localization +14.7576239,GO:1990000,http://purl.obolibrary.org/obo/GO_1990000,amyloid fibril formation +14.7576239,GO:1990023,http://purl.obolibrary.org/obo/GO_1990023,mitotic spindle midzone +14.7576239,GO:1990502,http://purl.obolibrary.org/obo/GO_1990502,dense core granule maturation +14.7576239,GO:1990662,http://purl.obolibrary.org/obo/GO_1990662,S100A9 complex +14.7576239,GO:1990772,http://purl.obolibrary.org/obo/GO_1990772,substance P secretion +14.7576239,GO:1990816,http://purl.obolibrary.org/obo/GO_1990816,vacuole-mitochondrion membrane contact site +14.7576239,GO:2000215,http://purl.obolibrary.org/obo/GO_2000215,negative regulation of proline metabolic process +14.7576239,GO:2000259,http://purl.obolibrary.org/obo/GO_2000259,positive regulation of protein activation cascade +14.7576239,HP:0000519,http://purl.obolibrary.org/obo/HP_0000519,Developmental cataract +14.7576239,HP:0001607,http://purl.obolibrary.org/obo/HP_0001607,Subglottic stenosis +14.7576239,HP:0001962,http://purl.obolibrary.org/obo/HP_0001962,Palpitations +14.7576239,HP:0002039,http://purl.obolibrary.org/obo/HP_0002039,Anorexia +14.7576239,HP:0002140,http://purl.obolibrary.org/obo/HP_0002140,Ischemic stroke +14.7576239,HP:0002155,http://purl.obolibrary.org/obo/HP_0002155,Hypertriglyceridemia +14.7576239,HP:0002539,http://purl.obolibrary.org/obo/HP_0002539,Cortical dysplasia +14.7576239,HP:0002621,http://purl.obolibrary.org/obo/HP_0002621,Atherosclerosis +14.7576239,HP:0002644,http://purl.obolibrary.org/obo/HP_0002644,Abnormality of pelvic girdle bone morphology +14.7576239,HP:0002942,http://purl.obolibrary.org/obo/HP_0002942,Thoracic kyphosis +14.7576239,HP:0003272,http://purl.obolibrary.org/obo/HP_0003272,Abnormal hip bone morphology +14.7576239,HP:0004340,http://purl.obolibrary.org/obo/HP_0004340,Abnormality of vitamin B metabolism +14.7576239,HP:0004341,http://purl.obolibrary.org/obo/HP_0004341,Abnormality of vitamin B12 metabolism +14.7576239,HP:0004610,http://purl.obolibrary.org/obo/HP_0004610,Lumbar spinal canal stenosis +14.7576239,HP:0007375,http://purl.obolibrary.org/obo/HP_0007375,Abnormality of the septum pellucidum +14.7576239,HP:0009473,http://purl.obolibrary.org/obo/HP_0009473,Joint contracture of the hand +14.7576239,HP:0009810,http://purl.obolibrary.org/obo/HP_0009810,Abnormality of upper limb joint +14.7576239,HP:0011003,http://purl.obolibrary.org/obo/HP_0011003,High myopia +14.7576239,HP:0011459,http://purl.obolibrary.org/obo/HP_0011459,Esophageal carcinoma +14.7576239,HP:0012189,http://purl.obolibrary.org/obo/HP_0012189,Hodgkin lymphoma +14.7576239,HP:0033063,http://purl.obolibrary.org/obo/HP_0033063,Shortened sleep cycle +14.7576239,HP:0040126,http://purl.obolibrary.org/obo/HP_0040126,Abnormal vitamin B12 level +14.7576239,HP:0040213,http://purl.obolibrary.org/obo/HP_0040213,Hypopnea +14.7576239,HP:0100360,http://purl.obolibrary.org/obo/HP_0100360,Contractures of the joints of the upper limbs +14.7576239,HP:0100502,http://purl.obolibrary.org/obo/HP_0100502,Vitamin B12 deficiency +14.7576239,HP:0100661,http://purl.obolibrary.org/obo/HP_0100661,Trigeminal neuralgia +14.7576239,MONDO:0000291,http://purl.obolibrary.org/obo/MONDO_0000291,granulomatous amebic encephalitis +14.7576239,MONDO:0000303,http://purl.obolibrary.org/obo/MONDO_0000303,conidiobolomycosis +14.7576239,MONDO:0000584,http://purl.obolibrary.org/obo/MONDO_0000584,B cell linker protein deficiency +14.7576239,MONDO:0000849,http://purl.obolibrary.org/obo/MONDO_0000849,fibrogenesis imperfecta ossium +14.7576239,MONDO:0000976,http://purl.obolibrary.org/obo/MONDO_0000976,paratesticular lipoma +14.7576239,MONDO:0001034,http://purl.obolibrary.org/obo/MONDO_0001034,marginal corneal ulcer +14.7576239,MONDO:0001147,http://purl.obolibrary.org/obo/MONDO_0001147,meningocele +14.7576239,MONDO:0001209,http://purl.obolibrary.org/obo/MONDO_0001209,common wart +14.7576239,MONDO:0001435,http://purl.obolibrary.org/obo/MONDO_0001435,bullous retinoschisis +14.7576239,MONDO:0001455,http://purl.obolibrary.org/obo/MONDO_0001455,retinal lattice degeneration +14.7576239,MONDO:0001709,http://purl.obolibrary.org/obo/MONDO_0001709,hypercalcemic sarcoidosis +14.7576239,MONDO:0002192,http://purl.obolibrary.org/obo/MONDO_0002192,vulvar angiokeratoma +14.7576239,MONDO:0002357,http://purl.obolibrary.org/obo/MONDO_0002357,hepatic flexure cancer +14.7576239,MONDO:0002588,http://purl.obolibrary.org/obo/MONDO_0002588,thymoma type A +14.7576239,MONDO:0002632,http://purl.obolibrary.org/obo/MONDO_0002632,metachronous osteosarcoma of the bone +14.7576239,MONDO:0002717,http://purl.obolibrary.org/obo/MONDO_0002717,spinal cord intramedullary teratoma +14.7576239,MONDO:0002947,http://purl.obolibrary.org/obo/MONDO_0002947,adamantinoid basal cell epithelioma +14.7576239,MONDO:0002978,http://purl.obolibrary.org/obo/MONDO_0002978,orbit alveolar rhabdomyosarcoma +14.7576239,MONDO:0003284,http://purl.obolibrary.org/obo/MONDO_0003284,mediastinum leiomyoma +14.7576239,MONDO:0003509,http://purl.obolibrary.org/obo/MONDO_0003509,pineal region choriocarcinoma +14.7576239,MONDO:0003809,http://purl.obolibrary.org/obo/MONDO_0003809,malignant mediastinum hemangiopericytoma +14.7576239,MONDO:0003997,http://purl.obolibrary.org/obo/MONDO_0003997,colon Kaposi sarcoma +14.7576239,MONDO:0004122,http://purl.obolibrary.org/obo/MONDO_0004122,thymus small cell carcinoma +14.7576239,MONDO:0004303,http://purl.obolibrary.org/obo/MONDO_0004303,parathyroid gland clear cell adenoma +14.7576239,MONDO:0004343,http://purl.obolibrary.org/obo/MONDO_0004343,pancreatic acinar cell cystadenocarcinoma +14.7576239,MONDO:0004558,http://purl.obolibrary.org/obo/MONDO_0004558,thyroid gland macrofollicular adenoma +14.7576239,MONDO:0004613,http://purl.obolibrary.org/obo/MONDO_0004613,acute intestinal ischemia +14.7576239,MONDO:0004697,http://purl.obolibrary.org/obo/MONDO_0004697,esophageal leukoplakia +14.7576239,MONDO:0005754,http://purl.obolibrary.org/obo/MONDO_0005754,epilepsy with generalized tonic-clonic seizures +14.7576239,MONDO:0005756,http://purl.obolibrary.org/obo/MONDO_0005756,ethmoid sinusitis +14.7576239,MONDO:0005947,http://purl.obolibrary.org/obo/MONDO_0005947,rickettsial pneumonia +14.7576239,MONDO:0005963,http://purl.obolibrary.org/obo/MONDO_0005963,sparganosis +14.7576239,MONDO:0005999,http://purl.obolibrary.org/obo/MONDO_0005999,tuberculous empyema +14.7576239,MONDO:0006159,http://purl.obolibrary.org/obo/MONDO_0006159,colorectal gastrointestinal stromal tumor +14.7576239,MONDO:0006345,http://purl.obolibrary.org/obo/MONDO_0006345,palmar fibromatosis +14.7576239,MONDO:0006462,http://purl.obolibrary.org/obo/MONDO_0006462,thyroid gland diffuse large B-cell lymphoma +14.7576239,MONDO:0006784,http://purl.obolibrary.org/obo/MONDO_0006784,hemorrhagic disease of newborn +14.7576239,MONDO:0007105,http://purl.obolibrary.org/obo/MONDO_0007105,frontotemporal dementia and/or amyotrophic lateral sclerosis 1 +14.7576239,MONDO:0007266,http://purl.obolibrary.org/obo/MONDO_0007266,hypertrophic cardiomyopathy 2 +14.7576239,MONDO:0007267,http://purl.obolibrary.org/obo/MONDO_0007267,hypertrophic cardiomyopathy 3 +14.7576239,MONDO:0007337,http://purl.obolibrary.org/obo/MONDO_0007337,cleft palate-lateral synechia syndrome +14.7576239,MONDO:0007799,http://purl.obolibrary.org/obo/MONDO_0007799,hypophosphatemic bone disease +14.7576239,MONDO:0007927,http://purl.obolibrary.org/obo/MONDO_0007927,congenital macroglossia +14.7576239,MONDO:0007952,http://purl.obolibrary.org/obo/MONDO_0007952,maxillofacial dysostosis +14.7576239,MONDO:0008008,http://purl.obolibrary.org/obo/MONDO_0008008,MOMO syndrome +14.7576239,MONDO:0008163,http://purl.obolibrary.org/obo/MONDO_0008163,otofaciocervical syndrome +14.7576239,MONDO:0008747,http://purl.obolibrary.org/obo/MONDO_0008747,oculocutaneous albinism type 3 +14.7576239,MONDO:0008768,http://purl.obolibrary.org/obo/MONDO_0008768,neuronal ceroid lipofuscinosis 4A +14.7576239,MONDO:0008811,http://purl.obolibrary.org/obo/MONDO_0008811,XK aprosencephaly +14.7576239,MONDO:0008869,http://purl.obolibrary.org/obo/MONDO_0008869,Seckel syndrome 1 +14.7576239,MONDO:0008915,http://purl.obolibrary.org/obo/MONDO_0008915,dilated cardiomyopathy-hypergonadotropic hypogonadism syndrome +14.7576239,MONDO:0009404,http://purl.obolibrary.org/obo/MONDO_0009404,"hypertelorism, microtia, facial clefting syndrome" +14.7576239,MONDO:0009513,http://purl.obolibrary.org/obo/MONDO_0009513,laryngo-onycho-cutaneous syndrome +14.7576239,MONDO:0009523,http://purl.obolibrary.org/obo/MONDO_0009523,Lichtenstein syndrome +14.7576239,MONDO:0009872,http://purl.obolibrary.org/obo/MONDO_0009872,Bjornstad syndrome +14.7576239,MONDO:0010019,http://purl.obolibrary.org/obo/MONDO_0010019,secretory component deficiency +14.7576239,MONDO:0010033,http://purl.obolibrary.org/obo/MONDO_0010033,generalized peeling skin syndrome +14.7576239,MONDO:0010220,http://purl.obolibrary.org/obo/MONDO_0010220,Young syndrome +14.7576239,MONDO:0010221,http://purl.obolibrary.org/obo/MONDO_0010221,CHIME syndrome +14.7576239,MONDO:0010924,http://purl.obolibrary.org/obo/MONDO_0010924,D-2-hydroxyglutaric aciduria +14.7576239,MONDO:0011144,http://purl.obolibrary.org/obo/MONDO_0011144,neuronal ceroid lipofuscinosis 6 +14.7576239,MONDO:0011323,http://purl.obolibrary.org/obo/MONDO_0011323,"arhinia, choanal atresia, and microphthalmia" +14.7576239,MONDO:0011325,http://purl.obolibrary.org/obo/MONDO_0011325,Fanconi anemia complementation group F +14.7576239,MONDO:0011335,http://purl.obolibrary.org/obo/MONDO_0011335,spondyloepimetaphyseal dysplasia with multiple dislocations +14.7576239,MONDO:0011336,http://purl.obolibrary.org/obo/MONDO_0011336,familial hemophagocytic lymphohistiocytosis 4 +14.7576239,MONDO:0011375,http://purl.obolibrary.org/obo/MONDO_0011375,brittle bone disorder +14.7576239,MONDO:0011396,http://purl.obolibrary.org/obo/MONDO_0011396,keratoderma hereditarium mutilans with ichthyosis +14.7576239,MONDO:0011521,http://purl.obolibrary.org/obo/MONDO_0011521,inflammatory bowel disease 7 +14.7576239,MONDO:0011614,http://purl.obolibrary.org/obo/MONDO_0011614,3-hydroxy-3-methylglutaryl-CoA synthase deficiency +14.7576239,MONDO:0011688,http://purl.obolibrary.org/obo/MONDO_0011688,muscular dystrophy-dystroglycanopathy type B5 +14.7576239,MONDO:0011789,http://purl.obolibrary.org/obo/MONDO_0011789,familial meningioma +14.7576239,MONDO:0011826,http://purl.obolibrary.org/obo/MONDO_0011826,glucocorticoid deficiency 2 +14.7576239,MONDO:0011914,http://purl.obolibrary.org/obo/MONDO_0011914,hypotrichosis-lymphedema-telangiectasia syndrome +14.7576239,MONDO:0011948,http://purl.obolibrary.org/obo/MONDO_0011948,pontocerebellar hypoplasia type 3 +14.7576239,MONDO:0012174,http://purl.obolibrary.org/obo/MONDO_0012174,peripheral cone dystrophy +14.7576239,MONDO:0012456,http://purl.obolibrary.org/obo/MONDO_0012456,congenital primary aphakia +14.7576239,MONDO:0012536,http://purl.obolibrary.org/obo/MONDO_0012536,osteogenesis imperfecta type 7 +14.7576239,MONDO:0012581,http://purl.obolibrary.org/obo/MONDO_0012581,osteogenesis imperfecta type 8 +14.7576239,MONDO:0012764,http://purl.obolibrary.org/obo/MONDO_0012764,RIDDLE syndrome +14.7576239,MONDO:0012901,http://purl.obolibrary.org/obo/MONDO_0012901,inherited prekallikrein deficiency +14.7576239,MONDO:0012927,http://purl.obolibrary.org/obo/MONDO_0012927,chromosome 1q41-q42 deletion syndrome +14.7576239,MONDO:0013164,http://purl.obolibrary.org/obo/MONDO_0013164,beta-ureidopropionase deficiency +14.7576239,MONDO:0013400,http://purl.obolibrary.org/obo/MONDO_0013400,"Congenital adrenal insuffiency with 46, XY sex reversal OR 46,XY disorder of sex development-adrenal insufficiency due to CYP11A1 deficiency" +14.7576239,MONDO:0013501,http://purl.obolibrary.org/obo/MONDO_0013501,frontotemporal dementia and/or amyotrophic lateral sclerosis 6 +14.7576239,MONDO:0013538,http://purl.obolibrary.org/obo/MONDO_0013538,alpha-2-macroglobulin deficiency +14.7576239,MONDO:0013556,http://purl.obolibrary.org/obo/MONDO_0013556,Hermansky-Pudlak syndrome 4 +14.7576239,MONDO:0013557,http://purl.obolibrary.org/obo/MONDO_0013557,Hermansky-Pudlak syndrome 5 +14.7576239,MONDO:0013668,http://purl.obolibrary.org/obo/MONDO_0013668,tetrasomy 18p +14.7576239,MONDO:0013797,http://purl.obolibrary.org/obo/MONDO_0013797,chromosome 17q12 deletion syndrome +14.7576239,MONDO:0014280,http://purl.obolibrary.org/obo/MONDO_0014280,immunodeficiency 19 +14.7576239,MONDO:0014945,http://purl.obolibrary.org/obo/MONDO_0014945,"myopathy, distal, with rimmed vacuoles" +14.7576239,MONDO:0015030,http://purl.obolibrary.org/obo/MONDO_0015030,sclerosing perineurioma +14.7576239,MONDO:0015092,http://purl.obolibrary.org/obo/MONDO_0015092,cleft hard palate +14.7576239,MONDO:0015204,http://purl.obolibrary.org/obo/MONDO_0015204,microlissencephaly +14.7576239,MONDO:0015372,http://purl.obolibrary.org/obo/MONDO_0015372,autosomal dominant macrothrombocytopenia +14.7576239,MONDO:0015518,http://purl.obolibrary.org/obo/MONDO_0015518,infantile bilateral striatal necrosis +14.7576239,MONDO:0015672,http://purl.obolibrary.org/obo/MONDO_0015672,diprosopus +14.7576239,MONDO:0015751,http://purl.obolibrary.org/obo/MONDO_0015751,craniosynostosis-hydrocephalus-Arnold-Chiari malformation type I-radioulnar synostosis syndrome +14.7576239,MONDO:0015761,http://purl.obolibrary.org/obo/MONDO_0015761,trisomy 10p +14.7576239,MONDO:0015767,http://purl.obolibrary.org/obo/MONDO_0015767,trisomy 4p +14.7576239,MONDO:0015809,http://purl.obolibrary.org/obo/MONDO_0015809,localized pagetoid reticulosis +14.7576239,MONDO:0016170,http://purl.obolibrary.org/obo/MONDO_0016170,chronic polyradiculoneuropathy +14.7576239,MONDO:0016609,http://purl.obolibrary.org/obo/MONDO_0016609,inflammatory myopathy with abundant macrophages +14.7576239,MONDO:0016942,http://purl.obolibrary.org/obo/MONDO_0016942,partial trisomy/tetrasomy of the short arm of chromosome 5 +14.7576239,MONDO:0016947,http://purl.obolibrary.org/obo/MONDO_0016947,partial duplication of the short arm of chromosome 10 +14.7576239,MONDO:0016975,http://purl.obolibrary.org/obo/MONDO_0016975,thymoma type AB +14.7576239,MONDO:0017117,http://purl.obolibrary.org/obo/MONDO_0017117,congenital non-communicating hydrocephalus +14.7576239,MONDO:0017241,http://purl.obolibrary.org/obo/MONDO_0017241,AP4-related intellectual disability and spastic paraplegia +14.7576239,MONDO:0017735,http://purl.obolibrary.org/obo/MONDO_0017735,congenital aortic valve stenosis +14.7576239,MONDO:0018019,http://purl.obolibrary.org/obo/MONDO_0018019,lead poisoning +14.7576239,MONDO:0018274,http://purl.obolibrary.org/obo/MONDO_0018274,GM3 synthase deficiency +14.7576239,MONDO:0018324,http://purl.obolibrary.org/obo/MONDO_0018324,adult-onset myasthenia gravis +14.7576239,MONDO:0018481,http://purl.obolibrary.org/obo/MONDO_0018481,undifferentiated carcinoma of esophagus +14.7576239,MONDO:0018736,http://purl.obolibrary.org/obo/MONDO_0018736,kaposiform lymphangiomatosis +14.7576239,MONDO:0018885,http://purl.obolibrary.org/obo/MONDO_0018885,orbital leiomyoma +14.7576239,MONDO:0018956,http://purl.obolibrary.org/obo/MONDO_0018956,idiopathic bronchiectasis +14.7576239,MONDO:0018964,http://purl.obolibrary.org/obo/MONDO_0018964,homocystinuria without methylmalonic aciduria +14.7576239,MONDO:0019067,http://purl.obolibrary.org/obo/MONDO_0019067,idiopathic steroid-sensitive nephrotic syndrome +14.7576239,MONDO:0019092,http://purl.obolibrary.org/obo/MONDO_0019092,infantile apnea +14.7576239,MONDO:0019916,http://purl.obolibrary.org/obo/MONDO_0019916,maternal uniparental disomy of chromosome 16 +14.7576239,MONDO:0019945,http://purl.obolibrary.org/obo/MONDO_0019945,solar urticaria +14.7576239,MONDO:0020507,http://purl.obolibrary.org/obo/MONDO_0020507,Cree leukoencephalopathy +14.7576239,MONDO:0020556,http://purl.obolibrary.org/obo/MONDO_0020556,pleuropulmonary blastoma type 2 +14.7576239,MONDO:0021476,http://purl.obolibrary.org/obo/MONDO_0021476,benign neoplasm of tongue +14.7576239,MONDO:0021651,http://purl.obolibrary.org/obo/MONDO_0021651,synpolydactyly +14.7576239,MONDO:0021720,http://purl.obolibrary.org/obo/MONDO_0021720,none +14.7576239,MONDO:0021752,http://purl.obolibrary.org/obo/MONDO_0021752,Achard-Thiers syndrome +14.7576239,MONDO:0022825,http://purl.obolibrary.org/obo/MONDO_0022825,congenital cystic eye +14.7576239,MONDO:0023246,http://purl.obolibrary.org/obo/MONDO_0023246,linear porokeratosis +14.7576239,MONDO:0024496,http://purl.obolibrary.org/obo/MONDO_0024496,"tumor grade 2 or 3, general grading system" +14.7576239,MONDO:0041755,http://purl.obolibrary.org/obo/MONDO_0041755,twin reversal arterial perfusion syndrome +14.7576239,MONDO:0044923,http://purl.obolibrary.org/obo/MONDO_0044923,acute myeloid leukemia with mutated NPM1 +14.7576239,MONDO:0400004,http://purl.obolibrary.org/obo/MONDO_0400004,phrynoderma +14.7576239,MOP:0000628,http://purl.obolibrary.org/obo/MOP_0000628,none +14.7576239,MOP:0000785,http://purl.obolibrary.org/obo/MOP_0000785,none +14.7576239,NCBITaxon:10020,http://purl.obolibrary.org/obo/NCBITaxon_10020,none +14.7576239,NCBITaxon:101141,http://purl.obolibrary.org/obo/NCBITaxon_101141,none +14.7576239,NCBITaxon:101142,http://purl.obolibrary.org/obo/NCBITaxon_101142,none +14.7576239,NCBITaxon:102812,http://purl.obolibrary.org/obo/NCBITaxon_102812,none +14.7576239,NCBITaxon:102818,http://purl.obolibrary.org/obo/NCBITaxon_102818,none +14.7576239,NCBITaxon:104664,http://purl.obolibrary.org/obo/NCBITaxon_104664,none +14.7576239,NCBITaxon:10477,http://purl.obolibrary.org/obo/NCBITaxon_10477,none +14.7576239,NCBITaxon:10524,http://purl.obolibrary.org/obo/NCBITaxon_10524,none +14.7576239,NCBITaxon:10539,http://purl.obolibrary.org/obo/NCBITaxon_10539,none +14.7576239,NCBITaxon:10593,http://purl.obolibrary.org/obo/NCBITaxon_10593,none +14.7576239,NCBITaxon:106582,http://purl.obolibrary.org/obo/NCBITaxon_106582,none +14.7576239,NCBITaxon:10837,http://purl.obolibrary.org/obo/NCBITaxon_10837,none +14.7576239,NCBITaxon:1110386,http://purl.obolibrary.org/obo/NCBITaxon_1110386,none +14.7576239,NCBITaxon:11203,http://purl.obolibrary.org/obo/NCBITaxon_11203,none +14.7576239,NCBITaxon:11602,http://purl.obolibrary.org/obo/NCBITaxon_11602,none +14.7576239,NCBITaxon:116056,http://purl.obolibrary.org/obo/NCBITaxon_116056,none +14.7576239,NCBITaxon:1170423,http://purl.obolibrary.org/obo/NCBITaxon_1170423,none +14.7576239,NCBITaxon:11767,http://purl.obolibrary.org/obo/NCBITaxon_11767,none +14.7576239,NCBITaxon:11806,http://purl.obolibrary.org/obo/NCBITaxon_11806,none +14.7576239,NCBITaxon:1182516,http://purl.obolibrary.org/obo/NCBITaxon_1182516,none +14.7576239,NCBITaxon:11880,http://purl.obolibrary.org/obo/NCBITaxon_11880,none +14.7576239,NCBITaxon:11942,http://purl.obolibrary.org/obo/NCBITaxon_11942,none +14.7576239,NCBITaxon:120168,http://purl.obolibrary.org/obo/NCBITaxon_120168,none +14.7576239,NCBITaxon:12055,http://purl.obolibrary.org/obo/NCBITaxon_12055,none +14.7576239,NCBITaxon:120862,http://purl.obolibrary.org/obo/NCBITaxon_120862,none +14.7576239,NCBITaxon:12166,http://purl.obolibrary.org/obo/NCBITaxon_12166,none +14.7576239,NCBITaxon:12187,http://purl.obolibrary.org/obo/NCBITaxon_12187,none +14.7576239,NCBITaxon:1221391,http://purl.obolibrary.org/obo/NCBITaxon_1221391,none +14.7576239,NCBITaxon:12240,http://purl.obolibrary.org/obo/NCBITaxon_12240,none +14.7576239,NCBITaxon:12259,http://purl.obolibrary.org/obo/NCBITaxon_12259,none +14.7576239,NCBITaxon:12289,http://purl.obolibrary.org/obo/NCBITaxon_12289,none +14.7576239,NCBITaxon:1231903,http://purl.obolibrary.org/obo/NCBITaxon_1231903,none +14.7576239,NCBITaxon:12433,http://purl.obolibrary.org/obo/NCBITaxon_12433,none +14.7576239,NCBITaxon:1283208,http://purl.obolibrary.org/obo/NCBITaxon_1283208,none +14.7576239,NCBITaxon:1283209,http://purl.obolibrary.org/obo/NCBITaxon_1283209,none +14.7576239,NCBITaxon:1285593,http://purl.obolibrary.org/obo/NCBITaxon_1285593,none +14.7576239,NCBITaxon:129337,http://purl.obolibrary.org/obo/NCBITaxon_129337,none +14.7576239,NCBITaxon:1298630,http://purl.obolibrary.org/obo/NCBITaxon_1298630,none +14.7576239,NCBITaxon:1329976,http://purl.obolibrary.org/obo/NCBITaxon_1329976,none +14.7576239,NCBITaxon:143623,http://purl.obolibrary.org/obo/NCBITaxon_143623,none +14.7576239,NCBITaxon:143780,http://purl.obolibrary.org/obo/NCBITaxon_143780,none +14.7576239,NCBITaxon:1462606,http://purl.obolibrary.org/obo/NCBITaxon_1462606,none +14.7576239,NCBITaxon:1464,http://purl.obolibrary.org/obo/NCBITaxon_1464,none +14.7576239,NCBITaxon:1489878,http://purl.obolibrary.org/obo/NCBITaxon_1489878,none +14.7576239,NCBITaxon:1521260,http://purl.obolibrary.org/obo/NCBITaxon_1521260,none +14.7576239,NCBITaxon:159141,http://purl.obolibrary.org/obo/NCBITaxon_159141,none +14.7576239,NCBITaxon:163090,http://purl.obolibrary.org/obo/NCBITaxon_163090,none +14.7576239,NCBITaxon:163091,http://purl.obolibrary.org/obo/NCBITaxon_163091,none +14.7576239,NCBITaxon:165432,http://purl.obolibrary.org/obo/NCBITaxon_165432,none +14.7576239,NCBITaxon:1667166,http://purl.obolibrary.org/obo/NCBITaxon_1667166,none +14.7576239,NCBITaxon:167484,http://purl.obolibrary.org/obo/NCBITaxon_167484,none +14.7576239,NCBITaxon:168135,http://purl.obolibrary.org/obo/NCBITaxon_168135,none +14.7576239,NCBITaxon:188333,http://purl.obolibrary.org/obo/NCBITaxon_188333,none +14.7576239,NCBITaxon:189820,http://purl.obolibrary.org/obo/NCBITaxon_189820,none +14.7576239,NCBITaxon:192734,http://purl.obolibrary.org/obo/NCBITaxon_192734,none +14.7576239,NCBITaxon:1934100,http://purl.obolibrary.org/obo/NCBITaxon_1934100,none +14.7576239,NCBITaxon:194541,http://purl.obolibrary.org/obo/NCBITaxon_194541,none +14.7576239,NCBITaxon:1963083,http://purl.obolibrary.org/obo/NCBITaxon_1963083,none +14.7576239,NCBITaxon:1963084,http://purl.obolibrary.org/obo/NCBITaxon_1963084,none +14.7576239,NCBITaxon:196896,http://purl.obolibrary.org/obo/NCBITaxon_196896,none +14.7576239,NCBITaxon:1972573,http://purl.obolibrary.org/obo/NCBITaxon_1972573,none +14.7576239,NCBITaxon:1979179,http://purl.obolibrary.org/obo/NCBITaxon_1979179,none +14.7576239,NCBITaxon:1980486,http://purl.obolibrary.org/obo/NCBITaxon_1980486,Puumala orthohantavirus +14.7576239,NCBITaxon:1980529,http://purl.obolibrary.org/obo/NCBITaxon_1980529,none +14.7576239,NCBITaxon:198725,http://purl.obolibrary.org/obo/NCBITaxon_198725,none +14.7576239,NCBITaxon:199310,http://purl.obolibrary.org/obo/NCBITaxon_199310,none +14.7576239,NCBITaxon:207697,http://purl.obolibrary.org/obo/NCBITaxon_207697,none +14.7576239,NCBITaxon:208086,http://purl.obolibrary.org/obo/NCBITaxon_208086,none +14.7576239,NCBITaxon:208524,http://purl.obolibrary.org/obo/NCBITaxon_208524,none +14.7576239,NCBITaxon:208526,http://purl.obolibrary.org/obo/NCBITaxon_208526,none +14.7576239,NCBITaxon:209854,http://purl.obolibrary.org/obo/NCBITaxon_209854,none +14.7576239,NCBITaxon:213633,http://purl.obolibrary.org/obo/NCBITaxon_213633,none +14.7576239,NCBITaxon:213849,http://purl.obolibrary.org/obo/NCBITaxon_213849,Campylobacterales +14.7576239,NCBITaxon:214907,http://purl.obolibrary.org/obo/NCBITaxon_214907,none +14.7576239,NCBITaxon:216719,http://purl.obolibrary.org/obo/NCBITaxon_216719,none +14.7576239,NCBITaxon:219103,http://purl.obolibrary.org/obo/NCBITaxon_219103,none +14.7576239,NCBITaxon:223259,http://purl.obolibrary.org/obo/NCBITaxon_223259,none +14.7576239,NCBITaxon:223303,http://purl.obolibrary.org/obo/NCBITaxon_223303,none +14.7576239,NCBITaxon:223323,http://purl.obolibrary.org/obo/NCBITaxon_223323,none +14.7576239,NCBITaxon:229278,http://purl.obolibrary.org/obo/NCBITaxon_229278,none +14.7576239,NCBITaxon:248062,http://purl.obolibrary.org/obo/NCBITaxon_248062,none +14.7576239,NCBITaxon:249584,http://purl.obolibrary.org/obo/NCBITaxon_249584,none +14.7576239,NCBITaxon:2558152,http://purl.obolibrary.org/obo/NCBITaxon_2558152,none +14.7576239,NCBITaxon:2560185,http://purl.obolibrary.org/obo/NCBITaxon_2560185,none +14.7576239,NCBITaxon:2560565,http://purl.obolibrary.org/obo/NCBITaxon_2560565,none +14.7576239,NCBITaxon:2560613,http://purl.obolibrary.org/obo/NCBITaxon_2560613,none +14.7576239,NCBITaxon:26339,http://purl.obolibrary.org/obo/NCBITaxon_26339,none +14.7576239,NCBITaxon:2681632,http://purl.obolibrary.org/obo/NCBITaxon_2681632,none +14.7576239,NCBITaxon:268499,http://purl.obolibrary.org/obo/NCBITaxon_268499,none +14.7576239,NCBITaxon:2733313,http://purl.obolibrary.org/obo/NCBITaxon_2733313,none +14.7576239,NCBITaxon:27577,http://purl.obolibrary.org/obo/NCBITaxon_27577,none +14.7576239,NCBITaxon:2870,http://purl.obolibrary.org/obo/NCBITaxon_2870,none +14.7576239,NCBITaxon:28869,http://purl.obolibrary.org/obo/NCBITaxon_28869,none +14.7576239,NCBITaxon:290008,http://purl.obolibrary.org/obo/NCBITaxon_290008,none +14.7576239,NCBITaxon:291296,http://purl.obolibrary.org/obo/NCBITaxon_291296,none +14.7576239,NCBITaxon:29547,http://purl.obolibrary.org/obo/NCBITaxon_29547,Epsilonproteobacteria +14.7576239,NCBITaxon:300029,http://purl.obolibrary.org/obo/NCBITaxon_300029,none +14.7576239,NCBITaxon:3065,http://purl.obolibrary.org/obo/NCBITaxon_3065,none +14.7576239,NCBITaxon:31649,http://purl.obolibrary.org/obo/NCBITaxon_31649,none +14.7576239,NCBITaxon:31743,http://purl.obolibrary.org/obo/NCBITaxon_31743,none +14.7576239,NCBITaxon:32310,http://purl.obolibrary.org/obo/NCBITaxon_32310,none +14.7576239,NCBITaxon:3242,http://purl.obolibrary.org/obo/NCBITaxon_3242,none +14.7576239,NCBITaxon:32629,http://purl.obolibrary.org/obo/NCBITaxon_32629,none +14.7576239,NCBITaxon:327106,http://purl.obolibrary.org/obo/NCBITaxon_327106,none +14.7576239,NCBITaxon:337039,http://purl.obolibrary.org/obo/NCBITaxon_337039,none +14.7576239,NCBITaxon:33823,http://purl.obolibrary.org/obo/NCBITaxon_33823,none +14.7576239,NCBITaxon:34143,http://purl.obolibrary.org/obo/NCBITaxon_34143,none +14.7576239,NCBITaxon:3465,http://purl.obolibrary.org/obo/NCBITaxon_3465,none +14.7576239,NCBITaxon:34854,http://purl.obolibrary.org/obo/NCBITaxon_34854,none +14.7576239,NCBITaxon:34979,http://purl.obolibrary.org/obo/NCBITaxon_34979,none +14.7576239,NCBITaxon:3503,http://purl.obolibrary.org/obo/NCBITaxon_3503,none +14.7576239,NCBITaxon:35290,http://purl.obolibrary.org/obo/NCBITaxon_35290,none +14.7576239,NCBITaxon:3623,http://purl.obolibrary.org/obo/NCBITaxon_3623,none +14.7576239,NCBITaxon:36446,http://purl.obolibrary.org/obo/NCBITaxon_36446,none +14.7576239,NCBITaxon:37126,http://purl.obolibrary.org/obo/NCBITaxon_37126,none +14.7576239,NCBITaxon:3846,http://purl.obolibrary.org/obo/NCBITaxon_3846,none +14.7576239,NCBITaxon:3847,http://purl.obolibrary.org/obo/NCBITaxon_3847,none +14.7576239,NCBITaxon:391228,http://purl.obolibrary.org/obo/NCBITaxon_391228,none +14.7576239,NCBITaxon:404399,http://purl.obolibrary.org/obo/NCBITaxon_404399,none +14.7576239,NCBITaxon:41165,http://purl.obolibrary.org/obo/NCBITaxon_41165,Schizopyrenida +14.7576239,NCBITaxon:413970,http://purl.obolibrary.org/obo/NCBITaxon_413970,none +14.7576239,NCBITaxon:42894,http://purl.obolibrary.org/obo/NCBITaxon_42894,none +14.7576239,NCBITaxon:430511,http://purl.obolibrary.org/obo/NCBITaxon_430511,none +14.7576239,NCBITaxon:433,http://purl.obolibrary.org/obo/NCBITaxon_433,none +14.7576239,NCBITaxon:4360,http://purl.obolibrary.org/obo/NCBITaxon_4360,none +14.7576239,NCBITaxon:43764,http://purl.obolibrary.org/obo/NCBITaxon_43764,none +14.7576239,NCBITaxon:44561,http://purl.obolibrary.org/obo/NCBITaxon_44561,none +14.7576239,NCBITaxon:44562,http://purl.obolibrary.org/obo/NCBITaxon_44562,none +14.7576239,NCBITaxon:451869,http://purl.obolibrary.org/obo/NCBITaxon_451869,none +14.7576239,NCBITaxon:466552,http://purl.obolibrary.org/obo/NCBITaxon_466552,none +14.7576239,NCBITaxon:47282,http://purl.obolibrary.org/obo/NCBITaxon_47282,none +14.7576239,NCBITaxon:4739,http://purl.obolibrary.org/obo/NCBITaxon_4739,none +14.7576239,NCBITaxon:502177,http://purl.obolibrary.org/obo/NCBITaxon_502177,none +14.7576239,NCBITaxon:52274,http://purl.obolibrary.org/obo/NCBITaxon_52274,none +14.7576239,NCBITaxon:542836,http://purl.obolibrary.org/obo/NCBITaxon_542836,none +14.7576239,NCBITaxon:55070,http://purl.obolibrary.org/obo/NCBITaxon_55070,none +14.7576239,NCBITaxon:555369,http://purl.obolibrary.org/obo/NCBITaxon_555369,none +14.7576239,NCBITaxon:569578,http://purl.obolibrary.org/obo/NCBITaxon_569578,none +14.7576239,NCBITaxon:573900,http://purl.obolibrary.org/obo/NCBITaxon_573900,none +14.7576239,NCBITaxon:57445,http://purl.obolibrary.org/obo/NCBITaxon_57445,none +14.7576239,NCBITaxon:57579,http://purl.obolibrary.org/obo/NCBITaxon_57579,none +14.7576239,NCBITaxon:5765,http://purl.obolibrary.org/obo/NCBITaxon_5765,Vahlkampfiidae +14.7576239,NCBITaxon:5882,http://purl.obolibrary.org/obo/NCBITaxon_5882,none +14.7576239,NCBITaxon:590647,http://purl.obolibrary.org/obo/NCBITaxon_590647,none +14.7576239,NCBITaxon:591166,http://purl.obolibrary.org/obo/NCBITaxon_591166,none +14.7576239,NCBITaxon:60875,http://purl.obolibrary.org/obo/NCBITaxon_60875,none +14.7576239,NCBITaxon:613034,http://purl.obolibrary.org/obo/NCBITaxon_613034,none +14.7576239,NCBITaxon:6209,http://purl.obolibrary.org/obo/NCBITaxon_6209,Echinococcus +14.7576239,NCBITaxon:62336,http://purl.obolibrary.org/obo/NCBITaxon_62336,none +14.7576239,NCBITaxon:6265,http://purl.obolibrary.org/obo/NCBITaxon_6265,none +14.7576239,NCBITaxon:629714,http://purl.obolibrary.org/obo/NCBITaxon_629714,none +14.7576239,NCBITaxon:64303,http://purl.obolibrary.org/obo/NCBITaxon_64303,none +14.7576239,NCBITaxon:665602,http://purl.obolibrary.org/obo/NCBITaxon_665602,none +14.7576239,NCBITaxon:67585,http://purl.obolibrary.org/obo/NCBITaxon_67585,none +14.7576239,NCBITaxon:680346,http://purl.obolibrary.org/obo/NCBITaxon_680346,none +14.7576239,NCBITaxon:6804,http://purl.obolibrary.org/obo/NCBITaxon_6804,none +14.7576239,NCBITaxon:6838,http://purl.obolibrary.org/obo/NCBITaxon_6838,none +14.7576239,NCBITaxon:68416,http://purl.obolibrary.org/obo/NCBITaxon_68416,none +14.7576239,NCBITaxon:686608,http://purl.obolibrary.org/obo/NCBITaxon_686608,none +14.7576239,NCBITaxon:695564,http://purl.obolibrary.org/obo/NCBITaxon_695564,none +14.7576239,NCBITaxon:7080,http://purl.obolibrary.org/obo/NCBITaxon_7080,none +14.7576239,NCBITaxon:70849,http://purl.obolibrary.org/obo/NCBITaxon_70849,none +14.7576239,NCBITaxon:70999,http://purl.obolibrary.org/obo/NCBITaxon_70999,Triatominae +14.7576239,NCBITaxon:7216,http://purl.obolibrary.org/obo/NCBITaxon_7216,none +14.7576239,NCBITaxon:7233,http://purl.obolibrary.org/obo/NCBITaxon_7233,none +14.7576239,NCBITaxon:768503,http://purl.obolibrary.org/obo/NCBITaxon_768503,none +14.7576239,NCBITaxon:768507,http://purl.obolibrary.org/obo/NCBITaxon_768507,none +14.7576239,NCBITaxon:776,http://purl.obolibrary.org/obo/NCBITaxon_776,Coxiella +14.7576239,NCBITaxon:77811,http://purl.obolibrary.org/obo/NCBITaxon_77811,none +14.7576239,NCBITaxon:80940,http://purl.obolibrary.org/obo/NCBITaxon_80940,none +14.7576239,NCBITaxon:8279,http://purl.obolibrary.org/obo/NCBITaxon_8279,none +14.7576239,NCBITaxon:8487,http://purl.obolibrary.org/obo/NCBITaxon_8487,none +14.7576239,NCBITaxon:87097,http://purl.obolibrary.org/obo/NCBITaxon_87097,none +14.7576239,NCBITaxon:8826,http://purl.obolibrary.org/obo/NCBITaxon_8826,Anseriformes +14.7576239,NCBITaxon:885580,http://purl.obolibrary.org/obo/NCBITaxon_885580,none +14.7576239,NCBITaxon:909827,http://purl.obolibrary.org/obo/NCBITaxon_909827,none +14.7576239,NCBITaxon:9102,http://purl.obolibrary.org/obo/NCBITaxon_9102,none +14.7576239,PR:000000783,http://purl.obolibrary.org/obo/PR_000000783,voltage-gated potassium channel KCNC4 +14.7576239,PR:000000788,http://purl.obolibrary.org/obo/PR_000000788,voltage-gated potassium channel subfamily G member 3 +14.7576239,PR:000000814,http://purl.obolibrary.org/obo/PR_000000814,voltage-gated potassium channel subunit KCNA7 +14.7576239,PR:000001500,http://purl.obolibrary.org/obo/PR_000001500,oxoeicosanoid receptor 1 +14.7576239,PR:000001639,http://purl.obolibrary.org/obo/PR_000001639,probable G-protein coupled receptor 173 +14.7576239,PR:000001699,http://purl.obolibrary.org/obo/PR_000001699,none +14.7576239,PR:000002975,http://purl.obolibrary.org/obo/PR_000002975,ataxin-1-like +14.7576239,PR:000002981,http://purl.obolibrary.org/obo/PR_000002981,lymphocyte antigen 76 +14.7576239,PR:000003591,http://purl.obolibrary.org/obo/PR_000003591,activator of basal transcription 1 +14.7576239,PR:000003708,http://purl.obolibrary.org/obo/PR_000003708,adenosine deaminase domain-containing protein 1 +14.7576239,PR:000003831,http://purl.obolibrary.org/obo/PR_000003831,"acylglycerol kinase, mitochondrial" +14.7576239,PR:000003897,http://purl.obolibrary.org/obo/PR_000003897,akirin-1 +14.7576239,PR:000003990,http://purl.obolibrary.org/obo/PR_000003990,junctional adhesion molecule-like +14.7576239,PR:000004094,http://purl.obolibrary.org/obo/PR_000004094,AP-1 complex subunit mu-1 +14.7576239,PR:000004108,http://purl.obolibrary.org/obo/PR_000004108,AP-3 complex subunit mu-2 +14.7576239,PR:000004109,http://purl.obolibrary.org/obo/PR_000004109,AP-3 complex subunit sigma-1 +14.7576239,PR:000004110,http://purl.obolibrary.org/obo/PR_000004110,AP-3 complex subunit sigma-2 +14.7576239,PR:000004167,http://purl.obolibrary.org/obo/PR_000004167,MICOS complex subunit MIC27 +14.7576239,PR:000004535,http://purl.obolibrary.org/obo/PR_000004535,none +14.7576239,PR:000004626,http://purl.obolibrary.org/obo/PR_000004626,B melanoma antigen 3 +14.7576239,PR:000004832,http://purl.obolibrary.org/obo/PR_000004832,binder of sperm protein homolog 1 +14.7576239,PR:000004908,http://purl.obolibrary.org/obo/PR_000004908,complement component C8 alpha chain +14.7576239,PR:000004954,http://purl.obolibrary.org/obo/PR_000004954,voltage-dependent calcium channel gamma-5 subunit +14.7576239,PR:000004957,http://purl.obolibrary.org/obo/PR_000004957,voltage-dependent calcium channel gamma-8 subunit +14.7576239,PR:000004991,http://purl.obolibrary.org/obo/PR_000004991,calcium/calmodulin-dependent protein kinase II inhibitor 1 +14.7576239,PR:000005183,http://purl.obolibrary.org/obo/PR_000005183,cell division cycle protein 123 +14.7576239,PR:000005260,http://purl.obolibrary.org/obo/PR_000005260,cyclin-dependent kinase 5 activator 2 +14.7576239,PR:000005339,http://purl.obolibrary.org/obo/PR_000005339,centromere protein V +14.7576239,PR:000005358,http://purl.obolibrary.org/obo/PR_000005358,centrosomal protein of 78 kDa +14.7576239,PR:000005395,http://purl.obolibrary.org/obo/PR_000005395,cell growth regulator with EF hand domain protein 1 +14.7576239,PR:000005396,http://purl.obolibrary.org/obo/PR_000005396,cell growth regulator with RING finger domain protein 1 +14.7576239,PR:000005482,http://purl.obolibrary.org/obo/PR_000005482,carbohydrate sulfotransferase 9 +14.7576239,PR:000005544,http://purl.obolibrary.org/obo/PR_000005544,claudin-17 +14.7576239,PR:000005590,http://purl.obolibrary.org/obo/PR_000005590,calmin +14.7576239,PR:000005630,http://purl.obolibrary.org/obo/PR_000005630,cornifelin +14.7576239,PR:000005960,http://purl.obolibrary.org/obo/PR_000005960,cysteine-rich protein 2-binding protein +14.7576239,PR:000006168,http://purl.obolibrary.org/obo/PR_000006168,none +14.7576239,PR:000006245,http://purl.obolibrary.org/obo/PR_000006245,none +14.7576239,PR:000006247,http://purl.obolibrary.org/obo/PR_000006247,none +14.7576239,PR:000006357,http://purl.obolibrary.org/obo/PR_000006357,ATP-dependent RNA helicase DDX19A +14.7576239,PR:000006360,http://purl.obolibrary.org/obo/PR_000006360,ATP-dependent RNA helicase DDX24 +14.7576239,PR:000006417,http://purl.obolibrary.org/obo/PR_000006417,DENN domain-containing protein 1A +14.7576239,PR:000006443,http://purl.obolibrary.org/obo/PR_000006443,diacylglycerol kinase beta +14.7576239,PR:000006452,http://purl.obolibrary.org/obo/PR_000006452,"deoxyguanosine kinase, mitochondrial" +14.7576239,PR:000006776,http://purl.obolibrary.org/obo/PR_000006776,cytoplasmic dynein 2 light intermediate chain 1 +14.7576239,PR:000006792,http://purl.obolibrary.org/obo/PR_000006792,E3 ubiquitin-protein ligase DZIP3 +14.7576239,PR:000006883,http://purl.obolibrary.org/obo/PR_000006883,endothelial cell-specific chemotaxis regulator +14.7576239,PR:000006912,http://purl.obolibrary.org/obo/PR_000006912,EF-hand calcium-binding domain-containing protein 6 +14.7576239,PR:000007060,http://purl.obolibrary.org/obo/PR_000007060,echinoderm microtubule-associated protein-like 5 +14.7576239,PR:000007098,http://purl.obolibrary.org/obo/PR_000007098,ectonucleoside triphosphate diphosphohydrolase 7 +14.7576239,PR:000007146,http://purl.obolibrary.org/obo/PR_000007146,epidermal growth factor receptor substrate 15-like 1 +14.7576239,PR:000007292,http://purl.obolibrary.org/obo/PR_000007292,none +14.7576239,PR:000007354,http://purl.obolibrary.org/obo/PR_000007354,fetal and adult testis-expressed transcript protein +14.7576239,PR:000007370,http://purl.obolibrary.org/obo/PR_000007370,F-box/LRR-repeat protein 12 +14.7576239,PR:000007387,http://purl.obolibrary.org/obo/PR_000007387,F-box only protein 10 +14.7576239,PR:000007399,http://purl.obolibrary.org/obo/PR_000007399,F-box only protein 28 +14.7576239,PR:000007436,http://purl.obolibrary.org/obo/PR_000007436,F-BAR domain only protein 2 +14.7576239,PR:000007545,http://purl.obolibrary.org/obo/PR_000007545,peptidyl-prolyl cis-trans isomerase FKBP9 +14.7576239,PR:000007815,http://purl.obolibrary.org/obo/PR_000007815,galactose mutarotase +14.7576239,PR:000007842,http://purl.obolibrary.org/obo/PR_000007842,protein GAPT +14.7576239,PR:000007880,http://purl.obolibrary.org/obo/PR_000007880,guanylate-binding protein 7 +14.7576239,PR:000007887,http://purl.obolibrary.org/obo/PR_000007887,GRIP and coiled-coil domain-containing protein 2 +14.7576239,PR:000007937,http://purl.obolibrary.org/obo/PR_000007937,gem-associated protein 8 +14.7576239,PR:000008021,http://purl.obolibrary.org/obo/PR_000008021,D-glucuronyl C5-epimerase +14.7576239,PR:000008110,http://purl.obolibrary.org/obo/PR_000008110,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-5 +14.7576239,PR:000008140,http://purl.obolibrary.org/obo/PR_000008140,Golgi integral membrane protein 4 +14.7576239,PR:000008182,http://purl.obolibrary.org/obo/PR_000008182,GPN-loop GTPase 3 +14.7576239,PR:000008253,http://purl.obolibrary.org/obo/PR_000008253,none +14.7576239,PR:000008324,http://purl.obolibrary.org/obo/PR_000008324,transcription factor IIIA +14.7576239,PR:000008406,http://purl.obolibrary.org/obo/PR_000008406,testis-specific H1 histone +14.7576239,PR:000008594,http://purl.obolibrary.org/obo/PR_000008594,histone H2B type 1-O +14.7576239,PR:000008775,http://purl.obolibrary.org/obo/PR_000008775,estradiol 17-beta-dehydrogenase 11 +14.7576239,PR:000008794,http://purl.obolibrary.org/obo/PR_000008794,heat shock factor protein 5 +14.7576239,PR:000008796,http://purl.obolibrary.org/obo/PR_000008796,"heat shock transcription factor, Y-linked" +14.7576239,PR:000008889,http://purl.obolibrary.org/obo/PR_000008889,"isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial" +14.7576239,PR:000008920,http://purl.obolibrary.org/obo/PR_000008920,interferon alpha-7 +14.7576239,PR:000009259,http://purl.obolibrary.org/obo/PR_000009259,voltage-gated potassium channel KCNG2 +14.7576239,PR:000009370,http://purl.obolibrary.org/obo/PR_000009370,kelch domain-containing protein 2 +14.7576239,PR:000009384,http://purl.obolibrary.org/obo/PR_000009384,kelch-like protein 22 +14.7576239,PR:000009463,http://purl.obolibrary.org/obo/PR_000009463,"keratin, type I cytoskeletal 24" +14.7576239,PR:000009489,http://purl.obolibrary.org/obo/PR_000009489,"keratin, type II cytoskeletal 74" +14.7576239,PR:000009493,http://purl.obolibrary.org/obo/PR_000009493,"keratin, type II cytoskeletal 78" +14.7576239,PR:000009812,http://purl.obolibrary.org/obo/PR_000009812,leukocyte immunoglobulin-like receptor subfamily B member 5 +14.7576239,PR:000009964,http://purl.obolibrary.org/obo/PR_000009964,U6 snRNA-associated Sm-like protein LSm6 +14.7576239,PR:000010014,http://purl.obolibrary.org/obo/PR_000010014,lysozyme-like protein 1 +14.7576239,PR:000010051,http://purl.obolibrary.org/obo/PR_000010051,transcription factor MafK +14.7576239,PR:000010104,http://purl.obolibrary.org/obo/PR_000010104,"mannosyl-oligosaccharide 1,2-alpha-mannosidase IC" +14.7576239,PR:000010122,http://purl.obolibrary.org/obo/PR_000010122,microtubule-associated proteins 1A/1B light chain 3C +14.7576239,PR:000010183,http://purl.obolibrary.org/obo/PR_000010183,E3 ubiquitin-protein ligase MARCHF9 +14.7576239,PR:000010353,http://purl.obolibrary.org/obo/PR_000010353,methyltransferase-like protein 7B +14.7576239,PR:000010359,http://purl.obolibrary.org/obo/PR_000010359,RNA-binding protein MEX3D +14.7576239,PR:000010685,http://purl.obolibrary.org/obo/PR_000010685,protein misato homolog 1 +14.7576239,PR:000010727,http://purl.obolibrary.org/obo/PR_000010727,"translation initiation factor IF-2, mitochondrial" +14.7576239,PR:000010733,http://purl.obolibrary.org/obo/PR_000010733,myotubularin-related protein 11 +14.7576239,PR:000010804,http://purl.obolibrary.org/obo/PR_000010804,"myosin-binding protein C, fast-type" +14.7576239,PR:000010837,http://purl.obolibrary.org/obo/PR_000010837,myosin light chain 5 +14.7576239,PR:000010884,http://purl.obolibrary.org/obo/PR_000010884,myozenin-3 +14.7576239,PR:000010942,http://purl.obolibrary.org/obo/PR_000010942,methyltransferase N6AMT1 +14.7576239,PR:000010961,http://purl.obolibrary.org/obo/PR_000010961,sodium-dependent glucose transporter 1 +14.7576239,PR:000010979,http://purl.obolibrary.org/obo/PR_000010979,nucleosome assembly protein 1-like 5 +14.7576239,PR:000011056,http://purl.obolibrary.org/obo/PR_000011056,non-structural maintenance of chromosomes element 3 homolog +14.7576239,PR:000011070,http://purl.obolibrary.org/obo/PR_000011070,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 +14.7576239,PR:000011089,http://purl.obolibrary.org/obo/PR_000011089,"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial" +14.7576239,PR:000011091,http://purl.obolibrary.org/obo/PR_000011091,NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 +14.7576239,PR:000011126,http://purl.obolibrary.org/obo/PR_000011126,serine/threonine-protein kinase Nek10 +14.7576239,PR:000011288,http://purl.obolibrary.org/obo/PR_000011288,normal mucosa of esophagus-specific gene 1 protein +14.7576239,PR:000011313,http://purl.obolibrary.org/obo/PR_000011313,nucleolar protein 7 +14.7576239,PR:000011415,http://purl.obolibrary.org/obo/PR_000011415,notch-regulated ankyrin repeat-containing protein +14.7576239,PR:000011478,http://purl.obolibrary.org/obo/PR_000011478,nucleotide-binding protein-like +14.7576239,PR:000011612,http://purl.obolibrary.org/obo/PR_000011612,"2-oxoglutarate dehydrogenase, mitochondrial" +14.7576239,PR:000011865,http://purl.obolibrary.org/obo/PR_000011865,olfactory receptor 51E1 +14.7576239,PR:000012046,http://purl.obolibrary.org/obo/PR_000012046,oxysterol-binding protein-related protein 11 +14.7576239,PR:000012197,http://purl.obolibrary.org/obo/PR_000012197,prolyl 4-hydroxylase subunit alpha-2 +14.7576239,PR:000012229,http://purl.obolibrary.org/obo/PR_000012229,platelet-activating factor acetylhydrolase IB subunit alpha1 +14.7576239,PR:000012251,http://purl.obolibrary.org/obo/PR_000012251,palmdelphin +14.7576239,PR:000012258,http://purl.obolibrary.org/obo/PR_000012258,4'-phosphopantetheine phosphatase +14.7576239,PR:000012679,http://purl.obolibrary.org/obo/PR_000012679,peptidase inhibitor 16 +14.7576239,PR:000012681,http://purl.obolibrary.org/obo/PR_000012681,phosphatidylinositol 4-kinase type 2-alpha +14.7576239,PR:000012751,http://purl.obolibrary.org/obo/PR_000012751,phosphoinositide-interacting protein +14.7576239,PR:000012779,http://purl.obolibrary.org/obo/PR_000012779,cAMP-dependent protein kinase inhibitor alpha +14.7576239,PR:000012847,http://purl.obolibrary.org/obo/PR_000012847,inactive phospholipase D5 +14.7576239,PR:000013009,http://purl.obolibrary.org/obo/PR_000013009,DNA-directed RNA polymerase III subunit RPC10 +14.7576239,PR:000013103,http://purl.obolibrary.org/obo/PR_000013103,serine/threonine-protein phosphatase PP1-beta catalytic subunit +14.7576239,PR:000013119,http://purl.obolibrary.org/obo/PR_000013119,protein phosphatase 1 regulatory inhibitor subunit 16B +14.7576239,PR:000013313,http://purl.obolibrary.org/obo/PR_000013313,transmembrane gamma-carboxyglutamic acid protein 2 +14.7576239,PR:000013322,http://purl.obolibrary.org/obo/PR_000013322,brain-specific serine protease 4 +14.7576239,PR:000013327,http://purl.obolibrary.org/obo/PR_000013327,inactive serine protease 35 +14.7576239,PR:000013358,http://purl.obolibrary.org/obo/PR_000013358,serine/threonine-protein kinase H1 +14.7576239,PR:000013390,http://purl.obolibrary.org/obo/PR_000013390,26S proteasome non-ATPase regulatory subunit 8 +14.7576239,PR:000013547,http://purl.obolibrary.org/obo/PR_000013547,none +14.7576239,PR:000013563,http://purl.obolibrary.org/obo/PR_000013563,MICOS complex subunit MIC13 +14.7576239,PR:000013565,http://purl.obolibrary.org/obo/PR_000013565,glutaminyl-peptide cyclotransferase +14.7576239,PR:000013648,http://purl.obolibrary.org/obo/PR_000013648,Rab GTPase-binding effector protein 2 +14.7576239,PR:000013683,http://purl.obolibrary.org/obo/PR_000013683,cell cycle checkpoint control protein RAD9B +14.7576239,PR:000013686,http://purl.obolibrary.org/obo/PR_000013686,UL-16 binding protein 5 +14.7576239,PR:000014090,http://purl.obolibrary.org/obo/PR_000014090,E3 ubiquitin-protein ligase RNF146 +14.7576239,PR:000014135,http://purl.obolibrary.org/obo/PR_000014135,E3 ubiquitin-protein ligase BRE1B +14.7576239,PR:000014314,http://purl.obolibrary.org/obo/PR_000014314,U3 small nucleolar RNA-interacting protein 2 +14.7576239,PR:000014319,http://purl.obolibrary.org/obo/PR_000014319,lysine-specific demethylase 9 +14.7576239,PR:000014526,http://purl.obolibrary.org/obo/PR_000014526,sodium channel modifier 1 +14.7576239,PR:000014558,http://purl.obolibrary.org/obo/PR_000014558,endosome-associated-trafficking regulator 1 +14.7576239,PR:000014672,http://purl.obolibrary.org/obo/PR_000014672,serine incorporator 2 +14.7576239,PR:000014691,http://purl.obolibrary.org/obo/PR_000014691,serpin B11 +14.7576239,PR:000014786,http://purl.obolibrary.org/obo/PR_000014786,zeta-sarcoglycan +14.7576239,PR:000014827,http://purl.obolibrary.org/obo/PR_000014827,endophilin-B2 +14.7576239,PR:000014843,http://purl.obolibrary.org/obo/PR_000014843,protein shisa-3 +14.7576239,PR:000014845,http://purl.obolibrary.org/obo/PR_000014845,protein shisa-5 +14.7576239,PR:000014959,http://purl.obolibrary.org/obo/PR_000014959,sodium-dependent phosphate transport protein 3 +14.7576239,PR:000015015,http://purl.obolibrary.org/obo/PR_000015015,mitochondrial ornithine transporter 2 +14.7576239,PR:000015036,http://purl.obolibrary.org/obo/PR_000015036,sodium-independent sulfate anion transporter +14.7576239,PR:000015098,http://purl.obolibrary.org/obo/PR_000015098,UDP-glucuronic acid/UDP-N-acetylgalactosamine transporter +14.7576239,PR:000015148,http://purl.obolibrary.org/obo/PR_000015148,proton-associated sugar transporter A +14.7576239,PR:000015157,http://purl.obolibrary.org/obo/PR_000015157,kanadaptin +14.7576239,PR:000015540,http://purl.obolibrary.org/obo/PR_000015540,serine protease inhibitor Kazal-type 9 +14.7576239,PR:000015631,http://purl.obolibrary.org/obo/PR_000015631,SRSF protein kinase 3 +14.7576239,PR:000015633,http://purl.obolibrary.org/obo/PR_000015633,signal recognition particle receptor subunit beta +14.7576239,PR:000015686,http://purl.obolibrary.org/obo/PR_000015686,"beta-galactoside alpha-2,6-sialyltransferase 2" +14.7576239,PR:000015697,http://purl.obolibrary.org/obo/PR_000015697,"sia-alpha-2,3-Gal-beta-1,4-GlcNAc-R:alpha 2,8-sialyltransferase" +14.7576239,PR:000016046,http://purl.obolibrary.org/obo/PR_000016046,protein TANC1 +14.7576239,PR:000016082,http://purl.obolibrary.org/obo/PR_000016082,taste receptor type 2 member 5 +14.7576239,PR:000016141,http://purl.obolibrary.org/obo/PR_000016141,transforming growth factor beta regulator 1 +14.7576239,PR:000016159,http://purl.obolibrary.org/obo/PR_000016159,transcription elongation factor A protein 3 +14.7576239,PR:000016231,http://purl.obolibrary.org/obo/PR_000016231,telomere length regulation protein TEL2 +14.7576239,PR:000016371,http://purl.obolibrary.org/obo/PR_000016371,transketolase-like protein 2 +14.7576239,PR:000016553,http://purl.obolibrary.org/obo/PR_000016553,torsin-1B +14.7576239,PR:000016564,http://purl.obolibrary.org/obo/PR_000016564,none +14.7576239,PR:000016597,http://purl.obolibrary.org/obo/PR_000016597,"phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase TPTE2" +14.7576239,PR:000016752,http://purl.obolibrary.org/obo/PR_000016752,tetraspanin-6 +14.7576239,PR:000016793,http://purl.obolibrary.org/obo/PR_000016793,tubulin polyglutamylase TTLL4 +14.7576239,PR:000016822,http://purl.obolibrary.org/obo/PR_000016822,tubulin beta-8 chain +14.7576239,PR:000016864,http://purl.obolibrary.org/obo/PR_000016864,thioredoxin domain-containing protein 6 +14.7576239,PR:000016985,http://purl.obolibrary.org/obo/PR_000016985,ubiquitin-conjugating enzyme E2 Q2 +14.7576239,PR:000017038,http://purl.obolibrary.org/obo/PR_000017038,ubiquitin-conjugating enzyme E2 variant 3 +14.7576239,PR:000017116,http://purl.obolibrary.org/obo/PR_000017116,uroplakin-3b +14.7576239,PR:000017218,http://purl.obolibrary.org/obo/PR_000017218,none +14.7576239,PR:000017297,http://purl.obolibrary.org/obo/PR_000017297,villin-like protein +14.7576239,PR:000017304,http://purl.obolibrary.org/obo/PR_000017304,vitamin K epoxide reductase complex subunit 1-like protein 1 +14.7576239,PR:000017369,http://purl.obolibrary.org/obo/PR_000017369,"tryptophan--tRNA ligase, cytoplasmic" +14.7576239,PR:000017408,http://purl.obolibrary.org/obo/PR_000017408,WAP four-disulfide core domain protein 12 +14.7576239,PR:000017423,http://purl.obolibrary.org/obo/PR_000017423,WAS/WASL-interacting protein family member 2 +14.7576239,PR:000017464,http://purl.obolibrary.org/obo/PR_000017464,protein WWC3 +14.7576239,PR:000017510,http://purl.obolibrary.org/obo/PR_000017510,mitochondrial inner membrane protease ATP23 +14.7576239,PR:000017600,http://purl.obolibrary.org/obo/PR_000017600,zinc finger CCCH domain-containing protein 15 +14.7576239,PR:000017626,http://purl.obolibrary.org/obo/PR_000017626,zinc finger protein ZFAT +14.7576239,PR:000017642,http://purl.obolibrary.org/obo/PR_000017642,zinc finger protein 37 +14.7576239,PR:000017670,http://purl.obolibrary.org/obo/PR_000017670,zinc finger protein interacting with ribonucleoprotein K +14.7576239,PR:000017795,http://purl.obolibrary.org/obo/PR_000017795,neurotrophin receptor-interacting factor +14.7576239,PR:000017844,http://purl.obolibrary.org/obo/PR_000017844,zinc finger protein 346 +14.7576239,PR:000017897,http://purl.obolibrary.org/obo/PR_000017897,zinc finger protein 44 +14.7576239,PR:000017910,http://purl.obolibrary.org/obo/PR_000017910,zinc finger protein 461 +14.7576239,PR:000018207,http://purl.obolibrary.org/obo/PR_000018207,E3 ubiquitin-protein ligase ZNRF2 +14.7576239,PR:000021950,http://purl.obolibrary.org/obo/PR_000021950,none +14.7576239,PR:000022106,http://purl.obolibrary.org/obo/PR_000022106,none +14.7576239,PR:000022219,http://purl.obolibrary.org/obo/PR_000022219,none +14.7576239,PR:000022242,http://purl.obolibrary.org/obo/PR_000022242,none +14.7576239,PR:000022253,http://purl.obolibrary.org/obo/PR_000022253,none +14.7576239,PR:000022322,http://purl.obolibrary.org/obo/PR_000022322,none +14.7576239,PR:000022580,http://purl.obolibrary.org/obo/PR_000022580,none +14.7576239,PR:000022596,http://purl.obolibrary.org/obo/PR_000022596,none +14.7576239,PR:000022612,http://purl.obolibrary.org/obo/PR_000022612,none +14.7576239,PR:000022671,http://purl.obolibrary.org/obo/PR_000022671,none +14.7576239,PR:000022725,http://purl.obolibrary.org/obo/PR_000022725,none +14.7576239,PR:000022744,http://purl.obolibrary.org/obo/PR_000022744,none +14.7576239,PR:000022759,http://purl.obolibrary.org/obo/PR_000022759,none +14.7576239,PR:000022762,http://purl.obolibrary.org/obo/PR_000022762,none +14.7576239,PR:000022981,http://purl.obolibrary.org/obo/PR_000022981,none +14.7576239,PR:000022982,http://purl.obolibrary.org/obo/PR_000022982,none +14.7576239,PR:000023012,http://purl.obolibrary.org/obo/PR_000023012,none +14.7576239,PR:000023177,http://purl.obolibrary.org/obo/PR_000023177,none +14.7576239,PR:000023238,http://purl.obolibrary.org/obo/PR_000023238,none +14.7576239,PR:000023254,http://purl.obolibrary.org/obo/PR_000023254,none +14.7576239,PR:000023291,http://purl.obolibrary.org/obo/PR_000023291,none +14.7576239,PR:000023314,http://purl.obolibrary.org/obo/PR_000023314,none +14.7576239,PR:000023336,http://purl.obolibrary.org/obo/PR_000023336,none +14.7576239,PR:000023346,http://purl.obolibrary.org/obo/PR_000023346,none +14.7576239,PR:000023412,http://purl.obolibrary.org/obo/PR_000023412,none +14.7576239,PR:000023581,http://purl.obolibrary.org/obo/PR_000023581,none +14.7576239,PR:000023608,http://purl.obolibrary.org/obo/PR_000023608,none +14.7576239,PR:000023718,http://purl.obolibrary.org/obo/PR_000023718,none +14.7576239,PR:000023878,http://purl.obolibrary.org/obo/PR_000023878,none +14.7576239,PR:000023902,http://purl.obolibrary.org/obo/PR_000023902,none +14.7576239,PR:000023904,http://purl.obolibrary.org/obo/PR_000023904,none +14.7576239,PR:000023925,http://purl.obolibrary.org/obo/PR_000023925,none +14.7576239,PR:000024019,http://purl.obolibrary.org/obo/PR_000024019,none +14.7576239,PR:000024058,http://purl.obolibrary.org/obo/PR_000024058,none +14.7576239,PR:000024087,http://purl.obolibrary.org/obo/PR_000024087,none +14.7576239,PR:000024115,http://purl.obolibrary.org/obo/PR_000024115,none +14.7576239,PR:000024251,http://purl.obolibrary.org/obo/PR_000024251,none +14.7576239,PR:000027445,http://purl.obolibrary.org/obo/PR_000027445,microtubule-associated protein tau isoform Tau-F phosphorylated form +14.7576239,PR:000027501,http://purl.obolibrary.org/obo/PR_000027501,none +14.7576239,PR:000027502,http://purl.obolibrary.org/obo/PR_000027502,none +14.7576239,PR:000027650,http://purl.obolibrary.org/obo/PR_000027650,microtubule-associated protein tau isoform Tau-E phosphorylated form +14.7576239,PR:000027651,http://purl.obolibrary.org/obo/PR_000027651,microtubule-associated protein tau isoform Tau-D phosphorylated form +14.7576239,PR:000027652,http://purl.obolibrary.org/obo/PR_000027652,microtubule-associated protein tau isoform Tau-C phosphorylated form +14.7576239,PR:000027653,http://purl.obolibrary.org/obo/PR_000027653,microtubule-associated protein tau isoform Tau-B phosphorylated form +14.7576239,PR:000027734,http://purl.obolibrary.org/obo/PR_000027734,none +14.7576239,PR:000029089,http://purl.obolibrary.org/obo/PR_000029089,uncharacterized aarF domain-containing protein kinase 2 +14.7576239,PR:000029093,http://purl.obolibrary.org/obo/PR_000029093,adenylate kinase 9 +14.7576239,PR:000029253,http://purl.obolibrary.org/obo/PR_000029253,alanyl-tRNA editing protein Aarsd1 +14.7576239,PR:000029356,http://purl.obolibrary.org/obo/PR_000029356,MICOS complex subunit MIC25 +14.7576239,PR:000029385,http://purl.obolibrary.org/obo/PR_000029385,probable ATP-dependent RNA helicase DDX23 +14.7576239,PR:000029475,http://purl.obolibrary.org/obo/PR_000029475,CYFIP-related Rac1 interactor B +14.7576239,PR:000029635,http://purl.obolibrary.org/obo/PR_000029635,motile sperm domain-containing protein 2 +14.7576239,PR:000029654,http://purl.obolibrary.org/obo/PR_000029654,methyltransferase NSUN4 +14.7576239,PR:000029676,http://purl.obolibrary.org/obo/PR_000029676,pleckstrin homology domain-containing family F member 2 +14.7576239,PR:000029722,http://purl.obolibrary.org/obo/PR_000029722,rhomboid domain-containing protein 2 +14.7576239,PR:000029771,http://purl.obolibrary.org/obo/PR_000029771,SH3 and cysteine-rich domain-containing protein 2 +14.7576239,PR:000029831,http://purl.obolibrary.org/obo/PR_000029831,"tetratricopeptide repeat protein 19, mitochondrial" +14.7576239,PR:000030249,http://purl.obolibrary.org/obo/PR_000030249,HEPACAM family member 2 +14.7576239,PR:000030282,http://purl.obolibrary.org/obo/PR_000030282,telomere repeats-binding bouquet formation protein 1 +14.7576239,PR:000030402,http://purl.obolibrary.org/obo/PR_000030402,WD repeat-containing protein 73 +14.7576239,PR:000030427,http://purl.obolibrary.org/obo/PR_000030427,GRB2-associated and regulator of MAPK protein 1 +14.7576239,PR:000030464,http://purl.obolibrary.org/obo/PR_000030464,glutaredoxin domain-containing cysteine-rich protein 1 +14.7576239,PR:000030550,http://purl.obolibrary.org/obo/PR_000030550,JmjC domain-containing protein 8 +14.7576239,PR:000030660,http://purl.obolibrary.org/obo/PR_000030660,tectonin beta-propeller repeat-containing protein 1 +14.7576239,PR:000030880,http://purl.obolibrary.org/obo/PR_000030880,Ral GTPase-activating protein subunit alpha-1 +14.7576239,PR:000030904,http://purl.obolibrary.org/obo/PR_000030904,protein FAM3A +14.7576239,PR:000030906,http://purl.obolibrary.org/obo/PR_000030906,insulin growth factor-like family member 1 +14.7576239,PR:000031068,http://purl.obolibrary.org/obo/PR_000031068,coiled-coil domain-containing protein 155 +14.7576239,PR:000031073,http://purl.obolibrary.org/obo/PR_000031073,immunoglobulin-like and fibronectin type III domain-containing protein 1 +14.7576239,PR:000031140,http://purl.obolibrary.org/obo/PR_000031140,transmembrane protein adipocyte-associated 1 +14.7576239,PR:000031166,http://purl.obolibrary.org/obo/PR_000031166,centrosomal protein 20 +14.7576239,PR:000031329,http://purl.obolibrary.org/obo/PR_000031329,polypeptide N-acetylgalactosaminyltransferase 16 +14.7576239,PR:000031346,http://purl.obolibrary.org/obo/PR_000031346,transmembrane protein 74 +14.7576239,PR:000031397,http://purl.obolibrary.org/obo/PR_000031397,xyloside xylosyltransferase 1 +14.7576239,PR:000031473,http://purl.obolibrary.org/obo/PR_000031473,taperin +14.7576239,PR:000031510,http://purl.obolibrary.org/obo/PR_000031510,fibronectin type-III domain-containing protein 3A +14.7576239,PR:000031565,http://purl.obolibrary.org/obo/PR_000031565,transmembrane and immunoglobulin domain-containing protein 2 +14.7576239,PR:000031602,http://purl.obolibrary.org/obo/PR_000031602,DENN domain-containing protein 1B +14.7576239,PR:000031663,http://purl.obolibrary.org/obo/PR_000031663,glucoside xylosyltransferase 2 +14.7576239,PR:000031712,http://purl.obolibrary.org/obo/PR_000031712,transcription factor AP-2-delta +14.7576239,PR:000031757,http://purl.obolibrary.org/obo/PR_000031757,transcriptional protein SWT1 +14.7576239,PR:000031762,http://purl.obolibrary.org/obo/PR_000031762,G patch domain-containing protein 8 +14.7576239,PR:000031903,http://purl.obolibrary.org/obo/PR_000031903,RUN and FYVE domain-containing protein 2 +14.7576239,PR:000031909,http://purl.obolibrary.org/obo/PR_000031909,protein adenylyltransferase FICD +14.7576239,PR:000031957,http://purl.obolibrary.org/obo/PR_000031957,integral membrane protein GPR137B +14.7576239,PR:000031995,http://purl.obolibrary.org/obo/PR_000031995,BTB/POZ domain-containing protein KCTD8 +14.7576239,PR:000032070,http://purl.obolibrary.org/obo/PR_000032070,claudin domain-containing protein 1 +14.7576239,PR:000032136,http://purl.obolibrary.org/obo/PR_000032136,probable ATP-dependent RNA helicase DHX34 +14.7576239,PR:000032156,http://purl.obolibrary.org/obo/PR_000032156,GTPase IMAP family member 7 +14.7576239,PR:000032240,http://purl.obolibrary.org/obo/PR_000032240,putative gap junction epsilon-1 protein +14.7576239,PR:000032264,http://purl.obolibrary.org/obo/PR_000032264,protein NDNF +14.7576239,PR:000032267,http://purl.obolibrary.org/obo/PR_000032267,PDZ domain-containing RING finger protein 4 +14.7576239,PR:000032303,http://purl.obolibrary.org/obo/PR_000032303,poly(A)-specific ribonuclease PNLDC1 +14.7576239,PR:000032315,http://purl.obolibrary.org/obo/PR_000032315,EKC/KEOPS complex subunit LAGE3 +14.7576239,PR:000032430,http://purl.obolibrary.org/obo/PR_000032430,synapse differentiation-inducing gene protein 1 +14.7576239,PR:000032446,http://purl.obolibrary.org/obo/PR_000032446,transmembrane 7 superfamily member 3 +14.7576239,PR:000032469,http://purl.obolibrary.org/obo/PR_000032469,protein FAM50B +14.7576239,PR:000032486,http://purl.obolibrary.org/obo/PR_000032486,probable polypeptide N-acetylgalactosaminyltransferase 8 +14.7576239,PR:000032526,http://purl.obolibrary.org/obo/PR_000032526,GTPase IMAP family member 6 +14.7576239,PR:000032578,http://purl.obolibrary.org/obo/PR_000032578,phosphoribosyltransferase domain-containing protein 1 +14.7576239,PR:000032709,http://purl.obolibrary.org/obo/PR_000032709,cilia- and flagella-associated protein 43 +14.7576239,PR:000032723,http://purl.obolibrary.org/obo/PR_000032723,protein SLFN14 +14.7576239,PR:000032781,http://purl.obolibrary.org/obo/PR_000032781,multiple epidermal growth factor-like domains protein 8 +14.7576239,PR:000033208,http://purl.obolibrary.org/obo/PR_000033208,none +14.7576239,PR:000034030,http://purl.obolibrary.org/obo/PR_000034030,none +14.7576239,PR:000034327,http://purl.obolibrary.org/obo/PR_000034327,none +14.7576239,PR:000034508,http://purl.obolibrary.org/obo/PR_000034508,none +14.7576239,PR:000035053,http://purl.obolibrary.org/obo/PR_000035053,none +14.7576239,PR:000044401,http://purl.obolibrary.org/obo/PR_000044401,none +14.7576239,PR:000044405,http://purl.obolibrary.org/obo/PR_000044405,none +14.7576239,PR:000044412,http://purl.obolibrary.org/obo/PR_000044412,none +14.7576239,PR:000050506,http://purl.obolibrary.org/obo/PR_000050506,none +14.7576239,PR:A0JMQ9,http://purl.obolibrary.org/obo/PR_A0JMQ9,none +14.7576239,PR:B8PYG1,http://purl.obolibrary.org/obo/PR_B8PYG1,none +14.7576239,PR:B9DI20,http://purl.obolibrary.org/obo/PR_B9DI20,none +14.7576239,PR:E7FB36,http://purl.obolibrary.org/obo/PR_E7FB36,none +14.7576239,PR:F4IRU3,http://purl.obolibrary.org/obo/PR_F4IRU3,none +14.7576239,PR:G2TRM8,http://purl.obolibrary.org/obo/PR_G2TRM8,none +14.7576239,PR:O24621,http://purl.obolibrary.org/obo/PR_O24621,none +14.7576239,PR:O55137,http://purl.obolibrary.org/obo/PR_O55137,none +14.7576239,PR:O80839,http://purl.obolibrary.org/obo/PR_O80839,none +14.7576239,PR:O82480,http://purl.obolibrary.org/obo/PR_O82480,none +14.7576239,PR:O88267,http://purl.obolibrary.org/obo/PR_O88267,none +14.7576239,PR:O94030,http://purl.obolibrary.org/obo/PR_O94030,none +14.7576239,PR:P03975,http://purl.obolibrary.org/obo/PR_P03975,none +14.7576239,PR:P04657,http://purl.obolibrary.org/obo/PR_P04657,none +14.7576239,PR:P04903,http://purl.obolibrary.org/obo/PR_P04903,none +14.7576239,PR:P08542,http://purl.obolibrary.org/obo/PR_P08542,none +14.7576239,PR:P09880,http://purl.obolibrary.org/obo/PR_P09880,none +14.7576239,PR:P0CH07,http://purl.obolibrary.org/obo/PR_P0CH07,none +14.7576239,PR:P0DI11,http://purl.obolibrary.org/obo/PR_P0DI11,none +14.7576239,PR:P10989,http://purl.obolibrary.org/obo/PR_P10989,none +14.7576239,PR:P13107,http://purl.obolibrary.org/obo/PR_P13107,none +14.7576239,PR:P13723,http://purl.obolibrary.org/obo/PR_P13723,none +14.7576239,PR:P17563,http://purl.obolibrary.org/obo/PR_P17563,none +14.7576239,PR:P17937,http://purl.obolibrary.org/obo/PR_P17937,none +14.7576239,PR:P19099,http://purl.obolibrary.org/obo/PR_P19099,"cytochrome P450 11B2, mitochondrial (human)" +14.7576239,PR:P19488,http://purl.obolibrary.org/obo/PR_P19488,none +14.7576239,PR:P24348,http://purl.obolibrary.org/obo/PR_P24348,none +14.7576239,PR:P24806,http://purl.obolibrary.org/obo/PR_P24806,none +14.7576239,PR:P25070,http://purl.obolibrary.org/obo/PR_P25070,none +14.7576239,PR:P27716,http://purl.obolibrary.org/obo/PR_P27716,none +14.7576239,PR:P29384,http://purl.obolibrary.org/obo/PR_P29384,none +14.7576239,PR:P29516,http://purl.obolibrary.org/obo/PR_P29516,none +14.7576239,PR:P32341,http://purl.obolibrary.org/obo/PR_P32341,none +14.7576239,PR:P32629,http://purl.obolibrary.org/obo/PR_P32629,none +14.7576239,PR:P33448,http://purl.obolibrary.org/obo/PR_P33448,none +14.7576239,PR:P36046,http://purl.obolibrary.org/obo/PR_P36046,none +14.7576239,PR:P39520,http://purl.obolibrary.org/obo/PR_P39520,none +14.7576239,PR:P39958,http://purl.obolibrary.org/obo/PR_P39958,none +14.7576239,PR:P39980,http://purl.obolibrary.org/obo/PR_P39980,none +14.7576239,PR:P40512,http://purl.obolibrary.org/obo/PR_P40512,none +14.7576239,PR:P40559,http://purl.obolibrary.org/obo/PR_P40559,none +14.7576239,PR:P41597,http://purl.obolibrary.org/obo/PR_P41597,C-C chemokine receptor type 2 (human) +14.7576239,PR:P48578,http://purl.obolibrary.org/obo/PR_P48578,none +14.7576239,PR:P49702,http://purl.obolibrary.org/obo/PR_P49702,none +14.7576239,PR:P52168,http://purl.obolibrary.org/obo/PR_P52168,none +14.7576239,PR:P53174,http://purl.obolibrary.org/obo/PR_P53174,none +14.7576239,PR:P53248,http://purl.obolibrary.org/obo/PR_P53248,none +14.7576239,PR:P53390,http://purl.obolibrary.org/obo/PR_P53390,none +14.7576239,PR:P53628,http://purl.obolibrary.org/obo/PR_P53628,none +14.7576239,PR:P53743,http://purl.obolibrary.org/obo/PR_P53743,none +14.7576239,PR:P53860,http://purl.obolibrary.org/obo/PR_P53860,none +14.7576239,PR:P53959,http://purl.obolibrary.org/obo/PR_P53959,none +14.7576239,PR:P54070,http://purl.obolibrary.org/obo/PR_P54070,none +14.7576239,PR:P62959,http://purl.obolibrary.org/obo/PR_P62959,none +14.7576239,PR:P87027,http://purl.obolibrary.org/obo/PR_P87027,none +14.7576239,PR:P93280,http://purl.obolibrary.org/obo/PR_P93280,none +14.7576239,PR:Q02748,http://purl.obolibrary.org/obo/PR_Q02748,none +14.7576239,PR:Q03973,http://purl.obolibrary.org/obo/PR_Q03973,none +14.7576239,PR:Q06705,http://purl.obolibrary.org/obo/PR_Q06705,none +14.7576239,PR:Q08733,http://purl.obolibrary.org/obo/PR_Q08733,none +14.7576239,PR:Q0WL81,http://purl.obolibrary.org/obo/PR_Q0WL81,none +14.7576239,PR:Q12379,http://purl.obolibrary.org/obo/PR_Q12379,none +14.7576239,PR:Q1LXZ9,http://purl.obolibrary.org/obo/PR_Q1LXZ9,none +14.7576239,PR:Q24533,http://purl.obolibrary.org/obo/PR_Q24533,none +14.7576239,PR:Q2G213,http://purl.obolibrary.org/obo/PR_Q2G213,none +14.7576239,PR:Q38872,http://purl.obolibrary.org/obo/PR_Q38872,none +14.7576239,PR:Q38931,http://purl.obolibrary.org/obo/PR_Q38931,none +14.7576239,PR:Q39172,http://purl.obolibrary.org/obo/PR_Q39172,none +14.7576239,PR:Q39242,http://purl.obolibrary.org/obo/PR_Q39242,none +14.7576239,PR:Q3KNJ2,http://purl.obolibrary.org/obo/PR_Q3KNJ2,none +14.7576239,PR:Q42524,http://purl.obolibrary.org/obo/PR_Q42524,none +14.7576239,PR:Q54BK2,http://purl.obolibrary.org/obo/PR_Q54BK2,none +14.7576239,PR:Q54HD4,http://purl.obolibrary.org/obo/PR_Q54HD4,none +14.7576239,PR:Q54QM5,http://purl.obolibrary.org/obo/PR_Q54QM5,none +14.7576239,PR:Q553P5,http://purl.obolibrary.org/obo/PR_Q553P5,none +14.7576239,PR:Q5AML2,http://purl.obolibrary.org/obo/PR_Q5AML2,none +14.7576239,PR:Q5F448,http://purl.obolibrary.org/obo/PR_Q5F448,none +14.7576239,PR:Q5HZ36,http://purl.obolibrary.org/obo/PR_Q5HZ36,none +14.7576239,PR:Q5S2C3,http://purl.obolibrary.org/obo/PR_Q5S2C3,none +14.7576239,PR:Q5W7F2,http://purl.obolibrary.org/obo/PR_Q5W7F2,none +14.7576239,PR:Q5ZJU0,http://purl.obolibrary.org/obo/PR_Q5ZJU0,none +14.7576239,PR:Q63111,http://purl.obolibrary.org/obo/PR_Q63111,none +14.7576239,PR:Q66WT5,http://purl.obolibrary.org/obo/PR_Q66WT5,none +14.7576239,PR:Q683D7,http://purl.obolibrary.org/obo/PR_Q683D7,none +14.7576239,PR:Q696W0,http://purl.obolibrary.org/obo/PR_Q696W0,none +14.7576239,PR:Q6PE18,http://purl.obolibrary.org/obo/PR_Q6PE18,none +14.7576239,PR:Q84VY3,http://purl.obolibrary.org/obo/PR_Q84VY3,none +14.7576239,PR:Q8H1B3,http://purl.obolibrary.org/obo/PR_Q8H1B3,none +14.7576239,PR:Q8I0G5,http://purl.obolibrary.org/obo/PR_Q8I0G5,none +14.7576239,PR:Q8IR79,http://purl.obolibrary.org/obo/PR_Q8IR79,none +14.7576239,PR:Q8L5A7,http://purl.obolibrary.org/obo/PR_Q8L5A7,none +14.7576239,PR:Q8LEE7,http://purl.obolibrary.org/obo/PR_Q8LEE7,none +14.7576239,PR:Q8TG40,http://purl.obolibrary.org/obo/PR_Q8TG40,none +14.7576239,PR:Q8W4E1,http://purl.obolibrary.org/obo/PR_Q8W4E1,none +14.7576239,PR:Q90267,http://purl.obolibrary.org/obo/PR_Q90267,none +14.7576239,PR:Q92317,http://purl.obolibrary.org/obo/PR_Q92317,none +14.7576239,PR:Q94503,http://purl.obolibrary.org/obo/PR_Q94503,none +14.7576239,PR:Q98SR9,http://purl.obolibrary.org/obo/PR_Q98SR9,none +14.7576239,PR:Q99M64,http://purl.obolibrary.org/obo/PR_Q99M64,none +14.7576239,PR:Q9C9Q8,http://purl.obolibrary.org/obo/PR_Q9C9Q8,none +14.7576239,PR:Q9CPR8,http://purl.obolibrary.org/obo/PR_Q9CPR8,none +14.7576239,PR:Q9CZY3,http://purl.obolibrary.org/obo/PR_Q9CZY3,none +14.7576239,PR:Q9D541,http://purl.obolibrary.org/obo/PR_Q9D541,none +14.7576239,PR:Q9D6K5,http://purl.obolibrary.org/obo/PR_Q9D6K5,none +14.7576239,PR:Q9FE63,http://purl.obolibrary.org/obo/PR_Q9FE63,none +14.7576239,PR:Q9FG67,http://purl.obolibrary.org/obo/PR_Q9FG67,none +14.7576239,PR:Q9LD83,http://purl.obolibrary.org/obo/PR_Q9LD83,none +14.7576239,PR:Q9LG05,http://purl.obolibrary.org/obo/PR_Q9LG05,none +14.7576239,PR:Q9LMI0,http://purl.obolibrary.org/obo/PR_Q9LMI0,none +14.7576239,PR:Q9LN94,http://purl.obolibrary.org/obo/PR_Q9LN94,none +14.7576239,PR:Q9LPI7,http://purl.obolibrary.org/obo/PR_Q9LPI7,none +14.7576239,PR:Q9LVD6,http://purl.obolibrary.org/obo/PR_Q9LVD6,none +14.7576239,PR:Q9LVE0,http://purl.obolibrary.org/obo/PR_Q9LVE0,none +14.7576239,PR:Q9LYW9,http://purl.obolibrary.org/obo/PR_Q9LYW9,none +14.7576239,PR:Q9M9U0,http://purl.obolibrary.org/obo/PR_Q9M9U0,none +14.7576239,PR:Q9S7U5,http://purl.obolibrary.org/obo/PR_Q9S7U5,none +14.7576239,PR:Q9SB00,http://purl.obolibrary.org/obo/PR_Q9SB00,none +14.7576239,PR:Q9SCR2,http://purl.obolibrary.org/obo/PR_Q9SCR2,none +14.7576239,PR:Q9SFV7,http://purl.obolibrary.org/obo/PR_Q9SFV7,none +14.7576239,PR:Q9SI18,http://purl.obolibrary.org/obo/PR_Q9SI18,none +14.7576239,PR:Q9STJ6,http://purl.obolibrary.org/obo/PR_Q9STJ6,none +14.7576239,PR:Q9SWA6,http://purl.obolibrary.org/obo/PR_Q9SWA6,none +14.7576239,PR:Q9SXA6,http://purl.obolibrary.org/obo/PR_Q9SXA6,none +14.7576239,PR:Q9VRM7,http://purl.obolibrary.org/obo/PR_Q9VRM7,none +14.7576239,PR:Q9W6V2,http://purl.obolibrary.org/obo/PR_Q9W6V2,none +14.7576239,PR:Q9WUH1,http://purl.obolibrary.org/obo/PR_Q9WUH1,none +14.7576239,PR:Q9Z1Y4,http://purl.obolibrary.org/obo/PR_Q9Z1Y4,none +14.7576239,SO:0000148,http://purl.obolibrary.org/obo/SO_0000148,supercontig +14.7576239,SO:0000685,http://purl.obolibrary.org/obo/SO_0000685,DNaseI_hypersensitive_site +14.7576239,SO:0001922,http://purl.obolibrary.org/obo/SO_0001922,mitochondrial_supercontig +14.7576239,SO:1001275,http://purl.obolibrary.org/obo/SO_1001275,retron +14.7576239,UBERON:0000053,http://purl.obolibrary.org/obo/UBERON_0000053,macula lutea +14.7576239,UBERON:0000128,http://purl.obolibrary.org/obo/UBERON_0000128,olivary body +14.7576239,UBERON:0000368,http://purl.obolibrary.org/obo/UBERON_0000368,adductor brevis +14.7576239,UBERON:0001260,http://purl.obolibrary.org/obo/UBERON_0001260,serosa of urinary bladder +14.7576239,UBERON:0001269,http://purl.obolibrary.org/obo/UBERON_0001269,acetabular part of hip bone +14.7576239,UBERON:0001372,http://purl.obolibrary.org/obo/UBERON_0001372,psoas minor muscle +14.7576239,UBERON:0001517,http://purl.obolibrary.org/obo/UBERON_0001517,skin of elbow +14.7576239,UBERON:0001687,http://purl.obolibrary.org/obo/UBERON_0001687,stapes bone +14.7576239,UBERON:0001737,http://purl.obolibrary.org/obo/UBERON_0001737,larynx +14.7576239,UBERON:0001767,http://purl.obolibrary.org/obo/UBERON_0001767,posterior chamber of eyeball +14.7576239,UBERON:0001858,http://purl.obolibrary.org/obo/UBERON_0001858,posterior semicircular duct +14.7576239,UBERON:0001859,http://purl.obolibrary.org/obo/UBERON_0001859,lateral semicircular duct +14.7576239,UBERON:0001889,http://purl.obolibrary.org/obo/UBERON_0001889,trunk of phrenic nerve +14.7576239,UBERON:0002575,http://purl.obolibrary.org/obo/UBERON_0002575,posterior orbital gyrus +14.7576239,UBERON:0002682,http://purl.obolibrary.org/obo/UBERON_0002682,abducens nucleus +14.7576239,UBERON:0002705,http://purl.obolibrary.org/obo/UBERON_0002705,midline nuclear group +14.7576239,UBERON:0002870,http://purl.obolibrary.org/obo/UBERON_0002870,dorsal motor nucleus of vagus nerve +14.7576239,UBERON:0003063,http://purl.obolibrary.org/obo/UBERON_0003063,prechordal plate +14.7576239,UBERON:0003333,http://purl.obolibrary.org/obo/UBERON_0003333,submucosa of jejunum +14.7576239,UBERON:0003615,http://purl.obolibrary.org/obo/UBERON_0003615,lung elastic tissue +14.7576239,UBERON:0003855,http://purl.obolibrary.org/obo/UBERON_0003855,gonad mesenchyme +14.7576239,UBERON:0003859,http://purl.obolibrary.org/obo/UBERON_0003859,forelimb mesenchyme +14.7576239,UBERON:0003967,http://purl.obolibrary.org/obo/UBERON_0003967,cutaneous elastic tissue +14.7576239,UBERON:0004049,http://purl.obolibrary.org/obo/UBERON_0004049,cerebellomedullary cistern +14.7576239,UBERON:0004050,http://purl.obolibrary.org/obo/UBERON_0004050,subarachnoid cistern +14.7576239,UBERON:0004386,http://purl.obolibrary.org/obo/UBERON_0004386,epiphysis of ulna +14.7576239,UBERON:0004773,http://purl.obolibrary.org/obo/UBERON_0004773,superior eyelid tarsus +14.7576239,UBERON:0005108,http://purl.obolibrary.org/obo/UBERON_0005108,metanephric epithelium +14.7576239,UBERON:0005374,http://purl.obolibrary.org/obo/UBERON_0005374,spinal cord lateral column +14.7576239,UBERON:0005404,http://purl.obolibrary.org/obo/UBERON_0005404,frontonasal suture +14.7576239,UBERON:0005454,http://purl.obolibrary.org/obo/UBERON_0005454,abdominal internal oblique muscle +14.7576239,UBERON:0006296,http://purl.obolibrary.org/obo/UBERON_0006296,subcardinal vein +14.7576239,UBERON:0006456,http://purl.obolibrary.org/obo/UBERON_0006456,eighth thoracic spinal cord segment +14.7576239,UBERON:0006492,http://purl.obolibrary.org/obo/UBERON_0006492,C6 segment of cervical spinal cord +14.7576239,UBERON:0006607,http://purl.obolibrary.org/obo/UBERON_0006607,medial umbilical ligament +14.7576239,UBERON:0006689,http://purl.obolibrary.org/obo/UBERON_0006689,frenulum of tongue +14.7576239,UBERON:0006950,http://purl.obolibrary.org/obo/UBERON_0006950,stellate reticulum +14.7576239,UBERON:0007140,http://purl.obolibrary.org/obo/UBERON_0007140,parietal mesothelium +14.7576239,UBERON:0007362,http://purl.obolibrary.org/obo/UBERON_0007362,omasum +14.7576239,UBERON:0008443,http://purl.obolibrary.org/obo/UBERON_0008443,webbed digit +14.7576239,UBERON:0008454,http://purl.obolibrary.org/obo/UBERON_0008454,rectus capitis posterior major +14.7576239,UBERON:0008851,http://purl.obolibrary.org/obo/UBERON_0008851,ectoplacental cavity +14.7576239,UBERON:0010170,http://purl.obolibrary.org/obo/UBERON_0010170,region of neural crest +14.7576239,UBERON:0010235,http://purl.obolibrary.org/obo/UBERON_0010235,uvular muscle +14.7576239,UBERON:0010510,http://purl.obolibrary.org/obo/UBERON_0010510,strand of auchene hair +14.7576239,UBERON:0010952,http://purl.obolibrary.org/obo/UBERON_0010952,frontalis muscle belly +14.7576239,UBERON:0011213,http://purl.obolibrary.org/obo/UBERON_0011213,root of vagus nerve +14.7576239,UBERON:0011895,http://purl.obolibrary.org/obo/UBERON_0011895,endomysium +14.7576239,UBERON:0012293,http://purl.obolibrary.org/obo/UBERON_0012293,anal fold +14.7576239,UBERON:0012332,http://purl.obolibrary.org/obo/UBERON_0012332,broad ligament of uterus +14.7576239,UBERON:0012355,http://purl.obolibrary.org/obo/UBERON_0012355,manual acropodium region +14.7576239,UBERON:0013204,http://purl.obolibrary.org/obo/UBERON_0013204,epipubic bone +14.7576239,UBERON:0014614,http://purl.obolibrary.org/obo/UBERON_0014614,cervical spinal cord white matter +14.7576239,UBERON:0014768,http://purl.obolibrary.org/obo/UBERON_0014768,superior palpebral vein +14.7576239,UBERON:0014783,http://purl.obolibrary.org/obo/UBERON_0014783,cloacal muscle +14.7576239,UBERON:0014847,http://purl.obolibrary.org/obo/UBERON_0014847,vastus intermedius +14.7576239,UBERON:0015016,http://purl.obolibrary.org/obo/UBERON_0015016,stapes endochondral element +14.7576239,UBERON:0015214,http://purl.obolibrary.org/obo/UBERON_0015214,arcuate ligament +14.7576239,UBERON:0016887,http://purl.obolibrary.org/obo/UBERON_0016887,entire extraembryonic component +14.7576239,UBERON:0018232,http://purl.obolibrary.org/obo/UBERON_0018232,axillary sweat gland +14.7576239,UBERON:0034711,http://purl.obolibrary.org/obo/UBERON_0034711,cortical preplate +14.7576239,UBERON:0036293,http://purl.obolibrary.org/obo/UBERON_0036293,oral frenulum +14.7576239,UBERON:2001275,http://purl.obolibrary.org/obo/UBERON_2001275,sublingual bone +14.7576239,UBERON:2001430,http://purl.obolibrary.org/obo/UBERON_2001430,pneumatic duct +14.7576239,UBERON:2001516,http://purl.obolibrary.org/obo/UBERON_2001516,ceratobranchial cartilage +14.7576239,UBERON:2001810,http://purl.obolibrary.org/obo/UBERON_2001810,supraorbital sensory canal +14.7576239,UBERON:2002147,http://purl.obolibrary.org/obo/UBERON_2002147,arrector muscle +14.7576239,UBERON:2002224,http://purl.obolibrary.org/obo/UBERON_2002224,pleuroperitoneal cavity +14.7576239,UBERON:3000676,http://purl.obolibrary.org/obo/UBERON_3000676,bronchial process +14.7576239,UBERON:3010377,http://purl.obolibrary.org/obo/UBERON_3010377,unicellular gland +14.7576239,UBERON:3010589,http://purl.obolibrary.org/obo/UBERON_3010589,cloacal papilla +14.8754069,CHEBI:15346,http://purl.obolibrary.org/obo/CHEBI_15346,coenzyme A +14.8754069,CHEBI:15414,http://purl.obolibrary.org/obo/CHEBI_15414,S-adenosyl-L-methionine +14.8754069,CHEBI:16450,http://purl.obolibrary.org/obo/CHEBI_16450,2'-deoxyuridine +14.8754069,CHEBI:17295,http://purl.obolibrary.org/obo/CHEBI_17295,L-phenylalanine +14.8754069,CHEBI:17376,http://purl.obolibrary.org/obo/CHEBI_17376,cystine +14.8754069,CHEBI:19129,http://purl.obolibrary.org/obo/CHEBI_19129,11alpha-hydroxy steroid +14.8754069,CHEBI:21622,http://purl.obolibrary.org/obo/CHEBI_21622,N-acetylneuraminic acids +14.8754069,CHEBI:21760,http://purl.obolibrary.org/obo/CHEBI_21760,N-methyl-amino acid +14.8754069,CHEBI:21766,http://purl.obolibrary.org/obo/CHEBI_21766,N-methylglycines +14.8754069,CHEBI:22338,http://purl.obolibrary.org/obo/CHEBI_22338,alkyloxy group +14.8754069,CHEBI:22632,http://purl.obolibrary.org/obo/CHEBI_22632,arsenic molecular entity +14.8754069,CHEBI:23079,http://purl.obolibrary.org/obo/CHEBI_23079,cerebroside +14.8754069,CHEBI:23245,http://purl.obolibrary.org/obo/CHEBI_23245,cinnamaldehydes +14.8754069,CHEBI:23324,http://purl.obolibrary.org/obo/CHEBI_23324,citrullines +14.8754069,CHEBI:23359,http://purl.obolibrary.org/obo/CHEBI_23359,colchicine +14.8754069,CHEBI:24059,http://purl.obolibrary.org/obo/CHEBI_24059,fluorenes +14.8754069,CHEBI:24470,http://purl.obolibrary.org/obo/CHEBI_24470,haloamino acid +14.8754069,CHEBI:24862,http://purl.obolibrary.org/obo/CHEBI_24862,iodoamino acid +14.8754069,CHEBI:24922,http://purl.obolibrary.org/obo/CHEBI_24922,isoquinolines +14.8754069,CHEBI:25219,http://purl.obolibrary.org/obo/CHEBI_25219,methacrylic acid +14.8754069,CHEBI:26094,http://purl.obolibrary.org/obo/CHEBI_26094,benzenedicarboxylic acid +14.8754069,CHEBI:26407,http://purl.obolibrary.org/obo/CHEBI_26407,pyrans +14.8754069,CHEBI:26628,http://purl.obolibrary.org/obo/CHEBI_26628,selenium molecular entity +14.8754069,CHEBI:26776,http://purl.obolibrary.org/obo/CHEBI_26776,stilbenoid +14.8754069,CHEBI:26830,http://purl.obolibrary.org/obo/CHEBI_26830,sulfonium compound +14.8754069,CHEBI:26872,http://purl.obolibrary.org/obo/CHEBI_26872,terpene ketone +14.8754069,CHEBI:27365,http://purl.obolibrary.org/obo/CHEBI_27365,zinc ion +14.8754069,CHEBI:28358,http://purl.obolibrary.org/obo/CHEBI_28358,rac-lactic acid +14.8754069,CHEBI:28863,http://purl.obolibrary.org/obo/CHEBI_28863,flavanones +14.8754069,CHEBI:29013,http://purl.obolibrary.org/obo/CHEBI_29013,fusidic acid +14.8754069,CHEBI:30049,http://purl.obolibrary.org/obo/CHEBI_30049,teichoic acid +14.8754069,CHEBI:3160,http://purl.obolibrary.org/obo/CHEBI_3160,Botulinum toxin type A +14.8754069,CHEBI:31746,http://purl.obolibrary.org/obo/CHEBI_31746,kainic acid +14.8754069,CHEBI:3181,http://purl.obolibrary.org/obo/CHEBI_3181,bromocriptine +14.8754069,CHEBI:32486,http://purl.obolibrary.org/obo/CHEBI_32486,L-phenylalaninate +14.8754069,CHEBI:3306,http://purl.obolibrary.org/obo/CHEBI_3306,calcitonin +14.8754069,CHEBI:3312,http://purl.obolibrary.org/obo/CHEBI_3312,calcium dichloride +14.8754069,CHEBI:33288,http://purl.obolibrary.org/obo/CHEBI_33288,rodenticide +14.8754069,CHEBI:33321,http://purl.obolibrary.org/obo/CHEBI_33321,rare earth metal atom +14.8754069,CHEBI:35241,http://purl.obolibrary.org/obo/CHEBI_35241,nucleotide-carbohydrate +14.8754069,CHEBI:35255,http://purl.obolibrary.org/obo/CHEBI_35255,chloroform +14.8754069,CHEBI:35282,http://purl.obolibrary.org/obo/CHEBI_35282,sulfonium betaine +14.8754069,CHEBI:35362,http://purl.obolibrary.org/obo/CHEBI_35362,hydrazide +14.8754069,CHEBI:35972,http://purl.obolibrary.org/obo/CHEBI_35972,dihydroxy monocarboxylic acid +14.8754069,CHEBI:36417,http://purl.obolibrary.org/obo/CHEBI_36417,phenanthroline +14.8754069,CHEBI:38093,http://purl.obolibrary.org/obo/CHEBI_38093,phenothiazines +14.8754069,CHEBI:38461,http://purl.obolibrary.org/obo/CHEBI_38461,carbamate insecticide +14.8754069,CHEBI:38462,http://purl.obolibrary.org/obo/CHEBI_38462,EC 3.1.1.7 (acetylcholinesterase) inhibitor +14.8754069,CHEBI:38530,http://purl.obolibrary.org/obo/CHEBI_38530,quinazolines +14.8754069,CHEBI:38532,http://purl.obolibrary.org/obo/CHEBI_38532,hydrazone +14.8754069,CHEBI:38892,http://purl.obolibrary.org/obo/CHEBI_38892,disodium tetraborate +14.8754069,CHEBI:44520,http://purl.obolibrary.org/obo/CHEBI_44520,methoxy group +14.8754069,CHEBI:46920,http://purl.obolibrary.org/obo/CHEBI_46920,N-methylpiperazine +14.8754069,CHEBI:47265,http://purl.obolibrary.org/obo/CHEBI_47265,bromo group +14.8754069,CHEBI:47499,http://purl.obolibrary.org/obo/CHEBI_47499,imipramine +14.8754069,CHEBI:47784,http://purl.obolibrary.org/obo/CHEBI_47784,nucleotide conjugate +14.8754069,CHEBI:47945,http://purl.obolibrary.org/obo/CHEBI_47945,"2',3'-dideoxyribonucleoside" +14.8754069,CHEBI:48107,http://purl.obolibrary.org/obo/CHEBI_48107,nitric acid +14.8754069,CHEBI:4856,http://purl.obolibrary.org/obo/CHEBI_4856,esmolol +14.8754069,CHEBI:48589,http://purl.obolibrary.org/obo/CHEBI_48589,piperidones +14.8754069,CHEBI:48835,http://purl.obolibrary.org/obo/CHEBI_48835,phenanthrolines +14.8754069,CHEBI:4986,http://purl.obolibrary.org/obo/CHEBI_4986,fatty acid methyl ester +14.8754069,CHEBI:50229,http://purl.obolibrary.org/obo/CHEBI_50229,Schiff base +14.8754069,CHEBI:50796,http://purl.obolibrary.org/obo/CHEBI_50796,nanotube +14.8754069,CHEBI:50847,http://purl.obolibrary.org/obo/CHEBI_50847,immunological adjuvant +14.8754069,CHEBI:51100,http://purl.obolibrary.org/obo/CHEBI_51100,sulfonyl groups +14.8754069,CHEBI:51132,http://purl.obolibrary.org/obo/CHEBI_51132,nitroarene +14.8754069,CHEBI:51177,http://purl.obolibrary.org/obo/CHEBI_51177,antitussive +14.8754069,CHEBI:51219,http://purl.obolibrary.org/obo/CHEBI_51219,zinc tetrapyrrole +14.8754069,CHEBI:51266,http://purl.obolibrary.org/obo/CHEBI_51266,gelator +14.8754069,CHEBI:51903,http://purl.obolibrary.org/obo/CHEBI_51903,calcein +14.8754069,CHEBI:53063,http://purl.obolibrary.org/obo/CHEBI_53063,"2,4,6-trinitrobenzenesulfonic acid" +14.8754069,CHEBI:55369,http://purl.obolibrary.org/obo/CHEBI_55369,ifosfamides +14.8754069,CHEBI:5656,http://purl.obolibrary.org/obo/CHEBI_5656,deoxyhemoglobin +14.8754069,CHEBI:58951,http://purl.obolibrary.org/obo/CHEBI_58951,short-chain fatty acid anion +14.8754069,CHEBI:59174,http://purl.obolibrary.org/obo/CHEBI_59174,hapten +14.8754069,CHEBI:59765,http://purl.obolibrary.org/obo/CHEBI_59765,boric acids +14.8754069,CHEBI:59874,http://purl.obolibrary.org/obo/CHEBI_59874,N-acyl-L-alpha-amino acid anion +14.8754069,CHEBI:61051,http://purl.obolibrary.org/obo/CHEBI_61051,lipid hydroperoxide +14.8754069,CHEBI:62946,http://purl.obolibrary.org/obo/CHEBI_62946,ammonium sulfate +14.8754069,CHEBI:67040,http://purl.obolibrary.org/obo/CHEBI_67040,S-adenosyl-L-methioninate +14.8754069,CHEBI:71193,http://purl.obolibrary.org/obo/CHEBI_71193,liraglutide +14.8754069,CHEBI:7565,http://purl.obolibrary.org/obo/CHEBI_7565,nifedipine +14.8754069,CHEBI:75962,http://purl.obolibrary.org/obo/CHEBI_75962,methylated polymer +14.8754069,CHEBI:76773,http://purl.obolibrary.org/obo/CHEBI_76773,EC 3.1.1.* (carboxylic ester hydrolase) inhibitor +14.8754069,CHEBI:76983,http://purl.obolibrary.org/obo/CHEBI_76983,N-sulfonylurea +14.8754069,CHEBI:77055,http://purl.obolibrary.org/obo/CHEBI_77055,argemonine +14.8754069,CHEBI:77823,http://purl.obolibrary.org/obo/CHEBI_77823,tilidine +14.8754069,CHEBI:78782,http://purl.obolibrary.org/obo/CHEBI_78782,pyrrolidine dithiocarbamate +14.8754069,CHEBI:78787,http://purl.obolibrary.org/obo/CHEBI_78787,dithiocarbamic acids +14.8754069,CHEBI:80330,http://purl.obolibrary.org/obo/CHEBI_80330,peptide YY +14.8754069,CHEBI:84735,http://purl.obolibrary.org/obo/CHEBI_84735,algal metabolite +14.8754069,CHEBI:86318,http://purl.obolibrary.org/obo/CHEBI_86318,copper(II) chloride dihydrate +14.8754069,CHEBI:9925,http://purl.obolibrary.org/obo/CHEBI_9925,sodium valproate +14.8754069,CL:0000131,http://purl.obolibrary.org/obo/CL_0000131,gut endothelial cell +14.8754069,CL:0000418,http://purl.obolibrary.org/obo/CL_0000418,arcade cell +14.8754069,CL:0000741,http://purl.obolibrary.org/obo/CL_0000741,spinal accessory motor neuron +14.8754069,CL:0000848,http://purl.obolibrary.org/obo/CL_0000848,microvillous olfactory receptor neuron +14.8754069,CL:0000931,http://purl.obolibrary.org/obo/CL_0000931,activated type II NK T cell +14.8754069,CL:0002301,http://purl.obolibrary.org/obo/CL_0002301,type B synovial cell +14.8754069,CL:0002540,http://purl.obolibrary.org/obo/CL_0002540,mesenchymal stem cell of the bone marrow +14.8754069,CL:0002611,http://purl.obolibrary.org/obo/CL_0002611,neuron of the dorsal spinal cord +14.8754069,CL:0002671,http://purl.obolibrary.org/obo/CL_0002671,endothelial stalk cell +14.8754069,CL:0010005,http://purl.obolibrary.org/obo/CL_0010005,atrioventricular bundle cell +14.8754069,CL:0010007,http://purl.obolibrary.org/obo/CL_0010007,His-Purkinje system cell +14.8754069,CL:1001505,http://purl.obolibrary.org/obo/CL_1001505,parvocellular neurosecretory cell +14.8754069,DRUGBANK:DB00010,http://purl.obolibrary.org/obo/DRUGBANK_DB00010,none +14.8754069,DRUGBANK:DB01554,http://purl.obolibrary.org/obo/DRUGBANK_DB01554,none +14.8754069,DRUGBANK:DB01702,http://purl.obolibrary.org/obo/DRUGBANK_DB01702,none +14.8754069,DRUGBANK:DB01766,http://purl.obolibrary.org/obo/DRUGBANK_DB01766,none +14.8754069,DRUGBANK:DB01923,http://purl.obolibrary.org/obo/DRUGBANK_DB01923,none +14.8754069,DRUGBANK:DB01946,http://purl.obolibrary.org/obo/DRUGBANK_DB01946,none +14.8754069,DRUGBANK:DB02210,http://purl.obolibrary.org/obo/DRUGBANK_DB02210,none +14.8754069,DRUGBANK:DB02340,http://purl.obolibrary.org/obo/DRUGBANK_DB02340,none +14.8754069,DRUGBANK:DB02481,http://purl.obolibrary.org/obo/DRUGBANK_DB02481,none +14.8754069,DRUGBANK:DB02501,http://purl.obolibrary.org/obo/DRUGBANK_DB02501,none +14.8754069,DRUGBANK:DB02694,http://purl.obolibrary.org/obo/DRUGBANK_DB02694,none +14.8754069,DRUGBANK:DB02958,http://purl.obolibrary.org/obo/DRUGBANK_DB02958,none +14.8754069,DRUGBANK:DB03021,http://purl.obolibrary.org/obo/DRUGBANK_DB03021,none +14.8754069,DRUGBANK:DB03105,http://purl.obolibrary.org/obo/DRUGBANK_DB03105,none +14.8754069,DRUGBANK:DB03243,http://purl.obolibrary.org/obo/DRUGBANK_DB03243,none +14.8754069,DRUGBANK:DB03279,http://purl.obolibrary.org/obo/DRUGBANK_DB03279,none +14.8754069,DRUGBANK:DB03362,http://purl.obolibrary.org/obo/DRUGBANK_DB03362,none +14.8754069,DRUGBANK:DB03418,http://purl.obolibrary.org/obo/DRUGBANK_DB03418,none +14.8754069,DRUGBANK:DB03611,http://purl.obolibrary.org/obo/DRUGBANK_DB03611,none +14.8754069,DRUGBANK:DB03673,http://purl.obolibrary.org/obo/DRUGBANK_DB03673,none +14.8754069,DRUGBANK:DB03810,http://purl.obolibrary.org/obo/DRUGBANK_DB03810,none +14.8754069,DRUGBANK:DB04219,http://purl.obolibrary.org/obo/DRUGBANK_DB04219,none +14.8754069,DRUGBANK:DB04260,http://purl.obolibrary.org/obo/DRUGBANK_DB04260,none +14.8754069,DRUGBANK:DB04364,http://purl.obolibrary.org/obo/DRUGBANK_DB04364,none +14.8754069,DRUGBANK:DB04385,http://purl.obolibrary.org/obo/DRUGBANK_DB04385,none +14.8754069,DRUGBANK:DB04497,http://purl.obolibrary.org/obo/DRUGBANK_DB04497,none +14.8754069,DRUGBANK:DB04580,http://purl.obolibrary.org/obo/DRUGBANK_DB04580,none +14.8754069,DRUGBANK:DB04755,http://purl.obolibrary.org/obo/DRUGBANK_DB04755,none +14.8754069,DRUGBANK:DB04978,http://purl.obolibrary.org/obo/DRUGBANK_DB04978,none +14.8754069,DRUGBANK:DB04992,http://purl.obolibrary.org/obo/DRUGBANK_DB04992,none +14.8754069,DRUGBANK:DB05038,http://purl.obolibrary.org/obo/DRUGBANK_DB05038,none +14.8754069,DRUGBANK:DB05050,http://purl.obolibrary.org/obo/DRUGBANK_DB05050,none +14.8754069,DRUGBANK:DB05070,http://purl.obolibrary.org/obo/DRUGBANK_DB05070,none +14.8754069,DRUGBANK:DB05442,http://purl.obolibrary.org/obo/DRUGBANK_DB05442,none +14.8754069,DRUGBANK:DB05500,http://purl.obolibrary.org/obo/DRUGBANK_DB05500,none +14.8754069,DRUGBANK:DB05506,http://purl.obolibrary.org/obo/DRUGBANK_DB05506,none +14.8754069,DRUGBANK:DB05552,http://purl.obolibrary.org/obo/DRUGBANK_DB05552,none +14.8754069,DRUGBANK:DB05742,http://purl.obolibrary.org/obo/DRUGBANK_DB05742,none +14.8754069,DRUGBANK:DB05803,http://purl.obolibrary.org/obo/DRUGBANK_DB05803,none +14.8754069,DRUGBANK:DB05915,http://purl.obolibrary.org/obo/DRUGBANK_DB05915,none +14.8754069,DRUGBANK:DB06050,http://purl.obolibrary.org/obo/DRUGBANK_DB06050,none +14.8754069,DRUGBANK:DB06061,http://purl.obolibrary.org/obo/DRUGBANK_DB06061,none +14.8754069,DRUGBANK:DB06089,http://purl.obolibrary.org/obo/DRUGBANK_DB06089,none +14.8754069,DRUGBANK:DB06101,http://purl.obolibrary.org/obo/DRUGBANK_DB06101,none +14.8754069,DRUGBANK:DB06241,http://purl.obolibrary.org/obo/DRUGBANK_DB06241,none +14.8754069,DRUGBANK:DB06345,http://purl.obolibrary.org/obo/DRUGBANK_DB06345,none +14.8754069,DRUGBANK:DB06360,http://purl.obolibrary.org/obo/DRUGBANK_DB06360,none +14.8754069,DRUGBANK:DB06362,http://purl.obolibrary.org/obo/DRUGBANK_DB06362,none +14.8754069,DRUGBANK:DB06504,http://purl.obolibrary.org/obo/DRUGBANK_DB06504,none +14.8754069,DRUGBANK:DB06549,http://purl.obolibrary.org/obo/DRUGBANK_DB06549,none +14.8754069,DRUGBANK:DB06575,http://purl.obolibrary.org/obo/DRUGBANK_DB06575,none +14.8754069,DRUGBANK:DB06604,http://purl.obolibrary.org/obo/DRUGBANK_DB06604,none +14.8754069,DRUGBANK:DB06618,http://purl.obolibrary.org/obo/DRUGBANK_DB06618,none +14.8754069,DRUGBANK:DB06852,http://purl.obolibrary.org/obo/DRUGBANK_DB06852,none +14.8754069,DRUGBANK:DB08687,http://purl.obolibrary.org/obo/DRUGBANK_DB08687,none +14.8754069,DRUGBANK:DB08978,http://purl.obolibrary.org/obo/DRUGBANK_DB08978,none +14.8754069,DRUGBANK:DB09317,http://purl.obolibrary.org/obo/DRUGBANK_DB09317,none +14.8754069,DRUGBANK:DB09326,http://purl.obolibrary.org/obo/DRUGBANK_DB09326,none +14.8754069,DRUGBANK:DB09499,http://purl.obolibrary.org/obo/DRUGBANK_DB09499,none +14.8754069,DRUGBANK:DB10368,http://purl.obolibrary.org/obo/DRUGBANK_DB10368,none +14.8754069,DRUGBANK:DB10388,http://purl.obolibrary.org/obo/DRUGBANK_DB10388,none +14.8754069,DRUGBANK:DB10444,http://purl.obolibrary.org/obo/DRUGBANK_DB10444,none +14.8754069,DRUGBANK:DB10860,http://purl.obolibrary.org/obo/DRUGBANK_DB10860,none +14.8754069,DRUGBANK:DB10940,http://purl.obolibrary.org/obo/DRUGBANK_DB10940,none +14.8754069,DRUGBANK:DB11222,http://purl.obolibrary.org/obo/DRUGBANK_DB11222,none +14.8754069,DRUGBANK:DB11223,http://purl.obolibrary.org/obo/DRUGBANK_DB11223,none +14.8754069,DRUGBANK:DB11355,http://purl.obolibrary.org/obo/DRUGBANK_DB11355,none +14.8754069,DRUGBANK:DB11463,http://purl.obolibrary.org/obo/DRUGBANK_DB11463,none +14.8754069,DRUGBANK:DB11609,http://purl.obolibrary.org/obo/DRUGBANK_DB11609,none +14.8754069,DRUGBANK:DB11652,http://purl.obolibrary.org/obo/DRUGBANK_DB11652,none +14.8754069,DRUGBANK:DB11836,http://purl.obolibrary.org/obo/DRUGBANK_DB11836,none +14.8754069,DRUGBANK:DB11845,http://purl.obolibrary.org/obo/DRUGBANK_DB11845,none +14.8754069,DRUGBANK:DB11951,http://purl.obolibrary.org/obo/DRUGBANK_DB11951,none +14.8754069,DRUGBANK:DB12050,http://purl.obolibrary.org/obo/DRUGBANK_DB12050,none +14.8754069,DRUGBANK:DB12124,http://purl.obolibrary.org/obo/DRUGBANK_DB12124,none +14.8754069,DRUGBANK:DB12125,http://purl.obolibrary.org/obo/DRUGBANK_DB12125,none +14.8754069,DRUGBANK:DB12150,http://purl.obolibrary.org/obo/DRUGBANK_DB12150,none +14.8754069,DRUGBANK:DB12195,http://purl.obolibrary.org/obo/DRUGBANK_DB12195,none +14.8754069,DRUGBANK:DB12246,http://purl.obolibrary.org/obo/DRUGBANK_DB12246,none +14.8754069,DRUGBANK:DB12283,http://purl.obolibrary.org/obo/DRUGBANK_DB12283,none +14.8754069,DRUGBANK:DB12318,http://purl.obolibrary.org/obo/DRUGBANK_DB12318,none +14.8754069,DRUGBANK:DB12368,http://purl.obolibrary.org/obo/DRUGBANK_DB12368,none +14.8754069,DRUGBANK:DB12394,http://purl.obolibrary.org/obo/DRUGBANK_DB12394,none +14.8754069,DRUGBANK:DB12409,http://purl.obolibrary.org/obo/DRUGBANK_DB12409,none +14.8754069,DRUGBANK:DB12540,http://purl.obolibrary.org/obo/DRUGBANK_DB12540,none +14.8754069,DRUGBANK:DB12557,http://purl.obolibrary.org/obo/DRUGBANK_DB12557,none +14.8754069,DRUGBANK:DB12644,http://purl.obolibrary.org/obo/DRUGBANK_DB12644,none +14.8754069,DRUGBANK:DB12691,http://purl.obolibrary.org/obo/DRUGBANK_DB12691,none +14.8754069,DRUGBANK:DB12699,http://purl.obolibrary.org/obo/DRUGBANK_DB12699,none +14.8754069,DRUGBANK:DB12703,http://purl.obolibrary.org/obo/DRUGBANK_DB12703,none +14.8754069,DRUGBANK:DB12808,http://purl.obolibrary.org/obo/DRUGBANK_DB12808,none +14.8754069,DRUGBANK:DB12817,http://purl.obolibrary.org/obo/DRUGBANK_DB12817,none +14.8754069,DRUGBANK:DB12835,http://purl.obolibrary.org/obo/DRUGBANK_DB12835,none +14.8754069,DRUGBANK:DB12895,http://purl.obolibrary.org/obo/DRUGBANK_DB12895,none +14.8754069,DRUGBANK:DB13012,http://purl.obolibrary.org/obo/DRUGBANK_DB13012,none +14.8754069,DRUGBANK:DB13077,http://purl.obolibrary.org/obo/DRUGBANK_DB13077,none +14.8754069,DRUGBANK:DB13208,http://purl.obolibrary.org/obo/DRUGBANK_DB13208,none +14.8754069,DRUGBANK:DB13229,http://purl.obolibrary.org/obo/DRUGBANK_DB13229,none +14.8754069,DRUGBANK:DB13239,http://purl.obolibrary.org/obo/DRUGBANK_DB13239,none +14.8754069,DRUGBANK:DB13330,http://purl.obolibrary.org/obo/DRUGBANK_DB13330,none +14.8754069,DRUGBANK:DB13341,http://purl.obolibrary.org/obo/DRUGBANK_DB13341,none +14.8754069,DRUGBANK:DB13350,http://purl.obolibrary.org/obo/DRUGBANK_DB13350,none +14.8754069,DRUGBANK:DB13413,http://purl.obolibrary.org/obo/DRUGBANK_DB13413,none +14.8754069,DRUGBANK:DB13468,http://purl.obolibrary.org/obo/DRUGBANK_DB13468,none +14.8754069,DRUGBANK:DB13535,http://purl.obolibrary.org/obo/DRUGBANK_DB13535,none +14.8754069,DRUGBANK:DB13537,http://purl.obolibrary.org/obo/DRUGBANK_DB13537,none +14.8754069,DRUGBANK:DB13666,http://purl.obolibrary.org/obo/DRUGBANK_DB13666,none +14.8754069,DRUGBANK:DB13759,http://purl.obolibrary.org/obo/DRUGBANK_DB13759,none +14.8754069,DRUGBANK:DB13779,http://purl.obolibrary.org/obo/DRUGBANK_DB13779,none +14.8754069,DRUGBANK:DB13798,http://purl.obolibrary.org/obo/DRUGBANK_DB13798,none +14.8754069,DRUGBANK:DB13846,http://purl.obolibrary.org/obo/DRUGBANK_DB13846,none +14.8754069,DRUGBANK:DB13979,http://purl.obolibrary.org/obo/DRUGBANK_DB13979,none +14.8754069,DRUGBANK:DB13994,http://purl.obolibrary.org/obo/DRUGBANK_DB13994,none +14.8754069,DRUGBANK:DB14018,http://purl.obolibrary.org/obo/DRUGBANK_DB14018,none +14.8754069,DRUGBANK:DB14079,http://purl.obolibrary.org/obo/DRUGBANK_DB14079,none +14.8754069,DRUGBANK:DB14127,http://purl.obolibrary.org/obo/DRUGBANK_DB14127,none +14.8754069,DRUGBANK:DB14261,http://purl.obolibrary.org/obo/DRUGBANK_DB14261,none +14.8754069,DRUGBANK:DB14306,http://purl.obolibrary.org/obo/DRUGBANK_DB14306,none +14.8754069,DRUGBANK:DB14720,http://purl.obolibrary.org/obo/DRUGBANK_DB14720,none +14.8754069,DRUGBANK:DB14724,http://purl.obolibrary.org/obo/DRUGBANK_DB14724,none +14.8754069,DRUGBANK:DB14810,http://purl.obolibrary.org/obo/DRUGBANK_DB14810,none +14.8754069,DRUGBANK:DB14828,http://purl.obolibrary.org/obo/DRUGBANK_DB14828,none +14.8754069,DRUGBANK:DB14870,http://purl.obolibrary.org/obo/DRUGBANK_DB14870,none +14.8754069,DRUGBANK:DB14876,http://purl.obolibrary.org/obo/DRUGBANK_DB14876,none +14.8754069,DRUGBANK:DB14910,http://purl.obolibrary.org/obo/DRUGBANK_DB14910,none +14.8754069,DRUGBANK:DB14961,http://purl.obolibrary.org/obo/DRUGBANK_DB14961,none +14.8754069,DRUGBANK:DB15013,http://purl.obolibrary.org/obo/DRUGBANK_DB15013,none +14.8754069,DRUGBANK:DB15029,http://purl.obolibrary.org/obo/DRUGBANK_DB15029,none +14.8754069,DRUGBANK:DB15045,http://purl.obolibrary.org/obo/DRUGBANK_DB15045,none +14.8754069,DRUGBANK:DB15069,http://purl.obolibrary.org/obo/DRUGBANK_DB15069,none +14.8754069,DRUGBANK:DB15094,http://purl.obolibrary.org/obo/DRUGBANK_DB15094,none +14.8754069,DRUGBANK:DB15095,http://purl.obolibrary.org/obo/DRUGBANK_DB15095,none +14.8754069,DRUGBANK:DB15192,http://purl.obolibrary.org/obo/DRUGBANK_DB15192,none +14.8754069,DRUGBANK:DB15245,http://purl.obolibrary.org/obo/DRUGBANK_DB15245,none +14.8754069,DRUGBANK:DB15389,http://purl.obolibrary.org/obo/DRUGBANK_DB15389,none +14.8754069,DRUGBANK:DB15575,http://purl.obolibrary.org/obo/DRUGBANK_DB15575,none +14.8754069,DRUGBANK:DB15644,http://purl.obolibrary.org/obo/DRUGBANK_DB15644,none +14.8754069,DRUGBANK:DB15720,http://purl.obolibrary.org/obo/DRUGBANK_DB15720,none +14.8754069,DRUGBANK:DB15777,http://purl.obolibrary.org/obo/DRUGBANK_DB15777,none +14.8754069,DRUGBANK:DB15894,http://purl.obolibrary.org/obo/DRUGBANK_DB15894,none +14.8754069,DRUGBANK:DB15936,http://purl.obolibrary.org/obo/DRUGBANK_DB15936,none +14.8754069,DRUGBANK:DB16030,http://purl.obolibrary.org/obo/DRUGBANK_DB16030,none +14.8754069,DRUGBANK:DB16132,http://purl.obolibrary.org/obo/DRUGBANK_DB16132,none +14.8754069,DRUGBANK:DB16141,http://purl.obolibrary.org/obo/DRUGBANK_DB16141,none +14.8754069,DRUGBANK:DB16195,http://purl.obolibrary.org/obo/DRUGBANK_DB16195,none +14.8754069,DRUGBANK:DB16219,http://purl.obolibrary.org/obo/DRUGBANK_DB16219,none +14.8754069,DRUGBANK:DB16230,http://purl.obolibrary.org/obo/DRUGBANK_DB16230,none +14.8754069,DRUGBANK:DB16238,http://purl.obolibrary.org/obo/DRUGBANK_DB16238,none +14.8754069,DRUGBANK:DB16289,http://purl.obolibrary.org/obo/DRUGBANK_DB16289,none +14.8754069,DRUGBANK:DB16298,http://purl.obolibrary.org/obo/DRUGBANK_DB16298,none +14.8754069,DRUGBANK:DB16311,http://purl.obolibrary.org/obo/DRUGBANK_DB16311,none +14.8754069,DRUGBANK:DB16334,http://purl.obolibrary.org/obo/DRUGBANK_DB16334,none +14.8754069,DRUGBANK:DB16351,http://purl.obolibrary.org/obo/DRUGBANK_DB16351,none +14.8754069,DRUGBANK:DB16378,http://purl.obolibrary.org/obo/DRUGBANK_DB16378,none +14.8754069,GO:0000179,http://purl.obolibrary.org/obo/GO_0000179,"rRNA (adenine-N6,N6-)-dimethyltransferase activity" +14.8754069,GO:0000277,http://purl.obolibrary.org/obo/GO_0000277,[cytochrome c]-lysine N-methyltransferase activity +14.8754069,GO:0000444,http://purl.obolibrary.org/obo/GO_0000444,MIS12/MIND type complex +14.8754069,GO:0000451,http://purl.obolibrary.org/obo/GO_0000451,rRNA 2'-O-methylation +14.8754069,GO:0000481,http://purl.obolibrary.org/obo/GO_0000481,maturation of 5S rRNA +14.8754069,GO:0000710,http://purl.obolibrary.org/obo/GO_0000710,meiotic mismatch repair +14.8754069,GO:0000801,http://purl.obolibrary.org/obo/GO_0000801,central element +14.8754069,GO:0000818,http://purl.obolibrary.org/obo/GO_0000818,nuclear MIS12/MIND complex +14.8754069,GO:0001114,http://purl.obolibrary.org/obo/GO_0001114,protein-DNA-RNA complex +14.8754069,GO:0001788,http://purl.obolibrary.org/obo/GO_0001788,antibody-dependent cellular cytotoxicity +14.8754069,GO:0001794,http://purl.obolibrary.org/obo/GO_0001794,type IIa hypersensitivity +14.8754069,GO:0002116,http://purl.obolibrary.org/obo/GO_0002116,semaphorin receptor complex +14.8754069,GO:0002123,http://purl.obolibrary.org/obo/GO_0002123,irritable aggressive behavior +14.8754069,GO:0002161,http://purl.obolibrary.org/obo/GO_0002161,aminoacyl-tRNA editing activity +14.8754069,GO:0002315,http://purl.obolibrary.org/obo/GO_0002315,marginal zone B cell differentiation +14.8754069,GO:0002368,http://purl.obolibrary.org/obo/GO_0002368,B cell cytokine production +14.8754069,GO:0002388,http://purl.obolibrary.org/obo/GO_0002388,immune response in Peyer's patch +14.8754069,GO:0002445,http://purl.obolibrary.org/obo/GO_0002445,type II hypersensitivity +14.8754069,GO:0002715,http://purl.obolibrary.org/obo/GO_0002715,regulation of natural killer cell mediated immunity +14.8754069,GO:0002821,http://purl.obolibrary.org/obo/GO_0002821,positive regulation of adaptive immune response +14.8754069,GO:0003094,http://purl.obolibrary.org/obo/GO_0003094,glomerular filtration +14.8754069,GO:0003417,http://purl.obolibrary.org/obo/GO_0003417,growth plate cartilage development +14.8754069,GO:0003908,http://purl.obolibrary.org/obo/GO_0003908,methylated-DNA-[protein]-cysteine S-methyltransferase activity +14.8754069,GO:0003937,http://purl.obolibrary.org/obo/GO_0003937,IMP cyclohydrolase activity +14.8754069,GO:0004355,http://purl.obolibrary.org/obo/GO_0004355,glutamate synthase (NADPH) activity +14.8754069,GO:0004376,http://purl.obolibrary.org/obo/GO_0004376,glycolipid mannosyltransferase activity +14.8754069,GO:0004833,http://purl.obolibrary.org/obo/GO_0004833,"tryptophan 2,3-dioxygenase activity" +14.8754069,GO:0005001,http://purl.obolibrary.org/obo/GO_0005001,transmembrane receptor protein tyrosine phosphatase activity +14.8754069,GO:0005697,http://purl.obolibrary.org/obo/GO_0005697,telomerase holoenzyme complex +14.8754069,GO:0005705,http://purl.obolibrary.org/obo/GO_0005705,polytene chromosome interband +14.8754069,GO:0005784,http://purl.obolibrary.org/obo/GO_0005784,Sec61 translocon complex +14.8754069,GO:0005898,http://purl.obolibrary.org/obo/GO_0005898,interleukin-13 receptor complex +14.8754069,GO:0005916,http://purl.obolibrary.org/obo/GO_0005916,fascia adherens +14.8754069,GO:0005964,http://purl.obolibrary.org/obo/GO_0005964,phosphorylase kinase complex +14.8754069,GO:0006056,http://purl.obolibrary.org/obo/GO_0006056,mannoprotein metabolic process +14.8754069,GO:0006465,http://purl.obolibrary.org/obo/GO_0006465,signal peptide processing +14.8754069,GO:0006642,http://purl.obolibrary.org/obo/GO_0006642,triglyceride mobilization +14.8754069,GO:0006681,http://purl.obolibrary.org/obo/GO_0006681,galactosylceramide metabolic process +14.8754069,GO:0006719,http://purl.obolibrary.org/obo/GO_0006719,juvenile hormone catabolic process +14.8754069,GO:0006904,http://purl.obolibrary.org/obo/GO_0006904,vesicle docking involved in exocytosis +14.8754069,GO:0007270,http://purl.obolibrary.org/obo/GO_0007270,neuron-neuron synaptic transmission +14.8754069,GO:0007379,http://purl.obolibrary.org/obo/GO_0007379,segment specification +14.8754069,GO:0007516,http://purl.obolibrary.org/obo/GO_0007516,hemocyte development +14.8754069,GO:0008409,http://purl.obolibrary.org/obo/GO_0008409,5'-3' exonuclease activity +14.8754069,GO:0008412,http://purl.obolibrary.org/obo/GO_0008412,4-hydroxybenzoate octaprenyltransferase activity +14.8754069,GO:0008448,http://purl.obolibrary.org/obo/GO_0008448,N-acetylglucosamine-6-phosphate deacetylase activity +14.8754069,GO:0008490,http://purl.obolibrary.org/obo/GO_0008490,arsenite secondary active transmembrane transporter activity +14.8754069,GO:0008525,http://purl.obolibrary.org/obo/GO_0008525,phosphatidylcholine transporter activity +14.8754069,GO:0008697,http://purl.obolibrary.org/obo/GO_0008697,4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase activity +14.8754069,GO:0008744,http://purl.obolibrary.org/obo/GO_0008744,L-xylulokinase activity +14.8754069,GO:0008770,http://purl.obolibrary.org/obo/GO_0008770,[acyl-carrier-protein] phosphodiesterase activity +14.8754069,GO:0008788,http://purl.obolibrary.org/obo/GO_0008788,"alpha,alpha-phosphotrehalase activity" +14.8754069,GO:0008886,http://purl.obolibrary.org/obo/GO_0008886,glyceraldehyde-3-phosphate dehydrogenase (NADP+) (non-phosphorylating) activity +14.8754069,GO:0009037,http://purl.obolibrary.org/obo/GO_0009037,tyrosine-based site-specific recombinase activity +14.8754069,GO:0009842,http://purl.obolibrary.org/obo/GO_0009842,cyanelle +14.8754069,GO:0009865,http://purl.obolibrary.org/obo/GO_0009865,pollen tube adhesion +14.8754069,GO:0009992,http://purl.obolibrary.org/obo/GO_0009992,cellular water homeostasis +14.8754069,GO:0010049,http://purl.obolibrary.org/obo/GO_0010049,acquisition of plant reproductive competence +14.8754069,GO:0010052,http://purl.obolibrary.org/obo/GO_0010052,guard cell differentiation +14.8754069,GO:0010127,http://purl.obolibrary.org/obo/GO_0010127,mycothiol-dependent detoxification +14.8754069,GO:0010257,http://purl.obolibrary.org/obo/GO_0010257,NADH dehydrogenase complex assembly +14.8754069,GO:0010380,http://purl.obolibrary.org/obo/GO_0010380,regulation of chlorophyll biosynthetic process +14.8754069,GO:0010430,http://purl.obolibrary.org/obo/GO_0010430,fatty acid omega-oxidation +14.8754069,GO:0010441,http://purl.obolibrary.org/obo/GO_0010441,guard cell development +14.8754069,GO:0010464,http://purl.obolibrary.org/obo/GO_0010464,regulation of mesenchymal cell proliferation +14.8754069,GO:0010858,http://purl.obolibrary.org/obo/GO_0010858,calcium-dependent protein kinase regulator activity +14.8754069,GO:0015205,http://purl.obolibrary.org/obo/GO_0015205,nucleobase transmembrane transporter activity +14.8754069,GO:0015349,http://purl.obolibrary.org/obo/GO_0015349,thyroid hormone transmembrane transporter activity +14.8754069,GO:0015446,http://purl.obolibrary.org/obo/GO_0015446,ATPase-coupled arsenite transmembrane transporter activity +14.8754069,GO:0015467,http://purl.obolibrary.org/obo/GO_0015467,G-protein activated inward rectifier potassium channel activity +14.8754069,GO:0015733,http://purl.obolibrary.org/obo/GO_0015733,shikimate transmembrane transport +14.8754069,GO:0015880,http://purl.obolibrary.org/obo/GO_0015880,coenzyme A transport +14.8754069,GO:0016075,http://purl.obolibrary.org/obo/GO_0016075,rRNA catabolic process +14.8754069,GO:0016081,http://purl.obolibrary.org/obo/GO_0016081,synaptic vesicle docking +14.8754069,GO:0016107,http://purl.obolibrary.org/obo/GO_0016107,sesquiterpenoid catabolic process +14.8754069,GO:0016154,http://purl.obolibrary.org/obo/GO_0016154,pyrimidine-nucleoside phosphorylase activity +14.8754069,GO:0016216,http://purl.obolibrary.org/obo/GO_0016216,isopenicillin-N synthase activity +14.8754069,GO:0016320,http://purl.obolibrary.org/obo/GO_0016320,endoplasmic reticulum membrane fusion +14.8754069,GO:0016327,http://purl.obolibrary.org/obo/GO_0016327,apicolateral plasma membrane +14.8754069,GO:0016460,http://purl.obolibrary.org/obo/GO_0016460,myosin II complex +14.8754069,GO:0017062,http://purl.obolibrary.org/obo/GO_0017062,respiratory chain complex III assembly +14.8754069,GO:0017065,http://purl.obolibrary.org/obo/GO_0017065,single-strand selective uracil DNA N-glycosylase activity +14.8754069,GO:0017176,http://purl.obolibrary.org/obo/GO_0017176,phosphatidylinositol N-acetylglucosaminyltransferase activity +14.8754069,GO:0018107,http://purl.obolibrary.org/obo/GO_0018107,peptidyl-threonine phosphorylation +14.8754069,GO:0018210,http://purl.obolibrary.org/obo/GO_0018210,peptidyl-threonine modification +14.8754069,GO:0018538,http://purl.obolibrary.org/obo/GO_0018538,epoxide carboxylase activity +14.8754069,GO:0018670,http://purl.obolibrary.org/obo/GO_0018670,4-aminobenzoate 1-monooxygenase activity +14.8754069,GO:0018819,http://purl.obolibrary.org/obo/GO_0018819,lactoyl-CoA dehydratase activity +14.8754069,GO:0018823,http://purl.obolibrary.org/obo/GO_0018823,"cyclohexa-1,5-dienecarbonyl-CoA hydratase activity" +14.8754069,GO:0019113,http://purl.obolibrary.org/obo/GO_0019113,limonene monooxygenase activity +14.8754069,GO:0019198,http://purl.obolibrary.org/obo/GO_0019198,transmembrane receptor protein phosphatase activity +14.8754069,GO:0019329,http://purl.obolibrary.org/obo/GO_0019329,ammonia oxidation +14.8754069,GO:0019371,http://purl.obolibrary.org/obo/GO_0019371,cyclooxygenase pathway +14.8754069,GO:0019483,http://purl.obolibrary.org/obo/GO_0019483,beta-alanine biosynthetic process +14.8754069,GO:0019539,http://purl.obolibrary.org/obo/GO_0019539,hydroxymate-containing siderophore biosynthetic process +14.8754069,GO:0019655,http://purl.obolibrary.org/obo/GO_0019655,glycolytic fermentation to ethanol +14.8754069,GO:0019834,http://purl.obolibrary.org/obo/GO_0019834,phospholipase A2 inhibitor activity +14.8754069,GO:0020011,http://purl.obolibrary.org/obo/GO_0020011,apicoplast +14.8754069,GO:0021555,http://purl.obolibrary.org/obo/GO_0021555,midbrain-hindbrain boundary morphogenesis +14.8754069,GO:0023021,http://purl.obolibrary.org/obo/GO_0023021,termination of signal transduction +14.8754069,GO:0030035,http://purl.obolibrary.org/obo/GO_0030035,microspike assembly +14.8754069,GO:0030060,http://purl.obolibrary.org/obo/GO_0030060,L-malate dehydrogenase activity +14.8754069,GO:0030118,http://purl.obolibrary.org/obo/GO_0030118,clathrin coat +14.8754069,GO:0030510,http://purl.obolibrary.org/obo/GO_0030510,regulation of BMP signaling pathway +14.8754069,GO:0030516,http://purl.obolibrary.org/obo/GO_0030516,regulation of axon extension +14.8754069,GO:0030632,http://purl.obolibrary.org/obo/GO_0030632,D-alanine biosynthetic process +14.8754069,GO:0030704,http://purl.obolibrary.org/obo/GO_0030704,vitelline membrane formation +14.8754069,GO:0030752,http://purl.obolibrary.org/obo/GO_0030752,5-hydroxyfuranocoumarin 5-O-methyltransferase activity +14.8754069,GO:0030857,http://purl.obolibrary.org/obo/GO_0030857,negative regulation of epithelial cell differentiation +14.8754069,GO:0030869,http://purl.obolibrary.org/obo/GO_0030869,RENT complex +14.8754069,GO:0030896,http://purl.obolibrary.org/obo/GO_0030896,checkpoint clamp complex +14.8754069,GO:0031147,http://purl.obolibrary.org/obo/GO_0031147,"1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process" +14.8754069,GO:0031155,http://purl.obolibrary.org/obo/GO_0031155,regulation of reproductive fruiting body development +14.8754069,GO:0031168,http://purl.obolibrary.org/obo/GO_0031168,ferrichrome metabolic process +14.8754069,GO:0031169,http://purl.obolibrary.org/obo/GO_0031169,ferrichrome biosynthetic process +14.8754069,GO:0031371,http://purl.obolibrary.org/obo/GO_0031371,ubiquitin conjugating enzyme complex +14.8754069,GO:0031923,http://purl.obolibrary.org/obo/GO_0031923,pyridoxine transport +14.8754069,GO:0031946,http://purl.obolibrary.org/obo/GO_0031946,regulation of glucocorticoid biosynthetic process +14.8754069,GO:0032095,http://purl.obolibrary.org/obo/GO_0032095,regulation of response to food +14.8754069,GO:0032424,http://purl.obolibrary.org/obo/GO_0032424,negative regulation of mismatch repair +14.8754069,GO:0032667,http://purl.obolibrary.org/obo/GO_0032667,regulation of interleukin-23 production +14.8754069,GO:0032720,http://purl.obolibrary.org/obo/GO_0032720,negative regulation of tumor necrosis factor production +14.8754069,GO:0032729,http://purl.obolibrary.org/obo/GO_0032729,positive regulation of interferon-gamma production +14.8754069,GO:0032946,http://purl.obolibrary.org/obo/GO_0032946,positive regulation of mononuclear cell proliferation +14.8754069,GO:0032981,http://purl.obolibrary.org/obo/GO_0032981,mitochondrial respiratory chain complex I assembly +14.8754069,GO:0033083,http://purl.obolibrary.org/obo/GO_0033083,regulation of immature T cell proliferation +14.8754069,GO:0033084,http://purl.obolibrary.org/obo/GO_0033084,regulation of immature T cell proliferation in thymus +14.8754069,GO:0033263,http://purl.obolibrary.org/obo/GO_0033263,CORVET complex +14.8754069,GO:0033347,http://purl.obolibrary.org/obo/GO_0033347,tetrose metabolic process +14.8754069,GO:0033517,http://purl.obolibrary.org/obo/GO_0033517,myo-inositol hexakisphosphate metabolic process +14.8754069,GO:0033525,http://purl.obolibrary.org/obo/GO_0033525,sinapate ester biosynthetic process +14.8754069,GO:0033828,http://purl.obolibrary.org/obo/GO_0033828,glucosylglycerol-phosphate synthase activity +14.8754069,GO:0033958,http://purl.obolibrary.org/obo/GO_0033958,DNA-deoxyinosine glycosylase activity +14.8754069,GO:0033997,http://purl.obolibrary.org/obo/GO_0033997,inulin fructotransferase (DFA-I-forming) activity +14.8754069,GO:0034158,http://purl.obolibrary.org/obo/GO_0034158,toll-like receptor 8 signaling pathway +14.8754069,GO:0034263,http://purl.obolibrary.org/obo/GO_0034263,positive regulation of autophagy in response to ER overload +14.8754069,GO:0034377,http://purl.obolibrary.org/obo/GO_0034377,plasma lipoprotein particle assembly +14.8754069,GO:0034656,http://purl.obolibrary.org/obo/GO_0034656,nucleobase-containing small molecule catabolic process +14.8754069,GO:0034675,http://purl.obolibrary.org/obo/GO_0034675,integrin alpha6-beta1 complex +14.8754069,GO:0035704,http://purl.obolibrary.org/obo/GO_0035704,helper T cell chemotaxis +14.8754069,GO:0035803,http://purl.obolibrary.org/obo/GO_0035803,egg coat formation +14.8754069,GO:0035943,http://purl.obolibrary.org/obo/GO_0035943,estrone secretion +14.8754069,GO:0036067,http://purl.obolibrary.org/obo/GO_0036067,light-dependent chlorophyll biosynthetic process +14.8754069,GO:0036200,http://purl.obolibrary.org/obo/GO_0036200,3-ketosteroid 9-alpha-monooxygenase activity +14.8754069,GO:0036208,http://purl.obolibrary.org/obo/GO_0036208,none +14.8754069,GO:0036474,http://purl.obolibrary.org/obo/GO_0036474,cell death in response to hydrogen peroxide +14.8754069,GO:0038055,http://purl.obolibrary.org/obo/GO_0038055,BMP secretion +14.8754069,GO:0039630,http://purl.obolibrary.org/obo/GO_0039630,RNA translocase activity +14.8754069,GO:0042105,http://purl.obolibrary.org/obo/GO_0042105,alpha-beta T cell receptor complex +14.8754069,GO:0042296,http://purl.obolibrary.org/obo/GO_0042296,ISG15 transferase activity +14.8754069,GO:0042492,http://purl.obolibrary.org/obo/GO_0042492,gamma-delta T cell differentiation +14.8754069,GO:0042534,http://purl.obolibrary.org/obo/GO_0042534,none +14.8754069,GO:0042718,http://purl.obolibrary.org/obo/GO_0042718,yolk granule +14.8754069,GO:0042758,http://purl.obolibrary.org/obo/GO_0042758,long-chain fatty acid catabolic process +14.8754069,GO:0042781,http://purl.obolibrary.org/obo/GO_0042781,3'-tRNA processing endoribonuclease activity +14.8754069,GO:0042817,http://purl.obolibrary.org/obo/GO_0042817,pyridoxal metabolic process +14.8754069,GO:0042821,http://purl.obolibrary.org/obo/GO_0042821,pyridoxal biosynthetic process +14.8754069,GO:0042967,http://purl.obolibrary.org/obo/GO_0042967,none +14.8754069,GO:0043211,http://purl.obolibrary.org/obo/GO_0043211,ABC-type carbohydrate transporter activity +14.8754069,GO:0043217,http://purl.obolibrary.org/obo/GO_0043217,myelin maintenance +14.8754069,GO:0043493,http://purl.obolibrary.org/obo/GO_0043493,viral terminase complex +14.8754069,GO:0043550,http://purl.obolibrary.org/obo/GO_0043550,regulation of lipid kinase activity +14.8754069,GO:0043584,http://purl.obolibrary.org/obo/GO_0043584,nose development +14.8754069,GO:0043915,http://purl.obolibrary.org/obo/GO_0043915,L-seryl-tRNA(Sec) kinase activity +14.8754069,GO:0043917,http://purl.obolibrary.org/obo/GO_0043917,"ribose 1,5-bisphosphate isomerase activity" +14.8754069,GO:0044205,http://purl.obolibrary.org/obo/GO_0044205,'de novo' UMP biosynthetic process +14.8754069,GO:0044367,http://purl.obolibrary.org/obo/GO_0044367,none +14.8754069,GO:0044368,http://purl.obolibrary.org/obo/GO_0044368,none +14.8754069,GO:0044691,http://purl.obolibrary.org/obo/GO_0044691,tooth eruption +14.8754069,GO:0044732,http://purl.obolibrary.org/obo/GO_0044732,mitotic spindle pole body +14.8754069,GO:0044779,http://purl.obolibrary.org/obo/GO_0044779,meiotic spindle checkpoint signaling +14.8754069,GO:0044812,http://purl.obolibrary.org/obo/GO_0044812,fermentative hydrogen production +14.8754069,GO:0044838,http://purl.obolibrary.org/obo/GO_0044838,cell quiescence +14.8754069,GO:0045006,http://purl.obolibrary.org/obo/GO_0045006,DNA deamination +14.8754069,GO:0045896,http://purl.obolibrary.org/obo/GO_0045896,none +14.8754069,GO:0045907,http://purl.obolibrary.org/obo/GO_0045907,positive regulation of vasoconstriction +14.8754069,GO:0045910,http://purl.obolibrary.org/obo/GO_0045910,negative regulation of DNA recombination +14.8754069,GO:0046114,http://purl.obolibrary.org/obo/GO_0046114,guanosine biosynthetic process +14.8754069,GO:0046145,http://purl.obolibrary.org/obo/GO_0046145,D-alanine family amino acid biosynthetic process +14.8754069,GO:0046239,http://purl.obolibrary.org/obo/GO_0046239,phthalate catabolic process +14.8754069,GO:0046348,http://purl.obolibrary.org/obo/GO_0046348,amino sugar catabolic process +14.8754069,GO:0046512,http://purl.obolibrary.org/obo/GO_0046512,sphingosine biosynthetic process +14.8754069,GO:0046514,http://purl.obolibrary.org/obo/GO_0046514,ceramide catabolic process +14.8754069,GO:0046710,http://purl.obolibrary.org/obo/GO_0046710,GDP metabolic process +14.8754069,GO:0046787,http://purl.obolibrary.org/obo/GO_0046787,viral DNA repair +14.8754069,GO:0047039,http://purl.obolibrary.org/obo/GO_0047039,tetrahydroxynaphthalene reductase activity +14.8754069,GO:0047100,http://purl.obolibrary.org/obo/GO_0047100,glyceraldehyde-3-phosphate dehydrogenase (NADP+) (phosphorylating) activity +14.8754069,GO:0047152,http://purl.obolibrary.org/obo/GO_0047152,methanol-5-hydroxybenzimidazolylcobamide Co-methyltransferase activity +14.8754069,GO:0047287,http://purl.obolibrary.org/obo/GO_0047287,"lactosylceramide alpha-2,6-N-sialyltransferase activity" +14.8754069,GO:0047296,http://purl.obolibrary.org/obo/GO_0047296,homospermidine synthase activity +14.8754069,GO:0047468,http://purl.obolibrary.org/obo/GO_0047468,phosphoglucomutase (glucose-cofactor) activity +14.8754069,GO:0047560,http://purl.obolibrary.org/obo/GO_0047560,3-dehydrosphinganine reductase activity +14.8754069,GO:0047786,http://purl.obolibrary.org/obo/GO_0047786,cortisone alpha-reductase activity +14.8754069,GO:0047823,http://purl.obolibrary.org/obo/GO_0047823,D-glutamyltransferase activity +14.8754069,GO:0047940,http://purl.obolibrary.org/obo/GO_0047940,glucuronokinase activity +14.8754069,GO:0048013,http://purl.obolibrary.org/obo/GO_0048013,ephrin receptor signaling pathway +14.8754069,GO:0048040,http://purl.obolibrary.org/obo/GO_0048040,UDP-glucuronate decarboxylase activity +14.8754069,GO:0048442,http://purl.obolibrary.org/obo/GO_0048442,sepal development +14.8754069,GO:0048524,http://purl.obolibrary.org/obo/GO_0048524,positive regulation of viral process +14.8754069,GO:0048628,http://purl.obolibrary.org/obo/GO_0048628,myoblast maturation +14.8754069,GO:0048890,http://purl.obolibrary.org/obo/GO_0048890,lateral line ganglion development +14.8754069,GO:0048907,http://purl.obolibrary.org/obo/GO_0048907,anterior lateral line ganglion development +14.8754069,GO:0050049,http://purl.obolibrary.org/obo/GO_0050049,leucine dehydrogenase activity +14.8754069,GO:0050192,http://purl.obolibrary.org/obo/GO_0050192,phosphoglycerate phosphatase activity +14.8754069,GO:0050203,http://purl.obolibrary.org/obo/GO_0050203,oxalate-CoA ligase activity +14.8754069,GO:0050591,http://purl.obolibrary.org/obo/GO_0050591,quinine 3-monooxygenase activity +14.8754069,GO:0050650,http://purl.obolibrary.org/obo/GO_0050650,chondroitin sulfate proteoglycan biosynthetic process +14.8754069,GO:0050654,http://purl.obolibrary.org/obo/GO_0050654,chondroitin sulfate proteoglycan metabolic process +14.8754069,GO:0050671,http://purl.obolibrary.org/obo/GO_0050671,positive regulation of lymphocyte proliferation +14.8754069,GO:0050679,http://purl.obolibrary.org/obo/GO_0050679,positive regulation of epithelial cell proliferation +14.8754069,GO:0050735,http://purl.obolibrary.org/obo/GO_0050735,N-malonyltransferase activity +14.8754069,GO:0050845,http://purl.obolibrary.org/obo/GO_0050845,teichuronic acid biosynthetic process +14.8754069,GO:0050846,http://purl.obolibrary.org/obo/GO_0050846,teichuronic acid metabolic process +14.8754069,GO:0051149,http://purl.obolibrary.org/obo/GO_0051149,positive regulation of muscle cell differentiation +14.8754069,GO:0051489,http://purl.obolibrary.org/obo/GO_0051489,regulation of filopodium assembly +14.8754069,GO:0051499,http://purl.obolibrary.org/obo/GO_0051499,D-aminoacyl-tRNA deacylase activity +14.8754069,GO:0051717,http://purl.obolibrary.org/obo/GO_0051717,"inositol-1,3,4,5-tetrakisphosphate 3-phosphatase activity" +14.8754069,GO:0051888,http://purl.obolibrary.org/obo/GO_0051888,positive regulation of timing of exogen +14.8754069,GO:0051893,http://purl.obolibrary.org/obo/GO_0051893,regulation of focal adhesion assembly +14.8754069,GO:0052650,http://purl.obolibrary.org/obo/GO_0052650,NADP-retinol dehydrogenase activity +14.8754069,GO:0052869,http://purl.obolibrary.org/obo/GO_0052869,arachidonic acid omega-hydroxylase activity +14.8754069,GO:0052870,http://purl.obolibrary.org/obo/GO_0052870,tocopherol omega-hydroxylase activity +14.8754069,GO:0055038,http://purl.obolibrary.org/obo/GO_0055038,recycling endosome membrane +14.8754069,GO:0060012,http://purl.obolibrary.org/obo/GO_0060012,"synaptic transmission, glycinergic" +14.8754069,GO:0060033,http://purl.obolibrary.org/obo/GO_0060033,anatomical structure regression +14.8754069,GO:0060046,http://purl.obolibrary.org/obo/GO_0060046,regulation of acrosome reaction +14.8754069,GO:0060066,http://purl.obolibrary.org/obo/GO_0060066,oviduct development +14.8754069,GO:0060156,http://purl.obolibrary.org/obo/GO_0060156,milk ejection reflex +14.8754069,GO:0060302,http://purl.obolibrary.org/obo/GO_0060302,negative regulation of cytokine activity +14.8754069,GO:0060351,http://purl.obolibrary.org/obo/GO_0060351,cartilage development involved in endochondral bone morphogenesis +14.8754069,GO:0060465,http://purl.obolibrary.org/obo/GO_0060465,pharynx development +14.8754069,GO:0060700,http://purl.obolibrary.org/obo/GO_0060700,regulation of ribonuclease activity +14.8754069,GO:0060828,http://purl.obolibrary.org/obo/GO_0060828,regulation of canonical Wnt signaling pathway +14.8754069,GO:0061001,http://purl.obolibrary.org/obo/GO_0061001,regulation of dendritic spine morphogenesis +14.8754069,GO:0061037,http://purl.obolibrary.org/obo/GO_0061037,negative regulation of cartilage development +14.8754069,GO:0061387,http://purl.obolibrary.org/obo/GO_0061387,regulation of extent of cell growth +14.8754069,GO:0061700,http://purl.obolibrary.org/obo/GO_0061700,GATOR2 complex +14.8754069,GO:0061703,http://purl.obolibrary.org/obo/GO_0061703,pyroptosome complex +14.8754069,GO:0070168,http://purl.obolibrary.org/obo/GO_0070168,negative regulation of biomineral tissue development +14.8754069,GO:0070449,http://purl.obolibrary.org/obo/GO_0070449,elongin complex +14.8754069,GO:0070498,http://purl.obolibrary.org/obo/GO_0070498,interleukin-1-mediated signaling pathway +14.8754069,GO:0070615,http://purl.obolibrary.org/obo/GO_0070615,none +14.8754069,GO:0070666,http://purl.obolibrary.org/obo/GO_0070666,regulation of mast cell proliferation +14.8754069,GO:0071270,http://purl.obolibrary.org/obo/GO_0071270,1-butanol metabolic process +14.8754069,GO:0071294,http://purl.obolibrary.org/obo/GO_0071294,cellular response to zinc ion +14.8754069,GO:0071398,http://purl.obolibrary.org/obo/GO_0071398,cellular response to fatty acid +14.8754069,GO:0071459,http://purl.obolibrary.org/obo/GO_0071459,"protein localization to chromosome, centromeric region" +14.8754069,GO:0071599,http://purl.obolibrary.org/obo/GO_0071599,otic vesicle development +14.8754069,GO:0071792,http://purl.obolibrary.org/obo/GO_0071792,bacillithiol metabolic process +14.8754069,GO:0071920,http://purl.obolibrary.org/obo/GO_0071920,cleavage body +14.8754069,GO:0072009,http://purl.obolibrary.org/obo/GO_0072009,nephron epithelium development +14.8754069,GO:0072327,http://purl.obolibrary.org/obo/GO_0072327,vulval cell fate specification +14.8754069,GO:0072343,http://purl.obolibrary.org/obo/GO_0072343,pancreatic stellate cell proliferation +14.8754069,GO:0072614,http://purl.obolibrary.org/obo/GO_0072614,none +14.8754069,GO:0072659,http://purl.obolibrary.org/obo/GO_0072659,protein localization to plasma membrane +14.8754069,GO:0072671,http://purl.obolibrary.org/obo/GO_0072671,mitochondria-associated ubiquitin-dependent protein catabolic process +14.8754069,GO:0072683,http://purl.obolibrary.org/obo/GO_0072683,T cell extravasation +14.8754069,GO:0072758,http://purl.obolibrary.org/obo/GO_0072758,response to topoisomerase inhibitor +14.8754069,GO:0080121,http://purl.obolibrary.org/obo/GO_0080121,AMP transport +14.8754069,GO:0080168,http://purl.obolibrary.org/obo/GO_0080168,abscisic acid transport +14.8754069,GO:0090101,http://purl.obolibrary.org/obo/GO_0090101,negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway +14.8754069,GO:0090109,http://purl.obolibrary.org/obo/GO_0090109,regulation of cell-substrate junction assembly +14.8754069,GO:0090158,http://purl.obolibrary.org/obo/GO_0090158,endoplasmic reticulum membrane organization +14.8754069,GO:0090535,http://purl.obolibrary.org/obo/GO_0090535,WICH complex +14.8754069,GO:0097022,http://purl.obolibrary.org/obo/GO_0097022,lymphocyte migration into lymph node +14.8754069,GO:0097031,http://purl.obolibrary.org/obo/GO_0097031,none +14.8754069,GO:0097197,http://purl.obolibrary.org/obo/GO_0097197,tetraspanin-enriched microdomain +14.8754069,GO:0097307,http://purl.obolibrary.org/obo/GO_0097307,response to farnesol +14.8754069,GO:0097320,http://purl.obolibrary.org/obo/GO_0097320,plasma membrane tubulation +14.8754069,GO:0097568,http://purl.obolibrary.org/obo/GO_0097568,median body +14.8754069,GO:0099175,http://purl.obolibrary.org/obo/GO_0099175,regulation of postsynapse organization +14.8754069,GO:0099514,http://purl.obolibrary.org/obo/GO_0099514,synaptic vesicle cytoskeletal transport +14.8754069,GO:0099517,http://purl.obolibrary.org/obo/GO_0099517,synaptic vesicle transport along microtubule +14.8754069,GO:0110150,http://purl.obolibrary.org/obo/GO_0110150,negative regulation of biomineralization +14.8754069,GO:0150116,http://purl.obolibrary.org/obo/GO_0150116,regulation of cell-substrate junction organization +14.8754069,GO:1900127,http://purl.obolibrary.org/obo/GO_1900127,positive regulation of hyaluronan biosynthetic process +14.8754069,GO:1900398,http://purl.obolibrary.org/obo/GO_1900398,negative regulation of pyrimidine nucleotide biosynthetic process +14.8754069,GO:1901031,http://purl.obolibrary.org/obo/GO_1901031,regulation of response to reactive oxygen species +14.8754069,GO:1901072,http://purl.obolibrary.org/obo/GO_1901072,glucosamine-containing compound catabolic process +14.8754069,GO:1901158,http://purl.obolibrary.org/obo/GO_1901158,neomycin biosynthetic process +14.8754069,GO:1901668,http://purl.obolibrary.org/obo/GO_1901668,regulation of superoxide dismutase activity +14.8754069,GO:1901683,http://purl.obolibrary.org/obo/GO_1901683,arsenate ion transmembrane transporter activity +14.8754069,GO:1901695,http://purl.obolibrary.org/obo/GO_1901695,tyramine biosynthetic process +14.8754069,GO:1901902,http://purl.obolibrary.org/obo/GO_1901902,tyrocidine metabolic process +14.8754069,GO:1901904,http://purl.obolibrary.org/obo/GO_1901904,tyrocidine biosynthetic process +14.8754069,GO:1901989,http://purl.obolibrary.org/obo/GO_1901989,positive regulation of cell cycle phase transition +14.8754069,GO:1902102,http://purl.obolibrary.org/obo/GO_1902102,regulation of metaphase/anaphase transition of meiotic cell cycle +14.8754069,GO:1902103,http://purl.obolibrary.org/obo/GO_1902103,negative regulation of metaphase/anaphase transition of meiotic cell cycle +14.8754069,GO:1902435,http://purl.obolibrary.org/obo/GO_1902435,regulation of male mating behavior +14.8754069,GO:1902750,http://purl.obolibrary.org/obo/GO_1902750,negative regulation of cell cycle G2/M phase transition +14.8754069,GO:1903391,http://purl.obolibrary.org/obo/GO_1903391,regulation of adherens junction organization +14.8754069,GO:1903556,http://purl.obolibrary.org/obo/GO_1903556,negative regulation of tumor necrosis factor superfamily cytokine production +14.8754069,GO:1903670,http://purl.obolibrary.org/obo/GO_1903670,regulation of sprouting angiogenesis +14.8754069,GO:1903779,http://purl.obolibrary.org/obo/GO_1903779,regulation of cardiac conduction +14.8754069,GO:1903828,http://purl.obolibrary.org/obo/GO_1903828,negative regulation of protein localization +14.8754069,GO:1903902,http://purl.obolibrary.org/obo/GO_1903902,positive regulation of viral life cycle +14.8754069,GO:1903975,http://purl.obolibrary.org/obo/GO_1903975,regulation of glial cell migration +14.8754069,GO:1904276,http://purl.obolibrary.org/obo/GO_1904276,regulation of wax biosynthetic process +14.8754069,GO:1904590,http://purl.obolibrary.org/obo/GO_1904590,negative regulation of protein import +14.8754069,GO:1904641,http://purl.obolibrary.org/obo/GO_1904641,response to dinitrophenol +14.8754069,GO:1905132,http://purl.obolibrary.org/obo/GO_1905132,regulation of meiotic chromosome separation +14.8754069,GO:1905133,http://purl.obolibrary.org/obo/GO_1905133,negative regulation of meiotic chromosome separation +14.8754069,GO:1905421,http://purl.obolibrary.org/obo/GO_1905421,regulation of plant organ morphogenesis +14.8754069,GO:1990044,http://purl.obolibrary.org/obo/GO_1990044,protein localization to lipid droplet +14.8754069,GO:1990100,http://purl.obolibrary.org/obo/GO_1990100,DnaB-DnaC complex +14.8754069,GO:1990257,http://purl.obolibrary.org/obo/GO_1990257,piccolo-bassoon transport vesicle +14.8754069,GO:1990295,http://purl.obolibrary.org/obo/GO_1990295,post-anaphase microtubule array +14.8754069,GO:1990393,http://purl.obolibrary.org/obo/GO_1990393,3M complex +14.8754069,GO:1990583,http://purl.obolibrary.org/obo/GO_1990583,phospholipase D activator activity +14.8754069,GO:1990584,http://purl.obolibrary.org/obo/GO_1990584,cardiac Troponin complex +14.8754069,GO:1990665,http://purl.obolibrary.org/obo/GO_1990665,AnxA2-p11 complex +14.8754069,GO:1990753,http://purl.obolibrary.org/obo/GO_1990753,equatorial cell cortex +14.8754069,GO:1990778,http://purl.obolibrary.org/obo/GO_1990778,protein localization to cell periphery +14.8754069,GO:1990869,http://purl.obolibrary.org/obo/GO_1990869,cellular response to chemokine +14.8754069,GO:1990906,http://purl.obolibrary.org/obo/GO_1990906,accessory outer segment +14.8754069,GO:2000064,http://purl.obolibrary.org/obo/GO_2000064,regulation of cortisol biosynthetic process +14.8754069,GO:2000082,http://purl.obolibrary.org/obo/GO_2000082,regulation of L-ascorbic acid biosynthetic process +14.8754069,GO:2000121,http://purl.obolibrary.org/obo/GO_2000121,regulation of removal of superoxide radicals +14.8754069,GO:2001295,http://purl.obolibrary.org/obo/GO_2001295,malonyl-CoA biosynthetic process +14.8754069,HP:0000099,http://purl.obolibrary.org/obo/HP_0000099,Glomerulonephritis +14.8754069,HP:0000138,http://purl.obolibrary.org/obo/HP_0000138,Ovarian cyst +14.8754069,HP:0000632,http://purl.obolibrary.org/obo/HP_0000632,Lacrimation abnormality +14.8754069,HP:0001331,http://purl.obolibrary.org/obo/HP_0001331,Absent septum pellucidum +14.8754069,HP:0001433,http://purl.obolibrary.org/obo/HP_0001433,Hepatosplenomegaly +14.8754069,HP:0001639,http://purl.obolibrary.org/obo/HP_0001639,Hypertrophic cardiomyopathy +14.8754069,HP:0001708,http://purl.obolibrary.org/obo/HP_0001708,Right ventricular failure +14.8754069,HP:0001889,http://purl.obolibrary.org/obo/HP_0001889,Megaloblastic anemia +14.8754069,HP:0001966,http://purl.obolibrary.org/obo/HP_0001966,Abnormal glomerular mesangium morphology +14.8754069,HP:0002093,http://purl.obolibrary.org/obo/HP_0002093,Respiratory insufficiency +14.8754069,HP:0002102,http://purl.obolibrary.org/obo/HP_0002102,Pleuritis +14.8754069,HP:0002120,http://purl.obolibrary.org/obo/HP_0002120,Cerebral cortical atrophy +14.8754069,HP:0002160,http://purl.obolibrary.org/obo/HP_0002160,Hyperhomocystinemia +14.8754069,HP:0002185,http://purl.obolibrary.org/obo/HP_0002185,Neurofibrillary tangles +14.8754069,HP:0002529,http://purl.obolibrary.org/obo/HP_0002529,Neuronal loss in central nervous system +14.8754069,HP:0002625,http://purl.obolibrary.org/obo/HP_0002625,Deep venous thrombosis +14.8754069,HP:0002648,http://purl.obolibrary.org/obo/HP_0002648,Abnormality of calvarial morphology +14.8754069,HP:0002683,http://purl.obolibrary.org/obo/HP_0002683,Abnormality of the calvaria +14.8754069,HP:0004339,http://purl.obolibrary.org/obo/HP_0004339,Abnormal circulating sulfur amino acid concentration +14.8754069,HP:0004383,http://purl.obolibrary.org/obo/HP_0004383,Hypoplastic left heart +14.8754069,HP:0004934,http://purl.obolibrary.org/obo/HP_0004934,Vascular calcification +14.8754069,HP:0008258,http://purl.obolibrary.org/obo/HP_0008258,Congenital adrenal hyperplasia +14.8754069,HP:0010919,http://purl.obolibrary.org/obo/HP_0010919,Abnormal circulating homocysteine concentration +14.8754069,HP:0011009,http://purl.obolibrary.org/obo/HP_0011009,Acute +14.8754069,HP:0011010,http://purl.obolibrary.org/obo/HP_0011010,Chronic +14.8754069,HP:0011505,http://purl.obolibrary.org/obo/HP_0011505,Cystoid macular edema +14.8754069,HP:0012075,http://purl.obolibrary.org/obo/HP_0012075,Personality disorder +14.8754069,HP:0030212,http://purl.obolibrary.org/obo/HP_0030212,Collectionism +14.8754069,HP:0030650,http://purl.obolibrary.org/obo/HP_0030650,Focal +14.8754069,HP:0031005,http://purl.obolibrary.org/obo/HP_0031005,none +14.8754069,HP:0100314,http://purl.obolibrary.org/obo/HP_0100314,Cerebral inclusion bodies +14.8754069,HP:0100612,http://purl.obolibrary.org/obo/HP_0100612,Odontogenic neoplasm +14.8754069,HP:0100726,http://purl.obolibrary.org/obo/HP_0100726,Kaposi's sarcoma +14.8754069,HP:0200134,http://purl.obolibrary.org/obo/HP_0200134,Epileptic encephalopathy +14.8754069,MONDO:0000306,http://purl.obolibrary.org/obo/MONDO_0000306,trichosporonosis +14.8754069,MONDO:0000330,http://purl.obolibrary.org/obo/MONDO_0000330,endemic typhus +14.8754069,MONDO:0000372,http://purl.obolibrary.org/obo/MONDO_0000372,pharynx carcinoma in situ +14.8754069,MONDO:0000446,http://purl.obolibrary.org/obo/MONDO_0000446,midface dysplasia +14.8754069,MONDO:0000710,http://purl.obolibrary.org/obo/MONDO_0000710,gastroduodenal Crohn disease +14.8754069,MONDO:0000898,http://purl.obolibrary.org/obo/MONDO_0000898,malignant hemangioma +14.8754069,MONDO:0000949,http://purl.obolibrary.org/obo/MONDO_0000949,conjunctival degeneration +14.8754069,MONDO:0001019,http://purl.obolibrary.org/obo/MONDO_0001019,suppression amblyopia +14.8754069,MONDO:0001061,http://purl.obolibrary.org/obo/MONDO_0001061,pylorus cancer +14.8754069,MONDO:0001096,http://purl.obolibrary.org/obo/MONDO_0001096,mediastinum ganglioneuroblastoma +14.8754069,MONDO:0001122,http://purl.obolibrary.org/obo/MONDO_0001122,chronic maxillary sinusitis +14.8754069,MONDO:0001173,http://purl.obolibrary.org/obo/MONDO_0001173,acute salpingitis +14.8754069,MONDO:0001424,http://purl.obolibrary.org/obo/MONDO_0001424,sarcoid meningitis +14.8754069,MONDO:0001522,http://purl.obolibrary.org/obo/MONDO_0001522,pyromania +14.8754069,MONDO:0001557,http://purl.obolibrary.org/obo/MONDO_0001557,olecranon bursitis +14.8754069,MONDO:0001610,http://purl.obolibrary.org/obo/MONDO_0001610,acute dacryocystitis +14.8754069,MONDO:0001760,http://purl.obolibrary.org/obo/MONDO_0001760,photokeratitis +14.8754069,MONDO:0001821,http://purl.obolibrary.org/obo/MONDO_0001821,hypoactive sexual desire disorder +14.8754069,MONDO:0001832,http://purl.obolibrary.org/obo/MONDO_0001832,bacterial esophagitis +14.8754069,MONDO:0001880,http://purl.obolibrary.org/obo/MONDO_0001880,median rhomboid glossitis +14.8754069,MONDO:0001928,http://purl.obolibrary.org/obo/MONDO_0001928,suppurative cholangitis +14.8754069,MONDO:0001994,http://purl.obolibrary.org/obo/MONDO_0001994,sphenoidal sinus cancer +14.8754069,MONDO:0002209,http://purl.obolibrary.org/obo/MONDO_0002209,heel spur +14.8754069,MONDO:0002660,http://purl.obolibrary.org/obo/MONDO_0002660,blepharochalasis +14.8754069,MONDO:0002742,http://purl.obolibrary.org/obo/MONDO_0002742,cervical mucinous adenocarcinoma +14.8754069,MONDO:0002831,http://purl.obolibrary.org/obo/MONDO_0002831,non-keratinizing sinonasal squamous cell carcinoma +14.8754069,MONDO:0002961,http://purl.obolibrary.org/obo/MONDO_0002961,large cell acanthoma +14.8754069,MONDO:0003070,http://purl.obolibrary.org/obo/MONDO_0003070,axillary lymphadenitis +14.8754069,MONDO:0003092,http://purl.obolibrary.org/obo/MONDO_0003092,lacrimal gland mucoepidermoid carcinoma +14.8754069,MONDO:0003121,http://purl.obolibrary.org/obo/MONDO_0003121,middle cranial fossa meningioma +14.8754069,MONDO:0003255,http://purl.obolibrary.org/obo/MONDO_0003255,mediastinal granular cell myoblastoma +14.8754069,MONDO:0003372,http://purl.obolibrary.org/obo/MONDO_0003372,vulvar leiomyosarcoma +14.8754069,MONDO:0003437,http://purl.obolibrary.org/obo/MONDO_0003437,occult small cell lung carcinoma +14.8754069,MONDO:0003462,http://purl.obolibrary.org/obo/MONDO_0003462,papillary adenofibroma +14.8754069,MONDO:0003466,http://purl.obolibrary.org/obo/MONDO_0003466,spindle cell synovial sarcoma +14.8754069,MONDO:0003522,http://purl.obolibrary.org/obo/MONDO_0003522,male orgasm disorder +14.8754069,MONDO:0003556,http://purl.obolibrary.org/obo/MONDO_0003556,endometrial adenosquamous carcinoma +14.8754069,MONDO:0003639,http://purl.obolibrary.org/obo/MONDO_0003639,lung hilum neoplasm +14.8754069,MONDO:0004067,http://purl.obolibrary.org/obo/MONDO_0004067,gallbladder mucinous adenocarcinoma +14.8754069,MONDO:0004205,http://purl.obolibrary.org/obo/MONDO_0004205,lymphohistiocytoid mesothelioma +14.8754069,MONDO:0004322,http://purl.obolibrary.org/obo/MONDO_0004322,non-gestational ovarian choriocarcinoma +14.8754069,MONDO:0004328,http://purl.obolibrary.org/obo/MONDO_0004328,maxillary sinus adenocarcinoma +14.8754069,MONDO:0004330,http://purl.obolibrary.org/obo/MONDO_0004330,leptomeningeal sarcoma +14.8754069,MONDO:0004454,http://purl.obolibrary.org/obo/MONDO_0004454,cellular congenital mesoblastic nephroma +14.8754069,MONDO:0004485,http://purl.obolibrary.org/obo/MONDO_0004485,interstitial myocarditis +14.8754069,MONDO:0004502,http://purl.obolibrary.org/obo/MONDO_0004502,parapharyngeal meningioma +14.8754069,MONDO:0004621,http://purl.obolibrary.org/obo/MONDO_0004621,upper lip cancer +14.8754069,MONDO:0004837,http://purl.obolibrary.org/obo/MONDO_0004837,neurofibroma of the esophagus +14.8754069,MONDO:0004843,http://purl.obolibrary.org/obo/MONDO_0004843,pathologic nystagmus +14.8754069,MONDO:0004935,http://purl.obolibrary.org/obo/MONDO_0004935,acquired carotenemia +14.8754069,MONDO:0005291,http://purl.obolibrary.org/obo/MONDO_0005291,brain aneurysm +14.8754069,MONDO:0005493,http://purl.obolibrary.org/obo/MONDO_0005493,delayed encephalopathy after acute carbon monoxide poisoning +14.8754069,MONDO:0005709,http://purl.obolibrary.org/obo/MONDO_0005709,common cold +14.8754069,MONDO:0005712,http://purl.obolibrary.org/obo/MONDO_0005712,congenital nystagmus +14.8754069,MONDO:0005850,http://purl.obolibrary.org/obo/MONDO_0005850,milker's nodule +14.8754069,MONDO:0005895,http://purl.obolibrary.org/obo/MONDO_0005895,paragonimiasis +14.8754069,MONDO:0006178,http://purl.obolibrary.org/obo/MONDO_0006178,dedifferentiated solitary fibrous tumor +14.8754069,MONDO:0006501,http://purl.obolibrary.org/obo/MONDO_0006501,none +14.8754069,MONDO:0006630,http://purl.obolibrary.org/obo/MONDO_0006630,"osteoarthritis, spine" +14.8754069,MONDO:0006653,http://purl.obolibrary.org/obo/MONDO_0006653,anthracosilicosis +14.8754069,MONDO:0006748,http://purl.obolibrary.org/obo/MONDO_0006748,epilepsia partialis continua +14.8754069,MONDO:0006989,http://purl.obolibrary.org/obo/MONDO_0006989,suppurative periapical periodontitis +14.8754069,MONDO:0007321,http://purl.obolibrary.org/obo/MONDO_0007321,autosomal dominant chondrodysplasia punctata +14.8754069,MONDO:0007395,http://purl.obolibrary.org/obo/MONDO_0007395,craniofacial-deafness-hand syndrome +14.8754069,MONDO:0007426,http://purl.obolibrary.org/obo/MONDO_0007426,"deafness, unilateral" +14.8754069,MONDO:0007527,http://purl.obolibrary.org/obo/MONDO_0007527,"Ehlers-Danlos syndrome, periodontitis type" +14.8754069,MONDO:0007593,http://purl.obolibrary.org/obo/MONDO_0007593,facial spasm +14.8754069,MONDO:0007610,http://purl.obolibrary.org/obo/MONDO_0007610,gingival fibromatosis-hypertrichosis syndrome +14.8754069,MONDO:0008493,http://purl.obolibrary.org/obo/MONDO_0008493,overhydrated hereditary stomatocytosis +14.8754069,MONDO:0008520,http://purl.obolibrary.org/obo/MONDO_0008520,brachydactyly-elbow wrist dysplasia syndrome +14.8754069,MONDO:0008551,http://purl.obolibrary.org/obo/MONDO_0008551,thoracolaryngopelvic dysplasia +14.8754069,MONDO:0008659,http://purl.obolibrary.org/obo/MONDO_0008659,transcobalamin I deficiency +14.8754069,MONDO:0008764,http://purl.obolibrary.org/obo/MONDO_0008764,Leber congenital amaurosis 1 +14.8754069,MONDO:0008827,http://purl.obolibrary.org/obo/MONDO_0008827,progressive pseudorheumatoid arthropathy of childhood +14.8754069,MONDO:0008931,http://purl.obolibrary.org/obo/MONDO_0008931,Cenani-Lenz syndactyly syndrome +14.8754069,MONDO:0008952,http://purl.obolibrary.org/obo/MONDO_0008952,cerebrofaciothoracic dysplasia +14.8754069,MONDO:0008959,http://purl.obolibrary.org/obo/MONDO_0008959,CHAND syndrome +14.8754069,MONDO:0008992,http://purl.obolibrary.org/obo/MONDO_0008992,Juberg-Hayward syndrome +14.8754069,MONDO:0009034,http://purl.obolibrary.org/obo/MONDO_0009034,craniofacial dyssynostosis +14.8754069,MONDO:0009155,http://purl.obolibrary.org/obo/MONDO_0009155,EEM syndrome +14.8754069,MONDO:0009240,http://purl.obolibrary.org/obo/MONDO_0009240,formiminoglutamic aciduria +14.8754069,MONDO:0009247,http://purl.obolibrary.org/obo/MONDO_0009247,frontofacionasal dysplasia +14.8754069,MONDO:0009259,http://purl.obolibrary.org/obo/MONDO_0009259,gamma-glutamylcysteine synthetase deficiency +14.8754069,MONDO:0009470,http://purl.obolibrary.org/obo/MONDO_0009470,Baraitser-Winter syndrome 1 +14.8754069,MONDO:0009562,http://purl.obolibrary.org/obo/MONDO_0009562,beta-mannosidosis +14.8754069,MONDO:0009719,http://purl.obolibrary.org/obo/MONDO_0009719,familial atrial myxoma +14.8754069,MONDO:0009779,http://purl.obolibrary.org/obo/MONDO_0009779,autosomal recessive omodysplasia +14.8754069,MONDO:0009954,http://purl.obolibrary.org/obo/MONDO_0009954,Ramon syndrome +14.8754069,MONDO:0009966,http://purl.obolibrary.org/obo/MONDO_0009966,NPHP3-related Meckel-like syndrome +14.8754069,MONDO:0009979,http://purl.obolibrary.org/obo/MONDO_0009979,reticular dystrophy of the retinal pigment epithelium +14.8754069,MONDO:0010042,http://purl.obolibrary.org/obo/MONDO_0010042,spastic diplegia and intellectual disability +14.8754069,MONDO:0010044,http://purl.obolibrary.org/obo/MONDO_0010044,hereditary spastic paraplegia 15 +14.8754069,MONDO:0010065,http://purl.obolibrary.org/obo/MONDO_0010065,spinocerebellar degeneration with slow eye movements +14.8754069,MONDO:0010265,http://purl.obolibrary.org/obo/MONDO_0010265,Simpson-Golabi-Behmel syndrome type 2 +14.8754069,MONDO:0010351,http://purl.obolibrary.org/obo/MONDO_0010351,Fanconi anemia complementation group B +14.8754069,MONDO:0010408,http://purl.obolibrary.org/obo/MONDO_0010408,syndactyly-telecanthus-anogenital and renal malformations syndrome +14.8754069,MONDO:0010780,http://purl.obolibrary.org/obo/MONDO_0010780,mitochondrial myopathy with reversible cytochrome C oxidase deficiency +14.8754069,MONDO:0010828,http://purl.obolibrary.org/obo/MONDO_0010828,retinitis pigmentosa 11 +14.8754069,MONDO:0010916,http://purl.obolibrary.org/obo/MONDO_0010916,polycystic kidney disease 3 with or without polycystic liver disease +14.8754069,MONDO:0010918,http://purl.obolibrary.org/obo/MONDO_0010918,EIG1 +14.8754069,MONDO:0010962,http://purl.obolibrary.org/obo/MONDO_0010962,diffuse nonepidermolytic palmoplantar keratoderma +14.8754069,MONDO:0011013,http://purl.obolibrary.org/obo/MONDO_0011013,autosomal dominant hypocalcemia 1 +14.8754069,MONDO:0011021,http://purl.obolibrary.org/obo/MONDO_0011021,"neuronal intestinal dysplasia, type B" +14.8754069,MONDO:0011108,http://purl.obolibrary.org/obo/MONDO_0011108,Stüve-Wiedemann syndrome +14.8754069,MONDO:0011112,http://purl.obolibrary.org/obo/MONDO_0011112,Wilms tumor 5 +14.8754069,MONDO:0011320,http://purl.obolibrary.org/obo/MONDO_0011320,radioulnar synostosis-microcephaly-scoliosis syndrome +14.8754069,MONDO:0011445,http://purl.obolibrary.org/obo/MONDO_0011445,hereditary spastic paraplegia 11 +14.8754069,MONDO:0011471,http://purl.obolibrary.org/obo/MONDO_0011471,inflammatory bowel disease 3 +14.8754069,MONDO:0011551,http://purl.obolibrary.org/obo/MONDO_0011551,TH-deficient dopa-responsive dystonia +14.8754069,MONDO:0011596,http://purl.obolibrary.org/obo/MONDO_0011596,atopic dermatitis 2 +14.8754069,MONDO:0011598,http://purl.obolibrary.org/obo/MONDO_0011598,atopic dermatitis 4 +14.8754069,MONDO:0011797,http://purl.obolibrary.org/obo/MONDO_0011797,infantile-onset ascending hereditary spastic paralysis +14.8754069,MONDO:0011869,http://purl.obolibrary.org/obo/MONDO_0011869,epidermolysis bullosa simplex superficialis +14.8754069,MONDO:0011874,http://purl.obolibrary.org/obo/MONDO_0011874,neonatal ichthyosis-sclerosing cholangitis syndrome +14.8754069,MONDO:0012138,http://purl.obolibrary.org/obo/MONDO_0012138,muscular dystrophy-dystroglycanopathy type B6 +14.8754069,MONDO:0012187,http://purl.obolibrary.org/obo/MONDO_0012187,Fanconi anemia complementation group J +14.8754069,MONDO:0012449,http://purl.obolibrary.org/obo/MONDO_0012449,spinocerebellar ataxia type 23 +14.8754069,MONDO:0012654,http://purl.obolibrary.org/obo/MONDO_0012654,atrial septal defect 4 +14.8754069,MONDO:0012829,http://purl.obolibrary.org/obo/MONDO_0012829,inflammatory bowel disease 12 +14.8754069,MONDO:0013047,http://purl.obolibrary.org/obo/MONDO_0013047,glycogen storage disease due to lactate dehydrogenase M-subunit deficiency +14.8754069,MONDO:0013115,http://purl.obolibrary.org/obo/MONDO_0013115,RIN2 syndrome +14.8754069,MONDO:0013221,http://purl.obolibrary.org/obo/MONDO_0013221,Miyoshi muscular dystrophy 2 +14.8754069,MONDO:0013225,http://purl.obolibrary.org/obo/MONDO_0013225,congenital generalized lipodystrophy type 4 +14.8754069,MONDO:0013264,http://purl.obolibrary.org/obo/MONDO_0013264,amyotrophic lateral sclerosis type 12 +14.8754069,MONDO:0013565,http://purl.obolibrary.org/obo/MONDO_0013565,Fanconi anemia complementation group G +14.8754069,MONDO:0013575,http://purl.obolibrary.org/obo/MONDO_0013575,plasma fibronectin deficiency +14.8754069,MONDO:0014013,http://purl.obolibrary.org/obo/MONDO_0014013,maternal riboflavin deficiency +14.8754069,MONDO:0014031,http://purl.obolibrary.org/obo/MONDO_0014031,"microcephalic primordial dwarfism, Alazami type" +14.8754069,MONDO:0014253,http://purl.obolibrary.org/obo/MONDO_0014253,autoimmune lymphoproliferative syndrome type 3 +14.8754069,MONDO:0014779,http://purl.obolibrary.org/obo/MONDO_0014779,Wilms tumor 6 +14.8754069,MONDO:0015050,http://purl.obolibrary.org/obo/MONDO_0015050,esophageal duplication cyst +14.8754069,MONDO:0015055,http://purl.obolibrary.org/obo/MONDO_0015055,acquired angioedema type 2 +14.8754069,MONDO:0015195,http://purl.obolibrary.org/obo/MONDO_0015195,atresia of urethra +14.8754069,MONDO:0015249,http://purl.obolibrary.org/obo/MONDO_0015249,mitral atresia disorder +14.8754069,MONDO:0015539,http://purl.obolibrary.org/obo/MONDO_0015539,progressive nodular histiocytosis +14.8754069,MONDO:0015768,http://purl.obolibrary.org/obo/MONDO_0015768,trisomy 5p +14.8754069,MONDO:0016393,http://purl.obolibrary.org/obo/MONDO_0016393,hyposmia-nasal and ocular hypoplasia-hypogonadotropic hypogonadism syndrome +14.8754069,MONDO:0016451,http://purl.obolibrary.org/obo/MONDO_0016451,idiopathic hypersomnia with long sleep time +14.8754069,MONDO:0016542,http://purl.obolibrary.org/obo/MONDO_0016542,immune dysregulation-inflammatory bowel disease-arthritis-recurrent infections syndrome +14.8754069,MONDO:0017091,http://purl.obolibrary.org/obo/MONDO_0017091,bilateral polymicrogyria +14.8754069,MONDO:0017129,http://purl.obolibrary.org/obo/MONDO_0017129,inherited cardiac tumor +14.8754069,MONDO:0017289,http://purl.obolibrary.org/obo/MONDO_0017289,fetal lung interstitial tumor +14.8754069,MONDO:0017581,http://purl.obolibrary.org/obo/MONDO_0017581,familial infantile gigantism +14.8754069,MONDO:0017834,http://purl.obolibrary.org/obo/MONDO_0017834,secondary hypereosinophilic syndrome +14.8754069,MONDO:0017967,http://purl.obolibrary.org/obo/MONDO_0017967,testicular agenesis +14.8754069,MONDO:0018969,http://purl.obolibrary.org/obo/MONDO_0018969,craniorachischisis +14.8754069,MONDO:0019310,http://purl.obolibrary.org/obo/MONDO_0019310,recessive dystrophic epidermolysis bullosa inversa +14.8754069,MONDO:0019375,http://purl.obolibrary.org/obo/MONDO_0019375,megalencephaly-polymicrogyria-postaxial polydactyly-hydrocephalus syndrome +14.8754069,MONDO:0019412,http://purl.obolibrary.org/obo/MONDO_0019412,dysspondyloenchondromatosis +14.8754069,MONDO:0019435,http://purl.obolibrary.org/obo/MONDO_0019435,rheumatoid factor-positive polyarticular juvenile idiopathic arthritis +14.8754069,MONDO:0019619,http://purl.obolibrary.org/obo/MONDO_0019619,duplication of the esophagus +14.8754069,MONDO:0019839,http://purl.obolibrary.org/obo/MONDO_0019839,panhypophysitis +14.8754069,MONDO:0020521,http://purl.obolibrary.org/obo/MONDO_0020521,Ehlers-Danlos syndrome type 7A +14.8754069,MONDO:0020553,http://purl.obolibrary.org/obo/MONDO_0020553,secondary pulmonary hemosiderosis +14.8754069,MONDO:0020554,http://purl.obolibrary.org/obo/MONDO_0020554,Heiner syndrome +14.8754069,MONDO:0020974,http://purl.obolibrary.org/obo/MONDO_0020974,laryngeal granuloma +14.8754069,MONDO:0021486,http://purl.obolibrary.org/obo/MONDO_0021486,benign neoplasm of ciliary body +14.8754069,MONDO:0023209,http://purl.obolibrary.org/obo/MONDO_0023209,galactorrhoea-hyperprolactinaemia +14.8754069,MONDO:0024471,http://purl.obolibrary.org/obo/MONDO_0024471,non-inflammatory vasculopathy +14.8754069,MONDO:0024493,http://purl.obolibrary.org/obo/MONDO_0024493,"tumor grade 3, general grading system" +14.8754069,MONDO:0032575,http://purl.obolibrary.org/obo/MONDO_0032575,diarrhea 9 +14.8754069,MONDO:0040871,http://purl.obolibrary.org/obo/MONDO_0040871,psychogenic polydipsia +14.8754069,MONDO:0043759,http://purl.obolibrary.org/obo/MONDO_0043759,abdominal ectopic pregnancy +14.8754069,MONDO:0043783,http://purl.obolibrary.org/obo/MONDO_0043783,sclerema neonatorum +14.8754069,MONDO:0044323,http://purl.obolibrary.org/obo/MONDO_0044323,Rahman syndrome +14.8754069,MONDO:0044787,http://purl.obolibrary.org/obo/MONDO_0044787,nasal cavity and paranasal sinus squamous cell carcinoma +14.8754069,MONDO:0060774,http://purl.obolibrary.org/obo/MONDO_0060774,vaginal fibroepithelial polyp +14.8754069,MONDO:0100126,http://purl.obolibrary.org/obo/MONDO_0100126,P5CS deficiency +14.8754069,MONDO:0100176,http://purl.obolibrary.org/obo/MONDO_0100176,AP-4 deficiency syndrome +14.8754069,MOP:0000475,http://purl.obolibrary.org/obo/MOP_0000475,none +14.8754069,MOP:0000573,http://purl.obolibrary.org/obo/MOP_0000573,none +14.8754069,MOP:0000574,http://purl.obolibrary.org/obo/MOP_0000574,none +14.8754069,MOP:0000636,http://purl.obolibrary.org/obo/MOP_0000636,none +14.8754069,MOP:0000735,http://purl.obolibrary.org/obo/MOP_0000735,none +14.8754069,NCBITaxon:1028384,http://purl.obolibrary.org/obo/NCBITaxon_1028384,none +14.8754069,NCBITaxon:103820,http://purl.obolibrary.org/obo/NCBITaxon_103820,none +14.8754069,NCBITaxon:104580,http://purl.obolibrary.org/obo/NCBITaxon_104580,none +14.8754069,NCBITaxon:10521,http://purl.obolibrary.org/obo/NCBITaxon_10521,none +14.8754069,NCBITaxon:105428,http://purl.obolibrary.org/obo/NCBITaxon_105428,none +14.8754069,NCBITaxon:105503,http://purl.obolibrary.org/obo/NCBITaxon_105503,none +14.8754069,NCBITaxon:10573,http://purl.obolibrary.org/obo/NCBITaxon_10573,none +14.8754069,NCBITaxon:10651,http://purl.obolibrary.org/obo/NCBITaxon_10651,none +14.8754069,NCBITaxon:1100878,http://purl.obolibrary.org/obo/NCBITaxon_1100878,none +14.8754069,NCBITaxon:11094,http://purl.obolibrary.org/obo/NCBITaxon_11094,none +14.8754069,NCBITaxon:1118,http://purl.obolibrary.org/obo/NCBITaxon_1118,none +14.8754069,NCBITaxon:111875,http://purl.obolibrary.org/obo/NCBITaxon_111875,none +14.8754069,NCBITaxon:112436,http://purl.obolibrary.org/obo/NCBITaxon_112436,none +14.8754069,NCBITaxon:11263,http://purl.obolibrary.org/obo/NCBITaxon_11263,none +14.8754069,NCBITaxon:1144303,http://purl.obolibrary.org/obo/NCBITaxon_1144303,none +14.8754069,NCBITaxon:114916,http://purl.obolibrary.org/obo/NCBITaxon_114916,none +14.8754069,NCBITaxon:1159901,http://purl.obolibrary.org/obo/NCBITaxon_1159901,none +14.8754069,NCBITaxon:11888,http://purl.obolibrary.org/obo/NCBITaxon_11888,none +14.8754069,NCBITaxon:11899,http://purl.obolibrary.org/obo/NCBITaxon_11899,none +14.8754069,NCBITaxon:119910,http://purl.obolibrary.org/obo/NCBITaxon_119910,none +14.8754069,NCBITaxon:12057,http://purl.obolibrary.org/obo/NCBITaxon_12057,none +14.8754069,NCBITaxon:12074,http://purl.obolibrary.org/obo/NCBITaxon_12074,none +14.8754069,NCBITaxon:12116,http://purl.obolibrary.org/obo/NCBITaxon_12116,none +14.8754069,NCBITaxon:121582,http://purl.obolibrary.org/obo/NCBITaxon_121582,none +14.8754069,NCBITaxon:121583,http://purl.obolibrary.org/obo/NCBITaxon_121583,none +14.8754069,NCBITaxon:12204,http://purl.obolibrary.org/obo/NCBITaxon_12204,none +14.8754069,NCBITaxon:1238886,http://purl.obolibrary.org/obo/NCBITaxon_1238886,none +14.8754069,NCBITaxon:1285595,http://purl.obolibrary.org/obo/NCBITaxon_1285595,none +14.8754069,NCBITaxon:128818,http://purl.obolibrary.org/obo/NCBITaxon_128818,none +14.8754069,NCBITaxon:128986,http://purl.obolibrary.org/obo/NCBITaxon_128986,none +14.8754069,NCBITaxon:128987,http://purl.obolibrary.org/obo/NCBITaxon_128987,none +14.8754069,NCBITaxon:1299306,http://purl.obolibrary.org/obo/NCBITaxon_1299306,none +14.8754069,NCBITaxon:1307798,http://purl.obolibrary.org/obo/NCBITaxon_1307798,none +14.8754069,NCBITaxon:132598,http://purl.obolibrary.org/obo/NCBITaxon_132598,none +14.8754069,NCBITaxon:133981,http://purl.obolibrary.org/obo/NCBITaxon_133981,none +14.8754069,NCBITaxon:136836,http://purl.obolibrary.org/obo/NCBITaxon_136836,none +14.8754069,NCBITaxon:136838,http://purl.obolibrary.org/obo/NCBITaxon_136838,none +14.8754069,NCBITaxon:1440170,http://purl.obolibrary.org/obo/NCBITaxon_1440170,none +14.8754069,NCBITaxon:145856,http://purl.obolibrary.org/obo/NCBITaxon_145856,none +14.8754069,NCBITaxon:1463148,http://purl.obolibrary.org/obo/NCBITaxon_1463148,none +14.8754069,NCBITaxon:146499,http://purl.obolibrary.org/obo/NCBITaxon_146499,none +14.8754069,NCBITaxon:1491393,http://purl.obolibrary.org/obo/NCBITaxon_1491393,none +14.8754069,NCBITaxon:1511888,http://purl.obolibrary.org/obo/NCBITaxon_1511888,none +14.8754069,NCBITaxon:1511889,http://purl.obolibrary.org/obo/NCBITaxon_1511889,none +14.8754069,NCBITaxon:155864,http://purl.obolibrary.org/obo/NCBITaxon_155864,none +14.8754069,NCBITaxon:157777,http://purl.obolibrary.org/obo/NCBITaxon_157777,none +14.8754069,NCBITaxon:1592579,http://purl.obolibrary.org/obo/NCBITaxon_1592579,none +14.8754069,NCBITaxon:160674,http://purl.obolibrary.org/obo/NCBITaxon_160674,none +14.8754069,NCBITaxon:163343,http://purl.obolibrary.org/obo/NCBITaxon_163343,Trichostomatia +14.8754069,NCBITaxon:163729,http://purl.obolibrary.org/obo/NCBITaxon_163729,none +14.8754069,NCBITaxon:163739,http://purl.obolibrary.org/obo/NCBITaxon_163739,none +14.8754069,NCBITaxon:16733,http://purl.obolibrary.org/obo/NCBITaxon_16733,none +14.8754069,NCBITaxon:169619,http://purl.obolibrary.org/obo/NCBITaxon_169619,none +14.8754069,NCBITaxon:172296,http://purl.obolibrary.org/obo/NCBITaxon_172296,none +14.8754069,NCBITaxon:172391,http://purl.obolibrary.org/obo/NCBITaxon_172391,none +14.8754069,NCBITaxon:175814,http://purl.obolibrary.org/obo/NCBITaxon_175814,none +14.8754069,NCBITaxon:184020,http://purl.obolibrary.org/obo/NCBITaxon_184020,none +14.8754069,NCBITaxon:1854,http://purl.obolibrary.org/obo/NCBITaxon_1854,none +14.8754069,NCBITaxon:185585,http://purl.obolibrary.org/obo/NCBITaxon_185585,none +14.8754069,NCBITaxon:185782,http://purl.obolibrary.org/obo/NCBITaxon_185782,none +14.8754069,NCBITaxon:186632,http://purl.obolibrary.org/obo/NCBITaxon_186632,none +14.8754069,NCBITaxon:186827,http://purl.obolibrary.org/obo/NCBITaxon_186827,none +14.8754069,NCBITaxon:1873,http://purl.obolibrary.org/obo/NCBITaxon_1873,none +14.8754069,NCBITaxon:1903409,http://purl.obolibrary.org/obo/NCBITaxon_1903409,none +14.8754069,NCBITaxon:1903412,http://purl.obolibrary.org/obo/NCBITaxon_1903412,none +14.8754069,NCBITaxon:190811,http://purl.obolibrary.org/obo/NCBITaxon_190811,none +14.8754069,NCBITaxon:1913638,http://purl.obolibrary.org/obo/NCBITaxon_1913638,Zoopagomycota +14.8754069,NCBITaxon:1921002,http://purl.obolibrary.org/obo/NCBITaxon_1921002,none +14.8754069,NCBITaxon:1933190,http://purl.obolibrary.org/obo/NCBITaxon_1933190,none +14.8754069,NCBITaxon:1933303,http://purl.obolibrary.org/obo/NCBITaxon_1933303,none +14.8754069,NCBITaxon:194445,http://purl.obolibrary.org/obo/NCBITaxon_194445,none +14.8754069,NCBITaxon:196249,http://purl.obolibrary.org/obo/NCBITaxon_196249,none +14.8754069,NCBITaxon:196398,http://purl.obolibrary.org/obo/NCBITaxon_196398,none +14.8754069,NCBITaxon:1972584,http://purl.obolibrary.org/obo/NCBITaxon_1972584,none +14.8754069,NCBITaxon:1972589,http://purl.obolibrary.org/obo/NCBITaxon_1972589,none +14.8754069,NCBITaxon:1978542,http://purl.obolibrary.org/obo/NCBITaxon_1978542,none +14.8754069,NCBITaxon:202567,http://purl.obolibrary.org/obo/NCBITaxon_202567,none +14.8754069,NCBITaxon:2026555,http://purl.obolibrary.org/obo/NCBITaxon_2026555,none +14.8754069,NCBITaxon:2045261,http://purl.obolibrary.org/obo/NCBITaxon_2045261,none +14.8754069,NCBITaxon:2066474,http://purl.obolibrary.org/obo/NCBITaxon_2066474,none +14.8754069,NCBITaxon:214439,http://purl.obolibrary.org/obo/NCBITaxon_214439,none +14.8754069,NCBITaxon:215449,http://purl.obolibrary.org/obo/NCBITaxon_215449,none +14.8754069,NCBITaxon:215450,http://purl.obolibrary.org/obo/NCBITaxon_215450,none +14.8754069,NCBITaxon:216371,http://purl.obolibrary.org/obo/NCBITaxon_216371,none +14.8754069,NCBITaxon:217686,http://purl.obolibrary.org/obo/NCBITaxon_217686,none +14.8754069,NCBITaxon:21910,http://purl.obolibrary.org/obo/NCBITaxon_21910,none +14.8754069,NCBITaxon:222545,http://purl.obolibrary.org/obo/NCBITaxon_222545,Xylariomycetidae +14.8754069,NCBITaxon:223344,http://purl.obolibrary.org/obo/NCBITaxon_223344,none +14.8754069,NCBITaxon:224379,http://purl.obolibrary.org/obo/NCBITaxon_224379,none +14.8754069,NCBITaxon:225752,http://purl.obolibrary.org/obo/NCBITaxon_225752,none +14.8754069,NCBITaxon:2290931,http://purl.obolibrary.org/obo/NCBITaxon_2290931,none +14.8754069,NCBITaxon:231213,http://purl.obolibrary.org/obo/NCBITaxon_231213,none +14.8754069,NCBITaxon:232800,http://purl.obolibrary.org/obo/NCBITaxon_232800,none +14.8754069,NCBITaxon:233263,http://purl.obolibrary.org/obo/NCBITaxon_233263,none +14.8754069,NCBITaxon:24663,http://purl.obolibrary.org/obo/NCBITaxon_24663,none +14.8754069,NCBITaxon:249171,http://purl.obolibrary.org/obo/NCBITaxon_249171,none +14.8754069,NCBITaxon:2501367,http://purl.obolibrary.org/obo/NCBITaxon_2501367,none +14.8754069,NCBITaxon:2501381,http://purl.obolibrary.org/obo/NCBITaxon_2501381,none +14.8754069,NCBITaxon:2546018,http://purl.obolibrary.org/obo/NCBITaxon_2546018,none +14.8754069,NCBITaxon:2560345,http://purl.obolibrary.org/obo/NCBITaxon_2560345,none +14.8754069,NCBITaxon:2560528,http://purl.obolibrary.org/obo/NCBITaxon_2560528,none +14.8754069,NCBITaxon:259437,http://purl.obolibrary.org/obo/NCBITaxon_259437,none +14.8754069,NCBITaxon:2664420,http://purl.obolibrary.org/obo/NCBITaxon_2664420,none +14.8754069,NCBITaxon:267407,http://purl.obolibrary.org/obo/NCBITaxon_267407,none +14.8754069,NCBITaxon:267888,http://purl.obolibrary.org/obo/NCBITaxon_267888,none +14.8754069,NCBITaxon:270256,http://purl.obolibrary.org/obo/NCBITaxon_270256,none +14.8754069,NCBITaxon:273341,http://purl.obolibrary.org/obo/NCBITaxon_273341,none +14.8754069,NCBITaxon:2743695,http://purl.obolibrary.org/obo/NCBITaxon_2743695,none +14.8754069,NCBITaxon:2743729,http://purl.obolibrary.org/obo/NCBITaxon_2743729,none +14.8754069,NCBITaxon:2747498,http://purl.obolibrary.org/obo/NCBITaxon_2747498,none +14.8754069,NCBITaxon:29120,http://purl.obolibrary.org/obo/NCBITaxon_29120,Oligoryzomys +14.8754069,NCBITaxon:29135,http://purl.obolibrary.org/obo/NCBITaxon_29135,none +14.8754069,NCBITaxon:29142,http://purl.obolibrary.org/obo/NCBITaxon_29142,none +14.8754069,NCBITaxon:295090,http://purl.obolibrary.org/obo/NCBITaxon_295090,none +14.8754069,NCBITaxon:30365,http://purl.obolibrary.org/obo/NCBITaxon_30365,none +14.8754069,NCBITaxon:305899,http://purl.obolibrary.org/obo/NCBITaxon_305899,none +14.8754069,NCBITaxon:31612,http://purl.obolibrary.org/obo/NCBITaxon_31612,none +14.8754069,NCBITaxon:31646,http://purl.obolibrary.org/obo/NCBITaxon_31646,none +14.8754069,NCBITaxon:317359,http://purl.obolibrary.org/obo/NCBITaxon_317359,none +14.8754069,NCBITaxon:318477,http://purl.obolibrary.org/obo/NCBITaxon_318477,Dracunculidae +14.8754069,NCBITaxon:318478,http://purl.obolibrary.org/obo/NCBITaxon_318478,Dracunculus +14.8754069,NCBITaxon:32379,http://purl.obolibrary.org/obo/NCBITaxon_32379,none +14.8754069,NCBITaxon:32594,http://purl.obolibrary.org/obo/NCBITaxon_32594,Babesiidae +14.8754069,NCBITaxon:327984,http://purl.obolibrary.org/obo/NCBITaxon_327984,none +14.8754069,NCBITaxon:328430,http://purl.obolibrary.org/obo/NCBITaxon_328430,none +14.8754069,NCBITaxon:333753,http://purl.obolibrary.org/obo/NCBITaxon_333753,none +14.8754069,NCBITaxon:337044,http://purl.obolibrary.org/obo/NCBITaxon_337044,none +14.8754069,NCBITaxon:337048,http://purl.obolibrary.org/obo/NCBITaxon_337048,none +14.8754069,NCBITaxon:340178,http://purl.obolibrary.org/obo/NCBITaxon_340178,none +14.8754069,NCBITaxon:340179,http://purl.obolibrary.org/obo/NCBITaxon_340179,none +14.8754069,NCBITaxon:340180,http://purl.obolibrary.org/obo/NCBITaxon_340180,none +14.8754069,NCBITaxon:341053,http://purl.obolibrary.org/obo/NCBITaxon_341053,none +14.8754069,NCBITaxon:3433,http://purl.obolibrary.org/obo/NCBITaxon_3433,none +14.8754069,NCBITaxon:3445,http://purl.obolibrary.org/obo/NCBITaxon_3445,none +14.8754069,NCBITaxon:346178,http://purl.obolibrary.org/obo/NCBITaxon_346178,none +14.8754069,NCBITaxon:34984,http://purl.obolibrary.org/obo/NCBITaxon_34984,none +14.8754069,NCBITaxon:3511,http://purl.obolibrary.org/obo/NCBITaxon_3511,none +14.8754069,NCBITaxon:35257,http://purl.obolibrary.org/obo/NCBITaxon_35257,none +14.8754069,NCBITaxon:35310,http://purl.obolibrary.org/obo/NCBITaxon_35310,none +14.8754069,NCBITaxon:35339,http://purl.obolibrary.org/obo/NCBITaxon_35339,none +14.8754069,NCBITaxon:35342,http://purl.obolibrary.org/obo/NCBITaxon_35342,none +14.8754069,NCBITaxon:3564,http://purl.obolibrary.org/obo/NCBITaxon_3564,none +14.8754069,NCBITaxon:356411,http://purl.obolibrary.org/obo/NCBITaxon_356411,none +14.8754069,NCBITaxon:35718,http://purl.obolibrary.org/obo/NCBITaxon_35718,none +14.8754069,NCBITaxon:3624,http://purl.obolibrary.org/obo/NCBITaxon_3624,none +14.8754069,NCBITaxon:3683,http://purl.obolibrary.org/obo/NCBITaxon_3683,none +14.8754069,NCBITaxon:37122,http://purl.obolibrary.org/obo/NCBITaxon_37122,none +14.8754069,NCBITaxon:37127,http://purl.obolibrary.org/obo/NCBITaxon_37127,none +14.8754069,NCBITaxon:3733,http://purl.obolibrary.org/obo/NCBITaxon_3733,none +14.8754069,NCBITaxon:37569,http://purl.obolibrary.org/obo/NCBITaxon_37569,Bombycoidea +14.8754069,NCBITaxon:37845,http://purl.obolibrary.org/obo/NCBITaxon_37845,none +14.8754069,NCBITaxon:37846,http://purl.obolibrary.org/obo/NCBITaxon_37846,none +14.8754069,NCBITaxon:379729,http://purl.obolibrary.org/obo/NCBITaxon_379729,none +14.8754069,NCBITaxon:37989,http://purl.obolibrary.org/obo/NCBITaxon_37989,Xylariales +14.8754069,NCBITaxon:380434,http://purl.obolibrary.org/obo/NCBITaxon_380434,none +14.8754069,NCBITaxon:39046,http://purl.obolibrary.org/obo/NCBITaxon_39046,none +14.8754069,NCBITaxon:39444,http://purl.obolibrary.org/obo/NCBITaxon_39444,none +14.8754069,NCBITaxon:39748,http://purl.obolibrary.org/obo/NCBITaxon_39748,none +14.8754069,NCBITaxon:39749,http://purl.obolibrary.org/obo/NCBITaxon_39749,none +14.8754069,NCBITaxon:400035,http://purl.obolibrary.org/obo/NCBITaxon_400035,none +14.8754069,NCBITaxon:40004,http://purl.obolibrary.org/obo/NCBITaxon_40004,none +14.8754069,NCBITaxon:40069,http://purl.obolibrary.org/obo/NCBITaxon_40069,none +14.8754069,NCBITaxon:40150,http://purl.obolibrary.org/obo/NCBITaxon_40150,Monodon +14.8754069,NCBITaxon:404196,http://purl.obolibrary.org/obo/NCBITaxon_404196,none +14.8754069,NCBITaxon:408598,http://purl.obolibrary.org/obo/NCBITaxon_408598,none +14.8754069,NCBITaxon:410603,http://purl.obolibrary.org/obo/NCBITaxon_410603,none +14.8754069,NCBITaxon:4113,http://purl.obolibrary.org/obo/NCBITaxon_4113,none +14.8754069,NCBITaxon:41294,http://purl.obolibrary.org/obo/NCBITaxon_41294,none +14.8754069,NCBITaxon:4144,http://purl.obolibrary.org/obo/NCBITaxon_4144,none +14.8754069,NCBITaxon:4149,http://purl.obolibrary.org/obo/NCBITaxon_4149,none +14.8754069,NCBITaxon:41954,http://purl.obolibrary.org/obo/NCBITaxon_41954,none +14.8754069,NCBITaxon:42662,http://purl.obolibrary.org/obo/NCBITaxon_42662,none +14.8754069,NCBITaxon:42863,http://purl.obolibrary.org/obo/NCBITaxon_42863,none +14.8754069,NCBITaxon:4469,http://purl.obolibrary.org/obo/NCBITaxon_4469,none +14.8754069,NCBITaxon:44746,http://purl.obolibrary.org/obo/NCBITaxon_44746,none +14.8754069,NCBITaxon:44747,http://purl.obolibrary.org/obo/NCBITaxon_44747,none +14.8754069,NCBITaxon:4481,http://purl.obolibrary.org/obo/NCBITaxon_4481,none +14.8754069,NCBITaxon:45223,http://purl.obolibrary.org/obo/NCBITaxon_45223,none +14.8754069,NCBITaxon:4577,http://purl.obolibrary.org/obo/NCBITaxon_4577,none +14.8754069,NCBITaxon:46123,http://purl.obolibrary.org/obo/NCBITaxon_46123,none +14.8754069,NCBITaxon:47929,http://purl.obolibrary.org/obo/NCBITaxon_47929,none +14.8754069,NCBITaxon:47985,http://purl.obolibrary.org/obo/NCBITaxon_47985,none +14.8754069,NCBITaxon:51888,http://purl.obolibrary.org/obo/NCBITaxon_51888,none +14.8754069,NCBITaxon:523909,http://purl.obolibrary.org/obo/NCBITaxon_523909,none +14.8754069,NCBITaxon:5250,http://purl.obolibrary.org/obo/NCBITaxon_5250,none +14.8754069,NCBITaxon:53246,http://purl.obolibrary.org/obo/NCBITaxon_53246,none +14.8754069,NCBITaxon:548256,http://purl.obolibrary.org/obo/NCBITaxon_548256,none +14.8754069,NCBITaxon:55075,http://purl.obolibrary.org/obo/NCBITaxon_55075,none +14.8754069,NCBITaxon:551287,http://purl.obolibrary.org/obo/NCBITaxon_551287,none +14.8754069,NCBITaxon:551351,http://purl.obolibrary.org/obo/NCBITaxon_551351,none +14.8754069,NCBITaxon:5543,http://purl.obolibrary.org/obo/NCBITaxon_5543,none +14.8754069,NCBITaxon:55946,http://purl.obolibrary.org/obo/NCBITaxon_55946,none +14.8754069,NCBITaxon:55962,http://purl.obolibrary.org/obo/NCBITaxon_55962,none +14.8754069,NCBITaxon:5761,http://purl.obolibrary.org/obo/NCBITaxon_5761,Naegleria +14.8754069,NCBITaxon:58042,http://purl.obolibrary.org/obo/NCBITaxon_58042,none +14.8754069,NCBITaxon:5864,http://purl.obolibrary.org/obo/NCBITaxon_5864,Babesia +14.8754069,NCBITaxon:590403,http://purl.obolibrary.org/obo/NCBITaxon_590403,none +14.8754069,NCBITaxon:62059,http://purl.obolibrary.org/obo/NCBITaxon_62059,none +14.8754069,NCBITaxon:6324,http://purl.obolibrary.org/obo/NCBITaxon_6324,none +14.8754069,NCBITaxon:63630,http://purl.obolibrary.org/obo/NCBITaxon_63630,none +14.8754069,NCBITaxon:63631,http://purl.obolibrary.org/obo/NCBITaxon_63631,none +14.8754069,NCBITaxon:6381,http://purl.obolibrary.org/obo/NCBITaxon_6381,none +14.8754069,NCBITaxon:64003,http://purl.obolibrary.org/obo/NCBITaxon_64003,none +14.8754069,NCBITaxon:64283,http://purl.obolibrary.org/obo/NCBITaxon_64283,none +14.8754069,NCBITaxon:64304,http://purl.obolibrary.org/obo/NCBITaxon_64304,none +14.8754069,NCBITaxon:65068,http://purl.obolibrary.org/obo/NCBITaxon_65068,none +14.8754069,NCBITaxon:6605,http://purl.obolibrary.org/obo/NCBITaxon_6605,Cephalopoda +14.8754069,NCBITaxon:6606,http://purl.obolibrary.org/obo/NCBITaxon_6606,none +14.8754069,NCBITaxon:6608,http://purl.obolibrary.org/obo/NCBITaxon_6608,none +14.8754069,NCBITaxon:660955,http://purl.obolibrary.org/obo/NCBITaxon_660955,none +14.8754069,NCBITaxon:675077,http://purl.obolibrary.org/obo/NCBITaxon_675077,none +14.8754069,NCBITaxon:67762,http://purl.obolibrary.org/obo/NCBITaxon_67762,none +14.8754069,NCBITaxon:6855,http://purl.obolibrary.org/obo/NCBITaxon_6855,none +14.8754069,NCBITaxon:6856,http://purl.obolibrary.org/obo/NCBITaxon_6856,none +14.8754069,NCBITaxon:69217,http://purl.obolibrary.org/obo/NCBITaxon_69217,none +14.8754069,NCBITaxon:69461,http://purl.obolibrary.org/obo/NCBITaxon_69461,none +14.8754069,NCBITaxon:6954,http://purl.obolibrary.org/obo/NCBITaxon_6954,none +14.8754069,NCBITaxon:69955,http://purl.obolibrary.org/obo/NCBITaxon_69955,none +14.8754069,NCBITaxon:70336,http://purl.obolibrary.org/obo/NCBITaxon_70336,none +14.8754069,NCBITaxon:705993,http://purl.obolibrary.org/obo/NCBITaxon_705993,none +14.8754069,NCBITaxon:71927,http://purl.obolibrary.org/obo/NCBITaxon_71927,none +14.8754069,NCBITaxon:72132,http://purl.obolibrary.org/obo/NCBITaxon_72132,none +14.8754069,NCBITaxon:7279,http://purl.obolibrary.org/obo/NCBITaxon_7279,none +14.8754069,NCBITaxon:73036,http://purl.obolibrary.org/obo/NCBITaxon_73036,none +14.8754069,NCBITaxon:74712,http://purl.obolibrary.org/obo/NCBITaxon_74712,none +14.8754069,NCBITaxon:74721,http://purl.obolibrary.org/obo/NCBITaxon_74721,none +14.8754069,NCBITaxon:75682,http://purl.obolibrary.org/obo/NCBITaxon_75682,none +14.8754069,NCBITaxon:75986,http://purl.obolibrary.org/obo/NCBITaxon_75986,none +14.8754069,NCBITaxon:77647,http://purl.obolibrary.org/obo/NCBITaxon_77647,none +14.8754069,NCBITaxon:7860,http://purl.obolibrary.org/obo/NCBITaxon_7860,none +14.8754069,NCBITaxon:7861,http://purl.obolibrary.org/obo/NCBITaxon_7861,none +14.8754069,NCBITaxon:795077,http://purl.obolibrary.org/obo/NCBITaxon_795077,none +14.8754069,NCBITaxon:80388,http://purl.obolibrary.org/obo/NCBITaxon_80388,none +14.8754069,NCBITaxon:8076,http://purl.obolibrary.org/obo/NCBITaxon_8076,none +14.8754069,NCBITaxon:80938,http://purl.obolibrary.org/obo/NCBITaxon_80938,none +14.8754069,NCBITaxon:8180,http://purl.obolibrary.org/obo/NCBITaxon_8180,none +14.8754069,NCBITaxon:81877,http://purl.obolibrary.org/obo/NCBITaxon_81877,none +14.8754069,NCBITaxon:81906,http://purl.obolibrary.org/obo/NCBITaxon_81906,none +14.8754069,NCBITaxon:81907,http://purl.obolibrary.org/obo/NCBITaxon_81907,none +14.8754069,NCBITaxon:82592,http://purl.obolibrary.org/obo/NCBITaxon_82592,none +14.8754069,NCBITaxon:82956,http://purl.obolibrary.org/obo/NCBITaxon_82956,none +14.8754069,NCBITaxon:8380,http://purl.obolibrary.org/obo/NCBITaxon_8380,none +14.8754069,NCBITaxon:85013,http://purl.obolibrary.org/obo/NCBITaxon_85013,none +14.8754069,NCBITaxon:85106,http://purl.obolibrary.org/obo/NCBITaxon_85106,none +14.8754069,NCBITaxon:888065,http://purl.obolibrary.org/obo/NCBITaxon_888065,none +14.8754069,NCBITaxon:89373,http://purl.obolibrary.org/obo/NCBITaxon_89373,none +14.8754069,NCBITaxon:8977,http://purl.obolibrary.org/obo/NCBITaxon_8977,none +14.8754069,NCBITaxon:9103,http://purl.obolibrary.org/obo/NCBITaxon_9103,Meleagris gallopavo +14.8754069,NCBITaxon:910345,http://purl.obolibrary.org/obo/NCBITaxon_910345,none +14.8754069,NCBITaxon:9133,http://purl.obolibrary.org/obo/NCBITaxon_9133,none +14.8754069,NCBITaxon:9205,http://purl.obolibrary.org/obo/NCBITaxon_9205,none +14.8754069,NCBITaxon:92963,http://purl.obolibrary.org/obo/NCBITaxon_92963,none +14.8754069,NCBITaxon:930979,http://purl.obolibrary.org/obo/NCBITaxon_930979,none +14.8754069,NCBITaxon:95194,http://purl.obolibrary.org/obo/NCBITaxon_95194,none +14.8754069,NCBITaxon:95455,http://purl.obolibrary.org/obo/NCBITaxon_95455,none +14.8754069,NCBITaxon:9747,http://purl.obolibrary.org/obo/NCBITaxon_9747,Monodontidae +14.8754069,NCBITaxon:9790,http://purl.obolibrary.org/obo/NCBITaxon_9790,Equus burchellii +14.8754069,NCBITaxon:999641,http://purl.obolibrary.org/obo/NCBITaxon_999641,none +14.8754069,PR:000001147,http://purl.obolibrary.org/obo/PR_000001147,adhesion G protein-coupled receptor A1 +14.8754069,PR:000001799,http://purl.obolibrary.org/obo/PR_000001799,none +14.8754069,PR:000001982,http://purl.obolibrary.org/obo/PR_000001982,ATP-sensitive inward rectifier potassium channel 14 +14.8754069,PR:000002226,http://purl.obolibrary.org/obo/PR_000002226,none +14.8754069,PR:000002343,http://purl.obolibrary.org/obo/PR_000002343,protein kinase C eta type +14.8754069,PR:000003472,http://purl.obolibrary.org/obo/PR_000003472,granzyme K +14.8754069,PR:000003577,http://purl.obolibrary.org/obo/PR_000003577,(lyso)-N-acylphosphatidylethanolamine lipase +14.8754069,PR:000003585,http://purl.obolibrary.org/obo/PR_000003585,actin-binding LIM protein 2 +14.8754069,PR:000003613,http://purl.obolibrary.org/obo/PR_000003613,acyl-CoA-binding domain-containing protein 6 +14.8754069,PR:000003694,http://purl.obolibrary.org/obo/PR_000003694,beta-centractin +14.8754069,PR:000003722,http://purl.obolibrary.org/obo/PR_000003722,disintegrin and metalloproteinase domain-containing protein 30 +14.8754069,PR:000003742,http://purl.obolibrary.org/obo/PR_000003742,ADAMTS-like protein 5 +14.8754069,PR:000003748,http://purl.obolibrary.org/obo/PR_000003748,tRNA-specific adenosine deaminase 1 +14.8754069,PR:000003810,http://purl.obolibrary.org/obo/PR_000003810,aftiphilin +14.8754069,PR:000003851,http://purl.obolibrary.org/obo/PR_000003851,ethanolamine-phosphate phospho-lyase +14.8754069,PR:000003951,http://purl.obolibrary.org/obo/PR_000003951,alpha-ketoglutarate-dependent dioxygenase alkB homolog 4 +14.8754069,PR:000003954,http://purl.obolibrary.org/obo/PR_000003954,"alpha-ketoglutarate-dependent dioxygenase alkB homolog 7, mitochondrial" +14.8754069,PR:000003977,http://purl.obolibrary.org/obo/PR_000003977,calcium-responsive transcription factor +14.8754069,PR:000004174,http://purl.obolibrary.org/obo/PR_000004174,AP20 region protein 1 +14.8754069,PR:000004199,http://purl.obolibrary.org/obo/PR_000004199,N-terminal acetyltransferase complex ARD1 subunit B +14.8754069,PR:000004233,http://purl.obolibrary.org/obo/PR_000004233,Rho GTPase-activating protein 27 +14.8754069,PR:000004347,http://purl.obolibrary.org/obo/PR_000004347,ankyrin repeat and SOCS box protein 15 +14.8754069,PR:000004349,http://purl.obolibrary.org/obo/PR_000004349,ankyrin repeat and SOCS box protein 17 +14.8754069,PR:000004365,http://purl.obolibrary.org/obo/PR_000004365,achaete-scute homolog 4 +14.8754069,PR:000004387,http://purl.obolibrary.org/obo/PR_000004387,protein asteroid homolog 1 +14.8754069,PR:000004485,http://purl.obolibrary.org/obo/PR_000004485,V-type proton ATPase subunit D +14.8754069,PR:000004545,http://purl.obolibrary.org/obo/PR_000004545,none +14.8754069,PR:000004611,http://purl.obolibrary.org/obo/PR_000004611,"beta-1,4-galactosyltransferase 7" +14.8754069,PR:000004674,http://purl.obolibrary.org/obo/PR_000004674,B-cell receptor-associated protein 29 +14.8754069,PR:000004724,http://purl.obolibrary.org/obo/PR_000004724,bestrophin-4 +14.8754069,PR:000004731,http://purl.obolibrary.org/obo/PR_000004731,protein BEX5 +14.8754069,PR:000004792,http://purl.obolibrary.org/obo/PR_000004792,bisphosphoglycerate mutase +14.8754069,PR:000004827,http://purl.obolibrary.org/obo/PR_000004827,CUGBP Elav-like family member 6 +14.8754069,PR:000004850,http://purl.obolibrary.org/obo/PR_000004850,butyrophilin-like protein 3 +14.8754069,PR:000004851,http://purl.obolibrary.org/obo/PR_000004851,butyrophilin-like protein 8 +14.8754069,PR:000004852,http://purl.obolibrary.org/obo/PR_000004852,butyrophilin-like protein 9 +14.8754069,PR:000004864,http://purl.obolibrary.org/obo/PR_000004864,peripheral-type benzodiazepine receptor-like protein 1 +14.8754069,PR:000004876,http://purl.obolibrary.org/obo/PR_000004876,complement C1q subcomponent subunit B +14.8754069,PR:000004909,http://purl.obolibrary.org/obo/PR_000004909,complement component C8 beta chain +14.8754069,PR:000004952,http://purl.obolibrary.org/obo/PR_000004952,voltage-dependent calcium channel gamma-3 subunit +14.8754069,PR:000004976,http://purl.obolibrary.org/obo/PR_000004976,calcium homeostasis modulator protein 2 +14.8754069,PR:000004996,http://purl.obolibrary.org/obo/PR_000004996,CaM kinase-like vesicle-associated protein +14.8754069,PR:000005100,http://purl.obolibrary.org/obo/PR_000005100,HAUS augmin-like complex subunit 1 +14.8754069,PR:000005101,http://purl.obolibrary.org/obo/PR_000005101,coiled-coil domain-containing protein 50 +14.8754069,PR:000005159,http://purl.obolibrary.org/obo/PR_000005159,scavenger receptor cysteine-rich type 1 protein M160 +14.8754069,PR:000005189,http://purl.obolibrary.org/obo/PR_000005189,cell division cycle protein 20 homolog B +14.8754069,PR:000005202,http://purl.obolibrary.org/obo/PR_000005202,Hsp90 co-chaperone Cdc37-like 1 +14.8754069,PR:000005331,http://purl.obolibrary.org/obo/PR_000005331,centromere protein K +14.8754069,PR:000005390,http://purl.obolibrary.org/obo/PR_000005390,choriogonadotropin subunit beta variant 2 +14.8754069,PR:000005450,http://purl.obolibrary.org/obo/PR_000005450,chromatin accessibility complex protein 1 +14.8754069,PR:000005565,http://purl.obolibrary.org/obo/PR_000005565,C-type lectin domain family 2 member A +14.8754069,PR:000005703,http://purl.obolibrary.org/obo/PR_000005703,collagen alpha-1(XIX) chain +14.8754069,PR:000005709,http://purl.obolibrary.org/obo/PR_000005709,collagen alpha-1(XXV) chain +14.8754069,PR:000005745,http://purl.obolibrary.org/obo/PR_000005745,COP9 signalosome complex subunit 7b +14.8754069,PR:000005772,http://purl.obolibrary.org/obo/PR_000005772,"cytochrome c oxidase assembly protein COX16, mitochondrial" +14.8754069,PR:000005778,http://purl.obolibrary.org/obo/PR_000005778,ER membrane protein complex subunit 8 +14.8754069,PR:000005819,http://purl.obolibrary.org/obo/PR_000005819,copine-4 +14.8754069,PR:000006104,http://purl.obolibrary.org/obo/PR_000006104,cytochrome P450 20A1 +14.8754069,PR:000006169,http://purl.obolibrary.org/obo/PR_000006169,cell surface glycoprotein CD200 receptor 3 +14.8754069,PR:000006316,http://purl.obolibrary.org/obo/PR_000006316,dendritic cell nuclear protein 1 +14.8754069,PR:000006326,http://purl.obolibrary.org/obo/PR_000006326,dynactin subunit 4 +14.8754069,PR:000006402,http://purl.obolibrary.org/obo/PR_000006402,beta-defensin 126 +14.8754069,PR:000006445,http://purl.obolibrary.org/obo/PR_000006445,diacylglycerol kinase epsilon +14.8754069,PR:000006471,http://purl.obolibrary.org/obo/PR_000006471,ATP-dependent RNA helicase DHX29 +14.8754069,PR:000006547,http://purl.obolibrary.org/obo/PR_000006547,doublesex- and mab-3-related transcription factor B1 +14.8754069,PR:000006640,http://purl.obolibrary.org/obo/PR_000006640,protein dopey-2 +14.8754069,PR:000006714,http://purl.obolibrary.org/obo/PR_000006714,dual serine/threonine and tyrosine protein kinase +14.8754069,PR:000006771,http://purl.obolibrary.org/obo/PR_000006771,cytoplasmic dynein 1 intermediate chain 1 +14.8754069,PR:000006795,http://purl.obolibrary.org/obo/PR_000006795,none +14.8754069,PR:000006849,http://purl.obolibrary.org/obo/PR_000006849,none +14.8754069,PR:000007012,http://purl.obolibrary.org/obo/PR_000007012,chymotrypsin-like elastase family member 3A +14.8754069,PR:000007052,http://purl.obolibrary.org/obo/PR_000007052,collagen alpha-1(XXVI) chain +14.8754069,PR:000007075,http://purl.obolibrary.org/obo/PR_000007075,endonuclease domain-containing 1 protein +14.8754069,PR:000007099,http://purl.obolibrary.org/obo/PR_000007099,ectonucleoside triphosphate diphosphohydrolase 8 +14.8754069,PR:000007148,http://purl.obolibrary.org/obo/PR_000007148,epidermal growth factor receptor kinase substrate 8-like protein 1 +14.8754069,PR:000007174,http://purl.obolibrary.org/obo/PR_000007174,endoplasmic reticulum-Golgi intermediate compartment protein 1 +14.8754069,PR:000007183,http://purl.obolibrary.org/obo/PR_000007183,ermin +14.8754069,PR:000007184,http://purl.obolibrary.org/obo/PR_000007184,endoplasmic reticulum metallopeptidase 1 +14.8754069,PR:000007375,http://purl.obolibrary.org/obo/PR_000007375,F-box/LRR-repeat protein 17 +14.8754069,PR:000007376,http://purl.obolibrary.org/obo/PR_000007376,F-box/LRR-repeat protein 18 +14.8754069,PR:000007403,http://purl.obolibrary.org/obo/PR_000007403,F-box only protein 33 +14.8754069,PR:000007413,http://purl.obolibrary.org/obo/PR_000007413,F-box only protein 44 +14.8754069,PR:000007421,http://purl.obolibrary.org/obo/PR_000007421,F-box only protein 9 +14.8754069,PR:000007453,http://purl.obolibrary.org/obo/PR_000007453,"ferrochelatase, mitochondrial" +14.8754069,PR:000007535,http://purl.obolibrary.org/obo/PR_000007535,FK506-binding protein 15 +14.8754069,PR:000007668,http://purl.obolibrary.org/obo/PR_000007668,FERM and PDZ domain-containing protein 1 +14.8754069,PR:000007838,http://purl.obolibrary.org/obo/PR_000007838,neutral alpha-glucosidase C +14.8754069,PR:000007852,http://purl.obolibrary.org/obo/PR_000007852,GAS2-like protein 3 +14.8754069,PR:000007870,http://purl.obolibrary.org/obo/PR_000007870,protein NipSnap homolog 2 +14.8754069,PR:000008012,http://purl.obolibrary.org/obo/PR_000008012,G kinase-anchoring protein 1 +14.8754069,PR:000008077,http://purl.obolibrary.org/obo/PR_000008077,GMP reductase 1 +14.8754069,PR:000008078,http://purl.obolibrary.org/obo/PR_000008078,GMP reductase 2 +14.8754069,PR:000008201,http://purl.obolibrary.org/obo/PR_000008201,G protein-regulated inducer of neurite outgrowth 3 +14.8754069,PR:000008284,http://purl.obolibrary.org/obo/PR_000008284,germ cell-specific gene 1 protein +14.8754069,PR:000008337,http://purl.obolibrary.org/obo/PR_000008337,mitochondrial ribosome-associated GTPase 2 +14.8754069,PR:000008496,http://purl.obolibrary.org/obo/PR_000008496,highly divergent homeobox +14.8754069,PR:000008497,http://purl.obolibrary.org/obo/PR_000008497,HEAT repeat-containing protein 1 +14.8754069,PR:000008533,http://purl.obolibrary.org/obo/PR_000008533,"homogentisate 1,2-dioxygenase" +14.8754069,PR:000008569,http://purl.obolibrary.org/obo/PR_000008569,homeodomain-interacting protein kinase 4 +14.8754069,PR:000008677,http://purl.obolibrary.org/obo/PR_000008677,heterogeneous nuclear ribonucleoprotein L-like +14.8754069,PR:000008927,http://purl.obolibrary.org/obo/PR_000008927,interferon kappa +14.8754069,PR:000009010,http://purl.obolibrary.org/obo/PR_000009010,integrin-linked kinase-associated serine/threonine phosphatase 2C +14.8754069,PR:000009040,http://purl.obolibrary.org/obo/PR_000009040,INO80 complex subunit B +14.8754069,PR:000009155,http://purl.obolibrary.org/obo/PR_000009155,inositol-trisphosphate 3-kinase A +14.8754069,PR:000009200,http://purl.obolibrary.org/obo/PR_000009200,Janus kinase and microtubule-interacting protein 2 +14.8754069,PR:000009253,http://purl.obolibrary.org/obo/PR_000009253,voltage-gated potassium channel subunit beta-3 +14.8754069,PR:000009600,http://purl.obolibrary.org/obo/PR_000009600,none +14.8754069,PR:000009881,http://purl.obolibrary.org/obo/PR_000009881,peroxisomal Lon protease 2 +14.8754069,PR:000009907,http://purl.obolibrary.org/obo/PR_000009907,phospholipid phosphatase-related protein type 5 +14.8754069,PR:000009912,http://purl.obolibrary.org/obo/PR_000009912,leucine-rich repeat and fibronectin type III domain-containing protein 1 +14.8754069,PR:000009990,http://purl.obolibrary.org/obo/PR_000009990,lymphocyte antigen 6 complex locus protein G5b +14.8754069,PR:000009996,http://purl.obolibrary.org/obo/PR_000009996,lymphocyte antigen 6K +14.8754069,PR:000010054,http://purl.obolibrary.org/obo/PR_000010054,melanoma-associated antigen 10 +14.8754069,PR:000010191,http://purl.obolibrary.org/obo/PR_000010191,"methionyl-tRNA synthetase, mitochondrial" +14.8754069,PR:000010217,http://purl.obolibrary.org/obo/PR_000010217,methyl-CpG-binding domain protein 3-like 1 +14.8754069,PR:000010299,http://purl.obolibrary.org/obo/PR_000010299,mediator of RNA polymerase II transcription subunit 27 +14.8754069,PR:000010326,http://purl.obolibrary.org/obo/PR_000010326,7SK snRNA methylphosphate capping enzyme +14.8754069,PR:000010358,http://purl.obolibrary.org/obo/PR_000010358,RNA-binding protein MEX3C +14.8754069,PR:000010576,http://purl.obolibrary.org/obo/PR_000010576,"39S ribosomal protein L14, mitochondrial" +14.8754069,PR:000010658,http://purl.obolibrary.org/obo/PR_000010658,membrane-spanning 4-domains subfamily A member 4A +14.8754069,PR:000010679,http://purl.obolibrary.org/obo/PR_000010679,prostate-associated microseminoprotein +14.8754069,PR:000010847,http://purl.obolibrary.org/obo/PR_000010847,"myosin regulatory light chain 2, skeletal muscle isoform" +14.8754069,PR:000010862,http://purl.obolibrary.org/obo/PR_000010862,myosin-Ih +14.8754069,PR:000010936,http://purl.obolibrary.org/obo/PR_000010936,none +14.8754069,PR:000011000,http://purl.obolibrary.org/obo/PR_000011000,N-alpha-acetyltransferase 60 +14.8754069,PR:000011011,http://purl.obolibrary.org/obo/PR_000011011,neurobeachin-like protein 1 +14.8754069,PR:000011073,http://purl.obolibrary.org/obo/PR_000011073,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 +14.8754069,PR:000011106,http://purl.obolibrary.org/obo/PR_000011106,"NADH dehydrogenase [ubiquinone] flavoprotein 3, mitochondrial" +14.8754069,PR:000011238,http://purl.obolibrary.org/obo/PR_000011238,NK-tumor recognition protein +14.8754069,PR:000011244,http://purl.obolibrary.org/obo/PR_000011244,homeobox protein Nkx-2.4 +14.8754069,PR:000011419,http://purl.obolibrary.org/obo/PR_000011419,nuclear receptor-binding protein 2 +14.8754069,PR:000011438,http://purl.obolibrary.org/obo/PR_000011438,neurensin-2 +14.8754069,PR:000011527,http://purl.obolibrary.org/obo/PR_000011527,nucleoporin p58/p45 +14.8754069,PR:000011555,http://purl.obolibrary.org/obo/PR_000011555,none +14.8754069,PR:000012075,http://purl.obolibrary.org/obo/PR_000012075,proton channel OTOP2 +14.8754069,PR:000012207,http://purl.obolibrary.org/obo/PR_000012207,polyadenylate-binding protein 3 +14.8754069,PR:000012339,http://purl.obolibrary.org/obo/PR_000012339,"propionyl-CoA carboxylase alpha chain, mitochondrial" +14.8754069,PR:000012442,http://purl.obolibrary.org/obo/PR_000012442,cyclin-dependent kinase 17 +14.8754069,PR:000012462,http://purl.obolibrary.org/obo/PR_000012462,phosducin-like protein 3 +14.8754069,PR:000012541,http://purl.obolibrary.org/obo/PR_000012541,protein pelota +14.8754069,PR:000012630,http://purl.obolibrary.org/obo/PR_000012630,phosphorylated adapter RNA export protein +14.8754069,PR:000012683,http://purl.obolibrary.org/obo/PR_000012683,phosphatidylinositol 4-kinase alpha +14.8754069,PR:000012775,http://purl.obolibrary.org/obo/PR_000012775,polycystic kidney disease 2-like 2 protein +14.8754069,PR:000012797,http://purl.obolibrary.org/obo/PR_000012797,group XIIB secretory phospholipase A2-like protein +14.8754069,PR:000012805,http://purl.obolibrary.org/obo/PR_000012805,cytosolic phospholipase A2 beta +14.8754069,PR:000012808,http://purl.obolibrary.org/obo/PR_000012808,cytosolic phospholipase A2 epsilon +14.8754069,PR:000012839,http://purl.obolibrary.org/obo/PR_000012839,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase eta-2" +14.8754069,PR:000012841,http://purl.obolibrary.org/obo/PR_000012841,inactive phospholipase C-like protein 2 +14.8754069,PR:000012885,http://purl.obolibrary.org/obo/PR_000012885,phospholipid scramblase 2 +14.8754069,PR:000012915,http://purl.obolibrary.org/obo/PR_000012915,putative postmeiotic segregation increased 2-like protein 1 +14.8754069,PR:000012922,http://purl.obolibrary.org/obo/PR_000012922,phosphomevalonate kinase +14.8754069,PR:000012925,http://purl.obolibrary.org/obo/PR_000012925,pancreatic triacylglycerol lipase +14.8754069,PR:000012972,http://purl.obolibrary.org/obo/PR_000012972,DNA polymerase epsilon subunit 4 +14.8754069,PR:000013079,http://purl.obolibrary.org/obo/PR_000013079,peptidyl-prolyl cis-trans isomerase E +14.8754069,PR:000013127,http://purl.obolibrary.org/obo/PR_000013127,protein phosphatase 1 regulatory subunit 3D +14.8754069,PR:000013198,http://purl.obolibrary.org/obo/PR_000013198,"PRELI domain-containing protein 1, mitochondrial" +14.8754069,PR:000013210,http://purl.obolibrary.org/obo/PR_000013210,helicase with zinc finger domain 2 +14.8754069,PR:000013477,http://purl.obolibrary.org/obo/PR_000013477,phosphotidylinositol phosphatase PTPRQ +14.8754069,PR:000013520,http://purl.obolibrary.org/obo/PR_000013520,"glycogen phosphorylase, brain form" +14.8754069,PR:000013552,http://purl.obolibrary.org/obo/PR_000013552,none +14.8754069,PR:000013568,http://purl.obolibrary.org/obo/PR_000013568,orexigenic neuropeptide QRFP +14.8754069,PR:000013627,http://purl.obolibrary.org/obo/PR_000013627,Ras-related protein Rab-40B +14.8754069,PR:000013629,http://purl.obolibrary.org/obo/PR_000013629,Ras-related protein Rab-41 +14.8754069,PR:000013659,http://purl.obolibrary.org/obo/PR_000013659,intraflagellar transport protein 22 +14.8754069,PR:000013749,http://purl.obolibrary.org/obo/PR_000013749,RAS protein activator like-3 +14.8754069,PR:000013822,http://purl.obolibrary.org/obo/PR_000013822,retinol-binding protein 5 +14.8754069,PR:000013843,http://purl.obolibrary.org/obo/PR_000013843,REST corepressor 3 +14.8754069,PR:000013913,http://purl.obolibrary.org/obo/PR_000013913,ret finger protein-like 1 +14.8754069,PR:000013957,http://purl.obolibrary.org/obo/PR_000013957,regulator of G-protein signaling 22 +14.8754069,PR:000014071,http://purl.obolibrary.org/obo/PR_000014071,E3 ubiquitin-protein ligase RNF114 +14.8754069,PR:000014127,http://purl.obolibrary.org/obo/PR_000014127,E3 ubiquitin-protein ligase RNF25 +14.8754069,PR:000014220,http://purl.obolibrary.org/obo/PR_000014220,60S ribosomal protein L36a +14.8754069,PR:000014349,http://purl.obolibrary.org/obo/PR_000014349,reticulon-4-interacting protein 1 +14.8754069,PR:000014351,http://purl.obolibrary.org/obo/PR_000014351,reticulon-4 receptor-like 1 +14.8754069,PR:000014389,http://purl.obolibrary.org/obo/PR_000014389,none +14.8754069,PR:000014441,http://purl.obolibrary.org/obo/PR_000014441,sterile alpha motif domain-containing protein 11 +14.8754069,PR:000014579,http://purl.obolibrary.org/obo/PR_000014579,SEC14-like protein 4 +14.8754069,PR:000014590,http://purl.obolibrary.org/obo/PR_000014590,protein transport protein Sec24B +14.8754069,PR:000014597,http://purl.obolibrary.org/obo/PR_000014597,protein transport protein Sec61 subunit beta +14.8754069,PR:000014614,http://purl.obolibrary.org/obo/PR_000014614,selenoprotein V +14.8754069,PR:000014804,http://purl.obolibrary.org/obo/PR_000014804,small G protein signaling modulator 1 +14.8754069,PR:000015006,http://purl.obolibrary.org/obo/PR_000015006,mitochondrial 2-oxoglutarate/malate carrier protein +14.8754069,PR:000015029,http://purl.obolibrary.org/obo/PR_000015029,mitochondrial folate transporter/carrier +14.8754069,PR:000015100,http://purl.obolibrary.org/obo/PR_000015100,solute carrier family 35 member D3 +14.8754069,PR:000015239,http://purl.obolibrary.org/obo/PR_000015239,SLIT and NTRK-like protein 3 +14.8754069,PR:000015295,http://purl.obolibrary.org/obo/PR_000015295,sphingomyelin phosphodiesterase 4 +14.8754069,PR:000015345,http://purl.obolibrary.org/obo/PR_000015345,small nuclear ribonucleoprotein Sm D3 +14.8754069,PR:000015361,http://purl.obolibrary.org/obo/PR_000015361,sorting nexin-12 +14.8754069,PR:000015362,http://purl.obolibrary.org/obo/PR_000015362,sorting nexin-13 +14.8754069,PR:000015479,http://purl.obolibrary.org/obo/PR_000015479,spermatogenesis-associated protein 12 +14.8754069,PR:000015480,http://purl.obolibrary.org/obo/PR_000015480,spermatogenesis-associated protein 13 +14.8754069,PR:000015482,http://purl.obolibrary.org/obo/PR_000015482,spermatogenesis-associated protein 17 +14.8754069,PR:000015490,http://purl.obolibrary.org/obo/PR_000015490,spermatogenesis-associated protein 3 +14.8754069,PR:000015513,http://purl.obolibrary.org/obo/PR_000015513,spermatid maturation protein 1 +14.8754069,PR:000015531,http://purl.obolibrary.org/obo/PR_000015531,spindlin-4 +14.8754069,PR:000015570,http://purl.obolibrary.org/obo/PR_000015570,"sprouty-related, EVH1 domain-containing protein 3" +14.8754069,PR:000015657,http://purl.obolibrary.org/obo/PR_000015657,sarcospan +14.8754069,PR:000015672,http://purl.obolibrary.org/obo/PR_000015672,protein SSX5 +14.8754069,PR:000015712,http://purl.obolibrary.org/obo/PR_000015712,AMSH-like protease +14.8754069,PR:000015752,http://purl.obolibrary.org/obo/PR_000015752,serine/threonine-protein kinase 35 +14.8754069,PR:000015854,http://purl.obolibrary.org/obo/PR_000015854,small VCP/p97-interacting protein +14.8754069,PR:000015866,http://purl.obolibrary.org/obo/PR_000015866,Rho GTPase-activating protein SYDE1 +14.8754069,PR:000015899,http://purl.obolibrary.org/obo/PR_000015899,synaptotagmin-14 +14.8754069,PR:000015910,http://purl.obolibrary.org/obo/PR_000015910,synaptotagmin-8 +14.8754069,PR:000015929,http://purl.obolibrary.org/obo/PR_000015929,none +14.8754069,PR:000015931,http://purl.obolibrary.org/obo/PR_000015931,none +14.8754069,PR:000015933,http://purl.obolibrary.org/obo/PR_000015933,none +14.8754069,PR:000015992,http://purl.obolibrary.org/obo/PR_000015992,none +14.8754069,PR:000016000,http://purl.obolibrary.org/obo/PR_000016000,none +14.8754069,PR:000016068,http://purl.obolibrary.org/obo/PR_000016068,taste receptor type 2 member 3 +14.8754069,PR:000016095,http://purl.obolibrary.org/obo/PR_000016095,carabin +14.8754069,PR:000016103,http://purl.obolibrary.org/obo/PR_000016103,TBC1 domain family member 2A +14.8754069,PR:000016211,http://purl.obolibrary.org/obo/PR_000016211,tectonic-3 +14.8754069,PR:000016259,http://purl.obolibrary.org/obo/PR_000016259,testis-specific protein TEX28 +14.8754069,PR:000016273,http://purl.obolibrary.org/obo/PR_000016273,transcription factor EC +14.8754069,PR:000016410,http://purl.obolibrary.org/obo/PR_000016410,transmembrane protein 131 +14.8754069,PR:000016439,http://purl.obolibrary.org/obo/PR_000016439,proton-transporting V-type ATPase complex assembly regulator TMEM9 +14.8754069,PR:000016531,http://purl.obolibrary.org/obo/PR_000016531,TOM1-like protein 2 +14.8754069,PR:000016659,http://purl.obolibrary.org/obo/PR_000016659,tripartite motif-containing protein 45 +14.8754069,PR:000016679,http://purl.obolibrary.org/obo/PR_000016679,tRNA wybutosine-synthesizing protein 2 +14.8754069,PR:000016694,http://purl.obolibrary.org/obo/PR_000016694,short transient receptor potential channel 4-associated protein +14.8754069,PR:000016713,http://purl.obolibrary.org/obo/PR_000016713,TSC22 domain family protein 4 +14.8754069,PR:000016768,http://purl.obolibrary.org/obo/PR_000016768,EARP and GARP complex-interacting protein 1 +14.8754069,PR:000016790,http://purl.obolibrary.org/obo/PR_000016790,tubulin--tyrosine ligase-like protein 12 +14.8754069,PR:000016838,http://purl.obolibrary.org/obo/PR_000016838,tumor suppressor candidate gene 1 protein +14.8754069,PR:000016947,http://purl.obolibrary.org/obo/PR_000016947,uveal autoantigen with coiled-coil domains and ankyrin repeats +14.8754069,PR:000017002,http://purl.obolibrary.org/obo/PR_000017002,ubiquitin-like domain-containing CTD phosphatase 1 +14.8754069,PR:000017121,http://purl.obolibrary.org/obo/PR_000017121,cytochrome b-c1 complex subunit 10 +14.8754069,PR:000017128,http://purl.obolibrary.org/obo/PR_000017128,"cytochrome b-c1 complex subunit 6, mitochondrial" +14.8754069,PR:000017131,http://purl.obolibrary.org/obo/PR_000017131,unhealthy ribosome biogenesis protein 2 +14.8754069,PR:000017216,http://purl.obolibrary.org/obo/PR_000017216,protein UXT +14.8754069,PR:000017225,http://purl.obolibrary.org/obo/PR_000017225,none +14.8754069,PR:000017286,http://purl.obolibrary.org/obo/PR_000017286,homeobox protein VENTX +14.8754069,PR:000017458,http://purl.obolibrary.org/obo/PR_000017458,WD repeat and SOCS box-containing protein 2 +14.8754069,PR:000017533,http://purl.obolibrary.org/obo/PR_000017533,protein YIPF3 +14.8754069,PR:000017596,http://purl.obolibrary.org/obo/PR_000017596,protein archease +14.8754069,PR:000017637,http://purl.obolibrary.org/obo/PR_000017637,zinc finger protein 3 homolog +14.8754069,PR:000017647,http://purl.obolibrary.org/obo/PR_000017647,zinc finger protein 82 +14.8754069,PR:000017676,http://purl.obolibrary.org/obo/PR_000017676,zinc finger protein with KRAB and SCAN domains 4 +14.8754069,PR:000017734,http://purl.obolibrary.org/obo/PR_000017734,zinc finger protein 182 +14.8754069,PR:000017761,http://purl.obolibrary.org/obo/PR_000017761,zinc finger protein 224 +14.8754069,PR:000022001,http://purl.obolibrary.org/obo/PR_000022001,vertebrate G-type lysozyme +14.8754069,PR:000022098,http://purl.obolibrary.org/obo/PR_000022098,none +14.8754069,PR:000022125,http://purl.obolibrary.org/obo/PR_000022125,none +14.8754069,PR:000022133,http://purl.obolibrary.org/obo/PR_000022133,none +14.8754069,PR:000022139,http://purl.obolibrary.org/obo/PR_000022139,none +14.8754069,PR:000022211,http://purl.obolibrary.org/obo/PR_000022211,none +14.8754069,PR:000022216,http://purl.obolibrary.org/obo/PR_000022216,none +14.8754069,PR:000022272,http://purl.obolibrary.org/obo/PR_000022272,none +14.8754069,PR:000022350,http://purl.obolibrary.org/obo/PR_000022350,none +14.8754069,PR:000022397,http://purl.obolibrary.org/obo/PR_000022397,none +14.8754069,PR:000022418,http://purl.obolibrary.org/obo/PR_000022418,none +14.8754069,PR:000022467,http://purl.obolibrary.org/obo/PR_000022467,none +14.8754069,PR:000022472,http://purl.obolibrary.org/obo/PR_000022472,sensor kinase dpiB +14.8754069,PR:000022509,http://purl.obolibrary.org/obo/PR_000022509,none +14.8754069,PR:000022625,http://purl.obolibrary.org/obo/PR_000022625,none +14.8754069,PR:000022664,http://purl.obolibrary.org/obo/PR_000022664,none +14.8754069,PR:000022748,http://purl.obolibrary.org/obo/PR_000022748,none +14.8754069,PR:000022782,http://purl.obolibrary.org/obo/PR_000022782,none +14.8754069,PR:000022790,http://purl.obolibrary.org/obo/PR_000022790,none +14.8754069,PR:000022857,http://purl.obolibrary.org/obo/PR_000022857,none +14.8754069,PR:000022871,http://purl.obolibrary.org/obo/PR_000022871,none +14.8754069,PR:000022885,http://purl.obolibrary.org/obo/PR_000022885,none +14.8754069,PR:000023041,http://purl.obolibrary.org/obo/PR_000023041,none +14.8754069,PR:000023172,http://purl.obolibrary.org/obo/PR_000023172,none +14.8754069,PR:000023173,http://purl.obolibrary.org/obo/PR_000023173,none +14.8754069,PR:000023204,http://purl.obolibrary.org/obo/PR_000023204,none +14.8754069,PR:000023236,http://purl.obolibrary.org/obo/PR_000023236,none +14.8754069,PR:000023262,http://purl.obolibrary.org/obo/PR_000023262,none +14.8754069,PR:000023288,http://purl.obolibrary.org/obo/PR_000023288,none +14.8754069,PR:000023303,http://purl.obolibrary.org/obo/PR_000023303,none +14.8754069,PR:000023334,http://purl.obolibrary.org/obo/PR_000023334,none +14.8754069,PR:000023369,http://purl.obolibrary.org/obo/PR_000023369,none +14.8754069,PR:000023384,http://purl.obolibrary.org/obo/PR_000023384,none +14.8754069,PR:000023475,http://purl.obolibrary.org/obo/PR_000023475,none +14.8754069,PR:000023603,http://purl.obolibrary.org/obo/PR_000023603,none +14.8754069,PR:000023684,http://purl.obolibrary.org/obo/PR_000023684,none +14.8754069,PR:000023692,http://purl.obolibrary.org/obo/PR_000023692,none +14.8754069,PR:000023733,http://purl.obolibrary.org/obo/PR_000023733,none +14.8754069,PR:000023830,http://purl.obolibrary.org/obo/PR_000023830,none +14.8754069,PR:000023839,http://purl.obolibrary.org/obo/PR_000023839,none +14.8754069,PR:000023900,http://purl.obolibrary.org/obo/PR_000023900,none +14.8754069,PR:000023906,http://purl.obolibrary.org/obo/PR_000023906,none +14.8754069,PR:000023911,http://purl.obolibrary.org/obo/PR_000023911,none +14.8754069,PR:000023931,http://purl.obolibrary.org/obo/PR_000023931,none +14.8754069,PR:000023933,http://purl.obolibrary.org/obo/PR_000023933,none +14.8754069,PR:000023966,http://purl.obolibrary.org/obo/PR_000023966,none +14.8754069,PR:000023974,http://purl.obolibrary.org/obo/PR_000023974,none +14.8754069,PR:000024032,http://purl.obolibrary.org/obo/PR_000024032,none +14.8754069,PR:000024068,http://purl.obolibrary.org/obo/PR_000024068,none +14.8754069,PR:000024107,http://purl.obolibrary.org/obo/PR_000024107,none +14.8754069,PR:000024122,http://purl.obolibrary.org/obo/PR_000024122,none +14.8754069,PR:000024143,http://purl.obolibrary.org/obo/PR_000024143,none +14.8754069,PR:000024158,http://purl.obolibrary.org/obo/PR_000024158,none +14.8754069,PR:000024197,http://purl.obolibrary.org/obo/PR_000024197,none +14.8754069,PR:000024234,http://purl.obolibrary.org/obo/PR_000024234,none +14.8754069,PR:000026747,http://purl.obolibrary.org/obo/PR_000026747,ChREBP:MLX +14.8754069,PR:000027843,http://purl.obolibrary.org/obo/PR_000027843,p53 complex sumoylated 1 +14.8754069,PR:000027844,http://purl.obolibrary.org/obo/PR_000027844,p53 complex sumoylated 1 (human) +14.8754069,PR:000028248,http://purl.obolibrary.org/obo/PR_000028248,none +14.8754069,PR:000028311,http://purl.obolibrary.org/obo/PR_000028311,none +14.8754069,PR:000029105,http://purl.obolibrary.org/obo/PR_000029105,"FAST kinase domain-containing protein 1, mitochondrial" +14.8754069,PR:000029203,http://purl.obolibrary.org/obo/PR_000029203,none +14.8754069,PR:000029205,http://purl.obolibrary.org/obo/PR_000029205,none +14.8754069,PR:000029258,http://purl.obolibrary.org/obo/PR_000029258,"palmitoyl-protein thioesterase ABHD10, mitochondrial" +14.8754069,PR:000029278,http://purl.obolibrary.org/obo/PR_000029278,armadillo repeat-containing protein 1 +14.8754069,PR:000029294,http://purl.obolibrary.org/obo/PR_000029294,diphthine--ammonia ligase +14.8754069,PR:000029353,http://purl.obolibrary.org/obo/PR_000029353,centrosomal protein of 89 kDa +14.8754069,PR:000029366,http://purl.obolibrary.org/obo/PR_000029366,COMM domain-containing protein 10 +14.8754069,PR:000029386,http://purl.obolibrary.org/obo/PR_000029386,probable ATP-dependent RNA helicase DDX27 +14.8754069,PR:000029568,http://purl.obolibrary.org/obo/PR_000029568,KN motif and ankyrin repeat domain-containing protein 4 +14.8754069,PR:000029573,http://purl.obolibrary.org/obo/PR_000029573,BTB/POZ domain-containing protein KCTD3 +14.8754069,PR:000029627,http://purl.obolibrary.org/obo/PR_000029627,RNA N6-adenosine-methyltransferase METTL16 +14.8754069,PR:000029644,http://purl.obolibrary.org/obo/PR_000029644,NHL repeat-containing protein 2 +14.8754069,PR:000029652,http://purl.obolibrary.org/obo/PR_000029652,nuclear speckle splicing regulatory protein 1 +14.8754069,PR:000029653,http://purl.obolibrary.org/obo/PR_000029653,"tRNA (cytosine(34)-C(5))-methyltransferase, mitochondrial" +14.8754069,PR:000029661,http://purl.obolibrary.org/obo/PR_000029661,OTU domain-containing protein 6A +14.8754069,PR:000029737,http://purl.obolibrary.org/obo/PR_000029737,solute carrier family 35 member G2 +14.8754069,PR:000029738,http://purl.obolibrary.org/obo/PR_000029738,putative sodium-coupled neutral amino acid transporter 7 +14.8754069,PR:000029788,http://purl.obolibrary.org/obo/PR_000029788,THAP domain-containing protein 2 +14.8754069,PR:000029807,http://purl.obolibrary.org/obo/PR_000029807,TM2 domain-containing protein 3 +14.8754069,PR:000030193,http://purl.obolibrary.org/obo/PR_000030193,multivesicular body subunit 12B +14.8754069,PR:000030267,http://purl.obolibrary.org/obo/PR_000030267,t-SNARE domain-containing protein 1 +14.8754069,PR:000030410,http://purl.obolibrary.org/obo/PR_000030410,methyl-CpG-binding domain protein 3-like 2 +14.8754069,PR:000030481,http://purl.obolibrary.org/obo/PR_000030481,multiple epidermal growth factor-like domains protein 9 +14.8754069,PR:000030485,http://purl.obolibrary.org/obo/PR_000030485,SLAIN motif-containing protein 2 +14.8754069,PR:000030495,http://purl.obolibrary.org/obo/PR_000030495,C3 and PZP-like alpha-2-macroglobulin domain-containing protein 8 +14.8754069,PR:000030518,http://purl.obolibrary.org/obo/PR_000030518,ubiquitin domain-containing protein 2 +14.8754069,PR:000030530,http://purl.obolibrary.org/obo/PR_000030530,COMM domain-containing protein 5 +14.8754069,PR:000030608,http://purl.obolibrary.org/obo/PR_000030608,pogo transposable element with ZNF domain +14.8754069,PR:000030623,http://purl.obolibrary.org/obo/PR_000030623,lysosomal amino acid transporter 1 homolog +14.8754069,PR:000030680,http://purl.obolibrary.org/obo/PR_000030680,ankyrin repeat domain-containing protein 22 +14.8754069,PR:000030687,http://purl.obolibrary.org/obo/PR_000030687,zinc finger MYND domain-containing protein 15 +14.8754069,PR:000030763,http://purl.obolibrary.org/obo/PR_000030763,BTB/POZ domain-containing protein KCTD2 +14.8754069,PR:000030810,http://purl.obolibrary.org/obo/PR_000030810,HAUS augmin-like complex subunit 6 +14.8754069,PR:000030835,http://purl.obolibrary.org/obo/PR_000030835,metalloprotease TIKI2 +14.8754069,PR:000030836,http://purl.obolibrary.org/obo/PR_000030836,C-type lectin domain family 3 member A +14.8754069,PR:000030884,http://purl.obolibrary.org/obo/PR_000030884,protein myomaker +14.8754069,PR:000030889,http://purl.obolibrary.org/obo/PR_000030889,leucine-rich repeat and fibronectin type-III domain-containing protein 3 +14.8754069,PR:000030912,http://purl.obolibrary.org/obo/PR_000030912,SID1 transmembrane family member 1 +14.8754069,PR:000031004,http://purl.obolibrary.org/obo/PR_000031004,adhesion G-protein coupled receptor D1 +14.8754069,PR:000031012,http://purl.obolibrary.org/obo/PR_000031012,centrosomal protein kizuna +14.8754069,PR:000031054,http://purl.obolibrary.org/obo/PR_000031054,PHD and RING finger domain-containing protein 1 +14.8754069,PR:000031181,http://purl.obolibrary.org/obo/PR_000031181,protein phosphatase 1 regulatory subunit 29 +14.8754069,PR:000031204,http://purl.obolibrary.org/obo/PR_000031204,kelch-like protein 42 +14.8754069,PR:000031208,http://purl.obolibrary.org/obo/PR_000031208,palmitoyltransferase ZDHHC1 +14.8754069,PR:000031249,http://purl.obolibrary.org/obo/PR_000031249,FH2 domain-containing protein 1 +14.8754069,PR:000031320,http://purl.obolibrary.org/obo/PR_000031320,pleckstrin homology domain-containing family G member 3 +14.8754069,PR:000031322,http://purl.obolibrary.org/obo/PR_000031322,cytochrome c oxidase assembly factor 8 +14.8754069,PR:000031398,http://purl.obolibrary.org/obo/PR_000031398,mini-chromosome maintenance complex-binding protein +14.8754069,PR:000031406,http://purl.obolibrary.org/obo/PR_000031406,transmembrane protein 33 +14.8754069,PR:000031525,http://purl.obolibrary.org/obo/PR_000031525,adenosylhomocysteinase 3 +14.8754069,PR:000031617,http://purl.obolibrary.org/obo/PR_000031617,ELMO domain-containing protein 1 +14.8754069,PR:000031640,http://purl.obolibrary.org/obo/PR_000031640,MORN repeat-containing protein 1 +14.8754069,PR:000031646,http://purl.obolibrary.org/obo/PR_000031646,DnaJ homolog subfamily B member 5 +14.8754069,PR:000031765,http://purl.obolibrary.org/obo/PR_000031765,phospholipase B-like 1 +14.8754069,PR:000031850,http://purl.obolibrary.org/obo/PR_000031850,kelch repeat and BTB domain-containing protein 13 +14.8754069,PR:000031857,http://purl.obolibrary.org/obo/PR_000031857,AP-1 complex-associated regulatory protein +14.8754069,PR:000031884,http://purl.obolibrary.org/obo/PR_000031884,cilia- and flagella-associated protein 53 +14.8754069,PR:000031908,http://purl.obolibrary.org/obo/PR_000031908,ankyrin repeat domain-containing protein 37 +14.8754069,PR:000031912,http://purl.obolibrary.org/obo/PR_000031912,progestin and adipoQ receptor family member 4 +14.8754069,PR:000031961,http://purl.obolibrary.org/obo/PR_000031961,"C-type lectin domain family 17, member A" +14.8754069,PR:000031984,http://purl.obolibrary.org/obo/PR_000031984,MAM domain-containing protein 2 +14.8754069,PR:000031987,http://purl.obolibrary.org/obo/PR_000031987,glycosyltransferase 8 domain-containing protein 1 +14.8754069,PR:000031988,http://purl.obolibrary.org/obo/PR_000031988,T cell receptor gamma constant 2 +14.8754069,PR:000032045,http://purl.obolibrary.org/obo/PR_000032045,pentraxin-4 +14.8754069,PR:000032080,http://purl.obolibrary.org/obo/PR_000032080,zinc finger BED domain-containing protein 4 +14.8754069,PR:000032098,http://purl.obolibrary.org/obo/PR_000032098,transmembrane protein 39A +14.8754069,PR:000032123,http://purl.obolibrary.org/obo/PR_000032123,phospholipid phosphatase 4 +14.8754069,PR:000032139,http://purl.obolibrary.org/obo/PR_000032139,trafficking protein particle complex subunit 8 +14.8754069,PR:000032217,http://purl.obolibrary.org/obo/PR_000032217,protein FAM135B +14.8754069,PR:000032470,http://purl.obolibrary.org/obo/PR_000032470,kelch repeat and BTB domain-containing protein 11 +14.8754069,PR:000032498,http://purl.obolibrary.org/obo/PR_000032498,leucine-rich repeat-containing protein 52 +14.8754069,PR:000032505,http://purl.obolibrary.org/obo/PR_000032505,transmembrane emp24 domain-containing protein 3 +14.8754069,PR:000032525,http://purl.obolibrary.org/obo/PR_000032525,endonuclease/exonuclease/phosphatase family domain-containing protein 1 +14.8754069,PR:000032546,http://purl.obolibrary.org/obo/PR_000032546,armadillo repeat-containing X-linked protein 2 +14.8754069,PR:000032549,http://purl.obolibrary.org/obo/PR_000032549,androgen-dependent TFPI-regulating protein +14.8754069,PR:000032645,http://purl.obolibrary.org/obo/PR_000032645,armadillo repeat-containing protein 3 +14.8754069,PR:000032728,http://purl.obolibrary.org/obo/PR_000032728,Ly6/PLAUR domain-containing protein 1 +14.8754069,PR:000032736,http://purl.obolibrary.org/obo/PR_000032736,transmembrane protein 126A +14.8754069,PR:000032739,http://purl.obolibrary.org/obo/PR_000032739,dynein regulatory complex protein 8 +14.8754069,PR:000032818,http://purl.obolibrary.org/obo/PR_000032818,fibrinogen C domain-containing protein 1 +14.8754069,PR:000032952,http://purl.obolibrary.org/obo/PR_000032952,none +14.8754069,PR:000033057,http://purl.obolibrary.org/obo/PR_000033057,none +14.8754069,PR:000033306,http://purl.obolibrary.org/obo/PR_000033306,none +14.8754069,PR:000033307,http://purl.obolibrary.org/obo/PR_000033307,none +14.8754069,PR:000033930,http://purl.obolibrary.org/obo/PR_000033930,none +14.8754069,PR:000034234,http://purl.obolibrary.org/obo/PR_000034234,none +14.8754069,PR:000034271,http://purl.obolibrary.org/obo/PR_000034271,none +14.8754069,PR:000034747,http://purl.obolibrary.org/obo/PR_000034747,none +14.8754069,PR:000035135,http://purl.obolibrary.org/obo/PR_000035135,none +14.8754069,PR:000035524,http://purl.obolibrary.org/obo/PR_000035524,"histone H3, initiator methionine removed phosphorylated 1" +14.8754069,PR:000035977,http://purl.obolibrary.org/obo/PR_000035977,none +14.8754069,PR:000036076,http://purl.obolibrary.org/obo/PR_000036076,activated TLR4 complex +14.8754069,PR:000036825,http://purl.obolibrary.org/obo/PR_000036825,none +14.8754069,PR:000044781,http://purl.obolibrary.org/obo/PR_000044781,putative pregnancy-specific beta-1-glycoprotein 7 +14.8754069,PR:C0LGQ4,http://purl.obolibrary.org/obo/PR_C0LGQ4,none +14.8754069,PR:E7FB53,http://purl.obolibrary.org/obo/PR_E7FB53,none +14.8754069,PR:E9Q5G7,http://purl.obolibrary.org/obo/PR_E9Q5G7,none +14.8754069,PR:F4JDJ0,http://purl.obolibrary.org/obo/PR_F4JDJ0,none +14.8754069,PR:G3X982,http://purl.obolibrary.org/obo/PR_G3X982,none +14.8754069,PR:O13166,http://purl.obolibrary.org/obo/PR_O13166,none +14.8754069,PR:O23252,http://purl.obolibrary.org/obo/PR_O23252,none +14.8754069,PR:O23708,http://purl.obolibrary.org/obo/PR_O23708,none +14.8754069,PR:O34426,http://purl.obolibrary.org/obo/PR_O34426,none +14.8754069,PR:O35426,http://purl.obolibrary.org/obo/PR_O35426,none +14.8754069,PR:O42890,http://purl.obolibrary.org/obo/PR_O42890,none +14.8754069,PR:O46077,http://purl.obolibrary.org/obo/PR_O46077,none +14.8754069,PR:O48533,http://purl.obolibrary.org/obo/PR_O48533,none +14.8754069,PR:O49552,http://purl.obolibrary.org/obo/PR_O49552,none +14.8754069,PR:O57579,http://purl.obolibrary.org/obo/PR_O57579,none +14.8754069,PR:O64645,http://purl.obolibrary.org/obo/PR_O64645,none +14.8754069,PR:O74844,http://purl.obolibrary.org/obo/PR_O74844,none +14.8754069,PR:O81905,http://purl.obolibrary.org/obo/PR_O81905,none +14.8754069,PR:O82628,http://purl.obolibrary.org/obo/PR_O82628,none +14.8754069,PR:O88728,http://purl.obolibrary.org/obo/PR_O88728,none +14.8754069,PR:P01730,http://purl.obolibrary.org/obo/PR_P01730,T-cell surface glycoprotein CD4 (human) +14.8754069,PR:P04905,http://purl.obolibrary.org/obo/PR_P04905,none +14.8754069,PR:P06245,http://purl.obolibrary.org/obo/PR_P06245,none +14.8754069,PR:P12688,http://purl.obolibrary.org/obo/PR_P12688,none +14.8754069,PR:P15273,http://purl.obolibrary.org/obo/PR_P15273,none +14.8754069,PR:P16241,http://purl.obolibrary.org/obo/PR_P16241,none +14.8754069,PR:P18933,http://purl.obolibrary.org/obo/PR_P18933,none +14.8754069,PR:P19339,http://purl.obolibrary.org/obo/PR_P19339,none +14.8754069,PR:P23610,http://purl.obolibrary.org/obo/PR_P23610,40-kDa huntingtin-associated protein (human) +14.8754069,PR:P23938,http://purl.obolibrary.org/obo/PR_P23938,none +14.8754069,PR:P29517,http://purl.obolibrary.org/obo/PR_P29517,none +14.8754069,PR:P32600,http://purl.obolibrary.org/obo/PR_P32600,none +14.8754069,PR:P32902,http://purl.obolibrary.org/obo/PR_P32902,none +14.8754069,PR:P34791,http://purl.obolibrary.org/obo/PR_P34791,none +14.8754069,PR:P36510,http://purl.obolibrary.org/obo/PR_P36510,none +14.8754069,PR:P36603,http://purl.obolibrary.org/obo/PR_P36603,none +14.8754069,PR:P38181,http://purl.obolibrary.org/obo/PR_P38181,none +14.8754069,PR:P38257,http://purl.obolibrary.org/obo/PR_P38257,none +14.8754069,PR:P38263,http://purl.obolibrary.org/obo/PR_P38263,none +14.8754069,PR:P40096,http://purl.obolibrary.org/obo/PR_P40096,none +14.8754069,PR:P47138,http://purl.obolibrary.org/obo/PR_P47138,none +14.8754069,PR:P49415,http://purl.obolibrary.org/obo/PR_P49415,none +14.8754069,PR:P49598,http://purl.obolibrary.org/obo/PR_P49598,none +14.8754069,PR:P53923,http://purl.obolibrary.org/obo/PR_P53923,none +14.8754069,PR:P62329,http://purl.obolibrary.org/obo/PR_P62329,none +14.8754069,PR:P70658,http://purl.obolibrary.org/obo/PR_P70658,none +14.8754069,PR:P82281,http://purl.obolibrary.org/obo/PR_P82281,none +14.8754069,PR:P85411,http://purl.obolibrary.org/obo/PR_P85411,none +14.8754069,PR:P87060,http://purl.obolibrary.org/obo/PR_P87060,none +14.8754069,PR:P90916,http://purl.obolibrary.org/obo/PR_P90916,none +14.8754069,PR:P9WPX7,http://purl.obolibrary.org/obo/PR_P9WPX7,none +14.8754069,PR:Q00558,http://purl.obolibrary.org/obo/PR_Q00558,none +14.8754069,PR:Q03707,http://purl.obolibrary.org/obo/PR_Q03707,none +14.8754069,PR:Q05892,http://purl.obolibrary.org/obo/PR_Q05892,none +14.8754069,PR:Q08BG7,http://purl.obolibrary.org/obo/PR_Q08BG7,none +14.8754069,PR:Q09724,http://purl.obolibrary.org/obo/PR_Q09724,none +14.8754069,PR:Q10714,http://purl.obolibrary.org/obo/PR_Q10714,none +14.8754069,PR:Q12136,http://purl.obolibrary.org/obo/PR_Q12136,none +14.8754069,PR:Q12325,http://purl.obolibrary.org/obo/PR_Q12325,none +14.8754069,PR:Q24117,http://purl.obolibrary.org/obo/PR_Q24117,none +14.8754069,PR:Q24JL3,http://purl.obolibrary.org/obo/PR_Q24JL3,none +14.8754069,PR:Q38858,http://purl.obolibrary.org/obo/PR_Q38858,none +14.8754069,PR:Q3UX61,http://purl.obolibrary.org/obo/PR_Q3UX61,none +14.8754069,PR:Q42262,http://purl.obolibrary.org/obo/PR_Q42262,none +14.8754069,PR:Q499A3,http://purl.obolibrary.org/obo/PR_Q499A3,none +14.8754069,PR:Q4V8K3,http://purl.obolibrary.org/obo/PR_Q4V8K3,none +14.8754069,PR:Q54YF2,http://purl.obolibrary.org/obo/PR_Q54YF2,none +14.8754069,PR:Q59WF4,http://purl.obolibrary.org/obo/PR_Q59WF4,none +14.8754069,PR:Q59ZY9,http://purl.obolibrary.org/obo/PR_Q59ZY9,none +14.8754069,PR:Q5A0W9,http://purl.obolibrary.org/obo/PR_Q5A0W9,none +14.8754069,PR:Q5AD49,http://purl.obolibrary.org/obo/PR_Q5AD49,none +14.8754069,PR:Q5QE80,http://purl.obolibrary.org/obo/PR_Q5QE80,none +14.8754069,PR:Q62668,http://purl.obolibrary.org/obo/PR_Q62668,none +14.8754069,PR:Q62880,http://purl.obolibrary.org/obo/PR_Q62880,none +14.8754069,PR:Q66PG1,http://purl.obolibrary.org/obo/PR_Q66PG1,none +14.8754069,PR:Q66PG4,http://purl.obolibrary.org/obo/PR_Q66PG4,none +14.8754069,PR:Q682T9,http://purl.obolibrary.org/obo/PR_Q682T9,none +14.8754069,PR:Q69091,http://purl.obolibrary.org/obo/PR_Q69091,none +14.8754069,PR:Q6NME7,http://purl.obolibrary.org/obo/PR_Q6NME7,none +14.8754069,PR:Q6NZL6,http://purl.obolibrary.org/obo/PR_Q6NZL6,none +14.8754069,PR:Q6PBA2,http://purl.obolibrary.org/obo/PR_Q6PBA2,none +14.8754069,PR:Q6PUA2,http://purl.obolibrary.org/obo/PR_Q6PUA2,none +14.8754069,PR:Q6R0C4,http://purl.obolibrary.org/obo/PR_Q6R0C4,none +14.8754069,PR:Q6R0G4,http://purl.obolibrary.org/obo/PR_Q6R0G4,none +14.8754069,PR:Q6X7J4,http://purl.obolibrary.org/obo/PR_Q6X7J4,none +14.8754069,PR:Q7TNS8,http://purl.obolibrary.org/obo/PR_Q7TNS8,none +14.8754069,PR:Q7TSY8,http://purl.obolibrary.org/obo/PR_Q7TSY8,none +14.8754069,PR:Q84JG2,http://purl.obolibrary.org/obo/PR_Q84JG2,none +14.8754069,PR:Q84LH8,http://purl.obolibrary.org/obo/PR_Q84LH8,none +14.8754069,PR:Q86CZ2,http://purl.obolibrary.org/obo/PR_Q86CZ2,none +14.8754069,PR:Q8L649,http://purl.obolibrary.org/obo/PR_Q8L649,none +14.8754069,PR:Q8LAX3,http://purl.obolibrary.org/obo/PR_Q8LAX3,none +14.8754069,PR:Q8LBM2,http://purl.obolibrary.org/obo/PR_Q8LBM2,none +14.8754069,PR:Q8R500,http://purl.obolibrary.org/obo/PR_Q8R500,none +14.8754069,PR:Q8VBV2,http://purl.obolibrary.org/obo/PR_Q8VBV2,none +14.8754069,PR:Q8VY16,http://purl.obolibrary.org/obo/PR_Q8VY16,none +14.8754069,PR:Q8VZ59,http://purl.obolibrary.org/obo/PR_Q8VZ59,none +14.8754069,PR:Q91392,http://purl.obolibrary.org/obo/PR_Q91392,none +14.8754069,PR:Q94KD3,http://purl.obolibrary.org/obo/PR_Q94KD3,none +14.8754069,PR:Q96328,http://purl.obolibrary.org/obo/PR_Q96328,none +14.8754069,PR:Q99PP9,http://purl.obolibrary.org/obo/PR_Q99PP9,none +14.8754069,PR:Q9C100,http://purl.obolibrary.org/obo/PR_Q9C100,none +14.8754069,PR:Q9C9K7,http://purl.obolibrary.org/obo/PR_Q9C9K7,none +14.8754069,PR:Q9C9W0,http://purl.obolibrary.org/obo/PR_Q9C9W0,none +14.8754069,PR:Q9CQL7,http://purl.obolibrary.org/obo/PR_Q9CQL7,none +14.8754069,PR:Q9FGS5,http://purl.obolibrary.org/obo/PR_Q9FGS5,none +14.8754069,PR:Q9FZ06,http://purl.obolibrary.org/obo/PR_Q9FZ06,none +14.8754069,PR:Q9LMF0,http://purl.obolibrary.org/obo/PR_Q9LMF0,none +14.8754069,PR:Q9LQL2,http://purl.obolibrary.org/obo/PR_Q9LQL2,none +14.8754069,PR:Q9LS08,http://purl.obolibrary.org/obo/PR_Q9LS08,none +14.8754069,PR:Q9LSR8,http://purl.obolibrary.org/obo/PR_Q9LSR8,none +14.8754069,PR:Q9M0M2,http://purl.obolibrary.org/obo/PR_Q9M0M2,none +14.8754069,PR:Q9M1C7,http://purl.obolibrary.org/obo/PR_Q9M1C7,none +14.8754069,PR:Q9M209,http://purl.obolibrary.org/obo/PR_Q9M209,none +14.8754069,PR:Q9M2R1,http://purl.obolibrary.org/obo/PR_Q9M2R1,none +14.8754069,PR:Q9QZE3,http://purl.obolibrary.org/obo/PR_Q9QZE3,none +14.8754069,PR:Q9SE97,http://purl.obolibrary.org/obo/PR_Q9SE97,none +14.8754069,PR:Q9STW6,http://purl.obolibrary.org/obo/PR_Q9STW6,none +14.8754069,PR:Q9SVY1,http://purl.obolibrary.org/obo/PR_Q9SVY1,none +14.8754069,PR:Q9U2Q9,http://purl.obolibrary.org/obo/PR_Q9U2Q9,none +14.8754069,PR:Q9VGJ5,http://purl.obolibrary.org/obo/PR_Q9VGJ5,none +14.8754069,PR:Q9XIB5,http://purl.obolibrary.org/obo/PR_Q9XIB5,none +14.8754069,PR:Q9ZQ99,http://purl.obolibrary.org/obo/PR_Q9ZQ99,none +14.8754069,PR:Q9ZT48,http://purl.obolibrary.org/obo/PR_Q9ZT48,none +14.8754069,PR:Q9ZUL5,http://purl.obolibrary.org/obo/PR_Q9ZUL5,none +14.8754069,SO:0000210,http://purl.obolibrary.org/obo/SO_0000210,tRNA_primary_transcript +14.8754069,SO:0000303,http://purl.obolibrary.org/obo/SO_0000303,clip +14.8754069,SO:0000332,http://purl.obolibrary.org/obo/SO_0000332,coding_conserved_region +14.8754069,SO:0000499,http://purl.obolibrary.org/obo/SO_0000499,virtual_sequence +14.8754069,SO:0001068,http://purl.obolibrary.org/obo/SO_0001068,polypeptide_repeat +14.8754069,SO:0001162,http://purl.obolibrary.org/obo/SO_0001162,MTE +14.8754069,SO:0001246,http://purl.obolibrary.org/obo/SO_0001246,miRNA_loop +14.8754069,SO:0001460,http://purl.obolibrary.org/obo/SO_0001460,insulator_binding_site +14.8754069,SO:0001630,http://purl.obolibrary.org/obo/SO_0001630,splice_region_variant +14.8754069,SO:0001747,http://purl.obolibrary.org/obo/SO_0001747,open_chromatin_region +14.8754069,SO:0001838,http://purl.obolibrary.org/obo/SO_0001838,novel_sequence_insertion +14.8754069,SO:0001919,http://purl.obolibrary.org/obo/SO_0001919,4_methylcytosine +14.8754069,SO:0002114,http://purl.obolibrary.org/obo/SO_0002114,NMD_transcript +14.8754069,UBERON:0000910,http://purl.obolibrary.org/obo/UBERON_0000910,chyme +14.8754069,UBERON:0001051,http://purl.obolibrary.org/obo/UBERON_0001051,hypopharynx +14.8754069,UBERON:0001302,http://purl.obolibrary.org/obo/UBERON_0001302,right uterine tube +14.8754069,UBERON:0001453,http://purl.obolibrary.org/obo/UBERON_0001453,distal tarsal bone 2 +14.8754069,UBERON:0001596,http://purl.obolibrary.org/obo/UBERON_0001596,intrinsic auricular muscle +14.8754069,UBERON:0001654,http://purl.obolibrary.org/obo/UBERON_0001654,supraorbital vein +14.8754069,UBERON:0001669,http://purl.obolibrary.org/obo/UBERON_0001669,superior cerebellar vein +14.8754069,UBERON:0001958,http://purl.obolibrary.org/obo/UBERON_0001958,terminal bronchiole epithelium +14.8754069,UBERON:0002024,http://purl.obolibrary.org/obo/UBERON_0002024,internal carotid nerve plexus +14.8754069,UBERON:0002138,http://purl.obolibrary.org/obo/UBERON_0002138,habenulo-interpeduncular tract +14.8754069,UBERON:0002195,http://purl.obolibrary.org/obo/UBERON_0002195,trabecula of lymph node +14.8754069,UBERON:0002287,http://purl.obolibrary.org/obo/UBERON_0002287,optic recess of third ventricle +14.8754069,UBERON:0002330,http://purl.obolibrary.org/obo/UBERON_0002330,exocrine system +14.8754069,UBERON:0002393,http://purl.obolibrary.org/obo/UBERON_0002393,pharyngotympanic tube +14.8754069,UBERON:0002478,http://purl.obolibrary.org/obo/UBERON_0002478,orbitosphenoid +14.8754069,UBERON:0002480,http://purl.obolibrary.org/obo/UBERON_0002480,ventral lateral geniculate nucleus +14.8754069,UBERON:0002624,http://purl.obolibrary.org/obo/UBERON_0002624,orbital part of inferior frontal gyrus +14.8754069,UBERON:0002736,http://purl.obolibrary.org/obo/UBERON_0002736,lateral nuclear group of thalamus +14.8754069,UBERON:0002893,http://purl.obolibrary.org/obo/UBERON_0002893,nucleus of lateral olfactory tract +14.8754069,UBERON:0002911,http://purl.obolibrary.org/obo/UBERON_0002911,parietal operculum +14.8754069,UBERON:0002920,http://purl.obolibrary.org/obo/UBERON_0002920,callosal sulcus +14.8754069,UBERON:0003112,http://purl.obolibrary.org/obo/UBERON_0003112,olfactory region +14.8754069,UBERON:0003560,http://purl.obolibrary.org/obo/UBERON_0003560,spinal cord arachnoid mater +14.8754069,UBERON:0003971,http://purl.obolibrary.org/obo/UBERON_0003971,interfrontal bone +14.8754069,UBERON:0004171,http://purl.obolibrary.org/obo/UBERON_0004171,trigeminothalamic tract +14.8754069,UBERON:0004302,http://purl.obolibrary.org/obo/UBERON_0004302,proximal phalanx +14.8754069,UBERON:0004524,http://purl.obolibrary.org/obo/UBERON_0004524,papillary muscle of left ventricle +14.8754069,UBERON:0004713,http://purl.obolibrary.org/obo/UBERON_0004713,corpus cavernosum penis +14.8754069,UBERON:0004874,http://purl.obolibrary.org/obo/UBERON_0004874,somatopleure +14.8754069,UBERON:0004924,http://purl.obolibrary.org/obo/UBERON_0004924,submucosa of pharynx +14.8754069,UBERON:0004927,http://purl.obolibrary.org/obo/UBERON_0004927,submucosa of cecum +14.8754069,UBERON:0005032,http://purl.obolibrary.org/obo/UBERON_0005032,mucosa of lower lip +14.8754069,UBERON:0005276,http://purl.obolibrary.org/obo/UBERON_0005276,dorsal skin of finger +14.8754069,UBERON:0005620,http://purl.obolibrary.org/obo/UBERON_0005620,primary palate +14.8754069,UBERON:0005799,http://purl.obolibrary.org/obo/UBERON_0005799,simplex uterus +14.8754069,UBERON:0006448,http://purl.obolibrary.org/obo/UBERON_0006448,first lumbar spinal cord segment +14.8754069,UBERON:0006488,http://purl.obolibrary.org/obo/UBERON_0006488,C3 segment of cervical spinal cord +14.8754069,UBERON:0007303,http://purl.obolibrary.org/obo/UBERON_0007303,pharyngeal vasculature +14.8754069,UBERON:0007321,http://purl.obolibrary.org/obo/UBERON_0007321,lateral saphenous vein +14.8754069,UBERON:0007383,http://purl.obolibrary.org/obo/UBERON_0007383,enveloping layer of ectoderm +14.8754069,UBERON:0007818,http://purl.obolibrary.org/obo/UBERON_0007818,major alar cartilage +14.8754069,UBERON:0007827,http://purl.obolibrary.org/obo/UBERON_0007827,external nose +14.8754069,UBERON:0008331,http://purl.obolibrary.org/obo/UBERON_0008331,clitoral smooth muscle +14.8754069,UBERON:0008844,http://purl.obolibrary.org/obo/UBERON_0008844,gubernaculum (female) +14.8754069,UBERON:0009063,http://purl.obolibrary.org/obo/UBERON_0009063,interclavicular air sac +14.8754069,UBERON:0009064,http://purl.obolibrary.org/obo/UBERON_0009064,cervical air sac +14.8754069,UBERON:0009066,http://purl.obolibrary.org/obo/UBERON_0009066,posterior thoracic air sac +14.8754069,UBERON:0009567,http://purl.obolibrary.org/obo/UBERON_0009567,nail of pedal digit +14.8754069,UBERON:0009618,http://purl.obolibrary.org/obo/UBERON_0009618,trunk paraxial mesoderm +14.8754069,UBERON:0009719,http://purl.obolibrary.org/obo/UBERON_0009719,tunicate siphon +14.8754069,UBERON:0010936,http://purl.obolibrary.org/obo/UBERON_0010936,thyropharyngeus muscle +14.8754069,UBERON:0011217,http://purl.obolibrary.org/obo/UBERON_0011217,serratus dorsalis muscle +14.8754069,UBERON:0011249,http://purl.obolibrary.org/obo/UBERON_0011249,appendicular skeletal system +14.8754069,UBERON:0011345,http://purl.obolibrary.org/obo/UBERON_0011345,pharyngeal raphe +14.8754069,UBERON:0011383,http://purl.obolibrary.org/obo/UBERON_0011383,inferior pancreaticoduodenal vein +14.8754069,UBERON:0011629,http://purl.obolibrary.org/obo/UBERON_0011629,supratemporal bone +14.8754069,UBERON:0011647,http://purl.obolibrary.org/obo/UBERON_0011647,depressor mandibulae muscle +14.8754069,UBERON:0011850,http://purl.obolibrary.org/obo/UBERON_0011850,acinus of salivary gland +14.8754069,UBERON:0011953,http://purl.obolibrary.org/obo/UBERON_0011953,stomach glandular region +14.8754069,UBERON:0012112,http://purl.obolibrary.org/obo/UBERON_0012112,ingested food +14.8754069,UBERON:0012437,http://purl.obolibrary.org/obo/UBERON_0012437,epithelial-mesenchymal boundary +14.8754069,UBERON:0013622,http://purl.obolibrary.org/obo/UBERON_0013622,manual autopod pad +14.8754069,UBERON:0013704,http://purl.obolibrary.org/obo/UBERON_0013704,notochordal canal +14.8754069,UBERON:0014451,http://purl.obolibrary.org/obo/UBERON_0014451,tongue taste bud +14.8754069,UBERON:0014552,http://purl.obolibrary.org/obo/UBERON_0014552,CA1 stratum oriens +14.8754069,UBERON:0014618,http://purl.obolibrary.org/obo/UBERON_0014618,middle frontal sulcus +14.8754069,UBERON:0014682,http://purl.obolibrary.org/obo/UBERON_0014682,tooth whorl +14.8754069,UBERON:0014790,http://purl.obolibrary.org/obo/UBERON_0014790,lingual septum +14.8754069,UBERON:0015059,http://purl.obolibrary.org/obo/UBERON_0015059,orbitosphenoid endochondral element +14.8754069,UBERON:0015105,http://purl.obolibrary.org/obo/UBERON_0015105,distal tarsal bone 2 endochondral element +14.8754069,UBERON:0015139,http://purl.obolibrary.org/obo/UBERON_0015139,infundibulum of gallbladder +14.8754069,UBERON:0015751,http://purl.obolibrary.org/obo/UBERON_0015751,inferior tarsal muscle +14.8754069,UBERON:0015834,http://purl.obolibrary.org/obo/UBERON_0015834,duodenum lamina propria +14.8754069,UBERON:0016391,http://purl.obolibrary.org/obo/UBERON_0016391,thymic lymph node +14.8754069,UBERON:0016574,http://purl.obolibrary.org/obo/UBERON_0016574,lamina III of gray matter of spinal cord +14.8754069,UBERON:0018109,http://purl.obolibrary.org/obo/UBERON_0018109,anterior auricular muscle +14.8754069,UBERON:0018143,http://purl.obolibrary.org/obo/UBERON_0018143,transverse process of cervical vertebra +14.8754069,UBERON:0018152,http://purl.obolibrary.org/obo/UBERON_0018152,pars flaccida of tympanic membrane +14.8754069,UBERON:0018250,http://purl.obolibrary.org/obo/UBERON_0018250,middle thyroid artery +14.8754069,UBERON:0018508,http://purl.obolibrary.org/obo/UBERON_0018508,foramen of nasal bone +14.8754069,UBERON:0018652,http://purl.obolibrary.org/obo/UBERON_0018652,maxillary recess +14.8754069,UBERON:0019200,http://purl.obolibrary.org/obo/UBERON_0019200,skin of anterior chest +14.8754069,UBERON:0022355,http://purl.obolibrary.org/obo/UBERON_0022355,basal layer of endometrium +14.8754069,UBERON:0022357,http://purl.obolibrary.org/obo/UBERON_0022357,mesentery of ileum +14.8754069,UBERON:0022368,http://purl.obolibrary.org/obo/UBERON_0022368,superior lateral occipital cortex +14.8754069,UBERON:0022421,http://purl.obolibrary.org/obo/UBERON_0022421,pontocerebellar tract +14.8754069,UBERON:0034725,http://purl.obolibrary.org/obo/UBERON_0034725,pterygopalatine nerve +14.8754069,UBERON:0034909,http://purl.obolibrary.org/obo/UBERON_0034909,intermaxillary suture +14.8754069,UBERON:1000016,http://purl.obolibrary.org/obo/UBERON_1000016,tip of snout +14.8754069,UBERON:2000853,http://purl.obolibrary.org/obo/UBERON_2000853,somite 18 +14.8754069,UBERON:2000982,http://purl.obolibrary.org/obo/UBERON_2000982,somite 6 +14.8754069,UBERON:2002124,http://purl.obolibrary.org/obo/UBERON_2002124,nuptial tubercle +14.8754069,UBERON:2002291,http://purl.obolibrary.org/obo/UBERON_2002291,fulcrum +14.8754069,UBERON:3000428,http://purl.obolibrary.org/obo/UBERON_3000428,perilymphatic system +14.8754069,UBERON:3010204,http://purl.obolibrary.org/obo/UBERON_3010204,ventral tail fin +14.8754069,UBERON:3010503,http://purl.obolibrary.org/obo/UBERON_3010503,oviduct artery +14.8754069,UBERON:3010517,http://purl.obolibrary.org/obo/UBERON_3010517,ventral abdominal vein +14.8754069,UBERON:4000119,http://purl.obolibrary.org/obo/UBERON_4000119,non-mineralized avascular GAG-rich matrix +14.8754069,UBERON:4000170,http://purl.obolibrary.org/obo/UBERON_4000170,median fin skeleton +14.8754069,UBERON:4100118,http://purl.obolibrary.org/obo/UBERON_4100118,trunk rib +15.0089383,CHEBI:10110,http://purl.obolibrary.org/obo/CHEBI_10110,zidovudine +15.0089383,CHEBI:15740,http://purl.obolibrary.org/obo/CHEBI_15740,formate +15.0089383,CHEBI:15866,http://purl.obolibrary.org/obo/CHEBI_15866,2-deoxy-D-glucose +15.0089383,CHEBI:16183,http://purl.obolibrary.org/obo/CHEBI_16183,methane +15.0089383,CHEBI:16605,http://purl.obolibrary.org/obo/CHEBI_16605,allyl alcohol +15.0089383,CHEBI:16709,http://purl.obolibrary.org/obo/CHEBI_16709,pyridoxine +15.0089383,CHEBI:16977,http://purl.obolibrary.org/obo/CHEBI_16977,L-alanine +15.0089383,CHEBI:17024,http://purl.obolibrary.org/obo/CHEBI_17024,tRNA pseudouridine +15.0089383,CHEBI:17246,http://purl.obolibrary.org/obo/CHEBI_17246,poly(vinyl alcohol) macromolecule +15.0089383,CHEBI:17750,http://purl.obolibrary.org/obo/CHEBI_17750,glycine betaine +15.0089383,CHEBI:17755,http://purl.obolibrary.org/obo/CHEBI_17755,cystathionine +15.0089383,CHEBI:18300,http://purl.obolibrary.org/obo/CHEBI_18300,maleic acid +15.0089383,CHEBI:20858,http://purl.obolibrary.org/obo/CHEBI_20858,C19-gibberellin +15.0089383,CHEBI:22187,http://purl.obolibrary.org/obo/CHEBI_22187,acetophenones +15.0089383,CHEBI:22565,http://purl.obolibrary.org/obo/CHEBI_22565,ansamycin +15.0089383,CHEBI:22693,http://purl.obolibrary.org/obo/CHEBI_22693,barbiturates +15.0089383,CHEBI:22726,http://purl.obolibrary.org/obo/CHEBI_22726,benzophenones +15.0089383,CHEBI:22901,http://purl.obolibrary.org/obo/CHEBI_22901,bisphenol +15.0089383,CHEBI:22907,http://purl.obolibrary.org/obo/CHEBI_22907,bleomycin +15.0089383,CHEBI:23089,http://purl.obolibrary.org/obo/CHEBI_23089,chelate-forming peptide +15.0089383,CHEBI:23401,http://purl.obolibrary.org/obo/CHEBI_23401,coumaric acid +15.0089383,CHEBI:24250,http://purl.obolibrary.org/obo/CHEBI_24250,gibberellin +15.0089383,CHEBI:24753,http://purl.obolibrary.org/obo/CHEBI_24753,hygromycin +15.0089383,CHEBI:24864,http://purl.obolibrary.org/obo/CHEBI_24864,iodothyronine +15.0089383,CHEBI:24909,http://purl.obolibrary.org/obo/CHEBI_24909,hydrocarbyladenosine +15.0089383,CHEBI:25238,http://purl.obolibrary.org/obo/CHEBI_25238,methoxybenzoic acid +15.0089383,CHEBI:25273,http://purl.obolibrary.org/obo/CHEBI_25273,methyladenosine +15.0089383,CHEBI:25609,http://purl.obolibrary.org/obo/CHEBI_25609,nucleotide-sugar +15.0089383,CHEBI:25978,http://purl.obolibrary.org/obo/CHEBI_25978,phenylacetic acids +15.0089383,CHEBI:26036,http://purl.obolibrary.org/obo/CHEBI_26036,phosphatidylinositol monophosphate +15.0089383,CHEBI:26115,http://purl.obolibrary.org/obo/CHEBI_26115,phytoalexin +15.0089383,CHEBI:26178,http://purl.obolibrary.org/obo/CHEBI_26178,polyester macromolecule +15.0089383,CHEBI:26282,http://purl.obolibrary.org/obo/CHEBI_26282,propanals +15.0089383,CHEBI:26300,http://purl.obolibrary.org/obo/CHEBI_26300,propenol +15.0089383,CHEBI:26420,http://purl.obolibrary.org/obo/CHEBI_26420,pyridinemonocarboxylic acid +15.0089383,CHEBI:27750,http://purl.obolibrary.org/obo/CHEBI_27750,ethyl acetate +15.0089383,CHEBI:28765,http://purl.obolibrary.org/obo/CHEBI_28765,phosphatidylinositol phosphate +15.0089383,CHEBI:28834,http://purl.obolibrary.org/obo/CHEBI_28834,deoxycholic acid +15.0089383,CHEBI:28875,http://purl.obolibrary.org/obo/CHEBI_28875,tetradecanoic acid +15.0089383,CHEBI:30085,http://purl.obolibrary.org/obo/CHEBI_30085,ethynyl +15.0089383,CHEBI:30790,http://purl.obolibrary.org/obo/CHEBI_30790,phenylene group +15.0089383,CHEBI:31813,http://purl.obolibrary.org/obo/CHEBI_31813,Meglumine sodium amidotrizoate +15.0089383,CHEBI:32431,http://purl.obolibrary.org/obo/CHEBI_32431,L-alaninate +15.0089383,CHEBI:3254,http://purl.obolibrary.org/obo/CHEBI_3254,C-Protein +15.0089383,CHEBI:32757,http://purl.obolibrary.org/obo/CHEBI_32757,selenocysteine residue +15.0089383,CHEBI:33287,http://purl.obolibrary.org/obo/CHEBI_33287,fertilizer +15.0089383,CHEBI:33292,http://purl.obolibrary.org/obo/CHEBI_33292,fuel +15.0089383,CHEBI:33339,http://purl.obolibrary.org/obo/CHEBI_33339,arylene group +15.0089383,CHEBI:33654,http://purl.obolibrary.org/obo/CHEBI_33654,alicyclic compound +15.0089383,CHEBI:3416,http://purl.obolibrary.org/obo/CHEBI_3416,carfentrazone-ethyl +15.0089383,CHEBI:34385,http://purl.obolibrary.org/obo/CHEBI_34385,4-aminopyridine +15.0089383,CHEBI:35107,http://purl.obolibrary.org/obo/CHEBI_35107,azane +15.0089383,CHEBI:35275,http://purl.obolibrary.org/obo/CHEBI_35275,S-glycosyl compound +15.0089383,CHEBI:35426,http://purl.obolibrary.org/obo/CHEBI_35426,ortho-fused bicyclic arene +15.0089383,CHEBI:3567,http://purl.obolibrary.org/obo/CHEBI_3567,cetyltrimethylammonium bromide +15.0089383,CHEBI:35683,http://purl.obolibrary.org/obo/CHEBI_35683,aryl sulfide +15.0089383,CHEBI:36130,http://purl.obolibrary.org/obo/CHEBI_36130,cyclic terpene ketone +15.0089383,CHEBI:36249,http://purl.obolibrary.org/obo/CHEBI_36249,bile acid conjugate +15.0089383,CHEBI:36277,http://purl.obolibrary.org/obo/CHEBI_36277,bile acid salt +15.0089383,CHEBI:36762,http://purl.obolibrary.org/obo/CHEBI_36762,abietane diterpenoid +15.0089383,CHEBI:37409,http://purl.obolibrary.org/obo/CHEBI_37409,crown compound +15.0089383,CHEBI:37555,http://purl.obolibrary.org/obo/CHEBI_37555,omega-carboxyacyl-CoA +15.0089383,CHEBI:37560,http://purl.obolibrary.org/obo/CHEBI_37560,benproperine +15.0089383,CHEBI:38188,http://purl.obolibrary.org/obo/CHEBI_38188,pyridinium salt +15.0089383,CHEBI:38305,http://purl.obolibrary.org/obo/CHEBI_38305,gibberellin monocarboxylic acid +15.0089383,CHEBI:38517,http://purl.obolibrary.org/obo/CHEBI_38517,benzophenanthridine alkaloid +15.0089383,CHEBI:38518,http://purl.obolibrary.org/obo/CHEBI_38518,benzophenanthridine +15.0089383,CHEBI:38672,http://purl.obolibrary.org/obo/CHEBI_38672,flavans +15.0089383,CHEBI:38751,http://purl.obolibrary.org/obo/CHEBI_38751,triamine +15.0089383,CHEBI:38771,http://purl.obolibrary.org/obo/CHEBI_38771,quinoxaline derivative +15.0089383,CHEBI:38775,http://purl.obolibrary.org/obo/CHEBI_38775,monohydroxyquinoline +15.0089383,CHEBI:41402,http://purl.obolibrary.org/obo/CHEBI_41402,carboxymethyl group +15.0089383,CHEBI:4300,http://purl.obolibrary.org/obo/CHEBI_4300,DNA containing guanine +15.0089383,CHEBI:44975,http://purl.obolibrary.org/obo/CHEBI_44975,"1,10-phenanthroline" +15.0089383,CHEBI:46640,http://purl.obolibrary.org/obo/CHEBI_46640,diketone +15.0089383,CHEBI:47853,http://purl.obolibrary.org/obo/CHEBI_47853,chloro group +15.0089383,CHEBI:48030,http://purl.obolibrary.org/obo/CHEBI_48030,tetrapeptide +15.0089383,CHEBI:48432,http://purl.obolibrary.org/obo/CHEBI_48432,angiotensin II +15.0089383,CHEBI:48441,http://purl.obolibrary.org/obo/CHEBI_48441,"pyrimidine 2',3'-dideoxyribonucleoside" +15.0089383,CHEBI:48545,http://purl.obolibrary.org/obo/CHEBI_48545,pentapeptide +15.0089383,CHEBI:48729,http://purl.obolibrary.org/obo/CHEBI_48729,zeolite +15.0089383,CHEBI:49104,http://purl.obolibrary.org/obo/CHEBI_49104,heteroarenecarbaldehyde +15.0089383,CHEBI:49247,http://purl.obolibrary.org/obo/CHEBI_49247,apo carotenoid monoterpenoid +15.0089383,CHEBI:49248,http://purl.obolibrary.org/obo/CHEBI_49248,ionone +15.0089383,CHEBI:50692,http://purl.obolibrary.org/obo/CHEBI_50692,mifepristone +15.0089383,CHEBI:50981,http://purl.obolibrary.org/obo/CHEBI_50981,secondary aliphatic amine +15.0089383,CHEBI:53310,http://purl.obolibrary.org/obo/CHEBI_53310,copolymer macromolecule +15.0089383,CHEBI:59768,http://purl.obolibrary.org/obo/CHEBI_59768,aliphatic aldehyde +15.0089383,CHEBI:60151,http://purl.obolibrary.org/obo/CHEBI_60151,oxidised LDL +15.0089383,CHEBI:6025,http://purl.obolibrary.org/obo/CHEBI_6025,Isomaltosaccharide +15.0089383,CHEBI:60802,http://purl.obolibrary.org/obo/CHEBI_60802,ropivacaine +15.0089383,CHEBI:62618,http://purl.obolibrary.org/obo/CHEBI_62618,hydroxyacyl-CoA +15.0089383,CHEBI:63791,http://purl.obolibrary.org/obo/CHEBI_63791,lenalidomide +15.0089383,CHEBI:63954,http://purl.obolibrary.org/obo/CHEBI_63954,ionomycin +15.0089383,CHEBI:64090,http://purl.obolibrary.org/obo/CHEBI_64090,tert-butyl hydroperoxide +15.0089383,CHEBI:64600,http://purl.obolibrary.org/obo/CHEBI_64600,C21-steroid hormone +15.0089383,CHEBI:66933,http://purl.obolibrary.org/obo/CHEBI_66933,N-alkylglycine +15.0089383,CHEBI:67265,http://purl.obolibrary.org/obo/CHEBI_67265,beta-diketone +15.0089383,CHEBI:73162,http://purl.obolibrary.org/obo/CHEBI_73162,paclobutrazol +15.0089383,CHEBI:73754,http://purl.obolibrary.org/obo/CHEBI_73754,thiosugar +15.0089383,CHEBI:7449,http://purl.obolibrary.org/obo/CHEBI_7449,nafenopin +15.0089383,CHEBI:74518,http://purl.obolibrary.org/obo/CHEBI_74518,anti-obesity agent +15.0089383,CHEBI:74886,http://purl.obolibrary.org/obo/CHEBI_74886,neoglycolipid probe +15.0089383,CHEBI:7726,http://purl.obolibrary.org/obo/CHEBI_7726,octreotide +15.0089383,CHEBI:80331,http://purl.obolibrary.org/obo/CHEBI_80331,Vasoactive intestinal peptide +15.0089383,CHEBI:83332,http://purl.obolibrary.org/obo/CHEBI_83332,orciprenaline sulfate +15.0089383,CHEBI:84491,http://purl.obolibrary.org/obo/CHEBI_84491,poly(I:C) +15.0089383,CHEBI:85348,http://purl.obolibrary.org/obo/CHEBI_85348,"11,12-saturated fatty acyl-CoA" +15.0089383,CHEBI:86644,http://purl.obolibrary.org/obo/CHEBI_86644,Gibberellic acid +15.0089383,CHEBI:87034,http://purl.obolibrary.org/obo/CHEBI_87034,aromatic fungicide +15.0089383,CHEBI:9948,http://purl.obolibrary.org/obo/CHEBI_9948,verapamil +15.0089383,CL:0000251,http://purl.obolibrary.org/obo/CL_0000251,extramedullary cell +15.0089383,CL:0000339,http://purl.obolibrary.org/obo/CL_0000339,glioblast (sensu Vertebrata) +15.0089383,CL:0000434,http://purl.obolibrary.org/obo/CL_0000434,eccrine cell +15.0089383,CL:0000854,http://purl.obolibrary.org/obo/CL_0000854,interneuromast cell +15.0089383,CL:0000869,http://purl.obolibrary.org/obo/CL_0000869,tonsillar macrophage +15.0089383,CL:0001041,http://purl.obolibrary.org/obo/CL_0001041,"CD8-positive, CXCR3-positive, alpha-beta regulatory T cell" +15.0089383,CL:0002009,http://purl.obolibrary.org/obo/CL_0002009,macrophage dendritic cell progenitor +15.0089383,CL:0002591,http://purl.obolibrary.org/obo/CL_0002591,smooth muscle cell of the pulmonary artery +15.0089383,CL:0002603,http://purl.obolibrary.org/obo/CL_0002603,astrocyte of the cerebellum +15.0089383,CL:0002653,http://purl.obolibrary.org/obo/CL_0002653,squamous endothelial cell +15.0089383,CL:0002676,http://purl.obolibrary.org/obo/CL_0002676,neural crest derived neuroblast +15.0089383,CL:1001576,http://purl.obolibrary.org/obo/CL_1001576,oral mucosa squamous cell +15.0089383,DRUGBANK:DB00587,http://purl.obolibrary.org/obo/DRUGBANK_DB00587,none +15.0089383,DRUGBANK:DB01473,http://purl.obolibrary.org/obo/DRUGBANK_DB01473,none +15.0089383,DRUGBANK:DB01476,http://purl.obolibrary.org/obo/DRUGBANK_DB01476,none +15.0089383,DRUGBANK:DB01494,http://purl.obolibrary.org/obo/DRUGBANK_DB01494,none +15.0089383,DRUGBANK:DB01985,http://purl.obolibrary.org/obo/DRUGBANK_DB01985,none +15.0089383,DRUGBANK:DB02011,http://purl.obolibrary.org/obo/DRUGBANK_DB02011,none +15.0089383,DRUGBANK:DB02031,http://purl.obolibrary.org/obo/DRUGBANK_DB02031,none +15.0089383,DRUGBANK:DB02068,http://purl.obolibrary.org/obo/DRUGBANK_DB02068,none +15.0089383,DRUGBANK:DB02100,http://purl.obolibrary.org/obo/DRUGBANK_DB02100,none +15.0089383,DRUGBANK:DB02399,http://purl.obolibrary.org/obo/DRUGBANK_DB02399,none +15.0089383,DRUGBANK:DB02475,http://purl.obolibrary.org/obo/DRUGBANK_DB02475,none +15.0089383,DRUGBANK:DB02568,http://purl.obolibrary.org/obo/DRUGBANK_DB02568,none +15.0089383,DRUGBANK:DB02797,http://purl.obolibrary.org/obo/DRUGBANK_DB02797,none +15.0089383,DRUGBANK:DB02890,http://purl.obolibrary.org/obo/DRUGBANK_DB02890,none +15.0089383,DRUGBANK:DB03044,http://purl.obolibrary.org/obo/DRUGBANK_DB03044,none +15.0089383,DRUGBANK:DB03134,http://purl.obolibrary.org/obo/DRUGBANK_DB03134,none +15.0089383,DRUGBANK:DB03150,http://purl.obolibrary.org/obo/DRUGBANK_DB03150,none +15.0089383,DRUGBANK:DB03246,http://purl.obolibrary.org/obo/DRUGBANK_DB03246,none +15.0089383,DRUGBANK:DB03256,http://purl.obolibrary.org/obo/DRUGBANK_DB03256,none +15.0089383,DRUGBANK:DB03409,http://purl.obolibrary.org/obo/DRUGBANK_DB03409,none +15.0089383,DRUGBANK:DB03464,http://purl.obolibrary.org/obo/DRUGBANK_DB03464,none +15.0089383,DRUGBANK:DB03559,http://purl.obolibrary.org/obo/DRUGBANK_DB03559,none +15.0089383,DRUGBANK:DB03562,http://purl.obolibrary.org/obo/DRUGBANK_DB03562,none +15.0089383,DRUGBANK:DB04085,http://purl.obolibrary.org/obo/DRUGBANK_DB04085,none +15.0089383,DRUGBANK:DB04195,http://purl.obolibrary.org/obo/DRUGBANK_DB04195,none +15.0089383,DRUGBANK:DB04287,http://purl.obolibrary.org/obo/DRUGBANK_DB04287,none +15.0089383,DRUGBANK:DB04496,http://purl.obolibrary.org/obo/DRUGBANK_DB04496,none +15.0089383,DRUGBANK:DB04774,http://purl.obolibrary.org/obo/DRUGBANK_DB04774,none +15.0089383,DRUGBANK:DB04857,http://purl.obolibrary.org/obo/DRUGBANK_DB04857,none +15.0089383,DRUGBANK:DB04987,http://purl.obolibrary.org/obo/DRUGBANK_DB04987,none +15.0089383,DRUGBANK:DB05051,http://purl.obolibrary.org/obo/DRUGBANK_DB05051,none +15.0089383,DRUGBANK:DB05075,http://purl.obolibrary.org/obo/DRUGBANK_DB05075,none +15.0089383,DRUGBANK:DB05129,http://purl.obolibrary.org/obo/DRUGBANK_DB05129,none +15.0089383,DRUGBANK:DB05131,http://purl.obolibrary.org/obo/DRUGBANK_DB05131,none +15.0089383,DRUGBANK:DB05148,http://purl.obolibrary.org/obo/DRUGBANK_DB05148,none +15.0089383,DRUGBANK:DB05217,http://purl.obolibrary.org/obo/DRUGBANK_DB05217,none +15.0089383,DRUGBANK:DB05224,http://purl.obolibrary.org/obo/DRUGBANK_DB05224,none +15.0089383,DRUGBANK:DB05243,http://purl.obolibrary.org/obo/DRUGBANK_DB05243,none +15.0089383,DRUGBANK:DB05319,http://purl.obolibrary.org/obo/DRUGBANK_DB05319,none +15.0089383,DRUGBANK:DB05395,http://purl.obolibrary.org/obo/DRUGBANK_DB05395,none +15.0089383,DRUGBANK:DB05407,http://purl.obolibrary.org/obo/DRUGBANK_DB05407,none +15.0089383,DRUGBANK:DB05421,http://purl.obolibrary.org/obo/DRUGBANK_DB05421,none +15.0089383,DRUGBANK:DB05423,http://purl.obolibrary.org/obo/DRUGBANK_DB05423,none +15.0089383,DRUGBANK:DB05457,http://purl.obolibrary.org/obo/DRUGBANK_DB05457,none +15.0089383,DRUGBANK:DB05476,http://purl.obolibrary.org/obo/DRUGBANK_DB05476,none +15.0089383,DRUGBANK:DB05644,http://purl.obolibrary.org/obo/DRUGBANK_DB05644,none +15.0089383,DRUGBANK:DB05687,http://purl.obolibrary.org/obo/DRUGBANK_DB05687,none +15.0089383,DRUGBANK:DB05814,http://purl.obolibrary.org/obo/DRUGBANK_DB05814,none +15.0089383,DRUGBANK:DB05835,http://purl.obolibrary.org/obo/DRUGBANK_DB05835,none +15.0089383,DRUGBANK:DB05838,http://purl.obolibrary.org/obo/DRUGBANK_DB05838,none +15.0089383,DRUGBANK:DB05868,http://purl.obolibrary.org/obo/DRUGBANK_DB05868,none +15.0089383,DRUGBANK:DB06257,http://purl.obolibrary.org/obo/DRUGBANK_DB06257,none +15.0089383,DRUGBANK:DB06276,http://purl.obolibrary.org/obo/DRUGBANK_DB06276,none +15.0089383,DRUGBANK:DB06354,http://purl.obolibrary.org/obo/DRUGBANK_DB06354,none +15.0089383,DRUGBANK:DB06421,http://purl.obolibrary.org/obo/DRUGBANK_DB06421,none +15.0089383,DRUGBANK:DB06460,http://purl.obolibrary.org/obo/DRUGBANK_DB06460,none +15.0089383,DRUGBANK:DB06474,http://purl.obolibrary.org/obo/DRUGBANK_DB06474,none +15.0089383,DRUGBANK:DB06489,http://purl.obolibrary.org/obo/DRUGBANK_DB06489,none +15.0089383,DRUGBANK:DB06557,http://purl.obolibrary.org/obo/DRUGBANK_DB06557,none +15.0089383,DRUGBANK:DB06576,http://purl.obolibrary.org/obo/DRUGBANK_DB06576,none +15.0089383,DRUGBANK:DB06760,http://purl.obolibrary.org/obo/DRUGBANK_DB06760,none +15.0089383,DRUGBANK:DB07215,http://purl.obolibrary.org/obo/DRUGBANK_DB07215,none +15.0089383,DRUGBANK:DB08226,http://purl.obolibrary.org/obo/DRUGBANK_DB08226,none +15.0089383,DRUGBANK:DB09346,http://purl.obolibrary.org/obo/DRUGBANK_DB09346,none +15.0089383,DRUGBANK:DB09430,http://purl.obolibrary.org/obo/DRUGBANK_DB09430,none +15.0089383,DRUGBANK:DB10608,http://purl.obolibrary.org/obo/DRUGBANK_DB10608,none +15.0089383,DRUGBANK:DB10851,http://purl.obolibrary.org/obo/DRUGBANK_DB10851,none +15.0089383,DRUGBANK:DB10934,http://purl.obolibrary.org/obo/DRUGBANK_DB10934,none +15.0089383,DRUGBANK:DB10950,http://purl.obolibrary.org/obo/DRUGBANK_DB10950,none +15.0089383,DRUGBANK:DB11417,http://purl.obolibrary.org/obo/DRUGBANK_DB11417,none +15.0089383,DRUGBANK:DB11454,http://purl.obolibrary.org/obo/DRUGBANK_DB11454,none +15.0089383,DRUGBANK:DB11472,http://purl.obolibrary.org/obo/DRUGBANK_DB11472,none +15.0089383,DRUGBANK:DB11606,http://purl.obolibrary.org/obo/DRUGBANK_DB11606,none +15.0089383,DRUGBANK:DB11671,http://purl.obolibrary.org/obo/DRUGBANK_DB11671,none +15.0089383,DRUGBANK:DB11729,http://purl.obolibrary.org/obo/DRUGBANK_DB11729,none +15.0089383,DRUGBANK:DB11764,http://purl.obolibrary.org/obo/DRUGBANK_DB11764,none +15.0089383,DRUGBANK:DB11807,http://purl.obolibrary.org/obo/DRUGBANK_DB11807,none +15.0089383,DRUGBANK:DB11822,http://purl.obolibrary.org/obo/DRUGBANK_DB11822,none +15.0089383,DRUGBANK:DB11837,http://purl.obolibrary.org/obo/DRUGBANK_DB11837,none +15.0089383,DRUGBANK:DB11853,http://purl.obolibrary.org/obo/DRUGBANK_DB11853,none +15.0089383,DRUGBANK:DB11977,http://purl.obolibrary.org/obo/DRUGBANK_DB11977,none +15.0089383,DRUGBANK:DB12037,http://purl.obolibrary.org/obo/DRUGBANK_DB12037,none +15.0089383,DRUGBANK:DB12044,http://purl.obolibrary.org/obo/DRUGBANK_DB12044,none +15.0089383,DRUGBANK:DB12051,http://purl.obolibrary.org/obo/DRUGBANK_DB12051,none +15.0089383,DRUGBANK:DB12101,http://purl.obolibrary.org/obo/DRUGBANK_DB12101,none +15.0089383,DRUGBANK:DB12104,http://purl.obolibrary.org/obo/DRUGBANK_DB12104,none +15.0089383,DRUGBANK:DB12142,http://purl.obolibrary.org/obo/DRUGBANK_DB12142,none +15.0089383,DRUGBANK:DB12167,http://purl.obolibrary.org/obo/DRUGBANK_DB12167,none +15.0089383,DRUGBANK:DB12180,http://purl.obolibrary.org/obo/DRUGBANK_DB12180,none +15.0089383,DRUGBANK:DB12198,http://purl.obolibrary.org/obo/DRUGBANK_DB12198,none +15.0089383,DRUGBANK:DB12207,http://purl.obolibrary.org/obo/DRUGBANK_DB12207,none +15.0089383,DRUGBANK:DB12213,http://purl.obolibrary.org/obo/DRUGBANK_DB12213,none +15.0089383,DRUGBANK:DB12263,http://purl.obolibrary.org/obo/DRUGBANK_DB12263,none +15.0089383,DRUGBANK:DB12296,http://purl.obolibrary.org/obo/DRUGBANK_DB12296,none +15.0089383,DRUGBANK:DB12322,http://purl.obolibrary.org/obo/DRUGBANK_DB12322,none +15.0089383,DRUGBANK:DB12365,http://purl.obolibrary.org/obo/DRUGBANK_DB12365,none +15.0089383,DRUGBANK:DB12367,http://purl.obolibrary.org/obo/DRUGBANK_DB12367,none +15.0089383,DRUGBANK:DB12420,http://purl.obolibrary.org/obo/DRUGBANK_DB12420,none +15.0089383,DRUGBANK:DB12428,http://purl.obolibrary.org/obo/DRUGBANK_DB12428,none +15.0089383,DRUGBANK:DB12436,http://purl.obolibrary.org/obo/DRUGBANK_DB12436,none +15.0089383,DRUGBANK:DB12501,http://purl.obolibrary.org/obo/DRUGBANK_DB12501,none +15.0089383,DRUGBANK:DB12547,http://purl.obolibrary.org/obo/DRUGBANK_DB12547,none +15.0089383,DRUGBANK:DB12627,http://purl.obolibrary.org/obo/DRUGBANK_DB12627,none +15.0089383,DRUGBANK:DB12655,http://purl.obolibrary.org/obo/DRUGBANK_DB12655,none +15.0089383,DRUGBANK:DB12689,http://purl.obolibrary.org/obo/DRUGBANK_DB12689,none +15.0089383,DRUGBANK:DB12711,http://purl.obolibrary.org/obo/DRUGBANK_DB12711,none +15.0089383,DRUGBANK:DB12725,http://purl.obolibrary.org/obo/DRUGBANK_DB12725,none +15.0089383,DRUGBANK:DB12875,http://purl.obolibrary.org/obo/DRUGBANK_DB12875,none +15.0089383,DRUGBANK:DB12900,http://purl.obolibrary.org/obo/DRUGBANK_DB12900,none +15.0089383,DRUGBANK:DB12925,http://purl.obolibrary.org/obo/DRUGBANK_DB12925,none +15.0089383,DRUGBANK:DB12981,http://purl.obolibrary.org/obo/DRUGBANK_DB12981,none +15.0089383,DRUGBANK:DB13037,http://purl.obolibrary.org/obo/DRUGBANK_DB13037,none +15.0089383,DRUGBANK:DB13052,http://purl.obolibrary.org/obo/DRUGBANK_DB13052,none +15.0089383,DRUGBANK:DB13059,http://purl.obolibrary.org/obo/DRUGBANK_DB13059,none +15.0089383,DRUGBANK:DB13083,http://purl.obolibrary.org/obo/DRUGBANK_DB13083,none +15.0089383,DRUGBANK:DB13122,http://purl.obolibrary.org/obo/DRUGBANK_DB13122,none +15.0089383,DRUGBANK:DB13123,http://purl.obolibrary.org/obo/DRUGBANK_DB13123,none +15.0089383,DRUGBANK:DB13141,http://purl.obolibrary.org/obo/DRUGBANK_DB13141,none +15.0089383,DRUGBANK:DB13143,http://purl.obolibrary.org/obo/DRUGBANK_DB13143,none +15.0089383,DRUGBANK:DB13289,http://purl.obolibrary.org/obo/DRUGBANK_DB13289,none +15.0089383,DRUGBANK:DB13298,http://purl.obolibrary.org/obo/DRUGBANK_DB13298,none +15.0089383,DRUGBANK:DB13397,http://purl.obolibrary.org/obo/DRUGBANK_DB13397,none +15.0089383,DRUGBANK:DB13465,http://purl.obolibrary.org/obo/DRUGBANK_DB13465,none +15.0089383,DRUGBANK:DB13492,http://purl.obolibrary.org/obo/DRUGBANK_DB13492,none +15.0089383,DRUGBANK:DB13541,http://purl.obolibrary.org/obo/DRUGBANK_DB13541,none +15.0089383,DRUGBANK:DB13548,http://purl.obolibrary.org/obo/DRUGBANK_DB13548,none +15.0089383,DRUGBANK:DB13575,http://purl.obolibrary.org/obo/DRUGBANK_DB13575,none +15.0089383,DRUGBANK:DB13585,http://purl.obolibrary.org/obo/DRUGBANK_DB13585,none +15.0089383,DRUGBANK:DB13599,http://purl.obolibrary.org/obo/DRUGBANK_DB13599,none +15.0089383,DRUGBANK:DB13623,http://purl.obolibrary.org/obo/DRUGBANK_DB13623,none +15.0089383,DRUGBANK:DB13695,http://purl.obolibrary.org/obo/DRUGBANK_DB13695,none +15.0089383,DRUGBANK:DB13827,http://purl.obolibrary.org/obo/DRUGBANK_DB13827,none +15.0089383,DRUGBANK:DB13991,http://purl.obolibrary.org/obo/DRUGBANK_DB13991,none +15.0089383,DRUGBANK:DB14069,http://purl.obolibrary.org/obo/DRUGBANK_DB14069,none +15.0089383,DRUGBANK:DB14113,http://purl.obolibrary.org/obo/DRUGBANK_DB14113,none +15.0089383,DRUGBANK:DB14230,http://purl.obolibrary.org/obo/DRUGBANK_DB14230,none +15.0089383,DRUGBANK:DB14238,http://purl.obolibrary.org/obo/DRUGBANK_DB14238,none +15.0089383,DRUGBANK:DB14346,http://purl.obolibrary.org/obo/DRUGBANK_DB14346,none +15.0089383,DRUGBANK:DB14353,http://purl.obolibrary.org/obo/DRUGBANK_DB14353,none +15.0089383,DRUGBANK:DB14484,http://purl.obolibrary.org/obo/DRUGBANK_DB14484,none +15.0089383,DRUGBANK:DB14514,http://purl.obolibrary.org/obo/DRUGBANK_DB14514,none +15.0089383,DRUGBANK:DB14572,http://purl.obolibrary.org/obo/DRUGBANK_DB14572,none +15.0089383,DRUGBANK:DB14687,http://purl.obolibrary.org/obo/DRUGBANK_DB14687,none +15.0089383,DRUGBANK:DB14755,http://purl.obolibrary.org/obo/DRUGBANK_DB14755,none +15.0089383,DRUGBANK:DB14914,http://purl.obolibrary.org/obo/DRUGBANK_DB14914,none +15.0089383,DRUGBANK:DB14979,http://purl.obolibrary.org/obo/DRUGBANK_DB14979,none +15.0089383,DRUGBANK:DB14989,http://purl.obolibrary.org/obo/DRUGBANK_DB14989,none +15.0089383,DRUGBANK:DB15028,http://purl.obolibrary.org/obo/DRUGBANK_DB15028,none +15.0089383,DRUGBANK:DB15071,http://purl.obolibrary.org/obo/DRUGBANK_DB15071,none +15.0089383,DRUGBANK:DB15138,http://purl.obolibrary.org/obo/DRUGBANK_DB15138,none +15.0089383,DRUGBANK:DB15156,http://purl.obolibrary.org/obo/DRUGBANK_DB15156,none +15.0089383,DRUGBANK:DB15331,http://purl.obolibrary.org/obo/DRUGBANK_DB15331,none +15.0089383,DRUGBANK:DB15342,http://purl.obolibrary.org/obo/DRUGBANK_DB15342,none +15.0089383,DRUGBANK:DB15353,http://purl.obolibrary.org/obo/DRUGBANK_DB15353,none +15.0089383,DRUGBANK:DB15354,http://purl.obolibrary.org/obo/DRUGBANK_DB15354,none +15.0089383,DRUGBANK:DB15369,http://purl.obolibrary.org/obo/DRUGBANK_DB15369,none +15.0089383,DRUGBANK:DB15380,http://purl.obolibrary.org/obo/DRUGBANK_DB15380,none +15.0089383,DRUGBANK:DB15432,http://purl.obolibrary.org/obo/DRUGBANK_DB15432,none +15.0089383,DRUGBANK:DB15439,http://purl.obolibrary.org/obo/DRUGBANK_DB15439,none +15.0089383,DRUGBANK:DB15446,http://purl.obolibrary.org/obo/DRUGBANK_DB15446,none +15.0089383,DRUGBANK:DB15480,http://purl.obolibrary.org/obo/DRUGBANK_DB15480,none +15.0089383,DRUGBANK:DB15590,http://purl.obolibrary.org/obo/DRUGBANK_DB15590,none +15.0089383,DRUGBANK:DB15639,http://purl.obolibrary.org/obo/DRUGBANK_DB15639,none +15.0089383,DRUGBANK:DB15765,http://purl.obolibrary.org/obo/DRUGBANK_DB15765,none +15.0089383,DRUGBANK:DB15825,http://purl.obolibrary.org/obo/DRUGBANK_DB15825,none +15.0089383,DRUGBANK:DB15937,http://purl.obolibrary.org/obo/DRUGBANK_DB15937,none +15.0089383,DRUGBANK:DB15951,http://purl.obolibrary.org/obo/DRUGBANK_DB15951,none +15.0089383,DRUGBANK:DB16012,http://purl.obolibrary.org/obo/DRUGBANK_DB16012,none +15.0089383,DRUGBANK:DB16066,http://purl.obolibrary.org/obo/DRUGBANK_DB16066,none +15.0089383,DRUGBANK:DB16108,http://purl.obolibrary.org/obo/DRUGBANK_DB16108,none +15.0089383,DRUGBANK:DB16144,http://purl.obolibrary.org/obo/DRUGBANK_DB16144,none +15.0089383,DRUGBANK:DB16145,http://purl.obolibrary.org/obo/DRUGBANK_DB16145,none +15.0089383,DRUGBANK:DB16152,http://purl.obolibrary.org/obo/DRUGBANK_DB16152,none +15.0089383,DRUGBANK:DB16180,http://purl.obolibrary.org/obo/DRUGBANK_DB16180,none +15.0089383,DRUGBANK:DB16217,http://purl.obolibrary.org/obo/DRUGBANK_DB16217,none +15.0089383,DRUGBANK:DB16245,http://purl.obolibrary.org/obo/DRUGBANK_DB16245,none +15.0089383,DRUGBANK:DB16250,http://purl.obolibrary.org/obo/DRUGBANK_DB16250,none +15.0089383,DRUGBANK:DB16263,http://purl.obolibrary.org/obo/DRUGBANK_DB16263,none +15.0089383,DRUGBANK:DB16270,http://purl.obolibrary.org/obo/DRUGBANK_DB16270,none +15.0089383,DRUGBANK:DB16321,http://purl.obolibrary.org/obo/DRUGBANK_DB16321,none +15.0089383,DRUGBANK:DB16366,http://purl.obolibrary.org/obo/DRUGBANK_DB16366,none +15.0089383,GO:0000031,http://purl.obolibrary.org/obo/GO_0000031,mannosylphosphate transferase activity +15.0089383,GO:0000093,http://purl.obolibrary.org/obo/GO_0000093,mitotic telophase +15.0089383,GO:0000103,http://purl.obolibrary.org/obo/GO_0000103,sulfate assimilation +15.0089383,GO:0000172,http://purl.obolibrary.org/obo/GO_0000172,ribonuclease MRP complex +15.0089383,GO:0000288,http://purl.obolibrary.org/obo/GO_0000288,"nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay" +15.0089383,GO:0000316,http://purl.obolibrary.org/obo/GO_0000316,sulfite transport +15.0089383,GO:0000770,http://purl.obolibrary.org/obo/GO_0000770,peptide pheromone export +15.0089383,GO:0001549,http://purl.obolibrary.org/obo/GO_0001549,cumulus cell differentiation +15.0089383,GO:0001691,http://purl.obolibrary.org/obo/GO_0001691,pseudophosphatase activity +15.0089383,GO:0001759,http://purl.obolibrary.org/obo/GO_0001759,organ induction +15.0089383,GO:0001840,http://purl.obolibrary.org/obo/GO_0001840,neural plate development +15.0089383,GO:0001937,http://purl.obolibrary.org/obo/GO_0001937,negative regulation of endothelial cell proliferation +15.0089383,GO:0001944,http://purl.obolibrary.org/obo/GO_0001944,vasculature development +15.0089383,GO:0002011,http://purl.obolibrary.org/obo/GO_0002011,morphogenesis of an epithelial sheet +15.0089383,GO:0002152,http://purl.obolibrary.org/obo/GO_0002152,bile acid conjugation +15.0089383,GO:0002318,http://purl.obolibrary.org/obo/GO_0002318,myeloid progenitor cell differentiation +15.0089383,GO:0002568,http://purl.obolibrary.org/obo/GO_0002568,somatic diversification of T cell receptor genes +15.0089383,GO:0002674,http://purl.obolibrary.org/obo/GO_0002674,negative regulation of acute inflammatory response +15.0089383,GO:0002681,http://purl.obolibrary.org/obo/GO_0002681,somatic recombination of T cell receptor gene segments +15.0089383,GO:0002689,http://purl.obolibrary.org/obo/GO_0002689,negative regulation of leukocyte chemotaxis +15.0089383,GO:0003157,http://purl.obolibrary.org/obo/GO_0003157,endocardium development +15.0089383,GO:0003170,http://purl.obolibrary.org/obo/GO_0003170,heart valve development +15.0089383,GO:0003850,http://purl.obolibrary.org/obo/GO_0003850,2-deoxyglucose-6-phosphatase activity +15.0089383,GO:0003878,http://purl.obolibrary.org/obo/GO_0003878,ATP citrate synthase activity +15.0089383,GO:0004008,http://purl.obolibrary.org/obo/GO_0004008,none +15.0089383,GO:0004061,http://purl.obolibrary.org/obo/GO_0004061,arylformamidase activity +15.0089383,GO:0004110,http://purl.obolibrary.org/obo/GO_0004110,corticosteroid side-chain-isomerase activity +15.0089383,GO:0004139,http://purl.obolibrary.org/obo/GO_0004139,deoxyribose-phosphate aldolase activity +15.0089383,GO:0004147,http://purl.obolibrary.org/obo/GO_0004147,dihydrolipoamide branched chain acyltransferase activity +15.0089383,GO:0004190,http://purl.obolibrary.org/obo/GO_0004190,aspartic-type endopeptidase activity +15.0089383,GO:0004320,http://purl.obolibrary.org/obo/GO_0004320,oleoyl-[acyl-carrier-protein] hydrolase activity +15.0089383,GO:0004512,http://purl.obolibrary.org/obo/GO_0004512,inositol-3-phosphate synthase activity +15.0089383,GO:0004573,http://purl.obolibrary.org/obo/GO_0004573,Glc3Man9GlcNAc2 oligosaccharide glucosidase activity +15.0089383,GO:0004581,http://purl.obolibrary.org/obo/GO_0004581,dolichyl-phosphate beta-glucosyltransferase activity +15.0089383,GO:0004592,http://purl.obolibrary.org/obo/GO_0004592,pantoate-beta-alanine ligase activity +15.0089383,GO:0004642,http://purl.obolibrary.org/obo/GO_0004642,phosphoribosylformylglycinamidine synthase activity +15.0089383,GO:0004848,http://purl.obolibrary.org/obo/GO_0004848,ureidoglycolate hydrolase activity +15.0089383,GO:0005818,http://purl.obolibrary.org/obo/GO_0005818,aster +15.0089383,GO:0005987,http://purl.obolibrary.org/obo/GO_0005987,sucrose catabolic process +15.0089383,GO:0006102,http://purl.obolibrary.org/obo/GO_0006102,isocitrate metabolic process +15.0089383,GO:0006370,http://purl.obolibrary.org/obo/GO_0006370,7-methylguanosine mRNA capping +15.0089383,GO:0006449,http://purl.obolibrary.org/obo/GO_0006449,regulation of translational termination +15.0089383,GO:0006493,http://purl.obolibrary.org/obo/GO_0006493,protein O-linked glycosylation +15.0089383,GO:0007403,http://purl.obolibrary.org/obo/GO_0007403,glial cell fate determination +15.0089383,GO:0007442,http://purl.obolibrary.org/obo/GO_0007442,hindgut morphogenesis +15.0089383,GO:0007469,http://purl.obolibrary.org/obo/GO_0007469,antennal development +15.0089383,GO:0008387,http://purl.obolibrary.org/obo/GO_0008387,steroid 7-alpha-hydroxylase activity +15.0089383,GO:0008589,http://purl.obolibrary.org/obo/GO_0008589,regulation of smoothened signaling pathway +15.0089383,GO:0008647,http://purl.obolibrary.org/obo/GO_0008647,none +15.0089383,GO:0008668,http://purl.obolibrary.org/obo/GO_0008668,"(2,3-dihydroxybenzoyl)adenylate synthase activity" +15.0089383,GO:0008676,http://purl.obolibrary.org/obo/GO_0008676,3-deoxy-8-phosphooctulonate synthase activity +15.0089383,GO:0008718,http://purl.obolibrary.org/obo/GO_0008718,D-amino-acid dehydrogenase activity +15.0089383,GO:0008735,http://purl.obolibrary.org/obo/GO_0008735,carnitine dehydratase activity +15.0089383,GO:0008762,http://purl.obolibrary.org/obo/GO_0008762,UDP-N-acetylmuramate dehydrogenase activity +15.0089383,GO:0008830,http://purl.obolibrary.org/obo/GO_0008830,"dTDP-4-dehydrorhamnose 3,5-epimerase activity" +15.0089383,GO:0008925,http://purl.obolibrary.org/obo/GO_0008925,maltose O-acetyltransferase activity +15.0089383,GO:0009000,http://purl.obolibrary.org/obo/GO_0009000,selenocysteine lyase activity +15.0089383,GO:0009012,http://purl.obolibrary.org/obo/GO_0009012,aminoglycoside 3''-adenylyltransferase activity +15.0089383,GO:0009302,http://purl.obolibrary.org/obo/GO_0009302,sno(s)RNA transcription +15.0089383,GO:0009439,http://purl.obolibrary.org/obo/GO_0009439,cyanate metabolic process +15.0089383,GO:0009452,http://purl.obolibrary.org/obo/GO_0009452,7-methylguanosine RNA capping +15.0089383,GO:0009959,http://purl.obolibrary.org/obo/GO_0009959,negative gravitropism +15.0089383,GO:0010030,http://purl.obolibrary.org/obo/GO_0010030,positive regulation of seed germination +15.0089383,GO:0010150,http://purl.obolibrary.org/obo/GO_0010150,leaf senescence +15.0089383,GO:0010272,http://purl.obolibrary.org/obo/GO_0010272,response to silver ion +15.0089383,GO:0010276,http://purl.obolibrary.org/obo/GO_0010276,phytol kinase activity +15.0089383,GO:0010310,http://purl.obolibrary.org/obo/GO_0010310,regulation of hydrogen peroxide metabolic process +15.0089383,GO:0010321,http://purl.obolibrary.org/obo/GO_0010321,regulation of vegetative phase change +15.0089383,GO:0010544,http://purl.obolibrary.org/obo/GO_0010544,negative regulation of platelet activation +15.0089383,GO:0010839,http://purl.obolibrary.org/obo/GO_0010839,negative regulation of keratinocyte proliferation +15.0089383,GO:0010878,http://purl.obolibrary.org/obo/GO_0010878,cholesterol storage +15.0089383,GO:0010967,http://purl.obolibrary.org/obo/GO_0010967,regulation of polyamine biosynthetic process +15.0089383,GO:0010972,http://purl.obolibrary.org/obo/GO_0010972,negative regulation of G2/M transition of mitotic cell cycle +15.0089383,GO:0014061,http://purl.obolibrary.org/obo/GO_0014061,regulation of norepinephrine secretion +15.0089383,GO:0014066,http://purl.obolibrary.org/obo/GO_0014066,regulation of phosphatidylinositol 3-kinase signaling +15.0089383,GO:0015164,http://purl.obolibrary.org/obo/GO_0015164,glucuronoside transmembrane transporter activity +15.0089383,GO:0015391,http://purl.obolibrary.org/obo/GO_0015391,nucleobase:cation symporter activity +15.0089383,GO:0015693,http://purl.obolibrary.org/obo/GO_0015693,magnesium ion transport +15.0089383,GO:0015776,http://purl.obolibrary.org/obo/GO_0015776,capsular polysaccharide transport +15.0089383,GO:0015895,http://purl.obolibrary.org/obo/GO_0015895,alkane transport +15.0089383,GO:0015913,http://purl.obolibrary.org/obo/GO_0015913,short-chain fatty acid import +15.0089383,GO:0015991,http://purl.obolibrary.org/obo/GO_0015991,none +15.0089383,GO:0016454,http://purl.obolibrary.org/obo/GO_0016454,C-palmitoyltransferase activity +15.0089383,GO:0016677,http://purl.obolibrary.org/obo/GO_0016677,"oxidoreductase activity, acting on a heme group of donors, nitrogenous group as acceptor" +15.0089383,GO:0016719,http://purl.obolibrary.org/obo/GO_0016719,"carotene 7,8-desaturase activity" +15.0089383,GO:0016756,http://purl.obolibrary.org/obo/GO_0016756,glutathione gamma-glutamylcysteinyltransferase activity +15.0089383,GO:0018032,http://purl.obolibrary.org/obo/GO_0018032,protein amidation +15.0089383,GO:0018101,http://purl.obolibrary.org/obo/GO_0018101,protein citrullination +15.0089383,GO:0018488,http://purl.obolibrary.org/obo/GO_0018488,aryl-aldehyde oxidase activity +15.0089383,GO:0018671,http://purl.obolibrary.org/obo/GO_0018671,4-hydroxybenzoate 3-monooxygenase [NAD(P)H] activity +15.0089383,GO:0018676,http://purl.obolibrary.org/obo/GO_0018676,(S)-limonene 7-monooxygenase activity +15.0089383,GO:0018820,http://purl.obolibrary.org/obo/GO_0018820,cyanamide hydratase activity +15.0089383,GO:0018900,http://purl.obolibrary.org/obo/GO_0018900,dichloromethane metabolic process +15.0089383,GO:0018964,http://purl.obolibrary.org/obo/GO_0018964,propylene metabolic process +15.0089383,GO:0019133,http://purl.obolibrary.org/obo/GO_0019133,choline monooxygenase activity +15.0089383,GO:0019311,http://purl.obolibrary.org/obo/GO_0019311,sorbose metabolic process +15.0089383,GO:0019364,http://purl.obolibrary.org/obo/GO_0019364,pyridine nucleotide catabolic process +15.0089383,GO:0019430,http://purl.obolibrary.org/obo/GO_0019430,removal of superoxide radicals +15.0089383,GO:0019665,http://purl.obolibrary.org/obo/GO_0019665,anaerobic amino acid catabolic process +15.0089383,GO:0019666,http://purl.obolibrary.org/obo/GO_0019666,nitrogenous compound fermentation +15.0089383,GO:0019706,http://purl.obolibrary.org/obo/GO_0019706,protein-cysteine S-palmitoyltransferase activity +15.0089383,GO:0019707,http://purl.obolibrary.org/obo/GO_0019707,protein-cysteine S-acyltransferase activity +15.0089383,GO:0019731,http://purl.obolibrary.org/obo/GO_0019731,antibacterial humoral response +15.0089383,GO:0020022,http://purl.obolibrary.org/obo/GO_0020022,acidocalcisome +15.0089383,GO:0021510,http://purl.obolibrary.org/obo/GO_0021510,spinal cord development +15.0089383,GO:0021985,http://purl.obolibrary.org/obo/GO_0021985,neurohypophysis development +15.0089383,GO:0022605,http://purl.obolibrary.org/obo/GO_0022605,mammalian oogenesis stage +15.0089383,GO:0022851,http://purl.obolibrary.org/obo/GO_0022851,GABA-gated chloride ion channel activity +15.0089383,GO:0030272,http://purl.obolibrary.org/obo/GO_0030272,5-formyltetrahydrofolate cyclo-ligase activity +15.0089383,GO:0030505,http://purl.obolibrary.org/obo/GO_0030505,inorganic diphosphate transport +15.0089383,GO:0030903,http://purl.obolibrary.org/obo/GO_0030903,notochord development +15.0089383,GO:0030910,http://purl.obolibrary.org/obo/GO_0030910,olfactory placode formation +15.0089383,GO:0030917,http://purl.obolibrary.org/obo/GO_0030917,midbrain-hindbrain boundary development +15.0089383,GO:0031002,http://purl.obolibrary.org/obo/GO_0031002,actin rod +15.0089383,GO:0031091,http://purl.obolibrary.org/obo/GO_0031091,platelet alpha granule +15.0089383,GO:0031213,http://purl.obolibrary.org/obo/GO_0031213,RSF complex +15.0089383,GO:0032331,http://purl.obolibrary.org/obo/GO_0032331,negative regulation of chondrocyte differentiation +15.0089383,GO:0032616,http://purl.obolibrary.org/obo/GO_0032616,interleukin-13 production +15.0089383,GO:0032621,http://purl.obolibrary.org/obo/GO_0032621,interleukin-18 production +15.0089383,GO:0032689,http://purl.obolibrary.org/obo/GO_0032689,negative regulation of interferon-gamma production +15.0089383,GO:0032722,http://purl.obolibrary.org/obo/GO_0032722,positive regulation of chemokine production +15.0089383,GO:0032743,http://purl.obolibrary.org/obo/GO_0032743,positive regulation of interleukin-2 production +15.0089383,GO:0032760,http://purl.obolibrary.org/obo/GO_0032760,positive regulation of tumor necrosis factor production +15.0089383,GO:0032770,http://purl.obolibrary.org/obo/GO_0032770,positive regulation of monooxygenase activity +15.0089383,GO:0032777,http://purl.obolibrary.org/obo/GO_0032777,Piccolo NuA4 histone acetyltransferase complex +15.0089383,GO:0032781,http://purl.obolibrary.org/obo/GO_0032781,positive regulation of ATPase activity +15.0089383,GO:0032823,http://purl.obolibrary.org/obo/GO_0032823,regulation of natural killer cell differentiation +15.0089383,GO:0032874,http://purl.obolibrary.org/obo/GO_0032874,positive regulation of stress-activated MAPK cascade +15.0089383,GO:0032903,http://purl.obolibrary.org/obo/GO_0032903,regulation of nerve growth factor production +15.0089383,GO:0032906,http://purl.obolibrary.org/obo/GO_0032906,transforming growth factor beta2 production +15.0089383,GO:0033103,http://purl.obolibrary.org/obo/GO_0033103,protein secretion by the type VI secretion system +15.0089383,GO:0033131,http://purl.obolibrary.org/obo/GO_0033131,regulation of glucokinase activity +15.0089383,GO:0033152,http://purl.obolibrary.org/obo/GO_0033152,immunoglobulin V(D)J recombination +15.0089383,GO:0033153,http://purl.obolibrary.org/obo/GO_0033153,T cell receptor V(D)J recombination +15.0089383,GO:0033167,http://purl.obolibrary.org/obo/GO_0033167,ARC complex +15.0089383,GO:0033173,http://purl.obolibrary.org/obo/GO_0033173,calcineurin-NFAT signaling cascade +15.0089383,GO:0033188,http://purl.obolibrary.org/obo/GO_0033188,sphingomyelin synthase activity +15.0089383,GO:0033209,http://purl.obolibrary.org/obo/GO_0033209,tumor necrosis factor-mediated signaling pathway +15.0089383,GO:0033216,http://purl.obolibrary.org/obo/GO_0033216,none +15.0089383,GO:0033240,http://purl.obolibrary.org/obo/GO_0033240,positive regulation of cellular amine metabolic process +15.0089383,GO:0033309,http://purl.obolibrary.org/obo/GO_0033309,SBF transcription complex +15.0089383,GO:0033520,http://purl.obolibrary.org/obo/GO_0033520,phytol biosynthetic process +15.0089383,GO:0033529,http://purl.obolibrary.org/obo/GO_0033529,raffinose biosynthetic process +15.0089383,GO:0033757,http://purl.obolibrary.org/obo/GO_0033757,glucoside 3-dehydrogenase activity +15.0089383,GO:0034036,http://purl.obolibrary.org/obo/GO_0034036,purine ribonucleoside bisphosphate biosynthetic process +15.0089383,GO:0034058,http://purl.obolibrary.org/obo/GO_0034058,endosomal vesicle fusion +15.0089383,GO:0034274,http://purl.obolibrary.org/obo/GO_0034274,Atg12-Atg5-Atg16 complex +15.0089383,GO:0034663,http://purl.obolibrary.org/obo/GO_0034663,endoplasmic reticulum chaperone complex +15.0089383,GO:0034770,http://purl.obolibrary.org/obo/GO_0034770,histone H4-K20 methylation +15.0089383,GO:0035264,http://purl.obolibrary.org/obo/GO_0035264,multicellular organism growth +15.0089383,GO:0035405,http://purl.obolibrary.org/obo/GO_0035405,histone-threonine phosphorylation +15.0089383,GO:0035747,http://purl.obolibrary.org/obo/GO_0035747,natural killer cell chemotaxis +15.0089383,GO:0035823,http://purl.obolibrary.org/obo/GO_0035823,short tract gene conversion +15.0089383,GO:0036229,http://purl.obolibrary.org/obo/GO_0036229,none +15.0089383,GO:0036287,http://purl.obolibrary.org/obo/GO_0036287,response to iloperidone +15.0089383,GO:0036368,http://purl.obolibrary.org/obo/GO_0036368,cone photoresponse recovery +15.0089383,GO:0036370,http://purl.obolibrary.org/obo/GO_0036370,D-alanyl carrier activity +15.0089383,GO:0038134,http://purl.obolibrary.org/obo/GO_0038134,ERBB2-EGFR signaling pathway +15.0089383,GO:0038162,http://purl.obolibrary.org/obo/GO_0038162,erythropoietin-mediated signaling pathway +15.0089383,GO:0042124,http://purl.obolibrary.org/obo/GO_0042124,"1,3-beta-glucanosyltransferase activity" +15.0089383,GO:0042149,http://purl.obolibrary.org/obo/GO_0042149,cellular response to glucose starvation +15.0089383,GO:0042385,http://purl.obolibrary.org/obo/GO_0042385,myosin III complex +15.0089383,GO:0042389,http://purl.obolibrary.org/obo/GO_0042389,omega-3 fatty acid desaturase activity +15.0089383,GO:0042491,http://purl.obolibrary.org/obo/GO_0042491,inner ear auditory receptor cell differentiation +15.0089383,GO:0042654,http://purl.obolibrary.org/obo/GO_0042654,ecdysis-triggering hormone receptor activity +15.0089383,GO:0042925,http://purl.obolibrary.org/obo/GO_0042925,benzoate transmembrane transporter activity +15.0089383,GO:0042941,http://purl.obolibrary.org/obo/GO_0042941,D-alanine transport +15.0089383,GO:0043102,http://purl.obolibrary.org/obo/GO_0043102,amino acid salvage +15.0089383,GO:0043154,http://purl.obolibrary.org/obo/GO_0043154,negative regulation of cysteine-type endopeptidase activity involved in apoptotic process +15.0089383,GO:0043160,http://purl.obolibrary.org/obo/GO_0043160,acrosomal lumen +15.0089383,GO:0043282,http://purl.obolibrary.org/obo/GO_0043282,pharyngeal muscle development +15.0089383,GO:0043326,http://purl.obolibrary.org/obo/GO_0043326,chemotaxis to folate +15.0089383,GO:0043388,http://purl.obolibrary.org/obo/GO_0043388,positive regulation of DNA binding +15.0089383,GO:0043448,http://purl.obolibrary.org/obo/GO_0043448,alkane catabolic process +15.0089383,GO:0043507,http://purl.obolibrary.org/obo/GO_0043507,positive regulation of JUN kinase activity +15.0089383,GO:0043551,http://purl.obolibrary.org/obo/GO_0043551,regulation of phosphatidylinositol 3-kinase activity +15.0089383,GO:0043752,http://purl.obolibrary.org/obo/GO_0043752,adenosylcobinamide kinase activity +15.0089383,GO:0043812,http://purl.obolibrary.org/obo/GO_0043812,phosphatidylinositol-4-phosphate phosphatase activity +15.0089383,GO:0043820,http://purl.obolibrary.org/obo/GO_0043820,propionyl-CoA dehydrogenase activity +15.0089383,GO:0043834,http://purl.obolibrary.org/obo/GO_0043834,trimethylamine methyltransferase activity +15.0089383,GO:0044331,http://purl.obolibrary.org/obo/GO_0044331,cell-cell adhesion mediated by cadherin +15.0089383,GO:0044375,http://purl.obolibrary.org/obo/GO_0044375,regulation of peroxisome size +15.0089383,GO:0044809,http://purl.obolibrary.org/obo/GO_0044809,chemokine (C-C motif) ligand 17 production +15.0089383,GO:0045009,http://purl.obolibrary.org/obo/GO_0045009,chitosome +15.0089383,GO:0045118,http://purl.obolibrary.org/obo/GO_0045118,none +15.0089383,GO:0045476,http://purl.obolibrary.org/obo/GO_0045476,nurse cell apoptotic process +15.0089383,GO:0045508,http://purl.obolibrary.org/obo/GO_0045508,interleukin-26 receptor activity +15.0089383,GO:0045578,http://purl.obolibrary.org/obo/GO_0045578,negative regulation of B cell differentiation +15.0089383,GO:0045662,http://purl.obolibrary.org/obo/GO_0045662,negative regulation of myoblast differentiation +15.0089383,GO:0045919,http://purl.obolibrary.org/obo/GO_0045919,positive regulation of cytolysis +15.0089383,GO:0045932,http://purl.obolibrary.org/obo/GO_0045932,negative regulation of muscle contraction +15.0089383,GO:0045940,http://purl.obolibrary.org/obo/GO_0045940,positive regulation of steroid metabolic process +15.0089383,GO:0045986,http://purl.obolibrary.org/obo/GO_0045986,negative regulation of smooth muscle contraction +15.0089383,GO:0046092,http://purl.obolibrary.org/obo/GO_0046092,deoxycytidine metabolic process +15.0089383,GO:0046103,http://purl.obolibrary.org/obo/GO_0046103,inosine biosynthetic process +15.0089383,GO:0046330,http://purl.obolibrary.org/obo/GO_0046330,positive regulation of JNK cascade +15.0089383,GO:0046451,http://purl.obolibrary.org/obo/GO_0046451,diaminopimelate metabolic process +15.0089383,GO:0046578,http://purl.obolibrary.org/obo/GO_0046578,regulation of Ras protein signal transduction +15.0089383,GO:0046753,http://purl.obolibrary.org/obo/GO_0046753,non-lytic viral release +15.0089383,GO:0046962,http://purl.obolibrary.org/obo/GO_0046962,"sodium-transporting ATPase activity, rotational mechanism" +15.0089383,GO:0047017,http://purl.obolibrary.org/obo/GO_0047017,prostaglandin-F synthase activity +15.0089383,GO:0047115,http://purl.obolibrary.org/obo/GO_0047115,"trans-1,2-dihydrobenzene-1,2-diol dehydrogenase activity" +15.0089383,GO:0047198,http://purl.obolibrary.org/obo/GO_0047198,cysteine-S-conjugate N-acetyltransferase activity +15.0089383,GO:0047343,http://purl.obolibrary.org/obo/GO_0047343,glucose-1-phosphate cytidylyltransferase activity +15.0089383,GO:0047437,http://purl.obolibrary.org/obo/GO_0047437,4-oxalocrotonate decarboxylase activity +15.0089383,GO:0047667,http://purl.obolibrary.org/obo/GO_0047667,AMP-thymidine kinase activity +15.0089383,GO:0047668,http://purl.obolibrary.org/obo/GO_0047668,amygdalin beta-glucosidase activity +15.0089383,GO:0047689,http://purl.obolibrary.org/obo/GO_0047689,aspartate racemase activity +15.0089383,GO:0047694,http://purl.obolibrary.org/obo/GO_0047694,barbiturase activity +15.0089383,GO:0047695,http://purl.obolibrary.org/obo/GO_0047695,benzoin aldolase activity +15.0089383,GO:0047719,http://purl.obolibrary.org/obo/GO_0047719,"indole 2,3-dioxygenase activity" +15.0089383,GO:0047730,http://purl.obolibrary.org/obo/GO_0047730,carnosine synthase activity +15.0089383,GO:0047745,http://purl.obolibrary.org/obo/GO_0047745,chlorogenate hydrolase activity +15.0089383,GO:0047880,http://purl.obolibrary.org/obo/GO_0047880,erythrulose reductase activity +15.0089383,GO:0048257,http://purl.obolibrary.org/obo/GO_0048257,3'-flap endonuclease activity +15.0089383,GO:0048535,http://purl.obolibrary.org/obo/GO_0048535,lymph node development +15.0089383,GO:0048627,http://purl.obolibrary.org/obo/GO_0048627,myoblast development +15.0089383,GO:0048820,http://purl.obolibrary.org/obo/GO_0048820,hair follicle maturation +15.0089383,GO:0050004,http://purl.obolibrary.org/obo/GO_0050004,isoflavone 7-O-glucosyltransferase activity +15.0089383,GO:0050076,http://purl.obolibrary.org/obo/GO_0050076,maleate isomerase activity +15.0089383,GO:0050084,http://purl.obolibrary.org/obo/GO_0050084,mannitol-1-phosphatase activity +15.0089383,GO:0050088,http://purl.obolibrary.org/obo/GO_0050088,mannose-6-phosphate 6-reductase activity +15.0089383,GO:0050140,http://purl.obolibrary.org/obo/GO_0050140,nitrate reductase (cytochrome) activity +15.0089383,GO:0050219,http://purl.obolibrary.org/obo/GO_0050219,prostaglandin-A1 delta-isomerase activity +15.0089383,GO:0050302,http://purl.obolibrary.org/obo/GO_0050302,indole-3-acetaldehyde oxidase activity +15.0089383,GO:0050310,http://purl.obolibrary.org/obo/GO_0050310,sulfite dehydrogenase activity +15.0089383,GO:0050322,http://purl.obolibrary.org/obo/GO_0050322,taurine-2-oxoglutarate transaminase activity +15.0089383,GO:0050360,http://purl.obolibrary.org/obo/GO_0050360,tryptophan 2'-dioxygenase activity +15.0089383,GO:0050428,http://purl.obolibrary.org/obo/GO_0050428,3'-phosphoadenosine 5'-phosphosulfate biosynthetic process +15.0089383,GO:0050465,http://purl.obolibrary.org/obo/GO_0050465,nitroquinoline-N-oxide reductase activity +15.0089383,GO:0050470,http://purl.obolibrary.org/obo/GO_0050470,trimethylamine dehydrogenase activity +15.0089383,GO:0050484,http://purl.obolibrary.org/obo/GO_0050484,GMP 5'-nucleotidase activity +15.0089383,GO:0050501,http://purl.obolibrary.org/obo/GO_0050501,hyaluronan synthase activity +15.0089383,GO:0050566,http://purl.obolibrary.org/obo/GO_0050566,asparaginyl-tRNA synthase (glutamine-hydrolyzing) activity +15.0089383,GO:0050584,http://purl.obolibrary.org/obo/GO_0050584,linoleate 11-lipoxygenase activity +15.0089383,GO:0050590,http://purl.obolibrary.org/obo/GO_0050590,desacetoxyvindoline 4-hydroxylase activity +15.0089383,GO:0050643,http://purl.obolibrary.org/obo/GO_0050643,10-deacetylbaccatin III 10-O-acetyltransferase activity +15.0089383,GO:0050847,http://purl.obolibrary.org/obo/GO_0050847,progesterone receptor signaling pathway +15.0089383,GO:0050854,http://purl.obolibrary.org/obo/GO_0050854,regulation of antigen receptor-mediated signaling pathway +15.0089383,GO:0051013,http://purl.obolibrary.org/obo/GO_0051013,microtubule severing +15.0089383,GO:0051029,http://purl.obolibrary.org/obo/GO_0051029,rRNA transport +15.0089383,GO:0051208,http://purl.obolibrary.org/obo/GO_0051208,sequestering of calcium ion +15.0089383,GO:0051299,http://purl.obolibrary.org/obo/GO_0051299,centrosome separation +15.0089383,GO:0051307,http://purl.obolibrary.org/obo/GO_0051307,meiotic chromosome separation +15.0089383,GO:0051472,http://purl.obolibrary.org/obo/GO_0051472,glucosylglycerol metabolic process +15.0089383,GO:0051621,http://purl.obolibrary.org/obo/GO_0051621,regulation of norepinephrine uptake +15.0089383,GO:0051664,http://purl.obolibrary.org/obo/GO_0051664,nuclear pore localization +15.0089383,GO:0051669,http://purl.obolibrary.org/obo/GO_0051669,fructan beta-fructosidase activity +15.0089383,GO:0051930,http://purl.obolibrary.org/obo/GO_0051930,regulation of sensory perception of pain +15.0089383,GO:0051940,http://purl.obolibrary.org/obo/GO_0051940,regulation of catecholamine uptake involved in synaptic transmission +15.0089383,GO:0051977,http://purl.obolibrary.org/obo/GO_0051977,lysophospholipid transport +15.0089383,GO:0052729,http://purl.obolibrary.org/obo/GO_0052729,dimethylglycine N-methyltransferase activity +15.0089383,GO:0055006,http://purl.obolibrary.org/obo/GO_0055006,cardiac cell development +15.0089383,GO:0055064,http://purl.obolibrary.org/obo/GO_0055064,chloride ion homeostasis +15.0089383,GO:0060034,http://purl.obolibrary.org/obo/GO_0060034,notochord cell differentiation +15.0089383,GO:0060129,http://purl.obolibrary.org/obo/GO_0060129,thyroid-stimulating hormone-secreting cell differentiation +15.0089383,GO:0060423,http://purl.obolibrary.org/obo/GO_0060423,foregut regionalization +15.0089383,GO:0060424,http://purl.obolibrary.org/obo/GO_0060424,lung field specification +15.0089383,GO:0061036,http://purl.obolibrary.org/obo/GO_0061036,positive regulation of cartilage development +15.0089383,GO:0061068,http://purl.obolibrary.org/obo/GO_0061068,urethra development +15.0089383,GO:0061326,http://purl.obolibrary.org/obo/GO_0061326,renal tubule development +15.0089383,GO:0061462,http://purl.obolibrary.org/obo/GO_0061462,protein localization to lysosome +15.0089383,GO:0061587,http://purl.obolibrary.org/obo/GO_0061587,transfer RNA gene-mediated silencing +15.0089383,GO:0061653,http://purl.obolibrary.org/obo/GO_0061653,ISG15 conjugating enzyme activity +15.0089383,GO:0061663,http://purl.obolibrary.org/obo/GO_0061663,NEDD8 ligase activity +15.0089383,GO:0061709,http://purl.obolibrary.org/obo/GO_0061709,reticulophagy +15.0089383,GO:0061718,http://purl.obolibrary.org/obo/GO_0061718,glucose catabolic process to pyruvate +15.0089383,GO:0070138,http://purl.obolibrary.org/obo/GO_0070138,ubiquitin-like protein-specific isopeptidase activity +15.0089383,GO:0070140,http://purl.obolibrary.org/obo/GO_0070140,SUMO-specific isopeptidase activity +15.0089383,GO:0070297,http://purl.obolibrary.org/obo/GO_0070297,regulation of phosphorelay signal transduction system +15.0089383,GO:0070304,http://purl.obolibrary.org/obo/GO_0070304,positive regulation of stress-activated protein kinase signaling cascade +15.0089383,GO:0070500,http://purl.obolibrary.org/obo/GO_0070500,poly-gamma-glutamate metabolic process +15.0089383,GO:0070627,http://purl.obolibrary.org/obo/GO_0070627,none +15.0089383,GO:0070685,http://purl.obolibrary.org/obo/GO_0070685,macropinocytic cup +15.0089383,GO:0070825,http://purl.obolibrary.org/obo/GO_0070825,micropyle +15.0089383,GO:0071027,http://purl.obolibrary.org/obo/GO_0071027,nuclear RNA surveillance +15.0089383,GO:0071300,http://purl.obolibrary.org/obo/GO_0071300,cellular response to retinoic acid +15.0089383,GO:0071383,http://purl.obolibrary.org/obo/GO_0071383,cellular response to steroid hormone stimulus +15.0089383,GO:0071433,http://purl.obolibrary.org/obo/GO_0071433,cell wall repair +15.0089383,GO:0071457,http://purl.obolibrary.org/obo/GO_0071457,cellular response to ozone +15.0089383,GO:0071462,http://purl.obolibrary.org/obo/GO_0071462,cellular response to water stimulus +15.0089383,GO:0071750,http://purl.obolibrary.org/obo/GO_0071750,dimeric IgA immunoglobulin complex +15.0089383,GO:0071756,http://purl.obolibrary.org/obo/GO_0071756,pentameric IgM immunoglobulin complex +15.0089383,GO:0072023,http://purl.obolibrary.org/obo/GO_0072023,thick ascending limb development +15.0089383,GO:0072080,http://purl.obolibrary.org/obo/GO_0072080,nephron tubule development +15.0089383,GO:0072114,http://purl.obolibrary.org/obo/GO_0072114,pronephros morphogenesis +15.0089383,GO:0072535,http://purl.obolibrary.org/obo/GO_0072535,tumor necrosis factor (ligand) superfamily member 11 production +15.0089383,GO:0072567,http://purl.obolibrary.org/obo/GO_0072567,chemokine (C-X-C motif) ligand 2 production +15.0089383,GO:0072623,http://purl.obolibrary.org/obo/GO_0072623,none +15.0089383,GO:0072691,http://purl.obolibrary.org/obo/GO_0072691,none +15.0089383,GO:0072703,http://purl.obolibrary.org/obo/GO_0072703,cellular response to methyl methanesulfonate +15.0089383,GO:0072712,http://purl.obolibrary.org/obo/GO_0072712,response to thiabendazole +15.0089383,GO:0075528,http://purl.obolibrary.org/obo/GO_0075528,modulation by virus of host immune response +15.0089383,GO:0080093,http://purl.obolibrary.org/obo/GO_0080093,regulation of photorespiration +15.0089383,GO:0080160,http://purl.obolibrary.org/obo/GO_0080160,selenate transport +15.0089383,GO:0089700,http://purl.obolibrary.org/obo/GO_0089700,protein kinase D signaling +15.0089383,GO:0090504,http://purl.obolibrary.org/obo/GO_0090504,epiboly +15.0089383,GO:0090538,http://purl.obolibrary.org/obo/GO_0090538,peptide pheromone secretion +15.0089383,GO:0090540,http://purl.obolibrary.org/obo/GO_0090540,bacterial cellulose biosynthetic process +15.0089383,GO:0090547,http://purl.obolibrary.org/obo/GO_0090547,response to low humidity +15.0089383,GO:0090662,http://purl.obolibrary.org/obo/GO_0090662,none +15.0089383,GO:0090693,http://purl.obolibrary.org/obo/GO_0090693,plant organ senescence +15.0089383,GO:0097084,http://purl.obolibrary.org/obo/GO_0097084,vascular associated smooth muscle cell development +15.0089383,GO:0097286,http://purl.obolibrary.org/obo/GO_0097286,none +15.0089383,GO:0097363,http://purl.obolibrary.org/obo/GO_0097363,protein O-GlcNAc transferase activity +15.0089383,GO:0097456,http://purl.obolibrary.org/obo/GO_0097456,terminal loop +15.0089383,GO:0097505,http://purl.obolibrary.org/obo/GO_0097505,Rad6-Rad18 complex +15.0089383,GO:0097545,http://purl.obolibrary.org/obo/GO_0097545,axonemal outer doublet +15.0089383,GO:0097720,http://purl.obolibrary.org/obo/GO_0097720,calcineurin-mediated signaling +15.0089383,GO:0098830,http://purl.obolibrary.org/obo/GO_0098830,presynaptic endosome +15.0089383,GO:0099095,http://purl.obolibrary.org/obo/GO_0099095,ligand-gated anion channel activity +15.0089383,GO:0099535,http://purl.obolibrary.org/obo/GO_0099535,synapse-associated extracellular matrix +15.0089383,GO:0150065,http://purl.obolibrary.org/obo/GO_0150065,regulation of deacetylase activity +15.0089383,GO:1900618,http://purl.obolibrary.org/obo/GO_1900618,regulation of shoot system morphogenesis +15.0089383,GO:1900683,http://purl.obolibrary.org/obo/GO_1900683,regulation of fumonisin biosynthetic process +15.0089383,GO:1900986,http://purl.obolibrary.org/obo/GO_1900986,ajmaline metabolic process +15.0089383,GO:1901143,http://purl.obolibrary.org/obo/GO_1901143,insulin catabolic process +15.0089383,GO:1901201,http://purl.obolibrary.org/obo/GO_1901201,regulation of extracellular matrix assembly +15.0089383,GO:1901275,http://purl.obolibrary.org/obo/GO_1901275,tartrate metabolic process +15.0089383,GO:1901304,http://purl.obolibrary.org/obo/GO_1901304,regulation of spermidine biosynthetic process +15.0089383,GO:1901403,http://purl.obolibrary.org/obo/GO_1901403,positive regulation of tetrapyrrole metabolic process +15.0089383,GO:1901494,http://purl.obolibrary.org/obo/GO_1901494,regulation of cysteine metabolic process +15.0089383,GO:1901589,http://purl.obolibrary.org/obo/GO_1901589,axon microtubule bundle +15.0089383,GO:1901705,http://purl.obolibrary.org/obo/GO_1901705,L-isoleucine biosynthetic process +15.0089383,GO:1901725,http://purl.obolibrary.org/obo/GO_1901725,regulation of histone deacetylase activity +15.0089383,GO:1901751,http://purl.obolibrary.org/obo/GO_1901751,leukotriene A4 metabolic process +15.0089383,GO:1901984,http://purl.obolibrary.org/obo/GO_1901984,negative regulation of protein acetylation +15.0089383,GO:1902170,http://purl.obolibrary.org/obo/GO_1902170,cellular response to reactive nitrogen species +15.0089383,GO:1902325,http://purl.obolibrary.org/obo/GO_1902325,negative regulation of chlorophyll biosynthetic process +15.0089383,GO:1902347,http://purl.obolibrary.org/obo/GO_1902347,response to strigolactone +15.0089383,GO:1902414,http://purl.obolibrary.org/obo/GO_1902414,protein localization to cell junction +15.0089383,GO:1902593,http://purl.obolibrary.org/obo/GO_1902593,none +15.0089383,GO:1902692,http://purl.obolibrary.org/obo/GO_1902692,regulation of neuroblast proliferation +15.0089383,GO:1902742,http://purl.obolibrary.org/obo/GO_1902742,apoptotic process involved in development +15.0089383,GO:1902769,http://purl.obolibrary.org/obo/GO_1902769,regulation of choline O-acetyltransferase activity +15.0089383,GO:1902931,http://purl.obolibrary.org/obo/GO_1902931,negative regulation of alcohol biosynthetic process +15.0089383,GO:1903523,http://purl.obolibrary.org/obo/GO_1903523,negative regulation of blood circulation +15.0089383,GO:1903557,http://purl.obolibrary.org/obo/GO_1903557,positive regulation of tumor necrosis factor superfamily cytokine production +15.0089383,GO:1903599,http://purl.obolibrary.org/obo/GO_1903599,positive regulation of autophagy of mitochondrion +15.0089383,GO:1903618,http://purl.obolibrary.org/obo/GO_1903618,regulation of transdifferentiation +15.0089383,GO:1903702,http://purl.obolibrary.org/obo/GO_1903702,esophagus development +15.0089383,GO:1903728,http://purl.obolibrary.org/obo/GO_1903728,luteal cell differentiation +15.0089383,GO:1903959,http://purl.obolibrary.org/obo/GO_1903959,regulation of anion transmembrane transport +15.0089383,GO:1904010,http://purl.obolibrary.org/obo/GO_1904010,response to Aroclor 1254 +15.0089383,GO:1904252,http://purl.obolibrary.org/obo/GO_1904252,negative regulation of bile acid metabolic process +15.0089383,GO:1904359,http://purl.obolibrary.org/obo/GO_1904359,regulation of spore germination +15.0089383,GO:1904421,http://purl.obolibrary.org/obo/GO_1904421,response to D-galactosamine +15.0089383,GO:1904468,http://purl.obolibrary.org/obo/GO_1904468,none +15.0089383,GO:1904621,http://purl.obolibrary.org/obo/GO_1904621,none +15.0089383,GO:1990090,http://purl.obolibrary.org/obo/GO_1990090,cellular response to nerve growth factor stimulus +15.0089383,GO:1990148,http://purl.obolibrary.org/obo/GO_1990148,glutamate dehydrogenase complex +15.0089383,GO:1990846,http://purl.obolibrary.org/obo/GO_1990846,ribonucleoside-diphosphate reductase inhibitor activity +15.0089383,GO:2000029,http://purl.obolibrary.org/obo/GO_2000029,regulation of proanthocyanidin biosynthetic process +15.0089383,GO:2000117,http://purl.obolibrary.org/obo/GO_2000117,negative regulation of cysteine-type endopeptidase activity +15.0089383,GO:2000374,http://purl.obolibrary.org/obo/GO_2000374,regulation of oxygen metabolic process +15.0089383,GO:2000379,http://purl.obolibrary.org/obo/GO_2000379,positive regulation of reactive oxygen species metabolic process +15.0089383,GO:2000765,http://purl.obolibrary.org/obo/GO_2000765,regulation of cytoplasmic translation +15.0089383,GO:2000810,http://purl.obolibrary.org/obo/GO_2000810,regulation of bicellular tight junction assembly +15.0089383,GO:2000861,http://purl.obolibrary.org/obo/GO_2000861,regulation of estrogen secretion +15.0089383,GO:2001276,http://purl.obolibrary.org/obo/GO_2001276,regulation of leucine biosynthetic process +15.0089383,HP:0000243,http://purl.obolibrary.org/obo/HP_0000243,Trigonocephaly +15.0089383,HP:0000275,http://purl.obolibrary.org/obo/HP_0000275,Narrow face +15.0089383,HP:0000282,http://purl.obolibrary.org/obo/HP_0000282,Facial edema +15.0089383,HP:0000593,http://purl.obolibrary.org/obo/HP_0000593,Abnormal anterior chamber morphology +15.0089383,HP:0000787,http://purl.obolibrary.org/obo/HP_0000787,Nephrolithiasis +15.0089383,HP:0000967,http://purl.obolibrary.org/obo/HP_0000967,Petechiae +15.0089383,HP:0001363,http://purl.obolibrary.org/obo/HP_0001363,Craniosynostosis +15.0089383,HP:0001428,http://purl.obolibrary.org/obo/HP_0001428,Somatic mutation +15.0089383,HP:0001562,http://purl.obolibrary.org/obo/HP_0001562,Oligohydramnios +15.0089383,HP:0002024,http://purl.obolibrary.org/obo/HP_0002024,Malabsorption +15.0089383,HP:0002244,http://purl.obolibrary.org/obo/HP_0002244,Abnormality of the small intestine +15.0089383,HP:0002343,http://purl.obolibrary.org/obo/HP_0002343,Normal pressure hydrocephalus +15.0089383,HP:0002591,http://purl.obolibrary.org/obo/HP_0002591,Polyphagia +15.0089383,HP:0002686,http://purl.obolibrary.org/obo/HP_0002686,Prenatal maternal abnormality +15.0089383,HP:0002902,http://purl.obolibrary.org/obo/HP_0002902,Hyponatremia +15.0089383,HP:0006766,http://purl.obolibrary.org/obo/HP_0006766,Papillary renal cell carcinoma +15.0089383,HP:0007754,http://purl.obolibrary.org/obo/HP_0007754,Macular dystrophy +15.0089383,HP:0007906,http://purl.obolibrary.org/obo/HP_0007906,Ocular hypertension +15.0089383,HP:0008209,http://purl.obolibrary.org/obo/HP_0008209,Premature ovarian insufficiency +15.0089383,HP:0009919,http://purl.obolibrary.org/obo/HP_0009919,Retinoblastoma +15.0089383,HP:0012032,http://purl.obolibrary.org/obo/HP_0012032,Lipoma +15.0089383,HP:0012469,http://purl.obolibrary.org/obo/HP_0012469,Infantile spasms +15.0089383,HP:0012829,http://purl.obolibrary.org/obo/HP_0012829,Profound +15.0089383,HP:0025356,http://purl.obolibrary.org/obo/HP_0025356,Psychomotor retardation +15.0089383,HP:0030065,http://purl.obolibrary.org/obo/HP_0030065,Primitive neuroectodermal tumor +15.0089383,HP:0031365,http://purl.obolibrary.org/obo/HP_0031365,Macular purpura +15.0089383,HP:0100006,http://purl.obolibrary.org/obo/HP_0100006,Neoplasm of the central nervous system +15.0089383,HP:0100243,http://purl.obolibrary.org/obo/HP_0100243,Leiomyosarcoma +15.0089383,HP:0100245,http://purl.obolibrary.org/obo/HP_0100245,Desmoid tumors +15.0089383,HP:0100511,http://purl.obolibrary.org/obo/HP_0100511,Abnormality of vitamin D metabolism +15.0089383,HP:0100512,http://purl.obolibrary.org/obo/HP_0100512,Low levels of vitamin D +15.0089383,HP:0100603,http://purl.obolibrary.org/obo/HP_0100603,Toxemia of pregnancy +15.0089383,HP:0100697,http://purl.obolibrary.org/obo/HP_0100697,Neurofibrosarcoma +15.0089383,HP:0200040,http://purl.obolibrary.org/obo/HP_0200040,Epidermoid cyst +15.0089383,MONDO:0000155,http://purl.obolibrary.org/obo/MONDO_0000155,triglyceride storage disease +15.0089383,MONDO:0000218,http://purl.obolibrary.org/obo/MONDO_0000218,preimplantation embryonic lethality +15.0089383,MONDO:0000934,http://purl.obolibrary.org/obo/MONDO_0000934,laryngeal leiomyoma +15.0089383,MONDO:0001181,http://purl.obolibrary.org/obo/MONDO_0001181,secondary corneal edema +15.0089383,MONDO:0001317,http://purl.obolibrary.org/obo/MONDO_0001317,phlyctenulosis +15.0089383,MONDO:0001491,http://purl.obolibrary.org/obo/MONDO_0001491,cough variant asthma +15.0089383,MONDO:0001803,http://purl.obolibrary.org/obo/MONDO_0001803,myringitis bullosa hemorrhagica +15.0089383,MONDO:0001905,http://purl.obolibrary.org/obo/MONDO_0001905,bicipital tenosynovitis +15.0089383,MONDO:0002092,http://purl.obolibrary.org/obo/MONDO_0002092,small intestine leiomyoma +15.0089383,MONDO:0002190,http://purl.obolibrary.org/obo/MONDO_0002190,vulvar syringoma +15.0089383,MONDO:0002487,http://purl.obolibrary.org/obo/MONDO_0002487,breast granular cell tumor +15.0089383,MONDO:0002544,http://purl.obolibrary.org/obo/MONDO_0002544,brain oligodendroglioma +15.0089383,MONDO:0002666,http://purl.obolibrary.org/obo/MONDO_0002666,pancreatic signet ring cell adenocarcinoma +15.0089383,MONDO:0002685,http://purl.obolibrary.org/obo/MONDO_0002685,childhood choroid plexus carcinoma +15.0089383,MONDO:0002799,http://purl.obolibrary.org/obo/MONDO_0002799,nodular medulloblastoma +15.0089383,MONDO:0002853,http://purl.obolibrary.org/obo/MONDO_0002853,rectum rhabdomyosarcoma +15.0089383,MONDO:0002862,http://purl.obolibrary.org/obo/MONDO_0002862,bile duct sarcoma +15.0089383,MONDO:0002878,http://purl.obolibrary.org/obo/MONDO_0002878,uterine corpus adenosarcoma +15.0089383,MONDO:0002957,http://purl.obolibrary.org/obo/MONDO_0002957,sarcomatoid basal cell carcinoma +15.0089383,MONDO:0002963,http://purl.obolibrary.org/obo/MONDO_0002963,acantholytic acanthoma +15.0089383,MONDO:0002968,http://purl.obolibrary.org/obo/MONDO_0002968,lymphocele +15.0089383,MONDO:0002981,http://purl.obolibrary.org/obo/MONDO_0002981,peripheral primitive neuroectodermal tumor of bone +15.0089383,MONDO:0003026,http://purl.obolibrary.org/obo/MONDO_0003026,gallbladder angiosarcoma +15.0089383,MONDO:0003091,http://purl.obolibrary.org/obo/MONDO_0003091,cutaneous mucoepidermoid carcinoma +15.0089383,MONDO:0003108,http://purl.obolibrary.org/obo/MONDO_0003108,cervicomedullary junction neoplasm +15.0089383,MONDO:0003253,http://purl.obolibrary.org/obo/MONDO_0003253,vulvar granular cell tumor +15.0089383,MONDO:0003297,http://purl.obolibrary.org/obo/MONDO_0003297,gallbladder leiomyoma +15.0089383,MONDO:0003348,http://purl.obolibrary.org/obo/MONDO_0003348,conventional leiomyosarcoma +15.0089383,MONDO:0003504,http://purl.obolibrary.org/obo/MONDO_0003504,anal canal neuroendocrine neoplasm +15.0089383,MONDO:0003644,http://purl.obolibrary.org/obo/MONDO_0003644,cavernous hemangioma of colon +15.0089383,MONDO:0003695,http://purl.obolibrary.org/obo/MONDO_0003695,ovarian clear cell adenofibroma +15.0089383,MONDO:0003744,http://purl.obolibrary.org/obo/MONDO_0003744,spindle cell intraocular melanoma +15.0089383,MONDO:0003775,http://purl.obolibrary.org/obo/MONDO_0003775,lateral ventricle meningioma +15.0089383,MONDO:0003811,http://purl.obolibrary.org/obo/MONDO_0003811,ovarian seromucinous tumor +15.0089383,MONDO:0003859,http://purl.obolibrary.org/obo/MONDO_0003859,bilateral meningioma of optic nerve +15.0089383,MONDO:0004004,http://purl.obolibrary.org/obo/MONDO_0004004,motor nerve neuritis +15.0089383,MONDO:0004078,http://purl.obolibrary.org/obo/MONDO_0004078,mucinous intrahepatic cholangiocarcinoma +15.0089383,MONDO:0004185,http://purl.obolibrary.org/obo/MONDO_0004185,ovarian serous cystadenofibroma +15.0089383,MONDO:0004255,http://purl.obolibrary.org/obo/MONDO_0004255,Wolffian adnexal tumor +15.0089383,MONDO:0004260,http://purl.obolibrary.org/obo/MONDO_0004260,peptic ulcer perforation +15.0089383,MONDO:0004364,http://purl.obolibrary.org/obo/MONDO_0004364,choroid necrotic melanoma +15.0089383,MONDO:0004435,http://purl.obolibrary.org/obo/MONDO_0004435,liver fibrosarcoma +15.0089383,MONDO:0004467,http://purl.obolibrary.org/obo/MONDO_0004467,mature gastric teratoma +15.0089383,MONDO:0004475,http://purl.obolibrary.org/obo/MONDO_0004475,thymus clear cell carcinoma +15.0089383,MONDO:0004520,http://purl.obolibrary.org/obo/MONDO_0004520,intratubular embryonal carcinoma +15.0089383,MONDO:0004548,http://purl.obolibrary.org/obo/MONDO_0004548,adult type testicular granulosa cell tumor +15.0089383,MONDO:0004649,http://purl.obolibrary.org/obo/MONDO_0004649,anaerobic pneumonia +15.0089383,MONDO:0004894,http://purl.obolibrary.org/obo/MONDO_0004894,cyclotropia +15.0089383,MONDO:0005438,http://purl.obolibrary.org/obo/MONDO_0005438,metastatic malignant neoplasm in the lymph nodes +15.0089383,MONDO:0005478,http://purl.obolibrary.org/obo/MONDO_0005478,torsades de pointes +15.0089383,MONDO:0005699,http://purl.obolibrary.org/obo/MONDO_0005699,cervicofacial actinomycosis +15.0089383,MONDO:0005800,http://purl.obolibrary.org/obo/MONDO_0005800,hordeolum +15.0089383,MONDO:0006021,http://purl.obolibrary.org/obo/MONDO_0006021,Prinzmetal angina +15.0089383,MONDO:0006128,http://purl.obolibrary.org/obo/MONDO_0006128,central nervous system anaplastic large cell lymphoma +15.0089383,MONDO:0006139,http://purl.obolibrary.org/obo/MONDO_0006139,cervical metaplasia +15.0089383,MONDO:0006339,http://purl.obolibrary.org/obo/MONDO_0006339,ovarian microcystic stromal tumor +15.0089383,MONDO:0006398,http://purl.obolibrary.org/obo/MONDO_0006398,retroperitoneal inflammatory myofibroblastic tumor +15.0089383,MONDO:0006405,http://purl.obolibrary.org/obo/MONDO_0006405,salivary gland small cell carcinoma +15.0089383,MONDO:0006429,http://purl.obolibrary.org/obo/MONDO_0006429,splenic hodgkin lymphoma +15.0089383,MONDO:0006698,http://purl.obolibrary.org/obo/MONDO_0006698,cholecystolithiasis +15.0089383,MONDO:0006947,http://purl.obolibrary.org/obo/MONDO_0006947,renovascular hypertension +15.0089383,MONDO:0006984,http://purl.obolibrary.org/obo/MONDO_0006984,subdural empyema +15.0089383,MONDO:0007093,http://purl.obolibrary.org/obo/MONDO_0007093,hypomaturation-hypoplastic amelogenesis imperfecta with taurodontism +15.0089383,MONDO:0007268,http://purl.obolibrary.org/obo/MONDO_0007268,hypertrophic cardiomyopathy 4 +15.0089383,MONDO:0007322,http://purl.obolibrary.org/obo/MONDO_0007322,"chondrodysplasia punctata, tibial-metacarpal type" +15.0089383,MONDO:0007453,http://purl.obolibrary.org/obo/MONDO_0007453,maturity-onset diabetes of the young type 2 +15.0089383,MONDO:0007552,http://purl.obolibrary.org/obo/MONDO_0007552,pretibial dystrophic epidermolysis bullosa +15.0089383,MONDO:0007764,http://purl.obolibrary.org/obo/MONDO_0007764,"autosomal dominant osteosclerosis, Worth type" +15.0089383,MONDO:0007792,http://purl.obolibrary.org/obo/MONDO_0007792,familial hypocalciuric hypercalcemia 2 +15.0089383,MONDO:0007895,http://purl.obolibrary.org/obo/MONDO_0007895,"platyspondylic dysplasia, Torrance type" +15.0089383,MONDO:0007916,http://purl.obolibrary.org/obo/MONDO_0007916,primary intestinal lymphangiectasia +15.0089383,MONDO:0008038,http://purl.obolibrary.org/obo/MONDO_0008038,ataxia-pancytopenia syndrome +15.0089383,MONDO:0008182,http://purl.obolibrary.org/obo/MONDO_0008182,nasopalpebral lipoma-coloboma syndrome +15.0089383,MONDO:0008217,http://purl.obolibrary.org/obo/MONDO_0008217,pelvis-shoulder dysplasia +15.0089383,MONDO:0008390,http://purl.obolibrary.org/obo/MONDO_0008390,Rombo syndrome +15.0089383,MONDO:0008554,http://purl.obolibrary.org/obo/MONDO_0008554,thrombocythemia 1 +15.0089383,MONDO:0008617,http://purl.obolibrary.org/obo/MONDO_0008617,inflammatory bowel disease 11 +15.0089383,MONDO:0008741,http://purl.obolibrary.org/obo/MONDO_0008741,PAGOD syndrome +15.0089383,MONDO:0008792,http://purl.obolibrary.org/obo/MONDO_0008792,familial angiolipomatosis +15.0089383,MONDO:0008872,http://purl.obolibrary.org/obo/MONDO_0008872,microcephalic osteodysplastic primordial dwarfism type II +15.0089383,MONDO:0009056,http://purl.obolibrary.org/obo/MONDO_0009056,cutis verticis gyrata and intellectual disability +15.0089383,MONDO:0009173,http://purl.obolibrary.org/obo/MONDO_0009173,congenital enteropathy due to enteropeptidase deficiency +15.0089383,MONDO:0009191,http://purl.obolibrary.org/obo/MONDO_0009191,Lowry-Wood syndrome +15.0089383,MONDO:0009274,http://purl.obolibrary.org/obo/MONDO_0009274,ghosal hematodiaphyseal dysplasia +15.0089383,MONDO:0009526,http://purl.obolibrary.org/obo/MONDO_0009526,"fibular aplasia, tibial campomelia, and oligosyndactyly syndrome" +15.0089383,MONDO:0009612,http://purl.obolibrary.org/obo/MONDO_0009612,methylmalonic aciduria due to methylmalonyl-CoA mutase deficiency +15.0089383,MONDO:0009720,http://purl.obolibrary.org/obo/MONDO_0009720,Keipert syndrome +15.0089383,MONDO:0009722,http://purl.obolibrary.org/obo/MONDO_0009722,Bailey-Bloch congenital myopathy +15.0089383,MONDO:0009760,http://purl.obolibrary.org/obo/MONDO_0009760,Norman-Roberts syndrome +15.0089383,MONDO:0009832,http://purl.obolibrary.org/obo/MONDO_0009832,pancreatic agenesis +15.0089383,MONDO:0009949,http://purl.obolibrary.org/obo/MONDO_0009949,pyruvate carboxylase deficiency disease +15.0089383,MONDO:0010024,http://purl.obolibrary.org/obo/MONDO_0010024,Beemer-Langer syndrome +15.0089383,MONDO:0010247,http://purl.obolibrary.org/obo/MONDO_0010247,X-linked cerebral adrenoleukodystrophy +15.0089383,MONDO:0010258,http://purl.obolibrary.org/obo/MONDO_0010258,MEHMO syndrome +15.0089383,MONDO:0010410,http://purl.obolibrary.org/obo/MONDO_0010410,"alopecia, androgenetic, 2" +15.0089383,MONDO:0010459,http://purl.obolibrary.org/obo/MONDO_0010459,amyotrophic lateral sclerosis type 15 +15.0089383,MONDO:0010566,http://purl.obolibrary.org/obo/MONDO_0010566,X-linked cone-rod dystrophy 1 +15.0089383,MONDO:0010571,http://purl.obolibrary.org/obo/MONDO_0010571,otopalatodigital syndrome type 2 +15.0089383,MONDO:0010689,http://purl.obolibrary.org/obo/MONDO_0010689,Charcot-Marie-Tooth disease X-linked recessive 4 +15.0089383,MONDO:0010730,http://purl.obolibrary.org/obo/MONDO_0010730,"combined immunodeficiency, X-linked" +15.0089383,MONDO:0010932,http://purl.obolibrary.org/obo/MONDO_0010932,progressive bifocal chorioretinal atrophy +15.0089383,MONDO:0010983,http://purl.obolibrary.org/obo/MONDO_0010983,dystonia 9 +15.0089383,MONDO:0011001,http://purl.obolibrary.org/obo/MONDO_0011001,Brugada syndrome 1 +15.0089383,MONDO:0011132,http://purl.obolibrary.org/obo/MONDO_0011132,"T-cell immunodeficiency, congenital alopecia, and nail dystrophy" +15.0089383,MONDO:0011211,http://purl.obolibrary.org/obo/MONDO_0011211,axial spondylometaphyseal dysplasia +15.0089383,MONDO:0011226,http://purl.obolibrary.org/obo/MONDO_0011226,autosomal dominant nonsyndromic deafness 15 +15.0089383,MONDO:0011243,http://purl.obolibrary.org/obo/MONDO_0011243,grange syndrome +15.0089383,MONDO:0011346,http://purl.obolibrary.org/obo/MONDO_0011346,xanthinuria type II +15.0089383,MONDO:0011383,http://purl.obolibrary.org/obo/MONDO_0011383,autoimmune lymphoproliferative syndrome type 2A +15.0089383,MONDO:0011398,http://purl.obolibrary.org/obo/MONDO_0011398,dystrophic epidermolysis bullosa pruriginosa +15.0089383,MONDO:0011424,http://purl.obolibrary.org/obo/MONDO_0011424,Carney triad +15.0089383,MONDO:0011536,http://purl.obolibrary.org/obo/MONDO_0011536,optic atrophy 4 +15.0089383,MONDO:0011605,http://purl.obolibrary.org/obo/MONDO_0011605,generalized basaloid follicular hamartoma syndrome +15.0089383,MONDO:0011608,http://purl.obolibrary.org/obo/MONDO_0011608,atopic dermatitis 5 +15.0089383,MONDO:0011661,http://purl.obolibrary.org/obo/MONDO_0011661,inflammatory bowel disease 5 +15.0089383,MONDO:0011699,http://purl.obolibrary.org/obo/MONDO_0011699,inflammatory bowel disease 8 +15.0089383,MONDO:0011883,http://purl.obolibrary.org/obo/MONDO_0011883,Curly hair - acral keratoderma - caries syndrome +15.0089383,MONDO:0011952,http://purl.obolibrary.org/obo/MONDO_0011952,amyotrophic lateral sclerosis type 7 +15.0089383,MONDO:0012081,http://purl.obolibrary.org/obo/MONDO_0012081,15q11q13 microduplication syndrome +15.0089383,MONDO:0012250,http://purl.obolibrary.org/obo/MONDO_0012250,Charcot-Marie-Tooth disease type 4H +15.0089383,MONDO:0012395,http://purl.obolibrary.org/obo/MONDO_0012395,cataract 18 +15.0089383,MONDO:0012489,http://purl.obolibrary.org/obo/MONDO_0012489,cataract 23 +15.0089383,MONDO:0012541,http://purl.obolibrary.org/obo/MONDO_0012541,"deafness with labyrinthine aplasia, microtia, and microdontia" +15.0089383,MONDO:0012588,http://purl.obolibrary.org/obo/MONDO_0012588,neuronal ceroid lipofuscinosis 7 +15.0089383,MONDO:0012804,http://purl.obolibrary.org/obo/MONDO_0012804,hypertrophic cardiomyopathy 12 +15.0089383,MONDO:0012837,http://purl.obolibrary.org/obo/MONDO_0012837,inflammatory bowel disease 15 +15.0089383,MONDO:0012887,http://purl.obolibrary.org/obo/MONDO_0012887,inflammatory bowel disease 23 +15.0089383,MONDO:0012930,http://purl.obolibrary.org/obo/MONDO_0012930,autosomal recessive severe congenital neutropenia due to G6PC3 deficiency +15.0089383,MONDO:0012945,http://purl.obolibrary.org/obo/MONDO_0012945,amyotrophic lateral sclerosis type 11 +15.0089383,MONDO:0012997,http://purl.obolibrary.org/obo/MONDO_0012997,cholestasis-pigmentary retinopathy-cleft palate syndrome +15.0089383,MONDO:0013000,http://purl.obolibrary.org/obo/MONDO_0013000,porphyria due to ALA dehydratase deficiency +15.0089383,MONDO:0013006,http://purl.obolibrary.org/obo/MONDO_0013006,isolated growth hormone deficiency type IB +15.0089383,MONDO:0013012,http://purl.obolibrary.org/obo/MONDO_0013012,inflammatory bowel disease 27 +15.0089383,MONDO:0013232,http://purl.obolibrary.org/obo/MONDO_0013232,"brachydactylous dwarfism, Mseleni type" +15.0089383,MONDO:0013369,http://purl.obolibrary.org/obo/MONDO_0013369,hypertrophic cardiomyopathy 7 +15.0089383,MONDO:0013523,http://purl.obolibrary.org/obo/MONDO_0013523,Nestor-Guillermo progeria syndrome +15.0089383,MONDO:0013894,http://purl.obolibrary.org/obo/MONDO_0013894,short stature-onychodysplasia-facial dysmorphism-hypotrichosis syndrome +15.0089383,MONDO:0014028,http://purl.obolibrary.org/obo/MONDO_0014028,distal arthrogryposis type 5D +15.0089383,MONDO:0014080,http://purl.obolibrary.org/obo/MONDO_0014080,osteosclerotic metaphyseal dysplasia +15.0089383,MONDO:0014487,http://purl.obolibrary.org/obo/MONDO_0014487,congenital sideroblastic anemia-B-cell immunodeficiency-periodic fever-developmental delay syndrome +15.0089383,MONDO:0014937,http://purl.obolibrary.org/obo/MONDO_0014937,aniridia 2 +15.0089383,MONDO:0015097,http://purl.obolibrary.org/obo/MONDO_0015097,aortic valve dysplasia +15.0089383,MONDO:0015177,http://purl.obolibrary.org/obo/MONDO_0015177,metaphyseal anadysplasia +15.0089383,MONDO:0015300,http://purl.obolibrary.org/obo/MONDO_0015300,cataract - microcornea syndrome +15.0089383,MONDO:0015377,http://purl.obolibrary.org/obo/MONDO_0015377,third branchial cleft anomaly +15.0089383,MONDO:0015450,http://purl.obolibrary.org/obo/MONDO_0015450,triatrial heart +15.0089383,MONDO:0016164,http://purl.obolibrary.org/obo/MONDO_0016164,herpetiform pemphigus +15.0089383,MONDO:0016283,http://purl.obolibrary.org/obo/MONDO_0016283,leiomyosarcoma of the cervix uteri +15.0089383,MONDO:0016647,http://purl.obolibrary.org/obo/MONDO_0016647,autosomal recessive Stickler syndrome +15.0089383,MONDO:0017154,http://purl.obolibrary.org/obo/MONDO_0017154,pulmonary arterial hypertension associated with portal hypertension +15.0089383,MONDO:0017317,http://purl.obolibrary.org/obo/MONDO_0017317,phakomatosis pigmentokeratotica +15.0089383,MONDO:0017357,http://purl.obolibrary.org/obo/MONDO_0017357,transient hyperammonemia of the newborn +15.0089383,MONDO:0017692,http://purl.obolibrary.org/obo/MONDO_0017692,generalized galactose epimerase deficiency +15.0089383,MONDO:0017723,http://purl.obolibrary.org/obo/MONDO_0017723,"Sandhoff disease, adult form" +15.0089383,MONDO:0017801,http://purl.obolibrary.org/obo/MONDO_0017801,atypical Meigs syndrome +15.0089383,MONDO:0017806,http://purl.obolibrary.org/obo/MONDO_0017806,15q overgrowth syndrome +15.0089383,MONDO:0017808,http://purl.obolibrary.org/obo/MONDO_0017808,duplication of the pituitary gland +15.0089383,MONDO:0017868,http://purl.obolibrary.org/obo/MONDO_0017868,diencephalic-mesencephalic junction dysplasia +15.0089383,MONDO:0018026,http://purl.obolibrary.org/obo/MONDO_0018026,tetraploidy syndrome +15.0089383,MONDO:0018043,http://purl.obolibrary.org/obo/MONDO_0018043,Thomas syndrome +15.0089383,MONDO:0018379,http://purl.obolibrary.org/obo/MONDO_0018379,primary avascular necrosis +15.0089383,MONDO:0018380,http://purl.obolibrary.org/obo/MONDO_0018380,idiopathic avascular necrosis +15.0089383,MONDO:0018625,http://purl.obolibrary.org/obo/MONDO_0018625,classic stiff person syndrome +15.0089383,MONDO:0018900,http://purl.obolibrary.org/obo/MONDO_0018900,corticosteroid-sensitive aseptic abscess syndrome +15.0089383,MONDO:0018971,http://purl.obolibrary.org/obo/MONDO_0018971,isolated oxycephaly +15.0089383,MONDO:0019006,http://purl.obolibrary.org/obo/MONDO_0019006,familial idiopathic steroid-resistant nephrotic syndrome +15.0089383,MONDO:0019076,http://purl.obolibrary.org/obo/MONDO_0019076,circumscribed palmoplantar hypokeratosis +15.0089383,MONDO:0019156,http://purl.obolibrary.org/obo/MONDO_0019156,angioosteohypotrophic syndrome +15.0089383,MONDO:0019568,http://purl.obolibrary.org/obo/MONDO_0019568,"Ehlers-Danlos syndrome, classic type, 2" +15.0089383,MONDO:0019683,http://purl.obolibrary.org/obo/MONDO_0019683,syndactyly type 2 +15.0089383,MONDO:0019734,http://purl.obolibrary.org/obo/MONDO_0019734,juvenile polymyositis +15.0089383,MONDO:0019809,http://purl.obolibrary.org/obo/MONDO_0019809,congenital aortic valve insufficiency +15.0089383,MONDO:0019913,http://purl.obolibrary.org/obo/MONDO_0019913,silver-Russell syndrome due to maternal uniparental disomy of chromosome 7 +15.0089383,MONDO:0020376,http://purl.obolibrary.org/obo/MONDO_0020376,early-onset nuclear cataract +15.0089383,MONDO:0020492,http://purl.obolibrary.org/obo/MONDO_0020492,hemimegalencephaly +15.0089383,MONDO:0020656,http://purl.obolibrary.org/obo/MONDO_0020656,human papillomavirus-related penile squamous cell carcinoma +15.0089383,MONDO:0020694,http://purl.obolibrary.org/obo/MONDO_0020694,salivary gland epithelial myoepithelial carcinoma +15.0089383,MONDO:0020800,http://purl.obolibrary.org/obo/MONDO_0020800,demyelinating disease of central nervous system +15.0089383,MONDO:0021008,http://purl.obolibrary.org/obo/MONDO_0021008,secondary antiphospholipid syndrome +15.0089383,MONDO:0021297,http://purl.obolibrary.org/obo/MONDO_0021297,carcinoma in situ of nasopharynx +15.0089383,MONDO:0021629,http://purl.obolibrary.org/obo/MONDO_0021629,uterine ligament neoplasm +15.0089383,MONDO:0021630,http://purl.obolibrary.org/obo/MONDO_0021630,lipoma of face +15.0089383,MONDO:0023415,http://purl.obolibrary.org/obo/MONDO_0023415,congenital candidiasis +15.0089383,MONDO:0024281,http://purl.obolibrary.org/obo/MONDO_0024281,juvenile chronic polyarthritis +15.0089383,MONDO:0024379,http://purl.obolibrary.org/obo/MONDO_0024379,"circadian rhythm sleep disorder, irregular sleep wake type" +15.0089383,MONDO:0024494,http://purl.obolibrary.org/obo/MONDO_0024494,"tumor grade 4, general grading system" +15.0089383,MONDO:0024614,http://purl.obolibrary.org/obo/MONDO_0024614,neurotic depression +15.0089383,MONDO:0040653,http://purl.obolibrary.org/obo/MONDO_0040653,autosomal recessive ocular albinism +15.0089383,MONDO:0041535,http://purl.obolibrary.org/obo/MONDO_0041535,mesenteric lymphadenitis due to Yersinia infection +15.0089383,MONDO:0042496,http://purl.obolibrary.org/obo/MONDO_0042496,ergotism +15.0089383,MONDO:0043185,http://purl.obolibrary.org/obo/MONDO_0043185,pointer syndrome +15.0089383,MONDO:0043254,http://purl.obolibrary.org/obo/MONDO_0043254,papular urticaria +15.0089383,MONDO:0060766,http://purl.obolibrary.org/obo/MONDO_0060766,anal polyp +15.0089383,MONDO:0100051,http://purl.obolibrary.org/obo/MONDO_0100051,idiopathic mast cell activation syndrome +15.0089383,MONDO:0100083,http://purl.obolibrary.org/obo/MONDO_0100083,hereditary thrombocytopenia and hematological cancer predisposition syndrome associated with RUNX1 +15.0089383,MOP:0000641,http://purl.obolibrary.org/obo/MOP_0000641,none +15.0089383,MOP:0000644,http://purl.obolibrary.org/obo/MOP_0000644,none +15.0089383,MOP:0000705,http://purl.obolibrary.org/obo/MOP_0000705,none +15.0089383,NCBITaxon:1001303,http://purl.obolibrary.org/obo/NCBITaxon_1001303,none +15.0089383,NCBITaxon:10069,http://purl.obolibrary.org/obo/NCBITaxon_10069,none +15.0089383,NCBITaxon:10085,http://purl.obolibrary.org/obo/NCBITaxon_10085,none +15.0089383,NCBITaxon:100880,http://purl.obolibrary.org/obo/NCBITaxon_100880,none +15.0089383,NCBITaxon:100887,http://purl.obolibrary.org/obo/NCBITaxon_100887,none +15.0089383,NCBITaxon:1010616,http://purl.obolibrary.org/obo/NCBITaxon_1010616,none +15.0089383,NCBITaxon:1027466,http://purl.obolibrary.org/obo/NCBITaxon_1027466,none +15.0089383,NCBITaxon:1035538,http://purl.obolibrary.org/obo/NCBITaxon_1035538,none +15.0089383,NCBITaxon:1038927,http://purl.obolibrary.org/obo/NCBITaxon_1038927,none +15.0089383,NCBITaxon:1041929,http://purl.obolibrary.org/obo/NCBITaxon_1041929,none +15.0089383,NCBITaxon:1050407,http://purl.obolibrary.org/obo/NCBITaxon_1050407,none +15.0089383,NCBITaxon:10511,http://purl.obolibrary.org/obo/NCBITaxon_10511,none +15.0089383,NCBITaxon:108061,http://purl.obolibrary.org/obo/NCBITaxon_108061,none +15.0089383,NCBITaxon:10877,http://purl.obolibrary.org/obo/NCBITaxon_10877,none +15.0089383,NCBITaxon:10893,http://purl.obolibrary.org/obo/NCBITaxon_10893,none +15.0089383,NCBITaxon:109797,http://purl.obolibrary.org/obo/NCBITaxon_109797,none +15.0089383,NCBITaxon:109802,http://purl.obolibrary.org/obo/NCBITaxon_109802,none +15.0089383,NCBITaxon:1100043,http://purl.obolibrary.org/obo/NCBITaxon_1100043,none +15.0089383,NCBITaxon:111418,http://purl.obolibrary.org/obo/NCBITaxon_111418,none +15.0089383,NCBITaxon:11146,http://purl.obolibrary.org/obo/NCBITaxon_11146,Porcine respiratory coronavirus +15.0089383,NCBITaxon:112437,http://purl.obolibrary.org/obo/NCBITaxon_112437,none +15.0089383,NCBITaxon:11295,http://purl.obolibrary.org/obo/NCBITaxon_11295,none +15.0089383,NCBITaxon:114656,http://purl.obolibrary.org/obo/NCBITaxon_114656,none +15.0089383,NCBITaxon:1170554,http://purl.obolibrary.org/obo/NCBITaxon_1170554,none +15.0089383,NCBITaxon:1188015,http://purl.obolibrary.org/obo/NCBITaxon_1188015,none +15.0089383,NCBITaxon:1191378,http://purl.obolibrary.org/obo/NCBITaxon_1191378,none +15.0089383,NCBITaxon:11950,http://purl.obolibrary.org/obo/NCBITaxon_11950,none +15.0089383,NCBITaxon:12038,http://purl.obolibrary.org/obo/NCBITaxon_12038,none +15.0089383,NCBITaxon:12171,http://purl.obolibrary.org/obo/NCBITaxon_12171,none +15.0089383,NCBITaxon:12223,http://purl.obolibrary.org/obo/NCBITaxon_12223,none +15.0089383,NCBITaxon:12268,http://purl.obolibrary.org/obo/NCBITaxon_12268,none +15.0089383,NCBITaxon:1232754,http://purl.obolibrary.org/obo/NCBITaxon_1232754,none +15.0089383,NCBITaxon:1234621,http://purl.obolibrary.org/obo/NCBITaxon_1234621,none +15.0089383,NCBITaxon:12431,http://purl.obolibrary.org/obo/NCBITaxon_12431,none +15.0089383,NCBITaxon:12472,http://purl.obolibrary.org/obo/NCBITaxon_12472,none +15.0089383,NCBITaxon:12647,http://purl.obolibrary.org/obo/NCBITaxon_12647,none +15.0089383,NCBITaxon:1293361,http://purl.obolibrary.org/obo/NCBITaxon_1293361,none +15.0089383,NCBITaxon:1298653,http://purl.obolibrary.org/obo/NCBITaxon_1298653,none +15.0089383,NCBITaxon:130596,http://purl.obolibrary.org/obo/NCBITaxon_130596,none +15.0089383,NCBITaxon:130597,http://purl.obolibrary.org/obo/NCBITaxon_130597,none +15.0089383,NCBITaxon:13150,http://purl.obolibrary.org/obo/NCBITaxon_13150,none +15.0089383,NCBITaxon:13151,http://purl.obolibrary.org/obo/NCBITaxon_13151,none +15.0089383,NCBITaxon:134632,http://purl.obolibrary.org/obo/NCBITaxon_134632,none +15.0089383,NCBITaxon:1386345,http://purl.obolibrary.org/obo/NCBITaxon_1386345,none +15.0089383,NCBITaxon:1386346,http://purl.obolibrary.org/obo/NCBITaxon_1386346,none +15.0089383,NCBITaxon:141261,http://purl.obolibrary.org/obo/NCBITaxon_141261,none +15.0089383,NCBITaxon:141262,http://purl.obolibrary.org/obo/NCBITaxon_141262,none +15.0089383,NCBITaxon:142843,http://purl.obolibrary.org/obo/NCBITaxon_142843,none +15.0089383,NCBITaxon:1439707,http://purl.obolibrary.org/obo/NCBITaxon_1439707,none +15.0089383,NCBITaxon:1463140,http://purl.obolibrary.org/obo/NCBITaxon_1463140,none +15.0089383,NCBITaxon:147589,http://purl.obolibrary.org/obo/NCBITaxon_147589,none +15.0089383,NCBITaxon:148879,http://purl.obolibrary.org/obo/NCBITaxon_148879,none +15.0089383,NCBITaxon:151076,http://purl.obolibrary.org/obo/NCBITaxon_151076,none +15.0089383,NCBITaxon:157019,http://purl.obolibrary.org/obo/NCBITaxon_157019,none +15.0089383,NCBITaxon:1583283,http://purl.obolibrary.org/obo/NCBITaxon_1583283,none +15.0089383,NCBITaxon:158393,http://purl.obolibrary.org/obo/NCBITaxon_158393,none +15.0089383,NCBITaxon:158406,http://purl.obolibrary.org/obo/NCBITaxon_158406,none +15.0089383,NCBITaxon:158426,http://purl.obolibrary.org/obo/NCBITaxon_158426,none +15.0089383,NCBITaxon:160843,http://purl.obolibrary.org/obo/NCBITaxon_160843,none +15.0089383,NCBITaxon:163731,http://purl.obolibrary.org/obo/NCBITaxon_163731,none +15.0089383,NCBITaxon:1653395,http://purl.obolibrary.org/obo/NCBITaxon_1653395,none +15.0089383,NCBITaxon:172220,http://purl.obolibrary.org/obo/NCBITaxon_172220,none +15.0089383,NCBITaxon:1723728,http://purl.obolibrary.org/obo/NCBITaxon_1723728,unclassified Polyomaviridae +15.0089383,NCBITaxon:173558,http://purl.obolibrary.org/obo/NCBITaxon_173558,none +15.0089383,NCBITaxon:174178,http://purl.obolibrary.org/obo/NCBITaxon_174178,none +15.0089383,NCBITaxon:1779146,http://purl.obolibrary.org/obo/NCBITaxon_1779146,none +15.0089383,NCBITaxon:178354,http://purl.obolibrary.org/obo/NCBITaxon_178354,none +15.0089383,NCBITaxon:180179,http://purl.obolibrary.org/obo/NCBITaxon_180179,none +15.0089383,NCBITaxon:180252,http://purl.obolibrary.org/obo/NCBITaxon_180252,Mardivirus +15.0089383,NCBITaxon:180903,http://purl.obolibrary.org/obo/NCBITaxon_180903,none +15.0089383,NCBITaxon:186783,http://purl.obolibrary.org/obo/NCBITaxon_186783,none +15.0089383,NCBITaxon:186786,http://purl.obolibrary.org/obo/NCBITaxon_186786,none +15.0089383,NCBITaxon:191912,http://purl.obolibrary.org/obo/NCBITaxon_191912,none +15.0089383,NCBITaxon:192203,http://purl.obolibrary.org/obo/NCBITaxon_192203,none +15.0089383,NCBITaxon:192732,http://purl.obolibrary.org/obo/NCBITaxon_192732,none +15.0089383,NCBITaxon:193075,http://purl.obolibrary.org/obo/NCBITaxon_193075,none +15.0089383,NCBITaxon:200399,http://purl.obolibrary.org/obo/NCBITaxon_200399,none +15.0089383,NCBITaxon:2024539,http://purl.obolibrary.org/obo/NCBITaxon_2024539,none +15.0089383,NCBITaxon:2035014,http://purl.obolibrary.org/obo/NCBITaxon_2035014,none +15.0089383,NCBITaxon:206389,http://purl.obolibrary.org/obo/NCBITaxon_206389,none +15.0089383,NCBITaxon:216331,http://purl.obolibrary.org/obo/NCBITaxon_216331,none +15.0089383,NCBITaxon:216782,http://purl.obolibrary.org/obo/NCBITaxon_216782,none +15.0089383,NCBITaxon:2169701,http://purl.obolibrary.org/obo/NCBITaxon_2169701,Onyong-nyong virus +15.0089383,NCBITaxon:218923,http://purl.obolibrary.org/obo/NCBITaxon_218923,none +15.0089383,NCBITaxon:220932,http://purl.obolibrary.org/obo/NCBITaxon_220932,none +15.0089383,NCBITaxon:223275,http://purl.obolibrary.org/obo/NCBITaxon_223275,none +15.0089383,NCBITaxon:223295,http://purl.obolibrary.org/obo/NCBITaxon_223295,none +15.0089383,NCBITaxon:224578,http://purl.obolibrary.org/obo/NCBITaxon_224578,none +15.0089383,NCBITaxon:2267273,http://purl.obolibrary.org/obo/NCBITaxon_2267273,Dibothriocephalus +15.0089383,NCBITaxon:229547,http://purl.obolibrary.org/obo/NCBITaxon_229547,none +15.0089383,NCBITaxon:233204,http://purl.obolibrary.org/obo/NCBITaxon_233204,none +15.0089383,NCBITaxon:233880,http://purl.obolibrary.org/obo/NCBITaxon_233880,none +15.0089383,NCBITaxon:235595,http://purl.obolibrary.org/obo/NCBITaxon_235595,none +15.0089383,NCBITaxon:235887,http://purl.obolibrary.org/obo/NCBITaxon_235887,none +15.0089383,NCBITaxon:238896,http://purl.obolibrary.org/obo/NCBITaxon_238896,none +15.0089383,NCBITaxon:238897,http://purl.obolibrary.org/obo/NCBITaxon_238897,none +15.0089383,NCBITaxon:24079,http://purl.obolibrary.org/obo/NCBITaxon_24079,none +15.0089383,NCBITaxon:24735,http://purl.obolibrary.org/obo/NCBITaxon_24735,none +15.0089383,NCBITaxon:248052,http://purl.obolibrary.org/obo/NCBITaxon_248052,none +15.0089383,NCBITaxon:2508080,http://purl.obolibrary.org/obo/NCBITaxon_2508080,none +15.0089383,NCBITaxon:2560063,http://purl.obolibrary.org/obo/NCBITaxon_2560063,none +15.0089383,NCBITaxon:2560174,http://purl.obolibrary.org/obo/NCBITaxon_2560174,none +15.0089383,NCBITaxon:2560313,http://purl.obolibrary.org/obo/NCBITaxon_2560313,none +15.0089383,NCBITaxon:2560776,http://purl.obolibrary.org/obo/NCBITaxon_2560776,none +15.0089383,NCBITaxon:263001,http://purl.obolibrary.org/obo/NCBITaxon_263001,none +15.0089383,NCBITaxon:270342,http://purl.obolibrary.org/obo/NCBITaxon_270342,none +15.0089383,NCBITaxon:2732460,http://purl.obolibrary.org/obo/NCBITaxon_2732460,none +15.0089383,NCBITaxon:2732500,http://purl.obolibrary.org/obo/NCBITaxon_2732500,none +15.0089383,NCBITaxon:2732504,http://purl.obolibrary.org/obo/NCBITaxon_2732504,none +15.0089383,NCBITaxon:2732542,http://purl.obolibrary.org/obo/NCBITaxon_2732542,none +15.0089383,NCBITaxon:2733297,http://purl.obolibrary.org/obo/NCBITaxon_2733297,none +15.0089383,NCBITaxon:27718,http://purl.obolibrary.org/obo/NCBITaxon_27718,none +15.0089383,NCBITaxon:27719,http://purl.obolibrary.org/obo/NCBITaxon_27719,none +15.0089383,NCBITaxon:28293,http://purl.obolibrary.org/obo/NCBITaxon_28293,none +15.0089383,NCBITaxon:2836346,http://purl.obolibrary.org/obo/NCBITaxon_2836346,none +15.0089383,NCBITaxon:28741,http://purl.obolibrary.org/obo/NCBITaxon_28741,none +15.0089383,NCBITaxon:29030,http://purl.obolibrary.org/obo/NCBITaxon_29030,none +15.0089383,NCBITaxon:294369,http://purl.obolibrary.org/obo/NCBITaxon_294369,none +15.0089383,NCBITaxon:30028,http://purl.obolibrary.org/obo/NCBITaxon_30028,none +15.0089383,NCBITaxon:30080,http://purl.obolibrary.org/obo/NCBITaxon_30080,none +15.0089383,NCBITaxon:30320,http://purl.obolibrary.org/obo/NCBITaxon_30320,none +15.0089383,NCBITaxon:304009,http://purl.obolibrary.org/obo/NCBITaxon_304009,none +15.0089383,NCBITaxon:306032,http://purl.obolibrary.org/obo/NCBITaxon_306032,none +15.0089383,NCBITaxon:311176,http://purl.obolibrary.org/obo/NCBITaxon_311176,none +15.0089383,NCBITaxon:31602,http://purl.obolibrary.org/obo/NCBITaxon_31602,none +15.0089383,NCBITaxon:31711,http://purl.obolibrary.org/obo/NCBITaxon_31711,none +15.0089383,NCBITaxon:318844,http://purl.obolibrary.org/obo/NCBITaxon_318844,none +15.0089383,NCBITaxon:3215,http://purl.obolibrary.org/obo/NCBITaxon_3215,none +15.0089383,NCBITaxon:3216,http://purl.obolibrary.org/obo/NCBITaxon_3216,none +15.0089383,NCBITaxon:32186,http://purl.obolibrary.org/obo/NCBITaxon_32186,none +15.0089383,NCBITaxon:32618,http://purl.obolibrary.org/obo/NCBITaxon_32618,none +15.0089383,NCBITaxon:327107,http://purl.obolibrary.org/obo/NCBITaxon_327107,none +15.0089383,NCBITaxon:327987,http://purl.obolibrary.org/obo/NCBITaxon_327987,none +15.0089383,NCBITaxon:329164,http://purl.obolibrary.org/obo/NCBITaxon_329164,none +15.0089383,NCBITaxon:333757,http://purl.obolibrary.org/obo/NCBITaxon_333757,none +15.0089383,NCBITaxon:336635,http://purl.obolibrary.org/obo/NCBITaxon_336635,none +15.0089383,NCBITaxon:3367,http://purl.obolibrary.org/obo/NCBITaxon_3367,none +15.0089383,NCBITaxon:33680,http://purl.obolibrary.org/obo/NCBITaxon_33680,none +15.0089383,NCBITaxon:33761,http://purl.obolibrary.org/obo/NCBITaxon_33761,none +15.0089383,NCBITaxon:337748,http://purl.obolibrary.org/obo/NCBITaxon_337748,none +15.0089383,NCBITaxon:33829,http://purl.obolibrary.org/obo/NCBITaxon_33829,none +15.0089383,NCBITaxon:33833,http://purl.obolibrary.org/obo/NCBITaxon_33833,Vestibuliferida +15.0089383,NCBITaxon:3474,http://purl.obolibrary.org/obo/NCBITaxon_3474,none +15.0089383,NCBITaxon:35334,http://purl.obolibrary.org/obo/NCBITaxon_35334,none +15.0089383,NCBITaxon:353633,http://purl.obolibrary.org/obo/NCBITaxon_353633,none +15.0089383,NCBITaxon:354090,http://purl.obolibrary.org/obo/NCBITaxon_354090,none +15.0089383,NCBITaxon:35569,http://purl.obolibrary.org/obo/NCBITaxon_35569,none +15.0089383,NCBITaxon:35587,http://purl.obolibrary.org/obo/NCBITaxon_35587,none +15.0089383,NCBITaxon:356862,http://purl.obolibrary.org/obo/NCBITaxon_356862,none +15.0089383,NCBITaxon:3602,http://purl.obolibrary.org/obo/NCBITaxon_3602,none +15.0089383,NCBITaxon:36158,http://purl.obolibrary.org/obo/NCBITaxon_36158,none +15.0089383,NCBITaxon:363747,http://purl.obolibrary.org/obo/NCBITaxon_363747,none +15.0089383,NCBITaxon:36403,http://purl.obolibrary.org/obo/NCBITaxon_36403,none +15.0089383,NCBITaxon:3684,http://purl.obolibrary.org/obo/NCBITaxon_3684,none +15.0089383,NCBITaxon:3734,http://purl.obolibrary.org/obo/NCBITaxon_3734,none +15.0089383,NCBITaxon:37471,http://purl.obolibrary.org/obo/NCBITaxon_37471,none +15.0089383,NCBITaxon:37472,http://purl.obolibrary.org/obo/NCBITaxon_37472,none +15.0089383,NCBITaxon:378833,http://purl.obolibrary.org/obo/NCBITaxon_378833,none +15.0089383,NCBITaxon:3869,http://purl.obolibrary.org/obo/NCBITaxon_3869,none +15.0089383,NCBITaxon:3883,http://purl.obolibrary.org/obo/NCBITaxon_3883,none +15.0089383,NCBITaxon:38946,http://purl.obolibrary.org/obo/NCBITaxon_38946,Paracoccidioides +15.0089383,NCBITaxon:39629,http://purl.obolibrary.org/obo/NCBITaxon_39629,none +15.0089383,NCBITaxon:39630,http://purl.obolibrary.org/obo/NCBITaxon_39630,none +15.0089383,NCBITaxon:3995,http://purl.obolibrary.org/obo/NCBITaxon_3995,none +15.0089383,NCBITaxon:40052,http://purl.obolibrary.org/obo/NCBITaxon_40052,none +15.0089383,NCBITaxon:4011,http://purl.obolibrary.org/obo/NCBITaxon_4011,none +15.0089383,NCBITaxon:403667,http://purl.obolibrary.org/obo/NCBITaxon_403667,none +15.0089383,NCBITaxon:40551,http://purl.obolibrary.org/obo/NCBITaxon_40551,none +15.0089383,NCBITaxon:413196,http://purl.obolibrary.org/obo/NCBITaxon_413196,none +15.0089383,NCBITaxon:41399,http://purl.obolibrary.org/obo/NCBITaxon_41399,none +15.0089383,NCBITaxon:41811,http://purl.obolibrary.org/obo/NCBITaxon_41811,none +15.0089383,NCBITaxon:41812,http://purl.obolibrary.org/obo/NCBITaxon_41812,none +15.0089383,NCBITaxon:41955,http://purl.obolibrary.org/obo/NCBITaxon_41955,none +15.0089383,NCBITaxon:421750,http://purl.obolibrary.org/obo/NCBITaxon_421750,none +15.0089383,NCBITaxon:42631,http://purl.obolibrary.org/obo/NCBITaxon_42631,none +15.0089383,NCBITaxon:433357,http://purl.obolibrary.org/obo/NCBITaxon_433357,none +15.0089383,NCBITaxon:43756,http://purl.obolibrary.org/obo/NCBITaxon_43756,none +15.0089383,NCBITaxon:43814,http://purl.obolibrary.org/obo/NCBITaxon_43814,none +15.0089383,NCBITaxon:44017,http://purl.obolibrary.org/obo/NCBITaxon_44017,none +15.0089383,NCBITaxon:44025,http://purl.obolibrary.org/obo/NCBITaxon_44025,none +15.0089383,NCBITaxon:44295,http://purl.obolibrary.org/obo/NCBITaxon_44295,none +15.0089383,NCBITaxon:44417,http://purl.obolibrary.org/obo/NCBITaxon_44417,Cyclospora +15.0089383,NCBITaxon:45131,http://purl.obolibrary.org/obo/NCBITaxon_45131,none +15.0089383,NCBITaxon:45237,http://purl.obolibrary.org/obo/NCBITaxon_45237,none +15.0089383,NCBITaxon:4564,http://purl.obolibrary.org/obo/NCBITaxon_4564,Triticum +15.0089383,NCBITaxon:456472,http://purl.obolibrary.org/obo/NCBITaxon_456472,none +15.0089383,NCBITaxon:4609,http://purl.obolibrary.org/obo/NCBITaxon_4609,none +15.0089383,NCBITaxon:463676,http://purl.obolibrary.org/obo/NCBITaxon_463676,none +15.0089383,NCBITaxon:46435,http://purl.obolibrary.org/obo/NCBITaxon_46435,none +15.0089383,NCBITaxon:4672,http://purl.obolibrary.org/obo/NCBITaxon_4672,none +15.0089383,NCBITaxon:4710,http://purl.obolibrary.org/obo/NCBITaxon_4710,none +15.0089383,NCBITaxon:47314,http://purl.obolibrary.org/obo/NCBITaxon_47314,none +15.0089383,NCBITaxon:47897,http://purl.obolibrary.org/obo/NCBITaxon_47897,none +15.0089383,NCBITaxon:48543,http://purl.obolibrary.org/obo/NCBITaxon_48543,none +15.0089383,NCBITaxon:48736,http://purl.obolibrary.org/obo/NCBITaxon_48736,none +15.0089383,NCBITaxon:49188,http://purl.obolibrary.org/obo/NCBITaxon_49188,none +15.0089383,NCBITaxon:499556,http://purl.obolibrary.org/obo/NCBITaxon_499556,Chapare mammarenavirus +15.0089383,NCBITaxon:50046,http://purl.obolibrary.org/obo/NCBITaxon_50046,none +15.0089383,NCBITaxon:50380,http://purl.obolibrary.org/obo/NCBITaxon_50380,none +15.0089383,NCBITaxon:508956,http://purl.obolibrary.org/obo/NCBITaxon_508956,none +15.0089383,NCBITaxon:515319,http://purl.obolibrary.org/obo/NCBITaxon_515319,none +15.0089383,NCBITaxon:516956,http://purl.obolibrary.org/obo/NCBITaxon_516956,none +15.0089383,NCBITaxon:527205,http://purl.obolibrary.org/obo/NCBITaxon_527205,none +15.0089383,NCBITaxon:5426,http://purl.obolibrary.org/obo/NCBITaxon_5426,none +15.0089383,NCBITaxon:564643,http://purl.obolibrary.org/obo/NCBITaxon_564643,none +15.0089383,NCBITaxon:56879,http://purl.obolibrary.org/obo/NCBITaxon_56879,none +15.0089383,NCBITaxon:581,http://purl.obolibrary.org/obo/NCBITaxon_581,none +15.0089383,NCBITaxon:59304,http://purl.obolibrary.org/obo/NCBITaxon_59304,none +15.0089383,NCBITaxon:598494,http://purl.obolibrary.org/obo/NCBITaxon_598494,none +15.0089383,NCBITaxon:5985,http://purl.obolibrary.org/obo/NCBITaxon_5985,none +15.0089383,NCBITaxon:5986,http://purl.obolibrary.org/obo/NCBITaxon_5986,none +15.0089383,NCBITaxon:60516,http://purl.obolibrary.org/obo/NCBITaxon_60516,Dibothriocephalus latus +15.0089383,NCBITaxon:61319,http://purl.obolibrary.org/obo/NCBITaxon_61319,none +15.0089383,NCBITaxon:61320,http://purl.obolibrary.org/obo/NCBITaxon_61320,none +15.0089383,NCBITaxon:6382,http://purl.obolibrary.org/obo/NCBITaxon_6382,none +15.0089383,NCBITaxon:64284,http://purl.obolibrary.org/obo/NCBITaxon_64284,none +15.0089383,NCBITaxon:64294,http://purl.obolibrary.org/obo/NCBITaxon_64294,none +15.0089383,NCBITaxon:649065,http://purl.obolibrary.org/obo/NCBITaxon_649065,none +15.0089383,NCBITaxon:649145,http://purl.obolibrary.org/obo/NCBITaxon_649145,none +15.0089383,NCBITaxon:64952,http://purl.obolibrary.org/obo/NCBITaxon_64952,none +15.0089383,NCBITaxon:65743,http://purl.obolibrary.org/obo/NCBITaxon_65743,none +15.0089383,NCBITaxon:66200,http://purl.obolibrary.org/obo/NCBITaxon_66200,none +15.0089383,NCBITaxon:685122,http://purl.obolibrary.org/obo/NCBITaxon_685122,none +15.0089383,NCBITaxon:696837,http://purl.obolibrary.org/obo/NCBITaxon_696837,none +15.0089383,NCBITaxon:70865,http://purl.obolibrary.org/obo/NCBITaxon_70865,none +15.0089383,NCBITaxon:7101,http://purl.obolibrary.org/obo/NCBITaxon_7101,none +15.0089383,NCBITaxon:7228,http://purl.obolibrary.org/obo/NCBITaxon_7228,none +15.0089383,NCBITaxon:73819,http://purl.obolibrary.org/obo/NCBITaxon_73819,none +15.0089383,NCBITaxon:74353,http://purl.obolibrary.org/obo/NCBITaxon_74353,none +15.0089383,NCBITaxon:79899,http://purl.obolibrary.org/obo/NCBITaxon_79899,none +15.0089383,NCBITaxon:79917,http://purl.obolibrary.org/obo/NCBITaxon_79917,none +15.0089383,NCBITaxon:80864,http://purl.obolibrary.org/obo/NCBITaxon_80864,none +15.0089383,NCBITaxon:81953,http://purl.obolibrary.org/obo/NCBITaxon_81953,none +15.0089383,NCBITaxon:83232,http://purl.obolibrary.org/obo/NCBITaxon_83232,none +15.0089383,NCBITaxon:83912,http://purl.obolibrary.org/obo/NCBITaxon_83912,none +15.0089383,NCBITaxon:86598,http://purl.obolibrary.org/obo/NCBITaxon_86598,none +15.0089383,NCBITaxon:86599,http://purl.obolibrary.org/obo/NCBITaxon_86599,none +15.0089383,NCBITaxon:881914,http://purl.obolibrary.org/obo/NCBITaxon_881914,none +15.0089383,NCBITaxon:8830,http://purl.obolibrary.org/obo/NCBITaxon_8830,Anatidae +15.0089383,NCBITaxon:88728,http://purl.obolibrary.org/obo/NCBITaxon_88728,none +15.0089383,NCBITaxon:89126,http://purl.obolibrary.org/obo/NCBITaxon_89126,none +15.0089383,NCBITaxon:904209,http://purl.obolibrary.org/obo/NCBITaxon_904209,none +15.0089383,NCBITaxon:90690,http://purl.obolibrary.org/obo/NCBITaxon_90690,none +15.0089383,NCBITaxon:907191,http://purl.obolibrary.org/obo/NCBITaxon_907191,none +15.0089383,NCBITaxon:91834,http://purl.obolibrary.org/obo/NCBITaxon_91834,none +15.0089383,NCBITaxon:9401,http://purl.obolibrary.org/obo/NCBITaxon_9401,none +15.0089383,NCBITaxon:95109,http://purl.obolibrary.org/obo/NCBITaxon_95109,none +15.0089383,NCBITaxon:9554,http://purl.obolibrary.org/obo/NCBITaxon_9554,Papio +15.0089383,NCBITaxon:980895,http://purl.obolibrary.org/obo/NCBITaxon_980895,none +15.0089383,NCBITaxon:981100,http://purl.obolibrary.org/obo/NCBITaxon_981100,none +15.0089383,NCBITaxon:981676,http://purl.obolibrary.org/obo/NCBITaxon_981676,none +15.0089383,NCBITaxon:985780,http://purl.obolibrary.org/obo/NCBITaxon_985780,none +15.0089383,NCBITaxon:986140,http://purl.obolibrary.org/obo/NCBITaxon_986140,none +15.0089383,NCBITaxon:99837,http://purl.obolibrary.org/obo/NCBITaxon_99837,none +15.0089383,PR:000000784,http://purl.obolibrary.org/obo/PR_000000784,voltage-gated potassium channel KCND1 +15.0089383,PR:000001017,http://purl.obolibrary.org/obo/PR_000001017,receptor-type tyrosine-protein phosphatase C isoform CD45RO +15.0089383,PR:000001170,http://purl.obolibrary.org/obo/PR_000001170,none +15.0089383,PR:000001321,http://purl.obolibrary.org/obo/PR_000001321,alpha-taxilin +15.0089383,PR:000001413,http://purl.obolibrary.org/obo/PR_000001413,CMRF35-like molecule 2 +15.0089383,PR:000001433,http://purl.obolibrary.org/obo/PR_000001433,none +15.0089383,PR:000001570,http://purl.obolibrary.org/obo/PR_000001570,P2Y purinoceptor 13 +15.0089383,PR:000001645,http://purl.obolibrary.org/obo/PR_000001645,probable G-protein coupled receptor 45 +15.0089383,PR:000002036,http://purl.obolibrary.org/obo/PR_000002036,butyrophilin subfamily 3 member A1 +15.0089383,PR:000003287,http://purl.obolibrary.org/obo/PR_000003287,TRAF-interacting protein with FHA domain-containing protein B +15.0089383,PR:000003295,http://purl.obolibrary.org/obo/PR_000003295,NF-kappa-B inhibitor epsilon +15.0089383,PR:000003517,http://purl.obolibrary.org/obo/PR_000003517,"alpha-1,4-N-acetylglucosaminyltransferase" +15.0089383,PR:000003586,http://purl.obolibrary.org/obo/PR_000003586,actin-binding LIM protein 3 +15.0089383,PR:000003609,http://purl.obolibrary.org/obo/PR_000003609,"Arf-GAP with coiled-coil, ANK repeat and PH domain-containing protein 3" +15.0089383,PR:000003677,http://purl.obolibrary.org/obo/PR_000003677,beta-actin-like protein 2 +15.0089383,PR:000003723,http://purl.obolibrary.org/obo/PR_000003723,disintegrin and metalloproteinase domain-containing protein 32 +15.0089383,PR:000003799,http://purl.obolibrary.org/obo/PR_000003799,apoptosis-enhancing nuclease +15.0089383,PR:000003803,http://purl.obolibrary.org/obo/PR_000003803,actin filament-associated protein 1-like 1 +15.0089383,PR:000003838,http://purl.obolibrary.org/obo/PR_000003838,1-acyl-sn-glycerol-3-phosphate acyltransferase epsilon +15.0089383,PR:000003853,http://purl.obolibrary.org/obo/PR_000003853,AT-hook-containing transcription factor 1 +15.0089383,PR:000003991,http://purl.obolibrary.org/obo/PR_000003991,amphoterin-induced protein 1 +15.0089383,PR:000003993,http://purl.obolibrary.org/obo/PR_000003993,amphoterin-induced protein 3 +15.0089383,PR:000004190,http://purl.obolibrary.org/obo/PR_000004190,RNA helicase aquarius +15.0089383,PR:000004234,http://purl.obolibrary.org/obo/PR_000004234,Rho GTPase-activating protein 28 +15.0089383,PR:000004342,http://purl.obolibrary.org/obo/PR_000004342,ankyrin repeat and SOCS box protein 10 +15.0089383,PR:000004359,http://purl.obolibrary.org/obo/PR_000004359,activating signal cointegrator 1 complex subunit 1 +15.0089383,PR:000004455,http://purl.obolibrary.org/obo/PR_000004455,"ATP synthase subunit gamma, mitochondrial" +15.0089383,PR:000004513,http://purl.obolibrary.org/obo/PR_000004513,"methylglutaconyl-CoA hydratase, mitochondrial" +15.0089383,PR:000004522,http://purl.obolibrary.org/obo/PR_000004522,late secretory pathway protein AVL9 +15.0089383,PR:000004702,http://purl.obolibrary.org/obo/PR_000004702,B-cell CLL/lymphoma 7 protein family member B +15.0089383,PR:000004789,http://purl.obolibrary.org/obo/PR_000004789,protein boule-like +15.0089383,PR:000004810,http://purl.obolibrary.org/obo/PR_000004810,bromodomain testis-specific protein +15.0089383,PR:000004818,http://purl.obolibrary.org/obo/PR_000004818,breast cancer metastasis-suppressor 1-like protein +15.0089383,PR:000004833,http://purl.obolibrary.org/obo/PR_000004833,B box and SPRY domain-containing protein +15.0089383,PR:000004874,http://purl.obolibrary.org/obo/PR_000004874,C1GALT1-specific chaperone 1 +15.0089383,PR:000004884,http://purl.obolibrary.org/obo/PR_000004884,complement C1q tumor necrosis factor-related protein 2 +15.0089383,PR:000004893,http://purl.obolibrary.org/obo/PR_000004893,complement C1r subcomponent-like protein +15.0089383,PR:000004944,http://purl.obolibrary.org/obo/PR_000004944,voltage-dependent calcium channel subunit alpha-2/delta-3 +15.0089383,PR:000004955,http://purl.obolibrary.org/obo/PR_000004955,voltage-dependent calcium channel gamma-6 subunit +15.0089383,PR:000005012,http://purl.obolibrary.org/obo/PR_000005012,calpain-12 +15.0089383,PR:000005062,http://purl.obolibrary.org/obo/PR_000005062,CATR tumorigenic conversion 1 protein +15.0089383,PR:000005242,http://purl.obolibrary.org/obo/PR_000005242,cadherin-like protein 26 +15.0089383,PR:000005299,http://purl.obolibrary.org/obo/PR_000005299,testis-specific chromodomain protein Y 2 +15.0089383,PR:000005416,http://purl.obolibrary.org/obo/PR_000005416,"choline dehydrogenase, mitochondrial" +15.0089383,PR:000005560,http://purl.obolibrary.org/obo/PR_000005560,C-type lectin domain family 12 member B +15.0089383,PR:000005583,http://purl.obolibrary.org/obo/PR_000005583,CAP-Gly domain-containing linker protein 3 +15.0089383,PR:000005600,http://purl.obolibrary.org/obo/PR_000005600,calcium-binding and spermatid-specific protein 1 +15.0089383,PR:000005712,http://purl.obolibrary.org/obo/PR_000005712,collagen alpha-5(VI) chain +15.0089383,PR:000005736,http://purl.obolibrary.org/obo/PR_000005736,coatomer subunit epsilon +15.0089383,PR:000005834,http://purl.obolibrary.org/obo/PR_000005834,cleavage and polyadenylation specificity factor subunit 7 +15.0089383,PR:000006143,http://purl.obolibrary.org/obo/PR_000006143,cytochrome P450 4F8 +15.0089383,PR:000006240,http://purl.obolibrary.org/obo/PR_000006240,none +15.0089383,PR:000006246,http://purl.obolibrary.org/obo/PR_000006246,none +15.0089383,PR:000006273,http://purl.obolibrary.org/obo/PR_000006273,D-amino acid oxidase activator +15.0089383,PR:000006279,http://purl.obolibrary.org/obo/PR_000006279,death-associated protein-like 1 +15.0089383,PR:000006328,http://purl.obolibrary.org/obo/PR_000006328,dynactin subunit 6 +15.0089383,PR:000006419,http://purl.obolibrary.org/obo/PR_000006419,DENN domain-containing protein 5A +15.0089383,PR:000006487,http://purl.obolibrary.org/obo/PR_000006487,GTP-binding protein Di-Ras2 +15.0089383,PR:000006562,http://purl.obolibrary.org/obo/PR_000006562,"dynein heavy chain 2, axonemal" +15.0089383,PR:000006563,http://purl.obolibrary.org/obo/PR_000006563,"dynein heavy chain 3, axonemal" +15.0089383,PR:000006612,http://purl.obolibrary.org/obo/PR_000006612,deoxynucleotidyltransferase terminal-interacting protein 1 +15.0089383,PR:000006636,http://purl.obolibrary.org/obo/PR_000006636,dolichyldiphosphatase 1 +15.0089383,PR:000006726,http://purl.obolibrary.org/obo/PR_000006726,serine/threonine-protein phosphatase dullard +15.0089383,PR:000006731,http://purl.obolibrary.org/obo/PR_000006731,dual specificity phosphatase 29 +15.0089383,PR:000006760,http://purl.obolibrary.org/obo/PR_000006760,"deoxyuridine 5'-triphosphate nucleotidohydrolase, mitochondrial" +15.0089383,PR:000006823,http://purl.obolibrary.org/obo/PR_000006823,none +15.0089383,PR:000006924,http://purl.obolibrary.org/obo/PR_000006924,protein EFR3 homolog A +15.0089383,PR:000006984,http://purl.obolibrary.org/obo/PR_000006984,eukaryotic translation initiation factor 3 subunit L +15.0089383,PR:000007058,http://purl.obolibrary.org/obo/PR_000007058,echinoderm microtubule-associated protein-like 3 +15.0089383,PR:000007337,http://purl.obolibrary.org/obo/PR_000007337,Fanconi anemia group I protein +15.0089383,PR:000007346,http://purl.obolibrary.org/obo/PR_000007346,eukaryote-type phenylalanine--tRNA ligase alpha subunit +15.0089383,PR:000007391,http://purl.obolibrary.org/obo/PR_000007391,F-box only protein 17 +15.0089383,PR:000007394,http://purl.obolibrary.org/obo/PR_000007394,F-box only protein 21 +15.0089383,PR:000007401,http://purl.obolibrary.org/obo/PR_000007401,F-box only protein 30 +15.0089383,PR:000007478,http://purl.obolibrary.org/obo/PR_000007478,"FYVE, RhoGEF and PH domain-containing protein 6" +15.0089383,PR:000007503,http://purl.obolibrary.org/obo/PR_000007503,fibroblast growth factor-binding protein 3 +15.0089383,PR:000007691,http://purl.obolibrary.org/obo/PR_000007691,ferritin heavy polypeptide-like 17 +15.0089383,PR:000007827,http://purl.obolibrary.org/obo/PR_000007827,polypeptide N-acetylgalactosaminyltransferase 5 +15.0089383,PR:000007980,http://purl.obolibrary.org/obo/PR_000007980,GTPase IMAP family member 8 +15.0089383,PR:000008088,http://purl.obolibrary.org/obo/PR_000008088,guanine nucleotide-binding protein G(olf) subunit alpha +15.0089383,PR:000008126,http://purl.obolibrary.org/obo/PR_000008126,N-acetylglucosamine-1-phosphotransferase subunit gamma +15.0089383,PR:000008143,http://purl.obolibrary.org/obo/PR_000008143,Golgi phosphoprotein 3-like +15.0089383,PR:000008145,http://purl.obolibrary.org/obo/PR_000008145,vesicle transport protein GOT1B +15.0089383,PR:000008282,http://purl.obolibrary.org/obo/PR_000008282,gasdermin-C +15.0089383,PR:000008321,http://purl.obolibrary.org/obo/PR_000008321,general transcription factor IIH subunit 5 +15.0089383,PR:000008333,http://purl.obolibrary.org/obo/PR_000008333,GTP-binding protein 10 +15.0089383,PR:000008345,http://purl.obolibrary.org/obo/PR_000008345,guanylyl cyclase-activating protein 3 +15.0089383,PR:000008367,http://purl.obolibrary.org/obo/PR_000008367,GDNF-inducible zinc finger protein 1 +15.0089383,PR:000008408,http://purl.obolibrary.org/obo/PR_000008408,histone H1.10 +15.0089383,PR:000008537,http://purl.obolibrary.org/obo/PR_000008537,heparan-alpha-glucosaminide N-acetyltransferase +15.0089383,PR:000008542,http://purl.obolibrary.org/obo/PR_000008542,HHIP-like protein 1 +15.0089383,PR:000008550,http://purl.obolibrary.org/obo/PR_000008550,"3-hydroxyisobutyryl-CoA hydrolase, mitochondrial" +15.0089383,PR:000008553,http://purl.obolibrary.org/obo/PR_000008553,HAUS augmin-like complex subunit 8 +15.0089383,PR:000008584,http://purl.obolibrary.org/obo/PR_000008584,histone H2A type 1-H +15.0089383,PR:000008585,http://purl.obolibrary.org/obo/PR_000008585,histone H2A type 1-J +15.0089383,PR:000008615,http://purl.obolibrary.org/obo/PR_000008615,"MHC class I histocompatibility antigen, alpha chain F" +15.0089383,PR:000008756,http://purl.obolibrary.org/obo/PR_000008756,HCLS1-binding protein 3 +15.0089383,PR:000008802,http://purl.obolibrary.org/obo/PR_000008802,heat shock 70 kDa protein 12A +15.0089383,PR:000008844,http://purl.obolibrary.org/obo/PR_000008844,checkpoint protein HUS1B +15.0089383,PR:000008969,http://purl.obolibrary.org/obo/PR_000008969,immunoglobulin superfamily member 10 +15.0089383,PR:000008985,http://purl.obolibrary.org/obo/PR_000008985,interleukin-17 receptor E +15.0089383,PR:000008993,http://purl.obolibrary.org/obo/PR_000008993,X-linked interleukin-1 receptor accessory protein-like 2 +15.0089383,PR:000009157,http://purl.obolibrary.org/obo/PR_000009157,inositol-trisphosphate 3-kinase C +15.0089383,PR:000009180,http://purl.obolibrary.org/obo/PR_000009180,none +15.0089383,PR:000009225,http://purl.obolibrary.org/obo/PR_000009225,junctophilin-4 +15.0089383,PR:000009374,http://purl.obolibrary.org/obo/PR_000009374,kelch-like protein 11 +15.0089383,PR:000009377,http://purl.obolibrary.org/obo/PR_000009377,kelch-like protein 14 +15.0089383,PR:000009467,http://purl.obolibrary.org/obo/PR_000009467,"keratin, type I cytoskeletal 28" +15.0089383,PR:000009519,http://purl.obolibrary.org/obo/PR_000009519,keratin-associated protein 11-1 +15.0089383,PR:000009582,http://purl.obolibrary.org/obo/PR_000009582,keratin-associated protein 8-1 +15.0089383,PR:000009626,http://purl.obolibrary.org/obo/PR_000009626,none +15.0089383,PR:000009628,http://purl.obolibrary.org/obo/PR_000009628,none +15.0089383,PR:000009944,http://purl.obolibrary.org/obo/PR_000009944,leucine-rich repeat neuronal protein 4 +15.0089383,PR:000009983,http://purl.obolibrary.org/obo/PR_000009983,leucine zipper protein 2 +15.0089383,PR:000010015,http://purl.obolibrary.org/obo/PR_000010015,lysozyme-like protein 2 +15.0089383,PR:000010056,http://purl.obolibrary.org/obo/PR_000010056,melanoma-associated antigen 12 +15.0089383,PR:000010063,http://purl.obolibrary.org/obo/PR_000010063,melanoma-associated antigen 9 +15.0089383,PR:000010069,http://purl.obolibrary.org/obo/PR_000010069,melanoma-associated antigen B4 +15.0089383,PR:000010339,http://purl.obolibrary.org/obo/PR_000010339,meteorin-like protein +15.0089383,PR:000010373,http://purl.obolibrary.org/obo/PR_000010373,major facilitator superfamily domain-containing protein 10 +15.0089383,PR:000010605,http://purl.obolibrary.org/obo/PR_000010605,"39S ribosomal protein L44, mitochondrial" +15.0089383,PR:000010637,http://purl.obolibrary.org/obo/PR_000010637,"39S ribosomal protein S30, mitochondrial" +15.0089383,PR:000010643,http://purl.obolibrary.org/obo/PR_000010643,"28S ribosomal protein S5, mitochondrial" +15.0089383,PR:000010644,http://purl.obolibrary.org/obo/PR_000010644,"28S ribosomal protein S6, mitochondrial" +15.0089383,PR:000010772,http://purl.obolibrary.org/obo/PR_000010772,mucin-like protein 1 +15.0089383,PR:000010932,http://purl.obolibrary.org/obo/PR_000010932,none +15.0089383,PR:000010945,http://purl.obolibrary.org/obo/PR_000010945,N-acetylated-alpha-linked acidic dipeptidase 2 +15.0089383,PR:000010996,http://purl.obolibrary.org/obo/PR_000010996,N-alpha-acetyltransferase 40 +15.0089383,PR:000011039,http://purl.obolibrary.org/obo/PR_000011039,nicalin +15.0089383,PR:000011078,http://purl.obolibrary.org/obo/PR_000011078,NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 +15.0089383,PR:000011100,http://purl.obolibrary.org/obo/PR_000011100,NADH dehydrogenase [ubiquinone] iron-sulfur protein 5 +15.0089383,PR:000011112,http://purl.obolibrary.org/obo/PR_000011112,adaptin ear-binding coat-associated protein 1 +15.0089383,PR:000011205,http://purl.obolibrary.org/obo/PR_000011205,NHS-like protein 1 +15.0089383,PR:000011490,http://purl.obolibrary.org/obo/PR_000011490,8-oxo-dGDP phosphatase NUDT18 +15.0089383,PR:000011518,http://purl.obolibrary.org/obo/PR_000011518,nucleoporin Nup43 +15.0089383,PR:000011591,http://purl.obolibrary.org/obo/PR_000011591,oculomedin +15.0089383,PR:000012209,http://purl.obolibrary.org/obo/PR_000012209,polyadenylate-binding protein 5 +15.0089383,PR:000012432,http://purl.obolibrary.org/obo/PR_000012432,Purkinje cell protein 4-like protein 1 +15.0089383,PR:000012599,http://purl.obolibrary.org/obo/PR_000012599,piggyBac transposable element-derived protein 3 +15.0089383,PR:000012627,http://purl.obolibrary.org/obo/PR_000012627,phosphatase and actin regulator 2 +15.0089383,PR:000012697,http://purl.obolibrary.org/obo/PR_000012697,phosphatidylinositol N-acetylglucosaminyltransferase subunit H +15.0089383,PR:000012708,http://purl.obolibrary.org/obo/PR_000012708,phosphatidylinositol glycan anchor biosynthesis class U protein +15.0089383,PR:000012743,http://purl.obolibrary.org/obo/PR_000012743,phosphatidylinositol 5-phosphate 4-kinase type-2 gamma +15.0089383,PR:000012778,http://purl.obolibrary.org/obo/PR_000012778,fibrocystin-L +15.0089383,PR:000012807,http://purl.obolibrary.org/obo/PR_000012807,cytosolic phospholipase A2 delta +15.0089383,PR:000013002,http://purl.obolibrary.org/obo/PR_000013002,DNA-directed RNA polymerase III subunit RPC3 +15.0089383,PR:000013008,http://purl.obolibrary.org/obo/PR_000013008,DNA-directed RNA polymerase III subunit RPC8 +15.0089383,PR:000013045,http://purl.obolibrary.org/obo/PR_000013045,"POU domain, class 5, transcription factor 2" +15.0089383,PR:000013069,http://purl.obolibrary.org/obo/PR_000013069,liprin-alpha-2 +15.0089383,PR:000013081,http://purl.obolibrary.org/obo/PR_000013081,peptidyl-prolyl cis-trans isomerase G +15.0089383,PR:000013234,http://purl.obolibrary.org/obo/PR_000013234,glucosidase 2 subunit beta +15.0089383,PR:000013243,http://purl.obolibrary.org/obo/PR_000013243,52 kDa repressor of the inhibitor of the protein kinase +15.0089383,PR:000013571,http://purl.obolibrary.org/obo/PR_000013571,glutamyl-tRNA(Gln) amidotransferase subunit A +15.0089383,PR:000013626,http://purl.obolibrary.org/obo/PR_000013626,Ras-related protein Rab-40A-like +15.0089383,PR:000013658,http://purl.obolibrary.org/obo/PR_000013658,Rab-like protein 3 +15.0089383,PR:000013699,http://purl.obolibrary.org/obo/PR_000013699,Ras-specific guanine nucleotide-releasing factor RalGPS1 +15.0089383,PR:000013865,http://purl.obolibrary.org/obo/PR_000013865,receptor expression-enhancing protein 3 +15.0089383,PR:000013933,http://purl.obolibrary.org/obo/PR_000013933,tRNA methyltransferase 10 homolog A +15.0089383,PR:000013956,http://purl.obolibrary.org/obo/PR_000013956,regulator of G-protein signaling 21 +15.0089383,PR:000013967,http://purl.obolibrary.org/obo/PR_000013967,regulator of G-protein signaling protein-like +15.0089383,PR:000014052,http://purl.obolibrary.org/obo/PR_000014052,ribonuclease-like protein 9 +15.0089383,PR:000014069,http://purl.obolibrary.org/obo/PR_000014069,E3 ubiquitin-protein ligase RNF113A +15.0089383,PR:000014106,http://purl.obolibrary.org/obo/PR_000014106,E3 ubiquitin-protein ligase RNF180 +15.0089383,PR:000014133,http://purl.obolibrary.org/obo/PR_000014133,RING finger protein 39 +15.0089383,PR:000014175,http://purl.obolibrary.org/obo/PR_000014175,RNA polymerase II-associated protein 1 +15.0089383,PR:000014218,http://purl.obolibrary.org/obo/PR_000014218,60S ribosomal protein L35a +15.0089383,PR:000014301,http://purl.obolibrary.org/obo/PR_000014301,Ras-related protein R-Ras +15.0089383,PR:000014357,http://purl.obolibrary.org/obo/PR_000014357,rotatin +15.0089383,PR:000014366,http://purl.obolibrary.org/obo/PR_000014366,RUN and SH3 domain-containing protein 1 +15.0089383,PR:000014440,http://purl.obolibrary.org/obo/PR_000014440,atherin +15.0089383,PR:000014481,http://purl.obolibrary.org/obo/PR_000014481,endoplasmic reticulum protein SC65 +15.0089383,PR:000014568,http://purl.obolibrary.org/obo/PR_000014568,protein sidekick-2 +15.0089383,PR:000014626,http://purl.obolibrary.org/obo/PR_000014626,semaphorin-4G +15.0089383,PR:000014692,http://purl.obolibrary.org/obo/PR_000014692,serpin B12 +15.0089383,PR:000014732,http://purl.obolibrary.org/obo/PR_000014732,splicing factor 3A subunit 2 +15.0089383,PR:000014795,http://purl.obolibrary.org/obo/PR_000014795,extracellular tyrosine-protein kinase PKDCC +15.0089383,PR:000014882,http://purl.obolibrary.org/obo/PR_000014882,signal-induced proliferation-associated 1-like protein 2 +15.0089383,PR:000014947,http://purl.obolibrary.org/obo/PR_000014947,monocarboxylate transporter 12 +15.0089383,PR:000014949,http://purl.obolibrary.org/obo/PR_000014949,monocarboxylate transporter 14 +15.0089383,PR:000015240,http://purl.obolibrary.org/obo/PR_000015240,SLIT and NTRK-like protein 4 +15.0089383,PR:000015319,http://purl.obolibrary.org/obo/PR_000015319,snRNA-activating protein complex subunit 4 +15.0089383,PR:000015341,http://purl.obolibrary.org/obo/PR_000015341,U2 small nuclear ribonucleoprotein B'' +15.0089383,PR:000015374,http://purl.obolibrary.org/obo/PR_000015374,sorting nexin-25 +15.0089383,PR:000015465,http://purl.obolibrary.org/obo/PR_000015465,sperm protein associated with the nucleus on the X chromosome A +15.0089383,PR:000015683,http://purl.obolibrary.org/obo/PR_000015683,"type 2 lactosamine alpha-2,3-sialyltransferase" +15.0089383,PR:000015775,http://purl.obolibrary.org/obo/PR_000015775,STE20-related kinase adapter protein beta +15.0089383,PR:000015947,http://purl.obolibrary.org/obo/PR_000015947,none +15.0089383,PR:000016054,http://purl.obolibrary.org/obo/PR_000016054,tapasin-related protein +15.0089383,PR:000016055,http://purl.obolibrary.org/obo/PR_000016055,transmembrane anterior posterior transformation protein 1 +15.0089383,PR:000016058,http://purl.obolibrary.org/obo/PR_000016058,"threonine--tRNA ligase 1, cytoplasmic" +15.0089383,PR:000016067,http://purl.obolibrary.org/obo/PR_000016067,taste receptor type 2 member 16 +15.0089383,PR:000016106,http://purl.obolibrary.org/obo/PR_000016106,TBC1 domain family member 22A +15.0089383,PR:000016200,http://purl.obolibrary.org/obo/PR_000016200,T-complex protein 10A homolog 1 +15.0089383,PR:000016255,http://purl.obolibrary.org/obo/PR_000016255,testis-expressed protein 19 +15.0089383,PR:000016390,http://purl.obolibrary.org/obo/PR_000016390,transmembrane 9 superfamily member 2 +15.0089383,PR:000016434,http://purl.obolibrary.org/obo/PR_000016434,macoilin +15.0089383,PR:000016469,http://purl.obolibrary.org/obo/PR_000016469,thymosin beta-15A +15.0089383,PR:000016554,http://purl.obolibrary.org/obo/PR_000016554,torsin-3A +15.0089383,PR:000016684,http://purl.obolibrary.org/obo/PR_000016684,tRNA (adenine-N(1)-)-methyltransferase catalytic subunit TRMT61A +15.0089383,PR:000016714,http://purl.obolibrary.org/obo/PR_000016714,tRNA-splicing endonuclease subunit Sen15 +15.0089383,PR:000016743,http://purl.obolibrary.org/obo/PR_000016743,tetraspanin-17 +15.0089383,PR:000016884,http://purl.obolibrary.org/obo/PR_000016884,tRNA wybutosine-synthesizing protein 3 +15.0089383,PR:000016930,http://purl.obolibrary.org/obo/PR_000016930,none +15.0089383,PR:000016933,http://purl.obolibrary.org/obo/PR_000016933,transmembrane O-methyltransferase +15.0089383,PR:000016983,http://purl.obolibrary.org/obo/PR_000016983,(E3-independent) E2 ubiquitin-conjugating enzyme +15.0089383,PR:000017021,http://purl.obolibrary.org/obo/PR_000017021,UBX domain-containing protein 4 +15.0089383,PR:000017023,http://purl.obolibrary.org/obo/PR_000017023,UBX domain-containing protein 8 +15.0089383,PR:000017027,http://purl.obolibrary.org/obo/PR_000017027,HAUS augmin-like complex subunit 7 +15.0089383,PR:000017030,http://purl.obolibrary.org/obo/PR_000017030,uridine-cytidine kinase-like 1 +15.0089383,PR:000017191,http://purl.obolibrary.org/obo/PR_000017191,ubiquitin carboxyl-terminal hydrolase 51 +15.0089383,PR:000017401,http://purl.obolibrary.org/obo/PR_000017401,WD repeat-containing protein 92 +15.0089383,PR:000017546,http://purl.obolibrary.org/obo/PR_000017546,protein yippee-like 5 +15.0089383,PR:000017575,http://purl.obolibrary.org/obo/PR_000017575,transcriptional regulator Kaiso +15.0089383,PR:000017599,http://purl.obolibrary.org/obo/PR_000017599,zinc finger CCCH domain-containing protein 14 +15.0089383,PR:000017635,http://purl.obolibrary.org/obo/PR_000017635,zinc finger protein 2 homolog +15.0089383,PR:000017648,http://purl.obolibrary.org/obo/PR_000017648,zinc finger protein 90 homolog +15.0089383,PR:000017655,http://purl.obolibrary.org/obo/PR_000017655,zinc finger RNA-binding protein 2 +15.0089383,PR:000017677,http://purl.obolibrary.org/obo/PR_000017677,zinc finger protein with KRAB and SCAN domains 5 +15.0089383,PR:000017838,http://purl.obolibrary.org/obo/PR_000017838,zinc finger protein 33A +15.0089383,PR:000017846,http://purl.obolibrary.org/obo/PR_000017846,zinc finger protein 35 +15.0089383,PR:000017849,http://purl.obolibrary.org/obo/PR_000017849,zinc finger protein 354B +15.0089383,PR:000017850,http://purl.obolibrary.org/obo/PR_000017850,zinc finger protein 354C +15.0089383,PR:000017860,http://purl.obolibrary.org/obo/PR_000017860,zinc finger protein 385B +15.0089383,PR:000017888,http://purl.obolibrary.org/obo/PR_000017888,zinc finger protein 43 +15.0089383,PR:000017906,http://purl.obolibrary.org/obo/PR_000017906,zinc finger protein 45 +15.0089383,PR:000018004,http://purl.obolibrary.org/obo/PR_000018004,zinc finger protein 582 +15.0089383,PR:000018011,http://purl.obolibrary.org/obo/PR_000018011,zinc finger protein 589 +15.0089383,PR:000018046,http://purl.obolibrary.org/obo/PR_000018046,zinc finger protein 639 +15.0089383,PR:000018126,http://purl.obolibrary.org/obo/PR_000018126,zinc finger protein 750 +15.0089383,PR:000018182,http://purl.obolibrary.org/obo/PR_000018182,zinc finger protein 830 +15.0089383,PR:000018240,http://purl.obolibrary.org/obo/PR_000018240,protein zyg-11 homolog A +15.0089383,PR:000018244,http://purl.obolibrary.org/obo/PR_000018244,none +15.0089383,PR:000021942,http://purl.obolibrary.org/obo/PR_000021942,dual specificity mitogen-activated protein kinase kinase 3 isoform 1 +15.0089383,PR:000022121,http://purl.obolibrary.org/obo/PR_000022121,none +15.0089383,PR:000022138,http://purl.obolibrary.org/obo/PR_000022138,none +15.0089383,PR:000022168,http://purl.obolibrary.org/obo/PR_000022168,none +15.0089383,PR:000022214,http://purl.obolibrary.org/obo/PR_000022214,none +15.0089383,PR:000022260,http://purl.obolibrary.org/obo/PR_000022260,none +15.0089383,PR:000022276,http://purl.obolibrary.org/obo/PR_000022276,none +15.0089383,PR:000022314,http://purl.obolibrary.org/obo/PR_000022314,none +15.0089383,PR:000022352,http://purl.obolibrary.org/obo/PR_000022352,none +15.0089383,PR:000022364,http://purl.obolibrary.org/obo/PR_000022364,none +15.0089383,PR:000022395,http://purl.obolibrary.org/obo/PR_000022395,none +15.0089383,PR:000022400,http://purl.obolibrary.org/obo/PR_000022400,none +15.0089383,PR:000022453,http://purl.obolibrary.org/obo/PR_000022453,none +15.0089383,PR:000022475,http://purl.obolibrary.org/obo/PR_000022475,none +15.0089383,PR:000022489,http://purl.obolibrary.org/obo/PR_000022489,none +15.0089383,PR:000022529,http://purl.obolibrary.org/obo/PR_000022529,none +15.0089383,PR:000022592,http://purl.obolibrary.org/obo/PR_000022592,none +15.0089383,PR:000022627,http://purl.obolibrary.org/obo/PR_000022627,none +15.0089383,PR:000022635,http://purl.obolibrary.org/obo/PR_000022635,none +15.0089383,PR:000022643,http://purl.obolibrary.org/obo/PR_000022643,none +15.0089383,PR:000022722,http://purl.obolibrary.org/obo/PR_000022722,none +15.0089383,PR:000022750,http://purl.obolibrary.org/obo/PR_000022750,none +15.0089383,PR:000022756,http://purl.obolibrary.org/obo/PR_000022756,none +15.0089383,PR:000022763,http://purl.obolibrary.org/obo/PR_000022763,none +15.0089383,PR:000022796,http://purl.obolibrary.org/obo/PR_000022796,none +15.0089383,PR:000022836,http://purl.obolibrary.org/obo/PR_000022836,none +15.0089383,PR:000023010,http://purl.obolibrary.org/obo/PR_000023010,none +15.0089383,PR:000023065,http://purl.obolibrary.org/obo/PR_000023065,none +15.0089383,PR:000023097,http://purl.obolibrary.org/obo/PR_000023097,none +15.0089383,PR:000023151,http://purl.obolibrary.org/obo/PR_000023151,none +15.0089383,PR:000023240,http://purl.obolibrary.org/obo/PR_000023240,none +15.0089383,PR:000023330,http://purl.obolibrary.org/obo/PR_000023330,none +15.0089383,PR:000023344,http://purl.obolibrary.org/obo/PR_000023344,none +15.0089383,PR:000023404,http://purl.obolibrary.org/obo/PR_000023404,none +15.0089383,PR:000023481,http://purl.obolibrary.org/obo/PR_000023481,none +15.0089383,PR:000023533,http://purl.obolibrary.org/obo/PR_000023533,none +15.0089383,PR:000023539,http://purl.obolibrary.org/obo/PR_000023539,none +15.0089383,PR:000023681,http://purl.obolibrary.org/obo/PR_000023681,none +15.0089383,PR:000023683,http://purl.obolibrary.org/obo/PR_000023683,none +15.0089383,PR:000023694,http://purl.obolibrary.org/obo/PR_000023694,none +15.0089383,PR:000023736,http://purl.obolibrary.org/obo/PR_000023736,none +15.0089383,PR:000023816,http://purl.obolibrary.org/obo/PR_000023816,none +15.0089383,PR:000023868,http://purl.obolibrary.org/obo/PR_000023868,none +15.0089383,PR:000023879,http://purl.obolibrary.org/obo/PR_000023879,none +15.0089383,PR:000023890,http://purl.obolibrary.org/obo/PR_000023890,none +15.0089383,PR:000023947,http://purl.obolibrary.org/obo/PR_000023947,none +15.0089383,PR:000023987,http://purl.obolibrary.org/obo/PR_000023987,none +15.0089383,PR:000024005,http://purl.obolibrary.org/obo/PR_000024005,none +15.0089383,PR:000024006,http://purl.obolibrary.org/obo/PR_000024006,none +15.0089383,PR:000024011,http://purl.obolibrary.org/obo/PR_000024011,none +15.0089383,PR:000024038,http://purl.obolibrary.org/obo/PR_000024038,none +15.0089383,PR:000024054,http://purl.obolibrary.org/obo/PR_000024054,none +15.0089383,PR:000024128,http://purl.obolibrary.org/obo/PR_000024128,none +15.0089383,PR:000024157,http://purl.obolibrary.org/obo/PR_000024157,none +15.0089383,PR:000024202,http://purl.obolibrary.org/obo/PR_000024202,none +15.0089383,PR:000024208,http://purl.obolibrary.org/obo/PR_000024208,none +15.0089383,PR:000024255,http://purl.obolibrary.org/obo/PR_000024255,none +15.0089383,PR:000025564,http://purl.obolibrary.org/obo/PR_000025564,amyloid-beta precursor protein sequence variant E693Q (human) +15.0089383,PR:000025821,http://purl.obolibrary.org/obo/PR_000025821,solute carrier organic anion transporter family member 6A1 +15.0089383,PR:000027702,http://purl.obolibrary.org/obo/PR_000027702,none +15.0089383,PR:000028154,http://purl.obolibrary.org/obo/PR_000028154,none +15.0089383,PR:000028502,http://purl.obolibrary.org/obo/PR_000028502,none +15.0089383,PR:000028952,http://purl.obolibrary.org/obo/PR_000028952,YEATS domain-containing protein 2 +15.0089383,PR:000029041,http://purl.obolibrary.org/obo/PR_000029041,none +15.0089383,PR:000029119,http://purl.obolibrary.org/obo/PR_000029119,adenylate kinase 8 +15.0089383,PR:000029259,http://purl.obolibrary.org/obo/PR_000029259,acyl-CoA dehydrogenase family member 11 +15.0089383,PR:000029268,http://purl.obolibrary.org/obo/PR_000029268,APC membrane recruitment protein 2 +15.0089383,PR:000029283,http://purl.obolibrary.org/obo/PR_000029283,armadillo repeat-containing X-linked protein 3 +15.0089383,PR:000029335,http://purl.obolibrary.org/obo/PR_000029335,deuterosome assembly protein 1 +15.0089383,PR:000029343,http://purl.obolibrary.org/obo/PR_000029343,coiled-coil domain-containing protein 93 +15.0089383,PR:000029352,http://purl.obolibrary.org/obo/PR_000029352,centrosomal protein of 85 kDa +15.0089383,PR:000029360,http://purl.obolibrary.org/obo/PR_000029360,C-type lectin domain family 4 member G +15.0089383,PR:000029476,http://purl.obolibrary.org/obo/PR_000029476,protein FAM50A +15.0089383,PR:000029506,http://purl.obolibrary.org/obo/PR_000029506,GATA zinc finger domain-containing protein 1 +15.0089383,PR:000029508,http://purl.obolibrary.org/obo/PR_000029508,GTPase IMAP family member 2 +15.0089383,PR:000029576,http://purl.obolibrary.org/obo/PR_000029576,BTB/POZ domain-containing protein KCTD6 +15.0089383,PR:000029662,http://purl.obolibrary.org/obo/PR_000029662,deubiquitinase OTUD6B +15.0089383,PR:000029708,http://purl.obolibrary.org/obo/PR_000029708,putative RNA-binding protein 15B +15.0089383,PR:000029739,http://purl.obolibrary.org/obo/PR_000029739,sodium-coupled neutral amino acid transporter 9 +15.0089383,PR:000030197,http://purl.obolibrary.org/obo/PR_000030197,BAH and coiled-coil domain-containing protein 1 +15.0089383,PR:000030207,http://purl.obolibrary.org/obo/PR_000030207,protein phosphatase 1 regulatory subunit 3G +15.0089383,PR:000030295,http://purl.obolibrary.org/obo/PR_000030295,tetratricopeptide repeat protein 36 +15.0089383,PR:000030306,http://purl.obolibrary.org/obo/PR_000030306,glucoside xylosyltransferase 1 +15.0089383,PR:000030327,http://purl.obolibrary.org/obo/PR_000030327,"putative lipoyltransferase 2, mitochondrial" +15.0089383,PR:000030338,http://purl.obolibrary.org/obo/PR_000030338,"threonine--tRNA ligase 2, cytoplasmic" +15.0089383,PR:000030345,http://purl.obolibrary.org/obo/PR_000030345,transmembrane protein 119 +15.0089383,PR:000030353,http://purl.obolibrary.org/obo/PR_000030353,protein FAM162A +15.0089383,PR:000030360,http://purl.obolibrary.org/obo/PR_000030360,insulin growth factor-like family member 2 +15.0089383,PR:000030424,http://purl.obolibrary.org/obo/PR_000030424,transmembrane 9 superfamily member 1 +15.0089383,PR:000030431,http://purl.obolibrary.org/obo/PR_000030431,procollagen galactosyltransferase 2 +15.0089383,PR:000030434,http://purl.obolibrary.org/obo/PR_000030434,solute carrier family 23 member 3 +15.0089383,PR:000030525,http://purl.obolibrary.org/obo/PR_000030525,EEF1A lysine methyltransferase 3 +15.0089383,PR:000030545,http://purl.obolibrary.org/obo/PR_000030545,leucine-rich repeat-containing protein 2 +15.0089383,PR:000030603,http://purl.obolibrary.org/obo/PR_000030603,protein phosphatase 1 regulatory subunit 26 +15.0089383,PR:000030610,http://purl.obolibrary.org/obo/PR_000030610,ankyrin repeat and MYND domain-containing protein 1 +15.0089383,PR:000030658,http://purl.obolibrary.org/obo/PR_000030658,putative tripartite motif-containing protein 61 +15.0089383,PR:000030683,http://purl.obolibrary.org/obo/PR_000030683,Ras-like protein family member 11B +15.0089383,PR:000030708,http://purl.obolibrary.org/obo/PR_000030708,probable E3 ubiquitin-protein ligase HECTD4 +15.0089383,PR:000030726,http://purl.obolibrary.org/obo/PR_000030726,E3 ubiquitin-protein ligase RNF144A +15.0089383,PR:000030740,http://purl.obolibrary.org/obo/PR_000030740,F-BAR and double SH3 domains protein 1 +15.0089383,PR:000030753,http://purl.obolibrary.org/obo/PR_000030753,protein FAM40A +15.0089383,PR:000030773,http://purl.obolibrary.org/obo/PR_000030773,SH3 domain-binding glutamic acid-rich-like protein 2 +15.0089383,PR:000030778,http://purl.obolibrary.org/obo/PR_000030778,carnosine synthase 1 +15.0089383,PR:000030786,http://purl.obolibrary.org/obo/PR_000030786,mitochondrial glycine transporter +15.0089383,PR:000030787,http://purl.obolibrary.org/obo/PR_000030787,RGM domain family member B +15.0089383,PR:000030811,http://purl.obolibrary.org/obo/PR_000030811,serine protease 53 +15.0089383,PR:000030833,http://purl.obolibrary.org/obo/PR_000030833,protein MB21D1 +15.0089383,PR:000030940,http://purl.obolibrary.org/obo/PR_000030940,regulator of microtubule dynamics protein 2 +15.0089383,PR:000031030,http://purl.obolibrary.org/obo/PR_000031030,PHD finger protein 20-like protein 1 +15.0089383,PR:000031062,http://purl.obolibrary.org/obo/PR_000031062,BRO1 domain-containing protein BROX +15.0089383,PR:000031114,http://purl.obolibrary.org/obo/PR_000031114,immunoglobulin superfamily DCC subclass member 3 +15.0089383,PR:000031118,http://purl.obolibrary.org/obo/PR_000031118,WD repeat-containing protein 41 +15.0089383,PR:000031190,http://purl.obolibrary.org/obo/PR_000031190,2-oxoglutarate and iron-dependent oxygenase JMJD4 +15.0089383,PR:000031217,http://purl.obolibrary.org/obo/PR_000031217,WD and tetratricopeptide repeats protein 1 +15.0089383,PR:000031241,http://purl.obolibrary.org/obo/PR_000031241,DDB1- and CUL4-associated factor 11 +15.0089383,PR:000031294,http://purl.obolibrary.org/obo/PR_000031294,protein FAM184B +15.0089383,PR:000031400,http://purl.obolibrary.org/obo/PR_000031400,ER membrane protein complex subunit 6 +15.0089383,PR:000031425,http://purl.obolibrary.org/obo/PR_000031425,Ly6/PLAUR domain-containing protein 8 +15.0089383,PR:000031495,http://purl.obolibrary.org/obo/PR_000031495,suppressor APC domain-containing protein 1 +15.0089383,PR:000031506,http://purl.obolibrary.org/obo/PR_000031506,WASH complex subunit 1 +15.0089383,PR:000031516,http://purl.obolibrary.org/obo/PR_000031516,probable tubulin polyglutamylase TTLL9 +15.0089383,PR:000031542,http://purl.obolibrary.org/obo/PR_000031542,C-type lectin domain family 18 member A +15.0089383,PR:000031572,http://purl.obolibrary.org/obo/PR_000031572,"enoyl-CoA hydratase domain-containing protein 3, mitochondrial" +15.0089383,PR:000031628,http://purl.obolibrary.org/obo/PR_000031628,putative methyltransferase NSUN7 +15.0089383,PR:000031694,http://purl.obolibrary.org/obo/PR_000031694,pleckstrin homology domain-containing family H member 2 +15.0089383,PR:000031825,http://purl.obolibrary.org/obo/PR_000031825,putative deoxyribonuclease TATDN1 +15.0089383,PR:000031853,http://purl.obolibrary.org/obo/PR_000031853,Ras-like protein family member 10B +15.0089383,PR:000031877,http://purl.obolibrary.org/obo/PR_000031877,5'-nucleotidase domain-containing protein 3 +15.0089383,PR:000031886,http://purl.obolibrary.org/obo/PR_000031886,polypeptide N-acetylgalactosaminyltransferase-like protein 5 +15.0089383,PR:000031914,http://purl.obolibrary.org/obo/PR_000031914,POC1 centriolar protein homolog A +15.0089383,PR:000031949,http://purl.obolibrary.org/obo/PR_000031949,SLP adapter and CSK-interacting membrane protein +15.0089383,PR:000031972,http://purl.obolibrary.org/obo/PR_000031972,HIG1 domain family member 1C +15.0089383,PR:000032010,http://purl.obolibrary.org/obo/PR_000032010,trinucleotide repeat-containing gene 18 protein +15.0089383,PR:000032021,http://purl.obolibrary.org/obo/PR_000032021,FERM and PDZ domain-containing protein 2 +15.0089383,PR:000032069,http://purl.obolibrary.org/obo/PR_000032069,probable imidazolonepropionase +15.0089383,PR:000032076,http://purl.obolibrary.org/obo/PR_000032076,solute carrier family 25 member 43 +15.0089383,PR:000032168,http://purl.obolibrary.org/obo/PR_000032168,nesprin-4 +15.0089383,PR:000032296,http://purl.obolibrary.org/obo/PR_000032296,diphthine methyltransferase +15.0089383,PR:000032390,http://purl.obolibrary.org/obo/PR_000032390,tetra-peptide repeat homeobox protein 1 +15.0089383,PR:000032393,http://purl.obolibrary.org/obo/PR_000032393,nucleolar protein 9 +15.0089383,PR:000032400,http://purl.obolibrary.org/obo/PR_000032400,zinc finger CCHC domain-containing protein 14 +15.0089383,PR:000032425,http://purl.obolibrary.org/obo/PR_000032425,C-type lectin domain family 1 member A +15.0089383,PR:000032457,http://purl.obolibrary.org/obo/PR_000032457,pyridine nucleotide-disulfide oxidoreductase domain-containing protein 1 +15.0089383,PR:000032472,http://purl.obolibrary.org/obo/PR_000032472,polypeptide N-acetylgalactosaminyltransferase 18 +15.0089383,PR:000032532,http://purl.obolibrary.org/obo/PR_000032532,glycosyltransferase-like domain-containing protein 1 +15.0089383,PR:000032747,http://purl.obolibrary.org/obo/PR_000032747,sterile alpha motif domain-containing protein 14 +15.0089383,PR:000032759,http://purl.obolibrary.org/obo/PR_000032759,double homeobox protein 4C +15.0089383,PR:000032767,http://purl.obolibrary.org/obo/PR_000032767,DENN domain-containing protein 2D +15.0089383,PR:000032801,http://purl.obolibrary.org/obo/PR_000032801,"arginine-hydroxylase NDUFAF5, mitochondrial" +15.0089383,PR:000033116,http://purl.obolibrary.org/obo/PR_000033116,none +15.0089383,PR:000033497,http://purl.obolibrary.org/obo/PR_000033497,none +15.0089383,PR:000034068,http://purl.obolibrary.org/obo/PR_000034068,none +15.0089383,PR:000034127,http://purl.obolibrary.org/obo/PR_000034127,none +15.0089383,PR:000034216,http://purl.obolibrary.org/obo/PR_000034216,none +15.0089383,PR:000034442,http://purl.obolibrary.org/obo/PR_000034442,none +15.0089383,PR:000035050,http://purl.obolibrary.org/obo/PR_000035050,none +15.0089383,PR:000035163,http://purl.obolibrary.org/obo/PR_000035163,none +15.0089383,PR:000035356,http://purl.obolibrary.org/obo/PR_000035356,none +15.0089383,PR:000036917,http://purl.obolibrary.org/obo/PR_000036917,"MHC class I histocompatibility antigen, alpha chain H" +15.0089383,PR:000036955,http://purl.obolibrary.org/obo/PR_000036955,V-type immunoglobulin domain-containing suppressor of T-cell activation +15.0089383,PR:000037373,http://purl.obolibrary.org/obo/PR_000037373,none +15.0089383,PR:000039400,http://purl.obolibrary.org/obo/PR_000039400,CCR4-NOT transcription complex subunit 11 +15.0089383,PR:000044408,http://purl.obolibrary.org/obo/PR_000044408,none +15.0089383,PR:000044800,http://purl.obolibrary.org/obo/PR_000044800,none +15.0089383,PR:000050491,http://purl.obolibrary.org/obo/PR_000050491,none +15.0089383,PR:A0JMD2,http://purl.obolibrary.org/obo/PR_A0JMD2,none +15.0089383,PR:A2BIL8,http://purl.obolibrary.org/obo/PR_A2BIL8,none +15.0089383,PR:A4IG59,http://purl.obolibrary.org/obo/PR_A4IG59,none +15.0089383,PR:B2RYF7,http://purl.obolibrary.org/obo/PR_B2RYF7,none +15.0089383,PR:B5DFN3,http://purl.obolibrary.org/obo/PR_B5DFN3,none +15.0089383,PR:F4HQA1,http://purl.obolibrary.org/obo/PR_F4HQA1,none +15.0089383,PR:F4I0K2,http://purl.obolibrary.org/obo/PR_F4I0K2,none +15.0089383,PR:F4KIN4,http://purl.obolibrary.org/obo/PR_F4KIN4,none +15.0089383,PR:O13329,http://purl.obolibrary.org/obo/PR_O13329,none +15.0089383,PR:O14170,http://purl.obolibrary.org/obo/PR_O14170,none +15.0089383,PR:O14399,http://purl.obolibrary.org/obo/PR_O14399,none +15.0089383,PR:O14464,http://purl.obolibrary.org/obo/PR_O14464,none +15.0089383,PR:O22845,http://purl.obolibrary.org/obo/PR_O22845,none +15.0089383,PR:O23547,http://purl.obolibrary.org/obo/PR_O23547,none +15.0089383,PR:O49459,http://purl.obolibrary.org/obo/PR_O49459,none +15.0089383,PR:O49660,http://purl.obolibrary.org/obo/PR_O49660,none +15.0089383,PR:O49686,http://purl.obolibrary.org/obo/PR_O49686,none +15.0089383,PR:O64687,http://purl.obolibrary.org/obo/PR_O64687,none +15.0089383,PR:O64827,http://purl.obolibrary.org/obo/PR_O64827,none +15.0089383,PR:O74312,http://purl.obolibrary.org/obo/PR_O74312,none +15.0089383,PR:O80842,http://purl.obolibrary.org/obo/PR_O80842,none +15.0089383,PR:O81025,http://purl.obolibrary.org/obo/PR_O81025,none +15.0089383,PR:O81208,http://purl.obolibrary.org/obo/PR_O81208,none +15.0089383,PR:O82503,http://purl.obolibrary.org/obo/PR_O82503,none +15.0089383,PR:O88407,http://purl.obolibrary.org/obo/PR_O88407,none +15.0089383,PR:P01946,http://purl.obolibrary.org/obo/PR_P01946,none +15.0089383,PR:P07071,http://purl.obolibrary.org/obo/PR_P07071,none +15.0089383,PR:P08432,http://purl.obolibrary.org/obo/PR_P08432,none +15.0089383,PR:P09402,http://purl.obolibrary.org/obo/PR_P09402,none +15.0089383,PR:P09875,http://purl.obolibrary.org/obo/PR_P09875,none +15.0089383,PR:P0A041,http://purl.obolibrary.org/obo/PR_P0A041,none +15.0089383,PR:P0CS90,http://purl.obolibrary.org/obo/PR_P0CS90,none +15.0089383,PR:P0CX82,http://purl.obolibrary.org/obo/PR_P0CX82,none +15.0089383,PR:P11609,http://purl.obolibrary.org/obo/PR_P11609,none +15.0089383,PR:P11956,http://purl.obolibrary.org/obo/PR_P11956,none +15.0089383,PR:P11995,http://purl.obolibrary.org/obo/PR_P11995,none +15.0089383,PR:P16127,http://purl.obolibrary.org/obo/PR_P16127,none +15.0089383,PR:P16410,http://purl.obolibrary.org/obo/PR_P16410,cytotoxic T-lymphocyte protein 4 (human) +15.0089383,PR:P20052,http://purl.obolibrary.org/obo/PR_P20052,none +15.0089383,PR:P26343,http://purl.obolibrary.org/obo/PR_P26343,none +15.0089383,PR:P27323,http://purl.obolibrary.org/obo/PR_P27323,none +15.0089383,PR:P28239,http://purl.obolibrary.org/obo/PR_P28239,none +15.0089383,PR:P28496,http://purl.obolibrary.org/obo/PR_P28496,none +15.0089383,PR:P29513,http://purl.obolibrary.org/obo/PR_P29513,none +15.0089383,PR:P29775,http://purl.obolibrary.org/obo/PR_P29775,none +15.0089383,PR:P30184,http://purl.obolibrary.org/obo/PR_P30184,none +15.0089383,PR:P32337,http://purl.obolibrary.org/obo/PR_P32337,none +15.0089383,PR:P32842,http://purl.obolibrary.org/obo/PR_P32842,none +15.0089383,PR:P33417,http://purl.obolibrary.org/obo/PR_P33417,none +15.0089383,PR:P36012,http://purl.obolibrary.org/obo/PR_P36012,none +15.0089383,PR:P36116,http://purl.obolibrary.org/obo/PR_P36116,none +15.0089383,PR:P38068,http://purl.obolibrary.org/obo/PR_P38068,none +15.0089383,PR:P38193,http://purl.obolibrary.org/obo/PR_P38193,none +15.0089383,PR:P38262,http://purl.obolibrary.org/obo/PR_P38262,none +15.0089383,PR:P38697,http://purl.obolibrary.org/obo/PR_P38697,none +15.0089383,PR:P38800,http://purl.obolibrary.org/obo/PR_P38800,none +15.0089383,PR:P38992,http://purl.obolibrary.org/obo/PR_P38992,none +15.0089383,PR:P40087,http://purl.obolibrary.org/obo/PR_P40087,none +15.0089383,PR:P42523,http://purl.obolibrary.org/obo/PR_P42523,none +15.0089383,PR:P43295,http://purl.obolibrary.org/obo/PR_P43295,none +15.0089383,PR:P43606,http://purl.obolibrary.org/obo/PR_P43606,none +15.0089383,PR:P47075,http://purl.obolibrary.org/obo/PR_P47075,none +15.0089383,PR:P50237,http://purl.obolibrary.org/obo/PR_P50237,none +15.0089383,PR:P50411,http://purl.obolibrary.org/obo/PR_P50411,none +15.0089383,PR:P53335,http://purl.obolibrary.org/obo/PR_P53335,none +15.0089383,PR:P53720,http://purl.obolibrary.org/obo/PR_P53720,none +15.0089383,PR:P53859,http://purl.obolibrary.org/obo/PR_P53859,none +15.0089383,PR:P53874,http://purl.obolibrary.org/obo/PR_P53874,none +15.0089383,PR:P56225,http://purl.obolibrary.org/obo/PR_P56225,none +15.0089383,PR:P56785,http://purl.obolibrary.org/obo/PR_P56785,none +15.0089383,PR:P61711,http://purl.obolibrary.org/obo/PR_P61711,none +15.0089383,PR:P78599,http://purl.obolibrary.org/obo/PR_P78599,none +15.0089383,PR:P78953,http://purl.obolibrary.org/obo/PR_P78953,none +15.0089383,PR:P81912,http://purl.obolibrary.org/obo/PR_P81912,none +15.0089383,PR:P93757,http://purl.obolibrary.org/obo/PR_P93757,none +15.0089383,PR:P97461,http://purl.obolibrary.org/obo/PR_P97461,none +15.0089383,PR:Q03761,http://purl.obolibrary.org/obo/PR_Q03761,none +15.0089383,PR:Q04503,http://purl.obolibrary.org/obo/PR_Q04503,none +15.0089383,PR:Q06224,http://purl.obolibrary.org/obo/PR_Q06224,none +15.0089383,PR:Q07497,http://purl.obolibrary.org/obo/PR_Q07497,none +15.0089383,PR:Q0WQW5,http://purl.obolibrary.org/obo/PR_Q0WQW5,none +15.0089383,PR:Q10109,http://purl.obolibrary.org/obo/PR_Q10109,none +15.0089383,PR:Q10234,http://purl.obolibrary.org/obo/PR_Q10234,none +15.0089383,PR:Q10423,http://purl.obolibrary.org/obo/PR_Q10423,none +15.0089383,PR:Q12030,http://purl.obolibrary.org/obo/PR_Q12030,none +15.0089383,PR:Q12142,http://purl.obolibrary.org/obo/PR_Q12142,none +15.0089383,PR:Q12440,http://purl.obolibrary.org/obo/PR_Q12440,none +15.0089383,PR:Q12462,http://purl.obolibrary.org/obo/PR_Q12462,none +15.0089383,PR:Q12745,http://purl.obolibrary.org/obo/PR_Q12745,none +15.0089383,PR:Q12746,http://purl.obolibrary.org/obo/PR_Q12746,none +15.0089383,PR:Q17833,http://purl.obolibrary.org/obo/PR_Q17833,none +15.0089383,PR:Q24238,http://purl.obolibrary.org/obo/PR_Q24238,none +15.0089383,PR:Q27IK6,http://purl.obolibrary.org/obo/PR_Q27IK6,none +15.0089383,PR:Q2FXJ2,http://purl.obolibrary.org/obo/PR_Q2FXJ2,none +15.0089383,PR:Q38905,http://purl.obolibrary.org/obo/PR_Q38905,none +15.0089383,PR:Q3TYQ9,http://purl.obolibrary.org/obo/PR_Q3TYQ9,none +15.0089383,PR:Q4AEF8,http://purl.obolibrary.org/obo/PR_Q4AEF8,none +15.0089383,PR:Q4VBT1,http://purl.obolibrary.org/obo/PR_Q4VBT1,none +15.0089383,PR:Q4VK74,http://purl.obolibrary.org/obo/PR_Q4VK74,none +15.0089383,PR:Q4W4Y0,http://purl.obolibrary.org/obo/PR_Q4W4Y0,uncharacterized protein C14orf28 (human) +15.0089383,PR:Q54FE8,http://purl.obolibrary.org/obo/PR_Q54FE8,none +15.0089383,PR:Q54H45,http://purl.obolibrary.org/obo/PR_Q54H45,none +15.0089383,PR:Q54P59,http://purl.obolibrary.org/obo/PR_Q54P59,none +15.0089383,PR:Q54PY7,http://purl.obolibrary.org/obo/PR_Q54PY7,none +15.0089383,PR:Q59UP6,http://purl.obolibrary.org/obo/PR_Q59UP6,none +15.0089383,PR:Q59ZZ6,http://purl.obolibrary.org/obo/PR_Q59ZZ6,none +15.0089383,PR:Q5AP80,http://purl.obolibrary.org/obo/PR_Q5AP80,none +15.0089383,PR:Q5EB68,http://purl.obolibrary.org/obo/PR_Q5EB68,none +15.0089383,PR:Q5F3S2,http://purl.obolibrary.org/obo/PR_Q5F3S2,none +15.0089383,PR:Q5ZKA6,http://purl.obolibrary.org/obo/PR_Q5ZKA6,none +15.0089383,PR:Q5ZM57,http://purl.obolibrary.org/obo/PR_Q5ZM57,none +15.0089383,PR:Q6J9Q2,http://purl.obolibrary.org/obo/PR_Q6J9Q2,none +15.0089383,PR:Q6NWJ0,http://purl.obolibrary.org/obo/PR_Q6NWJ0,none +15.0089383,PR:Q6NYZ6,http://purl.obolibrary.org/obo/PR_Q6NYZ6,none +15.0089383,PR:Q6P560,http://purl.obolibrary.org/obo/PR_Q6P560,none +15.0089383,PR:Q7T1A1,http://purl.obolibrary.org/obo/PR_Q7T1A1,none +15.0089383,PR:Q7X6Y7,http://purl.obolibrary.org/obo/PR_Q7X6Y7,none +15.0089383,PR:Q84MD8,http://purl.obolibrary.org/obo/PR_Q84MD8,none +15.0089383,PR:Q84WG0,http://purl.obolibrary.org/obo/PR_Q84WG0,none +15.0089383,PR:Q84WW6,http://purl.obolibrary.org/obo/PR_Q84WW6,none +15.0089383,PR:Q8BI06,http://purl.obolibrary.org/obo/PR_Q8BI06,none +15.0089383,PR:Q8BK48,http://purl.obolibrary.org/obo/PR_Q8BK48,none +15.0089383,PR:Q8GW43,http://purl.obolibrary.org/obo/PR_Q8GW43,none +15.0089383,PR:Q8LBL1,http://purl.obolibrary.org/obo/PR_Q8LBL1,none +15.0089383,PR:Q8RWG2,http://purl.obolibrary.org/obo/PR_Q8RWG2,none +15.0089383,PR:Q8WUJ3,http://purl.obolibrary.org/obo/PR_Q8WUJ3,cell migration-inducing and hyaluronan-binding protein (human) +15.0089383,PR:Q90YL4,http://purl.obolibrary.org/obo/PR_Q90YL4,none +15.0089383,PR:Q90ZM2,http://purl.obolibrary.org/obo/PR_Q90ZM2,none +15.0089383,PR:Q93373,http://purl.obolibrary.org/obo/PR_Q93373,none +15.0089383,PR:Q94B08,http://purl.obolibrary.org/obo/PR_Q94B08,none +15.0089383,PR:Q94BT6,http://purl.obolibrary.org/obo/PR_Q94BT6,none +15.0089383,PR:Q96324,http://purl.obolibrary.org/obo/PR_Q96324,none +15.0089383,PR:Q99382,http://purl.obolibrary.org/obo/PR_Q99382,none +15.0089383,PR:Q9C5S9,http://purl.obolibrary.org/obo/PR_Q9C5S9,none +15.0089383,PR:Q9C6B3,http://purl.obolibrary.org/obo/PR_Q9C6B3,none +15.0089383,PR:Q9C7I5,http://purl.obolibrary.org/obo/PR_Q9C7I5,none +15.0089383,PR:Q9FF86,http://purl.obolibrary.org/obo/PR_Q9FF86,none +15.0089383,PR:Q9FJ54,http://purl.obolibrary.org/obo/PR_Q9FJ54,none +15.0089383,PR:Q9FJL3,http://purl.obolibrary.org/obo/PR_Q9FJL3,none +15.0089383,PR:Q9FY94,http://purl.obolibrary.org/obo/PR_Q9FY94,none +15.0089383,PR:Q9JK66,http://purl.obolibrary.org/obo/PR_Q9JK66,none +15.0089383,PR:Q9LQ12,http://purl.obolibrary.org/obo/PR_Q9LQ12,none +15.0089383,PR:Q9LUT2,http://purl.obolibrary.org/obo/PR_Q9LUT2,none +15.0089383,PR:Q9LV87,http://purl.obolibrary.org/obo/PR_Q9LV87,none +15.0089383,PR:Q9LZS3,http://purl.obolibrary.org/obo/PR_Q9LZS3,none +15.0089383,PR:Q9LZX6,http://purl.obolibrary.org/obo/PR_Q9LZX6,none +15.0089383,PR:Q9M880,http://purl.obolibrary.org/obo/PR_Q9M880,none +15.0089383,PR:Q9NFP5,http://purl.obolibrary.org/obo/PR_Q9NFP5,none +15.0089383,PR:Q9QXT4,http://purl.obolibrary.org/obo/PR_Q9QXT4,none +15.0089383,PR:Q9S725,http://purl.obolibrary.org/obo/PR_Q9S725,none +15.0089383,PR:Q9S789,http://purl.obolibrary.org/obo/PR_Q9S789,none +15.0089383,PR:Q9S7M2,http://purl.obolibrary.org/obo/PR_Q9S7M2,none +15.0089383,PR:Q9SEU7,http://purl.obolibrary.org/obo/PR_Q9SEU7,none +15.0089383,PR:Q9SH93,http://purl.obolibrary.org/obo/PR_Q9SH93,none +15.0089383,PR:Q9SJ10,http://purl.obolibrary.org/obo/PR_Q9SJ10,none +15.0089383,PR:Q9SJE2,http://purl.obolibrary.org/obo/PR_Q9SJE2,none +15.0089383,PR:Q9SL41,http://purl.obolibrary.org/obo/PR_Q9SL41,none +15.0089383,PR:Q9SN74,http://purl.obolibrary.org/obo/PR_Q9SN74,none +15.0089383,PR:Q9SU67,http://purl.obolibrary.org/obo/PR_Q9SU67,none +15.0089383,PR:Q9SWS1,http://purl.obolibrary.org/obo/PR_Q9SWS1,none +15.0089383,PR:Q9SX29,http://purl.obolibrary.org/obo/PR_Q9SX29,none +15.0089383,PR:Q9SZY4,http://purl.obolibrary.org/obo/PR_Q9SZY4,none +15.0089383,PR:Q9T0D3,http://purl.obolibrary.org/obo/PR_Q9T0D3,none +15.0089383,PR:Q9VGH1,http://purl.obolibrary.org/obo/PR_Q9VGH1,none +15.0089383,PR:Q9VHH9,http://purl.obolibrary.org/obo/PR_Q9VHH9,none +15.0089383,PR:Q9XI47,http://purl.obolibrary.org/obo/PR_Q9XI47,none +15.0089383,PR:Q9ZQI2,http://purl.obolibrary.org/obo/PR_Q9ZQI2,none +15.0089383,PR:Q9ZUV3,http://purl.obolibrary.org/obo/PR_Q9ZUV3,none +15.0089383,SO:0000108,http://purl.obolibrary.org/obo/SO_0000108,mRNA_with_frameshift +15.0089383,SO:0000424,http://purl.obolibrary.org/obo/SO_0000424,U3_LTR_region +15.0089383,SO:0000463,http://purl.obolibrary.org/obo/SO_0000463,encodes_alternately_spliced_transcripts +15.0089383,SO:0000635,http://purl.obolibrary.org/obo/SO_0000635,mini_exon_donor_RNA +15.0089383,SO:0000679,http://purl.obolibrary.org/obo/SO_0000679,non_canonical_five_prime_splice_site +15.0089383,SO:0000848,http://purl.obolibrary.org/obo/SO_0000848,LTR_component +15.0089383,SO:0000995,http://purl.obolibrary.org/obo/SO_0000995,consensus_mRNA +15.0089383,SO:0001022,http://purl.obolibrary.org/obo/SO_0001022,inversion_breakpoint +15.0089383,SO:0001269,http://purl.obolibrary.org/obo/SO_0001269,SRP_RNA_gene +15.0089383,SO:0001482,http://purl.obolibrary.org/obo/SO_0001482,shadow_enhancer +15.0089383,SO:0001574,http://purl.obolibrary.org/obo/SO_0001574,splice_acceptor_variant +15.0089383,SO:0001619,http://purl.obolibrary.org/obo/SO_0001619,non_coding_transcript_variant +15.0089383,SO:0001621,http://purl.obolibrary.org/obo/SO_0001621,NMD_transcript_variant +15.0089383,SO:0001640,http://purl.obolibrary.org/obo/SO_0001640,RNase_MRP_RNA_gene +15.0089383,SO:0001847,http://purl.obolibrary.org/obo/SO_0001847,forkhead_motif +15.0089383,SO:0001960,http://purl.obolibrary.org/obo/SO_0001960,5_hydroxymethylcytosine +15.0089383,SO:0001966,http://purl.obolibrary.org/obo/SO_0001966,5_carboxylcytosine +15.0089383,SO:0002140,http://purl.obolibrary.org/obo/SO_0002140,early_origin_of_replication +15.0089383,UBERON:0000052,http://purl.obolibrary.org/obo/UBERON_0000052,fornix of brain +15.0089383,UBERON:0001216,http://purl.obolibrary.org/obo/UBERON_0001216,jejunal vein +15.0089383,UBERON:0001336,http://purl.obolibrary.org/obo/UBERON_0001336,membranous urethra of male or female +15.0089383,UBERON:0001548,http://purl.obolibrary.org/obo/UBERON_0001548,lateral marginal vein +15.0089383,UBERON:0001672,http://purl.obolibrary.org/obo/UBERON_0001672,anterior cerebral vein +15.0089383,UBERON:0001694,http://purl.obolibrary.org/obo/UBERON_0001694,petrous part of temporal bone +15.0089383,UBERON:0001912,http://purl.obolibrary.org/obo/UBERON_0001912,lobule of mammary gland +15.0089383,UBERON:0002259,http://purl.obolibrary.org/obo/UBERON_0002259,corpora quadrigemina +15.0089383,UBERON:0002309,http://purl.obolibrary.org/obo/UBERON_0002309,medial longitudinal fasciculus +15.0089383,UBERON:0002596,http://purl.obolibrary.org/obo/UBERON_0002596,ventral posterior nucleus of thalamus +15.0089383,UBERON:0002675,http://purl.obolibrary.org/obo/UBERON_0002675,diagonal sulcus +15.0089383,UBERON:0002691,http://purl.obolibrary.org/obo/UBERON_0002691,ventral tegmental area +15.0089383,UBERON:0002980,http://purl.obolibrary.org/obo/UBERON_0002980,opercular part of inferior frontal gyrus +15.0089383,UBERON:0003117,http://purl.obolibrary.org/obo/UBERON_0003117,pharyngeal arch 6 +15.0089383,UBERON:0003250,http://purl.obolibrary.org/obo/UBERON_0003250,rectus capitis lateralis muscle +15.0089383,UBERON:0003324,http://purl.obolibrary.org/obo/UBERON_0003324,mesenchyme of lower jaw +15.0089383,UBERON:0003360,http://purl.obolibrary.org/obo/UBERON_0003360,epithelium of parotid gland +15.0089383,UBERON:0003416,http://purl.obolibrary.org/obo/UBERON_0003416,mesenchyme of tongue +15.0089383,UBERON:0003436,http://purl.obolibrary.org/obo/UBERON_0003436,shoulder nerve +15.0089383,UBERON:0003549,http://purl.obolibrary.org/obo/UBERON_0003549,brain pia mater +15.0089383,UBERON:0003942,http://purl.obolibrary.org/obo/UBERON_0003942,somatic sensory system +15.0089383,UBERON:0003961,http://purl.obolibrary.org/obo/UBERON_0003961,cingulum of brain +15.0089383,UBERON:0003970,http://purl.obolibrary.org/obo/UBERON_0003970,placental labyrinth vasculature +15.0089383,UBERON:0004198,http://purl.obolibrary.org/obo/UBERON_0004198,comma-shaped body +15.0089383,UBERON:0004469,http://purl.obolibrary.org/obo/UBERON_0004469,musculature of back +15.0089383,UBERON:0004625,http://purl.obolibrary.org/obo/UBERON_0004625,sacral vertebra 4 +15.0089383,UBERON:0004642,http://purl.obolibrary.org/obo/UBERON_0004642,third ventricle ependyma +15.0089383,UBERON:0004739,http://purl.obolibrary.org/obo/UBERON_0004739,pronephric glomerulus +15.0089383,UBERON:0004763,http://purl.obolibrary.org/obo/UBERON_0004763,endochondral bone tissue +15.0089383,UBERON:0004774,http://purl.obolibrary.org/obo/UBERON_0004774,inferior eyelid tarsus +15.0089383,UBERON:0004790,http://purl.obolibrary.org/obo/UBERON_0004790,skin mucous gland +15.0089383,UBERON:0005106,http://purl.obolibrary.org/obo/UBERON_0005106,metanephric tubule +15.0089383,UBERON:0005310,http://purl.obolibrary.org/obo/UBERON_0005310,pronephric nephron tubule +15.0089383,UBERON:0005330,http://purl.obolibrary.org/obo/UBERON_0005330,mesonephric nephron epithelium +15.0089383,UBERON:0005361,http://purl.obolibrary.org/obo/UBERON_0005361,superior glossopharyngeal IX ganglion +15.0089383,UBERON:0005376,http://purl.obolibrary.org/obo/UBERON_0005376,olfactory bulb external plexiform layer +15.0089383,UBERON:0005443,http://purl.obolibrary.org/obo/UBERON_0005443,filum terminale +15.0089383,UBERON:0005450,http://purl.obolibrary.org/obo/UBERON_0005450,greater sac cavity +15.0089383,UBERON:0005463,http://purl.obolibrary.org/obo/UBERON_0005463,subcapsular sinus of lymph node +15.0089383,UBERON:0006233,http://purl.obolibrary.org/obo/UBERON_0006233,female genital tubercle +15.0089383,UBERON:0006276,http://purl.obolibrary.org/obo/UBERON_0006276,perioptic mesenchyme +15.0089383,UBERON:0006461,http://purl.obolibrary.org/obo/UBERON_0006461,second sacral spinal cord segment +15.0089383,UBERON:0006588,http://purl.obolibrary.org/obo/UBERON_0006588,round ligament of liver +15.0089383,UBERON:0006674,http://purl.obolibrary.org/obo/UBERON_0006674,inguinal ring +15.0089383,UBERON:0006696,http://purl.obolibrary.org/obo/UBERON_0006696,mammillothalamic axonal tract +15.0089383,UBERON:0006726,http://purl.obolibrary.org/obo/UBERON_0006726,outer canthus +15.0089383,UBERON:0006727,http://purl.obolibrary.org/obo/UBERON_0006727,liver left lateral lobe +15.0089383,UBERON:0006729,http://purl.obolibrary.org/obo/UBERON_0006729,liver perisinusoidal space +15.0089383,UBERON:0006765,http://purl.obolibrary.org/obo/UBERON_0006765,left anterior vena cava +15.0089383,UBERON:0006787,http://purl.obolibrary.org/obo/UBERON_0006787,middle white layer of superior colliculus +15.0089383,UBERON:0006812,http://purl.obolibrary.org/obo/UBERON_0006812,mental foramen +15.0089383,UBERON:0007215,http://purl.obolibrary.org/obo/UBERON_0007215,trabecula cranii +15.0089383,UBERON:0007250,http://purl.obolibrary.org/obo/UBERON_0007250,lingual tonsil +15.0089383,UBERON:0007268,http://purl.obolibrary.org/obo/UBERON_0007268,upper esophageal sphincter +15.0089383,UBERON:0007371,http://purl.obolibrary.org/obo/UBERON_0007371,superior surface of tongue +15.0089383,UBERON:0007629,http://purl.obolibrary.org/obo/UBERON_0007629,medial septal complex +15.0089383,UBERON:0008947,http://purl.obolibrary.org/obo/UBERON_0008947,respiratory primordium +15.0089383,UBERON:0009014,http://purl.obolibrary.org/obo/UBERON_0009014,lower back skin +15.0089383,UBERON:0009572,http://purl.obolibrary.org/obo/UBERON_0009572,lumen of central canal of spinal cord +15.0089383,UBERON:0009769,http://purl.obolibrary.org/obo/UBERON_0009769,left common cardinal vein +15.0089383,UBERON:0009778,http://purl.obolibrary.org/obo/UBERON_0009778,pleural sac +15.0089383,UBERON:0009985,http://purl.obolibrary.org/obo/UBERON_0009985,lateral condyle of femur +15.0089383,UBERON:0010060,http://purl.obolibrary.org/obo/UBERON_0010060,pharyngeal opening of pharyngotympanic tube +15.0089383,UBERON:0010212,http://purl.obolibrary.org/obo/UBERON_0010212,laryngeal apparatus +15.0089383,UBERON:0010241,http://purl.obolibrary.org/obo/UBERON_0010241,molar gland +15.0089383,UBERON:0010245,http://purl.obolibrary.org/obo/UBERON_0010245,retinal tapetum lucidum +15.0089383,UBERON:0010710,http://purl.obolibrary.org/obo/UBERON_0010710,pectoral fin skeleton +15.0089383,UBERON:0010930,http://purl.obolibrary.org/obo/UBERON_0010930,interhyoideus +15.0089383,UBERON:0011319,http://purl.obolibrary.org/obo/UBERON_0011319,disk of temporomandibular joint +15.0089383,UBERON:0011584,http://purl.obolibrary.org/obo/UBERON_0011584,zeugopodial skeleton +15.0089383,UBERON:0011587,http://purl.obolibrary.org/obo/UBERON_0011587,pre-dentine +15.0089383,UBERON:0011590,http://purl.obolibrary.org/obo/UBERON_0011590,commissure of diencephalon +15.0089383,UBERON:0011614,http://purl.obolibrary.org/obo/UBERON_0011614,basihyal element +15.0089383,UBERON:0011802,http://purl.obolibrary.org/obo/UBERON_0011802,feather bud +15.0089383,UBERON:0012073,http://purl.obolibrary.org/obo/UBERON_0012073,tooth of palatine bone +15.0089383,UBERON:0012239,http://purl.obolibrary.org/obo/UBERON_0012239,urinary bladder vasculature +15.0089383,UBERON:0012350,http://purl.obolibrary.org/obo/UBERON_0012350,carpal pad +15.0089383,UBERON:0012363,http://purl.obolibrary.org/obo/UBERON_0012363,thyroid follicle epithelium +15.0089383,UBERON:0012378,http://purl.obolibrary.org/obo/UBERON_0012378,muscle layer of urinary bladder +15.0089383,UBERON:0012615,http://purl.obolibrary.org/obo/UBERON_0012615,umbilical smooth muscle +15.0089383,UBERON:0012621,http://purl.obolibrary.org/obo/UBERON_0012621,muscle of Aristotle's lantern +15.0089383,UBERON:0013514,http://purl.obolibrary.org/obo/UBERON_0013514,space surrounding organism +15.0089383,UBERON:0013632,http://purl.obolibrary.org/obo/UBERON_0013632,sesamoid cartilage +15.0089383,UBERON:0013693,http://purl.obolibrary.org/obo/UBERON_0013693,cerebral cortex neuropil +15.0089383,UBERON:0014464,http://purl.obolibrary.org/obo/UBERON_0014464,renal fat pad +15.0089383,UBERON:0014692,http://purl.obolibrary.org/obo/UBERON_0014692,superficial epigastric vein +15.0089383,UBERON:0014738,http://purl.obolibrary.org/obo/UBERON_0014738,medial pallium +15.0089383,UBERON:0015157,http://purl.obolibrary.org/obo/UBERON_0015157,zygomatico-orbital artery +15.0089383,UBERON:0015844,http://purl.obolibrary.org/obo/UBERON_0015844,molar dental papilla +15.0089383,UBERON:0016430,http://purl.obolibrary.org/obo/UBERON_0016430,palmar branch of median nerve +15.0089383,UBERON:0017258,http://purl.obolibrary.org/obo/UBERON_0017258,placentome of cotyledonary placenta +15.0089383,UBERON:0018108,http://purl.obolibrary.org/obo/UBERON_0018108,superior auricular muscle +15.0089383,UBERON:0018396,http://purl.obolibrary.org/obo/UBERON_0018396,pulmonary baroreceptor +15.0089383,UBERON:0018549,http://purl.obolibrary.org/obo/UBERON_0018549,ventral wall of dorsal aorta +15.0089383,UBERON:0019232,http://purl.obolibrary.org/obo/UBERON_0019232,"manual digit 2, 3 or 4" +15.0089383,UBERON:0022248,http://purl.obolibrary.org/obo/UBERON_0022248,cerebral nerve fasciculus +15.0089383,UBERON:0022398,http://purl.obolibrary.org/obo/UBERON_0022398,paracingulate gyrus +15.0089383,UBERON:0025591,http://purl.obolibrary.org/obo/UBERON_0025591,gABAergic system +15.0089383,UBERON:0034902,http://purl.obolibrary.org/obo/UBERON_0034902,sacral sympathetic nerve trunk +15.0089383,UBERON:0035788,http://purl.obolibrary.org/obo/UBERON_0035788,layer of CA3 field +15.0089383,UBERON:2000001,http://purl.obolibrary.org/obo/UBERON_2000001,Kupffer's vesicle +15.0089383,UBERON:2000033,http://purl.obolibrary.org/obo/UBERON_2000033,intermediate cell mass of mesoderm +15.0089383,UBERON:2000096,http://purl.obolibrary.org/obo/UBERON_2000096,cardinal system +15.0089383,UBERON:2000305,http://purl.obolibrary.org/obo/UBERON_2000305,ventral sulcus +15.0089383,UBERON:2000350,http://purl.obolibrary.org/obo/UBERON_2000350,epipleural +15.0089383,UBERON:2000573,http://purl.obolibrary.org/obo/UBERON_2000573,internal cellular layer +15.0089383,UBERON:2000622,http://purl.obolibrary.org/obo/UBERON_2000622,barbel +15.0089383,UBERON:2000733,http://purl.obolibrary.org/obo/UBERON_2000733,somite 7 +15.0089383,UBERON:2001482,http://purl.obolibrary.org/obo/UBERON_2001482,middle lateral line nerve +15.0089383,UBERON:2002172,http://purl.obolibrary.org/obo/UBERON_2002172,branchial mesenchyme +15.0089383,UBERON:2005050,http://purl.obolibrary.org/obo/UBERON_2005050,palatocerebral artery +15.0089383,UBERON:3001005,http://purl.obolibrary.org/obo/UBERON_3001005,dorsolateral fold +15.0089383,UBERON:4300028,http://purl.obolibrary.org/obo/UBERON_4300028,posterior ventrolateral plate +15.0089383,UBERON:4300134,http://purl.obolibrary.org/obo/UBERON_4300134,lateral commissure +15.163089,CHEBI:1269,http://purl.obolibrary.org/obo/CHEBI_1269,2-polyprenylphenol +15.163089,CHEBI:131906,http://purl.obolibrary.org/obo/CHEBI_131906,4-pyranones +15.163089,CHEBI:132944,http://purl.obolibrary.org/obo/CHEBI_132944,octadec-9-enoate +15.163089,CHEBI:137504,http://purl.obolibrary.org/obo/CHEBI_137504,quinoxaline herbicide +15.163089,CHEBI:15611,http://purl.obolibrary.org/obo/CHEBI_15611,sarcosine +15.163089,CHEBI:15940,http://purl.obolibrary.org/obo/CHEBI_15940,nicotinic acid +15.163089,CHEBI:16000,http://purl.obolibrary.org/obo/CHEBI_16000,ethanolamine +15.163089,CHEBI:16397,http://purl.obolibrary.org/obo/CHEBI_16397,formamide +15.163089,CHEBI:16460,http://purl.obolibrary.org/obo/CHEBI_16460,polyprenol phosphate +15.163089,CHEBI:16482,http://purl.obolibrary.org/obo/CHEBI_16482,naphthalene +15.163089,CHEBI:16956,http://purl.obolibrary.org/obo/CHEBI_16956,N-Substituted aminoacyl-tRNA +15.163089,CHEBI:17002,http://purl.obolibrary.org/obo/CHEBI_17002,cholesteryl ester +15.163089,CHEBI:17169,http://purl.obolibrary.org/obo/CHEBI_17169,benzaldehyde +15.163089,CHEBI:17594,http://purl.obolibrary.org/obo/CHEBI_17594,hydroquinone +15.163089,CHEBI:17701,http://purl.obolibrary.org/obo/CHEBI_17701,benzenediol +15.163089,CHEBI:17893,http://purl.obolibrary.org/obo/CHEBI_17893,(2R)-2-hydroxy monocarboxylic acid +15.163089,CHEBI:18211,http://purl.obolibrary.org/obo/CHEBI_18211,citrulline +15.163089,CHEBI:18405,http://purl.obolibrary.org/obo/CHEBI_18405,pyridoxal 5'-phosphate +15.163089,CHEBI:22339,http://purl.obolibrary.org/obo/CHEBI_22339,alkyne +15.163089,CHEBI:24583,http://purl.obolibrary.org/obo/CHEBI_24583,hexitol +15.163089,CHEBI:24697,http://purl.obolibrary.org/obo/CHEBI_24697,hydroxyflavanone +15.163089,CHEBI:25078,http://purl.obolibrary.org/obo/CHEBI_25078,luciferin +15.163089,CHEBI:25186,http://purl.obolibrary.org/obo/CHEBI_25186,p-menthane monoterpenoid +15.163089,CHEBI:25216,http://purl.obolibrary.org/obo/CHEBI_25216,metalloporphyrin +15.163089,CHEBI:25305,http://purl.obolibrary.org/obo/CHEBI_25305,methylguanine +15.163089,CHEBI:25364,http://purl.obolibrary.org/obo/CHEBI_25364,molecular ion +15.163089,CHEBI:25713,http://purl.obolibrary.org/obo/CHEBI_25713,organosilicon compound +15.163089,CHEBI:2580,http://purl.obolibrary.org/obo/CHEBI_2580,unsaturated fatty acid anion +15.163089,CHEBI:25961,http://purl.obolibrary.org/obo/CHEBI_25961,phenanthrenes +15.163089,CHEBI:26147,http://purl.obolibrary.org/obo/CHEBI_26147,piperidine alkaloid +15.163089,CHEBI:26250,http://purl.obolibrary.org/obo/CHEBI_26250,prenol phosphate +15.163089,CHEBI:26512,http://purl.obolibrary.org/obo/CHEBI_26512,quinolinemonocarboxylic acid +15.163089,CHEBI:26875,http://purl.obolibrary.org/obo/CHEBI_26875,terpenyl phosphate +15.163089,CHEBI:27518,http://purl.obolibrary.org/obo/CHEBI_27518,acetylene +15.163089,CHEBI:28580,http://purl.obolibrary.org/obo/CHEBI_28580,3-mercaptolactic acid +15.163089,CHEBI:28623,http://purl.obolibrary.org/obo/CHEBI_28623,campesterol +15.163089,CHEBI:29825,http://purl.obolibrary.org/obo/CHEBI_29825,sulfonyl group +15.163089,CHEBI:30816,http://purl.obolibrary.org/obo/CHEBI_30816,vanillic acid +15.163089,CHEBI:30823,http://purl.obolibrary.org/obo/CHEBI_30823,oleate +15.163089,CHEBI:30853,http://purl.obolibrary.org/obo/CHEBI_30853,glycyrrhetinic acid +15.163089,CHEBI:3130,http://purl.obolibrary.org/obo/CHEBI_3130,bitertanol +15.163089,CHEBI:31493,http://purl.obolibrary.org/obo/CHEBI_31493,dilazep dihydrochloride +15.163089,CHEBI:31962,http://purl.obolibrary.org/obo/CHEBI_31962,paraformaldehyde macromolecule +15.163089,CHEBI:3207,http://purl.obolibrary.org/obo/CHEBI_3207,budesonide +15.163089,CHEBI:33216,http://purl.obolibrary.org/obo/CHEBI_33216,bisphenol A +15.163089,CHEBI:33345,http://purl.obolibrary.org/obo/CHEBI_33345,titanium group element atom +15.163089,CHEBI:33350,http://purl.obolibrary.org/obo/CHEBI_33350,chromium group element atom +15.163089,CHEBI:33443,http://purl.obolibrary.org/obo/CHEBI_33443,halogen oxoanion +15.163089,CHEBI:33572,http://purl.obolibrary.org/obo/CHEBI_33572,resorcinols +15.163089,CHEBI:33623,http://purl.obolibrary.org/obo/CHEBI_33623,aluminium oxides +15.163089,CHEBI:33626,http://purl.obolibrary.org/obo/CHEBI_33626,aluminium hydroxides +15.163089,CHEBI:33650,http://purl.obolibrary.org/obo/CHEBI_33650,acyclic acetylene +15.163089,CHEBI:33778,http://purl.obolibrary.org/obo/CHEBI_33778,galactonates +15.163089,CHEBI:33808,http://purl.obolibrary.org/obo/CHEBI_33808,galacturonic acids +15.163089,CHEBI:34555,http://purl.obolibrary.org/obo/CHEBI_34555,Bay-K-8644 +15.163089,CHEBI:35026,http://purl.obolibrary.org/obo/CHEBI_35026,triethylamine +15.163089,CHEBI:35369,http://purl.obolibrary.org/obo/CHEBI_35369,pentasaccharide +15.163089,CHEBI:35746,http://purl.obolibrary.org/obo/CHEBI_35746,fatty aldehyde +15.163089,CHEBI:35790,http://purl.obolibrary.org/obo/CHEBI_35790,oxazole +15.163089,CHEBI:36112,http://purl.obolibrary.org/obo/CHEBI_36112,pyridinedicarboxylic acid +15.163089,CHEBI:36164,http://purl.obolibrary.org/obo/CHEBI_36164,amino dicarboxylic acid +15.163089,CHEBI:36500,http://purl.obolibrary.org/obo/CHEBI_36500,glucosylceramide +15.163089,CHEBI:36624,http://purl.obolibrary.org/obo/CHEBI_36624,naphthyridine +15.163089,CHEBI:36796,http://purl.obolibrary.org/obo/CHEBI_36796,duloxetine +15.163089,CHEBI:36970,http://purl.obolibrary.org/obo/CHEBI_36970,vitamin B6 phosphate +15.163089,CHEBI:37089,http://purl.obolibrary.org/obo/CHEBI_37089,ortho-fused tricyclic hydrocarbon +15.163089,CHEBI:37171,http://purl.obolibrary.org/obo/CHEBI_37171,silanols +15.163089,CHEBI:37533,http://purl.obolibrary.org/obo/CHEBI_37533,azo compound +15.163089,CHEBI:37761,http://purl.obolibrary.org/obo/CHEBI_37761,metal hydride +15.163089,CHEBI:37775,http://purl.obolibrary.org/obo/CHEBI_37775,molybdenum oxide +15.163089,CHEBI:37841,http://purl.obolibrary.org/obo/CHEBI_37841,isoprenoid phosphate +15.163089,CHEBI:37944,http://purl.obolibrary.org/obo/CHEBI_37944,polysaccharide sulfate +15.163089,CHEBI:37963,http://purl.obolibrary.org/obo/CHEBI_37963,pyranone +15.163089,CHEBI:38187,http://purl.obolibrary.org/obo/CHEBI_38187,pyridinecarbaldehyde +15.163089,CHEBI:38314,http://purl.obolibrary.org/obo/CHEBI_38314,pyrazines +15.163089,CHEBI:38706,http://purl.obolibrary.org/obo/CHEBI_38706,pediculicide +15.163089,CHEBI:38821,http://purl.obolibrary.org/obo/CHEBI_38821,quinoxaline pesticide +15.163089,CHEBI:39365,http://purl.obolibrary.org/obo/CHEBI_39365,organonitrogen pesticide +15.163089,CHEBI:39460,http://purl.obolibrary.org/obo/CHEBI_39460,"xi,xi-pilocarpine" +15.163089,CHEBI:39462,http://purl.obolibrary.org/obo/CHEBI_39462,pilocarpine +15.163089,CHEBI:42355,http://purl.obolibrary.org/obo/CHEBI_42355,erythromycin A +15.163089,CHEBI:42645,http://purl.obolibrary.org/obo/CHEBI_42645,fluoro group +15.163089,CHEBI:43572,http://purl.obolibrary.org/obo/CHEBI_43572,kojic acid +15.163089,CHEBI:44485,http://purl.obolibrary.org/obo/CHEBI_44485,N-ethylmaleimide +15.163089,CHEBI:44976,http://purl.obolibrary.org/obo/CHEBI_44976,phosphonic acid +15.163089,CHEBI:46770,http://purl.obolibrary.org/obo/CHEBI_46770,pyrrolidinecarboxamide +15.163089,CHEBI:46915,http://purl.obolibrary.org/obo/CHEBI_46915,sarcosinate +15.163089,CHEBI:48121,http://purl.obolibrary.org/obo/CHEBI_48121,polyene +15.163089,CHEBI:48367,http://purl.obolibrary.org/obo/CHEBI_48367,hydrobromide +15.163089,CHEBI:4877,http://purl.obolibrary.org/obo/CHEBI_4877,ethambutol +15.163089,CHEBI:4883,http://purl.obolibrary.org/obo/CHEBI_4883,ethidium bromide +15.163089,CHEBI:50513,http://purl.obolibrary.org/obo/CHEBI_50513,mydriatic agent +15.163089,CHEBI:50523,http://purl.obolibrary.org/obo/CHEBI_50523,butenolide +15.163089,CHEBI:50594,http://purl.obolibrary.org/obo/CHEBI_50594,carbon nanotube +15.163089,CHEBI:50667,http://purl.obolibrary.org/obo/CHEBI_50667,mercaptopurine +15.163089,CHEBI:50753,http://purl.obolibrary.org/obo/CHEBI_50753,isoflavonoid +15.163089,CHEBI:50812,http://purl.obolibrary.org/obo/CHEBI_50812,carbon nanostructure +15.163089,CHEBI:50836,http://purl.obolibrary.org/obo/CHEBI_50836,zinc oxide nanoparticle +15.163089,CHEBI:51119,http://purl.obolibrary.org/obo/CHEBI_51119,tricyclic hydrocarbon +15.163089,CHEBI:51339,http://purl.obolibrary.org/obo/CHEBI_51339,adamantanes +15.163089,CHEBI:52216,http://purl.obolibrary.org/obo/CHEBI_52216,photobiochemical role +15.163089,CHEBI:52303,http://purl.obolibrary.org/obo/CHEBI_52303,sterol methyltransferase inhibitor +15.163089,CHEBI:52640,http://purl.obolibrary.org/obo/CHEBI_52640,N-acylethanolamine +15.163089,CHEBI:53201,http://purl.obolibrary.org/obo/CHEBI_53201,polycarbonate macromolecule +15.163089,CHEBI:53223,http://purl.obolibrary.org/obo/CHEBI_53223,poly(ether) macromolecule +15.163089,CHEBI:53311,http://purl.obolibrary.org/obo/CHEBI_53311,sodium alginate +15.163089,CHEBI:53421,http://purl.obolibrary.org/obo/CHEBI_53421,poly(oxymethylene) macromolecule +15.163089,CHEBI:53536,http://purl.obolibrary.org/obo/CHEBI_53536,poly(alkylene oxide) macromolecule +15.163089,CHEBI:5445,http://purl.obolibrary.org/obo/CHEBI_5445,glyceraldehyde +15.163089,CHEBI:55517,http://purl.obolibrary.org/obo/CHEBI_55517,trichothecene +15.163089,CHEBI:60851,http://purl.obolibrary.org/obo/CHEBI_60851,"trans-2,3-dihydro-3-hydroxyanthranilic acid" +15.163089,CHEBI:61474,http://purl.obolibrary.org/obo/CHEBI_61474,polyaniline polymer +15.163089,CHEBI:61774,http://purl.obolibrary.org/obo/CHEBI_61774,inositol phosphorylceramide synthase inhibitor +15.163089,CHEBI:61950,http://purl.obolibrary.org/obo/CHEBI_61950,microtubule-stabilising agent +15.163089,CHEBI:64948,http://purl.obolibrary.org/obo/CHEBI_64948,pyrrolizidine alkaloid +15.163089,CHEBI:64985,http://purl.obolibrary.org/obo/CHEBI_64985,bioconjugate +15.163089,CHEBI:71245,http://purl.obolibrary.org/obo/CHEBI_71245,asenapine maleate +15.163089,CHEBI:71939,http://purl.obolibrary.org/obo/CHEBI_71939,diterpene glycoside +15.163089,CHEBI:73804,http://purl.obolibrary.org/obo/CHEBI_73804,Gly-Asp +15.163089,CHEBI:75960,http://purl.obolibrary.org/obo/CHEBI_75960,denatured polymer +15.163089,CHEBI:76655,http://purl.obolibrary.org/obo/CHEBI_76655,EC 2.1.* (C1-transferase) inhibitor +15.163089,CHEBI:76871,http://purl.obolibrary.org/obo/CHEBI_76871,EC 2.1.1.* (methyltransferases) inhibitor +15.163089,CHEBI:76881,http://purl.obolibrary.org/obo/CHEBI_76881,EC 2.7.1.* (phosphotransferases with an alcohol group as acceptor) inhibitor +15.163089,CHEBI:77971,http://purl.obolibrary.org/obo/CHEBI_77971,raising agent +15.163089,CHEBI:78049,http://purl.obolibrary.org/obo/CHEBI_78049,octadecenoate +15.163089,CHEBI:80355,http://purl.obolibrary.org/obo/CHEBI_80355,Blue pigment +15.163089,CHEBI:81943,http://purl.obolibrary.org/obo/CHEBI_81943,quizalofop +15.163089,CHEBI:82680,http://purl.obolibrary.org/obo/CHEBI_82680,monounsaturated fatty acid anion +15.163089,CHEBI:86421,http://purl.obolibrary.org/obo/CHEBI_86421,2-nitrophenols +15.163089,CHEBI:9177,http://purl.obolibrary.org/obo/CHEBI_9177,sodium deoxycholate +15.163089,CHEBI:9381,http://purl.obolibrary.org/obo/CHEBI_9381,T-2 toxin +15.163089,CL:0000308,http://purl.obolibrary.org/obo/CL_0000308,metal ion accumulating cell +15.163089,CL:0000324,http://purl.obolibrary.org/obo/CL_0000324,metanephric mesenchyme stem cell +15.163089,CL:0000614,http://purl.obolibrary.org/obo/CL_0000614,basophilic myelocyte +15.163089,CL:0000742,http://purl.obolibrary.org/obo/CL_0000742,periarticular chondrocyte +15.163089,CL:0000914,http://purl.obolibrary.org/obo/CL_0000914,immature NK T cell +15.163089,CL:0000948,http://purl.obolibrary.org/obo/CL_0000948,IgE memory B cell +15.163089,CL:0002047,http://purl.obolibrary.org/obo/CL_0002047,Fraction B precursor B cell +15.163089,CL:0002060,http://purl.obolibrary.org/obo/CL_0002060,melanophage +15.163089,CL:0002400,http://purl.obolibrary.org/obo/CL_0002400,Fraction B/C precursor B cell +15.163089,CL:0002436,http://purl.obolibrary.org/obo/CL_0002436,mature CD4 single-positive thymocyte +15.163089,CL:0002570,http://purl.obolibrary.org/obo/CL_0002570,mesenchymal stem cell of adipose +15.163089,CL:0002575,http://purl.obolibrary.org/obo/CL_0002575,central nervous system pericyte +15.163089,CL:0002610,http://purl.obolibrary.org/obo/CL_0002610,raphe nuclei neuron +15.163089,CL:0002616,http://purl.obolibrary.org/obo/CL_0002616,perirenal adipocyte cell +15.163089,CL:0002658,http://purl.obolibrary.org/obo/CL_0002658,glandular cell of the large intestine +15.163089,CL:0002673,http://purl.obolibrary.org/obo/CL_0002673,tongue muscle cell +15.163089,CL:0005008,http://purl.obolibrary.org/obo/CL_0005008,macular hair cell +15.163089,CL:1000398,http://purl.obolibrary.org/obo/CL_1000398,endothelial cell of hepatic sinusoid +15.163089,DRUGBANK:DB00045,http://purl.obolibrary.org/obo/DRUGBANK_DB00045,none +15.163089,DRUGBANK:DB01615,http://purl.obolibrary.org/obo/DRUGBANK_DB01615,none +15.163089,DRUGBANK:DB01668,http://purl.obolibrary.org/obo/DRUGBANK_DB01668,none +15.163089,DRUGBANK:DB01711,http://purl.obolibrary.org/obo/DRUGBANK_DB01711,none +15.163089,DRUGBANK:DB01831,http://purl.obolibrary.org/obo/DRUGBANK_DB01831,none +15.163089,DRUGBANK:DB02102,http://purl.obolibrary.org/obo/DRUGBANK_DB02102,none +15.163089,DRUGBANK:DB02306,http://purl.obolibrary.org/obo/DRUGBANK_DB02306,none +15.163089,DRUGBANK:DB02455,http://purl.obolibrary.org/obo/DRUGBANK_DB02455,none +15.163089,DRUGBANK:DB02532,http://purl.obolibrary.org/obo/DRUGBANK_DB02532,none +15.163089,DRUGBANK:DB02641,http://purl.obolibrary.org/obo/DRUGBANK_DB02641,none +15.163089,DRUGBANK:DB02810,http://purl.obolibrary.org/obo/DRUGBANK_DB02810,none +15.163089,DRUGBANK:DB02851,http://purl.obolibrary.org/obo/DRUGBANK_DB02851,none +15.163089,DRUGBANK:DB03056,http://purl.obolibrary.org/obo/DRUGBANK_DB03056,none +15.163089,DRUGBANK:DB03163,http://purl.obolibrary.org/obo/DRUGBANK_DB03163,none +15.163089,DRUGBANK:DB03303,http://purl.obolibrary.org/obo/DRUGBANK_DB03303,none +15.163089,DRUGBANK:DB03325,http://purl.obolibrary.org/obo/DRUGBANK_DB03325,none +15.163089,DRUGBANK:DB03412,http://purl.obolibrary.org/obo/DRUGBANK_DB03412,none +15.163089,DRUGBANK:DB03415,http://purl.obolibrary.org/obo/DRUGBANK_DB03415,none +15.163089,DRUGBANK:DB03693,http://purl.obolibrary.org/obo/DRUGBANK_DB03693,none +15.163089,DRUGBANK:DB03720,http://purl.obolibrary.org/obo/DRUGBANK_DB03720,none +15.163089,DRUGBANK:DB03753,http://purl.obolibrary.org/obo/DRUGBANK_DB03753,none +15.163089,DRUGBANK:DB03826,http://purl.obolibrary.org/obo/DRUGBANK_DB03826,none +15.163089,DRUGBANK:DB03862,http://purl.obolibrary.org/obo/DRUGBANK_DB03862,none +15.163089,DRUGBANK:DB03879,http://purl.obolibrary.org/obo/DRUGBANK_DB03879,none +15.163089,DRUGBANK:DB03948,http://purl.obolibrary.org/obo/DRUGBANK_DB03948,none +15.163089,DRUGBANK:DB04189,http://purl.obolibrary.org/obo/DRUGBANK_DB04189,none +15.163089,DRUGBANK:DB04225,http://purl.obolibrary.org/obo/DRUGBANK_DB04225,none +15.163089,DRUGBANK:DB04286,http://purl.obolibrary.org/obo/DRUGBANK_DB04286,none +15.163089,DRUGBANK:DB04538,http://purl.obolibrary.org/obo/DRUGBANK_DB04538,none +15.163089,DRUGBANK:DB04653,http://purl.obolibrary.org/obo/DRUGBANK_DB04653,none +15.163089,DRUGBANK:DB04695,http://purl.obolibrary.org/obo/DRUGBANK_DB04695,none +15.163089,DRUGBANK:DB04805,http://purl.obolibrary.org/obo/DRUGBANK_DB04805,none +15.163089,DRUGBANK:DB04852,http://purl.obolibrary.org/obo/DRUGBANK_DB04852,none +15.163089,DRUGBANK:DB05093,http://purl.obolibrary.org/obo/DRUGBANK_DB05093,none +15.163089,DRUGBANK:DB05118,http://purl.obolibrary.org/obo/DRUGBANK_DB05118,none +15.163089,DRUGBANK:DB05121,http://purl.obolibrary.org/obo/DRUGBANK_DB05121,none +15.163089,DRUGBANK:DB05140,http://purl.obolibrary.org/obo/DRUGBANK_DB05140,none +15.163089,DRUGBANK:DB05173,http://purl.obolibrary.org/obo/DRUGBANK_DB05173,none +15.163089,DRUGBANK:DB05189,http://purl.obolibrary.org/obo/DRUGBANK_DB05189,none +15.163089,DRUGBANK:DB05192,http://purl.obolibrary.org/obo/DRUGBANK_DB05192,none +15.163089,DRUGBANK:DB05198,http://purl.obolibrary.org/obo/DRUGBANK_DB05198,none +15.163089,DRUGBANK:DB05225,http://purl.obolibrary.org/obo/DRUGBANK_DB05225,none +15.163089,DRUGBANK:DB05293,http://purl.obolibrary.org/obo/DRUGBANK_DB05293,none +15.163089,DRUGBANK:DB05415,http://purl.obolibrary.org/obo/DRUGBANK_DB05415,none +15.163089,DRUGBANK:DB05498,http://purl.obolibrary.org/obo/DRUGBANK_DB05498,none +15.163089,DRUGBANK:DB05650,http://purl.obolibrary.org/obo/DRUGBANK_DB05650,none +15.163089,DRUGBANK:DB05750,http://purl.obolibrary.org/obo/DRUGBANK_DB05750,none +15.163089,DRUGBANK:DB05796,http://purl.obolibrary.org/obo/DRUGBANK_DB05796,none +15.163089,DRUGBANK:DB05818,http://purl.obolibrary.org/obo/DRUGBANK_DB05818,none +15.163089,DRUGBANK:DB05950,http://purl.obolibrary.org/obo/DRUGBANK_DB05950,none +15.163089,DRUGBANK:DB05956,http://purl.obolibrary.org/obo/DRUGBANK_DB05956,none +15.163089,DRUGBANK:DB06119,http://purl.obolibrary.org/obo/DRUGBANK_DB06119,none +15.163089,DRUGBANK:DB06133,http://purl.obolibrary.org/obo/DRUGBANK_DB06133,none +15.163089,DRUGBANK:DB06305,http://purl.obolibrary.org/obo/DRUGBANK_DB06305,none +15.163089,DRUGBANK:DB06367,http://purl.obolibrary.org/obo/DRUGBANK_DB06367,none +15.163089,DRUGBANK:DB06493,http://purl.obolibrary.org/obo/DRUGBANK_DB06493,none +15.163089,DRUGBANK:DB06562,http://purl.obolibrary.org/obo/DRUGBANK_DB06562,none +15.163089,DRUGBANK:DB06569,http://purl.obolibrary.org/obo/DRUGBANK_DB06569,none +15.163089,DRUGBANK:DB06582,http://purl.obolibrary.org/obo/DRUGBANK_DB06582,none +15.163089,DRUGBANK:DB07754,http://purl.obolibrary.org/obo/DRUGBANK_DB07754,none +15.163089,DRUGBANK:DB07924,http://purl.obolibrary.org/obo/DRUGBANK_DB07924,none +15.163089,DRUGBANK:DB08009,http://purl.obolibrary.org/obo/DRUGBANK_DB08009,none +15.163089,DRUGBANK:DB08089,http://purl.obolibrary.org/obo/DRUGBANK_DB08089,none +15.163089,DRUGBANK:DB08357,http://purl.obolibrary.org/obo/DRUGBANK_DB08357,none +15.163089,DRUGBANK:DB08636,http://purl.obolibrary.org/obo/DRUGBANK_DB08636,none +15.163089,DRUGBANK:DB08975,http://purl.obolibrary.org/obo/DRUGBANK_DB08975,none +15.163089,DRUGBANK:DB08999,http://purl.obolibrary.org/obo/DRUGBANK_DB08999,none +15.163089,DRUGBANK:DB09187,http://purl.obolibrary.org/obo/DRUGBANK_DB09187,none +15.163089,DRUGBANK:DB09251,http://purl.obolibrary.org/obo/DRUGBANK_DB09251,none +15.163089,DRUGBANK:DB09493,http://purl.obolibrary.org/obo/DRUGBANK_DB09493,none +15.163089,DRUGBANK:DB09552,http://purl.obolibrary.org/obo/DRUGBANK_DB09552,none +15.163089,DRUGBANK:DB09571,http://purl.obolibrary.org/obo/DRUGBANK_DB09571,none +15.163089,DRUGBANK:DB11004,http://purl.obolibrary.org/obo/DRUGBANK_DB11004,none +15.163089,DRUGBANK:DB11096,http://purl.obolibrary.org/obo/DRUGBANK_DB11096,none +15.163089,DRUGBANK:DB11205,http://purl.obolibrary.org/obo/DRUGBANK_DB11205,none +15.163089,DRUGBANK:DB11313,http://purl.obolibrary.org/obo/DRUGBANK_DB11313,none +15.163089,DRUGBANK:DB11547,http://purl.obolibrary.org/obo/DRUGBANK_DB11547,none +15.163089,DRUGBANK:DB11683,http://purl.obolibrary.org/obo/DRUGBANK_DB11683,none +15.163089,DRUGBANK:DB11707,http://purl.obolibrary.org/obo/DRUGBANK_DB11707,none +15.163089,DRUGBANK:DB11795,http://purl.obolibrary.org/obo/DRUGBANK_DB11795,none +15.163089,DRUGBANK:DB11813,http://purl.obolibrary.org/obo/DRUGBANK_DB11813,none +15.163089,DRUGBANK:DB11814,http://purl.obolibrary.org/obo/DRUGBANK_DB11814,none +15.163089,DRUGBANK:DB11821,http://purl.obolibrary.org/obo/DRUGBANK_DB11821,none +15.163089,DRUGBANK:DB11849,http://purl.obolibrary.org/obo/DRUGBANK_DB11849,none +15.163089,DRUGBANK:DB11904,http://purl.obolibrary.org/obo/DRUGBANK_DB11904,none +15.163089,DRUGBANK:DB11962,http://purl.obolibrary.org/obo/DRUGBANK_DB11962,none +15.163089,DRUGBANK:DB12063,http://purl.obolibrary.org/obo/DRUGBANK_DB12063,none +15.163089,DRUGBANK:DB12115,http://purl.obolibrary.org/obo/DRUGBANK_DB12115,none +15.163089,DRUGBANK:DB12145,http://purl.obolibrary.org/obo/DRUGBANK_DB12145,none +15.163089,DRUGBANK:DB12154,http://purl.obolibrary.org/obo/DRUGBANK_DB12154,none +15.163089,DRUGBANK:DB12171,http://purl.obolibrary.org/obo/DRUGBANK_DB12171,none +15.163089,DRUGBANK:DB12199,http://purl.obolibrary.org/obo/DRUGBANK_DB12199,none +15.163089,DRUGBANK:DB12201,http://purl.obolibrary.org/obo/DRUGBANK_DB12201,none +15.163089,DRUGBANK:DB12275,http://purl.obolibrary.org/obo/DRUGBANK_DB12275,none +15.163089,DRUGBANK:DB12297,http://purl.obolibrary.org/obo/DRUGBANK_DB12297,none +15.163089,DRUGBANK:DB12344,http://purl.obolibrary.org/obo/DRUGBANK_DB12344,none +15.163089,DRUGBANK:DB12381,http://purl.obolibrary.org/obo/DRUGBANK_DB12381,none +15.163089,DRUGBANK:DB12395,http://purl.obolibrary.org/obo/DRUGBANK_DB12395,none +15.163089,DRUGBANK:DB12416,http://purl.obolibrary.org/obo/DRUGBANK_DB12416,none +15.163089,DRUGBANK:DB12423,http://purl.obolibrary.org/obo/DRUGBANK_DB12423,none +15.163089,DRUGBANK:DB12471,http://purl.obolibrary.org/obo/DRUGBANK_DB12471,none +15.163089,DRUGBANK:DB12499,http://purl.obolibrary.org/obo/DRUGBANK_DB12499,none +15.163089,DRUGBANK:DB12504,http://purl.obolibrary.org/obo/DRUGBANK_DB12504,none +15.163089,DRUGBANK:DB12526,http://purl.obolibrary.org/obo/DRUGBANK_DB12526,none +15.163089,DRUGBANK:DB12581,http://purl.obolibrary.org/obo/DRUGBANK_DB12581,none +15.163089,DRUGBANK:DB12597,http://purl.obolibrary.org/obo/DRUGBANK_DB12597,none +15.163089,DRUGBANK:DB12606,http://purl.obolibrary.org/obo/DRUGBANK_DB12606,none +15.163089,DRUGBANK:DB12628,http://purl.obolibrary.org/obo/DRUGBANK_DB12628,none +15.163089,DRUGBANK:DB12662,http://purl.obolibrary.org/obo/DRUGBANK_DB12662,none +15.163089,DRUGBANK:DB12663,http://purl.obolibrary.org/obo/DRUGBANK_DB12663,none +15.163089,DRUGBANK:DB12682,http://purl.obolibrary.org/obo/DRUGBANK_DB12682,none +15.163089,DRUGBANK:DB12687,http://purl.obolibrary.org/obo/DRUGBANK_DB12687,none +15.163089,DRUGBANK:DB12690,http://purl.obolibrary.org/obo/DRUGBANK_DB12690,none +15.163089,DRUGBANK:DB12705,http://purl.obolibrary.org/obo/DRUGBANK_DB12705,none +15.163089,DRUGBANK:DB12732,http://purl.obolibrary.org/obo/DRUGBANK_DB12732,none +15.163089,DRUGBANK:DB12733,http://purl.obolibrary.org/obo/DRUGBANK_DB12733,none +15.163089,DRUGBANK:DB12737,http://purl.obolibrary.org/obo/DRUGBANK_DB12737,none +15.163089,DRUGBANK:DB12767,http://purl.obolibrary.org/obo/DRUGBANK_DB12767,none +15.163089,DRUGBANK:DB12778,http://purl.obolibrary.org/obo/DRUGBANK_DB12778,none +15.163089,DRUGBANK:DB12782,http://purl.obolibrary.org/obo/DRUGBANK_DB12782,none +15.163089,DRUGBANK:DB12788,http://purl.obolibrary.org/obo/DRUGBANK_DB12788,none +15.163089,DRUGBANK:DB12844,http://purl.obolibrary.org/obo/DRUGBANK_DB12844,none +15.163089,DRUGBANK:DB12885,http://purl.obolibrary.org/obo/DRUGBANK_DB12885,none +15.163089,DRUGBANK:DB12903,http://purl.obolibrary.org/obo/DRUGBANK_DB12903,none +15.163089,DRUGBANK:DB12920,http://purl.obolibrary.org/obo/DRUGBANK_DB12920,none +15.163089,DRUGBANK:DB12929,http://purl.obolibrary.org/obo/DRUGBANK_DB12929,none +15.163089,DRUGBANK:DB12973,http://purl.obolibrary.org/obo/DRUGBANK_DB12973,none +15.163089,DRUGBANK:DB13018,http://purl.obolibrary.org/obo/DRUGBANK_DB13018,none +15.163089,DRUGBANK:DB13060,http://purl.obolibrary.org/obo/DRUGBANK_DB13060,none +15.163089,DRUGBANK:DB13070,http://purl.obolibrary.org/obo/DRUGBANK_DB13070,none +15.163089,DRUGBANK:DB13098,http://purl.obolibrary.org/obo/DRUGBANK_DB13098,none +15.163089,DRUGBANK:DB13137,http://purl.obolibrary.org/obo/DRUGBANK_DB13137,none +15.163089,DRUGBANK:DB13138,http://purl.obolibrary.org/obo/DRUGBANK_DB13138,none +15.163089,DRUGBANK:DB13173,http://purl.obolibrary.org/obo/DRUGBANK_DB13173,none +15.163089,DRUGBANK:DB13194,http://purl.obolibrary.org/obo/DRUGBANK_DB13194,none +15.163089,DRUGBANK:DB13255,http://purl.obolibrary.org/obo/DRUGBANK_DB13255,none +15.163089,DRUGBANK:DB13272,http://purl.obolibrary.org/obo/DRUGBANK_DB13272,none +15.163089,DRUGBANK:DB13351,http://purl.obolibrary.org/obo/DRUGBANK_DB13351,none +15.163089,DRUGBANK:DB13357,http://purl.obolibrary.org/obo/DRUGBANK_DB13357,none +15.163089,DRUGBANK:DB13371,http://purl.obolibrary.org/obo/DRUGBANK_DB13371,none +15.163089,DRUGBANK:DB13395,http://purl.obolibrary.org/obo/DRUGBANK_DB13395,none +15.163089,DRUGBANK:DB13407,http://purl.obolibrary.org/obo/DRUGBANK_DB13407,none +15.163089,DRUGBANK:DB13736,http://purl.obolibrary.org/obo/DRUGBANK_DB13736,none +15.163089,DRUGBANK:DB13794,http://purl.obolibrary.org/obo/DRUGBANK_DB13794,none +15.163089,DRUGBANK:DB13822,http://purl.obolibrary.org/obo/DRUGBANK_DB13822,none +15.163089,DRUGBANK:DB13920,http://purl.obolibrary.org/obo/DRUGBANK_DB13920,none +15.163089,DRUGBANK:DB13939,http://purl.obolibrary.org/obo/DRUGBANK_DB13939,none +15.163089,DRUGBANK:DB14014,http://purl.obolibrary.org/obo/DRUGBANK_DB14014,none +15.163089,DRUGBANK:DB14168,http://purl.obolibrary.org/obo/DRUGBANK_DB14168,none +15.163089,DRUGBANK:DB14260,http://purl.obolibrary.org/obo/DRUGBANK_DB14260,none +15.163089,DRUGBANK:DB14309,http://purl.obolibrary.org/obo/DRUGBANK_DB14309,none +15.163089,DRUGBANK:DB14348,http://purl.obolibrary.org/obo/DRUGBANK_DB14348,none +15.163089,DRUGBANK:DB14495,http://purl.obolibrary.org/obo/DRUGBANK_DB14495,none +15.163089,DRUGBANK:DB14675,http://purl.obolibrary.org/obo/DRUGBANK_DB14675,none +15.163089,DRUGBANK:DB14797,http://purl.obolibrary.org/obo/DRUGBANK_DB14797,none +15.163089,DRUGBANK:DB14809,http://purl.obolibrary.org/obo/DRUGBANK_DB14809,none +15.163089,DRUGBANK:DB14833,http://purl.obolibrary.org/obo/DRUGBANK_DB14833,none +15.163089,DRUGBANK:DB14843,http://purl.obolibrary.org/obo/DRUGBANK_DB14843,none +15.163089,DRUGBANK:DB14868,http://purl.obolibrary.org/obo/DRUGBANK_DB14868,none +15.163089,DRUGBANK:DB14872,http://purl.obolibrary.org/obo/DRUGBANK_DB14872,none +15.163089,DRUGBANK:DB14882,http://purl.obolibrary.org/obo/DRUGBANK_DB14882,none +15.163089,DRUGBANK:DB14884,http://purl.obolibrary.org/obo/DRUGBANK_DB14884,none +15.163089,DRUGBANK:DB14905,http://purl.obolibrary.org/obo/DRUGBANK_DB14905,none +15.163089,DRUGBANK:DB14921,http://purl.obolibrary.org/obo/DRUGBANK_DB14921,none +15.163089,DRUGBANK:DB14924,http://purl.obolibrary.org/obo/DRUGBANK_DB14924,none +15.163089,DRUGBANK:DB14996,http://purl.obolibrary.org/obo/DRUGBANK_DB14996,none +15.163089,DRUGBANK:DB15007,http://purl.obolibrary.org/obo/DRUGBANK_DB15007,none +15.163089,DRUGBANK:DB15031,http://purl.obolibrary.org/obo/DRUGBANK_DB15031,none +15.163089,DRUGBANK:DB15040,http://purl.obolibrary.org/obo/DRUGBANK_DB15040,none +15.163089,DRUGBANK:DB15061,http://purl.obolibrary.org/obo/DRUGBANK_DB15061,none +15.163089,DRUGBANK:DB15078,http://purl.obolibrary.org/obo/DRUGBANK_DB15078,none +15.163089,DRUGBANK:DB15109,http://purl.obolibrary.org/obo/DRUGBANK_DB15109,none +15.163089,DRUGBANK:DB15166,http://purl.obolibrary.org/obo/DRUGBANK_DB15166,none +15.163089,DRUGBANK:DB15169,http://purl.obolibrary.org/obo/DRUGBANK_DB15169,none +15.163089,DRUGBANK:DB15197,http://purl.obolibrary.org/obo/DRUGBANK_DB15197,none +15.163089,DRUGBANK:DB15204,http://purl.obolibrary.org/obo/DRUGBANK_DB15204,none +15.163089,DRUGBANK:DB15259,http://purl.obolibrary.org/obo/DRUGBANK_DB15259,none +15.163089,DRUGBANK:DB15272,http://purl.obolibrary.org/obo/DRUGBANK_DB15272,none +15.163089,DRUGBANK:DB15285,http://purl.obolibrary.org/obo/DRUGBANK_DB15285,none +15.163089,DRUGBANK:DB15307,http://purl.obolibrary.org/obo/DRUGBANK_DB15307,none +15.163089,DRUGBANK:DB15358,http://purl.obolibrary.org/obo/DRUGBANK_DB15358,none +15.163089,DRUGBANK:DB15428,http://purl.obolibrary.org/obo/DRUGBANK_DB15428,none +15.163089,DRUGBANK:DB15433,http://purl.obolibrary.org/obo/DRUGBANK_DB15433,none +15.163089,DRUGBANK:DB15467,http://purl.obolibrary.org/obo/DRUGBANK_DB15467,none +15.163089,DRUGBANK:DB15543,http://purl.obolibrary.org/obo/DRUGBANK_DB15543,none +15.163089,DRUGBANK:DB15596,http://purl.obolibrary.org/obo/DRUGBANK_DB15596,none +15.163089,DRUGBANK:DB15850,http://purl.obolibrary.org/obo/DRUGBANK_DB15850,none +15.163089,DRUGBANK:DB15851,http://purl.obolibrary.org/obo/DRUGBANK_DB15851,none +15.163089,DRUGBANK:DB15888,http://purl.obolibrary.org/obo/DRUGBANK_DB15888,none +15.163089,DRUGBANK:DB15915,http://purl.obolibrary.org/obo/DRUGBANK_DB15915,none +15.163089,DRUGBANK:DB16040,http://purl.obolibrary.org/obo/DRUGBANK_DB16040,none +15.163089,DRUGBANK:DB16073,http://purl.obolibrary.org/obo/DRUGBANK_DB16073,none +15.163089,DRUGBANK:DB16115,http://purl.obolibrary.org/obo/DRUGBANK_DB16115,none +15.163089,DRUGBANK:DB16133,http://purl.obolibrary.org/obo/DRUGBANK_DB16133,none +15.163089,DRUGBANK:DB16168,http://purl.obolibrary.org/obo/DRUGBANK_DB16168,none +15.163089,DRUGBANK:DB16253,http://purl.obolibrary.org/obo/DRUGBANK_DB16253,none +15.163089,DRUGBANK:DB16275,http://purl.obolibrary.org/obo/DRUGBANK_DB16275,none +15.163089,DRUGBANK:DB16309,http://purl.obolibrary.org/obo/DRUGBANK_DB16309,none +15.163089,GO:0000019,http://purl.obolibrary.org/obo/GO_0000019,regulation of mitotic recombination +15.163089,GO:0000242,http://purl.obolibrary.org/obo/GO_0000242,pericentriolar material +15.163089,GO:0001100,http://purl.obolibrary.org/obo/GO_0001100,negative regulation of exit from mitosis +15.163089,GO:0001698,http://purl.obolibrary.org/obo/GO_0001698,gastrin-induced gastric acid secretion +15.163089,GO:0001758,http://purl.obolibrary.org/obo/GO_0001758,retinal dehydrogenase activity +15.163089,GO:0001796,http://purl.obolibrary.org/obo/GO_0001796,regulation of type IIa hypersensitivity +15.163089,GO:0001813,http://purl.obolibrary.org/obo/GO_0001813,regulation of antibody-dependent cellular cytotoxicity +15.163089,GO:0001834,http://purl.obolibrary.org/obo/GO_0001834,trophectodermal cell proliferation +15.163089,GO:0001914,http://purl.obolibrary.org/obo/GO_0001914,regulation of T cell mediated cytotoxicity +15.163089,GO:0001919,http://purl.obolibrary.org/obo/GO_0001919,regulation of receptor recycling +15.163089,GO:0001969,http://purl.obolibrary.org/obo/GO_0001969,regulation of activation of membrane attack complex +15.163089,GO:0001974,http://purl.obolibrary.org/obo/GO_0001974,blood vessel remodeling +15.163089,GO:0002071,http://purl.obolibrary.org/obo/GO_0002071,glandular epithelial cell maturation +15.163089,GO:0002138,http://purl.obolibrary.org/obo/GO_0002138,retinoic acid biosynthetic process +15.163089,GO:0002371,http://purl.obolibrary.org/obo/GO_0002371,dendritic cell cytokine production +15.163089,GO:0002638,http://purl.obolibrary.org/obo/GO_0002638,negative regulation of immunoglobulin production +15.163089,GO:0002691,http://purl.obolibrary.org/obo/GO_0002691,regulation of cellular extravasation +15.163089,GO:0002701,http://purl.obolibrary.org/obo/GO_0002701,negative regulation of production of molecular mediator of immune response +15.163089,GO:0002863,http://purl.obolibrary.org/obo/GO_0002863,positive regulation of inflammatory response to antigenic stimulus +15.163089,GO:0002866,http://purl.obolibrary.org/obo/GO_0002866,positive regulation of acute inflammatory response to antigenic stimulus +15.163089,GO:0002885,http://purl.obolibrary.org/obo/GO_0002885,positive regulation of hypersensitivity +15.163089,GO:0002892,http://purl.obolibrary.org/obo/GO_0002892,regulation of type II hypersensitivity +15.163089,GO:0003406,http://purl.obolibrary.org/obo/GO_0003406,retinal pigment epithelium development +15.163089,GO:0003865,http://purl.obolibrary.org/obo/GO_0003865,3-oxo-5-alpha-steroid 4-dehydrogenase activity +15.163089,GO:0003957,http://purl.obolibrary.org/obo/GO_0003957,NAD(P)+ transhydrogenase (B-specific) activity +15.163089,GO:0004119,http://purl.obolibrary.org/obo/GO_0004119,cGMP-inhibited cyclic-nucleotide phosphodiesterase activity +15.163089,GO:0004367,http://purl.obolibrary.org/obo/GO_0004367,glycerol-3-phosphate dehydrogenase [NAD+] activity +15.163089,GO:0004378,http://purl.obolibrary.org/obo/GO_0004378,"GDP-Man:Man1GlcNAc2-PP-Dol alpha-1,3-mannosyltransferase activity" +15.163089,GO:0004744,http://purl.obolibrary.org/obo/GO_0004744,retinal isomerase activity +15.163089,GO:0004758,http://purl.obolibrary.org/obo/GO_0004758,serine C-palmitoyltransferase activity +15.163089,GO:0004795,http://purl.obolibrary.org/obo/GO_0004795,threonine synthase activity +15.163089,GO:0004931,http://purl.obolibrary.org/obo/GO_0004931,extracellularly ATP-gated cation channel activity +15.163089,GO:0005753,http://purl.obolibrary.org/obo/GO_0005753,mitochondrial proton-transporting ATP synthase complex +15.163089,GO:0005852,http://purl.obolibrary.org/obo/GO_0005852,eukaryotic translation initiation factor 3 complex +15.163089,GO:0005895,http://purl.obolibrary.org/obo/GO_0005895,interleukin-5 receptor complex +15.163089,GO:0005997,http://purl.obolibrary.org/obo/GO_0005997,xylulose metabolic process +15.163089,GO:0006032,http://purl.obolibrary.org/obo/GO_0006032,chitin catabolic process +15.163089,GO:0006057,http://purl.obolibrary.org/obo/GO_0006057,mannoprotein biosynthetic process +15.163089,GO:0006107,http://purl.obolibrary.org/obo/GO_0006107,oxaloacetate metabolic process +15.163089,GO:0006788,http://purl.obolibrary.org/obo/GO_0006788,heme oxidation +15.163089,GO:0007030,http://purl.obolibrary.org/obo/GO_0007030,Golgi organization +15.163089,GO:0007068,http://purl.obolibrary.org/obo/GO_0007068,none +15.163089,GO:0007142,http://purl.obolibrary.org/obo/GO_0007142,male meiosis II +15.163089,GO:0007277,http://purl.obolibrary.org/obo/GO_0007277,pole cell development +15.163089,GO:0007494,http://purl.obolibrary.org/obo/GO_0007494,midgut development +15.163089,GO:0007525,http://purl.obolibrary.org/obo/GO_0007525,somatic muscle development +15.163089,GO:0007559,http://purl.obolibrary.org/obo/GO_0007559,none +15.163089,GO:0008332,http://purl.obolibrary.org/obo/GO_0008332,low voltage-gated calcium channel activity +15.163089,GO:0008399,http://purl.obolibrary.org/obo/GO_0008399,naphthalene hydroxylase activity +15.163089,GO:0008481,http://purl.obolibrary.org/obo/GO_0008481,sphinganine kinase activity +15.163089,GO:0008767,http://purl.obolibrary.org/obo/GO_0008767,UDP-galactopyranose mutase activity +15.163089,GO:0008808,http://purl.obolibrary.org/obo/GO_0008808,cardiolipin synthase activity +15.163089,GO:0008834,http://purl.obolibrary.org/obo/GO_0008834,"di-trans,poly-cis-decaprenylcistransferase activity" +15.163089,GO:0008864,http://purl.obolibrary.org/obo/GO_0008864,formyltetrahydrofolate deformylase activity +15.163089,GO:0008873,http://purl.obolibrary.org/obo/GO_0008873,gluconate 2-dehydrogenase activity +15.163089,GO:0008898,http://purl.obolibrary.org/obo/GO_0008898,S-adenosylmethionine-homocysteine S-methyltransferase activity +15.163089,GO:0008899,http://purl.obolibrary.org/obo/GO_0008899,homoserine O-succinyltransferase activity +15.163089,GO:0009019,http://purl.obolibrary.org/obo/GO_0009019,tRNA (guanine-N1-)-methyltransferase activity +15.163089,GO:0009024,http://purl.obolibrary.org/obo/GO_0009024,tagatose-6-phosphate kinase activity +15.163089,GO:0009341,http://purl.obolibrary.org/obo/GO_0009341,beta-galactosidase complex +15.163089,GO:0009410,http://purl.obolibrary.org/obo/GO_0009410,response to xenobiotic stimulus +15.163089,GO:0009701,http://purl.obolibrary.org/obo/GO_0009701,isoflavonoid phytoalexin biosynthetic process +15.163089,GO:0009757,http://purl.obolibrary.org/obo/GO_0009757,hexose mediated signaling +15.163089,GO:0009772,http://purl.obolibrary.org/obo/GO_0009772,photosynthetic electron transport in photosystem II +15.163089,GO:0009900,http://purl.obolibrary.org/obo/GO_0009900,dehiscence +15.163089,GO:0009950,http://purl.obolibrary.org/obo/GO_0009950,dorsal/ventral axis specification +15.163089,GO:0010198,http://purl.obolibrary.org/obo/GO_0010198,synergid death +15.163089,GO:0010358,http://purl.obolibrary.org/obo/GO_0010358,leaf shaping +15.163089,GO:0010520,http://purl.obolibrary.org/obo/GO_0010520,regulation of reciprocal meiotic recombination +15.163089,GO:0010572,http://purl.obolibrary.org/obo/GO_0010572,positive regulation of platelet activation +15.163089,GO:0010633,http://purl.obolibrary.org/obo/GO_0010633,negative regulation of epithelial cell migration +15.163089,GO:0010731,http://purl.obolibrary.org/obo/GO_0010731,protein glutathionylation +15.163089,GO:0010770,http://purl.obolibrary.org/obo/GO_0010770,positive regulation of cell morphogenesis involved in differentiation +15.163089,GO:0014028,http://purl.obolibrary.org/obo/GO_0014028,notochord formation +15.163089,GO:0014039,http://purl.obolibrary.org/obo/GO_0014039,negative regulation of Schwann cell differentiation +15.163089,GO:0014060,http://purl.obolibrary.org/obo/GO_0014060,regulation of epinephrine secretion +15.163089,GO:0014807,http://purl.obolibrary.org/obo/GO_0014807,regulation of somitogenesis +15.163089,GO:0014832,http://purl.obolibrary.org/obo/GO_0014832,urinary bladder smooth muscle contraction +15.163089,GO:0015251,http://purl.obolibrary.org/obo/GO_0015251,ammonium channel activity +15.163089,GO:0015292,http://purl.obolibrary.org/obo/GO_0015292,uniporter activity +15.163089,GO:0015562,http://purl.obolibrary.org/obo/GO_0015562,efflux transmembrane transporter activity +15.163089,GO:0015839,http://purl.obolibrary.org/obo/GO_0015839,cadaverine transport +15.163089,GO:0015890,http://purl.obolibrary.org/obo/GO_0015890,nicotinamide mononucleotide transport +15.163089,GO:0016427,http://purl.obolibrary.org/obo/GO_0016427,tRNA (cytosine) methyltransferase activity +15.163089,GO:0016428,http://purl.obolibrary.org/obo/GO_0016428,tRNA (cytosine-5-)-methyltransferase activity +15.163089,GO:0016433,http://purl.obolibrary.org/obo/GO_0016433,rRNA (adenine) methyltransferase activity +15.163089,GO:0016469,http://purl.obolibrary.org/obo/GO_0016469,proton-transporting two-sector ATPase complex +15.163089,GO:0016590,http://purl.obolibrary.org/obo/GO_0016590,ACF complex +15.163089,GO:0016673,http://purl.obolibrary.org/obo/GO_0016673,"oxidoreductase activity, acting on a sulfur group of donors, iron-sulfur protein as acceptor" +15.163089,GO:0016750,http://purl.obolibrary.org/obo/GO_0016750,O-succinyltransferase activity +15.163089,GO:0016770,http://purl.obolibrary.org/obo/GO_0016770,none +15.163089,GO:0016847,http://purl.obolibrary.org/obo/GO_0016847,1-aminocyclopropane-1-carboxylate synthase activity +15.163089,GO:0016998,http://purl.obolibrary.org/obo/GO_0016998,cell wall macromolecule catabolic process +15.163089,GO:0017020,http://purl.obolibrary.org/obo/GO_0017020,myosin phosphatase regulator activity +15.163089,GO:0018524,http://purl.obolibrary.org/obo/GO_0018524,acetophenone carboxylase activity +15.163089,GO:0018545,http://purl.obolibrary.org/obo/GO_0018545,NAD(P)H nitroreductase activity +15.163089,GO:0018597,http://purl.obolibrary.org/obo/GO_0018597,ammonia monooxygenase activity +15.163089,GO:0018625,http://purl.obolibrary.org/obo/GO_0018625,"naphthalene 1,2-dioxygenase activity" +15.163089,GO:0018650,http://purl.obolibrary.org/obo/GO_0018650,styrene monooxygenase activity +15.163089,GO:0018762,http://purl.obolibrary.org/obo/GO_0018762,aliphatic nitrilase activity +15.163089,GO:0018798,http://purl.obolibrary.org/obo/GO_0018798,gallate decarboxylase activity +15.163089,GO:0018799,http://purl.obolibrary.org/obo/GO_0018799,4-hydroxybenzoate decarboxylase activity +15.163089,GO:0018813,http://purl.obolibrary.org/obo/GO_0018813,trans-o-hydroxybenzylidenepyruvate hydratase-aldolase activity +15.163089,GO:0019144,http://purl.obolibrary.org/obo/GO_0019144,ADP-sugar diphosphatase activity +15.163089,GO:0019154,http://purl.obolibrary.org/obo/GO_0019154,glycolate dehydrogenase activity +15.163089,GO:0019171,http://purl.obolibrary.org/obo/GO_0019171,3-hydroxyacyl-[acyl-carrier-protein] dehydratase activity +15.163089,GO:0019312,http://purl.obolibrary.org/obo/GO_0019312,L-sorbose metabolic process +15.163089,GO:0019372,http://purl.obolibrary.org/obo/GO_0019372,lipoxygenase pathway +15.163089,GO:0019477,http://purl.obolibrary.org/obo/GO_0019477,L-lysine catabolic process +15.163089,GO:0019492,http://purl.obolibrary.org/obo/GO_0019492,proline salvage +15.163089,GO:0019588,http://purl.obolibrary.org/obo/GO_0019588,anaerobic glycerol catabolic process +15.163089,GO:0019645,http://purl.obolibrary.org/obo/GO_0019645,anaerobic electron transport chain +15.163089,GO:0019656,http://purl.obolibrary.org/obo/GO_0019656,glucose catabolic process to D-lactate and ethanol +15.163089,GO:0019877,http://purl.obolibrary.org/obo/GO_0019877,diaminopimelate biosynthetic process +15.163089,GO:0020023,http://purl.obolibrary.org/obo/GO_0020023,kinetoplast +15.163089,GO:0021547,http://purl.obolibrary.org/obo/GO_0021547,midbrain-hindbrain boundary initiation +15.163089,GO:0021605,http://purl.obolibrary.org/obo/GO_0021605,cranial nerve maturation +15.163089,GO:0021771,http://purl.obolibrary.org/obo/GO_0021771,lateral geniculate nucleus development +15.163089,GO:0021796,http://purl.obolibrary.org/obo/GO_0021796,cerebral cortex regionalization +15.163089,GO:0021859,http://purl.obolibrary.org/obo/GO_0021859,pyramidal neuron differentiation +15.163089,GO:0021904,http://purl.obolibrary.org/obo/GO_0021904,dorsal/ventral neural tube patterning +15.163089,GO:0030144,http://purl.obolibrary.org/obo/GO_0030144,"alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase activity" +15.163089,GO:0030410,http://purl.obolibrary.org/obo/GO_0030410,nicotianamine synthase activity +15.163089,GO:0030700,http://purl.obolibrary.org/obo/GO_0030700,glycine reductase complex +15.163089,GO:0030736,http://purl.obolibrary.org/obo/GO_0030736,phenol O-methyltransferase activity +15.163089,GO:0030805,http://purl.obolibrary.org/obo/GO_0030805,regulation of cyclic nucleotide catabolic process +15.163089,GO:0030834,http://purl.obolibrary.org/obo/GO_0030834,regulation of actin filament depolymerization +15.163089,GO:0030991,http://purl.obolibrary.org/obo/GO_0030991,intraciliary transport particle A +15.163089,GO:0031039,http://purl.obolibrary.org/obo/GO_0031039,macronucleus +15.163089,GO:0031088,http://purl.obolibrary.org/obo/GO_0031088,platelet dense granule membrane +15.163089,GO:0031346,http://purl.obolibrary.org/obo/GO_0031346,positive regulation of cell projection organization +15.163089,GO:0031416,http://purl.obolibrary.org/obo/GO_0031416,NatB complex +15.163089,GO:0031463,http://purl.obolibrary.org/obo/GO_0031463,Cul3-RING ubiquitin ligase complex +15.163089,GO:0031501,http://purl.obolibrary.org/obo/GO_0031501,mannosyltransferase complex +15.163089,GO:0031525,http://purl.obolibrary.org/obo/GO_0031525,menthol biosynthetic process +15.163089,GO:0031578,http://purl.obolibrary.org/obo/GO_0031578,mitotic spindle orientation checkpoint signaling +15.163089,GO:0031680,http://purl.obolibrary.org/obo/GO_0031680,G-protein beta/gamma-subunit complex +15.163089,GO:0032044,http://purl.obolibrary.org/obo/GO_0032044,DSIF complex +15.163089,GO:0032067,http://purl.obolibrary.org/obo/GO_0032067,type IV site-specific deoxyribonuclease activity +15.163089,GO:0032115,http://purl.obolibrary.org/obo/GO_0032115,sorbose reductase activity +15.163089,GO:0032302,http://purl.obolibrary.org/obo/GO_0032302,MutSbeta complex +15.163089,GO:0032332,http://purl.obolibrary.org/obo/GO_0032332,positive regulation of chondrocyte differentiation +15.163089,GO:0032474,http://purl.obolibrary.org/obo/GO_0032474,otolith morphogenesis +15.163089,GO:0032591,http://purl.obolibrary.org/obo/GO_0032591,dendritic spine membrane +15.163089,GO:0032647,http://purl.obolibrary.org/obo/GO_0032647,regulation of interferon-alpha production +15.163089,GO:0032648,http://purl.obolibrary.org/obo/GO_0032648,regulation of interferon-beta production +15.163089,GO:0032661,http://purl.obolibrary.org/obo/GO_0032661,regulation of interleukin-18 production +15.163089,GO:0032695,http://purl.obolibrary.org/obo/GO_0032695,negative regulation of interleukin-12 production +15.163089,GO:0032715,http://purl.obolibrary.org/obo/GO_0032715,negative regulation of interleukin-6 production +15.163089,GO:0032780,http://purl.obolibrary.org/obo/GO_0032780,negative regulation of ATPase activity +15.163089,GO:0032926,http://purl.obolibrary.org/obo/GO_0032926,negative regulation of activin receptor signaling pathway +15.163089,GO:0033010,http://purl.obolibrary.org/obo/GO_0033010,paranodal junction +15.163089,GO:0033065,http://purl.obolibrary.org/obo/GO_0033065,Rad51C-XRCC3 complex +15.163089,GO:0033121,http://purl.obolibrary.org/obo/GO_0033121,regulation of purine nucleotide catabolic process +15.163089,GO:0033228,http://purl.obolibrary.org/obo/GO_0033228,cysteine export across plasma membrane +15.163089,GO:0033300,http://purl.obolibrary.org/obo/GO_0033300,dehydroascorbic acid transmembrane transporter activity +15.163089,GO:0033477,http://purl.obolibrary.org/obo/GO_0033477,S-methylmethionine metabolic process +15.163089,GO:0033531,http://purl.obolibrary.org/obo/GO_0033531,stachyose metabolic process +15.163089,GO:0033893,http://purl.obolibrary.org/obo/GO_0033893,ribonuclease IV activity +15.163089,GO:0033953,http://purl.obolibrary.org/obo/GO_0033953,alpha-agarase activity +15.163089,GO:0033983,http://purl.obolibrary.org/obo/GO_0033983,diaminobutyrate decarboxylase activity +15.163089,GO:0034016,http://purl.obolibrary.org/obo/GO_0034016,polyenoic fatty acid isomerase activity +15.163089,GO:0034122,http://purl.obolibrary.org/obo/GO_0034122,negative regulation of toll-like receptor signaling pathway +15.163089,GO:0034305,http://purl.obolibrary.org/obo/GO_0034305,regulation of asexual sporulation +15.163089,GO:0034367,http://purl.obolibrary.org/obo/GO_0034367,protein-containing complex remodeling +15.163089,GO:0034406,http://purl.obolibrary.org/obo/GO_0034406,cell wall beta-glucan metabolic process +15.163089,GO:0034657,http://purl.obolibrary.org/obo/GO_0034657,GID complex +15.163089,GO:0034697,http://purl.obolibrary.org/obo/GO_0034697,response to prostaglandin I +15.163089,GO:0035013,http://purl.obolibrary.org/obo/GO_0035013,myosuppressin receptor activity +15.163089,GO:0035067,http://purl.obolibrary.org/obo/GO_0035067,negative regulation of histone acetylation +15.163089,GO:0035113,http://purl.obolibrary.org/obo/GO_0035113,embryonic appendage morphogenesis +15.163089,GO:0035305,http://purl.obolibrary.org/obo/GO_0035305,negative regulation of dephosphorylation +15.163089,GO:0035372,http://purl.obolibrary.org/obo/GO_0035372,protein localization to microtubule +15.163089,GO:0035418,http://purl.obolibrary.org/obo/GO_0035418,protein localization to synapse +15.163089,GO:0035493,http://purl.obolibrary.org/obo/GO_0035493,SNARE complex assembly +15.163089,GO:0035606,http://purl.obolibrary.org/obo/GO_0035606,peptidyl-cysteine S-trans-nitrosylation +15.163089,GO:0035636,http://purl.obolibrary.org/obo/GO_0035636,none +15.163089,GO:0035666,http://purl.obolibrary.org/obo/GO_0035666,TRIF-dependent toll-like receptor signaling pathway +15.163089,GO:0035691,http://purl.obolibrary.org/obo/GO_0035691,macrophage migration inhibitory factor signaling pathway +15.163089,GO:0035745,http://purl.obolibrary.org/obo/GO_0035745,T-helper 2 cell cytokine production +15.163089,GO:0036128,http://purl.obolibrary.org/obo/GO_0036128,CatSper complex +15.163089,GO:0036344,http://purl.obolibrary.org/obo/GO_0036344,platelet morphogenesis +15.163089,GO:0036393,http://purl.obolibrary.org/obo/GO_0036393,thiocyanate peroxidase activity +15.163089,GO:0036424,http://purl.obolibrary.org/obo/GO_0036424,L-phosphoserine phosphatase activity +15.163089,GO:0036476,http://purl.obolibrary.org/obo/GO_0036476,neuron death in response to hydrogen peroxide +15.163089,GO:0036489,http://purl.obolibrary.org/obo/GO_0036489,neuromelanin biosynthetic process +15.163089,GO:0038007,http://purl.obolibrary.org/obo/GO_0038007,netrin-activated signaling pathway +15.163089,GO:0038066,http://purl.obolibrary.org/obo/GO_0038066,p38MAPK cascade +15.163089,GO:0038133,http://purl.obolibrary.org/obo/GO_0038133,ERBB2-ERBB3 signaling pathway +15.163089,GO:0038158,http://purl.obolibrary.org/obo/GO_0038158,granulocyte colony-stimulating factor signaling pathway +15.163089,GO:0039506,http://purl.obolibrary.org/obo/GO_0039506,modulation by virus of host molecular function +15.163089,GO:0039507,http://purl.obolibrary.org/obo/GO_0039507,suppression by virus of host molecular function +15.163089,GO:0039514,http://purl.obolibrary.org/obo/GO_0039514,suppression by virus of host JAK-STAT cascade +15.163089,GO:0039562,http://purl.obolibrary.org/obo/GO_0039562,suppression by virus of host JAK-STAT cascade via inhibition of STAT activity +15.163089,GO:0039563,http://purl.obolibrary.org/obo/GO_0039563,suppression by virus of host JAK-STAT cascade via inhibition of STAT1 activity +15.163089,GO:0039565,http://purl.obolibrary.org/obo/GO_0039565,none +15.163089,GO:0039625,http://purl.obolibrary.org/obo/GO_0039625,viral inner capsid +15.163089,GO:0040016,http://purl.obolibrary.org/obo/GO_0040016,embryonic cleavage +15.163089,GO:0042135,http://purl.obolibrary.org/obo/GO_0042135,neurotransmitter catabolic process +15.163089,GO:0042159,http://purl.obolibrary.org/obo/GO_0042159,lipoprotein catabolic process +15.163089,GO:0042184,http://purl.obolibrary.org/obo/GO_0042184,xylene catabolic process +15.163089,GO:0042194,http://purl.obolibrary.org/obo/GO_0042194,quinate biosynthetic process +15.163089,GO:0042306,http://purl.obolibrary.org/obo/GO_0042306,regulation of protein import into nucleus +15.163089,GO:0042308,http://purl.obolibrary.org/obo/GO_0042308,negative regulation of protein import into nucleus +15.163089,GO:0042468,http://purl.obolibrary.org/obo/GO_0042468,klinokinesis +15.163089,GO:0042612,http://purl.obolibrary.org/obo/GO_0042612,MHC class I protein complex +15.163089,GO:0042837,http://purl.obolibrary.org/obo/GO_0042837,D-glucarate biosynthetic process +15.163089,GO:0042854,http://purl.obolibrary.org/obo/GO_0042854,eugenol metabolic process +15.163089,GO:0042860,http://purl.obolibrary.org/obo/GO_0042860,achromobactin metabolic process +15.163089,GO:0042861,http://purl.obolibrary.org/obo/GO_0042861,achromobactin biosynthetic process +15.163089,GO:0042904,http://purl.obolibrary.org/obo/GO_0042904,9-cis-retinoic acid biosynthetic process +15.163089,GO:0042905,http://purl.obolibrary.org/obo/GO_0042905,9-cis-retinoic acid metabolic process +15.163089,GO:0042929,http://purl.obolibrary.org/obo/GO_0042929,ferrichrome transmembrane transporter activity +15.163089,GO:0042990,http://purl.obolibrary.org/obo/GO_0042990,none +15.163089,GO:0042992,http://purl.obolibrary.org/obo/GO_0042992,none +15.163089,GO:0042994,http://purl.obolibrary.org/obo/GO_0042994,cytoplasmic sequestering of transcription factor +15.163089,GO:0043051,http://purl.obolibrary.org/obo/GO_0043051,regulation of pharyngeal pumping +15.163089,GO:0043140,http://purl.obolibrary.org/obo/GO_0043140,none +15.163089,GO:0043143,http://purl.obolibrary.org/obo/GO_0043143,regulation of translation by machinery localization +15.163089,GO:0043268,http://purl.obolibrary.org/obo/GO_0043268,positive regulation of potassium ion transport +15.163089,GO:0043451,http://purl.obolibrary.org/obo/GO_0043451,alkene catabolic process +15.163089,GO:0043476,http://purl.obolibrary.org/obo/GO_0043476,pigment accumulation +15.163089,GO:0043702,http://purl.obolibrary.org/obo/GO_0043702,carotenoid vesicle +15.163089,GO:0043722,http://purl.obolibrary.org/obo/GO_0043722,4-hydroxyphenylacetate decarboxylase activity +15.163089,GO:0043737,http://purl.obolibrary.org/obo/GO_0043737,deoxyribonuclease V activity +15.163089,GO:0043849,http://purl.obolibrary.org/obo/GO_0043849,Ras palmitoyltransferase activity +15.163089,GO:0043857,http://purl.obolibrary.org/obo/GO_0043857,N-acetylornithine carbamoyltransferase activity +15.163089,GO:0043954,http://purl.obolibrary.org/obo/GO_0043954,cellular component maintenance +15.163089,GO:0043958,http://purl.obolibrary.org/obo/GO_0043958,acryloyl-CoA reductase activity +15.163089,GO:0044156,http://purl.obolibrary.org/obo/GO_0044156,host cell junction +15.163089,GO:0044347,http://purl.obolibrary.org/obo/GO_0044347,cell wall polysaccharide catabolic process +15.163089,GO:0044359,http://purl.obolibrary.org/obo/GO_0044359,modulation of molecular function in other organism +15.163089,GO:0044362,http://purl.obolibrary.org/obo/GO_0044362,negative regulation of molecular function in other organism +15.163089,GO:0044501,http://purl.obolibrary.org/obo/GO_0044501,modulation of signal transduction in other organism +15.163089,GO:0044538,http://purl.obolibrary.org/obo/GO_0044538,host cell periphery +15.163089,GO:0044694,http://purl.obolibrary.org/obo/GO_0044694,pore-mediated entry of viral genome into host cell +15.163089,GO:0044783,http://purl.obolibrary.org/obo/GO_0044783,none +15.163089,GO:0044803,http://purl.obolibrary.org/obo/GO_0044803,multi-organism membrane organization +15.163089,GO:0045058,http://purl.obolibrary.org/obo/GO_0045058,T cell selection +15.163089,GO:0045128,http://purl.obolibrary.org/obo/GO_0045128,negative regulation of reciprocal meiotic recombination +15.163089,GO:0045176,http://purl.obolibrary.org/obo/GO_0045176,apical protein localization +15.163089,GO:0045259,http://purl.obolibrary.org/obo/GO_0045259,proton-transporting ATP synthase complex +15.163089,GO:0045483,http://purl.obolibrary.org/obo/GO_0045483,aristolochene synthase activity +15.163089,GO:0045493,http://purl.obolibrary.org/obo/GO_0045493,xylan catabolic process +15.163089,GO:0045652,http://purl.obolibrary.org/obo/GO_0045652,regulation of megakaryocyte differentiation +15.163089,GO:0045947,http://purl.obolibrary.org/obo/GO_0045947,negative regulation of translational initiation +15.163089,GO:0046289,http://purl.obolibrary.org/obo/GO_0046289,isoflavonoid phytoalexin metabolic process +15.163089,GO:0046446,http://purl.obolibrary.org/obo/GO_0046446,purine alkaloid metabolic process +15.163089,GO:0046462,http://purl.obolibrary.org/obo/GO_0046462,monoacylglycerol metabolic process +15.163089,GO:0046692,http://purl.obolibrary.org/obo/GO_0046692,sperm competition +15.163089,GO:0046693,http://purl.obolibrary.org/obo/GO_0046693,sperm storage +15.163089,GO:0046704,http://purl.obolibrary.org/obo/GO_0046704,CDP metabolic process +15.163089,GO:0046705,http://purl.obolibrary.org/obo/GO_0046705,CDP biosynthetic process +15.163089,GO:0046711,http://purl.obolibrary.org/obo/GO_0046711,GDP biosynthetic process +15.163089,GO:0046754,http://purl.obolibrary.org/obo/GO_0046754,viral exocytosis +15.163089,GO:0046755,http://purl.obolibrary.org/obo/GO_0046755,viral budding +15.163089,GO:0046823,http://purl.obolibrary.org/obo/GO_0046823,negative regulation of nucleocytoplasmic transport +15.163089,GO:0046841,http://purl.obolibrary.org/obo/GO_0046841,trisporic acid metabolic process +15.163089,GO:0046842,http://purl.obolibrary.org/obo/GO_0046842,trisporic acid biosynthetic process +15.163089,GO:0046905,http://purl.obolibrary.org/obo/GO_0046905,15-cis-phytoene synthase activity +15.163089,GO:0046936,http://purl.obolibrary.org/obo/GO_0046936,2'-deoxyadenosine deaminase activity +15.163089,GO:0047061,http://purl.obolibrary.org/obo/GO_0047061,glucose-fructose oxidoreductase activity +15.163089,GO:0047183,http://purl.obolibrary.org/obo/GO_0047183,anthocyanin 5-aromatic acyltransferase activity +15.163089,GO:0047310,http://purl.obolibrary.org/obo/GO_0047310,glutamine-scyllo-inositol transaminase activity +15.163089,GO:0047325,http://purl.obolibrary.org/obo/GO_0047325,inositol tetrakisphosphate 1-kinase activity +15.163089,GO:0047355,http://purl.obolibrary.org/obo/GO_0047355,CDP-glycerol glycerophosphotransferase activity +15.163089,GO:0047408,http://purl.obolibrary.org/obo/GO_0047408,alkenylglycerophosphocholine hydrolase activity +15.163089,GO:0047481,http://purl.obolibrary.org/obo/GO_0047481,D-alanine-alanyl-poly(glycerolphosphate) ligase activity +15.163089,GO:0047577,http://purl.obolibrary.org/obo/GO_0047577,4-hydroxybutyrate dehydrogenase activity +15.163089,GO:0047589,http://purl.obolibrary.org/obo/GO_0047589,5-aminovalerate transaminase activity +15.163089,GO:0047685,http://purl.obolibrary.org/obo/GO_0047685,amine sulfotransferase activity +15.163089,GO:0047699,http://purl.obolibrary.org/obo/GO_0047699,beta-diketone hydrolase activity +15.163089,GO:0047782,http://purl.obolibrary.org/obo/GO_0047782,coniferin beta-glucosidase activity +15.163089,GO:0047793,http://purl.obolibrary.org/obo/GO_0047793,cycloeucalenol cycloisomerase activity +15.163089,GO:0047900,http://purl.obolibrary.org/obo/GO_0047900,formate kinase activity +15.163089,GO:0047952,http://purl.obolibrary.org/obo/GO_0047952,glycerol-3-phosphate dehydrogenase [NAD(P)+] activity +15.163089,GO:0047962,http://purl.obolibrary.org/obo/GO_0047962,glycine N-benzoyltransferase activity +15.163089,GO:0048009,http://purl.obolibrary.org/obo/GO_0048009,insulin-like growth factor receptor signaling pathway +15.163089,GO:0048240,http://purl.obolibrary.org/obo/GO_0048240,sperm capacitation +15.163089,GO:0048252,http://purl.obolibrary.org/obo/GO_0048252,lauric acid metabolic process +15.163089,GO:0048441,http://purl.obolibrary.org/obo/GO_0048441,petal development +15.163089,GO:0048443,http://purl.obolibrary.org/obo/GO_0048443,stamen development +15.163089,GO:0048471,http://purl.obolibrary.org/obo/GO_0048471,perinuclear region of cytoplasm +15.163089,GO:0048484,http://purl.obolibrary.org/obo/GO_0048484,enteric nervous system development +15.163089,GO:0048490,http://purl.obolibrary.org/obo/GO_0048490,anterograde synaptic vesicle transport +15.163089,GO:0048662,http://purl.obolibrary.org/obo/GO_0048662,negative regulation of smooth muscle cell proliferation +15.163089,GO:0048710,http://purl.obolibrary.org/obo/GO_0048710,regulation of astrocyte differentiation +15.163089,GO:0048787,http://purl.obolibrary.org/obo/GO_0048787,presynaptic active zone membrane +15.163089,GO:0048861,http://purl.obolibrary.org/obo/GO_0048861,leukemia inhibitory factor signaling pathway +15.163089,GO:0050074,http://purl.obolibrary.org/obo/GO_0050074,malate-CoA ligase activity +15.163089,GO:0050163,http://purl.obolibrary.org/obo/GO_0050163,oxaloacetate tautomerase activity +15.163089,GO:0050188,http://purl.obolibrary.org/obo/GO_0050188,phosphoenolpyruvate mutase activity +15.163089,GO:0050197,http://purl.obolibrary.org/obo/GO_0050197,phytanate-CoA ligase activity +15.163089,GO:0050206,http://purl.obolibrary.org/obo/GO_0050206,oximinotransferase activity +15.163089,GO:0050311,http://purl.obolibrary.org/obo/GO_0050311,sulfite reductase (ferredoxin) activity +15.163089,GO:0050317,http://purl.obolibrary.org/obo/GO_0050317,tagatose kinase activity +15.163089,GO:0050404,http://purl.obolibrary.org/obo/GO_0050404,zeatin O-beta-D-xylosyltransferase activity +15.163089,GO:0050580,http://purl.obolibrary.org/obo/GO_0050580,"2,5-didehydrogluconate reductase activity" +15.163089,GO:0050703,http://purl.obolibrary.org/obo/GO_0050703,none +15.163089,GO:0050788,http://purl.obolibrary.org/obo/GO_0050788,sequestering of mercury +15.163089,GO:0051220,http://purl.obolibrary.org/obo/GO_0051220,cytoplasmic sequestering of protein +15.163089,GO:0051342,http://purl.obolibrary.org/obo/GO_0051342,regulation of cyclic-nucleotide phosphodiesterase activity +15.163089,GO:0051473,http://purl.obolibrary.org/obo/GO_0051473,glucosylglycerol biosynthetic process +15.163089,GO:0051724,http://purl.obolibrary.org/obo/GO_0051724,NAD transmembrane transporter activity +15.163089,GO:0051761,http://purl.obolibrary.org/obo/GO_0051761,sesquiterpene metabolic process +15.163089,GO:0051997,http://purl.obolibrary.org/obo/GO_0051997,2-oxo-4-hydroxy-4-carboxy-5-ureidoimidazoline decarboxylase activity +15.163089,GO:0052027,http://purl.obolibrary.org/obo/GO_0052027,modulation by symbiont of host signal transduction pathway +15.163089,GO:0052029,http://purl.obolibrary.org/obo/GO_0052029,suppression by symbiont of host signal transduction pathway +15.163089,GO:0052055,http://purl.obolibrary.org/obo/GO_0052055,modulation by symbiont of host molecular function +15.163089,GO:0052056,http://purl.obolibrary.org/obo/GO_0052056,none +15.163089,GO:0052204,http://purl.obolibrary.org/obo/GO_0052204,negative regulation of molecular function in other organism involved in symbiotic interaction +15.163089,GO:0052205,http://purl.obolibrary.org/obo/GO_0052205,modulation of molecular function in other organism involved in symbiotic interaction +15.163089,GO:0052250,http://purl.obolibrary.org/obo/GO_0052250,none +15.163089,GO:0052493,http://purl.obolibrary.org/obo/GO_0052493,none +15.163089,GO:0052598,http://purl.obolibrary.org/obo/GO_0052598,histamine oxidase activity +15.163089,GO:0052615,http://purl.obolibrary.org/obo/GO_0052615,ent-kaurene oxidase activity +15.163089,GO:0052730,http://purl.obolibrary.org/obo/GO_0052730,sarcosine N-methyltransferase activity +15.163089,GO:0052772,http://purl.obolibrary.org/obo/GO_0052772,brefeldin A esterase activity +15.163089,GO:0052873,http://purl.obolibrary.org/obo/GO_0052873,FMN reductase (NADPH) activity +15.163089,GO:0052883,http://purl.obolibrary.org/obo/GO_0052883,tyrosine ammonia-lyase activity +15.163089,GO:0055017,http://purl.obolibrary.org/obo/GO_0055017,cardiac muscle tissue growth +15.163089,GO:0060024,http://purl.obolibrary.org/obo/GO_0060024,rhythmic synaptic transmission +15.163089,GO:0060055,http://purl.obolibrary.org/obo/GO_0060055,angiogenesis involved in wound healing +15.163089,GO:0060056,http://purl.obolibrary.org/obo/GO_0060056,mammary gland involution +15.163089,GO:0060082,http://purl.obolibrary.org/obo/GO_0060082,eye blink reflex +15.163089,GO:0060087,http://purl.obolibrary.org/obo/GO_0060087,relaxation of vascular associated smooth muscle +15.163089,GO:0060417,http://purl.obolibrary.org/obo/GO_0060417,yolk +15.163089,GO:0060574,http://purl.obolibrary.org/obo/GO_0060574,intestinal epithelial cell maturation +15.163089,GO:0060708,http://purl.obolibrary.org/obo/GO_0060708,spongiotrophoblast differentiation +15.163089,GO:0060837,http://purl.obolibrary.org/obo/GO_0060837,blood vessel endothelial cell differentiation +15.163089,GO:0061005,http://purl.obolibrary.org/obo/GO_0061005,cell differentiation involved in kidney development +15.163089,GO:0061512,http://purl.obolibrary.org/obo/GO_0061512,protein localization to cilium +15.163089,GO:0061553,http://purl.obolibrary.org/obo/GO_0061553,ganglion maturation +15.163089,GO:0061615,http://purl.obolibrary.org/obo/GO_0061615,glycolytic process through fructose-6-phosphate +15.163089,GO:0061620,http://purl.obolibrary.org/obo/GO_0061620,glycolytic process through glucose-6-phosphate +15.163089,GO:0061621,http://purl.obolibrary.org/obo/GO_0061621,canonical glycolysis +15.163089,GO:0061737,http://purl.obolibrary.org/obo/GO_0061737,leukotriene signaling pathway +15.163089,GO:0070076,http://purl.obolibrary.org/obo/GO_0070076,histone lysine demethylation +15.163089,GO:0070266,http://purl.obolibrary.org/obo/GO_0070266,necroptotic process +15.163089,GO:0070344,http://purl.obolibrary.org/obo/GO_0070344,regulation of fat cell proliferation +15.163089,GO:0070470,http://purl.obolibrary.org/obo/GO_0070470,plasma membrane respirasome +15.163089,GO:0070545,http://purl.obolibrary.org/obo/GO_0070545,PeBoW complex +15.163089,GO:0070573,http://purl.obolibrary.org/obo/GO_0070573,metallodipeptidase activity +15.163089,GO:0070619,http://purl.obolibrary.org/obo/GO_0070619,Shc-Grb2-Sos complex +15.163089,GO:0070631,http://purl.obolibrary.org/obo/GO_0070631,spindle pole body localization +15.163089,GO:0070676,http://purl.obolibrary.org/obo/GO_0070676,intralumenal vesicle formation +15.163089,GO:0070816,http://purl.obolibrary.org/obo/GO_0070816,phosphorylation of RNA polymerase II C-terminal domain +15.163089,GO:0070858,http://purl.obolibrary.org/obo/GO_0070858,negative regulation of bile acid biosynthetic process +15.163089,GO:0070981,http://purl.obolibrary.org/obo/GO_0070981,L-asparagine biosynthetic process +15.163089,GO:0071255,http://purl.obolibrary.org/obo/GO_0071255,Cvt vesicle assembly +15.163089,GO:0071271,http://purl.obolibrary.org/obo/GO_0071271,1-butanol biosynthetic process +15.163089,GO:0071420,http://purl.obolibrary.org/obo/GO_0071420,cellular response to histamine +15.163089,GO:0071480,http://purl.obolibrary.org/obo/GO_0071480,cellular response to gamma radiation +15.163089,GO:0071481,http://purl.obolibrary.org/obo/GO_0071481,cellular response to X-ray +15.163089,GO:0071500,http://purl.obolibrary.org/obo/GO_0071500,cellular response to nitrosative stress +15.163089,GO:0071732,http://purl.obolibrary.org/obo/GO_0071732,cellular response to nitric oxide +15.163089,GO:0071793,http://purl.obolibrary.org/obo/GO_0071793,bacillithiol biosynthetic process +15.163089,GO:0071797,http://purl.obolibrary.org/obo/GO_0071797,LUBAC complex +15.163089,GO:0071800,http://purl.obolibrary.org/obo/GO_0071800,podosome assembly +15.163089,GO:0072529,http://purl.obolibrary.org/obo/GO_0072529,pyrimidine-containing compound catabolic process +15.163089,GO:0072560,http://purl.obolibrary.org/obo/GO_0072560,type B pancreatic cell maturation +15.163089,GO:0072626,http://purl.obolibrary.org/obo/GO_0072626,none +15.163089,GO:0072700,http://purl.obolibrary.org/obo/GO_0072700,response to bismuth +15.163089,GO:0080006,http://purl.obolibrary.org/obo/GO_0080006,internode patterning +15.163089,GO:0080129,http://purl.obolibrary.org/obo/GO_0080129,proteasome core complex assembly +15.163089,GO:0080147,http://purl.obolibrary.org/obo/GO_0080147,root hair cell development +15.163089,GO:0090025,http://purl.obolibrary.org/obo/GO_0090025,regulation of monocyte chemotaxis +15.163089,GO:0090231,http://purl.obolibrary.org/obo/GO_0090231,regulation of spindle checkpoint +15.163089,GO:0090317,http://purl.obolibrary.org/obo/GO_0090317,negative regulation of intracellular protein transport +15.163089,GO:0090463,http://purl.obolibrary.org/obo/GO_0090463,lysine homeostasis +15.163089,GO:0090619,http://purl.obolibrary.org/obo/GO_0090619,meiotic spindle pole +15.163089,GO:0097071,http://purl.obolibrary.org/obo/GO_0097071,interferon regulatory factor complex +15.163089,GO:0097076,http://purl.obolibrary.org/obo/GO_0097076,transforming growth factor beta activated kinase 1 complex +15.163089,GO:0097133,http://purl.obolibrary.org/obo/GO_0097133,cyclin D3-CDK6 complex +15.163089,GO:0097337,http://purl.obolibrary.org/obo/GO_0097337,response to ziprasidone +15.163089,GO:0097484,http://purl.obolibrary.org/obo/GO_0097484,dendrite extension +15.163089,GO:0097573,http://purl.obolibrary.org/obo/GO_0097573,glutathione oxidoreductase activity +15.163089,GO:0098839,http://purl.obolibrary.org/obo/GO_0098839,postsynaptic density membrane +15.163089,GO:0098878,http://purl.obolibrary.org/obo/GO_0098878,neurotransmitter receptor complex +15.163089,GO:0099524,http://purl.obolibrary.org/obo/GO_0099524,postsynaptic cytosol +15.163089,GO:0099634,http://purl.obolibrary.org/obo/GO_0099634,postsynaptic specialization membrane +15.163089,GO:1900042,http://purl.obolibrary.org/obo/GO_1900042,none +15.163089,GO:1900108,http://purl.obolibrary.org/obo/GO_1900108,negative regulation of nodal signaling pathway +15.163089,GO:1900130,http://purl.obolibrary.org/obo/GO_1900130,regulation of lipid binding +15.163089,GO:1900147,http://purl.obolibrary.org/obo/GO_1900147,regulation of Schwann cell migration +15.163089,GO:1900180,http://purl.obolibrary.org/obo/GO_1900180,regulation of protein localization to nucleus +15.163089,GO:1900181,http://purl.obolibrary.org/obo/GO_1900181,negative regulation of protein localization to nucleus +15.163089,GO:1900239,http://purl.obolibrary.org/obo/GO_1900239,regulation of phenotypic switching +15.163089,GO:1900363,http://purl.obolibrary.org/obo/GO_1900363,regulation of mRNA polyadenylation +15.163089,GO:1900988,http://purl.obolibrary.org/obo/GO_1900988,ajmaline biosynthetic process +15.163089,GO:1901305,http://purl.obolibrary.org/obo/GO_1901305,negative regulation of spermidine biosynthetic process +15.163089,GO:1901325,http://purl.obolibrary.org/obo/GO_1901325,response to antimycin A +15.163089,GO:1901385,http://purl.obolibrary.org/obo/GO_1901385,regulation of voltage-gated calcium channel activity +15.163089,GO:1901389,http://purl.obolibrary.org/obo/GO_1901389,negative regulation of transforming growth factor beta activation +15.163089,GO:1901597,http://purl.obolibrary.org/obo/GO_1901597,response to carbendazim +15.163089,GO:1901742,http://purl.obolibrary.org/obo/GO_1901742,2-deoxystreptamine metabolic process +15.163089,GO:1901744,http://purl.obolibrary.org/obo/GO_1901744,2-deoxystreptamine biosynthetic process +15.163089,GO:1901778,http://purl.obolibrary.org/obo/GO_1901778,pentalenolactone metabolic process +15.163089,GO:1901780,http://purl.obolibrary.org/obo/GO_1901780,pentalenolactone biosynthetic process +15.163089,GO:1901858,http://purl.obolibrary.org/obo/GO_1901858,regulation of mitochondrial DNA metabolic process +15.163089,GO:1901905,http://purl.obolibrary.org/obo/GO_1901905,response to tamsulosin +15.163089,GO:1902034,http://purl.obolibrary.org/obo/GO_1902034,negative regulation of hematopoietic stem cell proliferation +15.163089,GO:1902341,http://purl.obolibrary.org/obo/GO_1902341,xylitol transport +15.163089,GO:1902590,http://purl.obolibrary.org/obo/GO_1902590,multi-organism organelle organization +15.163089,GO:1902592,http://purl.obolibrary.org/obo/GO_1902592,none +15.163089,GO:1902715,http://purl.obolibrary.org/obo/GO_1902715,none +15.163089,GO:1902781,http://purl.obolibrary.org/obo/GO_1902781,cellular response to nonane +15.163089,GO:1902946,http://purl.obolibrary.org/obo/GO_1902946,protein localization to early endosome +15.163089,GO:1903322,http://purl.obolibrary.org/obo/GO_1903322,positive regulation of protein modification by small protein conjugation or removal +15.163089,GO:1903368,http://purl.obolibrary.org/obo/GO_1903368,regulation of foraging behavior +15.163089,GO:1903402,http://purl.obolibrary.org/obo/GO_1903402,regulation of renal phosphate excretion +15.163089,GO:1903405,http://purl.obolibrary.org/obo/GO_1903405,protein localization to nuclear body +15.163089,GO:1903446,http://purl.obolibrary.org/obo/GO_1903446,geraniol metabolic process +15.163089,GO:1903650,http://purl.obolibrary.org/obo/GO_1903650,negative regulation of cytoplasmic transport +15.163089,GO:1903712,http://purl.obolibrary.org/obo/GO_1903712,cysteine transmembrane transport +15.163089,GO:1903727,http://purl.obolibrary.org/obo/GO_1903727,positive regulation of phospholipid metabolic process +15.163089,GO:1903730,http://purl.obolibrary.org/obo/GO_1903730,regulation of phosphatidate phosphatase activity +15.163089,GO:1903867,http://purl.obolibrary.org/obo/GO_1903867,extraembryonic membrane development +15.163089,GO:1903967,http://purl.obolibrary.org/obo/GO_1903967,response to micafungin +15.163089,GO:1904046,http://purl.obolibrary.org/obo/GO_1904046,negative regulation of vascular endothelial growth factor production +15.163089,GO:1904229,http://purl.obolibrary.org/obo/GO_1904229,regulation of succinate dehydrogenase activity +15.163089,GO:1904716,http://purl.obolibrary.org/obo/GO_1904716,positive regulation of chaperone-mediated autophagy +15.163089,GO:1904965,http://purl.obolibrary.org/obo/GO_1904965,regulation of vitamin E biosynthetic process +15.163089,GO:1990006,http://purl.obolibrary.org/obo/GO_1990006,amorphous vesicle +15.163089,GO:1990064,http://purl.obolibrary.org/obo/GO_1990064,ground tissue pattern formation +15.163089,GO:1990121,http://purl.obolibrary.org/obo/GO_1990121,H-NS complex +15.163089,GO:1990145,http://purl.obolibrary.org/obo/GO_1990145,maintenance of translational fidelity +15.163089,GO:1990173,http://purl.obolibrary.org/obo/GO_1990173,protein localization to nucleoplasm +15.163089,GO:1990378,http://purl.obolibrary.org/obo/GO_1990378,upstream stimulatory factor complex +15.163089,GO:1990503,http://purl.obolibrary.org/obo/GO_1990503,dendritic lamellar body +15.163089,GO:1990726,http://purl.obolibrary.org/obo/GO_1990726,Lsm1-7-Pat1 complex +15.163089,GO:2000060,http://purl.obolibrary.org/obo/GO_2000060,positive regulation of ubiquitin-dependent protein catabolic process +15.163089,GO:2000067,http://purl.obolibrary.org/obo/GO_2000067,regulation of root morphogenesis +15.163089,GO:2000074,http://purl.obolibrary.org/obo/GO_2000074,regulation of type B pancreatic cell development +15.163089,GO:2000118,http://purl.obolibrary.org/obo/GO_2000118,regulation of sodium-dependent phosphate transport +15.163089,GO:2000346,http://purl.obolibrary.org/obo/GO_2000346,negative regulation of hepatocyte proliferation +15.163089,GO:2000380,http://purl.obolibrary.org/obo/GO_2000380,regulation of mesoderm development +15.163089,GO:2000389,http://purl.obolibrary.org/obo/GO_2000389,regulation of neutrophil extravasation +15.163089,GO:2000416,http://purl.obolibrary.org/obo/GO_2000416,regulation of eosinophil migration +15.163089,GO:2000470,http://purl.obolibrary.org/obo/GO_2000470,positive regulation of peroxidase activity +15.163089,GO:2000634,http://purl.obolibrary.org/obo/GO_2000634,regulation of primary miRNA processing +15.163089,GO:2000757,http://purl.obolibrary.org/obo/GO_2000757,negative regulation of peptidyl-lysine acetylation +15.163089,HP:0000625,http://purl.obolibrary.org/obo/HP_0000625,Eyelid coloboma +15.163089,HP:0000741,http://purl.obolibrary.org/obo/HP_0000741,Apathy +15.163089,HP:0001622,http://purl.obolibrary.org/obo/HP_0001622,Premature birth +15.163089,HP:0001643,http://purl.obolibrary.org/obo/HP_0001643,Patent ductus arteriosus +15.163089,HP:0001742,http://purl.obolibrary.org/obo/HP_0001742,Nasal congestion +15.163089,HP:0001935,http://purl.obolibrary.org/obo/HP_0001935,Microcytic anemia +15.163089,HP:0001965,http://purl.obolibrary.org/obo/HP_0001965,Abnormal scalp morphology +15.163089,HP:0001967,http://purl.obolibrary.org/obo/HP_0001967,Diffuse mesangial sclerosis +15.163089,HP:0001997,http://purl.obolibrary.org/obo/HP_0001997,Gout +15.163089,HP:0002089,http://purl.obolibrary.org/obo/HP_0002089,Pulmonary hypoplasia +15.163089,HP:0003811,http://purl.obolibrary.org/obo/HP_0003811,Neonatal death +15.163089,HP:0003829,http://purl.obolibrary.org/obo/HP_0003829,Incomplete penetrance +15.163089,HP:0004431,http://purl.obolibrary.org/obo/HP_0004431,Complement deficiency +15.163089,HP:0005339,http://purl.obolibrary.org/obo/HP_0005339,Abnormality of complement system +15.163089,HP:0011226,http://purl.obolibrary.org/obo/HP_0011226,Aplasia/Hypoplasia of the eyelid +15.163089,HP:0012182,http://purl.obolibrary.org/obo/HP_0012182,Oropharyngeal squamous cell carcinoma +15.163089,HP:0012416,http://purl.obolibrary.org/obo/HP_0012416,Hypercapnia +15.163089,HP:0012447,http://purl.obolibrary.org/obo/HP_0012447,Abnormal myelination +15.163089,HP:0025168,http://purl.obolibrary.org/obo/HP_0025168,Left ventricular diastolic dysfunction +15.163089,HP:0031796,http://purl.obolibrary.org/obo/HP_0031796,Recurrent +15.163089,HP:0100014,http://purl.obolibrary.org/obo/HP_0100014,Epiretinal membrane +15.163089,HP:0100035,http://purl.obolibrary.org/obo/HP_0100035,Phonic tics +15.163089,HP:0100743,http://purl.obolibrary.org/obo/HP_0100743,Neoplasm of the rectum +15.163089,HP:0200067,http://purl.obolibrary.org/obo/HP_0200067,Recurrent spontaneous abortion +15.163089,MONDO:0000182,http://purl.obolibrary.org/obo/MONDO_0000182,congenital myasthenic syndrome with tubular aggregates +15.163089,MONDO:0000253,http://purl.obolibrary.org/obo/MONDO_0000253,piedra +15.163089,MONDO:0000271,http://purl.obolibrary.org/obo/MONDO_0000271,tuberculous salpingitis +15.163089,MONDO:0000644,http://purl.obolibrary.org/obo/MONDO_0000644,cervical benign neoplasm +15.163089,MONDO:0000660,http://purl.obolibrary.org/obo/MONDO_0000660,akinetopsia +15.163089,MONDO:0000777,http://purl.obolibrary.org/obo/MONDO_0000777,gastrointestinal allergy +15.163089,MONDO:0000975,http://purl.obolibrary.org/obo/MONDO_0000975,lipoma of spermatic cord +15.163089,MONDO:0001205,http://purl.obolibrary.org/obo/MONDO_0001205,hypersecretion glaucoma +15.163089,MONDO:0001297,http://purl.obolibrary.org/obo/MONDO_0001297,cardiac tamponade +15.163089,MONDO:0001460,http://purl.obolibrary.org/obo/MONDO_0001460,dyshormonogenic goiter +15.163089,MONDO:0001465,http://purl.obolibrary.org/obo/MONDO_0001465,superficial keratitis +15.163089,MONDO:0001726,http://purl.obolibrary.org/obo/MONDO_0001726,childhood disintegrative disease +15.163089,MONDO:0001737,http://purl.obolibrary.org/obo/MONDO_0001737,tetanus neonatorum +15.163089,MONDO:0001752,http://purl.obolibrary.org/obo/MONDO_0001752,alveolar periostitis +15.163089,MONDO:0001793,http://purl.obolibrary.org/obo/MONDO_0001793,excessive tearing +15.163089,MONDO:0001797,http://purl.obolibrary.org/obo/MONDO_0001797,chancroid +15.163089,MONDO:0001899,http://purl.obolibrary.org/obo/MONDO_0001899,rheumatic congestive heart failure +15.163089,MONDO:0001915,http://purl.obolibrary.org/obo/MONDO_0001915,orbital cyst +15.163089,MONDO:0002112,http://purl.obolibrary.org/obo/MONDO_0002112,benign peritoneal mesothelioma +15.163089,MONDO:0002219,http://purl.obolibrary.org/obo/MONDO_0002219,paraurethral gland neoplasm +15.163089,MONDO:0002270,http://purl.obolibrary.org/obo/MONDO_0002270,viral gastritis +15.163089,MONDO:0002333,http://purl.obolibrary.org/obo/MONDO_0002333,splenic abscess +15.163089,MONDO:0002398,http://purl.obolibrary.org/obo/MONDO_0002398,mucinous adenofibroma +15.163089,MONDO:0002455,http://purl.obolibrary.org/obo/MONDO_0002455,exocervical carcinoma +15.163089,MONDO:0002495,http://purl.obolibrary.org/obo/MONDO_0002495,colon signet ring cell adenocarcinoma +15.163089,MONDO:0002592,http://purl.obolibrary.org/obo/MONDO_0002592,invasive malignant thymoma +15.163089,MONDO:0002747,http://purl.obolibrary.org/obo/MONDO_0002747,endometrial mucinous adenocarcinoma +15.163089,MONDO:0002881,http://purl.obolibrary.org/obo/MONDO_0002881,vaginal adenosarcoma +15.163089,MONDO:0002946,http://purl.obolibrary.org/obo/MONDO_0002946,gynatresia +15.163089,MONDO:0002982,http://purl.obolibrary.org/obo/MONDO_0002982,peripheral primitive neuroectodermal tumor of soft tissues +15.163089,MONDO:0002991,http://purl.obolibrary.org/obo/MONDO_0002991,adenocarcinofibroma +15.163089,MONDO:0003021,http://purl.obolibrary.org/obo/MONDO_0003021,central nervous system angiosarcoma +15.163089,MONDO:0003244,http://purl.obolibrary.org/obo/MONDO_0003244,central nervous system mesenchymal non-meningothelial tumor +15.163089,MONDO:0003320,http://purl.obolibrary.org/obo/MONDO_0003320,blastema predominant kidney Wilms tumor +15.163089,MONDO:0003358,http://purl.obolibrary.org/obo/MONDO_0003358,anus leiomyosarcoma +15.163089,MONDO:0003503,http://purl.obolibrary.org/obo/MONDO_0003503,fallopian tube squamous cell carcinoma +15.163089,MONDO:0003701,http://purl.obolibrary.org/obo/MONDO_0003701,thyroid gland diffuse sclerosing papillary carcinoma +15.163089,MONDO:0004015,http://purl.obolibrary.org/obo/MONDO_0004015,pineal region teratoma +15.163089,MONDO:0004060,http://purl.obolibrary.org/obo/MONDO_0004060,peripheral epithelioid sarcoma +15.163089,MONDO:0004223,http://purl.obolibrary.org/obo/MONDO_0004223,polyp of middle ear +15.163089,MONDO:0004369,http://purl.obolibrary.org/obo/MONDO_0004369,renal infectious disease +15.163089,MONDO:0004451,http://purl.obolibrary.org/obo/MONDO_0004451,sarcomatous intrahepatic cholangiocarcinoma +15.163089,MONDO:0004509,http://purl.obolibrary.org/obo/MONDO_0004509,intrahepatic biliary papillomatosis +15.163089,MONDO:0004530,http://purl.obolibrary.org/obo/MONDO_0004530,early invasive cervical adenocarcinoma +15.163089,MONDO:0004620,http://purl.obolibrary.org/obo/MONDO_0004620,"Hodgkin's lymphoma, lymphocytic depletion" +15.163089,MONDO:0004663,http://purl.obolibrary.org/obo/MONDO_0004663,colon carcinoma in situ +15.163089,MONDO:0004716,http://purl.obolibrary.org/obo/MONDO_0004716,stomach carcinoma in situ +15.163089,MONDO:0004726,http://purl.obolibrary.org/obo/MONDO_0004726,liver inflammatory myofibroblastic tumor +15.163089,MONDO:0004877,http://purl.obolibrary.org/obo/MONDO_0004877,transient neonatal thrombocytopenia +15.163089,MONDO:0005603,http://purl.obolibrary.org/obo/MONDO_0005603,pancreatic tubular adenocarcinoma +15.163089,MONDO:0005662,http://purl.obolibrary.org/obo/MONDO_0005662,balantidiasis +15.163089,MONDO:0005704,http://purl.obolibrary.org/obo/MONDO_0005704,Ciliophora infectious disease +15.163089,MONDO:0005771,http://purl.obolibrary.org/obo/MONDO_0005771,geographic tongue +15.163089,MONDO:0005802,http://purl.obolibrary.org/obo/MONDO_0005802,hymenolepiasis +15.163089,MONDO:0005873,http://purl.obolibrary.org/obo/MONDO_0005873,neuroaspergillosis +15.163089,MONDO:0005978,http://purl.obolibrary.org/obo/MONDO_0005978,theileriasis +15.163089,MONDO:0005984,http://purl.obolibrary.org/obo/MONDO_0005984,tinea pedis +15.163089,MONDO:0006140,http://purl.obolibrary.org/obo/MONDO_0006140,"cervical mucinous adenocarcinoma, minimal deviation variant" +15.163089,MONDO:0006539,http://purl.obolibrary.org/obo/MONDO_0006539,diffuse lipomatosis +15.163089,MONDO:0006660,http://purl.obolibrary.org/obo/MONDO_0006660,arthus reaction +15.163089,MONDO:0006730,http://purl.obolibrary.org/obo/MONDO_0006730,drug psychosis +15.163089,MONDO:0006944,http://purl.obolibrary.org/obo/MONDO_0006944,renal aminoaciduria +15.163089,MONDO:0007181,http://purl.obolibrary.org/obo/MONDO_0007181,axial osteomalacia +15.163089,MONDO:0007232,http://purl.obolibrary.org/obo/MONDO_0007232,autosomal dominant brachyolmia +15.163089,MONDO:0007311,http://purl.obolibrary.org/obo/MONDO_0007311,Charcot-Marie-Tooth disease type 1E +15.163089,MONDO:0007378,http://purl.obolibrary.org/obo/MONDO_0007378,posterior polymorphous corneal dystrophy 1 +15.163089,MONDO:0007441,http://purl.obolibrary.org/obo/MONDO_0007441,dentinogenesis imperfecta type 2 +15.163089,MONDO:0007600,http://purl.obolibrary.org/obo/MONDO_0007600,primary Fanconi syndrome +15.163089,MONDO:0007681,http://purl.obolibrary.org/obo/MONDO_0007681,"goiter, multinodular 1, with or without Sertoli-Leydig cell tumors" +15.163089,MONDO:0007707,http://purl.obolibrary.org/obo/MONDO_0007707,hemangiomas of small intestine +15.163089,MONDO:0007713,http://purl.obolibrary.org/obo/MONDO_0007713,clonic hemifacial spasm +15.163089,MONDO:0007771,http://purl.obolibrary.org/obo/MONDO_0007771,"hyperpigmentation with or without hypopigmentation, familial progressive" +15.163089,MONDO:0007791,http://purl.obolibrary.org/obo/MONDO_0007791,familial hypocalciuric hypercalcemia 1 +15.163089,MONDO:0007835,http://purl.obolibrary.org/obo/MONDO_0007835,intussusception +15.163089,MONDO:0007856,http://purl.obolibrary.org/obo/MONDO_0007856,palmoplantar keratoderma-esophageal carcinoma syndrome +15.163089,MONDO:0007967,http://purl.obolibrary.org/obo/MONDO_0007967,melanoma and neural system tumor syndrome +15.163089,MONDO:0008019,http://purl.obolibrary.org/obo/MONDO_0008019,mullerian aplasia and hyperandrogenism +15.163089,MONDO:0008092,http://purl.obolibrary.org/obo/MONDO_0008092,hereditary neutrophilia +15.163089,MONDO:0008173,http://purl.obolibrary.org/obo/MONDO_0008173,pachyonychia congenita 1 +15.163089,MONDO:0008175,http://purl.obolibrary.org/obo/MONDO_0008175,pacman dysplasia +15.163089,MONDO:0008255,http://purl.obolibrary.org/obo/MONDO_0008255,platelet factor 3 deficiency +15.163089,MONDO:0008267,http://purl.obolibrary.org/obo/MONDO_0008267,orofaciodigital syndrome V +15.163089,MONDO:0008269,http://purl.obolibrary.org/obo/MONDO_0008269,polydactyly of a biphalangeal thumb +15.163089,MONDO:0008365,http://purl.obolibrary.org/obo/MONDO_0008365,recombinant 8 syndrome +15.163089,MONDO:0008488,http://purl.obolibrary.org/obo/MONDO_0008488,holoprosencephaly-radial heart renal anomalies syndrome +15.163089,MONDO:0008541,http://purl.obolibrary.org/obo/MONDO_0008541,spermatic cord torsion +15.163089,MONDO:0008614,http://purl.obolibrary.org/obo/MONDO_0008614,suppressor of tumorigenicity 3 +15.163089,MONDO:0008642,http://purl.obolibrary.org/obo/MONDO_0008642,VACTERL/vater association +15.163089,MONDO:0008759,http://purl.obolibrary.org/obo/MONDO_0008759,oxoglutaricaciduria +15.163089,MONDO:0009022,http://purl.obolibrary.org/obo/MONDO_0009022,"corpus callosum, agenesis of" +15.163089,MONDO:0009069,http://purl.obolibrary.org/obo/MONDO_0009069,"congenital lactic acidosis, Saguenay-Lac-Saint-Jean type" +15.163089,MONDO:0009151,http://purl.obolibrary.org/obo/MONDO_0009151,cleft lip/palate-ectodermal dysplasia syndrome +15.163089,MONDO:0009223,http://purl.obolibrary.org/obo/MONDO_0009223,hypogonadotropic hypogonadism 23 with or without anosmia +15.163089,MONDO:0009231,http://purl.obolibrary.org/obo/MONDO_0009231,fibular hypoplasia and complex brachydactyly +15.163089,MONDO:0009425,http://purl.obolibrary.org/obo/MONDO_0009425,hypomandibular faciocranial dysostosis +15.163089,MONDO:0009486,http://purl.obolibrary.org/obo/MONDO_0009486,autosomal recessive Kenny-Caffey syndrome +15.163089,MONDO:0009593,http://purl.obolibrary.org/obo/MONDO_0009593,"spondylometaphyseal dysplasia, Sedaghatian type" +15.163089,MONDO:0009629,http://purl.obolibrary.org/obo/MONDO_0009629,Desbuquois dysplasia 1 +15.163089,MONDO:0009714,http://purl.obolibrary.org/obo/MONDO_0009714,myosclerosis +15.163089,MONDO:0009725,http://purl.obolibrary.org/obo/MONDO_0009725,nemaline myopathy 2 +15.163089,MONDO:0009742,http://purl.obolibrary.org/obo/MONDO_0009742,neuroectodermal melanolysosomal disease +15.163089,MONDO:0009758,http://purl.obolibrary.org/obo/MONDO_0009758,congenital stationary night blindness 1B +15.163089,MONDO:0009785,http://purl.obolibrary.org/obo/MONDO_0009785,opsismodysplasia +15.163089,MONDO:0009883,http://purl.obolibrary.org/obo/MONDO_0009883,alpha-2-plasmin inhibitor deficiency +15.163089,MONDO:0009914,http://purl.obolibrary.org/obo/MONDO_0009914,pseudodiastrophic dysplasia +15.163089,MONDO:0009938,http://purl.obolibrary.org/obo/MONDO_0009938,pulmonic stenosis +15.163089,MONDO:0010403,http://purl.obolibrary.org/obo/MONDO_0010403,albinism-deafness syndrome +15.163089,MONDO:0010446,http://purl.obolibrary.org/obo/MONDO_0010446,X-linked cone dysfunction syndrome with myopia +15.163089,MONDO:0010576,http://purl.obolibrary.org/obo/MONDO_0010576,X-linked mixed deafness with perilymphatic gusher +15.163089,MONDO:0010634,http://purl.obolibrary.org/obo/MONDO_0010634,"jaundice, familial obstructive, of infancy" +15.163089,MONDO:0010698,http://purl.obolibrary.org/obo/MONDO_0010698,optic atrophy 2 +15.163089,MONDO:0010699,http://purl.obolibrary.org/obo/MONDO_0010699,Charcot-Marie-Tooth disease X-linked recessive 5 +15.163089,MONDO:0010749,http://purl.obolibrary.org/obo/MONDO_0010749,trigonocephaly-short stature-developmental delay syndrome +15.163089,MONDO:0010842,http://purl.obolibrary.org/obo/MONDO_0010842,multiple cutaneous and mucosal venous malformations +15.163089,MONDO:0010933,http://purl.obolibrary.org/obo/MONDO_0010933,autosomal recessive nonsyndromic deafness 4 +15.163089,MONDO:0010986,http://purl.obolibrary.org/obo/MONDO_0010986,autosomal recessive nonsyndromic deafness 9 +15.163089,MONDO:0011049,http://purl.obolibrary.org/obo/MONDO_0011049,fine-Lubinsky syndrome +15.163089,MONDO:0011106,http://purl.obolibrary.org/obo/MONDO_0011106,facial dysmorphism-lens dislocation-anterior segment abnormalities-spontaneous filtering blebs syndrome +15.163089,MONDO:0011190,http://purl.obolibrary.org/obo/MONDO_0011190,nephronophthisis 2 +15.163089,MONDO:0011287,http://purl.obolibrary.org/obo/MONDO_0011287,craniosynostosis-anal anomalies-porokeratosis syndrome +15.163089,MONDO:0011291,http://purl.obolibrary.org/obo/MONDO_0011291,congenital disorder of glycosylation type 1C +15.163089,MONDO:0011299,http://purl.obolibrary.org/obo/MONDO_0011299,Huntington disease-like 1 +15.163089,MONDO:0011448,http://purl.obolibrary.org/obo/MONDO_0011448,PPARG-related familial partial lipodystrophy +15.163089,MONDO:0011499,http://purl.obolibrary.org/obo/MONDO_0011499,Okamoto syndrome +15.163089,MONDO:0011531,http://purl.obolibrary.org/obo/MONDO_0011531,Noonan syndrome 2 +15.163089,MONDO:0011584,http://purl.obolibrary.org/obo/MONDO_0011584,Fanconi anemia complementation group D1 +15.163089,MONDO:0011597,http://purl.obolibrary.org/obo/MONDO_0011597,atopic dermatitis 3 +15.163089,MONDO:0011707,http://purl.obolibrary.org/obo/MONDO_0011707,familial dyskinesia and facial myokymia +15.163089,MONDO:0011798,http://purl.obolibrary.org/obo/MONDO_0011798,"hypoprebetalipoproteinemia, acanthocytosis, retinitis pigmentosa, and pallidal degeneration" +15.163089,MONDO:0011821,http://purl.obolibrary.org/obo/MONDO_0011821,"Meckel syndrome, type 3" +15.163089,MONDO:0011836,http://purl.obolibrary.org/obo/MONDO_0011836,thyroid Hurthle cell carcinoma +15.163089,MONDO:0012012,http://purl.obolibrary.org/obo/MONDO_0012012,Charcot-Marie-Tooth disease dominant intermediate C +15.163089,MONDO:0012064,http://purl.obolibrary.org/obo/MONDO_0012064,choanal atresia-hearing loss-cardiac defects-craniofacial dysmorphism syndrome +15.163089,MONDO:0012120,http://purl.obolibrary.org/obo/MONDO_0012120,pyruvate dehydrogenase phosphatase deficiency +15.163089,MONDO:0012263,http://purl.obolibrary.org/obo/MONDO_0012263,"autoimmune disease, susceptibility to, 4" +15.163089,MONDO:0012326,http://purl.obolibrary.org/obo/MONDO_0012326,autosomal recessive nonsyndromic deafness 42 +15.163089,MONDO:0012328,http://purl.obolibrary.org/obo/MONDO_0012328,trichilemmal cyst +15.163089,MONDO:0012426,http://purl.obolibrary.org/obo/MONDO_0012426,immunodeficiency 25 +15.163089,MONDO:0012427,http://purl.obolibrary.org/obo/MONDO_0012427,Loeys-Dietz syndrome 2 +15.163089,MONDO:0012453,http://purl.obolibrary.org/obo/MONDO_0012453,hereditary spastic paraplegia 31 +15.163089,MONDO:0012549,http://purl.obolibrary.org/obo/MONDO_0012549,"autosomal recessive ataxia, Beauce type" +15.163089,MONDO:0012753,http://purl.obolibrary.org/obo/MONDO_0012753,amyotrophic lateral sclerosis type 9 +15.163089,MONDO:0012831,http://purl.obolibrary.org/obo/MONDO_0012831,inflammatory bowel disease 13 +15.163089,MONDO:0012899,http://purl.obolibrary.org/obo/MONDO_0012899,"alopecia, androgenetic, 3" +15.163089,MONDO:0012916,http://purl.obolibrary.org/obo/MONDO_0012916,chromosome 2p16.1-p15 deletion syndrome +15.163089,MONDO:0013011,http://purl.obolibrary.org/obo/MONDO_0013011,atrial septal defect 5 +15.163089,MONDO:0013056,http://purl.obolibrary.org/obo/MONDO_0013056,"developmental and epileptic encephalopathy, 39" +15.163089,MONDO:0013060,http://purl.obolibrary.org/obo/MONDO_0013060,autosomal recessive Parkinson disease 14 +15.163089,MONDO:0013123,http://purl.obolibrary.org/obo/MONDO_0013123,atrial septal defect 6 +15.163089,MONDO:0013228,http://purl.obolibrary.org/obo/MONDO_0013228,spondylo-megaepiphyseal-metaphyseal dysplasia +15.163089,MONDO:0013294,http://purl.obolibrary.org/obo/MONDO_0013294,atopic dermatitis 8 +15.163089,MONDO:0013409,http://purl.obolibrary.org/obo/MONDO_0013409,age related macular degeneration 5 +15.163089,MONDO:0013412,http://purl.obolibrary.org/obo/MONDO_0013412,hypertrophic cardiomyopathy 9 +15.163089,MONDO:0013477,http://purl.obolibrary.org/obo/MONDO_0013477,hypertrophic cardiomyopathy 20 +15.163089,MONDO:0013485,http://purl.obolibrary.org/obo/MONDO_0013485,spinocerebellar ataxia type 35 +15.163089,MONDO:0013579,http://purl.obolibrary.org/obo/MONDO_0013579,methylmalonate semialdehyde dehydrogenase deficiency +15.163089,MONDO:0013674,http://purl.obolibrary.org/obo/MONDO_0013674,neurodegeneration with brain iron accumulation 4 +15.163089,MONDO:0013714,http://purl.obolibrary.org/obo/MONDO_0013714,mannose-binding lectin deficiency +15.163089,MONDO:0013743,http://purl.obolibrary.org/obo/MONDO_0013743,autosomal systemic lupus erythematosus type 16 +15.163089,MONDO:0013766,http://purl.obolibrary.org/obo/MONDO_0013766,familial cold autoinflammatory syndrome 3 +15.163089,MONDO:0014019,http://purl.obolibrary.org/obo/MONDO_0014019,dystonia 24 +15.163089,MONDO:0014061,http://purl.obolibrary.org/obo/MONDO_0014061,Steel syndrome +15.163089,MONDO:0014263,http://purl.obolibrary.org/obo/MONDO_0014263,8q24.3 microdeletion syndrome +15.163089,MONDO:0014343,http://purl.obolibrary.org/obo/MONDO_0014343,Desbuquois dysplasia 2 +15.163089,MONDO:0014776,http://purl.obolibrary.org/obo/MONDO_0014776,spinocerebellar ataxia type 42 +15.163089,MONDO:0015071,http://purl.obolibrary.org/obo/MONDO_0015071,middle ear neuroendocrine tumor +15.163089,MONDO:0015630,http://purl.obolibrary.org/obo/MONDO_0015630,von Willebrand disease type 2M +15.163089,MONDO:0015934,http://purl.obolibrary.org/obo/MONDO_0015934,non-syndromic urogenital tract malformation of male and female +15.163089,MONDO:0016009,http://purl.obolibrary.org/obo/MONDO_0016009,fetal trimethadione syndrome +15.163089,MONDO:0016032,http://purl.obolibrary.org/obo/MONDO_0016032,femoral agenesis/hypoplasia +15.163089,MONDO:0016100,http://purl.obolibrary.org/obo/MONDO_0016100,rippling muscle disease with myasthenia gravis +15.163089,MONDO:0016144,http://purl.obolibrary.org/obo/MONDO_0016144,qualitative or quantitative defects of delta-sarcoglycan +15.163089,MONDO:0016148,http://purl.obolibrary.org/obo/MONDO_0016148,qualitative or quantitative defects of collagen 6 +15.163089,MONDO:0016445,http://purl.obolibrary.org/obo/MONDO_0016445,familial anetoderma +15.163089,MONDO:0016496,http://purl.obolibrary.org/obo/MONDO_0016496,pharyngeal-cervical-brachial variant of Guillain-Barre syndrome +15.163089,MONDO:0016659,http://purl.obolibrary.org/obo/MONDO_0016659,8p23.1 duplication syndrome +15.163089,MONDO:0016675,http://purl.obolibrary.org/obo/MONDO_0016675,distal arthrogryposis type 10 +15.163089,MONDO:0016908,http://purl.obolibrary.org/obo/MONDO_0016908,partial monosomy of the long arm of chromosome 9 +15.163089,MONDO:0016929,http://purl.obolibrary.org/obo/MONDO_0016929,partial duplication of chromosome 8 +15.163089,MONDO:0016945,http://purl.obolibrary.org/obo/MONDO_0016945,partial duplication of the short arm of chromosome 8 +15.163089,MONDO:0016955,http://purl.obolibrary.org/obo/MONDO_0016955,partial duplication of the long arm of chromosome 4 +15.163089,MONDO:0017054,http://purl.obolibrary.org/obo/MONDO_0017054,thiamine-responsive maple syrup urine disease +15.163089,MONDO:0017097,http://purl.obolibrary.org/obo/MONDO_0017097,isolated focal cortical dysplasia type Ib +15.163089,MONDO:0017239,http://purl.obolibrary.org/obo/MONDO_0017239,familial progressive hyper- and hypopigmentation +15.163089,MONDO:0017384,http://purl.obolibrary.org/obo/MONDO_0017384,acute generalized exanthematous pustulosis +15.163089,MONDO:0017586,http://purl.obolibrary.org/obo/MONDO_0017586,onychocytic matricoma +15.163089,MONDO:0017811,http://purl.obolibrary.org/obo/MONDO_0017811,severe neonatal hypotonia-seizures-encephalopathy syndrome due to 5q31.3 microdeletion +15.163089,MONDO:0017831,http://purl.obolibrary.org/obo/MONDO_0017831,mild Canavan disease +15.163089,MONDO:0017865,http://purl.obolibrary.org/obo/MONDO_0017865,congenital pulmonary valve stenosis +15.163089,MONDO:0018382,http://purl.obolibrary.org/obo/MONDO_0018382,epiphysiolysis of the hip +15.163089,MONDO:0018433,http://purl.obolibrary.org/obo/MONDO_0018433,acute myeloid leukemia with t(6;9)(p23;q34) +15.163089,MONDO:0018434,http://purl.obolibrary.org/obo/MONDO_0018434,acute myeloid leukemia with t(9;11)(p22;q23) +15.163089,MONDO:0018446,http://purl.obolibrary.org/obo/MONDO_0018446,autosomal recessive cerebellar ataxia - epilepsy - intellectual disability syndrome +15.163089,MONDO:0018509,http://purl.obolibrary.org/obo/MONDO_0018509,squamous cell carcinoma of the small intestine +15.163089,MONDO:0018527,http://purl.obolibrary.org/obo/MONDO_0018527,osteoclastic giant cell tumor of pancreas +15.163089,MONDO:0018534,http://purl.obolibrary.org/obo/MONDO_0018534,squamous cell carcinoma of liver and intrahepatic biliary tract +15.163089,MONDO:0018580,http://purl.obolibrary.org/obo/MONDO_0018580,PURA-related severe neonatal hypotonia-seizures-encephalopathy syndrome +15.163089,MONDO:0018589,http://purl.obolibrary.org/obo/MONDO_0018589,AApoAIV amyloidosis +15.163089,MONDO:0018641,http://purl.obolibrary.org/obo/MONDO_0018641,none +15.163089,MONDO:0018642,http://purl.obolibrary.org/obo/MONDO_0018642,NIK deficiency +15.163089,MONDO:0018752,http://purl.obolibrary.org/obo/MONDO_0018752,exercise-induced malignant hyperthermia +15.163089,MONDO:0018783,http://purl.obolibrary.org/obo/MONDO_0018783,fibroblastic rheumatism +15.163089,MONDO:0018851,http://purl.obolibrary.org/obo/MONDO_0018851,familial keratoacanthoma +15.163089,MONDO:0018930,http://purl.obolibrary.org/obo/MONDO_0018930,monosomy 21 +15.163089,MONDO:0019137,http://purl.obolibrary.org/obo/MONDO_0019137,non-24-hour sleep-wake syndrome +15.163089,MONDO:0019141,http://purl.obolibrary.org/obo/MONDO_0019141,porokeratosis of Mibelli +15.163089,MONDO:0019315,http://purl.obolibrary.org/obo/MONDO_0019315,diffuse cutaneous mastocytosis +15.163089,MONDO:0019332,http://purl.obolibrary.org/obo/MONDO_0019332,punctate palmoplantar keratoderma type 1 +15.163089,MONDO:0019407,http://purl.obolibrary.org/obo/MONDO_0019407,"microcephalic osteodysplastic dysplasia, Saul-Wilson type" +15.163089,MONDO:0019537,http://purl.obolibrary.org/obo/MONDO_0019537,hemoglobin D disease +15.163089,MONDO:0019949,http://purl.obolibrary.org/obo/MONDO_0019949,zebra body myopathy +15.163089,MONDO:0020317,http://purl.obolibrary.org/obo/MONDO_0020317,acute myeloid leukemia with 11q23 abnormalities +15.163089,MONDO:0020373,http://purl.obolibrary.org/obo/MONDO_0020373,early-onset anterior polar cataract +15.163089,MONDO:0020546,http://purl.obolibrary.org/obo/MONDO_0020546,acute graft versus host disease +15.163089,MONDO:0020569,http://purl.obolibrary.org/obo/MONDO_0020569,intermediate DEND syndrome +15.163089,MONDO:0020602,http://purl.obolibrary.org/obo/MONDO_0020602,Simpson-Golabi-Behmel syndrome type 1 +15.163089,MONDO:0021273,http://purl.obolibrary.org/obo/MONDO_0021273,leiomyoma of ciliary body +15.163089,MONDO:0021396,http://purl.obolibrary.org/obo/MONDO_0021396,polyp of vulva +15.163089,MONDO:0021481,http://purl.obolibrary.org/obo/MONDO_0021481,benign neoplasm of submandibular gland +15.163089,MONDO:0021543,http://purl.obolibrary.org/obo/MONDO_0021543,hemangioma of gingiva +15.163089,MONDO:0022202,http://purl.obolibrary.org/obo/MONDO_0022202,disseminated +15.163089,MONDO:0022402,http://purl.obolibrary.org/obo/MONDO_0022402,agyria-pachygyria type 1 +15.163089,MONDO:0022846,http://purl.obolibrary.org/obo/MONDO_0022846,congenital nonhemolytic jaundice +15.163089,MONDO:0022983,http://purl.obolibrary.org/obo/MONDO_0022983,Dieterich disease +15.163089,MONDO:0024492,http://purl.obolibrary.org/obo/MONDO_0024492,"tumor grade 2, general grading system" +15.163089,MONDO:0024555,http://purl.obolibrary.org/obo/MONDO_0024555,megalencephalic leukoencephalopathy with subcortical cysts 1 +15.163089,MONDO:0025485,http://purl.obolibrary.org/obo/MONDO_0025485,feline acquired immunodeficiency syndrome +15.163089,MONDO:0025506,http://purl.obolibrary.org/obo/MONDO_0025506,porcine postweaning multisystemic wasting syndrome +15.163089,MONDO:0042495,http://purl.obolibrary.org/obo/MONDO_0042495,arteriosclerotic retinopathy +15.163089,MONDO:0043364,http://purl.obolibrary.org/obo/MONDO_0043364,eosinophil peroxidase deficiency +15.163089,MONDO:0043537,http://purl.obolibrary.org/obo/MONDO_0043537,cluster headache syndrome +15.163089,MONDO:0044014,http://purl.obolibrary.org/obo/MONDO_0044014,postpartum thyroiditis +15.163089,MONDO:0044209,http://purl.obolibrary.org/obo/MONDO_0044209,disorder of lectin complement activation pathway +15.163089,MONDO:0044709,http://purl.obolibrary.org/obo/MONDO_0044709,cochleovestibular dysplasia +15.163089,MONDO:0044885,http://purl.obolibrary.org/obo/MONDO_0044885,tonsillar lipoma +15.163089,MONDO:0044913,http://purl.obolibrary.org/obo/MONDO_0044913,metastatic malignant neoplasm in the eye +15.163089,MONDO:0100054,http://purl.obolibrary.org/obo/MONDO_0100054,idiopathic anaphylaxis +15.163089,MONDO:0100063,http://purl.obolibrary.org/obo/MONDO_0100063,Pericytoma with t(7;12) +15.163089,MONDO:0100102,http://purl.obolibrary.org/obo/MONDO_0100102,fetal akinesia deformation sequence 2 +15.163089,MONDO:0100225,http://purl.obolibrary.org/obo/MONDO_0100225,collagen 6-related myopathy +15.163089,MONDO:0100238,http://purl.obolibrary.org/obo/MONDO_0100238,inherited Fanconi renotubular syndrome +15.163089,MOP:0000591,http://purl.obolibrary.org/obo/MOP_0000591,none +15.163089,MOP:0000620,http://purl.obolibrary.org/obo/MOP_0000620,none +15.163089,MOP:0005030,http://purl.obolibrary.org/obo/MOP_0005030,none +15.163089,NCBITaxon:10129,http://purl.obolibrary.org/obo/NCBITaxon_10129,none +15.163089,NCBITaxon:10161,http://purl.obolibrary.org/obo/NCBITaxon_10161,none +15.163089,NCBITaxon:10230,http://purl.obolibrary.org/obo/NCBITaxon_10230,none +15.163089,NCBITaxon:10249,http://purl.obolibrary.org/obo/NCBITaxon_10249,none +15.163089,NCBITaxon:103943,http://purl.obolibrary.org/obo/NCBITaxon_103943,none +15.163089,NCBITaxon:104298,http://purl.obolibrary.org/obo/NCBITaxon_104298,none +15.163089,NCBITaxon:104366,http://purl.obolibrary.org/obo/NCBITaxon_104366,none +15.163089,NCBITaxon:104430,http://purl.obolibrary.org/obo/NCBITaxon_104430,none +15.163089,NCBITaxon:10620,http://purl.obolibrary.org/obo/NCBITaxon_10620,none +15.163089,NCBITaxon:106821,http://purl.obolibrary.org/obo/NCBITaxon_106821,none +15.163089,NCBITaxon:106975,http://purl.obolibrary.org/obo/NCBITaxon_106975,none +15.163089,NCBITaxon:10756,http://purl.obolibrary.org/obo/NCBITaxon_10756,none +15.163089,NCBITaxon:10820,http://purl.obolibrary.org/obo/NCBITaxon_10820,none +15.163089,NCBITaxon:10830,http://purl.obolibrary.org/obo/NCBITaxon_10830,none +15.163089,NCBITaxon:10836,http://purl.obolibrary.org/obo/NCBITaxon_10836,none +15.163089,NCBITaxon:10878,http://purl.obolibrary.org/obo/NCBITaxon_10878,none +15.163089,NCBITaxon:109270,http://purl.obolibrary.org/obo/NCBITaxon_109270,none +15.163089,NCBITaxon:10931,http://purl.obolibrary.org/obo/NCBITaxon_10931,none +15.163089,NCBITaxon:109680,http://purl.obolibrary.org/obo/NCBITaxon_109680,none +15.163089,NCBITaxon:109798,http://purl.obolibrary.org/obo/NCBITaxon_109798,none +15.163089,NCBITaxon:109804,http://purl.obolibrary.org/obo/NCBITaxon_109804,none +15.163089,NCBITaxon:109810,http://purl.obolibrary.org/obo/NCBITaxon_109810,none +15.163089,NCBITaxon:110551,http://purl.obolibrary.org/obo/NCBITaxon_110551,Myxininae +15.163089,NCBITaxon:110555,http://purl.obolibrary.org/obo/NCBITaxon_110555,Myxine +15.163089,NCBITaxon:11144,http://purl.obolibrary.org/obo/NCBITaxon_11144,none +15.163089,NCBITaxon:1115744,http://purl.obolibrary.org/obo/NCBITaxon_1115744,none +15.163089,NCBITaxon:113553,http://purl.obolibrary.org/obo/NCBITaxon_113553,none +15.163089,NCBITaxon:115341,http://purl.obolibrary.org/obo/NCBITaxon_115341,none +15.163089,NCBITaxon:116167,http://purl.obolibrary.org/obo/NCBITaxon_116167,none +15.163089,NCBITaxon:116707,http://purl.obolibrary.org/obo/NCBITaxon_116707,none +15.163089,NCBITaxon:117198,http://purl.obolibrary.org/obo/NCBITaxon_117198,none +15.163089,NCBITaxon:11884,http://purl.obolibrary.org/obo/NCBITaxon_11884,none +15.163089,NCBITaxon:119069,http://purl.obolibrary.org/obo/NCBITaxon_119069,none +15.163089,NCBITaxon:119211,http://purl.obolibrary.org/obo/NCBITaxon_119211,none +15.163089,NCBITaxon:11989,http://purl.obolibrary.org/obo/NCBITaxon_11989,none +15.163089,NCBITaxon:121175,http://purl.obolibrary.org/obo/NCBITaxon_121175,none +15.163089,NCBITaxon:121236,http://purl.obolibrary.org/obo/NCBITaxon_121236,none +15.163089,NCBITaxon:1213422,http://purl.obolibrary.org/obo/NCBITaxon_1213422,none +15.163089,NCBITaxon:121570,http://purl.obolibrary.org/obo/NCBITaxon_121570,none +15.163089,NCBITaxon:12194,http://purl.obolibrary.org/obo/NCBITaxon_12194,none +15.163089,NCBITaxon:1220025,http://purl.obolibrary.org/obo/NCBITaxon_1220025,none +15.163089,NCBITaxon:1220494,http://purl.obolibrary.org/obo/NCBITaxon_1220494,none +15.163089,NCBITaxon:12210,http://purl.obolibrary.org/obo/NCBITaxon_12210,none +15.163089,NCBITaxon:1225732,http://purl.obolibrary.org/obo/NCBITaxon_1225732,none +15.163089,NCBITaxon:1232894,http://purl.obolibrary.org/obo/NCBITaxon_1232894,none +15.163089,NCBITaxon:12333,http://purl.obolibrary.org/obo/NCBITaxon_12333,none +15.163089,NCBITaxon:1233678,http://purl.obolibrary.org/obo/NCBITaxon_1233678,none +15.163089,NCBITaxon:1265909,http://purl.obolibrary.org/obo/NCBITaxon_1265909,none +15.163089,NCBITaxon:126811,http://purl.obolibrary.org/obo/NCBITaxon_126811,none +15.163089,NCBITaxon:12777,http://purl.obolibrary.org/obo/NCBITaxon_12777,none +15.163089,NCBITaxon:1282405,http://purl.obolibrary.org/obo/NCBITaxon_1282405,none +15.163089,NCBITaxon:1290341,http://purl.obolibrary.org/obo/NCBITaxon_1290341,none +15.163089,NCBITaxon:1293362,http://purl.obolibrary.org/obo/NCBITaxon_1293362,none +15.163089,NCBITaxon:129395,http://purl.obolibrary.org/obo/NCBITaxon_129395,none +15.163089,NCBITaxon:1299922,http://purl.obolibrary.org/obo/NCBITaxon_1299922,none +15.163089,NCBITaxon:1300113,http://purl.obolibrary.org/obo/NCBITaxon_1300113,none +15.163089,NCBITaxon:1302179,http://purl.obolibrary.org/obo/NCBITaxon_1302179,none +15.163089,NCBITaxon:1303334,http://purl.obolibrary.org/obo/NCBITaxon_1303334,none +15.163089,NCBITaxon:1329930,http://purl.obolibrary.org/obo/NCBITaxon_1329930,none +15.163089,NCBITaxon:133979,http://purl.obolibrary.org/obo/NCBITaxon_133979,none +15.163089,NCBITaxon:133991,http://purl.obolibrary.org/obo/NCBITaxon_133991,none +15.163089,NCBITaxon:134910,http://purl.obolibrary.org/obo/NCBITaxon_134910,none +15.163089,NCBITaxon:1352824,http://purl.obolibrary.org/obo/NCBITaxon_1352824,none +15.163089,NCBITaxon:13663,http://purl.obolibrary.org/obo/NCBITaxon_13663,none +15.163089,NCBITaxon:136849,http://purl.obolibrary.org/obo/NCBITaxon_136849,none +15.163089,NCBITaxon:137627,http://purl.obolibrary.org/obo/NCBITaxon_137627,none +15.163089,NCBITaxon:13792,http://purl.obolibrary.org/obo/NCBITaxon_13792,none +15.163089,NCBITaxon:138951,http://purl.obolibrary.org/obo/NCBITaxon_138951,Enterovirus D +15.163089,NCBITaxon:139380,http://purl.obolibrary.org/obo/NCBITaxon_139380,none +15.163089,NCBITaxon:1400257,http://purl.obolibrary.org/obo/NCBITaxon_1400257,none +15.163089,NCBITaxon:1421718,http://purl.obolibrary.org/obo/NCBITaxon_1421718,none +15.163089,NCBITaxon:1476909,http://purl.obolibrary.org/obo/NCBITaxon_1476909,none +15.163089,NCBITaxon:1484571,http://purl.obolibrary.org/obo/NCBITaxon_1484571,none +15.163089,NCBITaxon:1489791,http://purl.obolibrary.org/obo/NCBITaxon_1489791,none +15.163089,NCBITaxon:1489891,http://purl.obolibrary.org/obo/NCBITaxon_1489891,none +15.163089,NCBITaxon:1517750,http://purl.obolibrary.org/obo/NCBITaxon_1517750,none +15.163089,NCBITaxon:152636,http://purl.obolibrary.org/obo/NCBITaxon_152636,none +15.163089,NCBITaxon:154339,http://purl.obolibrary.org/obo/NCBITaxon_154339,none +15.163089,NCBITaxon:160964,http://purl.obolibrary.org/obo/NCBITaxon_160964,none +15.163089,NCBITaxon:163718,http://purl.obolibrary.org/obo/NCBITaxon_163718,none +15.163089,NCBITaxon:1648017,http://purl.obolibrary.org/obo/NCBITaxon_1648017,none +15.163089,NCBITaxon:1652081,http://purl.obolibrary.org/obo/NCBITaxon_1652081,Poeae Chloroplast Group 2 (Poeae type) +15.163089,NCBITaxon:167132,http://purl.obolibrary.org/obo/NCBITaxon_167132,none +15.163089,NCBITaxon:1678145,http://purl.obolibrary.org/obo/NCBITaxon_1678145,none +15.163089,NCBITaxon:169174,http://purl.obolibrary.org/obo/NCBITaxon_169174,none +15.163089,NCBITaxon:180229,http://purl.obolibrary.org/obo/NCBITaxon_180229,none +15.163089,NCBITaxon:181086,http://purl.obolibrary.org/obo/NCBITaxon_181086,none +15.163089,NCBITaxon:1861795,http://purl.obolibrary.org/obo/NCBITaxon_1861795,none +15.163089,NCBITaxon:186265,http://purl.obolibrary.org/obo/NCBITaxon_186265,none +15.163089,NCBITaxon:186267,http://purl.obolibrary.org/obo/NCBITaxon_186267,none +15.163089,NCBITaxon:186846,http://purl.obolibrary.org/obo/NCBITaxon_186846,none +15.163089,NCBITaxon:191547,http://purl.obolibrary.org/obo/NCBITaxon_191547,none +15.163089,NCBITaxon:192452,http://purl.obolibrary.org/obo/NCBITaxon_192452,none +15.163089,NCBITaxon:193076,http://purl.obolibrary.org/obo/NCBITaxon_193076,none +15.163089,NCBITaxon:1933276,http://purl.obolibrary.org/obo/NCBITaxon_1933276,none +15.163089,NCBITaxon:195476,http://purl.obolibrary.org/obo/NCBITaxon_195476,none +15.163089,NCBITaxon:196094,http://purl.obolibrary.org/obo/NCBITaxon_196094,none +15.163089,NCBITaxon:1972595,http://purl.obolibrary.org/obo/NCBITaxon_1972595,none +15.163089,NCBITaxon:1977916,http://purl.obolibrary.org/obo/NCBITaxon_1977916,none +15.163089,NCBITaxon:1977919,http://purl.obolibrary.org/obo/NCBITaxon_1977919,none +15.163089,NCBITaxon:1980480,http://purl.obolibrary.org/obo/NCBITaxon_1980480,none +15.163089,NCBITaxon:2008790,http://purl.obolibrary.org/obo/NCBITaxon_2008790,none +15.163089,NCBITaxon:2022639,http://purl.obolibrary.org/obo/NCBITaxon_2022639,none +15.163089,NCBITaxon:2022640,http://purl.obolibrary.org/obo/NCBITaxon_2022640,none +15.163089,NCBITaxon:20400,http://purl.obolibrary.org/obo/NCBITaxon_20400,none +15.163089,NCBITaxon:204455,http://purl.obolibrary.org/obo/NCBITaxon_204455,none +15.163089,NCBITaxon:206349,http://purl.obolibrary.org/obo/NCBITaxon_206349,none +15.163089,NCBITaxon:20685,http://purl.obolibrary.org/obo/NCBITaxon_20685,none +15.163089,NCBITaxon:207679,http://purl.obolibrary.org/obo/NCBITaxon_207679,none +15.163089,NCBITaxon:211737,http://purl.obolibrary.org/obo/NCBITaxon_211737,none +15.163089,NCBITaxon:211740,http://purl.obolibrary.org/obo/NCBITaxon_211740,none +15.163089,NCBITaxon:211825,http://purl.obolibrary.org/obo/NCBITaxon_211825,none +15.163089,NCBITaxon:211866,http://purl.obolibrary.org/obo/NCBITaxon_211866,none +15.163089,NCBITaxon:2169665,http://purl.obolibrary.org/obo/NCBITaxon_2169665,none +15.163089,NCBITaxon:2170049,http://purl.obolibrary.org/obo/NCBITaxon_2170049,none +15.163089,NCBITaxon:217032,http://purl.obolibrary.org/obo/NCBITaxon_217032,none +15.163089,NCBITaxon:217897,http://purl.obolibrary.org/obo/NCBITaxon_217897,none +15.163089,NCBITaxon:220608,http://purl.obolibrary.org/obo/NCBITaxon_220608,none +15.163089,NCBITaxon:221580,http://purl.obolibrary.org/obo/NCBITaxon_221580,none +15.163089,NCBITaxon:223690,http://purl.obolibrary.org/obo/NCBITaxon_223690,none +15.163089,NCBITaxon:227507,http://purl.obolibrary.org/obo/NCBITaxon_227507,none +15.163089,NCBITaxon:228897,http://purl.obolibrary.org/obo/NCBITaxon_228897,none +15.163089,NCBITaxon:22910,http://purl.obolibrary.org/obo/NCBITaxon_22910,none +15.163089,NCBITaxon:2304100,http://purl.obolibrary.org/obo/NCBITaxon_2304100,none +15.163089,NCBITaxon:235455,http://purl.obolibrary.org/obo/NCBITaxon_235455,none +15.163089,NCBITaxon:237716,http://purl.obolibrary.org/obo/NCBITaxon_237716,none +15.163089,NCBITaxon:23808,http://purl.obolibrary.org/obo/NCBITaxon_23808,none +15.163089,NCBITaxon:238817,http://purl.obolibrary.org/obo/NCBITaxon_238817,none +15.163089,NCBITaxon:247880,http://purl.obolibrary.org/obo/NCBITaxon_247880,none +15.163089,NCBITaxon:2486284,http://purl.obolibrary.org/obo/NCBITaxon_2486284,none +15.163089,NCBITaxon:2509511,http://purl.obolibrary.org/obo/NCBITaxon_2509511,Sarbecovirus +15.163089,NCBITaxon:2511126,http://purl.obolibrary.org/obo/NCBITaxon_2511126,none +15.163089,NCBITaxon:251749,http://purl.obolibrary.org/obo/NCBITaxon_251749,none +15.163089,NCBITaxon:253301,http://purl.obolibrary.org/obo/NCBITaxon_253301,none +15.163089,NCBITaxon:253302,http://purl.obolibrary.org/obo/NCBITaxon_253302,none +15.163089,NCBITaxon:255330,http://purl.obolibrary.org/obo/NCBITaxon_255330,none +15.163089,NCBITaxon:2560737,http://purl.obolibrary.org/obo/NCBITaxon_2560737,none +15.163089,NCBITaxon:262957,http://purl.obolibrary.org/obo/NCBITaxon_262957,none +15.163089,NCBITaxon:263615,http://purl.obolibrary.org/obo/NCBITaxon_263615,none +15.163089,NCBITaxon:267213,http://purl.obolibrary.org/obo/NCBITaxon_267213,none +15.163089,NCBITaxon:270146,http://purl.obolibrary.org/obo/NCBITaxon_270146,none +15.163089,NCBITaxon:27065,http://purl.obolibrary.org/obo/NCBITaxon_27065,none +15.163089,NCBITaxon:2732497,http://purl.obolibrary.org/obo/NCBITaxon_2732497,none +15.163089,NCBITaxon:2732501,http://purl.obolibrary.org/obo/NCBITaxon_2732501,none +15.163089,NCBITaxon:2734439,http://purl.obolibrary.org/obo/NCBITaxon_2734439,none +15.163089,NCBITaxon:27802,http://purl.obolibrary.org/obo/NCBITaxon_27802,none +15.163089,NCBITaxon:27803,http://purl.obolibrary.org/obo/NCBITaxon_27803,none +15.163089,NCBITaxon:2794838,http://purl.obolibrary.org/obo/NCBITaxon_2794838,none +15.163089,NCBITaxon:2797,http://purl.obolibrary.org/obo/NCBITaxon_2797,none +15.163089,NCBITaxon:2842328,http://purl.obolibrary.org/obo/NCBITaxon_2842328,none +15.163089,NCBITaxon:284552,http://purl.obolibrary.org/obo/NCBITaxon_284552,none +15.163089,NCBITaxon:284671,http://purl.obolibrary.org/obo/NCBITaxon_284671,none +15.163089,NCBITaxon:29002,http://purl.obolibrary.org/obo/NCBITaxon_29002,none +15.163089,NCBITaxon:292477,http://purl.obolibrary.org/obo/NCBITaxon_292477,none +15.163089,NCBITaxon:293488,http://purl.obolibrary.org/obo/NCBITaxon_293488,none +15.163089,NCBITaxon:29962,http://purl.obolibrary.org/obo/NCBITaxon_29962,none +15.163089,NCBITaxon:30029,http://purl.obolibrary.org/obo/NCBITaxon_30029,none +15.163089,NCBITaxon:302100,http://purl.obolibrary.org/obo/NCBITaxon_302100,none +15.163089,NCBITaxon:30458,http://purl.obolibrary.org/obo/NCBITaxon_30458,Strigiformes +15.163089,NCBITaxon:30459,http://purl.obolibrary.org/obo/NCBITaxon_30459,none +15.163089,NCBITaxon:30700,http://purl.obolibrary.org/obo/NCBITaxon_30700,none +15.163089,NCBITaxon:30854,http://purl.obolibrary.org/obo/NCBITaxon_30854,none +15.163089,NCBITaxon:31002,http://purl.obolibrary.org/obo/NCBITaxon_31002,none +15.163089,NCBITaxon:318479,http://purl.obolibrary.org/obo/NCBITaxon_318479,Dracunculus medinensis +15.163089,NCBITaxon:318835,http://purl.obolibrary.org/obo/NCBITaxon_318835,none +15.163089,NCBITaxon:31917,http://purl.obolibrary.org/obo/NCBITaxon_31917,none +15.163089,NCBITaxon:3217,http://purl.obolibrary.org/obo/NCBITaxon_3217,none +15.163089,NCBITaxon:32283,http://purl.obolibrary.org/obo/NCBITaxon_32283,none +15.163089,NCBITaxon:32291,http://purl.obolibrary.org/obo/NCBITaxon_32291,none +15.163089,NCBITaxon:32459,http://purl.obolibrary.org/obo/NCBITaxon_32459,none +15.163089,NCBITaxon:3248,http://purl.obolibrary.org/obo/NCBITaxon_3248,none +15.163089,NCBITaxon:3249,http://purl.obolibrary.org/obo/NCBITaxon_3249,none +15.163089,NCBITaxon:3250,http://purl.obolibrary.org/obo/NCBITaxon_3250,none +15.163089,NCBITaxon:32620,http://purl.obolibrary.org/obo/NCBITaxon_32620,none +15.163089,NCBITaxon:33284,http://purl.obolibrary.org/obo/NCBITaxon_33284,none +15.163089,NCBITaxon:333347,http://purl.obolibrary.org/obo/NCBITaxon_333347,none +15.163089,NCBITaxon:333930,http://purl.obolibrary.org/obo/NCBITaxon_333930,none +15.163089,NCBITaxon:334782,http://purl.obolibrary.org/obo/NCBITaxon_334782,none +15.163089,NCBITaxon:33512,http://purl.obolibrary.org/obo/NCBITaxon_33512,none +15.163089,NCBITaxon:339420,http://purl.obolibrary.org/obo/NCBITaxon_339420,none +15.163089,NCBITaxon:341945,http://purl.obolibrary.org/obo/NCBITaxon_341945,none +15.163089,NCBITaxon:34397,http://purl.obolibrary.org/obo/NCBITaxon_34397,none +15.163089,NCBITaxon:34416,http://purl.obolibrary.org/obo/NCBITaxon_34416,none +15.163089,NCBITaxon:34752,http://purl.obolibrary.org/obo/NCBITaxon_34752,none +15.163089,NCBITaxon:34753,http://purl.obolibrary.org/obo/NCBITaxon_34753,none +15.163089,NCBITaxon:3486,http://purl.obolibrary.org/obo/NCBITaxon_3486,none +15.163089,NCBITaxon:348823,http://purl.obolibrary.org/obo/NCBITaxon_348823,none +15.163089,NCBITaxon:349172,http://purl.obolibrary.org/obo/NCBITaxon_349172,none +15.163089,NCBITaxon:35033,http://purl.obolibrary.org/obo/NCBITaxon_35033,None +15.163089,NCBITaxon:352455,http://purl.obolibrary.org/obo/NCBITaxon_352455,none +15.163089,NCBITaxon:35251,http://purl.obolibrary.org/obo/NCBITaxon_35251,none +15.163089,NCBITaxon:35279,http://purl.obolibrary.org/obo/NCBITaxon_35279,none +15.163089,NCBITaxon:3536,http://purl.obolibrary.org/obo/NCBITaxon_3536,none +15.163089,NCBITaxon:35499,http://purl.obolibrary.org/obo/NCBITaxon_35499,none +15.163089,NCBITaxon:35531,http://purl.obolibrary.org/obo/NCBITaxon_35531,none +15.163089,NCBITaxon:356426,http://purl.obolibrary.org/obo/NCBITaxon_356426,none +15.163089,NCBITaxon:35732,http://purl.obolibrary.org/obo/NCBITaxon_35732,none +15.163089,NCBITaxon:358403,http://purl.obolibrary.org/obo/NCBITaxon_358403,none +15.163089,NCBITaxon:358812,http://purl.obolibrary.org/obo/NCBITaxon_358812,none +15.163089,NCBITaxon:3603,http://purl.obolibrary.org/obo/NCBITaxon_3603,none +15.163089,NCBITaxon:3608,http://purl.obolibrary.org/obo/NCBITaxon_3608,none +15.163089,NCBITaxon:3618,http://purl.obolibrary.org/obo/NCBITaxon_3618,none +15.163089,NCBITaxon:37174,http://purl.obolibrary.org/obo/NCBITaxon_37174,none +15.163089,NCBITaxon:37535,http://purl.obolibrary.org/obo/NCBITaxon_37535,none +15.163089,NCBITaxon:37572,http://purl.obolibrary.org/obo/NCBITaxon_37572,Papilionoidea +15.163089,NCBITaxon:37818,http://purl.obolibrary.org/obo/NCBITaxon_37818,none +15.163089,NCBITaxon:38105,http://purl.obolibrary.org/obo/NCBITaxon_38105,none +15.163089,NCBITaxon:38170,http://purl.obolibrary.org/obo/NCBITaxon_38170,Avian orthoreovirus +15.163089,NCBITaxon:385255,http://purl.obolibrary.org/obo/NCBITaxon_385255,none +15.163089,NCBITaxon:3896,http://purl.obolibrary.org/obo/NCBITaxon_3896,none +15.163089,NCBITaxon:39029,http://purl.obolibrary.org/obo/NCBITaxon_39029,none +15.163089,NCBITaxon:392042,http://purl.obolibrary.org/obo/NCBITaxon_392042,none +15.163089,NCBITaxon:39241,http://purl.obolibrary.org/obo/NCBITaxon_39241,none +15.163089,NCBITaxon:392503,http://purl.obolibrary.org/obo/NCBITaxon_392503,none +15.163089,NCBITaxon:392504,http://purl.obolibrary.org/obo/NCBITaxon_392504,none +15.163089,NCBITaxon:393599,http://purl.obolibrary.org/obo/NCBITaxon_393599,none +15.163089,NCBITaxon:398316,http://purl.obolibrary.org/obo/NCBITaxon_398316,none +15.163089,NCBITaxon:40056,http://purl.obolibrary.org/obo/NCBITaxon_40056,none +15.163089,NCBITaxon:40061,http://purl.obolibrary.org/obo/NCBITaxon_40061,none +15.163089,NCBITaxon:4022,http://purl.obolibrary.org/obo/NCBITaxon_4022,none +15.163089,NCBITaxon:40424,http://purl.obolibrary.org/obo/NCBITaxon_40424,none +15.163089,NCBITaxon:40540,http://purl.obolibrary.org/obo/NCBITaxon_40540,none +15.163089,NCBITaxon:40843,http://purl.obolibrary.org/obo/NCBITaxon_40843,none +15.163089,NCBITaxon:41085,http://purl.obolibrary.org/obo/NCBITaxon_41085,none +15.163089,NCBITaxon:41135,http://purl.obolibrary.org/obo/NCBITaxon_41135,none +15.163089,NCBITaxon:4119,http://purl.obolibrary.org/obo/NCBITaxon_4119,none +15.163089,NCBITaxon:4154,http://purl.obolibrary.org/obo/NCBITaxon_4154,none +15.163089,NCBITaxon:4163,http://purl.obolibrary.org/obo/NCBITaxon_4163,none +15.163089,NCBITaxon:41763,http://purl.obolibrary.org/obo/NCBITaxon_41763,none +15.163089,NCBITaxon:4199,http://purl.obolibrary.org/obo/NCBITaxon_4199,none +15.163089,NCBITaxon:4200,http://purl.obolibrary.org/obo/NCBITaxon_4200,none +15.163089,NCBITaxon:421012,http://purl.obolibrary.org/obo/NCBITaxon_421012,none +15.163089,NCBITaxon:421921,http://purl.obolibrary.org/obo/NCBITaxon_421921,none +15.163089,NCBITaxon:42195,http://purl.obolibrary.org/obo/NCBITaxon_42195,none +15.163089,NCBITaxon:421976,http://purl.obolibrary.org/obo/NCBITaxon_421976,none +15.163089,NCBITaxon:423608,http://purl.obolibrary.org/obo/NCBITaxon_423608,none +15.163089,NCBITaxon:42680,http://purl.obolibrary.org/obo/NCBITaxon_42680,none +15.163089,NCBITaxon:42756,http://purl.obolibrary.org/obo/NCBITaxon_42756,none +15.163089,NCBITaxon:431043,http://purl.obolibrary.org/obo/NCBITaxon_431043,none +15.163089,NCBITaxon:43219,http://purl.obolibrary.org/obo/NCBITaxon_43219,Herpotrichiellaceae +15.163089,NCBITaxon:4363,http://purl.obolibrary.org/obo/NCBITaxon_4363,none +15.163089,NCBITaxon:43894,http://purl.obolibrary.org/obo/NCBITaxon_43894,none +15.163089,NCBITaxon:443746,http://purl.obolibrary.org/obo/NCBITaxon_443746,none +15.163089,NCBITaxon:44421,http://purl.obolibrary.org/obo/NCBITaxon_44421,none +15.163089,NCBITaxon:449387,http://purl.obolibrary.org/obo/NCBITaxon_449387,none +15.163089,NCBITaxon:4565,http://purl.obolibrary.org/obo/NCBITaxon_4565,none +15.163089,NCBITaxon:45767,http://purl.obolibrary.org/obo/NCBITaxon_45767,none +15.163089,NCBITaxon:46076,http://purl.obolibrary.org/obo/NCBITaxon_46076,none +15.163089,NCBITaxon:46322,http://purl.obolibrary.org/obo/NCBITaxon_46322,none +15.163089,NCBITaxon:47605,http://purl.obolibrary.org/obo/NCBITaxon_47605,none +15.163089,NCBITaxon:47930,http://purl.obolibrary.org/obo/NCBITaxon_47930,none +15.163089,NCBITaxon:485721,http://purl.obolibrary.org/obo/NCBITaxon_485721,none +15.163089,NCBITaxon:49669,http://purl.obolibrary.org/obo/NCBITaxon_49669,none +15.163089,NCBITaxon:49743,http://purl.obolibrary.org/obo/NCBITaxon_49743,none +15.163089,NCBITaxon:503164,http://purl.obolibrary.org/obo/NCBITaxon_503164,none +15.163089,NCBITaxon:516942,http://purl.obolibrary.org/obo/NCBITaxon_516942,none +15.163089,NCBITaxon:5237,http://purl.obolibrary.org/obo/NCBITaxon_5237,none +15.163089,NCBITaxon:52434,http://purl.obolibrary.org/obo/NCBITaxon_52434,none +15.163089,NCBITaxon:5320,http://purl.obolibrary.org/obo/NCBITaxon_5320,none +15.163089,NCBITaxon:53274,http://purl.obolibrary.org/obo/NCBITaxon_53274,none +15.163089,NCBITaxon:540070,http://purl.obolibrary.org/obo/NCBITaxon_540070,none +15.163089,NCBITaxon:541000,http://purl.obolibrary.org/obo/NCBITaxon_541000,none +15.163089,NCBITaxon:5500,http://purl.obolibrary.org/obo/NCBITaxon_5500,Coccidioides +15.163089,NCBITaxon:55071,http://purl.obolibrary.org/obo/NCBITaxon_55071,none +15.163089,NCBITaxon:55097,http://purl.obolibrary.org/obo/NCBITaxon_55097,none +15.163089,NCBITaxon:553005,http://purl.obolibrary.org/obo/NCBITaxon_553005,none +15.163089,NCBITaxon:555370,http://purl.obolibrary.org/obo/NCBITaxon_555370,none +15.163089,NCBITaxon:55887,http://purl.obolibrary.org/obo/NCBITaxon_55887,none +15.163089,NCBITaxon:55961,http://purl.obolibrary.org/obo/NCBITaxon_55961,none +15.163089,NCBITaxon:56218,http://purl.obolibrary.org/obo/NCBITaxon_56218,none +15.163089,NCBITaxon:56316,http://purl.obolibrary.org/obo/NCBITaxon_56316,none +15.163089,NCBITaxon:56486,http://purl.obolibrary.org/obo/NCBITaxon_56486,none +15.163089,NCBITaxon:568804,http://purl.obolibrary.org/obo/NCBITaxon_568804,none +15.163089,NCBITaxon:575980,http://purl.obolibrary.org/obo/NCBITaxon_575980,none +15.163089,NCBITaxon:5776,http://purl.obolibrary.org/obo/NCBITaxon_5776,none +15.163089,NCBITaxon:5777,http://purl.obolibrary.org/obo/NCBITaxon_5777,none +15.163089,NCBITaxon:5789,http://purl.obolibrary.org/obo/NCBITaxon_5789,none +15.163089,NCBITaxon:5790,http://purl.obolibrary.org/obo/NCBITaxon_5790,none +15.163089,NCBITaxon:587658,http://purl.obolibrary.org/obo/NCBITaxon_587658,none +15.163089,NCBITaxon:59195,http://purl.obolibrary.org/obo/NCBITaxon_59195,none +15.163089,NCBITaxon:59302,http://purl.obolibrary.org/obo/NCBITaxon_59302,none +15.163089,NCBITaxon:593572,http://purl.obolibrary.org/obo/NCBITaxon_593572,none +15.163089,NCBITaxon:60877,http://purl.obolibrary.org/obo/NCBITaxon_60877,none +15.163089,NCBITaxon:613053,http://purl.obolibrary.org/obo/NCBITaxon_613053,none +15.163089,NCBITaxon:6143,http://purl.obolibrary.org/obo/NCBITaxon_6143,none +15.163089,NCBITaxon:6190,http://purl.obolibrary.org/obo/NCBITaxon_6190,none +15.163089,NCBITaxon:6246,http://purl.obolibrary.org/obo/NCBITaxon_6246,Strongyloididae +15.163089,NCBITaxon:6247,http://purl.obolibrary.org/obo/NCBITaxon_6247,Strongyloides +15.163089,NCBITaxon:630199,http://purl.obolibrary.org/obo/NCBITaxon_630199,none +15.163089,NCBITaxon:631267,http://purl.obolibrary.org/obo/NCBITaxon_631267,none +15.163089,NCBITaxon:63131,http://purl.obolibrary.org/obo/NCBITaxon_63131,none +15.163089,NCBITaxon:631345,http://purl.obolibrary.org/obo/NCBITaxon_631345,none +15.163089,NCBITaxon:64285,http://purl.obolibrary.org/obo/NCBITaxon_64285,none +15.163089,NCBITaxon:64297,http://purl.obolibrary.org/obo/NCBITaxon_64297,none +15.163089,NCBITaxon:64311,http://purl.obolibrary.org/obo/NCBITaxon_64311,none +15.163089,NCBITaxon:643132,http://purl.obolibrary.org/obo/NCBITaxon_643132,none +15.163089,NCBITaxon:64644,http://purl.obolibrary.org/obo/NCBITaxon_64644,none +15.163089,NCBITaxon:64647,http://purl.obolibrary.org/obo/NCBITaxon_64647,none +15.163089,NCBITaxon:6514,http://purl.obolibrary.org/obo/NCBITaxon_6514,none +15.163089,NCBITaxon:66056,http://purl.obolibrary.org/obo/NCBITaxon_66056,none +15.163089,NCBITaxon:66367,http://purl.obolibrary.org/obo/NCBITaxon_66367,none +15.163089,NCBITaxon:66368,http://purl.obolibrary.org/obo/NCBITaxon_66368,none +15.163089,NCBITaxon:666144,http://purl.obolibrary.org/obo/NCBITaxon_666144,none +15.163089,NCBITaxon:6696,http://purl.obolibrary.org/obo/NCBITaxon_6696,none +15.163089,NCBITaxon:675061,http://purl.obolibrary.org/obo/NCBITaxon_675061,none +15.163089,NCBITaxon:675062,http://purl.obolibrary.org/obo/NCBITaxon_675062,none +15.163089,NCBITaxon:67534,http://purl.obolibrary.org/obo/NCBITaxon_67534,none +15.163089,NCBITaxon:67605,http://purl.obolibrary.org/obo/NCBITaxon_67605,none +15.163089,NCBITaxon:679895,http://purl.obolibrary.org/obo/NCBITaxon_679895,none +15.163089,NCBITaxon:685443,http://purl.obolibrary.org/obo/NCBITaxon_685443,none +15.163089,NCBITaxon:6875,http://purl.obolibrary.org/obo/NCBITaxon_6875,none +15.163089,NCBITaxon:703251,http://purl.obolibrary.org/obo/NCBITaxon_703251,none +15.163089,NCBITaxon:70822,http://purl.obolibrary.org/obo/NCBITaxon_70822,none +15.163089,NCBITaxon:71527,http://purl.obolibrary.org/obo/NCBITaxon_71527,none +15.163089,NCBITaxon:72663,http://purl.obolibrary.org/obo/NCBITaxon_72663,none +15.163089,NCBITaxon:7367,http://purl.obolibrary.org/obo/NCBITaxon_7367,none +15.163089,NCBITaxon:7368,http://purl.obolibrary.org/obo/NCBITaxon_7368,none +15.163089,NCBITaxon:741158,http://purl.obolibrary.org/obo/NCBITaxon_741158,none +15.163089,NCBITaxon:74201,http://purl.obolibrary.org/obo/NCBITaxon_74201,none +15.163089,NCBITaxon:745067,http://purl.obolibrary.org/obo/NCBITaxon_745067,none +15.163089,NCBITaxon:74550,http://purl.obolibrary.org/obo/NCBITaxon_74550,none +15.163089,NCBITaxon:75387,http://purl.obolibrary.org/obo/NCBITaxon_75387,none +15.163089,NCBITaxon:75574,http://purl.obolibrary.org/obo/NCBITaxon_75574,none +15.163089,NCBITaxon:75787,http://purl.obolibrary.org/obo/NCBITaxon_75787,none +15.163089,NCBITaxon:7649,http://purl.obolibrary.org/obo/NCBITaxon_7649,none +15.163089,NCBITaxon:7650,http://purl.obolibrary.org/obo/NCBITaxon_7650,none +15.163089,NCBITaxon:76875,http://purl.obolibrary.org/obo/NCBITaxon_76875,none +15.163089,NCBITaxon:7761,http://purl.obolibrary.org/obo/NCBITaxon_7761,Myxiniformes +15.163089,NCBITaxon:7762,http://purl.obolibrary.org/obo/NCBITaxon_7762,Myxinidae +15.163089,NCBITaxon:7769,http://purl.obolibrary.org/obo/NCBITaxon_7769,Myxine glutinosa +15.163089,NCBITaxon:77772,http://purl.obolibrary.org/obo/NCBITaxon_77772,none +15.163089,NCBITaxon:796025,http://purl.obolibrary.org/obo/NCBITaxon_796025,none +15.163089,NCBITaxon:8075,http://purl.obolibrary.org/obo/NCBITaxon_8075,Atheriniformes +15.163089,NCBITaxon:80939,http://purl.obolibrary.org/obo/NCBITaxon_80939,none +15.163089,NCBITaxon:8219,http://purl.obolibrary.org/obo/NCBITaxon_8219,none +15.163089,NCBITaxon:8392,http://purl.obolibrary.org/obo/NCBITaxon_8392,none +15.163089,NCBITaxon:8426,http://purl.obolibrary.org/obo/NCBITaxon_8426,none +15.163089,NCBITaxon:84740,http://purl.obolibrary.org/obo/NCBITaxon_84740,none +15.163089,NCBITaxon:869694,http://purl.obolibrary.org/obo/NCBITaxon_869694,none +15.163089,NCBITaxon:87729,http://purl.obolibrary.org/obo/NCBITaxon_87729,none +15.163089,NCBITaxon:88086,http://purl.obolibrary.org/obo/NCBITaxon_88086,none +15.163089,NCBITaxon:881944,http://purl.obolibrary.org/obo/NCBITaxon_881944,none +15.163089,NCBITaxon:904698,http://purl.obolibrary.org/obo/NCBITaxon_904698,none +15.163089,NCBITaxon:906,http://purl.obolibrary.org/obo/NCBITaxon_906,none +15.163089,NCBITaxon:908207,http://purl.obolibrary.org/obo/NCBITaxon_908207,none +15.163089,NCBITaxon:91613,http://purl.obolibrary.org/obo/NCBITaxon_91613,none +15.163089,NCBITaxon:9173,http://purl.obolibrary.org/obo/NCBITaxon_9173,none +15.163089,NCBITaxon:91896,http://purl.obolibrary.org/obo/NCBITaxon_91896,none +15.163089,NCBITaxon:919,http://purl.obolibrary.org/obo/NCBITaxon_919,none +15.163089,NCBITaxon:9540,http://purl.obolibrary.org/obo/NCBITaxon_9540,none +15.163089,NCBITaxon:9556,http://purl.obolibrary.org/obo/NCBITaxon_9556,Papio cynocephalus +15.163089,NCBITaxon:9570,http://purl.obolibrary.org/obo/NCBITaxon_9570,Colobus +15.163089,NCBITaxon:9846,http://purl.obolibrary.org/obo/NCBITaxon_9846,none +15.163089,NCBITaxon:9847,http://purl.obolibrary.org/obo/NCBITaxon_9847,none +15.163089,NCBITaxon:99565,http://purl.obolibrary.org/obo/NCBITaxon_99565,none +15.163089,NCBITaxon:99825,http://purl.obolibrary.org/obo/NCBITaxon_99825,none +15.163089,PR:000001518,http://purl.obolibrary.org/obo/PR_000001518,probable G-protein coupled receptor 171 +15.163089,PR:000001529,http://purl.obolibrary.org/obo/PR_000001529,probable G-protein coupled receptor 33 +15.163089,PR:000001640,http://purl.obolibrary.org/obo/PR_000001640,probable G-protein coupled receptor 174 +15.163089,PR:000001705,http://purl.obolibrary.org/obo/PR_000001705,mas-related G-protein coupled receptor X4 +15.163089,PR:000003513,http://purl.obolibrary.org/obo/PR_000003513,alpha-2-macroglobulin-like protein 1 +15.163089,PR:000003531,http://purl.obolibrary.org/obo/PR_000003531,L-aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase +15.163089,PR:000003593,http://purl.obolibrary.org/obo/PR_000003593,ankyrin repeat and BTB/POZ domain-containing protein 2 +15.163089,PR:000003641,http://purl.obolibrary.org/obo/PR_000003641,"acyl-coenzyme A thioesterase 9, mitochondrial" +15.163089,PR:000003666,http://purl.obolibrary.org/obo/PR_000003666,"acyl-coenzyme A synthetase ACSM2B, mitochondrial" +15.163089,PR:000003687,http://purl.obolibrary.org/obo/PR_000003687,actin-like protein 8 +15.163089,PR:000003705,http://purl.obolibrary.org/obo/PR_000003705,acylphosphatase-1 +15.163089,PR:000003982,http://purl.obolibrary.org/obo/PR_000003982,solute carrier family 35 member G5 +15.163089,PR:000004254,http://purl.obolibrary.org/obo/PR_000004254,Rho guanine nucleotide exchange factor 19 +15.163089,PR:000004294,http://purl.obolibrary.org/obo/PR_000004294,ADP-ribosylation factor-like protein 6-interacting protein 6 +15.163089,PR:000004354,http://purl.obolibrary.org/obo/PR_000004354,ankyrin repeat and SOCS box protein 5 +15.163089,PR:000004356,http://purl.obolibrary.org/obo/PR_000004356,ankyrin repeat and SOCS box protein 7 +15.163089,PR:000004379,http://purl.obolibrary.org/obo/PR_000004379,60 kDa lysophospholipase +15.163089,PR:000004423,http://purl.obolibrary.org/obo/PR_000004423,bifunctional purine biosynthesis protein ATIC +15.163089,PR:000004463,http://purl.obolibrary.org/obo/PR_000004463,"ATP synthase subunit g, mitochondrial" +15.163089,PR:000004489,http://purl.obolibrary.org/obo/PR_000004489,V-type proton ATPase subunit G 1 +15.163089,PR:000004563,http://purl.obolibrary.org/obo/PR_000004563,none +15.163089,PR:000004589,http://purl.obolibrary.org/obo/PR_000004589,galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase 2 +15.163089,PR:000004905,http://purl.obolibrary.org/obo/PR_000004905,complement component C6 +15.163089,PR:000004922,http://purl.obolibrary.org/obo/PR_000004922,"carbonic anhydrase 5B, mitochondrial" +15.163089,PR:000004982,http://purl.obolibrary.org/obo/PR_000004982,calmodulin-like protein 6 +15.163089,PR:000005038,http://purl.obolibrary.org/obo/PR_000005038,caspase recruitment domain-containing protein 18 +15.163089,PR:000005063,http://purl.obolibrary.org/obo/PR_000005063,cation channel sperm-associated protein 4 +15.163089,PR:000005133,http://purl.obolibrary.org/obo/PR_000005133,cyclin-J +15.163089,PR:000005162,http://purl.obolibrary.org/obo/PR_000005162,cell surface glycoprotein CD200 receptor 2 +15.163089,PR:000005255,http://purl.obolibrary.org/obo/PR_000005255,cyclin-dependent kinase 2-associated protein 2 +15.163089,PR:000005357,http://purl.obolibrary.org/obo/PR_000005357,centrosomal protein of 76 kDa +15.163089,PR:000005419,http://purl.obolibrary.org/obo/PR_000005419,calcium homeostasis endoplasmic reticulum protein +15.163089,PR:000005617,http://purl.obolibrary.org/obo/PR_000005617,clusterin-like protein 1 +15.163089,PR:000005705,http://purl.obolibrary.org/obo/PR_000005705,collagen alpha-1(XXI) chain +15.163089,PR:000005730,http://purl.obolibrary.org/obo/PR_000005730,COMM domain-containing protein 6 +15.163089,PR:000005744,http://purl.obolibrary.org/obo/PR_000005744,COP9 signalosome complex subunit 7a +15.163089,PR:000005820,http://purl.obolibrary.org/obo/PR_000005820,copine-5 +15.163089,PR:000005957,http://purl.obolibrary.org/obo/PR_000005957,cysteine/serine-rich nuclear protein 3 +15.163089,PR:000006080,http://purl.obolibrary.org/obo/PR_000006080,NADH-cytochrome b5 reductase 1 +15.163089,PR:000006198,http://purl.obolibrary.org/obo/PR_000006198,none +15.163089,PR:000006208,http://purl.obolibrary.org/obo/PR_000006208,none +15.163089,PR:000006211,http://purl.obolibrary.org/obo/PR_000006211,none +15.163089,PR:000006384,http://purl.obolibrary.org/obo/PR_000006384,beta-defensin 106 +15.163089,PR:000006385,http://purl.obolibrary.org/obo/PR_000006385,beta-defensin 107 +15.163089,PR:000006436,http://purl.obolibrary.org/obo/PR_000006436,diacylglycerol O-acyltransferase 2-like protein 6 +15.163089,PR:000006448,http://purl.obolibrary.org/obo/PR_000006448,diacylglycerol kinase iota +15.163089,PR:000006457,http://purl.obolibrary.org/obo/PR_000006457,"dihydrofolate reductase 2, mitochondrial" +15.163089,PR:000006490,http://purl.obolibrary.org/obo/PR_000006490,solute carrier family 49 member 4 +15.163089,PR:000006496,http://purl.obolibrary.org/obo/PR_000006496,protein dispatched homolog 2 +15.163089,PR:000006583,http://purl.obolibrary.org/obo/PR_000006583,DnaJ homolog subfamily C member 21 +15.163089,PR:000006589,http://purl.obolibrary.org/obo/PR_000006589,"dynein light chain 1, axonemal" +15.163089,PR:000006669,http://purl.obolibrary.org/obo/PR_000006669,divergent paired-related homeobox +15.163089,PR:000006703,http://purl.obolibrary.org/obo/PR_000006703,Down syndrome critical region protein 9 +15.163089,PR:000006752,http://purl.obolibrary.org/obo/PR_000006752,dual specificity phosphatase 28 +15.163089,PR:000006761,http://purl.obolibrary.org/obo/PR_000006761,double homeobox protein 1 +15.163089,PR:000006772,http://purl.obolibrary.org/obo/PR_000006772,cytoplasmic dynein 1 intermediate chain 2 +15.163089,PR:000006820,http://purl.obolibrary.org/obo/PR_000006820,none +15.163089,PR:000006850,http://purl.obolibrary.org/obo/PR_000006850,none +15.163089,PR:000006869,http://purl.obolibrary.org/obo/PR_000006869,transcription factor COE4 +15.163089,PR:000006900,http://purl.obolibrary.org/obo/PR_000006900,erythroid differentiation-related factor 1 +15.163089,PR:000006983,http://purl.obolibrary.org/obo/PR_000006983,eukaryotic translation initiation factor 3 subunit K +15.163089,PR:000007067,http://purl.obolibrary.org/obo/PR_000007067,transcriptional repressor EMSY +15.163089,PR:000007137,http://purl.obolibrary.org/obo/PR_000007137,EPM2A-interacting protein 1 +15.163089,PR:000007215,http://purl.obolibrary.org/obo/PR_000007215,"electron transfer flavoprotein subunit alpha, mitochondrial" +15.163089,PR:000007335,http://purl.obolibrary.org/obo/PR_000007335,Fanconi anemia group F protein +15.163089,PR:000007349,http://purl.obolibrary.org/obo/PR_000007349,Fas-activated serine/threonine kinase +15.163089,PR:000007409,http://purl.obolibrary.org/obo/PR_000007409,F-box only protein 40 +15.163089,PR:000007433,http://purl.obolibrary.org/obo/PR_000007433,rRNA-processing protein FCF1 +15.163089,PR:000007676,http://purl.obolibrary.org/obo/PR_000007676,fibrous sheath CABYR-binding protein +15.163089,PR:000007679,http://purl.obolibrary.org/obo/PR_000007679,fascin-3 +15.163089,PR:000007687,http://purl.obolibrary.org/obo/PR_000007687,follistatin-related protein 4 +15.163089,PR:000007739,http://purl.obolibrary.org/obo/PR_000007739,none +15.163089,PR:000007809,http://purl.obolibrary.org/obo/PR_000007809,galactose-3-O-sulfotransferase 3 +15.163089,PR:000007810,http://purl.obolibrary.org/obo/PR_000007810,galactose-3-O-sulfotransferase 4 +15.163089,PR:000007845,http://purl.obolibrary.org/obo/PR_000007845,Rap1 GTPase-activating protein 2 +15.163089,PR:000007864,http://purl.obolibrary.org/obo/PR_000007864,GatC-like protein +15.163089,PR:000007931,http://purl.obolibrary.org/obo/PR_000007931,Rho guanine nucleotide exchange factor 25 +15.163089,PR:000007959,http://purl.obolibrary.org/obo/PR_000007959,putative gametogenetin-binding protein 1 +15.163089,PR:000007965,http://purl.obolibrary.org/obo/PR_000007965,glutathione hydrolase 7 +15.163089,PR:000008017,http://purl.obolibrary.org/obo/PR_000008017,beta-galactosidase-1-like protein +15.163089,PR:000008272,http://purl.obolibrary.org/obo/PR_000008272,"GrpE protein homolog 1, mitochondrial" +15.163089,PR:000008350,http://purl.obolibrary.org/obo/PR_000008350,guanylate cyclase soluble subunit beta-2 +15.163089,PR:000008360,http://purl.obolibrary.org/obo/PR_000008360,interferon-induced very large GTPase 1 +15.163089,PR:000008420,http://purl.obolibrary.org/obo/PR_000008420,core histone macro-H2A.2 +15.163089,PR:000008429,http://purl.obolibrary.org/obo/PR_000008429,intracellular hyaluronan-binding protein 4 +15.163089,PR:000008507,http://purl.obolibrary.org/obo/PR_000008507,ATP-dependent DNA helicase HEL308 +15.163089,PR:000008512,http://purl.obolibrary.org/obo/PR_000008512,ferroxidase HEPHL1 +15.163089,PR:000008571,http://purl.obolibrary.org/obo/PR_000008571,HIRA-interacting protein 3 +15.163089,PR:000008626,http://purl.obolibrary.org/obo/PR_000008626,high mobility group protein 20A +15.163089,PR:000008641,http://purl.obolibrary.org/obo/PR_000008641,HMG domain-containing protein 4 +15.163089,PR:000008746,http://purl.obolibrary.org/obo/PR_000008746,phospholipase A and acyltransferase 2 +15.163089,PR:000008762,http://purl.obolibrary.org/obo/PR_000008762,heparan sulfate glucosamine 3-O-sulfotransferase 4 +15.163089,PR:000008767,http://purl.obolibrary.org/obo/PR_000008767,heparan-sulfate 6-O-sulfotransferase 3 +15.163089,PR:000008778,http://purl.obolibrary.org/obo/PR_000008778,17-beta-hydroxysteroid dehydrogenase 14 +15.163089,PR:000008898,http://purl.obolibrary.org/obo/PR_000008898,immediate early response 3-interacting protein 1 +15.163089,PR:000008967,http://purl.obolibrary.org/obo/PR_000008967,none +15.163089,PR:000009294,http://purl.obolibrary.org/obo/PR_000009294,kinesin-like protein KIF19 +15.163089,PR:000009305,http://purl.obolibrary.org/obo/PR_000009305,kinesin-like protein KIF26A +15.163089,PR:000009376,http://purl.obolibrary.org/obo/PR_000009376,kelch-like protein 13 +15.163089,PR:000009378,http://purl.obolibrary.org/obo/PR_000009378,kelch-like protein 15 +15.163089,PR:000009379,http://purl.obolibrary.org/obo/PR_000009379,kelch-like protein 17 +15.163089,PR:000009390,http://purl.obolibrary.org/obo/PR_000009390,kelch-like protein 29 +15.163089,PR:000009401,http://purl.obolibrary.org/obo/PR_000009401,kelch-like protein 5 +15.163089,PR:000009440,http://purl.obolibrary.org/obo/PR_000009440,keratinocyte proline-rich protein +15.163089,PR:000009476,http://purl.obolibrary.org/obo/PR_000009476,"keratin, type I cuticular Ha7" +15.163089,PR:000009492,http://purl.obolibrary.org/obo/PR_000009492,"keratin, type II cytoskeletal 1b" +15.163089,PR:000009500,http://purl.obolibrary.org/obo/PR_000009500,"keratin, type II cuticular Hb4" +15.163089,PR:000009577,http://purl.obolibrary.org/obo/PR_000009577,keratin-associated protein 5-9 +15.163089,PR:000009642,http://purl.obolibrary.org/obo/PR_000009642,lethal(3)malignant brain tumor-like protein 3 +15.163089,PR:000009669,http://purl.obolibrary.org/obo/PR_000009669,La-related protein 1B +15.163089,PR:000009674,http://purl.obolibrary.org/obo/PR_000009674,"leucine--tRNA ligase, cytoplasmic" +15.163089,PR:000009720,http://purl.obolibrary.org/obo/PR_000009720,tRNA wybutosine-synthesizing protein 4 +15.163089,PR:000009790,http://purl.obolibrary.org/obo/PR_000009790,phospholysine phosphohistidine inorganic pyrophosphate phosphatase +15.163089,PR:000009806,http://purl.obolibrary.org/obo/PR_000009806,leukocyte immunoglobulin-like receptor subfamily A member 5 +15.163089,PR:000009899,http://purl.obolibrary.org/obo/PR_000009899,BPI fold-containing family B member 3 +15.163089,PR:000009992,http://purl.obolibrary.org/obo/PR_000009992,lymphocyte antigen 6 complex locus protein G6c +15.163089,PR:000010050,http://purl.obolibrary.org/obo/PR_000010050,transcription factor MafG +15.163089,PR:000010064,http://purl.obolibrary.org/obo/PR_000010064,melanoma-associated antigen B1 +15.163089,PR:000010106,http://purl.obolibrary.org/obo/PR_000010106,alpha-mannosidase 2x +15.163089,PR:000010121,http://purl.obolibrary.org/obo/PR_000010121,microtubule-associated proteins 1A/1B light chain 3 beta 2 +15.163089,PR:000010219,http://purl.obolibrary.org/obo/PR_000010219,MAP3K12-binding inhibitory protein 1 +15.163089,PR:000010343,http://purl.obolibrary.org/obo/PR_000010343,methyltransferase-like protein 11A +15.163089,PR:000010345,http://purl.obolibrary.org/obo/PR_000010345,eEF1A lysine and N-terminal methyltransferase +15.163089,PR:000010412,http://purl.obolibrary.org/obo/PR_000010412,mesoderm induction early response protein 3 +15.163089,PR:000010462,http://purl.obolibrary.org/obo/PR_000010462,corrinoid adenosyltransferase MMAB +15.163089,PR:000010498,http://purl.obolibrary.org/obo/PR_000010498,myeloid cell nuclear differentiation antigen +15.163089,PR:000010517,http://purl.obolibrary.org/obo/PR_000010517,2-acylglycerol O-acyltransferase 3 +15.163089,PR:000010548,http://purl.obolibrary.org/obo/PR_000010548,metallophosphoesterase 1 +15.163089,PR:000010559,http://purl.obolibrary.org/obo/PR_000010559,Ras-related protein M-Ras +15.163089,PR:000010597,http://purl.obolibrary.org/obo/PR_000010597,"39S ribosomal protein L37, mitochondrial" +15.163089,PR:000010610,http://purl.obolibrary.org/obo/PR_000010610,"39S ribosomal protein L49, mitochondrial" +15.163089,PR:000010620,http://purl.obolibrary.org/obo/PR_000010620,"28S ribosomal protein S12, mitochondrial" +15.163089,PR:000010660,http://purl.obolibrary.org/obo/PR_000010660,membrane-spanning 4-domains subfamily A member 6A +15.163089,PR:000010701,http://purl.obolibrary.org/obo/PR_000010701,metallothionein-1L +15.163089,PR:000010839,http://purl.obolibrary.org/obo/PR_000010839,myosin light chain 6B +15.163089,PR:000010918,http://purl.obolibrary.org/obo/PR_000010918,none +15.163089,PR:000011113,http://purl.obolibrary.org/obo/PR_000011113,adaptin ear-binding coat-associated protein 2 +15.163089,PR:000011197,http://purl.obolibrary.org/obo/PR_000011197,neugrin +15.163089,PR:000011258,http://purl.obolibrary.org/obo/PR_000011258,"neuroligin-4, Y-linked" +15.163089,PR:000011314,http://purl.obolibrary.org/obo/PR_000011314,nucleolar protein 8 +15.163089,PR:000011315,http://purl.obolibrary.org/obo/PR_000011315,polynucleotide 5'-hydroxyl-kinase NOL9 +15.163089,PR:000011342,http://purl.obolibrary.org/obo/PR_000011342,DNA damage-induced apoptosis suppressor protein +15.163089,PR:000011429,http://purl.obolibrary.org/obo/PR_000011429,nuclear receptor-interacting protein 3 +15.163089,PR:000011486,http://purl.obolibrary.org/obo/PR_000011486,NAD-capped RNA hydrolase NUDT12 +15.163089,PR:000011487,http://purl.obolibrary.org/obo/PR_000011487,uridine diphosphate glucose pyrophosphatase NUDT14 +15.163089,PR:000011491,http://purl.obolibrary.org/obo/PR_000011491,nucleoside diphosphate-linked moiety X motif 19 +15.163089,PR:000011547,http://purl.obolibrary.org/obo/PR_000011547,NTF2-related export protein 2 +15.163089,PR:000011569,http://purl.obolibrary.org/obo/PR_000011569,none +15.163089,PR:000011643,http://purl.obolibrary.org/obo/PR_000011643,oocyte-expressed protein +15.163089,PR:000011760,http://purl.obolibrary.org/obo/PR_000011760,olfactory receptor 2C1 +15.163089,PR:000012052,http://purl.obolibrary.org/obo/PR_000012052,oxysterol-binding protein-related protein 7 +15.163089,PR:000012066,http://purl.obolibrary.org/obo/PR_000012066,oligosaccharyltransferase complex subunit OSTC +15.163089,PR:000012093,http://purl.obolibrary.org/obo/PR_000012093,ovostatin homolog 2 +15.163089,PR:000012230,http://purl.obolibrary.org/obo/PR_000012230,"platelet-activating factor acetylhydrolase 2, cytoplasmic" +15.163089,PR:000012305,http://purl.obolibrary.org/obo/PR_000012305,gamma-parvin +15.163089,PR:000012386,http://purl.obolibrary.org/obo/PR_000012386,protocadherin beta-9 +15.163089,PR:000012459,http://purl.obolibrary.org/obo/PR_000012459,programmed cell death protein 7 +15.163089,PR:000012503,http://purl.obolibrary.org/obo/PR_000012503,protein disulfide-isomerase-like protein of the testis +15.163089,PR:000012640,http://purl.obolibrary.org/obo/PR_000012640,PHD finger protein 13 +15.163089,PR:000012642,http://purl.obolibrary.org/obo/PR_000012642,E3 ubiquitin-protein ligase Jade-2 +15.163089,PR:000012643,http://purl.obolibrary.org/obo/PR_000012643,protein Jade-3 +15.163089,PR:000012709,http://purl.obolibrary.org/obo/PR_000012709,GPI mannosyltransferase 2 +15.163089,PR:000012802,http://purl.obolibrary.org/obo/PR_000012802,group IIF secretory phospholipase A2 +15.163089,PR:000013003,http://purl.obolibrary.org/obo/PR_000013003,DNA-directed RNA polymerase III subunit RPC4 +15.163089,PR:000013055,http://purl.obolibrary.org/obo/PR_000013055,phospholipid phosphatase 6 +15.163089,PR:000013163,http://purl.obolibrary.org/obo/PR_000013163,peptidylprolyl isomerase domain and WD repeat-containing protein 1 +15.163089,PR:000013201,http://purl.obolibrary.org/obo/PR_000013201,prolyl endopeptidase-like +15.163089,PR:000013213,http://purl.obolibrary.org/obo/PR_000013213,prickle planar cell polarity protein 3 +15.163089,PR:000013272,http://purl.obolibrary.org/obo/PR_000013272,protor-2 +15.163089,PR:000013285,http://purl.obolibrary.org/obo/PR_000013285,pre-mRNA-processing factor 40 homolog B +15.163089,PR:000013300,http://purl.obolibrary.org/obo/PR_000013300,proline-rich protein 14 +15.163089,PR:000013536,http://purl.obolibrary.org/obo/PR_000013536,none +15.163089,PR:000013549,http://purl.obolibrary.org/obo/PR_000013549,none +15.163089,PR:000013590,http://purl.obolibrary.org/obo/PR_000013590,Ras-related protein Rab-19 +15.163089,PR:000013608,http://purl.obolibrary.org/obo/PR_000013608,Ras-related protein Rab-33A +15.163089,PR:000013742,http://purl.obolibrary.org/obo/PR_000013742,"arginine--tRNA ligase, cytoplasmic" +15.163089,PR:000013770,http://purl.obolibrary.org/obo/PR_000013770,ribonucleoprotein PTB-binding 2 +15.163089,PR:000013813,http://purl.obolibrary.org/obo/PR_000013813,"RNA-binding motif protein, X chromosome" +15.163089,PR:000013864,http://purl.obolibrary.org/obo/PR_000013864,receptor expression-enhancing protein 2 +15.163089,PR:000013866,http://purl.obolibrary.org/obo/PR_000013866,receptor expression-enhancing protein 4 +15.163089,PR:000014059,http://purl.obolibrary.org/obo/PR_000014059,ribonuclease 3 +15.163089,PR:000014074,http://purl.obolibrary.org/obo/PR_000014074,RING finger protein 121 +15.163089,PR:000014114,http://purl.obolibrary.org/obo/PR_000014114,E3 ubiquitin-protein ligase RNF19B +15.163089,PR:000014202,http://purl.obolibrary.org/obo/PR_000014202,60S ribosomal protein L22-like 1 +15.163089,PR:000014248,http://purl.obolibrary.org/obo/PR_000014248,regulation of nuclear pre-mRNA domain-containing protein 1A +15.163089,PR:000014262,http://purl.obolibrary.org/obo/PR_000014262,active regulator of SIRT1 +15.163089,PR:000014300,http://purl.obolibrary.org/obo/PR_000014300,Ras-related GTP-binding protein D +15.163089,PR:000014335,http://purl.obolibrary.org/obo/PR_000014335,arginine/serine-rich coiled-coil protein 2 +15.163089,PR:000014456,http://purl.obolibrary.org/obo/PR_000014456,"sarcosine dehydrogenase, mitochondrial" +15.163089,PR:000014460,http://purl.obolibrary.org/obo/PR_000014460,"serine--tRNA ligase, mitochondrial" +15.163089,PR:000014490,http://purl.obolibrary.org/obo/PR_000014490,S phase cyclin A-associated protein in the endoplasmic reticulum +15.163089,PR:000014506,http://purl.obolibrary.org/obo/PR_000014506,secretoglobin family 1D member 1 +15.163089,PR:000014529,http://purl.obolibrary.org/obo/PR_000014529,amiloride-sensitive sodium channel subunit delta +15.163089,PR:000014557,http://purl.obolibrary.org/obo/PR_000014557,spliceosome-associated protein CWC27 homolog +15.163089,PR:000014574,http://purl.obolibrary.org/obo/PR_000014574,signal peptidase complex catalytic subunit SEC11C +15.163089,PR:000014751,http://purl.obolibrary.org/obo/PR_000014751,"splicing factor, arginine/serine-rich 12" +15.163089,PR:000014753,http://purl.obolibrary.org/obo/PR_000014753,SR-related and CTD-associated factor 4 +15.163089,PR:000014883,http://purl.obolibrary.org/obo/PR_000014883,signal-induced proliferation-associated 1-like protein 3 +15.163089,PR:000014948,http://purl.obolibrary.org/obo/PR_000014948,monocarboxylate transporter 13 +15.163089,PR:000015233,http://purl.obolibrary.org/obo/PR_000015233,"SRA stem-loop-interacting RNA-binding protein, mitochondrial" +15.163089,PR:000015282,http://purl.obolibrary.org/obo/PR_000015282,serine/threonine-protein phosphatase 4 regulatory subunit 3B +15.163089,PR:000015461,http://purl.obolibrary.org/obo/PR_000015461,sperm-associated antigen 7 +15.163089,PR:000015486,http://purl.obolibrary.org/obo/PR_000015486,spermatogenesis-associated protein 20 +15.163089,PR:000015599,http://purl.obolibrary.org/obo/PR_000015599,protein SPT2 +15.163089,PR:000015609,http://purl.obolibrary.org/obo/PR_000015609,steroid 5-alpha-reductase 2-like 2 protein +15.163089,PR:000015857,http://purl.obolibrary.org/obo/PR_000015857,synapse-associated protein 1 +15.163089,PR:000015864,http://purl.obolibrary.org/obo/PR_000015864,synaptonemal complex protein 2-like +15.163089,PR:000015968,http://purl.obolibrary.org/obo/PR_000015968,none +15.163089,PR:000015999,http://purl.obolibrary.org/obo/PR_000015999,none +15.163089,PR:000016059,http://purl.obolibrary.org/obo/PR_000016059,"threonine--tRNA ligase, mitochondrial" +15.163089,PR:000016160,http://purl.obolibrary.org/obo/PR_000016160,transcription elongation factor A protein-like 1 +15.163089,PR:000016175,http://purl.obolibrary.org/obo/PR_000016175,transcription elongation regulator 1-like protein +15.163089,PR:000016242,http://purl.obolibrary.org/obo/PR_000016242,dual specificity testis-specific protein kinase 2 +15.163089,PR:000016243,http://purl.obolibrary.org/obo/PR_000016243,testis serine protease 1 +15.163089,PR:000016290,http://purl.obolibrary.org/obo/PR_000016290,homeobox protein TGIF2LX +15.163089,PR:000016305,http://purl.obolibrary.org/obo/PR_000016305,THAP domain-containing protein 7 +15.163089,PR:000016324,http://purl.obolibrary.org/obo/PR_000016324,thiamine-triphosphatase +15.163089,PR:000016394,http://purl.obolibrary.org/obo/PR_000016394,transmembrane channel-like protein 3 +15.163089,PR:000016396,http://purl.obolibrary.org/obo/PR_000016396,transmembrane channel-like protein 5 +15.163089,PR:000016433,http://purl.obolibrary.org/obo/PR_000016433,"type 1 phosphatidylinositol 4,5-bisphosphate 4-phosphatase" +15.163089,PR:000016459,http://purl.obolibrary.org/obo/PR_000016459,transmembrane protease serine 5 +15.163089,PR:000016543,http://purl.obolibrary.org/obo/PR_000016543,"DNA topoisomerase I, mitochondrial" +15.163089,PR:000016613,http://purl.obolibrary.org/obo/PR_000016613,trafficking protein particle complex subunit 2-like protein +15.163089,PR:000016617,http://purl.obolibrary.org/obo/PR_000016617,trafficking protein particle complex subunit 6A +15.163089,PR:000016772,http://purl.obolibrary.org/obo/PR_000016772,testis-specific serine/threonine-protein kinase 3 +15.163089,PR:000016792,http://purl.obolibrary.org/obo/PR_000016792,tubulin monoglycylase TTLL3 +15.163089,PR:000016805,http://purl.obolibrary.org/obo/PR_000016805,protein tweety homolog 3 +15.163089,PR:000016851,http://purl.obolibrary.org/obo/PR_000016851,beta-taxilin +15.163089,PR:000017009,http://purl.obolibrary.org/obo/PR_000017009,ubiquilin-3 +15.163089,PR:000017042,http://purl.obolibrary.org/obo/PR_000017042,Ufm1-specific protease 2 +15.163089,PR:000017120,http://purl.obolibrary.org/obo/PR_000017120,ubiquinol-cytochrome-c reductase complex assembly factor 1 +15.163089,PR:000017205,http://purl.obolibrary.org/obo/PR_000017205,small subunit processome component 20 +15.163089,PR:000017206,http://purl.obolibrary.org/obo/PR_000017206,rRNA-processing protein UTP23 +15.163089,PR:000017224,http://purl.obolibrary.org/obo/PR_000017224,none +15.163089,PR:000017308,http://purl.obolibrary.org/obo/PR_000017308,vomeronasal type-1 receptor 1 +15.163089,PR:000017322,http://purl.obolibrary.org/obo/PR_000017322,vacuolar protein sorting-associated protein 13D +15.163089,PR:000017393,http://purl.obolibrary.org/obo/PR_000017393,WD repeat-containing protein 44 +15.163089,PR:000017519,http://purl.obolibrary.org/obo/PR_000017519,none +15.163089,PR:000017520,http://purl.obolibrary.org/obo/PR_000017520,none +15.163089,PR:000017543,http://purl.obolibrary.org/obo/PR_000017543,protein yippee-like 2 +15.163089,PR:000017573,http://purl.obolibrary.org/obo/PR_000017573,zinc finger and BTB domain-containing protein 3 +15.163089,PR:000017657,http://purl.obolibrary.org/obo/PR_000017657,zinc finger Y-chromosomal protein +15.163089,PR:000017672,http://purl.obolibrary.org/obo/PR_000017672,zinc finger imprinted 3 +15.163089,PR:000017701,http://purl.obolibrary.org/obo/PR_000017701,zinc finger protein 12 +15.163089,PR:000017754,http://purl.obolibrary.org/obo/PR_000017754,zinc finger protein 215 +15.163089,PR:000017766,http://purl.obolibrary.org/obo/PR_000017766,zinc finger protein 23 +15.163089,PR:000017793,http://purl.obolibrary.org/obo/PR_000017793,none +15.163089,PR:000017912,http://purl.obolibrary.org/obo/PR_000017912,zinc finger protein 467 +15.163089,PR:000017951,http://purl.obolibrary.org/obo/PR_000017951,zinc finger protein 518B +15.163089,PR:000017991,http://purl.obolibrary.org/obo/PR_000017991,zinc finger protein 57 +15.163089,PR:000018036,http://purl.obolibrary.org/obo/PR_000018036,zinc finger protein 622 +15.163089,PR:000018048,http://purl.obolibrary.org/obo/PR_000018048,zinc finger protein 69 homolog +15.163089,PR:000018050,http://purl.obolibrary.org/obo/PR_000018050,zinc finger protein 644 +15.163089,PR:000018095,http://purl.obolibrary.org/obo/PR_000018095,zinc finger protein 7 +15.163089,PR:000018179,http://purl.obolibrary.org/obo/PR_000018179,zinc finger protein 828 +15.163089,PR:000018222,http://purl.obolibrary.org/obo/PR_000018222,zinc finger and SCAN domain-containing protein 12 +15.163089,PR:000018224,http://purl.obolibrary.org/obo/PR_000018224,zinc finger and SCAN domain-containing protein 18 +15.163089,PR:000018245,http://purl.obolibrary.org/obo/PR_000018245,none +15.163089,PR:000018258,http://purl.obolibrary.org/obo/PR_000018258,none +15.163089,PR:000022101,http://purl.obolibrary.org/obo/PR_000022101,none +15.163089,PR:000022206,http://purl.obolibrary.org/obo/PR_000022206,none +15.163089,PR:000022210,http://purl.obolibrary.org/obo/PR_000022210,none +15.163089,PR:000022294,http://purl.obolibrary.org/obo/PR_000022294,none +15.163089,PR:000022312,http://purl.obolibrary.org/obo/PR_000022312,none +15.163089,PR:000022359,http://purl.obolibrary.org/obo/PR_000022359,none +15.163089,PR:000022434,http://purl.obolibrary.org/obo/PR_000022434,none +15.163089,PR:000022439,http://purl.obolibrary.org/obo/PR_000022439,none +15.163089,PR:000022468,http://purl.obolibrary.org/obo/PR_000022468,none +15.163089,PR:000022470,http://purl.obolibrary.org/obo/PR_000022470,none +15.163089,PR:000022519,http://purl.obolibrary.org/obo/PR_000022519,none +15.163089,PR:000022524,http://purl.obolibrary.org/obo/PR_000022524,none +15.163089,PR:000022549,http://purl.obolibrary.org/obo/PR_000022549,none +15.163089,PR:000022577,http://purl.obolibrary.org/obo/PR_000022577,none +15.163089,PR:000022591,http://purl.obolibrary.org/obo/PR_000022591,none +15.163089,PR:000022610,http://purl.obolibrary.org/obo/PR_000022610,none +15.163089,PR:000022699,http://purl.obolibrary.org/obo/PR_000022699,none +15.163089,PR:000022719,http://purl.obolibrary.org/obo/PR_000022719,none +15.163089,PR:000022755,http://purl.obolibrary.org/obo/PR_000022755,none +15.163089,PR:000022793,http://purl.obolibrary.org/obo/PR_000022793,none +15.163089,PR:000022798,http://purl.obolibrary.org/obo/PR_000022798,none +15.163089,PR:000022835,http://purl.obolibrary.org/obo/PR_000022835,autonomous glycyl radical cofactor +15.163089,PR:000022884,http://purl.obolibrary.org/obo/PR_000022884,none +15.163089,PR:000022927,http://purl.obolibrary.org/obo/PR_000022927,none +15.163089,PR:000022934,http://purl.obolibrary.org/obo/PR_000022934,none +15.163089,PR:000023232,http://purl.obolibrary.org/obo/PR_000023232,none +15.163089,PR:000023315,http://purl.obolibrary.org/obo/PR_000023315,none +15.163089,PR:000023316,http://purl.obolibrary.org/obo/PR_000023316,none +15.163089,PR:000023338,http://purl.obolibrary.org/obo/PR_000023338,none +15.163089,PR:000023392,http://purl.obolibrary.org/obo/PR_000023392,none +15.163089,PR:000023396,http://purl.obolibrary.org/obo/PR_000023396,none +15.163089,PR:000023465,http://purl.obolibrary.org/obo/PR_000023465,none +15.163089,PR:000023486,http://purl.obolibrary.org/obo/PR_000023486,none +15.163089,PR:000023505,http://purl.obolibrary.org/obo/PR_000023505,none +15.163089,PR:000023519,http://purl.obolibrary.org/obo/PR_000023519,none +15.163089,PR:000023595,http://purl.obolibrary.org/obo/PR_000023595,none +15.163089,PR:000023686,http://purl.obolibrary.org/obo/PR_000023686,none +15.163089,PR:000023689,http://purl.obolibrary.org/obo/PR_000023689,none +15.163089,PR:000023705,http://purl.obolibrary.org/obo/PR_000023705,none +15.163089,PR:000023716,http://purl.obolibrary.org/obo/PR_000023716,none +15.163089,PR:000023807,http://purl.obolibrary.org/obo/PR_000023807,none +15.163089,PR:000023927,http://purl.obolibrary.org/obo/PR_000023927,none +15.163089,PR:000023936,http://purl.obolibrary.org/obo/PR_000023936,none +15.163089,PR:000024000,http://purl.obolibrary.org/obo/PR_000024000,none +15.163089,PR:000024008,http://purl.obolibrary.org/obo/PR_000024008,none +15.163089,PR:000024016,http://purl.obolibrary.org/obo/PR_000024016,none +15.163089,PR:000024069,http://purl.obolibrary.org/obo/PR_000024069,threonyl-tRNA synthetase +15.163089,PR:000024102,http://purl.obolibrary.org/obo/PR_000024102,none +15.163089,PR:000024133,http://purl.obolibrary.org/obo/PR_000024133,none +15.163089,PR:000024192,http://purl.obolibrary.org/obo/PR_000024192,none +15.163089,PR:000024230,http://purl.obolibrary.org/obo/PR_000024230,none +15.163089,PR:000024238,http://purl.obolibrary.org/obo/PR_000024238,none +15.163089,PR:000024247,http://purl.obolibrary.org/obo/PR_000024247,none +15.163089,PR:000024249,http://purl.obolibrary.org/obo/PR_000024249,none +15.163089,PR:000024999,http://purl.obolibrary.org/obo/PR_000024999,none +15.163089,PR:000025840,http://purl.obolibrary.org/obo/PR_000025840,gamma-glutamyltranspeptidase light chain +15.163089,PR:000027167,http://purl.obolibrary.org/obo/PR_000027167,none +15.163089,PR:000029088,http://purl.obolibrary.org/obo/PR_000029088,AarF domain-containing protein kinase 1 +15.163089,PR:000029127,http://purl.obolibrary.org/obo/PR_000029127,myosin light chain kinase family member 4 +15.163089,PR:000029270,http://purl.obolibrary.org/obo/PR_000029270,ankyrin repeat domain-containing protein 30A +15.163089,PR:000029273,http://purl.obolibrary.org/obo/PR_000029273,ankyrin repeat and zinc finger domain-containing protein 1 +15.163089,PR:000029295,http://purl.obolibrary.org/obo/PR_000029295,probable phospholipid-transporting ATPase IIB +15.163089,PR:000029334,http://purl.obolibrary.org/obo/PR_000029334,coiled-coil domain-containing protein 66 +15.163089,PR:000029336,http://purl.obolibrary.org/obo/PR_000029336,coiled-coil domain-containing protein 68 +15.163089,PR:000029342,http://purl.obolibrary.org/obo/PR_000029342,coiled-coil domain-containing protein 92 +15.163089,PR:000029378,http://purl.obolibrary.org/obo/PR_000029378,DDB1- and CUL4-associated factor 8 +15.163089,PR:000029389,http://purl.obolibrary.org/obo/PR_000029389,probable ATP-dependent RNA helicase DDX47 +15.163089,PR:000029436,http://purl.obolibrary.org/obo/PR_000029436,"enoyl-CoA hydratase domain-containing protein 2, mitochondrial" +15.163089,PR:000029555,http://purl.obolibrary.org/obo/PR_000029555,interferon alpha-1/13 +15.163089,PR:000029579,http://purl.obolibrary.org/obo/PR_000029579,kelch domain-containing protein 7B +15.163089,PR:000029596,http://purl.obolibrary.org/obo/PR_000029596,LINE-1 type transposase domain-containing protein 1 +15.163089,PR:000029613,http://purl.obolibrary.org/obo/PR_000029613,"N-alpha-acetyltransferase 38, NatC auxiliary subunit" +15.163089,PR:000029671,http://purl.obolibrary.org/obo/PR_000029671,probable phosphoglycerate mutase 4 +15.163089,PR:000029704,http://purl.obolibrary.org/obo/PR_000029704,queuine tRNA-ribosyltransferase accessory subunit 2 +15.163089,PR:000029741,http://purl.obolibrary.org/obo/PR_000029741,solute carrier family 41 member 3 +15.163089,PR:000029744,http://purl.obolibrary.org/obo/PR_000029744,sterile alpha motif domain-containing protein 7 +15.163089,PR:000029840,http://purl.obolibrary.org/obo/PR_000029840,tetratricopeptide repeat protein 7B +15.163089,PR:000029865,http://purl.obolibrary.org/obo/PR_000029865,cilia- and flagella-associated protein 251 +15.163089,PR:000029887,http://purl.obolibrary.org/obo/PR_000029887,zinc finger CCHC domain-containing protein 7 +15.163089,PR:000029980,http://purl.obolibrary.org/obo/PR_000029980,PRAME family member +15.163089,PR:000030203,http://purl.obolibrary.org/obo/PR_000030203,transcription elongation factor A N-terminal and central domain-containing protein 2 +15.163089,PR:000030234,http://purl.obolibrary.org/obo/PR_000030234,leukocyte receptor cluster member 8 +15.163089,PR:000030244,http://purl.obolibrary.org/obo/PR_000030244,PI-PLC X domain-containing protein 3 +15.163089,PR:000030351,http://purl.obolibrary.org/obo/PR_000030351,E3 ubiquitin-protein ligase SH3RF2 +15.163089,PR:000030372,http://purl.obolibrary.org/obo/PR_000030372,palmitoyltransferase ZDHHC11 +15.163089,PR:000030379,http://purl.obolibrary.org/obo/PR_000030379,acidic leucine-rich nuclear phosphoprotein 32 family member D +15.163089,PR:000030382,http://purl.obolibrary.org/obo/PR_000030382,small RNA 2'-O-methyltransferase +15.163089,PR:000030425,http://purl.obolibrary.org/obo/PR_000030425,transmembrane protein 230 +15.163089,PR:000030430,http://purl.obolibrary.org/obo/PR_000030430,von Willebrand factor A domain-containing protein 7 +15.163089,PR:000030435,http://purl.obolibrary.org/obo/PR_000030435,probable ribonuclease ZC3H12C +15.163089,PR:000030542,http://purl.obolibrary.org/obo/PR_000030542,membrane progestin receptor epsilon +15.163089,PR:000030563,http://purl.obolibrary.org/obo/PR_000030563,doublecortin domain-containing protein 1 +15.163089,PR:000030572,http://purl.obolibrary.org/obo/PR_000030572,thioredoxin-related transmembrane protein 4 +15.163089,PR:000030611,http://purl.obolibrary.org/obo/PR_000030611,transmembrane protein 185A +15.163089,PR:000030671,http://purl.obolibrary.org/obo/PR_000030671,protein Aster-A +15.163089,PR:000030685,http://purl.obolibrary.org/obo/PR_000030685,probable E3 ubiquitin-protein ligase TRIML2 +15.163089,PR:000030701,http://purl.obolibrary.org/obo/PR_000030701,translational activator of cytochrome c oxidase 1 +15.163089,PR:000030719,http://purl.obolibrary.org/obo/PR_000030719,DnaJ homolog subfamily C member 4 +15.163089,PR:000030724,http://purl.obolibrary.org/obo/PR_000030724,transmembrane protein 102 +15.163089,PR:000030737,http://purl.obolibrary.org/obo/PR_000030737,von Willebrand factor A domain-containing protein 8 +15.163089,PR:000030741,http://purl.obolibrary.org/obo/PR_000030741,fibronectin type III domain-containing protein 4 +15.163089,PR:000030757,http://purl.obolibrary.org/obo/PR_000030757,PI-PLC X domain-containing protein 1 +15.163089,PR:000030758,http://purl.obolibrary.org/obo/PR_000030758,putative peptidyl-tRNA hydrolase PTRHD1 +15.163089,PR:000030759,http://purl.obolibrary.org/obo/PR_000030759,serine/arginine repetitive matrix protein 3 +15.163089,PR:000030784,http://purl.obolibrary.org/obo/PR_000030784,"discoidin, CUB and LCCL domain-containing protein 1" +15.163089,PR:000030789,http://purl.obolibrary.org/obo/PR_000030789,chemokine-like protein TAFA-5 +15.163089,PR:000030849,http://purl.obolibrary.org/obo/PR_000030849,multiple epidermal growth factor-like domains protein 11 +15.163089,PR:000030861,http://purl.obolibrary.org/obo/PR_000030861,calcium homeostasis modulator protein 6 +15.163089,PR:000030883,http://purl.obolibrary.org/obo/PR_000030883,CBP80/20-dependent translation initiation factor +15.163089,PR:000030900,http://purl.obolibrary.org/obo/PR_000030900,probable histone-lysine N-methyltransferase PRDM7 +15.163089,PR:000030901,http://purl.obolibrary.org/obo/PR_000030901,splicing regulator RBM11 +15.163089,PR:000030916,http://purl.obolibrary.org/obo/PR_000030916,NACHT domain- and WD repeat-containing protein 1 +15.163089,PR:000030965,http://purl.obolibrary.org/obo/PR_000030965,integral membrane protein GPR137 +15.163089,PR:000031000,http://purl.obolibrary.org/obo/PR_000031000,centrosomal protein of 19 kDa +15.163089,PR:000031021,http://purl.obolibrary.org/obo/PR_000031021,leucine-rich repeat-containing protein 1 +15.163089,PR:000031035,http://purl.obolibrary.org/obo/PR_000031035,ankyrin repeat domain-containing protein 46 +15.163089,PR:000031045,http://purl.obolibrary.org/obo/PR_000031045,F-box/WD repeat-containing protein 10 +15.163089,PR:000031057,http://purl.obolibrary.org/obo/PR_000031057,nuclear envelope integral membrane protein 1 +15.163089,PR:000031113,http://purl.obolibrary.org/obo/PR_000031113,potassium voltage-gated channel subfamily E regulatory beta subunit 5 +15.163089,PR:000031141,http://purl.obolibrary.org/obo/PR_000031141,transmembrane protein 163 +15.163089,PR:000031187,http://purl.obolibrary.org/obo/PR_000031187,DnaJ homolog subfamily B member 12 +15.163089,PR:000031222,http://purl.obolibrary.org/obo/PR_000031222,kelch domain-containing protein 10 +15.163089,PR:000031277,http://purl.obolibrary.org/obo/PR_000031277,transmembrane protein 109 +15.163089,PR:000031280,http://purl.obolibrary.org/obo/PR_000031280,aldehyde dehydrogenase family 16 member A1 +15.163089,PR:000031281,http://purl.obolibrary.org/obo/PR_000031281,transmembrane protein 51 +15.163089,PR:000031297,http://purl.obolibrary.org/obo/PR_000031297,transmembrane and coiled-coil domains protein 2 +15.163089,PR:000031344,http://purl.obolibrary.org/obo/PR_000031344,myelin-associated neurite-outgrowth inhibitor +15.163089,PR:000031354,http://purl.obolibrary.org/obo/PR_000031354,WW domain binding protein 1-like +15.163089,PR:000031381,http://purl.obolibrary.org/obo/PR_000031381,MORN repeat-containing protein 2 +15.163089,PR:000031405,http://purl.obolibrary.org/obo/PR_000031405,ATPase SWSAP1 +15.163089,PR:000031408,http://purl.obolibrary.org/obo/PR_000031408,transmembrane protein 192 +15.163089,PR:000031428,http://purl.obolibrary.org/obo/PR_000031428,protein FAM3D +15.163089,PR:000031446,http://purl.obolibrary.org/obo/PR_000031446,none +15.163089,PR:000031468,http://purl.obolibrary.org/obo/PR_000031468,probable cation-transporting ATPase 13A4 +15.163089,PR:000031486,http://purl.obolibrary.org/obo/PR_000031486,putative glycosyltransferase 6 domain-containing protein 1 +15.163089,PR:000031546,http://purl.obolibrary.org/obo/PR_000031546,DDB1- and CUL4-associated factor 12 +15.163089,PR:000031559,http://purl.obolibrary.org/obo/PR_000031559,cytosolic arginine sensor for mTORC1 subunit 2 +15.163089,PR:000031581,http://purl.obolibrary.org/obo/PR_000031581,coiled-coil domain-containing protein 102B +15.163089,PR:000031614,http://purl.obolibrary.org/obo/PR_000031614,methyltransferase BCDIN3D +15.163089,PR:000031650,http://purl.obolibrary.org/obo/PR_000031650,"rRNA methyltransferase 2, mitochondrial" +15.163089,PR:000031720,http://purl.obolibrary.org/obo/PR_000031720,probable RNA-binding protein 19 +15.163089,PR:000031761,http://purl.obolibrary.org/obo/PR_000031761,transmembrane emp24 domain-containing protein 9 +15.163089,PR:000031838,http://purl.obolibrary.org/obo/PR_000031838,calcium and integrin-binding family member 4 +15.163089,PR:000031887,http://purl.obolibrary.org/obo/PR_000031887,sushi domain-containing protein 4 +15.163089,PR:000031891,http://purl.obolibrary.org/obo/PR_000031891,ELMO domain-containing protein 3 +15.163089,PR:000031894,http://purl.obolibrary.org/obo/PR_000031894,SR-related and CTD-associated factor 8 +15.163089,PR:000032006,http://purl.obolibrary.org/obo/PR_000032006,general transcription factor II-I repeat domain-containing protein 2A +15.163089,PR:000032031,http://purl.obolibrary.org/obo/PR_000032031,major facilitator superfamily domain-containing protein 1 +15.163089,PR:000032063,http://purl.obolibrary.org/obo/PR_000032063,transmembrane and immunoglobulin domain-containing protein 1 +15.163089,PR:000032117,http://purl.obolibrary.org/obo/PR_000032117,immunoglobulin superfamily DCC subclass member 4 +15.163089,PR:000032158,http://purl.obolibrary.org/obo/PR_000032158,ankyrin repeat domain-containing protein 7 +15.163089,PR:000032171,http://purl.obolibrary.org/obo/PR_000032171,neuroblastoma breakpoint family member 12 +15.163089,PR:000032212,http://purl.obolibrary.org/obo/PR_000032212,immunoglobulin superfamily containing leucine-rich repeat protein +15.163089,PR:000032363,http://purl.obolibrary.org/obo/PR_000032363,coiled-coil domain-containing protein 39 +15.163089,PR:000032402,http://purl.obolibrary.org/obo/PR_000032402,vertnin +15.163089,PR:000032409,http://purl.obolibrary.org/obo/PR_000032409,TSC22 domain family protein 2 +15.163089,PR:000032471,http://purl.obolibrary.org/obo/PR_000032471,APC membrane recruitment protein 3 +15.163089,PR:000032482,http://purl.obolibrary.org/obo/PR_000032482,WD repeat-containing protein 19 +15.163089,PR:000032512,http://purl.obolibrary.org/obo/PR_000032512,probable ATP-dependent RNA helicase DHX40 +15.163089,PR:000032561,http://purl.obolibrary.org/obo/PR_000032561,CUE domain-containing protein 1 +15.163089,PR:000032572,http://purl.obolibrary.org/obo/PR_000032572,sesquipedalian-2 +15.163089,PR:000032636,http://purl.obolibrary.org/obo/PR_000032636,zona pellucida-like domain-containing protein 1 +15.163089,PR:000032680,http://purl.obolibrary.org/obo/PR_000032680,HIG1 domain family member 1B +15.163089,PR:000032682,http://purl.obolibrary.org/obo/PR_000032682,lysophospholipase D GDPD1 +15.163089,PR:000032684,http://purl.obolibrary.org/obo/PR_000032684,thrombospondin type-1 domain-containing protein 7B +15.163089,PR:000032693,http://purl.obolibrary.org/obo/PR_000032693,zinc finger SWIM domain-containing protein 6 +15.163089,PR:000032697,http://purl.obolibrary.org/obo/PR_000032697,sulfotransferase 1C3 +15.163089,PR:000032753,http://purl.obolibrary.org/obo/PR_000032753,ALK and LTK ligand 2 +15.163089,PR:000032771,http://purl.obolibrary.org/obo/PR_000032771,TM2 domain-containing protein 2 +15.163089,PR:000032774,http://purl.obolibrary.org/obo/PR_000032774,ER membrane protein complex subunit 2 +15.163089,PR:000033015,http://purl.obolibrary.org/obo/PR_000033015,none +15.163089,PR:000033049,http://purl.obolibrary.org/obo/PR_000033049,none +15.163089,PR:000033103,http://purl.obolibrary.org/obo/PR_000033103,none +15.163089,PR:000033275,http://purl.obolibrary.org/obo/PR_000033275,none +15.163089,PR:000033294,http://purl.obolibrary.org/obo/PR_000033294,none +15.163089,PR:000033332,http://purl.obolibrary.org/obo/PR_000033332,none +15.163089,PR:000033414,http://purl.obolibrary.org/obo/PR_000033414,none +15.163089,PR:000033424,http://purl.obolibrary.org/obo/PR_000033424,none +15.163089,PR:000033435,http://purl.obolibrary.org/obo/PR_000033435,none +15.163089,PR:000033637,http://purl.obolibrary.org/obo/PR_000033637,none +15.163089,PR:000033999,http://purl.obolibrary.org/obo/PR_000033999,none +15.163089,PR:000034107,http://purl.obolibrary.org/obo/PR_000034107,none +15.163089,PR:000034144,http://purl.obolibrary.org/obo/PR_000034144,none +15.163089,PR:000034288,http://purl.obolibrary.org/obo/PR_000034288,none +15.163089,PR:000034323,http://purl.obolibrary.org/obo/PR_000034323,none +15.163089,PR:000034345,http://purl.obolibrary.org/obo/PR_000034345,none +15.163089,PR:000034379,http://purl.obolibrary.org/obo/PR_000034379,none +15.163089,PR:000034382,http://purl.obolibrary.org/obo/PR_000034382,none +15.163089,PR:000034504,http://purl.obolibrary.org/obo/PR_000034504,none +15.163089,PR:000034566,http://purl.obolibrary.org/obo/PR_000034566,none +15.163089,PR:000034626,http://purl.obolibrary.org/obo/PR_000034626,none +15.163089,PR:000034731,http://purl.obolibrary.org/obo/PR_000034731,none +15.163089,PR:000034806,http://purl.obolibrary.org/obo/PR_000034806,none +15.163089,PR:000035347,http://purl.obolibrary.org/obo/PR_000035347,none +15.163089,PR:000037381,http://purl.obolibrary.org/obo/PR_000037381,none +15.163089,PR:000039601,http://purl.obolibrary.org/obo/PR_000039601,centrosomal protein of 162 kDa +15.163089,PR:000044415,http://purl.obolibrary.org/obo/PR_000044415,none +15.163089,PR:000044524,http://purl.obolibrary.org/obo/PR_000044524,interleukin-12 complex (human) +15.163089,PR:A2AHG0,http://purl.obolibrary.org/obo/PR_A2AHG0,none +15.163089,PR:B9DFX7,http://purl.obolibrary.org/obo/PR_B9DFX7,none +15.163089,PR:F4HWY6,http://purl.obolibrary.org/obo/PR_F4HWY6,none +15.163089,PR:F4I9R6,http://purl.obolibrary.org/obo/PR_F4I9R6,none +15.163089,PR:F4IED2,http://purl.obolibrary.org/obo/PR_F4IED2,none +15.163089,PR:F4IMQ0,http://purl.obolibrary.org/obo/PR_F4IMQ0,none +15.163089,PR:F4JU69,http://purl.obolibrary.org/obo/PR_F4JU69,none +15.163089,PR:O08545,http://purl.obolibrary.org/obo/PR_O08545,none +15.163089,PR:O14010,http://purl.obolibrary.org/obo/PR_O14010,none +15.163089,PR:O49597,http://purl.obolibrary.org/obo/PR_O49597,none +15.163089,PR:O60097,http://purl.obolibrary.org/obo/PR_O60097,none +15.163089,PR:O74306,http://purl.obolibrary.org/obo/PR_O74306,none +15.163089,PR:O82782,http://purl.obolibrary.org/obo/PR_O82782,none +15.163089,PR:P00924,http://purl.obolibrary.org/obo/PR_P00924,none +15.163089,PR:P01123,http://purl.obolibrary.org/obo/PR_P01123,none +15.163089,PR:P03878,http://purl.obolibrary.org/obo/PR_P03878,none +15.163089,PR:P04355,http://purl.obolibrary.org/obo/PR_P04355,none +15.163089,PR:P04972,http://purl.obolibrary.org/obo/PR_P04972,none +15.163089,PR:P05213,http://purl.obolibrary.org/obo/PR_P05213,none +15.163089,PR:P06581,http://purl.obolibrary.org/obo/PR_P06581,none +15.163089,PR:P07283,http://purl.obolibrary.org/obo/PR_P07283,none +15.163089,PR:P08541,http://purl.obolibrary.org/obo/PR_P08541,none +15.163089,PR:P0CF96,http://purl.obolibrary.org/obo/PR_P0CF96,none +15.163089,PR:P0DKR2,http://purl.obolibrary.org/obo/PR_P0DKR2,none +15.163089,PR:P10648,http://purl.obolibrary.org/obo/PR_P10648,none +15.163089,PR:P11433,http://purl.obolibrary.org/obo/PR_P11433,none +15.163089,PR:P11655,http://purl.obolibrary.org/obo/PR_P11655,none +15.163089,PR:P15976,http://purl.obolibrary.org/obo/PR_P15976,erythroid transcription factor (human) +15.163089,PR:P17094,http://purl.obolibrary.org/obo/PR_P17094,none +15.163089,PR:P17709,http://purl.obolibrary.org/obo/PR_P17709,none +15.163089,PR:P18461,http://purl.obolibrary.org/obo/PR_P18461,none +15.163089,PR:P18961,http://purl.obolibrary.org/obo/PR_P18961,none +15.163089,PR:P21524,http://purl.obolibrary.org/obo/PR_P21524,none +15.163089,PR:P22698,http://purl.obolibrary.org/obo/PR_P22698,none +15.163089,PR:P24720,http://purl.obolibrary.org/obo/PR_P24720,none +15.163089,PR:P25295,http://purl.obolibrary.org/obo/PR_P25295,none +15.163089,PR:P25635,http://purl.obolibrary.org/obo/PR_P25635,none +15.163089,PR:P28829,http://purl.obolibrary.org/obo/PR_P28829,none +15.163089,PR:P32435,http://purl.obolibrary.org/obo/PR_P32435,none +15.163089,PR:P32524,http://purl.obolibrary.org/obo/PR_P32524,none +15.163089,PR:P32767,http://purl.obolibrary.org/obo/PR_P32767,none +15.163089,PR:P32802,http://purl.obolibrary.org/obo/PR_P32802,none +15.163089,PR:P32854,http://purl.obolibrary.org/obo/PR_P32854,none +15.163089,PR:P32945,http://purl.obolibrary.org/obo/PR_P32945,none +15.163089,PR:P36117,http://purl.obolibrary.org/obo/PR_P36117,none +15.163089,PR:P39001,http://purl.obolibrary.org/obo/PR_P39001,none +15.163089,PR:P39717,http://purl.obolibrary.org/obo/PR_P39717,none +15.163089,PR:P39731,http://purl.obolibrary.org/obo/PR_P39731,none +15.163089,PR:P39924,http://purl.obolibrary.org/obo/PR_P39924,none +15.163089,PR:P40059,http://purl.obolibrary.org/obo/PR_P40059,none +15.163089,PR:P40310,http://purl.obolibrary.org/obo/PR_P40310,none +15.163089,PR:P40372,http://purl.obolibrary.org/obo/PR_P40372,none +15.163089,PR:P41044,http://purl.obolibrary.org/obo/PR_P41044,none +15.163089,PR:P41832,http://purl.obolibrary.org/obo/PR_P41832,none +15.163089,PR:P42758,http://purl.obolibrary.org/obo/PR_P42758,none +15.163089,PR:P42759,http://purl.obolibrary.org/obo/PR_P42759,none +15.163089,PR:P46672,http://purl.obolibrary.org/obo/PR_P46672,none +15.163089,PR:P46864,http://purl.obolibrary.org/obo/PR_P46864,none +15.163089,PR:P50108,http://purl.obolibrary.org/obo/PR_P50108,none +15.163089,PR:P52804,http://purl.obolibrary.org/obo/PR_P52804,none +15.163089,PR:P53271,http://purl.obolibrary.org/obo/PR_P53271,none +15.163089,PR:P54192,http://purl.obolibrary.org/obo/PR_P54192,none +15.163089,PR:P54780,http://purl.obolibrary.org/obo/PR_P54780,none +15.163089,PR:P62846,http://purl.obolibrary.org/obo/PR_P62846,none +15.163089,PR:P81923,http://purl.obolibrary.org/obo/PR_P81923,none +15.163089,PR:P98205,http://purl.obolibrary.org/obo/PR_P98205,none +15.163089,PR:Q02794,http://purl.obolibrary.org/obo/PR_Q02794,none +15.163089,PR:Q03435,http://purl.obolibrary.org/obo/PR_Q03435,none +15.163089,PR:Q04902,http://purl.obolibrary.org/obo/PR_Q04902,none +15.163089,PR:Q05080,http://purl.obolibrary.org/obo/PR_Q05080,none +15.163089,PR:Q06449,http://purl.obolibrary.org/obo/PR_Q06449,none +15.163089,PR:Q06611,http://purl.obolibrary.org/obo/PR_Q06611,none +15.163089,PR:Q06628,http://purl.obolibrary.org/obo/PR_Q06628,none +15.163089,PR:Q07528,http://purl.obolibrary.org/obo/PR_Q07528,none +15.163089,PR:Q07879,http://purl.obolibrary.org/obo/PR_Q07879,none +15.163089,PR:Q07987,http://purl.obolibrary.org/obo/PR_Q07987,none +15.163089,PR:Q08215,http://purl.obolibrary.org/obo/PR_Q08215,none +15.163089,PR:Q08281,http://purl.obolibrary.org/obo/PR_Q08281,none +15.163089,PR:Q08886,http://purl.obolibrary.org/obo/PR_Q08886,none +15.163089,PR:Q09685,http://purl.obolibrary.org/obo/PR_Q09685,none +15.163089,PR:Q0H8D7,http://purl.obolibrary.org/obo/PR_Q0H8D7,none +15.163089,PR:Q0WQ41,http://purl.obolibrary.org/obo/PR_Q0WQ41,none +15.163089,PR:Q0WV25,http://purl.obolibrary.org/obo/PR_Q0WV25,none +15.163089,PR:Q10063,http://purl.obolibrary.org/obo/PR_Q10063,none +15.163089,PR:Q10134,http://purl.obolibrary.org/obo/PR_Q10134,none +15.163089,PR:Q10135,http://purl.obolibrary.org/obo/PR_Q10135,none +15.163089,PR:Q1G3L1,http://purl.obolibrary.org/obo/PR_Q1G3L1,none +15.163089,PR:Q1PEH6,http://purl.obolibrary.org/obo/PR_Q1PEH6,none +15.163089,PR:Q21067,http://purl.obolibrary.org/obo/PR_Q21067,none +15.163089,PR:Q24573,http://purl.obolibrary.org/obo/PR_Q24573,none +15.163089,PR:Q2FWC7,http://purl.obolibrary.org/obo/PR_Q2FWC7,none +15.163089,PR:Q2KJ10,http://purl.obolibrary.org/obo/PR_Q2KJ10,none +15.163089,PR:Q39012,http://purl.obolibrary.org/obo/PR_Q39012,none +15.163089,PR:Q4V8U5,http://purl.obolibrary.org/obo/PR_Q4V8U5,none +15.163089,PR:Q54PE0,http://purl.obolibrary.org/obo/PR_Q54PE0,none +15.163089,PR:Q55CJ3,http://purl.obolibrary.org/obo/PR_Q55CJ3,none +15.163089,PR:Q55EL2,http://purl.obolibrary.org/obo/PR_Q55EL2,none +15.163089,PR:Q56WH1,http://purl.obolibrary.org/obo/PR_Q56WH1,none +15.163089,PR:Q59RW5,http://purl.obolibrary.org/obo/PR_Q59RW5,none +15.163089,PR:Q5A1Z5,http://purl.obolibrary.org/obo/PR_Q5A1Z5,none +15.163089,PR:Q5ALY0,http://purl.obolibrary.org/obo/PR_Q5ALY0,none +15.163089,PR:Q5AQ47,http://purl.obolibrary.org/obo/PR_Q5AQ47,none +15.163089,PR:Q5BPT4,http://purl.obolibrary.org/obo/PR_Q5BPT4,none +15.163089,PR:Q5QE79,http://purl.obolibrary.org/obo/PR_Q5QE79,none +15.163089,PR:Q62187,http://purl.obolibrary.org/obo/PR_Q62187,none +15.163089,PR:Q66JZ4,http://purl.obolibrary.org/obo/PR_Q66JZ4,none +15.163089,PR:Q6A4L0,http://purl.obolibrary.org/obo/PR_Q6A4L0,none +15.163089,PR:Q6NPM8,http://purl.obolibrary.org/obo/PR_Q6NPM8,none +15.163089,PR:Q6P9V9,http://purl.obolibrary.org/obo/PR_Q6P9V9,none +15.163089,PR:Q6UK63,http://purl.obolibrary.org/obo/PR_Q6UK63,none +15.163089,PR:Q75JK0,http://purl.obolibrary.org/obo/PR_Q75JK0,none +15.163089,PR:Q793I8,http://purl.obolibrary.org/obo/PR_Q793I8,none +15.163089,PR:Q7PC87,http://purl.obolibrary.org/obo/PR_Q7PC87,none +15.163089,PR:Q84N64,http://purl.obolibrary.org/obo/PR_Q84N64,none +15.163089,PR:Q84P21,http://purl.obolibrary.org/obo/PR_Q84P21,none +15.163089,PR:Q84W92,http://purl.obolibrary.org/obo/PR_Q84W92,none +15.163089,PR:Q8AW35,http://purl.obolibrary.org/obo/PR_Q8AW35,none +15.163089,PR:Q8GXN2,http://purl.obolibrary.org/obo/PR_Q8GXN2,none +15.163089,PR:Q8GYF4,http://purl.obolibrary.org/obo/PR_Q8GYF4,none +15.163089,PR:Q8H960,http://purl.obolibrary.org/obo/PR_Q8H960,none +15.163089,PR:Q8K1Q4,http://purl.obolibrary.org/obo/PR_Q8K1Q4,none +15.163089,PR:Q8L8Q3,http://purl.obolibrary.org/obo/PR_Q8L8Q3,none +15.163089,PR:Q8LAU9,http://purl.obolibrary.org/obo/PR_Q8LAU9,none +15.163089,PR:Q8LF89,http://purl.obolibrary.org/obo/PR_Q8LF89,none +15.163089,PR:Q8MN58,http://purl.obolibrary.org/obo/PR_Q8MN58,none +15.163089,PR:Q8N3R3,http://purl.obolibrary.org/obo/PR_Q8N3R3,"T-cell activation inhibitor, mitochondrial (human)" +15.163089,PR:Q8N6N3,http://purl.obolibrary.org/obo/PR_Q8N6N3,UPF0690 protein C1orf52 (human) +15.163089,PR:Q8RWH9,http://purl.obolibrary.org/obo/PR_Q8RWH9,none +15.163089,PR:Q8RXD6,http://purl.obolibrary.org/obo/PR_Q8RXD6,none +15.163089,PR:Q8S340,http://purl.obolibrary.org/obo/PR_Q8S340,none +15.163089,PR:Q8S3C9,http://purl.obolibrary.org/obo/PR_Q8S3C9,none +15.163089,PR:Q8S895,http://purl.obolibrary.org/obo/PR_Q8S895,none +15.163089,PR:Q8S8N3,http://purl.obolibrary.org/obo/PR_Q8S8N3,none +15.163089,PR:Q8VY05,http://purl.obolibrary.org/obo/PR_Q8VY05,none +15.163089,PR:Q8VZ22,http://purl.obolibrary.org/obo/PR_Q8VZ22,none +15.163089,PR:Q8VZC3,http://purl.obolibrary.org/obo/PR_Q8VZC3,none +15.163089,PR:Q8VZS9,http://purl.obolibrary.org/obo/PR_Q8VZS9,none +15.163089,PR:Q8W4J8,http://purl.obolibrary.org/obo/PR_Q8W4J8,none +15.163089,PR:Q90419,http://purl.obolibrary.org/obo/PR_Q90419,none +15.163089,PR:Q940A7,http://purl.obolibrary.org/obo/PR_Q940A7,none +15.163089,PR:Q94AS9,http://purl.obolibrary.org/obo/PR_Q94AS9,none +15.163089,PR:Q96262,http://purl.obolibrary.org/obo/PR_Q96262,none +15.163089,PR:Q96K30,http://purl.obolibrary.org/obo/PR_Q96K30,RBPJ-interacting and tubulin-associated protein 1 (human) +15.163089,PR:Q99PT3,http://purl.obolibrary.org/obo/PR_Q99PT3,none +15.163089,PR:Q9C8J4,http://purl.obolibrary.org/obo/PR_Q9C8J4,none +15.163089,PR:Q9CQD6,http://purl.obolibrary.org/obo/PR_Q9CQD6,none +15.163089,PR:Q9D1H0,http://purl.obolibrary.org/obo/PR_Q9D1H0,none +15.163089,PR:Q9FIR9,http://purl.obolibrary.org/obo/PR_Q9FIR9,none +15.163089,PR:Q9FKP4,http://purl.obolibrary.org/obo/PR_Q9FKP4,none +15.163089,PR:Q9FLP6,http://purl.obolibrary.org/obo/PR_Q9FLP6,none +15.163089,PR:Q9FM10,http://purl.obolibrary.org/obo/PR_Q9FM10,none +15.163089,PR:Q9FM99,http://purl.obolibrary.org/obo/PR_Q9FM99,none +15.163089,PR:Q9FUJ1,http://purl.obolibrary.org/obo/PR_Q9FUJ1,none +15.163089,PR:Q9FVE6,http://purl.obolibrary.org/obo/PR_Q9FVE6,none +15.163089,PR:Q9FVI6,http://purl.obolibrary.org/obo/PR_Q9FVI6,none +15.163089,PR:Q9FZ35,http://purl.obolibrary.org/obo/PR_Q9FZ35,none +15.163089,PR:Q9FZP6,http://purl.obolibrary.org/obo/PR_Q9FZP6,none +15.163089,PR:Q9I969,http://purl.obolibrary.org/obo/PR_Q9I969,none +15.163089,PR:Q9JHH5,http://purl.obolibrary.org/obo/PR_Q9JHH5,none +15.163089,PR:Q9LDY8,http://purl.obolibrary.org/obo/PR_Q9LDY8,none +15.163089,PR:Q9LES3,http://purl.obolibrary.org/obo/PR_Q9LES3,none +15.163089,PR:Q9LF79,http://purl.obolibrary.org/obo/PR_Q9LF79,none +15.163089,PR:Q9LFR0,http://purl.obolibrary.org/obo/PR_Q9LFR0,none +15.163089,PR:Q9LIA8,http://purl.obolibrary.org/obo/PR_Q9LIA8,none +15.163089,PR:Q9LJW3,http://purl.obolibrary.org/obo/PR_Q9LJW3,none +15.163089,PR:Q9LK43,http://purl.obolibrary.org/obo/PR_Q9LK43,none +15.163089,PR:Q9LPV4,http://purl.obolibrary.org/obo/PR_Q9LPV4,none +15.163089,PR:Q9LSQ4,http://purl.obolibrary.org/obo/PR_Q9LSQ4,none +15.163089,PR:Q9LTG0,http://purl.obolibrary.org/obo/PR_Q9LTG0,none +15.163089,PR:Q9LUH2,http://purl.obolibrary.org/obo/PR_Q9LUH2,none +15.163089,PR:Q9LYQ4,http://purl.obolibrary.org/obo/PR_Q9LYQ4,none +15.163089,PR:Q9LZR3,http://purl.obolibrary.org/obo/PR_Q9LZR3,none +15.163089,PR:Q9M0C2,http://purl.obolibrary.org/obo/PR_Q9M0C2,none +15.163089,PR:Q9M0G0,http://purl.obolibrary.org/obo/PR_Q9M0G0,none +15.163089,PR:Q9M879,http://purl.obolibrary.org/obo/PR_Q9M879,none +15.163089,PR:Q9R261,http://purl.obolibrary.org/obo/PR_Q9R261,none +15.163089,PR:Q9S764,http://purl.obolibrary.org/obo/PR_Q9S764,none +15.163089,PR:Q9S7Q7,http://purl.obolibrary.org/obo/PR_Q9S7Q7,none +15.163089,PR:Q9SJM0,http://purl.obolibrary.org/obo/PR_Q9SJM0,none +15.163089,PR:Q9SLA2,http://purl.obolibrary.org/obo/PR_Q9SLA2,none +15.163089,PR:Q9SLB7,http://purl.obolibrary.org/obo/PR_Q9SLB7,none +15.163089,PR:Q9SN38,http://purl.obolibrary.org/obo/PR_Q9SN38,none +15.163089,PR:Q9SQR3,http://purl.obolibrary.org/obo/PR_Q9SQR3,none +15.163089,PR:Q9SSE7,http://purl.obolibrary.org/obo/PR_Q9SSE7,none +15.163089,PR:Q9STV4,http://purl.obolibrary.org/obo/PR_Q9STV4,none +15.163089,PR:Q9SV72,http://purl.obolibrary.org/obo/PR_Q9SV72,none +15.163089,PR:Q9SY91,http://purl.obolibrary.org/obo/PR_Q9SY91,none +15.163089,PR:Q9SYM5,http://purl.obolibrary.org/obo/PR_Q9SYM5,none +15.163089,PR:Q9SZY7,http://purl.obolibrary.org/obo/PR_Q9SZY7,none +15.163089,PR:Q9TXQ1,http://purl.obolibrary.org/obo/PR_Q9TXQ1,none +15.163089,PR:Q9UUB5,http://purl.obolibrary.org/obo/PR_Q9UUB5,none +15.163089,PR:Q9V895,http://purl.obolibrary.org/obo/PR_Q9V895,none +15.163089,PR:Q9VBW3,http://purl.obolibrary.org/obo/PR_Q9VBW3,none +15.163089,PR:Q9XI01,http://purl.obolibrary.org/obo/PR_Q9XI01,none +15.163089,PR:Q9XVS3,http://purl.obolibrary.org/obo/PR_Q9XVS3,none +15.163089,PR:Q9ZU93,http://purl.obolibrary.org/obo/PR_Q9ZU93,none +15.163089,PR:Q9ZUT0,http://purl.obolibrary.org/obo/PR_Q9ZUT0,none +15.163089,PR:Q9ZV56,http://purl.obolibrary.org/obo/PR_Q9ZV56,none +15.163089,PR:Q9ZV65,http://purl.obolibrary.org/obo/PR_Q9ZV65,none +15.163089,PR:Q9ZW24,http://purl.obolibrary.org/obo/PR_Q9ZW24,none +15.163089,SO:0000511,http://purl.obolibrary.org/obo/SO_0000511,J_C_cluster +15.163089,SO:0000616,http://purl.obolibrary.org/obo/SO_0000616,transcription_end_site +15.163089,SO:0000677,http://purl.obolibrary.org/obo/SO_0000677,canonical_five_prime_splice_site +15.163089,SO:0001128,http://purl.obolibrary.org/obo/SO_0001128,polypeptide_turn_motif +15.163089,SO:0001133,http://purl.obolibrary.org/obo/SO_0001133,beta_turn +15.163089,SO:0001251,http://purl.obolibrary.org/obo/SO_0001251,STS_map +15.163089,SO:0001274,http://purl.obolibrary.org/obo/SO_0001274,modified_inosine +15.163089,SO:0001323,http://purl.obolibrary.org/obo/SO_0001323,archaeosine +15.163089,SO:0001414,http://purl.obolibrary.org/obo/SO_0001414,insertion_breakpoint +15.163089,SO:0001494,http://purl.obolibrary.org/obo/SO_0001494,centromere_DNA_Element_II +15.163089,SO:0001524,http://purl.obolibrary.org/obo/SO_0001524,chromosomally_aberrant_genome +15.163089,SO:0001661,http://purl.obolibrary.org/obo/SO_0001661,RNA_polymerase_II_TATA_box +15.163089,SO:0001899,http://purl.obolibrary.org/obo/SO_0001899,dh_repeat +15.163089,SO:1000015,http://purl.obolibrary.org/obo/SO_1000015,A_to_G_transition +15.163089,UBERON:0000048,http://purl.obolibrary.org/obo/UBERON_0000048,pinhole eye +15.163089,UBERON:0000388,http://purl.obolibrary.org/obo/UBERON_0000388,epiglottis +15.163089,UBERON:0000642,http://purl.obolibrary.org/obo/UBERON_0000642,suspensory ligament of duodenum +15.163089,UBERON:0001126,http://purl.obolibrary.org/obo/UBERON_0001126,serratus dorsalis superior muscle +15.163089,UBERON:0001203,http://purl.obolibrary.org/obo/UBERON_0001203,muscularis mucosae of stomach +15.163089,UBERON:0001240,http://purl.obolibrary.org/obo/UBERON_0001240,muscularis mucosae of intestine +15.163089,UBERON:0001320,http://purl.obolibrary.org/obo/UBERON_0001320,iliolumbar vein +15.163089,UBERON:0001866,http://purl.obolibrary.org/obo/UBERON_0001866,sebum +15.163089,UBERON:0001906,http://purl.obolibrary.org/obo/UBERON_0001906,subthalamic nucleus +15.163089,UBERON:0001929,http://purl.obolibrary.org/obo/UBERON_0001929,supraoptic nucleus +15.163089,UBERON:0001934,http://purl.obolibrary.org/obo/UBERON_0001934,dorsomedial nucleus of hypothalamus +15.163089,UBERON:0001955,http://purl.obolibrary.org/obo/UBERON_0001955,epithelium of respiratory bronchiole +15.163089,UBERON:0002032,http://purl.obolibrary.org/obo/UBERON_0002032,areola +15.163089,UBERON:0002034,http://purl.obolibrary.org/obo/UBERON_0002034,suprachiasmatic nucleus +15.163089,UBERON:0002052,http://purl.obolibrary.org/obo/UBERON_0002052,adrenal gland capsule +15.163089,UBERON:0002164,http://purl.obolibrary.org/obo/UBERON_0002164,tectobulbar tract +15.163089,UBERON:0002566,http://purl.obolibrary.org/obo/UBERON_0002566,superior precentral sulcus +15.163089,UBERON:0002573,http://purl.obolibrary.org/obo/UBERON_0002573,pontine reticular formation +15.163089,UBERON:0002618,http://purl.obolibrary.org/obo/UBERON_0002618,root of trochlear nerve +15.163089,UBERON:0002629,http://purl.obolibrary.org/obo/UBERON_0002629,triangular part of inferior frontal gyrus +15.163089,UBERON:0002630,http://purl.obolibrary.org/obo/UBERON_0002630,body of caudate nucleus +15.163089,UBERON:0002653,http://purl.obolibrary.org/obo/UBERON_0002653,gracile fasciculus of medulla +15.163089,UBERON:0002681,http://purl.obolibrary.org/obo/UBERON_0002681,anteromedial nucleus of thalamus +15.163089,UBERON:0002731,http://purl.obolibrary.org/obo/UBERON_0002731,vestibulocochlear nerve root +15.163089,UBERON:0002819,http://purl.obolibrary.org/obo/UBERON_0002819,apex of cochlea +15.163089,UBERON:0002866,http://purl.obolibrary.org/obo/UBERON_0002866,caudal part of spinal trigeminal nucleus +15.163089,UBERON:0002880,http://purl.obolibrary.org/obo/UBERON_0002880,pontobulbar nucleus +15.163089,UBERON:0002947,http://purl.obolibrary.org/obo/UBERON_0002947,frontal operculum +15.163089,UBERON:0003036,http://purl.obolibrary.org/obo/UBERON_0003036,central lateral nucleus +15.163089,UBERON:0003282,http://purl.obolibrary.org/obo/UBERON_0003282,mesentery of heart +15.163089,UBERON:0003379,http://purl.obolibrary.org/obo/UBERON_0003379,cardiac muscle of right atrium +15.163089,UBERON:0003446,http://purl.obolibrary.org/obo/UBERON_0003446,ankle nerve +15.163089,UBERON:0003555,http://purl.obolibrary.org/obo/UBERON_0003555,spinal cord pia mater +15.163089,UBERON:0004030,http://purl.obolibrary.org/obo/UBERON_0004030,aqueous vein +15.163089,UBERON:0004127,http://purl.obolibrary.org/obo/UBERON_0004127,compact layer of ventricle +15.163089,UBERON:0004220,http://purl.obolibrary.org/obo/UBERON_0004220,large intestine smooth muscle +15.163089,UBERON:0004266,http://purl.obolibrary.org/obo/UBERON_0004266,upper leg connective tissue +15.163089,UBERON:0004301,http://purl.obolibrary.org/obo/UBERON_0004301,middle phalanx +15.163089,UBERON:0004385,http://purl.obolibrary.org/obo/UBERON_0004385,epiphysis of radius +15.163089,UBERON:0004415,http://purl.obolibrary.org/obo/UBERON_0004415,proximal epiphysis of metatarsal bone +15.163089,UBERON:0004416,http://purl.obolibrary.org/obo/UBERON_0004416,proximal epiphysis of metacarpal bone +15.163089,UBERON:0004604,http://purl.obolibrary.org/obo/UBERON_0004604,rib 4 +15.163089,UBERON:0004737,http://purl.obolibrary.org/obo/UBERON_0004737,metanephric collecting duct +15.163089,UBERON:0004752,http://purl.obolibrary.org/obo/UBERON_0004752,palatoquadrate cartilage +15.163089,UBERON:0004764,http://purl.obolibrary.org/obo/UBERON_0004764,intramembranous bone tissue +15.163089,UBERON:0004906,http://purl.obolibrary.org/obo/UBERON_0004906,ectodermal part of digestive tract +15.163089,UBERON:0004915,http://purl.obolibrary.org/obo/UBERON_0004915,sphincter of hepatopancreatic ampulla +15.163089,UBERON:0004988,http://purl.obolibrary.org/obo/UBERON_0004988,mucosa of cystic duct +15.163089,UBERON:0005000,http://purl.obolibrary.org/obo/UBERON_0005000,mucosa of common bile duct +15.163089,UBERON:0005207,http://purl.obolibrary.org/obo/UBERON_0005207,tonsil capsule +15.163089,UBERON:0005270,http://purl.obolibrary.org/obo/UBERON_0005270,renal cortex interstitium +15.163089,UBERON:0005335,http://purl.obolibrary.org/obo/UBERON_0005335,chorioallantoic membrane +15.163089,UBERON:0005611,http://purl.obolibrary.org/obo/UBERON_0005611,inner canthus +15.163089,UBERON:0005614,http://purl.obolibrary.org/obo/UBERON_0005614,lens anterior epithelium +15.163089,UBERON:0005821,http://purl.obolibrary.org/obo/UBERON_0005821,gracile fasciculus +15.163089,UBERON:0006005,http://purl.obolibrary.org/obo/UBERON_0006005,hair follicle isthmus +15.163089,UBERON:0006192,http://purl.obolibrary.org/obo/UBERON_0006192,mesonephric proximal tubule +15.163089,UBERON:0006284,http://purl.obolibrary.org/obo/UBERON_0006284,early prosencephalic vesicle +15.163089,UBERON:0006300,http://purl.obolibrary.org/obo/UBERON_0006300,supracardinal vein +15.163089,UBERON:0006459,http://purl.obolibrary.org/obo/UBERON_0006459,third thoracic spinal cord segment +15.163089,UBERON:0006466,http://purl.obolibrary.org/obo/UBERON_0006466,tenth thoracic spinal cord segment +15.163089,UBERON:0006491,http://purl.obolibrary.org/obo/UBERON_0006491,C5 segment of cervical spinal cord +15.163089,UBERON:0006768,http://purl.obolibrary.org/obo/UBERON_0006768,epiphyseal line +15.163089,UBERON:0007243,http://purl.obolibrary.org/obo/UBERON_0007243,tunica media of vein +15.163089,UBERON:0007251,http://purl.obolibrary.org/obo/UBERON_0007251,preoptic nucleus +15.163089,UBERON:0007366,http://purl.obolibrary.org/obo/UBERON_0007366,ruminant stomach +15.163089,UBERON:0007689,http://purl.obolibrary.org/obo/UBERON_0007689,thyroid diverticulum +15.163089,UBERON:0007958,http://purl.obolibrary.org/obo/UBERON_0007958,central carpal bone +15.163089,UBERON:0008594,http://purl.obolibrary.org/obo/UBERON_0008594,zygomaticus minor muscle +15.163089,UBERON:0008618,http://purl.obolibrary.org/obo/UBERON_0008618,subcostal muscle +15.163089,UBERON:0008815,http://purl.obolibrary.org/obo/UBERON_0008815,pharyngeal slit +15.163089,UBERON:0008819,http://purl.obolibrary.org/obo/UBERON_0008819,inferior mediastinum +15.163089,UBERON:0009124,http://purl.obolibrary.org/obo/UBERON_0009124,geniculate placode +15.163089,UBERON:0009195,http://purl.obolibrary.org/obo/UBERON_0009195,anal membrane +15.163089,UBERON:0009716,http://purl.obolibrary.org/obo/UBERON_0009716,cupular organ +15.163089,UBERON:0009720,http://purl.obolibrary.org/obo/UBERON_0009720,oral siphon +15.163089,UBERON:0009752,http://purl.obolibrary.org/obo/UBERON_0009752,pancreas mesenchyme +15.163089,UBERON:0009990,http://purl.obolibrary.org/obo/UBERON_0009990,medial condyle of tibia +15.163089,UBERON:0009992,http://purl.obolibrary.org/obo/UBERON_0009992,cranial sensory ganglion +15.163089,UBERON:0010183,http://purl.obolibrary.org/obo/UBERON_0010183,liver trabecula +15.163089,UBERON:0010198,http://purl.obolibrary.org/obo/UBERON_0010198,carotid duct +15.163089,UBERON:0010286,http://purl.obolibrary.org/obo/UBERON_0010286,midbrain neural tube +15.163089,UBERON:0010299,http://purl.obolibrary.org/obo/UBERON_0010299,scleral mesenchyme +15.163089,UBERON:0010361,http://purl.obolibrary.org/obo/UBERON_0010361,synostosis +15.163089,UBERON:0010511,http://purl.obolibrary.org/obo/UBERON_0010511,strand of awl hair +15.163089,UBERON:0010750,http://purl.obolibrary.org/obo/UBERON_0010750,prefrontal bone +15.163089,UBERON:0010921,http://purl.obolibrary.org/obo/UBERON_0010921,thyrohyoid ligament +15.163089,UBERON:0011157,http://purl.obolibrary.org/obo/UBERON_0011157,cuneiform cartilage +15.163089,UBERON:0011194,http://purl.obolibrary.org/obo/UBERON_0011194,ophthalmic plexus +15.163089,UBERON:0011576,http://purl.obolibrary.org/obo/UBERON_0011576,supraorbital ridge +15.163089,UBERON:0011577,http://purl.obolibrary.org/obo/UBERON_0011577,flexural organ +15.163089,UBERON:0011608,http://purl.obolibrary.org/obo/UBERON_0011608,hyomandibular element +15.163089,UBERON:0011624,http://purl.obolibrary.org/obo/UBERON_0011624,superior horn of thyroid cartilage +15.163089,UBERON:0011772,http://purl.obolibrary.org/obo/UBERON_0011772,lower jaw opening +15.163089,UBERON:0011871,http://purl.obolibrary.org/obo/UBERON_0011871,nasomaxillary suture +15.163089,UBERON:0011985,http://purl.obolibrary.org/obo/UBERON_0011985,infraorbital sinus +15.163089,UBERON:0012283,http://purl.obolibrary.org/obo/UBERON_0012283,femoral fat pad +15.163089,UBERON:0013171,http://purl.obolibrary.org/obo/UBERON_0013171,cricothyroid ligament +15.163089,UBERON:0013647,http://purl.obolibrary.org/obo/UBERON_0013647,lateral pterygoid nerve +15.163089,UBERON:0013774,http://purl.obolibrary.org/obo/UBERON_0013774,diaphysis of metatarsal bone +15.163089,UBERON:0014560,http://purl.obolibrary.org/obo/UBERON_0014560,CA3 stratum lucidum +15.163089,UBERON:0014615,http://purl.obolibrary.org/obo/UBERON_0014615,accessory nerve root +15.163089,UBERON:0014686,http://purl.obolibrary.org/obo/UBERON_0014686,angular vein +15.163089,UBERON:0014689,http://purl.obolibrary.org/obo/UBERON_0014689,middle temporal sulcus +15.163089,UBERON:0014701,http://purl.obolibrary.org/obo/UBERON_0014701,extraembryonic vascular system +15.163089,UBERON:0014729,http://purl.obolibrary.org/obo/UBERON_0014729,striated duct of salivary gland +15.163089,UBERON:0015221,http://purl.obolibrary.org/obo/UBERON_0015221,common nasal meatus +15.163089,UBERON:0018388,http://purl.obolibrary.org/obo/UBERON_0018388,cercaria +15.163089,UBERON:0018411,http://purl.obolibrary.org/obo/UBERON_0018411,ligament of hip joint +15.163089,UBERON:0019196,http://purl.obolibrary.org/obo/UBERON_0019196,iliac artery endothelium +15.163089,UBERON:0019198,http://purl.obolibrary.org/obo/UBERON_0019198,dorsal nerve of clitoris +15.163089,UBERON:0019246,http://purl.obolibrary.org/obo/UBERON_0019246,palmar skin crease +15.163089,UBERON:0019254,http://purl.obolibrary.org/obo/UBERON_0019254,upper eyelash +15.163089,UBERON:0022430,http://purl.obolibrary.org/obo/UBERON_0022430,hippocampus cortex cingulum +15.163089,UBERON:0023255,http://purl.obolibrary.org/obo/UBERON_0023255,sub-lobar region +15.163089,UBERON:0034678,http://purl.obolibrary.org/obo/UBERON_0034678,forceps minor of corpus callosum +15.163089,UBERON:0035073,http://purl.obolibrary.org/obo/UBERON_0035073,duct of eccrine sweat gland +15.163089,UBERON:0035091,http://purl.obolibrary.org/obo/UBERON_0035091,extrinsic post-anal tail muscle +15.163089,UBERON:0035650,http://purl.obolibrary.org/obo/UBERON_0035650,nerve of clitoris +15.163089,UBERON:2000517,http://purl.obolibrary.org/obo/UBERON_2000517,glossopharyngeal lobe +15.163089,UBERON:2000673,http://purl.obolibrary.org/obo/UBERON_2000673,hypobranchial artery +15.163089,UBERON:2001053,http://purl.obolibrary.org/obo/UBERON_2001053,future internal carotid artery +15.163089,UBERON:2001069,http://purl.obolibrary.org/obo/UBERON_2001069,ventral fin fold +15.163089,UBERON:2001172,http://purl.obolibrary.org/obo/UBERON_2001172,roofing cartilage +15.163089,UBERON:2001314,http://purl.obolibrary.org/obo/UBERON_2001314,posterior lateral line ganglion +15.163089,UBERON:2001617,http://purl.obolibrary.org/obo/UBERON_2001617,trunk sensory canal +15.163089,UBERON:2001808,http://purl.obolibrary.org/obo/UBERON_2001808,facial foramen +15.163089,UBERON:2001892,http://purl.obolibrary.org/obo/UBERON_2001892,interhyal element +15.163089,UBERON:2001922,http://purl.obolibrary.org/obo/UBERON_2001922,inter-frontal joint +15.163089,UBERON:2001938,http://purl.obolibrary.org/obo/UBERON_2001938,maxillary barbel +15.163089,UBERON:2001990,http://purl.obolibrary.org/obo/UBERON_2001990,epibranchial arborescent organ +15.163089,UBERON:2002079,http://purl.obolibrary.org/obo/UBERON_2002079,leptocephalous larva +15.163089,UBERON:2002092,http://purl.obolibrary.org/obo/UBERON_2002092,rostral cartilage +15.163089,UBERON:2005019,http://purl.obolibrary.org/obo/UBERON_2005019,efferent lamellar arteriole +15.163089,UBERON:2005276,http://purl.obolibrary.org/obo/UBERON_2005276,inclinator muscle +15.163089,UBERON:2007059,http://purl.obolibrary.org/obo/UBERON_2007059,neurogenic field +15.163089,UBERON:3000006,http://purl.obolibrary.org/obo/UBERON_3000006,alveolar foramen +15.163089,UBERON:3000652,http://purl.obolibrary.org/obo/UBERON_3000652,fossa maxillaris +15.163089,UBERON:3010172,http://purl.obolibrary.org/obo/UBERON_3010172,subarticular tubercles +15.163089,UBERON:3010182,http://purl.obolibrary.org/obo/UBERON_3010182,tibial glands +15.163089,UBERON:3010184,http://purl.obolibrary.org/obo/UBERON_3010184,inner metatarsal tubercle +15.163089,UBERON:4000134,http://purl.obolibrary.org/obo/UBERON_4000134,ossified tendon +15.163089,UBERON:4000159,http://purl.obolibrary.org/obo/UBERON_4000159,ossified ligament +15.3454106,CHEBI:133972,http://purl.obolibrary.org/obo/CHEBI_133972,primary nitroalkane +15.3454106,CHEBI:140326,http://purl.obolibrary.org/obo/CHEBI_140326,tertiary carboxamide +15.3454106,CHEBI:140331,http://purl.obolibrary.org/obo/CHEBI_140331,4'-hydroxyflavanones +15.3454106,CHEBI:15541,http://purl.obolibrary.org/obo/CHEBI_15541,stearoyl-CoA +15.3454106,CHEBI:15727,http://purl.obolibrary.org/obo/CHEBI_15727,carnosine +15.3454106,CHEBI:15741,http://purl.obolibrary.org/obo/CHEBI_15741,succinic acid +15.3454106,CHEBI:16072,http://purl.obolibrary.org/obo/CHEBI_16072,maleimide +15.3454106,CHEBI:16134,http://purl.obolibrary.org/obo/CHEBI_16134,ammonia +15.3454106,CHEBI:16704,http://purl.obolibrary.org/obo/CHEBI_16704,uridine +15.3454106,CHEBI:16857,http://purl.obolibrary.org/obo/CHEBI_16857,L-threonine +15.3454106,CHEBI:17026,http://purl.obolibrary.org/obo/CHEBI_17026,progesterone +15.3454106,CHEBI:17224,http://purl.obolibrary.org/obo/CHEBI_17224,4-methylumbelliferone +15.3454106,CHEBI:172390,http://purl.obolibrary.org/obo/CHEBI_172390,glycol ether +15.3454106,CHEBI:17514,http://purl.obolibrary.org/obo/CHEBI_17514,cyanide +15.3454106,CHEBI:17568,http://purl.obolibrary.org/obo/CHEBI_17568,uracil +15.3454106,CHEBI:17895,http://purl.obolibrary.org/obo/CHEBI_17895,L-tyrosine +15.3454106,CHEBI:18012,http://purl.obolibrary.org/obo/CHEBI_18012,fumaric acid +15.3454106,CHEBI:18132,http://purl.obolibrary.org/obo/CHEBI_18132,phosphocholine +15.3454106,CHEBI:18139,http://purl.obolibrary.org/obo/CHEBI_18139,trimethylamine +15.3454106,CHEBI:21037,http://purl.obolibrary.org/obo/CHEBI_21037,aldohexose phosphate +15.3454106,CHEBI:22301,http://purl.obolibrary.org/obo/CHEBI_22301,aldonic acid +15.3454106,CHEBI:22311,http://purl.obolibrary.org/obo/CHEBI_22311,aliphatic antibiotics +15.3454106,CHEBI:22729,http://purl.obolibrary.org/obo/CHEBI_22729,benzoquinones +15.3454106,CHEBI:22750,http://purl.obolibrary.org/obo/CHEBI_22750,benzylisoquinoline alkaloid +15.3454106,CHEBI:23219,http://purl.obolibrary.org/obo/CHEBI_23219,bile acid taurine conjugate +15.3454106,CHEBI:23453,http://purl.obolibrary.org/obo/CHEBI_23453,cycloalkane +15.3454106,CHEBI:23765,http://purl.obolibrary.org/obo/CHEBI_23765,quinolone +15.3454106,CHEBI:24040,http://purl.obolibrary.org/obo/CHEBI_24040,flavin adenine dinucleotide +15.3454106,CHEBI:24548,http://purl.obolibrary.org/obo/CHEBI_24548,hexadecenoic acid +15.3454106,CHEBI:24712,http://purl.obolibrary.org/obo/CHEBI_24712,hydroxymethyl group +15.3454106,CHEBI:24848,http://purl.obolibrary.org/obo/CHEBI_24848,inositol +15.3454106,CHEBI:24863,http://purl.obolibrary.org/obo/CHEBI_24863,iodophenol +15.3454106,CHEBI:25016,http://purl.obolibrary.org/obo/CHEBI_25016,lead atom +15.3454106,CHEBI:25354,http://purl.obolibrary.org/obo/CHEBI_25354,mineralocorticoid +15.3454106,CHEBI:25707,http://purl.obolibrary.org/obo/CHEBI_25707,organometallic compound +15.3454106,CHEBI:25807,http://purl.obolibrary.org/obo/CHEBI_25807,organooxygen heterocyclic antibiotic +15.3454106,CHEBI:26083,http://purl.obolibrary.org/obo/CHEBI_26083,phosphorus containing antibiotics +15.3454106,CHEBI:26308,http://purl.obolibrary.org/obo/CHEBI_26308,propyl group +15.3454106,CHEBI:26493,http://purl.obolibrary.org/obo/CHEBI_26493,quinic acid +15.3454106,CHEBI:2668,http://purl.obolibrary.org/obo/CHEBI_2668,amlodipine +15.3454106,CHEBI:27137,http://purl.obolibrary.org/obo/CHEBI_27137,triose +15.3454106,CHEBI:27243,http://purl.obolibrary.org/obo/CHEBI_27243,uridyl group +15.3454106,CHEBI:27244,http://purl.obolibrary.org/obo/CHEBI_27244,5'-uridylyl group +15.3454106,CHEBI:27358,http://purl.obolibrary.org/obo/CHEBI_27358,yohimban alkaloid +15.3454106,CHEBI:27644,http://purl.obolibrary.org/obo/CHEBI_27644,chlortetracycline +15.3454106,CHEBI:27690,http://purl.obolibrary.org/obo/CHEBI_27690,acetazolamide +15.3454106,CHEBI:27701,http://purl.obolibrary.org/obo/CHEBI_27701,oxytetracycline +15.3454106,CHEBI:27798,http://purl.obolibrary.org/obo/CHEBI_27798,nitrobenzene +15.3454106,CHEBI:278547,http://purl.obolibrary.org/obo/CHEBI_278547,sodium azide +15.3454106,CHEBI:27889,http://purl.obolibrary.org/obo/CHEBI_27889,lead(0) +15.3454106,CHEBI:28073,http://purl.obolibrary.org/obo/CHEBI_28073,chromium atom +15.3454106,CHEBI:28102,http://purl.obolibrary.org/obo/CHEBI_28102,amylose +15.3454106,CHEBI:2825,http://purl.obolibrary.org/obo/CHEBI_2825,aristolochic acid +15.3454106,CHEBI:28621,http://purl.obolibrary.org/obo/CHEBI_28621,triethanolamine +15.3454106,CHEBI:28640,http://purl.obolibrary.org/obo/CHEBI_28640,lipoteichoic acid +15.3454106,CHEBI:28716,http://purl.obolibrary.org/obo/CHEBI_28716,palmitoleic acid +15.3454106,CHEBI:28821,http://purl.obolibrary.org/obo/CHEBI_28821,piperine +15.3454106,CHEBI:29261,http://purl.obolibrary.org/obo/CHEBI_29261,phosphonous acid +15.3454106,CHEBI:29357,http://purl.obolibrary.org/obo/CHEBI_29357,methanediyl +15.3454106,CHEBI:29864,http://purl.obolibrary.org/obo/CHEBI_29864,mannitol +15.3454106,CHEBI:30278,http://purl.obolibrary.org/obo/CHEBI_30278,phosphane +15.3454106,CHEBI:30282,http://purl.obolibrary.org/obo/CHEBI_30282,phosphonium +15.3454106,CHEBI:30563,http://purl.obolibrary.org/obo/CHEBI_30563,silicon dioxide +15.3454106,CHEBI:30721,http://purl.obolibrary.org/obo/CHEBI_30721,epoxy group +15.3454106,CHEBI:30759,http://purl.obolibrary.org/obo/CHEBI_30759,uracil-1-yl group +15.3454106,CHEBI:30808,http://purl.obolibrary.org/obo/CHEBI_30808,iron trichloride +15.3454106,CHEBI:3087,http://purl.obolibrary.org/obo/CHEBI_3087,betulinic acid +15.3454106,CHEBI:3095,http://purl.obolibrary.org/obo/CHEBI_3095,biguanide +15.3454106,CHEBI:30956,http://purl.obolibrary.org/obo/CHEBI_30956,trichloroacetic acid +15.3454106,CHEBI:3216,http://purl.obolibrary.org/obo/CHEBI_3216,buprenorphine +15.3454106,CHEBI:32761,http://purl.obolibrary.org/obo/CHEBI_32761,L-tyrosinate(2-) +15.3454106,CHEBI:32820,http://purl.obolibrary.org/obo/CHEBI_32820,L-threoninate +15.3454106,CHEBI:33319,http://purl.obolibrary.org/obo/CHEBI_33319,lanthanoid atom +15.3454106,CHEBI:33342,http://purl.obolibrary.org/obo/CHEBI_33342,zirconium atom +15.3454106,CHEBI:33364,http://purl.obolibrary.org/obo/CHEBI_33364,platinum +15.3454106,CHEBI:33437,http://purl.obolibrary.org/obo/CHEBI_33437,chlorine oxoanion +15.3454106,CHEBI:33531,http://purl.obolibrary.org/obo/CHEBI_33531,galactosaminate +15.3454106,CHEBI:33562,http://purl.obolibrary.org/obo/CHEBI_33562,f-block element atom +15.3454106,CHEBI:33585,http://purl.obolibrary.org/obo/CHEBI_33585,lead molecular entity +15.3454106,CHEBI:33767,http://purl.obolibrary.org/obo/CHEBI_33767,cobalt group molecular entity +15.3454106,CHEBI:33914,http://purl.obolibrary.org/obo/CHEBI_33914,aldotriose +15.3454106,CHEBI:34674,http://purl.obolibrary.org/obo/CHEBI_34674,dextran sulfate +15.3454106,CHEBI:35342,http://purl.obolibrary.org/obo/CHEBI_35342,17alpha-hydroxy steroid +15.3454106,CHEBI:35726,http://purl.obolibrary.org/obo/CHEBI_35726,aza-steroid +15.3454106,CHEBI:35807,http://purl.obolibrary.org/obo/CHEBI_35807,N-nitrosodimethylamine +15.3454106,CHEBI:35821,http://purl.obolibrary.org/obo/CHEBI_35821,anticholesteremic drug +15.3454106,CHEBI:35873,http://purl.obolibrary.org/obo/CHEBI_35873,carboxylic anhydride +15.3454106,CHEBI:36072,http://purl.obolibrary.org/obo/CHEBI_36072,organic prosthetic-group protein +15.3454106,CHEBI:36123,http://purl.obolibrary.org/obo/CHEBI_36123,cyclitol carboxylic acid +15.3454106,CHEBI:36468,http://purl.obolibrary.org/obo/CHEBI_36468,polycyclic ether +15.3454106,CHEBI:36607,http://purl.obolibrary.org/obo/CHEBI_36607,cyclic acid anhydride +15.3454106,CHEBI:36609,http://purl.obolibrary.org/obo/CHEBI_36609,cyclic dicarboxylic anhydride +15.3454106,CHEBI:36616,http://purl.obolibrary.org/obo/CHEBI_36616,quinoxaline +15.3454106,CHEBI:36845,http://purl.obolibrary.org/obo/CHEBI_36845,12-hydroxy steroid +15.3454106,CHEBI:36943,http://purl.obolibrary.org/obo/CHEBI_36943,aryl phosphate +15.3454106,CHEBI:37206,http://purl.obolibrary.org/obo/CHEBI_37206,hexol +15.3454106,CHEBI:3732,http://purl.obolibrary.org/obo/CHEBI_3732,clarithromycin +15.3454106,CHEBI:37337,http://purl.obolibrary.org/obo/CHEBI_37337,ultrasound contrast agent +15.3454106,CHEBI:3745,http://purl.obolibrary.org/obo/CHEBI_3745,clindamycin +15.3454106,CHEBI:37579,http://purl.obolibrary.org/obo/CHEBI_37579,acyl halide +15.3454106,CHEBI:37614,http://purl.obolibrary.org/obo/CHEBI_37614,alkenyl group +15.3454106,CHEBI:37793,http://purl.obolibrary.org/obo/CHEBI_37793,amino sulfonic acid +15.3454106,CHEBI:38099,http://purl.obolibrary.org/obo/CHEBI_38099,thiadiazoles +15.3454106,CHEBI:38397,http://purl.obolibrary.org/obo/CHEBI_38397,perfluorononanoic acid +15.3454106,CHEBI:38739,http://purl.obolibrary.org/obo/CHEBI_38739,trihydroxyflavanone +15.3454106,CHEBI:38857,http://purl.obolibrary.org/obo/CHEBI_38857,monochlorophenol +15.3454106,CHEBI:39258,http://purl.obolibrary.org/obo/CHEBI_39258,diphenyl ether +15.3454106,CHEBI:40910,http://purl.obolibrary.org/obo/CHEBI_40910,azide anion +15.3454106,CHEBI:44658,http://purl.obolibrary.org/obo/CHEBI_44658,okadaic acid +15.3454106,CHEBI:4509,http://purl.obolibrary.org/obo/CHEBI_4509,diclofenac sodium +15.3454106,CHEBI:46470,http://purl.obolibrary.org/obo/CHEBI_46470,uridine 5'-monophosphate residue +15.3454106,CHEBI:46668,http://purl.obolibrary.org/obo/CHEBI_46668,amino acid ester +15.3454106,CHEBI:46807,http://purl.obolibrary.org/obo/CHEBI_46807,diethylene glycol +15.3454106,CHEBI:4775,http://purl.obolibrary.org/obo/CHEBI_4775,ellagic acid +15.3454106,CHEBI:47878,http://purl.obolibrary.org/obo/CHEBI_47878,hexose phosphate +15.3454106,CHEBI:47956,http://purl.obolibrary.org/obo/CHEBI_47956,thiocarboxamide +15.3454106,CHEBI:47989,http://purl.obolibrary.org/obo/CHEBI_47989,enamine +15.3454106,CHEBI:48465,http://purl.obolibrary.org/obo/CHEBI_48465,glutaredoxin +15.3454106,CHEBI:48591,http://purl.obolibrary.org/obo/CHEBI_48591,N-acylpiperidine +15.3454106,CHEBI:48607,http://purl.obolibrary.org/obo/CHEBI_48607,lithium chloride +15.3454106,CHEBI:50202,http://purl.obolibrary.org/obo/CHEBI_50202,naringenin +15.3454106,CHEBI:51031,http://purl.obolibrary.org/obo/CHEBI_51031,organic calcium salt +15.3454106,CHEBI:51216,http://purl.obolibrary.org/obo/CHEBI_51216,zinc porphyrin +15.3454106,CHEBI:51681,http://purl.obolibrary.org/obo/CHEBI_51681,dimethoxybenzene +15.3454106,CHEBI:51688,http://purl.obolibrary.org/obo/CHEBI_51688,enal +15.3454106,CHEBI:51718,http://purl.obolibrary.org/obo/CHEBI_51718,"alpha,beta-unsaturated aldehyde" +15.3454106,CHEBI:53079,http://purl.obolibrary.org/obo/CHEBI_53079,lysine derivative +15.3454106,CHEBI:53105,http://purl.obolibrary.org/obo/CHEBI_53105,UMP 5'-end residue +15.3454106,CHEBI:53120,http://purl.obolibrary.org/obo/CHEBI_53120,UMP 3'-end residue +15.3454106,CHEBI:53291,http://purl.obolibrary.org/obo/CHEBI_53291,2-halophenol +15.3454106,CHEBI:53353,http://purl.obolibrary.org/obo/CHEBI_53353,GHB receptor agonist +15.3454106,CHEBI:53506,http://purl.obolibrary.org/obo/CHEBI_53506,"2,4,5-trinitrobenzenesulfonic acid" +15.3454106,CHEBI:5366,http://purl.obolibrary.org/obo/CHEBI_5366,Gla protein +15.3454106,CHEBI:545959,http://purl.obolibrary.org/obo/CHEBI_545959,homovanillic acid +15.3454106,CHEBI:59721,http://purl.obolibrary.org/obo/CHEBI_59721,terpyridines +15.3454106,CHEBI:5975,http://purl.obolibrary.org/obo/CHEBI_5975,iron chelate +15.3454106,CHEBI:59835,http://purl.obolibrary.org/obo/CHEBI_59835,hydroxy fatty acid anion +15.3454106,CHEBI:60579,http://purl.obolibrary.org/obo/CHEBI_60579,calcium oxalate +15.3454106,CHEBI:60759,http://purl.obolibrary.org/obo/CHEBI_60759,poly(methacrylic acid) polymer +15.3454106,CHEBI:6078,http://purl.obolibrary.org/obo/CHEBI_6078,ivermectin +15.3454106,CHEBI:60883,http://purl.obolibrary.org/obo/CHEBI_60883,poly(N-isopropylacrylamide) polymer +15.3454106,CHEBI:61015,http://purl.obolibrary.org/obo/CHEBI_61015,nephrotoxin +15.3454106,CHEBI:61374,http://purl.obolibrary.org/obo/CHEBI_61374,syndiotactic polymer +15.3454106,CHEBI:61484,http://purl.obolibrary.org/obo/CHEBI_61484,polyimide polymer +15.3454106,CHEBI:63036,http://purl.obolibrary.org/obo/CHEBI_63036,potassium dihydrogen phosphate +15.3454106,CHEBI:63038,http://purl.obolibrary.org/obo/CHEBI_63038,ammonium nitrate +15.3454106,CHEBI:63385,http://purl.obolibrary.org/obo/CHEBI_63385,hexose derivative +15.3454106,CHEBI:63526,http://purl.obolibrary.org/obo/CHEBI_63526,platinum cation +15.3454106,CHEBI:64022,http://purl.obolibrary.org/obo/CHEBI_64022,nebivolol +15.3454106,CHEBI:64220,http://purl.obolibrary.org/obo/CHEBI_64220,monosodium glutamate +15.3454106,CHEBI:64338,http://purl.obolibrary.org/obo/CHEBI_64338,K-ATP channel agonist +15.3454106,CHEBI:65585,http://purl.obolibrary.org/obo/CHEBI_65585,carnosic acid +15.3454106,CHEBI:66874,http://purl.obolibrary.org/obo/CHEBI_66874,carnosinate +15.3454106,CHEBI:72004,http://purl.obolibrary.org/obo/CHEBI_72004,hexadec-9-enoic acid +15.3454106,CHEBI:73747,http://purl.obolibrary.org/obo/CHEBI_73747,uridine residue +15.3454106,CHEBI:74223,http://purl.obolibrary.org/obo/CHEBI_74223,pyrrolidin-2-ones +15.3454106,CHEBI:7587,http://purl.obolibrary.org/obo/CHEBI_7587,nitroalkane +15.3454106,CHEBI:76990,http://purl.obolibrary.org/obo/CHEBI_76990,mycoestrogen +15.3454106,CHEBI:77326,http://purl.obolibrary.org/obo/CHEBI_77326,androstane receptor agonist +15.3454106,CHEBI:77701,http://purl.obolibrary.org/obo/CHEBI_77701,nitromethane +15.3454106,CHEBI:77727,http://purl.obolibrary.org/obo/CHEBI_77727,delta-lactam +15.3454106,CHEBI:77964,http://purl.obolibrary.org/obo/CHEBI_77964,anticaking agent +15.3454106,CHEBI:77970,http://purl.obolibrary.org/obo/CHEBI_77970,food thickening agent +15.3454106,CHEBI:78113,http://purl.obolibrary.org/obo/CHEBI_78113,fatty acid anion 3:0 +15.3454106,CHEBI:7861,http://purl.obolibrary.org/obo/CHEBI_7861,oxyhemoglobin +15.3454106,CHEBI:7997,http://purl.obolibrary.org/obo/CHEBI_7997,Peptide(-Arg) +15.3454106,CHEBI:8040,http://purl.obolibrary.org/obo/CHEBI_8040,phalloidin +15.3454106,CHEBI:81774,http://purl.obolibrary.org/obo/CHEBI_81774,Oxyquinoline sulfate +15.3454106,CHEBI:82549,http://purl.obolibrary.org/obo/CHEBI_82549,Vinyl chloride-vinyl acetate copolymer +15.3454106,CHEBI:82550,http://purl.obolibrary.org/obo/CHEBI_82550,Vinylidene fluoride +15.3454106,CHEBI:8310,http://purl.obolibrary.org/obo/CHEBI_8310,Polymyxin B sulfate +15.3454106,CHEBI:83828,http://purl.obolibrary.org/obo/CHEBI_83828,DNA polyanion +15.3454106,CHEBI:86269,http://purl.obolibrary.org/obo/CHEBI_86269,3-nitrotyrosine +15.3454106,CHEBI:86386,http://purl.obolibrary.org/obo/CHEBI_86386,3-mercaptopropionate +15.3454106,CHEBI:8711,http://purl.obolibrary.org/obo/CHEBI_8711,quinacrine +15.3454106,CHEBI:87204,http://purl.obolibrary.org/obo/CHEBI_87204,pyrimidine antifungal agent +15.3454106,CHEBI:88306,http://purl.obolibrary.org/obo/CHEBI_88306,4-nitrophenols +15.3454106,CHEBI:9329,http://purl.obolibrary.org/obo/CHEBI_9329,sulfadoxine +15.3454106,CL:0000020,http://purl.obolibrary.org/obo/CL_0000020,spermatogonium +15.3454106,CL:0000271,http://purl.obolibrary.org/obo/CL_0000271,none +15.3454106,CL:0000275,http://purl.obolibrary.org/obo/CL_0000275,none +15.3454106,CL:0000309,http://purl.obolibrary.org/obo/CL_0000309,copper accumulating cell +15.3454106,CL:0000377,http://purl.obolibrary.org/obo/CL_0000377,tracheoblast +15.3454106,CL:0000379,http://purl.obolibrary.org/obo/CL_0000379,sensory processing neuron +15.3454106,CL:0000420,http://purl.obolibrary.org/obo/CL_0000420,syncytial epithelial cell +15.3454106,CL:0000464,http://purl.obolibrary.org/obo/CL_0000464,epidermoblast +15.3454106,CL:0000476,http://purl.obolibrary.org/obo/CL_0000476,thyrotroph +15.3454106,CL:0000671,http://purl.obolibrary.org/obo/CL_0000671,centripetally migrating follicle cell +15.3454106,CL:0000735,http://purl.obolibrary.org/obo/CL_0000735,lymph gland hemocyte +15.3454106,CL:0000773,http://purl.obolibrary.org/obo/CL_0000773,eosinophilic metamyelocyte +15.3454106,CL:0000894,http://purl.obolibrary.org/obo/CL_0000894,DN1 thymic pro-T cell +15.3454106,CL:0000942,http://purl.obolibrary.org/obo/CL_0000942,thymic plasmacytoid dendritic cell +15.3454106,CL:0001056,http://purl.obolibrary.org/obo/CL_0001056,"dendritic cell, human" +15.3454106,CL:0002066,http://purl.obolibrary.org/obo/CL_0002066,Feyrter cell +15.3454106,CL:0002353,http://purl.obolibrary.org/obo/CL_0002353,fetal liver hematopoietic progenitor cell +15.3454106,CL:0002421,http://purl.obolibrary.org/obo/CL_0002421,nucleated reticulocyte +15.3454106,CL:0002485,http://purl.obolibrary.org/obo/CL_0002485,retinal melanocyte +15.3454106,CL:0002551,http://purl.obolibrary.org/obo/CL_0002551,fibroblast of dermis +15.3454106,CL:0005021,http://purl.obolibrary.org/obo/CL_0005021,mesenchymal lymphangioblast +15.3454106,CL:0007008,http://purl.obolibrary.org/obo/CL_0007008,notochordal vacuole cell +15.3454106,CL:0011109,http://purl.obolibrary.org/obo/CL_0011109,hypocretin-secreting neuron +15.3454106,CL:1000320,http://purl.obolibrary.org/obo/CL_1000320,large intestine goblet cell +15.3454106,CL:1001320,http://purl.obolibrary.org/obo/CL_1001320,urethra cell +15.3454106,CL:1001591,http://purl.obolibrary.org/obo/CL_1001591,oviduct glandular cell +15.3454106,DRUGBANK:DB01594,http://purl.obolibrary.org/obo/DRUGBANK_DB01594,none +15.3454106,DRUGBANK:DB01792,http://purl.obolibrary.org/obo/DRUGBANK_DB01792,none +15.3454106,DRUGBANK:DB01794,http://purl.obolibrary.org/obo/DRUGBANK_DB01794,none +15.3454106,DRUGBANK:DB01850,http://purl.obolibrary.org/obo/DRUGBANK_DB01850,none +15.3454106,DRUGBANK:DB01944,http://purl.obolibrary.org/obo/DRUGBANK_DB01944,none +15.3454106,DRUGBANK:DB01991,http://purl.obolibrary.org/obo/DRUGBANK_DB01991,none +15.3454106,DRUGBANK:DB02168,http://purl.obolibrary.org/obo/DRUGBANK_DB02168,none +15.3454106,DRUGBANK:DB02201,http://purl.obolibrary.org/obo/DRUGBANK_DB02201,none +15.3454106,DRUGBANK:DB02242,http://purl.obolibrary.org/obo/DRUGBANK_DB02242,none +15.3454106,DRUGBANK:DB02273,http://purl.obolibrary.org/obo/DRUGBANK_DB02273,none +15.3454106,DRUGBANK:DB02341,http://purl.obolibrary.org/obo/DRUGBANK_DB02341,none +15.3454106,DRUGBANK:DB02384,http://purl.obolibrary.org/obo/DRUGBANK_DB02384,none +15.3454106,DRUGBANK:DB02456,http://purl.obolibrary.org/obo/DRUGBANK_DB02456,none +15.3454106,DRUGBANK:DB02508,http://purl.obolibrary.org/obo/DRUGBANK_DB02508,none +15.3454106,DRUGBANK:DB02580,http://purl.obolibrary.org/obo/DRUGBANK_DB02580,none +15.3454106,DRUGBANK:DB02644,http://purl.obolibrary.org/obo/DRUGBANK_DB02644,none +15.3454106,DRUGBANK:DB02726,http://purl.obolibrary.org/obo/DRUGBANK_DB02726,none +15.3454106,DRUGBANK:DB03025,http://purl.obolibrary.org/obo/DRUGBANK_DB03025,none +15.3454106,DRUGBANK:DB03100,http://purl.obolibrary.org/obo/DRUGBANK_DB03100,none +15.3454106,DRUGBANK:DB03143,http://purl.obolibrary.org/obo/DRUGBANK_DB03143,none +15.3454106,DRUGBANK:DB03178,http://purl.obolibrary.org/obo/DRUGBANK_DB03178,none +15.3454106,DRUGBANK:DB03238,http://purl.obolibrary.org/obo/DRUGBANK_DB03238,none +15.3454106,DRUGBANK:DB03254,http://purl.obolibrary.org/obo/DRUGBANK_DB03254,none +15.3454106,DRUGBANK:DB03275,http://purl.obolibrary.org/obo/DRUGBANK_DB03275,none +15.3454106,DRUGBANK:DB03281,http://purl.obolibrary.org/obo/DRUGBANK_DB03281,none +15.3454106,DRUGBANK:DB03344,http://purl.obolibrary.org/obo/DRUGBANK_DB03344,none +15.3454106,DRUGBANK:DB03376,http://purl.obolibrary.org/obo/DRUGBANK_DB03376,none +15.3454106,DRUGBANK:DB03491,http://purl.obolibrary.org/obo/DRUGBANK_DB03491,none +15.3454106,DRUGBANK:DB03528,http://purl.obolibrary.org/obo/DRUGBANK_DB03528,none +15.3454106,DRUGBANK:DB03601,http://purl.obolibrary.org/obo/DRUGBANK_DB03601,none +15.3454106,DRUGBANK:DB03732,http://purl.obolibrary.org/obo/DRUGBANK_DB03732,none +15.3454106,DRUGBANK:DB03795,http://purl.obolibrary.org/obo/DRUGBANK_DB03795,none +15.3454106,DRUGBANK:DB03816,http://purl.obolibrary.org/obo/DRUGBANK_DB03816,none +15.3454106,DRUGBANK:DB03932,http://purl.obolibrary.org/obo/DRUGBANK_DB03932,none +15.3454106,DRUGBANK:DB04079,http://purl.obolibrary.org/obo/DRUGBANK_DB04079,none +15.3454106,DRUGBANK:DB04171,http://purl.obolibrary.org/obo/DRUGBANK_DB04171,none +15.3454106,DRUGBANK:DB04265,http://purl.obolibrary.org/obo/DRUGBANK_DB04265,none +15.3454106,DRUGBANK:DB04553,http://purl.obolibrary.org/obo/DRUGBANK_DB04553,none +15.3454106,DRUGBANK:DB04560,http://purl.obolibrary.org/obo/DRUGBANK_DB04560,none +15.3454106,DRUGBANK:DB04569,http://purl.obolibrary.org/obo/DRUGBANK_DB04569,none +15.3454106,DRUGBANK:DB04661,http://purl.obolibrary.org/obo/DRUGBANK_DB04661,none +15.3454106,DRUGBANK:DB04768,http://purl.obolibrary.org/obo/DRUGBANK_DB04768,none +15.3454106,DRUGBANK:DB04796,http://purl.obolibrary.org/obo/DRUGBANK_DB04796,none +15.3454106,DRUGBANK:DB04907,http://purl.obolibrary.org/obo/DRUGBANK_DB04907,none +15.3454106,DRUGBANK:DB04981,http://purl.obolibrary.org/obo/DRUGBANK_DB04981,none +15.3454106,DRUGBANK:DB04989,http://purl.obolibrary.org/obo/DRUGBANK_DB04989,none +15.3454106,DRUGBANK:DB05054,http://purl.obolibrary.org/obo/DRUGBANK_DB05054,none +15.3454106,DRUGBANK:DB05064,http://purl.obolibrary.org/obo/DRUGBANK_DB05064,none +15.3454106,DRUGBANK:DB05139,http://purl.obolibrary.org/obo/DRUGBANK_DB05139,none +15.3454106,DRUGBANK:DB05155,http://purl.obolibrary.org/obo/DRUGBANK_DB05155,none +15.3454106,DRUGBANK:DB05181,http://purl.obolibrary.org/obo/DRUGBANK_DB05181,none +15.3454106,DRUGBANK:DB05209,http://purl.obolibrary.org/obo/DRUGBANK_DB05209,none +15.3454106,DRUGBANK:DB05222,http://purl.obolibrary.org/obo/DRUGBANK_DB05222,none +15.3454106,DRUGBANK:DB05228,http://purl.obolibrary.org/obo/DRUGBANK_DB05228,none +15.3454106,DRUGBANK:DB05413,http://purl.obolibrary.org/obo/DRUGBANK_DB05413,none +15.3454106,DRUGBANK:DB05422,http://purl.obolibrary.org/obo/DRUGBANK_DB05422,none +15.3454106,DRUGBANK:DB05443,http://purl.obolibrary.org/obo/DRUGBANK_DB05443,none +15.3454106,DRUGBANK:DB05505,http://purl.obolibrary.org/obo/DRUGBANK_DB05505,none +15.3454106,DRUGBANK:DB05530,http://purl.obolibrary.org/obo/DRUGBANK_DB05530,none +15.3454106,DRUGBANK:DB05531,http://purl.obolibrary.org/obo/DRUGBANK_DB05531,none +15.3454106,DRUGBANK:DB05607,http://purl.obolibrary.org/obo/DRUGBANK_DB05607,none +15.3454106,DRUGBANK:DB05698,http://purl.obolibrary.org/obo/DRUGBANK_DB05698,none +15.3454106,DRUGBANK:DB05721,http://purl.obolibrary.org/obo/DRUGBANK_DB05721,none +15.3454106,DRUGBANK:DB05751,http://purl.obolibrary.org/obo/DRUGBANK_DB05751,none +15.3454106,DRUGBANK:DB05819,http://purl.obolibrary.org/obo/DRUGBANK_DB05819,none +15.3454106,DRUGBANK:DB05837,http://purl.obolibrary.org/obo/DRUGBANK_DB05837,none +15.3454106,DRUGBANK:DB05881,http://purl.obolibrary.org/obo/DRUGBANK_DB05881,none +15.3454106,DRUGBANK:DB05916,http://purl.obolibrary.org/obo/DRUGBANK_DB05916,none +15.3454106,DRUGBANK:DB05938,http://purl.obolibrary.org/obo/DRUGBANK_DB05938,none +15.3454106,DRUGBANK:DB05939,http://purl.obolibrary.org/obo/DRUGBANK_DB05939,none +15.3454106,DRUGBANK:DB05942,http://purl.obolibrary.org/obo/DRUGBANK_DB05942,none +15.3454106,DRUGBANK:DB06096,http://purl.obolibrary.org/obo/DRUGBANK_DB06096,none +15.3454106,DRUGBANK:DB06187,http://purl.obolibrary.org/obo/DRUGBANK_DB06187,none +15.3454106,DRUGBANK:DB06226,http://purl.obolibrary.org/obo/DRUGBANK_DB06226,none +15.3454106,DRUGBANK:DB06395,http://purl.obolibrary.org/obo/DRUGBANK_DB06395,none +15.3454106,DRUGBANK:DB06521,http://purl.obolibrary.org/obo/DRUGBANK_DB06521,none +15.3454106,DRUGBANK:DB06535,http://purl.obolibrary.org/obo/DRUGBANK_DB06535,none +15.3454106,DRUGBANK:DB06573,http://purl.obolibrary.org/obo/DRUGBANK_DB06573,none +15.3454106,DRUGBANK:DB06638,http://purl.obolibrary.org/obo/DRUGBANK_DB06638,none +15.3454106,DRUGBANK:DB06678,http://purl.obolibrary.org/obo/DRUGBANK_DB06678,none +15.3454106,DRUGBANK:DB06679,http://purl.obolibrary.org/obo/DRUGBANK_DB06679,none +15.3454106,DRUGBANK:DB07063,http://purl.obolibrary.org/obo/DRUGBANK_DB07063,none +15.3454106,DRUGBANK:DB07227,http://purl.obolibrary.org/obo/DRUGBANK_DB07227,none +15.3454106,DRUGBANK:DB07238,http://purl.obolibrary.org/obo/DRUGBANK_DB07238,none +15.3454106,DRUGBANK:DB07478,http://purl.obolibrary.org/obo/DRUGBANK_DB07478,none +15.3454106,DRUGBANK:DB07543,http://purl.obolibrary.org/obo/DRUGBANK_DB07543,none +15.3454106,DRUGBANK:DB07611,http://purl.obolibrary.org/obo/DRUGBANK_DB07611,none +15.3454106,DRUGBANK:DB07661,http://purl.obolibrary.org/obo/DRUGBANK_DB07661,none +15.3454106,DRUGBANK:DB07705,http://purl.obolibrary.org/obo/DRUGBANK_DB07705,none +15.3454106,DRUGBANK:DB08082,http://purl.obolibrary.org/obo/DRUGBANK_DB08082,none +15.3454106,DRUGBANK:DB08455,http://purl.obolibrary.org/obo/DRUGBANK_DB08455,none +15.3454106,DRUGBANK:DB08944,http://purl.obolibrary.org/obo/DRUGBANK_DB08944,none +15.3454106,DRUGBANK:DB08991,http://purl.obolibrary.org/obo/DRUGBANK_DB08991,none +15.3454106,DRUGBANK:DB09170,http://purl.obolibrary.org/obo/DRUGBANK_DB09170,none +15.3454106,DRUGBANK:DB09177,http://purl.obolibrary.org/obo/DRUGBANK_DB09177,none +15.3454106,DRUGBANK:DB09318,http://purl.obolibrary.org/obo/DRUGBANK_DB09318,none +15.3454106,DRUGBANK:DB09379,http://purl.obolibrary.org/obo/DRUGBANK_DB09379,none +15.3454106,DRUGBANK:DB09385,http://purl.obolibrary.org/obo/DRUGBANK_DB09385,none +15.3454106,DRUGBANK:DB09447,http://purl.obolibrary.org/obo/DRUGBANK_DB09447,none +15.3454106,DRUGBANK:DB10416,http://purl.obolibrary.org/obo/DRUGBANK_DB10416,none +15.3454106,DRUGBANK:DB10698,http://purl.obolibrary.org/obo/DRUGBANK_DB10698,none +15.3454106,DRUGBANK:DB10818,http://purl.obolibrary.org/obo/DRUGBANK_DB10818,none +15.3454106,DRUGBANK:DB10823,http://purl.obolibrary.org/obo/DRUGBANK_DB10823,none +15.3454106,DRUGBANK:DB10846,http://purl.obolibrary.org/obo/DRUGBANK_DB10846,none +15.3454106,DRUGBANK:DB10932,http://purl.obolibrary.org/obo/DRUGBANK_DB10932,none +15.3454106,DRUGBANK:DB11289,http://purl.obolibrary.org/obo/DRUGBANK_DB11289,none +15.3454106,DRUGBANK:DB11305,http://purl.obolibrary.org/obo/DRUGBANK_DB11305,none +15.3454106,DRUGBANK:DB11647,http://purl.obolibrary.org/obo/DRUGBANK_DB11647,none +15.3454106,DRUGBANK:DB11650,http://purl.obolibrary.org/obo/DRUGBANK_DB11650,none +15.3454106,DRUGBANK:DB11670,http://purl.obolibrary.org/obo/DRUGBANK_DB11670,none +15.3454106,DRUGBANK:DB11681,http://purl.obolibrary.org/obo/DRUGBANK_DB11681,none +15.3454106,DRUGBANK:DB11690,http://purl.obolibrary.org/obo/DRUGBANK_DB11690,none +15.3454106,DRUGBANK:DB11754,http://purl.obolibrary.org/obo/DRUGBANK_DB11754,none +15.3454106,DRUGBANK:DB11787,http://purl.obolibrary.org/obo/DRUGBANK_DB11787,none +15.3454106,DRUGBANK:DB11867,http://purl.obolibrary.org/obo/DRUGBANK_DB11867,none +15.3454106,DRUGBANK:DB11886,http://purl.obolibrary.org/obo/DRUGBANK_DB11886,none +15.3454106,DRUGBANK:DB11954,http://purl.obolibrary.org/obo/DRUGBANK_DB11954,none +15.3454106,DRUGBANK:DB11982,http://purl.obolibrary.org/obo/DRUGBANK_DB11982,none +15.3454106,DRUGBANK:DB11990,http://purl.obolibrary.org/obo/DRUGBANK_DB11990,none +15.3454106,DRUGBANK:DB12002,http://purl.obolibrary.org/obo/DRUGBANK_DB12002,none +15.3454106,DRUGBANK:DB12006,http://purl.obolibrary.org/obo/DRUGBANK_DB12006,none +15.3454106,DRUGBANK:DB12013,http://purl.obolibrary.org/obo/DRUGBANK_DB12013,none +15.3454106,DRUGBANK:DB12018,http://purl.obolibrary.org/obo/DRUGBANK_DB12018,none +15.3454106,DRUGBANK:DB12027,http://purl.obolibrary.org/obo/DRUGBANK_DB12027,none +15.3454106,DRUGBANK:DB12031,http://purl.obolibrary.org/obo/DRUGBANK_DB12031,none +15.3454106,DRUGBANK:DB12072,http://purl.obolibrary.org/obo/DRUGBANK_DB12072,none +15.3454106,DRUGBANK:DB12132,http://purl.obolibrary.org/obo/DRUGBANK_DB12132,none +15.3454106,DRUGBANK:DB12149,http://purl.obolibrary.org/obo/DRUGBANK_DB12149,none +15.3454106,DRUGBANK:DB12210,http://purl.obolibrary.org/obo/DRUGBANK_DB12210,none +15.3454106,DRUGBANK:DB12218,http://purl.obolibrary.org/obo/DRUGBANK_DB12218,none +15.3454106,DRUGBANK:DB12236,http://purl.obolibrary.org/obo/DRUGBANK_DB12236,none +15.3454106,DRUGBANK:DB12255,http://purl.obolibrary.org/obo/DRUGBANK_DB12255,none +15.3454106,DRUGBANK:DB12268,http://purl.obolibrary.org/obo/DRUGBANK_DB12268,none +15.3454106,DRUGBANK:DB12294,http://purl.obolibrary.org/obo/DRUGBANK_DB12294,none +15.3454106,DRUGBANK:DB12309,http://purl.obolibrary.org/obo/DRUGBANK_DB12309,none +15.3454106,DRUGBANK:DB12317,http://purl.obolibrary.org/obo/DRUGBANK_DB12317,none +15.3454106,DRUGBANK:DB12347,http://purl.obolibrary.org/obo/DRUGBANK_DB12347,none +15.3454106,DRUGBANK:DB12353,http://purl.obolibrary.org/obo/DRUGBANK_DB12353,none +15.3454106,DRUGBANK:DB12361,http://purl.obolibrary.org/obo/DRUGBANK_DB12361,none +15.3454106,DRUGBANK:DB12399,http://purl.obolibrary.org/obo/DRUGBANK_DB12399,none +15.3454106,DRUGBANK:DB12427,http://purl.obolibrary.org/obo/DRUGBANK_DB12427,none +15.3454106,DRUGBANK:DB12461,http://purl.obolibrary.org/obo/DRUGBANK_DB12461,none +15.3454106,DRUGBANK:DB12522,http://purl.obolibrary.org/obo/DRUGBANK_DB12522,none +15.3454106,DRUGBANK:DB12550,http://purl.obolibrary.org/obo/DRUGBANK_DB12550,none +15.3454106,DRUGBANK:DB12555,http://purl.obolibrary.org/obo/DRUGBANK_DB12555,none +15.3454106,DRUGBANK:DB12605,http://purl.obolibrary.org/obo/DRUGBANK_DB12605,none +15.3454106,DRUGBANK:DB12642,http://purl.obolibrary.org/obo/DRUGBANK_DB12642,none +15.3454106,DRUGBANK:DB12643,http://purl.obolibrary.org/obo/DRUGBANK_DB12643,none +15.3454106,DRUGBANK:DB12659,http://purl.obolibrary.org/obo/DRUGBANK_DB12659,none +15.3454106,DRUGBANK:DB12666,http://purl.obolibrary.org/obo/DRUGBANK_DB12666,none +15.3454106,DRUGBANK:DB12680,http://purl.obolibrary.org/obo/DRUGBANK_DB12680,none +15.3454106,DRUGBANK:DB12686,http://purl.obolibrary.org/obo/DRUGBANK_DB12686,none +15.3454106,DRUGBANK:DB12706,http://purl.obolibrary.org/obo/DRUGBANK_DB12706,none +15.3454106,DRUGBANK:DB12718,http://purl.obolibrary.org/obo/DRUGBANK_DB12718,none +15.3454106,DRUGBANK:DB12755,http://purl.obolibrary.org/obo/DRUGBANK_DB12755,none +15.3454106,DRUGBANK:DB12824,http://purl.obolibrary.org/obo/DRUGBANK_DB12824,none +15.3454106,DRUGBANK:DB12847,http://purl.obolibrary.org/obo/DRUGBANK_DB12847,none +15.3454106,DRUGBANK:DB12915,http://purl.obolibrary.org/obo/DRUGBANK_DB12915,none +15.3454106,DRUGBANK:DB12963,http://purl.obolibrary.org/obo/DRUGBANK_DB12963,none +15.3454106,DRUGBANK:DB13005,http://purl.obolibrary.org/obo/DRUGBANK_DB13005,none +15.3454106,DRUGBANK:DB13041,http://purl.obolibrary.org/obo/DRUGBANK_DB13041,none +15.3454106,DRUGBANK:DB13053,http://purl.obolibrary.org/obo/DRUGBANK_DB13053,none +15.3454106,DRUGBANK:DB13073,http://purl.obolibrary.org/obo/DRUGBANK_DB13073,none +15.3454106,DRUGBANK:DB13292,http://purl.obolibrary.org/obo/DRUGBANK_DB13292,none +15.3454106,DRUGBANK:DB13457,http://purl.obolibrary.org/obo/DRUGBANK_DB13457,none +15.3454106,DRUGBANK:DB13512,http://purl.obolibrary.org/obo/DRUGBANK_DB13512,none +15.3454106,DRUGBANK:DB13651,http://purl.obolibrary.org/obo/DRUGBANK_DB13651,none +15.3454106,DRUGBANK:DB13664,http://purl.obolibrary.org/obo/DRUGBANK_DB13664,none +15.3454106,DRUGBANK:DB13702,http://purl.obolibrary.org/obo/DRUGBANK_DB13702,none +15.3454106,DRUGBANK:DB13738,http://purl.obolibrary.org/obo/DRUGBANK_DB13738,none +15.3454106,DRUGBANK:DB13948,http://purl.obolibrary.org/obo/DRUGBANK_DB13948,none +15.3454106,DRUGBANK:DB13993,http://purl.obolibrary.org/obo/DRUGBANK_DB13993,none +15.3454106,DRUGBANK:DB14017,http://purl.obolibrary.org/obo/DRUGBANK_DB14017,none +15.3454106,DRUGBANK:DB14019,http://purl.obolibrary.org/obo/DRUGBANK_DB14019,none +15.3454106,DRUGBANK:DB14067,http://purl.obolibrary.org/obo/DRUGBANK_DB14067,none +15.3454106,DRUGBANK:DB14267,http://purl.obolibrary.org/obo/DRUGBANK_DB14267,none +15.3454106,DRUGBANK:DB14288,http://purl.obolibrary.org/obo/DRUGBANK_DB14288,none +15.3454106,DRUGBANK:DB14485,http://purl.obolibrary.org/obo/DRUGBANK_DB14485,none +15.3454106,DRUGBANK:DB14578,http://purl.obolibrary.org/obo/DRUGBANK_DB14578,none +15.3454106,DRUGBANK:DB14627,http://purl.obolibrary.org/obo/DRUGBANK_DB14627,none +15.3454106,DRUGBANK:DB14686,http://purl.obolibrary.org/obo/DRUGBANK_DB14686,none +15.3454106,DRUGBANK:DB14766,http://purl.obolibrary.org/obo/DRUGBANK_DB14766,none +15.3454106,DRUGBANK:DB14792,http://purl.obolibrary.org/obo/DRUGBANK_DB14792,none +15.3454106,DRUGBANK:DB14808,http://purl.obolibrary.org/obo/DRUGBANK_DB14808,none +15.3454106,DRUGBANK:DB14814,http://purl.obolibrary.org/obo/DRUGBANK_DB14814,none +15.3454106,DRUGBANK:DB14840,http://purl.obolibrary.org/obo/DRUGBANK_DB14840,none +15.3454106,DRUGBANK:DB14919,http://purl.obolibrary.org/obo/DRUGBANK_DB14919,none +15.3454106,DRUGBANK:DB14949,http://purl.obolibrary.org/obo/DRUGBANK_DB14949,none +15.3454106,DRUGBANK:DB14952,http://purl.obolibrary.org/obo/DRUGBANK_DB14952,none +15.3454106,DRUGBANK:DB14976,http://purl.obolibrary.org/obo/DRUGBANK_DB14976,none +15.3454106,DRUGBANK:DB14983,http://purl.obolibrary.org/obo/DRUGBANK_DB14983,none +15.3454106,DRUGBANK:DB14997,http://purl.obolibrary.org/obo/DRUGBANK_DB14997,none +15.3454106,DRUGBANK:DB15009,http://purl.obolibrary.org/obo/DRUGBANK_DB15009,none +15.3454106,DRUGBANK:DB15039,http://purl.obolibrary.org/obo/DRUGBANK_DB15039,none +15.3454106,DRUGBANK:DB15043,http://purl.obolibrary.org/obo/DRUGBANK_DB15043,none +15.3454106,DRUGBANK:DB15046,http://purl.obolibrary.org/obo/DRUGBANK_DB15046,none +15.3454106,DRUGBANK:DB15076,http://purl.obolibrary.org/obo/DRUGBANK_DB15076,none +15.3454106,DRUGBANK:DB15083,http://purl.obolibrary.org/obo/DRUGBANK_DB15083,none +15.3454106,DRUGBANK:DB15084,http://purl.obolibrary.org/obo/DRUGBANK_DB15084,none +15.3454106,DRUGBANK:DB15155,http://purl.obolibrary.org/obo/DRUGBANK_DB15155,none +15.3454106,DRUGBANK:DB15163,http://purl.obolibrary.org/obo/DRUGBANK_DB15163,none +15.3454106,DRUGBANK:DB15186,http://purl.obolibrary.org/obo/DRUGBANK_DB15186,none +15.3454106,DRUGBANK:DB15231,http://purl.obolibrary.org/obo/DRUGBANK_DB15231,none +15.3454106,DRUGBANK:DB15277,http://purl.obolibrary.org/obo/DRUGBANK_DB15277,none +15.3454106,DRUGBANK:DB15311,http://purl.obolibrary.org/obo/DRUGBANK_DB15311,none +15.3454106,DRUGBANK:DB15326,http://purl.obolibrary.org/obo/DRUGBANK_DB15326,none +15.3454106,DRUGBANK:DB15333,http://purl.obolibrary.org/obo/DRUGBANK_DB15333,none +15.3454106,DRUGBANK:DB15338,http://purl.obolibrary.org/obo/DRUGBANK_DB15338,none +15.3454106,DRUGBANK:DB15385,http://purl.obolibrary.org/obo/DRUGBANK_DB15385,none +15.3454106,DRUGBANK:DB15465,http://purl.obolibrary.org/obo/DRUGBANK_DB15465,none +15.3454106,DRUGBANK:DB15601,http://purl.obolibrary.org/obo/DRUGBANK_DB15601,none +15.3454106,DRUGBANK:DB15652,http://purl.obolibrary.org/obo/DRUGBANK_DB15652,none +15.3454106,DRUGBANK:DB15671,http://purl.obolibrary.org/obo/DRUGBANK_DB15671,none +15.3454106,DRUGBANK:DB15740,http://purl.obolibrary.org/obo/DRUGBANK_DB15740,none +15.3454106,DRUGBANK:DB15761,http://purl.obolibrary.org/obo/DRUGBANK_DB15761,none +15.3454106,DRUGBANK:DB15762,http://purl.obolibrary.org/obo/DRUGBANK_DB15762,none +15.3454106,DRUGBANK:DB15836,http://purl.obolibrary.org/obo/DRUGBANK_DB15836,none +15.3454106,DRUGBANK:DB15873,http://purl.obolibrary.org/obo/DRUGBANK_DB15873,none +15.3454106,DRUGBANK:DB15882,http://purl.obolibrary.org/obo/DRUGBANK_DB15882,none +15.3454106,DRUGBANK:DB15960,http://purl.obolibrary.org/obo/DRUGBANK_DB15960,none +15.3454106,DRUGBANK:DB15968,http://purl.obolibrary.org/obo/DRUGBANK_DB15968,none +15.3454106,DRUGBANK:DB16002,http://purl.obolibrary.org/obo/DRUGBANK_DB16002,none +15.3454106,DRUGBANK:DB16007,http://purl.obolibrary.org/obo/DRUGBANK_DB16007,none +15.3454106,DRUGBANK:DB16029,http://purl.obolibrary.org/obo/DRUGBANK_DB16029,none +15.3454106,DRUGBANK:DB16046,http://purl.obolibrary.org/obo/DRUGBANK_DB16046,none +15.3454106,DRUGBANK:DB16095,http://purl.obolibrary.org/obo/DRUGBANK_DB16095,none +15.3454106,DRUGBANK:DB16139,http://purl.obolibrary.org/obo/DRUGBANK_DB16139,none +15.3454106,DRUGBANK:DB16148,http://purl.obolibrary.org/obo/DRUGBANK_DB16148,none +15.3454106,DRUGBANK:DB16154,http://purl.obolibrary.org/obo/DRUGBANK_DB16154,none +15.3454106,DRUGBANK:DB16161,http://purl.obolibrary.org/obo/DRUGBANK_DB16161,none +15.3454106,DRUGBANK:DB16221,http://purl.obolibrary.org/obo/DRUGBANK_DB16221,none +15.3454106,DRUGBANK:DB16237,http://purl.obolibrary.org/obo/DRUGBANK_DB16237,none +15.3454106,DRUGBANK:DB16244,http://purl.obolibrary.org/obo/DRUGBANK_DB16244,none +15.3454106,DRUGBANK:DB16246,http://purl.obolibrary.org/obo/DRUGBANK_DB16246,none +15.3454106,DRUGBANK:DB16265,http://purl.obolibrary.org/obo/DRUGBANK_DB16265,none +15.3454106,DRUGBANK:DB16296,http://purl.obolibrary.org/obo/DRUGBANK_DB16296,none +15.3454106,DRUGBANK:DB16325,http://purl.obolibrary.org/obo/DRUGBANK_DB16325,none +15.3454106,DRUGBANK:DB16329,http://purl.obolibrary.org/obo/DRUGBANK_DB16329,none +15.3454106,DRUGBANK:DB16342,http://purl.obolibrary.org/obo/DRUGBANK_DB16342,none +15.3454106,DRUGBANK:DB16354,http://purl.obolibrary.org/obo/DRUGBANK_DB16354,none +15.3454106,GO:0000107,http://purl.obolibrary.org/obo/GO_0000107,imidazoleglycerol-phosphate synthase activity +15.3454106,GO:0000140,http://purl.obolibrary.org/obo/GO_0000140,acylglycerone-phosphate reductase activity +15.3454106,GO:0000224,http://purl.obolibrary.org/obo/GO_0000224,peptide-N4-(N-acetyl-beta-glucosaminyl)asparagine amidase activity +15.3454106,GO:0000225,http://purl.obolibrary.org/obo/GO_0000225,N-acetylglucosaminylphosphatidylinositol deacetylase activity +15.3454106,GO:0000239,http://purl.obolibrary.org/obo/GO_0000239,pachytene +15.3454106,GO:0000253,http://purl.obolibrary.org/obo/GO_0000253,3-keto sterol reductase activity +15.3454106,GO:0000334,http://purl.obolibrary.org/obo/GO_0000334,"3-hydroxyanthranilate 3,4-dioxygenase activity" +15.3454106,GO:0000712,http://purl.obolibrary.org/obo/GO_0000712,resolution of meiotic recombination intermediates +15.3454106,GO:0001537,http://purl.obolibrary.org/obo/GO_0001537,N-acetylgalactosamine 4-O-sulfotransferase activity +15.3454106,GO:0001581,http://purl.obolibrary.org/obo/GO_0001581,detection of chemical stimulus involved in sensory perception of sour taste +15.3454106,GO:0001701,http://purl.obolibrary.org/obo/GO_0001701,in utero embryonic development +15.3454106,GO:0001754,http://purl.obolibrary.org/obo/GO_0001754,eye photoreceptor cell differentiation +15.3454106,GO:0001880,http://purl.obolibrary.org/obo/GO_0001880,Mullerian duct regression +15.3454106,GO:0002124,http://purl.obolibrary.org/obo/GO_0002124,territorial aggressive behavior +15.3454106,GO:0002178,http://purl.obolibrary.org/obo/GO_0002178,palmitoyltransferase complex +15.3454106,GO:0002316,http://purl.obolibrary.org/obo/GO_0002316,follicular B cell differentiation +15.3454106,GO:0002323,http://purl.obolibrary.org/obo/GO_0002323,natural killer cell activation involved in immune response +15.3454106,GO:0002517,http://purl.obolibrary.org/obo/GO_0002517,T cell tolerance induction +15.3454106,GO:0002664,http://purl.obolibrary.org/obo/GO_0002664,regulation of T cell tolerance induction +15.3454106,GO:0002667,http://purl.obolibrary.org/obo/GO_0002667,regulation of T cell anergy +15.3454106,GO:0002677,http://purl.obolibrary.org/obo/GO_0002677,negative regulation of chronic inflammatory response +15.3454106,GO:0002705,http://purl.obolibrary.org/obo/GO_0002705,positive regulation of leukocyte mediated immunity +15.3454106,GO:0002759,http://purl.obolibrary.org/obo/GO_0002759,regulation of antimicrobial humoral response +15.3454106,GO:0002779,http://purl.obolibrary.org/obo/GO_0002779,antibacterial peptide secretion +15.3454106,GO:0002784,http://purl.obolibrary.org/obo/GO_0002784,regulation of antimicrobial peptide production +15.3454106,GO:0002828,http://purl.obolibrary.org/obo/GO_0002828,regulation of type 2 immune response +15.3454106,GO:0002862,http://purl.obolibrary.org/obo/GO_0002862,negative regulation of inflammatory response to antigenic stimulus +15.3454106,GO:0002865,http://purl.obolibrary.org/obo/GO_0002865,negative regulation of acute inflammatory response to antigenic stimulus +15.3454106,GO:0002884,http://purl.obolibrary.org/obo/GO_0002884,negative regulation of hypersensitivity +15.3454106,GO:0002911,http://purl.obolibrary.org/obo/GO_0002911,regulation of lymphocyte anergy +15.3454106,GO:0003725,http://purl.obolibrary.org/obo/GO_0003725,double-stranded RNA binding +15.3454106,GO:0003727,http://purl.obolibrary.org/obo/GO_0003727,single-stranded RNA binding +15.3454106,GO:0004410,http://purl.obolibrary.org/obo/GO_0004410,homocitrate synthase activity +15.3454106,GO:0004458,http://purl.obolibrary.org/obo/GO_0004458,D-lactate dehydrogenase (cytochrome) activity +15.3454106,GO:0004579,http://purl.obolibrary.org/obo/GO_0004579,dolichyl-diphosphooligosaccharide-protein glycotransferase activity +15.3454106,GO:0004635,http://purl.obolibrary.org/obo/GO_0004635,phosphoribosyl-AMP cyclohydrolase activity +15.3454106,GO:0004641,http://purl.obolibrary.org/obo/GO_0004641,phosphoribosylformylglycinamidine cyclo-ligase activity +15.3454106,GO:0004878,http://purl.obolibrary.org/obo/GO_0004878,complement component C5a receptor activity +15.3454106,GO:0004910,http://purl.obolibrary.org/obo/GO_0004910,"interleukin-1, type II, blocking receptor activity" +15.3454106,GO:0004932,http://purl.obolibrary.org/obo/GO_0004932,mating-type factor pheromone receptor activity +15.3454106,GO:0005040,http://purl.obolibrary.org/obo/GO_0005040,none +15.3454106,GO:0005845,http://purl.obolibrary.org/obo/GO_0005845,mRNA cap binding complex +15.3454106,GO:0005950,http://purl.obolibrary.org/obo/GO_0005950,anthranilate synthase complex +15.3454106,GO:0005952,http://purl.obolibrary.org/obo/GO_0005952,cAMP-dependent protein kinase complex +15.3454106,GO:0006045,http://purl.obolibrary.org/obo/GO_0006045,N-acetylglucosamine biosynthetic process +15.3454106,GO:0006077,http://purl.obolibrary.org/obo/GO_0006077,(1->6)-beta-D-glucan metabolic process +15.3454106,GO:0006078,http://purl.obolibrary.org/obo/GO_0006078,(1->6)-beta-D-glucan biosynthetic process +15.3454106,GO:0006104,http://purl.obolibrary.org/obo/GO_0006104,succinyl-CoA metabolic process +15.3454106,GO:0006172,http://purl.obolibrary.org/obo/GO_0006172,ADP biosynthetic process +15.3454106,GO:0006376,http://purl.obolibrary.org/obo/GO_0006376,mRNA splice site selection +15.3454106,GO:0006450,http://purl.obolibrary.org/obo/GO_0006450,regulation of translational fidelity +15.3454106,GO:0006527,http://purl.obolibrary.org/obo/GO_0006527,arginine catabolic process +15.3454106,GO:0006606,http://purl.obolibrary.org/obo/GO_0006606,protein import into nucleus +15.3454106,GO:0006667,http://purl.obolibrary.org/obo/GO_0006667,sphinganine metabolic process +15.3454106,GO:0006671,http://purl.obolibrary.org/obo/GO_0006671,phytosphingosine metabolic process +15.3454106,GO:0006682,http://purl.obolibrary.org/obo/GO_0006682,galactosylceramide biosynthetic process +15.3454106,GO:0007064,http://purl.obolibrary.org/obo/GO_0007064,mitotic sister chromatid cohesion +15.3454106,GO:0007274,http://purl.obolibrary.org/obo/GO_0007274,neuromuscular synaptic transmission +15.3454106,GO:0007284,http://purl.obolibrary.org/obo/GO_0007284,spermatogonial cell division +15.3454106,GO:0007500,http://purl.obolibrary.org/obo/GO_0007500,mesodermal cell fate determination +15.3454106,GO:0008092,http://purl.obolibrary.org/obo/GO_0008092,cytoskeletal protein binding +15.3454106,GO:0008093,http://purl.obolibrary.org/obo/GO_0008093,cytoskeletal anchor activity +15.3454106,GO:0008328,http://purl.obolibrary.org/obo/GO_0008328,ionotropic glutamate receptor complex +15.3454106,GO:0008413,http://purl.obolibrary.org/obo/GO_0008413,"8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity" +15.3454106,GO:0008446,http://purl.obolibrary.org/obo/GO_0008446,"GDP-mannose 4,6-dehydratase activity" +15.3454106,GO:0008469,http://purl.obolibrary.org/obo/GO_0008469,histone-arginine N-methyltransferase activity +15.3454106,GO:0008666,http://purl.obolibrary.org/obo/GO_0008666,"2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase activity" +15.3454106,GO:0008726,http://purl.obolibrary.org/obo/GO_0008726,alkanesulfonate monooxygenase activity +15.3454106,GO:0008728,http://purl.obolibrary.org/obo/GO_0008728,GTP diphosphokinase activity +15.3454106,GO:0008821,http://purl.obolibrary.org/obo/GO_0008821,crossover junction endodeoxyribonuclease activity +15.3454106,GO:0008826,http://purl.obolibrary.org/obo/GO_0008826,cysteine sulfinate desulfinase activity +15.3454106,GO:0008871,http://purl.obolibrary.org/obo/GO_0008871,aminoglycoside 2''-nucleotidyltransferase activity +15.3454106,GO:0008942,http://purl.obolibrary.org/obo/GO_0008942,nitrite reductase [NAD(P)H] activity +15.3454106,GO:0008966,http://purl.obolibrary.org/obo/GO_0008966,phosphoglucosamine mutase activity +15.3454106,GO:0008972,http://purl.obolibrary.org/obo/GO_0008972,phosphomethylpyrimidine kinase activity +15.3454106,GO:0008982,http://purl.obolibrary.org/obo/GO_0008982,protein-N(PI)-phosphohistidine-sugar phosphotransferase activity +15.3454106,GO:0009016,http://purl.obolibrary.org/obo/GO_0009016,succinyldiaminopimelate transaminase activity +15.3454106,GO:0009027,http://purl.obolibrary.org/obo/GO_0009027,tartrate dehydrogenase activity +15.3454106,GO:0009090,http://purl.obolibrary.org/obo/GO_0009090,homoserine biosynthetic process +15.3454106,GO:0009153,http://purl.obolibrary.org/obo/GO_0009153,purine deoxyribonucleotide biosynthetic process +15.3454106,GO:0009609,http://purl.obolibrary.org/obo/GO_0009609,response to symbiotic bacterium +15.3454106,GO:0009650,http://purl.obolibrary.org/obo/GO_0009650,UV protection +15.3454106,GO:0009711,http://purl.obolibrary.org/obo/GO_0009711,purine alkaloid biosynthetic process +15.3454106,GO:0009904,http://purl.obolibrary.org/obo/GO_0009904,chloroplast accumulation movement +15.3454106,GO:0009982,http://purl.obolibrary.org/obo/GO_0009982,pseudouridine synthase activity +15.3454106,GO:0010014,http://purl.obolibrary.org/obo/GO_0010014,meristem initiation +15.3454106,GO:0010093,http://purl.obolibrary.org/obo/GO_0010093,specification of floral organ identity +15.3454106,GO:0010115,http://purl.obolibrary.org/obo/GO_0010115,regulation of abscisic acid biosynthetic process +15.3454106,GO:0010254,http://purl.obolibrary.org/obo/GO_0010254,nectary development +15.3454106,GO:0010271,http://purl.obolibrary.org/obo/GO_0010271,regulation of chlorophyll catabolic process +15.3454106,GO:0010283,http://purl.obolibrary.org/obo/GO_0010283,pinoresinol reductase activity +15.3454106,GO:0010560,http://purl.obolibrary.org/obo/GO_0010560,positive regulation of glycoprotein biosynthetic process +15.3454106,GO:0010660,http://purl.obolibrary.org/obo/GO_0010660,regulation of muscle cell apoptotic process +15.3454106,GO:0010765,http://purl.obolibrary.org/obo/GO_0010765,positive regulation of sodium ion transport +15.3454106,GO:0010771,http://purl.obolibrary.org/obo/GO_0010771,negative regulation of cell morphogenesis involved in differentiation +15.3454106,GO:0010893,http://purl.obolibrary.org/obo/GO_0010893,positive regulation of steroid biosynthetic process +15.3454106,GO:0010939,http://purl.obolibrary.org/obo/GO_0010939,regulation of necrotic cell death +15.3454106,GO:0014802,http://purl.obolibrary.org/obo/GO_0014802,terminal cisterna +15.3454106,GO:0014816,http://purl.obolibrary.org/obo/GO_0014816,skeletal muscle satellite cell differentiation +15.3454106,GO:0014830,http://purl.obolibrary.org/obo/GO_0014830,arteriole smooth muscle contraction +15.3454106,GO:0014857,http://purl.obolibrary.org/obo/GO_0014857,regulation of skeletal muscle cell proliferation +15.3454106,GO:0015009,http://purl.obolibrary.org/obo/GO_0015009,corrin metabolic process +15.3454106,GO:0015043,http://purl.obolibrary.org/obo/GO_0015043,leghemoglobin reductase activity +15.3454106,GO:0015069,http://purl.obolibrary.org/obo/GO_0015069,scyllo-inosamine-4-phosphate amidinotransferase activity +15.3454106,GO:0015090,http://purl.obolibrary.org/obo/GO_0015090,low-affinity ferric iron ion transmembrane transporter activity +15.3454106,GO:0015091,http://purl.obolibrary.org/obo/GO_0015091,ferric iron transmembrane transporter activity +15.3454106,GO:0015677,http://purl.obolibrary.org/obo/GO_0015677,copper ion import +15.3454106,GO:0015752,http://purl.obolibrary.org/obo/GO_0015752,D-ribose transmembrane transport +15.3454106,GO:0015985,http://purl.obolibrary.org/obo/GO_0015985,"energy coupled proton transport, down electrochemical gradient" +15.3454106,GO:0015986,http://purl.obolibrary.org/obo/GO_0015986,ATP synthesis coupled proton transport +15.3454106,GO:0016013,http://purl.obolibrary.org/obo/GO_0016013,syntrophin complex +15.3454106,GO:0016027,http://purl.obolibrary.org/obo/GO_0016027,inaD signaling complex +15.3454106,GO:0016103,http://purl.obolibrary.org/obo/GO_0016103,diterpenoid catabolic process +15.3454106,GO:0016486,http://purl.obolibrary.org/obo/GO_0016486,peptide hormone processing +15.3454106,GO:0016492,http://purl.obolibrary.org/obo/GO_0016492,G protein-coupled neurotensin receptor activity +15.3454106,GO:0016867,http://purl.obolibrary.org/obo/GO_0016867,"intramolecular transferase activity, transferring acyl groups" +15.3454106,GO:0016985,http://purl.obolibrary.org/obo/GO_0016985,"mannan endo-1,4-beta-mannosidase activity" +15.3454106,GO:0018025,http://purl.obolibrary.org/obo/GO_0018025,calmodulin-lysine N-methyltransferase activity +15.3454106,GO:0018112,http://purl.obolibrary.org/obo/GO_0018112,proline racemase activity +15.3454106,GO:0018465,http://purl.obolibrary.org/obo/GO_0018465,vanillyl-alcohol oxidase activity +15.3454106,GO:0018484,http://purl.obolibrary.org/obo/GO_0018484,4-hydroxybenzaldehyde dehydrogenase activity +15.3454106,GO:0018546,http://purl.obolibrary.org/obo/GO_0018546,nitrobenzene nitroreductase activity +15.3454106,GO:0018759,http://purl.obolibrary.org/obo/GO_0018759,methenyltetrahydromethanopterin cyclohydrolase activity +15.3454106,GO:0018838,http://purl.obolibrary.org/obo/GO_0018838,mandelate racemase activity +15.3454106,GO:0018845,http://purl.obolibrary.org/obo/GO_0018845,2-hydroxychromene-2-carboxylate isomerase activity +15.3454106,GO:0018902,http://purl.obolibrary.org/obo/GO_0018902,"1,3-dichloro-2-propanol metabolic process" +15.3454106,GO:0018914,http://purl.obolibrary.org/obo/GO_0018914,chlorobenzene metabolic process +15.3454106,GO:0018924,http://purl.obolibrary.org/obo/GO_0018924,mandelate metabolic process +15.3454106,GO:0018925,http://purl.obolibrary.org/obo/GO_0018925,m-cresol metabolic process +15.3454106,GO:0018949,http://purl.obolibrary.org/obo/GO_0018949,m-xylene metabolic process +15.3454106,GO:0018960,http://purl.obolibrary.org/obo/GO_0018960,4-nitrophenol metabolic process +15.3454106,GO:0018968,http://purl.obolibrary.org/obo/GO_0018968,tetrahydrofuran metabolic process +15.3454106,GO:0018980,http://purl.obolibrary.org/obo/GO_0018980,"2,4,5-trichlorophenoxyacetic acid metabolic process" +15.3454106,GO:0019049,http://purl.obolibrary.org/obo/GO_0019049,mitigation of host defenses by virus +15.3454106,GO:0019148,http://purl.obolibrary.org/obo/GO_0019148,D-cysteine desulfhydrase activity +15.3454106,GO:0019181,http://purl.obolibrary.org/obo/GO_0019181,halohydrin hydrogen-halide-lyase activity +15.3454106,GO:0019295,http://purl.obolibrary.org/obo/GO_0019295,coenzyme M biosynthetic process +15.3454106,GO:0019296,http://purl.obolibrary.org/obo/GO_0019296,coenzyme M metabolic process +15.3454106,GO:0019418,http://purl.obolibrary.org/obo/GO_0019418,sulfide oxidation +15.3454106,GO:0019522,http://purl.obolibrary.org/obo/GO_0019522,ketogluconate metabolic process +15.3454106,GO:0019536,http://purl.obolibrary.org/obo/GO_0019536,vibriobactin metabolic process +15.3454106,GO:0019537,http://purl.obolibrary.org/obo/GO_0019537,vibriobactin biosynthetic process +15.3454106,GO:0019567,http://purl.obolibrary.org/obo/GO_0019567,arabinose biosynthetic process +15.3454106,GO:0019620,http://purl.obolibrary.org/obo/GO_0019620,aerobic benzoate metabolic process +15.3454106,GO:0020012,http://purl.obolibrary.org/obo/GO_0020012,none +15.3454106,GO:0021542,http://purl.obolibrary.org/obo/GO_0021542,dentate gyrus development +15.3454106,GO:0021780,http://purl.obolibrary.org/obo/GO_0021780,glial cell fate specification +15.3454106,GO:0021884,http://purl.obolibrary.org/obo/GO_0021884,forebrain neuron development +15.3454106,GO:0021987,http://purl.obolibrary.org/obo/GO_0021987,cerebral cortex development +15.3454106,GO:0030038,http://purl.obolibrary.org/obo/GO_0030038,contractile actin filament bundle assembly +15.3454106,GO:0030267,http://purl.obolibrary.org/obo/GO_0030267,glyoxylate reductase (NADP+) activity +15.3454106,GO:0030326,http://purl.obolibrary.org/obo/GO_0030326,embryonic limb morphogenesis +15.3454106,GO:0030411,http://purl.obolibrary.org/obo/GO_0030411,scytalone dehydratase activity +15.3454106,GO:0030683,http://purl.obolibrary.org/obo/GO_0030683,mitigation of host immune response by virus +15.3454106,GO:0030717,http://purl.obolibrary.org/obo/GO_0030717,oocyte karyosome formation +15.3454106,GO:0030733,http://purl.obolibrary.org/obo/GO_0030733,fatty acid O-methyltransferase activity +15.3454106,GO:0030735,http://purl.obolibrary.org/obo/GO_0030735,carnosine N-methyltransferase activity +15.3454106,GO:0030800,http://purl.obolibrary.org/obo/GO_0030800,none +15.3454106,GO:0030815,http://purl.obolibrary.org/obo/GO_0030815,none +15.3454106,GO:0030820,http://purl.obolibrary.org/obo/GO_0030820,none +15.3454106,GO:0030858,http://purl.obolibrary.org/obo/GO_0030858,positive regulation of epithelial cell differentiation +15.3454106,GO:0030912,http://purl.obolibrary.org/obo/GO_0030912,response to deep water +15.3454106,GO:0030979,http://purl.obolibrary.org/obo/GO_0030979,alpha-glucan biosynthetic process +15.3454106,GO:0031050,http://purl.obolibrary.org/obo/GO_0031050,dsRNA processing +15.3454106,GO:0031073,http://purl.obolibrary.org/obo/GO_0031073,cholesterol 26-hydroxylase activity +15.3454106,GO:0031136,http://purl.obolibrary.org/obo/GO_0031136,positive regulation of conjugation +15.3454106,GO:0031226,http://purl.obolibrary.org/obo/GO_0031226,intrinsic component of plasma membrane +15.3454106,GO:0031265,http://purl.obolibrary.org/obo/GO_0031265,CD95 death-inducing signaling complex +15.3454106,GO:0031398,http://purl.obolibrary.org/obo/GO_0031398,positive regulation of protein ubiquitination +15.3454106,GO:0031556,http://purl.obolibrary.org/obo/GO_0031556,transcriptional attenuation by ribosome +15.3454106,GO:0031572,http://purl.obolibrary.org/obo/GO_0031572,none +15.3454106,GO:0031906,http://purl.obolibrary.org/obo/GO_0031906,late endosome lumen +15.3454106,GO:0031942,http://purl.obolibrary.org/obo/GO_0031942,i-AAA complex +15.3454106,GO:0032096,http://purl.obolibrary.org/obo/GO_0032096,negative regulation of response to food +15.3454106,GO:0032099,http://purl.obolibrary.org/obo/GO_0032099,negative regulation of appetite +15.3454106,GO:0032113,http://purl.obolibrary.org/obo/GO_0032113,regulation of carbohydrate phosphatase activity +15.3454106,GO:0032114,http://purl.obolibrary.org/obo/GO_0032114,regulation of glucose-6-phosphatase activity +15.3454106,GO:0032221,http://purl.obolibrary.org/obo/GO_0032221,Rpd3S/Clr6-CII complex +15.3454106,GO:0032245,http://purl.obolibrary.org/obo/GO_0032245,regulation of purine nucleoside transport +15.3454106,GO:0032253,http://purl.obolibrary.org/obo/GO_0032253,dense core granule localization +15.3454106,GO:0032289,http://purl.obolibrary.org/obo/GO_0032289,central nervous system myelin formation +15.3454106,GO:0032389,http://purl.obolibrary.org/obo/GO_0032389,MutLalpha complex +15.3454106,GO:0032682,http://purl.obolibrary.org/obo/GO_0032682,negative regulation of chemokine production +15.3454106,GO:0032769,http://purl.obolibrary.org/obo/GO_0032769,negative regulation of monooxygenase activity +15.3454106,GO:0032798,http://purl.obolibrary.org/obo/GO_0032798,Swi5-Sfr1 complex +15.3454106,GO:0033227,http://purl.obolibrary.org/obo/GO_0033227,dsRNA transport +15.3454106,GO:0033551,http://purl.obolibrary.org/obo/GO_0033551,monopolin complex +15.3454106,GO:0033592,http://purl.obolibrary.org/obo/GO_0033592,RNA strand annealing activity +15.3454106,GO:0033598,http://purl.obolibrary.org/obo/GO_0033598,mammary gland epithelial cell proliferation +15.3454106,GO:0033622,http://purl.obolibrary.org/obo/GO_0033622,integrin activation +15.3454106,GO:0033689,http://purl.obolibrary.org/obo/GO_0033689,negative regulation of osteoblast proliferation +15.3454106,GO:0033698,http://purl.obolibrary.org/obo/GO_0033698,Rpd3L complex +15.3454106,GO:0033735,http://purl.obolibrary.org/obo/GO_0033735,aspartate dehydrogenase activity +15.3454106,GO:0033844,http://purl.obolibrary.org/obo/GO_0033844,galactose-6-sulfurylase activity +15.3454106,GO:0033877,http://purl.obolibrary.org/obo/GO_0033877,succinyl-CoA:(R)-benzylsuccinate CoA-transferase activity +15.3454106,GO:0033899,http://purl.obolibrary.org/obo/GO_0033899,ribonuclease U2 activity +15.3454106,GO:0033952,http://purl.obolibrary.org/obo/GO_0033952,iota-carrageenase activity +15.3454106,GO:0033980,http://purl.obolibrary.org/obo/GO_0033980,phosphonopyruvate decarboxylase activity +15.3454106,GO:0033987,http://purl.obolibrary.org/obo/GO_0033987,2-hydroxyisoflavanone dehydratase activity +15.3454106,GO:0034052,http://purl.obolibrary.org/obo/GO_0034052,positive regulation of plant-type hypersensitive response +15.3454106,GO:0034211,http://purl.obolibrary.org/obo/GO_0034211,GTP-dependent protein kinase activity +15.3454106,GO:0034239,http://purl.obolibrary.org/obo/GO_0034239,regulation of macrophage fusion +15.3454106,GO:0034270,http://purl.obolibrary.org/obo/GO_0034270,Cvt complex +15.3454106,GO:0034301,http://purl.obolibrary.org/obo/GO_0034301,endospore formation +15.3454106,GO:0034368,http://purl.obolibrary.org/obo/GO_0034368,protein-lipid complex remodeling +15.3454106,GO:0034369,http://purl.obolibrary.org/obo/GO_0034369,plasma lipoprotein particle remodeling +15.3454106,GO:0034391,http://purl.obolibrary.org/obo/GO_0034391,regulation of smooth muscle cell apoptotic process +15.3454106,GO:0034410,http://purl.obolibrary.org/obo/GO_0034410,cell wall beta-glucan biosynthetic process +15.3454106,GO:0034451,http://purl.obolibrary.org/obo/GO_0034451,centriolar satellite +15.3454106,GO:0034464,http://purl.obolibrary.org/obo/GO_0034464,BBSome +15.3454106,GO:0034589,http://purl.obolibrary.org/obo/GO_0034589,hydroxyproline transport +15.3454106,GO:0034592,http://purl.obolibrary.org/obo/GO_0034592,synaptic vesicle lumen +15.3454106,GO:0034653,http://purl.obolibrary.org/obo/GO_0034653,retinoic acid catabolic process +15.3454106,GO:0034667,http://purl.obolibrary.org/obo/GO_0034667,integrin alpha3-beta1 complex +15.3454106,GO:0034795,http://purl.obolibrary.org/obo/GO_0034795,cyclohexane monooxygenase activity +15.3454106,GO:0035044,http://purl.obolibrary.org/obo/GO_0035044,sperm aster formation +15.3454106,GO:0035068,http://purl.obolibrary.org/obo/GO_0035068,none +15.3454106,GO:0035137,http://purl.obolibrary.org/obo/GO_0035137,hindlimb morphogenesis +15.3454106,GO:0035196,http://purl.obolibrary.org/obo/GO_0035196,production of miRNAs involved in gene silencing by miRNA +15.3454106,GO:0035270,http://purl.obolibrary.org/obo/GO_0035270,endocrine system development +15.3454106,GO:0035499,http://purl.obolibrary.org/obo/GO_0035499,carnosine biosynthetic process +15.3454106,GO:0035542,http://purl.obolibrary.org/obo/GO_0035542,regulation of SNARE complex assembly +15.3454106,GO:0035561,http://purl.obolibrary.org/obo/GO_0035561,regulation of chromatin binding +15.3454106,GO:0035595,http://purl.obolibrary.org/obo/GO_0035595,N-acetylglucosaminylinositol deacetylase activity +15.3454106,GO:0035643,http://purl.obolibrary.org/obo/GO_0035643,L-DOPA receptor activity +15.3454106,GO:0035791,http://purl.obolibrary.org/obo/GO_0035791,platelet-derived growth factor receptor-beta signaling pathway +15.3454106,GO:0035983,http://purl.obolibrary.org/obo/GO_0035983,response to trichostatin A +15.3454106,GO:0036073,http://purl.obolibrary.org/obo/GO_0036073,perichondral ossification +15.3454106,GO:0036234,http://purl.obolibrary.org/obo/GO_0036234,deglucuronidation +15.3454106,GO:0036323,http://purl.obolibrary.org/obo/GO_0036323,vascular endothelial growth factor receptor-1 signaling pathway +15.3454106,GO:0036365,http://purl.obolibrary.org/obo/GO_0036365,transforming growth factor beta2 activation +15.3454106,GO:0036382,http://purl.obolibrary.org/obo/GO_0036382,flavin reductase (NADH) activity +15.3454106,GO:0036431,http://purl.obolibrary.org/obo/GO_0036431,dCMP kinase activity +15.3454106,GO:0036451,http://purl.obolibrary.org/obo/GO_0036451,cap mRNA methylation +15.3454106,GO:0038173,http://purl.obolibrary.org/obo/GO_0038173,interleukin-17A-mediated signaling pathway +15.3454106,GO:0039503,http://purl.obolibrary.org/obo/GO_0039503,suppression by virus of host innate immune response +15.3454106,GO:0039662,http://purl.obolibrary.org/obo/GO_0039662,host cell outer membrane +15.3454106,GO:0039699,http://purl.obolibrary.org/obo/GO_0039699,viral mRNA cap methylation +15.3454106,GO:0042012,http://purl.obolibrary.org/obo/GO_0042012,interleukin-16 receptor activity +15.3454106,GO:0042023,http://purl.obolibrary.org/obo/GO_0042023,DNA endoreduplication +15.3454106,GO:0042051,http://purl.obolibrary.org/obo/GO_0042051,compound eye photoreceptor development +15.3454106,GO:0042102,http://purl.obolibrary.org/obo/GO_0042102,positive regulation of T cell proliferation +15.3454106,GO:0042147,http://purl.obolibrary.org/obo/GO_0042147,"retrograde transport, endosome to Golgi" +15.3454106,GO:0042269,http://purl.obolibrary.org/obo/GO_0042269,regulation of natural killer cell mediated cytotoxicity +15.3454106,GO:0042363,http://purl.obolibrary.org/obo/GO_0042363,fat-soluble vitamin catabolic process +15.3454106,GO:0042407,http://purl.obolibrary.org/obo/GO_0042407,cristae formation +15.3454106,GO:0042453,http://purl.obolibrary.org/obo/GO_0042453,deoxyguanosine metabolic process +15.3454106,GO:0042462,http://purl.obolibrary.org/obo/GO_0042462,eye photoreceptor cell development +15.3454106,GO:0042557,http://purl.obolibrary.org/obo/GO_0042557,eukaryotic elongation factor-2 kinase activator activity +15.3454106,GO:0042567,http://purl.obolibrary.org/obo/GO_0042567,insulin-like growth factor ternary complex +15.3454106,GO:0042595,http://purl.obolibrary.org/obo/GO_0042595,behavioral response to starvation +15.3454106,GO:0042613,http://purl.obolibrary.org/obo/GO_0042613,MHC class II protein complex +15.3454106,GO:0042631,http://purl.obolibrary.org/obo/GO_0042631,cellular response to water deprivation +15.3454106,GO:0042800,http://purl.obolibrary.org/obo/GO_0042800,histone methyltransferase activity (H3-K4 specific) +15.3454106,GO:0042839,http://purl.obolibrary.org/obo/GO_0042839,D-glucuronate metabolic process +15.3454106,GO:0042867,http://purl.obolibrary.org/obo/GO_0042867,pyruvate catabolic process +15.3454106,GO:0042914,http://purl.obolibrary.org/obo/GO_0042914,colicin transport +15.3454106,GO:0043149,http://purl.obolibrary.org/obo/GO_0043149,stress fiber assembly +15.3454106,GO:0043313,http://purl.obolibrary.org/obo/GO_0043313,regulation of neutrophil degranulation +15.3454106,GO:0043316,http://purl.obolibrary.org/obo/GO_0043316,cytotoxic T cell degranulation +15.3454106,GO:0043320,http://purl.obolibrary.org/obo/GO_0043320,natural killer cell degranulation +15.3454106,GO:0043529,http://purl.obolibrary.org/obo/GO_0043529,GET complex +15.3454106,GO:0043547,http://purl.obolibrary.org/obo/GO_0043547,positive regulation of GTPase activity +15.3454106,GO:0043564,http://purl.obolibrary.org/obo/GO_0043564,Ku70:Ku80 complex +15.3454106,GO:0043704,http://purl.obolibrary.org/obo/GO_0043704,photoreceptor cell fate specification +15.3454106,GO:0043705,http://purl.obolibrary.org/obo/GO_0043705,cyanophycin metabolic process +15.3454106,GO:0043821,http://purl.obolibrary.org/obo/GO_0043821,propionyl-CoA:succinate CoA-transferase activity +15.3454106,GO:0043833,http://purl.obolibrary.org/obo/GO_0043833,methylamine-specific methylcobalamin:coenzyme M methyltransferase activity +15.3454106,GO:0043985,http://purl.obolibrary.org/obo/GO_0043985,histone H4-R3 methylation +15.3454106,GO:0044268,http://purl.obolibrary.org/obo/GO_0044268,none +15.3454106,GO:0044415,http://purl.obolibrary.org/obo/GO_0044415,none +15.3454106,GO:0044416,http://purl.obolibrary.org/obo/GO_0044416,induction by symbiont of host defense response +15.3454106,GO:0044531,http://purl.obolibrary.org/obo/GO_0044531,none +15.3454106,GO:0044665,http://purl.obolibrary.org/obo/GO_0044665,MLL1/2 complex +15.3454106,GO:0044808,http://purl.obolibrary.org/obo/GO_0044808,oncostatin M production +15.3454106,GO:0045251,http://purl.obolibrary.org/obo/GO_0045251,electron transfer flavoprotein complex +15.3454106,GO:0045467,http://purl.obolibrary.org/obo/GO_0045467,R7 cell development +15.3454106,GO:0045482,http://purl.obolibrary.org/obo/GO_0045482,trichodiene synthase activity +15.3454106,GO:0045499,http://purl.obolibrary.org/obo/GO_0045499,chemorepellent activity +15.3454106,GO:0045541,http://purl.obolibrary.org/obo/GO_0045541,negative regulation of cholesterol biosynthetic process +15.3454106,GO:0045551,http://purl.obolibrary.org/obo/GO_0045551,cinnamyl-alcohol dehydrogenase activity +15.3454106,GO:0045643,http://purl.obolibrary.org/obo/GO_0045643,regulation of eosinophil differentiation +15.3454106,GO:0045646,http://purl.obolibrary.org/obo/GO_0045646,regulation of erythrocyte differentiation +15.3454106,GO:0045663,http://purl.obolibrary.org/obo/GO_0045663,positive regulation of myoblast differentiation +15.3454106,GO:0045746,http://purl.obolibrary.org/obo/GO_0045746,negative regulation of Notch signaling pathway +15.3454106,GO:0045906,http://purl.obolibrary.org/obo/GO_0045906,negative regulation of vasoconstriction +15.3454106,GO:0045915,http://purl.obolibrary.org/obo/GO_0045915,positive regulation of catecholamine metabolic process +15.3454106,GO:0045918,http://purl.obolibrary.org/obo/GO_0045918,negative regulation of cytolysis +15.3454106,GO:0045964,http://purl.obolibrary.org/obo/GO_0045964,positive regulation of dopamine metabolic process +15.3454106,GO:0046065,http://purl.obolibrary.org/obo/GO_0046065,dCTP metabolic process +15.3454106,GO:0046096,http://purl.obolibrary.org/obo/GO_0046096,deoxyuridine metabolic process +15.3454106,GO:0046113,http://purl.obolibrary.org/obo/GO_0046113,nucleobase catabolic process +15.3454106,GO:0046140,http://purl.obolibrary.org/obo/GO_0046140,corrin biosynthetic process +15.3454106,GO:0046170,http://purl.obolibrary.org/obo/GO_0046170,methanol catabolic process +15.3454106,GO:0046335,http://purl.obolibrary.org/obo/GO_0046335,ethanolamine biosynthetic process +15.3454106,GO:0046361,http://purl.obolibrary.org/obo/GO_0046361,2-oxobutyrate metabolic process +15.3454106,GO:0046370,http://purl.obolibrary.org/obo/GO_0046370,fructose biosynthetic process +15.3454106,GO:0046372,http://purl.obolibrary.org/obo/GO_0046372,D-arabinose metabolic process +15.3454106,GO:0046396,http://purl.obolibrary.org/obo/GO_0046396,D-galacturonate metabolic process +15.3454106,GO:0046593,http://purl.obolibrary.org/obo/GO_0046593,mandelonitrile lyase activity +15.3454106,GO:0046599,http://purl.obolibrary.org/obo/GO_0046599,regulation of centriole replication +15.3454106,GO:0046819,http://purl.obolibrary.org/obo/GO_0046819,protein secretion by the type V secretion system +15.3454106,GO:0046946,http://purl.obolibrary.org/obo/GO_0046946,hydroxylysine metabolic process +15.3454106,GO:0047119,http://purl.obolibrary.org/obo/GO_0047119,2-methyl-branched-chain-enoyl-CoA reductase activity +15.3454106,GO:0047127,http://purl.obolibrary.org/obo/GO_0047127,thiomorpholine-carboxylate dehydrogenase activity +15.3454106,GO:0047138,http://purl.obolibrary.org/obo/GO_0047138,none +15.3454106,GO:0047141,http://purl.obolibrary.org/obo/GO_0047141,glutathione-cystine transhydrogenase activity +15.3454106,GO:0047207,http://purl.obolibrary.org/obo/GO_0047207,"1,2-beta-fructan 1F-fructosyltransferase activity" +15.3454106,GO:0047228,http://purl.obolibrary.org/obo/GO_0047228,"1,2-diacylglycerol 3-glucosyltransferase activity" +15.3454106,GO:0047304,http://purl.obolibrary.org/obo/GO_0047304,2-aminoethylphosphonate-pyruvate transaminase activity +15.3454106,GO:0047465,http://purl.obolibrary.org/obo/GO_0047465,N-acylglucosamine-6-phosphate 2-epimerase activity +15.3454106,GO:0047469,http://purl.obolibrary.org/obo/GO_0047469,4-carboxymethyl-4-methylbutenolide mutase activity +15.3454106,GO:0047471,http://purl.obolibrary.org/obo/GO_0047471,maltose alpha-D-glucosyltransferase activity +15.3454106,GO:0047472,http://purl.obolibrary.org/obo/GO_0047472,"3-carboxy-cis,cis-muconate cycloisomerase activity" +15.3454106,GO:0047493,http://purl.obolibrary.org/obo/GO_0047493,ceramide cholinephosphotransferase activity +15.3454106,GO:0047568,http://purl.obolibrary.org/obo/GO_0047568,3-oxo-5-beta-steroid 4-dehydrogenase activity +15.3454106,GO:0047634,http://purl.obolibrary.org/obo/GO_0047634,agmatine N4-coumaroyltransferase activity +15.3454106,GO:0047779,http://purl.obolibrary.org/obo/GO_0047779,citrate-CoA ligase activity +15.3454106,GO:0047781,http://purl.obolibrary.org/obo/GO_0047781,citrullinase activity +15.3454106,GO:0047805,http://purl.obolibrary.org/obo/GO_0047805,cytidylate cyclase activity +15.3454106,GO:0047833,http://purl.obolibrary.org/obo/GO_0047833,D-sorbitol dehydrogenase (acceptor) activity +15.3454106,GO:0047865,http://purl.obolibrary.org/obo/GO_0047865,dimethylglycine dehydrogenase activity +15.3454106,GO:0047890,http://purl.obolibrary.org/obo/GO_0047890,flavanone 4-reductase activity +15.3454106,GO:0047894,http://purl.obolibrary.org/obo/GO_0047894,flavonol 3-sulfotransferase activity +15.3454106,GO:0047983,http://purl.obolibrary.org/obo/GO_0047983,homoglutathione synthase activity +15.3454106,GO:0048168,http://purl.obolibrary.org/obo/GO_0048168,regulation of neuronal synaptic plasticity +15.3454106,GO:0048317,http://purl.obolibrary.org/obo/GO_0048317,seed morphogenesis +15.3454106,GO:0048542,http://purl.obolibrary.org/obo/GO_0048542,lymph gland development +15.3454106,GO:0048546,http://purl.obolibrary.org/obo/GO_0048546,digestive tract morphogenesis +15.3454106,GO:0048644,http://purl.obolibrary.org/obo/GO_0048644,muscle organ morphogenesis +15.3454106,GO:0048681,http://purl.obolibrary.org/obo/GO_0048681,negative regulation of axon regeneration +15.3454106,GO:0048758,http://purl.obolibrary.org/obo/GO_0048758,companion cell differentiation +15.3454106,GO:0048802,http://purl.obolibrary.org/obo/GO_0048802,notum morphogenesis +15.3454106,GO:0048883,http://purl.obolibrary.org/obo/GO_0048883,neuromast primordium migration +15.3454106,GO:0050015,http://purl.obolibrary.org/obo/GO_0050015,kievitone hydratase activity +15.3454106,GO:0050075,http://purl.obolibrary.org/obo/GO_0050075,maleate hydratase activity +15.3454106,GO:0050100,http://purl.obolibrary.org/obo/GO_0050100,methylitaconate delta-isomerase activity +15.3454106,GO:0050102,http://purl.obolibrary.org/obo/GO_0050102,cellodextrin phosphorylase activity +15.3454106,GO:0050127,http://purl.obolibrary.org/obo/GO_0050127,N-carbamoylsarcosine amidase activity +15.3454106,GO:0050175,http://purl.obolibrary.org/obo/GO_0050175,phenylalanine dehydrogenase activity +15.3454106,GO:0050212,http://purl.obolibrary.org/obo/GO_0050212,progesterone 11-alpha-monooxygenase activity +15.3454106,GO:0050241,http://purl.obolibrary.org/obo/GO_0050241,pyrroline-2-carboxylate reductase activity +15.3454106,GO:0050247,http://purl.obolibrary.org/obo/GO_0050247,raucaffricine beta-glucosidase activity +15.3454106,GO:0050361,http://purl.obolibrary.org/obo/GO_0050361,tryptophan 2-monooxygenase activity +15.3454106,GO:0050434,http://purl.obolibrary.org/obo/GO_0050434,positive regulation of viral transcription +15.3454106,GO:0050482,http://purl.obolibrary.org/obo/GO_0050482,arachidonic acid secretion +15.3454106,GO:0050529,http://purl.obolibrary.org/obo/GO_0050529,polyneuridine-aldehyde esterase activity +15.3454106,GO:0050545,http://purl.obolibrary.org/obo/GO_0050545,sulfopyruvate decarboxylase activity +15.3454106,GO:0050549,http://purl.obolibrary.org/obo/GO_0050549,cyclohexyl-isocyanide hydratase activity +15.3454106,GO:0050553,http://purl.obolibrary.org/obo/GO_0050553,taxadiene synthase activity +15.3454106,GO:0050630,http://purl.obolibrary.org/obo/GO_0050630,(iso)eugenol O-methyltransferase activity +15.3454106,GO:0050690,http://purl.obolibrary.org/obo/GO_0050690,regulation of defense response to virus by virus +15.3454106,GO:0050761,http://purl.obolibrary.org/obo/GO_0050761,depsipeptide metabolic process +15.3454106,GO:0050763,http://purl.obolibrary.org/obo/GO_0050763,depsipeptide biosynthetic process +15.3454106,GO:0050936,http://purl.obolibrary.org/obo/GO_0050936,xanthophore differentiation +15.3454106,GO:0051000,http://purl.obolibrary.org/obo/GO_0051000,positive regulation of nitric-oxide synthase activity +15.3454106,GO:0051017,http://purl.obolibrary.org/obo/GO_0051017,actin filament bundle assembly +15.3454106,GO:0051161,http://purl.obolibrary.org/obo/GO_0051161,arabitol metabolic process +15.3454106,GO:0051443,http://purl.obolibrary.org/obo/GO_0051443,positive regulation of ubiquitin-protein transferase activity +15.3454106,GO:0051554,http://purl.obolibrary.org/obo/GO_0051554,flavonol metabolic process +15.3454106,GO:0051570,http://purl.obolibrary.org/obo/GO_0051570,regulation of histone H3-K9 methylation +15.3454106,GO:0051622,http://purl.obolibrary.org/obo/GO_0051622,negative regulation of norepinephrine uptake +15.3454106,GO:0051624,http://purl.obolibrary.org/obo/GO_0051624,inhibition of norepinephrine uptake +15.3454106,GO:0051945,http://purl.obolibrary.org/obo/GO_0051945,negative regulation of catecholamine uptake involved in synaptic transmission +15.3454106,GO:0051984,http://purl.obolibrary.org/obo/GO_0051984,positive regulation of chromosome segregation +15.3454106,GO:0051989,http://purl.obolibrary.org/obo/GO_0051989,coproporphyrinogen dehydrogenase activity +15.3454106,GO:0052040,http://purl.obolibrary.org/obo/GO_0052040,modulation by symbiont of host programmed cell death +15.3454106,GO:0052170,http://purl.obolibrary.org/obo/GO_0052170,suppression by symbiont of host innate immune response +15.3454106,GO:0052248,http://purl.obolibrary.org/obo/GO_0052248,none +15.3454106,GO:0052251,http://purl.obolibrary.org/obo/GO_0052251,none +15.3454106,GO:0052309,http://purl.obolibrary.org/obo/GO_0052309,none +15.3454106,GO:0052381,http://purl.obolibrary.org/obo/GO_0052381,tRNA dimethylallyltransferase activity +15.3454106,GO:0052509,http://purl.obolibrary.org/obo/GO_0052509,none +15.3454106,GO:0052510,http://purl.obolibrary.org/obo/GO_0052510,none +15.3454106,GO:0052541,http://purl.obolibrary.org/obo/GO_0052541,plant-type cell wall cellulose metabolic process +15.3454106,GO:0052546,http://purl.obolibrary.org/obo/GO_0052546,cell wall pectin metabolic process +15.3454106,GO:0052561,http://purl.obolibrary.org/obo/GO_0052561,none +15.3454106,GO:0052562,http://purl.obolibrary.org/obo/GO_0052562,suppression by symbiont of host immune response +15.3454106,GO:0052592,http://purl.obolibrary.org/obo/GO_0052592,"oxidoreductase activity, acting on CH or CH2 groups, with an iron-sulfur protein as acceptor" +15.3454106,GO:0052805,http://purl.obolibrary.org/obo/GO_0052805,imidazole-containing compound catabolic process +15.3454106,GO:0055040,http://purl.obolibrary.org/obo/GO_0055040,periplasmic flagellum +15.3454106,GO:0055073,http://purl.obolibrary.org/obo/GO_0055073,cadmium ion homeostasis +15.3454106,GO:0055123,http://purl.obolibrary.org/obo/GO_0055123,digestive system development +15.3454106,GO:0060256,http://purl.obolibrary.org/obo/GO_0060256,regulation of flocculation +15.3454106,GO:0060258,http://purl.obolibrary.org/obo/GO_0060258,negative regulation of filamentous growth +15.3454106,GO:0060280,http://purl.obolibrary.org/obo/GO_0060280,negative regulation of ovulation +15.3454106,GO:0060333,http://purl.obolibrary.org/obo/GO_0060333,interferon-gamma-mediated signaling pathway +15.3454106,GO:0060445,http://purl.obolibrary.org/obo/GO_0060445,branching involved in salivary gland morphogenesis +15.3454106,GO:0060456,http://purl.obolibrary.org/obo/GO_0060456,positive regulation of digestive system process +15.3454106,GO:0060512,http://purl.obolibrary.org/obo/GO_0060512,prostate gland morphogenesis +15.3454106,GO:0060540,http://purl.obolibrary.org/obo/GO_0060540,diaphragm morphogenesis +15.3454106,GO:0060794,http://purl.obolibrary.org/obo/GO_0060794,leaflet morphogenesis +15.3454106,GO:0060987,http://purl.obolibrary.org/obo/GO_0060987,lipid tube +15.3454106,GO:0060988,http://purl.obolibrary.org/obo/GO_0060988,lipid tube assembly +15.3454106,GO:0061042,http://purl.obolibrary.org/obo/GO_0061042,vascular wound healing +15.3454106,GO:0061062,http://purl.obolibrary.org/obo/GO_0061062,regulation of nematode larval development +15.3454106,GO:0061069,http://purl.obolibrary.org/obo/GO_0061069,male urethra development +15.3454106,GO:0061154,http://purl.obolibrary.org/obo/GO_0061154,endothelial tube morphogenesis +15.3454106,GO:0061180,http://purl.obolibrary.org/obo/GO_0061180,mammary gland epithelium development +15.3454106,GO:0061521,http://purl.obolibrary.org/obo/GO_0061521,hepatic stellate cell differentiation +15.3454106,GO:0061552,http://purl.obolibrary.org/obo/GO_0061552,ganglion morphogenesis +15.3454106,GO:0061572,http://purl.obolibrary.org/obo/GO_0061572,actin filament bundle organization +15.3454106,GO:0061988,http://purl.obolibrary.org/obo/GO_0061988,karyosome formation +15.3454106,GO:0070050,http://purl.obolibrary.org/obo/GO_0070050,neuron cellular homeostasis +15.3454106,GO:0070195,http://purl.obolibrary.org/obo/GO_0070195,growth hormone receptor complex +15.3454106,GO:0070292,http://purl.obolibrary.org/obo/GO_0070292,N-acylphosphatidylethanolamine metabolic process +15.3454106,GO:0070295,http://purl.obolibrary.org/obo/GO_0070295,renal water absorption +15.3454106,GO:0070314,http://purl.obolibrary.org/obo/GO_0070314,G1 to G0 transition +15.3454106,GO:0070490,http://purl.obolibrary.org/obo/GO_0070490,protein pupylation +15.3454106,GO:0070501,http://purl.obolibrary.org/obo/GO_0070501,poly-gamma-glutamate biosynthetic process +15.3454106,GO:0070546,http://purl.obolibrary.org/obo/GO_0070546,L-phenylalanine aminotransferase activity +15.3454106,GO:0070571,http://purl.obolibrary.org/obo/GO_0070571,negative regulation of neuron projection regeneration +15.3454106,GO:0070654,http://purl.obolibrary.org/obo/GO_0070654,sensory epithelium regeneration +15.3454106,GO:0070732,http://purl.obolibrary.org/obo/GO_0070732,spindle envelope +15.3454106,GO:0070779,http://purl.obolibrary.org/obo/GO_0070779,D-aspartate import across plasma membrane +15.3454106,GO:0070784,http://purl.obolibrary.org/obo/GO_0070784,regulation of growth of unicellular organism as a thread of attached cells +15.3454106,GO:0070918,http://purl.obolibrary.org/obo/GO_0070918,production of small RNA involved in gene silencing by RNA +15.3454106,GO:0071026,http://purl.obolibrary.org/obo/GO_0071026,cytoplasmic RNA surveillance +15.3454106,GO:0071073,http://purl.obolibrary.org/obo/GO_0071073,positive regulation of phospholipid biosynthetic process +15.3454106,GO:0071164,http://purl.obolibrary.org/obo/GO_0071164,RNA trimethylguanosine synthase activity +15.3454106,GO:0071254,http://purl.obolibrary.org/obo/GO_0071254,cytoplasmic U snRNP body +15.3454106,GO:0071258,http://purl.obolibrary.org/obo/GO_0071258,cellular response to gravity +15.3454106,GO:0071259,http://purl.obolibrary.org/obo/GO_0071259,cellular response to magnetism +15.3454106,GO:0071305,http://purl.obolibrary.org/obo/GO_0071305,cellular response to vitamin D +15.3454106,GO:0071316,http://purl.obolibrary.org/obo/GO_0071316,cellular response to nicotine +15.3454106,GO:0071339,http://purl.obolibrary.org/obo/GO_0071339,MLL1 complex +15.3454106,GO:0071346,http://purl.obolibrary.org/obo/GO_0071346,cellular response to interferon-gamma +15.3454106,GO:0071397,http://purl.obolibrary.org/obo/GO_0071397,cellular response to cholesterol +15.3454106,GO:0071472,http://purl.obolibrary.org/obo/GO_0071472,cellular response to salt stress +15.3454106,GO:0071565,http://purl.obolibrary.org/obo/GO_0071565,nBAF complex +15.3454106,GO:0071588,http://purl.obolibrary.org/obo/GO_0071588,hydrogen peroxide mediated signaling pathway +15.3454106,GO:0071600,http://purl.obolibrary.org/obo/GO_0071600,otic vesicle morphogenesis +15.3454106,GO:0071649,http://purl.obolibrary.org/obo/GO_0071649,regulation of chemokine (C-C motif) ligand 5 production +15.3454106,GO:0071804,http://purl.obolibrary.org/obo/GO_0071804,none +15.3454106,GO:0071805,http://purl.obolibrary.org/obo/GO_0071805,potassium ion transmembrane transport +15.3454106,GO:0071868,http://purl.obolibrary.org/obo/GO_0071868,cellular response to monoamine stimulus +15.3454106,GO:0071993,http://purl.obolibrary.org/obo/GO_0071993,phytochelatin transport +15.3454106,GO:0072033,http://purl.obolibrary.org/obo/GO_0072033,renal vesicle formation +15.3454106,GO:0072178,http://purl.obolibrary.org/obo/GO_0072178,nephric duct morphogenesis +15.3454106,GO:0072558,http://purl.obolibrary.org/obo/GO_0072558,NLRP1 inflammasome complex +15.3454106,GO:0072726,http://purl.obolibrary.org/obo/GO_0072726,response to CCCP +15.3454106,GO:0080022,http://purl.obolibrary.org/obo/GO_0080022,primary root development +15.3454106,GO:0080182,http://purl.obolibrary.org/obo/GO_0080182,histone H3-K4 trimethylation +15.3454106,GO:0085026,http://purl.obolibrary.org/obo/GO_0085026,tubovesicular membrane network +15.3454106,GO:0090206,http://purl.obolibrary.org/obo/GO_0090206,negative regulation of cholesterol metabolic process +15.3454106,GO:0090239,http://purl.obolibrary.org/obo/GO_0090239,regulation of histone H4 acetylation +15.3454106,GO:0090296,http://purl.obolibrary.org/obo/GO_0090296,regulation of mitochondrial DNA replication +15.3454106,GO:0090335,http://purl.obolibrary.org/obo/GO_0090335,regulation of brown fat cell differentiation +15.3454106,GO:0090344,http://purl.obolibrary.org/obo/GO_0090344,negative regulation of cell aging +15.3454106,GO:0090415,http://purl.obolibrary.org/obo/GO_0090415,7-hydroxymethyl chlorophyll a reductase activity +15.3454106,GO:0090443,http://purl.obolibrary.org/obo/GO_0090443,FAR/SIN/STRIPAK complex +15.3454106,GO:0090548,http://purl.obolibrary.org/obo/GO_0090548,response to nitrate starvation +15.3454106,GO:0090673,http://purl.obolibrary.org/obo/GO_0090673,endothelial cell-matrix adhesion +15.3454106,GO:0090701,http://purl.obolibrary.org/obo/GO_0090701,specification of plant organ identity +15.3454106,GO:0097065,http://purl.obolibrary.org/obo/GO_0097065,anterior head development +15.3454106,GO:0097137,http://purl.obolibrary.org/obo/GO_0097137,BAD-BCL-xl complex +15.3454106,GO:0097226,http://purl.obolibrary.org/obo/GO_0097226,sperm mitochondrial sheath +15.3454106,GO:0097237,http://purl.obolibrary.org/obo/GO_0097237,cellular response to toxic substance +15.3454106,GO:0097330,http://purl.obolibrary.org/obo/GO_0097330,response to 5-fluoro-2'-deoxyuridine +15.3454106,GO:0097355,http://purl.obolibrary.org/obo/GO_0097355,protein localization to heterochromatin +15.3454106,GO:0097400,http://purl.obolibrary.org/obo/GO_0097400,interleukin-17-mediated signaling pathway +15.3454106,GO:0097416,http://purl.obolibrary.org/obo/GO_0097416,Lewy body-like hyaline inclusion +15.3454106,GO:0097504,http://purl.obolibrary.org/obo/GO_0097504,Gemini of coiled bodies +15.3454106,GO:0097523,http://purl.obolibrary.org/obo/GO_0097523,transcription ternary complex +15.3454106,GO:0097544,http://purl.obolibrary.org/obo/GO_0097544,ciliary shaft +15.3454106,GO:0097575,http://purl.obolibrary.org/obo/GO_0097575,lateral cell cortex +15.3454106,GO:0097619,http://purl.obolibrary.org/obo/GO_0097619,PTEX complex +15.3454106,GO:0098520,http://purl.obolibrary.org/obo/GO_0098520,excitatory neuromuscular junction +15.3454106,GO:0098623,http://purl.obolibrary.org/obo/GO_0098623,selenite reductase activity +15.3454106,GO:0098836,http://purl.obolibrary.org/obo/GO_0098836,cytoskeleton of dendritic spine +15.3454106,GO:0098843,http://purl.obolibrary.org/obo/GO_0098843,postsynaptic endocytic zone +15.3454106,GO:0106119,http://purl.obolibrary.org/obo/GO_0106119,negative regulation of sterol biosynthetic process +15.3454106,GO:0140448,http://purl.obolibrary.org/obo/GO_0140448,signaling receptor ligand precursor processing +15.3454106,GO:0150077,http://purl.obolibrary.org/obo/GO_0150077,regulation of neuroinflammatory response +15.3454106,GO:1900428,http://purl.obolibrary.org/obo/GO_1900428,regulation of filamentous growth of a population of unicellular organisms +15.3454106,GO:1901018,http://purl.obolibrary.org/obo/GO_1901018,positive regulation of potassium ion transmembrane transporter activity +15.3454106,GO:1901049,http://purl.obolibrary.org/obo/GO_1901049,atropine metabolic process +15.3454106,GO:1901097,http://purl.obolibrary.org/obo/GO_1901097,negative regulation of autophagosome maturation +15.3454106,GO:1901182,http://purl.obolibrary.org/obo/GO_1901182,regulation of camalexin biosynthetic process +15.3454106,GO:1901216,http://purl.obolibrary.org/obo/GO_1901216,positive regulation of neuron death +15.3454106,GO:1901371,http://purl.obolibrary.org/obo/GO_1901371,regulation of leaf morphogenesis +15.3454106,GO:1901381,http://purl.obolibrary.org/obo/GO_1901381,positive regulation of potassium ion transmembrane transport +15.3454106,GO:1901404,http://purl.obolibrary.org/obo/GO_1901404,regulation of tetrapyrrole catabolic process +15.3454106,GO:1901425,http://purl.obolibrary.org/obo/GO_1901425,response to formic acid +15.3454106,GO:1901704,http://purl.obolibrary.org/obo/GO_1901704,L-glutamine biosynthetic process +15.3454106,GO:1901775,http://purl.obolibrary.org/obo/GO_1901775,mitomycin C metabolic process +15.3454106,GO:1901787,http://purl.obolibrary.org/obo/GO_1901787,benzoyl-CoA metabolic process +15.3454106,GO:1901875,http://purl.obolibrary.org/obo/GO_1901875,positive regulation of post-translational protein modification +15.3454106,GO:1901992,http://purl.obolibrary.org/obo/GO_1901992,positive regulation of mitotic cell cycle phase transition +15.3454106,GO:1902111,http://purl.obolibrary.org/obo/GO_1902111,response to diethyl maleate +15.3454106,GO:1902553,http://purl.obolibrary.org/obo/GO_1902553,positive regulation of catalase activity +15.3454106,GO:1902565,http://purl.obolibrary.org/obo/GO_1902565,positive regulation of neutrophil activation +15.3454106,GO:1902714,http://purl.obolibrary.org/obo/GO_1902714,none +15.3454106,GO:1902730,http://purl.obolibrary.org/obo/GO_1902730,positive regulation of proteoglycan biosynthetic process +15.3454106,GO:1902732,http://purl.obolibrary.org/obo/GO_1902732,positive regulation of chondrocyte proliferation +15.3454106,GO:1902739,http://purl.obolibrary.org/obo/GO_1902739,none +15.3454106,GO:1902908,http://purl.obolibrary.org/obo/GO_1902908,regulation of melanosome transport +15.3454106,GO:1903020,http://purl.obolibrary.org/obo/GO_1903020,positive regulation of glycoprotein metabolic process +15.3454106,GO:1903115,http://purl.obolibrary.org/obo/GO_1903115,regulation of actin filament-based movement +15.3454106,GO:1903181,http://purl.obolibrary.org/obo/GO_1903181,positive regulation of dopamine biosynthetic process +15.3454106,GO:1903329,http://purl.obolibrary.org/obo/GO_1903329,regulation of iron-sulfur cluster assembly +15.3454106,GO:1903353,http://purl.obolibrary.org/obo/GO_1903353,regulation of nucleus organization +15.3454106,GO:1903365,http://purl.obolibrary.org/obo/GO_1903365,regulation of fear response +15.3454106,GO:1903439,http://purl.obolibrary.org/obo/GO_1903439,calcitonin family receptor complex +15.3454106,GO:1903488,http://purl.obolibrary.org/obo/GO_1903488,negative regulation of lactation +15.3454106,GO:1903494,http://purl.obolibrary.org/obo/GO_1903494,response to dehydroepiandrosterone +15.3454106,GO:1903534,http://purl.obolibrary.org/obo/GO_1903534,regulation of lactose biosynthetic process +15.3454106,GO:1903601,http://purl.obolibrary.org/obo/GO_1903601,thermospermine metabolic process +15.3454106,GO:1903603,http://purl.obolibrary.org/obo/GO_1903603,thermospermine biosynthetic process +15.3454106,GO:1903674,http://purl.obolibrary.org/obo/GO_1903674,regulation of cap-dependent translational initiation +15.3454106,GO:1903978,http://purl.obolibrary.org/obo/GO_1903978,regulation of microglial cell activation +15.3454106,GO:1904058,http://purl.obolibrary.org/obo/GO_1904058,positive regulation of sensory perception of pain +15.3454106,GO:1904391,http://purl.obolibrary.org/obo/GO_1904391,response to ciliary neurotrophic factor +15.3454106,GO:1904464,http://purl.obolibrary.org/obo/GO_1904464,regulation of matrix metallopeptidase secretion +15.3454106,GO:1904469,http://purl.obolibrary.org/obo/GO_1904469,none +15.3454106,GO:1904502,http://purl.obolibrary.org/obo/GO_1904502,regulation of lipophagy +15.3454106,GO:1904511,http://purl.obolibrary.org/obo/GO_1904511,cytoplasmic microtubule plus-end +15.3454106,GO:1904585,http://purl.obolibrary.org/obo/GO_1904585,response to putrescine +15.3454106,GO:1904613,http://purl.obolibrary.org/obo/GO_1904613,"cellular response to 2,3,7,8-tetrachlorodibenzodioxine" +15.3454106,GO:1904654,http://purl.obolibrary.org/obo/GO_1904654,negative regulation of lung alveolus development +15.3454106,GO:1904688,http://purl.obolibrary.org/obo/GO_1904688,regulation of cytoplasmic translational initiation +15.3454106,GO:1904693,http://purl.obolibrary.org/obo/GO_1904693,midbrain morphogenesis +15.3454106,GO:1904743,http://purl.obolibrary.org/obo/GO_1904743,negative regulation of telomeric DNA binding +15.3454106,GO:1904897,http://purl.obolibrary.org/obo/GO_1904897,regulation of hepatic stellate cell proliferation +15.3454106,GO:1904937,http://purl.obolibrary.org/obo/GO_1904937,sensory neuron migration +15.3454106,GO:1905475,http://purl.obolibrary.org/obo/GO_1905475,regulation of protein localization to membrane +15.3454106,GO:1990063,http://purl.obolibrary.org/obo/GO_1990063,Bam protein complex +15.3454106,GO:1990097,http://purl.obolibrary.org/obo/GO_1990097,SeqA-DNA complex +15.3454106,GO:1990229,http://purl.obolibrary.org/obo/GO_1990229,iron-sulfur cluster assembly complex +15.3454106,GO:1990281,http://purl.obolibrary.org/obo/GO_1990281,efflux pump complex +15.3454106,GO:1990632,http://purl.obolibrary.org/obo/GO_1990632,branching involved in submandibular gland morphogenesis +15.3454106,GO:1990647,http://purl.obolibrary.org/obo/GO_1990647,C/EBP complex +15.3454106,GO:1990666,http://purl.obolibrary.org/obo/GO_1990666,PCSK9-LDLR complex +15.3454106,GO:1990682,http://purl.obolibrary.org/obo/GO_1990682,CSF1-CSF1R complex +15.3454106,GO:2000220,http://purl.obolibrary.org/obo/GO_2000220,regulation of pseudohyphal growth +15.3454106,GO:2000232,http://purl.obolibrary.org/obo/GO_2000232,regulation of rRNA processing +15.3454106,GO:2000307,http://purl.obolibrary.org/obo/GO_2000307,regulation of tumor necrosis factor (ligand) superfamily member 11 production +15.3454106,GO:2000311,http://purl.obolibrary.org/obo/GO_2000311,regulation of AMPA receptor activity +15.3454106,GO:2000479,http://purl.obolibrary.org/obo/GO_2000479,regulation of cAMP-dependent protein kinase activity +15.3454106,GO:2000737,http://purl.obolibrary.org/obo/GO_2000737,negative regulation of stem cell differentiation +15.3454106,GO:2000773,http://purl.obolibrary.org/obo/GO_2000773,negative regulation of cellular senescence +15.3454106,HP:0000092,http://purl.obolibrary.org/obo/HP_0000092,Renal tubular atrophy +15.3454106,HP:0000126,http://purl.obolibrary.org/obo/HP_0000126,Hydronephrosis +15.3454106,HP:0000476,http://purl.obolibrary.org/obo/HP_0000476,Cystic hygroma +15.3454106,HP:0000522,http://purl.obolibrary.org/obo/HP_0000522,Alacrima +15.3454106,HP:0000579,http://purl.obolibrary.org/obo/HP_0000579,Nasolacrimal duct obstruction +15.3454106,HP:0000633,http://purl.obolibrary.org/obo/HP_0000633,Decreased lacrimation +15.3454106,HP:0000709,http://purl.obolibrary.org/obo/HP_0000709,Psychosis +15.3454106,HP:0000767,http://purl.obolibrary.org/obo/HP_0000767,Pectus excavatum +15.3454106,HP:0000853,http://purl.obolibrary.org/obo/HP_0000853,Goiter +15.3454106,HP:0000968,http://purl.obolibrary.org/obo/HP_0000968,Ectodermal dysplasia +15.3454106,HP:0001231,http://purl.obolibrary.org/obo/HP_0001231,Abnormal fingernail morphology +15.3454106,HP:0001272,http://purl.obolibrary.org/obo/HP_0001272,Cerebellar atrophy +15.3454106,HP:0001332,http://purl.obolibrary.org/obo/HP_0001332,Dystonia +15.3454106,HP:0001384,http://purl.obolibrary.org/obo/HP_0001384,Abnormal hip joint morphology +15.3454106,HP:0001442,http://purl.obolibrary.org/obo/HP_0001442,Somatic mosaicism +15.3454106,HP:0001789,http://purl.obolibrary.org/obo/HP_0001789,Hydrops fetalis +15.3454106,HP:0001804,http://purl.obolibrary.org/obo/HP_0001804,Hypoplastic fingernail +15.3454106,HP:0002007,http://purl.obolibrary.org/obo/HP_0002007,Frontal bossing +15.3454106,HP:0002108,http://purl.obolibrary.org/obo/HP_0002108,Spontaneous pneumothorax +15.3454106,HP:0002209,http://purl.obolibrary.org/obo/HP_0002209,Sparse scalp hair +15.3454106,HP:0002353,http://purl.obolibrary.org/obo/HP_0002353,EEG abnormality +15.3454106,HP:0002859,http://purl.obolibrary.org/obo/HP_0002859,Rhabdomyosarcoma +15.3454106,HP:0003690,http://purl.obolibrary.org/obo/HP_0003690,Limb muscle weakness +15.3454106,HP:0005262,http://purl.obolibrary.org/obo/HP_0005262,Abnormality of the synovia +15.3454106,HP:0006731,http://purl.obolibrary.org/obo/HP_0006731,Follicular thyroid carcinoma +15.3454106,HP:0006744,http://purl.obolibrary.org/obo/HP_0006744,Adrenocortical carcinoma +15.3454106,HP:0007340,http://purl.obolibrary.org/obo/HP_0007340,Lower limb muscle weakness +15.3454106,HP:0007687,http://purl.obolibrary.org/obo/HP_0007687,Unilateral ptosis +15.3454106,HP:0008071,http://purl.obolibrary.org/obo/HP_0008071,Maternal hypertension +15.3454106,HP:0010828,http://purl.obolibrary.org/obo/HP_0010828,Hemifacial spasm +15.3454106,HP:0011772,http://purl.obolibrary.org/obo/HP_0011772,Abnormal thyroid morphology +15.3454106,HP:0012191,http://purl.obolibrary.org/obo/HP_0012191,B-cell lymphoma +15.3454106,HP:0012192,http://purl.obolibrary.org/obo/HP_0012192,Cutaneous T-cell lymphoma +15.3454106,HP:0012246,http://purl.obolibrary.org/obo/HP_0012246,Oculomotor nerve palsy +15.3454106,HP:0012288,http://purl.obolibrary.org/obo/HP_0012288,Neoplasm of head and neck +15.3454106,HP:0012398,http://purl.obolibrary.org/obo/HP_0012398,Peripheral edema +15.3454106,HP:0012539,http://purl.obolibrary.org/obo/HP_0012539,Non-Hodgkin lymphoma +15.3454106,HP:0012570,http://purl.obolibrary.org/obo/HP_0012570,Synovial sarcoma +15.3454106,HP:0012622,http://purl.obolibrary.org/obo/HP_0012622,Chronic kidney disease +15.3454106,HP:0020221,http://purl.obolibrary.org/obo/HP_0020221,Clonic seizure +15.3454106,HP:0025169,http://purl.obolibrary.org/obo/HP_0025169,Left ventricular systolic dysfunction +15.3454106,HP:0030062,http://purl.obolibrary.org/obo/HP_0030062,Craniopharyngioma +15.3454106,HP:0030127,http://purl.obolibrary.org/obo/HP_0030127,Endometriosis +15.3454106,HP:0031013,http://purl.obolibrary.org/obo/HP_0031013,Ankylosis +15.3454106,HP:0031861,http://purl.obolibrary.org/obo/HP_0031861,Decreased heart rate variability +15.3454106,HP:0032252,http://purl.obolibrary.org/obo/HP_0032252,Granuloma +15.3454106,HP:0041092,http://purl.obolibrary.org/obo/HP_0041092,Emotional hypersensitivity +15.3454106,HP:0100037,http://purl.obolibrary.org/obo/HP_0100037,Abnormality of the scalp hair +15.3454106,HP:0100653,http://purl.obolibrary.org/obo/HP_0100653,Optic neuritis +15.3454106,HP:0100749,http://purl.obolibrary.org/obo/HP_0100749,Chest pain +15.3454106,HP:0200058,http://purl.obolibrary.org/obo/HP_0200058,Angiosarcoma +15.3454106,MONDO:0000181,http://purl.obolibrary.org/obo/MONDO_0000181,microcephaly and chorioretinopathy +15.3454106,MONDO:0000276,http://purl.obolibrary.org/obo/MONDO_0000276,Powassan encephalitis +15.3454106,MONDO:0000668,http://purl.obolibrary.org/obo/MONDO_0000668,autotopagnosia +15.3454106,MONDO:0000756,http://purl.obolibrary.org/obo/MONDO_0000756,parameningeal embryonal rhabdomyosarcoma +15.3454106,MONDO:0000967,http://purl.obolibrary.org/obo/MONDO_0000967,conventional lipoma +15.3454106,MONDO:0001033,http://purl.obolibrary.org/obo/MONDO_0001033,mycotic corneal ulcer +15.3454106,MONDO:0001141,http://purl.obolibrary.org/obo/MONDO_0001141,middle ear cholesterol granuloma +15.3454106,MONDO:0001242,http://purl.obolibrary.org/obo/MONDO_0001242,disseminated intravascular coagulation in newborn +15.3454106,MONDO:0001261,http://purl.obolibrary.org/obo/MONDO_0001261,Mobitz type II atrioventricular block +15.3454106,MONDO:0001274,http://purl.obolibrary.org/obo/MONDO_0001274,anal spasm +15.3454106,MONDO:0001312,http://purl.obolibrary.org/obo/MONDO_0001312,acute serous otitis media +15.3454106,MONDO:0001485,http://purl.obolibrary.org/obo/MONDO_0001485,atypical depressive disorder +15.3454106,MONDO:0001507,http://purl.obolibrary.org/obo/MONDO_0001507,viral labyrinthitis +15.3454106,MONDO:0001600,http://purl.obolibrary.org/obo/MONDO_0001600,mucocele of salivary gland +15.3454106,MONDO:0001706,http://purl.obolibrary.org/obo/MONDO_0001706,cerebral sarcoidosis +15.3454106,MONDO:0001716,http://purl.obolibrary.org/obo/MONDO_0001716,corneal argyrosis +15.3454106,MONDO:0001780,http://purl.obolibrary.org/obo/MONDO_0001780,premature ejaculation +15.3454106,MONDO:0001807,http://purl.obolibrary.org/obo/MONDO_0001807,none +15.3454106,MONDO:0001829,http://purl.obolibrary.org/obo/MONDO_0001829,lumbosacral plexus lesion +15.3454106,MONDO:0001859,http://purl.obolibrary.org/obo/MONDO_0001859,algoneurodystrophy +15.3454106,MONDO:0001869,http://purl.obolibrary.org/obo/MONDO_0001869,paraurethral gland cancer +15.3454106,MONDO:0001947,http://purl.obolibrary.org/obo/MONDO_0001947,suppurative thyroiditis +15.3454106,MONDO:0002057,http://purl.obolibrary.org/obo/MONDO_0002057,breast leiomyoma +15.3454106,MONDO:0002164,http://purl.obolibrary.org/obo/MONDO_0002164,focal chorioretinitis +15.3454106,MONDO:0002174,http://purl.obolibrary.org/obo/MONDO_0002174,preretinal fibrosis +15.3454106,MONDO:0002230,http://purl.obolibrary.org/obo/MONDO_0002230,ovarian Wilms tumor +15.3454106,MONDO:0002388,http://purl.obolibrary.org/obo/MONDO_0002388,intracystic papillary adenoma +15.3454106,MONDO:0002419,http://purl.obolibrary.org/obo/MONDO_0002419,transient tic disorder +15.3454106,MONDO:0002541,http://purl.obolibrary.org/obo/MONDO_0002541,spinal cord oligodendroglioma +15.3454106,MONDO:0002556,http://purl.obolibrary.org/obo/MONDO_0002556,microcystic/reticular schwannoma +15.3454106,MONDO:0002795,http://purl.obolibrary.org/obo/MONDO_0002795,adult central nervous system primitive neuroectodermal neoplasm +15.3454106,MONDO:0002885,http://purl.obolibrary.org/obo/MONDO_0002885,erythrasma +15.3454106,MONDO:0003040,http://purl.obolibrary.org/obo/MONDO_0003040,retrograde amnesia +15.3454106,MONDO:0003173,http://purl.obolibrary.org/obo/MONDO_0003173,brain stem astrocytic neoplasm +15.3454106,MONDO:0003271,http://purl.obolibrary.org/obo/MONDO_0003271,iodine hypothyroidism +15.3454106,MONDO:0003303,http://purl.obolibrary.org/obo/MONDO_0003303,neurofibroma of gallbladder +15.3454106,MONDO:0003305,http://purl.obolibrary.org/obo/MONDO_0003305,cellular neurofibroma +15.3454106,MONDO:0003322,http://purl.obolibrary.org/obo/MONDO_0003322,epithelial predominant Wilms' tumor +15.3454106,MONDO:0003398,http://purl.obolibrary.org/obo/MONDO_0003398,anterograde amnesia +15.3454106,MONDO:0003421,http://purl.obolibrary.org/obo/MONDO_0003421,mixed cell adenoma +15.3454106,MONDO:0003469,http://purl.obolibrary.org/obo/MONDO_0003469,epithelioid cell synovial sarcoma +15.3454106,MONDO:0003500,http://purl.obolibrary.org/obo/MONDO_0003500,squamous cell bile duct carcinoma +15.3454106,MONDO:0003535,http://purl.obolibrary.org/obo/MONDO_0003535,fallopian tube papillary adenocarcinoma +15.3454106,MONDO:0003599,http://purl.obolibrary.org/obo/MONDO_0003599,vulvar liposarcoma +15.3454106,MONDO:0003796,http://purl.obolibrary.org/obo/MONDO_0003796,rectum Kaposi sarcoma +15.3454106,MONDO:0003824,http://purl.obolibrary.org/obo/MONDO_0003824,hereditary kidney oncocytoma +15.3454106,MONDO:0003970,http://purl.obolibrary.org/obo/MONDO_0003970,gastric fundus carcinoma +15.3454106,MONDO:0003980,http://purl.obolibrary.org/obo/MONDO_0003980,schwannoma of jugular foramen +15.3454106,MONDO:0003992,http://purl.obolibrary.org/obo/MONDO_0003992,childhood botryoid rhabdomyosarcoma +15.3454106,MONDO:0004101,http://purl.obolibrary.org/obo/MONDO_0004101,multicentric papillary thyroid carcinoma +15.3454106,MONDO:0004131,http://purl.obolibrary.org/obo/MONDO_0004131,anal verrucous carcinoma +15.3454106,MONDO:0004173,http://purl.obolibrary.org/obo/MONDO_0004173,adenocarcinoma of skene gland origin +15.3454106,MONDO:0004193,http://purl.obolibrary.org/obo/MONDO_0004193,pediatric ovarian dysgerminoma +15.3454106,MONDO:0004237,http://purl.obolibrary.org/obo/MONDO_0004237,large cell carcinoma with rhabdoid phenotype +15.3454106,MONDO:0004280,http://purl.obolibrary.org/obo/MONDO_0004280,asymmetric motor neuropathy +15.3454106,MONDO:0004310,http://purl.obolibrary.org/obo/MONDO_0004310,"adult embryonal tumor with multilayered rosettes, c19mc-altered" +15.3454106,MONDO:0004513,http://purl.obolibrary.org/obo/MONDO_0004513,adult pleomorphic rhabdomyosarcoma +15.3454106,MONDO:0004524,http://purl.obolibrary.org/obo/MONDO_0004524,thyroid gland atypical follicular adenoma +15.3454106,MONDO:0004564,http://purl.obolibrary.org/obo/MONDO_0004564,thyroid malformation +15.3454106,MONDO:0005121,http://purl.obolibrary.org/obo/MONDO_0005121,Enterococcus faecalis infection +15.3454106,MONDO:0005471,http://purl.obolibrary.org/obo/MONDO_0005471,neurally mediated hypotension +15.3454106,MONDO:0005511,http://purl.obolibrary.org/obo/MONDO_0005511,janus kinase-3 deficiency +15.3454106,MONDO:0005746,http://purl.obolibrary.org/obo/MONDO_0005746,enterobiasis +15.3454106,MONDO:0005964,http://purl.obolibrary.org/obo/MONDO_0005964,sphenoid sinusitis +15.3454106,MONDO:0005994,http://purl.obolibrary.org/obo/MONDO_0005994,trichostrongyloidiasis +15.3454106,MONDO:0006013,http://purl.obolibrary.org/obo/MONDO_0006013,visna disease +15.3454106,MONDO:0006321,http://purl.obolibrary.org/obo/MONDO_0006321,non-functioning adrenal cortex adenoma +15.3454106,MONDO:0006378,http://purl.obolibrary.org/obo/MONDO_0006378,pleural epithelioid mesothelioma +15.3454106,MONDO:0006689,http://purl.obolibrary.org/obo/MONDO_0006689,none +15.3454106,MONDO:0006779,http://purl.obolibrary.org/obo/MONDO_0006779,heart aneurysm +15.3454106,MONDO:0006907,http://purl.obolibrary.org/obo/MONDO_0006907,pilar sheath acanthoma +15.3454106,MONDO:0007362,http://purl.obolibrary.org/obo/MONDO_0007362,cone-rod dystrophy 2 +15.3454106,MONDO:0007619,http://purl.obolibrary.org/obo/MONDO_0007619,isolated congenital adermatoglyphia +15.3454106,MONDO:0007725,http://purl.obolibrary.org/obo/MONDO_0007725,hereditary progressive mucinous histiocytosis +15.3454106,MONDO:0007784,http://purl.obolibrary.org/obo/MONDO_0007784,selective pituitary resistance to thyroid hormone +15.3454106,MONDO:0007789,http://purl.obolibrary.org/obo/MONDO_0007789,hypertrophia musculorum vera +15.3454106,MONDO:0008062,http://purl.obolibrary.org/obo/MONDO_0008062,narcolepsy 1 +15.3454106,MONDO:0008070,http://purl.obolibrary.org/obo/MONDO_0008070,nemaline myopathy 3 +15.3454106,MONDO:0008118,http://purl.obolibrary.org/obo/MONDO_0008118,odontomatosis-aortae esophagus stenosis syndrome +15.3454106,MONDO:0008272,http://purl.obolibrary.org/obo/MONDO_0008272,polysyndactyly 4 +15.3454106,MONDO:0008278,http://purl.obolibrary.org/obo/MONDO_0008278,juvenile polyposis/hereditary hemorrhagic telangiectasia syndrome +15.3454106,MONDO:0008372,http://purl.obolibrary.org/obo/MONDO_0008372,retinal aplasia +15.3454106,MONDO:0008496,http://purl.obolibrary.org/obo/MONDO_0008496,storm syndrome +15.3454106,MONDO:0008572,http://purl.obolibrary.org/obo/MONDO_0008572,"tibia, hypoplasia or aplasia of, with polydactyly" +15.3454106,MONDO:0008691,http://purl.obolibrary.org/obo/MONDO_0008691,"zinc, elevated plasma" +15.3454106,MONDO:0008699,http://purl.obolibrary.org/obo/MONDO_0008699,achalasia microcephaly syndrome +15.3454106,MONDO:0008700,http://purl.obolibrary.org/obo/MONDO_0008700,acheiropody +15.3454106,MONDO:0008715,http://purl.obolibrary.org/obo/MONDO_0008715,acrofrontofacionasal dysostosis +15.3454106,MONDO:0008746,http://purl.obolibrary.org/obo/MONDO_0008746,oculocutaneous albinism type 2 +15.3454106,MONDO:0008756,http://purl.obolibrary.org/obo/MONDO_0008756,alopecia - intellectual disability syndrome +15.3454106,MONDO:0008781,http://purl.obolibrary.org/obo/MONDO_0008781,juvenile amyotrophic lateral sclerosis with dementia +15.3454106,MONDO:0008810,http://purl.obolibrary.org/obo/MONDO_0008810,familial apolipoprotein C-II deficiency +15.3454106,MONDO:0008877,http://purl.obolibrary.org/obo/MONDO_0008877,blue diaper syndrome +15.3454106,MONDO:0008910,http://purl.obolibrary.org/obo/MONDO_0008910,carboxypeptidase N deficiency +15.3454106,MONDO:0008967,http://purl.obolibrary.org/obo/MONDO_0008967,congenital bile acid synthesis defect 4 +15.3454106,MONDO:0009006,http://purl.obolibrary.org/obo/MONDO_0009006,complement component 2 deficiency +15.3454106,MONDO:0009141,http://purl.obolibrary.org/obo/MONDO_0009141,torsion dystonia 2 +15.3454106,MONDO:0009283,http://purl.obolibrary.org/obo/MONDO_0009283,glutaric acidemia type 3 +15.3454106,MONDO:0009483,http://purl.obolibrary.org/obo/MONDO_0009483,kapur-Toriello syndrome +15.3454106,MONDO:0009568,http://purl.obolibrary.org/obo/MONDO_0009568,mast syndrome +15.3454106,MONDO:0009601,http://purl.obolibrary.org/obo/MONDO_0009601,metaphyseal dysplasia without hypotrichosis +15.3454106,MONDO:0009608,http://purl.obolibrary.org/obo/MONDO_0009608,methionine malabsorption syndrome +15.3454106,MONDO:0009652,http://purl.obolibrary.org/obo/MONDO_0009652,mucolipidosis type III gamma +15.3454106,MONDO:0009664,http://purl.obolibrary.org/obo/MONDO_0009664,mulibrey nanism +15.3454106,MONDO:0010011,http://purl.obolibrary.org/obo/MONDO_0010011,schizencephaly +15.3454106,MONDO:0010069,http://purl.obolibrary.org/obo/MONDO_0010069,spondylocostal dysostosis-anal and genitourinary malformations syndrome +15.3454106,MONDO:0010185,http://purl.obolibrary.org/obo/MONDO_0010185,methylmalonic aciduria and homocystinuria type cblD +15.3454106,MONDO:0010235,http://purl.obolibrary.org/obo/MONDO_0010235,X-linked intellectual disability-psychosis-macroorchidism syndrome +15.3454106,MONDO:0010338,http://purl.obolibrary.org/obo/MONDO_0010338,X-linked distal spinal muscular atrophy type 3 +15.3454106,MONDO:0010353,http://purl.obolibrary.org/obo/MONDO_0010353,"deafness-intellectual disability, Martin-Probst type syndrome" +15.3454106,MONDO:0010390,http://purl.obolibrary.org/obo/MONDO_0010390,ocular albinism with late-onset sensorineural deafness +15.3454106,MONDO:0010466,http://purl.obolibrary.org/obo/MONDO_0010466,multiple congenital anomalies-hypotonia-seizures syndrome 2 +15.3454106,MONDO:0010565,http://purl.obolibrary.org/obo/MONDO_0010565,red color blindness +15.3454106,MONDO:0010586,http://purl.obolibrary.org/obo/MONDO_0010586,X-linked Ehlers-Danlos syndrome +15.3454106,MONDO:0010773,http://purl.obolibrary.org/obo/MONDO_0010773,myopathy and diabetes mellitus +15.3454106,MONDO:0010832,http://purl.obolibrary.org/obo/MONDO_0010832,Bardet-Biedl syndrome 3 +15.3454106,MONDO:0010861,http://purl.obolibrary.org/obo/MONDO_0010861,type 1 diabetes mellitus 3 +15.3454106,MONDO:0010881,http://purl.obolibrary.org/obo/MONDO_0010881,mesomelia-synostoses syndrome +15.3454106,MONDO:0010905,http://purl.obolibrary.org/obo/MONDO_0010905,cone-rod dystrophy 1 +15.3454106,MONDO:0010940,http://purl.obolibrary.org/obo/MONDO_0010940,inherited susceptibility to asthma +15.3454106,MONDO:0010977,http://purl.obolibrary.org/obo/MONDO_0010977,Brody myopathy +15.3454106,MONDO:0011015,http://purl.obolibrary.org/obo/MONDO_0011015,cataract 24 +15.3454106,MONDO:0011033,http://purl.obolibrary.org/obo/MONDO_0011033,type 1 diabetes mellitus 13 +15.3454106,MONDO:0011042,http://purl.obolibrary.org/obo/MONDO_0011042,Martinez-Frias syndrome +15.3454106,MONDO:0011068,http://purl.obolibrary.org/obo/MONDO_0011068,type 1 diabetes mellitus 12 +15.3454106,MONDO:0011080,http://purl.obolibrary.org/obo/MONDO_0011080,progressive deafness with stapes fixation +15.3454106,MONDO:0011133,http://purl.obolibrary.org/obo/MONDO_0011133,"deaf blind hypopigmentation syndrome, Yemenite type" +15.3454106,MONDO:0011152,http://purl.obolibrary.org/obo/MONDO_0011152,PHGDH deficiency +15.3454106,MONDO:0011169,http://purl.obolibrary.org/obo/MONDO_0011169,keratosis linearis-ichthyosis congenita-sclerosing keratoderma syndrome +15.3454106,MONDO:0011173,http://purl.obolibrary.org/obo/MONDO_0011173,thrombocythemia 2 +15.3454106,MONDO:0011406,http://purl.obolibrary.org/obo/MONDO_0011406,"cholesteatoma, congenital" +15.3454106,MONDO:0011416,http://purl.obolibrary.org/obo/MONDO_0011416,"generalized epilepsy with febrile seizures plus, type 1" +15.3454106,MONDO:0011582,http://purl.obolibrary.org/obo/MONDO_0011582,multiple mitochondrial dysfunctions syndrome 1 +15.3454106,MONDO:0011644,http://purl.obolibrary.org/obo/MONDO_0011644,pars planitis +15.3454106,MONDO:0011700,http://purl.obolibrary.org/obo/MONDO_0011700,inflammatory bowel disease 6 +15.3454106,MONDO:0011708,http://purl.obolibrary.org/obo/MONDO_0011708,autosomal dominant nonsyndromic deafness 36 +15.3454106,MONDO:0011768,http://purl.obolibrary.org/obo/MONDO_0011768,myasthenia gravis with thymus hyperplasia +15.3454106,MONDO:0011819,http://purl.obolibrary.org/obo/MONDO_0011819,spinocerebellar ataxia type 19/22 +15.3454106,MONDO:0012048,http://purl.obolibrary.org/obo/MONDO_0012048,endogenous depression +15.3454106,MONDO:0012111,http://purl.obolibrary.org/obo/MONDO_0012111,hypertrophic cardiomyopathy 8 +15.3454106,MONDO:0012125,http://purl.obolibrary.org/obo/MONDO_0012125,hypomyelinating leukodystrophy 2 +15.3454106,MONDO:0012198,http://purl.obolibrary.org/obo/MONDO_0012198,PCWH syndrome +15.3454106,MONDO:0012247,http://purl.obolibrary.org/obo/MONDO_0012247,spinocerebellar ataxia type 27 +15.3454106,MONDO:0012289,http://purl.obolibrary.org/obo/MONDO_0012289,myofibrillar myopathy 5 +15.3454106,MONDO:0012368,http://purl.obolibrary.org/obo/MONDO_0012368,aminoacylase 1 deficiency +15.3454106,MONDO:0012502,http://purl.obolibrary.org/obo/MONDO_0012502,normophosphatemic familial tumoral calcinosis +15.3454106,MONDO:0012525,http://purl.obolibrary.org/obo/MONDO_0012525,Leber congenital amaurosis 12 +15.3454106,MONDO:0012634,http://purl.obolibrary.org/obo/MONDO_0012634,craniofacial dysplasia - osteopenia syndrome +15.3454106,MONDO:0012799,http://purl.obolibrary.org/obo/MONDO_0012799,hypertrophic cardiomyopathy 11 +15.3454106,MONDO:0012838,http://purl.obolibrary.org/obo/MONDO_0012838,inflammatory bowel disease 16 +15.3454106,MONDO:0012841,http://purl.obolibrary.org/obo/MONDO_0012841,inflammatory bowel disease 18 +15.3454106,MONDO:0012864,http://purl.obolibrary.org/obo/MONDO_0012864,chromosome 2q32-q33 deletion syndrome +15.3454106,MONDO:0012908,http://purl.obolibrary.org/obo/MONDO_0012908,complement component 6 deficiency +15.3454106,MONDO:0012941,http://purl.obolibrary.org/obo/MONDO_0012941,inflammatory bowel disease 25 +15.3454106,MONDO:0012958,http://purl.obolibrary.org/obo/MONDO_0012958,"multiple sclerosis, susceptibility to, 4" +15.3454106,MONDO:0012973,http://purl.obolibrary.org/obo/MONDO_0012973,inflammatory bowel disease 26 +15.3454106,MONDO:0012980,http://purl.obolibrary.org/obo/MONDO_0012980,endocrine-cerebro-osteodysplasia syndrome +15.3454106,MONDO:0012984,http://purl.obolibrary.org/obo/MONDO_0012984,PHARC syndrome +15.3454106,MONDO:0013058,http://purl.obolibrary.org/obo/MONDO_0013058,cystic leukoencephalopathy without megalencephaly +15.3454106,MONDO:0013372,http://purl.obolibrary.org/obo/MONDO_0013372,long QT syndrome 5 +15.3454106,MONDO:0013406,http://purl.obolibrary.org/obo/MONDO_0013406,age related macular degeneration 6 +15.3454106,MONDO:0013484,http://purl.obolibrary.org/obo/MONDO_0013484,cataract 36 +15.3454106,MONDO:0013531,http://purl.obolibrary.org/obo/MONDO_0013531,PSPH deficiency +15.3454106,MONDO:0013543,http://purl.obolibrary.org/obo/MONDO_0013543,trypsinogen deficiency +15.3454106,MONDO:0013563,http://purl.obolibrary.org/obo/MONDO_0013563,multiple congenital anomalies-hypotonia-seizures syndrome 1 +15.3454106,MONDO:0013678,http://purl.obolibrary.org/obo/MONDO_0013678,EDICT syndrome +15.3454106,MONDO:0013731,http://purl.obolibrary.org/obo/MONDO_0013731,MEGF10-Related Myopathy +15.3454106,MONDO:0013750,http://purl.obolibrary.org/obo/MONDO_0013750,atrial septal defect 8 +15.3454106,MONDO:0013770,http://purl.obolibrary.org/obo/MONDO_0013770,atrial septal defect 9 +15.3454106,MONDO:0013842,http://purl.obolibrary.org/obo/MONDO_0013842,cortisone reductase deficiency 2 +15.3454106,MONDO:0014006,http://purl.obolibrary.org/obo/MONDO_0014006,Schuurs-Hoeijmakers syndrome +15.3454106,MONDO:0014033,http://purl.obolibrary.org/obo/MONDO_0014033,dystonia 25 +15.3454106,MONDO:0014181,http://purl.obolibrary.org/obo/MONDO_0014181,amyotrophic lateral sclerosis type 20 +15.3454106,MONDO:0014278,http://purl.obolibrary.org/obo/MONDO_0014278,immunodeficiency 18 +15.3454106,MONDO:0014419,http://purl.obolibrary.org/obo/MONDO_0014419,ataxia - intellectual disability - oculomotor apraxia - cerebellar cysts syndrome +15.3454106,MONDO:0014704,http://purl.obolibrary.org/obo/MONDO_0014704,skeletal overgrowth-craniofacial dysmorphism-hyperelastic skin-white matter lesions syndrome +15.3454106,MONDO:0014880,http://purl.obolibrary.org/obo/MONDO_0014880,Duane retraction syndrome 3 with or without deafness +15.3454106,MONDO:0014956,http://purl.obolibrary.org/obo/MONDO_0014956,Chitayat syndrome +15.3454106,MONDO:0015260,http://purl.obolibrary.org/obo/MONDO_0015260,diphyllobothriasis +15.3454106,MONDO:0015349,http://purl.obolibrary.org/obo/MONDO_0015349,progressive cavitating leukoencephalopathy +15.3454106,MONDO:0015355,http://purl.obolibrary.org/obo/MONDO_0015355,distal hereditary motor neuropathy type 7 +15.3454106,MONDO:0015406,http://purl.obolibrary.org/obo/MONDO_0015406,cerebrofacial arteriovenous metameric syndrome type 1 +15.3454106,MONDO:0015500,http://purl.obolibrary.org/obo/MONDO_0015500,facial arteriovenous malformation +15.3454106,MONDO:0015701,http://purl.obolibrary.org/obo/MONDO_0015701,T-B+ severe combined immunodeficiency due to IL-7Ralpha deficiency +15.3454106,MONDO:0015725,http://purl.obolibrary.org/obo/MONDO_0015725,mosaic trisomy 14 +15.3454106,MONDO:0016102,http://purl.obolibrary.org/obo/MONDO_0016102,subacute inflammatory demyelinating polyneuropathy +15.3454106,MONDO:0016160,http://purl.obolibrary.org/obo/MONDO_0016160,X-linked intellectual disability-epilepsy syndrome +15.3454106,MONDO:0016189,http://purl.obolibrary.org/obo/MONDO_0016189,qualitative or quantitative defects of filamin C +15.3454106,MONDO:0016199,http://purl.obolibrary.org/obo/MONDO_0016199,qualitative or quantitative defects of protein SERCA1 +15.3454106,MONDO:0016456,http://purl.obolibrary.org/obo/MONDO_0016456,5q14.3 microdeletion syndrome +15.3454106,MONDO:0016539,http://purl.obolibrary.org/obo/MONDO_0016539,atypical hypotonia-cystinuria syndrome +15.3454106,MONDO:0016662,http://purl.obolibrary.org/obo/MONDO_0016662,idiopathic recurrent pericarditis +15.3454106,MONDO:0016676,http://purl.obolibrary.org/obo/MONDO_0016676,recurrent infections-inflammatory syndrome due to zinc metabolism disorder syndrome +15.3454106,MONDO:0016731,http://purl.obolibrary.org/obo/MONDO_0016731,desmoplastic infantile astrocytoma/ganglioglioma +15.3454106,MONDO:0016807,http://purl.obolibrary.org/obo/MONDO_0016807,pure mitochondrial myopathy +15.3454106,MONDO:0016836,http://purl.obolibrary.org/obo/MONDO_0016836,16p13.11 microdeletion syndrome +15.3454106,MONDO:0016961,http://purl.obolibrary.org/obo/MONDO_0016961,partial duplication of the long arm of chromosome 10 +15.3454106,MONDO:0016983,http://purl.obolibrary.org/obo/MONDO_0016983,Bartter syndrome with hypocalcemia +15.3454106,MONDO:0017177,http://purl.obolibrary.org/obo/MONDO_0017177,hemihyperplasia-multiple lipomatosis syndrome +15.3454106,MONDO:0017350,http://purl.obolibrary.org/obo/MONDO_0017350,inborn disorder of tryptophan metabolism +15.3454106,MONDO:0017456,http://purl.obolibrary.org/obo/MONDO_0017456,central polydactyly of fingers +15.3454106,MONDO:0017617,http://purl.obolibrary.org/obo/MONDO_0017617,acquired adult-onset immunodeficiency +15.3454106,MONDO:0017624,http://purl.obolibrary.org/obo/MONDO_0017624,familial primary hypomagnesemia with hypercalciuria and nephrocalcinosis +15.3454106,MONDO:0017835,http://purl.obolibrary.org/obo/MONDO_0017835,lymphocytic hypereosinophilic syndrome +15.3454106,MONDO:0017907,http://purl.obolibrary.org/obo/MONDO_0017907,primary lymphoma of the conjunctiva +15.3454106,MONDO:0018001,http://purl.obolibrary.org/obo/MONDO_0018001,inverse Klippel-Trenaunay syndrome +15.3454106,MONDO:0018007,http://purl.obolibrary.org/obo/MONDO_0018007,mosaic genome-wide paternal uniparental disomy +15.3454106,MONDO:0018046,http://purl.obolibrary.org/obo/MONDO_0018046,thrombocytopenia-robin sequence syndrome +15.3454106,MONDO:0018052,http://purl.obolibrary.org/obo/MONDO_0018052,hypoplastic tibiae-postaxial polydactyly syndrome +15.3454106,MONDO:0018199,http://purl.obolibrary.org/obo/MONDO_0018199,new-onset refractory status epilepticus +15.3454106,MONDO:0018203,http://purl.obolibrary.org/obo/MONDO_0018203,LMNA-related cardiocutaneous progeria syndrome +15.3454106,MONDO:0018269,http://purl.obolibrary.org/obo/MONDO_0018269,white platelet syndrome +15.3454106,MONDO:0018283,http://purl.obolibrary.org/obo/MONDO_0018283,primary qualitative or quantitative defects of alpha-dystroglycan +15.3454106,MONDO:0018357,http://purl.obolibrary.org/obo/MONDO_0018357,neonatal antiphospholipid syndrome +15.3454106,MONDO:0018496,http://purl.obolibrary.org/obo/MONDO_0018496,ARX-related encephalopathy-brain malformation spectrum +15.3454106,MONDO:0018565,http://purl.obolibrary.org/obo/MONDO_0018565,congenital urachal anomaly +15.3454106,MONDO:0018602,http://purl.obolibrary.org/obo/MONDO_0018602,necrotizing soft tissue infection +15.3454106,MONDO:0018629,http://purl.obolibrary.org/obo/MONDO_0018629,focal stiff limb syndrome +15.3454106,MONDO:0018703,http://purl.obolibrary.org/obo/MONDO_0018703,isolated splenogonadal fusion +15.3454106,MONDO:0018769,http://purl.obolibrary.org/obo/MONDO_0018769,isosporiasis +15.3454106,MONDO:0018801,http://purl.obolibrary.org/obo/MONDO_0018801,congenital bilateral absence of vas deferens +15.3454106,MONDO:0018853,http://purl.obolibrary.org/obo/MONDO_0018853,transgrediens et progrediens palmoplantar keratoderma +15.3454106,MONDO:0019159,http://purl.obolibrary.org/obo/MONDO_0019159,Loeffler endocarditis +15.3454106,MONDO:0019377,http://purl.obolibrary.org/obo/MONDO_0019377,Mycoplasma encephalitis +15.3454106,MONDO:0019551,http://purl.obolibrary.org/obo/MONDO_0019551,hereditary motor and sensory neuropathy type 6 +15.3454106,MONDO:0019659,http://purl.obolibrary.org/obo/MONDO_0019659,Pfeiffer syndrome type 1 +15.3454106,MONDO:0019671,http://purl.obolibrary.org/obo/MONDO_0019671,radial hemimelia +15.3454106,MONDO:0019896,http://purl.obolibrary.org/obo/MONDO_0019896,Kleefstra syndrome due to 9q34 microdeletion +15.3454106,MONDO:0019932,http://purl.obolibrary.org/obo/MONDO_0019932,isolated partial vaginal agenesis +15.3454106,MONDO:0020315,http://purl.obolibrary.org/obo/MONDO_0020315,unclassified myelodysplastic syndrome +15.3454106,MONDO:0020490,http://purl.obolibrary.org/obo/MONDO_0020490,mosaic trisomy 9 +15.3454106,MONDO:0020518,http://purl.obolibrary.org/obo/MONDO_0020518,Hashimoto-Pritzker syndrome +15.3454106,MONDO:0020559,http://purl.obolibrary.org/obo/MONDO_0020559,O'Sullivan-McLeod syndrome +15.3454106,MONDO:0020567,http://purl.obolibrary.org/obo/MONDO_0020567,apnea of prematurity +15.3454106,MONDO:0020734,http://purl.obolibrary.org/obo/MONDO_0020734,erythrocyte AMP deaminase deficiency +15.3454106,MONDO:0021137,http://purl.obolibrary.org/obo/MONDO_0021137,not rare +15.3454106,MONDO:0021275,http://purl.obolibrary.org/obo/MONDO_0021275,papilloma of eyelid +15.3454106,MONDO:0021461,http://purl.obolibrary.org/obo/MONDO_0021461,benign neoplasm of hypopharynx +15.3454106,MONDO:0021465,http://purl.obolibrary.org/obo/MONDO_0021465,benign neoplasm of appendix +15.3454106,MONDO:0021467,http://purl.obolibrary.org/obo/MONDO_0021467,benign neoplasm of renal pelvis +15.3454106,MONDO:0021488,http://purl.obolibrary.org/obo/MONDO_0021488,benign neoplasm of lacrimal gland +15.3454106,MONDO:0021746,http://purl.obolibrary.org/obo/MONDO_0021746,pyelocystitis +15.3454106,MONDO:0022993,http://purl.obolibrary.org/obo/MONDO_0022993,dipsogenic diabetes insipidus +15.3454106,MONDO:0023682,http://purl.obolibrary.org/obo/MONDO_0023682,tympanic paraganglioma +15.3454106,MONDO:0024326,http://purl.obolibrary.org/obo/MONDO_0024326,pleural adenomatoid tumor +15.3454106,MONDO:0024416,http://purl.obolibrary.org/obo/MONDO_0024416,Neorickettsia infectious disease +15.3454106,MONDO:0024612,http://purl.obolibrary.org/obo/MONDO_0024612,manic bipolar affective disorder +15.3454106,MONDO:0024655,http://purl.obolibrary.org/obo/MONDO_0024655,rheumatic pericarditis +15.3454106,MONDO:0024658,http://purl.obolibrary.org/obo/MONDO_0024658,extrahepatic bile duct sarcoma +15.3454106,MONDO:0024884,http://purl.obolibrary.org/obo/MONDO_0024884,metastatic carcinoma in the bone +15.3454106,MONDO:0026045,http://purl.obolibrary.org/obo/MONDO_0026045,prurigo nodularis +15.3454106,MONDO:0030048,http://purl.obolibrary.org/obo/MONDO_0030048,harderoporphyria +15.3454106,MONDO:0030073,http://purl.obolibrary.org/obo/MONDO_0030073,Mitchell syndrome +15.3454106,MONDO:0033262,http://purl.obolibrary.org/obo/MONDO_0033262,nephrotic syndrome 15 +15.3454106,MONDO:0036779,http://purl.obolibrary.org/obo/MONDO_0036779,axillary neoplasm +15.3454106,MONDO:0043762,http://purl.obolibrary.org/obo/MONDO_0043762,tubal pregnancy +15.3454106,MONDO:0044788,http://purl.obolibrary.org/obo/MONDO_0044788,perihilar intrahepatic cholangiocarcinoma +15.3454106,MONDO:0100101,http://purl.obolibrary.org/obo/MONDO_0100101,fetal akinesia deformation sequence 1 +15.3454106,MONDO:0100146,http://purl.obolibrary.org/obo/MONDO_0100146,ATP6AP2-related disorder +15.3454106,MONDO:0100147,http://purl.obolibrary.org/obo/MONDO_0100147,SATB2 associated disorder +15.3454106,MONDO:0100160,http://purl.obolibrary.org/obo/MONDO_0100160,alcoholic ketoacidosis +15.3454106,MOP:0000623,http://purl.obolibrary.org/obo/MOP_0000623,none +15.3454106,MOP:0004093,http://purl.obolibrary.org/obo/MOP_0004093,none +15.3454106,NCBITaxon:1003871,http://purl.obolibrary.org/obo/NCBITaxon_1003871,none +15.3454106,NCBITaxon:1003890,http://purl.obolibrary.org/obo/NCBITaxon_1003890,none +15.3454106,NCBITaxon:1008893,http://purl.obolibrary.org/obo/NCBITaxon_1008893,none +15.3454106,NCBITaxon:100937,http://purl.obolibrary.org/obo/NCBITaxon_100937,none +15.3454106,NCBITaxon:10231,http://purl.obolibrary.org/obo/NCBITaxon_10231,none +15.3454106,NCBITaxon:102806,http://purl.obolibrary.org/obo/NCBITaxon_102806,none +15.3454106,NCBITaxon:1046120,http://purl.obolibrary.org/obo/NCBITaxon_1046120,none +15.3454106,NCBITaxon:1046121,http://purl.obolibrary.org/obo/NCBITaxon_1046121,none +15.3454106,NCBITaxon:1048434,http://purl.obolibrary.org/obo/NCBITaxon_1048434,none +15.3454106,NCBITaxon:10590,http://purl.obolibrary.org/obo/NCBITaxon_10590,none +15.3454106,NCBITaxon:106328,http://purl.obolibrary.org/obo/NCBITaxon_106328,none +15.3454106,NCBITaxon:1077151,http://purl.obolibrary.org/obo/NCBITaxon_1077151,none +15.3454106,NCBITaxon:108087,http://purl.obolibrary.org/obo/NCBITaxon_108087,none +15.3454106,NCBITaxon:10826,http://purl.obolibrary.org/obo/NCBITaxon_10826,none +15.3454106,NCBITaxon:10841,http://purl.obolibrary.org/obo/NCBITaxon_10841,none +15.3454106,NCBITaxon:1095706,http://purl.obolibrary.org/obo/NCBITaxon_1095706,none +15.3454106,NCBITaxon:11008,http://purl.obolibrary.org/obo/NCBITaxon_11008,none +15.3454106,NCBITaxon:1100890,http://purl.obolibrary.org/obo/NCBITaxon_1100890,none +15.3454106,NCBITaxon:112,http://purl.obolibrary.org/obo/NCBITaxon_112,none +15.3454106,NCBITaxon:112227,http://purl.obolibrary.org/obo/NCBITaxon_112227,none +15.3454106,NCBITaxon:112228,http://purl.obolibrary.org/obo/NCBITaxon_112228,none +15.3454106,NCBITaxon:1125677,http://purl.obolibrary.org/obo/NCBITaxon_1125677,none +15.3454106,NCBITaxon:1126387,http://purl.obolibrary.org/obo/NCBITaxon_1126387,none +15.3454106,NCBITaxon:1128117,http://purl.obolibrary.org/obo/NCBITaxon_1128117,none +15.3454106,NCBITaxon:1128118,http://purl.obolibrary.org/obo/NCBITaxon_1128118,none +15.3454106,NCBITaxon:11294,http://purl.obolibrary.org/obo/NCBITaxon_11294,none +15.3454106,NCBITaxon:114049,http://purl.obolibrary.org/obo/NCBITaxon_114049,none +15.3454106,NCBITaxon:115232,http://purl.obolibrary.org/obo/NCBITaxon_115232,none +15.3454106,NCBITaxon:115405,http://purl.obolibrary.org/obo/NCBITaxon_115405,none +15.3454106,NCBITaxon:115407,http://purl.obolibrary.org/obo/NCBITaxon_115407,none +15.3454106,NCBITaxon:1155188,http://purl.obolibrary.org/obo/NCBITaxon_1155188,none +15.3454106,NCBITaxon:11745,http://purl.obolibrary.org/obo/NCBITaxon_11745,none +15.3454106,NCBITaxon:11774,http://purl.obolibrary.org/obo/NCBITaxon_11774,none +15.3454106,NCBITaxon:11803,http://purl.obolibrary.org/obo/NCBITaxon_11803,none +15.3454106,NCBITaxon:119977,http://purl.obolibrary.org/obo/NCBITaxon_119977,none +15.3454106,NCBITaxon:120087,http://purl.obolibrary.org/obo/NCBITaxon_120087,none +15.3454106,NCBITaxon:12101,http://purl.obolibrary.org/obo/NCBITaxon_12101,none +15.3454106,NCBITaxon:12158,http://purl.obolibrary.org/obo/NCBITaxon_12158,none +15.3454106,NCBITaxon:1218488,http://purl.obolibrary.org/obo/NCBITaxon_1218488,none +15.3454106,NCBITaxon:122280,http://purl.obolibrary.org/obo/NCBITaxon_122280,none +15.3454106,NCBITaxon:12229,http://purl.obolibrary.org/obo/NCBITaxon_12229,none +15.3454106,NCBITaxon:1230254,http://purl.obolibrary.org/obo/NCBITaxon_1230254,none +15.3454106,NCBITaxon:1231712,http://purl.obolibrary.org/obo/NCBITaxon_1231712,none +15.3454106,NCBITaxon:123767,http://purl.obolibrary.org/obo/NCBITaxon_123767,none +15.3454106,NCBITaxon:124307,http://purl.obolibrary.org/obo/NCBITaxon_124307,none +15.3454106,NCBITaxon:125599,http://purl.obolibrary.org/obo/NCBITaxon_125599,none +15.3454106,NCBITaxon:1262365,http://purl.obolibrary.org/obo/NCBITaxon_1262365,Tabanoidea +15.3454106,NCBITaxon:1266,http://purl.obolibrary.org/obo/NCBITaxon_1266,none +15.3454106,NCBITaxon:12672,http://purl.obolibrary.org/obo/NCBITaxon_12672,none +15.3454106,NCBITaxon:1269,http://purl.obolibrary.org/obo/NCBITaxon_1269,none +15.3454106,NCBITaxon:1298631,http://purl.obolibrary.org/obo/NCBITaxon_1298631,none +15.3454106,NCBITaxon:130139,http://purl.obolibrary.org/obo/NCBITaxon_130139,none +15.3454106,NCBITaxon:130264,http://purl.obolibrary.org/obo/NCBITaxon_130264,none +15.3454106,NCBITaxon:130269,http://purl.obolibrary.org/obo/NCBITaxon_130269,none +15.3454106,NCBITaxon:1316646,http://purl.obolibrary.org/obo/NCBITaxon_1316646,none +15.3454106,NCBITaxon:1321328,http://purl.obolibrary.org/obo/NCBITaxon_1321328,none +15.3454106,NCBITaxon:1329975,http://purl.obolibrary.org/obo/NCBITaxon_1329975,none +15.3454106,NCBITaxon:1332246,http://purl.obolibrary.org/obo/NCBITaxon_1332246,none +15.3454106,NCBITaxon:13422,http://purl.obolibrary.org/obo/NCBITaxon_13422,none +15.3454106,NCBITaxon:134599,http://purl.obolibrary.org/obo/NCBITaxon_134599,none +15.3454106,NCBITaxon:134612,http://purl.obolibrary.org/obo/NCBITaxon_134612,none +15.3454106,NCBITaxon:135250,http://purl.obolibrary.org/obo/NCBITaxon_135250,none +15.3454106,NCBITaxon:1392862,http://purl.obolibrary.org/obo/NCBITaxon_1392862,none +15.3454106,NCBITaxon:141711,http://purl.obolibrary.org/obo/NCBITaxon_141711,none +15.3454106,NCBITaxon:1428458,http://purl.obolibrary.org/obo/NCBITaxon_1428458,none +15.3454106,NCBITaxon:144017,http://purl.obolibrary.org/obo/NCBITaxon_144017,none +15.3454106,NCBITaxon:147371,http://purl.obolibrary.org/obo/NCBITaxon_147371,none +15.3454106,NCBITaxon:147549,http://purl.obolibrary.org/obo/NCBITaxon_147549,none +15.3454106,NCBITaxon:1485186,http://purl.obolibrary.org/obo/NCBITaxon_1485186,none +15.3454106,NCBITaxon:1489907,http://purl.obolibrary.org/obo/NCBITaxon_1489907,none +15.3454106,NCBITaxon:1489909,http://purl.obolibrary.org/obo/NCBITaxon_1489909,none +15.3454106,NCBITaxon:1489920,http://purl.obolibrary.org/obo/NCBITaxon_1489920,none +15.3454106,NCBITaxon:1489921,http://purl.obolibrary.org/obo/NCBITaxon_1489921,none +15.3454106,NCBITaxon:1490028,http://purl.obolibrary.org/obo/NCBITaxon_1490028,none +15.3454106,NCBITaxon:1504288,http://purl.obolibrary.org/obo/NCBITaxon_1504288,none +15.3454106,NCBITaxon:1513277,http://purl.obolibrary.org/obo/NCBITaxon_1513277,none +15.3454106,NCBITaxon:1513300,http://purl.obolibrary.org/obo/NCBITaxon_1513300,none +15.3454106,NCBITaxon:1549608,http://purl.obolibrary.org/obo/NCBITaxon_1549608,none +15.3454106,NCBITaxon:156201,http://purl.obolibrary.org/obo/NCBITaxon_156201,none +15.3454106,NCBITaxon:1585427,http://purl.obolibrary.org/obo/NCBITaxon_1585427,none +15.3454106,NCBITaxon:1585432,http://purl.obolibrary.org/obo/NCBITaxon_1585432,none +15.3454106,NCBITaxon:160818,http://purl.obolibrary.org/obo/NCBITaxon_160818,none +15.3454106,NCBITaxon:161274,http://purl.obolibrary.org/obo/NCBITaxon_161274,none +15.3454106,NCBITaxon:161675,http://purl.obolibrary.org/obo/NCBITaxon_161675,none +15.3454106,NCBITaxon:162266,http://purl.obolibrary.org/obo/NCBITaxon_162266,none +15.3454106,NCBITaxon:163724,http://purl.obolibrary.org/obo/NCBITaxon_163724,none +15.3454106,NCBITaxon:163726,http://purl.obolibrary.org/obo/NCBITaxon_163726,none +15.3454106,NCBITaxon:163733,http://purl.obolibrary.org/obo/NCBITaxon_163733,none +15.3454106,NCBITaxon:165826,http://purl.obolibrary.org/obo/NCBITaxon_165826,none +15.3454106,NCBITaxon:1673678,http://purl.obolibrary.org/obo/NCBITaxon_1673678,none +15.3454106,NCBITaxon:167488,http://purl.obolibrary.org/obo/NCBITaxon_167488,none +15.3454106,NCBITaxon:167947,http://purl.obolibrary.org/obo/NCBITaxon_167947,none +15.3454106,NCBITaxon:168630,http://purl.obolibrary.org/obo/NCBITaxon_168630,none +15.3454106,NCBITaxon:169138,http://purl.obolibrary.org/obo/NCBITaxon_169138,none +15.3454106,NCBITaxon:169655,http://purl.obolibrary.org/obo/NCBITaxon_169655,none +15.3454106,NCBITaxon:169697,http://purl.obolibrary.org/obo/NCBITaxon_169697,none +15.3454106,NCBITaxon:169745,http://purl.obolibrary.org/obo/NCBITaxon_169745,none +15.3454106,NCBITaxon:169766,http://purl.obolibrary.org/obo/NCBITaxon_169766,none +15.3454106,NCBITaxon:171551,http://purl.obolibrary.org/obo/NCBITaxon_171551,none +15.3454106,NCBITaxon:175241,http://purl.obolibrary.org/obo/NCBITaxon_175241,none +15.3454106,NCBITaxon:175242,http://purl.obolibrary.org/obo/NCBITaxon_175242,none +15.3454106,NCBITaxon:180587,http://purl.obolibrary.org/obo/NCBITaxon_180587,none +15.3454106,NCBITaxon:1807140,http://purl.obolibrary.org/obo/NCBITaxon_1807140,none +15.3454106,NCBITaxon:1813598,http://purl.obolibrary.org/obo/NCBITaxon_1813598,none +15.3454106,NCBITaxon:181483,http://purl.obolibrary.org/obo/NCBITaxon_181483,none +15.3454106,NCBITaxon:183585,http://purl.obolibrary.org/obo/NCBITaxon_183585,none +15.3454106,NCBITaxon:183963,http://purl.obolibrary.org/obo/NCBITaxon_183963,none +15.3454106,NCBITaxon:186270,http://purl.obolibrary.org/obo/NCBITaxon_186270,none +15.3454106,NCBITaxon:186995,http://purl.obolibrary.org/obo/NCBITaxon_186995,none +15.3454106,NCBITaxon:187977,http://purl.obolibrary.org/obo/NCBITaxon_187977,none +15.3454106,NCBITaxon:188141,http://purl.obolibrary.org/obo/NCBITaxon_188141,none +15.3454106,NCBITaxon:188786,http://purl.obolibrary.org/obo/NCBITaxon_188786,none +15.3454106,NCBITaxon:1914302,http://purl.obolibrary.org/obo/NCBITaxon_1914302,none +15.3454106,NCBITaxon:192735,http://purl.obolibrary.org/obo/NCBITaxon_192735,none +15.3454106,NCBITaxon:193120,http://purl.obolibrary.org/obo/NCBITaxon_193120,none +15.3454106,NCBITaxon:1933306,http://purl.obolibrary.org/obo/NCBITaxon_1933306,none +15.3454106,NCBITaxon:194,http://purl.obolibrary.org/obo/NCBITaxon_194,Campylobacter +15.3454106,NCBITaxon:1972586,http://purl.obolibrary.org/obo/NCBITaxon_1972586,none +15.3454106,NCBITaxon:1972587,http://purl.obolibrary.org/obo/NCBITaxon_1972587,none +15.3454106,NCBITaxon:1972639,http://purl.obolibrary.org/obo/NCBITaxon_1972639,none +15.3454106,NCBITaxon:198036,http://purl.obolibrary.org/obo/NCBITaxon_198036,none +15.3454106,NCBITaxon:1985692,http://purl.obolibrary.org/obo/NCBITaxon_1985692,none +15.3454106,NCBITaxon:2008794,http://purl.obolibrary.org/obo/NCBITaxon_2008794,none +15.3454106,NCBITaxon:203683,http://purl.obolibrary.org/obo/NCBITaxon_203683,none +15.3454106,NCBITaxon:209661,http://purl.obolibrary.org/obo/NCBITaxon_209661,none +15.3454106,NCBITaxon:211977,http://purl.obolibrary.org/obo/NCBITaxon_211977,none +15.3454106,NCBITaxon:212811,http://purl.obolibrary.org/obo/NCBITaxon_212811,none +15.3454106,NCBITaxon:213557,http://purl.obolibrary.org/obo/NCBITaxon_213557,none +15.3454106,NCBITaxon:214506,http://purl.obolibrary.org/obo/NCBITaxon_214506,none +15.3454106,NCBITaxon:2169649,http://purl.obolibrary.org/obo/NCBITaxon_2169649,none +15.3454106,NCBITaxon:217035,http://purl.obolibrary.org/obo/NCBITaxon_217035,none +15.3454106,NCBITaxon:217038,http://purl.obolibrary.org/obo/NCBITaxon_217038,none +15.3454106,NCBITaxon:2174975,http://purl.obolibrary.org/obo/NCBITaxon_2174975,none +15.3454106,NCBITaxon:218924,http://purl.obolibrary.org/obo/NCBITaxon_218924,none +15.3454106,NCBITaxon:223351,http://purl.obolibrary.org/obo/NCBITaxon_223351,none +15.3454106,NCBITaxon:2235,http://purl.obolibrary.org/obo/NCBITaxon_2235,none +15.3454106,NCBITaxon:2236,http://purl.obolibrary.org/obo/NCBITaxon_2236,none +15.3454106,NCBITaxon:223769,http://purl.obolibrary.org/obo/NCBITaxon_223769,none +15.3454106,NCBITaxon:225057,http://purl.obolibrary.org/obo/NCBITaxon_225057,none +15.3454106,NCBITaxon:225058,http://purl.obolibrary.org/obo/NCBITaxon_225058,none +15.3454106,NCBITaxon:228578,http://purl.obolibrary.org/obo/NCBITaxon_228578,none +15.3454106,NCBITaxon:230080,http://purl.obolibrary.org/obo/NCBITaxon_230080,none +15.3454106,NCBITaxon:230081,http://purl.obolibrary.org/obo/NCBITaxon_230081,none +15.3454106,NCBITaxon:230844,http://purl.obolibrary.org/obo/NCBITaxon_230844,none +15.3454106,NCBITaxon:233766,http://purl.obolibrary.org/obo/NCBITaxon_233766,none +15.3454106,NCBITaxon:233784,http://purl.obolibrary.org/obo/NCBITaxon_233784,none +15.3454106,NCBITaxon:240492,http://purl.obolibrary.org/obo/NCBITaxon_240492,none +15.3454106,NCBITaxon:241792,http://purl.obolibrary.org/obo/NCBITaxon_241792,none +15.3454106,NCBITaxon:243563,http://purl.obolibrary.org/obo/NCBITaxon_243563,none +15.3454106,NCBITaxon:246280,http://purl.obolibrary.org/obo/NCBITaxon_246280,none +15.3454106,NCBITaxon:247507,http://purl.obolibrary.org/obo/NCBITaxon_247507,none +15.3454106,NCBITaxon:248055,http://purl.obolibrary.org/obo/NCBITaxon_248055,none +15.3454106,NCBITaxon:2508084,http://purl.obolibrary.org/obo/NCBITaxon_2508084,none +15.3454106,NCBITaxon:2508210,http://purl.obolibrary.org/obo/NCBITaxon_2508210,none +15.3454106,NCBITaxon:2509473,http://purl.obolibrary.org/obo/NCBITaxon_2509473,none +15.3454106,NCBITaxon:2509474,http://purl.obolibrary.org/obo/NCBITaxon_2509474,none +15.3454106,NCBITaxon:2546214,http://purl.obolibrary.org/obo/NCBITaxon_2546214,none +15.3454106,NCBITaxon:255238,http://purl.obolibrary.org/obo/NCBITaxon_255238,none +15.3454106,NCBITaxon:2560254,http://purl.obolibrary.org/obo/NCBITaxon_2560254,none +15.3454106,NCBITaxon:2560550,http://purl.obolibrary.org/obo/NCBITaxon_2560550,none +15.3454106,NCBITaxon:2560583,http://purl.obolibrary.org/obo/NCBITaxon_2560583,none +15.3454106,NCBITaxon:256687,http://purl.obolibrary.org/obo/NCBITaxon_256687,none +15.3454106,NCBITaxon:260377,http://purl.obolibrary.org/obo/NCBITaxon_260377,none +15.3454106,NCBITaxon:262588,http://purl.obolibrary.org/obo/NCBITaxon_262588,none +15.3454106,NCBITaxon:2640676,http://purl.obolibrary.org/obo/NCBITaxon_2640676,none +15.3454106,NCBITaxon:267970,http://purl.obolibrary.org/obo/NCBITaxon_267970,none +15.3454106,NCBITaxon:271516,http://purl.obolibrary.org/obo/NCBITaxon_271516,none +15.3454106,NCBITaxon:2731643,http://purl.obolibrary.org/obo/NCBITaxon_2731643,none +15.3454106,NCBITaxon:2732091,http://purl.obolibrary.org/obo/NCBITaxon_2732091,none +15.3454106,NCBITaxon:2732412,http://purl.obolibrary.org/obo/NCBITaxon_2732412,none +15.3454106,NCBITaxon:2732413,http://purl.obolibrary.org/obo/NCBITaxon_2732413,none +15.3454106,NCBITaxon:2732414,http://purl.obolibrary.org/obo/NCBITaxon_2732414,none +15.3454106,NCBITaxon:2732528,http://purl.obolibrary.org/obo/NCBITaxon_2732528,none +15.3454106,NCBITaxon:2732556,http://purl.obolibrary.org/obo/NCBITaxon_2732556,none +15.3454106,NCBITaxon:2734454,http://purl.obolibrary.org/obo/NCBITaxon_2734454,none +15.3454106,NCBITaxon:2734469,http://purl.obolibrary.org/obo/NCBITaxon_2734469,none +15.3454106,NCBITaxon:27352,http://purl.obolibrary.org/obo/NCBITaxon_27352,none +15.3454106,NCBITaxon:27353,http://purl.obolibrary.org/obo/NCBITaxon_27353,none +15.3454106,NCBITaxon:2743697,http://purl.obolibrary.org/obo/NCBITaxon_2743697,none +15.3454106,NCBITaxon:2745,http://purl.obolibrary.org/obo/NCBITaxon_2745,none +15.3454106,NCBITaxon:27474,http://purl.obolibrary.org/obo/NCBITaxon_27474,none +15.3454106,NCBITaxon:27841,http://purl.obolibrary.org/obo/NCBITaxon_27841,Echinostomata +15.3454106,NCBITaxon:27843,http://purl.obolibrary.org/obo/NCBITaxon_27843,none +15.3454106,NCBITaxon:2788647,http://purl.obolibrary.org/obo/NCBITaxon_2788647,none +15.3454106,NCBITaxon:28256,http://purl.obolibrary.org/obo/NCBITaxon_28256,none +15.3454106,NCBITaxon:282786,http://purl.obolibrary.org/obo/NCBITaxon_282786,none +15.3454106,NCBITaxon:287719,http://purl.obolibrary.org/obo/NCBITaxon_287719,none +15.3454106,NCBITaxon:28871,http://purl.obolibrary.org/obo/NCBITaxon_28871,none +15.3454106,NCBITaxon:28874,http://purl.obolibrary.org/obo/NCBITaxon_28874,none +15.3454106,NCBITaxon:29216,http://purl.obolibrary.org/obo/NCBITaxon_29216,none +15.3454106,NCBITaxon:292633,http://purl.obolibrary.org/obo/NCBITaxon_292633,none +15.3454106,NCBITaxon:293478,http://purl.obolibrary.org/obo/NCBITaxon_293478,none +15.3454106,NCBITaxon:29407,http://purl.obolibrary.org/obo/NCBITaxon_29407,none +15.3454106,NCBITaxon:29408,http://purl.obolibrary.org/obo/NCBITaxon_29408,none +15.3454106,NCBITaxon:30023,http://purl.obolibrary.org/obo/NCBITaxon_30023,none +15.3454106,NCBITaxon:3009,http://purl.obolibrary.org/obo/NCBITaxon_3009,none +15.3454106,NCBITaxon:301270,http://purl.obolibrary.org/obo/NCBITaxon_301270,none +15.3454106,NCBITaxon:301698,http://purl.obolibrary.org/obo/NCBITaxon_301698,none +15.3454106,NCBITaxon:301699,http://purl.obolibrary.org/obo/NCBITaxon_301699,none +15.3454106,NCBITaxon:30312,http://purl.obolibrary.org/obo/NCBITaxon_30312,none +15.3454106,NCBITaxon:303300,http://purl.obolibrary.org/obo/NCBITaxon_303300,none +15.3454106,NCBITaxon:307677,http://purl.obolibrary.org/obo/NCBITaxon_307677,none +15.3454106,NCBITaxon:30790,http://purl.obolibrary.org/obo/NCBITaxon_30790,none +15.3454106,NCBITaxon:30863,http://purl.obolibrary.org/obo/NCBITaxon_30863,none +15.3454106,NCBITaxon:310907,http://purl.obolibrary.org/obo/NCBITaxon_310907,none +15.3454106,NCBITaxon:312688,http://purl.obolibrary.org/obo/NCBITaxon_312688,none +15.3454106,NCBITaxon:31345,http://purl.obolibrary.org/obo/NCBITaxon_31345,none +15.3454106,NCBITaxon:31468,http://purl.obolibrary.org/obo/NCBITaxon_31468,none +15.3454106,NCBITaxon:318836,http://purl.obolibrary.org/obo/NCBITaxon_318836,none +15.3454106,NCBITaxon:32348,http://purl.obolibrary.org/obo/NCBITaxon_32348,none +15.3454106,NCBITaxon:325212,http://purl.obolibrary.org/obo/NCBITaxon_325212,none +15.3454106,NCBITaxon:327375,http://purl.obolibrary.org/obo/NCBITaxon_327375,none +15.3454106,NCBITaxon:328432,http://purl.obolibrary.org/obo/NCBITaxon_328432,none +15.3454106,NCBITaxon:329854,http://purl.obolibrary.org/obo/NCBITaxon_329854,none +15.3454106,NCBITaxon:33103,http://purl.obolibrary.org/obo/NCBITaxon_33103,none +15.3454106,NCBITaxon:33189,http://purl.obolibrary.org/obo/NCBITaxon_33189,none +15.3454106,NCBITaxon:332097,http://purl.obolibrary.org/obo/NCBITaxon_332097,none +15.3454106,NCBITaxon:333361,http://purl.obolibrary.org/obo/NCBITaxon_333361,none +15.3454106,NCBITaxon:33365,http://purl.obolibrary.org/obo/NCBITaxon_33365,none +15.3454106,NCBITaxon:334425,http://purl.obolibrary.org/obo/NCBITaxon_334425,none +15.3454106,NCBITaxon:334520,http://purl.obolibrary.org/obo/NCBITaxon_334520,none +15.3454106,NCBITaxon:335204,http://purl.obolibrary.org/obo/NCBITaxon_335204,none +15.3454106,NCBITaxon:33755,http://purl.obolibrary.org/obo/NCBITaxon_33755,none +15.3454106,NCBITaxon:340093,http://purl.obolibrary.org/obo/NCBITaxon_340093,none +15.3454106,NCBITaxon:341167,http://purl.obolibrary.org/obo/NCBITaxon_341167,none +15.3454106,NCBITaxon:34144,http://purl.obolibrary.org/obo/NCBITaxon_34144,none +15.3454106,NCBITaxon:341940,http://purl.obolibrary.org/obo/NCBITaxon_341940,none +15.3454106,NCBITaxon:342596,http://purl.obolibrary.org/obo/NCBITaxon_342596,none +15.3454106,NCBITaxon:34477,http://purl.obolibrary.org/obo/NCBITaxon_34477,none +15.3454106,NCBITaxon:346673,http://purl.obolibrary.org/obo/NCBITaxon_346673,none +15.3454106,NCBITaxon:34687,http://purl.obolibrary.org/obo/NCBITaxon_34687,none +15.3454106,NCBITaxon:3514,http://purl.obolibrary.org/obo/NCBITaxon_3514,none +15.3454106,NCBITaxon:35277,http://purl.obolibrary.org/obo/NCBITaxon_35277,none +15.3454106,NCBITaxon:352882,http://purl.obolibrary.org/obo/NCBITaxon_352882,none +15.3454106,NCBITaxon:35316,http://purl.obolibrary.org/obo/NCBITaxon_35316,none +15.3454106,NCBITaxon:35515,http://purl.obolibrary.org/obo/NCBITaxon_35515,none +15.3454106,NCBITaxon:355681,http://purl.obolibrary.org/obo/NCBITaxon_355681,none +15.3454106,NCBITaxon:358400,http://purl.obolibrary.org/obo/NCBITaxon_358400,none +15.3454106,NCBITaxon:359889,http://purl.obolibrary.org/obo/NCBITaxon_359889,none +15.3454106,NCBITaxon:36229,http://purl.obolibrary.org/obo/NCBITaxon_36229,none +15.3454106,NCBITaxon:365523,http://purl.obolibrary.org/obo/NCBITaxon_365523,none +15.3454106,NCBITaxon:365609,http://purl.obolibrary.org/obo/NCBITaxon_365609,none +15.3454106,NCBITaxon:3671,http://purl.obolibrary.org/obo/NCBITaxon_3671,none +15.3454106,NCBITaxon:367110,http://purl.obolibrary.org/obo/NCBITaxon_367110,none +15.3454106,NCBITaxon:369122,http://purl.obolibrary.org/obo/NCBITaxon_369122,none +15.3454106,NCBITaxon:374063,http://purl.obolibrary.org/obo/NCBITaxon_374063,none +15.3454106,NCBITaxon:37599,http://purl.obolibrary.org/obo/NCBITaxon_37599,none +15.3454106,NCBITaxon:3764,http://purl.obolibrary.org/obo/NCBITaxon_3764,none +15.3454106,NCBITaxon:37862,http://purl.obolibrary.org/obo/NCBITaxon_37862,none +15.3454106,NCBITaxon:378855,http://purl.obolibrary.org/obo/NCBITaxon_378855,Atelidae +15.3454106,NCBITaxon:385256,http://purl.obolibrary.org/obo/NCBITaxon_385256,none +15.3454106,NCBITaxon:3879,http://purl.obolibrary.org/obo/NCBITaxon_3879,none +15.3454106,NCBITaxon:38840,http://purl.obolibrary.org/obo/NCBITaxon_38840,none +15.3454106,NCBITaxon:3887,http://purl.obolibrary.org/obo/NCBITaxon_3887,none +15.3454106,NCBITaxon:3892,http://purl.obolibrary.org/obo/NCBITaxon_3892,none +15.3454106,NCBITaxon:3894,http://purl.obolibrary.org/obo/NCBITaxon_3894,none +15.3454106,NCBITaxon:3904,http://purl.obolibrary.org/obo/NCBITaxon_3904,none +15.3454106,NCBITaxon:3913,http://purl.obolibrary.org/obo/NCBITaxon_3913,none +15.3454106,NCBITaxon:39681,http://purl.obolibrary.org/obo/NCBITaxon_39681,none +15.3454106,NCBITaxon:40053,http://purl.obolibrary.org/obo/NCBITaxon_40053,none +15.3454106,NCBITaxon:40067,http://purl.obolibrary.org/obo/NCBITaxon_40067,none +15.3454106,NCBITaxon:40070,http://purl.obolibrary.org/obo/NCBITaxon_40070,none +15.3454106,NCBITaxon:40081,http://purl.obolibrary.org/obo/NCBITaxon_40081,none +15.3454106,NCBITaxon:40117,http://purl.obolibrary.org/obo/NCBITaxon_40117,none +15.3454106,NCBITaxon:40372,http://purl.obolibrary.org/obo/NCBITaxon_40372,none +15.3454106,NCBITaxon:404429,http://purl.obolibrary.org/obo/NCBITaxon_404429,Echinostomatoidea +15.3454106,NCBITaxon:40550,http://purl.obolibrary.org/obo/NCBITaxon_40550,none +15.3454106,NCBITaxon:405554,http://purl.obolibrary.org/obo/NCBITaxon_405554,none +15.3454106,NCBITaxon:40677,http://purl.obolibrary.org/obo/NCBITaxon_40677,none +15.3454106,NCBITaxon:408719,http://purl.obolibrary.org/obo/NCBITaxon_408719,none +15.3454106,NCBITaxon:41074,http://purl.obolibrary.org/obo/NCBITaxon_41074,none +15.3454106,NCBITaxon:41361,http://purl.obolibrary.org/obo/NCBITaxon_41361,none +15.3454106,NCBITaxon:41363,http://purl.obolibrary.org/obo/NCBITaxon_41363,none +15.3454106,NCBITaxon:41485,http://purl.obolibrary.org/obo/NCBITaxon_41485,none +15.3454106,NCBITaxon:415382,http://purl.obolibrary.org/obo/NCBITaxon_415382,none +15.3454106,NCBITaxon:419782,http://purl.obolibrary.org/obo/NCBITaxon_419782,none +15.3454106,NCBITaxon:42230,http://purl.obolibrary.org/obo/NCBITaxon_42230,Mansonella +15.3454106,NCBITaxon:423358,http://purl.obolibrary.org/obo/NCBITaxon_423358,none +15.3454106,NCBITaxon:424555,http://purl.obolibrary.org/obo/NCBITaxon_424555,none +15.3454106,NCBITaxon:42567,http://purl.obolibrary.org/obo/NCBITaxon_42567,none +15.3454106,NCBITaxon:42764,http://purl.obolibrary.org/obo/NCBITaxon_42764,none +15.3454106,NCBITaxon:43085,http://purl.obolibrary.org/obo/NCBITaxon_43085,none +15.3454106,NCBITaxon:43140,http://purl.obolibrary.org/obo/NCBITaxon_43140,none +15.3454106,NCBITaxon:433462,http://purl.obolibrary.org/obo/NCBITaxon_433462,none +15.3454106,NCBITaxon:43469,http://purl.obolibrary.org/obo/NCBITaxon_43469,none +15.3454106,NCBITaxon:43521,http://purl.obolibrary.org/obo/NCBITaxon_43521,none +15.3454106,NCBITaxon:43734,http://purl.obolibrary.org/obo/NCBITaxon_43734,none +15.3454106,NCBITaxon:43735,http://purl.obolibrary.org/obo/NCBITaxon_43735,Tabanomorpha +15.3454106,NCBITaxon:43736,http://purl.obolibrary.org/obo/NCBITaxon_43736,none +15.3454106,NCBITaxon:43749,http://purl.obolibrary.org/obo/NCBITaxon_43749,none +15.3454106,NCBITaxon:44026,http://purl.obolibrary.org/obo/NCBITaxon_44026,none +15.3454106,NCBITaxon:44027,http://purl.obolibrary.org/obo/NCBITaxon_44027,none +15.3454106,NCBITaxon:44299,http://purl.obolibrary.org/obo/NCBITaxon_44299,none +15.3454106,NCBITaxon:45103,http://purl.obolibrary.org/obo/NCBITaxon_45103,none +15.3454106,NCBITaxon:45349,http://purl.obolibrary.org/obo/NCBITaxon_45349,none +15.3454106,NCBITaxon:45401,http://purl.obolibrary.org/obo/NCBITaxon_45401,none +15.3454106,NCBITaxon:4554,http://purl.obolibrary.org/obo/NCBITaxon_4554,none +15.3454106,NCBITaxon:45769,http://purl.obolibrary.org/obo/NCBITaxon_45769,none +15.3454106,NCBITaxon:4610,http://purl.obolibrary.org/obo/NCBITaxon_4610,none +15.3454106,NCBITaxon:46104,http://purl.obolibrary.org/obo/NCBITaxon_46104,none +15.3454106,NCBITaxon:46448,http://purl.obolibrary.org/obo/NCBITaxon_46448,none +15.3454106,NCBITaxon:47067,http://purl.obolibrary.org/obo/NCBITaxon_47067,none +15.3454106,NCBITaxon:47068,http://purl.obolibrary.org/obo/NCBITaxon_47068,none +15.3454106,NCBITaxon:47081,http://purl.obolibrary.org/obo/NCBITaxon_47081,none +15.3454106,NCBITaxon:471859,http://purl.obolibrary.org/obo/NCBITaxon_471859,none +15.3454106,NCBITaxon:4740,http://purl.obolibrary.org/obo/NCBITaxon_4740,none +15.3454106,NCBITaxon:474497,http://purl.obolibrary.org/obo/NCBITaxon_474497,none +15.3454106,NCBITaxon:475,http://purl.obolibrary.org/obo/NCBITaxon_475,none +15.3454106,NCBITaxon:47697,http://purl.obolibrary.org/obo/NCBITaxon_47697,none +15.3454106,NCBITaxon:47702,http://purl.obolibrary.org/obo/NCBITaxon_47702,none +15.3454106,NCBITaxon:47727,http://purl.obolibrary.org/obo/NCBITaxon_47727,none +15.3454106,NCBITaxon:47838,http://purl.obolibrary.org/obo/NCBITaxon_47838,none +15.3454106,NCBITaxon:48460,http://purl.obolibrary.org/obo/NCBITaxon_48460,none +15.3454106,NCBITaxon:48791,http://purl.obolibrary.org/obo/NCBITaxon_48791,Setariidae +15.3454106,NCBITaxon:48796,http://purl.obolibrary.org/obo/NCBITaxon_48796,Setaria +15.3454106,NCBITaxon:48849,http://purl.obolibrary.org/obo/NCBITaxon_48849,none +15.3454106,NCBITaxon:49301,http://purl.obolibrary.org/obo/NCBITaxon_49301,none +15.3454106,NCBITaxon:49442,http://purl.obolibrary.org/obo/NCBITaxon_49442,none +15.3454106,NCBITaxon:497220,http://purl.obolibrary.org/obo/NCBITaxon_497220,none +15.3454106,NCBITaxon:49747,http://purl.obolibrary.org/obo/NCBITaxon_49747,none +15.3454106,NCBITaxon:50671,http://purl.obolibrary.org/obo/NCBITaxon_50671,none +15.3454106,NCBITaxon:50673,http://purl.obolibrary.org/obo/NCBITaxon_50673,none +15.3454106,NCBITaxon:50817,http://purl.obolibrary.org/obo/NCBITaxon_50817,none +15.3454106,NCBITaxon:51241,http://purl.obolibrary.org/obo/NCBITaxon_51241,none +15.3454106,NCBITaxon:5185,http://purl.obolibrary.org/obo/NCBITaxon_5185,none +15.3454106,NCBITaxon:52985,http://purl.obolibrary.org/obo/NCBITaxon_52985,none +15.3454106,NCBITaxon:5324,http://purl.obolibrary.org/obo/NCBITaxon_5324,none +15.3454106,NCBITaxon:53258,http://purl.obolibrary.org/obo/NCBITaxon_53258,Variola minor virus +15.3454106,NCBITaxon:5339,http://purl.obolibrary.org/obo/NCBITaxon_5339,none +15.3454106,NCBITaxon:537023,http://purl.obolibrary.org/obo/NCBITaxon_537023,none +15.3454106,NCBITaxon:53922,http://purl.obolibrary.org/obo/NCBITaxon_53922,none +15.3454106,NCBITaxon:543769,http://purl.obolibrary.org/obo/NCBITaxon_543769,Rhizaria +15.3454106,NCBITaxon:5455,http://purl.obolibrary.org/obo/NCBITaxon_5455,none +15.3454106,NCBITaxon:5502,http://purl.obolibrary.org/obo/NCBITaxon_5502,none +15.3454106,NCBITaxon:551,http://purl.obolibrary.org/obo/NCBITaxon_551,none +15.3454106,NCBITaxon:553630,http://purl.obolibrary.org/obo/NCBITaxon_553630,none +15.3454106,NCBITaxon:555602,http://purl.obolibrary.org/obo/NCBITaxon_555602,none +15.3454106,NCBITaxon:5631,http://purl.obolibrary.org/obo/NCBITaxon_5631,none +15.3454106,NCBITaxon:56717,http://purl.obolibrary.org/obo/NCBITaxon_56717,none +15.3454106,NCBITaxon:568996,http://purl.obolibrary.org/obo/NCBITaxon_568996,none +15.3454106,NCBITaxon:56958,http://purl.obolibrary.org/obo/NCBITaxon_56958,none +15.3454106,NCBITaxon:578361,http://purl.obolibrary.org/obo/NCBITaxon_578361,none +15.3454106,NCBITaxon:58055,http://purl.obolibrary.org/obo/NCBITaxon_58055,none +15.3454106,NCBITaxon:58227,http://purl.obolibrary.org/obo/NCBITaxon_58227,none +15.3454106,NCBITaxon:584711,http://purl.obolibrary.org/obo/NCBITaxon_584711,none +15.3454106,NCBITaxon:58880,http://purl.obolibrary.org/obo/NCBITaxon_58880,none +15.3454106,NCBITaxon:5907,http://purl.obolibrary.org/obo/NCBITaxon_5907,none +15.3454106,NCBITaxon:59788,http://purl.obolibrary.org/obo/NCBITaxon_59788,none +15.3454106,NCBITaxon:59816,http://purl.obolibrary.org/obo/NCBITaxon_59816,none +15.3454106,NCBITaxon:60820,http://purl.obolibrary.org/obo/NCBITaxon_60820,none +15.3454106,NCBITaxon:609295,http://purl.obolibrary.org/obo/NCBITaxon_609295,none +15.3454106,NCBITaxon:6132,http://purl.obolibrary.org/obo/NCBITaxon_6132,none +15.3454106,NCBITaxon:61837,http://purl.obolibrary.org/obo/NCBITaxon_61837,none +15.3454106,NCBITaxon:6191,http://purl.obolibrary.org/obo/NCBITaxon_6191,none +15.3454106,NCBITaxon:61985,http://purl.obolibrary.org/obo/NCBITaxon_61985,none +15.3454106,NCBITaxon:6244,http://purl.obolibrary.org/obo/NCBITaxon_6244,none +15.3454106,NCBITaxon:62612,http://purl.obolibrary.org/obo/NCBITaxon_62612,none +15.3454106,NCBITaxon:62613,http://purl.obolibrary.org/obo/NCBITaxon_62613,none +15.3454106,NCBITaxon:629740,http://purl.obolibrary.org/obo/NCBITaxon_629740,none +15.3454106,NCBITaxon:63070,http://purl.obolibrary.org/obo/NCBITaxon_63070,none +15.3454106,NCBITaxon:6315,http://purl.obolibrary.org/obo/NCBITaxon_6315,Trichostrongylidae +15.3454106,NCBITaxon:63350,http://purl.obolibrary.org/obo/NCBITaxon_63350,none +15.3454106,NCBITaxon:63426,http://purl.obolibrary.org/obo/NCBITaxon_63426,none +15.3454106,NCBITaxon:634324,http://purl.obolibrary.org/obo/NCBITaxon_634324,none +15.3454106,NCBITaxon:637,http://purl.obolibrary.org/obo/NCBITaxon_637,none +15.3454106,NCBITaxon:637484,http://purl.obolibrary.org/obo/NCBITaxon_637484,none +15.3454106,NCBITaxon:640630,http://purl.obolibrary.org/obo/NCBITaxon_640630,none +15.3454106,NCBITaxon:64292,http://purl.obolibrary.org/obo/NCBITaxon_64292,none +15.3454106,NCBITaxon:64305,http://purl.obolibrary.org/obo/NCBITaxon_64305,none +15.3454106,NCBITaxon:64314,http://purl.obolibrary.org/obo/NCBITaxon_64314,none +15.3454106,NCBITaxon:645161,http://purl.obolibrary.org/obo/NCBITaxon_645161,none +15.3454106,NCBITaxon:646010,http://purl.obolibrary.org/obo/NCBITaxon_646010,none +15.3454106,NCBITaxon:649763,http://purl.obolibrary.org/obo/NCBITaxon_649763,none +15.3454106,NCBITaxon:65962,http://purl.obolibrary.org/obo/NCBITaxon_65962,none +15.3454106,NCBITaxon:667516,http://purl.obolibrary.org/obo/NCBITaxon_667516,none +15.3454106,NCBITaxon:681518,http://purl.obolibrary.org/obo/NCBITaxon_681518,none +15.3454106,NCBITaxon:681950,http://purl.obolibrary.org/obo/NCBITaxon_681950,none +15.3454106,NCBITaxon:681951,http://purl.obolibrary.org/obo/NCBITaxon_681951,none +15.3454106,NCBITaxon:687386,http://purl.obolibrary.org/obo/NCBITaxon_687386,none +15.3454106,NCBITaxon:688437,http://purl.obolibrary.org/obo/NCBITaxon_688437,none +15.3454106,NCBITaxon:68933,http://purl.obolibrary.org/obo/NCBITaxon_68933,none +15.3454106,NCBITaxon:69246,http://purl.obolibrary.org/obo/NCBITaxon_69246,none +15.3454106,NCBITaxon:694018,http://purl.obolibrary.org/obo/NCBITaxon_694018,none +15.3454106,NCBITaxon:6995,http://purl.obolibrary.org/obo/NCBITaxon_6995,none +15.3454106,NCBITaxon:7042,http://purl.obolibrary.org/obo/NCBITaxon_7042,none +15.3454106,NCBITaxon:7062,http://purl.obolibrary.org/obo/NCBITaxon_7062,none +15.3454106,NCBITaxon:70824,http://purl.obolibrary.org/obo/NCBITaxon_70824,none +15.3454106,NCBITaxon:70906,http://purl.obolibrary.org/obo/NCBITaxon_70906,none +15.3454106,NCBITaxon:71294,http://purl.obolibrary.org/obo/NCBITaxon_71294,none +15.3454106,NCBITaxon:71529,http://purl.obolibrary.org/obo/NCBITaxon_71529,none +15.3454106,NCBITaxon:71533,http://purl.obolibrary.org/obo/NCBITaxon_71533,none +15.3454106,NCBITaxon:72085,http://purl.obolibrary.org/obo/NCBITaxon_72085,none +15.3454106,NCBITaxon:721808,http://purl.obolibrary.org/obo/NCBITaxon_721808,none +15.3454106,NCBITaxon:72294,http://purl.obolibrary.org/obo/NCBITaxon_72294,Campylobacteraceae +15.3454106,NCBITaxon:7236,http://purl.obolibrary.org/obo/NCBITaxon_7236,none +15.3454106,NCBITaxon:72876,http://purl.obolibrary.org/obo/NCBITaxon_72876,none +15.3454106,NCBITaxon:7401,http://purl.obolibrary.org/obo/NCBITaxon_7401,none +15.3454106,NCBITaxon:742007,http://purl.obolibrary.org/obo/NCBITaxon_742007,none +15.3454106,NCBITaxon:745176,http://purl.obolibrary.org/obo/NCBITaxon_745176,none +15.3454106,NCBITaxon:746543,http://purl.obolibrary.org/obo/NCBITaxon_746543,none +15.3454106,NCBITaxon:751754,http://purl.obolibrary.org/obo/NCBITaxon_751754,none +15.3454106,NCBITaxon:753670,http://purl.obolibrary.org/obo/NCBITaxon_753670,none +15.3454106,NCBITaxon:7540,http://purl.obolibrary.org/obo/NCBITaxon_7540,none +15.3454106,NCBITaxon:7587,http://purl.obolibrary.org/obo/NCBITaxon_7587,Asterozoa +15.3454106,NCBITaxon:7588,http://purl.obolibrary.org/obo/NCBITaxon_7588,None +15.3454106,NCBITaxon:75981,http://purl.obolibrary.org/obo/NCBITaxon_75981,none +15.3454106,NCBITaxon:764599,http://purl.obolibrary.org/obo/NCBITaxon_764599,none +15.3454106,NCBITaxon:7705,http://purl.obolibrary.org/obo/NCBITaxon_7705,none +15.3454106,NCBITaxon:78449,http://purl.obolibrary.org/obo/NCBITaxon_78449,none +15.3454106,NCBITaxon:79256,http://purl.obolibrary.org/obo/NCBITaxon_79256,none +15.3454106,NCBITaxon:796024,http://purl.obolibrary.org/obo/NCBITaxon_796024,none +15.3454106,NCBITaxon:79674,http://purl.obolibrary.org/obo/NCBITaxon_79674,none +15.3454106,NCBITaxon:79889,http://purl.obolibrary.org/obo/NCBITaxon_79889,none +15.3454106,NCBITaxon:79919,http://purl.obolibrary.org/obo/NCBITaxon_79919,none +15.3454106,NCBITaxon:8071,http://purl.obolibrary.org/obo/NCBITaxon_8071,none +15.3454106,NCBITaxon:8072,http://purl.obolibrary.org/obo/NCBITaxon_8072,none +15.3454106,NCBITaxon:8073,http://purl.obolibrary.org/obo/NCBITaxon_8073,none +15.3454106,NCBITaxon:80974,http://purl.obolibrary.org/obo/NCBITaxon_80974,none +15.3454106,NCBITaxon:8152,http://purl.obolibrary.org/obo/NCBITaxon_8152,none +15.3454106,NCBITaxon:8157,http://purl.obolibrary.org/obo/NCBITaxon_8157,none +15.3454106,NCBITaxon:8220,http://purl.obolibrary.org/obo/NCBITaxon_8220,none +15.3454106,NCBITaxon:8344,http://purl.obolibrary.org/obo/NCBITaxon_8344,none +15.3454106,NCBITaxon:8361,http://purl.obolibrary.org/obo/NCBITaxon_8361,none +15.3454106,NCBITaxon:8375,http://purl.obolibrary.org/obo/NCBITaxon_8375,none +15.3454106,NCBITaxon:8376,http://purl.obolibrary.org/obo/NCBITaxon_8376,none +15.3454106,NCBITaxon:8382,http://purl.obolibrary.org/obo/NCBITaxon_8382,Bufonidae +15.3454106,NCBITaxon:8402,http://purl.obolibrary.org/obo/NCBITaxon_8402,none +15.3454106,NCBITaxon:8522,http://purl.obolibrary.org/obo/NCBITaxon_8522,none +15.3454106,NCBITaxon:8561,http://purl.obolibrary.org/obo/NCBITaxon_8561,Gekkonidae +15.3454106,NCBITaxon:859650,http://purl.obolibrary.org/obo/NCBITaxon_859650,none +15.3454106,NCBITaxon:8683,http://purl.obolibrary.org/obo/NCBITaxon_8683,none +15.3454106,NCBITaxon:87005,http://purl.obolibrary.org/obo/NCBITaxon_87005,none +15.3454106,NCBITaxon:870963,http://purl.obolibrary.org/obo/NCBITaxon_870963,none +15.3454106,NCBITaxon:88886,http://purl.obolibrary.org/obo/NCBITaxon_88886,none +15.3454106,NCBITaxon:89098,http://purl.obolibrary.org/obo/NCBITaxon_89098,none +15.3454106,NCBITaxon:8929,http://purl.obolibrary.org/obo/NCBITaxon_8929,Columbiformes +15.3454106,NCBITaxon:8930,http://purl.obolibrary.org/obo/NCBITaxon_8930,Columbidae +15.3454106,NCBITaxon:904668,http://purl.obolibrary.org/obo/NCBITaxon_904668,none +15.3454106,NCBITaxon:904669,http://purl.obolibrary.org/obo/NCBITaxon_904669,none +15.3454106,NCBITaxon:908227,http://purl.obolibrary.org/obo/NCBITaxon_908227,none +15.3454106,NCBITaxon:909207,http://purl.obolibrary.org/obo/NCBITaxon_909207,none +15.3454106,NCBITaxon:9158,http://purl.obolibrary.org/obo/NCBITaxon_9158,none +15.3454106,NCBITaxon:9159,http://purl.obolibrary.org/obo/NCBITaxon_9159,none +15.3454106,NCBITaxon:91607,http://purl.obolibrary.org/obo/NCBITaxon_91607,none +15.3454106,NCBITaxon:92613,http://purl.obolibrary.org/obo/NCBITaxon_92613,none +15.3454106,NCBITaxon:9335,http://purl.obolibrary.org/obo/NCBITaxon_9335,none +15.3454106,NCBITaxon:9336,http://purl.obolibrary.org/obo/NCBITaxon_9336,none +15.3454106,NCBITaxon:9392,http://purl.obolibrary.org/obo/NCBITaxon_9392,none +15.3454106,NCBITaxon:93923,http://purl.obolibrary.org/obo/NCBITaxon_93923,none +15.3454106,NCBITaxon:9393,http://purl.obolibrary.org/obo/NCBITaxon_9393,none +15.3454106,NCBITaxon:9394,http://purl.obolibrary.org/obo/NCBITaxon_9394,none +15.3454106,NCBITaxon:94925,http://purl.obolibrary.org/obo/NCBITaxon_94925,none +15.3454106,NCBITaxon:9555,http://purl.obolibrary.org/obo/NCBITaxon_9555,Papio anubis +15.3454106,NCBITaxon:9557,http://purl.obolibrary.org/obo/NCBITaxon_9557,Papio hamadryas +15.3454106,NCBITaxon:980085,http://purl.obolibrary.org/obo/NCBITaxon_980085,none +15.3454106,NCBITaxon:981673,http://purl.obolibrary.org/obo/NCBITaxon_981673,none +15.3454106,NCBITaxon:986145,http://purl.obolibrary.org/obo/NCBITaxon_986145,none +15.3454106,NCBITaxon:988645,http://purl.obolibrary.org/obo/NCBITaxon_988645,none +15.3454106,NCBITaxon:98921,http://purl.obolibrary.org/obo/NCBITaxon_98921,none +15.3454106,NCBITaxon:993034,http://purl.obolibrary.org/obo/NCBITaxon_993034,none +15.3454106,NCBITaxon:998864,http://purl.obolibrary.org/obo/NCBITaxon_998864,none +15.3454106,NCBITaxon:999637,http://purl.obolibrary.org/obo/NCBITaxon_999637,none +15.3454106,NCBITaxon:999729,http://purl.obolibrary.org/obo/NCBITaxon_999729,none +15.3454106,PR:000001089,http://purl.obolibrary.org/obo/PR_000001089,immunoglobulin superfamily member 2 +15.3454106,PR:000001228,http://purl.obolibrary.org/obo/PR_000001228,interleukin-1 receptor antagonist protein isoform 1 +15.3454106,PR:000001466,http://purl.obolibrary.org/obo/PR_000001466,high affinity immunoglobulin gamma Fc receptor IB +15.3454106,PR:000001536,http://purl.obolibrary.org/obo/PR_000001536,G-protein coupled receptor 62 +15.3454106,PR:000001934,http://purl.obolibrary.org/obo/PR_000001934,sodium/potassium-transporting ATPase subunit beta-3 +15.3454106,PR:000003370,http://purl.obolibrary.org/obo/PR_000003370,collagen alpha-1(I) chain isoform 1 +15.3454106,PR:000003371,http://purl.obolibrary.org/obo/PR_000003371,none +15.3454106,PR:000003669,http://purl.obolibrary.org/obo/PR_000003669,"acyl-coenzyme A synthetase ACSM5, mitochondrial" +15.3454106,PR:000003686,http://purl.obolibrary.org/obo/PR_000003686,actin-like protein 7C +15.3454106,PR:000003713,http://purl.obolibrary.org/obo/PR_000003713,disintegrin and metalloproteinase domain-containing protein 18 +15.3454106,PR:000003795,http://purl.obolibrary.org/obo/PR_000003795,adenylosuccinate synthetase isozyme 2 +15.3454106,PR:000004010,http://purl.obolibrary.org/obo/PR_000004010,archaemetzincin-1 +15.3454106,PR:000004042,http://purl.obolibrary.org/obo/PR_000004042,ankyrin repeat domain-containing protein 12 +15.3454106,PR:000004049,http://purl.obolibrary.org/obo/PR_000004049,serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit C +15.3454106,PR:000004085,http://purl.obolibrary.org/obo/PR_000004085,acyloxyacyl hydrolase +15.3454106,PR:000004217,http://purl.obolibrary.org/obo/PR_000004217,arginine and glutamate-rich protein 1 +15.3454106,PR:000004247,http://purl.obolibrary.org/obo/PR_000004247,Rho guanine nucleotide exchange factor 10-like protein +15.3454106,PR:000004335,http://purl.obolibrary.org/obo/PR_000004335,arsenite methyltransferase +15.3454106,PR:000004355,http://purl.obolibrary.org/obo/PR_000004355,ankyrin repeat and SOCS box protein 6 +15.3454106,PR:000004357,http://purl.obolibrary.org/obo/PR_000004357,ankyrin repeat and SOCS box protein 8 +15.3454106,PR:000004550,http://purl.obolibrary.org/obo/PR_000004550,none +15.3454106,PR:000004586,http://purl.obolibrary.org/obo/PR_000004586,"beta-1,3-galactosyltransferase 5" +15.3454106,PR:000004624,http://purl.obolibrary.org/obo/PR_000004624,B melanoma antigen 1 +15.3454106,PR:000004687,http://purl.obolibrary.org/obo/PR_000004687,"2-oxoisovalerate dehydrogenase subunit beta, mitochondrial" +15.3454106,PR:000004720,http://purl.obolibrary.org/obo/PR_000004720,brain-enriched guanylate kinase-associated protein +15.3454106,PR:000004783,http://purl.obolibrary.org/obo/PR_000004783,Bcl-2/adenovirus E1B 19 kDa-interacting protein 2-like protein +15.3454106,PR:000004880,http://purl.obolibrary.org/obo/PR_000004880,complement C1q-like protein 2 +15.3454106,PR:000004890,http://purl.obolibrary.org/obo/PR_000004890,complement C1q tumor necrosis factor-related protein 8 +15.3454106,PR:000004932,http://purl.obolibrary.org/obo/PR_000004932,CDK5 and ABL1 enzyme substrate 2 +15.3454106,PR:000004945,http://purl.obolibrary.org/obo/PR_000004945,voltage-dependent calcium channel subunit alpha-2/delta-4 +15.3454106,PR:000004977,http://purl.obolibrary.org/obo/PR_000004977,calcium homeostasis modulator protein 3 +15.3454106,PR:000004987,http://purl.obolibrary.org/obo/PR_000004987,neuron-specific vesicular protein calcyon +15.3454106,PR:000005053,http://purl.obolibrary.org/obo/PR_000005053,caskin-2 +15.3454106,PR:000005107,http://purl.obolibrary.org/obo/PR_000005107,coiled-coil domain-containing protein 91 +15.3454106,PR:000005155,http://purl.obolibrary.org/obo/PR_000005155,T-complex protein 1 subunit zeta-2 +15.3454106,PR:000005302,http://purl.obolibrary.org/obo/PR_000005302,carcinoembryonic antigen-related cell adhesion molecule 19 +15.3454106,PR:000005338,http://purl.obolibrary.org/obo/PR_000005338,centromere protein T +15.3454106,PR:000005399,http://purl.obolibrary.org/obo/PR_000005399,glutathione-specific gamma-glutamylcyclotransferase 2 +15.3454106,PR:000005473,http://purl.obolibrary.org/obo/PR_000005473,carbohydrate sulfotransferase 13 +15.3454106,PR:000005492,http://purl.obolibrary.org/obo/PR_000005492,cell death activator CIDE-A +15.3454106,PR:000005497,http://purl.obolibrary.org/obo/PR_000005497,cyclin-dependent kinase 2-interacting protein +15.3454106,PR:000005510,http://purl.obolibrary.org/obo/PR_000005510,cytoskeleton-associated protein 2-like +15.3454106,PR:000005700,http://purl.obolibrary.org/obo/PR_000005700,collagen alpha-1(XVI) chain +15.3454106,PR:000005706,http://purl.obolibrary.org/obo/PR_000005706,collagen alpha-1(XXII) chain +15.3454106,PR:000005748,http://purl.obolibrary.org/obo/PR_000005748,coatomer subunit zeta-2 +15.3454106,PR:000005784,http://purl.obolibrary.org/obo/PR_000005784,cytochrome c oxidase subunit 6B2 +15.3454106,PR:000005812,http://purl.obolibrary.org/obo/PR_000005812,complexin-4 +15.3454106,PR:000005846,http://purl.obolibrary.org/obo/PR_000005846,protein cramped-like +15.3454106,PR:000005948,http://purl.obolibrary.org/obo/PR_000005948,casein kinase I isoform gamma-2 +15.3454106,PR:000005998,http://purl.obolibrary.org/obo/PR_000005998,transcriptional repressor CTCFL +15.3454106,PR:000006002,http://purl.obolibrary.org/obo/PR_000006002,CTD small phosphatase-like protein 2 +15.3454106,PR:000006055,http://purl.obolibrary.org/obo/PR_000006055,copper homeostasis protein cutC +15.3454106,PR:000006081,http://purl.obolibrary.org/obo/PR_000006081,NADH-cytochrome b5 reductase 2 +15.3454106,PR:000006185,http://purl.obolibrary.org/obo/PR_000006185,none +15.3454106,PR:000006243,http://purl.obolibrary.org/obo/PR_000006243,none +15.3454106,PR:000006327,http://purl.obolibrary.org/obo/PR_000006327,dynactin subunit 5 +15.3454106,PR:000006368,http://purl.obolibrary.org/obo/PR_000006368,ATP-dependent RNA helicase DDX51 +15.3454106,PR:000006369,http://purl.obolibrary.org/obo/PR_000006369,ATP-dependent RNA helicase DDX54 +15.3454106,PR:000006379,http://purl.obolibrary.org/obo/PR_000006379,differentially expressed in FDCP 8 +15.3454106,PR:000006386,http://purl.obolibrary.org/obo/PR_000006386,beta-defensin 108B +15.3454106,PR:000006396,http://purl.obolibrary.org/obo/PR_000006396,beta-defensin 118 +15.3454106,PR:000006556,http://purl.obolibrary.org/obo/PR_000006556,"dynein heavy chain 10, axonemal" +15.3454106,PR:000006561,http://purl.obolibrary.org/obo/PR_000006561,"dynein heavy chain 17, axonemal" +15.3454106,PR:000006566,http://purl.obolibrary.org/obo/PR_000006566,"dynein heavy chain 7, axonemal" +15.3454106,PR:000006590,http://purl.obolibrary.org/obo/PR_000006590,"dynein light chain 4, axonemal" +15.3454106,PR:000006740,http://purl.obolibrary.org/obo/PR_000006740,dual specificity protein phosphatase 13 +15.3454106,PR:000006744,http://purl.obolibrary.org/obo/PR_000006744,dual specificity protein phosphatase 18 +15.3454106,PR:000006794,http://purl.obolibrary.org/obo/PR_000006794,none +15.3454106,PR:000006802,http://purl.obolibrary.org/obo/PR_000006802,none +15.3454106,PR:000006824,http://purl.obolibrary.org/obo/PR_000006824,none +15.3454106,PR:000006991,http://purl.obolibrary.org/obo/PR_000006991,eukaryotic translation initiation factor 4E type 1B +15.3454106,PR:000006996,http://purl.obolibrary.org/obo/PR_000006996,eukaryotic translation initiation factor 4E-binding protein 3 +15.3454106,PR:000007035,http://purl.obolibrary.org/obo/PR_000007035,transcription elongation factor 1 +15.3454106,PR:000007103,http://purl.obolibrary.org/obo/PR_000007103,E1A-binding protein p400 +15.3454106,PR:000007189,http://purl.obolibrary.org/obo/PR_000007189,endoplasmic reticulum resident protein 27 +15.3454106,PR:000007250,http://purl.obolibrary.org/obo/PR_000007250,exocyst complex component 3-like protein 2 +15.3454106,PR:000007287,http://purl.obolibrary.org/obo/PR_000007287,none +15.3454106,PR:000007291,http://purl.obolibrary.org/obo/PR_000007291,none +15.3454106,PR:000007320,http://purl.obolibrary.org/obo/PR_000007320,fatty acid desaturase 6 +15.3454106,PR:000007347,http://purl.obolibrary.org/obo/PR_000007347,eukaryote-type phenylalanine--tRNA ligase beta subunit +15.3454106,PR:000007374,http://purl.obolibrary.org/obo/PR_000007374,F-box/LRR-repeat protein 16 +15.3454106,PR:000007410,http://purl.obolibrary.org/obo/PR_000007410,F-box only protein 41 +15.3454106,PR:000007415,http://purl.obolibrary.org/obo/PR_000007415,F-box only protein 47 +15.3454106,PR:000007518,http://purl.obolibrary.org/obo/PR_000007518,fin bud initiation factor +15.3454106,PR:000007519,http://purl.obolibrary.org/obo/PR_000007519,acidic fibroblast growth factor intracellular-binding protein +15.3454106,PR:000007675,http://purl.obolibrary.org/obo/PR_000007675,fibrinogen silencer-binding protein +15.3454106,PR:000007742,http://purl.obolibrary.org/obo/PR_000007742,G2/M phase-specific E3 ubiquitin-protein ligase +15.3454106,PR:000007765,http://purl.obolibrary.org/obo/PR_000007765,GA-binding protein subunit beta-2 +15.3454106,PR:000007906,http://purl.obolibrary.org/obo/PR_000007906,"beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase 4" +15.3454106,PR:000007913,http://purl.obolibrary.org/obo/PR_000007913,ganglioside-induced differentiation-associated protein 1-like 1 +15.3454106,PR:000008003,http://purl.obolibrary.org/obo/PR_000008003,gap junction beta-7 protein +15.3454106,PR:000008031,http://purl.obolibrary.org/obo/PR_000008031,GLIPR1-like protein 1 +15.3454106,PR:000008045,http://purl.obolibrary.org/obo/PR_000008045,none +15.3454106,PR:000008103,http://purl.obolibrary.org/obo/PR_000008103,guanine nucleotide-binding protein G(I)/G(S)/G(O) subunit gamma-10 +15.3454106,PR:000008181,http://purl.obolibrary.org/obo/PR_000008181,GPN-loop GTPase 2 +15.3454106,PR:000008276,http://purl.obolibrary.org/obo/PR_000008276,growth hormone-regulated TBC protein 1 +15.3454106,PR:000008320,http://purl.obolibrary.org/obo/PR_000008320,general transcription factor IIH subunit 4 +15.3454106,PR:000008355,http://purl.obolibrary.org/obo/PR_000008355,GTP-binding protein GUF1 +15.3454106,PR:000008377,http://purl.obolibrary.org/obo/PR_000008377,none +15.3454106,PR:000008380,http://purl.obolibrary.org/obo/PR_000008380,grifin +15.3454106,PR:000008506,http://purl.obolibrary.org/obo/PR_000008506,DNA helicase B +15.3454106,PR:000008546,http://purl.obolibrary.org/obo/PR_000008546,hippocampus abundant transcript 1 protein +15.3454106,PR:000008563,http://purl.obolibrary.org/obo/PR_000008563,histidine triad nucleotide-binding protein 3 +15.3454106,PR:000008913,http://purl.obolibrary.org/obo/PR_000008913,interferon alpha-16 +15.3454106,PR:000008925,http://purl.obolibrary.org/obo/PR_000008925,interferon epsilon +15.3454106,PR:000008930,http://purl.obolibrary.org/obo/PR_000008930,interferon-related developmental regulator 2 +15.3454106,PR:000008965,http://purl.obolibrary.org/obo/PR_000008965,immunoglobulin J chain +15.3454106,PR:000008978,http://purl.obolibrary.org/obo/PR_000008978,inhibitor of nuclear factor kappa-B kinase-interacting protein +15.3454106,PR:000009041,http://purl.obolibrary.org/obo/PR_000009041,INO80 complex subunit C +15.3454106,PR:000009047,http://purl.obolibrary.org/obo/PR_000009047,inositol polyphosphate-5-phosphatase A +15.3454106,PR:000009068,http://purl.obolibrary.org/obo/PR_000009068,integrator complex subunit 12 +15.3454106,PR:000009078,http://purl.obolibrary.org/obo/PR_000009078,integrator complex subunit 9 +15.3454106,PR:000009220,http://purl.obolibrary.org/obo/PR_000009220,josephin-1 +15.3454106,PR:000009228,http://purl.obolibrary.org/obo/PR_000009228,junctional sarcoplasmic reticulum protein 1 +15.3454106,PR:000009315,http://purl.obolibrary.org/obo/PR_000009315,chromosome-associated kinesin KIF4B +15.3454106,PR:000009383,http://purl.obolibrary.org/obo/PR_000009383,kelch-like protein 21 +15.3454106,PR:000009397,http://purl.obolibrary.org/obo/PR_000009397,kelch-like protein 35 +15.3454106,PR:000009400,http://purl.obolibrary.org/obo/PR_000009400,kelch-like protein 4 +15.3454106,PR:000009422,http://purl.obolibrary.org/obo/PR_000009422,putative protein KRIP1 +15.3454106,PR:000009429,http://purl.obolibrary.org/obo/PR_000009429,kinase non-catalytic C-lobe domain-containing protein 1 +15.3454106,PR:000009471,http://purl.obolibrary.org/obo/PR_000009471,"keratin, type I cuticular Ha3-I" +15.3454106,PR:000009498,http://purl.obolibrary.org/obo/PR_000009498,"keratin, type II cuticular Hb2" +15.3454106,PR:000009528,http://purl.obolibrary.org/obo/PR_000009528,keratin-associated protein 15-1 +15.3454106,PR:000009580,http://purl.obolibrary.org/obo/PR_000009580,keratin-associated protein 6-3 +15.3454106,PR:000009601,http://purl.obolibrary.org/obo/PR_000009601,none +15.3454106,PR:000009622,http://purl.obolibrary.org/obo/PR_000009622,none +15.3454106,PR:000009647,http://purl.obolibrary.org/obo/PR_000009647,endoribonuclease LACTB2 +15.3454106,PR:000009728,http://purl.obolibrary.org/obo/PR_000009728,epididymal-specific lipocalin-9 +15.3454106,PR:000009747,http://purl.obolibrary.org/obo/PR_000009747,retrotransposon Gag-like protein 6 +15.3454106,PR:000009933,http://purl.obolibrary.org/obo/PR_000009933,leucine-rich repeat-containing protein 18 +15.3454106,PR:000009984,http://purl.obolibrary.org/obo/PR_000009984,leucine zipper protein 4 +15.3454106,PR:000009991,http://purl.obolibrary.org/obo/PR_000009991,lymphocyte antigen 6 complex locus protein G5c +15.3454106,PR:000010000,http://purl.obolibrary.org/obo/PR_000010000,lysozyme g-like protein 2 +15.3454106,PR:000010095,http://purl.obolibrary.org/obo/PR_000010095,MAL-like protein +15.3454106,PR:000010118,http://purl.obolibrary.org/obo/PR_000010118,"methionine aminopeptidase 1D, mitochondrial" +15.3454106,PR:000010148,http://purl.obolibrary.org/obo/PR_000010148,MAP6 domain-containing protein 1 +15.3454106,PR:000010236,http://purl.obolibrary.org/obo/PR_000010236,mast cell-expressed membrane protein 1 +15.3454106,PR:000010259,http://purl.obolibrary.org/obo/PR_000010259,MyoD family inhibitor +15.3454106,PR:000010350,http://purl.obolibrary.org/obo/PR_000010350,rRNA N6-adenosine-methyltransferase METTL5 +15.3454106,PR:000010356,http://purl.obolibrary.org/obo/PR_000010356,RNA-binding protein MEX3A +15.3454106,PR:000010382,http://purl.obolibrary.org/obo/PR_000010382,"alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase B" +15.3454106,PR:000010409,http://purl.obolibrary.org/obo/PR_000010409,midnolin +15.3454106,PR:000010572,http://purl.obolibrary.org/obo/PR_000010572,"39S ribosomal protein L10, mitochondrial" +15.3454106,PR:000010612,http://purl.obolibrary.org/obo/PR_000010612,"39S ribosomal protein L51, mitochondrial" +15.3454106,PR:000010623,http://purl.obolibrary.org/obo/PR_000010623,"28S ribosomal protein S16, mitochondrial" +15.3454106,PR:000010628,http://purl.obolibrary.org/obo/PR_000010628,"28S ribosomal protein S2, mitochondrial" +15.3454106,PR:000010640,http://purl.obolibrary.org/obo/PR_000010640,"28S ribosomal protein S34, mitochondrial" +15.3454106,PR:000010645,http://purl.obolibrary.org/obo/PR_000010645,"28S ribosomal protein S7, mitochondrial" +15.3454106,PR:000010700,http://purl.obolibrary.org/obo/PR_000010700,metallothionein-1H +15.3454106,PR:000010732,http://purl.obolibrary.org/obo/PR_000010732,myotubularin-related protein 10 +15.3454106,PR:000010811,http://purl.obolibrary.org/obo/PR_000010811,protein L-Myc-2 +15.3454106,PR:000010906,http://purl.obolibrary.org/obo/PR_000010906,none +15.3454106,PR:000010915,http://purl.obolibrary.org/obo/PR_000010915,none +15.3454106,PR:000010938,http://purl.obolibrary.org/obo/PR_000010938,NEDD4-binding protein 2 +15.3454106,PR:000010963,http://purl.obolibrary.org/obo/PR_000010963,N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase +15.3454106,PR:000011083,http://purl.obolibrary.org/obo/PR_000011083,NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 +15.3454106,PR:000011207,http://purl.obolibrary.org/obo/PR_000011207,nicolin-1 +15.3454106,PR:000011226,http://purl.obolibrary.org/obo/PR_000011226,sodium/potassium-transporting ATPase subunit beta-1-interacting protein 1 +15.3454106,PR:000011323,http://purl.obolibrary.org/obo/PR_000011323,nucleolar protein 16 +15.3454106,PR:000011428,http://purl.obolibrary.org/obo/PR_000011428,nuclear receptor-interacting protein 2 +15.3454106,PR:000011442,http://purl.obolibrary.org/obo/PR_000011442,"sterol-4-alpha-carboxylate 3-dehydrogenase, decarboxylating" +15.3454106,PR:000011541,http://purl.obolibrary.org/obo/PR_000011541,nucleoredoxin-like protein 2 +15.3454106,PR:000011615,http://purl.obolibrary.org/obo/PR_000011615,opioid growth factor receptor-like protein 1 +15.3454106,PR:000011627,http://purl.obolibrary.org/obo/PR_000011627,olfactomedin-like protein 1 +15.3454106,PR:000011770,http://purl.obolibrary.org/obo/PR_000011770,olfactory receptor 2H2 +15.3454106,PR:000012040,http://purl.obolibrary.org/obo/PR_000012040,ORM1-like protein 2 +15.3454106,PR:000012083,http://purl.obolibrary.org/obo/PR_000012083,OTU domain-containing protein 7A +15.3454106,PR:000012265,http://purl.obolibrary.org/obo/PR_000012265,acid phosphatase type 7 +15.3454106,PR:000012356,http://purl.obolibrary.org/obo/PR_000012356,protocadherin alpha-1 +15.3454106,PR:000012368,http://purl.obolibrary.org/obo/PR_000012368,protocadherin alpha-9 +15.3454106,PR:000012425,http://purl.obolibrary.org/obo/PR_000012425,pecanex-like protein 2 +15.3454106,PR:000012454,http://purl.obolibrary.org/obo/PR_000012454,programmed cell death protein 2-like +15.3454106,PR:000012616,http://purl.obolibrary.org/obo/PR_000012616,"glucose 1,6-bisphosphate synthase" +15.3454106,PR:000012625,http://purl.obolibrary.org/obo/PR_000012625,pituitary gland-specific factor 1 +15.3454106,PR:000012675,http://purl.obolibrary.org/obo/PR_000012675,phytanoyl-CoA dioxygenase domain-containing protein 1 +15.3454106,PR:000012676,http://purl.obolibrary.org/obo/PR_000012676,phytanoyl-CoA hydroxylase-interacting protein +15.3454106,PR:000012678,http://purl.obolibrary.org/obo/PR_000012678,peptidase inhibitor 15 +15.3454106,PR:000012682,http://purl.obolibrary.org/obo/PR_000012682,phosphatidylinositol 4-kinase type 2-beta +15.3454106,PR:000012699,http://purl.obolibrary.org/obo/PR_000012699,N-acetylglucosaminyl-phosphatidylinositol de-N-acetylase +15.3454106,PR:000012771,http://purl.obolibrary.org/obo/PR_000012771,polycystic kidney disease protein 1-like 2 +15.3454106,PR:000012801,http://purl.obolibrary.org/obo/PR_000012801,group IIE secretory phospholipase A2 +15.3454106,PR:000012838,http://purl.obolibrary.org/obo/PR_000012838,"1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase eta-1" +15.3454106,PR:000012856,http://purl.obolibrary.org/obo/PR_000012856,pleckstrin homology domain-containing family A member 4 +15.3454106,PR:000012902,http://purl.obolibrary.org/obo/PR_000012902,putative pro-MCH-like protein 1 +15.3454106,PR:000012918,http://purl.obolibrary.org/obo/PR_000012918,putative postmeiotic segregation increased 2-like protein 2 +15.3454106,PR:000012919,http://purl.obolibrary.org/obo/PR_000012919,putative postmeiotic segregation increased 2-like protein 3 +15.3454106,PR:000013070,http://purl.obolibrary.org/obo/PR_000013070,liprin-alpha-3 +15.3454106,PR:000013074,http://purl.obolibrary.org/obo/PR_000013074,periphilin-1 +15.3454106,PR:000013140,http://purl.obolibrary.org/obo/PR_000013140,serine/threonine-protein phosphatase 2A regulatory subunit B'' subunit beta +15.3454106,PR:000013184,http://purl.obolibrary.org/obo/PR_000013184,PR domain zinc finger protein 15 +15.3454106,PR:000013262,http://purl.obolibrary.org/obo/PR_000013262,protein PROCA1 +15.3454106,PR:000013328,http://purl.obolibrary.org/obo/PR_000013328,polyserase-2 +15.3454106,PR:000013445,http://purl.obolibrary.org/obo/PR_000013445,very-long-chain (3R)-3-hydroxyacyl-CoA dehydratase 4 +15.3454106,PR:000013645,http://purl.obolibrary.org/obo/PR_000013645,Ras-related protein Rab-9B +15.3454106,PR:000013654,http://purl.obolibrary.org/obo/PR_000013654,geranylgeranyl transferase type-2 subunit beta +15.3454106,PR:000013687,http://purl.obolibrary.org/obo/PR_000013687,UL16-binding protein 6 +15.3454106,PR:000013752,http://purl.obolibrary.org/obo/PR_000013752,RAS and EF-hand domain-containing protein +15.3454106,PR:000013877,http://purl.obolibrary.org/obo/PR_000013877,RELT-like protein 1 +15.3454106,PR:000013878,http://purl.obolibrary.org/obo/PR_000013878,RELT-like protein 2 +15.3454106,PR:000013891,http://purl.obolibrary.org/obo/PR_000013891,Ras-related and estrogen-regulated growth inhibitor +15.3454106,PR:000013916,http://purl.obolibrary.org/obo/PR_000013916,ret finger protein-like 3 +15.3454106,PR:000014002,http://purl.obolibrary.org/obo/PR_000014002,RILP-like protein 1 +15.3454106,PR:000014031,http://purl.obolibrary.org/obo/PR_000014031,clavesin-1 +15.3454106,PR:000014057,http://purl.obolibrary.org/obo/PR_000014057,ribonuclease kappa +15.3454106,PR:000014078,http://purl.obolibrary.org/obo/PR_000014078,E3 ubiquitin-protein ligase RNF126 +15.3454106,PR:000014095,http://purl.obolibrary.org/obo/PR_000014095,E3 ubiquitin-protein ligase RNF152 +15.3454106,PR:000014100,http://purl.obolibrary.org/obo/PR_000014100,E3 ubiquitin-protein ligase RNF167 +15.3454106,PR:000014128,http://purl.obolibrary.org/obo/PR_000014128,E3 ubiquitin-protein ligase RNF26 +15.3454106,PR:000014225,http://purl.obolibrary.org/obo/PR_000014225,60S ribosomal protein L39 +15.3454106,PR:000014299,http://purl.obolibrary.org/obo/PR_000014299,Ras-related GTP-binding protein C +15.3454106,PR:000014311,http://purl.obolibrary.org/obo/PR_000014311,RRP15-like protein +15.3454106,PR:000014447,http://purl.obolibrary.org/obo/PR_000014447,histone deacetylase complex subunit SAP25 +15.3454106,PR:000014521,http://purl.obolibrary.org/obo/PR_000014521,sex comb on midleg-like protein 4 +15.3454106,PR:000014542,http://purl.obolibrary.org/obo/PR_000014542,transcriptional repressor scratch 2 +15.3454106,PR:000014549,http://purl.obolibrary.org/obo/PR_000014549,SCY1-like protein 2 +15.3454106,PR:000014589,http://purl.obolibrary.org/obo/PR_000014589,protein transport protein Sec24A +15.3454106,PR:000014777,http://purl.obolibrary.org/obo/PR_000014777,sideroflexin-2 +15.3454106,PR:000014778,http://purl.obolibrary.org/obo/PR_000014778,sideroflexin-3 +15.3454106,PR:000014854,http://purl.obolibrary.org/obo/PR_000014854,protein Shroom1 +15.3454106,PR:000015097,http://purl.obolibrary.org/obo/PR_000015097,solute carrier family 35 member C2 +15.3454106,PR:000015105,http://purl.obolibrary.org/obo/PR_000015105,solute carrier family 35 member F1 +15.3454106,PR:000015246,http://purl.obolibrary.org/obo/PR_000015246,PRELI domain containing protein 3B +15.3454106,PR:000015304,http://purl.obolibrary.org/obo/PR_000015304,smoothelin-like protein 2 +15.3454106,PR:000015360,http://purl.obolibrary.org/obo/PR_000015360,sorting nexin-11 +15.3454106,PR:000015371,http://purl.obolibrary.org/obo/PR_000015371,sorting nexin-21 +15.3454106,PR:000015404,http://purl.obolibrary.org/obo/PR_000015404,calpain-15 +15.3454106,PR:000015450,http://purl.obolibrary.org/obo/PR_000015450,sperm acrosome membrane-associated protein 4 +15.3454106,PR:000015451,http://purl.obolibrary.org/obo/PR_000015451,sperm acrosome-associated protein 5 +15.3454106,PR:000015469,http://purl.obolibrary.org/obo/PR_000015469,sperm protein associated with the nucleus on the X chromosome B1 +15.3454106,PR:000015478,http://purl.obolibrary.org/obo/PR_000015478,spermatogenesis-associated protein 1 +15.3454106,PR:000015511,http://purl.obolibrary.org/obo/PR_000015511,sperm flagellar protein 1 +15.3454106,PR:000015581,http://purl.obolibrary.org/obo/PR_000015581,small proline-rich protein 4 +15.3454106,PR:000015984,http://purl.obolibrary.org/obo/PR_000015984,none +15.3454106,PR:000015988,http://purl.obolibrary.org/obo/PR_000015988,none +15.3454106,PR:000016010,http://purl.obolibrary.org/obo/PR_000016010,transcriptional adapter 1-like protein +15.3454106,PR:000016030,http://purl.obolibrary.org/obo/PR_000016030,TAF5-like RNA polymerase II p300/CBP-associated factor-associated factor 65 kDa subunit 5L +15.3454106,PR:000016104,http://purl.obolibrary.org/obo/PR_000016104,TBC1 domain family member 20 +15.3454106,PR:000016119,http://purl.obolibrary.org/obo/PR_000016119,TBC1 domain family member 5 +15.3454106,PR:000016120,http://purl.obolibrary.org/obo/PR_000016120,TBC1 domain family member 7 +15.3454106,PR:000016158,http://purl.obolibrary.org/obo/PR_000016158,transcription elongation factor A protein 2 +15.3454106,PR:000016213,http://purl.obolibrary.org/obo/PR_000016213,putative teratocarcinoma-derived growth factor 3 +15.3454106,PR:000016230,http://purl.obolibrary.org/obo/PR_000016230,tektin-5 +15.3454106,PR:000016256,http://purl.obolibrary.org/obo/PR_000016256,testis-expressed protein 2 +15.3454106,PR:000016398,http://purl.obolibrary.org/obo/PR_000016398,transmembrane channel-like protein 7 +15.3454106,PR:000016419,http://purl.obolibrary.org/obo/PR_000016419,transmembrane protein 184B +15.3454106,PR:000016498,http://purl.obolibrary.org/obo/PR_000016498,182 kDa tankyrase-1-binding protein +15.3454106,PR:000016541,http://purl.obolibrary.org/obo/PR_000016541,mitochondrial import receptor subunit TOM70 +15.3454106,PR:000016621,http://purl.obolibrary.org/obo/PR_000016621,T-cell receptor beta chain C region +15.3454106,PR:000016687,http://purl.obolibrary.org/obo/PR_000016687,tRNA selenocysteine 1-associated protein 1 +15.3454106,PR:000016881,http://purl.obolibrary.org/obo/PR_000016881,peroxisomal leader peptide-processing protease +15.3454106,PR:000016910,http://purl.obolibrary.org/obo/PR_000016910,none +15.3454106,PR:000016932,http://purl.obolibrary.org/obo/PR_000016932,none +15.3454106,PR:000016979,http://purl.obolibrary.org/obo/PR_000016979,ubiquitin-conjugating enzyme E2 J2 +15.3454106,PR:000017004,http://purl.obolibrary.org/obo/PR_000017004,ubinuclein-2 +15.3454106,PR:000017058,http://purl.obolibrary.org/obo/PR_000017058,UDP-glucuronosyltransferase 2A3 +15.3454106,PR:000017190,http://purl.obolibrary.org/obo/PR_000017190,inactive ubiquitin carboxyl-terminal hydrolase 50 +15.3454106,PR:000017198,http://purl.obolibrary.org/obo/PR_000017198,SUMO-specific isopeptidase USPL1 +15.3454106,PR:000017274,http://purl.obolibrary.org/obo/PR_000017274,deubiquitinating protein VCPIP1 +15.3454106,PR:000017277,http://purl.obolibrary.org/obo/PR_000017277,variable charge X-linked protein 3 +15.3454106,PR:000017337,http://purl.obolibrary.org/obo/PR_000017337,vacuolar protein sorting-associated protein 37C +15.3454106,PR:000017365,http://purl.obolibrary.org/obo/PR_000017365,none +15.3454106,PR:000017473,http://purl.obolibrary.org/obo/PR_000017473,X antigen family member 2 +15.3454106,PR:000017474,http://purl.obolibrary.org/obo/PR_000017474,X antigen family member 3 +15.3454106,PR:000017513,http://purl.obolibrary.org/obo/PR_000017513,X-ray radiation resistance-associated protein 1 +15.3454106,PR:000017535,http://purl.obolibrary.org/obo/PR_000017535,protein YIPF5 +15.3454106,PR:000017547,http://purl.obolibrary.org/obo/PR_000017547,"YrdC domain-containing protein, mitochondrial" +15.3454106,PR:000017607,http://purl.obolibrary.org/obo/PR_000017607,rRNA N6-adenosine-methyltransferase ZCCHC4 +15.3454106,PR:000017651,http://purl.obolibrary.org/obo/PR_000017651,zinc finger protein-like 1 +15.3454106,PR:000017704,http://purl.obolibrary.org/obo/PR_000017704,zinc finger protein 131 +15.3454106,PR:000017712,http://purl.obolibrary.org/obo/PR_000017712,zinc finger protein 14 +15.3454106,PR:000017724,http://purl.obolibrary.org/obo/PR_000017724,zinc finger protein 165 +15.3454106,PR:000017811,http://purl.obolibrary.org/obo/PR_000017811,zinc finger protein 292 +15.3454106,PR:000017830,http://purl.obolibrary.org/obo/PR_000017830,DBIRD complex subunit ZNF326 +15.3454106,PR:000017839,http://purl.obolibrary.org/obo/PR_000017839,zinc finger protein 33B +15.3454106,PR:000017840,http://purl.obolibrary.org/obo/PR_000017840,zinc finger protein 34 +15.3454106,PR:000017914,http://purl.obolibrary.org/obo/PR_000017914,zinc finger protein 469 +15.3454106,PR:000018165,http://purl.obolibrary.org/obo/PR_000018165,zinc finger protein 80 +15.3454106,PR:000018200,http://purl.obolibrary.org/obo/PR_000018200,zinc finger protein 93 +15.3454106,PR:000018243,http://purl.obolibrary.org/obo/PR_000018243,ZZ-type zinc finger-containing protein 3 +15.3454106,PR:000018251,http://purl.obolibrary.org/obo/PR_000018251,none +15.3454106,PR:000022024,http://purl.obolibrary.org/obo/PR_000022024,none +15.3454106,PR:000022140,http://purl.obolibrary.org/obo/PR_000022140,none +15.3454106,PR:000022161,http://purl.obolibrary.org/obo/PR_000022161,none +15.3454106,PR:000022198,http://purl.obolibrary.org/obo/PR_000022198,signal transduction histidine-protein kinase BarA +15.3454106,PR:000022231,http://purl.obolibrary.org/obo/PR_000022231,none +15.3454106,PR:000022261,http://purl.obolibrary.org/obo/PR_000022261,none +15.3454106,PR:000022380,http://purl.obolibrary.org/obo/PR_000022380,none +15.3454106,PR:000022381,http://purl.obolibrary.org/obo/PR_000022381,none +15.3454106,PR:000022390,http://purl.obolibrary.org/obo/PR_000022390,none +15.3454106,PR:000022437,http://purl.obolibrary.org/obo/PR_000022437,none +15.3454106,PR:000022447,http://purl.obolibrary.org/obo/PR_000022447,none +15.3454106,PR:000022451,http://purl.obolibrary.org/obo/PR_000022451,none +15.3454106,PR:000022486,http://purl.obolibrary.org/obo/PR_000022486,none +15.3454106,PR:000022546,http://purl.obolibrary.org/obo/PR_000022546,none +15.3454106,PR:000022663,http://purl.obolibrary.org/obo/PR_000022663,none +15.3454106,PR:000022730,http://purl.obolibrary.org/obo/PR_000022730,none +15.3454106,PR:000022773,http://purl.obolibrary.org/obo/PR_000022773,none +15.3454106,PR:000022815,http://purl.obolibrary.org/obo/PR_000022815,none +15.3454106,PR:000022821,http://purl.obolibrary.org/obo/PR_000022821,none +15.3454106,PR:000022825,http://purl.obolibrary.org/obo/PR_000022825,none +15.3454106,PR:000022922,http://purl.obolibrary.org/obo/PR_000022922,none +15.3454106,PR:000023117,http://purl.obolibrary.org/obo/PR_000023117,none +15.3454106,PR:000023205,http://purl.obolibrary.org/obo/PR_000023205,none +15.3454106,PR:000023241,http://purl.obolibrary.org/obo/PR_000023241,none +15.3454106,PR:000023248,http://purl.obolibrary.org/obo/PR_000023248,none +15.3454106,PR:000023282,http://purl.obolibrary.org/obo/PR_000023282,none +15.3454106,PR:000023301,http://purl.obolibrary.org/obo/PR_000023301,none +15.3454106,PR:000023311,http://purl.obolibrary.org/obo/PR_000023311,none +15.3454106,PR:000023348,http://purl.obolibrary.org/obo/PR_000023348,none +15.3454106,PR:000023370,http://purl.obolibrary.org/obo/PR_000023370,none +15.3454106,PR:000023375,http://purl.obolibrary.org/obo/PR_000023375,none +15.3454106,PR:000023385,http://purl.obolibrary.org/obo/PR_000023385,none +15.3454106,PR:000023395,http://purl.obolibrary.org/obo/PR_000023395,none +15.3454106,PR:000023432,http://purl.obolibrary.org/obo/PR_000023432,none +15.3454106,PR:000023436,http://purl.obolibrary.org/obo/PR_000023436,none +15.3454106,PR:000023467,http://purl.obolibrary.org/obo/PR_000023467,none +15.3454106,PR:000023492,http://purl.obolibrary.org/obo/PR_000023492,none +15.3454106,PR:000023572,http://purl.obolibrary.org/obo/PR_000023572,none +15.3454106,PR:000023583,http://purl.obolibrary.org/obo/PR_000023583,none +15.3454106,PR:000023593,http://purl.obolibrary.org/obo/PR_000023593,none +15.3454106,PR:000023638,http://purl.obolibrary.org/obo/PR_000023638,none +15.3454106,PR:000023639,http://purl.obolibrary.org/obo/PR_000023639,none +15.3454106,PR:000023642,http://purl.obolibrary.org/obo/PR_000023642,none +15.3454106,PR:000023730,http://purl.obolibrary.org/obo/PR_000023730,none +15.3454106,PR:000023735,http://purl.obolibrary.org/obo/PR_000023735,none +15.3454106,PR:000023775,http://purl.obolibrary.org/obo/PR_000023775,none +15.3454106,PR:000023785,http://purl.obolibrary.org/obo/PR_000023785,none +15.3454106,PR:000023790,http://purl.obolibrary.org/obo/PR_000023790,none +15.3454106,PR:000023814,http://purl.obolibrary.org/obo/PR_000023814,none +15.3454106,PR:000023815,http://purl.obolibrary.org/obo/PR_000023815,50S ribosomal protein L9 +15.3454106,PR:000023907,http://purl.obolibrary.org/obo/PR_000023907,none +15.3454106,PR:000023941,http://purl.obolibrary.org/obo/PR_000023941,none +15.3454106,PR:000023949,http://purl.obolibrary.org/obo/PR_000023949,none +15.3454106,PR:000023958,http://purl.obolibrary.org/obo/PR_000023958,none +15.3454106,PR:000024001,http://purl.obolibrary.org/obo/PR_000024001,none +15.3454106,PR:000024017,http://purl.obolibrary.org/obo/PR_000024017,none +15.3454106,PR:000024020,http://purl.obolibrary.org/obo/PR_000024020,none +15.3454106,PR:000024055,http://purl.obolibrary.org/obo/PR_000024055,none +15.3454106,PR:000024113,http://purl.obolibrary.org/obo/PR_000024113,none +15.3454106,PR:000024149,http://purl.obolibrary.org/obo/PR_000024149,none +15.3454106,PR:000024204,http://purl.obolibrary.org/obo/PR_000024204,none +15.3454106,PR:000024209,http://purl.obolibrary.org/obo/PR_000024209,none +15.3454106,PR:000024222,http://purl.obolibrary.org/obo/PR_000024222,none +15.3454106,PR:000024235,http://purl.obolibrary.org/obo/PR_000024235,none +15.3454106,PR:000025589,http://purl.obolibrary.org/obo/PR_000025589,none +15.3454106,PR:000026320,http://purl.obolibrary.org/obo/PR_000026320,enolase 4 +15.3454106,PR:000027165,http://purl.obolibrary.org/obo/PR_000027165,none +15.3454106,PR:000027681,http://purl.obolibrary.org/obo/PR_000027681,microtubule-associated protein tau isoform Fetal-tau phosphorylated 7 +15.3454106,PR:000027682,http://purl.obolibrary.org/obo/PR_000027682,microtubule-associated protein tau isoform Fetal-tau phosphorylated 7 (human) +15.3454106,PR:000029039,http://purl.obolibrary.org/obo/PR_000029039,none +15.3454106,PR:000029207,http://purl.obolibrary.org/obo/PR_000029207,none +15.3454106,PR:000029226,http://purl.obolibrary.org/obo/PR_000029226,none +15.3454106,PR:000029272,http://purl.obolibrary.org/obo/PR_000029272,ankyrin repeat and EF-hand domain-containing protein 1 +15.3454106,PR:000029286,http://purl.obolibrary.org/obo/PR_000029286,putative L-aspartate dehydrogenase +15.3454106,PR:000029289,http://purl.obolibrary.org/obo/PR_000029289,probable cation-transporting ATPase 13A3 +15.3454106,PR:000029316,http://purl.obolibrary.org/obo/PR_000029316,coiled-coil domain-containing protein 134 +15.3454106,PR:000029321,http://purl.obolibrary.org/obo/PR_000029321,coiled-coil domain-containing protein 88B +15.3454106,PR:000029323,http://purl.obolibrary.org/obo/PR_000029323,coiled-coil domain-containing protein 12 +15.3454106,PR:000029327,http://purl.obolibrary.org/obo/PR_000029327,interactor of HORMAD1 protein 1 +15.3454106,PR:000029329,http://purl.obolibrary.org/obo/PR_000029329,coiled-coil domain-containing protein 38 +15.3454106,PR:000029364,http://purl.obolibrary.org/obo/PR_000029364,COMM domain-containing protein 4 +15.3454106,PR:000029365,http://purl.obolibrary.org/obo/PR_000029365,COMM domain-containing protein 9 +15.3454106,PR:000029408,http://purl.obolibrary.org/obo/PR_000029408,DEP domain-containing protein 7 +15.3454106,PR:000029458,http://purl.obolibrary.org/obo/PR_000029458,multivesicular body subunit 12A +15.3454106,PR:000029477,http://purl.obolibrary.org/obo/PR_000029477,protein FAM54A +15.3454106,PR:000029498,http://purl.obolibrary.org/obo/PR_000029498,FERM domain-containing protein 8 +15.3454106,PR:000029567,http://purl.obolibrary.org/obo/PR_000029567,KN motif and ankyrin repeat domain-containing protein 3 +15.3454106,PR:000029572,http://purl.obolibrary.org/obo/PR_000029572,potassium channel regulatory protein +15.3454106,PR:000029621,http://purl.obolibrary.org/obo/PR_000029621,metallo-beta-lactamase domain-containing protein 1 +15.3454106,PR:000029626,http://purl.obolibrary.org/obo/PR_000029626,"guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1" +15.3454106,PR:000029657,http://purl.obolibrary.org/obo/PR_000029657,tRNA (cytosine(72)-C(5))-methyltransferase NSUN6 +15.3454106,PR:000029669,http://purl.obolibrary.org/obo/PR_000029669,PDZ domain-containing protein 11 +15.3454106,PR:000029680,http://purl.obolibrary.org/obo/PR_000029680,pleckstrin homology domain-containing family N member 1 +15.3454106,PR:000029759,http://purl.obolibrary.org/obo/PR_000029759,protein Smaug homolog 2 +15.3454106,PR:000029781,http://purl.obolibrary.org/obo/PR_000029781,TBC1 domain family member 23 +15.3454106,PR:000029785,http://purl.obolibrary.org/obo/PR_000029785,tudor and KH domain-containing protein +15.3454106,PR:000029789,http://purl.obolibrary.org/obo/PR_000029789,peroxynitrite isomerase THAP4 +15.3454106,PR:000029799,http://purl.obolibrary.org/obo/PR_000029799,transmembrane protein 154 +15.3454106,PR:000029802,http://purl.obolibrary.org/obo/PR_000029802,plasmanylethanolamine desaturase +15.3454106,PR:000029812,http://purl.obolibrary.org/obo/PR_000029812,transmembrane protein 87B +15.3454106,PR:000029814,http://purl.obolibrary.org/obo/PR_000029814,transmembrane protein 40 +15.3454106,PR:000029883,http://purl.obolibrary.org/obo/PR_000029883,zinc finger BED domain-containing protein 5 +15.3454106,PR:000029884,http://purl.obolibrary.org/obo/PR_000029884,zinc finger CCCH domain-containing protein 8 +15.3454106,PR:000030200,http://purl.obolibrary.org/obo/PR_000030200,coiled-coil domain-containing protein 34 +15.3454106,PR:000030237,http://purl.obolibrary.org/obo/PR_000030237,microtubule-associated tumor suppressor candidate 2 +15.3454106,PR:000030250,http://purl.obolibrary.org/obo/PR_000030250,SLIT-ROBO Rho GTPase-activating protein 2C +15.3454106,PR:000030256,http://purl.obolibrary.org/obo/PR_000030256,nuclear pore-associated protein 1 +15.3454106,PR:000030259,http://purl.obolibrary.org/obo/PR_000030259,DNA transposase THAP9 +15.3454106,PR:000030331,http://purl.obolibrary.org/obo/PR_000030331,protein ABHD12B +15.3454106,PR:000030349,http://purl.obolibrary.org/obo/PR_000030349,probable G-protein coupled receptor 158 +15.3454106,PR:000030362,http://purl.obolibrary.org/obo/PR_000030362,photoreceptor ankyrin repeat protein +15.3454106,PR:000030374,http://purl.obolibrary.org/obo/PR_000030374,acidic repeat-containing protein +15.3454106,PR:000030388,http://purl.obolibrary.org/obo/PR_000030388,SPOC domain-containing protein 1 +15.3454106,PR:000030399,http://purl.obolibrary.org/obo/PR_000030399,probable small intestine urate exporter +15.3454106,PR:000030400,http://purl.obolibrary.org/obo/PR_000030400,transmembrane protein 25 +15.3454106,PR:000030401,http://purl.obolibrary.org/obo/PR_000030401,ATP-dependent RNA helicase DHX30 +15.3454106,PR:000030407,http://purl.obolibrary.org/obo/PR_000030407,sushi domain-containing protein 3 +15.3454106,PR:000030408,http://purl.obolibrary.org/obo/PR_000030408,major facilitator superfamily domain-containing protein 9 +15.3454106,PR:000030450,http://purl.obolibrary.org/obo/PR_000030450,CSC1-like protein 1 +15.3454106,PR:000030476,http://purl.obolibrary.org/obo/PR_000030476,immunoglobulin superfamily member 21 +15.3454106,PR:000030497,http://purl.obolibrary.org/obo/PR_000030497,protein inturned +15.3454106,PR:000030519,http://purl.obolibrary.org/obo/PR_000030519,erythroferrone +15.3454106,PR:000030631,http://purl.obolibrary.org/obo/PR_000030631,protein FAM189B +15.3454106,PR:000030672,http://purl.obolibrary.org/obo/PR_000030672,Ras-like protein family member 10A +15.3454106,PR:000030677,http://purl.obolibrary.org/obo/PR_000030677,"capping protein, Arp2/3 and myosin-I linker protein 3" +15.3454106,PR:000030713,http://purl.obolibrary.org/obo/PR_000030713,FAD-dependent oxidoreductase domain-containing protein 2 +15.3454106,PR:000030722,http://purl.obolibrary.org/obo/PR_000030722,palmitoyltransferase ZDHHC4 +15.3454106,PR:000030723,http://purl.obolibrary.org/obo/PR_000030723,EF-hand calcium-binding domain-containing protein 11 +15.3454106,PR:000030780,http://purl.obolibrary.org/obo/PR_000030780,P antigen family member 5 +15.3454106,PR:000030822,http://purl.obolibrary.org/obo/PR_000030822,kelch repeat and BTB domain-containing protein 2 +15.3454106,PR:000030823,http://purl.obolibrary.org/obo/PR_000030823,modulator of macroautophagy TMEM150B +15.3454106,PR:000030829,http://purl.obolibrary.org/obo/PR_000030829,protein Niban 3 +15.3454106,PR:000030837,http://purl.obolibrary.org/obo/PR_000030837,constitutive coactivator of peroxisome proliferator-activated receptor gamma +15.3454106,PR:000030853,http://purl.obolibrary.org/obo/PR_000030853,terminal nucleotidyltransferase 5A +15.3454106,PR:000030854,http://purl.obolibrary.org/obo/PR_000030854,Ral GTPase-activating protein subunit alpha-2 +15.3454106,PR:000030875,http://purl.obolibrary.org/obo/PR_000030875,coiled-coil domain-containing protein 14 +15.3454106,PR:000030895,http://purl.obolibrary.org/obo/PR_000030895,transmembrane protein 41B +15.3454106,PR:000030908,http://purl.obolibrary.org/obo/PR_000030908,protein Niban 1 +15.3454106,PR:000030910,http://purl.obolibrary.org/obo/PR_000030910,nuclear envelope pore membrane protein POM 121 +15.3454106,PR:000030938,http://purl.obolibrary.org/obo/PR_000030938,probable bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase 2 +15.3454106,PR:000030973,http://purl.obolibrary.org/obo/PR_000030973,protein FAM83F +15.3454106,PR:000030979,http://purl.obolibrary.org/obo/PR_000030979,prostamide/prostaglandin F synthase +15.3454106,PR:000030988,http://purl.obolibrary.org/obo/PR_000030988,transmembrane protein 64 +15.3454106,PR:000031003,http://purl.obolibrary.org/obo/PR_000031003,enkurin +15.3454106,PR:000031009,http://purl.obolibrary.org/obo/PR_000031009,very large A-kinase anchor protein +15.3454106,PR:000031013,http://purl.obolibrary.org/obo/PR_000031013,SMC5-SMC6 complex localization factor protein 2 +15.3454106,PR:000031047,http://purl.obolibrary.org/obo/PR_000031047,protein NYNRIN +15.3454106,PR:000031072,http://purl.obolibrary.org/obo/PR_000031072,metalloprotease TIKI1 +15.3454106,PR:000031093,http://purl.obolibrary.org/obo/PR_000031093,retrotransposon Gag-like protein 9 +15.3454106,PR:000031094,http://purl.obolibrary.org/obo/PR_000031094,secretoglobin family 1C member 1 +15.3454106,PR:000031100,http://purl.obolibrary.org/obo/PR_000031100,probable dimethyladenosine transferase +15.3454106,PR:000031121,http://purl.obolibrary.org/obo/PR_000031121,tetratricopeptide repeat protein 21A +15.3454106,PR:000031165,http://purl.obolibrary.org/obo/PR_000031165,DnaJ homolog subfamily C member 5B +15.3454106,PR:000031184,http://purl.obolibrary.org/obo/PR_000031184,phospholipid-transporting ATPase VB +15.3454106,PR:000031209,http://purl.obolibrary.org/obo/PR_000031209,"eukaryotic translation initiation factor 1A, X-chromosomal" +15.3454106,PR:000031284,http://purl.obolibrary.org/obo/PR_000031284,protein SOGA3 +15.3454106,PR:000031312,http://purl.obolibrary.org/obo/PR_000031312,serine-rich coiled-coil domain-containing protein 1 +15.3454106,PR:000031387,http://purl.obolibrary.org/obo/PR_000031387,ERI1 exoribonuclease 2 +15.3454106,PR:000031442,http://purl.obolibrary.org/obo/PR_000031442,E3 ubiquitin-protein ligase DCST1 +15.3454106,PR:000031447,http://purl.obolibrary.org/obo/PR_000031447,UV-stimulated scaffold protein A +15.3454106,PR:000031478,http://purl.obolibrary.org/obo/PR_000031478,PDZ domain-containing protein 4 +15.3454106,PR:000031515,http://purl.obolibrary.org/obo/PR_000031515,glycerophosphodiester phosphodiesterase domain-containing protein 4 +15.3454106,PR:000031523,http://purl.obolibrary.org/obo/PR_000031523,leucine-rich repeat-containing protein 55 +15.3454106,PR:000031524,http://purl.obolibrary.org/obo/PR_000031524,transmembrane protein 106A +15.3454106,PR:000031544,http://purl.obolibrary.org/obo/PR_000031544,kelch repeat and BTB domain-containing protein 8 +15.3454106,PR:000031570,http://purl.obolibrary.org/obo/PR_000031570,"LETM1 domain-containing protein LETM2, mitochondrial" +15.3454106,PR:000031583,http://purl.obolibrary.org/obo/PR_000031583,probable G-protein coupled receptor 179 +15.3454106,PR:000031626,http://purl.obolibrary.org/obo/PR_000031626,focadhesin +15.3454106,PR:000031653,http://purl.obolibrary.org/obo/PR_000031653,pleckstrin homology domain-containing family G member 1 +15.3454106,PR:000031655,http://purl.obolibrary.org/obo/PR_000031655,none +15.3454106,PR:000031705,http://purl.obolibrary.org/obo/PR_000031705,BTB/POZ domain-containing protein KCTD20 +15.3454106,PR:000031833,http://purl.obolibrary.org/obo/PR_000031833,tRNA-uridine aminocarboxypropyltransferase 1 +15.3454106,PR:000031845,http://purl.obolibrary.org/obo/PR_000031845,UDP-sugar transporter protein SLC35A4 +15.3454106,PR:000031847,http://purl.obolibrary.org/obo/PR_000031847,GH3 domain-containing protein +15.3454106,PR:000031906,http://purl.obolibrary.org/obo/PR_000031906,HAUS augmin-like complex subunit 3 +15.3454106,PR:000031948,http://purl.obolibrary.org/obo/PR_000031948,short-chain dehydrogenase/reductase family 9C member 7 +15.3454106,PR:000032027,http://purl.obolibrary.org/obo/PR_000032027,Rho GTPase-activating protein 36 +15.3454106,PR:000032029,http://purl.obolibrary.org/obo/PR_000032029,"ATP synthase F(0) complex subunit C3, mitochondrial" +15.3454106,PR:000032032,http://purl.obolibrary.org/obo/PR_000032032,haloacid dehalogenase-like hydrolase domain-containing protein 2 +15.3454106,PR:000032062,http://purl.obolibrary.org/obo/PR_000032062,ankyrin repeat domain-containing protein 9 +15.3454106,PR:000032145,http://purl.obolibrary.org/obo/PR_000032145,transmembrane protein 184A +15.3454106,PR:000032159,http://purl.obolibrary.org/obo/PR_000032159,tetratricopeptide repeat protein 28 +15.3454106,PR:000032187,http://purl.obolibrary.org/obo/PR_000032187,non-homologous end joining factor IFFO1 +15.3454106,PR:000032198,http://purl.obolibrary.org/obo/PR_000032198,solute carrier family 22 member 14 +15.3454106,PR:000032254,http://purl.obolibrary.org/obo/PR_000032254,phospholipid-transporting ATPase VD +15.3454106,PR:000032295,http://purl.obolibrary.org/obo/PR_000032295,transmembrane protein 147 +15.3454106,PR:000032366,http://purl.obolibrary.org/obo/PR_000032366,protein phosphatase 1 regulatory subunit 42 +15.3454106,PR:000032386,http://purl.obolibrary.org/obo/PR_000032386,COMM domain-containing protein 8 +15.3454106,PR:000032388,http://purl.obolibrary.org/obo/PR_000032388,AN1-type zinc finger protein 4 +15.3454106,PR:000032449,http://purl.obolibrary.org/obo/PR_000032449,paralemmin-3 +15.3454106,PR:000032454,http://purl.obolibrary.org/obo/PR_000032454,probable inactive serine protease 37 +15.3454106,PR:000032455,http://purl.obolibrary.org/obo/PR_000032455,GREB1-like protein +15.3454106,PR:000032489,http://purl.obolibrary.org/obo/PR_000032489,coiled-coil domain-containing protein 57 +15.3454106,PR:000032502,http://purl.obolibrary.org/obo/PR_000032502,putative sodium-coupled neutral amino acid transporter 8 +15.3454106,PR:000032507,http://purl.obolibrary.org/obo/PR_000032507,transforming growth factor beta activator LRRC33 +15.3454106,PR:000032594,http://purl.obolibrary.org/obo/PR_000032594,coiled-coil domain-containing protein 28B +15.3454106,PR:000032596,http://purl.obolibrary.org/obo/PR_000032596,T cell receptor beta constant 2 +15.3454106,PR:000032622,http://purl.obolibrary.org/obo/PR_000032622,phospholipase ABHD3 +15.3454106,PR:000032624,http://purl.obolibrary.org/obo/PR_000032624,UBX domain-containing protein 2A +15.3454106,PR:000032654,http://purl.obolibrary.org/obo/PR_000032654,acidic leucine-rich nuclear phosphoprotein 32 family member C +15.3454106,PR:000032667,http://purl.obolibrary.org/obo/PR_000032667,leucine-rich repeat-containing protein 19 +15.3454106,PR:000032699,http://purl.obolibrary.org/obo/PR_000032699,motile sperm domain-containing protein 1 +15.3454106,PR:000032704,http://purl.obolibrary.org/obo/PR_000032704,zinc finger FYVE domain-containing protein 21 +15.3454106,PR:000032722,http://purl.obolibrary.org/obo/PR_000032722,cyclin-P +15.3454106,PR:000032757,http://purl.obolibrary.org/obo/PR_000032757,"protein FAM210B, mitochondrial" +15.3454106,PR:000032784,http://purl.obolibrary.org/obo/PR_000032784,glyoxalase domain-containing protein 4 +15.3454106,PR:000032811,http://purl.obolibrary.org/obo/PR_000032811,ankyrin repeat domain-containing protein 36A +15.3454106,PR:000032869,http://purl.obolibrary.org/obo/PR_000032869,none +15.3454106,PR:000033448,http://purl.obolibrary.org/obo/PR_000033448,none +15.3454106,PR:000033680,http://purl.obolibrary.org/obo/PR_000033680,none +15.3454106,PR:000033719,http://purl.obolibrary.org/obo/PR_000033719,none +15.3454106,PR:000033828,http://purl.obolibrary.org/obo/PR_000033828,none +15.3454106,PR:000033953,http://purl.obolibrary.org/obo/PR_000033953,none +15.3454106,PR:000034131,http://purl.obolibrary.org/obo/PR_000034131,none +15.3454106,PR:000034174,http://purl.obolibrary.org/obo/PR_000034174,none +15.3454106,PR:000034301,http://purl.obolibrary.org/obo/PR_000034301,none +15.3454106,PR:000034309,http://purl.obolibrary.org/obo/PR_000034309,none +15.3454106,PR:000034414,http://purl.obolibrary.org/obo/PR_000034414,none +15.3454106,PR:000034546,http://purl.obolibrary.org/obo/PR_000034546,none +15.3454106,PR:000034728,http://purl.obolibrary.org/obo/PR_000034728,none +15.3454106,PR:000034836,http://purl.obolibrary.org/obo/PR_000034836,low-density lipoprotein receptor class A domain-containing protein 4 +15.3454106,PR:000034863,http://purl.obolibrary.org/obo/PR_000034863,none +15.3454106,PR:000035010,http://purl.obolibrary.org/obo/PR_000035010,none +15.3454106,PR:000035316,http://purl.obolibrary.org/obo/PR_000035316,none +15.3454106,PR:000035342,http://purl.obolibrary.org/obo/PR_000035342,none +15.3454106,PR:000036853,http://purl.obolibrary.org/obo/PR_000036853,presenilin-2 isoform PS2beta +15.3454106,PR:000036922,http://purl.obolibrary.org/obo/PR_000036922,none +15.3454106,PR:000036999,http://purl.obolibrary.org/obo/PR_000036999,none +15.3454106,PR:000037072,http://purl.obolibrary.org/obo/PR_000037072,lipoylated protein +15.3454106,PR:000037517,http://purl.obolibrary.org/obo/PR_000037517,DNMT1:PCNA:UHRF1 complex (human) +15.3454106,PR:000038859,http://purl.obolibrary.org/obo/PR_000038859,"protein arginine methyltransferase NDUFAF7, mitochondrial" +15.3454106,PR:000039137,http://purl.obolibrary.org/obo/PR_000039137,ragulator complex protein LAMTOR4 +15.3454106,PR:000044406,http://purl.obolibrary.org/obo/PR_000044406,none +15.3454106,PR:000044446,http://purl.obolibrary.org/obo/PR_000044446,none +15.3454106,PR:000050482,http://purl.obolibrary.org/obo/PR_000050482,none +15.3454106,PR:A4QNX6,http://purl.obolibrary.org/obo/PR_A4QNX6,none +15.3454106,PR:E7F4V6,http://purl.obolibrary.org/obo/PR_E7F4V6,none +15.3454106,PR:F4IJZ6,http://purl.obolibrary.org/obo/PR_F4IJZ6,none +15.3454106,PR:F4IN69,http://purl.obolibrary.org/obo/PR_F4IN69,none +15.3454106,PR:F4JGP4,http://purl.obolibrary.org/obo/PR_F4JGP4,none +15.3454106,PR:F4K1J4,http://purl.obolibrary.org/obo/PR_F4K1J4,none +15.3454106,PR:F4K5J1,http://purl.obolibrary.org/obo/PR_F4K5J1,none +15.3454106,PR:G5ECG0,http://purl.obolibrary.org/obo/PR_G5ECG0,none +15.3454106,PR:G5EG11,http://purl.obolibrary.org/obo/PR_G5EG11,none +15.3454106,PR:O13849,http://purl.obolibrary.org/obo/PR_O13849,none +15.3454106,PR:O14026,http://purl.obolibrary.org/obo/PR_O14026,none +15.3454106,PR:O14198,http://purl.obolibrary.org/obo/PR_O14198,none +15.3454106,PR:O42163,http://purl.obolibrary.org/obo/PR_O42163,none +15.3454106,PR:O48767,http://purl.obolibrary.org/obo/PR_O48767,none +15.3454106,PR:O49675,http://purl.obolibrary.org/obo/PR_O49675,none +15.3454106,PR:O49696,http://purl.obolibrary.org/obo/PR_O49696,none +15.3454106,PR:O60132,http://purl.obolibrary.org/obo/PR_O60132,none +15.3454106,PR:O61307,http://purl.obolibrary.org/obo/PR_O61307,none +15.3454106,PR:O82798,http://purl.obolibrary.org/obo/PR_O82798,none +15.3454106,PR:O88281,http://purl.obolibrary.org/obo/PR_O88281,none +15.3454106,PR:O89103,http://purl.obolibrary.org/obo/PR_O89103,none +15.3454106,PR:O94486,http://purl.obolibrary.org/obo/PR_O94486,none +15.3454106,PR:P02513,http://purl.obolibrary.org/obo/PR_P02513,none +15.3454106,PR:P02798,http://purl.obolibrary.org/obo/PR_P02798,none +15.3454106,PR:P04775,http://purl.obolibrary.org/obo/PR_P04775,none +15.3454106,PR:P05085,http://purl.obolibrary.org/obo/PR_P05085,none +15.3454106,PR:P05739,http://purl.obolibrary.org/obo/PR_P05739,none +15.3454106,PR:P05986,http://purl.obolibrary.org/obo/PR_P05986,none +15.3454106,PR:P06477,http://purl.obolibrary.org/obo/PR_P06477,none +15.3454106,PR:P06786,http://purl.obolibrary.org/obo/PR_P06786,none +15.3454106,PR:P07249,http://purl.obolibrary.org/obo/PR_P07249,none +15.3454106,PR:P07261,http://purl.obolibrary.org/obo/PR_P07261,none +15.3454106,PR:P08571,http://purl.obolibrary.org/obo/PR_P08571,monocyte differentiation antigen CD14 (human) +15.3454106,PR:P0C0T4,http://purl.obolibrary.org/obo/PR_P0C0T4,none +15.3454106,PR:P0CT80,http://purl.obolibrary.org/obo/PR_P0CT80,none +15.3454106,PR:P0CX30,http://purl.obolibrary.org/obo/PR_P0CX30,none +15.3454106,PR:P10252,http://purl.obolibrary.org/obo/PR_P10252,none +15.3454106,PR:P10636,http://purl.obolibrary.org/obo/PR_P10636,microtubule-associated protein tau (human) +15.3454106,PR:P10636-2,http://purl.obolibrary.org/obo/PR_P10636-2,microtubule-associated protein tau isoform Fetal-tau (human) +15.3454106,PR:P13681,http://purl.obolibrary.org/obo/PR_P13681,none +15.3454106,PR:P14330,http://purl.obolibrary.org/obo/PR_P14330,none +15.3454106,PR:P14713,http://purl.obolibrary.org/obo/PR_P14713,none +15.3454106,PR:P15619,http://purl.obolibrary.org/obo/PR_P15619,none +15.3454106,PR:P15620,http://purl.obolibrary.org/obo/PR_P15620,none +15.3454106,PR:P17076,http://purl.obolibrary.org/obo/PR_P17076,none +15.3454106,PR:P18181,http://purl.obolibrary.org/obo/PR_P18181,none +15.3454106,PR:P19107,http://purl.obolibrary.org/obo/PR_P19107,none +15.3454106,PR:P22738,http://purl.obolibrary.org/obo/PR_P22738,none +15.3454106,PR:P24867,http://purl.obolibrary.org/obo/PR_P24867,none +15.3454106,PR:P25024,http://purl.obolibrary.org/obo/PR_P25024,C-X-C chemokine receptor type 1 (human) +15.3454106,PR:P29453,http://purl.obolibrary.org/obo/PR_P29453,none +15.3454106,PR:P30100,http://purl.obolibrary.org/obo/PR_P30100,none +15.3454106,PR:P32387,http://purl.obolibrary.org/obo/PR_P32387,none +15.3454106,PR:P32614,http://purl.obolibrary.org/obo/PR_P32614,none +15.3454106,PR:P32893,http://purl.obolibrary.org/obo/PR_P32893,none +15.3454106,PR:P33296,http://purl.obolibrary.org/obo/PR_P33296,none +15.3454106,PR:P34093,http://purl.obolibrary.org/obo/PR_P34093,none +15.3454106,PR:P34115,http://purl.obolibrary.org/obo/PR_P34115,none +15.3454106,PR:P34125,http://purl.obolibrary.org/obo/PR_P34125,none +15.3454106,PR:P35192,http://purl.obolibrary.org/obo/PR_P35192,none +15.3454106,PR:P38289,http://purl.obolibrary.org/obo/PR_P38289,none +15.3454106,PR:P38779,http://purl.obolibrary.org/obo/PR_P38779,none +15.3454106,PR:P39962,http://purl.obolibrary.org/obo/PR_P39962,none +15.3454106,PR:P40547,http://purl.obolibrary.org/obo/PR_P40547,none +15.3454106,PR:P40558,http://purl.obolibrary.org/obo/PR_P40558,none +15.3454106,PR:P40565,http://purl.obolibrary.org/obo/PR_P40565,none +15.3454106,PR:P40618,http://purl.obolibrary.org/obo/PR_P40618,none +15.3454106,PR:P40991,http://purl.obolibrary.org/obo/PR_P40991,none +15.3454106,PR:P40996,http://purl.obolibrary.org/obo/PR_P40996,none +15.3454106,PR:P41807,http://purl.obolibrary.org/obo/PR_P41807,none +15.3454106,PR:P41846,http://purl.obolibrary.org/obo/PR_P41846,none +15.3454106,PR:P42833,http://purl.obolibrary.org/obo/PR_P42833,none +15.3454106,PR:P45894,http://purl.obolibrary.org/obo/PR_P45894,none +15.3454106,PR:P46406,http://purl.obolibrary.org/obo/PR_P46406,none +15.3454106,PR:P46644,http://purl.obolibrary.org/obo/PR_P46644,none +15.3454106,PR:P48602,http://purl.obolibrary.org/obo/PR_P48602,none +15.3454106,PR:P49166,http://purl.obolibrary.org/obo/PR_P49166,none +15.3454106,PR:P53083,http://purl.obolibrary.org/obo/PR_P53083,none +15.3454106,PR:P53277,http://purl.obolibrary.org/obo/PR_P53277,none +15.3454106,PR:P54397,http://purl.obolibrary.org/obo/PR_P54397,none +15.3454106,PR:P54674,http://purl.obolibrary.org/obo/PR_P54674,none +15.3454106,PR:P54839,http://purl.obolibrary.org/obo/PR_P54839,none +15.3454106,PR:P58368,http://purl.obolibrary.org/obo/PR_P58368,none +15.3454106,PR:P60393,http://purl.obolibrary.org/obo/PR_P60393,none +15.3454106,PR:P62082,http://purl.obolibrary.org/obo/PR_P62082,none +15.3454106,PR:P62947,http://purl.obolibrary.org/obo/PR_P62947,none +15.3454106,PR:P63259,http://purl.obolibrary.org/obo/PR_P63259,none +15.3454106,PR:P63260,http://purl.obolibrary.org/obo/PR_P63260,none +15.3454106,PR:P91685,http://purl.obolibrary.org/obo/PR_P91685,none +15.3454106,PR:P92527,http://purl.obolibrary.org/obo/PR_P92527,none +15.3454106,PR:P92939,http://purl.obolibrary.org/obo/PR_P92939,none +15.3454106,PR:P97675,http://purl.obolibrary.org/obo/PR_P97675,none +15.3454106,PR:Q02360,http://purl.obolibrary.org/obo/PR_Q02360,none +15.3454106,PR:Q02783,http://purl.obolibrary.org/obo/PR_Q02783,none +15.3454106,PR:Q02973,http://purl.obolibrary.org/obo/PR_Q02973,none +15.3454106,PR:Q03012,http://purl.obolibrary.org/obo/PR_Q03012,none +15.3454106,PR:Q04235,http://purl.obolibrary.org/obo/PR_Q04235,none +15.3454106,PR:Q06211,http://purl.obolibrary.org/obo/PR_Q06211,none +15.3454106,PR:Q06321,http://purl.obolibrary.org/obo/PR_Q06321,none +15.3454106,PR:Q06327,http://purl.obolibrary.org/obo/PR_Q06327,none +15.3454106,PR:Q06337,http://purl.obolibrary.org/obo/PR_Q06337,none +15.3454106,PR:Q06548,http://purl.obolibrary.org/obo/PR_Q06548,none +15.3454106,PR:Q06629,http://purl.obolibrary.org/obo/PR_Q06629,none +15.3454106,PR:Q06696,http://purl.obolibrary.org/obo/PR_Q06696,none +15.3454106,PR:Q09908,http://purl.obolibrary.org/obo/PR_Q09908,none +15.3454106,PR:Q0WTI8,http://purl.obolibrary.org/obo/PR_Q0WTI8,none +15.3454106,PR:Q10021,http://purl.obolibrary.org/obo/PR_Q10021,none +15.3454106,PR:Q12102,http://purl.obolibrary.org/obo/PR_Q12102,none +15.3454106,PR:Q12151,http://purl.obolibrary.org/obo/PR_Q12151,none +15.3454106,PR:Q12207,http://purl.obolibrary.org/obo/PR_Q12207,none +15.3454106,PR:Q12527,http://purl.obolibrary.org/obo/PR_Q12527,none +15.3454106,PR:Q14BK3,http://purl.obolibrary.org/obo/PR_Q14BK3,none +15.3454106,PR:Q17802,http://purl.obolibrary.org/obo/PR_Q17802,none +15.3454106,PR:Q19325,http://purl.obolibrary.org/obo/PR_Q19325,none +15.3454106,PR:Q1A173,http://purl.obolibrary.org/obo/PR_Q1A173,none +15.3454106,PR:Q1ZXE0,http://purl.obolibrary.org/obo/PR_Q1ZXE0,none +15.3454106,PR:Q20086,http://purl.obolibrary.org/obo/PR_Q20086,none +15.3454106,PR:Q23359,http://purl.obolibrary.org/obo/PR_Q23359,none +15.3454106,PR:Q24214,http://purl.obolibrary.org/obo/PR_Q24214,none +15.3454106,PR:Q24423,http://purl.obolibrary.org/obo/PR_Q24423,none +15.3454106,PR:Q2TLY2,http://purl.obolibrary.org/obo/PR_Q2TLY2,none +15.3454106,PR:Q39162,http://purl.obolibrary.org/obo/PR_Q39162,none +15.3454106,PR:Q39189,http://purl.obolibrary.org/obo/PR_Q39189,none +15.3454106,PR:Q3EC60,http://purl.obolibrary.org/obo/PR_Q3EC60,none +15.3454106,PR:Q3UIJ9,http://purl.obolibrary.org/obo/PR_Q3UIJ9,none +15.3454106,PR:Q43125,http://purl.obolibrary.org/obo/PR_Q43125,none +15.3454106,PR:Q43309,http://purl.obolibrary.org/obo/PR_Q43309,none +15.3454106,PR:Q4KM14,http://purl.obolibrary.org/obo/PR_Q4KM14,none +15.3454106,PR:Q54S77,http://purl.obolibrary.org/obo/PR_Q54S77,none +15.3454106,PR:Q557E4,http://purl.obolibrary.org/obo/PR_Q557E4,none +15.3454106,PR:Q58EL7,http://purl.obolibrary.org/obo/PR_Q58EL7,none +15.3454106,PR:Q5A1U8,http://purl.obolibrary.org/obo/PR_Q5A1U8,none +15.3454106,PR:Q5A5U9,http://purl.obolibrary.org/obo/PR_Q5A5U9,none +15.3454106,PR:Q5A950,http://purl.obolibrary.org/obo/PR_Q5A950,none +15.3454106,PR:Q5YDB6,http://purl.obolibrary.org/obo/PR_Q5YDB6,none +15.3454106,PR:Q6AY70,http://purl.obolibrary.org/obo/PR_Q6AY70,none +15.3454106,PR:Q6DBA5,http://purl.obolibrary.org/obo/PR_Q6DBA5,none +15.3454106,PR:Q6TNS1,http://purl.obolibrary.org/obo/PR_Q6TNS1,none +15.3454106,PR:Q6ZWV3,http://purl.obolibrary.org/obo/PR_Q6ZWV3,none +15.3454106,PR:Q7TSQ1,http://purl.obolibrary.org/obo/PR_Q7TSQ1,none +15.3454106,PR:Q84RQ7,http://purl.obolibrary.org/obo/PR_Q84RQ7,none +15.3454106,PR:Q86SI9,http://purl.obolibrary.org/obo/PR_Q86SI9,protein CEI (human) +15.3454106,PR:Q8G2F1,http://purl.obolibrary.org/obo/PR_Q8G2F1,none +15.3454106,PR:Q8GYE0,http://purl.obolibrary.org/obo/PR_Q8GYE0,none +15.3454106,PR:Q8GZB6,http://purl.obolibrary.org/obo/PR_Q8GZB6,none +15.3454106,PR:Q8L710,http://purl.obolibrary.org/obo/PR_Q8L710,none +15.3454106,PR:Q8LFX7,http://purl.obolibrary.org/obo/PR_Q8LFX7,none +15.3454106,PR:Q8LGJ5,http://purl.obolibrary.org/obo/PR_Q8LGJ5,none +15.3454106,PR:Q8LNZ2,http://purl.obolibrary.org/obo/PR_Q8LNZ2,none +15.3454106,PR:Q8LPL8,http://purl.obolibrary.org/obo/PR_Q8LPL8,none +15.3454106,PR:Q8R460,http://purl.obolibrary.org/obo/PR_Q8R460,none +15.3454106,PR:Q8RWN0,http://purl.obolibrary.org/obo/PR_Q8RWN0,none +15.3454106,PR:Q8RY17,http://purl.obolibrary.org/obo/PR_Q8RY17,none +15.3454106,PR:Q8VYE4,http://purl.obolibrary.org/obo/PR_Q8VYE4,none +15.3454106,PR:Q8VYY4,http://purl.obolibrary.org/obo/PR_Q8VYY4,none +15.3454106,PR:Q8VZW1,http://purl.obolibrary.org/obo/PR_Q8VZW1,none +15.3454106,PR:Q8W4H7,http://purl.obolibrary.org/obo/PR_Q8W4H7,none +15.3454106,PR:Q8W4K5,http://purl.obolibrary.org/obo/PR_Q8W4K5,none +15.3454106,PR:Q90260,http://purl.obolibrary.org/obo/PR_Q90260,none +15.3454106,PR:Q90722,http://purl.obolibrary.org/obo/PR_Q90722,none +15.3454106,PR:Q90788,http://purl.obolibrary.org/obo/PR_Q90788,none +15.3454106,PR:Q90ZW4,http://purl.obolibrary.org/obo/PR_Q90ZW4,none +15.3454106,PR:Q92331,http://purl.obolibrary.org/obo/PR_Q92331,none +15.3454106,PR:Q93VP2,http://purl.obolibrary.org/obo/PR_Q93VP2,none +15.3454106,PR:Q93WU4,http://purl.obolibrary.org/obo/PR_Q93WU4,none +15.3454106,PR:Q93YN0,http://purl.obolibrary.org/obo/PR_Q93YN0,none +15.3454106,PR:Q94218,http://purl.obolibrary.org/obo/PR_Q94218,none +15.3454106,PR:Q94900,http://purl.obolibrary.org/obo/PR_Q94900,none +15.3454106,PR:Q94BR4,http://purl.obolibrary.org/obo/PR_Q94BR4,none +15.3454106,PR:Q95Q00,http://purl.obolibrary.org/obo/PR_Q95Q00,none +15.3454106,PR:Q95V55,http://purl.obolibrary.org/obo/PR_Q95V55,none +15.3454106,PR:Q9C5G5,http://purl.obolibrary.org/obo/PR_Q9C5G5,none +15.3454106,PR:Q9C8T1,http://purl.obolibrary.org/obo/PR_Q9C8T1,none +15.3454106,PR:Q9CWX2,http://purl.obolibrary.org/obo/PR_Q9CWX2,none +15.3454106,PR:Q9D6K8,http://purl.obolibrary.org/obo/PR_Q9D6K8,none +15.3454106,PR:Q9DBT4,http://purl.obolibrary.org/obo/PR_Q9DBT4,none +15.3454106,PR:Q9DE24,http://purl.obolibrary.org/obo/PR_Q9DE24,none +15.3454106,PR:Q9FG31,http://purl.obolibrary.org/obo/PR_Q9FG31,none +15.3454106,PR:Q9FH21,http://purl.obolibrary.org/obo/PR_Q9FH21,none +15.3454106,PR:Q9FIJ4,http://purl.obolibrary.org/obo/PR_Q9FIJ4,none +15.3454106,PR:Q9FLE9,http://purl.obolibrary.org/obo/PR_Q9FLE9,none +15.3454106,PR:Q9FLP5,http://purl.obolibrary.org/obo/PR_Q9FLP5,none +15.3454106,PR:Q9FM01,http://purl.obolibrary.org/obo/PR_Q9FM01,none +15.3454106,PR:Q9FR44,http://purl.obolibrary.org/obo/PR_Q9FR44,none +15.3454106,PR:Q9FT72,http://purl.obolibrary.org/obo/PR_Q9FT72,none +15.3454106,PR:Q9FUS9,http://purl.obolibrary.org/obo/PR_Q9FUS9,none +15.3454106,PR:Q9FY93,http://purl.obolibrary.org/obo/PR_Q9FY93,none +15.3454106,PR:Q9FYK5,http://purl.obolibrary.org/obo/PR_Q9FYK5,none +15.3454106,PR:Q9LDZ0,http://purl.obolibrary.org/obo/PR_Q9LDZ0,none +15.3454106,PR:Q9LHF5,http://purl.obolibrary.org/obo/PR_Q9LHF5,none +15.3454106,PR:Q9LIG6,http://purl.obolibrary.org/obo/PR_Q9LIG6,none +15.3454106,PR:Q9LN01,http://purl.obolibrary.org/obo/PR_Q9LN01,none +15.3454106,PR:Q9LSF1,http://purl.obolibrary.org/obo/PR_Q9LSF1,none +15.3454106,PR:Q9LSX4,http://purl.obolibrary.org/obo/PR_Q9LSX4,none +15.3454106,PR:Q9LU01,http://purl.obolibrary.org/obo/PR_Q9LU01,none +15.3454106,PR:Q9LV77,http://purl.obolibrary.org/obo/PR_Q9LV77,none +15.3454106,PR:Q9LV88,http://purl.obolibrary.org/obo/PR_Q9LV88,none +15.3454106,PR:Q9LXT9,http://purl.obolibrary.org/obo/PR_Q9LXT9,none +15.3454106,PR:Q9LZ98,http://purl.obolibrary.org/obo/PR_Q9LZ98,none +15.3454106,PR:Q9M0V0,http://purl.obolibrary.org/obo/PR_Q9M0V0,none +15.3454106,PR:Q9M2Y8,http://purl.obolibrary.org/obo/PR_Q9M2Y8,none +15.3454106,PR:Q9MAM1,http://purl.obolibrary.org/obo/PR_Q9MAM1,none +15.3454106,PR:Q9NAX4,http://purl.obolibrary.org/obo/PR_Q9NAX4,none +15.3454106,PR:Q9P266,http://purl.obolibrary.org/obo/PR_Q9P266,junctional protein associated with coronary artery disease (human) +15.3454106,PR:Q9P7Q7,http://purl.obolibrary.org/obo/PR_Q9P7Q7,none +15.3454106,PR:Q9PU58,http://purl.obolibrary.org/obo/PR_Q9PU58,none +15.3454106,PR:Q9S7I6,http://purl.obolibrary.org/obo/PR_Q9S7I6,none +15.3454106,PR:Q9S9N4,http://purl.obolibrary.org/obo/PR_Q9S9N4,none +15.3454106,PR:Q9SCK6,http://purl.obolibrary.org/obo/PR_Q9SCK6,none +15.3454106,PR:Q9SF38,http://purl.obolibrary.org/obo/PR_Q9SF38,none +15.3454106,PR:Q9SFU6,http://purl.obolibrary.org/obo/PR_Q9SFU6,none +15.3454106,PR:Q9SGH6,http://purl.obolibrary.org/obo/PR_Q9SGH6,none +15.3454106,PR:Q9SJQ6,http://purl.obolibrary.org/obo/PR_Q9SJQ6,none +15.3454106,PR:Q9SN43,http://purl.obolibrary.org/obo/PR_Q9SN43,none +15.3454106,PR:Q9STT5,http://purl.obolibrary.org/obo/PR_Q9STT5,none +15.3454106,PR:Q9SUQ2,http://purl.obolibrary.org/obo/PR_Q9SUQ2,none +15.3454106,PR:Q9SVP6,http://purl.obolibrary.org/obo/PR_Q9SVP6,none +15.3454106,PR:Q9SVQ1,http://purl.obolibrary.org/obo/PR_Q9SVQ1,none +15.3454106,PR:Q9SYJ4,http://purl.obolibrary.org/obo/PR_Q9SYJ4,none +15.3454106,PR:Q9V427,http://purl.obolibrary.org/obo/PR_Q9V427,none +15.3454106,PR:Q9VFC2,http://purl.obolibrary.org/obo/PR_Q9VFC2,none +15.3454106,PR:Q9VWQ2,http://purl.obolibrary.org/obo/PR_Q9VWQ2,none +15.3454106,PR:Q9W735,http://purl.obolibrary.org/obo/PR_Q9W735,none +15.3454106,PR:Q9XH75,http://purl.obolibrary.org/obo/PR_Q9XH75,none +15.3454106,PR:Q9XIE6,http://purl.obolibrary.org/obo/PR_Q9XIE6,none +15.3454106,PR:Q9XW13,http://purl.obolibrary.org/obo/PR_Q9XW13,none +15.3454106,PR:Q9ZPY0,http://purl.obolibrary.org/obo/PR_Q9ZPY0,none +15.3454106,PR:Q9ZPY8,http://purl.obolibrary.org/obo/PR_Q9ZPY8,none +15.3454106,PR:Q9ZUZ3,http://purl.obolibrary.org/obo/PR_Q9ZUZ3,none +15.3454106,PR:S4X0Q8,http://purl.obolibrary.org/obo/PR_S4X0Q8,none +15.3454106,SO:0000184,http://purl.obolibrary.org/obo/SO_0000184,U2_intron +15.3454106,SO:0000604,http://purl.obolibrary.org/obo/SO_0000604,editing_block +15.3454106,SO:0000609,http://purl.obolibrary.org/obo/SO_0000609,oligo_U_tail +15.3454106,SO:0000890,http://purl.obolibrary.org/obo/SO_0000890,post_translationally_regulated_gene +15.3454106,SO:0001084,http://purl.obolibrary.org/obo/SO_0001084,non_terminal_residue +15.3454106,SO:0001106,http://purl.obolibrary.org/obo/SO_0001106,asx_motif +15.3454106,SO:0001111,http://purl.obolibrary.org/obo/SO_0001111,beta_strand +15.3454106,SO:0001295,http://purl.obolibrary.org/obo/SO_0001295,one_methyladenosine +15.3454106,SO:0001392,http://purl.obolibrary.org/obo/SO_0001392,modified_L_threonine +15.3454106,SO:0001457,http://purl.obolibrary.org/obo/SO_0001457,transcribed_cluster +15.3454106,SO:0001458,http://purl.obolibrary.org/obo/SO_0001458,unigene_cluster +15.3454106,SO:0001539,http://purl.obolibrary.org/obo/SO_0001539,translational_product_function_variant +15.3454106,SO:0001593,http://purl.obolibrary.org/obo/SO_0001593,minus_2_frameshift_variant +15.3454106,SO:0001620,http://purl.obolibrary.org/obo/SO_0001620,mature_miRNA_variant +15.3454106,SO:0001702,http://purl.obolibrary.org/obo/SO_0001702,histone_acetylation_site +15.3454106,SO:0001789,http://purl.obolibrary.org/obo/SO_0001789,mating_type_region +15.3454106,SO:0001841,http://purl.obolibrary.org/obo/SO_0001841,polymorphic_pseudogene +15.3454106,SO:0001854,http://purl.obolibrary.org/obo/SO_0001854,smFISH_probe +15.3454106,SO:0002047,http://purl.obolibrary.org/obo/SO_0002047,transcription_pause_site +15.3454106,SO:0002109,http://purl.obolibrary.org/obo/SO_0002109,transcribed_processed_pseudogene +15.3454106,SO:0002123,http://purl.obolibrary.org/obo/SO_0002123,IG_C_gene +15.3454106,SO:0002131,http://purl.obolibrary.org/obo/SO_0002131,sense_intronic_ncRNA +15.3454106,SO:1000019,http://purl.obolibrary.org/obo/SO_1000019,C_to_A_transversion +15.3454106,SO:1000022,http://purl.obolibrary.org/obo/SO_1000022,T_to_G_transversion +15.3454106,SO:1001261,http://purl.obolibrary.org/obo/SO_1001261,recoded_mRNA +15.3454106,SO:1001268,http://purl.obolibrary.org/obo/SO_1001268,recoding_stimulatory_region +15.3454106,UBERON:0000157,http://purl.obolibrary.org/obo/UBERON_0000157,theca interna +15.3454106,UBERON:0000936,http://purl.obolibrary.org/obo/UBERON_0000936,posterior commissure +15.3454106,UBERON:0001123,http://purl.obolibrary.org/obo/UBERON_0001123,scalenus posterior +15.3454106,UBERON:0001217,http://purl.obolibrary.org/obo/UBERON_0001217,ileal vein +15.3454106,UBERON:0001218,http://purl.obolibrary.org/obo/UBERON_0001218,middle colic vein +15.3454106,UBERON:0001319,http://purl.obolibrary.org/obo/UBERON_0001319,vaginal vein +15.3454106,UBERON:0001658,http://purl.obolibrary.org/obo/UBERON_0001658,middle temporal vein +15.3454106,UBERON:0001659,http://purl.obolibrary.org/obo/UBERON_0001659,transverse facial vein +15.3454106,UBERON:0001715,http://purl.obolibrary.org/obo/UBERON_0001715,oculomotor nuclear complex +15.3454106,UBERON:0001794,http://purl.obolibrary.org/obo/UBERON_0001794,inner limiting layer of retina +15.3454106,UBERON:0002338,http://purl.obolibrary.org/obo/UBERON_0002338,lamina propria of bronchus +15.3454106,UBERON:0002528,http://purl.obolibrary.org/obo/UBERON_0002528,sacral lymph node +15.3454106,UBERON:0002640,http://purl.obolibrary.org/obo/UBERON_0002640,cuneocerebellar tract +15.3454106,UBERON:0002815,http://purl.obolibrary.org/obo/UBERON_0002815,horizontal fissure of cerebellum +15.3454106,UBERON:0003030,http://purl.obolibrary.org/obo/UBERON_0003030,posterior nucleus of thalamus +15.3454106,UBERON:0003358,http://purl.obolibrary.org/obo/UBERON_0003358,epithelium of soft palate +15.3454106,UBERON:0003359,http://purl.obolibrary.org/obo/UBERON_0003359,epithelium of submandibular gland +15.3454106,UBERON:0003388,http://purl.obolibrary.org/obo/UBERON_0003388,mesothelium of pericardial cavity +15.3454106,UBERON:0003426,http://purl.obolibrary.org/obo/UBERON_0003426,dermis adipose tissue +15.3454106,UBERON:0003624,http://purl.obolibrary.org/obo/UBERON_0003624,manual digit 4 +15.3454106,UBERON:0003907,http://purl.obolibrary.org/obo/UBERON_0003907,left atrioventricular canal +15.3454106,UBERON:0003956,http://purl.obolibrary.org/obo/UBERON_0003956,aqueous drainage system +15.3454106,UBERON:0004051,http://purl.obolibrary.org/obo/UBERON_0004051,lateral cerebellomedullary cistern +15.3454106,UBERON:0004139,http://purl.obolibrary.org/obo/UBERON_0004139,cardiogenic plate +15.3454106,UBERON:0004464,http://purl.obolibrary.org/obo/UBERON_0004464,musculature of thorax +15.3454106,UBERON:0004523,http://purl.obolibrary.org/obo/UBERON_0004523,papillary muscle of right ventricle +15.3454106,UBERON:0004676,http://purl.obolibrary.org/obo/UBERON_0004676,spinal cord lateral horn +15.3454106,UBERON:0004831,http://purl.obolibrary.org/obo/UBERON_0004831,esophagus skeletal muscle +15.3454106,UBERON:0004879,http://purl.obolibrary.org/obo/UBERON_0004879,marginal zone of embryo +15.3454106,UBERON:0004928,http://purl.obolibrary.org/obo/UBERON_0004928,submucosa of appendix +15.3454106,UBERON:0005010,http://purl.obolibrary.org/obo/UBERON_0005010,mucosa of neck of urinary bladder +15.3454106,UBERON:0005022,http://purl.obolibrary.org/obo/UBERON_0005022,mucosa of nasopharynx +15.3454106,UBERON:0005025,http://purl.obolibrary.org/obo/UBERON_0005025,mucosa of uvula +15.3454106,UBERON:0005067,http://purl.obolibrary.org/obo/UBERON_0005067,amphid sensory organ +15.3454106,UBERON:0005100,http://purl.obolibrary.org/obo/UBERON_0005100,long descending thin limb +15.3454106,UBERON:0005134,http://purl.obolibrary.org/obo/UBERON_0005134,metanephric nephron epithelium +15.3454106,UBERON:0005146,http://purl.obolibrary.org/obo/UBERON_0005146,metanephric nephron tubule +15.3454106,UBERON:0005151,http://purl.obolibrary.org/obo/UBERON_0005151,metanephric proximal tubule +15.3454106,UBERON:0005378,http://purl.obolibrary.org/obo/UBERON_0005378,olfactory bulb granule cell layer +15.3454106,UBERON:0005721,http://purl.obolibrary.org/obo/UBERON_0005721,pronephric mesoderm +15.3454106,UBERON:0006068,http://purl.obolibrary.org/obo/UBERON_0006068,bone of tail +15.3454106,UBERON:0006104,http://purl.obolibrary.org/obo/UBERON_0006104,Brodmann (1909) area 36 +15.3454106,UBERON:0006218,http://purl.obolibrary.org/obo/UBERON_0006218,common atrial chamber +15.3454106,UBERON:0006236,http://purl.obolibrary.org/obo/UBERON_0006236,tetrapod frontal bone primordium +15.3454106,UBERON:0006458,http://purl.obolibrary.org/obo/UBERON_0006458,second thoracic spinal cord segment +15.3454106,UBERON:0006490,http://purl.obolibrary.org/obo/UBERON_0006490,C4 segment of cervical spinal cord +15.3454106,UBERON:0006565,http://purl.obolibrary.org/obo/UBERON_0006565,female urethral meatus +15.3454106,UBERON:0006643,http://purl.obolibrary.org/obo/UBERON_0006643,tunica albuginea of testis +15.3454106,UBERON:0006663,http://purl.obolibrary.org/obo/UBERON_0006663,hemiazygos vein +15.3454106,UBERON:0006857,http://purl.obolibrary.org/obo/UBERON_0006857,interrenal primordium +15.3454106,UBERON:0006954,http://purl.obolibrary.org/obo/UBERON_0006954,mammary gland myoepithelium +15.3454106,UBERON:0007152,http://purl.obolibrary.org/obo/UBERON_0007152,inferior sagittal sinus +15.3454106,UBERON:0007166,http://purl.obolibrary.org/obo/UBERON_0007166,left dome of diaphragm +15.3454106,UBERON:0007188,http://purl.obolibrary.org/obo/UBERON_0007188,mesothelium of serous pericardium +15.3454106,UBERON:0007681,http://purl.obolibrary.org/obo/UBERON_0007681,facial neural crest +15.3454106,UBERON:0007833,http://purl.obolibrary.org/obo/UBERON_0007833,osseus semicircular canal +15.3454106,UBERON:0008201,http://purl.obolibrary.org/obo/UBERON_0008201,scute +15.3454106,UBERON:0008248,http://purl.obolibrary.org/obo/UBERON_0008248,echinoderm pyloric cecum +15.3454106,UBERON:0008612,http://purl.obolibrary.org/obo/UBERON_0008612,muscle of pelvic diaphragm +15.3454106,UBERON:0008617,http://purl.obolibrary.org/obo/UBERON_0008617,innermost intercostal muscle +15.3454106,UBERON:0008954,http://purl.obolibrary.org/obo/UBERON_0008954,lingula of left lung +15.3454106,UBERON:0008957,http://purl.obolibrary.org/obo/UBERON_0008957,sequestrum +15.3454106,UBERON:0008976,http://purl.obolibrary.org/obo/UBERON_0008976,snake venom gland +15.3454106,UBERON:0009861,http://purl.obolibrary.org/obo/UBERON_0009861,ascidian neural complex +15.3454106,UBERON:0009882,http://purl.obolibrary.org/obo/UBERON_0009882,anal column +15.3454106,UBERON:0009991,http://purl.obolibrary.org/obo/UBERON_0009991,lateral condyle of tibia +15.3454106,UBERON:0010041,http://purl.obolibrary.org/obo/UBERON_0010041,median ovary +15.3454106,UBERON:0010059,http://purl.obolibrary.org/obo/UBERON_0010059,hypoglossal cord +15.3454106,UBERON:0010173,http://purl.obolibrary.org/obo/UBERON_0010173,sinotubular junction +15.3454106,UBERON:0010242,http://purl.obolibrary.org/obo/UBERON_0010242,anterior buccal gland +15.3454106,UBERON:0010401,http://purl.obolibrary.org/obo/UBERON_0010401,spleen central arteriole +15.3454106,UBERON:0010405,http://purl.obolibrary.org/obo/UBERON_0010405,spinal cord lateral motor column +15.3454106,UBERON:0010719,http://purl.obolibrary.org/obo/UBERON_0010719,girdle skeleton +15.3454106,UBERON:0010746,http://purl.obolibrary.org/obo/UBERON_0010746,iliac blade +15.3454106,UBERON:0010896,http://purl.obolibrary.org/obo/UBERON_0010896,piston cartilage +15.3454106,UBERON:0010927,http://purl.obolibrary.org/obo/UBERON_0010927,thyroepiglotticus muscle +15.3454106,UBERON:0011186,http://purl.obolibrary.org/obo/UBERON_0011186,Krause's gland +15.3454106,UBERON:0011197,http://purl.obolibrary.org/obo/UBERON_0011197,parathyroid epithelium +15.3454106,UBERON:0011221,http://purl.obolibrary.org/obo/UBERON_0011221,ora serrata of retina +15.3454106,UBERON:0011242,http://purl.obolibrary.org/obo/UBERON_0011242,ethmoid cartilage +15.3454106,UBERON:0011325,http://purl.obolibrary.org/obo/UBERON_0011325,pharyngeal nerve plexus +15.3454106,UBERON:0011369,http://purl.obolibrary.org/obo/UBERON_0011369,omotransversarius muscle +15.3454106,UBERON:0011379,http://purl.obolibrary.org/obo/UBERON_0011379,male external urethral sphincter +15.3454106,UBERON:0011610,http://purl.obolibrary.org/obo/UBERON_0011610,ceratohyal cartilage +15.3454106,UBERON:0011611,http://purl.obolibrary.org/obo/UBERON_0011611,ceratohyal bone +15.3454106,UBERON:0011622,http://purl.obolibrary.org/obo/UBERON_0011622,thyrohyoid bone +15.3454106,UBERON:0011879,http://purl.obolibrary.org/obo/UBERON_0011879,mesorchium +15.3454106,UBERON:0011900,http://purl.obolibrary.org/obo/UBERON_0011900,perimysium +15.3454106,UBERON:0011922,http://purl.obolibrary.org/obo/UBERON_0011922,cochlear basement membrane +15.3454106,UBERON:0011937,http://purl.obolibrary.org/obo/UBERON_0011937,vibrissa root sheath +15.3454106,UBERON:0011951,http://purl.obolibrary.org/obo/UBERON_0011951,prostate luminal epithelium +15.3454106,UBERON:0012083,http://purl.obolibrary.org/obo/UBERON_0012083,lumen of primary bronchus +15.3454106,UBERON:0012241,http://purl.obolibrary.org/obo/UBERON_0012241,male urethral meatus +15.3454106,UBERON:0012300,http://purl.obolibrary.org/obo/UBERON_0012300,limb paddle +15.3454106,UBERON:0012302,http://purl.obolibrary.org/obo/UBERON_0012302,male membranous urethra +15.3454106,UBERON:0012419,http://purl.obolibrary.org/obo/UBERON_0012419,taenia coli +15.3454106,UBERON:0012480,http://purl.obolibrary.org/obo/UBERON_0012480,cloacal mucosa +15.3454106,UBERON:0012652,http://purl.obolibrary.org/obo/UBERON_0012652,colorectum +15.3454106,UBERON:0013124,http://purl.obolibrary.org/obo/UBERON_0013124,left posterior cardinal vein +15.3454106,UBERON:0013600,http://purl.obolibrary.org/obo/UBERON_0013600,lateral accessory nucleus of optic tract +15.3454106,UBERON:0013695,http://purl.obolibrary.org/obo/UBERON_0013695,colon endothelium +15.3454106,UBERON:0013751,http://purl.obolibrary.org/obo/UBERON_0013751,metaphysis of radius +15.3454106,UBERON:0014767,http://purl.obolibrary.org/obo/UBERON_0014767,left crus of diaphragm +15.3454106,UBERON:0015866,http://purl.obolibrary.org/obo/UBERON_0015866,pyloric lymph node +15.3454106,UBERON:0016534,http://purl.obolibrary.org/obo/UBERON_0016534,white matter of temporal lobe +15.3454106,UBERON:0016575,http://purl.obolibrary.org/obo/UBERON_0016575,lamina IV of gray matter of spinal cord +15.3454106,UBERON:0016576,http://purl.obolibrary.org/obo/UBERON_0016576,lamina V of gray matter of spinal cord +15.3454106,UBERON:0016580,http://purl.obolibrary.org/obo/UBERON_0016580,lamina IX of gray matter of spinal cord +15.3454106,UBERON:0016636,http://purl.obolibrary.org/obo/UBERON_0016636,supplemental motor cortex +15.3454106,UBERON:0016857,http://purl.obolibrary.org/obo/UBERON_0016857,digit 7 +15.3454106,UBERON:0016858,http://purl.obolibrary.org/obo/UBERON_0016858,digit 8 +15.3454106,UBERON:0016927,http://purl.obolibrary.org/obo/UBERON_0016927,mucus cocoon +15.3454106,UBERON:0017651,http://purl.obolibrary.org/obo/UBERON_0017651,salivary gland primordium +15.3454106,UBERON:0018154,http://purl.obolibrary.org/obo/UBERON_0018154,ligament of middle ear +15.3454106,UBERON:0018156,http://purl.obolibrary.org/obo/UBERON_0018156,malleal ligament +15.3454106,UBERON:0018651,http://purl.obolibrary.org/obo/UBERON_0018651,foramen lacerum +15.3454106,UBERON:0019202,http://purl.obolibrary.org/obo/UBERON_0019202,inferior gemellus muscle +15.3454106,UBERON:0019203,http://purl.obolibrary.org/obo/UBERON_0019203,superior gemellus muscle +15.3454106,UBERON:0019253,http://purl.obolibrary.org/obo/UBERON_0019253,upper secondary incisor tooth +15.3454106,UBERON:0019324,http://purl.obolibrary.org/obo/UBERON_0019324,intraorbital lacrimal gland +15.3454106,UBERON:0022244,http://purl.obolibrary.org/obo/UBERON_0022244,anterior orbital gyrus +15.3454106,UBERON:0022292,http://purl.obolibrary.org/obo/UBERON_0022292,splenic arteriole +15.3454106,UBERON:0022327,http://purl.obolibrary.org/obo/UBERON_0022327,entorhinal cortex layer 3 +15.3454106,UBERON:0023390,http://purl.obolibrary.org/obo/UBERON_0023390,medial subnucleus of solitary tract +15.3454106,UBERON:0023787,http://purl.obolibrary.org/obo/UBERON_0023787,subicular complex +15.3454106,UBERON:0025533,http://purl.obolibrary.org/obo/UBERON_0025533,proprioceptive system +15.3454106,UBERON:0028622,http://purl.obolibrary.org/obo/UBERON_0028622,banks of superior temporal sulcus +15.3454106,UBERON:0034703,http://purl.obolibrary.org/obo/UBERON_0034703,inflow tract of right ventricle +15.3454106,UBERON:0034763,http://purl.obolibrary.org/obo/UBERON_0034763,hindbrain commissure +15.3454106,UBERON:0034937,http://purl.obolibrary.org/obo/UBERON_0034937,pharyngeal bar +15.3454106,UBERON:1000018,http://purl.obolibrary.org/obo/UBERON_1000018,cluster of hairs +15.3454106,UBERON:1000024,http://purl.obolibrary.org/obo/UBERON_1000024,parenchyma of spleen +15.3454106,UBERON:2000157,http://purl.obolibrary.org/obo/UBERON_2000157,somite 30 +15.3454106,UBERON:2000168,http://purl.obolibrary.org/obo/UBERON_2000168,anterior macula +15.3454106,UBERON:2000171,http://purl.obolibrary.org/obo/UBERON_2000171,interhyal bone +15.3454106,UBERON:2000430,http://purl.obolibrary.org/obo/UBERON_2000430,secondary gustatory tract +15.3454106,UBERON:2000442,http://purl.obolibrary.org/obo/UBERON_2000442,supraneural bone +15.3454106,UBERON:2000466,http://purl.obolibrary.org/obo/UBERON_2000466,anal depressor +15.3454106,UBERON:2000484,http://purl.obolibrary.org/obo/UBERON_2000484,celiacomesenteric artery +15.3454106,UBERON:2000974,http://purl.obolibrary.org/obo/UBERON_2000974,somite 10 +15.3454106,UBERON:2001052,http://purl.obolibrary.org/obo/UBERON_2001052,primordial hindbrain channel +15.3454106,UBERON:2001156,http://purl.obolibrary.org/obo/UBERON_2001156,posterior lateral line placode +15.3454106,UBERON:2001978,http://purl.obolibrary.org/obo/UBERON_2001978,maxillary tooth row +15.3454106,UBERON:2001996,http://purl.obolibrary.org/obo/UBERON_2001996,maxillary canal +15.3454106,UBERON:2002005,http://purl.obolibrary.org/obo/UBERON_2002005,canal plate +15.3454106,UBERON:2002116,http://purl.obolibrary.org/obo/UBERON_2002116,epibranchial organ +15.3454106,UBERON:2002202,http://purl.obolibrary.org/obo/UBERON_2002202,intermediate nucleus +15.3454106,UBERON:2002235,http://purl.obolibrary.org/obo/UBERON_2002235,presumptive ventral mesoderm +15.3454106,UBERON:2005034,http://purl.obolibrary.org/obo/UBERON_2005034,parachordal vessel +15.3454106,UBERON:2007041,http://purl.obolibrary.org/obo/UBERON_2007041,forebrain neural tube +15.3454106,UBERON:2007062,http://purl.obolibrary.org/obo/UBERON_2007062,olfactory field +15.3454106,UBERON:3000224,http://purl.obolibrary.org/obo/UBERON_3000224,hyobranchial muscle +15.3454106,UBERON:3010203,http://purl.obolibrary.org/obo/UBERON_3010203,dorsal tail fin +15.3454106,UBERON:3010529,http://purl.obolibrary.org/obo/UBERON_3010529,ovisac +15.3454106,UBERON:3010818,http://purl.obolibrary.org/obo/UBERON_3010818,hepatic peritoneum +15.3454106,UBERON:4300035,http://purl.obolibrary.org/obo/UBERON_4300035,supraneural element +15.5685541,CHEBI:10136,http://purl.obolibrary.org/obo/CHEBI_10136,gingerol +15.5685541,CHEBI:132543,http://purl.obolibrary.org/obo/CHEBI_132543,fatty acid 22:5 +15.5685541,CHEBI:136838,http://purl.obolibrary.org/obo/CHEBI_136838,2-methoxyethyl ester +15.5685541,CHEBI:137980,http://purl.obolibrary.org/obo/CHEBI_137980,metalloid atom +15.5685541,CHEBI:1391,http://purl.obolibrary.org/obo/CHEBI_1391,"3,4-methylenedioxymethamphetamine" +15.5685541,CHEBI:142921,http://purl.obolibrary.org/obo/CHEBI_142921,3-phenylprop-2-enal +15.5685541,CHEBI:15738,http://purl.obolibrary.org/obo/CHEBI_15738,staurosporine +15.5685541,CHEBI:15816,http://purl.obolibrary.org/obo/CHEBI_15816,D-arginine +15.5685541,CHEBI:16008,http://purl.obolibrary.org/obo/CHEBI_16008,salicylaldehyde +15.5685541,CHEBI:16015,http://purl.obolibrary.org/obo/CHEBI_16015,L-glutamic acid +15.5685541,CHEBI:16024,http://purl.obolibrary.org/obo/CHEBI_16024,D-mannose +15.5685541,CHEBI:16498,http://purl.obolibrary.org/obo/CHEBI_16498,N-acylneuraminic acid +15.5685541,CHEBI:16675,http://purl.obolibrary.org/obo/CHEBI_16675,quinolinic acid +15.5685541,CHEBI:16731,http://purl.obolibrary.org/obo/CHEBI_16731,(E)-cinnamaldehyde +15.5685541,CHEBI:16830,http://purl.obolibrary.org/obo/CHEBI_16830,methylamine +15.5685541,CHEBI:16838,http://purl.obolibrary.org/obo/CHEBI_16838,polyphosphate +15.5685541,CHEBI:17012,http://purl.obolibrary.org/obo/CHEBI_17012,N-acetylneuraminic acid +15.5685541,CHEBI:17097,http://purl.obolibrary.org/obo/CHEBI_17097,biphenyl +15.5685541,CHEBI:17141,http://purl.obolibrary.org/obo/CHEBI_17141,cysteamine +15.5685541,CHEBI:17170,http://purl.obolibrary.org/obo/CHEBI_17170,dimethylamine +15.5685541,CHEBI:17226,http://purl.obolibrary.org/obo/CHEBI_17226,rosmarinic acid +15.5685541,CHEBI:17289,http://purl.obolibrary.org/obo/CHEBI_17289,homoserine lactone +15.5685541,CHEBI:17315,http://purl.obolibrary.org/obo/CHEBI_17315,D-glucosamine +15.5685541,CHEBI:18053,http://purl.obolibrary.org/obo/CHEBI_18053,1-aminocyclopropanecarboxylic acid +15.5685541,CHEBI:18135,http://purl.obolibrary.org/obo/CHEBI_18135,catechol +15.5685541,CHEBI:18219,http://purl.obolibrary.org/obo/CHEBI_18219,ammonium hydroxide +15.5685541,CHEBI:18257,http://purl.obolibrary.org/obo/CHEBI_18257,ornithine +15.5685541,CHEBI:18344,http://purl.obolibrary.org/obo/CHEBI_18344,kynurenic acid +15.5685541,CHEBI:18407,http://purl.obolibrary.org/obo/CHEBI_18407,hydrogen cyanide +15.5685541,CHEBI:20607,http://purl.obolibrary.org/obo/CHEBI_20607,5-methylcytidine +15.5685541,CHEBI:20857,http://purl.obolibrary.org/obo/CHEBI_20857,C-glycosyl compound +15.5685541,CHEBI:22278,http://purl.obolibrary.org/obo/CHEBI_22278,alanine derivative +15.5685541,CHEBI:22290,http://purl.obolibrary.org/obo/CHEBI_22290,aldaric acid +15.5685541,CHEBI:22487,http://purl.obolibrary.org/obo/CHEBI_22487,alpha-aminoacyl group +15.5685541,CHEBI:22502,http://purl.obolibrary.org/obo/CHEBI_22502,2-aminoethyl group +15.5685541,CHEBI:22682,http://purl.obolibrary.org/obo/CHEBI_22682,azobenzenes +15.5685541,CHEBI:22733,http://purl.obolibrary.org/obo/CHEBI_22733,benzoyl group +15.5685541,CHEBI:23447,http://purl.obolibrary.org/obo/CHEBI_23447,cyclic nucleotide +15.5685541,CHEBI:23778,http://purl.obolibrary.org/obo/CHEBI_23778,dihydroxybenzoic acid +15.5685541,CHEBI:23855,http://purl.obolibrary.org/obo/CHEBI_23855,divalent carboacyl group +15.5685541,CHEBI:23916,http://purl.obolibrary.org/obo/CHEBI_23916,enoyl group +15.5685541,CHEBI:24026,http://purl.obolibrary.org/obo/CHEBI_24026,fatty alcohol +15.5685541,CHEBI:24027,http://purl.obolibrary.org/obo/CHEBI_24027,fatty-acyl group +15.5685541,CHEBI:24041,http://purl.obolibrary.org/obo/CHEBI_24041,flavin mononucleotide +15.5685541,CHEBI:24266,http://purl.obolibrary.org/obo/CHEBI_24266,gluconic acid +15.5685541,CHEBI:24333,http://purl.obolibrary.org/obo/CHEBI_24333,glutaryl-CoAs +15.5685541,CHEBI:24593,http://purl.obolibrary.org/obo/CHEBI_24593,hexyl group +15.5685541,CHEBI:24673,http://purl.obolibrary.org/obo/CHEBI_24673,hydroxybenzaldehyde +15.5685541,CHEBI:24751,http://purl.obolibrary.org/obo/CHEBI_24751,hydroxytoluene +15.5685541,CHEBI:24941,http://purl.obolibrary.org/obo/CHEBI_24941,juvenile hormone antagonists +15.5685541,CHEBI:24960,http://purl.obolibrary.org/obo/CHEBI_24960,ketoaldehyde +15.5685541,CHEBI:25294,http://purl.obolibrary.org/obo/CHEBI_25294,methylcytidine +15.5685541,CHEBI:25351,http://purl.obolibrary.org/obo/CHEBI_25351,mevalonic acid +15.5685541,CHEBI:25566,http://purl.obolibrary.org/obo/CHEBI_25566,nitrotoluene +15.5685541,CHEBI:25567,http://purl.obolibrary.org/obo/CHEBI_25567,nitrous acid +15.5685541,CHEBI:26034,http://purl.obolibrary.org/obo/CHEBI_26034,phosphatidylinositol 3-phosphate +15.5685541,CHEBI:26197,http://purl.obolibrary.org/obo/CHEBI_26197,polyphosphates +15.5685541,CHEBI:26361,http://purl.obolibrary.org/obo/CHEBI_26361,protoporphyrins +15.5685541,CHEBI:26404,http://purl.obolibrary.org/obo/CHEBI_26404,puromycins +15.5685541,CHEBI:26444,http://purl.obolibrary.org/obo/CHEBI_26444,pyrimidine ribonucleoside triphosphate +15.5685541,CHEBI:26580,http://purl.obolibrary.org/obo/CHEBI_26580,rifamycins +15.5685541,CHEBI:26649,http://purl.obolibrary.org/obo/CHEBI_26649,serine derivative +15.5685541,CHEBI:26706,http://purl.obolibrary.org/obo/CHEBI_26706,sn-glycerol 3-phosphates +15.5685541,CHEBI:26766,http://purl.obolibrary.org/obo/CHEBI_26766,steroid lactone +15.5685541,CHEBI:27116,http://purl.obolibrary.org/obo/CHEBI_27116,trihydroxyflavone +15.5685541,CHEBI:27150,http://purl.obolibrary.org/obo/CHEBI_27150,trisaccharide +15.5685541,CHEBI:27232,http://purl.obolibrary.org/obo/CHEBI_27232,uridine 5'-phosphate +15.5685541,CHEBI:27237,http://purl.obolibrary.org/obo/CHEBI_27237,uridine phosphate +15.5685541,CHEBI:27300,http://purl.obolibrary.org/obo/CHEBI_27300,vitamin D +15.5685541,CHEBI:27432,http://purl.obolibrary.org/obo/CHEBI_27432,alpha-linolenic acid +15.5685541,CHEBI:27881,http://purl.obolibrary.org/obo/CHEBI_27881,resveratrol +15.5685541,CHEBI:28266,http://purl.obolibrary.org/obo/CHEBI_28266,fluorene +15.5685541,CHEBI:28783,http://purl.obolibrary.org/obo/CHEBI_28783,zinc protoporphyrin +15.5685541,CHEBI:28793,http://purl.obolibrary.org/obo/CHEBI_28793,beta-D-glucan +15.5685541,CHEBI:28829,http://purl.obolibrary.org/obo/CHEBI_28829,aminophenol +15.5685541,CHEBI:28837,http://purl.obolibrary.org/obo/CHEBI_28837,octanoic acid +15.5685541,CHEBI:28915,http://purl.obolibrary.org/obo/CHEBI_28915,fosfomycin +15.5685541,CHEBI:29348,http://purl.obolibrary.org/obo/CHEBI_29348,fatty amide +15.5685541,CHEBI:29390,http://purl.obolibrary.org/obo/CHEBI_29390,silicon carbide +15.5685541,CHEBI:30089,http://purl.obolibrary.org/obo/CHEBI_30089,acetate +15.5685541,CHEBI:3009,http://purl.obolibrary.org/obo/CHEBI_3009,benalaxyl +15.5685541,CHEBI:30618,http://purl.obolibrary.org/obo/CHEBI_30618,hydroxypropyl methylcellulose +15.5685541,CHEBI:30754,http://purl.obolibrary.org/obo/CHEBI_30754,anthranilic acid +15.5685541,CHEBI:30776,http://purl.obolibrary.org/obo/CHEBI_30776,hexanoic acid +15.5685541,CHEBI:30838,http://purl.obolibrary.org/obo/CHEBI_30838,itaconic acid +15.5685541,CHEBI:32301,http://purl.obolibrary.org/obo/CHEBI_32301,warfarin potassium +15.5685541,CHEBI:32497,http://purl.obolibrary.org/obo/CHEBI_32497,thioacetamide +15.5685541,CHEBI:32688,http://purl.obolibrary.org/obo/CHEBI_32688,D-argininate +15.5685541,CHEBI:32878,http://purl.obolibrary.org/obo/CHEBI_32878,alkene +15.5685541,CHEBI:32964,http://purl.obolibrary.org/obo/CHEBI_32964,ornithinate +15.5685541,CHEBI:3303,http://purl.obolibrary.org/obo/CHEBI_3303,calcein am +15.5685541,CHEBI:33118,http://purl.obolibrary.org/obo/CHEBI_33118,boric acid +15.5685541,CHEBI:33167,http://purl.obolibrary.org/obo/CHEBI_33167,sodium iodide +15.5685541,CHEBI:33309,http://purl.obolibrary.org/obo/CHEBI_33309,noble gas atom +15.5685541,CHEBI:33752,http://purl.obolibrary.org/obo/CHEBI_33752,hexonic acid +15.5685541,CHEBI:3385,http://purl.obolibrary.org/obo/CHEBI_3385,carbachol +15.5685541,CHEBI:33897,http://purl.obolibrary.org/obo/CHEBI_33897,iduronic acids +15.5685541,CHEBI:35666,http://purl.obolibrary.org/obo/CHEBI_35666,thiopurine +15.5685541,CHEBI:35788,http://purl.obolibrary.org/obo/CHEBI_35788,seco-steroid +15.5685541,CHEBI:36027,http://purl.obolibrary.org/obo/CHEBI_36027,stilbenol +15.5685541,CHEBI:36158,http://purl.obolibrary.org/obo/CHEBI_36158,metalloprotoporphyrin +15.5685541,CHEBI:36420,http://purl.obolibrary.org/obo/CHEBI_36420,acridine +15.5685541,CHEBI:36608,http://purl.obolibrary.org/obo/CHEBI_36608,acyclic acid anhydride +15.5685541,CHEBI:36687,http://purl.obolibrary.org/obo/CHEBI_36687,acyl chloride +15.5685541,CHEBI:36816,http://purl.obolibrary.org/obo/CHEBI_36816,oxime O-ether +15.5685541,CHEBI:36853,http://purl.obolibrary.org/obo/CHEBI_36853,hydroxy seco-steroid +15.5685541,CHEBI:36864,http://purl.obolibrary.org/obo/CHEBI_36864,25-hydroxy steroid +15.5685541,CHEBI:37044,http://purl.obolibrary.org/obo/CHEBI_37044,pyrimidine ribonucleoside 5'-triphosphate +15.5685541,CHEBI:37054,http://purl.obolibrary.org/obo/CHEBI_37054,3-hydroxybutyrate +15.5685541,CHEBI:37408,http://purl.obolibrary.org/obo/CHEBI_37408,crown ether +15.5685541,CHEBI:37562,http://purl.obolibrary.org/obo/CHEBI_37562,trialkyl phosphate +15.5685541,CHEBI:37624,http://purl.obolibrary.org/obo/CHEBI_37624,L-glucose +15.5685541,CHEBI:37697,http://purl.obolibrary.org/obo/CHEBI_37697,indolocarbazole alkaloid +15.5685541,CHEBI:38165,http://purl.obolibrary.org/obo/CHEBI_38165,organic heterooctacyclic compound +15.5685541,CHEBI:38193,http://purl.obolibrary.org/obo/CHEBI_38193,phenylpyridine +15.5685541,CHEBI:38327,http://purl.obolibrary.org/obo/CHEBI_38327,oxazoline +15.5685541,CHEBI:38329,http://purl.obolibrary.org/obo/CHEBI_38329,oxazolidines +15.5685541,CHEBI:38502,http://purl.obolibrary.org/obo/CHEBI_38502,cytochrome-bc1 complex inhibitor +15.5685541,CHEBI:38785,http://purl.obolibrary.org/obo/CHEBI_38785,morpholines +15.5685541,CHEBI:39054,http://purl.obolibrary.org/obo/CHEBI_39054,NTA +15.5685541,CHEBI:39128,http://purl.obolibrary.org/obo/CHEBI_39128,magnesium ion +15.5685541,CHEBI:39270,http://purl.obolibrary.org/obo/CHEBI_39270,naphthofuran +15.5685541,CHEBI:39410,http://purl.obolibrary.org/obo/CHEBI_39410,"1,2,4-triazines" +15.5685541,CHEBI:39444,http://purl.obolibrary.org/obo/CHEBI_39444,diazo compound +15.5685541,CHEBI:41218,http://purl.obolibrary.org/obo/CHEBI_41218,mercaptoethanol +15.5685541,CHEBI:41500,http://purl.obolibrary.org/obo/CHEBI_41500,4-phenylbutyric acid +15.5685541,CHEBI:42266,http://purl.obolibrary.org/obo/CHEBI_42266,ethane +15.5685541,CHEBI:42977,http://purl.obolibrary.org/obo/CHEBI_42977,25-hydroxycholesterol +15.5685541,CHEBI:44423,http://purl.obolibrary.org/obo/CHEBI_44423,hydroxyurea +15.5685541,CHEBI:44915,http://purl.obolibrary.org/obo/CHEBI_44915,propofol +15.5685541,CHEBI:44923,http://purl.obolibrary.org/obo/CHEBI_44923,phenylboronic acid +15.5685541,CHEBI:46149,http://purl.obolibrary.org/obo/CHEBI_46149,picric acid +15.5685541,CHEBI:46629,http://purl.obolibrary.org/obo/CHEBI_46629,oxo group +15.5685541,CHEBI:46812,http://purl.obolibrary.org/obo/CHEBI_46812,"1,3-oxazoles" +15.5685541,CHEBI:46890,http://purl.obolibrary.org/obo/CHEBI_46890,silicon hydroxide +15.5685541,CHEBI:47908,http://purl.obolibrary.org/obo/CHEBI_47908,alkanethiol +15.5685541,CHEBI:48138,http://purl.obolibrary.org/obo/CHEBI_48138,siloxane +15.5685541,CHEBI:49706,http://purl.obolibrary.org/obo/CHEBI_49706,perchlorate +15.5685541,CHEBI:50334,http://purl.obolibrary.org/obo/CHEBI_50334,pyridinium ion +15.5685541,CHEBI:50394,http://purl.obolibrary.org/obo/CHEBI_50394,organic potassium salt +15.5685541,CHEBI:50833,http://purl.obolibrary.org/obo/CHEBI_50833,cadmium sulfide +15.5685541,CHEBI:5086,http://purl.obolibrary.org/obo/CHEBI_5086,flavoprotein +15.5685541,CHEBI:51584,http://purl.obolibrary.org/obo/CHEBI_51584,metallophthalocyanines +15.5685541,CHEBI:51585,http://purl.obolibrary.org/obo/CHEBI_51585,metallophthalocyanine +15.5685541,CHEBI:51915,http://purl.obolibrary.org/obo/CHEBI_51915,indolocarbazole +15.5685541,CHEBI:51917,http://purl.obolibrary.org/obo/CHEBI_51917,formamidines +15.5685541,CHEBI:51953,http://purl.obolibrary.org/obo/CHEBI_51953,polyamide +15.5685541,CHEBI:521033,http://purl.obolibrary.org/obo/CHEBI_521033,dutasteride +15.5685541,CHEBI:52738,http://purl.obolibrary.org/obo/CHEBI_52738,aroyl group +15.5685541,CHEBI:53305,http://purl.obolibrary.org/obo/CHEBI_53305,poly(allylamine hydrochloride) +15.5685541,CHEBI:53325,http://purl.obolibrary.org/obo/CHEBI_53325,nitrocellulose +15.5685541,CHEBI:53468,http://purl.obolibrary.org/obo/CHEBI_53468,salicylanilides +15.5685541,CHEBI:55380,http://purl.obolibrary.org/obo/CHEBI_55380,beta-hydroxy ketone +15.5685541,CHEBI:58389,http://purl.obolibrary.org/obo/CHEBI_58389,trimethylammonium +15.5685541,CHEBI:5864,http://purl.obolibrary.org/obo/CHEBI_5864,ifosfamide +15.5685541,CHEBI:59659,http://purl.obolibrary.org/obo/CHEBI_59659,pyrenes +15.5685541,CHEBI:60685,http://purl.obolibrary.org/obo/CHEBI_60685,polyalkenylene polymer +15.5685541,CHEBI:60686,http://purl.obolibrary.org/obo/CHEBI_60686,polybutadiene polymer +15.5685541,CHEBI:60758,http://purl.obolibrary.org/obo/CHEBI_60758,poly(2-hydroxyethyl methacrylate) polymer +15.5685541,CHEBI:61204,http://purl.obolibrary.org/obo/CHEBI_61204,docosapentaenoic acid +15.5685541,CHEBI:61371,http://purl.obolibrary.org/obo/CHEBI_61371,poly(ethyl methacrylate) polymer +15.5685541,CHEBI:61409,http://purl.obolibrary.org/obo/CHEBI_61409,dihydroxyphenylacetic acid +15.5685541,CHEBI:61452,http://purl.obolibrary.org/obo/CHEBI_61452,poly(ethylene terephthalate) polymer +15.5685541,CHEBI:61488,http://purl.obolibrary.org/obo/CHEBI_61488,poly(lysine) polymer +15.5685541,CHEBI:61490,http://purl.obolibrary.org/obo/CHEBI_61490,poly(L-lysine) polymer +15.5685541,CHEBI:61655,http://purl.obolibrary.org/obo/CHEBI_61655,steroid saponin +15.5685541,CHEBI:62499,http://purl.obolibrary.org/obo/CHEBI_62499,methyl-branched fatty acid +15.5685541,CHEBI:63353,http://purl.obolibrary.org/obo/CHEBI_63353,disaccharide derivative +15.5685541,CHEBI:63477,http://purl.obolibrary.org/obo/CHEBI_63477,iodothyroninate +15.5685541,CHEBI:63551,http://purl.obolibrary.org/obo/CHEBI_63551,carbohydrate acid derivative anion +15.5685541,CHEBI:64045,http://purl.obolibrary.org/obo/CHEBI_64045,amisulpride +15.5685541,CHEBI:65260,http://purl.obolibrary.org/obo/CHEBI_65260,3-hydroxyacyl-CoA +15.5685541,CHEBI:6717,http://purl.obolibrary.org/obo/CHEBI_6717,mefenamic acid +15.5685541,CHEBI:6775,http://purl.obolibrary.org/obo/CHEBI_6775,mesalamine +15.5685541,CHEBI:6980,http://purl.obolibrary.org/obo/CHEBI_6980,monocrotaline +15.5685541,CHEBI:70813,http://purl.obolibrary.org/obo/CHEBI_70813,glutamine derivative +15.5685541,CHEBI:72483,http://purl.obolibrary.org/obo/CHEBI_72483,vesicular glutamate transport inhibitor +15.5685541,CHEBI:72564,http://purl.obolibrary.org/obo/CHEBI_72564,temozolomide +15.5685541,CHEBI:72565,http://purl.obolibrary.org/obo/CHEBI_72565,imidazotetrazine +15.5685541,CHEBI:72573,http://purl.obolibrary.org/obo/CHEBI_72573,triazene derivative +15.5685541,CHEBI:74152,http://purl.obolibrary.org/obo/CHEBI_74152,mordant +15.5685541,CHEBI:74236,http://purl.obolibrary.org/obo/CHEBI_74236,polymerisation monomer +15.5685541,CHEBI:75622,http://purl.obolibrary.org/obo/CHEBI_75622,palmityl oleate +15.5685541,CHEBI:78007,http://purl.obolibrary.org/obo/CHEBI_78007,foaming agent +15.5685541,CHEBI:78298,http://purl.obolibrary.org/obo/CHEBI_78298,environmental contaminant +15.5685541,CHEBI:78299,http://purl.obolibrary.org/obo/CHEBI_78299,environmental food contaminant +15.5685541,CHEBI:78373,http://purl.obolibrary.org/obo/CHEBI_78373,chelerythrine +15.5685541,CHEBI:7986,http://purl.obolibrary.org/obo/CHEBI_7986,Pentoxifylline +15.5685541,CHEBI:80025,http://purl.obolibrary.org/obo/CHEBI_80025,Salinomycin +15.5685541,CHEBI:80774,http://purl.obolibrary.org/obo/CHEBI_80774,tauroursodeoxycholic acid +15.5685541,CHEBI:81687,http://purl.obolibrary.org/obo/CHEBI_81687,sodium L-ascorbic acid 2-phosphate +15.5685541,CHEBI:81805,http://purl.obolibrary.org/obo/CHEBI_81805,fluazifop +15.5685541,CHEBI:82726,http://purl.obolibrary.org/obo/CHEBI_82726,RNA fragment +15.5685541,CHEBI:83169,http://purl.obolibrary.org/obo/CHEBI_83169,N-acyl homoserine lactone +15.5685541,CHEBI:8346,http://purl.obolibrary.org/obo/CHEBI_8346,potassium iodide +15.5685541,CHEBI:83687,http://purl.obolibrary.org/obo/CHEBI_83687,sertaconazole nitrate +15.5685541,CHEBI:83812,http://purl.obolibrary.org/obo/CHEBI_83812,non-proteinogenic amino acid derivative +15.5685541,CHEBI:83818,http://purl.obolibrary.org/obo/CHEBI_83818,morphinane-like compound +15.5685541,CHEBI:84196,http://purl.obolibrary.org/obo/CHEBI_84196,3-hydroxy fatty acid anion +15.5685541,CHEBI:85424,http://purl.obolibrary.org/obo/CHEBI_85424,glycine transporter 2 inhibitor +15.5685541,CHEBI:86322,http://purl.obolibrary.org/obo/CHEBI_86322,alkaloid antibiotic +15.5685541,CHEBI:87067,http://purl.obolibrary.org/obo/CHEBI_87067,conazole fungicide +15.5685541,CL:0000043,http://purl.obolibrary.org/obo/CL_0000043,mature basophil +15.5685541,CL:0000054,http://purl.obolibrary.org/obo/CL_0000054,bone matrix secreting cell +15.5685541,CL:0000490,http://purl.obolibrary.org/obo/CL_0000490,photopic photoreceptor cell +15.5685541,CL:0000941,http://purl.obolibrary.org/obo/CL_0000941,thymic conventional dendritic cell +15.5685541,CL:0001024,http://purl.obolibrary.org/obo/CL_0001024,"CD34-positive, CD38-negative hematopoietic stem cell" +15.5685541,CL:0002360,http://purl.obolibrary.org/obo/CL_0002360,AGM hematopoietic stem cell +15.5685541,CL:0002437,http://purl.obolibrary.org/obo/CL_0002437,mature CD8 single-positive thymocyte +15.5685541,CL:0002438,http://purl.obolibrary.org/obo/CL_0002438,"NK1.1-positive natural killer cell, mouse" +15.5685541,CL:0002461,http://purl.obolibrary.org/obo/CL_0002461,CD103-positive dendritic cell +15.5685541,CL:0002567,http://purl.obolibrary.org/obo/CL_0002567,light melanocyte +15.5685541,CL:0002578,http://purl.obolibrary.org/obo/CL_0002578,mesenteric preadipocyte +15.5685541,CL:0002656,http://purl.obolibrary.org/obo/CL_0002656,glandular cell of endometrium +15.5685541,CL:0002670,http://purl.obolibrary.org/obo/CL_0002670,type 1 otic fibrocyte +15.5685541,CL:0005011,http://purl.obolibrary.org/obo/CL_0005011,renal alpha-intercalated cell +15.5685541,CL:0007007,http://purl.obolibrary.org/obo/CL_0007007,notochordal sheath cell +15.5685541,CL:0007009,http://purl.obolibrary.org/obo/CL_0007009,prechondroblast +15.5685541,CL:1000279,http://purl.obolibrary.org/obo/CL_1000279,smooth muscle cell of large intestine +15.5685541,CL:1000280,http://purl.obolibrary.org/obo/CL_1000280,smooth muscle cell of colon +15.5685541,CL:1001503,http://purl.obolibrary.org/obo/CL_1001503,olfactory bulb tufted cell +15.5685541,CL:1001588,http://purl.obolibrary.org/obo/CL_1001588,colon glandular cell +15.5685541,DRUGBANK:DB01527,http://purl.obolibrary.org/obo/DRUGBANK_DB01527,none +15.5685541,DRUGBANK:DB01572,http://purl.obolibrary.org/obo/DRUGBANK_DB01572,none +15.5685541,DRUGBANK:DB01760,http://purl.obolibrary.org/obo/DRUGBANK_DB01760,none +15.5685541,DRUGBANK:DB01778,http://purl.obolibrary.org/obo/DRUGBANK_DB01778,none +15.5685541,DRUGBANK:DB01830,http://purl.obolibrary.org/obo/DRUGBANK_DB01830,none +15.5685541,DRUGBANK:DB01890,http://purl.obolibrary.org/obo/DRUGBANK_DB01890,none +15.5685541,DRUGBANK:DB01934,http://purl.obolibrary.org/obo/DRUGBANK_DB01934,none +15.5685541,DRUGBANK:DB02076,http://purl.obolibrary.org/obo/DRUGBANK_DB02076,none +15.5685541,DRUGBANK:DB02136,http://purl.obolibrary.org/obo/DRUGBANK_DB02136,none +15.5685541,DRUGBANK:DB02138,http://purl.obolibrary.org/obo/DRUGBANK_DB02138,none +15.5685541,DRUGBANK:DB02146,http://purl.obolibrary.org/obo/DRUGBANK_DB02146,none +15.5685541,DRUGBANK:DB02172,http://purl.obolibrary.org/obo/DRUGBANK_DB02172,none +15.5685541,DRUGBANK:DB02258,http://purl.obolibrary.org/obo/DRUGBANK_DB02258,none +15.5685541,DRUGBANK:DB02323,http://purl.obolibrary.org/obo/DRUGBANK_DB02323,none +15.5685541,DRUGBANK:DB02413,http://purl.obolibrary.org/obo/DRUGBANK_DB02413,none +15.5685541,DRUGBANK:DB02540,http://purl.obolibrary.org/obo/DRUGBANK_DB02540,none +15.5685541,DRUGBANK:DB02553,http://purl.obolibrary.org/obo/DRUGBANK_DB02553,none +15.5685541,DRUGBANK:DB02578,http://purl.obolibrary.org/obo/DRUGBANK_DB02578,none +15.5685541,DRUGBANK:DB02706,http://purl.obolibrary.org/obo/DRUGBANK_DB02706,none +15.5685541,DRUGBANK:DB02727,http://purl.obolibrary.org/obo/DRUGBANK_DB02727,none +15.5685541,DRUGBANK:DB02788,http://purl.obolibrary.org/obo/DRUGBANK_DB02788,none +15.5685541,DRUGBANK:DB02870,http://purl.obolibrary.org/obo/DRUGBANK_DB02870,none +15.5685541,DRUGBANK:DB02922,http://purl.obolibrary.org/obo/DRUGBANK_DB02922,none +15.5685541,DRUGBANK:DB03145,http://purl.obolibrary.org/obo/DRUGBANK_DB03145,none +15.5685541,DRUGBANK:DB03208,http://purl.obolibrary.org/obo/DRUGBANK_DB03208,none +15.5685541,DRUGBANK:DB03277,http://purl.obolibrary.org/obo/DRUGBANK_DB03277,none +15.5685541,DRUGBANK:DB03326,http://purl.obolibrary.org/obo/DRUGBANK_DB03326,none +15.5685541,DRUGBANK:DB03520,http://purl.obolibrary.org/obo/DRUGBANK_DB03520,none +15.5685541,DRUGBANK:DB03544,http://purl.obolibrary.org/obo/DRUGBANK_DB03544,none +15.5685541,DRUGBANK:DB03548,http://purl.obolibrary.org/obo/DRUGBANK_DB03548,none +15.5685541,DRUGBANK:DB03784,http://purl.obolibrary.org/obo/DRUGBANK_DB03784,none +15.5685541,DRUGBANK:DB04021,http://purl.obolibrary.org/obo/DRUGBANK_DB04021,none +15.5685541,DRUGBANK:DB04048,http://purl.obolibrary.org/obo/DRUGBANK_DB04048,none +15.5685541,DRUGBANK:DB04063,http://purl.obolibrary.org/obo/DRUGBANK_DB04063,none +15.5685541,DRUGBANK:DB04206,http://purl.obolibrary.org/obo/DRUGBANK_DB04206,none +15.5685541,DRUGBANK:DB04208,http://purl.obolibrary.org/obo/DRUGBANK_DB04208,none +15.5685541,DRUGBANK:DB04269,http://purl.obolibrary.org/obo/DRUGBANK_DB04269,none +15.5685541,DRUGBANK:DB04391,http://purl.obolibrary.org/obo/DRUGBANK_DB04391,none +15.5685541,DRUGBANK:DB04798,http://purl.obolibrary.org/obo/DRUGBANK_DB04798,none +15.5685541,DRUGBANK:DB04943,http://purl.obolibrary.org/obo/DRUGBANK_DB04943,none +15.5685541,DRUGBANK:DB05009,http://purl.obolibrary.org/obo/DRUGBANK_DB05009,none +15.5685541,DRUGBANK:DB05092,http://purl.obolibrary.org/obo/DRUGBANK_DB05092,none +15.5685541,DRUGBANK:DB05133,http://purl.obolibrary.org/obo/DRUGBANK_DB05133,none +15.5685541,DRUGBANK:DB05166,http://purl.obolibrary.org/obo/DRUGBANK_DB05166,none +15.5685541,DRUGBANK:DB05184,http://purl.obolibrary.org/obo/DRUGBANK_DB05184,none +15.5685541,DRUGBANK:DB05188,http://purl.obolibrary.org/obo/DRUGBANK_DB05188,none +15.5685541,DRUGBANK:DB05190,http://purl.obolibrary.org/obo/DRUGBANK_DB05190,none +15.5685541,DRUGBANK:DB05205,http://purl.obolibrary.org/obo/DRUGBANK_DB05205,none +15.5685541,DRUGBANK:DB05263,http://purl.obolibrary.org/obo/DRUGBANK_DB05263,none +15.5685541,DRUGBANK:DB05361,http://purl.obolibrary.org/obo/DRUGBANK_DB05361,none +15.5685541,DRUGBANK:DB05369,http://purl.obolibrary.org/obo/DRUGBANK_DB05369,none +15.5685541,DRUGBANK:DB05390,http://purl.obolibrary.org/obo/DRUGBANK_DB05390,none +15.5685541,DRUGBANK:DB05406,http://purl.obolibrary.org/obo/DRUGBANK_DB05406,none +15.5685541,DRUGBANK:DB05445,http://purl.obolibrary.org/obo/DRUGBANK_DB05445,none +15.5685541,DRUGBANK:DB05480,http://purl.obolibrary.org/obo/DRUGBANK_DB05480,none +15.5685541,DRUGBANK:DB05512,http://purl.obolibrary.org/obo/DRUGBANK_DB05512,none +15.5685541,DRUGBANK:DB05519,http://purl.obolibrary.org/obo/DRUGBANK_DB05519,none +15.5685541,DRUGBANK:DB05585,http://purl.obolibrary.org/obo/DRUGBANK_DB05585,none +15.5685541,DRUGBANK:DB05590,http://purl.obolibrary.org/obo/DRUGBANK_DB05590,none +15.5685541,DRUGBANK:DB05667,http://purl.obolibrary.org/obo/DRUGBANK_DB05667,none +15.5685541,DRUGBANK:DB05722,http://purl.obolibrary.org/obo/DRUGBANK_DB05722,none +15.5685541,DRUGBANK:DB05732,http://purl.obolibrary.org/obo/DRUGBANK_DB05732,none +15.5685541,DRUGBANK:DB05747,http://purl.obolibrary.org/obo/DRUGBANK_DB05747,none +15.5685541,DRUGBANK:DB05772,http://purl.obolibrary.org/obo/DRUGBANK_DB05772,none +15.5685541,DRUGBANK:DB05799,http://purl.obolibrary.org/obo/DRUGBANK_DB05799,none +15.5685541,DRUGBANK:DB05882,http://purl.obolibrary.org/obo/DRUGBANK_DB05882,none +15.5685541,DRUGBANK:DB05886,http://purl.obolibrary.org/obo/DRUGBANK_DB05886,none +15.5685541,DRUGBANK:DB05896,http://purl.obolibrary.org/obo/DRUGBANK_DB05896,none +15.5685541,DRUGBANK:DB05898,http://purl.obolibrary.org/obo/DRUGBANK_DB05898,none +15.5685541,DRUGBANK:DB05993,http://purl.obolibrary.org/obo/DRUGBANK_DB05993,none +15.5685541,DRUGBANK:DB06021,http://purl.obolibrary.org/obo/DRUGBANK_DB06021,none +15.5685541,DRUGBANK:DB06063,http://purl.obolibrary.org/obo/DRUGBANK_DB06063,none +15.5685541,DRUGBANK:DB06073,http://purl.obolibrary.org/obo/DRUGBANK_DB06073,none +15.5685541,DRUGBANK:DB06116,http://purl.obolibrary.org/obo/DRUGBANK_DB06116,none +15.5685541,DRUGBANK:DB06140,http://purl.obolibrary.org/obo/DRUGBANK_DB06140,none +15.5685541,DRUGBANK:DB06181,http://purl.obolibrary.org/obo/DRUGBANK_DB06181,none +15.5685541,DRUGBANK:DB06251,http://purl.obolibrary.org/obo/DRUGBANK_DB06251,none +15.5685541,DRUGBANK:DB06297,http://purl.obolibrary.org/obo/DRUGBANK_DB06297,none +15.5685541,DRUGBANK:DB06323,http://purl.obolibrary.org/obo/DRUGBANK_DB06323,none +15.5685541,DRUGBANK:DB06342,http://purl.obolibrary.org/obo/DRUGBANK_DB06342,none +15.5685541,DRUGBANK:DB06368,http://purl.obolibrary.org/obo/DRUGBANK_DB06368,none +15.5685541,DRUGBANK:DB06492,http://purl.obolibrary.org/obo/DRUGBANK_DB06492,none +15.5685541,DRUGBANK:DB06560,http://purl.obolibrary.org/obo/DRUGBANK_DB06560,none +15.5685541,DRUGBANK:DB06609,http://purl.obolibrary.org/obo/DRUGBANK_DB06609,none +15.5685541,DRUGBANK:DB06620,http://purl.obolibrary.org/obo/DRUGBANK_DB06620,none +15.5685541,DRUGBANK:DB06622,http://purl.obolibrary.org/obo/DRUGBANK_DB06622,none +15.5685541,DRUGBANK:DB06625,http://purl.obolibrary.org/obo/DRUGBANK_DB06625,none +15.5685541,DRUGBANK:DB06793,http://purl.obolibrary.org/obo/DRUGBANK_DB06793,none +15.5685541,DRUGBANK:DB07286,http://purl.obolibrary.org/obo/DRUGBANK_DB07286,none +15.5685541,DRUGBANK:DB08037,http://purl.obolibrary.org/obo/DRUGBANK_DB08037,none +15.5685541,DRUGBANK:DB08044,http://purl.obolibrary.org/obo/DRUGBANK_DB08044,none +15.5685541,DRUGBANK:DB08414,http://purl.obolibrary.org/obo/DRUGBANK_DB08414,none +15.5685541,DRUGBANK:DB08777,http://purl.obolibrary.org/obo/DRUGBANK_DB08777,none +15.5685541,DRUGBANK:DB08835,http://purl.obolibrary.org/obo/DRUGBANK_DB08835,none +15.5685541,DRUGBANK:DB09181,http://purl.obolibrary.org/obo/DRUGBANK_DB09181,none +15.5685541,DRUGBANK:DB09207,http://purl.obolibrary.org/obo/DRUGBANK_DB09207,none +15.5685541,DRUGBANK:DB09310,http://purl.obolibrary.org/obo/DRUGBANK_DB09310,none +15.5685541,DRUGBANK:DB09370,http://purl.obolibrary.org/obo/DRUGBANK_DB09370,none +15.5685541,DRUGBANK:DB09409,http://purl.obolibrary.org/obo/DRUGBANK_DB09409,none +15.5685541,DRUGBANK:DB10381,http://purl.obolibrary.org/obo/DRUGBANK_DB10381,none +15.5685541,DRUGBANK:DB10460,http://purl.obolibrary.org/obo/DRUGBANK_DB10460,none +15.5685541,DRUGBANK:DB11124,http://purl.obolibrary.org/obo/DRUGBANK_DB11124,none +15.5685541,DRUGBANK:DB11166,http://purl.obolibrary.org/obo/DRUGBANK_DB11166,none +15.5685541,DRUGBANK:DB11568,http://purl.obolibrary.org/obo/DRUGBANK_DB11568,none +15.5685541,DRUGBANK:DB11607,http://purl.obolibrary.org/obo/DRUGBANK_DB11607,none +15.5685541,DRUGBANK:DB11721,http://purl.obolibrary.org/obo/DRUGBANK_DB11721,none +15.5685541,DRUGBANK:DB11765,http://purl.obolibrary.org/obo/DRUGBANK_DB11765,none +15.5685541,DRUGBANK:DB11804,http://purl.obolibrary.org/obo/DRUGBANK_DB11804,none +15.5685541,DRUGBANK:DB11861,http://purl.obolibrary.org/obo/DRUGBANK_DB11861,none +15.5685541,DRUGBANK:DB11903,http://purl.obolibrary.org/obo/DRUGBANK_DB11903,none +15.5685541,DRUGBANK:DB11934,http://purl.obolibrary.org/obo/DRUGBANK_DB11934,none +15.5685541,DRUGBANK:DB11984,http://purl.obolibrary.org/obo/DRUGBANK_DB11984,none +15.5685541,DRUGBANK:DB11985,http://purl.obolibrary.org/obo/DRUGBANK_DB11985,none +15.5685541,DRUGBANK:DB12036,http://purl.obolibrary.org/obo/DRUGBANK_DB12036,none +15.5685541,DRUGBANK:DB12057,http://purl.obolibrary.org/obo/DRUGBANK_DB12057,none +15.5685541,DRUGBANK:DB12136,http://purl.obolibrary.org/obo/DRUGBANK_DB12136,none +15.5685541,DRUGBANK:DB12140,http://purl.obolibrary.org/obo/DRUGBANK_DB12140,none +15.5685541,DRUGBANK:DB12165,http://purl.obolibrary.org/obo/DRUGBANK_DB12165,none +15.5685541,DRUGBANK:DB12168,http://purl.obolibrary.org/obo/DRUGBANK_DB12168,none +15.5685541,DRUGBANK:DB12266,http://purl.obolibrary.org/obo/DRUGBANK_DB12266,none +15.5685541,DRUGBANK:DB12302,http://purl.obolibrary.org/obo/DRUGBANK_DB12302,none +15.5685541,DRUGBANK:DB12331,http://purl.obolibrary.org/obo/DRUGBANK_DB12331,none +15.5685541,DRUGBANK:DB12334,http://purl.obolibrary.org/obo/DRUGBANK_DB12334,none +15.5685541,DRUGBANK:DB12336,http://purl.obolibrary.org/obo/DRUGBANK_DB12336,none +15.5685541,DRUGBANK:DB12402,http://purl.obolibrary.org/obo/DRUGBANK_DB12402,none +15.5685541,DRUGBANK:DB12513,http://purl.obolibrary.org/obo/DRUGBANK_DB12513,none +15.5685541,DRUGBANK:DB12524,http://purl.obolibrary.org/obo/DRUGBANK_DB12524,none +15.5685541,DRUGBANK:DB12548,http://purl.obolibrary.org/obo/DRUGBANK_DB12548,none +15.5685541,DRUGBANK:DB12569,http://purl.obolibrary.org/obo/DRUGBANK_DB12569,none +15.5685541,DRUGBANK:DB12623,http://purl.obolibrary.org/obo/DRUGBANK_DB12623,none +15.5685541,DRUGBANK:DB12715,http://purl.obolibrary.org/obo/DRUGBANK_DB12715,none +15.5685541,DRUGBANK:DB12717,http://purl.obolibrary.org/obo/DRUGBANK_DB12717,none +15.5685541,DRUGBANK:DB12727,http://purl.obolibrary.org/obo/DRUGBANK_DB12727,none +15.5685541,DRUGBANK:DB12756,http://purl.obolibrary.org/obo/DRUGBANK_DB12756,none +15.5685541,DRUGBANK:DB12775,http://purl.obolibrary.org/obo/DRUGBANK_DB12775,none +15.5685541,DRUGBANK:DB12795,http://purl.obolibrary.org/obo/DRUGBANK_DB12795,none +15.5685541,DRUGBANK:DB12879,http://purl.obolibrary.org/obo/DRUGBANK_DB12879,none +15.5685541,DRUGBANK:DB12914,http://purl.obolibrary.org/obo/DRUGBANK_DB12914,none +15.5685541,DRUGBANK:DB12960,http://purl.obolibrary.org/obo/DRUGBANK_DB12960,none +15.5685541,DRUGBANK:DB12999,http://purl.obolibrary.org/obo/DRUGBANK_DB12999,none +15.5685541,DRUGBANK:DB13006,http://purl.obolibrary.org/obo/DRUGBANK_DB13006,none +15.5685541,DRUGBANK:DB13023,http://purl.obolibrary.org/obo/DRUGBANK_DB13023,none +15.5685541,DRUGBANK:DB13054,http://purl.obolibrary.org/obo/DRUGBANK_DB13054,none +15.5685541,DRUGBANK:DB13095,http://purl.obolibrary.org/obo/DRUGBANK_DB13095,none +15.5685541,DRUGBANK:DB13221,http://purl.obolibrary.org/obo/DRUGBANK_DB13221,none +15.5685541,DRUGBANK:DB13429,http://purl.obolibrary.org/obo/DRUGBANK_DB13429,none +15.5685541,DRUGBANK:DB13459,http://purl.obolibrary.org/obo/DRUGBANK_DB13459,none +15.5685541,DRUGBANK:DB13490,http://purl.obolibrary.org/obo/DRUGBANK_DB13490,none +15.5685541,DRUGBANK:DB13493,http://purl.obolibrary.org/obo/DRUGBANK_DB13493,none +15.5685541,DRUGBANK:DB13573,http://purl.obolibrary.org/obo/DRUGBANK_DB13573,none +15.5685541,DRUGBANK:DB13604,http://purl.obolibrary.org/obo/DRUGBANK_DB13604,none +15.5685541,DRUGBANK:DB13611,http://purl.obolibrary.org/obo/DRUGBANK_DB13611,none +15.5685541,DRUGBANK:DB13639,http://purl.obolibrary.org/obo/DRUGBANK_DB13639,none +15.5685541,DRUGBANK:DB13796,http://purl.obolibrary.org/obo/DRUGBANK_DB13796,none +15.5685541,DRUGBANK:DB13837,http://purl.obolibrary.org/obo/DRUGBANK_DB13837,none +15.5685541,DRUGBANK:DB13840,http://purl.obolibrary.org/obo/DRUGBANK_DB13840,none +15.5685541,DRUGBANK:DB13869,http://purl.obolibrary.org/obo/DRUGBANK_DB13869,none +15.5685541,DRUGBANK:DB13914,http://purl.obolibrary.org/obo/DRUGBANK_DB13914,none +15.5685541,DRUGBANK:DB13951,http://purl.obolibrary.org/obo/DRUGBANK_DB13951,none +15.5685541,DRUGBANK:DB13983,http://purl.obolibrary.org/obo/DRUGBANK_DB13983,none +15.5685541,DRUGBANK:DB14262,http://purl.obolibrary.org/obo/DRUGBANK_DB14262,none +15.5685541,DRUGBANK:DB14333,http://purl.obolibrary.org/obo/DRUGBANK_DB14333,none +15.5685541,DRUGBANK:DB14344,http://purl.obolibrary.org/obo/DRUGBANK_DB14344,none +15.5685541,DRUGBANK:DB14581,http://purl.obolibrary.org/obo/DRUGBANK_DB14581,none +15.5685541,DRUGBANK:DB14641,http://purl.obolibrary.org/obo/DRUGBANK_DB14641,none +15.5685541,DRUGBANK:DB14654,http://purl.obolibrary.org/obo/DRUGBANK_DB14654,none +15.5685541,DRUGBANK:DB14672,http://purl.obolibrary.org/obo/DRUGBANK_DB14672,none +15.5685541,DRUGBANK:DB14715,http://purl.obolibrary.org/obo/DRUGBANK_DB14715,none +15.5685541,DRUGBANK:DB14772,http://purl.obolibrary.org/obo/DRUGBANK_DB14772,none +15.5685541,DRUGBANK:DB14785,http://purl.obolibrary.org/obo/DRUGBANK_DB14785,none +15.5685541,DRUGBANK:DB14790,http://purl.obolibrary.org/obo/DRUGBANK_DB14790,none +15.5685541,DRUGBANK:DB14803,http://purl.obolibrary.org/obo/DRUGBANK_DB14803,none +15.5685541,DRUGBANK:DB14813,http://purl.obolibrary.org/obo/DRUGBANK_DB14813,none +15.5685541,DRUGBANK:DB14818,http://purl.obolibrary.org/obo/DRUGBANK_DB14818,none +15.5685541,DRUGBANK:DB14857,http://purl.obolibrary.org/obo/DRUGBANK_DB14857,none +15.5685541,DRUGBANK:DB14878,http://purl.obolibrary.org/obo/DRUGBANK_DB14878,none +15.5685541,DRUGBANK:DB14912,http://purl.obolibrary.org/obo/DRUGBANK_DB14912,none +15.5685541,DRUGBANK:DB14929,http://purl.obolibrary.org/obo/DRUGBANK_DB14929,none +15.5685541,DRUGBANK:DB14973,http://purl.obolibrary.org/obo/DRUGBANK_DB14973,none +15.5685541,DRUGBANK:DB14977,http://purl.obolibrary.org/obo/DRUGBANK_DB14977,none +15.5685541,DRUGBANK:DB14982,http://purl.obolibrary.org/obo/DRUGBANK_DB14982,none +15.5685541,DRUGBANK:DB15003,http://purl.obolibrary.org/obo/DRUGBANK_DB15003,none +15.5685541,DRUGBANK:DB15036,http://purl.obolibrary.org/obo/DRUGBANK_DB15036,none +15.5685541,DRUGBANK:DB15057,http://purl.obolibrary.org/obo/DRUGBANK_DB15057,none +15.5685541,DRUGBANK:DB15093,http://purl.obolibrary.org/obo/DRUGBANK_DB15093,none +15.5685541,DRUGBANK:DB15097,http://purl.obolibrary.org/obo/DRUGBANK_DB15097,none +15.5685541,DRUGBANK:DB15106,http://purl.obolibrary.org/obo/DRUGBANK_DB15106,none +15.5685541,DRUGBANK:DB15112,http://purl.obolibrary.org/obo/DRUGBANK_DB15112,none +15.5685541,DRUGBANK:DB15118,http://purl.obolibrary.org/obo/DRUGBANK_DB15118,none +15.5685541,DRUGBANK:DB15160,http://purl.obolibrary.org/obo/DRUGBANK_DB15160,none +15.5685541,DRUGBANK:DB15162,http://purl.obolibrary.org/obo/DRUGBANK_DB15162,none +15.5685541,DRUGBANK:DB15183,http://purl.obolibrary.org/obo/DRUGBANK_DB15183,none +15.5685541,DRUGBANK:DB15189,http://purl.obolibrary.org/obo/DRUGBANK_DB15189,none +15.5685541,DRUGBANK:DB15203,http://purl.obolibrary.org/obo/DRUGBANK_DB15203,none +15.5685541,DRUGBANK:DB15214,http://purl.obolibrary.org/obo/DRUGBANK_DB15214,none +15.5685541,DRUGBANK:DB15226,http://purl.obolibrary.org/obo/DRUGBANK_DB15226,none +15.5685541,DRUGBANK:DB15302,http://purl.obolibrary.org/obo/DRUGBANK_DB15302,none +15.5685541,DRUGBANK:DB15303,http://purl.obolibrary.org/obo/DRUGBANK_DB15303,none +15.5685541,DRUGBANK:DB15305,http://purl.obolibrary.org/obo/DRUGBANK_DB15305,none +15.5685541,DRUGBANK:DB15325,http://purl.obolibrary.org/obo/DRUGBANK_DB15325,none +15.5685541,DRUGBANK:DB15330,http://purl.obolibrary.org/obo/DRUGBANK_DB15330,none +15.5685541,DRUGBANK:DB15372,http://purl.obolibrary.org/obo/DRUGBANK_DB15372,none +15.5685541,DRUGBANK:DB15411,http://purl.obolibrary.org/obo/DRUGBANK_DB15411,none +15.5685541,DRUGBANK:DB15442,http://purl.obolibrary.org/obo/DRUGBANK_DB15442,none +15.5685541,DRUGBANK:DB15444,http://purl.obolibrary.org/obo/DRUGBANK_DB15444,none +15.5685541,DRUGBANK:DB15455,http://purl.obolibrary.org/obo/DRUGBANK_DB15455,none +15.5685541,DRUGBANK:DB15569,http://purl.obolibrary.org/obo/DRUGBANK_DB15569,none +15.5685541,DRUGBANK:DB15578,http://purl.obolibrary.org/obo/DRUGBANK_DB15578,none +15.5685541,DRUGBANK:DB15597,http://purl.obolibrary.org/obo/DRUGBANK_DB15597,none +15.5685541,DRUGBANK:DB15610,http://purl.obolibrary.org/obo/DRUGBANK_DB15610,none +15.5685541,DRUGBANK:DB15752,http://purl.obolibrary.org/obo/DRUGBANK_DB15752,none +15.5685541,DRUGBANK:DB15877,http://purl.obolibrary.org/obo/DRUGBANK_DB15877,none +15.5685541,DRUGBANK:DB15934,http://purl.obolibrary.org/obo/DRUGBANK_DB15934,none +15.5685541,DRUGBANK:DB16037,http://purl.obolibrary.org/obo/DRUGBANK_DB16037,none +15.5685541,DRUGBANK:DB16098,http://purl.obolibrary.org/obo/DRUGBANK_DB16098,none +15.5685541,DRUGBANK:DB16109,http://purl.obolibrary.org/obo/DRUGBANK_DB16109,none +15.5685541,DRUGBANK:DB16123,http://purl.obolibrary.org/obo/DRUGBANK_DB16123,none +15.5685541,DRUGBANK:DB16160,http://purl.obolibrary.org/obo/DRUGBANK_DB16160,none +15.5685541,DRUGBANK:DB16184,http://purl.obolibrary.org/obo/DRUGBANK_DB16184,none +15.5685541,DRUGBANK:DB16196,http://purl.obolibrary.org/obo/DRUGBANK_DB16196,none +15.5685541,DRUGBANK:DB16232,http://purl.obolibrary.org/obo/DRUGBANK_DB16232,none +15.5685541,DRUGBANK:DB16307,http://purl.obolibrary.org/obo/DRUGBANK_DB16307,none +15.5685541,DRUGBANK:DB16317,http://purl.obolibrary.org/obo/DRUGBANK_DB16317,none +15.5685541,DRUGBANK:DB16343,http://purl.obolibrary.org/obo/DRUGBANK_DB16343,none +15.5685541,GO:0000082,http://purl.obolibrary.org/obo/GO_0000082,G1/S transition of mitotic cell cycle +15.5685541,GO:0000086,http://purl.obolibrary.org/obo/GO_0000086,G2/M transition of mitotic cell cycle +15.5685541,GO:0000398,http://purl.obolibrary.org/obo/GO_0000398,"mRNA splicing, via spliceosome" +15.5685541,GO:0000700,http://purl.obolibrary.org/obo/GO_0000700,mismatch base pair DNA N-glycosylase activity +15.5685541,GO:0000788,http://purl.obolibrary.org/obo/GO_0000788,none +15.5685541,GO:0000943,http://purl.obolibrary.org/obo/GO_0000943,retrotransposon nucleocapsid +15.5685541,GO:0000957,http://purl.obolibrary.org/obo/GO_0000957,mitochondrial RNA catabolic process +15.5685541,GO:0001070,http://purl.obolibrary.org/obo/GO_0001070,RNA-binding transcription regulator activity +15.5685541,GO:0001172,http://purl.obolibrary.org/obo/GO_0001172,"transcription, RNA-templated" +15.5685541,GO:0001546,http://purl.obolibrary.org/obo/GO_0001546,preantral ovarian follicle growth +15.5685541,GO:0001566,http://purl.obolibrary.org/obo/GO_0001566,non-kinase phorbol ester receptor activity +15.5685541,GO:0001569,http://purl.obolibrary.org/obo/GO_0001569,branching involved in blood vessel morphogenesis +15.5685541,GO:0001582,http://purl.obolibrary.org/obo/GO_0001582,detection of chemical stimulus involved in sensory perception of sweet taste +15.5685541,GO:0001740,http://purl.obolibrary.org/obo/GO_0001740,Barr body +15.5685541,GO:0001751,http://purl.obolibrary.org/obo/GO_0001751,compound eye photoreceptor cell differentiation +15.5685541,GO:0001960,http://purl.obolibrary.org/obo/GO_0001960,negative regulation of cytokine-mediated signaling pathway +15.5685541,GO:0002021,http://purl.obolibrary.org/obo/GO_0002021,response to dietary excess +15.5685541,GO:0002085,http://purl.obolibrary.org/obo/GO_0002085,inhibition of neuroepithelial cell differentiation +15.5685541,GO:0002126,http://purl.obolibrary.org/obo/GO_0002126,instrumental aggressive behavior +15.5685541,GO:0002174,http://purl.obolibrary.org/obo/GO_0002174,mammary stem cell proliferation +15.5685541,GO:0002249,http://purl.obolibrary.org/obo/GO_0002249,lymphocyte anergy +15.5685541,GO:0002276,http://purl.obolibrary.org/obo/GO_0002276,basophil activation involved in immune response +15.5685541,GO:0002392,http://purl.obolibrary.org/obo/GO_0002392,none +15.5685541,GO:0002395,http://purl.obolibrary.org/obo/GO_0002395,immune response in nasopharyngeal-associated lymphoid tissue +15.5685541,GO:0002448,http://purl.obolibrary.org/obo/GO_0002448,mast cell mediated immunity +15.5685541,GO:0002561,http://purl.obolibrary.org/obo/GO_0002561,basophil degranulation +15.5685541,GO:0002702,http://purl.obolibrary.org/obo/GO_0002702,positive regulation of production of molecular mediator of immune response +15.5685541,GO:0002708,http://purl.obolibrary.org/obo/GO_0002708,positive regulation of lymphocyte mediated immunity +15.5685541,GO:0002824,http://purl.obolibrary.org/obo/GO_0002824,positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains +15.5685541,GO:0002870,http://purl.obolibrary.org/obo/GO_0002870,T cell anergy +15.5685541,GO:0002887,http://purl.obolibrary.org/obo/GO_0002887,negative regulation of myeloid leukocyte mediated immunity +15.5685541,GO:0002949,http://purl.obolibrary.org/obo/GO_0002949,tRNA threonylcarbamoyladenosine modification +15.5685541,GO:0003032,http://purl.obolibrary.org/obo/GO_0003032,detection of oxygen +15.5685541,GO:0003161,http://purl.obolibrary.org/obo/GO_0003161,cardiac conduction system development +15.5685541,GO:0003163,http://purl.obolibrary.org/obo/GO_0003163,sinoatrial node development +15.5685541,GO:0003354,http://purl.obolibrary.org/obo/GO_0003354,negative regulation of cilium movement +15.5685541,GO:0003357,http://purl.obolibrary.org/obo/GO_0003357,noradrenergic neuron differentiation +15.5685541,GO:0003834,http://purl.obolibrary.org/obo/GO_0003834,"beta-carotene 15,15'-dioxygenase activity" +15.5685541,GO:0003856,http://purl.obolibrary.org/obo/GO_0003856,3-dehydroquinate synthase activity +15.5685541,GO:0003905,http://purl.obolibrary.org/obo/GO_0003905,alkylbase DNA N-glycosylase activity +15.5685541,GO:0004066,http://purl.obolibrary.org/obo/GO_0004066,asparagine synthase (glutamine-hydrolyzing) activity +15.5685541,GO:0004150,http://purl.obolibrary.org/obo/GO_0004150,dihydroneopterin aldolase activity +15.5685541,GO:0004159,http://purl.obolibrary.org/obo/GO_0004159,dihydropyrimidine dehydrogenase (NAD+) activity +15.5685541,GO:0004395,http://purl.obolibrary.org/obo/GO_0004395,hexaprenyldihydroxybenzoate methyltransferase activity +15.5685541,GO:0004424,http://purl.obolibrary.org/obo/GO_0004424,imidazoleglycerol-phosphate dehydratase activity +15.5685541,GO:0004464,http://purl.obolibrary.org/obo/GO_0004464,leukotriene-C4 synthase activity +15.5685541,GO:0004483,http://purl.obolibrary.org/obo/GO_0004483,mRNA (nucleoside-2'-O-)-methyltransferase activity +15.5685541,GO:0004574,http://purl.obolibrary.org/obo/GO_0004574,"oligo-1,6-glucosidase activity" +15.5685541,GO:0004598,http://purl.obolibrary.org/obo/GO_0004598,peptidylamidoglycolate lyase activity +15.5685541,GO:0004867,http://purl.obolibrary.org/obo/GO_0004867,serine-type endopeptidase inhibitor activity +15.5685541,GO:0005043,http://purl.obolibrary.org/obo/GO_0005043,netrin receptor activity involved in chemorepulsion +15.5685541,GO:0005049,http://purl.obolibrary.org/obo/GO_0005049,nuclear export signal receptor activity +15.5685541,GO:0005324,http://purl.obolibrary.org/obo/GO_0005324,long-chain fatty acid transporter activity +15.5685541,GO:0005436,http://purl.obolibrary.org/obo/GO_0005436,sodium:phosphate symporter activity +15.5685541,GO:0005656,http://purl.obolibrary.org/obo/GO_0005656,nuclear pre-replicative complex +15.5685541,GO:0005745,http://purl.obolibrary.org/obo/GO_0005745,m-AAA complex +15.5685541,GO:0005885,http://purl.obolibrary.org/obo/GO_0005885,Arp2/3 protein complex +15.5685541,GO:0005887,http://purl.obolibrary.org/obo/GO_0005887,integral component of plasma membrane +15.5685541,GO:0005993,http://purl.obolibrary.org/obo/GO_0005993,trehalose catabolic process +15.5685541,GO:0006011,http://purl.obolibrary.org/obo/GO_0006011,UDP-glucose metabolic process +15.5685541,GO:0006025,http://purl.obolibrary.org/obo/GO_0006025,galactosaminoglycan biosynthetic process +15.5685541,GO:0006069,http://purl.obolibrary.org/obo/GO_0006069,ethanol oxidation +15.5685541,GO:0006070,http://purl.obolibrary.org/obo/GO_0006070,octanol metabolic process +15.5685541,GO:0006145,http://purl.obolibrary.org/obo/GO_0006145,purine nucleobase catabolic process +15.5685541,GO:0006151,http://purl.obolibrary.org/obo/GO_0006151,none +15.5685541,GO:0006715,http://purl.obolibrary.org/obo/GO_0006715,farnesol biosynthetic process +15.5685541,GO:0006828,http://purl.obolibrary.org/obo/GO_0006828,manganese ion transport +15.5685541,GO:0006864,http://purl.obolibrary.org/obo/GO_0006864,pyrimidine nucleotide transport +15.5685541,GO:0007021,http://purl.obolibrary.org/obo/GO_0007021,tubulin complex assembly +15.5685541,GO:0007098,http://purl.obolibrary.org/obo/GO_0007098,centrosome cycle +15.5685541,GO:0007100,http://purl.obolibrary.org/obo/GO_0007100,mitotic centrosome separation +15.5685541,GO:0007190,http://purl.obolibrary.org/obo/GO_0007190,activation of adenylate cyclase activity +15.5685541,GO:0007194,http://purl.obolibrary.org/obo/GO_0007194,negative regulation of adenylate cyclase activity +15.5685541,GO:0007216,http://purl.obolibrary.org/obo/GO_0007216,G protein-coupled glutamate receptor signaling pathway +15.5685541,GO:0007249,http://purl.obolibrary.org/obo/GO_0007249,I-kappaB kinase/NF-kappaB signaling +15.5685541,GO:0007472,http://purl.obolibrary.org/obo/GO_0007472,wing disc morphogenesis +15.5685541,GO:0007519,http://purl.obolibrary.org/obo/GO_0007519,skeletal muscle tissue development +15.5685541,GO:0008002,http://purl.obolibrary.org/obo/GO_0008002,none +15.5685541,GO:0008177,http://purl.obolibrary.org/obo/GO_0008177,succinate dehydrogenase (ubiquinone) activity +15.5685541,GO:0008263,http://purl.obolibrary.org/obo/GO_0008263,pyrimidine-specific mismatch base pair DNA N-glycosylase activity +15.5685541,GO:0008293,http://purl.obolibrary.org/obo/GO_0008293,torso signaling pathway +15.5685541,GO:0008352,http://purl.obolibrary.org/obo/GO_0008352,katanin complex +15.5685541,GO:0008493,http://purl.obolibrary.org/obo/GO_0008493,tetracycline transmembrane transporter activity +15.5685541,GO:0008601,http://purl.obolibrary.org/obo/GO_0008601,none +15.5685541,GO:0008661,http://purl.obolibrary.org/obo/GO_0008661,1-deoxy-D-xylulose-5-phosphate synthase activity +15.5685541,GO:0008693,http://purl.obolibrary.org/obo/GO_0008693,3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase activity +15.5685541,GO:0008704,http://purl.obolibrary.org/obo/GO_0008704,5-carboxymethyl-2-hydroxymuconate delta-isomerase activity +15.5685541,GO:0008802,http://purl.obolibrary.org/obo/GO_0008802,betaine-aldehyde dehydrogenase activity +15.5685541,GO:0008819,http://purl.obolibrary.org/obo/GO_0008819,cobinamide kinase activity +15.5685541,GO:0008840,http://purl.obolibrary.org/obo/GO_0008840,4-hydroxy-tetrahydrodipicolinate synthase activity +15.5685541,GO:0008854,http://purl.obolibrary.org/obo/GO_0008854,exodeoxyribonuclease V activity +15.5685541,GO:0008869,http://purl.obolibrary.org/obo/GO_0008869,galactonate dehydratase activity +15.5685541,GO:0008902,http://purl.obolibrary.org/obo/GO_0008902,hydroxymethylpyrimidine kinase activity +15.5685541,GO:0008927,http://purl.obolibrary.org/obo/GO_0008927,mannonate dehydratase activity +15.5685541,GO:0009115,http://purl.obolibrary.org/obo/GO_0009115,xanthine catabolic process +15.5685541,GO:0009215,http://purl.obolibrary.org/obo/GO_0009215,purine deoxyribonucleoside triphosphate metabolic process +15.5685541,GO:0009317,http://purl.obolibrary.org/obo/GO_0009317,acetyl-CoA carboxylase complex +15.5685541,GO:0009326,http://purl.obolibrary.org/obo/GO_0009326,formate dehydrogenase complex +15.5685541,GO:0009450,http://purl.obolibrary.org/obo/GO_0009450,gamma-aminobutyric acid catabolic process +15.5685541,GO:0009538,http://purl.obolibrary.org/obo/GO_0009538,photosystem I reaction center +15.5685541,GO:0009784,http://purl.obolibrary.org/obo/GO_0009784,transmembrane receptor histidine kinase activity +15.5685541,GO:0009822,http://purl.obolibrary.org/obo/GO_0009822,alkaloid catabolic process +15.5685541,GO:0009863,http://purl.obolibrary.org/obo/GO_0009863,salicylic acid mediated signaling pathway +15.5685541,GO:0010050,http://purl.obolibrary.org/obo/GO_0010050,vegetative phase change +15.5685541,GO:0010054,http://purl.obolibrary.org/obo/GO_0010054,trichoblast differentiation +15.5685541,GO:0010073,http://purl.obolibrary.org/obo/GO_0010073,meristem maintenance +15.5685541,GO:0010113,http://purl.obolibrary.org/obo/GO_0010113,negative regulation of systemic acquired resistance +15.5685541,GO:0010264,http://purl.obolibrary.org/obo/GO_0010264,myo-inositol hexakisphosphate biosynthetic process +15.5685541,GO:0010357,http://purl.obolibrary.org/obo/GO_0010357,homogentisate solanesyltransferase activity +15.5685541,GO:0010420,http://purl.obolibrary.org/obo/GO_0010420,"3,4-dihydroxy-5-polyprenylbenzoic acid O-methyltransferase activity" +15.5685541,GO:0010445,http://purl.obolibrary.org/obo/GO_0010445,nuclear dicing body +15.5685541,GO:0010454,http://purl.obolibrary.org/obo/GO_0010454,negative regulation of cell fate commitment +15.5685541,GO:0010485,http://purl.obolibrary.org/obo/GO_0010485,H4 histone acetyltransferase activity +15.5685541,GO:0010713,http://purl.obolibrary.org/obo/GO_0010713,negative regulation of collagen metabolic process +15.5685541,GO:0010828,http://purl.obolibrary.org/obo/GO_0010828,positive regulation of glucose transmembrane transport +15.5685541,GO:0010923,http://purl.obolibrary.org/obo/GO_0010923,negative regulation of phosphatase activity +15.5685541,GO:0010976,http://purl.obolibrary.org/obo/GO_0010976,positive regulation of neuron projection development +15.5685541,GO:0010993,http://purl.obolibrary.org/obo/GO_0010993,none +15.5685541,GO:0014801,http://purl.obolibrary.org/obo/GO_0014801,longitudinal sarcoplasmic reticulum +15.5685541,GO:0014842,http://purl.obolibrary.org/obo/GO_0014842,regulation of skeletal muscle satellite cell proliferation +15.5685541,GO:0014849,http://purl.obolibrary.org/obo/GO_0014849,ureter smooth muscle contraction +15.5685541,GO:0014870,http://purl.obolibrary.org/obo/GO_0014870,response to muscle inactivity +15.5685541,GO:0015370,http://purl.obolibrary.org/obo/GO_0015370,solute:sodium symporter activity +15.5685541,GO:0015608,http://purl.obolibrary.org/obo/GO_0015608,carbohydrate-importing ABC transporter activity +15.5685541,GO:0015737,http://purl.obolibrary.org/obo/GO_0015737,galacturonate transmembrane transport +15.5685541,GO:0015787,http://purl.obolibrary.org/obo/GO_0015787,UDP-glucuronic acid transmembrane transport +15.5685541,GO:0015789,http://purl.obolibrary.org/obo/GO_0015789,UDP-N-acetylgalactosamine transmembrane transport +15.5685541,GO:0015790,http://purl.obolibrary.org/obo/GO_0015790,UDP-xylose transmembrane transport +15.5685541,GO:0015841,http://purl.obolibrary.org/obo/GO_0015841,chromaffin granule amine transport +15.5685541,GO:0015859,http://purl.obolibrary.org/obo/GO_0015859,intracellular nucleoside transport +15.5685541,GO:0015898,http://purl.obolibrary.org/obo/GO_0015898,amiloride transport +15.5685541,GO:0015903,http://purl.obolibrary.org/obo/GO_0015903,fluconazole transport +15.5685541,GO:0016008,http://purl.obolibrary.org/obo/GO_0016008,major mitochondrial derivative +15.5685541,GO:0016155,http://purl.obolibrary.org/obo/GO_0016155,formyltetrahydrofolate dehydrogenase activity +15.5685541,GO:0016262,http://purl.obolibrary.org/obo/GO_0016262,protein N-acetylglucosaminyltransferase activity +15.5685541,GO:0016263,http://purl.obolibrary.org/obo/GO_0016263,glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase activity +15.5685541,GO:0016534,http://purl.obolibrary.org/obo/GO_0016534,none +15.5685541,GO:0016540,http://purl.obolibrary.org/obo/GO_0016540,protein autoprocessing +15.5685541,GO:0016617,http://purl.obolibrary.org/obo/GO_0016617,4-oxoproline reductase activity +15.5685541,GO:0016992,http://purl.obolibrary.org/obo/GO_0016992,lipoate synthase activity +15.5685541,GO:0018350,http://purl.obolibrary.org/obo/GO_0018350,protein esterification +15.5685541,GO:0018535,http://purl.obolibrary.org/obo/GO_0018535,nicotine dehydrogenase activity +15.5685541,GO:0018805,http://purl.obolibrary.org/obo/GO_0018805,benzylsuccinate synthase activity +15.5685541,GO:0018835,http://purl.obolibrary.org/obo/GO_0018835,carbon phosphorus lyase activity +15.5685541,GO:0018875,http://purl.obolibrary.org/obo/GO_0018875,anaerobic benzoate metabolic process +15.5685541,GO:0018882,http://purl.obolibrary.org/obo/GO_0018882,(+)-camphor metabolic process +15.5685541,GO:0018893,http://purl.obolibrary.org/obo/GO_0018893,dibenzofuran metabolic process +15.5685541,GO:0018916,http://purl.obolibrary.org/obo/GO_0018916,nitrobenzene metabolic process +15.5685541,GO:0018967,http://purl.obolibrary.org/obo/GO_0018967,tetrachloroethylene metabolic process +15.5685541,GO:0018989,http://purl.obolibrary.org/obo/GO_0018989,apolysis +15.5685541,GO:0019057,http://purl.obolibrary.org/obo/GO_0019057,modulation by virus of host translation +15.5685541,GO:0019070,http://purl.obolibrary.org/obo/GO_0019070,viral genome maturation +15.5685541,GO:0019172,http://purl.obolibrary.org/obo/GO_0019172,glyoxalase III activity +15.5685541,GO:0019232,http://purl.obolibrary.org/obo/GO_0019232,perception of rate of movement +15.5685541,GO:0019330,http://purl.obolibrary.org/obo/GO_0019330,aldoxime metabolic process +15.5685541,GO:0019388,http://purl.obolibrary.org/obo/GO_0019388,galactose catabolic process +15.5685541,GO:0019417,http://purl.obolibrary.org/obo/GO_0019417,sulfur oxidation +15.5685541,GO:0019579,http://purl.obolibrary.org/obo/GO_0019579,aldaric acid catabolic process +15.5685541,GO:0019661,http://purl.obolibrary.org/obo/GO_0019661,glucose catabolic process to lactate via pyruvate +15.5685541,GO:0019664,http://purl.obolibrary.org/obo/GO_0019664,mixed acid fermentation +15.5685541,GO:0019670,http://purl.obolibrary.org/obo/GO_0019670,anaerobic glutamate catabolic process +15.5685541,GO:0019677,http://purl.obolibrary.org/obo/GO_0019677,NAD catabolic process +15.5685541,GO:0019782,http://purl.obolibrary.org/obo/GO_0019782,ISG15 activating enzyme activity +15.5685541,GO:0019805,http://purl.obolibrary.org/obo/GO_0019805,quinolinate biosynthetic process +15.5685541,GO:0021536,http://purl.obolibrary.org/obo/GO_0021536,diencephalon development +15.5685541,GO:0021553,http://purl.obolibrary.org/obo/GO_0021553,olfactory nerve development +15.5685541,GO:0021764,http://purl.obolibrary.org/obo/GO_0021764,amygdala development +15.5685541,GO:0021846,http://purl.obolibrary.org/obo/GO_0021846,cell proliferation in forebrain +15.5685541,GO:0021978,http://purl.obolibrary.org/obo/GO_0021978,telencephalon regionalization +15.5685541,GO:0021989,http://purl.obolibrary.org/obo/GO_0021989,olfactory cortex development +15.5685541,GO:0022622,http://purl.obolibrary.org/obo/GO_0022622,root system development +15.5685541,GO:0022848,http://purl.obolibrary.org/obo/GO_0022848,acetylcholine-gated cation-selective channel activity +15.5685541,GO:0030002,http://purl.obolibrary.org/obo/GO_0030002,cellular anion homeostasis +15.5685541,GO:0030027,http://purl.obolibrary.org/obo/GO_0030027,lamellipodium +15.5685541,GO:0030257,http://purl.obolibrary.org/obo/GO_0030257,type III protein secretion system complex +15.5685541,GO:0030412,http://purl.obolibrary.org/obo/GO_0030412,formimidoyltetrahydrofolate cyclodeaminase activity +15.5685541,GO:0030445,http://purl.obolibrary.org/obo/GO_0030445,yeast-form cell wall +15.5685541,GO:0030540,http://purl.obolibrary.org/obo/GO_0030540,female genitalia development +15.5685541,GO:0030573,http://purl.obolibrary.org/obo/GO_0030573,bile acid catabolic process +15.5685541,GO:0030678,http://purl.obolibrary.org/obo/GO_0030678,mitochondrial ribonuclease P complex +15.5685541,GO:0030747,http://purl.obolibrary.org/obo/GO_0030747,indolepyruvate C-methyltransferase activity +15.5685541,GO:0030803,http://purl.obolibrary.org/obo/GO_0030803,none +15.5685541,GO:0030818,http://purl.obolibrary.org/obo/GO_0030818,none +15.5685541,GO:0030848,http://purl.obolibrary.org/obo/GO_0030848,threo-3-hydroxyaspartate ammonia-lyase activity +15.5685541,GO:0030906,http://purl.obolibrary.org/obo/GO_0030906,"retromer, cargo-selective complex" +15.5685541,GO:0031135,http://purl.obolibrary.org/obo/GO_0031135,negative regulation of conjugation +15.5685541,GO:0031148,http://purl.obolibrary.org/obo/GO_0031148,DIF-1 biosynthetic process +15.5685541,GO:0031221,http://purl.obolibrary.org/obo/GO_0031221,arabinan metabolic process +15.5685541,GO:0031266,http://purl.obolibrary.org/obo/GO_0031266,TRAIL death-inducing signaling complex +15.5685541,GO:0031280,http://purl.obolibrary.org/obo/GO_0031280,negative regulation of cyclase activity +15.5685541,GO:0031421,http://purl.obolibrary.org/obo/GO_0031421,invertasome +15.5685541,GO:0031476,http://purl.obolibrary.org/obo/GO_0031476,myosin VI complex +15.5685541,GO:0031512,http://purl.obolibrary.org/obo/GO_0031512,none +15.5685541,GO:0031581,http://purl.obolibrary.org/obo/GO_0031581,hemidesmosome assembly +15.5685541,GO:0031648,http://purl.obolibrary.org/obo/GO_0031648,protein destabilization +15.5685541,GO:0032231,http://purl.obolibrary.org/obo/GO_0032231,regulation of actin filament bundle assembly +15.5685541,GO:0032249,http://purl.obolibrary.org/obo/GO_0032249,regulation of adenosine transport +15.5685541,GO:0032372,http://purl.obolibrary.org/obo/GO_0032372,negative regulation of sterol transport +15.5685541,GO:0032375,http://purl.obolibrary.org/obo/GO_0032375,negative regulation of cholesterol transport +15.5685541,GO:0032388,http://purl.obolibrary.org/obo/GO_0032388,positive regulation of intracellular transport +15.5685541,GO:0032457,http://purl.obolibrary.org/obo/GO_0032457,fast endocytic recycling +15.5685541,GO:0032523,http://purl.obolibrary.org/obo/GO_0032523,silicon efflux transmembrane transporter activity +15.5685541,GO:0032536,http://purl.obolibrary.org/obo/GO_0032536,regulation of cell projection size +15.5685541,GO:0032638,http://purl.obolibrary.org/obo/GO_0032638,interleukin-9 production +15.5685541,GO:0032678,http://purl.obolibrary.org/obo/GO_0032678,regulation of interleukin-9 production +15.5685541,GO:0032692,http://purl.obolibrary.org/obo/GO_0032692,negative regulation of interleukin-1 production +15.5685541,GO:0032713,http://purl.obolibrary.org/obo/GO_0032713,negative regulation of interleukin-4 production +15.5685541,GO:0032755,http://purl.obolibrary.org/obo/GO_0032755,positive regulation of interleukin-6 production +15.5685541,GO:0032757,http://purl.obolibrary.org/obo/GO_0032757,positive regulation of interleukin-8 production +15.5685541,GO:0032846,http://purl.obolibrary.org/obo/GO_0032846,none +15.5685541,GO:0032891,http://purl.obolibrary.org/obo/GO_0032891,negative regulation of organic acid transport +15.5685541,GO:0032897,http://purl.obolibrary.org/obo/GO_0032897,negative regulation of viral transcription +15.5685541,GO:0032928,http://purl.obolibrary.org/obo/GO_0032928,regulation of superoxide anion generation +15.5685541,GO:0032966,http://purl.obolibrary.org/obo/GO_0032966,negative regulation of collagen biosynthetic process +15.5685541,GO:0033007,http://purl.obolibrary.org/obo/GO_0033007,negative regulation of mast cell activation involved in immune response +15.5685541,GO:0033096,http://purl.obolibrary.org/obo/GO_0033096,amyloplast envelope +15.5685541,GO:0033112,http://purl.obolibrary.org/obo/GO_0033112,cyanelle envelope +15.5685541,GO:0033127,http://purl.obolibrary.org/obo/GO_0033127,regulation of histone phosphorylation +15.5685541,GO:0033172,http://purl.obolibrary.org/obo/GO_0033172,gas vesicle shell +15.5685541,GO:0033255,http://purl.obolibrary.org/obo/GO_0033255,SAS acetyltransferase complex +15.5685541,GO:0033269,http://purl.obolibrary.org/obo/GO_0033269,internode region of axon +15.5685541,GO:0033314,http://purl.obolibrary.org/obo/GO_0033314,mitotic DNA replication checkpoint signaling +15.5685541,GO:0033400,http://purl.obolibrary.org/obo/GO_0033400,trans-zeatin metabolic process +15.5685541,GO:0033528,http://purl.obolibrary.org/obo/GO_0033528,S-methylmethionine cycle +15.5685541,GO:0033532,http://purl.obolibrary.org/obo/GO_0033532,stachyose biosynthetic process +15.5685541,GO:0033611,http://purl.obolibrary.org/obo/GO_0033611,oxalate catabolic process +15.5685541,GO:0033631,http://purl.obolibrary.org/obo/GO_0033631,cell-cell adhesion mediated by integrin +15.5685541,GO:0033718,http://purl.obolibrary.org/obo/GO_0033718,pyranose dehydrogenase (acceptor) activity +15.5685541,GO:0033763,http://purl.obolibrary.org/obo/GO_0033763,proline 3-hydroxylase activity +15.5685541,GO:0033770,http://purl.obolibrary.org/obo/GO_0033770,2-hydroxyisoflavanone synthase activity +15.5685541,GO:0033777,http://purl.obolibrary.org/obo/GO_0033777,lithocholate 6beta-hydroxylase activity +15.5685541,GO:0033783,http://purl.obolibrary.org/obo/GO_0033783,25-hydroxycholesterol 7alpha-hydroxylase activity +15.5685541,GO:0033785,http://purl.obolibrary.org/obo/GO_0033785,heptose 7-phosphate kinase activity +15.5685541,GO:0033795,http://purl.obolibrary.org/obo/GO_0033795,betaine reductase activity +15.5685541,GO:0033800,http://purl.obolibrary.org/obo/GO_0033800,isoflavone 7-O-methyltransferase activity +15.5685541,GO:0033849,http://purl.obolibrary.org/obo/GO_0033849,chrysanthemyl diphosphate synthase activity +15.5685541,GO:0033940,http://purl.obolibrary.org/obo/GO_0033940,"glucuronoarabinoxylan endo-1,4-beta-xylanase activity" +15.5685541,GO:0033961,http://purl.obolibrary.org/obo/GO_0033961,cis-stilbene-oxide hydrolase activity +15.5685541,GO:0034006,http://purl.obolibrary.org/obo/GO_0034006,"amorpha-4,11-diene synthase activity" +15.5685541,GO:0034012,http://purl.obolibrary.org/obo/GO_0034012,FAD-AMP lyase (cyclizing) activity +15.5685541,GO:0034063,http://purl.obolibrary.org/obo/GO_0034063,stress granule assembly +15.5685541,GO:0034143,http://purl.obolibrary.org/obo/GO_0034143,regulation of toll-like receptor 4 signaling pathway +15.5685541,GO:0034198,http://purl.obolibrary.org/obo/GO_0034198,cellular response to amino acid starvation +15.5685541,GO:0034258,http://purl.obolibrary.org/obo/GO_0034258,nicotinamide riboside transport +15.5685541,GO:0034375,http://purl.obolibrary.org/obo/GO_0034375,high-density lipoprotein particle remodeling +15.5685541,GO:0034378,http://purl.obolibrary.org/obo/GO_0034378,chylomicron assembly +15.5685541,GO:0034421,http://purl.obolibrary.org/obo/GO_0034421,post-translational protein acetylation +15.5685541,GO:0034468,http://purl.obolibrary.org/obo/GO_0034468,glycosome lumen +15.5685541,GO:0034505,http://purl.obolibrary.org/obo/GO_0034505,tooth mineralization +15.5685541,GO:0034587,http://purl.obolibrary.org/obo/GO_0034587,piRNA metabolic process +15.5685541,GO:0034752,http://purl.obolibrary.org/obo/GO_0034752,cytosolic aryl hydrocarbon receptor complex +15.5685541,GO:0035003,http://purl.obolibrary.org/obo/GO_0035003,subapical complex +15.5685541,GO:0035248,http://purl.obolibrary.org/obo/GO_0035248,"alpha-1,4-N-acetylgalactosaminyltransferase activity" +15.5685541,GO:0035308,http://purl.obolibrary.org/obo/GO_0035308,negative regulation of protein dephosphorylation +15.5685541,GO:0035331,http://purl.obolibrary.org/obo/GO_0035331,negative regulation of hippo signaling +15.5685541,GO:0035358,http://purl.obolibrary.org/obo/GO_0035358,regulation of peroxisome proliferator activated receptor signaling pathway +15.5685541,GO:0035426,http://purl.obolibrary.org/obo/GO_0035426,extracellular matrix-cell signaling +15.5685541,GO:0035517,http://purl.obolibrary.org/obo/GO_0035517,PR-DUB complex +15.5685541,GO:0035605,http://purl.obolibrary.org/obo/GO_0035605,peptidyl-cysteine S-nitrosylase activity +15.5685541,GO:0035660,http://purl.obolibrary.org/obo/GO_0035660,MyD88-dependent toll-like receptor 4 signaling pathway +15.5685541,GO:0035667,http://purl.obolibrary.org/obo/GO_0035667,TRIF-dependent toll-like receptor 4 signaling pathway +15.5685541,GO:0035707,http://purl.obolibrary.org/obo/GO_0035707,T-helper 2 cell chemotaxis +15.5685541,GO:0035944,http://purl.obolibrary.org/obo/GO_0035944,perforin production +15.5685541,GO:0036068,http://purl.obolibrary.org/obo/GO_0036068,light-independent chlorophyll biosynthetic process +15.5685541,GO:0036166,http://purl.obolibrary.org/obo/GO_0036166,phenotypic switching +15.5685541,GO:0036281,http://purl.obolibrary.org/obo/GO_0036281,none +15.5685541,GO:0036299,http://purl.obolibrary.org/obo/GO_0036299,non-recombinational interstrand cross-link repair +15.5685541,GO:0036303,http://purl.obolibrary.org/obo/GO_0036303,lymph vessel morphogenesis +15.5685541,GO:0036319,http://purl.obolibrary.org/obo/GO_0036319,mating-type M-factor pheromone receptor activity +15.5685541,GO:0036505,http://purl.obolibrary.org/obo/GO_0036505,prosaposin receptor activity +15.5685541,GO:0038163,http://purl.obolibrary.org/obo/GO_0038163,thrombopoietin-mediated signaling pathway +15.5685541,GO:0038165,http://purl.obolibrary.org/obo/GO_0038165,oncostatin-M-mediated signaling pathway +15.5685541,GO:0038174,http://purl.obolibrary.org/obo/GO_0038174,interleukin-17A receptor activity +15.5685541,GO:0039604,http://purl.obolibrary.org/obo/GO_0039604,suppression by virus of host translation +15.5685541,GO:0039656,http://purl.obolibrary.org/obo/GO_0039656,modulation by virus of host gene expression +15.5685541,GO:0039657,http://purl.obolibrary.org/obo/GO_0039657,suppression by virus of host gene expression +15.5685541,GO:0040028,http://purl.obolibrary.org/obo/GO_0040028,regulation of vulval development +15.5685541,GO:0042128,http://purl.obolibrary.org/obo/GO_0042128,nitrate assimilation +15.5685541,GO:0042182,http://purl.obolibrary.org/obo/GO_0042182,ketone catabolic process +15.5685541,GO:0042193,http://purl.obolibrary.org/obo/GO_0042193,methylmercury catabolic process +15.5685541,GO:0042228,http://purl.obolibrary.org/obo/GO_0042228,none +15.5685541,GO:0042650,http://purl.obolibrary.org/obo/GO_0042650,prothylakoid membrane +15.5685541,GO:0042760,http://purl.obolibrary.org/obo/GO_0042760,very long-chain fatty acid catabolic process +15.5685541,GO:0042852,http://purl.obolibrary.org/obo/GO_0042852,L-alanine biosynthetic process +15.5685541,GO:0042855,http://purl.obolibrary.org/obo/GO_0042855,eugenol biosynthetic process +15.5685541,GO:0042869,http://purl.obolibrary.org/obo/GO_0042869,aldarate transmembrane transport +15.5685541,GO:0042892,http://purl.obolibrary.org/obo/GO_0042892,chloramphenicol transmembrane transport +15.5685541,GO:0043036,http://purl.obolibrary.org/obo/GO_0043036,starch grain +15.5685541,GO:0043095,http://purl.obolibrary.org/obo/GO_0043095,regulation of GTP cyclohydrolase I activity +15.5685541,GO:0043113,http://purl.obolibrary.org/obo/GO_0043113,receptor clustering +15.5685541,GO:0043122,http://purl.obolibrary.org/obo/GO_0043122,regulation of I-kappaB kinase/NF-kappaB signaling +15.5685541,GO:0043141,http://purl.obolibrary.org/obo/GO_0043141,none +15.5685541,GO:0043180,http://purl.obolibrary.org/obo/GO_0043180,rhythmic inhibition +15.5685541,GO:0043301,http://purl.obolibrary.org/obo/GO_0043301,negative regulation of leukocyte degranulation +15.5685541,GO:0043305,http://purl.obolibrary.org/obo/GO_0043305,negative regulation of mast cell degranulation +15.5685541,GO:0043453,http://purl.obolibrary.org/obo/GO_0043453,alkyne biosynthetic process +15.5685541,GO:0043525,http://purl.obolibrary.org/obo/GO_0043525,positive regulation of neuron apoptotic process +15.5685541,GO:0043558,http://purl.obolibrary.org/obo/GO_0043558,regulation of translational initiation in response to stress +15.5685541,GO:0043798,http://purl.obolibrary.org/obo/GO_0043798,glycerate 2-kinase activity +15.5685541,GO:0043825,http://purl.obolibrary.org/obo/GO_0043825,succinylornithine transaminase activity +15.5685541,GO:0043935,http://purl.obolibrary.org/obo/GO_0043935,sexual sporulation resulting in formation of a cellular spore +15.5685541,GO:0043938,http://purl.obolibrary.org/obo/GO_0043938,positive regulation of sporulation +15.5685541,GO:0044027,http://purl.obolibrary.org/obo/GO_0044027,hypermethylation of CpG island +15.5685541,GO:0044073,http://purl.obolibrary.org/obo/GO_0044073,modulation by symbiont of host translation +15.5685541,GO:0044090,http://purl.obolibrary.org/obo/GO_0044090,positive regulation of vacuole organization +15.5685541,GO:0044095,http://purl.obolibrary.org/obo/GO_0044095,host cell nucleoplasm +15.5685541,GO:0044177,http://purl.obolibrary.org/obo/GO_0044177,host cell Golgi apparatus +15.5685541,GO:0044196,http://purl.obolibrary.org/obo/GO_0044196,host cell nucleolus +15.5685541,GO:0044224,http://purl.obolibrary.org/obo/GO_0044224,juxtaparanode region of axon +15.5685541,GO:0044252,http://purl.obolibrary.org/obo/GO_0044252,none +15.5685541,GO:0044261,http://purl.obolibrary.org/obo/GO_0044261,none +15.5685541,GO:0044322,http://purl.obolibrary.org/obo/GO_0044322,endoplasmic reticulum quality control compartment +15.5685541,GO:0044327,http://purl.obolibrary.org/obo/GO_0044327,dendritic spine head +15.5685541,GO:0044369,http://purl.obolibrary.org/obo/GO_0044369,none +15.5685541,GO:0044371,http://purl.obolibrary.org/obo/GO_0044371,none +15.5685541,GO:0044593,http://purl.obolibrary.org/obo/GO_0044593,iron-sulfur-molybdenum cofactor assembly +15.5685541,GO:0044666,http://purl.obolibrary.org/obo/GO_0044666,MLL3/4 complex +15.5685541,GO:0044684,http://purl.obolibrary.org/obo/GO_0044684,dihydromethanopterin reductase activity +15.5685541,GO:0044753,http://purl.obolibrary.org/obo/GO_0044753,amphisome +15.5685541,GO:0044771,http://purl.obolibrary.org/obo/GO_0044771,meiotic cell cycle phase transition +15.5685541,GO:0044784,http://purl.obolibrary.org/obo/GO_0044784,metaphase/anaphase transition of cell cycle +15.5685541,GO:0044818,http://purl.obolibrary.org/obo/GO_0044818,mitotic G2/M transition checkpoint +15.5685541,GO:0045283,http://purl.obolibrary.org/obo/GO_0045283,fumarate reductase complex +15.5685541,GO:0045300,http://purl.obolibrary.org/obo/GO_0045300,acyl-[acyl-carrier-protein] desaturase activity +15.5685541,GO:0045341,http://purl.obolibrary.org/obo/GO_0045341,MHC class I biosynthetic process +15.5685541,GO:0045408,http://purl.obolibrary.org/obo/GO_0045408,none +15.5685541,GO:0045621,http://purl.obolibrary.org/obo/GO_0045621,positive regulation of lymphocyte differentiation +15.5685541,GO:0045658,http://purl.obolibrary.org/obo/GO_0045658,regulation of neutrophil differentiation +15.5685541,GO:0045729,http://purl.obolibrary.org/obo/GO_0045729,respiratory burst at fertilization +15.5685541,GO:0045736,http://purl.obolibrary.org/obo/GO_0045736,negative regulation of cyclin-dependent protein serine/threonine kinase activity +15.5685541,GO:0045747,http://purl.obolibrary.org/obo/GO_0045747,positive regulation of Notch signaling pathway +15.5685541,GO:0045776,http://purl.obolibrary.org/obo/GO_0045776,negative regulation of blood pressure +15.5685541,GO:0045827,http://purl.obolibrary.org/obo/GO_0045827,negative regulation of isoprenoid metabolic process +15.5685541,GO:0045909,http://purl.obolibrary.org/obo/GO_0045909,none +15.5685541,GO:0045948,http://purl.obolibrary.org/obo/GO_0045948,positive regulation of translational initiation +15.5685541,GO:0046043,http://purl.obolibrary.org/obo/GO_0046043,TDP metabolic process +15.5685541,GO:0046080,http://purl.obolibrary.org/obo/GO_0046080,dUTP metabolic process +15.5685541,GO:0046185,http://purl.obolibrary.org/obo/GO_0046185,aldehyde catabolic process +15.5685541,GO:0046250,http://purl.obolibrary.org/obo/GO_0046250,limonene biosynthetic process +15.5685541,GO:0046350,http://purl.obolibrary.org/obo/GO_0046350,galactosaminoglycan metabolic process +15.5685541,GO:0046399,http://purl.obolibrary.org/obo/GO_0046399,glucuronate biosynthetic process +15.5685541,GO:0046413,http://purl.obolibrary.org/obo/GO_0046413,organomercury catabolic process +15.5685541,GO:0046458,http://purl.obolibrary.org/obo/GO_0046458,hexadecanal metabolic process +15.5685541,GO:0046478,http://purl.obolibrary.org/obo/GO_0046478,lactosylceramide metabolic process +15.5685541,GO:0046535,http://purl.obolibrary.org/obo/GO_0046535,detection of chemical stimulus involved in sensory perception of umami taste +15.5685541,GO:0046899,http://purl.obolibrary.org/obo/GO_0046899,nucleoside triphosphate adenylate kinase activity +15.5685541,GO:0047015,http://purl.obolibrary.org/obo/GO_0047015,3-hydroxy-2-methylbutyryl-CoA dehydrogenase activity +15.5685541,GO:0047028,http://purl.obolibrary.org/obo/GO_0047028,6-pyruvoyltetrahydropterin 2'-reductase activity +15.5685541,GO:0047082,http://purl.obolibrary.org/obo/GO_0047082,"3,9-dihydroxypterocarpan 6a-monooxygenase activity" +15.5685541,GO:0047092,http://purl.obolibrary.org/obo/GO_0047092,27-hydroxycholesterol 7-alpha-monooxygenase activity +15.5685541,GO:0047149,http://purl.obolibrary.org/obo/GO_0047149,thetin-homocysteine S-methyltransferase activity +15.5685541,GO:0047209,http://purl.obolibrary.org/obo/GO_0047209,coniferyl-alcohol glucosyltransferase activity +15.5685541,GO:0047215,http://purl.obolibrary.org/obo/GO_0047215,indole-3-acetate beta-glucosyltransferase activity +15.5685541,GO:0047222,http://purl.obolibrary.org/obo/GO_0047222,mannotetraose 2-alpha-N-acetylglucosaminyltransferase activity +15.5685541,GO:0047276,http://purl.obolibrary.org/obo/GO_0047276,N-acetyllactosaminide 3-alpha-galactosyltransferase activity +15.5685541,GO:0047309,http://purl.obolibrary.org/obo/GO_0047309,dihydroxyphenylalanine transaminase activity +15.5685541,GO:0047316,http://purl.obolibrary.org/obo/GO_0047316,glutamine-phenylpyruvate transaminase activity +15.5685541,GO:0047364,http://purl.obolibrary.org/obo/GO_0047364,desulfoglucosinolate sulfotransferase activity +15.5685541,GO:0047392,http://purl.obolibrary.org/obo/GO_0047392,CMP-N-acylneuraminate phosphodiesterase activity +15.5685541,GO:0047396,http://purl.obolibrary.org/obo/GO_0047396,glycosylphosphatidylinositol diacylglycerol-lyase activity +15.5685541,GO:0047421,http://purl.obolibrary.org/obo/GO_0047421,N-acyl-D-glutamate deacylase activity +15.5685541,GO:0047443,http://purl.obolibrary.org/obo/GO_0047443,4-hydroxy-4-methyl-2-oxoglutarate aldolase activity +15.5685541,GO:0047510,http://purl.obolibrary.org/obo/GO_0047510,(S)-2-methylmalate dehydratase activity +15.5685541,GO:0047542,http://purl.obolibrary.org/obo/GO_0047542,2-furoyl-CoA dehydrogenase activity +15.5685541,GO:0047611,http://purl.obolibrary.org/obo/GO_0047611,acetylspermidine deacetylase activity +15.5685541,GO:0047682,http://purl.obolibrary.org/obo/GO_0047682,aryl-alcohol oxidase activity +15.5685541,GO:0047693,http://purl.obolibrary.org/obo/GO_0047693,ATP diphosphatase activity +15.5685541,GO:0047723,http://purl.obolibrary.org/obo/GO_0047723,inosinate nucleosidase activity +15.5685541,GO:0047724,http://purl.obolibrary.org/obo/GO_0047724,inosine nucleosidase activity +15.5685541,GO:0047749,http://purl.obolibrary.org/obo/GO_0047749,cholestanetriol 26-monooxygenase activity +15.5685541,GO:0047753,http://purl.obolibrary.org/obo/GO_0047753,choline-sulfatase activity +15.5685541,GO:0047778,http://purl.obolibrary.org/obo/GO_0047778,[citrate-(pro-3S)-lyase] thiolesterase activity +15.5685541,GO:0047784,http://purl.obolibrary.org/obo/GO_0047784,cortisol O-acetyltransferase activity +15.5685541,GO:0047812,http://purl.obolibrary.org/obo/GO_0047812,D-amino-acid N-acetyltransferase activity +15.5685541,GO:0047827,http://purl.obolibrary.org/obo/GO_0047827,D-lysopine dehydrogenase activity +15.5685541,GO:0047838,http://purl.obolibrary.org/obo/GO_0047838,D-xylose 1-dehydrogenase (NAD) activity +15.5685541,GO:0047841,http://purl.obolibrary.org/obo/GO_0047841,dehydrogluconokinase activity +15.5685541,GO:0047878,http://purl.obolibrary.org/obo/GO_0047878,erythritol kinase activity +15.5685541,GO:0047919,http://purl.obolibrary.org/obo/GO_0047919,GDP-mannose 6-dehydrogenase activity +15.5685541,GO:0047929,http://purl.obolibrary.org/obo/GO_0047929,gluconate dehydratase activity +15.5685541,GO:0047932,http://purl.obolibrary.org/obo/GO_0047932,glucosamine N-acetyltransferase activity +15.5685541,GO:0047938,http://purl.obolibrary.org/obo/GO_0047938,glucose-6-phosphate 1-epimerase activity +15.5685541,GO:0047941,http://purl.obolibrary.org/obo/GO_0047941,glucuronolactone reductase activity +15.5685541,GO:0047977,http://purl.obolibrary.org/obo/GO_0047977,hepoxilin-epoxide hydrolase activity +15.5685541,GO:0048033,http://purl.obolibrary.org/obo/GO_0048033,heme O metabolic process +15.5685541,GO:0048034,http://purl.obolibrary.org/obo/GO_0048034,heme O biosynthetic process +15.5685541,GO:0048048,http://purl.obolibrary.org/obo/GO_0048048,embryonic eye morphogenesis +15.5685541,GO:0048061,http://purl.obolibrary.org/obo/GO_0048061,positive gravitaxis +15.5685541,GO:0048251,http://purl.obolibrary.org/obo/GO_0048251,elastic fiber assembly +15.5685541,GO:0048281,http://purl.obolibrary.org/obo/GO_0048281,inflorescence morphogenesis +15.5685541,GO:0048505,http://purl.obolibrary.org/obo/GO_0048505,regulation of timing of cell differentiation +15.5685541,GO:0048556,http://purl.obolibrary.org/obo/GO_0048556,microsporocyte nucleus +15.5685541,GO:0048654,http://purl.obolibrary.org/obo/GO_0048654,anther morphogenesis +15.5685541,GO:0048752,http://purl.obolibrary.org/obo/GO_0048752,semicircular canal morphogenesis +15.5685541,GO:0048845,http://purl.obolibrary.org/obo/GO_0048845,venous blood vessel morphogenesis +15.5685541,GO:0050101,http://purl.obolibrary.org/obo/GO_0050101,mimosinase activity +15.5685541,GO:0050190,http://purl.obolibrary.org/obo/GO_0050190,phosphoglucokinase activity +15.5685541,GO:0050277,http://purl.obolibrary.org/obo/GO_0050277,sedoheptulokinase activity +15.5685541,GO:0050292,http://purl.obolibrary.org/obo/GO_0050292,steroid 9-alpha-monooxygenase activity +15.5685541,GO:0050339,http://purl.obolibrary.org/obo/GO_0050339,thymidine-triphosphatase activity +15.5685541,GO:0050364,http://purl.obolibrary.org/obo/GO_0050364,tryptophan dimethylallyltransferase activity +15.5685541,GO:0050387,http://purl.obolibrary.org/obo/GO_0050387,urethanase activity +15.5685541,GO:0050400,http://purl.obolibrary.org/obo/GO_0050400,xylitol kinase activity +15.5685541,GO:0050408,http://purl.obolibrary.org/obo/GO_0050408,[pyruvate kinase]-phosphatase activity +15.5685541,GO:0050412,http://purl.obolibrary.org/obo/GO_0050412,cinnamate beta-D-glucosyltransferase activity +15.5685541,GO:0050415,http://purl.obolibrary.org/obo/GO_0050415,formimidoylglutamase activity +15.5685541,GO:0050444,http://purl.obolibrary.org/obo/GO_0050444,none +15.5685541,GO:0050480,http://purl.obolibrary.org/obo/GO_0050480,imidazolonepropionase activity +15.5685541,GO:0050483,http://purl.obolibrary.org/obo/GO_0050483,IMP 5'-nucleotidase activity +15.5685541,GO:0050538,http://purl.obolibrary.org/obo/GO_0050538,N-carbamoyl-L-amino-acid hydrolase activity +15.5685541,GO:0050799,http://purl.obolibrary.org/obo/GO_0050799,cocaine biosynthetic process +15.5685541,GO:0050856,http://purl.obolibrary.org/obo/GO_0050856,regulation of T cell receptor signaling pathway +15.5685541,GO:0050858,http://purl.obolibrary.org/obo/GO_0050858,negative regulation of antigen receptor-mediated signaling pathway +15.5685541,GO:0051116,http://purl.obolibrary.org/obo/GO_0051116,cobaltochelatase activity +15.5685541,GO:0051191,http://purl.obolibrary.org/obo/GO_0051191,prosthetic group biosynthetic process +15.5685541,GO:0051350,http://purl.obolibrary.org/obo/GO_0051350,negative regulation of lyase activity +15.5685541,GO:0051488,http://purl.obolibrary.org/obo/GO_0051488,none +15.5685541,GO:0051553,http://purl.obolibrary.org/obo/GO_0051553,flavone biosynthetic process +15.5685541,GO:0051575,http://purl.obolibrary.org/obo/GO_0051575,5'-deoxyribose-5-phosphate lyase activity +15.5685541,GO:0051616,http://purl.obolibrary.org/obo/GO_0051616,regulation of histamine uptake +15.5685541,GO:0051617,http://purl.obolibrary.org/obo/GO_0051617,negative regulation of histamine uptake +15.5685541,GO:0051619,http://purl.obolibrary.org/obo/GO_0051619,inhibition of histamine uptake +15.5685541,GO:0051741,http://purl.obolibrary.org/obo/GO_0051741,"2-methyl-6-phytyl-1,4-benzoquinone methyltransferase activity" +15.5685541,GO:0051742,http://purl.obolibrary.org/obo/GO_0051742,"2-methyl-6-solanyl-1,4-benzoquinone methyltransferase activity" +15.5685541,GO:0051911,http://purl.obolibrary.org/obo/GO_0051911,Methanosarcina-phenazine hydrogenase activity +15.5685541,GO:0051928,http://purl.obolibrary.org/obo/GO_0051928,positive regulation of calcium ion transport +15.5685541,GO:0051941,http://purl.obolibrary.org/obo/GO_0051941,regulation of amino acid uptake involved in synaptic transmission +15.5685541,GO:0051956,http://purl.obolibrary.org/obo/GO_0051956,negative regulation of amino acid transport +15.5685541,GO:0051978,http://purl.obolibrary.org/obo/GO_0051978,lysophospholipid:sodium symporter activity +15.5685541,GO:0052324,http://purl.obolibrary.org/obo/GO_0052324,plant-type cell wall cellulose biosynthetic process +15.5685541,GO:0052573,http://purl.obolibrary.org/obo/GO_0052573,UDP-D-galactose metabolic process +15.5685541,GO:0052673,http://purl.obolibrary.org/obo/GO_0052673,prenol kinase activity +15.5685541,GO:0052746,http://purl.obolibrary.org/obo/GO_0052746,inositol phosphorylation +15.5685541,GO:0055013,http://purl.obolibrary.org/obo/GO_0055013,cardiac muscle cell development +15.5685541,GO:0060078,http://purl.obolibrary.org/obo/GO_0060078,regulation of postsynaptic membrane potential +15.5685541,GO:0060079,http://purl.obolibrary.org/obo/GO_0060079,excitatory postsynaptic potential +15.5685541,GO:0060312,http://purl.obolibrary.org/obo/GO_0060312,regulation of blood vessel remodeling +15.5685541,GO:0060352,http://purl.obolibrary.org/obo/GO_0060352,cell adhesion molecule production +15.5685541,GO:0060387,http://purl.obolibrary.org/obo/GO_0060387,fertilization envelope +15.5685541,GO:0060411,http://purl.obolibrary.org/obo/GO_0060411,cardiac septum morphogenesis +15.5685541,GO:0060420,http://purl.obolibrary.org/obo/GO_0060420,regulation of heart growth +15.5685541,GO:0060484,http://purl.obolibrary.org/obo/GO_0060484,lung-associated mesenchyme development +15.5685541,GO:0060576,http://purl.obolibrary.org/obo/GO_0060576,intestinal epithelial cell development +15.5685541,GO:0060684,http://purl.obolibrary.org/obo/GO_0060684,epithelial-mesenchymal cell signaling +15.5685541,GO:0060749,http://purl.obolibrary.org/obo/GO_0060749,mammary gland alveolus development +15.5685541,GO:0060761,http://purl.obolibrary.org/obo/GO_0060761,negative regulation of response to cytokine stimulus +15.5685541,GO:0060777,http://purl.obolibrary.org/obo/GO_0060777,compound leaf morphogenesis +15.5685541,GO:0061009,http://purl.obolibrary.org/obo/GO_0061009,common bile duct development +15.5685541,GO:0061032,http://purl.obolibrary.org/obo/GO_0061032,visceral serous pericardium development +15.5685541,GO:0061560,http://purl.obolibrary.org/obo/GO_0061560,cranial ganglion formation +15.5685541,GO:0061568,http://purl.obolibrary.org/obo/GO_0061568,GDP phosphorylation +15.5685541,GO:0061627,http://purl.obolibrary.org/obo/GO_0061627,S-methylmethionine-homocysteine S-methyltransferase activity +15.5685541,GO:0061657,http://purl.obolibrary.org/obo/GO_0061657,UFM1 conjugating enzyme activity +15.5685541,GO:0061670,http://purl.obolibrary.org/obo/GO_0061670,evoked neurotransmitter secretion +15.5685541,GO:0070164,http://purl.obolibrary.org/obo/GO_0070164,negative regulation of adiponectin secretion +15.5685541,GO:0070170,http://purl.obolibrary.org/obo/GO_0070170,regulation of tooth mineralization +15.5685541,GO:0070372,http://purl.obolibrary.org/obo/GO_0070372,regulation of ERK1 and ERK2 cascade +15.5685541,GO:0070437,http://purl.obolibrary.org/obo/GO_0070437,Grb2-Shc complex +15.5685541,GO:0070445,http://purl.obolibrary.org/obo/GO_0070445,regulation of oligodendrocyte progenitor proliferation +15.5685541,GO:0070525,http://purl.obolibrary.org/obo/GO_0070525,tRNA threonylcarbamoyladenosine metabolic process +15.5685541,GO:0070552,http://purl.obolibrary.org/obo/GO_0070552,BRISC complex +15.5685541,GO:0070579,http://purl.obolibrary.org/obo/GO_0070579,methylcytosine dioxygenase activity +15.5685541,GO:0070739,http://purl.obolibrary.org/obo/GO_0070739,protein-glutamic acid ligase activity +15.5685541,GO:0070740,http://purl.obolibrary.org/obo/GO_0070740,tubulin-glutamic acid ligase activity +15.5685541,GO:0070761,http://purl.obolibrary.org/obo/GO_0070761,pre-snoRNP complex +15.5685541,GO:0070775,http://purl.obolibrary.org/obo/GO_0070775,H3 histone acetyltransferase complex +15.5685541,GO:0070787,http://purl.obolibrary.org/obo/GO_0070787,conidiophore development +15.5685541,GO:0070793,http://purl.obolibrary.org/obo/GO_0070793,regulation of conidiophore development +15.5685541,GO:0070843,http://purl.obolibrary.org/obo/GO_0070843,misfolded protein transport +15.5685541,GO:0070881,http://purl.obolibrary.org/obo/GO_0070881,regulation of proline transport +15.5685541,GO:0071075,http://purl.obolibrary.org/obo/GO_0071075,CUGBP1-eIF2 complex +15.5685541,GO:0071236,http://purl.obolibrary.org/obo/GO_0071236,cellular response to antibiotic +15.5685541,GO:0071240,http://purl.obolibrary.org/obo/GO_0071240,cellular response to food +15.5685541,GO:0071251,http://purl.obolibrary.org/obo/GO_0071251,cellular response to silicon dioxide +15.5685541,GO:0071289,http://purl.obolibrary.org/obo/GO_0071289,cellular response to nickel ion +15.5685541,GO:0071314,http://purl.obolibrary.org/obo/GO_0071314,cellular response to cocaine +15.5685541,GO:0071566,http://purl.obolibrary.org/obo/GO_0071566,UFM1 activating enzyme activity +15.5685541,GO:0071568,http://purl.obolibrary.org/obo/GO_0071568,UFM1 transferase activity +15.5685541,GO:0071676,http://purl.obolibrary.org/obo/GO_0071676,negative regulation of mononuclear cell migration +15.5685541,GO:0071847,http://purl.obolibrary.org/obo/GO_0071847,TNFSF11-mediated signaling pathway +15.5685541,GO:0071939,http://purl.obolibrary.org/obo/GO_0071939,vitamin A import +15.5685541,GO:0071976,http://purl.obolibrary.org/obo/GO_0071976,cell gliding +15.5685541,GO:0071991,http://purl.obolibrary.org/obo/GO_0071991,none +15.5685541,GO:0072326,http://purl.obolibrary.org/obo/GO_0072326,vulval cell fate determination +15.5685541,GO:0072491,http://purl.obolibrary.org/obo/GO_0072491,toluene-containing compound catabolic process +15.5685541,GO:0072555,http://purl.obolibrary.org/obo/GO_0072555,17-beta-ketosteroid reductase activity +15.5685541,GO:0072578,http://purl.obolibrary.org/obo/GO_0072578,neurotransmitter-gated ion channel clustering +15.5685541,GO:0072638,http://purl.obolibrary.org/obo/GO_0072638,none +15.5685541,GO:0075317,http://purl.obolibrary.org/obo/GO_0075317,ascus development +15.5685541,GO:0090123,http://purl.obolibrary.org/obo/GO_0090123,lysosomal glycocalyx +15.5685541,GO:0090156,http://purl.obolibrary.org/obo/GO_0090156,cellular sphingolipid homeostasis +15.5685541,GO:0090207,http://purl.obolibrary.org/obo/GO_0090207,regulation of triglyceride metabolic process +15.5685541,GO:0090299,http://purl.obolibrary.org/obo/GO_0090299,regulation of neural crest formation +15.5685541,GO:0090332,http://purl.obolibrary.org/obo/GO_0090332,stomatal closure +15.5685541,GO:0090416,http://purl.obolibrary.org/obo/GO_0090416,nicotinate transmembrane transporter activity +15.5685541,GO:0090536,http://purl.obolibrary.org/obo/GO_0090536,NoRC complex +15.5685541,GO:0090654,http://purl.obolibrary.org/obo/GO_0090654,basolateral recycling endosome +15.5685541,GO:0093002,http://purl.obolibrary.org/obo/GO_0093002,response to nematicide +15.5685541,GO:0097129,http://purl.obolibrary.org/obo/GO_0097129,cyclin D2-CDK4 complex +15.5685541,GO:0097417,http://purl.obolibrary.org/obo/GO_0097417,nematosome +15.5685541,GO:0097453,http://purl.obolibrary.org/obo/GO_0097453,mesaxon +15.5685541,GO:0097466,http://purl.obolibrary.org/obo/GO_0097466,ubiquitin-dependent glycoprotein ERAD pathway +15.5685541,GO:0097518,http://purl.obolibrary.org/obo/GO_0097518,parallel actin filament bundle +15.5685541,GO:0097688,http://purl.obolibrary.org/obo/GO_0097688,glutamate receptor clustering +15.5685541,GO:0097689,http://purl.obolibrary.org/obo/GO_0097689,none +15.5685541,GO:0098579,http://purl.obolibrary.org/obo/GO_0098579,active sex chromosome +15.5685541,GO:0098784,http://purl.obolibrary.org/obo/GO_0098784,biofilm matrix organization +15.5685541,GO:0098785,http://purl.obolibrary.org/obo/GO_0098785,biofilm matrix assembly +15.5685541,GO:0099529,http://purl.obolibrary.org/obo/GO_0099529,neurotransmitter receptor activity involved in regulation of postsynaptic membrane potential +15.5685541,GO:0120247,http://purl.obolibrary.org/obo/GO_0120247,acetylenic compound biosynthetic process +15.5685541,GO:0120305,http://purl.obolibrary.org/obo/GO_0120305,regulation of pigmentation +15.5685541,GO:0140142,http://purl.obolibrary.org/obo/GO_0140142,nucleocytoplasmic carrier activity +15.5685541,GO:0150105,http://purl.obolibrary.org/obo/GO_0150105,protein localization to cell-cell junction +15.5685541,GO:1900020,http://purl.obolibrary.org/obo/GO_1900020,positive regulation of protein kinase C activity +15.5685541,GO:1900030,http://purl.obolibrary.org/obo/GO_1900030,regulation of pectin biosynthetic process +15.5685541,GO:1900732,http://purl.obolibrary.org/obo/GO_1900732,regulation of polyketide biosynthetic process +15.5685541,GO:1900794,http://purl.obolibrary.org/obo/GO_1900794,terrequinone A metabolic process +15.5685541,GO:1900796,http://purl.obolibrary.org/obo/GO_1900796,terrequinone A biosynthetic process +15.5685541,GO:1900864,http://purl.obolibrary.org/obo/GO_1900864,mitochondrial RNA modification +15.5685541,GO:1901318,http://purl.obolibrary.org/obo/GO_1901318,negative regulation of flagellated sperm motility +15.5685541,GO:1901406,http://purl.obolibrary.org/obo/GO_1901406,positive regulation of tetrapyrrole catabolic process +15.5685541,GO:1901437,http://purl.obolibrary.org/obo/GO_1901437,regulation of toluene metabolic process +15.5685541,GO:1901530,http://purl.obolibrary.org/obo/GO_1901530,response to hypochlorite +15.5685541,GO:1901545,http://purl.obolibrary.org/obo/GO_1901545,response to raffinose +15.5685541,GO:1901561,http://purl.obolibrary.org/obo/GO_1901561,response to benomyl +15.5685541,GO:1901623,http://purl.obolibrary.org/obo/GO_1901623,regulation of lymphocyte chemotaxis +15.5685541,GO:1902020,http://purl.obolibrary.org/obo/GO_1902020,negative regulation of cilium-dependent cell motility +15.5685541,GO:1902031,http://purl.obolibrary.org/obo/GO_1902031,regulation of NADP metabolic process +15.5685541,GO:1902117,http://purl.obolibrary.org/obo/GO_1902117,positive regulation of organelle assembly +15.5685541,GO:1902168,http://purl.obolibrary.org/obo/GO_1902168,response to catechin +15.5685541,GO:1902307,http://purl.obolibrary.org/obo/GO_1902307,positive regulation of sodium ion transmembrane transport +15.5685541,GO:1902497,http://purl.obolibrary.org/obo/GO_1902497,iron-sulfur cluster transmembrane transport +15.5685541,GO:1902691,http://purl.obolibrary.org/obo/GO_1902691,respiratory basal cell differentiation +15.5685541,GO:1902731,http://purl.obolibrary.org/obo/GO_1902731,negative regulation of chondrocyte proliferation +15.5685541,GO:1902818,http://purl.obolibrary.org/obo/GO_1902818,ethyl acetate metabolic process +15.5685541,GO:1902847,http://purl.obolibrary.org/obo/GO_1902847,regulation of neuronal signal transduction +15.5685541,GO:1902902,http://purl.obolibrary.org/obo/GO_1902902,negative regulation of autophagosome assembly +15.5685541,GO:1903059,http://purl.obolibrary.org/obo/GO_1903059,regulation of protein lipidation +15.5685541,GO:1903201,http://purl.obolibrary.org/obo/GO_1903201,regulation of oxidative stress-induced cell death +15.5685541,GO:1903306,http://purl.obolibrary.org/obo/GO_1903306,negative regulation of regulated secretory pathway +15.5685541,GO:1903358,http://purl.obolibrary.org/obo/GO_1903358,regulation of Golgi organization +15.5685541,GO:1903408,http://purl.obolibrary.org/obo/GO_1903408,positive regulation of P-type sodium:potassium-exchanging transporter activity +15.5685541,GO:1903432,http://purl.obolibrary.org/obo/GO_1903432,regulation of TORC1 signaling +15.5685541,GO:1903448,http://purl.obolibrary.org/obo/GO_1903448,geraniol biosynthetic process +15.5685541,GO:1903454,http://purl.obolibrary.org/obo/GO_1903454,"regulation of androst-4-ene-3,17-dione biosynthetic process" +15.5685541,GO:1903543,http://purl.obolibrary.org/obo/GO_1903543,positive regulation of exosomal secretion +15.5685541,GO:1903624,http://purl.obolibrary.org/obo/GO_1903624,regulation of DNA catabolic process +15.5685541,GO:1903648,http://purl.obolibrary.org/obo/GO_1903648,positive regulation of chlorophyll catabolic process +15.5685541,GO:1903729,http://purl.obolibrary.org/obo/GO_1903729,regulation of plasma membrane organization +15.5685541,GO:1903909,http://purl.obolibrary.org/obo/GO_1903909,regulation of receptor clustering +15.5685541,GO:1904030,http://purl.obolibrary.org/obo/GO_1904030,negative regulation of cyclin-dependent protein kinase activity +15.5685541,GO:1904142,http://purl.obolibrary.org/obo/GO_1904142,negative regulation of carotenoid biosynthetic process +15.5685541,GO:1904147,http://purl.obolibrary.org/obo/GO_1904147,response to nonylphenol +15.5685541,GO:1904294,http://purl.obolibrary.org/obo/GO_1904294,positive regulation of ERAD pathway +15.5685541,GO:1904315,http://purl.obolibrary.org/obo/GO_1904315,transmitter-gated ion channel activity involved in regulation of postsynaptic membrane potential +15.5685541,GO:1904328,http://purl.obolibrary.org/obo/GO_1904328,regulation of myofibroblast contraction +15.5685541,GO:1904338,http://purl.obolibrary.org/obo/GO_1904338,regulation of dopaminergic neuron differentiation +15.5685541,GO:1904385,http://purl.obolibrary.org/obo/GO_1904385,cellular response to angiotensin +15.5685541,GO:1904644,http://purl.obolibrary.org/obo/GO_1904644,cellular response to curcumin +15.5685541,GO:1904744,http://purl.obolibrary.org/obo/GO_1904744,positive regulation of telomeric DNA binding +15.5685541,GO:1904837,http://purl.obolibrary.org/obo/GO_1904837,beta-catenin-TCF complex assembly +15.5685541,GO:1904867,http://purl.obolibrary.org/obo/GO_1904867,protein localization to Cajal body +15.5685541,GO:1904926,http://purl.obolibrary.org/obo/GO_1904926,response to palmitoleic acid +15.5685541,GO:1905395,http://purl.obolibrary.org/obo/GO_1905395,response to flavonoid +15.5685541,GO:1905898,http://purl.obolibrary.org/obo/GO_1905898,positive regulation of response to endoplasmic reticulum stress +15.5685541,GO:1990015,http://purl.obolibrary.org/obo/GO_1990015,ensheathing process +15.5685541,GO:1990176,http://purl.obolibrary.org/obo/GO_1990176,MalFGK2 complex +15.5685541,GO:1990245,http://purl.obolibrary.org/obo/GO_1990245,histone H2A-T120 phosphorylation +15.5685541,GO:1990358,http://purl.obolibrary.org/obo/GO_1990358,xylanosome +15.5685541,GO:1990520,http://purl.obolibrary.org/obo/GO_1990520,separase-securin complex +15.5685541,GO:1990585,http://purl.obolibrary.org/obo/GO_1990585,hydroxyproline O-arabinosyltransferase activity +15.5685541,GO:1990696,http://purl.obolibrary.org/obo/GO_1990696,USH2 complex +15.5685541,GO:1990713,http://purl.obolibrary.org/obo/GO_1990713,survivin complex +15.5685541,GO:1990714,http://purl.obolibrary.org/obo/GO_1990714,hydroxyproline O-galactosyltransferase activity +15.5685541,GO:1990725,http://purl.obolibrary.org/obo/GO_1990725,cord factor receptor activity +15.5685541,GO:1990745,http://purl.obolibrary.org/obo/GO_1990745,EARP complex +15.5685541,GO:1990817,http://purl.obolibrary.org/obo/GO_1990817,RNA adenylyltransferase activity +15.5685541,GO:1990876,http://purl.obolibrary.org/obo/GO_1990876,cytoplasmic side of nuclear pore +15.5685541,GO:1990884,http://purl.obolibrary.org/obo/GO_1990884,RNA acetylation +15.5685541,GO:1990923,http://purl.obolibrary.org/obo/GO_1990923,PET complex +15.5685541,GO:1990928,http://purl.obolibrary.org/obo/GO_1990928,response to amino acid starvation +15.5685541,GO:2000195,http://purl.obolibrary.org/obo/GO_2000195,negative regulation of female gonad development +15.5685541,GO:2000367,http://purl.obolibrary.org/obo/GO_2000367,regulation of acrosomal vesicle exocytosis +15.5685541,GO:2000378,http://purl.obolibrary.org/obo/GO_2000378,negative regulation of reactive oxygen species metabolic process +15.5685541,GO:2000383,http://purl.obolibrary.org/obo/GO_2000383,regulation of ectoderm development +15.5685541,GO:2000469,http://purl.obolibrary.org/obo/GO_2000469,negative regulation of peroxidase activity +15.5685541,GO:2000613,http://purl.obolibrary.org/obo/GO_2000613,negative regulation of thyroid-stimulating hormone secretion +15.5685541,GO:2000622,http://purl.obolibrary.org/obo/GO_2000622,"regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay" +15.5685541,GO:2000644,http://purl.obolibrary.org/obo/GO_2000644,regulation of receptor catabolic process +15.5685541,GO:2000651,http://purl.obolibrary.org/obo/GO_2000651,positive regulation of sodium ion transmembrane transporter activity +15.5685541,GO:2000821,http://purl.obolibrary.org/obo/GO_2000821,regulation of grooming behavior +15.5685541,GO:2000827,http://purl.obolibrary.org/obo/GO_2000827,mitochondrial RNA surveillance +15.5685541,GO:2000833,http://purl.obolibrary.org/obo/GO_2000833,positive regulation of steroid hormone secretion +15.5685541,GO:2000874,http://purl.obolibrary.org/obo/GO_2000874,regulation of glyoxylate cycle +15.5685541,GO:2001023,http://purl.obolibrary.org/obo/GO_2001023,regulation of response to drug +15.5685541,GO:2001201,http://purl.obolibrary.org/obo/GO_2001201,none +15.5685541,HP:0000104,http://purl.obolibrary.org/obo/HP_0000104,Renal agenesis +15.5685541,HP:0000540,http://purl.obolibrary.org/obo/HP_0000540,Hypermetropia +15.5685541,HP:0000821,http://purl.obolibrary.org/obo/HP_0000821,Hypothyroidism +15.5685541,HP:0000851,http://purl.obolibrary.org/obo/HP_0000851,Congenital hypothyroidism +15.5685541,HP:0001009,http://purl.obolibrary.org/obo/HP_0001009,Telangiectasia +15.5685541,HP:0001385,http://purl.obolibrary.org/obo/HP_0001385,Hip dysplasia +15.5685541,HP:0001667,http://purl.obolibrary.org/obo/HP_0001667,Right ventricular hypertrophy +15.5685541,HP:0001735,http://purl.obolibrary.org/obo/HP_0001735,Acute pancreatitis +15.5685541,HP:0001737,http://purl.obolibrary.org/obo/HP_0001737,Pancreatic cysts +15.5685541,HP:0001875,http://purl.obolibrary.org/obo/HP_0001875,Neutropenia +15.5685541,HP:0002018,http://purl.obolibrary.org/obo/HP_0002018,Nausea +15.5685541,HP:0002073,http://purl.obolibrary.org/obo/HP_0002073,Progressive cerebellar ataxia +15.5685541,HP:0002156,http://purl.obolibrary.org/obo/HP_0002156,Homocystinuria +15.5685541,HP:0002408,http://purl.obolibrary.org/obo/HP_0002408,Cerebral arteriovenous malformation +15.5685541,HP:0002487,http://purl.obolibrary.org/obo/HP_0002487,Hyperkinetic movements +15.5685541,HP:0002862,http://purl.obolibrary.org/obo/HP_0002862,Bladder carcinoma +15.5685541,HP:0002888,http://purl.obolibrary.org/obo/HP_0002888,Ependymoma +15.5685541,HP:0003419,http://purl.obolibrary.org/obo/HP_0003419,Low back pain +15.5685541,HP:0004935,http://purl.obolibrary.org/obo/HP_0004935,Pulmonary artery atresia +15.5685541,HP:0006682,http://purl.obolibrary.org/obo/HP_0006682,Premature ventricular contraction +15.5685541,HP:0006919,http://purl.obolibrary.org/obo/HP_0006919,"Abnormal aggressive, impulsive or violent behavior" +15.5685541,HP:0007634,http://purl.obolibrary.org/obo/HP_0007634,Nonarteritic anterior ischemic optic neuropathy +15.5685541,HP:0009592,http://purl.obolibrary.org/obo/HP_0009592,Astrocytoma +15.5685541,HP:0009730,http://purl.obolibrary.org/obo/HP_0009730,Rhabdomyoma +15.5685541,HP:0009926,http://purl.obolibrary.org/obo/HP_0009926,Epiphora +15.5685541,HP:0010741,http://purl.obolibrary.org/obo/HP_0010741,Pedal edema +15.5685541,HP:0010784,http://purl.obolibrary.org/obo/HP_0010784,Uterine neoplasm +15.5685541,HP:0011097,http://purl.obolibrary.org/obo/HP_0011097,Epileptic spasm +15.5685541,HP:0011779,http://purl.obolibrary.org/obo/HP_0011779,Anaplastic thyroid carcinoma +15.5685541,HP:0011787,http://purl.obolibrary.org/obo/HP_0011787,Central hypothyroidism +15.5685541,HP:0011998,http://purl.obolibrary.org/obo/HP_0011998,Postprandial hyperglycemia +15.5685541,HP:0012072,http://purl.obolibrary.org/obo/HP_0012072,Aciduria +15.5685541,HP:0012076,http://purl.obolibrary.org/obo/HP_0012076,Borderline personality disorder +15.5685541,HP:0012193,http://purl.obolibrary.org/obo/HP_0012193,Anaplastic large-cell lymphoma +15.5685541,HP:0012218,http://purl.obolibrary.org/obo/HP_0012218,Alveolar soft part sarcoma +15.5685541,HP:0025297,http://purl.obolibrary.org/obo/HP_0025297,Prolonged +15.5685541,HP:0025301,http://purl.obolibrary.org/obo/HP_0025301,Nocturnal +15.5685541,HP:0025302,http://purl.obolibrary.org/obo/HP_0025302,Diurnal +15.5685541,HP:0030076,http://purl.obolibrary.org/obo/HP_0030076,Lobular carcinoma in situ +15.5685541,HP:0031467,http://purl.obolibrary.org/obo/HP_0031467,Negative affectivity +15.5685541,HP:0031502,http://purl.obolibrary.org/obo/HP_0031502,Trophoblastic tumor +15.5685541,HP:0032046,http://purl.obolibrary.org/obo/HP_0032046,Focal cortical dysplasia +15.5685541,HP:0032262,http://purl.obolibrary.org/obo/HP_0032262,Pulmonary tuberculosis +15.5685541,HP:0032943,http://purl.obolibrary.org/obo/HP_0032943,Abnormal urine pH +15.5685541,HP:0033095,http://purl.obolibrary.org/obo/HP_0033095,Increased sulfur amino acid level in urine +15.5685541,HP:0033100,http://purl.obolibrary.org/obo/HP_0033100,Increased proteinogenic amino acid level in urine +15.5685541,HP:0100602,http://purl.obolibrary.org/obo/HP_0100602,Preeclampsia +15.5685541,HP:0100716,http://purl.obolibrary.org/obo/HP_0100716,Self-injurious behavior +15.5685541,HP:0100764,http://purl.obolibrary.org/obo/HP_0100764,Lymphangioma +15.5685541,HP:0200029,http://purl.obolibrary.org/obo/HP_0200029,Vasculitis in the skin +15.5685541,MONDO:0000639,http://purl.obolibrary.org/obo/MONDO_0000639,cartilage cancer +15.5685541,MONDO:0000678,http://purl.obolibrary.org/obo/MONDO_0000678,simultanagnosia +15.5685541,MONDO:0000924,http://purl.obolibrary.org/obo/MONDO_0000924,compensatory emphysema +15.5685541,MONDO:0001206,http://purl.obolibrary.org/obo/MONDO_0001206,aqueous misdirection +15.5685541,MONDO:0001233,http://purl.obolibrary.org/obo/MONDO_0001233,orbital tenonitis +15.5685541,MONDO:0001492,http://purl.obolibrary.org/obo/MONDO_0001492,kyphoscoliotic heart disease +15.5685541,MONDO:0001498,http://purl.obolibrary.org/obo/MONDO_0001498,varicocele +15.5685541,MONDO:0001656,http://purl.obolibrary.org/obo/MONDO_0001656,megaesophagus +15.5685541,MONDO:0001827,http://purl.obolibrary.org/obo/MONDO_0001827,white piedra +15.5685541,MONDO:0001837,http://purl.obolibrary.org/obo/MONDO_0001837,acute gonococcal salpingitis +15.5685541,MONDO:0001855,http://purl.obolibrary.org/obo/MONDO_0001855,rubeosis iridis +15.5685541,MONDO:0002065,http://purl.obolibrary.org/obo/MONDO_0002065,benign breast adenomyoepithelioma +15.5685541,MONDO:0002218,http://purl.obolibrary.org/obo/MONDO_0002218,temporal lobe cancer +15.5685541,MONDO:0002416,http://purl.obolibrary.org/obo/MONDO_0002416,ethmoid sinus squamous cell carcinoma +15.5685541,MONDO:0002440,http://purl.obolibrary.org/obo/MONDO_0002440,erythropoietin polycythemia +15.5685541,MONDO:0002577,http://purl.obolibrary.org/obo/MONDO_0002577,extrahepatic bile duct rhabdomyosarcoma +15.5685541,MONDO:0002761,http://purl.obolibrary.org/obo/MONDO_0002761,cervical verrucous carcinoma +15.5685541,MONDO:0002864,http://purl.obolibrary.org/obo/MONDO_0002864,anus rhabdomyosarcoma +15.5685541,MONDO:0002958,http://purl.obolibrary.org/obo/MONDO_0002958,signet ring basal cell carcinoma +15.5685541,MONDO:0002967,http://purl.obolibrary.org/obo/MONDO_0002967,dermatophytosis of scalp or beard +15.5685541,MONDO:0003066,http://purl.obolibrary.org/obo/MONDO_0003066,submandibular adenitis +15.5685541,MONDO:0003089,http://purl.obolibrary.org/obo/MONDO_0003089,extrahepatic bile duct mucoepidermoid carcinoma +15.5685541,MONDO:0003202,http://purl.obolibrary.org/obo/MONDO_0003202,pituitary gland basophilic carcinoma +15.5685541,MONDO:0003383,http://purl.obolibrary.org/obo/MONDO_0003383,fallopian tube clear cell adenocarcinoma +15.5685541,MONDO:0003392,http://purl.obolibrary.org/obo/MONDO_0003392,fallopian tube germ cell tumor +15.5685541,MONDO:0003445,http://purl.obolibrary.org/obo/MONDO_0003445,extrahepatic bile duct adenoma +15.5685541,MONDO:0003459,http://purl.obolibrary.org/obo/MONDO_0003459,cervical adenofibroma +15.5685541,MONDO:0003492,http://purl.obolibrary.org/obo/MONDO_0003492,lacrimal gland squamous cell carcinoma +15.5685541,MONDO:0003534,http://purl.obolibrary.org/obo/MONDO_0003534,papillary thymic adenocarcinoma +15.5685541,MONDO:0003551,http://purl.obolibrary.org/obo/MONDO_0003551,thymic adenosquamous carcinoma +15.5685541,MONDO:0003563,http://purl.obolibrary.org/obo/MONDO_0003563,diffuse pulmonary fibrosis +15.5685541,MONDO:0003665,http://purl.obolibrary.org/obo/MONDO_0003665,cervical endometrioid adenocarcinoma +15.5685541,MONDO:0003718,http://purl.obolibrary.org/obo/MONDO_0003718,occlusion precerebral artery +15.5685541,MONDO:0003791,http://purl.obolibrary.org/obo/MONDO_0003791,prostatic urethral cancer +15.5685541,MONDO:0003881,http://purl.obolibrary.org/obo/MONDO_0003881,vulvar apocrine adenocarcinoma +15.5685541,MONDO:0003893,http://purl.obolibrary.org/obo/MONDO_0003893,rete testis adenoma +15.5685541,MONDO:0003904,http://purl.obolibrary.org/obo/MONDO_0003904,lung occult squamous cell carcinoma +15.5685541,MONDO:0004009,http://purl.obolibrary.org/obo/MONDO_0004009,kidney pelvis sarcomatoid transitional cell carcinoma +15.5685541,MONDO:0004076,http://purl.obolibrary.org/obo/MONDO_0004076,tendon sheath lipoma +15.5685541,MONDO:0004093,http://purl.obolibrary.org/obo/MONDO_0004093,esophageal basaloid carcinoma +15.5685541,MONDO:0004100,http://purl.obolibrary.org/obo/MONDO_0004100,lung mixed small cell and squamous cell carcinoma +15.5685541,MONDO:0004148,http://purl.obolibrary.org/obo/MONDO_0004148,gallbladder papillary neoplasm with an associated invasive carcinoma +15.5685541,MONDO:0004265,http://purl.obolibrary.org/obo/MONDO_0004265,acute endometritis +15.5685541,MONDO:0004294,http://purl.obolibrary.org/obo/MONDO_0004294,gestational ovarian choriocarcinoma +15.5685541,MONDO:0004352,http://purl.obolibrary.org/obo/MONDO_0004352,adult brain ependymoma +15.5685541,MONDO:0004392,http://purl.obolibrary.org/obo/MONDO_0004392,intracranial extraskeletal myxoid chondrosarcoma +15.5685541,MONDO:0004531,http://purl.obolibrary.org/obo/MONDO_0004531,sclerosing adenosis of breast +15.5685541,MONDO:0004559,http://purl.obolibrary.org/obo/MONDO_0004559,malignant glandular tumor of peripheral nerve sheath +15.5685541,MONDO:0004574,http://purl.obolibrary.org/obo/MONDO_0004574,pyridoxine deficiency anemia +15.5685541,MONDO:0004595,http://purl.obolibrary.org/obo/MONDO_0004595,acute pulmonary heart disease +15.5685541,MONDO:0004707,http://purl.obolibrary.org/obo/MONDO_0004707,anal canal carcinoma in situ +15.5685541,MONDO:0004712,http://purl.obolibrary.org/obo/MONDO_0004712,herpes simplex dermatitis +15.5685541,MONDO:0004794,http://purl.obolibrary.org/obo/MONDO_0004794,exposure keratitis +15.5685541,MONDO:0004800,http://purl.obolibrary.org/obo/MONDO_0004800,chronic dacryoadenitis +15.5685541,MONDO:0004803,http://purl.obolibrary.org/obo/MONDO_0004803,disseminated eosinophilic collagen disease +15.5685541,MONDO:0004831,http://purl.obolibrary.org/obo/MONDO_0004831,proliferative fasciitis +15.5685541,MONDO:0004917,http://purl.obolibrary.org/obo/MONDO_0004917,internal hordeolum +15.5685541,MONDO:0005200,http://purl.obolibrary.org/obo/MONDO_0005200,viral dilated cardiomyopathy +15.5685541,MONDO:0005327,http://purl.obolibrary.org/obo/MONDO_0005327,hip fracture +15.5685541,MONDO:0005783,http://purl.obolibrary.org/obo/MONDO_0005783,hemopericardium +15.5685541,MONDO:0005807,http://purl.obolibrary.org/obo/MONDO_0005807,idiopathic CD4-positive T-lymphocytopenia +15.5685541,MONDO:0005809,http://purl.obolibrary.org/obo/MONDO_0005809,infectious ectromelia +15.5685541,MONDO:0005838,http://purl.obolibrary.org/obo/MONDO_0005838,mansonelliasis +15.5685541,MONDO:0005844,http://purl.obolibrary.org/obo/MONDO_0005844,chalazion +15.5685541,MONDO:0005852,http://purl.obolibrary.org/obo/MONDO_0005852,mitral valve stenosis +15.5685541,MONDO:0005891,http://purl.obolibrary.org/obo/MONDO_0005891,ostertagiasis +15.5685541,MONDO:0006007,http://purl.obolibrary.org/obo/MONDO_0006007,vesicoureteral reflux +15.5685541,MONDO:0006019,http://purl.obolibrary.org/obo/MONDO_0006019,yaws +15.5685541,MONDO:0006184,http://purl.obolibrary.org/obo/MONDO_0006184,ductal breast carcinoma in situ and lobular carcinoma in situ +15.5685541,MONDO:0006208,http://purl.obolibrary.org/obo/MONDO_0006208,fallopian tube serous adenocarcinoma +15.5685541,MONDO:0006355,http://purl.obolibrary.org/obo/MONDO_0006355,parotid gland acinic cell carcinoma +15.5685541,MONDO:0006394,http://purl.obolibrary.org/obo/MONDO_0006394,rectal tubular adenoma +15.5685541,MONDO:0006550,http://purl.obolibrary.org/obo/MONDO_0006550,fibroepithelial polyp of urethra +15.5685541,MONDO:0006605,http://purl.obolibrary.org/obo/MONDO_0006605,scalp dermatosis +15.5685541,MONDO:0006620,http://purl.obolibrary.org/obo/MONDO_0006620,vulva fibroepithelial polyp +15.5685541,MONDO:0006622,http://purl.obolibrary.org/obo/MONDO_0006622,vulvar seborrheic keratosis +15.5685541,MONDO:0006632,http://purl.obolibrary.org/obo/MONDO_0006632,"osteoarthritis, hand" +15.5685541,MONDO:0006680,http://purl.obolibrary.org/obo/MONDO_0006680,blue nevus +15.5685541,MONDO:0006912,http://purl.obolibrary.org/obo/MONDO_0006912,pneumatosis cystoides intestinalis +15.5685541,MONDO:0007051,http://purl.obolibrary.org/obo/MONDO_0007051,acromegaloid facial appearance syndrome +15.5685541,MONDO:0007152,http://purl.obolibrary.org/obo/MONDO_0007152,arrhythmogenic right ventricular dysplasia 1 +15.5685541,MONDO:0007211,http://purl.obolibrary.org/obo/MONDO_0007211,brachydactyly-arterial hypertension syndrome +15.5685541,MONDO:0007298,http://purl.obolibrary.org/obo/MONDO_0007298,spinocerebellar ataxia type 29 +15.5685541,MONDO:0007385,http://purl.obolibrary.org/obo/MONDO_0007385,idiopathic spontaneous coronary artery dissection +15.5685541,MONDO:0007574,http://purl.obolibrary.org/obo/MONDO_0007574,spinocerebellar ataxia type 34 +15.5685541,MONDO:0007627,http://purl.obolibrary.org/obo/MONDO_0007627,focal facial dermal dysplasia type I +15.5685541,MONDO:0007653,http://purl.obolibrary.org/obo/MONDO_0007653,genochondromatosis +15.5685541,MONDO:0007737,http://purl.obolibrary.org/obo/MONDO_0007737,humeroradial synostosis +15.5685541,MONDO:0007767,http://purl.obolibrary.org/obo/MONDO_0007767,hyperparathyroidism 1 +15.5685541,MONDO:0007848,http://purl.obolibrary.org/obo/MONDO_0007848,autosomal dominant keratitis +15.5685541,MONDO:0007933,http://purl.obolibrary.org/obo/MONDO_0007933,vitelliform macular dystrophy 1 +15.5685541,MONDO:0008113,http://purl.obolibrary.org/obo/MONDO_0008113,Schilbach-Rott syndrome +15.5685541,MONDO:0008133,http://purl.obolibrary.org/obo/MONDO_0008133,optic atrophy 3 +15.5685541,MONDO:0008211,http://purl.obolibrary.org/obo/MONDO_0008211,"pseudoleprechaunism syndrome, Patterson type" +15.5685541,MONDO:0008297,http://purl.obolibrary.org/obo/MONDO_0008297,variegate porphyria +15.5685541,MONDO:0008384,http://purl.obolibrary.org/obo/MONDO_0008384,rheumatoid nodulosis +15.5685541,MONDO:0008391,http://purl.obolibrary.org/obo/MONDO_0008391,Robinow-Sorauf syndrome +15.5685541,MONDO:0008406,http://purl.obolibrary.org/obo/MONDO_0008406,autosomal recessive Emery-Dreifuss muscular dystrophy +15.5685541,MONDO:0008466,http://purl.obolibrary.org/obo/MONDO_0008466,Karsch-Neugebauer syndrome +15.5685541,MONDO:0008476,http://purl.obolibrary.org/obo/MONDO_0008476,"spondyloepimetaphyseal dysplasia, Strudwick type" +15.5685541,MONDO:0008479,http://purl.obolibrary.org/obo/MONDO_0008479,"spondylometaphyseal dysplasia, 'corner fracture' type" +15.5685541,MONDO:0008484,http://purl.obolibrary.org/obo/MONDO_0008484,stapes ankylosis with broad thumbs and toes +15.5685541,MONDO:0008499,http://purl.obolibrary.org/obo/MONDO_0008499,short stature-wormian bones-dextrocardia syndrome +15.5685541,MONDO:0008615,http://purl.obolibrary.org/obo/MONDO_0008615,tune deafness +15.5685541,MONDO:0008705,http://purl.obolibrary.org/obo/MONDO_0008705,lysosomal acid phosphatase deficiency +15.5685541,MONDO:0008706,http://purl.obolibrary.org/obo/MONDO_0008706,Ackerman syndrome +15.5685541,MONDO:0008712,http://purl.obolibrary.org/obo/MONDO_0008712,acrocraniofacial dysostosis +15.5685541,MONDO:0008831,http://purl.obolibrary.org/obo/MONDO_0008831,asphyxiating thoracic dystrophy 1 +15.5685541,MONDO:0008871,http://purl.obolibrary.org/obo/MONDO_0008871,microcephalic osteodysplastic primordial dwarfism type I +15.5685541,MONDO:0008885,http://purl.obolibrary.org/obo/MONDO_0008885,Elsahy-Waters syndrome +15.5685541,MONDO:0008964,http://purl.obolibrary.org/obo/MONDO_0008964,congenital secretory chloride diarrhea 1 +15.5685541,MONDO:0008998,http://purl.obolibrary.org/obo/MONDO_0008998,Cockayne syndrome type 3 +15.5685541,MONDO:0009033,http://purl.obolibrary.org/obo/MONDO_0009033,temtamy syndrome +15.5685541,MONDO:0009053,http://purl.obolibrary.org/obo/MONDO_0009053,ALDH18A1-related de Barsy syndrome +15.5685541,MONDO:0009094,http://purl.obolibrary.org/obo/MONDO_0009094,dermochondrocorneal dystrophy +15.5685541,MONDO:0009110,http://purl.obolibrary.org/obo/MONDO_0009110,dicarboxylic aminoaciduria +15.5685541,MONDO:0009185,http://purl.obolibrary.org/obo/MONDO_0009185,amelocerebrohypohidrotic syndrome +15.5685541,MONDO:0009350,http://purl.obolibrary.org/obo/MONDO_0009350,Holzgreve-Wagner-Rehder syndrome +15.5685541,MONDO:0009371,http://purl.obolibrary.org/obo/MONDO_0009371,3-hydroxyisobutyric aciduria +15.5685541,MONDO:0009392,http://purl.obolibrary.org/obo/MONDO_0009392,"hyperopia, high" +15.5685541,MONDO:0009400,http://purl.obolibrary.org/obo/MONDO_0009400,hyperprolinemia type 1 +15.5685541,MONDO:0009584,http://purl.obolibrary.org/obo/MONDO_0009584,"intellectual disability, Buenos-Aires type" +15.5685541,MONDO:0009615,http://purl.obolibrary.org/obo/MONDO_0009615,methylmalonic acidemia due to methylmalonyl-CoA epimerase deficiency +15.5685541,MONDO:0009721,http://purl.obolibrary.org/obo/MONDO_0009721,Nathalie syndrome +15.5685541,MONDO:0009793,http://purl.obolibrary.org/obo/MONDO_0009793,orofaciodigital syndrome III +15.5685541,MONDO:0009795,http://purl.obolibrary.org/obo/MONDO_0009795,orofaciodigital syndrome IX +15.5685541,MONDO:0009839,http://purl.obolibrary.org/obo/MONDO_0009839,progressive supranuclear palsy-parkinsonism syndrome +15.5685541,MONDO:0009941,http://purl.obolibrary.org/obo/MONDO_0009941,Pygmy +15.5685541,MONDO:0010029,http://purl.obolibrary.org/obo/MONDO_0010029,situs inversus +15.5685541,MONDO:0010118,http://purl.obolibrary.org/obo/MONDO_0010118,Threoninemia +15.5685541,MONDO:0010190,http://purl.obolibrary.org/obo/MONDO_0010190,pontocerebellar hypoplasia type 2A +15.5685541,MONDO:0010370,http://purl.obolibrary.org/obo/MONDO_0010370,Cornelia de Lange syndrome 2 +15.5685541,MONDO:0010426,http://purl.obolibrary.org/obo/MONDO_0010426,X-linked endothelial corneal dystrophy +15.5685541,MONDO:0010706,http://purl.obolibrary.org/obo/MONDO_0010706,premature ovarian failure 1 +15.5685541,MONDO:0010709,http://purl.obolibrary.org/obo/MONDO_0010709,early-onset parkinsonism-intellectual disability syndrome +15.5685541,MONDO:0010803,http://purl.obolibrary.org/obo/MONDO_0010803,Eiken syndrome +15.5685541,MONDO:0010807,http://purl.obolibrary.org/obo/MONDO_0010807,autosomal recessive nonsyndromic deafness 2 +15.5685541,MONDO:0010823,http://purl.obolibrary.org/obo/MONDO_0010823,rhizomelic chondrodysplasia punctata type 3 +15.5685541,MONDO:0010868,http://purl.obolibrary.org/obo/MONDO_0010868,rippling muscle disease 1 +15.5685541,MONDO:0010931,http://purl.obolibrary.org/obo/MONDO_0010931,"vitamin D-dependent rickets, type 2B" +15.5685541,MONDO:0010992,http://purl.obolibrary.org/obo/MONDO_0010992,Ayme-Gripp syndrome +15.5685541,MONDO:0010998,http://purl.obolibrary.org/obo/MONDO_0010998,ALG3-CDG +15.5685541,MONDO:0011028,http://purl.obolibrary.org/obo/MONDO_0011028,autosomal recessive limb-girdle muscular dystrophy type 2F +15.5685541,MONDO:0011056,http://purl.obolibrary.org/obo/MONDO_0011056,Wilms tumor 4 +15.5685541,MONDO:0011189,http://purl.obolibrary.org/obo/MONDO_0011189,arrhythmogenic right ventricular dysplasia 4 +15.5685541,MONDO:0011272,http://purl.obolibrary.org/obo/MONDO_0011272,retinitis pigmentosa 25 +15.5685541,MONDO:0011309,http://purl.obolibrary.org/obo/MONDO_0011309,familial gestational hyperthyroidism +15.5685541,MONDO:0011339,http://purl.obolibrary.org/obo/MONDO_0011339,hereditary spastic paraplegia 8 +15.5685541,MONDO:0011419,http://purl.obolibrary.org/obo/MONDO_0011419,camera-Marugo-Cohen syndrome +15.5685541,MONDO:0011459,http://purl.obolibrary.org/obo/MONDO_0011459,arrhythmogenic right ventricular dysplasia 5 +15.5685541,MONDO:0011475,http://purl.obolibrary.org/obo/MONDO_0011475,Charcot-Marie-Tooth disease type 4B2 +15.5685541,MONDO:0011481,http://purl.obolibrary.org/obo/MONDO_0011481,craniosynostosis 2 +15.5685541,MONDO:0011533,http://purl.obolibrary.org/obo/MONDO_0011533,temtamy preaxial brachydactyly syndrome +15.5685541,MONDO:0011587,http://purl.obolibrary.org/obo/MONDO_0011587,cataract 25 +15.5685541,MONDO:0011604,http://purl.obolibrary.org/obo/MONDO_0011604,spondylo-ocular syndrome +15.5685541,MONDO:0011615,http://purl.obolibrary.org/obo/MONDO_0011615,East Texas bleeding disorder +15.5685541,MONDO:0011629,http://purl.obolibrary.org/obo/MONDO_0011629,MOGS-CDG +15.5685541,MONDO:0011633,http://purl.obolibrary.org/obo/MONDO_0011633,Charcot-Marie-Tooth disease axonal type 2C +15.5685541,MONDO:0011672,http://purl.obolibrary.org/obo/MONDO_0011672,persistent polyclonal B-cell lymphocytosis +15.5685541,MONDO:0011732,http://purl.obolibrary.org/obo/MONDO_0011732,familial digital arthropathy-brachydactyly +15.5685541,MONDO:0011774,http://purl.obolibrary.org/obo/MONDO_0011774,autosomal recessive nonsyndromic deafness 30 +15.5685541,MONDO:0011783,http://purl.obolibrary.org/obo/MONDO_0011783,ALG12-CDG +15.5685541,MONDO:0011833,http://purl.obolibrary.org/obo/MONDO_0011833,spinocerebellar ataxia type 21 +15.5685541,MONDO:0011946,http://purl.obolibrary.org/obo/MONDO_0011946,diaphanospondylodysostosis +15.5685541,MONDO:0012008,http://purl.obolibrary.org/obo/MONDO_0012008,Lelis syndrome +15.5685541,MONDO:0012020,http://purl.obolibrary.org/obo/MONDO_0012020,chromosome 22q11.2 microduplication syndrome +15.5685541,MONDO:0012052,http://purl.obolibrary.org/obo/MONDO_0012052,ALG1-CDG +15.5685541,MONDO:0012071,http://purl.obolibrary.org/obo/MONDO_0012071,congenital generalized lipodystrophy type 1 +15.5685541,MONDO:0012072,http://purl.obolibrary.org/obo/MONDO_0012072,"familial partial lipodystrophy, Kobberling type" +15.5685541,MONDO:0012098,http://purl.obolibrary.org/obo/MONDO_0012098,spinocerebellar ataxia type 20 +15.5685541,MONDO:0012212,http://purl.obolibrary.org/obo/MONDO_0012212,Loeys-Dietz syndrome 1 +15.5685541,MONDO:0012277,http://purl.obolibrary.org/obo/MONDO_0012277,myofibrillar myopathy 4 +15.5685541,MONDO:0012343,http://purl.obolibrary.org/obo/MONDO_0012343,"aortic aneurysm, familial abdominal, 2" +15.5685541,MONDO:0012371,http://purl.obolibrary.org/obo/MONDO_0012371,Noonan syndrome 3 +15.5685541,MONDO:0012384,http://purl.obolibrary.org/obo/MONDO_0012384,panic disorder 3 +15.5685541,MONDO:0012484,http://purl.obolibrary.org/obo/MONDO_0012484,"prosopagnosia, hereditary" +15.5685541,MONDO:0012540,http://purl.obolibrary.org/obo/MONDO_0012540,age related macular degeneration 4 +15.5685541,MONDO:0012545,http://purl.obolibrary.org/obo/MONDO_0012545,neutral lipid storage myopathy +15.5685541,MONDO:0012551,http://purl.obolibrary.org/obo/MONDO_0012551,alopecia areata 2 +15.5685541,MONDO:0012644,http://purl.obolibrary.org/obo/MONDO_0012644,asphyxiating thoracic dystrophy 2 +15.5685541,MONDO:0012659,http://purl.obolibrary.org/obo/MONDO_0012659,age related macular degeneration 9 +15.5685541,MONDO:0012665,http://purl.obolibrary.org/obo/MONDO_0012665,cataract 33 +15.5685541,MONDO:0012743,http://purl.obolibrary.org/obo/MONDO_0012743,Brugada syndrome 4 +15.5685541,MONDO:0012751,http://purl.obolibrary.org/obo/MONDO_0012751,"aortic aneurysm, familial abdominal, 3" +15.5685541,MONDO:0012856,http://purl.obolibrary.org/obo/MONDO_0012856,Birk-Barel syndrome +15.5685541,MONDO:0012865,http://purl.obolibrary.org/obo/MONDO_0012865,Pseudofolliculitis barbae +15.5685541,MONDO:0013024,http://purl.obolibrary.org/obo/MONDO_0013024,chronic thromboembolic pulmonary hypertension +15.5685541,MONDO:0013083,http://purl.obolibrary.org/obo/MONDO_0013083,"neuroblastoma, susceptibility to, 3" +15.5685541,MONDO:0013125,http://purl.obolibrary.org/obo/MONDO_0013125,CLAPO syndrome +15.5685541,MONDO:0013227,http://purl.obolibrary.org/obo/MONDO_0013227,congenital plasminogen activator inhibitor type 1 deficiency +15.5685541,MONDO:0013292,http://purl.obolibrary.org/obo/MONDO_0013292,chromosome 4q21 deletion syndrome +15.5685541,MONDO:0013295,http://purl.obolibrary.org/obo/MONDO_0013295,atopic dermatitis 9 +15.5685541,MONDO:0013364,http://purl.obolibrary.org/obo/MONDO_0013364,Rubinstein-Taybi syndrome due to EP300 haploinsufficiency +15.5685541,MONDO:0013438,http://purl.obolibrary.org/obo/MONDO_0013438,pontocerebellar hypoplasia type 2D +15.5685541,MONDO:0013461,http://purl.obolibrary.org/obo/MONDO_0013461,inosine triphosphatase deficiency +15.5685541,MONDO:0013475,http://purl.obolibrary.org/obo/MONDO_0013475,hypertrophic cardiomyopathy 18 +15.5685541,MONDO:0013537,http://purl.obolibrary.org/obo/MONDO_0013537,autosomal recessive nonsyndromic deafness 29 +15.5685541,MONDO:0013595,http://purl.obolibrary.org/obo/MONDO_0013595,hyperbiliverdinemia +15.5685541,MONDO:0013657,http://purl.obolibrary.org/obo/MONDO_0013657,"intellectual disability, autosomal dominant 10" +15.5685541,MONDO:0013687,http://purl.obolibrary.org/obo/MONDO_0013687,autosomal recessive spinocerebellar ataxia 12 +15.5685541,MONDO:0013853,http://purl.obolibrary.org/obo/MONDO_0013853,pontocerebellar hypoplasia type 1B +15.5685541,MONDO:0014115,http://purl.obolibrary.org/obo/MONDO_0014115,hypomyelination with brain stem and spinal cord involvement and leg spasticity +15.5685541,MONDO:0014117,http://purl.obolibrary.org/obo/MONDO_0014117,Charcot-Marie-Tooth disease type 4B3 +15.5685541,MONDO:0014146,http://purl.obolibrary.org/obo/MONDO_0014146,autosomal dominant hypocalcemia 2 +15.5685541,MONDO:0014165,http://purl.obolibrary.org/obo/MONDO_0014165,multiple congenital anomalies-hypotonia-seizures syndrome 3 +15.5685541,MONDO:0014168,http://purl.obolibrary.org/obo/MONDO_0014168,severe combined immunodeficiency due to CORO1A deficiency +15.5685541,MONDO:0014260,http://purl.obolibrary.org/obo/MONDO_0014260,"immunodeficiency, common variable, 10" +15.5685541,MONDO:0014351,http://purl.obolibrary.org/obo/MONDO_0014351,pontocerebellar hypoplasia type 9 +15.5685541,MONDO:0014361,http://purl.obolibrary.org/obo/MONDO_0014361,autism spectrum disorder due to AUTS2 deficiency +15.5685541,MONDO:0014390,http://purl.obolibrary.org/obo/MONDO_0014390,hypotrichosis 13 +15.5685541,MONDO:0014403,http://purl.obolibrary.org/obo/MONDO_0014403,short stature due to GHSR deficiency +15.5685541,MONDO:0014410,http://purl.obolibrary.org/obo/MONDO_0014410,spinocerebellar ataxia type 37 +15.5685541,MONDO:0014432,http://purl.obolibrary.org/obo/MONDO_0014432,Bardet-Biedl syndrome 2 +15.5685541,MONDO:0014434,http://purl.obolibrary.org/obo/MONDO_0014434,Bardet-Biedl syndrome 5 +15.5685541,MONDO:0014527,http://purl.obolibrary.org/obo/MONDO_0014527,progeroid features-hepatocellular carcinoma predisposition syndrome +15.5685541,MONDO:0014528,http://purl.obolibrary.org/obo/MONDO_0014528,chronic atrial and intestinal dysrhythmia +15.5685541,MONDO:0014531,http://purl.obolibrary.org/obo/MONDO_0014531,amyotrophic lateral sclerosis type 22 +15.5685541,MONDO:0014556,http://purl.obolibrary.org/obo/MONDO_0014556,"congenital contractures of the limbs and face, hypotonia, and developmental delay" +15.5685541,MONDO:0014692,http://purl.obolibrary.org/obo/MONDO_0014692,retinitis pigmentosa 74 +15.5685541,MONDO:0014745,http://purl.obolibrary.org/obo/MONDO_0014745,congenital myasthenic syndrome 19 +15.5685541,MONDO:0014799,http://purl.obolibrary.org/obo/MONDO_0014799,cataract 45 +15.5685541,MONDO:0014801,http://purl.obolibrary.org/obo/MONDO_0014801,even-plus syndrome +15.5685541,MONDO:0014893,http://purl.obolibrary.org/obo/MONDO_0014893,Okur-Chung neurodevelopmental syndrome +15.5685541,MONDO:0014897,http://purl.obolibrary.org/obo/MONDO_0014897,"portal hypertension, noncirrhotic" +15.5685541,MONDO:0015007,http://purl.obolibrary.org/obo/MONDO_0015007,"spastic paraplegia, intellectual disability, nystagmus, and obesity;" +15.5685541,MONDO:0015053,http://purl.obolibrary.org/obo/MONDO_0015053,hereditary angioedema type 1 +15.5685541,MONDO:0015057,http://purl.obolibrary.org/obo/MONDO_0015057,renin-angiotensin-aldosterone system-blocker-induced angioedema +15.5685541,MONDO:0015096,http://purl.obolibrary.org/obo/MONDO_0015096,familial hypofibrinogenemia +15.5685541,MONDO:0015466,http://purl.obolibrary.org/obo/MONDO_0015466,cranio-osteoarthropathy +15.5685541,MONDO:0015467,http://purl.obolibrary.org/obo/MONDO_0015467,"craniosynostosis, Philadelphia type" +15.5685541,MONDO:0015487,http://purl.obolibrary.org/obo/MONDO_0015487,fatal infantile encephalocardiomyopathy +15.5685541,MONDO:0015644,http://purl.obolibrary.org/obo/MONDO_0015644,audiogenic seizures +15.5685541,MONDO:0015986,http://purl.obolibrary.org/obo/MONDO_0015986,bilateral renal agenesis +15.5685541,MONDO:0016130,http://purl.obolibrary.org/obo/MONDO_0016130,fungal myositis +15.5685541,MONDO:0016190,http://purl.obolibrary.org/obo/MONDO_0016190,qualitative or quantitative defects of protein ZASP +15.5685541,MONDO:0016285,http://purl.obolibrary.org/obo/MONDO_0016285,papillary carcinoma of the cervix uteri +15.5685541,MONDO:0016287,http://purl.obolibrary.org/obo/MONDO_0016287,adenoid basal carcinoma of the cervix uteri +15.5685541,MONDO:0016441,http://purl.obolibrary.org/obo/MONDO_0016441,acquired pseudoxanthoma elasticum +15.5685541,MONDO:0016522,http://purl.obolibrary.org/obo/MONDO_0016522,Kousseff syndrome +15.5685541,MONDO:0016558,http://purl.obolibrary.org/obo/MONDO_0016558,familial congenital mirror movements +15.5685541,MONDO:0016566,http://purl.obolibrary.org/obo/MONDO_0016566,loiasis +15.5685541,MONDO:0016577,http://purl.obolibrary.org/obo/MONDO_0016577,biliary atresia with splenic malformation syndrome +15.5685541,MONDO:0016594,http://purl.obolibrary.org/obo/MONDO_0016594,superficial siderosis +15.5685541,MONDO:0016595,http://purl.obolibrary.org/obo/MONDO_0016595,inhalational anthrax +15.5685541,MONDO:0016610,http://purl.obolibrary.org/obo/MONDO_0016610,idiopathic eosinophilic myositis +15.5685541,MONDO:0016750,http://purl.obolibrary.org/obo/MONDO_0016750,microcephaly-cleft palate syndrome +15.5685541,MONDO:0016825,http://purl.obolibrary.org/obo/MONDO_0016825,mitochondrial myopathy-lactic acidosis-deafness syndrome +15.5685541,MONDO:0016838,http://purl.obolibrary.org/obo/MONDO_0016838,16q24.3 microdeletion syndrome +15.5685541,MONDO:0016881,http://purl.obolibrary.org/obo/MONDO_0016881,partial deletion of chromosome 19 +15.5685541,MONDO:0016903,http://purl.obolibrary.org/obo/MONDO_0016903,partial deletion of the long arm of chromosome 4 +15.5685541,MONDO:0016914,http://purl.obolibrary.org/obo/MONDO_0016914,partial deletion of the long arm of chromosome 16 +15.5685541,MONDO:0016972,http://purl.obolibrary.org/obo/MONDO_0016972,partial duplication of the long arm of chromosome 22 +15.5685541,MONDO:0017078,http://purl.obolibrary.org/obo/MONDO_0017078,cephalocele +15.5685541,MONDO:0017214,http://purl.obolibrary.org/obo/MONDO_0017214,vitamin B12-responsive methylmalonic acidemia +15.5685541,MONDO:0017320,http://purl.obolibrary.org/obo/MONDO_0017320,phosphoenolpyruvate carboxykinase deficiency +15.5685541,MONDO:0017407,http://purl.obolibrary.org/obo/MONDO_0017407,deficiency in anterior pituitary function - variable immunodeficiency syndrome +15.5685541,MONDO:0017427,http://purl.obolibrary.org/obo/MONDO_0017427,congenital deformities of limbs +15.5685541,MONDO:0017887,http://purl.obolibrary.org/obo/MONDO_0017887,renal cell carcinoma associated with neuroblastoma +15.5685541,MONDO:0017968,http://purl.obolibrary.org/obo/MONDO_0017968,"46,XY ovotesticular disorder of sex development" +15.5685541,MONDO:0018024,http://purl.obolibrary.org/obo/MONDO_0018024,hydroa vacciniforme +15.5685541,MONDO:0018113,http://purl.obolibrary.org/obo/MONDO_0018113,isolated plagiocephaly +15.5685541,MONDO:0018260,http://purl.obolibrary.org/obo/MONDO_0018260,scalp syndrome +15.5685541,MONDO:0018375,http://purl.obolibrary.org/obo/MONDO_0018375,traumatic avascular necrosis +15.5685541,MONDO:0018474,http://purl.obolibrary.org/obo/MONDO_0018474,13q12.3 microdeletion syndrome +15.5685541,MONDO:0018582,http://purl.obolibrary.org/obo/MONDO_0018582,GCGR-related hyperglucagonemia +15.5685541,MONDO:0018636,http://purl.obolibrary.org/obo/MONDO_0018636,autoimmune hemolytic anemia-autoimmune thrombocytopenia-primary immunodeficiency syndrome +15.5685541,MONDO:0018678,http://purl.obolibrary.org/obo/MONDO_0018678,polyclonal hyperviscosity syndrome +15.5685541,MONDO:0018953,http://purl.obolibrary.org/obo/MONDO_0018953,parietal foramina +15.5685541,MONDO:0019109,http://purl.obolibrary.org/obo/MONDO_0019109,CANOMAD syndrome +15.5685541,MONDO:0019208,http://purl.obolibrary.org/obo/MONDO_0019208,Bickerstaff brainstem encephalitis +15.5685541,MONDO:0019367,http://purl.obolibrary.org/obo/MONDO_0019367,regional odontodysplasia +15.5685541,MONDO:0019398,http://purl.obolibrary.org/obo/MONDO_0019398,desmin-related myopathy with Mallory body-like inclusions +15.5685541,MONDO:0019413,http://purl.obolibrary.org/obo/MONDO_0019413,ischio-vertebral syndrome +15.5685541,MONDO:0019428,http://purl.obolibrary.org/obo/MONDO_0019428,fried syndrome +15.5685541,MONDO:0019669,http://purl.obolibrary.org/obo/MONDO_0019669,hypochondrogenesis +15.5685541,MONDO:0019745,http://purl.obolibrary.org/obo/MONDO_0019745,cystinuria type A +15.5685541,MONDO:0019746,http://purl.obolibrary.org/obo/MONDO_0019746,cystinuria type B +15.5685541,MONDO:0019752,http://purl.obolibrary.org/obo/MONDO_0019752,pediatric Castleman disease +15.5685541,MONDO:0019765,http://purl.obolibrary.org/obo/MONDO_0019765,Celosomia +15.5685541,MONDO:0019825,http://purl.obolibrary.org/obo/MONDO_0019825,congenital coronary artery aneurysm +15.5685541,MONDO:0019884,http://purl.obolibrary.org/obo/MONDO_0019884,distal trisomy 10q +15.5685541,MONDO:0019990,http://purl.obolibrary.org/obo/MONDO_0019990,non-amyloid fibrillary glomerulopathy +15.5685541,MONDO:0020327,http://purl.obolibrary.org/obo/MONDO_0020327,"classic Hodgkin lymphoma, nodular sclerosis type" +15.5685541,MONDO:0020372,http://purl.obolibrary.org/obo/MONDO_0020372,early-onset sutural cataract +15.5685541,MONDO:0020480,http://purl.obolibrary.org/obo/MONDO_0020480,sulfite oxidase deficiency due to molybdenum cofactor deficiency +15.5685541,MONDO:0020649,http://purl.obolibrary.org/obo/MONDO_0020649,warty carcinoma of the penis +15.5685541,MONDO:0021033,http://purl.obolibrary.org/obo/MONDO_0021033,herpes zoster dermatitis +15.5685541,MONDO:0021171,http://purl.obolibrary.org/obo/MONDO_0021171,Timothy syndrome type 1 (disorder) +15.5685541,MONDO:0021458,http://purl.obolibrary.org/obo/MONDO_0021458,benign neoplasm of penis +15.5685541,MONDO:0021468,http://purl.obolibrary.org/obo/MONDO_0021468,benign neoplasm of adrenal medulla +15.5685541,MONDO:0021469,http://purl.obolibrary.org/obo/MONDO_0021469,benign neoplasm of anus +15.5685541,MONDO:0021483,http://purl.obolibrary.org/obo/MONDO_0021483,benign neoplasm of frontal sinus +15.5685541,MONDO:0021484,http://purl.obolibrary.org/obo/MONDO_0021484,benign neoplasm of maxillary sinus +15.5685541,MONDO:0021531,http://purl.obolibrary.org/obo/MONDO_0021531,fibroma of lung +15.5685541,MONDO:0021559,http://purl.obolibrary.org/obo/MONDO_0021559,non-autoimmune hemolytic anemia +15.5685541,MONDO:0021627,http://purl.obolibrary.org/obo/MONDO_0021627,eyelid capillary hemangioma +15.5685541,MONDO:0022403,http://purl.obolibrary.org/obo/MONDO_0022403,Ahumada Del Castillo syndrome +15.5685541,MONDO:0022538,http://purl.obolibrary.org/obo/MONDO_0022538,leukoplakia of gingiva +15.5685541,MONDO:0022553,http://purl.obolibrary.org/obo/MONDO_0022553,BD syndrome +15.5685541,MONDO:0022607,http://purl.obolibrary.org/obo/MONDO_0022607,extraovarian Brenner tumor of the vagina +15.5685541,MONDO:0022685,http://purl.obolibrary.org/obo/MONDO_0022685,cerebellar agenesis +15.5685541,MONDO:0022812,http://purl.obolibrary.org/obo/MONDO_0022812,complement receptor deficiency +15.5685541,MONDO:0022858,http://purl.obolibrary.org/obo/MONDO_0022858,continuous spike-wave during slow sleep syndrome +15.5685541,MONDO:0022883,http://purl.obolibrary.org/obo/MONDO_0022883,craniofacial and skeletal defects +15.5685541,MONDO:0023023,http://purl.obolibrary.org/obo/MONDO_0023023,neonatal dacryocystitis +15.5685541,MONDO:0023062,http://purl.obolibrary.org/obo/MONDO_0023062,encephalocele anencephaly +15.5685541,MONDO:0023106,http://purl.obolibrary.org/obo/MONDO_0023106,Fairbank disease +15.5685541,MONDO:0023388,http://purl.obolibrary.org/obo/MONDO_0023388,pityriasis rotunda +15.5685541,MONDO:0024265,http://purl.obolibrary.org/obo/MONDO_0024265,Duane syndrome type 1 +15.5685541,MONDO:0024346,http://purl.obolibrary.org/obo/MONDO_0024346,pityriasis amiantacea +15.5685541,MONDO:0024349,http://purl.obolibrary.org/obo/MONDO_0024349,pityriasis alba +15.5685541,MONDO:0024507,http://purl.obolibrary.org/obo/MONDO_0024507,aniridia 1 +15.5685541,MONDO:0024516,http://purl.obolibrary.org/obo/MONDO_0024516,familial acne inversa +15.5685541,MONDO:0024685,http://purl.obolibrary.org/obo/MONDO_0024685,Philadelphia-positive myelogenous leukemia +15.5685541,MONDO:0025445,http://purl.obolibrary.org/obo/MONDO_0025445,Wieacker-Wolff syndrome (spectrum) +15.5685541,MONDO:0025556,http://purl.obolibrary.org/obo/MONDO_0025556,isocyanate induced asthma +15.5685541,MONDO:0033954,http://purl.obolibrary.org/obo/MONDO_0033954,monoclonal mast cell activation syndrome +15.5685541,MONDO:0034021,http://purl.obolibrary.org/obo/MONDO_0034021,spondylodysplastic Ehlers-Danlos syndrome +15.5685541,MONDO:0034024,http://purl.obolibrary.org/obo/MONDO_0034024,kyphoscoliotic Ehlers-Danlos syndrome +15.5685541,MONDO:0042233,http://purl.obolibrary.org/obo/MONDO_0042233,disseminated candidiasis +15.5685541,MONDO:0042963,http://purl.obolibrary.org/obo/MONDO_0042963,wandering spleen +15.5685541,MONDO:0043297,http://purl.obolibrary.org/obo/MONDO_0043297,vibrio vulnificus infectious disease +15.5685541,MONDO:0043765,http://purl.obolibrary.org/obo/MONDO_0043765,presbycusis +15.5685541,MONDO:0044633,http://purl.obolibrary.org/obo/MONDO_0044633,idiopathic pleuroparenchymal fibroelastosis +15.5685541,MONDO:0044689,http://purl.obolibrary.org/obo/MONDO_0044689,recurrent idiopathic neuroretinitis +15.5685541,MONDO:0056815,http://purl.obolibrary.org/obo/MONDO_0056815,liver adenosquamous carcinoma +15.5685541,MONDO:0060457,http://purl.obolibrary.org/obo/MONDO_0060457,autoinflammation with arthritis and dyskeratosis +15.5685541,MONDO:0100078,http://purl.obolibrary.org/obo/MONDO_0100078,resistant hypertension +15.5685541,MONDO:0100274,http://purl.obolibrary.org/obo/MONDO_0100274,alkylglycerone-phosphate synthase deficiency +15.5685541,MOP:0000406,http://purl.obolibrary.org/obo/MOP_0000406,none +15.5685541,MOP:0000638,http://purl.obolibrary.org/obo/MOP_0000638,none +15.5685541,NCBITaxon:1003877,http://purl.obolibrary.org/obo/NCBITaxon_1003877,none +15.5685541,NCBITaxon:1009842,http://purl.obolibrary.org/obo/NCBITaxon_1009842,none +15.5685541,NCBITaxon:101674,http://purl.obolibrary.org/obo/NCBITaxon_101674,none +15.5685541,NCBITaxon:1016879,http://purl.obolibrary.org/obo/NCBITaxon_1016879,none +15.5685541,NCBITaxon:101764,http://purl.obolibrary.org/obo/NCBITaxon_101764,none +15.5685541,NCBITaxon:10248,http://purl.obolibrary.org/obo/NCBITaxon_10248,none +15.5685541,NCBITaxon:103881,http://purl.obolibrary.org/obo/NCBITaxon_103881,none +15.5685541,NCBITaxon:1052068,http://purl.obolibrary.org/obo/NCBITaxon_1052068,none +15.5685541,NCBITaxon:10522,http://purl.obolibrary.org/obo/NCBITaxon_10522,none +15.5685541,NCBITaxon:105429,http://purl.obolibrary.org/obo/NCBITaxon_105429,none +15.5685541,NCBITaxon:105430,http://purl.obolibrary.org/obo/NCBITaxon_105430,none +15.5685541,NCBITaxon:10587,http://purl.obolibrary.org/obo/NCBITaxon_10587,none +15.5685541,NCBITaxon:10594,http://purl.obolibrary.org/obo/NCBITaxon_10594,none +15.5685541,NCBITaxon:10595,http://purl.obolibrary.org/obo/NCBITaxon_10595,none +15.5685541,NCBITaxon:10614,http://purl.obolibrary.org/obo/NCBITaxon_10614,none +15.5685541,NCBITaxon:106820,http://purl.obolibrary.org/obo/NCBITaxon_106820,none +15.5685541,NCBITaxon:10685,http://purl.obolibrary.org/obo/NCBITaxon_10685,none +15.5685541,NCBITaxon:1073,http://purl.obolibrary.org/obo/NCBITaxon_1073,none +15.5685541,NCBITaxon:107324,http://purl.obolibrary.org/obo/NCBITaxon_107324,none +15.5685541,NCBITaxon:10879,http://purl.obolibrary.org/obo/NCBITaxon_10879,none +15.5685541,NCBITaxon:109356,http://purl.obolibrary.org/obo/NCBITaxon_109356,none +15.5685541,NCBITaxon:1094249,http://purl.obolibrary.org/obo/NCBITaxon_1094249,none +15.5685541,NCBITaxon:10981,http://purl.obolibrary.org/obo/NCBITaxon_10981,none +15.5685541,NCBITaxon:11073,http://purl.obolibrary.org/obo/NCBITaxon_11073,none +15.5685541,NCBITaxon:11139,http://purl.obolibrary.org/obo/NCBITaxon_11139,none +15.5685541,NCBITaxon:1117633,http://purl.obolibrary.org/obo/NCBITaxon_1117633,none +15.5685541,NCBITaxon:11235,http://purl.obolibrary.org/obo/NCBITaxon_11235,none +15.5685541,NCBITaxon:11259,http://purl.obolibrary.org/obo/NCBITaxon_11259,none +15.5685541,NCBITaxon:1129,http://purl.obolibrary.org/obo/NCBITaxon_1129,none +15.5685541,NCBITaxon:1129034,http://purl.obolibrary.org/obo/NCBITaxon_1129034,none +15.5685541,NCBITaxon:113508,http://purl.obolibrary.org/obo/NCBITaxon_113508,none +15.5685541,NCBITaxon:1137986,http://purl.obolibrary.org/obo/NCBITaxon_1137986,none +15.5685541,NCBITaxon:1141488,http://purl.obolibrary.org/obo/NCBITaxon_1141488,none +15.5685541,NCBITaxon:1146873,http://purl.obolibrary.org/obo/NCBITaxon_1146873,none +15.5685541,NCBITaxon:114848,http://purl.obolibrary.org/obo/NCBITaxon_114848,none +15.5685541,NCBITaxon:114953,http://purl.obolibrary.org/obo/NCBITaxon_114953,none +15.5685541,NCBITaxon:116166,http://purl.obolibrary.org/obo/NCBITaxon_116166,none +15.5685541,NCBITaxon:1168550,http://purl.obolibrary.org/obo/NCBITaxon_1168550,none +15.5685541,NCBITaxon:118021,http://purl.obolibrary.org/obo/NCBITaxon_118021,none +15.5685541,NCBITaxon:11816,http://purl.obolibrary.org/obo/NCBITaxon_11816,none +15.5685541,NCBITaxon:1182518,http://purl.obolibrary.org/obo/NCBITaxon_1182518,none +15.5685541,NCBITaxon:11841,http://purl.obolibrary.org/obo/NCBITaxon_11841,none +15.5685541,NCBITaxon:11879,http://purl.obolibrary.org/obo/NCBITaxon_11879,none +15.5685541,NCBITaxon:118860,http://purl.obolibrary.org/obo/NCBITaxon_118860,none +15.5685541,NCBITaxon:118861,http://purl.obolibrary.org/obo/NCBITaxon_118861,none +15.5685541,NCBITaxon:1188991,http://purl.obolibrary.org/obo/NCBITaxon_1188991,none +15.5685541,NCBITaxon:11909,http://purl.obolibrary.org/obo/NCBITaxon_11909,Human T-lymphotropic virus 2 +15.5685541,NCBITaxon:119158,http://purl.obolibrary.org/obo/NCBITaxon_119158,none +15.5685541,NCBITaxon:119197,http://purl.obolibrary.org/obo/NCBITaxon_119197,none +15.5685541,NCBITaxon:11945,http://purl.obolibrary.org/obo/NCBITaxon_11945,none +15.5685541,NCBITaxon:1195087,http://purl.obolibrary.org/obo/NCBITaxon_1195087,none +15.5685541,NCBITaxon:11966,http://purl.obolibrary.org/obo/NCBITaxon_11966,none +15.5685541,NCBITaxon:119691,http://purl.obolibrary.org/obo/NCBITaxon_119691,none +15.5685541,NCBITaxon:1198135,http://purl.obolibrary.org/obo/NCBITaxon_1198135,none +15.5685541,NCBITaxon:11990,http://purl.obolibrary.org/obo/NCBITaxon_11990,none +15.5685541,NCBITaxon:1202142,http://purl.obolibrary.org/obo/NCBITaxon_1202142,none +15.5685541,NCBITaxon:120499,http://purl.obolibrary.org/obo/NCBITaxon_120499,none +15.5685541,NCBITaxon:121178,http://purl.obolibrary.org/obo/NCBITaxon_121178,none +15.5685541,NCBITaxon:1212,http://purl.obolibrary.org/obo/NCBITaxon_1212,none +15.5685541,NCBITaxon:1213,http://purl.obolibrary.org/obo/NCBITaxon_1213,none +15.5685541,NCBITaxon:1213621,http://purl.obolibrary.org/obo/NCBITaxon_1213621,none +15.5685541,NCBITaxon:1217,http://purl.obolibrary.org/obo/NCBITaxon_1217,none +15.5685541,NCBITaxon:1218,http://purl.obolibrary.org/obo/NCBITaxon_1218,none +15.5685541,NCBITaxon:12219,http://purl.obolibrary.org/obo/NCBITaxon_12219,none +15.5685541,NCBITaxon:12226,http://purl.obolibrary.org/obo/NCBITaxon_12226,none +15.5685541,NCBITaxon:12233,http://purl.obolibrary.org/obo/NCBITaxon_12233,none +15.5685541,NCBITaxon:12286,http://purl.obolibrary.org/obo/NCBITaxon_12286,none +15.5685541,NCBITaxon:12312,http://purl.obolibrary.org/obo/NCBITaxon_12312,none +15.5685541,NCBITaxon:1232640,http://purl.obolibrary.org/obo/NCBITaxon_1232640,none +15.5685541,NCBITaxon:123354,http://purl.obolibrary.org/obo/NCBITaxon_123354,none +15.5685541,NCBITaxon:123357,http://purl.obolibrary.org/obo/NCBITaxon_123357,none +15.5685541,NCBITaxon:1233870,http://purl.obolibrary.org/obo/NCBITaxon_1233870,none +15.5685541,NCBITaxon:123430,http://purl.obolibrary.org/obo/NCBITaxon_123430,none +15.5685541,NCBITaxon:1234611,http://purl.obolibrary.org/obo/NCBITaxon_1234611,none +15.5685541,NCBITaxon:123517,http://purl.obolibrary.org/obo/NCBITaxon_123517,none +15.5685541,NCBITaxon:1235996,http://purl.obolibrary.org/obo/NCBITaxon_1235996,none +15.5685541,NCBITaxon:123731,http://purl.obolibrary.org/obo/NCBITaxon_123731,none +15.5685541,NCBITaxon:1239565,http://purl.obolibrary.org/obo/NCBITaxon_1239565,none +15.5685541,NCBITaxon:12430,http://purl.obolibrary.org/obo/NCBITaxon_12430,none +15.5685541,NCBITaxon:124754,http://purl.obolibrary.org/obo/NCBITaxon_124754,none +15.5685541,NCBITaxon:124755,http://purl.obolibrary.org/obo/NCBITaxon_124755,none +15.5685541,NCBITaxon:1249508,http://purl.obolibrary.org/obo/NCBITaxon_1249508,none +15.5685541,NCBITaxon:12513,http://purl.obolibrary.org/obo/NCBITaxon_12513,none +15.5685541,NCBITaxon:125216,http://purl.obolibrary.org/obo/NCBITaxon_125216,none +15.5685541,NCBITaxon:126,http://purl.obolibrary.org/obo/NCBITaxon_126,none +15.5685541,NCBITaxon:1272953,http://purl.obolibrary.org/obo/NCBITaxon_1272953,none +15.5685541,NCBITaxon:1281454,http://purl.obolibrary.org/obo/NCBITaxon_1281454,none +15.5685541,NCBITaxon:128416,http://purl.obolibrary.org/obo/NCBITaxon_128416,none +15.5685541,NCBITaxon:129246,http://purl.obolibrary.org/obo/NCBITaxon_129246,none +15.5685541,NCBITaxon:129251,http://purl.obolibrary.org/obo/NCBITaxon_129251,none +15.5685541,NCBITaxon:1295174,http://purl.obolibrary.org/obo/NCBITaxon_1295174,none +15.5685541,NCBITaxon:1299313,http://purl.obolibrary.org/obo/NCBITaxon_1299313,none +15.5685541,NCBITaxon:13012,http://purl.obolibrary.org/obo/NCBITaxon_13012,none +15.5685541,NCBITaxon:1301220,http://purl.obolibrary.org/obo/NCBITaxon_1301220,none +15.5685541,NCBITaxon:13013,http://purl.obolibrary.org/obo/NCBITaxon_13013,none +15.5685541,NCBITaxon:130267,http://purl.obolibrary.org/obo/NCBITaxon_130267,none +15.5685541,NCBITaxon:130369,http://purl.obolibrary.org/obo/NCBITaxon_130369,none +15.5685541,NCBITaxon:130499,http://purl.obolibrary.org/obo/NCBITaxon_130499,none +15.5685541,NCBITaxon:130665,http://purl.obolibrary.org/obo/NCBITaxon_130665,none +15.5685541,NCBITaxon:13097,http://purl.obolibrary.org/obo/NCBITaxon_13097,none +15.5685541,NCBITaxon:13103,http://purl.obolibrary.org/obo/NCBITaxon_13103,none +15.5685541,NCBITaxon:13105,http://purl.obolibrary.org/obo/NCBITaxon_13105,none +15.5685541,NCBITaxon:13106,http://purl.obolibrary.org/obo/NCBITaxon_13106,Lepomis macrochirus +15.5685541,NCBITaxon:13118,http://purl.obolibrary.org/obo/NCBITaxon_13118,none +15.5685541,NCBITaxon:1312875,http://purl.obolibrary.org/obo/NCBITaxon_1312875,none +15.5685541,NCBITaxon:132406,http://purl.obolibrary.org/obo/NCBITaxon_132406,none +15.5685541,NCBITaxon:13273,http://purl.obolibrary.org/obo/NCBITaxon_13273,none +15.5685541,NCBITaxon:1334443,http://purl.obolibrary.org/obo/NCBITaxon_1334443,none +15.5685541,NCBITaxon:1336370,http://purl.obolibrary.org/obo/NCBITaxon_1336370,none +15.5685541,NCBITaxon:1336371,http://purl.obolibrary.org/obo/NCBITaxon_1336371,none +15.5685541,NCBITaxon:1341876,http://purl.obolibrary.org/obo/NCBITaxon_1341876,none +15.5685541,NCBITaxon:134629,http://purl.obolibrary.org/obo/NCBITaxon_134629,none +15.5685541,NCBITaxon:134630,http://purl.obolibrary.org/obo/NCBITaxon_134630,none +15.5685541,NCBITaxon:1352823,http://purl.obolibrary.org/obo/NCBITaxon_1352823,none +15.5685541,NCBITaxon:135429,http://purl.obolibrary.org/obo/NCBITaxon_135429,none +15.5685541,NCBITaxon:135748,http://purl.obolibrary.org/obo/NCBITaxon_135748,none +15.5685541,NCBITaxon:1358807,http://purl.obolibrary.org/obo/NCBITaxon_1358807,none +15.5685541,NCBITaxon:136234,http://purl.obolibrary.org/obo/NCBITaxon_136234,none +15.5685541,NCBITaxon:137556,http://purl.obolibrary.org/obo/NCBITaxon_137556,none +15.5685541,NCBITaxon:137993,http://purl.obolibrary.org/obo/NCBITaxon_137993,none +15.5685541,NCBITaxon:138011,http://purl.obolibrary.org/obo/NCBITaxon_138011,none +15.5685541,NCBITaxon:13802,http://purl.obolibrary.org/obo/NCBITaxon_13802,none +15.5685541,NCBITaxon:13803,http://purl.obolibrary.org/obo/NCBITaxon_13803,none +15.5685541,NCBITaxon:13804,http://purl.obolibrary.org/obo/NCBITaxon_13804,none +15.5685541,NCBITaxon:1381007,http://purl.obolibrary.org/obo/NCBITaxon_1381007,none +15.5685541,NCBITaxon:139270,http://purl.obolibrary.org/obo/NCBITaxon_139270,none +15.5685541,NCBITaxon:1394979,http://purl.obolibrary.org/obo/NCBITaxon_1394979,none +15.5685541,NCBITaxon:140409,http://purl.obolibrary.org/obo/NCBITaxon_140409,none +15.5685541,NCBITaxon:1432135,http://purl.obolibrary.org/obo/NCBITaxon_1432135,none +15.5685541,NCBITaxon:143894,http://purl.obolibrary.org/obo/NCBITaxon_143894,none +15.5685541,NCBITaxon:1446378,http://purl.obolibrary.org/obo/NCBITaxon_1446378,none +15.5685541,NCBITaxon:1452514,http://purl.obolibrary.org/obo/NCBITaxon_1452514,none +15.5685541,NCBITaxon:1453410,http://purl.obolibrary.org/obo/NCBITaxon_1453410,none +15.5685541,NCBITaxon:145351,http://purl.obolibrary.org/obo/NCBITaxon_145351,none +15.5685541,NCBITaxon:145639,http://purl.obolibrary.org/obo/NCBITaxon_145639,none +15.5685541,NCBITaxon:145640,http://purl.obolibrary.org/obo/NCBITaxon_145640,none +15.5685541,NCBITaxon:146130,http://purl.obolibrary.org/obo/NCBITaxon_146130,none +15.5685541,NCBITaxon:1462594,http://purl.obolibrary.org/obo/NCBITaxon_1462594,none +15.5685541,NCBITaxon:1462681,http://purl.obolibrary.org/obo/NCBITaxon_1462681,none +15.5685541,NCBITaxon:147431,http://purl.obolibrary.org/obo/NCBITaxon_147431,none +15.5685541,NCBITaxon:147551,http://purl.obolibrary.org/obo/NCBITaxon_147551,none +15.5685541,NCBITaxon:1484953,http://purl.obolibrary.org/obo/NCBITaxon_1484953,none +15.5685541,NCBITaxon:1489340,http://purl.obolibrary.org/obo/NCBITaxon_1489340,Elopocephalai +15.5685541,NCBITaxon:1489874,http://purl.obolibrary.org/obo/NCBITaxon_1489874,none +15.5685541,NCBITaxon:1489902,http://purl.obolibrary.org/obo/NCBITaxon_1489902,none +15.5685541,NCBITaxon:1498475,http://purl.obolibrary.org/obo/NCBITaxon_1498475,none +15.5685541,NCBITaxon:1511808,http://purl.obolibrary.org/obo/NCBITaxon_1511808,none +15.5685541,NCBITaxon:1513461,http://purl.obolibrary.org/obo/NCBITaxon_1513461,none +15.5685541,NCBITaxon:1523891,http://purl.obolibrary.org/obo/NCBITaxon_1523891,none +15.5685541,NCBITaxon:153158,http://purl.obolibrary.org/obo/NCBITaxon_153158,none +15.5685541,NCBITaxon:1545893,http://purl.obolibrary.org/obo/NCBITaxon_1545893,none +15.5685541,NCBITaxon:156631,http://purl.obolibrary.org/obo/NCBITaxon_156631,none +15.5685541,NCBITaxon:157,http://purl.obolibrary.org/obo/NCBITaxon_157,Treponema +15.5685541,NCBITaxon:157270,http://purl.obolibrary.org/obo/NCBITaxon_157270,none +15.5685541,NCBITaxon:15745,http://purl.obolibrary.org/obo/NCBITaxon_15745,none +15.5685541,NCBITaxon:1585426,http://purl.obolibrary.org/obo/NCBITaxon_1585426,none +15.5685541,NCBITaxon:1589884,http://purl.obolibrary.org/obo/NCBITaxon_1589884,none +15.5685541,NCBITaxon:159145,http://purl.obolibrary.org/obo/NCBITaxon_159145,none +15.5685541,NCBITaxon:160842,http://purl.obolibrary.org/obo/NCBITaxon_160842,none +15.5685541,NCBITaxon:163093,http://purl.obolibrary.org/obo/NCBITaxon_163093,none +15.5685541,NCBITaxon:163485,http://purl.obolibrary.org/obo/NCBITaxon_163485,none +15.5685541,NCBITaxon:163654,http://purl.obolibrary.org/obo/NCBITaxon_163654,none +15.5685541,NCBITaxon:164113,http://purl.obolibrary.org/obo/NCBITaxon_164113,none +15.5685541,NCBITaxon:164754,http://purl.obolibrary.org/obo/NCBITaxon_164754,none +15.5685541,NCBITaxon:1648043,http://purl.obolibrary.org/obo/NCBITaxon_1648043,none +15.5685541,NCBITaxon:166122,http://purl.obolibrary.org/obo/NCBITaxon_166122,none +15.5685541,NCBITaxon:16737,http://purl.obolibrary.org/obo/NCBITaxon_16737,none +15.5685541,NCBITaxon:167427,http://purl.obolibrary.org/obo/NCBITaxon_167427,none +15.5685541,NCBITaxon:167489,http://purl.obolibrary.org/obo/NCBITaxon_167489,none +15.5685541,NCBITaxon:1678142,http://purl.obolibrary.org/obo/NCBITaxon_1678142,none +15.5685541,NCBITaxon:1678147,http://purl.obolibrary.org/obo/NCBITaxon_1678147,none +15.5685541,NCBITaxon:168694,http://purl.obolibrary.org/obo/NCBITaxon_168694,none +15.5685541,NCBITaxon:169623,http://purl.obolibrary.org/obo/NCBITaxon_169623,none +15.5685541,NCBITaxon:169625,http://purl.obolibrary.org/obo/NCBITaxon_169625,none +15.5685541,NCBITaxon:169660,http://purl.obolibrary.org/obo/NCBITaxon_169660,none +15.5685541,NCBITaxon:170528,http://purl.obolibrary.org/obo/NCBITaxon_170528,none +15.5685541,NCBITaxon:171373,http://purl.obolibrary.org/obo/NCBITaxon_171373,none +15.5685541,NCBITaxon:1732196,http://purl.obolibrary.org/obo/NCBITaxon_1732196,none +15.5685541,NCBITaxon:173667,http://purl.obolibrary.org/obo/NCBITaxon_173667,none +15.5685541,NCBITaxon:174679,http://purl.obolibrary.org/obo/NCBITaxon_174679,none +15.5685541,NCBITaxon:174680,http://purl.obolibrary.org/obo/NCBITaxon_174680,none +15.5685541,NCBITaxon:176653,http://purl.obolibrary.org/obo/NCBITaxon_176653,none +15.5685541,NCBITaxon:1769247,http://purl.obolibrary.org/obo/NCBITaxon_1769247,none +15.5685541,NCBITaxon:178599,http://purl.obolibrary.org/obo/NCBITaxon_178599,none +15.5685541,NCBITaxon:179239,http://purl.obolibrary.org/obo/NCBITaxon_179239,none +15.5685541,NCBITaxon:1799696,http://purl.obolibrary.org/obo/NCBITaxon_1799696,none +15.5685541,NCBITaxon:181003,http://purl.obolibrary.org/obo/NCBITaxon_181003,none +15.5685541,NCBITaxon:182093,http://purl.obolibrary.org/obo/NCBITaxon_182093,none +15.5685541,NCBITaxon:182234,http://purl.obolibrary.org/obo/NCBITaxon_182234,none +15.5685541,NCBITaxon:182452,http://purl.obolibrary.org/obo/NCBITaxon_182452,none +15.5685541,NCBITaxon:1843491,http://purl.obolibrary.org/obo/NCBITaxon_1843491,none +15.5685541,NCBITaxon:1857845,http://purl.obolibrary.org/obo/NCBITaxon_1857845,none +15.5685541,NCBITaxon:185954,http://purl.obolibrary.org/obo/NCBITaxon_185954,none +15.5685541,NCBITaxon:186373,http://purl.obolibrary.org/obo/NCBITaxon_186373,none +15.5685541,NCBITaxon:186624,http://purl.obolibrary.org/obo/NCBITaxon_186624,Elopocephala +15.5685541,NCBITaxon:186766,http://purl.obolibrary.org/obo/NCBITaxon_186766,none +15.5685541,NCBITaxon:186768,http://purl.obolibrary.org/obo/NCBITaxon_186768,none +15.5685541,NCBITaxon:18794,http://purl.obolibrary.org/obo/NCBITaxon_18794,none +15.5685541,NCBITaxon:1884452,http://purl.obolibrary.org/obo/NCBITaxon_1884452,none +15.5685541,NCBITaxon:1884453,http://purl.obolibrary.org/obo/NCBITaxon_1884453,none +15.5685541,NCBITaxon:1890426,http://purl.obolibrary.org/obo/NCBITaxon_1890426,none +15.5685541,NCBITaxon:189290,http://purl.obolibrary.org/obo/NCBITaxon_189290,none +15.5685541,NCBITaxon:190277,http://purl.obolibrary.org/obo/NCBITaxon_190277,none +15.5685541,NCBITaxon:1907176,http://purl.obolibrary.org/obo/NCBITaxon_1907176,none +15.5685541,NCBITaxon:1921703,http://purl.obolibrary.org/obo/NCBITaxon_1921703,none +15.5685541,NCBITaxon:192204,http://purl.obolibrary.org/obo/NCBITaxon_192204,none +15.5685541,NCBITaxon:1926313,http://purl.obolibrary.org/obo/NCBITaxon_1926313,none +15.5685541,NCBITaxon:193121,http://purl.obolibrary.org/obo/NCBITaxon_193121,none +15.5685541,NCBITaxon:1933188,http://purl.obolibrary.org/obo/NCBITaxon_1933188,none +15.5685541,NCBITaxon:1933293,http://purl.obolibrary.org/obo/NCBITaxon_1933293,none +15.5685541,NCBITaxon:1933304,http://purl.obolibrary.org/obo/NCBITaxon_1933304,none +15.5685541,NCBITaxon:194441,http://purl.obolibrary.org/obo/NCBITaxon_194441,Primate T-lymphotropic virus 2 +15.5685541,NCBITaxon:194918,http://purl.obolibrary.org/obo/NCBITaxon_194918,none +15.5685541,NCBITaxon:194924,http://purl.obolibrary.org/obo/NCBITaxon_194924,Desulfovibrionaceae +15.5685541,NCBITaxon:196093,http://purl.obolibrary.org/obo/NCBITaxon_196093,none +15.5685541,NCBITaxon:1968429,http://purl.obolibrary.org/obo/NCBITaxon_1968429,none +15.5685541,NCBITaxon:1972614,http://purl.obolibrary.org/obo/NCBITaxon_1972614,none +15.5685541,NCBITaxon:197265,http://purl.obolibrary.org/obo/NCBITaxon_197265,none +15.5685541,NCBITaxon:1978182,http://purl.obolibrary.org/obo/NCBITaxon_1978182,none +15.5685541,NCBITaxon:1978535,http://purl.obolibrary.org/obo/NCBITaxon_1978535,none +15.5685541,NCBITaxon:1978537,http://purl.obolibrary.org/obo/NCBITaxon_1978537,none +15.5685541,NCBITaxon:1978544,http://purl.obolibrary.org/obo/NCBITaxon_1978544,none +15.5685541,NCBITaxon:1980490,http://purl.obolibrary.org/obo/NCBITaxon_1980490,Seoul orthohantavirus +15.5685541,NCBITaxon:198310,http://purl.obolibrary.org/obo/NCBITaxon_198310,none +15.5685541,NCBITaxon:1985693,http://purl.obolibrary.org/obo/NCBITaxon_1985693,none +15.5685541,NCBITaxon:200401,http://purl.obolibrary.org/obo/NCBITaxon_200401,none +15.5685541,NCBITaxon:20202,http://purl.obolibrary.org/obo/NCBITaxon_20202,none +15.5685541,NCBITaxon:2022856,http://purl.obolibrary.org/obo/NCBITaxon_2022856,none +15.5685541,NCBITaxon:202907,http://purl.obolibrary.org/obo/NCBITaxon_202907,none +15.5685541,NCBITaxon:2034995,http://purl.obolibrary.org/obo/NCBITaxon_2034995,none +15.5685541,NCBITaxon:203693,http://purl.obolibrary.org/obo/NCBITaxon_203693,none +15.5685541,NCBITaxon:203864,http://purl.obolibrary.org/obo/NCBITaxon_203864,none +15.5685541,NCBITaxon:204933,http://purl.obolibrary.org/obo/NCBITaxon_204933,none +15.5685541,NCBITaxon:206161,http://purl.obolibrary.org/obo/NCBITaxon_206161,none +15.5685541,NCBITaxon:2068722,http://purl.obolibrary.org/obo/NCBITaxon_2068722,none +15.5685541,NCBITaxon:207246,http://purl.obolibrary.org/obo/NCBITaxon_207246,none +15.5685541,NCBITaxon:2072717,http://purl.obolibrary.org/obo/NCBITaxon_2072717,none +15.5685541,NCBITaxon:207340,http://purl.obolibrary.org/obo/NCBITaxon_207340,none +15.5685541,NCBITaxon:208084,http://purl.obolibrary.org/obo/NCBITaxon_208084,none +15.5685541,NCBITaxon:211224,http://purl.obolibrary.org/obo/NCBITaxon_211224,none +15.5685541,NCBITaxon:211225,http://purl.obolibrary.org/obo/NCBITaxon_211225,none +15.5685541,NCBITaxon:212035,http://purl.obolibrary.org/obo/NCBITaxon_212035,none +15.5685541,NCBITaxon:213115,http://purl.obolibrary.org/obo/NCBITaxon_213115,Desulfovibrionales +15.5685541,NCBITaxon:216275,http://purl.obolibrary.org/obo/NCBITaxon_216275,Vetigastropoda +15.5685541,NCBITaxon:216572,http://purl.obolibrary.org/obo/NCBITaxon_216572,none +15.5685541,NCBITaxon:216702,http://purl.obolibrary.org/obo/NCBITaxon_216702,none +15.5685541,NCBITaxon:216811,http://purl.obolibrary.org/obo/NCBITaxon_216811,none +15.5685541,NCBITaxon:218667,http://purl.obolibrary.org/obo/NCBITaxon_218667,none +15.5685541,NCBITaxon:219128,http://purl.obolibrary.org/obo/NCBITaxon_219128,none +15.5685541,NCBITaxon:219321,http://purl.obolibrary.org/obo/NCBITaxon_219321,none +15.5685541,NCBITaxon:219479,http://purl.obolibrary.org/obo/NCBITaxon_219479,none +15.5685541,NCBITaxon:219744,http://purl.obolibrary.org/obo/NCBITaxon_219744,none +15.5685541,NCBITaxon:221899,http://purl.obolibrary.org/obo/NCBITaxon_221899,none +15.5685541,NCBITaxon:2219693,http://purl.obolibrary.org/obo/NCBITaxon_2219693,none +15.5685541,NCBITaxon:22274,http://purl.obolibrary.org/obo/NCBITaxon_22274,none +15.5685541,NCBITaxon:223332,http://purl.obolibrary.org/obo/NCBITaxon_223332,none +15.5685541,NCBITaxon:223358,http://purl.obolibrary.org/obo/NCBITaxon_223358,none +15.5685541,NCBITaxon:224756,http://purl.obolibrary.org/obo/NCBITaxon_224756,none +15.5685541,NCBITaxon:22774,http://purl.obolibrary.org/obo/NCBITaxon_22774,none +15.5685541,NCBITaxon:23066,http://purl.obolibrary.org/obo/NCBITaxon_23066,none +15.5685541,NCBITaxon:23143,http://purl.obolibrary.org/obo/NCBITaxon_23143,none +15.5685541,NCBITaxon:233051,http://purl.obolibrary.org/obo/NCBITaxon_233051,none +15.5685541,NCBITaxon:235266,http://purl.obolibrary.org/obo/NCBITaxon_235266,none +15.5685541,NCBITaxon:237,http://purl.obolibrary.org/obo/NCBITaxon_237,none +15.5685541,NCBITaxon:240555,http://purl.obolibrary.org/obo/NCBITaxon_240555,none +15.5685541,NCBITaxon:240708,http://purl.obolibrary.org/obo/NCBITaxon_240708,none +15.5685541,NCBITaxon:241789,http://purl.obolibrary.org/obo/NCBITaxon_241789,none +15.5685541,NCBITaxon:241802,http://purl.obolibrary.org/obo/NCBITaxon_241802,none +15.5685541,NCBITaxon:245074,http://purl.obolibrary.org/obo/NCBITaxon_245074,none +15.5685541,NCBITaxon:248811,http://purl.obolibrary.org/obo/NCBITaxon_248811,none +15.5685541,NCBITaxon:248992,http://purl.obolibrary.org/obo/NCBITaxon_248992,none +15.5685541,NCBITaxon:251695,http://purl.obolibrary.org/obo/NCBITaxon_251695,none +15.5685541,NCBITaxon:25473,http://purl.obolibrary.org/obo/NCBITaxon_25473,none +15.5685541,NCBITaxon:255727,http://purl.obolibrary.org/obo/NCBITaxon_255727,none +15.5685541,NCBITaxon:255893,http://purl.obolibrary.org/obo/NCBITaxon_255893,none +15.5685541,NCBITaxon:2560217,http://purl.obolibrary.org/obo/NCBITaxon_2560217,none +15.5685541,NCBITaxon:2560374,http://purl.obolibrary.org/obo/NCBITaxon_2560374,none +15.5685541,NCBITaxon:2560529,http://purl.obolibrary.org/obo/NCBITaxon_2560529,none +15.5685541,NCBITaxon:2560718,http://purl.obolibrary.org/obo/NCBITaxon_2560718,none +15.5685541,NCBITaxon:2560773,http://purl.obolibrary.org/obo/NCBITaxon_2560773,none +15.5685541,NCBITaxon:2560797,http://purl.obolibrary.org/obo/NCBITaxon_2560797,none +15.5685541,NCBITaxon:261008,http://purl.obolibrary.org/obo/NCBITaxon_261008,none +15.5685541,NCBITaxon:2618863,http://purl.obolibrary.org/obo/NCBITaxon_2618863,none +15.5685541,NCBITaxon:26324,http://purl.obolibrary.org/obo/NCBITaxon_26324,none +15.5685541,NCBITaxon:266799,http://purl.obolibrary.org/obo/NCBITaxon_266799,none +15.5685541,NCBITaxon:2682482,http://purl.obolibrary.org/obo/NCBITaxon_2682482,Mastigamoebida +15.5685541,NCBITaxon:2683628,http://purl.obolibrary.org/obo/NCBITaxon_2683628,Bigyra +15.5685541,NCBITaxon:2683629,http://purl.obolibrary.org/obo/NCBITaxon_2683629,Opalozoa +15.5685541,NCBITaxon:2732499,http://purl.obolibrary.org/obo/NCBITaxon_2732499,none +15.5685541,NCBITaxon:2732503,http://purl.obolibrary.org/obo/NCBITaxon_2732503,none +15.5685541,NCBITaxon:2732892,http://purl.obolibrary.org/obo/NCBITaxon_2732892,none +15.5685541,NCBITaxon:2733288,http://purl.obolibrary.org/obo/NCBITaxon_2733288,none +15.5685541,NCBITaxon:273346,http://purl.obolibrary.org/obo/NCBITaxon_273346,none +15.5685541,NCBITaxon:273350,http://purl.obolibrary.org/obo/NCBITaxon_273350,none +15.5685541,NCBITaxon:2734380,http://purl.obolibrary.org/obo/NCBITaxon_2734380,none +15.5685541,NCBITaxon:2734459,http://purl.obolibrary.org/obo/NCBITaxon_2734459,none +15.5685541,NCBITaxon:2734475,http://purl.obolibrary.org/obo/NCBITaxon_2734475,none +15.5685541,NCBITaxon:274704,http://purl.obolibrary.org/obo/NCBITaxon_274704,none +15.5685541,NCBITaxon:27705,http://purl.obolibrary.org/obo/NCBITaxon_27705,none +15.5685541,NCBITaxon:27804,http://purl.obolibrary.org/obo/NCBITaxon_27804,none +15.5685541,NCBITaxon:27833,http://purl.obolibrary.org/obo/NCBITaxon_27833,none +15.5685541,NCBITaxon:2783445,http://purl.obolibrary.org/obo/NCBITaxon_2783445,none +15.5685541,NCBITaxon:2784,http://purl.obolibrary.org/obo/NCBITaxon_2784,none +15.5685541,NCBITaxon:27925,http://purl.obolibrary.org/obo/NCBITaxon_27925,none +15.5685541,NCBITaxon:27994,http://purl.obolibrary.org/obo/NCBITaxon_27994,Theileriidae +15.5685541,NCBITaxon:2803884,http://purl.obolibrary.org/obo/NCBITaxon_2803884,none +15.5685541,NCBITaxon:281747,http://purl.obolibrary.org/obo/NCBITaxon_281747,none +15.5685541,NCBITaxon:28290,http://purl.obolibrary.org/obo/NCBITaxon_28290,none +15.5685541,NCBITaxon:2836,http://purl.obolibrary.org/obo/NCBITaxon_2836,none +15.5685541,NCBITaxon:2837502,http://purl.obolibrary.org/obo/NCBITaxon_2837502,none +15.5685541,NCBITaxon:2842607,http://purl.obolibrary.org/obo/NCBITaxon_2842607,none +15.5685541,NCBITaxon:2845253,http://purl.obolibrary.org/obo/NCBITaxon_2845253,Treponemataceae +15.5685541,NCBITaxon:2864,http://purl.obolibrary.org/obo/NCBITaxon_2864,none +15.5685541,NCBITaxon:28725,http://purl.obolibrary.org/obo/NCBITaxon_28725,none +15.5685541,NCBITaxon:288456,http://purl.obolibrary.org/obo/NCBITaxon_288456,none +15.5685541,NCBITaxon:28882,http://purl.obolibrary.org/obo/NCBITaxon_28882,none +15.5685541,NCBITaxon:28983,http://purl.obolibrary.org/obo/NCBITaxon_28983,none +15.5685541,NCBITaxon:29,http://purl.obolibrary.org/obo/NCBITaxon_29,none +15.5685541,NCBITaxon:29026,http://purl.obolibrary.org/obo/NCBITaxon_29026,none +15.5685541,NCBITaxon:29087,http://purl.obolibrary.org/obo/NCBITaxon_29087,none +15.5685541,NCBITaxon:291166,http://purl.obolibrary.org/obo/NCBITaxon_291166,none +15.5685541,NCBITaxon:29175,http://purl.obolibrary.org/obo/NCBITaxon_29175,none +15.5685541,NCBITaxon:293492,http://purl.obolibrary.org/obo/NCBITaxon_293492,none +15.5685541,NCBITaxon:293544,http://purl.obolibrary.org/obo/NCBITaxon_293544,none +15.5685541,NCBITaxon:29440,http://purl.obolibrary.org/obo/NCBITaxon_29440,none +15.5685541,NCBITaxon:296210,http://purl.obolibrary.org/obo/NCBITaxon_296210,none +15.5685541,NCBITaxon:30047,http://purl.obolibrary.org/obo/NCBITaxon_30047,none +15.5685541,NCBITaxon:30073,http://purl.obolibrary.org/obo/NCBITaxon_30073,none +15.5685541,NCBITaxon:30102,http://purl.obolibrary.org/obo/NCBITaxon_30102,none +15.5685541,NCBITaxon:30263,http://purl.obolibrary.org/obo/NCBITaxon_30263,none +15.5685541,NCBITaxon:303317,http://purl.obolibrary.org/obo/NCBITaxon_303317,none +15.5685541,NCBITaxon:30344,http://purl.obolibrary.org/obo/NCBITaxon_30344,none +15.5685541,NCBITaxon:30420,http://purl.obolibrary.org/obo/NCBITaxon_30420,none +15.5685541,NCBITaxon:30426,http://purl.obolibrary.org/obo/NCBITaxon_30426,none +15.5685541,NCBITaxon:30427,http://purl.obolibrary.org/obo/NCBITaxon_30427,none +15.5685541,NCBITaxon:30446,http://purl.obolibrary.org/obo/NCBITaxon_30446,none +15.5685541,NCBITaxon:30850,http://purl.obolibrary.org/obo/NCBITaxon_30850,none +15.5685541,NCBITaxon:30910,http://purl.obolibrary.org/obo/NCBITaxon_30910,none +15.5685541,NCBITaxon:30959,http://purl.obolibrary.org/obo/NCBITaxon_30959,none +15.5685541,NCBITaxon:31009,http://purl.obolibrary.org/obo/NCBITaxon_31009,none +15.5685541,NCBITaxon:312009,http://purl.obolibrary.org/obo/NCBITaxon_312009,none +15.5685541,NCBITaxon:31469,http://purl.obolibrary.org/obo/NCBITaxon_31469,none +15.5685541,NCBITaxon:315429,http://purl.obolibrary.org/obo/NCBITaxon_315429,none +15.5685541,NCBITaxon:31545,http://purl.obolibrary.org/obo/NCBITaxon_31545,none +15.5685541,NCBITaxon:31638,http://purl.obolibrary.org/obo/NCBITaxon_31638,none +15.5685541,NCBITaxon:31660,http://purl.obolibrary.org/obo/NCBITaxon_31660,none +15.5685541,NCBITaxon:31696,http://purl.obolibrary.org/obo/NCBITaxon_31696,none +15.5685541,NCBITaxon:316983,http://purl.obolibrary.org/obo/NCBITaxon_316983,none +15.5685541,NCBITaxon:317,http://purl.obolibrary.org/obo/NCBITaxon_317,none +15.5685541,NCBITaxon:318849,http://purl.obolibrary.org/obo/NCBITaxon_318849,none +15.5685541,NCBITaxon:320856,http://purl.obolibrary.org/obo/NCBITaxon_320856,none +15.5685541,NCBITaxon:321302,http://purl.obolibrary.org/obo/NCBITaxon_321302,none +15.5685541,NCBITaxon:322019,http://purl.obolibrary.org/obo/NCBITaxon_322019,none +15.5685541,NCBITaxon:32220,http://purl.obolibrary.org/obo/NCBITaxon_32220,none +15.5685541,NCBITaxon:32364,http://purl.obolibrary.org/obo/NCBITaxon_32364,none +15.5685541,NCBITaxon:32436,http://purl.obolibrary.org/obo/NCBITaxon_32436,none +15.5685541,NCBITaxon:32521,http://purl.obolibrary.org/obo/NCBITaxon_32521,Elopomorpha +15.5685541,NCBITaxon:32625,http://purl.obolibrary.org/obo/NCBITaxon_32625,none +15.5685541,NCBITaxon:328671,http://purl.obolibrary.org/obo/NCBITaxon_328671,none +15.5685541,NCBITaxon:33285,http://purl.obolibrary.org/obo/NCBITaxon_33285,none +15.5685541,NCBITaxon:332934,http://purl.obolibrary.org/obo/NCBITaxon_332934,none +15.5685541,NCBITaxon:33352,http://purl.obolibrary.org/obo/NCBITaxon_33352,none +15.5685541,NCBITaxon:33368,http://purl.obolibrary.org/obo/NCBITaxon_33368,none +15.5685541,NCBITaxon:333752,http://purl.obolibrary.org/obo/NCBITaxon_333752,none +15.5685541,NCBITaxon:333765,http://purl.obolibrary.org/obo/NCBITaxon_333765,none +15.5685541,NCBITaxon:33415,http://purl.obolibrary.org/obo/NCBITaxon_33415,none +15.5685541,NCBITaxon:33519,http://purl.obolibrary.org/obo/NCBITaxon_33519,none +15.5685541,NCBITaxon:33520,http://purl.obolibrary.org/obo/NCBITaxon_33520,none +15.5685541,NCBITaxon:3362,http://purl.obolibrary.org/obo/NCBITaxon_3362,none +15.5685541,NCBITaxon:336486,http://purl.obolibrary.org/obo/NCBITaxon_336486,none +15.5685541,NCBITaxon:337049,http://purl.obolibrary.org/obo/NCBITaxon_337049,none +15.5685541,NCBITaxon:33789,http://purl.obolibrary.org/obo/NCBITaxon_33789,none +15.5685541,NCBITaxon:340187,http://purl.obolibrary.org/obo/NCBITaxon_340187,none +15.5685541,NCBITaxon:341941,http://purl.obolibrary.org/obo/NCBITaxon_341941,none +15.5685541,NCBITaxon:34384,http://purl.obolibrary.org/obo/NCBITaxon_34384,Arthrodermataceae +15.5685541,NCBITaxon:345030,http://purl.obolibrary.org/obo/NCBITaxon_345030,none +15.5685541,NCBITaxon:3455,http://purl.obolibrary.org/obo/NCBITaxon_3455,none +15.5685541,NCBITaxon:348009,http://purl.obolibrary.org/obo/NCBITaxon_348009,none +15.5685541,NCBITaxon:34824,http://purl.obolibrary.org/obo/NCBITaxon_34824,none +15.5685541,NCBITaxon:348465,http://purl.obolibrary.org/obo/NCBITaxon_348465,none +15.5685541,NCBITaxon:349165,http://purl.obolibrary.org/obo/NCBITaxon_349165,none +15.5685541,NCBITaxon:349464,http://purl.obolibrary.org/obo/NCBITaxon_349464,none +15.5685541,NCBITaxon:3497,http://purl.obolibrary.org/obo/NCBITaxon_3497,none +15.5685541,NCBITaxon:349945,http://purl.obolibrary.org/obo/NCBITaxon_349945,none +15.5685541,NCBITaxon:35036,http://purl.obolibrary.org/obo/NCBITaxon_35036,none +15.5685541,NCBITaxon:35265,http://purl.obolibrary.org/obo/NCBITaxon_35265,none +15.5685541,NCBITaxon:35280,http://purl.obolibrary.org/obo/NCBITaxon_35280,none +15.5685541,NCBITaxon:35296,http://purl.obolibrary.org/obo/NCBITaxon_35296,none +15.5685541,NCBITaxon:35321,http://purl.obolibrary.org/obo/NCBITaxon_35321,none +15.5685541,NCBITaxon:35337,http://purl.obolibrary.org/obo/NCBITaxon_35337,none +15.5685541,NCBITaxon:3542,http://purl.obolibrary.org/obo/NCBITaxon_3542,none +15.5685541,NCBITaxon:35588,http://purl.obolibrary.org/obo/NCBITaxon_35588,none +15.5685541,NCBITaxon:359812,http://purl.obolibrary.org/obo/NCBITaxon_359812,none +15.5685541,NCBITaxon:36051,http://purl.obolibrary.org/obo/NCBITaxon_36051,none +15.5685541,NCBITaxon:36136,http://purl.obolibrary.org/obo/NCBITaxon_36136,none +15.5685541,NCBITaxon:362663,http://purl.obolibrary.org/obo/NCBITaxon_362663,none +15.5685541,NCBITaxon:365150,http://purl.obolibrary.org/obo/NCBITaxon_365150,none +15.5685541,NCBITaxon:36660,http://purl.obolibrary.org/obo/NCBITaxon_36660,none +15.5685541,NCBITaxon:367301,http://purl.obolibrary.org/obo/NCBITaxon_367301,none +15.5685541,NCBITaxon:36735,http://purl.obolibrary.org/obo/NCBITaxon_36735,none +15.5685541,NCBITaxon:368798,http://purl.obolibrary.org/obo/NCBITaxon_368798,none +15.5685541,NCBITaxon:3708,http://purl.obolibrary.org/obo/NCBITaxon_3708,none +15.5685541,NCBITaxon:371673,http://purl.obolibrary.org/obo/NCBITaxon_371673,none +15.5685541,NCBITaxon:374051,http://purl.obolibrary.org/obo/NCBITaxon_374051,none +15.5685541,NCBITaxon:37548,http://purl.obolibrary.org/obo/NCBITaxon_37548,none +15.5685541,NCBITaxon:37577,http://purl.obolibrary.org/obo/NCBITaxon_37577,none +15.5685541,NCBITaxon:37804,http://purl.obolibrary.org/obo/NCBITaxon_37804,none +15.5685541,NCBITaxon:379589,http://purl.obolibrary.org/obo/NCBITaxon_379589,none +15.5685541,NCBITaxon:37990,http://purl.obolibrary.org/obo/NCBITaxon_37990,none +15.5685541,NCBITaxon:3801,http://purl.obolibrary.org/obo/NCBITaxon_3801,none +15.5685541,NCBITaxon:380433,http://purl.obolibrary.org/obo/NCBITaxon_380433,none +15.5685541,NCBITaxon:380441,http://purl.obolibrary.org/obo/NCBITaxon_380441,none +15.5685541,NCBITaxon:3808,http://purl.obolibrary.org/obo/NCBITaxon_3808,none +15.5685541,NCBITaxon:38099,http://purl.obolibrary.org/obo/NCBITaxon_38099,none +15.5685541,NCBITaxon:381638,http://purl.obolibrary.org/obo/NCBITaxon_381638,none +15.5685541,NCBITaxon:3828,http://purl.obolibrary.org/obo/NCBITaxon_3828,none +15.5685541,NCBITaxon:38669,http://purl.obolibrary.org/obo/NCBITaxon_38669,none +15.5685541,NCBITaxon:38780,http://purl.obolibrary.org/obo/NCBITaxon_38780,none +15.5685541,NCBITaxon:38795,http://purl.obolibrary.org/obo/NCBITaxon_38795,none +15.5685541,NCBITaxon:38832,http://purl.obolibrary.org/obo/NCBITaxon_38832,none +15.5685541,NCBITaxon:391640,http://purl.obolibrary.org/obo/NCBITaxon_391640,none +15.5685541,NCBITaxon:3928,http://purl.obolibrary.org/obo/NCBITaxon_3928,none +15.5685541,NCBITaxon:3939,http://purl.obolibrary.org/obo/NCBITaxon_3939,none +15.5685541,NCBITaxon:394036,http://purl.obolibrary.org/obo/NCBITaxon_394036,none +15.5685541,NCBITaxon:39475,http://purl.obolibrary.org/obo/NCBITaxon_39475,none +15.5685541,NCBITaxon:39476,http://purl.obolibrary.org/obo/NCBITaxon_39476,none +15.5685541,NCBITaxon:39502,http://purl.obolibrary.org/obo/NCBITaxon_39502,none +15.5685541,NCBITaxon:39741,http://purl.obolibrary.org/obo/NCBITaxon_39741,none +15.5685541,NCBITaxon:39742,http://purl.obolibrary.org/obo/NCBITaxon_39742,none +15.5685541,NCBITaxon:39816,http://purl.obolibrary.org/obo/NCBITaxon_39816,none +15.5685541,NCBITaxon:40012,http://purl.obolibrary.org/obo/NCBITaxon_40012,none +15.5685541,NCBITaxon:40029,http://purl.obolibrary.org/obo/NCBITaxon_40029,none +15.5685541,NCBITaxon:400396,http://purl.obolibrary.org/obo/NCBITaxon_400396,none +15.5685541,NCBITaxon:402888,http://purl.obolibrary.org/obo/NCBITaxon_402888,none +15.5685541,NCBITaxon:404256,http://purl.obolibrary.org/obo/NCBITaxon_404256,none +15.5685541,NCBITaxon:404404,http://purl.obolibrary.org/obo/NCBITaxon_404404,none +15.5685541,NCBITaxon:40468,http://purl.obolibrary.org/obo/NCBITaxon_40468,none +15.5685541,NCBITaxon:404768,http://purl.obolibrary.org/obo/NCBITaxon_404768,none +15.5685541,NCBITaxon:405280,http://purl.obolibrary.org/obo/NCBITaxon_405280,none +15.5685541,NCBITaxon:405304,http://purl.obolibrary.org/obo/NCBITaxon_405304,none +15.5685541,NCBITaxon:410314,http://purl.obolibrary.org/obo/NCBITaxon_410314,none +15.5685541,NCBITaxon:41042,http://purl.obolibrary.org/obo/NCBITaxon_41042,none +15.5685541,NCBITaxon:410823,http://purl.obolibrary.org/obo/NCBITaxon_410823,none +15.5685541,NCBITaxon:41254,http://purl.obolibrary.org/obo/NCBITaxon_41254,none +15.5685541,NCBITaxon:4139,http://purl.obolibrary.org/obo/NCBITaxon_4139,none +15.5685541,NCBITaxon:41679,http://purl.obolibrary.org/obo/NCBITaxon_41679,none +15.5685541,NCBITaxon:41702,http://purl.obolibrary.org/obo/NCBITaxon_41702,none +15.5685541,NCBITaxon:41703,http://purl.obolibrary.org/obo/NCBITaxon_41703,none +15.5685541,NCBITaxon:41764,http://purl.obolibrary.org/obo/NCBITaxon_41764,none +15.5685541,NCBITaxon:41829,http://purl.obolibrary.org/obo/NCBITaxon_41829,none +15.5685541,NCBITaxon:4185,http://purl.obolibrary.org/obo/NCBITaxon_4185,none +15.5685541,NCBITaxon:41873,http://purl.obolibrary.org/obo/NCBITaxon_41873,none +15.5685541,NCBITaxon:41956,http://purl.obolibrary.org/obo/NCBITaxon_41956,none +15.5685541,NCBITaxon:420544,http://purl.obolibrary.org/obo/NCBITaxon_420544,none +15.5685541,NCBITaxon:421922,http://purl.obolibrary.org/obo/NCBITaxon_421922,none +15.5685541,NCBITaxon:42559,http://purl.obolibrary.org/obo/NCBITaxon_42559,none +15.5685541,NCBITaxon:42560,http://purl.obolibrary.org/obo/NCBITaxon_42560,none +15.5685541,NCBITaxon:4268,http://purl.obolibrary.org/obo/NCBITaxon_4268,none +15.5685541,NCBITaxon:42807,http://purl.obolibrary.org/obo/NCBITaxon_42807,none +15.5685541,NCBITaxon:42853,http://purl.obolibrary.org/obo/NCBITaxon_42853,none +15.5685541,NCBITaxon:4328,http://purl.obolibrary.org/obo/NCBITaxon_4328,none +15.5685541,NCBITaxon:4335,http://purl.obolibrary.org/obo/NCBITaxon_4335,none +15.5685541,NCBITaxon:433684,http://purl.obolibrary.org/obo/NCBITaxon_433684,none +15.5685541,NCBITaxon:43391,http://purl.obolibrary.org/obo/NCBITaxon_43391,none +15.5685541,NCBITaxon:43462,http://purl.obolibrary.org/obo/NCBITaxon_43462,none +15.5685541,NCBITaxon:43512,http://purl.obolibrary.org/obo/NCBITaxon_43512,none +15.5685541,NCBITaxon:43513,http://purl.obolibrary.org/obo/NCBITaxon_43513,none +15.5685541,NCBITaxon:435646,http://purl.obolibrary.org/obo/NCBITaxon_435646,none +15.5685541,NCBITaxon:43574,http://purl.obolibrary.org/obo/NCBITaxon_43574,none +15.5685541,NCBITaxon:436077,http://purl.obolibrary.org/obo/NCBITaxon_436077,none +15.5685541,NCBITaxon:43710,http://purl.obolibrary.org/obo/NCBITaxon_43710,none +15.5685541,NCBITaxon:43750,http://purl.obolibrary.org/obo/NCBITaxon_43750,Sciomyzoidea +15.5685541,NCBITaxon:43789,http://purl.obolibrary.org/obo/NCBITaxon_43789,none +15.5685541,NCBITaxon:43846,http://purl.obolibrary.org/obo/NCBITaxon_43846,none +15.5685541,NCBITaxon:4437,http://purl.obolibrary.org/obo/NCBITaxon_4437,none +15.5685541,NCBITaxon:44755,http://purl.obolibrary.org/obo/NCBITaxon_44755,none +15.5685541,NCBITaxon:451828,http://purl.obolibrary.org/obo/NCBITaxon_451828,none +15.5685541,NCBITaxon:45479,http://purl.obolibrary.org/obo/NCBITaxon_45479,none +15.5685541,NCBITaxon:45659,http://purl.obolibrary.org/obo/NCBITaxon_45659,none +15.5685541,NCBITaxon:46000,http://purl.obolibrary.org/obo/NCBITaxon_46000,none +15.5685541,NCBITaxon:46001,http://purl.obolibrary.org/obo/NCBITaxon_46001,none +15.5685541,NCBITaxon:46075,http://purl.obolibrary.org/obo/NCBITaxon_46075,none +15.5685541,NCBITaxon:46225,http://purl.obolibrary.org/obo/NCBITaxon_46225,none +15.5685541,NCBITaxon:471717,http://purl.obolibrary.org/obo/NCBITaxon_471717,none +15.5685541,NCBITaxon:4731,http://purl.obolibrary.org/obo/NCBITaxon_4731,none +15.5685541,NCBITaxon:47313,http://purl.obolibrary.org/obo/NCBITaxon_47313,none +15.5685541,NCBITaxon:473322,http://purl.obolibrary.org/obo/NCBITaxon_473322,none +15.5685541,NCBITaxon:474454,http://purl.obolibrary.org/obo/NCBITaxon_474454,none +15.5685541,NCBITaxon:47520,http://purl.obolibrary.org/obo/NCBITaxon_47520,none +15.5685541,NCBITaxon:47521,http://purl.obolibrary.org/obo/NCBITaxon_47521,none +15.5685541,NCBITaxon:47522,http://purl.obolibrary.org/obo/NCBITaxon_47522,none +15.5685541,NCBITaxon:475367,http://purl.obolibrary.org/obo/NCBITaxon_475367,none +15.5685541,NCBITaxon:477950,http://purl.obolibrary.org/obo/NCBITaxon_477950,none +15.5685541,NCBITaxon:477951,http://purl.obolibrary.org/obo/NCBITaxon_477951,none +15.5685541,NCBITaxon:478577,http://purl.obolibrary.org/obo/NCBITaxon_478577,none +15.5685541,NCBITaxon:478825,http://purl.obolibrary.org/obo/NCBITaxon_478825,none +15.5685541,NCBITaxon:479058,http://purl.obolibrary.org/obo/NCBITaxon_479058,none +15.5685541,NCBITaxon:481680,http://purl.obolibrary.org/obo/NCBITaxon_481680,none +15.5685541,NCBITaxon:481805,http://purl.obolibrary.org/obo/NCBITaxon_481805,none +15.5685541,NCBITaxon:48200,http://purl.obolibrary.org/obo/NCBITaxon_48200,none +15.5685541,NCBITaxon:48252,http://purl.obolibrary.org/obo/NCBITaxon_48252,none +15.5685541,NCBITaxon:48253,http://purl.obolibrary.org/obo/NCBITaxon_48253,none +15.5685541,NCBITaxon:4830,http://purl.obolibrary.org/obo/NCBITaxon_4830,none +15.5685541,NCBITaxon:48540,http://purl.obolibrary.org/obo/NCBITaxon_48540,none +15.5685541,NCBITaxon:488,http://purl.obolibrary.org/obo/NCBITaxon_488,none +15.5685541,NCBITaxon:488249,http://purl.obolibrary.org/obo/NCBITaxon_488249,none +15.5685541,NCBITaxon:488252,http://purl.obolibrary.org/obo/NCBITaxon_488252,none +15.5685541,NCBITaxon:4883,http://purl.obolibrary.org/obo/NCBITaxon_4883,none +15.5685541,NCBITaxon:489137,http://purl.obolibrary.org/obo/NCBITaxon_489137,none +15.5685541,NCBITaxon:497863,http://purl.obolibrary.org/obo/NCBITaxon_497863,none +15.5685541,NCBITaxon:498356,http://purl.obolibrary.org/obo/NCBITaxon_498356,none +15.5685541,NCBITaxon:50374,http://purl.obolibrary.org/obo/NCBITaxon_50374,none +15.5685541,NCBITaxon:509241,http://purl.obolibrary.org/obo/NCBITaxon_509241,none +15.5685541,NCBITaxon:5151,http://purl.obolibrary.org/obo/NCBITaxon_5151,Ophiostomatales +15.5685541,NCBITaxon:5152,http://purl.obolibrary.org/obo/NCBITaxon_5152,Ophiostomataceae +15.5685541,NCBITaxon:5159,http://purl.obolibrary.org/obo/NCBITaxon_5159,none +15.5685541,NCBITaxon:51617,http://purl.obolibrary.org/obo/NCBITaxon_51617,none +15.5685541,NCBITaxon:52470,http://purl.obolibrary.org/obo/NCBITaxon_52470,none +15.5685541,NCBITaxon:526244,http://purl.obolibrary.org/obo/NCBITaxon_526244,none +15.5685541,NCBITaxon:5269,http://purl.obolibrary.org/obo/NCBITaxon_5269,none +15.5685541,NCBITaxon:52996,http://purl.obolibrary.org/obo/NCBITaxon_52996,none +15.5685541,NCBITaxon:53017,http://purl.obolibrary.org/obo/NCBITaxon_53017,none +15.5685541,NCBITaxon:53586,http://purl.obolibrary.org/obo/NCBITaxon_53586,none +15.5685541,NCBITaxon:53588,http://purl.obolibrary.org/obo/NCBITaxon_53588,none +15.5685541,NCBITaxon:536079,http://purl.obolibrary.org/obo/NCBITaxon_536079,none +15.5685541,NCBITaxon:53851,http://purl.obolibrary.org/obo/NCBITaxon_53851,none +15.5685541,NCBITaxon:538970,http://purl.obolibrary.org/obo/NCBITaxon_538970,none +15.5685541,NCBITaxon:54289,http://purl.obolibrary.org/obo/NCBITaxon_54289,none +15.5685541,NCBITaxon:544,http://purl.obolibrary.org/obo/NCBITaxon_544,none +15.5685541,NCBITaxon:5476,http://purl.obolibrary.org/obo/NCBITaxon_5476,none +15.5685541,NCBITaxon:55216,http://purl.obolibrary.org/obo/NCBITaxon_55216,none +15.5685541,NCBITaxon:5526,http://purl.obolibrary.org/obo/NCBITaxon_5526,none +15.5685541,NCBITaxon:555406,http://purl.obolibrary.org/obo/NCBITaxon_555406,Archamoebae +15.5685541,NCBITaxon:5573,http://purl.obolibrary.org/obo/NCBITaxon_5573,none +15.5685541,NCBITaxon:56317,http://purl.obolibrary.org/obo/NCBITaxon_56317,none +15.5685541,NCBITaxon:568,http://purl.obolibrary.org/obo/NCBITaxon_568,none +15.5685541,NCBITaxon:575,http://purl.obolibrary.org/obo/NCBITaxon_575,none +15.5685541,NCBITaxon:575214,http://purl.obolibrary.org/obo/NCBITaxon_575214,none +15.5685541,NCBITaxon:577675,http://purl.obolibrary.org/obo/NCBITaxon_577675,none +15.5685541,NCBITaxon:58195,http://purl.obolibrary.org/obo/NCBITaxon_58195,none +15.5685541,NCBITaxon:586,http://purl.obolibrary.org/obo/NCBITaxon_586,none +15.5685541,NCBITaxon:5873,http://purl.obolibrary.org/obo/NCBITaxon_5873,Theileria +15.5685541,NCBITaxon:5912,http://purl.obolibrary.org/obo/NCBITaxon_5912,none +15.5685541,NCBITaxon:591946,http://purl.obolibrary.org/obo/NCBITaxon_591946,none +15.5685541,NCBITaxon:59380,http://purl.obolibrary.org/obo/NCBITaxon_59380,none +15.5685541,NCBITaxon:6036,http://purl.obolibrary.org/obo/NCBITaxon_6036,none +15.5685541,NCBITaxon:611707,http://purl.obolibrary.org/obo/NCBITaxon_611707,none +15.5685541,NCBITaxon:61398,http://purl.obolibrary.org/obo/NCBITaxon_61398,none +15.5685541,NCBITaxon:61399,http://purl.obolibrary.org/obo/NCBITaxon_61399,none +15.5685541,NCBITaxon:61400,http://purl.obolibrary.org/obo/NCBITaxon_61400,none +15.5685541,NCBITaxon:61421,http://purl.obolibrary.org/obo/NCBITaxon_61421,none +15.5685541,NCBITaxon:61462,http://purl.obolibrary.org/obo/NCBITaxon_61462,none +15.5685541,NCBITaxon:61463,http://purl.obolibrary.org/obo/NCBITaxon_61463,none +15.5685541,NCBITaxon:6193,http://purl.obolibrary.org/obo/NCBITaxon_6193,Opisthorchiida +15.5685541,NCBITaxon:6194,http://purl.obolibrary.org/obo/NCBITaxon_6194,Opisthorchiata +15.5685541,NCBITaxon:619631,http://purl.obolibrary.org/obo/NCBITaxon_619631,none +15.5685541,NCBITaxon:62805,http://purl.obolibrary.org/obo/NCBITaxon_62805,none +15.5685541,NCBITaxon:6281,http://purl.obolibrary.org/obo/NCBITaxon_6281,Onchocerca +15.5685541,NCBITaxon:629286,http://purl.obolibrary.org/obo/NCBITaxon_629286,none +15.5685541,NCBITaxon:629293,http://purl.obolibrary.org/obo/NCBITaxon_629293,none +15.5685541,NCBITaxon:63083,http://purl.obolibrary.org/obo/NCBITaxon_63083,none +15.5685541,NCBITaxon:6326,http://purl.obolibrary.org/obo/NCBITaxon_6326,none +15.5685541,NCBITaxon:635,http://purl.obolibrary.org/obo/NCBITaxon_635,Edwardsiella +15.5685541,NCBITaxon:6391,http://purl.obolibrary.org/obo/NCBITaxon_6391,none +15.5685541,NCBITaxon:64296,http://purl.obolibrary.org/obo/NCBITaxon_64296,none +15.5685541,NCBITaxon:64310,http://purl.obolibrary.org/obo/NCBITaxon_64310,none +15.5685541,NCBITaxon:6433,http://purl.obolibrary.org/obo/NCBITaxon_6433,none +15.5685541,NCBITaxon:64630,http://purl.obolibrary.org/obo/NCBITaxon_64630,none +15.5685541,NCBITaxon:649395,http://purl.obolibrary.org/obo/NCBITaxon_649395,none +15.5685541,NCBITaxon:653358,http://purl.obolibrary.org/obo/NCBITaxon_653358,none +15.5685541,NCBITaxon:655070,http://purl.obolibrary.org/obo/NCBITaxon_655070,none +15.5685541,NCBITaxon:661101,http://purl.obolibrary.org/obo/NCBITaxon_661101,none +15.5685541,NCBITaxon:66225,http://purl.obolibrary.org/obo/NCBITaxon_66225,Phaeoannellomyces +15.5685541,NCBITaxon:66226,http://purl.obolibrary.org/obo/NCBITaxon_66226,none +15.5685541,NCBITaxon:66452,http://purl.obolibrary.org/obo/NCBITaxon_66452,none +15.5685541,NCBITaxon:66453,http://purl.obolibrary.org/obo/NCBITaxon_66453,none +15.5685541,NCBITaxon:66516,http://purl.obolibrary.org/obo/NCBITaxon_66516,none +15.5685541,NCBITaxon:675076,http://purl.obolibrary.org/obo/NCBITaxon_675076,none +15.5685541,NCBITaxon:68033,http://purl.obolibrary.org/obo/NCBITaxon_68033,none +15.5685541,NCBITaxon:6821,http://purl.obolibrary.org/obo/NCBITaxon_6821,none +15.5685541,NCBITaxon:68514,http://purl.obolibrary.org/obo/NCBITaxon_68514,none +15.5685541,NCBITaxon:68515,http://purl.obolibrary.org/obo/NCBITaxon_68515,none +15.5685541,NCBITaxon:687387,http://purl.obolibrary.org/obo/NCBITaxon_687387,none +15.5685541,NCBITaxon:68874,http://purl.obolibrary.org/obo/NCBITaxon_68874,none +15.5685541,NCBITaxon:694007,http://purl.obolibrary.org/obo/NCBITaxon_694007,none +15.5685541,NCBITaxon:694008,http://purl.obolibrary.org/obo/NCBITaxon_694008,none +15.5685541,NCBITaxon:69679,http://purl.obolibrary.org/obo/NCBITaxon_69679,none +15.5685541,NCBITaxon:698400,http://purl.obolibrary.org/obo/NCBITaxon_698400,none +15.5685541,NCBITaxon:703253,http://purl.obolibrary.org/obo/NCBITaxon_703253,none +15.5685541,NCBITaxon:7043,http://purl.obolibrary.org/obo/NCBITaxon_7043,none +15.5685541,NCBITaxon:71030,http://purl.obolibrary.org/obo/NCBITaxon_71030,none +15.5685541,NCBITaxon:71031,http://purl.obolibrary.org/obo/NCBITaxon_71031,none +15.5685541,NCBITaxon:7106,http://purl.obolibrary.org/obo/NCBITaxon_7106,none +15.5685541,NCBITaxon:7112,http://purl.obolibrary.org/obo/NCBITaxon_7112,none +15.5685541,NCBITaxon:71186,http://purl.obolibrary.org/obo/NCBITaxon_71186,none +15.5685541,NCBITaxon:713,http://purl.obolibrary.org/obo/NCBITaxon_713,Actinobacillus +15.5685541,NCBITaxon:713949,http://purl.obolibrary.org/obo/NCBITaxon_713949,none +15.5685541,NCBITaxon:71528,http://purl.obolibrary.org/obo/NCBITaxon_71528,none +15.5685541,NCBITaxon:71541,http://purl.obolibrary.org/obo/NCBITaxon_71541,none +15.5685541,NCBITaxon:717647,http://purl.obolibrary.org/obo/NCBITaxon_717647,none +15.5685541,NCBITaxon:71777,http://purl.obolibrary.org/obo/NCBITaxon_71777,none +15.5685541,NCBITaxon:7184,http://purl.obolibrary.org/obo/NCBITaxon_7184,none +15.5685541,NCBITaxon:7205,http://purl.obolibrary.org/obo/NCBITaxon_7205,Tabanidae +15.5685541,NCBITaxon:72205,http://purl.obolibrary.org/obo/NCBITaxon_72205,none +15.5685541,NCBITaxon:72293,http://purl.obolibrary.org/obo/NCBITaxon_72293,Helicobacteraceae +15.5685541,NCBITaxon:7232,http://purl.obolibrary.org/obo/NCBITaxon_7232,none +15.5685541,NCBITaxon:7247,http://purl.obolibrary.org/obo/NCBITaxon_7247,none +15.5685541,NCBITaxon:73146,http://purl.obolibrary.org/obo/NCBITaxon_73146,none +15.5685541,NCBITaxon:73147,http://purl.obolibrary.org/obo/NCBITaxon_73147,none +15.5685541,NCBITaxon:73171,http://purl.obolibrary.org/obo/NCBITaxon_73171,none +15.5685541,NCBITaxon:7354,http://purl.obolibrary.org/obo/NCBITaxon_7354,none +15.5685541,NCBITaxon:7423,http://purl.obolibrary.org/obo/NCBITaxon_7423,none +15.5685541,NCBITaxon:7479,http://purl.obolibrary.org/obo/NCBITaxon_7479,none +15.5685541,NCBITaxon:74974,http://purl.obolibrary.org/obo/NCBITaxon_74974,none +15.5685541,NCBITaxon:74975,http://purl.obolibrary.org/obo/NCBITaxon_74975,none +15.5685541,NCBITaxon:751756,http://purl.obolibrary.org/obo/NCBITaxon_751756,none +15.5685541,NCBITaxon:753758,http://purl.obolibrary.org/obo/NCBITaxon_753758,none +15.5685541,NCBITaxon:75543,http://purl.obolibrary.org/obo/NCBITaxon_75543,none +15.5685541,NCBITaxon:75890,http://purl.obolibrary.org/obo/NCBITaxon_75890,none +15.5685541,NCBITaxon:77338,http://purl.obolibrary.org/obo/NCBITaxon_77338,none +15.5685541,NCBITaxon:77813,http://purl.obolibrary.org/obo/NCBITaxon_77813,none +15.5685541,NCBITaxon:797742,http://purl.obolibrary.org/obo/NCBITaxon_797742,none +15.5685541,NCBITaxon:8064,http://purl.obolibrary.org/obo/NCBITaxon_8064,none +15.5685541,NCBITaxon:8065,http://purl.obolibrary.org/obo/NCBITaxon_8065,none +15.5685541,NCBITaxon:8108,http://purl.obolibrary.org/obo/NCBITaxon_8108,none +15.5685541,NCBITaxon:81365,http://purl.obolibrary.org/obo/NCBITaxon_81365,none +15.5685541,NCBITaxon:81386,http://purl.obolibrary.org/obo/NCBITaxon_81386,none +15.5685541,NCBITaxon:81393,http://purl.obolibrary.org/obo/NCBITaxon_81393,none +15.5685541,NCBITaxon:81394,http://purl.obolibrary.org/obo/NCBITaxon_81394,none +15.5685541,NCBITaxon:81850,http://purl.obolibrary.org/obo/NCBITaxon_81850,none +15.5685541,NCBITaxon:82593,http://purl.obolibrary.org/obo/NCBITaxon_82593,none +15.5685541,NCBITaxon:8358,http://purl.obolibrary.org/obo/NCBITaxon_8358,none +15.5685541,NCBITaxon:8359,http://purl.obolibrary.org/obo/NCBITaxon_8359,none +15.5685541,NCBITaxon:83757,http://purl.obolibrary.org/obo/NCBITaxon_83757,none +15.5685541,NCBITaxon:83839,http://purl.obolibrary.org/obo/NCBITaxon_83839,none +15.5685541,NCBITaxon:84107,http://purl.obolibrary.org/obo/NCBITaxon_84107,none +15.5685541,NCBITaxon:8421,http://purl.obolibrary.org/obo/NCBITaxon_8421,none +15.5685541,NCBITaxon:8422,http://purl.obolibrary.org/obo/NCBITaxon_8422,none +15.5685541,NCBITaxon:8427,http://purl.obolibrary.org/obo/NCBITaxon_8427,none +15.5685541,NCBITaxon:84644,http://purl.obolibrary.org/obo/NCBITaxon_84644,none +15.5685541,NCBITaxon:84998,http://purl.obolibrary.org/obo/NCBITaxon_84998,none +15.5685541,NCBITaxon:84999,http://purl.obolibrary.org/obo/NCBITaxon_84999,none +15.5685541,NCBITaxon:8530,http://purl.obolibrary.org/obo/NCBITaxon_8530,none +15.5685541,NCBITaxon:85650,http://purl.obolibrary.org/obo/NCBITaxon_85650,none +15.5685541,NCBITaxon:85652,http://purl.obolibrary.org/obo/NCBITaxon_85652,none +15.5685541,NCBITaxon:872,http://purl.obolibrary.org/obo/NCBITaxon_872,none +15.5685541,NCBITaxon:884610,http://purl.obolibrary.org/obo/NCBITaxon_884610,none +15.5685541,NCBITaxon:886791,http://purl.obolibrary.org/obo/NCBITaxon_886791,none +15.5685541,NCBITaxon:89101,http://purl.obolibrary.org/obo/NCBITaxon_89101,none +15.5685541,NCBITaxon:89443,http://purl.obolibrary.org/obo/NCBITaxon_89443,none +15.5685541,NCBITaxon:89988,http://purl.obolibrary.org/obo/NCBITaxon_89988,none +15.5685541,NCBITaxon:90064,http://purl.obolibrary.org/obo/NCBITaxon_90064,none +15.5685541,NCBITaxon:90065,http://purl.obolibrary.org/obo/NCBITaxon_90065,none +15.5685541,NCBITaxon:904699,http://purl.obolibrary.org/obo/NCBITaxon_904699,none +15.5685541,NCBITaxon:908125,http://purl.obolibrary.org/obo/NCBITaxon_908125,none +15.5685541,NCBITaxon:909851,http://purl.obolibrary.org/obo/NCBITaxon_909851,none +15.5685541,NCBITaxon:911294,http://purl.obolibrary.org/obo/NCBITaxon_911294,none +15.5685541,NCBITaxon:91914,http://purl.obolibrary.org/obo/NCBITaxon_91914,none +15.5685541,NCBITaxon:92621,http://purl.obolibrary.org/obo/NCBITaxon_92621,none +15.5685541,NCBITaxon:92622,http://purl.obolibrary.org/obo/NCBITaxon_92622,none +15.5685541,NCBITaxon:9269,http://purl.obolibrary.org/obo/NCBITaxon_9269,none +15.5685541,NCBITaxon:93033,http://purl.obolibrary.org/obo/NCBITaxon_93033,none +15.5685541,NCBITaxon:937809,http://purl.obolibrary.org/obo/NCBITaxon_937809,none +15.5685541,NCBITaxon:94307,http://purl.obolibrary.org/obo/NCBITaxon_94307,none +15.5685541,NCBITaxon:94308,http://purl.obolibrary.org/obo/NCBITaxon_94308,none +15.5685541,NCBITaxon:94433,http://purl.obolibrary.org/obo/NCBITaxon_94433,none +15.5685541,NCBITaxon:948669,http://purl.obolibrary.org/obo/NCBITaxon_948669,none +15.5685541,NCBITaxon:95182,http://purl.obolibrary.org/obo/NCBITaxon_95182,none +15.5685541,NCBITaxon:9534,http://purl.obolibrary.org/obo/NCBITaxon_9534,Chlorocebus aethiops +15.5685541,NCBITaxon:9551,http://purl.obolibrary.org/obo/NCBITaxon_9551,none +15.5685541,NCBITaxon:95624,http://purl.obolibrary.org/obo/NCBITaxon_95624,none +15.5685541,NCBITaxon:9938,http://purl.obolibrary.org/obo/NCBITaxon_9938,none +15.5685541,NCBITaxon:9992,http://purl.obolibrary.org/obo/NCBITaxon_9992,none +15.5685541,NCBITaxon:9995,http://purl.obolibrary.org/obo/NCBITaxon_9995,Marmota monax +15.5685541,NCBITaxon:genus,http://purl.obolibrary.org/obo/NCBITaxon_genus,none +15.5685541,PR:000000671,http://purl.obolibrary.org/obo/PR_000000671,cation channel sperm-associated protein 3 +15.5685541,PR:000000725,http://purl.obolibrary.org/obo/PR_000000725,voltage-gated potassium channel KCNV1 +15.5685541,PR:000001082,http://purl.obolibrary.org/obo/PR_000001082,CD160 molecule +15.5685541,PR:000001248,http://purl.obolibrary.org/obo/PR_000001248,visual pigment-like receptor peropsin +15.5685541,PR:000001511,http://purl.obolibrary.org/obo/PR_000001511,probable G-protein coupled receptor 149 +15.5685541,PR:000001521,http://purl.obolibrary.org/obo/PR_000001521,G-protein coupled receptor 20 +15.5685541,PR:000001524,http://purl.obolibrary.org/obo/PR_000001524,probable G-protein coupled receptor 25 +15.5685541,PR:000001538,http://purl.obolibrary.org/obo/PR_000001538,probable G-protein coupled receptor 82 +15.5685541,PR:000001638,http://purl.obolibrary.org/obo/PR_000001638,probable G-protein coupled receptor 162 +15.5685541,PR:000002000,http://purl.obolibrary.org/obo/PR_000002000,none +15.5685541,PR:000002015,http://purl.obolibrary.org/obo/PR_000002015,MHC class II histocompatibility antigen alpha chain DRA +15.5685541,PR:000003515,http://purl.obolibrary.org/obo/PR_000003515,"alpha-1,3-galactosyltransferase 2" +15.5685541,PR:000003619,http://purl.obolibrary.org/obo/PR_000003619,1-aminocyclopropane-1-carboxylate synthase-like protein 1 +15.5685541,PR:000003716,http://purl.obolibrary.org/obo/PR_000003716,disintegrin and metalloproteinase domain-containing protein 20 +15.5685541,PR:000003899,http://purl.obolibrary.org/obo/PR_000003899,microtubule organization protein AKNA +15.5685541,PR:000003989,http://purl.obolibrary.org/obo/PR_000003989,"amelogenin, Y isoform" +15.5685541,PR:000004063,http://purl.obolibrary.org/obo/PR_000004063,anoctamin-8 +15.5685541,PR:000004121,http://purl.obolibrary.org/obo/PR_000004121,amyloid-beta A4 precursor protein-binding family B member 3 +15.5685541,PR:000004229,http://purl.obolibrary.org/obo/PR_000004229,Rho GTPase-activating protein 23 +15.5685541,PR:000004236,http://purl.obolibrary.org/obo/PR_000004236,Rho GTPase-activating protein 30 +15.5685541,PR:000004329,http://purl.obolibrary.org/obo/PR_000004329,arylsulfatase J +15.5685541,PR:000004360,http://purl.obolibrary.org/obo/PR_000004360,activating signal cointegrator 1 complex subunit 2 +15.5685541,PR:000004478,http://purl.obolibrary.org/obo/PR_000004478,V-type proton ATPase subunit e 1 +15.5685541,PR:000004596,http://purl.obolibrary.org/obo/PR_000004596,"acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase" +15.5685541,PR:000004627,http://purl.obolibrary.org/obo/PR_000004627,B melanoma antigen 4 +15.5685541,PR:000004650,http://purl.obolibrary.org/obo/PR_000004650,protein BAT2-like +15.5685541,PR:000004757,http://purl.obolibrary.org/obo/PR_000004757,BH3-like motif-containing cell death inducer +15.5685541,PR:000004764,http://purl.obolibrary.org/obo/PR_000004764,biogenesis of lysosome-related organelles complex 1 subunit 3 +15.5685541,PR:000004882,http://purl.obolibrary.org/obo/PR_000004882,complement C1q-like protein 4 +15.5685541,PR:000004889,http://purl.obolibrary.org/obo/PR_000004889,complement C1q tumor necrosis factor-related protein 7 +15.5685541,PR:000004907,http://purl.obolibrary.org/obo/PR_000004907,complement component C7 +15.5685541,PR:000004910,http://purl.obolibrary.org/obo/PR_000004910,complement component C8 gamma chain +15.5685541,PR:000004928,http://purl.obolibrary.org/obo/PR_000004928,calcium-binding protein 39-like +15.5685541,PR:000004938,http://purl.obolibrary.org/obo/PR_000004938,calcium-binding protein 7 +15.5685541,PR:000004992,http://purl.obolibrary.org/obo/PR_000004992,calcium/calmodulin-dependent protein kinase II inhibitor 2 +15.5685541,PR:000005049,http://purl.obolibrary.org/obo/PR_000005049,protein GOLM2 +15.5685541,PR:000005132,http://purl.obolibrary.org/obo/PR_000005132,cyclin-I2 +15.5685541,PR:000005207,http://purl.obolibrary.org/obo/PR_000005207,serine/threonine-protein kinase MRCK gamma +15.5685541,PR:000005241,http://purl.obolibrary.org/obo/PR_000005241,cadherin-24 +15.5685541,PR:000005286,http://purl.obolibrary.org/obo/PR_000005286,CMT1A duplicated region transcript 1 protein +15.5685541,PR:000005303,http://purl.obolibrary.org/obo/PR_000005303,carcinoembryonic antigen-related cell adhesion molecule 20 +15.5685541,PR:000005340,http://purl.obolibrary.org/obo/PR_000005340,centrosomal protein of 120 kDa +15.5685541,PR:000005397,http://purl.obolibrary.org/obo/PR_000005397,cholesterol 25-hydroxylase +15.5685541,PR:000005436,http://purl.obolibrary.org/obo/PR_000005436,charged multivesicular body protein 4a +15.5685541,PR:000005588,http://purl.obolibrary.org/obo/PR_000005588,chronic lymphocytic leukemia deletion region gene 6 protein +15.5685541,PR:000005620,http://purl.obolibrary.org/obo/PR_000005620,N-acylneuraminate cytidylyltransferase +15.5685541,PR:000005649,http://purl.obolibrary.org/obo/PR_000005649,CCR4-NOT transcription complex subunit 10 +15.5685541,PR:000005707,http://purl.obolibrary.org/obo/PR_000005707,collagen alpha-1(XXIII) chain +15.5685541,PR:000005710,http://purl.obolibrary.org/obo/PR_000005710,collagen alpha-1(XXVII) chain +15.5685541,PR:000005764,http://purl.obolibrary.org/obo/PR_000005764,coronin-2B +15.5685541,PR:000005765,http://purl.obolibrary.org/obo/PR_000005765,coronin-6 +15.5685541,PR:000005839,http://purl.obolibrary.org/obo/PR_000005839,CPX chromosomal region candidate gene 1 protein +15.5685541,PR:000005947,http://purl.obolibrary.org/obo/PR_000005947,casein kinase I isoform gamma-1 +15.5685541,PR:000005963,http://purl.obolibrary.org/obo/PR_000005963,cystatin-11 +15.5685541,PR:000006040,http://purl.obolibrary.org/obo/PR_000006040,cortexin-1 +15.5685541,PR:000006117,http://purl.obolibrary.org/obo/PR_000006117,cytochrome P450 2C18 +15.5685541,PR:000006139,http://purl.obolibrary.org/obo/PR_000006139,cytochrome P450 4F12 +15.5685541,PR:000006141,http://purl.obolibrary.org/obo/PR_000006141,cytochrome P450 4F22 +15.5685541,PR:000006193,http://purl.obolibrary.org/obo/PR_000006193,none +15.5685541,PR:000006205,http://purl.obolibrary.org/obo/PR_000006205,none +15.5685541,PR:000006242,http://purl.obolibrary.org/obo/PR_000006242,none +15.5685541,PR:000006391,http://purl.obolibrary.org/obo/PR_000006391,beta-defensin 112 +15.5685541,PR:000006399,http://purl.obolibrary.org/obo/PR_000006399,beta-defensin 123 +15.5685541,PR:000006447,http://purl.obolibrary.org/obo/PR_000006447,diacylglycerol kinase eta +15.5685541,PR:000006449,http://purl.obolibrary.org/obo/PR_000006449,diacylglycerol kinase kappa +15.5685541,PR:000006450,http://purl.obolibrary.org/obo/PR_000006450,diacylglycerol kinase theta +15.5685541,PR:000006560,http://purl.obolibrary.org/obo/PR_000006560,"dynein heavy chain 14, axonemal" +15.5685541,PR:000006575,http://purl.obolibrary.org/obo/PR_000006575,DnaJ homolog subfamily B member 14 +15.5685541,PR:000006586,http://purl.obolibrary.org/obo/PR_000006586,DnaJ homolog subfamily C member 28 +15.5685541,PR:000006639,http://purl.obolibrary.org/obo/PR_000006639,protein dopey-1 +15.5685541,PR:000006641,http://purl.obolibrary.org/obo/PR_000006641,voltage-dependent calcium channel beta subunit-associated regulatory protein +15.5685541,PR:000006671,http://purl.obolibrary.org/obo/PR_000006671,protein dpy-19 1 +15.5685541,PR:000006796,http://purl.obolibrary.org/obo/PR_000006796,none +15.5685541,PR:000006889,http://purl.obolibrary.org/obo/PR_000006889,ectodysplasin-A receptor-associated adapter protein +15.5685541,PR:000006982,http://purl.obolibrary.org/obo/PR_000006982,eukaryotic translation initiation factor 3 subunit J +15.5685541,PR:000007011,http://purl.obolibrary.org/obo/PR_000007011,chymotrypsin-like elastase family member 2B +15.5685541,PR:000007283,http://purl.obolibrary.org/obo/PR_000007283,none +15.5685541,PR:000007286,http://purl.obolibrary.org/obo/PR_000007286,none +15.5685541,PR:000007327,http://purl.obolibrary.org/obo/PR_000007327,Fas apoptotic inhibitory molecule 1 +15.5685541,PR:000007331,http://purl.obolibrary.org/obo/PR_000007331,Fanconi anemia group B protein +15.5685541,PR:000007396,http://purl.obolibrary.org/obo/PR_000007396,F-box only protein 24 +15.5685541,PR:000007423,http://purl.obolibrary.org/obo/PR_000007423,F-box/WD repeat-containing protein 12 +15.5685541,PR:000007447,http://purl.obolibrary.org/obo/PR_000007447,follicular dendritic cell secreted peptide +15.5685541,PR:000007568,http://purl.obolibrary.org/obo/PR_000007568,FLYWCH-type zinc finger-containing protein 1 +15.5685541,PR:000007606,http://purl.obolibrary.org/obo/PR_000007606,forkhead box protein B2 +15.5685541,PR:000007672,http://purl.obolibrary.org/obo/PR_000007672,protein furry +15.5685541,PR:000007704,http://purl.obolibrary.org/obo/PR_000007704,"alpha-(1,3)-fucosyltransferase 11" +15.5685541,PR:000007776,http://purl.obolibrary.org/obo/PR_000007776,gamma-aminobutyric acid receptor subunit epsilon +15.5685541,PR:000007798,http://purl.obolibrary.org/obo/PR_000007798,G antigen 2B/2C +15.5685541,PR:000007802,http://purl.obolibrary.org/obo/PR_000007802,G antigen 6 +15.5685541,PR:000007886,http://purl.obolibrary.org/obo/PR_000007886,GRIP and coiled-coil domain-containing protein 1 +15.5685541,PR:000007890,http://purl.obolibrary.org/obo/PR_000007890,PAX3- and PAX7-binding protein 1 +15.5685541,PR:000007964,http://purl.obolibrary.org/obo/PR_000007964,glutathione hydrolase 6 +15.5685541,PR:000007966,http://purl.obolibrary.org/obo/PR_000007966,glutathione hydrolase light chain 1 +15.5685541,PR:000008018,http://purl.obolibrary.org/obo/PR_000008018,beta-galactosidase-1-like protein 2 +15.5685541,PR:000008029,http://purl.obolibrary.org/obo/PR_000008029,zinc finger protein GLI4 +15.5685541,PR:000008061,http://purl.obolibrary.org/obo/PR_000008061,glycine N-acyltransferase-like protein 2 +15.5685541,PR:000008138,http://purl.obolibrary.org/obo/PR_000008138,golgin subfamily A member 8B +15.5685541,PR:000008144,http://purl.obolibrary.org/obo/PR_000008144,vesicle transport protein GOT1A +15.5685541,PR:000008184,http://purl.obolibrary.org/obo/PR_000008184,protein GPR107 +15.5685541,PR:000008424,http://purl.obolibrary.org/obo/PR_000008424,histone H2B type W-T +15.5685541,PR:000008491,http://purl.obolibrary.org/obo/PR_000008491,hepatoma-derived growth factor-like protein 1 +15.5685541,PR:000008543,http://purl.obolibrary.org/obo/PR_000008543,HHIP-like protein 2 +15.5685541,PR:000008549,http://purl.obolibrary.org/obo/PR_000008549,"3-hydroxyisobutyrate dehydrogenase, mitochondrial" +15.5685541,PR:000008788,http://purl.obolibrary.org/obo/PR_000008788,hydroxysteroid dehydrogenase-like protein 1 +15.5685541,PR:000008966,http://purl.obolibrary.org/obo/PR_000008966,immunoglobulin kappa constant +15.5685541,PR:000009103,http://purl.obolibrary.org/obo/PR_000009103,interferon regulatory factor 2-binding protein 1 +15.5685541,PR:000009174,http://purl.obolibrary.org/obo/PR_000009174,none +15.5685541,PR:000009185,http://purl.obolibrary.org/obo/PR_000009185,none +15.5685541,PR:000009203,http://purl.obolibrary.org/obo/PR_000009203,JNK1/MAPK8-associated membrane protein +15.5685541,PR:000009221,http://purl.obolibrary.org/obo/PR_000009221,josephin-2 +15.5685541,PR:000009226,http://purl.obolibrary.org/obo/PR_000009226,jerky protein +15.5685541,PR:000009275,http://purl.obolibrary.org/obo/PR_000009275,ER lumen protein-retaining receptor 3 +15.5685541,PR:000009352,http://purl.obolibrary.org/obo/PR_000009352,kinesin light chain 4 +15.5685541,PR:000009371,http://purl.obolibrary.org/obo/PR_000009371,kelch domain-containing protein 3 +15.5685541,PR:000009380,http://purl.obolibrary.org/obo/PR_000009380,kelch-like protein 18 +15.5685541,PR:000009387,http://purl.obolibrary.org/obo/PR_000009387,kelch-like protein 25 +15.5685541,PR:000009404,http://purl.obolibrary.org/obo/PR_000009404,kelch-like protein 8 +15.5685541,PR:000009441,http://purl.obolibrary.org/obo/PR_000009441,KICSTOR complex protein kaptin +15.5685541,PR:000009465,http://purl.obolibrary.org/obo/PR_000009465,"keratin, type I cytoskeletal 26" +15.5685541,PR:000009472,http://purl.obolibrary.org/obo/PR_000009472,"keratin, type I cuticular Ha3-II" +15.5685541,PR:000009477,http://purl.obolibrary.org/obo/PR_000009477,"keratin, type I cuticular Ha8" +15.5685541,PR:000009538,http://purl.obolibrary.org/obo/PR_000009538,keratin-associated protein 2-1 +15.5685541,PR:000009550,http://purl.obolibrary.org/obo/PR_000009550,keratin-associated protein 24-1 +15.5685541,PR:000009572,http://purl.obolibrary.org/obo/PR_000009572,keratin-associated protein 5-4 +15.5685541,PR:000009581,http://purl.obolibrary.org/obo/PR_000009581,keratin-associated protein 7-1 +15.5685541,PR:000009589,http://purl.obolibrary.org/obo/PR_000009589,keratinocyte-associated protein 3 +15.5685541,PR:000009607,http://purl.obolibrary.org/obo/PR_000009607,none +15.5685541,PR:000009623,http://purl.obolibrary.org/obo/PR_000009623,none +15.5685541,PR:000009712,http://purl.obolibrary.org/obo/PR_000009712,late cornified envelope protein 3D +15.5685541,PR:000009764,http://purl.obolibrary.org/obo/PR_000009764,LETM1 domain-containing protein 1 +15.5685541,PR:000009786,http://purl.obolibrary.org/obo/PR_000009786,LHFPL tetraspan subfamily member 2 protein +15.5685541,PR:000009788,http://purl.obolibrary.org/obo/PR_000009788,LHFPL tetraspan subfamily member 4 protein +15.5685541,PR:000009835,http://purl.obolibrary.org/obo/PR_000009835,gastric triacylglycerol lipase +15.5685541,PR:000009839,http://purl.obolibrary.org/obo/PR_000009839,lipase member K +15.5685541,PR:000009853,http://purl.obolibrary.org/obo/PR_000009853,VIP36-like protein +15.5685541,PR:000009857,http://purl.obolibrary.org/obo/PR_000009857,lipase maturation factor 2 +15.5685541,PR:000009999,http://purl.obolibrary.org/obo/PR_000009999,lysozyme g-like protein 1 +15.5685541,PR:000010021,http://purl.obolibrary.org/obo/PR_000010021,none +15.5685541,PR:000010062,http://purl.obolibrary.org/obo/PR_000010062,melanoma-associated antigen 8 +15.5685541,PR:000010080,http://purl.obolibrary.org/obo/PR_000010080,melanoma-associated antigen F1 +15.5685541,PR:000010097,http://purl.obolibrary.org/obo/PR_000010097,apical endosomal glycoprotein +15.5685541,PR:000010178,http://purl.obolibrary.org/obo/PR_000010178,E3 ubiquitin-protein ligase MARCHF4 +15.5685541,PR:000010200,http://purl.obolibrary.org/obo/PR_000010200,MEF2-activating motif and SAP domain-containing transcriptional regulator +15.5685541,PR:000010272,http://purl.obolibrary.org/obo/PR_000010272,myelodysplastic syndrome 2 translocation-associated protein +15.5685541,PR:000010362,http://purl.obolibrary.org/obo/PR_000010362,microfibril-associated glycoprotein 3 +15.5685541,PR:000010422,http://purl.obolibrary.org/obo/PR_000010422,MIT domain-containing protein 1 +15.5685541,PR:000010541,http://purl.obolibrary.org/obo/PR_000010541,serine protease MPN2 +15.5685541,PR:000010571,http://purl.obolibrary.org/obo/PR_000010571,"39S ribosomal protein L1, mitochondrial" +15.5685541,PR:000010598,http://purl.obolibrary.org/obo/PR_000010598,"39S ribosomal protein L38, mitochondrial" +15.5685541,PR:000010600,http://purl.obolibrary.org/obo/PR_000010600,"39S ribosomal protein L4, mitochondrial" +15.5685541,PR:000010636,http://purl.obolibrary.org/obo/PR_000010636,"28S ribosomal protein S28, mitochondrial" +15.5685541,PR:000010641,http://purl.obolibrary.org/obo/PR_000010641,"28S ribosomal protein S35, mitochondrial" +15.5685541,PR:000010699,http://purl.obolibrary.org/obo/PR_000010699,metallothionein-1G +15.5685541,PR:000010752,http://purl.obolibrary.org/obo/PR_000010752,protein MTSS 2 +15.5685541,PR:000010773,http://purl.obolibrary.org/obo/PR_000010773,AP-5 complex subunit mu-1 +15.5685541,PR:000010795,http://purl.obolibrary.org/obo/PR_000010795,matrix-remodeling-associated protein 7 +15.5685541,PR:000010886,http://purl.obolibrary.org/obo/PR_000010886,"Myb-related transcription factor, partner of profilin" +15.5685541,PR:000010897,http://purl.obolibrary.org/obo/PR_000010897,melanoma-associated antigen B16 +15.5685541,PR:000010931,http://purl.obolibrary.org/obo/PR_000010931,none +15.5685541,PR:000010933,http://purl.obolibrary.org/obo/PR_000010933,none +15.5685541,PR:000010977,http://purl.obolibrary.org/obo/PR_000010977,nucleosome assembly protein 1-like 3 +15.5685541,PR:000011172,http://purl.obolibrary.org/obo/PR_000011172,transcription factor NF-E4 +15.5685541,PR:000011210,http://purl.obolibrary.org/obo/PR_000011210,NIF3-like protein 1 +15.5685541,PR:000011276,http://purl.obolibrary.org/obo/PR_000011276,"NACHT, LRR and PYD domains-containing protein 8" +15.5685541,PR:000011453,http://purl.obolibrary.org/obo/PR_000011453,cytosolic 5'-nucleotidase 1B +15.5685541,PR:000011489,http://purl.obolibrary.org/obo/PR_000011489,tudor-interacting repair regulator protein +15.5685541,PR:000011593,http://purl.obolibrary.org/obo/PR_000011593,ovarian cancer-related protein 1 +15.5685541,PR:000011629,http://purl.obolibrary.org/obo/PR_000011629,olfactomedin-like protein 2B +15.5685541,PR:000012076,http://purl.obolibrary.org/obo/PR_000012076,proton channel OTOP3 +15.5685541,PR:000012088,http://purl.obolibrary.org/obo/PR_000012088,ovochymase-1 +15.5685541,PR:000012238,http://purl.obolibrary.org/obo/PR_000012238,polyadenylate-binding protein-interacting protein 2B +15.5685541,PR:000012379,http://purl.obolibrary.org/obo/PR_000012379,protocadherin beta-2 +15.5685541,PR:000012382,http://purl.obolibrary.org/obo/PR_000012382,protocadherin beta-5 +15.5685541,PR:000012392,http://purl.obolibrary.org/obo/PR_000012392,protocadherin gamma-A3 +15.5685541,PR:000012405,http://purl.obolibrary.org/obo/PR_000012405,protocadherin gamma-B7 +15.5685541,PR:000012590,http://purl.obolibrary.org/obo/PR_000012590,cyclin-dependent kinase 15 +15.5685541,PR:000012721,http://purl.obolibrary.org/obo/PR_000012721,"phosphatidylinositol 4,5-bisphosphate 3-kinase catalytic subunit delta isoform" +15.5685541,PR:000012754,http://purl.obolibrary.org/obo/PR_000012754,phosphatidylinositol transfer protein beta isoform +15.5685541,PR:000012821,http://purl.obolibrary.org/obo/PR_000012821,placenta-specific protein 9 +15.5685541,PR:000012903,http://purl.obolibrary.org/obo/PR_000012903,putative pro-MCH-like protein 2 +15.5685541,PR:000012932,http://purl.obolibrary.org/obo/PR_000012932,paraneoplastic antigen-like protein 5 +15.5685541,PR:000012949,http://purl.obolibrary.org/obo/PR_000012949,pyridoxine-5'-phosphate oxidase +15.5685541,PR:000013071,http://purl.obolibrary.org/obo/PR_000013071,liprin-alpha-4 +15.5685541,PR:000013097,http://purl.obolibrary.org/obo/PR_000013097,protein phosphatase 1J +15.5685541,PR:000013260,http://purl.obolibrary.org/obo/PR_000013260,ERI1 exoribonuclease 3 +15.5685541,PR:000013282,http://purl.obolibrary.org/obo/PR_000013282,pre-mRNA-processing factor 39 +15.5685541,PR:000013292,http://purl.obolibrary.org/obo/PR_000013292,ribose-phosphate pyrophosphokinase 3 +15.5685541,PR:000013299,http://purl.obolibrary.org/obo/PR_000013299,proline-rich protein 13 +15.5685541,PR:000013314,http://purl.obolibrary.org/obo/PR_000013314,transmembrane gamma-carboxyglutamic acid protein 3 +15.5685541,PR:000013367,http://purl.obolibrary.org/obo/PR_000013367,proteasome subunit alpha-type 8 +15.5685541,PR:000013388,http://purl.obolibrary.org/obo/PR_000013388,26S proteasome non-ATPase regulatory subunit 5 +15.5685541,PR:000013507,http://purl.obolibrary.org/obo/PR_000013507,peroxidasin-like protein +15.5685541,PR:000013537,http://purl.obolibrary.org/obo/PR_000013537,none +15.5685541,PR:000013609,http://purl.obolibrary.org/obo/PR_000013609,Ras-related protein Rab-33B +15.5685541,PR:000013628,http://purl.obolibrary.org/obo/PR_000013628,Ras-related protein Rab-40C +15.5685541,PR:000013753,http://purl.obolibrary.org/obo/PR_000013753,Ras-GEF domain-containing family member 1A +15.5685541,PR:000013794,http://purl.obolibrary.org/obo/PR_000013794,RNA-binding protein 33 +15.5685541,PR:000013880,http://purl.obolibrary.org/obo/PR_000013880,tumor necrosis factor receptor superfamily member 19L +15.5685541,PR:000014067,http://purl.obolibrary.org/obo/PR_000014067,E3 ubiquitin-protein ligase Arkadia +15.5685541,PR:000014083,http://purl.obolibrary.org/obo/PR_000014083,E3 ubiquitin-protein ligase RNF135 +15.5685541,PR:000014087,http://purl.obolibrary.org/obo/PR_000014087,RING finger protein 141 +15.5685541,PR:000014117,http://purl.obolibrary.org/obo/PR_000014117,RING finger protein 207 +15.5685541,PR:000014126,http://purl.obolibrary.org/obo/PR_000014126,RING finger protein 24 +15.5685541,PR:000014145,http://purl.obolibrary.org/obo/PR_000014145,"rRNA methyltransferase 3, mitochondrial" +15.5685541,PR:000014189,http://purl.obolibrary.org/obo/PR_000014189,60S ribosomal protein L10-like +15.5685541,PR:000014272,http://purl.obolibrary.org/obo/PR_000014272,40S ribosomal protein S27-like protein +15.5685541,PR:000014337,http://purl.obolibrary.org/obo/PR_000014337,retbindin +15.5685541,PR:000014339,http://purl.obolibrary.org/obo/PR_000014339,radial spoke head 14 homolog +15.5685541,PR:000014382,http://purl.obolibrary.org/obo/PR_000014382,none +15.5685541,PR:000014383,http://purl.obolibrary.org/obo/PR_000014383,none +15.5685541,PR:000014422,http://purl.obolibrary.org/obo/PR_000014422,S100P-binding protein +15.5685541,PR:000014572,http://purl.obolibrary.org/obo/PR_000014572,homeobox protein SEBOX +15.5685541,PR:000014588,http://purl.obolibrary.org/obo/PR_000014588,SEC23-interacting protein +15.5685541,PR:000014598,http://purl.obolibrary.org/obo/PR_000014598,protein transport protein Sec61 subunit gamma +15.5685541,PR:000014680,http://purl.obolibrary.org/obo/PR_000014680,serpin A11 +15.5685541,PR:000014682,http://purl.obolibrary.org/obo/PR_000014682,putative serpin A13 +15.5685541,PR:000014733,http://purl.obolibrary.org/obo/PR_000014733,splicing factor 3A subunit 3 +15.5685541,PR:000014779,http://purl.obolibrary.org/obo/PR_000014779,sideroflexin-4 +15.5685541,PR:000014862,http://purl.obolibrary.org/obo/PR_000014862,seven in absentia homolog 3 +15.5685541,PR:000014887,http://purl.obolibrary.org/obo/PR_000014887,signal-regulatory protein gamma +15.5685541,PR:000015022,http://purl.obolibrary.org/obo/PR_000015022,S-adenosylmethionine mitochondrial carrier protein +15.5685541,PR:000015092,http://purl.obolibrary.org/obo/PR_000015092,solute carrier family 35 member B1 +15.5685541,PR:000015103,http://purl.obolibrary.org/obo/PR_000015103,solute carrier family 35 member E3 +15.5685541,PR:000015107,http://purl.obolibrary.org/obo/PR_000015107,putative thiamine transporter SLC35F3 +15.5685541,PR:000015320,http://purl.obolibrary.org/obo/PR_000015320,snRNA-activating protein complex subunit 5 +15.5685541,PR:000015370,http://purl.obolibrary.org/obo/PR_000015370,sorting nexin-20 +15.5685541,PR:000015377,http://purl.obolibrary.org/obo/PR_000015377,sorting nexin-29 +15.5685541,PR:000015500,http://purl.obolibrary.org/obo/PR_000015500,spermatogenesis-associated serine-rich protein 1 +15.5685541,PR:000015501,http://purl.obolibrary.org/obo/PR_000015501,spermatogenesis-associated serine-rich protein 2 +15.5685541,PR:000015651,http://purl.obolibrary.org/obo/PR_000015651,single-stranded DNA-binding protein 4 +15.5685541,PR:000015826,http://purl.obolibrary.org/obo/PR_000015826,sulfotransferase 6B1 +15.5685541,PR:000015942,http://purl.obolibrary.org/obo/PR_000015942,none +15.5685541,PR:000015964,http://purl.obolibrary.org/obo/PR_000015964,none +15.5685541,PR:000016022,http://purl.obolibrary.org/obo/PR_000016022,TATA box-binding protein-associated factor RNA polymerase I subunit C +15.5685541,PR:000016086,http://purl.obolibrary.org/obo/PR_000016086,taste receptor type 2 member 8 +15.5685541,PR:000016094,http://purl.obolibrary.org/obo/PR_000016094,TBC1 domain family member 10B +15.5685541,PR:000016172,http://purl.obolibrary.org/obo/PR_000016172,elongin-A3 +15.5685541,PR:000016260,http://purl.obolibrary.org/obo/PR_000016260,testis-expressed protein 9 +15.5685541,PR:000016306,http://purl.obolibrary.org/obo/PR_000016306,testicular haploid expressed gene protein +15.5685541,PR:000016404,http://purl.obolibrary.org/obo/PR_000016404,transmembrane emp24 domain-containing protein 4 +15.5685541,PR:000016416,http://purl.obolibrary.org/obo/PR_000016416,lipid droplet assembly factor 1 +15.5685541,PR:000016440,http://purl.obolibrary.org/obo/PR_000016440,capucin +15.5685541,PR:000016443,http://purl.obolibrary.org/obo/PR_000016443,"trimethyllysine dioxygenase, mitochondrial" +15.5685541,PR:000016461,http://purl.obolibrary.org/obo/PR_000016461,transmembrane protease serine 7 +15.5685541,PR:000016464,http://purl.obolibrary.org/obo/PR_000016464,"thymosin beta-4, Y-chromosomal" +15.5685541,PR:000016574,http://purl.obolibrary.org/obo/PR_000016574,tumor protein D55 +15.5685541,PR:000016589,http://purl.obolibrary.org/obo/PR_000016589,tumor protein p63-regulated gene 1 protein +15.5685541,PR:000016678,http://purl.obolibrary.org/obo/PR_000016678,tRNA guanosine-2'-O-methyltransferase TRM11 +15.5685541,PR:000016737,http://purl.obolibrary.org/obo/PR_000016737,tetraspanin-11 +15.5685541,PR:000016765,http://purl.obolibrary.org/obo/PR_000016765,testis-specific Y-encoded-like protein 6 +15.5685541,PR:000016940,http://purl.obolibrary.org/obo/PR_000016940,none +15.5685541,PR:000016944,http://purl.obolibrary.org/obo/PR_000016944,splicing factor U2AF 35 kDa subunit +15.5685541,PR:000016946,http://purl.obolibrary.org/obo/PR_000016946,splicing factor U2AF 65 kDa subunit +15.5685541,PR:000016970,http://purl.obolibrary.org/obo/PR_000016970,ubiquitin-conjugating enzyme E2 D4 +15.5685541,PR:000017059,http://purl.obolibrary.org/obo/PR_000017059,UDP-glucuronosyltransferase 2B10 +15.5685541,PR:000017066,http://purl.obolibrary.org/obo/PR_000017066,UDP-glucuronosyltransferase 3A1 +15.5685541,PR:000017165,http://purl.obolibrary.org/obo/PR_000017165,ubiquitin carboxyl-terminal hydrolase 27 +15.5685541,PR:000017170,http://purl.obolibrary.org/obo/PR_000017170,ubiquitin carboxyl-terminal hydrolase 31 +15.5685541,PR:000017177,http://purl.obolibrary.org/obo/PR_000017177,ubiquitin carboxyl-terminal hydrolase 38 +15.5685541,PR:000017192,http://purl.obolibrary.org/obo/PR_000017192,inactive ubiquitin carboxyl-terminal hydrolase 53 +15.5685541,PR:000017193,http://purl.obolibrary.org/obo/PR_000017193,inactive ubiquitin carboxyl-terminal hydrolase 54 +15.5685541,PR:000017203,http://purl.obolibrary.org/obo/PR_000017203,U3 small nucleolar RNA-associated protein 15 +15.5685541,PR:000017278,http://purl.obolibrary.org/obo/PR_000017278,variable charge X-linked protein 3B +15.5685541,PR:000017380,http://purl.obolibrary.org/obo/PR_000017380,RCC1-like G exchanging factor-like protein +15.5685541,PR:000017389,http://purl.obolibrary.org/obo/PR_000017389,cilia- and flagella-associated protein 52 +15.5685541,PR:000017534,http://purl.obolibrary.org/obo/PR_000017534,protein YIPF4 +15.5685541,PR:000017537,http://purl.obolibrary.org/obo/PR_000017537,protein YIPF7 +15.5685541,PR:000017563,http://purl.obolibrary.org/obo/PR_000017563,zinc finger and BTB domain-containing protein 11 +15.5685541,PR:000017585,http://purl.obolibrary.org/obo/PR_000017585,zinc finger and BTB domain-containing protein 44 +15.5685541,PR:000017590,http://purl.obolibrary.org/obo/PR_000017590,zinc finger and BTB domain-containing protein 5 +15.5685541,PR:000017606,http://purl.obolibrary.org/obo/PR_000017606,nucleolar protein of 40 kDa +15.5685541,PR:000017661,http://purl.obolibrary.org/obo/PR_000017661,zymogen granule protein 16 homolog B +15.5685541,PR:000017681,http://purl.obolibrary.org/obo/PR_000017681,zinc finger matrin-type protein 4 +15.5685541,PR:000017693,http://purl.obolibrary.org/obo/PR_000017693,zinc finger MYND domain-containing protein 19 +15.5685541,PR:000017717,http://purl.obolibrary.org/obo/PR_000017717,zinc finger protein OZF +15.5685541,PR:000017725,http://purl.obolibrary.org/obo/PR_000017725,zinc finger protein with KRAB and SCAN domains 7 +15.5685541,PR:000017731,http://purl.obolibrary.org/obo/PR_000017731,zinc finger protein 18 +15.5685541,PR:000017777,http://purl.obolibrary.org/obo/PR_000017777,zinc finger protein 25 +15.5685541,PR:000017791,http://purl.obolibrary.org/obo/PR_000017791,zinc finger protein 267 +15.5685541,PR:000017816,http://purl.obolibrary.org/obo/PR_000017816,zinc finger protein 300 +15.5685541,PR:000017825,http://purl.obolibrary.org/obo/PR_000017825,zinc finger protein 322 +15.5685541,PR:000017864,http://purl.obolibrary.org/obo/PR_000017864,zinc finger protein 394 +15.5685541,PR:000017871,http://purl.obolibrary.org/obo/PR_000017871,zinc finger protein 407 +15.5685541,PR:000017918,http://purl.obolibrary.org/obo/PR_000017918,zinc finger protein 474 +15.5685541,PR:000017948,http://purl.obolibrary.org/obo/PR_000017948,zinc finger protein 516 +15.5685541,PR:000018002,http://purl.obolibrary.org/obo/PR_000018002,zinc finger protein 580 +15.5685541,PR:000018115,http://purl.obolibrary.org/obo/PR_000018115,zinc finger protein 717 +15.5685541,PR:000018124,http://purl.obolibrary.org/obo/PR_000018124,zinc finger protein 746 +15.5685541,PR:000018164,http://purl.obolibrary.org/obo/PR_000018164,zinc finger protein 8 +15.5685541,PR:000018189,http://purl.obolibrary.org/obo/PR_000018189,zinc finger protein 84 +15.5685541,PR:000018209,http://purl.obolibrary.org/obo/PR_000018209,E3 ubiquitin-protein ligase ZNRF4 +15.5685541,PR:000018239,http://purl.obolibrary.org/obo/PR_000018239,zinc finger protein ZXDC +15.5685541,PR:000018252,http://purl.obolibrary.org/obo/PR_000018252,none +15.5685541,PR:000018256,http://purl.obolibrary.org/obo/PR_000018256,ZNF365 gene translation product +15.5685541,PR:000021985,http://purl.obolibrary.org/obo/PR_000021985,none +15.5685541,PR:000022132,http://purl.obolibrary.org/obo/PR_000022132,none +15.5685541,PR:000022147,http://purl.obolibrary.org/obo/PR_000022147,none +15.5685541,PR:000022213,http://purl.obolibrary.org/obo/PR_000022213,none +15.5685541,PR:000022233,http://purl.obolibrary.org/obo/PR_000022233,none +15.5685541,PR:000022243,http://purl.obolibrary.org/obo/PR_000022243,none +15.5685541,PR:000022252,http://purl.obolibrary.org/obo/PR_000022252,none +15.5685541,PR:000022257,http://purl.obolibrary.org/obo/PR_000022257,none +15.5685541,PR:000022258,http://purl.obolibrary.org/obo/PR_000022258,none +15.5685541,PR:000022259,http://purl.obolibrary.org/obo/PR_000022259,none +15.5685541,PR:000022263,http://purl.obolibrary.org/obo/PR_000022263,none +15.5685541,PR:000022295,http://purl.obolibrary.org/obo/PR_000022295,none +15.5685541,PR:000022323,http://purl.obolibrary.org/obo/PR_000022323,none +15.5685541,PR:000022328,http://purl.obolibrary.org/obo/PR_000022328,none +15.5685541,PR:000022349,http://purl.obolibrary.org/obo/PR_000022349,none +15.5685541,PR:000022389,http://purl.obolibrary.org/obo/PR_000022389,none +15.5685541,PR:000022402,http://purl.obolibrary.org/obo/PR_000022402,none +15.5685541,PR:000022413,http://purl.obolibrary.org/obo/PR_000022413,none +15.5685541,PR:000022511,http://purl.obolibrary.org/obo/PR_000022511,none +15.5685541,PR:000022523,http://purl.obolibrary.org/obo/PR_000022523,none +15.5685541,PR:000022551,http://purl.obolibrary.org/obo/PR_000022551,none +15.5685541,PR:000022637,http://purl.obolibrary.org/obo/PR_000022637,none +15.5685541,PR:000022648,http://purl.obolibrary.org/obo/PR_000022648,none +15.5685541,PR:000022652,http://purl.obolibrary.org/obo/PR_000022652,none +15.5685541,PR:000022657,http://purl.obolibrary.org/obo/PR_000022657,none +15.5685541,PR:000022724,http://purl.obolibrary.org/obo/PR_000022724,none +15.5685541,PR:000022779,http://purl.obolibrary.org/obo/PR_000022779,none +15.5685541,PR:000022806,http://purl.obolibrary.org/obo/PR_000022806,none +15.5685541,PR:000022814,http://purl.obolibrary.org/obo/PR_000022814,none +15.5685541,PR:000022877,http://purl.obolibrary.org/obo/PR_000022877,none +15.5685541,PR:000022881,http://purl.obolibrary.org/obo/PR_000022881,none +15.5685541,PR:000022882,http://purl.obolibrary.org/obo/PR_000022882,none +15.5685541,PR:000022957,http://purl.obolibrary.org/obo/PR_000022957,none +15.5685541,PR:000022994,http://purl.obolibrary.org/obo/PR_000022994,none +15.5685541,PR:000023006,http://purl.obolibrary.org/obo/PR_000023006,none +15.5685541,PR:000023014,http://purl.obolibrary.org/obo/PR_000023014,none +15.5685541,PR:000023057,http://purl.obolibrary.org/obo/PR_000023057,none +15.5685541,PR:000023114,http://purl.obolibrary.org/obo/PR_000023114,none +15.5685541,PR:000023133,http://purl.obolibrary.org/obo/PR_000023133,none +15.5685541,PR:000023144,http://purl.obolibrary.org/obo/PR_000023144,none +15.5685541,PR:000023156,http://purl.obolibrary.org/obo/PR_000023156,none +15.5685541,PR:000023163,http://purl.obolibrary.org/obo/PR_000023163,none +15.5685541,PR:000023215,http://purl.obolibrary.org/obo/PR_000023215,none +15.5685541,PR:000023234,http://purl.obolibrary.org/obo/PR_000023234,none +15.5685541,PR:000023237,http://purl.obolibrary.org/obo/PR_000023237,none +15.5685541,PR:000023280,http://purl.obolibrary.org/obo/PR_000023280,none +15.5685541,PR:000023407,http://purl.obolibrary.org/obo/PR_000023407,none +15.5685541,PR:000023417,http://purl.obolibrary.org/obo/PR_000023417,none +15.5685541,PR:000023420,http://purl.obolibrary.org/obo/PR_000023420,none +15.5685541,PR:000023431,http://purl.obolibrary.org/obo/PR_000023431,none +15.5685541,PR:000023438,http://purl.obolibrary.org/obo/PR_000023438,none +15.5685541,PR:000023455,http://purl.obolibrary.org/obo/PR_000023455,none +15.5685541,PR:000023462,http://purl.obolibrary.org/obo/PR_000023462,none +15.5685541,PR:000023464,http://purl.obolibrary.org/obo/PR_000023464,none +15.5685541,PR:000023480,http://purl.obolibrary.org/obo/PR_000023480,none +15.5685541,PR:000023482,http://purl.obolibrary.org/obo/PR_000023482,none +15.5685541,PR:000023530,http://purl.obolibrary.org/obo/PR_000023530,none +15.5685541,PR:000023563,http://purl.obolibrary.org/obo/PR_000023563,none +15.5685541,PR:000023617,http://purl.obolibrary.org/obo/PR_000023617,none +15.5685541,PR:000023623,http://purl.obolibrary.org/obo/PR_000023623,none +15.5685541,PR:000023640,http://purl.obolibrary.org/obo/PR_000023640,none +15.5685541,PR:000023654,http://purl.obolibrary.org/obo/PR_000023654,none +15.5685541,PR:000023685,http://purl.obolibrary.org/obo/PR_000023685,none +15.5685541,PR:000023687,http://purl.obolibrary.org/obo/PR_000023687,none +15.5685541,PR:000023729,http://purl.obolibrary.org/obo/PR_000023729,none +15.5685541,PR:000023739,http://purl.obolibrary.org/obo/PR_000023739,none +15.5685541,PR:000023767,http://purl.obolibrary.org/obo/PR_000023767,none +15.5685541,PR:000023774,http://purl.obolibrary.org/obo/PR_000023774,none +15.5685541,PR:000023779,http://purl.obolibrary.org/obo/PR_000023779,none +15.5685541,PR:000023783,http://purl.obolibrary.org/obo/PR_000023783,none +15.5685541,PR:000023804,http://purl.obolibrary.org/obo/PR_000023804,none +15.5685541,PR:000023817,http://purl.obolibrary.org/obo/PR_000023817,none +15.5685541,PR:000023831,http://purl.obolibrary.org/obo/PR_000023831,none +15.5685541,PR:000023869,http://purl.obolibrary.org/obo/PR_000023869,none +15.5685541,PR:000023874,http://purl.obolibrary.org/obo/PR_000023874,none +15.5685541,PR:000023885,http://purl.obolibrary.org/obo/PR_000023885,none +15.5685541,PR:000023889,http://purl.obolibrary.org/obo/PR_000023889,none +15.5685541,PR:000023917,http://purl.obolibrary.org/obo/PR_000023917,none +15.5685541,PR:000023940,http://purl.obolibrary.org/obo/PR_000023940,none +15.5685541,PR:000023946,http://purl.obolibrary.org/obo/PR_000023946,none +15.5685541,PR:000023980,http://purl.obolibrary.org/obo/PR_000023980,none +15.5685541,PR:000023991,http://purl.obolibrary.org/obo/PR_000023991,none +15.5685541,PR:000023994,http://purl.obolibrary.org/obo/PR_000023994,none +15.5685541,PR:000024022,http://purl.obolibrary.org/obo/PR_000024022,none +15.5685541,PR:000024047,http://purl.obolibrary.org/obo/PR_000024047,none +15.5685541,PR:000024059,http://purl.obolibrary.org/obo/PR_000024059,none +15.5685541,PR:000024074,http://purl.obolibrary.org/obo/PR_000024074,none +15.5685541,PR:000024090,http://purl.obolibrary.org/obo/PR_000024090,sensor protein TorS +15.5685541,PR:000024169,http://purl.obolibrary.org/obo/PR_000024169,none +15.5685541,PR:000024174,http://purl.obolibrary.org/obo/PR_000024174,none +15.5685541,PR:000024175,http://purl.obolibrary.org/obo/PR_000024175,none +15.5685541,PR:000024207,http://purl.obolibrary.org/obo/PR_000024207,none +15.5685541,PR:000024242,http://purl.obolibrary.org/obo/PR_000024242,none +15.5685541,PR:000024257,http://purl.obolibrary.org/obo/PR_000024257,none +15.5685541,PR:000024840,http://purl.obolibrary.org/obo/PR_000024840,heat shock protein HSP 90-alpha A2 +15.5685541,PR:000025054,http://purl.obolibrary.org/obo/PR_000025054,phosphotransferase RcsD +15.5685541,PR:000025561,http://purl.obolibrary.org/obo/PR_000025561,amyloid-beta precursor protein sequence variant A692G (human) +15.5685541,PR:000025572,http://purl.obolibrary.org/obo/PR_000025572,amyloid-beta precursor protein sequence variant V717F (human) +15.5685541,PR:000025574,http://purl.obolibrary.org/obo/PR_000025574,amyloid-beta precursor protein sequence variant V717I (human) +15.5685541,PR:000025822,http://purl.obolibrary.org/obo/PR_000025822,solute carrier organic anion transporter family member 5A1 +15.5685541,PR:000025925,http://purl.obolibrary.org/obo/PR_000025925,dimeric TGF-beta 1 +15.5685541,PR:000027063,http://purl.obolibrary.org/obo/PR_000027063,erythroid transcription factor isoform 1 +15.5685541,PR:000027078,http://purl.obolibrary.org/obo/PR_000027078,none +15.5685541,PR:000027575,http://purl.obolibrary.org/obo/PR_000027575,none +15.5685541,PR:000027590,http://purl.obolibrary.org/obo/PR_000027590,none +15.5685541,PR:000027601,http://purl.obolibrary.org/obo/PR_000027601,none +15.5685541,PR:000027727,http://purl.obolibrary.org/obo/PR_000027727,none +15.5685541,PR:000028189,http://purl.obolibrary.org/obo/PR_000028189,none +15.5685541,PR:000028497,http://purl.obolibrary.org/obo/PR_000028497,none +15.5685541,PR:000028504,http://purl.obolibrary.org/obo/PR_000028504,none +15.5685541,PR:000028527,http://purl.obolibrary.org/obo/PR_000028527,casein derived peptide +15.5685541,PR:000029100,http://purl.obolibrary.org/obo/PR_000029100,dysbindin domain-containing protein 2 +15.5685541,PR:000029111,http://purl.obolibrary.org/obo/PR_000029111,putative glycerol kinase 5 +15.5685541,PR:000029137,http://purl.obolibrary.org/obo/PR_000029137,serine/threonine-protein kinase SBK2 +15.5685541,PR:000029263,http://purl.obolibrary.org/obo/PR_000029263,Arf-GAP domain and FG repeat-containing protein 2 +15.5685541,PR:000029279,http://purl.obolibrary.org/obo/PR_000029279,armadillo repeat-containing protein 2 +15.5685541,PR:000029299,http://purl.obolibrary.org/obo/PR_000029299,B-cell CLL/lymphoma 7 protein family member A +15.5685541,PR:000029307,http://purl.obolibrary.org/obo/PR_000029307,C2 domain-containing protein 3 +15.5685541,PR:000029326,http://purl.obolibrary.org/obo/PR_000029326,coiled-coil domain-containing protein 25 +15.5685541,PR:000029328,http://purl.obolibrary.org/obo/PR_000029328,cilia- and flagella-associated protein 100 +15.5685541,PR:000029340,http://purl.obolibrary.org/obo/PR_000029340,coiled-coil domain-containing protein 86 +15.5685541,PR:000029395,http://purl.obolibrary.org/obo/PR_000029395,probable ATP-dependent RNA helicase DDX59 +15.5685541,PR:000029410,http://purl.obolibrary.org/obo/PR_000029410,dehydrogenase/reductase SDR family member 1 +15.5685541,PR:000029419,http://purl.obolibrary.org/obo/PR_000029419,DnaJ homolog subfamily C member 17 +15.5685541,PR:000029489,http://purl.obolibrary.org/obo/PR_000029489,protein FAM8A1 +15.5685541,PR:000029515,http://purl.obolibrary.org/obo/PR_000029515,adhesion G-protein coupled receptor G7 +15.5685541,PR:000029520,http://purl.obolibrary.org/obo/PR_000029520,GRAM domain-containing protein 2B +15.5685541,PR:000029566,http://purl.obolibrary.org/obo/PR_000029566,isochorismatase domain-containing protein 2 +15.5685541,PR:000029606,http://purl.obolibrary.org/obo/PR_000029606,volume-regulated anion channel subunit LRRC8C +15.5685541,PR:000029636,http://purl.obolibrary.org/obo/PR_000029636,motile sperm domain-containing protein 3 +15.5685541,PR:000029718,http://purl.obolibrary.org/obo/PR_000029718,RanBP2-like and GRIP domain-containing protein 4 +15.5685541,PR:000029726,http://purl.obolibrary.org/obo/PR_000029726,"RNA binding motif protein, X-linked-like-1" +15.5685541,PR:000029753,http://purl.obolibrary.org/obo/PR_000029753,protein shisa-6 +15.5685541,PR:000029777,http://purl.obolibrary.org/obo/PR_000029777,transcription initiation factor IIE subunit beta +15.5685541,PR:000029815,http://purl.obolibrary.org/obo/PR_000029815,transmembrane protein 65 +15.5685541,PR:000029817,http://purl.obolibrary.org/obo/PR_000029817,protein O-mannosyl-transferase TMTC3 +15.5685541,PR:000029820,http://purl.obolibrary.org/obo/PR_000029820,trafficking protein particle complex subunit 12 +15.5685541,PR:000029833,http://purl.obolibrary.org/obo/PR_000029833,outer dynein arm-docking complex subunit 4 +15.5685541,PR:000029863,http://purl.obolibrary.org/obo/PR_000029863,cytoplasmic dynein 2 intermediate chain 1 +15.5685541,PR:000029869,http://purl.obolibrary.org/obo/PR_000029869,WD repeat-containing protein 75 +15.5685541,PR:000029872,http://purl.obolibrary.org/obo/PR_000029872,WD repeat-containing protein 91 +15.5685541,PR:000030047,http://purl.obolibrary.org/obo/PR_000030047,none +15.5685541,PR:000030310,http://purl.obolibrary.org/obo/PR_000030310,centrosomal protein of 85 kDa-like +15.5685541,PR:000030326,http://purl.obolibrary.org/obo/PR_000030326,protein O-mannosyl-transferase TMTC1 +15.5685541,PR:000030335,http://purl.obolibrary.org/obo/PR_000030335,leucine-rich repeat and IQ domain-containing protein 3 +15.5685541,PR:000030336,http://purl.obolibrary.org/obo/PR_000030336,transmembrane protein 161B +15.5685541,PR:000030344,http://purl.obolibrary.org/obo/PR_000030344,transmembrane protein 132C +15.5685541,PR:000030357,http://purl.obolibrary.org/obo/PR_000030357,coiled-coil domain-containing protein 69 +15.5685541,PR:000030380,http://purl.obolibrary.org/obo/PR_000030380,DDB1- and CUL4-associated factor 4 +15.5685541,PR:000030429,http://purl.obolibrary.org/obo/PR_000030429,protein FAM72A +15.5685541,PR:000030439,http://purl.obolibrary.org/obo/PR_000030439,EGF domain-specific O-linked N-acetylglucosamine transferase +15.5685541,PR:000030440,http://purl.obolibrary.org/obo/PR_000030440,E3 ubiquitin-protein ligase RNFT1 +15.5685541,PR:000030452,http://purl.obolibrary.org/obo/PR_000030452,probable ATP-dependent RNA helicase DHX35 +15.5685541,PR:000030457,http://purl.obolibrary.org/obo/PR_000030457,terminal nucleotidyltransferase 5C +15.5685541,PR:000030492,http://purl.obolibrary.org/obo/PR_000030492,tripartite motif-containing protein 49 +15.5685541,PR:000030540,http://purl.obolibrary.org/obo/PR_000030540,transmembrane protein 120B +15.5685541,PR:000030543,http://purl.obolibrary.org/obo/PR_000030543,volume-regulated anion channel subunit LRRC8E +15.5685541,PR:000030560,http://purl.obolibrary.org/obo/PR_000030560,PRELI domain-containing protein 2 +15.5685541,PR:000030571,http://purl.obolibrary.org/obo/PR_000030571,sodium/hydrogen exchanger 9B1 +15.5685541,PR:000030581,http://purl.obolibrary.org/obo/PR_000030581,SURP and G-patch domain-containing protein 2 +15.5685541,PR:000030587,http://purl.obolibrary.org/obo/PR_000030587,transmembrane protein 114 +15.5685541,PR:000030590,http://purl.obolibrary.org/obo/PR_000030590,leucine-rich repeat-containing protein 34 +15.5685541,PR:000030597,http://purl.obolibrary.org/obo/PR_000030597,transmembrane emp24 domain-containing protein 5 +15.5685541,PR:000030600,http://purl.obolibrary.org/obo/PR_000030600,ataxin-7-like protein 3B +15.5685541,PR:000030633,http://purl.obolibrary.org/obo/PR_000030633,fatty acid-binding protein 12 +15.5685541,PR:000030647,http://purl.obolibrary.org/obo/PR_000030647,uncharacterized protein encoded by SND1-IT1 +15.5685541,PR:000030662,http://purl.obolibrary.org/obo/PR_000030662,TLC domain-containing protein 4 +15.5685541,PR:000030765,http://purl.obolibrary.org/obo/PR_000030765,PX domain-containing protein 1 +15.5685541,PR:000030794,http://purl.obolibrary.org/obo/PR_000030794,Golgi pH regulator A +15.5685541,PR:000030838,http://purl.obolibrary.org/obo/PR_000030838,chemokine-like protein TAFA-2 +15.5685541,PR:000030862,http://purl.obolibrary.org/obo/PR_000030862,transmembrane emp24 domain-containing protein 6 +15.5685541,PR:000030869,http://purl.obolibrary.org/obo/PR_000030869,glucose-fructose oxidoreductase domain-containing protein 1 +15.5685541,PR:000030896,http://purl.obolibrary.org/obo/PR_000030896,kelch repeat and BTB domain-containing protein 7 +15.5685541,PR:000030898,http://purl.obolibrary.org/obo/PR_000030898,C2 calcium-dependent domain-containing protein 4A +15.5685541,PR:000030925,http://purl.obolibrary.org/obo/PR_000030925,protein FAM131B +15.5685541,PR:000030928,http://purl.obolibrary.org/obo/PR_000030928,G antigen 2A +15.5685541,PR:000030932,http://purl.obolibrary.org/obo/PR_000030932,dynein regulatory complex subunit 2 +15.5685541,PR:000030947,http://purl.obolibrary.org/obo/PR_000030947,protein FAM110B +15.5685541,PR:000030948,http://purl.obolibrary.org/obo/PR_000030948,"ATP synthase F(0) complex subunit C2, mitochondrial" +15.5685541,PR:000030959,http://purl.obolibrary.org/obo/PR_000030959,WD repeat-containing protein 43 +15.5685541,PR:000030969,http://purl.obolibrary.org/obo/PR_000030969,MFS-type transporter SLC18B1 +15.5685541,PR:000030992,http://purl.obolibrary.org/obo/PR_000030992,zinc finger CCHC domain-containing protein 13 +15.5685541,PR:000031020,http://purl.obolibrary.org/obo/PR_000031020,centrosomal protein of 104 kDa +15.5685541,PR:000031028,http://purl.obolibrary.org/obo/PR_000031028,neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 2 +15.5685541,PR:000031034,http://purl.obolibrary.org/obo/PR_000031034,transmembrane protein 92 +15.5685541,PR:000031059,http://purl.obolibrary.org/obo/PR_000031059,probable ribonuclease ZC3H12B +15.5685541,PR:000031065,http://purl.obolibrary.org/obo/PR_000031065,transcription elongation factor A protein-like 9 +15.5685541,PR:000031089,http://purl.obolibrary.org/obo/PR_000031089,DNA-dependent metalloprotease SPRTN +15.5685541,PR:000031136,http://purl.obolibrary.org/obo/PR_000031136,protein PRRC2C +15.5685541,PR:000031168,http://purl.obolibrary.org/obo/PR_000031168,endogenous Bornavirus-like nucleoprotein 1 +15.5685541,PR:000031173,http://purl.obolibrary.org/obo/PR_000031173,transmembrane protein 14C +15.5685541,PR:000031176,http://purl.obolibrary.org/obo/PR_000031176,MORN repeat-containing protein 4 +15.5685541,PR:000031177,http://purl.obolibrary.org/obo/PR_000031177,tubulin polyglutamylase complex subunit 1 +15.5685541,PR:000031191,http://purl.obolibrary.org/obo/PR_000031191,AT-rich interactive domain-containing protein 3C +15.5685541,PR:000031199,http://purl.obolibrary.org/obo/PR_000031199,SCAN domain-containing protein 3 +15.5685541,PR:000031232,http://purl.obolibrary.org/obo/PR_000031232,molybdate-anion transporter +15.5685541,PR:000031305,http://purl.obolibrary.org/obo/PR_000031305,PAK4-inhibitor INKA2 +15.5685541,PR:000031340,http://purl.obolibrary.org/obo/PR_000031340,leucine-rich repeat-containing protein 28 +15.5685541,PR:000031342,http://purl.obolibrary.org/obo/PR_000031342,PWWP domain-containing protein 2A +15.5685541,PR:000031369,http://purl.obolibrary.org/obo/PR_000031369,probable phospholipid-transporting ATPase IIA +15.5685541,PR:000031476,http://purl.obolibrary.org/obo/PR_000031476,MORN repeat-containing protein 3 +15.5685541,PR:000031489,http://purl.obolibrary.org/obo/PR_000031489,acyl-CoA-binding domain-containing protein 4 +15.5685541,PR:000031533,http://purl.obolibrary.org/obo/PR_000031533,neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adapter 1 +15.5685541,PR:000031549,http://purl.obolibrary.org/obo/PR_000031549,putative hydroxypyruvate isomerase +15.5685541,PR:000031566,http://purl.obolibrary.org/obo/PR_000031566,neuroblastoma breakpoint family member 3 +15.5685541,PR:000031576,http://purl.obolibrary.org/obo/PR_000031576,solute carrier family 35 member G1 +15.5685541,PR:000031580,http://purl.obolibrary.org/obo/PR_000031580,DPY30 domain-containing protein 1 +15.5685541,PR:000031584,http://purl.obolibrary.org/obo/PR_000031584,transmembrane protein 50B +15.5685541,PR:000031597,http://purl.obolibrary.org/obo/PR_000031597,ankyrin repeat domain-containing protein 34B +15.5685541,PR:000031644,http://purl.obolibrary.org/obo/PR_000031644,transmembrane protein 14A +15.5685541,PR:000031672,http://purl.obolibrary.org/obo/PR_000031672,translation machinery-associated protein 7 +15.5685541,PR:000031680,http://purl.obolibrary.org/obo/PR_000031680,pseudokinase FAM20A +15.5685541,PR:000031721,http://purl.obolibrary.org/obo/PR_000031721,kynurenine formamidase +15.5685541,PR:000031723,http://purl.obolibrary.org/obo/PR_000031723,integral membrane protein GPR155 +15.5685541,PR:000031728,http://purl.obolibrary.org/obo/PR_000031728,WD repeat-containing protein 76 +15.5685541,PR:000031733,http://purl.obolibrary.org/obo/PR_000031733,tryptase delta +15.5685541,PR:000031750,http://purl.obolibrary.org/obo/PR_000031750,major facilitator superfamily domain-containing protein 4A +15.5685541,PR:000031751,http://purl.obolibrary.org/obo/PR_000031751,EF-hand calcium-binding domain-containing protein 7 +15.5685541,PR:000031758,http://purl.obolibrary.org/obo/PR_000031758,lipase member J +15.5685541,PR:000031814,http://purl.obolibrary.org/obo/PR_000031814,protein FAM102A +15.5685541,PR:000031936,http://purl.obolibrary.org/obo/PR_000031936,adhesion G-protein coupled receptor G5 +15.5685541,PR:000031953,http://purl.obolibrary.org/obo/PR_000031953,putative BPES syndrome breakpoint region protein +15.5685541,PR:000031958,http://purl.obolibrary.org/obo/PR_000031958,RING finger and SPRY domain-containing protein 1 +15.5685541,PR:000031977,http://purl.obolibrary.org/obo/PR_000031977,kelch domain-containing protein 9 +15.5685541,PR:000031983,http://purl.obolibrary.org/obo/PR_000031983,WASH complex subunit 3 +15.5685541,PR:000032053,http://purl.obolibrary.org/obo/PR_000032053,Ras-like protein family member 11A +15.5685541,PR:000032054,http://purl.obolibrary.org/obo/PR_000032054,none +15.5685541,PR:000032087,http://purl.obolibrary.org/obo/PR_000032087,leucine-rich repeat-containing protein 17 +15.5685541,PR:000032108,http://purl.obolibrary.org/obo/PR_000032108,MICOS complex subunit MIC10 +15.5685541,PR:000032133,http://purl.obolibrary.org/obo/PR_000032133,transmembrane 6 superfamily member 1 +15.5685541,PR:000032166,http://purl.obolibrary.org/obo/PR_000032166,BICD family-like cargo adapter 1 +15.5685541,PR:000032172,http://purl.obolibrary.org/obo/PR_000032172,phospholipid transfer protein C2CD2L +15.5685541,PR:000032178,http://purl.obolibrary.org/obo/PR_000032178,protein FAM160B2 +15.5685541,PR:000032202,http://purl.obolibrary.org/obo/PR_000032202,ankyrin repeat domain-containing protein 16 +15.5685541,PR:000032229,http://purl.obolibrary.org/obo/PR_000032229,zinc finger SWIM domain-containing protein 5 +15.5685541,PR:000032258,http://purl.obolibrary.org/obo/PR_000032258,protein N-terminal glutamine amidohydrolase +15.5685541,PR:000032294,http://purl.obolibrary.org/obo/PR_000032294,MTRF1L release factor glutamine methyltransferase +15.5685541,PR:000032320,http://purl.obolibrary.org/obo/PR_000032320,AP-5 complex subunit sigma-1 +15.5685541,PR:000032342,http://purl.obolibrary.org/obo/PR_000032342,zinc finger CCHC domain-containing protein 24 +15.5685541,PR:000032357,http://purl.obolibrary.org/obo/PR_000032357,constitutive coactivator of PPAR-gamma-like protein 1 +15.5685541,PR:000032358,http://purl.obolibrary.org/obo/PR_000032358,protein FAM78B +15.5685541,PR:000032377,http://purl.obolibrary.org/obo/PR_000032377,zinc finger CCHC domain-containing protein 2 +15.5685541,PR:000032396,http://purl.obolibrary.org/obo/PR_000032396,tripartite motif-containing protein 60 +15.5685541,PR:000032416,http://purl.obolibrary.org/obo/PR_000032416,humanin-like 7 +15.5685541,PR:000032419,http://purl.obolibrary.org/obo/PR_000032419,putative nuclease HARBI1 +15.5685541,PR:000032422,http://purl.obolibrary.org/obo/PR_000032422,C2 calcium-dependent domain-containing protein 4B +15.5685541,PR:000032441,http://purl.obolibrary.org/obo/PR_000032441,TBCC domain-containing protein 1 +15.5685541,PR:000032456,http://purl.obolibrary.org/obo/PR_000032456,DDB1- and CUL4-associated factor 16 +15.5685541,PR:000032463,http://purl.obolibrary.org/obo/PR_000032463,solute carrier family 45 member 4 +15.5685541,PR:000032494,http://purl.obolibrary.org/obo/PR_000032494,E3 ubiquitin-protein ligase TRIM68 +15.5685541,PR:000032501,http://purl.obolibrary.org/obo/PR_000032501,dysbindin domain-containing protein 1 +15.5685541,PR:000032521,http://purl.obolibrary.org/obo/PR_000032521,synaptonemal complex central element protein 1-like +15.5685541,PR:000032537,http://purl.obolibrary.org/obo/PR_000032537,transmembrane protein 68 +15.5685541,PR:000032551,http://purl.obolibrary.org/obo/PR_000032551,"3-hydroxy-3-methylglutaryl-CoA lyase, cytoplasmic" +15.5685541,PR:000032559,http://purl.obolibrary.org/obo/PR_000032559,muscular LMNA-interacting protein +15.5685541,PR:000032567,http://purl.obolibrary.org/obo/PR_000032567,acyl-CoA-binding domain-containing protein 7 +15.5685541,PR:000032569,http://purl.obolibrary.org/obo/PR_000032569,lysine-specific demethylase 4E +15.5685541,PR:000032602,http://purl.obolibrary.org/obo/PR_000032602,BEN domain-containing protein 5 +15.5685541,PR:000032608,http://purl.obolibrary.org/obo/PR_000032608,sperm-egg fusion protein TMEM95 +15.5685541,PR:000032618,http://purl.obolibrary.org/obo/PR_000032618,CBY1-interacting BAR domain-containing protein 2 +15.5685541,PR:000032626,http://purl.obolibrary.org/obo/PR_000032626,G-protein coupled receptor 42 +15.5685541,PR:000032633,http://purl.obolibrary.org/obo/PR_000032633,GATOR complex protein WDR24 +15.5685541,PR:000032664,http://purl.obolibrary.org/obo/PR_000032664,WD repeat domain phosphoinositide-interacting protein 3 +15.5685541,PR:000032695,http://purl.obolibrary.org/obo/PR_000032695,Myb/SANT-like DNA-binding domain-containing protein 3 +15.5685541,PR:000032718,http://purl.obolibrary.org/obo/PR_000032718,coiled-coil domain-containing protein 158 +15.5685541,PR:000032720,http://purl.obolibrary.org/obo/PR_000032720,sialic acid-binding Ig-like lectin 16 +15.5685541,PR:000032732,http://purl.obolibrary.org/obo/PR_000032732,bromodomain and PHD finger-containing protein 3 +15.5685541,PR:000032824,http://purl.obolibrary.org/obo/PR_000032824,tRNA wybutosine-synthesizing protein 5 +15.5685541,PR:000032854,http://purl.obolibrary.org/obo/PR_000032854,none +15.5685541,PR:000032953,http://purl.obolibrary.org/obo/PR_000032953,none +15.5685541,PR:000033046,http://purl.obolibrary.org/obo/PR_000033046,none +15.5685541,PR:000033193,http://purl.obolibrary.org/obo/PR_000033193,none +15.5685541,PR:000033230,http://purl.obolibrary.org/obo/PR_000033230,none +15.5685541,PR:000033270,http://purl.obolibrary.org/obo/PR_000033270,none +15.5685541,PR:000033292,http://purl.obolibrary.org/obo/PR_000033292,none +15.5685541,PR:000033300,http://purl.obolibrary.org/obo/PR_000033300,none +15.5685541,PR:000033675,http://purl.obolibrary.org/obo/PR_000033675,none +15.5685541,PR:000033757,http://purl.obolibrary.org/obo/PR_000033757,none +15.5685541,PR:000033782,http://purl.obolibrary.org/obo/PR_000033782,none +15.5685541,PR:000033810,http://purl.obolibrary.org/obo/PR_000033810,none +15.5685541,PR:000033813,http://purl.obolibrary.org/obo/PR_000033813,none +15.5685541,PR:000033894,http://purl.obolibrary.org/obo/PR_000033894,none +15.5685541,PR:000033932,http://purl.obolibrary.org/obo/PR_000033932,none +15.5685541,PR:000033982,http://purl.obolibrary.org/obo/PR_000033982,none +15.5685541,PR:000034112,http://purl.obolibrary.org/obo/PR_000034112,none +15.5685541,PR:000034142,http://purl.obolibrary.org/obo/PR_000034142,none +15.5685541,PR:000034232,http://purl.obolibrary.org/obo/PR_000034232,none +15.5685541,PR:000034253,http://purl.obolibrary.org/obo/PR_000034253,none +15.5685541,PR:000034349,http://purl.obolibrary.org/obo/PR_000034349,none +15.5685541,PR:000034368,http://purl.obolibrary.org/obo/PR_000034368,none +15.5685541,PR:000034440,http://purl.obolibrary.org/obo/PR_000034440,none +15.5685541,PR:000034599,http://purl.obolibrary.org/obo/PR_000034599,none +15.5685541,PR:000034750,http://purl.obolibrary.org/obo/PR_000034750,none +15.5685541,PR:000034923,http://purl.obolibrary.org/obo/PR_000034923,none +15.5685541,PR:000034926,http://purl.obolibrary.org/obo/PR_000034926,none +15.5685541,PR:000035183,http://purl.obolibrary.org/obo/PR_000035183,none +15.5685541,PR:000035309,http://purl.obolibrary.org/obo/PR_000035309,none +15.5685541,PR:000035323,http://purl.obolibrary.org/obo/PR_000035323,none +15.5685541,PR:000035392,http://purl.obolibrary.org/obo/PR_000035392,none +15.5685541,PR:000036524,http://purl.obolibrary.org/obo/PR_000036524,none +15.5685541,PR:000036832,http://purl.obolibrary.org/obo/PR_000036832,none +15.5685541,PR:000040239,http://purl.obolibrary.org/obo/PR_000040239,golgin subfamily A member 6-like protein 22 +15.5685541,PR:000041220,http://purl.obolibrary.org/obo/PR_000041220,coordinator of PRMT5 and differentiation stimulator +15.5685541,PR:000044365,http://purl.obolibrary.org/obo/PR_000044365,none +15.5685541,PR:000045178,http://purl.obolibrary.org/obo/PR_000045178,protein CIP2A +15.5685541,PR:A0MSJ1,http://purl.obolibrary.org/obo/PR_A0MSJ1,none +15.5685541,PR:A3KPK0,http://purl.obolibrary.org/obo/PR_A3KPK0,none +15.5685541,PR:A4ZNR4,http://purl.obolibrary.org/obo/PR_A4ZNR4,none +15.5685541,PR:B0BNA7,http://purl.obolibrary.org/obo/PR_B0BNA7,none +15.5685541,PR:B7ZWR6,http://purl.obolibrary.org/obo/PR_B7ZWR6,none +15.5685541,PR:D3KCC4,http://purl.obolibrary.org/obo/PR_D3KCC4,none +15.5685541,PR:E7FEH0,http://purl.obolibrary.org/obo/PR_E7FEH0,none +15.5685541,PR:F4K2A1,http://purl.obolibrary.org/obo/PR_F4K2A1,none +15.5685541,PR:I0J062,http://purl.obolibrary.org/obo/PR_I0J062,proapoptotic nucleolar protein 1 (human) +15.5685541,PR:O13701,http://purl.obolibrary.org/obo/PR_O13701,none +15.5685541,PR:O14277,http://purl.obolibrary.org/obo/PR_O14277,none +15.5685541,PR:O22715,http://purl.obolibrary.org/obo/PR_O22715,none +15.5685541,PR:O42918,http://purl.obolibrary.org/obo/PR_O42918,none +15.5685541,PR:O42991,http://purl.obolibrary.org/obo/PR_O42991,none +15.5685541,PR:O59747,http://purl.obolibrary.org/obo/PR_O59747,none +15.5685541,PR:O60157,http://purl.obolibrary.org/obo/PR_O60157,none +15.5685541,PR:O64517,http://purl.obolibrary.org/obo/PR_O64517,none +15.5685541,PR:O64836,http://purl.obolibrary.org/obo/PR_O64836,none +15.5685541,PR:O65719,http://purl.obolibrary.org/obo/PR_O65719,none +15.5685541,PR:O73797,http://purl.obolibrary.org/obo/PR_O73797,none +15.5685541,PR:O74503,http://purl.obolibrary.org/obo/PR_O74503,none +15.5685541,PR:O74836,http://purl.obolibrary.org/obo/PR_O74836,none +15.5685541,PR:O74957,http://purl.obolibrary.org/obo/PR_O74957,none +15.5685541,PR:O80805,http://purl.obolibrary.org/obo/PR_O80805,none +15.5685541,PR:O80988,http://purl.obolibrary.org/obo/PR_O80988,none +15.5685541,PR:O81304,http://purl.obolibrary.org/obo/PR_O81304,none +15.5685541,PR:O93436,http://purl.obolibrary.org/obo/PR_O93436,none +15.5685541,PR:O94614,http://purl.obolibrary.org/obo/PR_O94614,none +15.5685541,PR:O94686,http://purl.obolibrary.org/obo/PR_O94686,none +15.5685541,PR:P01900-1,http://purl.obolibrary.org/obo/PR_P01900-1,none +15.5685541,PR:P04146,http://purl.obolibrary.org/obo/PR_P04146,none +15.5685541,PR:P04906,http://purl.obolibrary.org/obo/PR_P04906,none +15.5685541,PR:P05219,http://purl.obolibrary.org/obo/PR_P05219,none +15.5685541,PR:P05540,http://purl.obolibrary.org/obo/PR_P05540,none +15.5685541,PR:P06467,http://purl.obolibrary.org/obo/PR_P06467,none +15.5685541,PR:P06484,http://purl.obolibrary.org/obo/PR_P06484,none +15.5685541,PR:P06729,http://purl.obolibrary.org/obo/PR_P06729,T-cell surface antigen CD2 (human) +15.5685541,PR:P08018,http://purl.obolibrary.org/obo/PR_P08018,none +15.5685541,PR:P08538,http://purl.obolibrary.org/obo/PR_P08538,none +15.5685541,PR:P08798,http://purl.obolibrary.org/obo/PR_P08798,none +15.5685541,PR:P09208,http://purl.obolibrary.org/obo/PR_P09208,none +15.5685541,PR:P0CT62,http://purl.obolibrary.org/obo/PR_P0CT62,none +15.5685541,PR:P0CT71,http://purl.obolibrary.org/obo/PR_P0CT71,none +15.5685541,PR:P0CX27,http://purl.obolibrary.org/obo/PR_P0CX27,none +15.5685541,PR:P0CX28,http://purl.obolibrary.org/obo/PR_P0CX28,none +15.5685541,PR:P0DH99,http://purl.obolibrary.org/obo/PR_P0DH99,none +15.5685541,PR:P10552,http://purl.obolibrary.org/obo/PR_P10552,none +15.5685541,PR:P11510,http://purl.obolibrary.org/obo/PR_P11510,none +15.5685541,PR:P12114,http://purl.obolibrary.org/obo/PR_P12114,none +15.5685541,PR:P12954,http://purl.obolibrary.org/obo/PR_P12954,none +15.5685541,PR:P13090,http://purl.obolibrary.org/obo/PR_P13090,none +15.5685541,PR:P13114,http://purl.obolibrary.org/obo/PR_P13114,none +15.5685541,PR:P13134,http://purl.obolibrary.org/obo/PR_P13134,none +15.5685541,PR:P13231,http://purl.obolibrary.org/obo/PR_P13231,none +15.5685541,PR:P16497,http://purl.obolibrary.org/obo/PR_P16497,none +15.5685541,PR:P16905,http://purl.obolibrary.org/obo/PR_P16905,none +15.5685541,PR:P17679-1,http://purl.obolibrary.org/obo/PR_P17679-1,none +15.5685541,PR:P18337,http://purl.obolibrary.org/obo/PR_P18337,none +15.5685541,PR:P20693,http://purl.obolibrary.org/obo/PR_P20693,none +15.5685541,PR:P20840,http://purl.obolibrary.org/obo/PR_P20840,none +15.5685541,PR:P22804,http://purl.obolibrary.org/obo/PR_P22804,none +15.5685541,PR:P22812,http://purl.obolibrary.org/obo/PR_P22812,none +15.5685541,PR:P24464,http://purl.obolibrary.org/obo/PR_P24464,none +15.5685541,PR:P24470,http://purl.obolibrary.org/obo/PR_P24470,none +15.5685541,PR:P24704,http://purl.obolibrary.org/obo/PR_P24704,none +15.5685541,PR:P25153,http://purl.obolibrary.org/obo/PR_P25153,none +15.5685541,PR:P25341,http://purl.obolibrary.org/obo/PR_P25341,none +15.5685541,PR:P25455,http://purl.obolibrary.org/obo/PR_P25455,none +15.5685541,PR:P25457,http://purl.obolibrary.org/obo/PR_P25457,none +15.5685541,PR:P25615,http://purl.obolibrary.org/obo/PR_P25615,none +15.5685541,PR:P30204,http://purl.obolibrary.org/obo/PR_P30204,none +15.5685541,PR:P30836,http://purl.obolibrary.org/obo/PR_P30836,none +15.5685541,PR:P31533,http://purl.obolibrary.org/obo/PR_P31533,none +15.5685541,PR:P32354,http://purl.obolibrary.org/obo/PR_P32354,none +15.5685541,PR:P32570,http://purl.obolibrary.org/obo/PR_P32570,none +15.5685541,PR:P34120,http://purl.obolibrary.org/obo/PR_P34120,none +15.5685541,PR:P35131,http://purl.obolibrary.org/obo/PR_P35131,none +15.5685541,PR:P35193,http://purl.obolibrary.org/obo/PR_P35193,none +15.5685541,PR:P35203,http://purl.obolibrary.org/obo/PR_P35203,none +15.5685541,PR:P36156,http://purl.obolibrary.org/obo/PR_P36156,none +15.5685541,PR:P38123,http://purl.obolibrary.org/obo/PR_P38123,none +15.5685541,PR:P38141,http://purl.obolibrary.org/obo/PR_P38141,none +15.5685541,PR:P38279,http://purl.obolibrary.org/obo/PR_P38279,none +15.5685541,PR:P38285,http://purl.obolibrary.org/obo/PR_P38285,none +15.5685541,PR:P38768,http://purl.obolibrary.org/obo/PR_P38768,none +15.5685541,PR:P38788,http://purl.obolibrary.org/obo/PR_P38788,none +15.5685541,PR:P38928,http://purl.obolibrary.org/obo/PR_P38928,none +15.5685541,PR:P39112,http://purl.obolibrary.org/obo/PR_P39112,none +15.5685541,PR:P40155,http://purl.obolibrary.org/obo/PR_P40155,none +15.5685541,PR:P40482,http://purl.obolibrary.org/obo/PR_P40482,none +15.5685541,PR:P41042,http://purl.obolibrary.org/obo/PR_P41042,none +15.5685541,PR:P41377,http://purl.obolibrary.org/obo/PR_P41377,none +15.5685541,PR:P41895,http://purl.obolibrary.org/obo/PR_P41895,none +15.5685541,PR:P41932,http://purl.obolibrary.org/obo/PR_P41932,none +15.5685541,PR:P42551,http://purl.obolibrary.org/obo/PR_P42551,none +15.5685541,PR:P43132,http://purl.obolibrary.org/obo/PR_P43132,none +15.5685541,PR:P43287,http://purl.obolibrary.org/obo/PR_P43287,none +15.5685541,PR:P46677,http://purl.obolibrary.org/obo/PR_P46677,none +15.5685541,PR:P47108,http://purl.obolibrary.org/obo/PR_P47108,none +15.5685541,PR:P47915,http://purl.obolibrary.org/obo/PR_P47915,none +15.5685541,PR:P48180,http://purl.obolibrary.org/obo/PR_P48180,none +15.5685541,PR:P48566,http://purl.obolibrary.org/obo/PR_P48566,none +15.5685541,PR:P48593,http://purl.obolibrary.org/obo/PR_P48593,none +15.5685541,PR:P49626,http://purl.obolibrary.org/obo/PR_P49626,none +15.5685541,PR:P51675,http://purl.obolibrary.org/obo/PR_P51675,none +15.5685541,PR:P53195,http://purl.obolibrary.org/obo/PR_P53195,none +15.5685541,PR:P53338,http://purl.obolibrary.org/obo/PR_P53338,none +15.5685541,PR:P53379,http://purl.obolibrary.org/obo/PR_P53379,none +15.5685541,PR:P53920,http://purl.obolibrary.org/obo/PR_P53920,none +15.5685541,PR:P53951,http://purl.obolibrary.org/obo/PR_P53951,none +15.5685541,PR:P54121,http://purl.obolibrary.org/obo/PR_P54121,none +15.5685541,PR:P54677,http://purl.obolibrary.org/obo/PR_P54677,none +15.5685541,PR:P56224,http://purl.obolibrary.org/obo/PR_P56224,none +15.5685541,PR:P56756,http://purl.obolibrary.org/obo/PR_P56756,none +15.5685541,PR:P56790,http://purl.obolibrary.org/obo/PR_P56790,none +15.5685541,PR:P56817,http://purl.obolibrary.org/obo/PR_P56817,beta-secretase 1 (human) +15.5685541,PR:P56819,http://purl.obolibrary.org/obo/PR_P56819,none +15.5685541,PR:P60010,http://purl.obolibrary.org/obo/PR_P60010,none +15.5685541,PR:P90520,http://purl.obolibrary.org/obo/PR_P90520,none +15.5685541,PR:P92192,http://purl.obolibrary.org/obo/PR_P92192,none +15.5685541,PR:P93819,http://purl.obolibrary.org/obo/PR_P93819,none +15.5685541,PR:P9WPJ7,http://purl.obolibrary.org/obo/PR_P9WPJ7,none +15.5685541,PR:Q00539,http://purl.obolibrary.org/obo/PR_Q00539,none +15.5685541,PR:Q01579,http://purl.obolibrary.org/obo/PR_Q01579,none +15.5685541,PR:Q03503,http://purl.obolibrary.org/obo/PR_Q03503,none +15.5685541,PR:Q03935,http://purl.obolibrary.org/obo/PR_Q03935,none +15.5685541,PR:Q03944,http://purl.obolibrary.org/obo/PR_Q03944,none +15.5685541,PR:Q04226,http://purl.obolibrary.org/obo/PR_Q04226,none +15.5685541,PR:Q04614,http://purl.obolibrary.org/obo/PR_Q04614,none +15.5685541,PR:Q05027,http://purl.obolibrary.org/obo/PR_Q05027,none +15.5685541,PR:Q07794,http://purl.obolibrary.org/obo/PR_Q07794,none +15.5685541,PR:Q07843,http://purl.obolibrary.org/obo/PR_Q07843,none +15.5685541,PR:Q08282,http://purl.obolibrary.org/obo/PR_Q08282,none +15.5685541,PR:Q08299,http://purl.obolibrary.org/obo/PR_Q08299,none +15.5685541,PR:Q08473,http://purl.obolibrary.org/obo/PR_Q08473,none +15.5685541,PR:Q10477,http://purl.obolibrary.org/obo/PR_Q10477,none +15.5685541,PR:Q12048,http://purl.obolibrary.org/obo/PR_Q12048,none +15.5685541,PR:Q12086,http://purl.obolibrary.org/obo/PR_Q12086,none +15.5685541,PR:Q12411,http://purl.obolibrary.org/obo/PR_Q12411,none +15.5685541,PR:Q12442,http://purl.obolibrary.org/obo/PR_Q12442,none +15.5685541,PR:Q12734,http://purl.obolibrary.org/obo/PR_Q12734,none +15.5685541,PR:Q16385,http://purl.obolibrary.org/obo/PR_Q16385,protein SSX2 (human) +15.5685541,PR:Q1JPS6,http://purl.obolibrary.org/obo/PR_Q1JPS6,none +15.5685541,PR:Q1MTE5,http://purl.obolibrary.org/obo/PR_Q1MTE5,none +15.5685541,PR:Q24145,http://purl.obolibrary.org/obo/PR_Q24145,none +15.5685541,PR:Q24547,http://purl.obolibrary.org/obo/PR_Q24547,none +15.5685541,PR:Q2G2U4,http://purl.obolibrary.org/obo/PR_Q2G2U4,none +15.5685541,PR:Q38838,http://purl.obolibrary.org/obo/PR_Q38838,none +15.5685541,PR:Q38841,http://purl.obolibrary.org/obo/PR_Q38841,none +15.5685541,PR:Q38998,http://purl.obolibrary.org/obo/PR_Q38998,none +15.5685541,PR:Q39123,http://purl.obolibrary.org/obo/PR_Q39123,none +15.5685541,PR:Q39208,http://purl.obolibrary.org/obo/PR_Q39208,none +15.5685541,PR:Q3E6Q1,http://purl.obolibrary.org/obo/PR_Q3E6Q1,none +15.5685541,PR:Q3E757,http://purl.obolibrary.org/obo/PR_Q3E757,none +15.5685541,PR:Q3E8A8,http://purl.obolibrary.org/obo/PR_Q3E8A8,none +15.5685541,PR:Q3THG9,http://purl.obolibrary.org/obo/PR_Q3THG9,none +15.5685541,PR:Q3UR85,http://purl.obolibrary.org/obo/PR_Q3UR85,none +15.5685541,PR:Q42545,http://purl.obolibrary.org/obo/PR_Q42545,none +15.5685541,PR:Q42561,http://purl.obolibrary.org/obo/PR_Q42561,none +15.5685541,PR:Q503E1,http://purl.obolibrary.org/obo/PR_Q503E1,none +15.5685541,PR:Q54QT8,http://purl.obolibrary.org/obo/PR_Q54QT8,none +15.5685541,PR:Q55E26,http://purl.obolibrary.org/obo/PR_Q55E26,none +15.5685541,PR:Q56XG6,http://purl.obolibrary.org/obo/PR_Q56XG6,none +15.5685541,PR:Q59UT5,http://purl.obolibrary.org/obo/PR_Q59UT5,none +15.5685541,PR:Q5A089,http://purl.obolibrary.org/obo/PR_Q5A089,none +15.5685541,PR:Q5A119,http://purl.obolibrary.org/obo/PR_Q5A119,none +15.5685541,PR:Q5A917,http://purl.obolibrary.org/obo/PR_Q5A917,none +15.5685541,PR:Q5A931,http://purl.obolibrary.org/obo/PR_Q5A931,none +15.5685541,PR:Q5AIR7,http://purl.obolibrary.org/obo/PR_Q5AIR7,none +15.5685541,PR:Q5AP90,http://purl.obolibrary.org/obo/PR_Q5AP90,none +15.5685541,PR:Q5BLI7,http://purl.obolibrary.org/obo/PR_Q5BLI7,none +15.5685541,PR:Q5QE78,http://purl.obolibrary.org/obo/PR_Q5QE78,none +15.5685541,PR:Q5QGU6,http://purl.obolibrary.org/obo/PR_Q5QGU6,none +15.5685541,PR:Q5RKG3,http://purl.obolibrary.org/obo/PR_Q5RKG3,none +15.5685541,PR:Q5SGK3,http://purl.obolibrary.org/obo/PR_Q5SGK3,none +15.5685541,PR:Q5XIY2,http://purl.obolibrary.org/obo/PR_Q5XIY2,none +15.5685541,PR:Q5ZIH0,http://purl.obolibrary.org/obo/PR_Q5ZIH0,none +15.5685541,PR:Q60492,http://purl.obolibrary.org/obo/PR_Q60492,none +15.5685541,PR:Q60980,http://purl.obolibrary.org/obo/PR_Q60980,none +15.5685541,PR:Q62714,http://purl.obolibrary.org/obo/PR_Q62714,none +15.5685541,PR:Q63429,http://purl.obolibrary.org/obo/PR_Q63429,none +15.5685541,PR:Q64345,http://purl.obolibrary.org/obo/PR_Q64345,none +15.5685541,PR:Q692V3,http://purl.obolibrary.org/obo/PR_Q692V3,none +15.5685541,PR:Q6IQE1,http://purl.obolibrary.org/obo/PR_Q6IQE1,none +15.5685541,PR:Q6P3V7,http://purl.obolibrary.org/obo/PR_Q6P3V7,none +15.5685541,PR:Q6XBF8,http://purl.obolibrary.org/obo/PR_Q6XBF8,none +15.5685541,PR:Q75QI0,http://purl.obolibrary.org/obo/PR_Q75QI0,none +15.5685541,PR:Q76FS5,http://purl.obolibrary.org/obo/PR_Q76FS5,none +15.5685541,PR:Q7AKN0,http://purl.obolibrary.org/obo/PR_Q7AKN0,none +15.5685541,PR:Q7KRI2,http://purl.obolibrary.org/obo/PR_Q7KRI2,none +15.5685541,PR:Q7PC83,http://purl.obolibrary.org/obo/PR_Q7PC83,none +15.5685541,PR:Q7T141,http://purl.obolibrary.org/obo/PR_Q7T141,none +15.5685541,PR:Q8CJI4,http://purl.obolibrary.org/obo/PR_Q8CJI4,none +15.5685541,PR:Q8GUM2,http://purl.obolibrary.org/obo/PR_Q8GUM2,none +15.5685541,PR:Q8GXR5,http://purl.obolibrary.org/obo/PR_Q8GXR5,none +15.5685541,PR:Q8H1G0,http://purl.obolibrary.org/obo/PR_Q8H1G0,none +15.5685541,PR:Q8L4M6,http://purl.obolibrary.org/obo/PR_Q8L4M6,none +15.5685541,PR:Q8L607,http://purl.obolibrary.org/obo/PR_Q8L607,none +15.5685541,PR:Q8L725,http://purl.obolibrary.org/obo/PR_Q8L725,none +15.5685541,PR:Q8LFC0,http://purl.obolibrary.org/obo/PR_Q8LFC0,none +15.5685541,PR:Q8LFT2,http://purl.obolibrary.org/obo/PR_Q8LFT2,none +15.5685541,PR:Q8LPQ6,http://purl.obolibrary.org/obo/PR_Q8LPQ6,none +15.5685541,PR:Q8LPT1,http://purl.obolibrary.org/obo/PR_Q8LPT1,none +15.5685541,PR:Q8RX77,http://purl.obolibrary.org/obo/PR_Q8RX77,none +15.5685541,PR:Q8T135,http://purl.obolibrary.org/obo/PR_Q8T135,none +15.5685541,PR:Q8VFV4,http://purl.obolibrary.org/obo/PR_Q8VFV4,none +15.5685541,PR:Q90966,http://purl.obolibrary.org/obo/PR_Q90966,none +15.5685541,PR:Q91428,http://purl.obolibrary.org/obo/PR_Q91428,none +15.5685541,PR:Q91ZR4,http://purl.obolibrary.org/obo/PR_Q91ZR4,none +15.5685541,PR:Q923X6,http://purl.obolibrary.org/obo/PR_Q923X6,none +15.5685541,PR:Q923X8,http://purl.obolibrary.org/obo/PR_Q923X8,none +15.5685541,PR:Q923X9,http://purl.obolibrary.org/obo/PR_Q923X9,none +15.5685541,PR:Q923Y0,http://purl.obolibrary.org/obo/PR_Q923Y0,none +15.5685541,PR:Q93W20,http://purl.obolibrary.org/obo/PR_Q93W20,none +15.5685541,PR:Q93Z20,http://purl.obolibrary.org/obo/PR_Q93Z20,none +15.5685541,PR:Q940B8,http://purl.obolibrary.org/obo/PR_Q940B8,none +15.5685541,PR:Q941D3,http://purl.obolibrary.org/obo/PR_Q941D3,none +15.5685541,PR:Q949Y5,http://purl.obolibrary.org/obo/PR_Q949Y5,none +15.5685541,PR:Q94A79,http://purl.obolibrary.org/obo/PR_Q94A79,none +15.5685541,PR:Q94AG6,http://purl.obolibrary.org/obo/PR_Q94AG6,none +15.5685541,PR:Q94BT0,http://purl.obolibrary.org/obo/PR_Q94BT0,none +15.5685541,PR:Q9ASS2,http://purl.obolibrary.org/obo/PR_Q9ASS2,none +15.5685541,PR:Q9C0L9,http://purl.obolibrary.org/obo/PR_Q9C0L9,none +15.5685541,PR:Q9C7Y2,http://purl.obolibrary.org/obo/PR_Q9C7Y2,none +15.5685541,PR:Q9C9T3,http://purl.obolibrary.org/obo/PR_Q9C9T3,none +15.5685541,PR:Q9CQ52,http://purl.obolibrary.org/obo/PR_Q9CQ52,none +15.5685541,PR:Q9D106,http://purl.obolibrary.org/obo/PR_Q9D106,none +15.5685541,PR:Q9D958,http://purl.obolibrary.org/obo/PR_Q9D958,none +15.5685541,PR:Q9DBN1,http://purl.obolibrary.org/obo/PR_Q9DBN1,none +15.5685541,PR:Q9DCC7,http://purl.obolibrary.org/obo/PR_Q9DCC7,none +15.5685541,PR:Q9DF69,http://purl.obolibrary.org/obo/PR_Q9DF69,none +15.5685541,PR:Q9ET32,http://purl.obolibrary.org/obo/PR_Q9ET32,none +15.5685541,PR:Q9FFF1,http://purl.obolibrary.org/obo/PR_Q9FFF1,none +15.5685541,PR:Q9FFZ7,http://purl.obolibrary.org/obo/PR_Q9FFZ7,none +15.5685541,PR:Q9FGJ3,http://purl.obolibrary.org/obo/PR_Q9FGJ3,none +15.5685541,PR:Q9FHF1,http://purl.obolibrary.org/obo/PR_Q9FHF1,none +15.5685541,PR:Q9FJ50,http://purl.obolibrary.org/obo/PR_Q9FJ50,none +15.5685541,PR:Q9FJ57,http://purl.obolibrary.org/obo/PR_Q9FJ57,none +15.5685541,PR:Q9FKF4,http://purl.obolibrary.org/obo/PR_Q9FKF4,none +15.5685541,PR:Q9FLR3,http://purl.obolibrary.org/obo/PR_Q9FLR3,none +15.5685541,PR:Q9FMJ0,http://purl.obolibrary.org/obo/PR_Q9FMJ0,none +15.5685541,PR:Q9FUS8,http://purl.obolibrary.org/obo/PR_Q9FUS8,none +15.5685541,PR:Q9FVV6,http://purl.obolibrary.org/obo/PR_Q9FVV6,none +15.5685541,PR:Q9FX68,http://purl.obolibrary.org/obo/PR_Q9FX68,none +15.5685541,PR:Q9FY68,http://purl.obolibrary.org/obo/PR_Q9FY68,none +15.5685541,PR:Q9HGP0,http://purl.obolibrary.org/obo/PR_Q9HGP0,none +15.5685541,PR:Q9JKU1,http://purl.obolibrary.org/obo/PR_Q9JKU1,none +15.5685541,PR:Q9LD44,http://purl.obolibrary.org/obo/PR_Q9LD44,none +15.5685541,PR:Q9LFB8,http://purl.obolibrary.org/obo/PR_Q9LFB8,none +15.5685541,PR:Q9LJU2,http://purl.obolibrary.org/obo/PR_Q9LJU2,none +15.5685541,PR:Q9LQV2,http://purl.obolibrary.org/obo/PR_Q9LQV2,none +15.5685541,PR:Q9LSS5,http://purl.obolibrary.org/obo/PR_Q9LSS5,none +15.5685541,PR:Q9LT75,http://purl.obolibrary.org/obo/PR_Q9LT75,none +15.5685541,PR:Q9LTX9,http://purl.obolibrary.org/obo/PR_Q9LTX9,none +15.5685541,PR:Q9LVR0,http://purl.obolibrary.org/obo/PR_Q9LVR0,none +15.5685541,PR:Q9M364,http://purl.obolibrary.org/obo/PR_Q9M364,none +15.5685541,PR:Q9M394,http://purl.obolibrary.org/obo/PR_Q9M394,none +15.5685541,PR:Q9MAI5,http://purl.obolibrary.org/obo/PR_Q9MAI5,none +15.5685541,PR:Q9P794,http://purl.obolibrary.org/obo/PR_Q9P794,none +15.5685541,PR:Q9QZS6,http://purl.obolibrary.org/obo/PR_Q9QZS6,none +15.5685541,PR:Q9SAH9,http://purl.obolibrary.org/obo/PR_Q9SAH9,none +15.5685541,PR:Q9SDW0,http://purl.obolibrary.org/obo/PR_Q9SDW0,none +15.5685541,PR:Q9SEZ1,http://purl.obolibrary.org/obo/PR_Q9SEZ1,none +15.5685541,PR:Q9SGG3,http://purl.obolibrary.org/obo/PR_Q9SGG3,none +15.5685541,PR:Q9SIF2,http://purl.obolibrary.org/obo/PR_Q9SIF2,none +15.5685541,PR:Q9SIT6,http://purl.obolibrary.org/obo/PR_Q9SIT6,none +15.5685541,PR:Q9SKE2,http://purl.obolibrary.org/obo/PR_Q9SKE2,none +15.5685541,PR:Q9SLA8,http://purl.obolibrary.org/obo/PR_Q9SLA8,none +15.5685541,PR:Q9SMX3,http://purl.obolibrary.org/obo/PR_Q9SMX3,none +15.5685541,PR:Q9SRT2,http://purl.obolibrary.org/obo/PR_Q9SRT2,none +15.5685541,PR:Q9STJ7,http://purl.obolibrary.org/obo/PR_Q9STJ7,none +15.5685541,PR:Q9SU38,http://purl.obolibrary.org/obo/PR_Q9SU38,none +15.5685541,PR:Q9SU87,http://purl.obolibrary.org/obo/PR_Q9SU87,none +15.5685541,PR:Q9SZF7,http://purl.obolibrary.org/obo/PR_Q9SZF7,none +15.5685541,PR:Q9T0I8,http://purl.obolibrary.org/obo/PR_Q9T0I8,none +15.5685541,PR:Q9VAK8,http://purl.obolibrary.org/obo/PR_Q9VAK8,none +15.5685541,PR:Q9VUQ5,http://purl.obolibrary.org/obo/PR_Q9VUQ5,none +15.5685541,PR:Q9W0P3,http://purl.obolibrary.org/obo/PR_Q9W0P3,none +15.5685541,PR:Q9W1V6,http://purl.obolibrary.org/obo/PR_Q9W1V6,none +15.5685541,PR:Q9XI07,http://purl.obolibrary.org/obo/PR_Q9XI07,none +15.5685541,PR:Q9Y2F5,http://purl.obolibrary.org/obo/PR_Q9Y2F5,little elongation complex subunit 1 (human) +15.5685541,PR:Q9Y2G1,http://purl.obolibrary.org/obo/PR_Q9Y2G1,myelin regulatory factor (human) +15.5685541,PR:Q9Z2E3,http://purl.obolibrary.org/obo/PR_Q9Z2E3,none +15.5685541,PR:Q9ZQ94,http://purl.obolibrary.org/obo/PR_Q9ZQ94,none +15.5685541,PR:Q9ZSL6,http://purl.obolibrary.org/obo/PR_Q9ZSL6,none +15.5685541,PR:Q9ZUE0,http://purl.obolibrary.org/obo/PR_Q9ZUE0,none +15.5685541,PR:Q9ZVB5,http://purl.obolibrary.org/obo/PR_Q9ZVB5,none +15.5685541,SO:0000016,http://purl.obolibrary.org/obo/SO_0000016,BREu_motif +15.5685541,SO:0000061,http://purl.obolibrary.org/obo/SO_0000061,restriction_enzyme_binding_site +15.5685541,SO:0000113,http://purl.obolibrary.org/obo/SO_0000113,proviral_region +15.5685541,SO:0000544,http://purl.obolibrary.org/obo/SO_0000544,helitron +15.5685541,SO:0000891,http://purl.obolibrary.org/obo/SO_0000891,negatively_autoregulated_gene +15.5685541,SO:0000907,http://purl.obolibrary.org/obo/SO_0000907,supported_by_sequence_similarity +15.5685541,SO:0000950,http://purl.obolibrary.org/obo/SO_0000950,attC_site +15.5685541,SO:0000979,http://purl.obolibrary.org/obo/SO_0000979,gRNA_encoding +15.5685541,SO:0001006,http://purl.obolibrary.org/obo/SO_0001006,prophage +15.5685541,SO:0001120,http://purl.obolibrary.org/obo/SO_0001120,polypeptide_nest_motif +15.5685541,SO:0001221,http://purl.obolibrary.org/obo/SO_0001221,silenced_by_histone_modification +15.5685541,SO:0001289,http://purl.obolibrary.org/obo/SO_0001289,lysidine +15.5685541,SO:0001305,http://purl.obolibrary.org/obo/SO_0001305,N6_threonylcarbamoyladenosine +15.5685541,SO:0001397,http://purl.obolibrary.org/obo/SO_0001397,modified_L_phenylalanine +15.5685541,SO:0001508,http://purl.obolibrary.org/obo/SO_0001508,alteration_attribute +15.5685541,SO:0001554,http://purl.obolibrary.org/obo/SO_0001554,polypeptide_function_variant +15.5685541,SO:0001559,http://purl.obolibrary.org/obo/SO_0001559,polypeptide_loss_of_function_variant +15.5685541,SO:0001560,http://purl.obolibrary.org/obo/SO_0001560,inactive_ligand_binding_site +15.5685541,SO:0001585,http://purl.obolibrary.org/obo/SO_0001585,conservative_missense_variant +15.5685541,SO:0001618,http://purl.obolibrary.org/obo/SO_0001618,inactive_catalytic_site +15.5685541,SO:0001698,http://purl.obolibrary.org/obo/SO_0001698,ASPE_primer +15.5685541,SO:0001806,http://purl.obolibrary.org/obo/SO_0001806,ER_retention_signal +15.5685541,SO:0001828,http://purl.obolibrary.org/obo/SO_0001828,genomic_DNA_read +15.5685541,SO:0001879,http://purl.obolibrary.org/obo/SO_0001879,feature_ablation +15.5685541,SO:0001893,http://purl.obolibrary.org/obo/SO_0001893,transcript_ablation +15.5685541,SO:0002022,http://purl.obolibrary.org/obo/SO_0002022,priRNA +15.5685541,UBERON:0000130,http://purl.obolibrary.org/obo/UBERON_0000130,transverse foramen +15.5685541,UBERON:0000151,http://purl.obolibrary.org/obo/UBERON_0000151,pectoral fin +15.5685541,UBERON:0000205,http://purl.obolibrary.org/obo/UBERON_0000205,papula +15.5685541,UBERON:0000972,http://purl.obolibrary.org/obo/UBERON_0000972,antenna +15.5685541,UBERON:0001031,http://purl.obolibrary.org/obo/UBERON_0001031,sheath of Schwann +15.5685541,UBERON:0001063,http://purl.obolibrary.org/obo/UBERON_0001063,flocculus +15.5685541,UBERON:0001198,http://purl.obolibrary.org/obo/UBERON_0001198,superior suprarenal artery +15.5685541,UBERON:0001371,http://purl.obolibrary.org/obo/UBERON_0001371,gluteus medius +15.5685541,UBERON:0001409,http://purl.obolibrary.org/obo/UBERON_0001409,semispinalis capitis +15.5685541,UBERON:0001670,http://purl.obolibrary.org/obo/UBERON_0001670,inferior cerebellar vein +15.5685541,UBERON:0001689,http://purl.obolibrary.org/obo/UBERON_0001689,malleus bone +15.5685541,UBERON:0001730,http://purl.obolibrary.org/obo/UBERON_0001730,extrinsic ligament of larynx +15.5685541,UBERON:0002002,http://purl.obolibrary.org/obo/UBERON_0002002,interchondral joint +15.5685541,UBERON:0002151,http://purl.obolibrary.org/obo/UBERON_0002151,pontine nuclear group +15.5685541,UBERON:0002184,http://purl.obolibrary.org/obo/UBERON_0002184,segmental bronchus +15.5685541,UBERON:0002231,http://purl.obolibrary.org/obo/UBERON_0002231,body of rib +15.5685541,UBERON:0002303,http://purl.obolibrary.org/obo/UBERON_0002303,juxtaglomerular apparatus +15.5685541,UBERON:0002442,http://purl.obolibrary.org/obo/UBERON_0002442,axillary nerve trunk +15.5685541,UBERON:0002534,http://purl.obolibrary.org/obo/UBERON_0002534,paired fin +15.5685541,UBERON:0002540,http://purl.obolibrary.org/obo/UBERON_0002540,lateral line system +15.5685541,UBERON:0002549,http://purl.obolibrary.org/obo/UBERON_0002549,ventral trigeminal tract +15.5685541,UBERON:0002569,http://purl.obolibrary.org/obo/UBERON_0002569,transverse temporal sulcus +15.5685541,UBERON:0002577,http://purl.obolibrary.org/obo/UBERON_0002577,pericentral nucleus of inferior colliculus +15.5685541,UBERON:0002704,http://purl.obolibrary.org/obo/UBERON_0002704,metathalamus +15.5685541,UBERON:0002764,http://purl.obolibrary.org/obo/UBERON_0002764,inferior precentral sulcus +15.5685541,UBERON:0002796,http://purl.obolibrary.org/obo/UBERON_0002796,motor root of trigeminal nerve +15.5685541,UBERON:0002797,http://purl.obolibrary.org/obo/UBERON_0002797,dorsal trigeminal tract +15.5685541,UBERON:0002888,http://purl.obolibrary.org/obo/UBERON_0002888,lateral part of basal amygdaloid nucleus +15.5685541,UBERON:0002912,http://purl.obolibrary.org/obo/UBERON_0002912,marginal sulcus +15.5685541,UBERON:0002952,http://purl.obolibrary.org/obo/UBERON_0002952,intermediate acoustic stria +15.5685541,UBERON:0002953,http://purl.obolibrary.org/obo/UBERON_0002953,lateral lemniscus +15.5685541,UBERON:0002978,http://purl.obolibrary.org/obo/UBERON_0002978,oral part of ventral lateral nucleus +15.5685541,UBERON:0003023,http://purl.obolibrary.org/obo/UBERON_0003023,pontine tegmentum +15.5685541,UBERON:0003097,http://purl.obolibrary.org/obo/UBERON_0003097,dorsal fin +15.5685541,UBERON:0003214,http://purl.obolibrary.org/obo/UBERON_0003214,mammary gland alveolus +15.5685541,UBERON:0003278,http://purl.obolibrary.org/obo/UBERON_0003278,skeleton of lower jaw +15.5685541,UBERON:0003298,http://purl.obolibrary.org/obo/UBERON_0003298,none +15.5685541,UBERON:0003315,http://purl.obolibrary.org/obo/UBERON_0003315,mesenchyme of ovary +15.5685541,UBERON:0003336,http://purl.obolibrary.org/obo/UBERON_0003336,serosa of duodenum +15.5685541,UBERON:0003397,http://purl.obolibrary.org/obo/UBERON_0003397,mesentery of duodenum +15.5685541,UBERON:0003520,http://purl.obolibrary.org/obo/UBERON_0003520,pelvis blood vessel +15.5685541,UBERON:0003619,http://purl.obolibrary.org/obo/UBERON_0003619,aorta tunica intima +15.5685541,UBERON:0003887,http://purl.obolibrary.org/obo/UBERON_0003887,intraembryonic coelom +15.5685541,UBERON:0003925,http://purl.obolibrary.org/obo/UBERON_0003925,photoreceptor inner segment layer +15.5685541,UBERON:0003930,http://purl.obolibrary.org/obo/UBERON_0003930,atrioventricular canal endocardium +15.5685541,UBERON:0003960,http://purl.obolibrary.org/obo/UBERON_0003960,styloid process of temporal bone +15.5685541,UBERON:0003977,http://purl.obolibrary.org/obo/UBERON_0003977,utricle duct +15.5685541,UBERON:0004040,http://purl.obolibrary.org/obo/UBERON_0004040,cortical intermediate zone +15.5685541,UBERON:0004066,http://purl.obolibrary.org/obo/UBERON_0004066,frontonasal prominence +15.5685541,UBERON:0004215,http://purl.obolibrary.org/obo/UBERON_0004215,back nerve +15.5685541,UBERON:0004219,http://purl.obolibrary.org/obo/UBERON_0004219,urethra smooth muscle layer +15.5685541,UBERON:0004232,http://purl.obolibrary.org/obo/UBERON_0004232,lymphatic vessel smooth muscle +15.5685541,UBERON:0004648,http://purl.obolibrary.org/obo/UBERON_0004648,esophagus muscularis mucosa +15.5685541,UBERON:0004649,http://purl.obolibrary.org/obo/UBERON_0004649,sphenoid bone pterygoid process +15.5685541,UBERON:0004652,http://purl.obolibrary.org/obo/UBERON_0004652,humerus diaphysis +15.5685541,UBERON:0004744,http://purl.obolibrary.org/obo/UBERON_0004744,articular/anguloarticular +15.5685541,UBERON:0004783,http://purl.obolibrary.org/obo/UBERON_0004783,gall bladder serosa +15.5685541,UBERON:0005052,http://purl.obolibrary.org/obo/UBERON_0005052,gizzard +15.5685541,UBERON:0005168,http://purl.obolibrary.org/obo/UBERON_0005168,renal interlobular vein +15.5685541,UBERON:0005213,http://purl.obolibrary.org/obo/UBERON_0005213,outer renal medulla interstitium +15.5685541,UBERON:0005290,http://purl.obolibrary.org/obo/UBERON_0005290,myelencephalon +15.5685541,UBERON:0005325,http://purl.obolibrary.org/obo/UBERON_0005325,mesonephric glomerulus +15.5685541,UBERON:0005360,http://purl.obolibrary.org/obo/UBERON_0005360,inferior glossopharyngeal IX ganglion +15.5685541,UBERON:0005430,http://purl.obolibrary.org/obo/UBERON_0005430,ansa cervicalis +15.5685541,UBERON:0005469,http://purl.obolibrary.org/obo/UBERON_0005469,right thymus lobe +15.5685541,UBERON:0005481,http://purl.obolibrary.org/obo/UBERON_0005481,tentorial sinus +15.5685541,UBERON:0005487,http://purl.obolibrary.org/obo/UBERON_0005487,vitelline vein +15.5685541,UBERON:0005601,http://purl.obolibrary.org/obo/UBERON_0005601,dorsal mesocardium +15.5685541,UBERON:0005789,http://purl.obolibrary.org/obo/UBERON_0005789,lamina rara externa +15.5685541,UBERON:0005837,http://purl.obolibrary.org/obo/UBERON_0005837,fasciculus of spinal cord +15.5685541,UBERON:0005903,http://purl.obolibrary.org/obo/UBERON_0005903,duct of seminal vesicle +15.5685541,UBERON:0006090,http://purl.obolibrary.org/obo/UBERON_0006090,glossopharyngeal nerve fiber bundle +15.5685541,UBERON:0006117,http://purl.obolibrary.org/obo/UBERON_0006117,accessory nerve fiber bundle +15.5685541,UBERON:0006121,http://purl.obolibrary.org/obo/UBERON_0006121,hemispheric lobule VIII +15.5685541,UBERON:0006199,http://purl.obolibrary.org/obo/UBERON_0006199,posterior auricular vein +15.5685541,UBERON:0006210,http://purl.obolibrary.org/obo/UBERON_0006210,body-wall mesenchyme +15.5685541,UBERON:0006454,http://purl.obolibrary.org/obo/UBERON_0006454,sixth thoracic spinal cord segment +15.5685541,UBERON:0006462,http://purl.obolibrary.org/obo/UBERON_0006462,third sacral spinal cord segment +15.5685541,UBERON:0006467,http://purl.obolibrary.org/obo/UBERON_0006467,eleventh thoracic spinal cord segment +15.5685541,UBERON:0006469,http://purl.obolibrary.org/obo/UBERON_0006469,C1 segment of cervical spinal cord +15.5685541,UBERON:0006649,http://purl.obolibrary.org/obo/UBERON_0006649,suspensory ligament of ovary +15.5685541,UBERON:0006822,http://purl.obolibrary.org/obo/UBERON_0006822,proximal epiphysis of ulna +15.5685541,UBERON:0007097,http://purl.obolibrary.org/obo/UBERON_0007097,chordo neural hinge +15.5685541,UBERON:0007111,http://purl.obolibrary.org/obo/UBERON_0007111,Douglas' pouch +15.5685541,UBERON:0007162,http://purl.obolibrary.org/obo/UBERON_0007162,lateral arcuate ligament +15.5685541,UBERON:0007190,http://purl.obolibrary.org/obo/UBERON_0007190,paracentral gyrus +15.5685541,UBERON:0007319,http://purl.obolibrary.org/obo/UBERON_0007319,medial saphenous vein +15.5685541,UBERON:0007357,http://purl.obolibrary.org/obo/UBERON_0007357,proventriculus +15.5685541,UBERON:0007358,http://purl.obolibrary.org/obo/UBERON_0007358,abomasum +15.5685541,UBERON:0007415,http://purl.obolibrary.org/obo/UBERON_0007415,nucleus of midbrain reticular formation +15.5685541,UBERON:0007711,http://purl.obolibrary.org/obo/UBERON_0007711,sixth cervical dorsal root ganglion +15.5685541,UBERON:0008199,http://purl.obolibrary.org/obo/UBERON_0008199,chin +15.5685541,UBERON:0008538,http://purl.obolibrary.org/obo/UBERON_0008538,none +15.5685541,UBERON:0008887,http://purl.obolibrary.org/obo/UBERON_0008887,rectal venous plexus +15.5685541,UBERON:0008889,http://purl.obolibrary.org/obo/UBERON_0008889,uterine venous plexus +15.5685541,UBERON:0009203,http://purl.obolibrary.org/obo/UBERON_0009203,internasal suture +15.5685541,UBERON:0009470,http://purl.obolibrary.org/obo/UBERON_0009470,postsphenoidal bone +15.5685541,UBERON:0009526,http://purl.obolibrary.org/obo/UBERON_0009526,maxillary process mesenchyme +15.5685541,UBERON:0009675,http://purl.obolibrary.org/obo/UBERON_0009675,chorda tympani branch of facial nerve +15.5685541,UBERON:0009742,http://purl.obolibrary.org/obo/UBERON_0009742,proamniotic cavity +15.5685541,UBERON:0009745,http://purl.obolibrary.org/obo/UBERON_0009745,lymph node medullary cord +15.5685541,UBERON:0009775,http://purl.obolibrary.org/obo/UBERON_0009775,lateral medullary reticular complex +15.5685541,UBERON:0009847,http://purl.obolibrary.org/obo/UBERON_0009847,prostate field +15.5685541,UBERON:0009966,http://purl.obolibrary.org/obo/UBERON_0009966,internodal tract +15.5685541,UBERON:0009987,http://purl.obolibrary.org/obo/UBERON_0009987,medial epicondyle of femur +15.5685541,UBERON:0010061,http://purl.obolibrary.org/obo/UBERON_0010061,lumen of nasopharynx +15.5685541,UBERON:0010143,http://purl.obolibrary.org/obo/UBERON_0010143,seminal vesicle fluid +15.5685541,UBERON:0010159,http://purl.obolibrary.org/obo/UBERON_0010159,occipitomastoid suture +15.5685541,UBERON:0010258,http://purl.obolibrary.org/obo/UBERON_0010258,mesenchyme from rhombencephalic neural crest +15.5685541,UBERON:0010287,http://purl.obolibrary.org/obo/UBERON_0010287,motor root of facial nerve +15.5685541,UBERON:0010372,http://purl.obolibrary.org/obo/UBERON_0010372,uncinate process of ethmoid +15.5685541,UBERON:0010406,http://purl.obolibrary.org/obo/UBERON_0010406,cholinergic enteric nerve +15.5685541,UBERON:0010417,http://purl.obolibrary.org/obo/UBERON_0010417,lymph node T cell domain +15.5685541,UBERON:0010424,http://purl.obolibrary.org/obo/UBERON_0010424,distal segment of rib +15.5685541,UBERON:0010702,http://purl.obolibrary.org/obo/UBERON_0010702,digit mesenchyme +15.5685541,UBERON:0010703,http://purl.obolibrary.org/obo/UBERON_0010703,forelimb zeugopod skeleton +15.5685541,UBERON:0010926,http://purl.obolibrary.org/obo/UBERON_0010926,lateral thyrohyoid ligament +15.5685541,UBERON:0011133,http://purl.obolibrary.org/obo/UBERON_0011133,intermetatarsal joint +15.5685541,UBERON:0011169,http://purl.obolibrary.org/obo/UBERON_0011169,postorbital bone +15.5685541,UBERON:0011314,http://purl.obolibrary.org/obo/UBERON_0011314,anterior subdivision of masseter +15.5685541,UBERON:0011368,http://purl.obolibrary.org/obo/UBERON_0011368,brachiocephalic muscle +15.5685541,UBERON:0011606,http://purl.obolibrary.org/obo/UBERON_0011606,hyomandibular bone +15.5685541,UBERON:0011615,http://purl.obolibrary.org/obo/UBERON_0011615,basihyal cartilage +15.5685541,UBERON:0011774,http://purl.obolibrary.org/obo/UBERON_0011774,utriculosaccular duct +15.5685541,UBERON:0011827,http://purl.obolibrary.org/obo/UBERON_0011827,areolar gland +15.5685541,UBERON:0012132,http://purl.obolibrary.org/obo/UBERON_0012132,intercuneiform joint +15.5685541,UBERON:0012194,http://purl.obolibrary.org/obo/UBERON_0012194,superior intercostal vein +15.5685541,UBERON:0012195,http://purl.obolibrary.org/obo/UBERON_0012195,left superior intercostal vein +15.5685541,UBERON:0012197,http://purl.obolibrary.org/obo/UBERON_0012197,intercostal vein +15.5685541,UBERON:0012304,http://purl.obolibrary.org/obo/UBERON_0012304,nasal diverticulum +15.5685541,UBERON:0012351,http://purl.obolibrary.org/obo/UBERON_0012351,urachal lumen +15.5685541,UBERON:0012443,http://purl.obolibrary.org/obo/UBERON_0012443,row of scales +15.5685541,UBERON:0012463,http://purl.obolibrary.org/obo/UBERON_0012463,cloacal lumen +15.5685541,UBERON:0013069,http://purl.obolibrary.org/obo/UBERON_0013069,popliteal area +15.5685541,UBERON:0013149,http://purl.obolibrary.org/obo/UBERON_0013149,hindbrain vesicle +15.5685541,UBERON:0013175,http://purl.obolibrary.org/obo/UBERON_0013175,nasal air sac +15.5685541,UBERON:0013447,http://purl.obolibrary.org/obo/UBERON_0013447,sagittal crest +15.5685541,UBERON:0013511,http://purl.obolibrary.org/obo/UBERON_0013511,ambiens muscle +15.5685541,UBERON:0013635,http://purl.obolibrary.org/obo/UBERON_0013635,sphincter colli muscle +15.5685541,UBERON:0013637,http://purl.obolibrary.org/obo/UBERON_0013637,prostate gland lateral lobe +15.5685541,UBERON:0013689,http://purl.obolibrary.org/obo/UBERON_0013689,appendix lymphoid tissue +15.5685541,UBERON:0014381,http://purl.obolibrary.org/obo/UBERON_0014381,whorl of hair +15.5685541,UBERON:0014388,http://purl.obolibrary.org/obo/UBERON_0014388,kidney collecting duct epithelium +15.5685541,UBERON:0014550,http://purl.obolibrary.org/obo/UBERON_0014550,pyramidal layer of CA3 +15.5685541,UBERON:0014621,http://purl.obolibrary.org/obo/UBERON_0014621,cervical spinal cord ventral horn +15.5685541,UBERON:0014637,http://purl.obolibrary.org/obo/UBERON_0014637,thoracic spinal cord white matter +15.5685541,UBERON:0014730,http://purl.obolibrary.org/obo/UBERON_0014730,osteon +15.5685541,UBERON:0014766,http://purl.obolibrary.org/obo/UBERON_0014766,right crus of diaphragm +15.5685541,UBERON:0014772,http://purl.obolibrary.org/obo/UBERON_0014772,lateral palpebral artery +15.5685541,UBERON:0014773,http://purl.obolibrary.org/obo/UBERON_0014773,medial palpebral artery +15.5685541,UBERON:0015018,http://purl.obolibrary.org/obo/UBERON_0015018,malleus endochondral element +15.5685541,UBERON:0015227,http://purl.obolibrary.org/obo/UBERON_0015227,peristaltic circulatory vessel +15.5685541,UBERON:0015923,http://purl.obolibrary.org/obo/UBERON_0015923,superficial parotid lymph node +15.5685541,UBERON:0016411,http://purl.obolibrary.org/obo/UBERON_0016411,none +15.5685541,UBERON:0016510,http://purl.obolibrary.org/obo/UBERON_0016510,epithelium of male urethra +15.5685541,UBERON:0016531,http://purl.obolibrary.org/obo/UBERON_0016531,white matter of parietal lobe +15.5685541,UBERON:0017259,http://purl.obolibrary.org/obo/UBERON_0017259,placental caruncle +15.5685541,UBERON:0018242,http://purl.obolibrary.org/obo/UBERON_0018242,palatine bone horizontal plate +15.5685541,UBERON:0018306,http://purl.obolibrary.org/obo/UBERON_0018306,bulge +15.5685541,UBERON:0019326,http://purl.obolibrary.org/obo/UBERON_0019326,lobe of lacrimal gland +15.5685541,UBERON:0022246,http://purl.obolibrary.org/obo/UBERON_0022246,superior longitudinal fasciculus +15.5685541,UBERON:0022268,http://purl.obolibrary.org/obo/UBERON_0022268,planum temporale +15.5685541,UBERON:0024045,http://purl.obolibrary.org/obo/UBERON_0024045,white matter of the cerebellar cortex +15.5685541,UBERON:0026384,http://purl.obolibrary.org/obo/UBERON_0026384,lateral orbital sulcus +15.5685541,UBERON:0026391,http://purl.obolibrary.org/obo/UBERON_0026391,medial orbital sulcus +15.5685541,UBERON:0029636,http://purl.obolibrary.org/obo/UBERON_0029636,lumbar spinal cord gray matter +15.5685541,UBERON:0034772,http://purl.obolibrary.org/obo/UBERON_0034772,margin of eyelid +15.5685541,UBERON:0035126,http://purl.obolibrary.org/obo/UBERON_0035126,transverse palatine suture +15.5685541,UBERON:0035149,http://purl.obolibrary.org/obo/UBERON_0035149,gingival epithelial attachment +15.5685541,UBERON:2000251,http://purl.obolibrary.org/obo/UBERON_2000251,adipose fin +15.5685541,UBERON:2000298,http://purl.obolibrary.org/obo/UBERON_2000298,vent +15.5685541,UBERON:2000341,http://purl.obolibrary.org/obo/UBERON_2000341,dorsal flexor +15.5685541,UBERON:2000633,http://purl.obolibrary.org/obo/UBERON_2000633,caudal tuberculum +15.5685541,UBERON:2000976,http://purl.obolibrary.org/obo/UBERON_2000976,somite 16 +15.5685541,UBERON:2000977,http://purl.obolibrary.org/obo/UBERON_2000977,somite 19 +15.5685541,UBERON:2001054,http://purl.obolibrary.org/obo/UBERON_2001054,lateral dorsal aorta +15.5685541,UBERON:2001391,http://purl.obolibrary.org/obo/UBERON_2001391,anterior lateral line ganglion +15.5685541,UBERON:2001923,http://purl.obolibrary.org/obo/UBERON_2001923,aortic canal +15.5685541,UBERON:2002008,http://purl.obolibrary.org/obo/UBERON_2002008,neural lamina +15.5685541,UBERON:2002108,http://purl.obolibrary.org/obo/UBERON_2002108,buccal papilla +15.5685541,UBERON:2002262,http://purl.obolibrary.org/obo/UBERON_2002262,anal fin spine +15.5685541,UBERON:2005022,http://purl.obolibrary.org/obo/UBERON_2005022,opercular artery +15.5685541,UBERON:2005026,http://purl.obolibrary.org/obo/UBERON_2005026,primary head sinus +15.5685541,UBERON:2005029,http://purl.obolibrary.org/obo/UBERON_2005029,rostral blood island +15.5685541,UBERON:2005106,http://purl.obolibrary.org/obo/UBERON_2005106,longitudinal lateral lymphatic vessel +15.5685541,UBERON:2200271,http://purl.obolibrary.org/obo/UBERON_2200271,radial cartilage +15.5685541,UBERON:3000237,http://purl.obolibrary.org/obo/UBERON_3000237,infrarostral cartilage +15.5685541,UBERON:3000433,http://purl.obolibrary.org/obo/UBERON_3000433,pineal foramen +15.5685541,UBERON:3001010,http://purl.obolibrary.org/obo/UBERON_3001010,body tubercle +15.5685541,UBERON:3010104,http://purl.obolibrary.org/obo/UBERON_3010104,pectoral glands +15.5685541,UBERON:3010115,http://purl.obolibrary.org/obo/UBERON_3010115,posterior lateral line nerve (PLLN) +15.5685541,UBERON:3010188,http://purl.obolibrary.org/obo/UBERON_3010188,outer metacarpal tubercle +15.5685541,UBERON:3010423,http://purl.obolibrary.org/obo/UBERON_3010423,larval aorta +15.5685541,UBERON:3010437,http://purl.obolibrary.org/obo/UBERON_3010437,post-anal gut +15.5685541,UBERON:3010499,http://purl.obolibrary.org/obo/UBERON_3010499,coeliaco-mesenteric artery +15.5685541,UBERON:4000167,http://purl.obolibrary.org/obo/UBERON_4000167,caudal fin skeleton +15.5685541,UBERON:4200070,http://purl.obolibrary.org/obo/UBERON_4200070,median fin spine +15.5685541,UBERON:4200075,http://purl.obolibrary.org/obo/UBERON_4200075,fin spine +15.8562362,CHEBI:10615,http://purl.obolibrary.org/obo/CHEBI_10615,omega-hydroxy fatty acid +15.8562362,CHEBI:107736,http://purl.obolibrary.org/obo/CHEBI_107736,metoclopramide +15.8562362,CHEBI:132124,http://purl.obolibrary.org/obo/CHEBI_132124,"1,4-benzoquinones" +15.8562362,CHEBI:133249,http://purl.obolibrary.org/obo/CHEBI_133249,saturated fatty aldehyde +15.8562362,CHEBI:133341,http://purl.obolibrary.org/obo/CHEBI_133341,choline chloride +15.8562362,CHEBI:13390,http://purl.obolibrary.org/obo/CHEBI_13390,NAD(P)(+) +15.8562362,CHEBI:139322,http://purl.obolibrary.org/obo/CHEBI_139322,poly(ethylene glycol) derivative +15.8562362,CHEBI:139358,http://purl.obolibrary.org/obo/CHEBI_139358,isotopically modified compound +15.8562362,CHEBI:142734,http://purl.obolibrary.org/obo/CHEBI_142734,N-acyl hemiaminal +15.8562362,CHEBI:143084,http://purl.obolibrary.org/obo/CHEBI_143084,organometalloidal compound +15.8562362,CHEBI:15076,http://purl.obolibrary.org/obo/CHEBI_15076,selenide +15.8562362,CHEBI:15345,http://purl.obolibrary.org/obo/CHEBI_15345,acetoacetyl-CoA +15.8562362,CHEBI:1547,http://purl.obolibrary.org/obo/CHEBI_1547,3-hydroxykynurenine +15.8562362,CHEBI:15489,http://purl.obolibrary.org/obo/CHEBI_15489,3-oxo-fatty acyl-CoA +15.8562362,CHEBI:15603,http://purl.obolibrary.org/obo/CHEBI_15603,L-leucine +15.8562362,CHEBI:15674,http://purl.obolibrary.org/obo/CHEBI_15674,"2,3-dihydroxybutanedioic acid" +15.8562362,CHEBI:15702,http://purl.obolibrary.org/obo/CHEBI_15702,terephthalic acid +15.8562362,CHEBI:15713,http://purl.obolibrary.org/obo/CHEBI_15713,UTP +15.8562362,CHEBI:15862,http://purl.obolibrary.org/obo/CHEBI_15862,ethylamine +15.8562362,CHEBI:15965,http://purl.obolibrary.org/obo/CHEBI_15965,D-hexose phosphate +15.8562362,CHEBI:16018,http://purl.obolibrary.org/obo/CHEBI_16018,acyl-[acyl-carrier protein] +15.8562362,CHEBI:16153,http://purl.obolibrary.org/obo/CHEBI_16153,N-acetyllactosamine +15.8562362,CHEBI:16158,http://purl.obolibrary.org/obo/CHEBI_16158,steroid sulfate +15.8562362,CHEBI:16294,http://purl.obolibrary.org/obo/CHEBI_16294,barbituric acid +15.8562362,CHEBI:16349,http://purl.obolibrary.org/obo/CHEBI_16349,L-citrulline +15.8562362,CHEBI:16359,http://purl.obolibrary.org/obo/CHEBI_16359,cholic acid +15.8562362,CHEBI:16414,http://purl.obolibrary.org/obo/CHEBI_16414,L-valine +15.8562362,CHEBI:16523,http://purl.obolibrary.org/obo/CHEBI_16523,D-serine +15.8562362,CHEBI:16648,http://purl.obolibrary.org/obo/CHEBI_16648,dialkyl phosphate +15.8562362,CHEBI:16755,http://purl.obolibrary.org/obo/CHEBI_16755,chenodeoxycholic acid +15.8562362,CHEBI:16765,http://purl.obolibrary.org/obo/CHEBI_16765,tryptamine +15.8562362,CHEBI:16826,http://purl.obolibrary.org/obo/CHEBI_16826,acyl monophosphate +15.8562362,CHEBI:16836,http://purl.obolibrary.org/obo/CHEBI_16836,4-nitrophenol +15.8562362,CHEBI:16855,http://purl.obolibrary.org/obo/CHEBI_16855,D-lysine +15.8562362,CHEBI:16916,http://purl.obolibrary.org/obo/CHEBI_16916,oligosaccharide phosphate +15.8562362,CHEBI:16946,http://purl.obolibrary.org/obo/CHEBI_16946,L-kynurenine +15.8562362,CHEBI:16990,http://purl.obolibrary.org/obo/CHEBI_16990,bilirubin IXalpha +15.8562362,CHEBI:17115,http://purl.obolibrary.org/obo/CHEBI_17115,L-serine +15.8562362,CHEBI:17148,http://purl.obolibrary.org/obo/CHEBI_17148,putrescine +15.8562362,CHEBI:17177,http://purl.obolibrary.org/obo/CHEBI_17177,cinnamyl alcohol +15.8562362,CHEBI:17191,http://purl.obolibrary.org/obo/CHEBI_17191,L-isoleucine +15.8562362,CHEBI:17242,http://purl.obolibrary.org/obo/CHEBI_17242,dehydroascorbic acid +15.8562362,CHEBI:17369,http://purl.obolibrary.org/obo/CHEBI_17369,D-mannose 6-phosphate +15.8562362,CHEBI:17418,http://purl.obolibrary.org/obo/CHEBI_17418,valeric acid +15.8562362,CHEBI:174690,http://purl.obolibrary.org/obo/CHEBI_174690,clenbuterol +15.8562362,CHEBI:175901,http://purl.obolibrary.org/obo/CHEBI_175901,gemcitabine +15.8562362,CHEBI:17672,http://purl.obolibrary.org/obo/CHEBI_17672,carbamoyl phosphate +15.8562362,CHEBI:177333,http://purl.obolibrary.org/obo/CHEBI_177333,organic tetracyclic compound +15.8562362,CHEBI:17737,http://purl.obolibrary.org/obo/CHEBI_17737,desmosterol +15.8562362,CHEBI:17907,http://purl.obolibrary.org/obo/CHEBI_17907,styrene oxide +15.8562362,CHEBI:17964,http://purl.obolibrary.org/obo/CHEBI_17964,pipecolic acid +15.8562362,CHEBI:17987,http://purl.obolibrary.org/obo/CHEBI_17987,benzyl alcohol +15.8562362,CHEBI:18009,http://purl.obolibrary.org/obo/CHEBI_18009,NADP(+) +15.8562362,CHEBI:18035,http://purl.obolibrary.org/obo/CHEBI_18035,diglyceride +15.8562362,CHEBI:18047,http://purl.obolibrary.org/obo/CHEBI_18047,dihydrolipoic acid +15.8562362,CHEBI:18049,http://purl.obolibrary.org/obo/CHEBI_18049,piperidine +15.8562362,CHEBI:18122,http://purl.obolibrary.org/obo/CHEBI_18122,peptidylamidoglycolate +15.8562362,CHEBI:18140,http://purl.obolibrary.org/obo/CHEBI_18140,hydrogen halide +15.8562362,CHEBI:18153,http://purl.obolibrary.org/obo/CHEBI_18153,ethene +15.8562362,CHEBI:18220,http://purl.obolibrary.org/obo/CHEBI_18220,isoflavone +15.8562362,CHEBI:18276,http://purl.obolibrary.org/obo/CHEBI_18276,dihydrogen +15.8562362,CHEBI:21060,http://purl.obolibrary.org/obo/CHEBI_21060,mannose phosphate +15.8562362,CHEBI:21437,http://purl.obolibrary.org/obo/CHEBI_21437,Mo-molybdopterin cofactor +15.8562362,CHEBI:22480,http://purl.obolibrary.org/obo/CHEBI_22480,amino disaccharide +15.8562362,CHEBI:22483,http://purl.obolibrary.org/obo/CHEBI_22483,amino oligosaccharide +15.8562362,CHEBI:22485,http://purl.obolibrary.org/obo/CHEBI_22485,glucosamine oligosaccharide +15.8562362,CHEBI:22584,http://purl.obolibrary.org/obo/CHEBI_22584,none +15.8562362,CHEBI:22601,http://purl.obolibrary.org/obo/CHEBI_22601,arabinoside +15.8562362,CHEBI:22754,http://purl.obolibrary.org/obo/CHEBI_22754,berberine alkaloid +15.8562362,CHEBI:23004,http://purl.obolibrary.org/obo/CHEBI_23004,carbamoyl group +15.8562362,CHEBI:23237,http://purl.obolibrary.org/obo/CHEBI_23237,chromium molecular entity +15.8562362,CHEBI:23438,http://purl.obolibrary.org/obo/CHEBI_23438,cyanopyridine +15.8562362,CHEBI:23503,http://purl.obolibrary.org/obo/CHEBI_23503,"4-amino-1,2-oxazolidin-3-one" +15.8562362,CHEBI:23702,http://purl.obolibrary.org/obo/CHEBI_23702,dichlorophenol +15.8562362,CHEBI:23847,http://purl.obolibrary.org/obo/CHEBI_23847,diterpene alkaloid +15.8562362,CHEBI:24009,http://purl.obolibrary.org/obo/CHEBI_24009,eumelanin +15.8562362,CHEBI:24335,http://purl.obolibrary.org/obo/CHEBI_24335,glutathione conjugate +15.8562362,CHEBI:2453,http://purl.obolibrary.org/obo/CHEBI_2453,acyclovir +15.8562362,CHEBI:24599,http://purl.obolibrary.org/obo/CHEBI_24599,histidine derivative +15.8562362,CHEBI:24675,http://purl.obolibrary.org/obo/CHEBI_24675,hydroxybenzoate +15.8562362,CHEBI:24684,http://purl.obolibrary.org/obo/CHEBI_24684,hydroxybutyric acid +15.8562362,CHEBI:24829,http://purl.obolibrary.org/obo/CHEBI_24829,indolones +15.8562362,CHEBI:25002,http://purl.obolibrary.org/obo/CHEBI_25002,lactosamines +15.8562362,CHEBI:25046,http://purl.obolibrary.org/obo/CHEBI_25046,linear tetrapyrrole +15.8562362,CHEBI:25372,http://purl.obolibrary.org/obo/CHEBI_25372,molybdopterin cofactor +15.8562362,CHEBI:25380,http://purl.obolibrary.org/obo/CHEBI_25380,acetylenic fatty acid +15.8562362,CHEBI:25388,http://purl.obolibrary.org/obo/CHEBI_25388,monohydroxybenzoate +15.8562362,CHEBI:25411,http://purl.obolibrary.org/obo/CHEBI_25411,monoterpenols +15.8562362,CHEBI:25430,http://purl.obolibrary.org/obo/CHEBI_25430,monoatomic polycation +15.8562362,CHEBI:2549,http://purl.obolibrary.org/obo/CHEBI_2549,albuterol +15.8562362,CHEBI:25506,http://purl.obolibrary.org/obo/CHEBI_25506,neuraminates +15.8562362,CHEBI:25560,http://purl.obolibrary.org/obo/CHEBI_25560,nitroglycerol +15.8562362,CHEBI:25702,http://purl.obolibrary.org/obo/CHEBI_25702,organic peroxide +15.8562362,CHEBI:25712,http://purl.obolibrary.org/obo/CHEBI_25712,organoselenium compound +15.8562362,CHEBI:25898,http://purl.obolibrary.org/obo/CHEBI_25898,pentitol phosphate +15.8562362,CHEBI:25902,http://purl.obolibrary.org/obo/CHEBI_25902,pentyl group +15.8562362,CHEBI:26092,http://purl.obolibrary.org/obo/CHEBI_26092,phthalate +15.8562362,CHEBI:26127,http://purl.obolibrary.org/obo/CHEBI_26127,phytylnaphthoquinone +15.8562362,CHEBI:26177,http://purl.obolibrary.org/obo/CHEBI_26177,polyene antibiotic +15.8562362,CHEBI:2618,http://purl.obolibrary.org/obo/CHEBI_2618,amantadine +15.8562362,CHEBI:26186,http://purl.obolibrary.org/obo/CHEBI_26186,polyprenyl phospho oligosaccharide +15.8562362,CHEBI:26187,http://purl.obolibrary.org/obo/CHEBI_26187,polyprenyl phospho carbohydrate +15.8562362,CHEBI:26196,http://purl.obolibrary.org/obo/CHEBI_26196,polyphenylpropanoid +15.8562362,CHEBI:26206,http://purl.obolibrary.org/obo/CHEBI_26206,polysialic acid +15.8562362,CHEBI:2639,http://purl.obolibrary.org/obo/CHEBI_2639,amiloride +15.8562362,CHEBI:26410,http://purl.obolibrary.org/obo/CHEBI_26410,pyrazoles +15.8562362,CHEBI:26455,http://purl.obolibrary.org/obo/CHEBI_26455,pyrroles +15.8562362,CHEBI:26508,http://purl.obolibrary.org/obo/CHEBI_26508,quinoline N-oxide +15.8562362,CHEBI:26547,http://purl.obolibrary.org/obo/CHEBI_26547,rhamnoside +15.8562362,CHEBI:26554,http://purl.obolibrary.org/obo/CHEBI_26554,ribitol phosphate +15.8562362,CHEBI:26606,http://purl.obolibrary.org/obo/CHEBI_26606,sapogenin +15.8562362,CHEBI:26625,http://purl.obolibrary.org/obo/CHEBI_26625,selenides +15.8562362,CHEBI:26629,http://purl.obolibrary.org/obo/CHEBI_26629,selenoamino acid +15.8562362,CHEBI:26640,http://purl.obolibrary.org/obo/CHEBI_26640,selenomethionines +15.8562362,CHEBI:2666,http://purl.obolibrary.org/obo/CHEBI_2666,amitriptyline +15.8562362,CHEBI:26671,http://purl.obolibrary.org/obo/CHEBI_26671,sideramine +15.8562362,CHEBI:2674,http://purl.obolibrary.org/obo/CHEBI_2674,amodiaquine +15.8562362,CHEBI:2676,http://purl.obolibrary.org/obo/CHEBI_2676,amoxicillin +15.8562362,CHEBI:2682,http://purl.obolibrary.org/obo/CHEBI_2682,amphotericin B +15.8562362,CHEBI:26849,http://purl.obolibrary.org/obo/CHEBI_26849,tartaric acid +15.8562362,CHEBI:26871,http://purl.obolibrary.org/obo/CHEBI_26871,terpene alkaloid +15.8562362,CHEBI:26874,http://purl.obolibrary.org/obo/CHEBI_26874,terpenol +15.8562362,CHEBI:26876,http://purl.obolibrary.org/obo/CHEBI_26876,terpineol +15.8562362,CHEBI:26921,http://purl.obolibrary.org/obo/CHEBI_26921,tetrahydropyridine +15.8562362,CHEBI:26933,http://purl.obolibrary.org/obo/CHEBI_26933,tetraric acid +15.8562362,CHEBI:27114,http://purl.obolibrary.org/obo/CHEBI_27114,trihydroxy-5beta-cholanic acid +15.8562362,CHEBI:27153,http://purl.obolibrary.org/obo/CHEBI_27153,monoatomic trication +15.8562362,CHEBI:27175,http://purl.obolibrary.org/obo/CHEBI_27175,tyramines +15.8562362,CHEBI:27194,http://purl.obolibrary.org/obo/CHEBI_27194,undecaprenyldiphospho-N-acetylmuramoyl peptide +15.8562362,CHEBI:27632,http://purl.obolibrary.org/obo/CHEBI_27632,acetophenone +15.8562362,CHEBI:27692,http://purl.obolibrary.org/obo/CHEBI_27692,lipid II +15.8562362,CHEBI:28194,http://purl.obolibrary.org/obo/CHEBI_28194,petroselinic acid +15.8562362,CHEBI:28205,http://purl.obolibrary.org/obo/CHEBI_28205,phaseic acid +15.8562362,CHEBI:28371,http://purl.obolibrary.org/obo/CHEBI_28371,vitamin K epoxide +15.8562362,CHEBI:28593,http://purl.obolibrary.org/obo/CHEBI_28593,quinidine +15.8562362,CHEBI:28680,http://purl.obolibrary.org/obo/CHEBI_28680,cytarabine +15.8562362,CHEBI:2873,http://purl.obolibrary.org/obo/CHEBI_2873,asiatic acid +15.8562362,CHEBI:28787,http://purl.obolibrary.org/obo/CHEBI_28787,nitroglycerin +15.8562362,CHEBI:28976,http://purl.obolibrary.org/obo/CHEBI_28976,carbonic acid +15.8562362,CHEBI:29069,http://purl.obolibrary.org/obo/CHEBI_29069,phthalic acid +15.8562362,CHEBI:29213,http://purl.obolibrary.org/obo/CHEBI_29213,sulfinic acid +15.8562362,CHEBI:29315,http://purl.obolibrary.org/obo/CHEBI_29315,phosphoryl +15.8562362,CHEBI:29919,http://purl.obolibrary.org/obo/CHEBI_29919,hydrosulfide +15.8562362,CHEBI:29968,http://purl.obolibrary.org/obo/CHEBI_29968,D-lysine residue +15.8562362,CHEBI:29994,http://purl.obolibrary.org/obo/CHEBI_29994,D-aspartate(2-) +15.8562362,CHEBI:30066,http://purl.obolibrary.org/obo/CHEBI_30066,thioglycolate(1-) +15.8562362,CHEBI:30087,http://purl.obolibrary.org/obo/CHEBI_30087,guanidinium +15.8562362,CHEBI:30178,http://purl.obolibrary.org/obo/CHEBI_30178,sodium perborate +15.8562362,CHEBI:30187,http://purl.obolibrary.org/obo/CHEBI_30187,aluminium oxide +15.8562362,CHEBI:3020,http://purl.obolibrary.org/obo/CHEBI_3020,benzalkonium chloride +15.8562362,CHEBI:30355,http://purl.obolibrary.org/obo/CHEBI_30355,tert-butyl group +15.8562362,CHEBI:30361,http://purl.obolibrary.org/obo/CHEBI_30361,allyl group +15.8562362,CHEBI:30521,http://purl.obolibrary.org/obo/CHEBI_30521,tungsten disulfide +15.8562362,CHEBI:30629,http://purl.obolibrary.org/obo/CHEBI_30629,diethylenetriamine +15.8562362,CHEBI:30660,http://purl.obolibrary.org/obo/CHEBI_30660,thyroxine +15.8562362,CHEBI:30704,http://purl.obolibrary.org/obo/CHEBI_30704,molybdenum disulfide +15.8562362,CHEBI:30745,http://purl.obolibrary.org/obo/CHEBI_30745,phenylacetic acid +15.8562362,CHEBI:30813,http://purl.obolibrary.org/obo/CHEBI_30813,decanoic acid +15.8562362,CHEBI:3092,http://purl.obolibrary.org/obo/CHEBI_3092,bicuculline +15.8562362,CHEBI:31346,http://purl.obolibrary.org/obo/CHEBI_31346,calcium sulfate +15.8562362,CHEBI:31522,http://purl.obolibrary.org/obo/CHEBI_31522,Doxorubicin hydrochloride +15.8562362,CHEBI:31975,http://purl.obolibrary.org/obo/CHEBI_31975,Pentetreotide +15.8562362,CHEBI:32031,http://purl.obolibrary.org/obo/CHEBI_32031,none +15.8562362,CHEBI:3213,http://purl.obolibrary.org/obo/CHEBI_3213,bumetanide +15.8562362,CHEBI:32140,http://purl.obolibrary.org/obo/CHEBI_32140,sodium caffeine benzoate +15.8562362,CHEBI:32168,http://purl.obolibrary.org/obo/CHEBI_32168,sulpiride +15.8562362,CHEBI:32359,http://purl.obolibrary.org/obo/CHEBI_32359,dodecanoyl group +15.8562362,CHEBI:32556,http://purl.obolibrary.org/obo/CHEBI_32556,D-lysinate +15.8562362,CHEBI:32604,http://purl.obolibrary.org/obo/CHEBI_32604,L-isoleucinate +15.8562362,CHEBI:32619,http://purl.obolibrary.org/obo/CHEBI_32619,L-leucinate +15.8562362,CHEBI:32836,http://purl.obolibrary.org/obo/CHEBI_32836,L-serinate +15.8562362,CHEBI:32840,http://purl.obolibrary.org/obo/CHEBI_32840,D-serinate +15.8562362,CHEBI:32851,http://purl.obolibrary.org/obo/CHEBI_32851,L-valinate +15.8562362,CHEBI:32915,http://purl.obolibrary.org/obo/CHEBI_32915,cetylpyridinium chloride +15.8562362,CHEBI:33070,http://purl.obolibrary.org/obo/CHEBI_33070,indole-3-butyric acid +15.8562362,CHEBI:33100,http://purl.obolibrary.org/obo/CHEBI_33100,carbamoyl +15.8562362,CHEBI:33127,http://purl.obolibrary.org/obo/CHEBI_33127,sulfadiazinate +15.8562362,CHEBI:33130,http://purl.obolibrary.org/obo/CHEBI_33130,aluminium hydroxide +15.8562362,CHEBI:33325,http://purl.obolibrary.org/obo/CHEBI_33325,radium atom +15.8562362,CHEBI:33406,http://purl.obolibrary.org/obo/CHEBI_33406,organoarsenic compound +15.8562362,CHEBI:33513,http://purl.obolibrary.org/obo/CHEBI_33513,alkaline earth cation +15.8562362,CHEBI:33573,http://purl.obolibrary.org/obo/CHEBI_33573,tetrol +15.8562362,CHEBI:33583,http://purl.obolibrary.org/obo/CHEBI_33583,noble gas molecular entity +15.8562362,CHEBI:33646,http://purl.obolibrary.org/obo/CHEBI_33646,alkadiene +15.8562362,CHEBI:33742,http://purl.obolibrary.org/obo/CHEBI_33742,tungsten molecular entity +15.8562362,CHEBI:33830,http://purl.obolibrary.org/obo/CHEBI_33830,galacturonic acid +15.8562362,CHEBI:34288,http://purl.obolibrary.org/obo/CHEBI_34288,2-hydroxyethyl methacrylate +15.8562362,CHEBI:35019,http://purl.obolibrary.org/obo/CHEBI_35019,tributyl phosphate +15.8562362,CHEBI:35033,http://purl.obolibrary.org/obo/CHEBI_35033,triphenyl phosphate +15.8562362,CHEBI:35176,http://purl.obolibrary.org/obo/CHEBI_35176,zinc sulfate +15.8562362,CHEBI:35187,http://purl.obolibrary.org/obo/CHEBI_35187,monoterpene +15.8562362,CHEBI:35190,http://purl.obolibrary.org/obo/CHEBI_35190,diterpene +15.8562362,CHEBI:35203,http://purl.obolibrary.org/obo/CHEBI_35203,molybdopterins +15.8562362,CHEBI:35286,http://purl.obolibrary.org/obo/CHEBI_35286,iminium ion +15.8562362,CHEBI:35312,http://purl.obolibrary.org/obo/CHEBI_35312,pentoside +15.8562362,CHEBI:35506,http://purl.obolibrary.org/obo/CHEBI_35506,alkaloid fundamental parent +15.8562362,CHEBI:35697,http://purl.obolibrary.org/obo/CHEBI_35697,trans-cinnamic acid +15.8562362,CHEBI:35702,http://purl.obolibrary.org/obo/CHEBI_35702,diethyl ether +15.8562362,CHEBI:35725,http://purl.obolibrary.org/obo/CHEBI_35725,isopropyl ester +15.8562362,CHEBI:35825,http://purl.obolibrary.org/obo/CHEBI_35825,mandelic acid +15.8562362,CHEBI:35951,http://purl.obolibrary.org/obo/CHEBI_35951,dioxo monocarboxylic acid +15.8562362,CHEBI:35990,http://purl.obolibrary.org/obo/CHEBI_35990,bridged compound +15.8562362,CHEBI:36022,http://purl.obolibrary.org/obo/CHEBI_36022,octadec-6-enoic acid +15.8562362,CHEBI:36023,http://purl.obolibrary.org/obo/CHEBI_36023,vaccenic acid +15.8562362,CHEBI:36034,http://purl.obolibrary.org/obo/CHEBI_36034,octadecynoic acid +15.8562362,CHEBI:36336,http://purl.obolibrary.org/obo/CHEBI_36336,naphthalenesulfonic acid +15.8562362,CHEBI:36621,http://purl.obolibrary.org/obo/CHEBI_36621,quinazoline +15.8562362,CHEBI:36735,http://purl.obolibrary.org/obo/CHEBI_36735,biladienes +15.8562362,CHEBI:36815,http://purl.obolibrary.org/obo/CHEBI_36815,5-methoxyvalerophenone O-(2-aminoethyl)oxime +15.8562362,CHEBI:36823,http://purl.obolibrary.org/obo/CHEBI_36823,pseudohalo group +15.8562362,CHEBI:36843,http://purl.obolibrary.org/obo/CHEBI_36843,7alpha-hydroxy steroid +15.8562362,CHEBI:36844,http://purl.obolibrary.org/obo/CHEBI_36844,7-hydroxy steroid +15.8562362,CHEBI:36846,http://purl.obolibrary.org/obo/CHEBI_36846,12alpha-hydroxy steroid +15.8562362,CHEBI:36860,http://purl.obolibrary.org/obo/CHEBI_36860,14-hydroxy steroid +15.8562362,CHEBI:36862,http://purl.obolibrary.org/obo/CHEBI_36862,14beta-hydroxy steroid +15.8562362,CHEBI:36904,http://purl.obolibrary.org/obo/CHEBI_36904,elemental selenium +15.8562362,CHEBI:36908,http://purl.obolibrary.org/obo/CHEBI_36908,argon molecular entity +15.8562362,CHEBI:36946,http://purl.obolibrary.org/obo/CHEBI_36946,thiourea +15.8562362,CHEBI:36961,http://purl.obolibrary.org/obo/CHEBI_36961,chalcocarbonic acid +15.8562362,CHEBI:37173,http://purl.obolibrary.org/obo/CHEBI_37173,silanol +15.8562362,CHEBI:37228,http://purl.obolibrary.org/obo/CHEBI_37228,iridium molecular entity +15.8562362,CHEBI:3723,http://purl.obolibrary.org/obo/CHEBI_3723,citalopram +15.8562362,CHEBI:37349,http://purl.obolibrary.org/obo/CHEBI_37349,phosphorus oxide +15.8562362,CHEBI:37391,http://purl.obolibrary.org/obo/CHEBI_37391,"1,4,7,10-tetraazacyclododecane" +15.8562362,CHEBI:37397,http://purl.obolibrary.org/obo/CHEBI_37397,chondroitin sulfate +15.8562362,CHEBI:37411,http://purl.obolibrary.org/obo/CHEBI_37411,crown amine +15.8562362,CHEBI:37530,http://purl.obolibrary.org/obo/CHEBI_37530,phosphatidylinositol 4-phosphate +15.8562362,CHEBI:37586,http://purl.obolibrary.org/obo/CHEBI_37586,sodium phosphate +15.8562362,CHEBI:3766,http://purl.obolibrary.org/obo/CHEBI_3766,clozapine +15.8562362,CHEBI:37787,http://purl.obolibrary.org/obo/CHEBI_37787,acyclic mixed acid anhydride +15.8562362,CHEBI:37799,http://purl.obolibrary.org/obo/CHEBI_37799,tungsten oxide +15.8562362,CHEBI:37858,http://purl.obolibrary.org/obo/CHEBI_37858,sulfenic acid +15.8562362,CHEBI:37921,http://purl.obolibrary.org/obo/CHEBI_37921,pyridazines +15.8562362,CHEBI:37932,http://purl.obolibrary.org/obo/CHEBI_37932,phenothiazine +15.8562362,CHEBI:38031,http://purl.obolibrary.org/obo/CHEBI_38031,carboxyalkanesulfonic acid +15.8562362,CHEBI:38034,http://purl.obolibrary.org/obo/CHEBI_38034,aminonaphthalene +15.8562362,CHEBI:38278,http://purl.obolibrary.org/obo/CHEBI_38278,organoboron compound +15.8562362,CHEBI:38315,http://purl.obolibrary.org/obo/CHEBI_38315,beta-D-arabinoside +15.8562362,CHEBI:38481,http://purl.obolibrary.org/obo/CHEBI_38481,alkaloid ester +15.8562362,CHEBI:38512,http://purl.obolibrary.org/obo/CHEBI_38512,dibenzoquinolizine +15.8562362,CHEBI:38615,http://purl.obolibrary.org/obo/CHEBI_38615,cyclopiazonic acid +15.8562362,CHEBI:38755,http://purl.obolibrary.org/obo/CHEBI_38755,hydroxyisoflavone +15.8562362,CHEBI:38768,http://purl.obolibrary.org/obo/CHEBI_38768,phthalazines +15.8562362,CHEBI:39146,http://purl.obolibrary.org/obo/CHEBI_39146,trichostatin +15.8562362,CHEBI:39870,http://purl.obolibrary.org/obo/CHEBI_39870,propylamine +15.8562362,CHEBI:40279,http://purl.obolibrary.org/obo/CHEBI_40279,allopurinol +15.8562362,CHEBI:4031,http://purl.obolibrary.org/obo/CHEBI_4031,cyclosporin A +15.8562362,CHEBI:40618,http://purl.obolibrary.org/obo/CHEBI_40618,aminoguanidine +15.8562362,CHEBI:41308,http://purl.obolibrary.org/obo/CHEBI_41308,benzophenone +15.8562362,CHEBI:4195,http://purl.obolibrary.org/obo/CHEBI_4195,D-hexose 6-phosphate +15.8562362,CHEBI:43448,http://purl.obolibrary.org/obo/CHEBI_43448,iodo group +15.8562362,CHEBI:4495,http://purl.obolibrary.org/obo/CHEBI_4495,diazoxide +15.8562362,CHEBI:46024,http://purl.obolibrary.org/obo/CHEBI_46024,trichostatin A +15.8562362,CHEBI:46398,http://purl.obolibrary.org/obo/CHEBI_46398,UTP(4-) +15.8562362,CHEBI:46730,http://purl.obolibrary.org/obo/CHEBI_46730,native element mineral +15.8562362,CHEBI:46847,http://purl.obolibrary.org/obo/CHEBI_46847,N-iminopiperazine +15.8562362,CHEBI:46874,http://purl.obolibrary.org/obo/CHEBI_46874,alpha-amino acid ester +15.8562362,CHEBI:46942,http://purl.obolibrary.org/obo/CHEBI_46942,oxanes +15.8562362,CHEBI:46952,http://purl.obolibrary.org/obo/CHEBI_46952,oxazinane +15.8562362,CHEBI:47789,http://purl.obolibrary.org/obo/CHEBI_47789,7-oxo steroid +15.8562362,CHEBI:47869,http://purl.obolibrary.org/obo/CHEBI_47869,thioglycolate(2-) +15.8562362,CHEBI:47877,http://purl.obolibrary.org/obo/CHEBI_47877,hexose 6-phosphate +15.8562362,CHEBI:47881,http://purl.obolibrary.org/obo/CHEBI_47881,3-oxo monocarboxylic acid +15.8562362,CHEBI:48010,http://purl.obolibrary.org/obo/CHEBI_48010,locked nucleic acid +15.8562362,CHEBI:48066,http://purl.obolibrary.org/obo/CHEBI_48066,D-mannopyranose 6-phosphate +15.8562362,CHEBI:48116,http://purl.obolibrary.org/obo/CHEBI_48116,nucleotide-amino acid +15.8562362,CHEBI:48232,http://purl.obolibrary.org/obo/CHEBI_48232,calcium oxides +15.8562362,CHEBI:48274,http://purl.obolibrary.org/obo/CHEBI_48274,tryptamine alkaloid +15.8562362,CHEBI:48819,http://purl.obolibrary.org/obo/CHEBI_48819,cyano group +15.8562362,CHEBI:48953,http://purl.obolibrary.org/obo/CHEBI_48953,cyclohexenones +15.8562362,CHEBI:49000,http://purl.obolibrary.org/obo/CHEBI_49000,2-phenylethanol +15.8562362,CHEBI:4911,http://purl.obolibrary.org/obo/CHEBI_4911,etoposide +15.8562362,CHEBI:49475,http://purl.obolibrary.org/obo/CHEBI_49475,argon atom +15.8562362,CHEBI:49666,http://purl.obolibrary.org/obo/CHEBI_49666,iridium atom +15.8562362,CHEBI:49704,http://purl.obolibrary.org/obo/CHEBI_49704,iridium(3+) +15.8562362,CHEBI:49991,http://purl.obolibrary.org/obo/CHEBI_49991,elemental argon +15.8562362,CHEBI:50126,http://purl.obolibrary.org/obo/CHEBI_50126,tetrasaccharide +15.8562362,CHEBI:50176,http://purl.obolibrary.org/obo/CHEBI_50176,keratolytic drug +15.8562362,CHEBI:50211,http://purl.obolibrary.org/obo/CHEBI_50211,retinol +15.8562362,CHEBI:50307,http://purl.obolibrary.org/obo/CHEBI_50307,furonaphthodioxole +15.8562362,CHEBI:50317,http://purl.obolibrary.org/obo/CHEBI_50317,iodonium +15.8562362,CHEBI:50335,http://purl.obolibrary.org/obo/CHEBI_50335,organic nitrogen anion +15.8562362,CHEBI:50563,http://purl.obolibrary.org/obo/CHEBI_50563,iridoid monoterpenoid +15.8562362,CHEBI:50868,http://purl.obolibrary.org/obo/CHEBI_50868,penicillamine +15.8562362,CHEBI:5100,http://purl.obolibrary.org/obo/CHEBI_5100,flucytosine +15.8562362,CHEBI:51080,http://purl.obolibrary.org/obo/CHEBI_51080,nitrate ester +15.8562362,CHEBI:51150,http://purl.obolibrary.org/obo/CHEBI_51150,ylide +15.8562362,CHEBI:51218,http://purl.obolibrary.org/obo/CHEBI_51218,zinc phthalocyanine +15.8562362,CHEBI:51246,http://purl.obolibrary.org/obo/CHEBI_51246,propidium +15.8562362,CHEBI:5132,http://purl.obolibrary.org/obo/CHEBI_5132,flutamide +15.8562362,CHEBI:5138,http://purl.obolibrary.org/obo/CHEBI_5138,fluvoxamine +15.8562362,CHEBI:52157,http://purl.obolibrary.org/obo/CHEBI_52157,organic heteroheptacyclic compound +15.8562362,CHEBI:52282,http://purl.obolibrary.org/obo/CHEBI_52282,tetramethylrhodamine +15.8562362,CHEBI:52553,http://purl.obolibrary.org/obo/CHEBI_52553,tolyl group +15.8562362,CHEBI:5292,http://purl.obolibrary.org/obo/CHEBI_5292,geldanamycin +15.8562362,CHEBI:52943,http://purl.obolibrary.org/obo/CHEBI_52943,carboxylic acid protecting group +15.8562362,CHEBI:53095,http://purl.obolibrary.org/obo/CHEBI_53095,imidazolines +15.8562362,CHEBI:53231,http://purl.obolibrary.org/obo/CHEBI_53231,poly(ethylene imine) +15.8562362,CHEBI:53443,http://purl.obolibrary.org/obo/CHEBI_53443,salicylamides +15.8562362,CHEBI:5384,http://purl.obolibrary.org/obo/CHEBI_5384,glipizide +15.8562362,CHEBI:55373,http://purl.obolibrary.org/obo/CHEBI_55373,isoxazoles +15.8562362,CHEBI:57481,http://purl.obolibrary.org/obo/CHEBI_57481,UTP(3-) +15.8562362,CHEBI:5775,http://purl.obolibrary.org/obo/CHEBI_5775,hydralazine +15.8562362,CHEBI:5779,http://purl.obolibrary.org/obo/CHEBI_5779,hydrocodone +15.8562362,CHEBI:57917,http://purl.obolibrary.org/obo/CHEBI_57917,4-nitrophenolate +15.8562362,CHEBI:58228,http://purl.obolibrary.org/obo/CHEBI_58228,carbamoyl phosphate(2-) +15.8562362,CHEBI:5854,http://purl.obolibrary.org/obo/CHEBI_5854,Ibotenic acid +15.8562362,CHEBI:58955,http://purl.obolibrary.org/obo/CHEBI_58955,branched-chain fatty acid anion +15.8562362,CHEBI:58956,http://purl.obolibrary.org/obo/CHEBI_58956,branched-chain saturated fatty acid anion +15.8562362,CHEBI:59158,http://purl.obolibrary.org/obo/CHEBI_59158,poly(L-lysine) hydrobromide +15.8562362,CHEBI:59338,http://purl.obolibrary.org/obo/CHEBI_59338,methylammonium +15.8562362,CHEBI:59522,http://purl.obolibrary.org/obo/CHEBI_59522,N-glycoprotein +15.8562362,CHEBI:59745,http://purl.obolibrary.org/obo/CHEBI_59745,chromatographic reagent +15.8562362,CHEBI:59913,http://purl.obolibrary.org/obo/CHEBI_59913,thio-fatty acid +15.8562362,CHEBI:60152,http://purl.obolibrary.org/obo/CHEBI_60152,beta-D-Galp-(1->4)-D-GlcpNAc +15.8562362,CHEBI:60251,http://purl.obolibrary.org/obo/CHEBI_60251,guanidinium ion +15.8562362,CHEBI:60755,http://purl.obolibrary.org/obo/CHEBI_60755,poly(methyl acrylate) polymer +15.8562362,CHEBI:61407,http://purl.obolibrary.org/obo/CHEBI_61407,methoxycinnamic acid +15.8562362,CHEBI:61667,http://purl.obolibrary.org/obo/CHEBI_61667,D-hexopyranose 6-phosphate +15.8562362,CHEBI:616988,http://purl.obolibrary.org/obo/CHEBI_616988,mannose 6-phosphate +15.8562362,CHEBI:61903,http://purl.obolibrary.org/obo/CHEBI_61903,oxo-fatty acyl-CoA +15.8562362,CHEBI:62947,http://purl.obolibrary.org/obo/CHEBI_62947,ammonium acetate +15.8562362,CHEBI:63169,http://purl.obolibrary.org/obo/CHEBI_63169,pyranopterin +15.8562362,CHEBI:63434,http://purl.obolibrary.org/obo/CHEBI_63434,pentitol derivative +15.8562362,CHEBI:63436,http://purl.obolibrary.org/obo/CHEBI_63436,carbohydrate acid derivative +15.8562362,CHEBI:63577,http://purl.obolibrary.org/obo/CHEBI_63577,lamivudine +15.8562362,CHEBI:6367,http://purl.obolibrary.org/obo/CHEBI_6367,lamotrigine +15.8562362,CHEBI:63755,http://purl.obolibrary.org/obo/CHEBI_63755,o-nitrophenyl group +15.8562362,CHEBI:63908,http://purl.obolibrary.org/obo/CHEBI_63908,film-forming compound +15.8562362,CHEBI:64205,http://purl.obolibrary.org/obo/CHEBI_64205,calcium nitrate +15.8562362,CHEBI:64294,http://purl.obolibrary.org/obo/CHEBI_64294,7-ketocholesterol +15.8562362,CHEBI:6457,http://purl.obolibrary.org/obo/CHEBI_6457,lignin +15.8562362,CHEBI:64712,http://purl.obolibrary.org/obo/CHEBI_64712,trivalent inorganic cation +15.8562362,CHEBI:66922,http://purl.obolibrary.org/obo/CHEBI_66922,citrullinate +15.8562362,CHEBI:67010,http://purl.obolibrary.org/obo/CHEBI_67010,L-kynureninate +15.8562362,CHEBI:67011,http://purl.obolibrary.org/obo/CHEBI_67011,folates +15.8562362,CHEBI:67016,http://purl.obolibrary.org/obo/CHEBI_67016,tetrahydrofolate +15.8562362,CHEBI:67194,http://purl.obolibrary.org/obo/CHEBI_67194,cannabinoid +15.8562362,CHEBI:67195,http://purl.obolibrary.org/obo/CHEBI_67195,gap junctional intercellular communication inhibitor +15.8562362,CHEBI:67197,http://purl.obolibrary.org/obo/CHEBI_67197,endocannabinoid +15.8562362,CHEBI:67199,http://purl.obolibrary.org/obo/CHEBI_67199,AP-1 antagonist +15.8562362,CHEBI:68329,http://purl.obolibrary.org/obo/CHEBI_68329,syringic acid +15.8562362,CHEBI:68837,http://purl.obolibrary.org/obo/CHEBI_68837,pectate +15.8562362,CHEBI:70744,http://purl.obolibrary.org/obo/CHEBI_70744,Gly-Pro +15.8562362,CHEBI:70994,http://purl.obolibrary.org/obo/CHEBI_70994,hexacyclic triterpenoid +15.8562362,CHEBI:7203,http://purl.obolibrary.org/obo/CHEBI_7203,N-acetylhexosamine +15.8562362,CHEBI:73263,http://purl.obolibrary.org/obo/CHEBI_73263,cyclooxygenase 3 inhibitor +15.8562362,CHEBI:73359,http://purl.obolibrary.org/obo/CHEBI_73359,alpha-CH2-containing aldehyde +15.8562362,CHEBI:75037,http://purl.obolibrary.org/obo/CHEBI_75037,vilanterol +15.8562362,CHEBI:75283,http://purl.obolibrary.org/obo/CHEBI_75283,miltefosine +15.8562362,CHEBI:7550,http://purl.obolibrary.org/obo/CHEBI_7550,Nicardipine +15.8562362,CHEBI:7553,http://purl.obolibrary.org/obo/CHEBI_7553,niclosamide +15.8562362,CHEBI:75606,http://purl.obolibrary.org/obo/CHEBI_75606,hydroxamic acid ester +15.8562362,CHEBI:7575,http://purl.obolibrary.org/obo/CHEBI_7575,nimodipine +15.8562362,CHEBI:75896,http://purl.obolibrary.org/obo/CHEBI_75896,iron sulfides +15.8562362,CHEBI:75897,http://purl.obolibrary.org/obo/CHEBI_75897,iron(2+) sulfides +15.8562362,CHEBI:76551,http://purl.obolibrary.org/obo/CHEBI_76551,N-nitrosoureas +15.8562362,CHEBI:76578,http://purl.obolibrary.org/obo/CHEBI_76578,diradylglycerol +15.8562362,CHEBI:7735,http://purl.obolibrary.org/obo/CHEBI_7735,olanzapine +15.8562362,CHEBI:7772,http://purl.obolibrary.org/obo/CHEBI_7772,omeprazole +15.8562362,CHEBI:78019,http://purl.obolibrary.org/obo/CHEBI_78019,"2,3,5-triphenyltetrazolium chloride" +15.8562362,CHEBI:78206,http://purl.obolibrary.org/obo/CHEBI_78206,fatty acid ethyl ester +15.8562362,CHEBI:78248,http://purl.obolibrary.org/obo/CHEBI_78248,vitamin B1 antagonist +15.8562362,CHEBI:78291,http://purl.obolibrary.org/obo/CHEBI_78291,iron dextran +15.8562362,CHEBI:78673,http://purl.obolibrary.org/obo/CHEBI_78673,cumene hydroperoxide +15.8562362,CHEBI:79314,http://purl.obolibrary.org/obo/CHEBI_79314,flame retardant +15.8562362,CHEBI:7983,http://purl.obolibrary.org/obo/CHEBI_7983,pentobarbital +15.8562362,CHEBI:80235,http://purl.obolibrary.org/obo/CHEBI_80235,C-Type natriuretic peptide +15.8562362,CHEBI:80254,http://purl.obolibrary.org/obo/CHEBI_80254,Melanin-concentrating hormone +15.8562362,CHEBI:80328,http://purl.obolibrary.org/obo/CHEBI_80328,Gastrin-releasing peptide +15.8562362,CHEBI:8081,http://purl.obolibrary.org/obo/CHEBI_8081,phentolamine +15.8562362,CHEBI:81009,http://purl.obolibrary.org/obo/CHEBI_81009,tRNA cytosine +15.8562362,CHEBI:82405,http://purl.obolibrary.org/obo/CHEBI_82405,Benzoyl peroxide +15.8562362,CHEBI:82569,http://purl.obolibrary.org/obo/CHEBI_82569,4-(methylnitrosamino)-1-(3-pyridyl)-1-butanol +15.8562362,CHEBI:82632,http://purl.obolibrary.org/obo/CHEBI_82632,phytochrome chromophore +15.8562362,CHEBI:83074,http://purl.obolibrary.org/obo/CHEBI_83074,kairomone +15.8562362,CHEBI:83163,http://purl.obolibrary.org/obo/CHEBI_83163,molasses +15.8562362,CHEBI:83491,http://purl.obolibrary.org/obo/CHEBI_83491,perfluoropentanoic acid +15.8562362,CHEBI:8461,http://purl.obolibrary.org/obo/CHEBI_8461,promethazine +15.8562362,CHEBI:84729,http://purl.obolibrary.org/obo/CHEBI_84729,hydroxyindoles +15.8562362,CHEBI:8500,http://purl.obolibrary.org/obo/CHEBI_8500,propranolol hydrochloride +15.8562362,CHEBI:85185,http://purl.obolibrary.org/obo/CHEBI_85185,hepatitis C virus nonstructural protein 5A inhibitor +15.8562362,CHEBI:85259,http://purl.obolibrary.org/obo/CHEBI_85259,diethylamine +15.8562362,CHEBI:86471,http://purl.obolibrary.org/obo/CHEBI_86471,pyrite +15.8562362,CHEBI:86497,http://purl.obolibrary.org/obo/CHEBI_86497,hydroxykynurenine +15.8562362,CHEBI:87040,http://purl.obolibrary.org/obo/CHEBI_87040,agaropectin +15.8562362,CHEBI:87127,http://purl.obolibrary.org/obo/CHEBI_87127,allylamine antifungal drug +15.8562362,CHEBI:87205,http://purl.obolibrary.org/obo/CHEBI_87205,pyrimidine antifungal drug +15.8562362,CHEBI:90628,http://purl.obolibrary.org/obo/CHEBI_90628,benzyl ester +15.8562362,CHEBI:9328,http://purl.obolibrary.org/obo/CHEBI_9328,sulfadiazine +15.8562362,CHEBI:9405,http://purl.obolibrary.org/obo/CHEBI_9405,tartrazine +15.8562362,CHEBI:9440,http://purl.obolibrary.org/obo/CHEBI_9440,tenuazonic acid +15.8562362,CL:0000200,http://purl.obolibrary.org/obo/CL_0000200,touch receptor cell +15.8562362,CL:0000203,http://purl.obolibrary.org/obo/CL_0000203,gravity sensitive cell +15.8562362,CL:0000318,http://purl.obolibrary.org/obo/CL_0000318,sweat secreting cell +15.8562362,CL:0000350,http://purl.obolibrary.org/obo/CL_0000350,amnioserosal cell +15.8562362,CL:0000574,http://purl.obolibrary.org/obo/CL_0000574,erythrophore +15.8562362,CL:0000697,http://purl.obolibrary.org/obo/CL_0000697,R4 photoreceptor cell +15.8562362,CL:0000777,http://purl.obolibrary.org/obo/CL_0000777,mesangial phagocyte +15.8562362,CL:0000783,http://purl.obolibrary.org/obo/CL_0000783,multinucleated phagocyte +15.8562362,CL:0000830,http://purl.obolibrary.org/obo/CL_0000830,basophilic promyelocyte +15.8562362,CL:0000841,http://purl.obolibrary.org/obo/CL_0000841,mature conventional dendritic cell +15.8562362,CL:0000887,http://purl.obolibrary.org/obo/CL_0000887,lymph node subcapsular sinus macrophage +15.8562362,CL:0002071,http://purl.obolibrary.org/obo/CL_0002071,enterocyte of epithelium of large intestine +15.8562362,CL:0002094,http://purl.obolibrary.org/obo/CL_0002094,interstitial cell of ovary +15.8562362,CL:0002199,http://purl.obolibrary.org/obo/CL_0002199,oxyphil cell of parathyroid gland +15.8562362,CL:0002252,http://purl.obolibrary.org/obo/CL_0002252,epithelial cell of esophagus +15.8562362,CL:0002310,http://purl.obolibrary.org/obo/CL_0002310,mammosomatotroph +15.8562362,CL:0002324,http://purl.obolibrary.org/obo/CL_0002324,myoepithelial cell of mammary gland +15.8562362,CL:0002359,http://purl.obolibrary.org/obo/CL_0002359,placental hematopoietic stem cell +15.8562362,CL:0002458,http://purl.obolibrary.org/obo/CL_0002458,langerin-positive dermal dendritic cell +15.8562362,CL:0002480,http://purl.obolibrary.org/obo/CL_0002480,nasal mucosa goblet cell +15.8562362,CL:0002564,http://purl.obolibrary.org/obo/CL_0002564,nucleus pulposus cell of intervertebral disc +15.8562362,CL:0002566,http://purl.obolibrary.org/obo/CL_0002566,dark melanocyte +15.8562362,CL:0002599,http://purl.obolibrary.org/obo/CL_0002599,smooth muscle cell of the esophagus +15.8562362,CL:0002612,http://purl.obolibrary.org/obo/CL_0002612,neuron of the ventral spinal cord +15.8562362,CL:0002618,http://purl.obolibrary.org/obo/CL_0002618,endothelial cell of umbilical vein +15.8562362,CL:0005019,http://purl.obolibrary.org/obo/CL_0005019,pancreatic epsilon cell +15.8562362,CL:0009039,http://purl.obolibrary.org/obo/CL_0009039,none +15.8562362,CL:0011000,http://purl.obolibrary.org/obo/CL_0011000,dorsal horn interneuron +15.8562362,CL:0011002,http://purl.obolibrary.org/obo/CL_0011002,lateral motor column neuron +15.8562362,CL:1000275,http://purl.obolibrary.org/obo/CL_1000275,smooth muscle cell of small intestine +15.8562362,CL:1000327,http://purl.obolibrary.org/obo/CL_1000327,appendix goblet cell +15.8562362,CL:1000405,http://purl.obolibrary.org/obo/CL_1000405,epithelial cell of appendix +15.8562362,CL:1000416,http://purl.obolibrary.org/obo/CL_1000416,myoepithelial cell of lactiferous gland +15.8562362,CL:1000477,http://purl.obolibrary.org/obo/CL_1000477,cardiac pacemaker cell of sinoatrial node +15.8562362,CL:1000487,http://purl.obolibrary.org/obo/CL_1000487,smooth muscle cell of prostate +15.8562362,CL:1001585,http://purl.obolibrary.org/obo/CL_1001585,appendix glandular cell +15.8562362,CL:1001602,http://purl.obolibrary.org/obo/CL_1001602,cerebral cortex endothelial cell +15.8562362,DRUGBANK:DB01448,http://purl.obolibrary.org/obo/DRUGBANK_DB01448,none +15.8562362,DRUGBANK:DB01526,http://purl.obolibrary.org/obo/DRUGBANK_DB01526,none +15.8562362,DRUGBANK:DB01534,http://purl.obolibrary.org/obo/DRUGBANK_DB01534,none +15.8562362,DRUGBANK:DB01555,http://purl.obolibrary.org/obo/DRUGBANK_DB01555,none +15.8562362,DRUGBANK:DB01568,http://purl.obolibrary.org/obo/DRUGBANK_DB01568,none +15.8562362,DRUGBANK:DB01583,http://purl.obolibrary.org/obo/DRUGBANK_DB01583,none +15.8562362,DRUGBANK:DB01733,http://purl.obolibrary.org/obo/DRUGBANK_DB01733,none +15.8562362,DRUGBANK:DB01768,http://purl.obolibrary.org/obo/DRUGBANK_DB01768,none +15.8562362,DRUGBANK:DB01912,http://purl.obolibrary.org/obo/DRUGBANK_DB01912,none +15.8562362,DRUGBANK:DB01962,http://purl.obolibrary.org/obo/DRUGBANK_DB01962,none +15.8562362,DRUGBANK:DB01975,http://purl.obolibrary.org/obo/DRUGBANK_DB01975,none +15.8562362,DRUGBANK:DB01978,http://purl.obolibrary.org/obo/DRUGBANK_DB01978,none +15.8562362,DRUGBANK:DB02211,http://purl.obolibrary.org/obo/DRUGBANK_DB02211,none +15.8562362,DRUGBANK:DB02324,http://purl.obolibrary.org/obo/DRUGBANK_DB02324,none +15.8562362,DRUGBANK:DB02368,http://purl.obolibrary.org/obo/DRUGBANK_DB02368,none +15.8562362,DRUGBANK:DB02425,http://purl.obolibrary.org/obo/DRUGBANK_DB02425,none +15.8562362,DRUGBANK:DB02493,http://purl.obolibrary.org/obo/DRUGBANK_DB02493,none +15.8562362,DRUGBANK:DB02565,http://purl.obolibrary.org/obo/DRUGBANK_DB02565,none +15.8562362,DRUGBANK:DB02702,http://purl.obolibrary.org/obo/DRUGBANK_DB02702,none +15.8562362,DRUGBANK:DB02804,http://purl.obolibrary.org/obo/DRUGBANK_DB02804,none +15.8562362,DRUGBANK:DB02813,http://purl.obolibrary.org/obo/DRUGBANK_DB02813,none +15.8562362,DRUGBANK:DB02871,http://purl.obolibrary.org/obo/DRUGBANK_DB02871,none +15.8562362,DRUGBANK:DB02923,http://purl.obolibrary.org/obo/DRUGBANK_DB02923,none +15.8562362,DRUGBANK:DB02991,http://purl.obolibrary.org/obo/DRUGBANK_DB02991,none +15.8562362,DRUGBANK:DB03026,http://purl.obolibrary.org/obo/DRUGBANK_DB03026,none +15.8562362,DRUGBANK:DB03096,http://purl.obolibrary.org/obo/DRUGBANK_DB03096,none +15.8562362,DRUGBANK:DB03280,http://purl.obolibrary.org/obo/DRUGBANK_DB03280,none +15.8562362,DRUGBANK:DB03292,http://purl.obolibrary.org/obo/DRUGBANK_DB03292,none +15.8562362,DRUGBANK:DB03346,http://purl.obolibrary.org/obo/DRUGBANK_DB03346,none +15.8562362,DRUGBANK:DB03379,http://purl.obolibrary.org/obo/DRUGBANK_DB03379,none +15.8562362,DRUGBANK:DB03425,http://purl.obolibrary.org/obo/DRUGBANK_DB03425,none +15.8562362,DRUGBANK:DB03582,http://purl.obolibrary.org/obo/DRUGBANK_DB03582,none +15.8562362,DRUGBANK:DB03633,http://purl.obolibrary.org/obo/DRUGBANK_DB03633,none +15.8562362,DRUGBANK:DB03780,http://purl.obolibrary.org/obo/DRUGBANK_DB03780,none +15.8562362,DRUGBANK:DB03942,http://purl.obolibrary.org/obo/DRUGBANK_DB03942,none +15.8562362,DRUGBANK:DB03978,http://purl.obolibrary.org/obo/DRUGBANK_DB03978,none +15.8562362,DRUGBANK:DB04000,http://purl.obolibrary.org/obo/DRUGBANK_DB04000,none +15.8562362,DRUGBANK:DB04018,http://purl.obolibrary.org/obo/DRUGBANK_DB04018,none +15.8562362,DRUGBANK:DB04062,http://purl.obolibrary.org/obo/DRUGBANK_DB04062,none +15.8562362,DRUGBANK:DB04102,http://purl.obolibrary.org/obo/DRUGBANK_DB04102,none +15.8562362,DRUGBANK:DB04105,http://purl.obolibrary.org/obo/DRUGBANK_DB04105,none +15.8562362,DRUGBANK:DB04117,http://purl.obolibrary.org/obo/DRUGBANK_DB04117,none +15.8562362,DRUGBANK:DB04153,http://purl.obolibrary.org/obo/DRUGBANK_DB04153,none +15.8562362,DRUGBANK:DB04175,http://purl.obolibrary.org/obo/DRUGBANK_DB04175,none +15.8562362,DRUGBANK:DB04187,http://purl.obolibrary.org/obo/DRUGBANK_DB04187,none +15.8562362,DRUGBANK:DB04253,http://purl.obolibrary.org/obo/DRUGBANK_DB04253,none +15.8562362,DRUGBANK:DB04268,http://purl.obolibrary.org/obo/DRUGBANK_DB04268,none +15.8562362,DRUGBANK:DB04289,http://purl.obolibrary.org/obo/DRUGBANK_DB04289,none +15.8562362,DRUGBANK:DB04446,http://purl.obolibrary.org/obo/DRUGBANK_DB04446,none +15.8562362,DRUGBANK:DB04462,http://purl.obolibrary.org/obo/DRUGBANK_DB04462,none +15.8562362,DRUGBANK:DB04584,http://purl.obolibrary.org/obo/DRUGBANK_DB04584,none +15.8562362,DRUGBANK:DB04651,http://purl.obolibrary.org/obo/DRUGBANK_DB04651,none +15.8562362,DRUGBANK:DB04859,http://purl.obolibrary.org/obo/DRUGBANK_DB04859,none +15.8562362,DRUGBANK:DB04891,http://purl.obolibrary.org/obo/DRUGBANK_DB04891,none +15.8562362,DRUGBANK:DB04968,http://purl.obolibrary.org/obo/DRUGBANK_DB04968,none +15.8562362,DRUGBANK:DB04974,http://purl.obolibrary.org/obo/DRUGBANK_DB04974,none +15.8562362,DRUGBANK:DB04979,http://purl.obolibrary.org/obo/DRUGBANK_DB04979,none +15.8562362,DRUGBANK:DB04980,http://purl.obolibrary.org/obo/DRUGBANK_DB04980,none +15.8562362,DRUGBANK:DB04991,http://purl.obolibrary.org/obo/DRUGBANK_DB04991,none +15.8562362,DRUGBANK:DB04997,http://purl.obolibrary.org/obo/DRUGBANK_DB04997,none +15.8562362,DRUGBANK:DB05024,http://purl.obolibrary.org/obo/DRUGBANK_DB05024,none +15.8562362,DRUGBANK:DB05043,http://purl.obolibrary.org/obo/DRUGBANK_DB05043,none +15.8562362,DRUGBANK:DB05049,http://purl.obolibrary.org/obo/DRUGBANK_DB05049,none +15.8562362,DRUGBANK:DB05116,http://purl.obolibrary.org/obo/DRUGBANK_DB05116,none +15.8562362,DRUGBANK:DB05119,http://purl.obolibrary.org/obo/DRUGBANK_DB05119,none +15.8562362,DRUGBANK:DB05130,http://purl.obolibrary.org/obo/DRUGBANK_DB05130,none +15.8562362,DRUGBANK:DB05142,http://purl.obolibrary.org/obo/DRUGBANK_DB05142,none +15.8562362,DRUGBANK:DB05149,http://purl.obolibrary.org/obo/DRUGBANK_DB05149,none +15.8562362,DRUGBANK:DB05199,http://purl.obolibrary.org/obo/DRUGBANK_DB05199,none +15.8562362,DRUGBANK:DB05200,http://purl.obolibrary.org/obo/DRUGBANK_DB05200,none +15.8562362,DRUGBANK:DB05226,http://purl.obolibrary.org/obo/DRUGBANK_DB05226,none +15.8562362,DRUGBANK:DB05227,http://purl.obolibrary.org/obo/DRUGBANK_DB05227,none +15.8562362,DRUGBANK:DB05249,http://purl.obolibrary.org/obo/DRUGBANK_DB05249,none +15.8562362,DRUGBANK:DB05303,http://purl.obolibrary.org/obo/DRUGBANK_DB05303,none +15.8562362,DRUGBANK:DB05345,http://purl.obolibrary.org/obo/DRUGBANK_DB05345,none +15.8562362,DRUGBANK:DB05352,http://purl.obolibrary.org/obo/DRUGBANK_DB05352,none +15.8562362,DRUGBANK:DB05362,http://purl.obolibrary.org/obo/DRUGBANK_DB05362,none +15.8562362,DRUGBANK:DB05418,http://purl.obolibrary.org/obo/DRUGBANK_DB05418,none +15.8562362,DRUGBANK:DB05429,http://purl.obolibrary.org/obo/DRUGBANK_DB05429,none +15.8562362,DRUGBANK:DB05440,http://purl.obolibrary.org/obo/DRUGBANK_DB05440,none +15.8562362,DRUGBANK:DB05444,http://purl.obolibrary.org/obo/DRUGBANK_DB05444,none +15.8562362,DRUGBANK:DB05446,http://purl.obolibrary.org/obo/DRUGBANK_DB05446,none +15.8562362,DRUGBANK:DB05464,http://purl.obolibrary.org/obo/DRUGBANK_DB05464,none +15.8562362,DRUGBANK:DB05466,http://purl.obolibrary.org/obo/DRUGBANK_DB05466,none +15.8562362,DRUGBANK:DB05545,http://purl.obolibrary.org/obo/DRUGBANK_DB05545,none +15.8562362,DRUGBANK:DB05550,http://purl.obolibrary.org/obo/DRUGBANK_DB05550,none +15.8562362,DRUGBANK:DB05706,http://purl.obolibrary.org/obo/DRUGBANK_DB05706,none +15.8562362,DRUGBANK:DB05718,http://purl.obolibrary.org/obo/DRUGBANK_DB05718,none +15.8562362,DRUGBANK:DB05754,http://purl.obolibrary.org/obo/DRUGBANK_DB05754,none +15.8562362,DRUGBANK:DB05785,http://purl.obolibrary.org/obo/DRUGBANK_DB05785,none +15.8562362,DRUGBANK:DB05865,http://purl.obolibrary.org/obo/DRUGBANK_DB05865,none +15.8562362,DRUGBANK:DB05941,http://purl.obolibrary.org/obo/DRUGBANK_DB05941,none +15.8562362,DRUGBANK:DB05944,http://purl.obolibrary.org/obo/DRUGBANK_DB05944,none +15.8562362,DRUGBANK:DB05945,http://purl.obolibrary.org/obo/DRUGBANK_DB05945,none +15.8562362,DRUGBANK:DB06011,http://purl.obolibrary.org/obo/DRUGBANK_DB06011,none +15.8562362,DRUGBANK:DB06069,http://purl.obolibrary.org/obo/DRUGBANK_DB06069,none +15.8562362,DRUGBANK:DB06087,http://purl.obolibrary.org/obo/DRUGBANK_DB06087,none +15.8562362,DRUGBANK:DB06109,http://purl.obolibrary.org/obo/DRUGBANK_DB06109,none +15.8562362,DRUGBANK:DB06178,http://purl.obolibrary.org/obo/DRUGBANK_DB06178,none +15.8562362,DRUGBANK:DB06302,http://purl.obolibrary.org/obo/DRUGBANK_DB06302,none +15.8562362,DRUGBANK:DB06318,http://purl.obolibrary.org/obo/DRUGBANK_DB06318,none +15.8562362,DRUGBANK:DB06326,http://purl.obolibrary.org/obo/DRUGBANK_DB06326,none +15.8562362,DRUGBANK:DB06455,http://purl.obolibrary.org/obo/DRUGBANK_DB06455,none +15.8562362,DRUGBANK:DB06508,http://purl.obolibrary.org/obo/DRUGBANK_DB06508,none +15.8562362,DRUGBANK:DB06518,http://purl.obolibrary.org/obo/DRUGBANK_DB06518,none +15.8562362,DRUGBANK:DB06588,http://purl.obolibrary.org/obo/DRUGBANK_DB06588,none +15.8562362,DRUGBANK:DB06740,http://purl.obolibrary.org/obo/DRUGBANK_DB06740,none +15.8562362,DRUGBANK:DB06747,http://purl.obolibrary.org/obo/DRUGBANK_DB06747,none +15.8562362,DRUGBANK:DB06807,http://purl.obolibrary.org/obo/DRUGBANK_DB06807,none +15.8562362,DRUGBANK:DB07136,http://purl.obolibrary.org/obo/DRUGBANK_DB07136,none +15.8562362,DRUGBANK:DB07159,http://purl.obolibrary.org/obo/DRUGBANK_DB07159,none +15.8562362,DRUGBANK:DB07327,http://purl.obolibrary.org/obo/DRUGBANK_DB07327,none +15.8562362,DRUGBANK:DB07497,http://purl.obolibrary.org/obo/DRUGBANK_DB07497,none +15.8562362,DRUGBANK:DB07631,http://purl.obolibrary.org/obo/DRUGBANK_DB07631,none +15.8562362,DRUGBANK:DB07702,http://purl.obolibrary.org/obo/DRUGBANK_DB07702,none +15.8562362,DRUGBANK:DB07943,http://purl.obolibrary.org/obo/DRUGBANK_DB07943,none +15.8562362,DRUGBANK:DB08490,http://purl.obolibrary.org/obo/DRUGBANK_DB08490,none +15.8562362,DRUGBANK:DB08600,http://purl.obolibrary.org/obo/DRUGBANK_DB08600,none +15.8562362,DRUGBANK:DB08744,http://purl.obolibrary.org/obo/DRUGBANK_DB08744,none +15.8562362,DRUGBANK:DB08970,http://purl.obolibrary.org/obo/DRUGBANK_DB08970,none +15.8562362,DRUGBANK:DB09014,http://purl.obolibrary.org/obo/DRUGBANK_DB09014,none +15.8562362,DRUGBANK:DB09180,http://purl.obolibrary.org/obo/DRUGBANK_DB09180,none +15.8562362,DRUGBANK:DB09219,http://purl.obolibrary.org/obo/DRUGBANK_DB09219,none +15.8562362,DRUGBANK:DB09336,http://purl.obolibrary.org/obo/DRUGBANK_DB09336,none +15.8562362,DRUGBANK:DB09382,http://purl.obolibrary.org/obo/DRUGBANK_DB09382,none +15.8562362,DRUGBANK:DB09443,http://purl.obolibrary.org/obo/DRUGBANK_DB09443,none +15.8562362,DRUGBANK:DB09480,http://purl.obolibrary.org/obo/DRUGBANK_DB09480,none +15.8562362,DRUGBANK:DB10349,http://purl.obolibrary.org/obo/DRUGBANK_DB10349,none +15.8562362,DRUGBANK:DB10380,http://purl.obolibrary.org/obo/DRUGBANK_DB10380,none +15.8562362,DRUGBANK:DB10452,http://purl.obolibrary.org/obo/DRUGBANK_DB10452,none +15.8562362,DRUGBANK:DB10736,http://purl.obolibrary.org/obo/DRUGBANK_DB10736,none +15.8562362,DRUGBANK:DB10763,http://purl.obolibrary.org/obo/DRUGBANK_DB10763,none +15.8562362,DRUGBANK:DB10869,http://purl.obolibrary.org/obo/DRUGBANK_DB10869,none +15.8562362,DRUGBANK:DB10910,http://purl.obolibrary.org/obo/DRUGBANK_DB10910,none +15.8562362,DRUGBANK:DB11019,http://purl.obolibrary.org/obo/DRUGBANK_DB11019,none +15.8562362,DRUGBANK:DB11050,http://purl.obolibrary.org/obo/DRUGBANK_DB11050,none +15.8562362,DRUGBANK:DB11225,http://purl.obolibrary.org/obo/DRUGBANK_DB11225,none +15.8562362,DRUGBANK:DB11229,http://purl.obolibrary.org/obo/DRUGBANK_DB11229,none +15.8562362,DRUGBANK:DB11275,http://purl.obolibrary.org/obo/DRUGBANK_DB11275,none +15.8562362,DRUGBANK:DB11276,http://purl.obolibrary.org/obo/DRUGBANK_DB11276,none +15.8562362,DRUGBANK:DB11449,http://purl.obolibrary.org/obo/DRUGBANK_DB11449,none +15.8562362,DRUGBANK:DB11530,http://purl.obolibrary.org/obo/DRUGBANK_DB11530,none +15.8562362,DRUGBANK:DB11585,http://purl.obolibrary.org/obo/DRUGBANK_DB11585,none +15.8562362,DRUGBANK:DB11587,http://purl.obolibrary.org/obo/DRUGBANK_DB11587,none +15.8562362,DRUGBANK:DB11608,http://purl.obolibrary.org/obo/DRUGBANK_DB11608,none +15.8562362,DRUGBANK:DB11626,http://purl.obolibrary.org/obo/DRUGBANK_DB11626,none +15.8562362,DRUGBANK:DB11662,http://purl.obolibrary.org/obo/DRUGBANK_DB11662,none +15.8562362,DRUGBANK:DB11736,http://purl.obolibrary.org/obo/DRUGBANK_DB11736,none +15.8562362,DRUGBANK:DB11784,http://purl.obolibrary.org/obo/DRUGBANK_DB11784,none +15.8562362,DRUGBANK:DB11790,http://purl.obolibrary.org/obo/DRUGBANK_DB11790,none +15.8562362,DRUGBANK:DB11797,http://purl.obolibrary.org/obo/DRUGBANK_DB11797,none +15.8562362,DRUGBANK:DB11839,http://purl.obolibrary.org/obo/DRUGBANK_DB11839,none +15.8562362,DRUGBANK:DB11843,http://purl.obolibrary.org/obo/DRUGBANK_DB11843,none +15.8562362,DRUGBANK:DB11871,http://purl.obolibrary.org/obo/DRUGBANK_DB11871,none +15.8562362,DRUGBANK:DB11877,http://purl.obolibrary.org/obo/DRUGBANK_DB11877,none +15.8562362,DRUGBANK:DB11884,http://purl.obolibrary.org/obo/DRUGBANK_DB11884,none +15.8562362,DRUGBANK:DB11900,http://purl.obolibrary.org/obo/DRUGBANK_DB11900,none +15.8562362,DRUGBANK:DB11930,http://purl.obolibrary.org/obo/DRUGBANK_DB11930,none +15.8562362,DRUGBANK:DB11987,http://purl.obolibrary.org/obo/DRUGBANK_DB11987,none +15.8562362,DRUGBANK:DB11993,http://purl.obolibrary.org/obo/DRUGBANK_DB11993,none +15.8562362,DRUGBANK:DB12019,http://purl.obolibrary.org/obo/DRUGBANK_DB12019,none +15.8562362,DRUGBANK:DB12120,http://purl.obolibrary.org/obo/DRUGBANK_DB12120,none +15.8562362,DRUGBANK:DB12138,http://purl.obolibrary.org/obo/DRUGBANK_DB12138,none +15.8562362,DRUGBANK:DB12162,http://purl.obolibrary.org/obo/DRUGBANK_DB12162,none +15.8562362,DRUGBANK:DB12238,http://purl.obolibrary.org/obo/DRUGBANK_DB12238,none +15.8562362,DRUGBANK:DB12244,http://purl.obolibrary.org/obo/DRUGBANK_DB12244,none +15.8562362,DRUGBANK:DB12262,http://purl.obolibrary.org/obo/DRUGBANK_DB12262,none +15.8562362,DRUGBANK:DB12269,http://purl.obolibrary.org/obo/DRUGBANK_DB12269,none +15.8562362,DRUGBANK:DB12291,http://purl.obolibrary.org/obo/DRUGBANK_DB12291,none +15.8562362,DRUGBANK:DB12342,http://purl.obolibrary.org/obo/DRUGBANK_DB12342,none +15.8562362,DRUGBANK:DB12390,http://purl.obolibrary.org/obo/DRUGBANK_DB12390,none +15.8562362,DRUGBANK:DB12734,http://purl.obolibrary.org/obo/DRUGBANK_DB12734,none +15.8562362,DRUGBANK:DB12758,http://purl.obolibrary.org/obo/DRUGBANK_DB12758,none +15.8562362,DRUGBANK:DB12762,http://purl.obolibrary.org/obo/DRUGBANK_DB12762,none +15.8562362,DRUGBANK:DB12793,http://purl.obolibrary.org/obo/DRUGBANK_DB12793,none +15.8562362,DRUGBANK:DB12797,http://purl.obolibrary.org/obo/DRUGBANK_DB12797,none +15.8562362,DRUGBANK:DB12838,http://purl.obolibrary.org/obo/DRUGBANK_DB12838,none +15.8562362,DRUGBANK:DB12872,http://purl.obolibrary.org/obo/DRUGBANK_DB12872,none +15.8562362,DRUGBANK:DB12888,http://purl.obolibrary.org/obo/DRUGBANK_DB12888,none +15.8562362,DRUGBANK:DB12889,http://purl.obolibrary.org/obo/DRUGBANK_DB12889,none +15.8562362,DRUGBANK:DB12891,http://purl.obolibrary.org/obo/DRUGBANK_DB12891,none +15.8562362,DRUGBANK:DB12962,http://purl.obolibrary.org/obo/DRUGBANK_DB12962,none +15.8562362,DRUGBANK:DB12968,http://purl.obolibrary.org/obo/DRUGBANK_DB12968,none +15.8562362,DRUGBANK:DB12976,http://purl.obolibrary.org/obo/DRUGBANK_DB12976,none +15.8562362,DRUGBANK:DB12990,http://purl.obolibrary.org/obo/DRUGBANK_DB12990,none +15.8562362,DRUGBANK:DB12997,http://purl.obolibrary.org/obo/DRUGBANK_DB12997,none +15.8562362,DRUGBANK:DB13024,http://purl.obolibrary.org/obo/DRUGBANK_DB13024,none +15.8562362,DRUGBANK:DB13029,http://purl.obolibrary.org/obo/DRUGBANK_DB13029,none +15.8562362,DRUGBANK:DB13051,http://purl.obolibrary.org/obo/DRUGBANK_DB13051,none +15.8562362,DRUGBANK:DB13072,http://purl.obolibrary.org/obo/DRUGBANK_DB13072,none +15.8562362,DRUGBANK:DB13074,http://purl.obolibrary.org/obo/DRUGBANK_DB13074,none +15.8562362,DRUGBANK:DB13080,http://purl.obolibrary.org/obo/DRUGBANK_DB13080,none +15.8562362,DRUGBANK:DB13088,http://purl.obolibrary.org/obo/DRUGBANK_DB13088,none +15.8562362,DRUGBANK:DB13093,http://purl.obolibrary.org/obo/DRUGBANK_DB13093,none +15.8562362,DRUGBANK:DB13094,http://purl.obolibrary.org/obo/DRUGBANK_DB13094,none +15.8562362,DRUGBANK:DB13103,http://purl.obolibrary.org/obo/DRUGBANK_DB13103,none +15.8562362,DRUGBANK:DB13109,http://purl.obolibrary.org/obo/DRUGBANK_DB13109,none +15.8562362,DRUGBANK:DB13112,http://purl.obolibrary.org/obo/DRUGBANK_DB13112,none +15.8562362,DRUGBANK:DB13135,http://purl.obolibrary.org/obo/DRUGBANK_DB13135,none +15.8562362,DRUGBANK:DB13181,http://purl.obolibrary.org/obo/DRUGBANK_DB13181,none +15.8562362,DRUGBANK:DB13201,http://purl.obolibrary.org/obo/DRUGBANK_DB13201,none +15.8562362,DRUGBANK:DB13220,http://purl.obolibrary.org/obo/DRUGBANK_DB13220,none +15.8562362,DRUGBANK:DB13258,http://purl.obolibrary.org/obo/DRUGBANK_DB13258,none +15.8562362,DRUGBANK:DB13308,http://purl.obolibrary.org/obo/DRUGBANK_DB13308,none +15.8562362,DRUGBANK:DB13339,http://purl.obolibrary.org/obo/DRUGBANK_DB13339,none +15.8562362,DRUGBANK:DB13343,http://purl.obolibrary.org/obo/DRUGBANK_DB13343,none +15.8562362,DRUGBANK:DB13430,http://purl.obolibrary.org/obo/DRUGBANK_DB13430,none +15.8562362,DRUGBANK:DB13448,http://purl.obolibrary.org/obo/DRUGBANK_DB13448,none +15.8562362,DRUGBANK:DB13494,http://purl.obolibrary.org/obo/DRUGBANK_DB13494,none +15.8562362,DRUGBANK:DB13610,http://purl.obolibrary.org/obo/DRUGBANK_DB13610,none +15.8562362,DRUGBANK:DB13692,http://purl.obolibrary.org/obo/DRUGBANK_DB13692,none +15.8562362,DRUGBANK:DB13709,http://purl.obolibrary.org/obo/DRUGBANK_DB13709,none +15.8562362,DRUGBANK:DB13713,http://purl.obolibrary.org/obo/DRUGBANK_DB13713,none +15.8562362,DRUGBANK:DB13730,http://purl.obolibrary.org/obo/DRUGBANK_DB13730,none +15.8562362,DRUGBANK:DB13774,http://purl.obolibrary.org/obo/DRUGBANK_DB13774,none +15.8562362,DRUGBANK:DB13780,http://purl.obolibrary.org/obo/DRUGBANK_DB13780,none +15.8562362,DRUGBANK:DB13789,http://purl.obolibrary.org/obo/DRUGBANK_DB13789,none +15.8562362,DRUGBANK:DB13805,http://purl.obolibrary.org/obo/DRUGBANK_DB13805,none +15.8562362,DRUGBANK:DB13807,http://purl.obolibrary.org/obo/DRUGBANK_DB13807,none +15.8562362,DRUGBANK:DB13818,http://purl.obolibrary.org/obo/DRUGBANK_DB13818,none +15.8562362,DRUGBANK:DB13857,http://purl.obolibrary.org/obo/DRUGBANK_DB13857,none +15.8562362,DRUGBANK:DB13937,http://purl.obolibrary.org/obo/DRUGBANK_DB13937,none +15.8562362,DRUGBANK:DB13938,http://purl.obolibrary.org/obo/DRUGBANK_DB13938,none +15.8562362,DRUGBANK:DB13940,http://purl.obolibrary.org/obo/DRUGBANK_DB13940,none +15.8562362,DRUGBANK:DB13989,http://purl.obolibrary.org/obo/DRUGBANK_DB13989,none +15.8562362,DRUGBANK:DB13998,http://purl.obolibrary.org/obo/DRUGBANK_DB13998,none +15.8562362,DRUGBANK:DB14214,http://purl.obolibrary.org/obo/DRUGBANK_DB14214,none +15.8562362,DRUGBANK:DB14254,http://purl.obolibrary.org/obo/DRUGBANK_DB14254,none +15.8562362,DRUGBANK:DB14282,http://purl.obolibrary.org/obo/DRUGBANK_DB14282,none +15.8562362,DRUGBANK:DB14294,http://purl.obolibrary.org/obo/DRUGBANK_DB14294,none +15.8562362,DRUGBANK:DB14479,http://purl.obolibrary.org/obo/DRUGBANK_DB14479,none +15.8562362,DRUGBANK:DB14527,http://purl.obolibrary.org/obo/DRUGBANK_DB14527,none +15.8562362,DRUGBANK:DB14567,http://purl.obolibrary.org/obo/DRUGBANK_DB14567,none +15.8562362,DRUGBANK:DB14599,http://purl.obolibrary.org/obo/DRUGBANK_DB14599,none +15.8562362,DRUGBANK:DB14717,http://purl.obolibrary.org/obo/DRUGBANK_DB14717,none +15.8562362,DRUGBANK:DB14728,http://purl.obolibrary.org/obo/DRUGBANK_DB14728,none +15.8562362,DRUGBANK:DB14750,http://purl.obolibrary.org/obo/DRUGBANK_DB14750,none +15.8562362,DRUGBANK:DB14773,http://purl.obolibrary.org/obo/DRUGBANK_DB14773,none +15.8562362,DRUGBANK:DB14791,http://purl.obolibrary.org/obo/DRUGBANK_DB14791,none +15.8562362,DRUGBANK:DB14801,http://purl.obolibrary.org/obo/DRUGBANK_DB14801,none +15.8562362,DRUGBANK:DB14821,http://purl.obolibrary.org/obo/DRUGBANK_DB14821,none +15.8562362,DRUGBANK:DB14867,http://purl.obolibrary.org/obo/DRUGBANK_DB14867,none +15.8562362,DRUGBANK:DB14875,http://purl.obolibrary.org/obo/DRUGBANK_DB14875,none +15.8562362,DRUGBANK:DB14886,http://purl.obolibrary.org/obo/DRUGBANK_DB14886,none +15.8562362,DRUGBANK:DB14889,http://purl.obolibrary.org/obo/DRUGBANK_DB14889,none +15.8562362,DRUGBANK:DB14896,http://purl.obolibrary.org/obo/DRUGBANK_DB14896,none +15.8562362,DRUGBANK:DB14897,http://purl.obolibrary.org/obo/DRUGBANK_DB14897,none +15.8562362,DRUGBANK:DB14902,http://purl.obolibrary.org/obo/DRUGBANK_DB14902,none +15.8562362,DRUGBANK:DB14917,http://purl.obolibrary.org/obo/DRUGBANK_DB14917,none +15.8562362,DRUGBANK:DB14926,http://purl.obolibrary.org/obo/DRUGBANK_DB14926,none +15.8562362,DRUGBANK:DB14937,http://purl.obolibrary.org/obo/DRUGBANK_DB14937,none +15.8562362,DRUGBANK:DB14943,http://purl.obolibrary.org/obo/DRUGBANK_DB14943,none +15.8562362,DRUGBANK:DB14947,http://purl.obolibrary.org/obo/DRUGBANK_DB14947,none +15.8562362,DRUGBANK:DB14966,http://purl.obolibrary.org/obo/DRUGBANK_DB14966,none +15.8562362,DRUGBANK:DB14969,http://purl.obolibrary.org/obo/DRUGBANK_DB14969,none +15.8562362,DRUGBANK:DB14985,http://purl.obolibrary.org/obo/DRUGBANK_DB14985,none +15.8562362,DRUGBANK:DB15010,http://purl.obolibrary.org/obo/DRUGBANK_DB15010,none +15.8562362,DRUGBANK:DB15054,http://purl.obolibrary.org/obo/DRUGBANK_DB15054,none +15.8562362,DRUGBANK:DB15066,http://purl.obolibrary.org/obo/DRUGBANK_DB15066,none +15.8562362,DRUGBANK:DB15102,http://purl.obolibrary.org/obo/DRUGBANK_DB15102,none +15.8562362,DRUGBANK:DB15119,http://purl.obolibrary.org/obo/DRUGBANK_DB15119,none +15.8562362,DRUGBANK:DB15126,http://purl.obolibrary.org/obo/DRUGBANK_DB15126,none +15.8562362,DRUGBANK:DB15140,http://purl.obolibrary.org/obo/DRUGBANK_DB15140,none +15.8562362,DRUGBANK:DB15143,http://purl.obolibrary.org/obo/DRUGBANK_DB15143,none +15.8562362,DRUGBANK:DB15176,http://purl.obolibrary.org/obo/DRUGBANK_DB15176,none +15.8562362,DRUGBANK:DB15209,http://purl.obolibrary.org/obo/DRUGBANK_DB15209,none +15.8562362,DRUGBANK:DB15242,http://purl.obolibrary.org/obo/DRUGBANK_DB15242,none +15.8562362,DRUGBANK:DB15249,http://purl.obolibrary.org/obo/DRUGBANK_DB15249,none +15.8562362,DRUGBANK:DB15256,http://purl.obolibrary.org/obo/DRUGBANK_DB15256,none +15.8562362,DRUGBANK:DB15260,http://purl.obolibrary.org/obo/DRUGBANK_DB15260,none +15.8562362,DRUGBANK:DB15283,http://purl.obolibrary.org/obo/DRUGBANK_DB15283,none +15.8562362,DRUGBANK:DB15290,http://purl.obolibrary.org/obo/DRUGBANK_DB15290,none +15.8562362,DRUGBANK:DB15291,http://purl.obolibrary.org/obo/DRUGBANK_DB15291,none +15.8562362,DRUGBANK:DB15294,http://purl.obolibrary.org/obo/DRUGBANK_DB15294,none +15.8562362,DRUGBANK:DB15298,http://purl.obolibrary.org/obo/DRUGBANK_DB15298,none +15.8562362,DRUGBANK:DB15310,http://purl.obolibrary.org/obo/DRUGBANK_DB15310,none +15.8562362,DRUGBANK:DB15319,http://purl.obolibrary.org/obo/DRUGBANK_DB15319,none +15.8562362,DRUGBANK:DB15327,http://purl.obolibrary.org/obo/DRUGBANK_DB15327,none +15.8562362,DRUGBANK:DB15355,http://purl.obolibrary.org/obo/DRUGBANK_DB15355,none +15.8562362,DRUGBANK:DB15365,http://purl.obolibrary.org/obo/DRUGBANK_DB15365,none +15.8562362,DRUGBANK:DB15366,http://purl.obolibrary.org/obo/DRUGBANK_DB15366,none +15.8562362,DRUGBANK:DB15375,http://purl.obolibrary.org/obo/DRUGBANK_DB15375,none +15.8562362,DRUGBANK:DB15406,http://purl.obolibrary.org/obo/DRUGBANK_DB15406,none +15.8562362,DRUGBANK:DB15418,http://purl.obolibrary.org/obo/DRUGBANK_DB15418,none +15.8562362,DRUGBANK:DB15425,http://purl.obolibrary.org/obo/DRUGBANK_DB15425,none +15.8562362,DRUGBANK:DB15450,http://purl.obolibrary.org/obo/DRUGBANK_DB15450,none +15.8562362,DRUGBANK:DB15463,http://purl.obolibrary.org/obo/DRUGBANK_DB15463,none +15.8562362,DRUGBANK:DB15471,http://purl.obolibrary.org/obo/DRUGBANK_DB15471,none +15.8562362,DRUGBANK:DB15496,http://purl.obolibrary.org/obo/DRUGBANK_DB15496,none +15.8562362,DRUGBANK:DB15555,http://purl.obolibrary.org/obo/DRUGBANK_DB15555,none +15.8562362,DRUGBANK:DB15609,http://purl.obolibrary.org/obo/DRUGBANK_DB15609,none +15.8562362,DRUGBANK:DB15623,http://purl.obolibrary.org/obo/DRUGBANK_DB15623,none +15.8562362,DRUGBANK:DB15635,http://purl.obolibrary.org/obo/DRUGBANK_DB15635,none +15.8562362,DRUGBANK:DB15637,http://purl.obolibrary.org/obo/DRUGBANK_DB15637,none +15.8562362,DRUGBANK:DB15650,http://purl.obolibrary.org/obo/DRUGBANK_DB15650,none +15.8562362,DRUGBANK:DB15679,http://purl.obolibrary.org/obo/DRUGBANK_DB15679,none +15.8562362,DRUGBANK:DB15785,http://purl.obolibrary.org/obo/DRUGBANK_DB15785,none +15.8562362,DRUGBANK:DB15790,http://purl.obolibrary.org/obo/DRUGBANK_DB15790,none +15.8562362,DRUGBANK:DB15872,http://purl.obolibrary.org/obo/DRUGBANK_DB15872,none +15.8562362,DRUGBANK:DB15950,http://purl.obolibrary.org/obo/DRUGBANK_DB15950,none +15.8562362,DRUGBANK:DB16009,http://purl.obolibrary.org/obo/DRUGBANK_DB16009,none +15.8562362,DRUGBANK:DB16025,http://purl.obolibrary.org/obo/DRUGBANK_DB16025,none +15.8562362,DRUGBANK:DB16033,http://purl.obolibrary.org/obo/DRUGBANK_DB16033,none +15.8562362,DRUGBANK:DB16048,http://purl.obolibrary.org/obo/DRUGBANK_DB16048,none +15.8562362,DRUGBANK:DB16054,http://purl.obolibrary.org/obo/DRUGBANK_DB16054,none +15.8562362,DRUGBANK:DB16070,http://purl.obolibrary.org/obo/DRUGBANK_DB16070,none +15.8562362,DRUGBANK:DB16076,http://purl.obolibrary.org/obo/DRUGBANK_DB16076,none +15.8562362,DRUGBANK:DB16094,http://purl.obolibrary.org/obo/DRUGBANK_DB16094,none +15.8562362,DRUGBANK:DB16135,http://purl.obolibrary.org/obo/DRUGBANK_DB16135,none +15.8562362,DRUGBANK:DB16153,http://purl.obolibrary.org/obo/DRUGBANK_DB16153,none +15.8562362,DRUGBANK:DB16157,http://purl.obolibrary.org/obo/DRUGBANK_DB16157,none +15.8562362,DRUGBANK:DB16163,http://purl.obolibrary.org/obo/DRUGBANK_DB16163,none +15.8562362,DRUGBANK:DB16167,http://purl.obolibrary.org/obo/DRUGBANK_DB16167,none +15.8562362,DRUGBANK:DB16170,http://purl.obolibrary.org/obo/DRUGBANK_DB16170,none +15.8562362,DRUGBANK:DB16211,http://purl.obolibrary.org/obo/DRUGBANK_DB16211,none +15.8562362,DRUGBANK:DB16212,http://purl.obolibrary.org/obo/DRUGBANK_DB16212,none +15.8562362,DRUGBANK:DB16226,http://purl.obolibrary.org/obo/DRUGBANK_DB16226,none +15.8562362,DRUGBANK:DB16241,http://purl.obolibrary.org/obo/DRUGBANK_DB16241,none +15.8562362,DRUGBANK:DB16242,http://purl.obolibrary.org/obo/DRUGBANK_DB16242,none +15.8562362,DRUGBANK:DB16273,http://purl.obolibrary.org/obo/DRUGBANK_DB16273,none +15.8562362,DRUGBANK:DB16280,http://purl.obolibrary.org/obo/DRUGBANK_DB16280,none +15.8562362,DRUGBANK:DB16282,http://purl.obolibrary.org/obo/DRUGBANK_DB16282,none +15.8562362,DRUGBANK:DB16300,http://purl.obolibrary.org/obo/DRUGBANK_DB16300,none +15.8562362,DRUGBANK:DB16418,http://purl.obolibrary.org/obo/DRUGBANK_DB16418,none +15.8562362,GO:0000015,http://purl.obolibrary.org/obo/GO_0000015,phosphopyruvate hydratase complex +15.8562362,GO:0000215,http://purl.obolibrary.org/obo/GO_0000215,tRNA 2'-phosphotransferase activity +15.8562362,GO:0000246,http://purl.obolibrary.org/obo/GO_0000246,delta24(24-1) sterol reductase activity +15.8562362,GO:0000248,http://purl.obolibrary.org/obo/GO_0000248,C-5 sterol desaturase activity +15.8562362,GO:0000387,http://purl.obolibrary.org/obo/GO_0000387,spliceosomal snRNP assembly +15.8562362,GO:0000823,http://purl.obolibrary.org/obo/GO_0000823,"inositol-1,4,5-trisphosphate 6-kinase activity" +15.8562362,GO:0001512,http://purl.obolibrary.org/obo/GO_0001512,dihydronicotinamide riboside quinone reductase activity +15.8562362,GO:0001572,http://purl.obolibrary.org/obo/GO_0001572,lactosylceramide biosynthetic process +15.8562362,GO:0001579,http://purl.obolibrary.org/obo/GO_0001579,medium-chain fatty acid transport +15.8562362,GO:0001673,http://purl.obolibrary.org/obo/GO_0001673,male germ cell nucleus +15.8562362,GO:0001702,http://purl.obolibrary.org/obo/GO_0001702,gastrulation with mouth forming second +15.8562362,GO:0001731,http://purl.obolibrary.org/obo/GO_0001731,formation of translation preinitiation complex +15.8562362,GO:0001734,http://purl.obolibrary.org/obo/GO_0001734,mRNA (N6-adenosine)-methyltransferase activity +15.8562362,GO:0001757,http://purl.obolibrary.org/obo/GO_0001757,somite specification +15.8562362,GO:0001857,http://purl.obolibrary.org/obo/GO_0001857,complement component C1q receptor activity +15.8562362,GO:0001874,http://purl.obolibrary.org/obo/GO_0001874,(1->3)-beta-D-glucan immune receptor activity +15.8562362,GO:0001912,http://purl.obolibrary.org/obo/GO_0001912,positive regulation of leukocyte mediated cytotoxicity +15.8562362,GO:0001922,http://purl.obolibrary.org/obo/GO_0001922,B-1 B cell homeostasis +15.8562362,GO:0001923,http://purl.obolibrary.org/obo/GO_0001923,B-1 B cell differentiation +15.8562362,GO:0002036,http://purl.obolibrary.org/obo/GO_0002036,regulation of L-glutamate import across plasma membrane +15.8562362,GO:0002087,http://purl.obolibrary.org/obo/GO_0002087,regulation of respiratory gaseous exchange by nervous system process +15.8562362,GO:0002121,http://purl.obolibrary.org/obo/GO_0002121,inter-male aggressive behavior +15.8562362,GO:0002177,http://purl.obolibrary.org/obo/GO_0002177,manchette +15.8562362,GO:0002239,http://purl.obolibrary.org/obo/GO_0002239,response to oomycetes +15.8562362,GO:0002241,http://purl.obolibrary.org/obo/GO_0002241,response to parasitic plant +15.8562362,GO:0002579,http://purl.obolibrary.org/obo/GO_0002579,positive regulation of antigen processing and presentation +15.8562362,GO:0002632,http://purl.obolibrary.org/obo/GO_0002632,negative regulation of granuloma formation +15.8562362,GO:0002711,http://purl.obolibrary.org/obo/GO_0002711,positive regulation of T cell mediated immunity +15.8562362,GO:0002782,http://purl.obolibrary.org/obo/GO_0002782,antifungal peptide secretion +15.8562362,GO:0002818,http://purl.obolibrary.org/obo/GO_0002818,none +15.8562362,GO:0003180,http://purl.obolibrary.org/obo/GO_0003180,aortic valve morphogenesis +15.8562362,GO:0003279,http://purl.obolibrary.org/obo/GO_0003279,cardiac septum development +15.8562362,GO:0003310,http://purl.obolibrary.org/obo/GO_0003310,pancreatic A cell differentiation +15.8562362,GO:0003348,http://purl.obolibrary.org/obo/GO_0003348,cardiac endothelial cell differentiation +15.8562362,GO:0003351,http://purl.obolibrary.org/obo/GO_0003351,epithelial cilium movement involved in extracellular fluid movement +15.8562362,GO:0003356,http://purl.obolibrary.org/obo/GO_0003356,regulation of cilium beat frequency +15.8562362,GO:0003743,http://purl.obolibrary.org/obo/GO_0003743,translation initiation factor activity +15.8562362,GO:0003842,http://purl.obolibrary.org/obo/GO_0003842,1-pyrroline-5-carboxylate dehydrogenase activity +15.8562362,GO:0003847,http://purl.obolibrary.org/obo/GO_0003847,1-alkyl-2-acetylglycerophosphocholine esterase activity +15.8562362,GO:0003877,http://purl.obolibrary.org/obo/GO_0003877,ATP adenylyltransferase activity +15.8562362,GO:0003949,http://purl.obolibrary.org/obo/GO_0003949,1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity +15.8562362,GO:0004042,http://purl.obolibrary.org/obo/GO_0004042,acetyl-CoA:L-glutamate N-acetyltransferase activity +15.8562362,GO:0004162,http://purl.obolibrary.org/obo/GO_0004162,dimethylnitrosamine demethylase activity +15.8562362,GO:0004555,http://purl.obolibrary.org/obo/GO_0004555,"alpha,alpha-trehalase activity" +15.8562362,GO:0004597,http://purl.obolibrary.org/obo/GO_0004597,none +15.8562362,GO:0004610,http://purl.obolibrary.org/obo/GO_0004610,phosphoacetylglucosamine mutase activity +15.8562362,GO:0004632,http://purl.obolibrary.org/obo/GO_0004632,phosphopantothenate--cysteine ligase activity +15.8562362,GO:0005005,http://purl.obolibrary.org/obo/GO_0005005,transmembrane-ephrin receptor activity +15.8562362,GO:0005363,http://purl.obolibrary.org/obo/GO_0005363,maltose transmembrane transporter activity +15.8562362,GO:0005897,http://purl.obolibrary.org/obo/GO_0005897,interleukin-9 receptor complex +15.8562362,GO:0005914,http://purl.obolibrary.org/obo/GO_0005914,spot adherens junction +15.8562362,GO:0005931,http://purl.obolibrary.org/obo/GO_0005931,axonemal nexin link +15.8562362,GO:0005956,http://purl.obolibrary.org/obo/GO_0005956,protein kinase CK2 complex +15.8562362,GO:0006033,http://purl.obolibrary.org/obo/GO_0006033,chitin localization +15.8562362,GO:0006065,http://purl.obolibrary.org/obo/GO_0006065,UDP-glucuronate biosynthetic process +15.8562362,GO:0006244,http://purl.obolibrary.org/obo/GO_0006244,pyrimidine nucleotide catabolic process +15.8562362,GO:0006367,http://purl.obolibrary.org/obo/GO_0006367,transcription initiation from RNA polymerase II promoter +15.8562362,GO:0006384,http://purl.obolibrary.org/obo/GO_0006384,transcription initiation from RNA polymerase III promoter +15.8562362,GO:0006477,http://purl.obolibrary.org/obo/GO_0006477,protein sulfation +15.8562362,GO:0006585,http://purl.obolibrary.org/obo/GO_0006585,dopamine biosynthetic process from tyrosine +15.8562362,GO:0006604,http://purl.obolibrary.org/obo/GO_0006604,phosphoarginine metabolic process +15.8562362,GO:0006689,http://purl.obolibrary.org/obo/GO_0006689,ganglioside catabolic process +15.8562362,GO:0006761,http://purl.obolibrary.org/obo/GO_0006761,dihydrofolate biosynthetic process +15.8562362,GO:0006844,http://purl.obolibrary.org/obo/GO_0006844,acyl carnitine transport +15.8562362,GO:0007131,http://purl.obolibrary.org/obo/GO_0007131,reciprocal meiotic recombination +15.8562362,GO:0008024,http://purl.obolibrary.org/obo/GO_0008024,cyclin/CDK positive transcription elongation factor complex +15.8562362,GO:0008110,http://purl.obolibrary.org/obo/GO_0008110,L-histidine:2-oxoglutarate aminotransferase activity +15.8562362,GO:0008499,http://purl.obolibrary.org/obo/GO_0008499,"UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase activity" +15.8562362,GO:0008671,http://purl.obolibrary.org/obo/GO_0008671,2-dehydro-3-deoxygalactonokinase activity +15.8562362,GO:0008675,http://purl.obolibrary.org/obo/GO_0008675,2-dehydro-3-deoxy-phosphogluconate aldolase activity +15.8562362,GO:0008694,http://purl.obolibrary.org/obo/GO_0008694,3-octaprenyl-4-hydroxybenzoate carboxy-lyase activity +15.8562362,GO:0008725,http://purl.obolibrary.org/obo/GO_0008725,DNA-3-methyladenine glycosylase activity +15.8562362,GO:0008748,http://purl.obolibrary.org/obo/GO_0008748,N-ethylmaleimide reductase activity +15.8562362,GO:0008786,http://purl.obolibrary.org/obo/GO_0008786,allose 6-phosphate isomerase activity +15.8562362,GO:0008787,http://purl.obolibrary.org/obo/GO_0008787,allose kinase activity +15.8562362,GO:0008825,http://purl.obolibrary.org/obo/GO_0008825,cyclopropane-fatty-acyl-phospholipid synthase activity +15.8562362,GO:0008831,http://purl.obolibrary.org/obo/GO_0008831,dTDP-4-dehydrorhamnose reductase activity +15.8562362,GO:0008884,http://purl.obolibrary.org/obo/GO_0008884,glutathionylspermidine amidase activity +15.8562362,GO:0008894,http://purl.obolibrary.org/obo/GO_0008894,"guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity" +15.8562362,GO:0008912,http://purl.obolibrary.org/obo/GO_0008912,lactaldehyde reductase activity +15.8562362,GO:0008919,http://purl.obolibrary.org/obo/GO_0008919,lipopolysaccharide glucosyltransferase I activity +15.8562362,GO:0008920,http://purl.obolibrary.org/obo/GO_0008920,lipopolysaccharide heptosyltransferase activity +15.8562362,GO:0008938,http://purl.obolibrary.org/obo/GO_0008938,nicotinate N-methyltransferase activity +15.8562362,GO:0008997,http://purl.obolibrary.org/obo/GO_0008997,ribonuclease R activity +15.8562362,GO:0009216,http://purl.obolibrary.org/obo/GO_0009216,purine deoxyribonucleoside triphosphate biosynthetic process +15.8562362,GO:0009360,http://purl.obolibrary.org/obo/GO_0009360,DNA polymerase III complex +15.8562362,GO:0009398,http://purl.obolibrary.org/obo/GO_0009398,FMN biosynthetic process +15.8562362,GO:0009454,http://purl.obolibrary.org/obo/GO_0009454,aerotaxis +15.8562362,GO:0009507,http://purl.obolibrary.org/obo/GO_0009507,chloroplast +15.8562362,GO:0009509,http://purl.obolibrary.org/obo/GO_0009509,chromoplast +15.8562362,GO:0009705,http://purl.obolibrary.org/obo/GO_0009705,plant-type vacuole membrane +15.8562362,GO:0009708,http://purl.obolibrary.org/obo/GO_0009708,benzyl isoquinoline alkaloid biosynthetic process +15.8562362,GO:0009745,http://purl.obolibrary.org/obo/GO_0009745,sucrose mediated signaling +15.8562362,GO:0009747,http://purl.obolibrary.org/obo/GO_0009747,hexokinase-dependent signaling +15.8562362,GO:0009761,http://purl.obolibrary.org/obo/GO_0009761,CAM photosynthesis +15.8562362,GO:0009823,http://purl.obolibrary.org/obo/GO_0009823,cytokinin catabolic process +15.8562362,GO:0010031,http://purl.obolibrary.org/obo/GO_0010031,circumnutation +15.8562362,GO:0010124,http://purl.obolibrary.org/obo/GO_0010124,phenylacetate catabolic process +15.8562362,GO:0010147,http://purl.obolibrary.org/obo/GO_0010147,fructan catabolic process +15.8562362,GO:0010169,http://purl.obolibrary.org/obo/GO_0010169,thioglucosidase complex +15.8562362,GO:0010255,http://purl.obolibrary.org/obo/GO_0010255,glucose mediated signaling pathway +15.8562362,GO:0010288,http://purl.obolibrary.org/obo/GO_0010288,response to lead ion +15.8562362,GO:0010342,http://purl.obolibrary.org/obo/GO_0010342,endosperm cellularization +15.8562362,GO:0010356,http://purl.obolibrary.org/obo/GO_0010356,homogentisate geranylgeranyltransferase activity +15.8562362,GO:0010374,http://purl.obolibrary.org/obo/GO_0010374,stomatal complex development +15.8562362,GO:0010442,http://purl.obolibrary.org/obo/GO_0010442,guard cell morphogenesis +15.8562362,GO:0010561,http://purl.obolibrary.org/obo/GO_0010561,negative regulation of glycoprotein biosynthetic process +15.8562362,GO:0010618,http://purl.obolibrary.org/obo/GO_0010618,aerenchyma formation +15.8562362,GO:0010668,http://purl.obolibrary.org/obo/GO_0010668,ectodermal cell differentiation +15.8562362,GO:0010714,http://purl.obolibrary.org/obo/GO_0010714,positive regulation of collagen metabolic process +15.8562362,GO:0010758,http://purl.obolibrary.org/obo/GO_0010758,regulation of macrophage chemotaxis +15.8562362,GO:0010766,http://purl.obolibrary.org/obo/GO_0010766,negative regulation of sodium ion transport +15.8562362,GO:0010795,http://purl.obolibrary.org/obo/GO_0010795,regulation of ubiquinone biosynthetic process +15.8562362,GO:0010804,http://purl.obolibrary.org/obo/GO_0010804,negative regulation of tumor necrosis factor-mediated signaling pathway +15.8562362,GO:0010807,http://purl.obolibrary.org/obo/GO_0010807,regulation of synaptic vesicle priming +15.8562362,GO:0010922,http://purl.obolibrary.org/obo/GO_0010922,positive regulation of phosphatase activity +15.8562362,GO:0010960,http://purl.obolibrary.org/obo/GO_0010960,magnesium ion homeostasis +15.8562362,GO:0010963,http://purl.obolibrary.org/obo/GO_0010963,none +15.8562362,GO:0014036,http://purl.obolibrary.org/obo/GO_0014036,neural crest cell fate specification +15.8562362,GO:0014062,http://purl.obolibrary.org/obo/GO_0014062,regulation of serotonin secretion +15.8562362,GO:0014719,http://purl.obolibrary.org/obo/GO_0014719,skeletal muscle satellite cell activation +15.8562362,GO:0014805,http://purl.obolibrary.org/obo/GO_0014805,smooth muscle adaptation +15.8562362,GO:0014865,http://purl.obolibrary.org/obo/GO_0014865,detection of activity +15.8562362,GO:0015101,http://purl.obolibrary.org/obo/GO_0015101,organic cation transmembrane transporter activity +15.8562362,GO:0015422,http://purl.obolibrary.org/obo/GO_0015422,ABC-type oligosaccharide transporter activity +15.8562362,GO:0015423,http://purl.obolibrary.org/obo/GO_0015423,ABC-type maltose transporter activity +15.8562362,GO:0015633,http://purl.obolibrary.org/obo/GO_0015633,ABC-type zinc transporter activity +15.8562362,GO:0015635,http://purl.obolibrary.org/obo/GO_0015635,none +15.8562362,GO:0015704,http://purl.obolibrary.org/obo/GO_0015704,cyanate transport +15.8562362,GO:0015728,http://purl.obolibrary.org/obo/GO_0015728,mevalonate transport +15.8562362,GO:0015745,http://purl.obolibrary.org/obo/GO_0015745,tartrate transmembrane transport +15.8562362,GO:0015796,http://purl.obolibrary.org/obo/GO_0015796,galactitol transport +15.8562362,GO:0016139,http://purl.obolibrary.org/obo/GO_0016139,glycoside catabolic process +15.8562362,GO:0016203,http://purl.obolibrary.org/obo/GO_0016203,muscle attachment +15.8562362,GO:0016696,http://purl.obolibrary.org/obo/GO_0016696,"oxidoreductase activity, acting on hydrogen as donor, NAD or NADP as acceptor" +15.8562362,GO:0016807,http://purl.obolibrary.org/obo/GO_0016807,cysteine-type carboxypeptidase activity +15.8562362,GO:0016939,http://purl.obolibrary.org/obo/GO_0016939,kinesin II complex +15.8562362,GO:0016989,http://purl.obolibrary.org/obo/GO_0016989,sigma factor antagonist activity +15.8562362,GO:0016993,http://purl.obolibrary.org/obo/GO_0016993,precorrin-8X methylmutase activity +15.8562362,GO:0017051,http://purl.obolibrary.org/obo/GO_0017051,retinol dehydratase activity +15.8562362,GO:0017059,http://purl.obolibrary.org/obo/GO_0017059,serine C-palmitoyltransferase complex +15.8562362,GO:0018631,http://purl.obolibrary.org/obo/GO_0018631,phenylacetate hydroxylase activity +15.8562362,GO:0018667,http://purl.obolibrary.org/obo/GO_0018667,cyclohexanone monooxygenase activity +15.8562362,GO:0018672,http://purl.obolibrary.org/obo/GO_0018672,anthranilate 3-monooxygenase (deaminating) activity +15.8562362,GO:0018678,http://purl.obolibrary.org/obo/GO_0018678,4-hydroxybenzoate 1-hydroxylase activity +15.8562362,GO:0018740,http://purl.obolibrary.org/obo/GO_0018740,2'-hydroxybiphenyl-2-sulfinate desulfinase activity +15.8562362,GO:0018745,http://purl.obolibrary.org/obo/GO_0018745,epoxide hydrolase A activity +15.8562362,GO:0018761,http://purl.obolibrary.org/obo/GO_0018761,bromoxynil nitrilase activity +15.8562362,GO:0018784,http://purl.obolibrary.org/obo/GO_0018784,(S)-2-haloacid dehalogenase activity +15.8562362,GO:0018796,http://purl.obolibrary.org/obo/GO_0018796,"4,5-dihydroxyphthalate decarboxylase activity" +15.8562362,GO:0018834,http://purl.obolibrary.org/obo/GO_0018834,dichloromethane dehalogenase activity +15.8562362,GO:0018859,http://purl.obolibrary.org/obo/GO_0018859,4-hydroxybenzoate-CoA ligase activity +15.8562362,GO:0018867,http://purl.obolibrary.org/obo/GO_0018867,alpha-pinene metabolic process +15.8562362,GO:0018895,http://purl.obolibrary.org/obo/GO_0018895,dibenzothiophene metabolic process +15.8562362,GO:0018913,http://purl.obolibrary.org/obo/GO_0018913,anaerobic ethylbenzene metabolic process +15.8562362,GO:0019093,http://purl.obolibrary.org/obo/GO_0019093,mitochondrial RNA localization +15.8562362,GO:0019115,http://purl.obolibrary.org/obo/GO_0019115,benzaldehyde dehydrogenase [NAD(P)+] activity +15.8562362,GO:0019186,http://purl.obolibrary.org/obo/GO_0019186,acyl-CoA N-acyltransferase activity +15.8562362,GO:0019301,http://purl.obolibrary.org/obo/GO_0019301,rhamnose catabolic process +15.8562362,GO:0019349,http://purl.obolibrary.org/obo/GO_0019349,ribitol metabolic process +15.8562362,GO:0019386,http://purl.obolibrary.org/obo/GO_0019386,"methanogenesis, from carbon dioxide" +15.8562362,GO:0019390,http://purl.obolibrary.org/obo/GO_0019390,glucuronoside biosynthetic process +15.8562362,GO:0019394,http://purl.obolibrary.org/obo/GO_0019394,glucarate catabolic process +15.8562362,GO:0019402,http://purl.obolibrary.org/obo/GO_0019402,galactitol metabolic process +15.8562362,GO:0019471,http://purl.obolibrary.org/obo/GO_0019471,4-hydroxyproline metabolic process +15.8562362,GO:0019521,http://purl.obolibrary.org/obo/GO_0019521,D-gluconate metabolic process +15.8562362,GO:0019583,http://purl.obolibrary.org/obo/GO_0019583,galactonate metabolic process +15.8562362,GO:0019684,http://purl.obolibrary.org/obo/GO_0019684,"photosynthesis, light reaction" +15.8562362,GO:0019775,http://purl.obolibrary.org/obo/GO_0019775,FAT10 transferase activity +15.8562362,GO:0020008,http://purl.obolibrary.org/obo/GO_0020008,rhoptry +15.8562362,GO:0021515,http://purl.obolibrary.org/obo/GO_0021515,cell differentiation in spinal cord +15.8562362,GO:0021534,http://purl.obolibrary.org/obo/GO_0021534,cell proliferation in hindbrain +15.8562362,GO:0021554,http://purl.obolibrary.org/obo/GO_0021554,optic nerve development +15.8562362,GO:0021575,http://purl.obolibrary.org/obo/GO_0021575,hindbrain morphogenesis +15.8562362,GO:0021603,http://purl.obolibrary.org/obo/GO_0021603,cranial nerve formation +15.8562362,GO:0021628,http://purl.obolibrary.org/obo/GO_0021628,olfactory nerve formation +15.8562362,GO:0021632,http://purl.obolibrary.org/obo/GO_0021632,optic nerve maturation +15.8562362,GO:0021699,http://purl.obolibrary.org/obo/GO_0021699,cerebellar cortex maturation +15.8562362,GO:0021891,http://purl.obolibrary.org/obo/GO_0021891,olfactory bulb interneuron development +15.8562362,GO:0021895,http://purl.obolibrary.org/obo/GO_0021895,cerebral cortex neuron differentiation +15.8562362,GO:0021924,http://purl.obolibrary.org/obo/GO_0021924,cell proliferation in external granule layer +15.8562362,GO:0021930,http://purl.obolibrary.org/obo/GO_0021930,cerebellar granule cell precursor proliferation +15.8562362,GO:0022012,http://purl.obolibrary.org/obo/GO_0022012,subpallium cell proliferation in forebrain +15.8562362,GO:0022022,http://purl.obolibrary.org/obo/GO_0022022,septal cell proliferation +15.8562362,GO:0022855,http://purl.obolibrary.org/obo/GO_0022855,protein-N(PI)-phosphohistidine-glucose phosphotransferase system transporter activity +15.8562362,GO:0030058,http://purl.obolibrary.org/obo/GO_0030058,amine dehydrogenase activity +15.8562362,GO:0030125,http://purl.obolibrary.org/obo/GO_0030125,clathrin vesicle coat +15.8562362,GO:0030177,http://purl.obolibrary.org/obo/GO_0030177,positive regulation of Wnt signaling pathway +15.8562362,GO:0030302,http://purl.obolibrary.org/obo/GO_0030302,deoxynucleotide transport +15.8562362,GO:0030323,http://purl.obolibrary.org/obo/GO_0030323,respiratory tube development +15.8562362,GO:0030369,http://purl.obolibrary.org/obo/GO_0030369,ICAM-3 receptor activity +15.8562362,GO:0030388,http://purl.obolibrary.org/obo/GO_0030388,"fructose 1,6-bisphosphate metabolic process" +15.8562362,GO:0030417,http://purl.obolibrary.org/obo/GO_0030417,nicotianamine metabolic process +15.8562362,GO:0030665,http://purl.obolibrary.org/obo/GO_0030665,clathrin-coated vesicle membrane +15.8562362,GO:0030739,http://purl.obolibrary.org/obo/GO_0030739,O-demethylpuromycin O-methyltransferase activity +15.8562362,GO:0030754,http://purl.obolibrary.org/obo/GO_0030754,apigenin 4'-O-methyltransferase activity +15.8562362,GO:0030777,http://purl.obolibrary.org/obo/GO_0030777,(S)-scoulerine 9-O-methyltransferase activity +15.8562362,GO:0030876,http://purl.obolibrary.org/obo/GO_0030876,interleukin-20 receptor complex +15.8562362,GO:0030889,http://purl.obolibrary.org/obo/GO_0030889,negative regulation of B cell proliferation +15.8562362,GO:0031021,http://purl.obolibrary.org/obo/GO_0031021,interphase microtubule organizing center +15.8562362,GO:0031061,http://purl.obolibrary.org/obo/GO_0031061,negative regulation of histone methylation +15.8562362,GO:0031062,http://purl.obolibrary.org/obo/GO_0031062,positive regulation of histone methylation +15.8562362,GO:0031093,http://purl.obolibrary.org/obo/GO_0031093,platelet alpha granule lumen +15.8562362,GO:0031133,http://purl.obolibrary.org/obo/GO_0031133,regulation of axon diameter +15.8562362,GO:0031207,http://purl.obolibrary.org/obo/GO_0031207,Sec62/Sec63 complex +15.8562362,GO:0031211,http://purl.obolibrary.org/obo/GO_0031211,endoplasmic reticulum palmitoyltransferase complex +15.8562362,GO:0031257,http://purl.obolibrary.org/obo/GO_0031257,cell trailing edge membrane +15.8562362,GO:0031259,http://purl.obolibrary.org/obo/GO_0031259,uropod membrane +15.8562362,GO:0031268,http://purl.obolibrary.org/obo/GO_0031268,pseudopodium organization +15.8562362,GO:0031269,http://purl.obolibrary.org/obo/GO_0031269,pseudopodium assembly +15.8562362,GO:0031343,http://purl.obolibrary.org/obo/GO_0031343,positive regulation of cell killing +15.8562362,GO:0031428,http://purl.obolibrary.org/obo/GO_0031428,box C/D RNP complex +15.8562362,GO:0031465,http://purl.obolibrary.org/obo/GO_0031465,Cul4B-RING E3 ubiquitin ligase complex +15.8562362,GO:0031616,http://purl.obolibrary.org/obo/GO_0031616,spindle pole centrosome +15.8562362,GO:0031654,http://purl.obolibrary.org/obo/GO_0031654,regulation of heat dissipation +15.8562362,GO:0031915,http://purl.obolibrary.org/obo/GO_0031915,positive regulation of synaptic plasticity +15.8562362,GO:0031955,http://purl.obolibrary.org/obo/GO_0031955,short-chain fatty acid-CoA ligase activity +15.8562362,GO:0032025,http://purl.obolibrary.org/obo/GO_0032025,response to cobalt ion +15.8562362,GO:0032060,http://purl.obolibrary.org/obo/GO_0032060,bleb assembly +15.8562362,GO:0032092,http://purl.obolibrary.org/obo/GO_0032092,positive regulation of protein binding +15.8562362,GO:0032097,http://purl.obolibrary.org/obo/GO_0032097,positive regulation of response to food +15.8562362,GO:0032100,http://purl.obolibrary.org/obo/GO_0032100,positive regulation of appetite +15.8562362,GO:0032119,http://purl.obolibrary.org/obo/GO_0032119,sequestering of zinc ion +15.8562362,GO:0032195,http://purl.obolibrary.org/obo/GO_0032195,post-lysosomal vacuole +15.8562362,GO:0032202,http://purl.obolibrary.org/obo/GO_0032202,telomere assembly +15.8562362,GO:0032277,http://purl.obolibrary.org/obo/GO_0032277,negative regulation of gonadotropin secretion +15.8562362,GO:0032303,http://purl.obolibrary.org/obo/GO_0032303,regulation of icosanoid secretion +15.8562362,GO:0032306,http://purl.obolibrary.org/obo/GO_0032306,regulation of prostaglandin secretion +15.8562362,GO:0032352,http://purl.obolibrary.org/obo/GO_0032352,positive regulation of hormone metabolic process +15.8562362,GO:0032390,http://purl.obolibrary.org/obo/GO_0032390,MutLbeta complex +15.8562362,GO:0032437,http://purl.obolibrary.org/obo/GO_0032437,cuticular plate +15.8562362,GO:0032466,http://purl.obolibrary.org/obo/GO_0032466,negative regulation of cytokinesis +15.8562362,GO:0032514,http://purl.obolibrary.org/obo/GO_0032514,none +15.8562362,GO:0032516,http://purl.obolibrary.org/obo/GO_0032516,positive regulation of phosphoprotein phosphatase activity +15.8562362,GO:0032578,http://purl.obolibrary.org/obo/GO_0032578,aleurone grain membrane +15.8562362,GO:0032586,http://purl.obolibrary.org/obo/GO_0032586,protein storage vacuole membrane +15.8562362,GO:0032632,http://purl.obolibrary.org/obo/GO_0032632,interleukin-3 production +15.8562362,GO:0032634,http://purl.obolibrary.org/obo/GO_0032634,interleukin-5 production +15.8562362,GO:0032643,http://purl.obolibrary.org/obo/GO_0032643,regulation of connective tissue growth factor production +15.8562362,GO:0032650,http://purl.obolibrary.org/obo/GO_0032650,regulation of interleukin-1 alpha production +15.8562362,GO:0032658,http://purl.obolibrary.org/obo/GO_0032658,regulation of interleukin-15 production +15.8562362,GO:0032665,http://purl.obolibrary.org/obo/GO_0032665,regulation of interleukin-21 production +15.8562362,GO:0032676,http://purl.obolibrary.org/obo/GO_0032676,regulation of interleukin-7 production +15.8562362,GO:0032691,http://purl.obolibrary.org/obo/GO_0032691,negative regulation of interleukin-1 beta production +15.8562362,GO:0032700,http://purl.obolibrary.org/obo/GO_0032700,negative regulation of interleukin-17 production +15.8562362,GO:0032809,http://purl.obolibrary.org/obo/GO_0032809,neuronal cell body membrane +15.8562362,GO:0032816,http://purl.obolibrary.org/obo/GO_0032816,positive regulation of natural killer cell activation +15.8562362,GO:0032929,http://purl.obolibrary.org/obo/GO_0032929,negative regulation of superoxide anion generation +15.8562362,GO:0033039,http://purl.obolibrary.org/obo/GO_0033039,salty taste receptor activity +15.8562362,GO:0033063,http://purl.obolibrary.org/obo/GO_0033063,Rad51B-Rad51C-Rad51D-XRCC2 complex +15.8562362,GO:0033069,http://purl.obolibrary.org/obo/GO_0033069,ansamycin metabolic process +15.8562362,GO:0033070,http://purl.obolibrary.org/obo/GO_0033070,ansamycin biosynthetic process +15.8562362,GO:0033093,http://purl.obolibrary.org/obo/GO_0033093,Weibel-Palade body +15.8562362,GO:0033094,http://purl.obolibrary.org/obo/GO_0033094,"butane-1,4-diamine:2-oxoglutarate aminotransferase activity" +15.8562362,GO:0033150,http://purl.obolibrary.org/obo/GO_0033150,cytoskeletal calyx +15.8562362,GO:0033182,http://purl.obolibrary.org/obo/GO_0033182,regulation of histone ubiquitination +15.8562362,GO:0033191,http://purl.obolibrary.org/obo/GO_0033191,macrophomate synthase activity +15.8562362,GO:0033316,http://purl.obolibrary.org/obo/GO_0033316,meiotic spindle assembly checkpoint signaling +15.8562362,GO:0033466,http://purl.obolibrary.org/obo/GO_0033466,trans-zeatin biosynthetic process +15.8562362,GO:0033550,http://purl.obolibrary.org/obo/GO_0033550,MAP kinase tyrosine phosphatase activity +15.8562362,GO:0033564,http://purl.obolibrary.org/obo/GO_0033564,anterior/posterior axon guidance +15.8562362,GO:0033619,http://purl.obolibrary.org/obo/GO_0033619,membrane protein proteolysis +15.8562362,GO:0033645,http://purl.obolibrary.org/obo/GO_0033645,host cell endomembrane system +15.8562362,GO:0033680,http://purl.obolibrary.org/obo/GO_0033680,none +15.8562362,GO:0033695,http://purl.obolibrary.org/obo/GO_0033695,"oxidoreductase activity, acting on CH or CH2 groups, quinone or similar compound as acceptor" +15.8562362,GO:0033728,http://purl.obolibrary.org/obo/GO_0033728,divinyl chlorophyllide a 8-vinyl-reductase activity +15.8562362,GO:0033752,http://purl.obolibrary.org/obo/GO_0033752,acetylacetone-cleaving enzyme activity +15.8562362,GO:0033758,http://purl.obolibrary.org/obo/GO_0033758,clavaminate synthase activity +15.8562362,GO:0033771,http://purl.obolibrary.org/obo/GO_0033771,licodione synthase activity +15.8562362,GO:0033794,http://purl.obolibrary.org/obo/GO_0033794,sarcosine reductase activity +15.8562362,GO:0033802,http://purl.obolibrary.org/obo/GO_0033802,isoliquiritigenin 2'-O-methyltransferase activity +15.8562362,GO:0033812,http://purl.obolibrary.org/obo/GO_0033812,3-oxoadipyl-CoA thiolase activity +15.8562362,GO:0033860,http://purl.obolibrary.org/obo/GO_0033860,regulation of NAD(P)H oxidase activity +15.8562362,GO:0033887,http://purl.obolibrary.org/obo/GO_0033887,chondro-4-sulfatase activity +15.8562362,GO:0033901,http://purl.obolibrary.org/obo/GO_0033901,ribonuclease V activity +15.8562362,GO:0033910,http://purl.obolibrary.org/obo/GO_0033910,"glucan 1,4-alpha-maltotetraohydrolase activity" +15.8562362,GO:0033935,http://purl.obolibrary.org/obo/GO_0033935,oligoxyloglucan beta-glycosidase activity +15.8562362,GO:0033957,http://purl.obolibrary.org/obo/GO_0033957,lambda-carrageenase activity +15.8562362,GO:0033972,http://purl.obolibrary.org/obo/GO_0033972,proclavaminate amidinohydrolase activity +15.8562362,GO:0034067,http://purl.obolibrary.org/obo/GO_0034067,protein localization to Golgi apparatus +15.8562362,GO:0034098,http://purl.obolibrary.org/obo/GO_0034098,VCP-NPL4-UFD1 AAA ATPase complex +15.8562362,GO:0034102,http://purl.obolibrary.org/obo/GO_0034102,erythrocyte clearance +15.8562362,GO:0034105,http://purl.obolibrary.org/obo/GO_0034105,positive regulation of tissue remodeling +15.8562362,GO:0034255,http://purl.obolibrary.org/obo/GO_0034255,regulation of urea metabolic process +15.8562362,GO:0034302,http://purl.obolibrary.org/obo/GO_0034302,akinete formation +15.8562362,GO:0034328,http://purl.obolibrary.org/obo/GO_0034328,decanoyltransferase activity +15.8562362,GO:0034363,http://purl.obolibrary.org/obo/GO_0034363,intermediate-density lipoprotein particle +15.8562362,GO:0034366,http://purl.obolibrary.org/obo/GO_0034366,spherical high-density lipoprotein particle +15.8562362,GO:0034379,http://purl.obolibrary.org/obo/GO_0034379,very-low-density lipoprotein particle assembly +15.8562362,GO:0034381,http://purl.obolibrary.org/obo/GO_0034381,plasma lipoprotein particle clearance +15.8562362,GO:0034394,http://purl.obolibrary.org/obo/GO_0034394,protein localization to cell surface +15.8562362,GO:0034480,http://purl.obolibrary.org/obo/GO_0034480,phosphatidylcholine phospholipase C activity +15.8562362,GO:0034498,http://purl.obolibrary.org/obo/GO_0034498,early endosome to Golgi transport +15.8562362,GO:0034552,http://purl.obolibrary.org/obo/GO_0034552,respiratory chain complex II assembly +15.8562362,GO:0034665,http://purl.obolibrary.org/obo/GO_0034665,integrin alpha1-beta1 complex +15.8562362,GO:0034666,http://purl.obolibrary.org/obo/GO_0034666,integrin alpha2-beta1 complex +15.8562362,GO:0034700,http://purl.obolibrary.org/obo/GO_0034700,allulose 6-phosphate 3-epimerase activity +15.8562362,GO:0034718,http://purl.obolibrary.org/obo/GO_0034718,SMN-Gemin2 complex +15.8562362,GO:0035005,http://purl.obolibrary.org/obo/GO_0035005,1-phosphatidylinositol-4-phosphate 3-kinase activity +15.8562362,GO:0035023,http://purl.obolibrary.org/obo/GO_0035023,regulation of Rho protein signal transduction +15.8562362,GO:0035138,http://purl.obolibrary.org/obo/GO_0035138,pectoral fin morphogenesis +15.8562362,GO:0035277,http://purl.obolibrary.org/obo/GO_0035277,"spiracle morphogenesis, open tracheal system" +15.8562362,GO:0035287,http://purl.obolibrary.org/obo/GO_0035287,head segmentation +15.8562362,GO:0035301,http://purl.obolibrary.org/obo/GO_0035301,Hedgehog signaling complex +15.8562362,GO:0035306,http://purl.obolibrary.org/obo/GO_0035306,positive regulation of dephosphorylation +15.8562362,GO:0035307,http://purl.obolibrary.org/obo/GO_0035307,positive regulation of protein dephosphorylation +15.8562362,GO:0035339,http://purl.obolibrary.org/obo/GO_0035339,SPOTS complex +15.8562362,GO:0035345,http://purl.obolibrary.org/obo/GO_0035345,regulation of hypoxanthine transport +15.8562362,GO:0035393,http://purl.obolibrary.org/obo/GO_0035393,chemokine (C-X-C motif) ligand 9 production +15.8562362,GO:0035406,http://purl.obolibrary.org/obo/GO_0035406,histone-tyrosine phosphorylation +15.8562362,GO:0035458,http://purl.obolibrary.org/obo/GO_0035458,cellular response to interferon-beta +15.8562362,GO:0035631,http://purl.obolibrary.org/obo/GO_0035631,CD40 receptor complex +15.8562362,GO:0035672,http://purl.obolibrary.org/obo/GO_0035672,oligopeptide transmembrane transport +15.8562362,GO:0035696,http://purl.obolibrary.org/obo/GO_0035696,monocyte extravasation +15.8562362,GO:0035744,http://purl.obolibrary.org/obo/GO_0035744,T-helper 1 cell cytokine production +15.8562362,GO:0035839,http://purl.obolibrary.org/obo/GO_0035839,non-growing cell tip +15.8562362,GO:0035887,http://purl.obolibrary.org/obo/GO_0035887,aortic smooth muscle cell differentiation +15.8562362,GO:0035909,http://purl.obolibrary.org/obo/GO_0035909,aorta morphogenesis +15.8562362,GO:0035986,http://purl.obolibrary.org/obo/GO_0035986,none +15.8562362,GO:0035992,http://purl.obolibrary.org/obo/GO_0035992,tendon formation +15.8562362,GO:0036021,http://purl.obolibrary.org/obo/GO_0036021,endolysosome lumen +15.8562362,GO:0036058,http://purl.obolibrary.org/obo/GO_0036058,filtration diaphragm assembly +15.8562362,GO:0036062,http://purl.obolibrary.org/obo/GO_0036062,presynaptic periactive zone +15.8562362,GO:0036213,http://purl.obolibrary.org/obo/GO_0036213,contractile ring contraction +15.8562362,GO:0036334,http://purl.obolibrary.org/obo/GO_0036334,epidermal stem cell homeostasis +15.8562362,GO:0036348,http://purl.obolibrary.org/obo/GO_0036348,hydantoin racemase activity +15.8562362,GO:0036384,http://purl.obolibrary.org/obo/GO_0036384,cytidine-diphosphatase activity +15.8562362,GO:0036437,http://purl.obolibrary.org/obo/GO_0036437,Isw1b complex +15.8562362,GO:0036469,http://purl.obolibrary.org/obo/GO_0036469,L-tryptophan decarboxylase activity +15.8562362,GO:0036488,http://purl.obolibrary.org/obo/GO_0036488,CHOP-C/EBP complex +15.8562362,GO:0036498,http://purl.obolibrary.org/obo/GO_0036498,IRE1-mediated unfolded protein response +15.8562362,GO:0036499,http://purl.obolibrary.org/obo/GO_0036499,PERK-mediated unfolded protein response +15.8562362,GO:0036501,http://purl.obolibrary.org/obo/GO_0036501,UFD1-NPL4 complex +15.8562362,GO:0038145,http://purl.obolibrary.org/obo/GO_0038145,macrophage colony-stimulating factor signaling pathway +15.8562362,GO:0039023,http://purl.obolibrary.org/obo/GO_0039023,pronephric duct morphogenesis +15.8562362,GO:0039715,http://purl.obolibrary.org/obo/GO_0039715,nuclear viral factory +15.8562362,GO:0042014,http://purl.obolibrary.org/obo/GO_0042014,interleukin-19 receptor activity +15.8562362,GO:0042022,http://purl.obolibrary.org/obo/GO_0042022,interleukin-12 receptor complex +15.8562362,GO:0042052,http://purl.obolibrary.org/obo/GO_0042052,rhabdomere development +15.8562362,GO:0042106,http://purl.obolibrary.org/obo/GO_0042106,gamma-delta T cell receptor complex +15.8562362,GO:0042137,http://purl.obolibrary.org/obo/GO_0042137,sequestering of neurotransmitter +15.8562362,GO:0042225,http://purl.obolibrary.org/obo/GO_0042225,none +15.8562362,GO:0042273,http://purl.obolibrary.org/obo/GO_0042273,ribosomal large subunit biogenesis +15.8562362,GO:0042300,http://purl.obolibrary.org/obo/GO_0042300,beta-amyrin synthase activity +15.8562362,GO:0042356,http://purl.obolibrary.org/obo/GO_0042356,GDP-4-dehydro-D-rhamnose reductase activity +15.8562362,GO:0042410,http://purl.obolibrary.org/obo/GO_0042410,6-carboxyhexanoate-CoA ligase activity +15.8562362,GO:0042482,http://purl.obolibrary.org/obo/GO_0042482,positive regulation of odontogenesis +15.8562362,GO:0042487,http://purl.obolibrary.org/obo/GO_0042487,regulation of odontogenesis of dentin-containing tooth +15.8562362,GO:0042501,http://purl.obolibrary.org/obo/GO_0042501,serine phosphorylation of STAT protein +15.8562362,GO:0042620,http://purl.obolibrary.org/obo/GO_0042620,poly(3-hydroxyalkanoate) metabolic process +15.8562362,GO:0042627,http://purl.obolibrary.org/obo/GO_0042627,chylomicron +15.8562362,GO:0042696,http://purl.obolibrary.org/obo/GO_0042696,menarche +15.8562362,GO:0042765,http://purl.obolibrary.org/obo/GO_0042765,GPI-anchor transamidase complex +15.8562362,GO:0042773,http://purl.obolibrary.org/obo/GO_0042773,ATP synthesis coupled electron transport +15.8562362,GO:0042968,http://purl.obolibrary.org/obo/GO_0042968,homoserine transport +15.8562362,GO:0043007,http://purl.obolibrary.org/obo/GO_0043007,maintenance of rDNA +15.8562362,GO:0043133,http://purl.obolibrary.org/obo/GO_0043133,hindgut contraction +15.8562362,GO:0043147,http://purl.obolibrary.org/obo/GO_0043147,none +15.8562362,GO:0043247,http://purl.obolibrary.org/obo/GO_0043247,telomere maintenance in response to DNA damage +15.8562362,GO:0043252,http://purl.obolibrary.org/obo/GO_0043252,sodium-independent organic anion transport +15.8562362,GO:0043267,http://purl.obolibrary.org/obo/GO_0043267,negative regulation of potassium ion transport +15.8562362,GO:0043309,http://purl.obolibrary.org/obo/GO_0043309,regulation of eosinophil degranulation +15.8562362,GO:0043366,http://purl.obolibrary.org/obo/GO_0043366,beta selection +15.8562362,GO:0043431,http://purl.obolibrary.org/obo/GO_0043431,"2-octaprenyl-3-methyl-5-hydroxy-6-methoxy-1,4-benzoquinone methyltransferase activity" +15.8562362,GO:0043456,http://purl.obolibrary.org/obo/GO_0043456,regulation of pentose-phosphate shunt +15.8562362,GO:0043486,http://purl.obolibrary.org/obo/GO_0043486,histone exchange +15.8562362,GO:0043494,http://purl.obolibrary.org/obo/GO_0043494,CLRC complex +15.8562362,GO:0043563,http://purl.obolibrary.org/obo/GO_0043563,none +15.8562362,GO:0043570,http://purl.obolibrary.org/obo/GO_0043570,maintenance of DNA repeat elements +15.8562362,GO:0043576,http://purl.obolibrary.org/obo/GO_0043576,regulation of respiratory gaseous exchange +15.8562362,GO:0043609,http://purl.obolibrary.org/obo/GO_0043609,regulation of carbon utilization +15.8562362,GO:0043620,http://purl.obolibrary.org/obo/GO_0043620,regulation of DNA-templated transcription in response to stress +15.8562362,GO:0043694,http://purl.obolibrary.org/obo/GO_0043694,monoterpene catabolic process +15.8562362,GO:0043733,http://purl.obolibrary.org/obo/GO_0043733,DNA-3-methylbase glycosylase activity +15.8562362,GO:0043785,http://purl.obolibrary.org/obo/GO_0043785,cinnamoyl-CoA:phenyllactate CoA-transferase activity +15.8562362,GO:0043801,http://purl.obolibrary.org/obo/GO_0043801,hexulose-6-phosphate synthase activity +15.8562362,GO:0043850,http://purl.obolibrary.org/obo/GO_0043850,RecFOR complex +15.8562362,GO:0043867,http://purl.obolibrary.org/obo/GO_0043867,7-cyano-7-deazaguanine tRNA-ribosyltransferase activity +15.8562362,GO:0043881,http://purl.obolibrary.org/obo/GO_0043881,mesaconyl-CoA hydratase activity +15.8562362,GO:0043949,http://purl.obolibrary.org/obo/GO_0043949,regulation of cAMP-mediated signaling +15.8562362,GO:0043955,http://purl.obolibrary.org/obo/GO_0043955,3-hydroxypropionyl-CoA synthetase activity +15.8562362,GO:0043956,http://purl.obolibrary.org/obo/GO_0043956,3-hydroxypropionyl-CoA dehydratase activity +15.8562362,GO:0043988,http://purl.obolibrary.org/obo/GO_0043988,histone H3-S28 phosphorylation +15.8562362,GO:0044065,http://purl.obolibrary.org/obo/GO_0044065,regulation of respiratory system process +15.8562362,GO:0044096,http://purl.obolibrary.org/obo/GO_0044096,type IV pilus +15.8562362,GO:0044097,http://purl.obolibrary.org/obo/GO_0044097,secretion by the type IV secretion system +15.8562362,GO:0044168,http://purl.obolibrary.org/obo/GO_0044168,host cell rough endoplasmic reticulum +15.8562362,GO:0044253,http://purl.obolibrary.org/obo/GO_0044253,none +15.8562362,GO:0044289,http://purl.obolibrary.org/obo/GO_0044289,mitochondrial inner-outer membrane contact site +15.8562362,GO:0044290,http://purl.obolibrary.org/obo/GO_0044290,mitochondrial intracristal space +15.8562362,GO:0044613,http://purl.obolibrary.org/obo/GO_0044613,nuclear pore central transport channel +15.8562362,GO:0044614,http://purl.obolibrary.org/obo/GO_0044614,nuclear pore cytoplasmic filaments +15.8562362,GO:0044841,http://purl.obolibrary.org/obo/GO_0044841,gut granule membrane +15.8562362,GO:0045073,http://purl.obolibrary.org/obo/GO_0045073,none +15.8562362,GO:0045076,http://purl.obolibrary.org/obo/GO_0045076,none +15.8562362,GO:0045144,http://purl.obolibrary.org/obo/GO_0045144,meiotic sister chromatid segregation +15.8562362,GO:0045189,http://purl.obolibrary.org/obo/GO_0045189,none +15.8562362,GO:0045303,http://purl.obolibrary.org/obo/GO_0045303,diaminobutyrate-2-oxoglutarate transaminase activity +15.8562362,GO:0045324,http://purl.obolibrary.org/obo/GO_0045324,late endosome to vacuole transport +15.8562362,GO:0045431,http://purl.obolibrary.org/obo/GO_0045431,flavonol synthase activity +15.8562362,GO:0045438,http://purl.obolibrary.org/obo/GO_0045438,delta-(L-alpha-aminoadipyl)-L-cysteinyl-D-valine synthetase activity +15.8562362,GO:0045458,http://purl.obolibrary.org/obo/GO_0045458,recombination within rDNA repeats +15.8562362,GO:0045466,http://purl.obolibrary.org/obo/GO_0045466,R7 cell differentiation +15.8562362,GO:0045490,http://purl.obolibrary.org/obo/GO_0045490,pectin catabolic process +15.8562362,GO:0045498,http://purl.obolibrary.org/obo/GO_0045498,sex comb development +15.8562362,GO:0045635,http://purl.obolibrary.org/obo/GO_0045635,negative regulation of melanocyte differentiation +15.8562362,GO:0045677,http://purl.obolibrary.org/obo/GO_0045677,negative regulation of R7 cell differentiation +15.8562362,GO:0045719,http://purl.obolibrary.org/obo/GO_0045719,negative regulation of glycogen biosynthetic process +15.8562362,GO:0045745,http://purl.obolibrary.org/obo/GO_0045745,positive regulation of G protein-coupled receptor signaling pathway +15.8562362,GO:0045777,http://purl.obolibrary.org/obo/GO_0045777,positive regulation of blood pressure +15.8562362,GO:0045828,http://purl.obolibrary.org/obo/GO_0045828,positive regulation of isoprenoid metabolic process +15.8562362,GO:0045842,http://purl.obolibrary.org/obo/GO_0045842,positive regulation of mitotic metaphase/anaphase transition +15.8562362,GO:0045873,http://purl.obolibrary.org/obo/GO_0045873,negative regulation of sevenless signaling pathway +15.8562362,GO:0046123,http://purl.obolibrary.org/obo/GO_0046123,purine deoxyribonucleoside biosynthetic process +15.8562362,GO:0046133,http://purl.obolibrary.org/obo/GO_0046133,pyrimidine ribonucleoside catabolic process +15.8562362,GO:0046135,http://purl.obolibrary.org/obo/GO_0046135,pyrimidine nucleoside catabolic process +15.8562362,GO:0046220,http://purl.obolibrary.org/obo/GO_0046220,pyridine biosynthetic process +15.8562362,GO:0046232,http://purl.obolibrary.org/obo/GO_0046232,carbazole catabolic process +15.8562362,GO:0046247,http://purl.obolibrary.org/obo/GO_0046247,terpene catabolic process +15.8562362,GO:0046275,http://purl.obolibrary.org/obo/GO_0046275,flavonoid catabolic process +15.8562362,GO:0046312,http://purl.obolibrary.org/obo/GO_0046312,phosphoarginine biosynthetic process +15.8562362,GO:0046326,http://purl.obolibrary.org/obo/GO_0046326,positive regulation of glucose import +15.8562362,GO:0046359,http://purl.obolibrary.org/obo/GO_0046359,butyrate catabolic process +15.8562362,GO:0046398,http://purl.obolibrary.org/obo/GO_0046398,UDP-glucuronate metabolic process +15.8562362,GO:0046419,http://purl.obolibrary.org/obo/GO_0046419,octopine metabolic process +15.8562362,GO:0046421,http://purl.obolibrary.org/obo/GO_0046421,methylisocitrate lyase activity +15.8562362,GO:0046425,http://purl.obolibrary.org/obo/GO_0046425,regulation of receptor signaling pathway via JAK-STAT +15.8562362,GO:0046444,http://purl.obolibrary.org/obo/GO_0046444,FMN metabolic process +15.8562362,GO:0046445,http://purl.obolibrary.org/obo/GO_0046445,benzyl isoquinoline alkaloid metabolic process +15.8562362,GO:0046452,http://purl.obolibrary.org/obo/GO_0046452,dihydrofolate metabolic process +15.8562362,GO:0046495,http://purl.obolibrary.org/obo/GO_0046495,nicotinamide riboside metabolic process +15.8562362,GO:0046508,http://purl.obolibrary.org/obo/GO_0046508,"hydrolase activity, acting on carbon-sulfur bonds" +15.8562362,GO:0046533,http://purl.obolibrary.org/obo/GO_0046533,negative regulation of photoreceptor cell differentiation +15.8562362,GO:0046666,http://purl.obolibrary.org/obo/GO_0046666,retinal cell programmed cell death +15.8562362,GO:0046695,http://purl.obolibrary.org/obo/GO_0046695,SLIK (SAGA-like) complex +15.8562362,GO:0046852,http://purl.obolibrary.org/obo/GO_0046852,positive regulation of bone remodeling +15.8562362,GO:0046877,http://purl.obolibrary.org/obo/GO_0046877,regulation of saliva secretion +15.8562362,GO:0046886,http://purl.obolibrary.org/obo/GO_0046886,positive regulation of hormone biosynthetic process +15.8562362,GO:0046996,http://purl.obolibrary.org/obo/GO_0046996,none +15.8562362,GO:0047018,http://purl.obolibrary.org/obo/GO_0047018,indole-3-acetaldehyde reductase (NADH) activity +15.8562362,GO:0047022,http://purl.obolibrary.org/obo/GO_0047022,7-beta-hydroxysteroid dehydrogenase (NADP+) activity +15.8562362,GO:0047087,http://purl.obolibrary.org/obo/GO_0047087,protopine 6-monooxygenase activity +15.8562362,GO:0047135,http://purl.obolibrary.org/obo/GO_0047135,bis-gamma-glutamylcystine reductase activity +15.8562362,GO:0047155,http://purl.obolibrary.org/obo/GO_0047155,3-hydroxymethylcephem carbamoyltransferase activity +15.8562362,GO:0047160,http://purl.obolibrary.org/obo/GO_0047160,alkylglycerophosphate 2-O-acetyltransferase activity +15.8562362,GO:0047174,http://purl.obolibrary.org/obo/GO_0047174,putrescine N-hydroxycinnamoyltransferase activity +15.8562362,GO:0047205,http://purl.obolibrary.org/obo/GO_0047205,quinate O-hydroxycinnamoyltransferase activity +15.8562362,GO:0047217,http://purl.obolibrary.org/obo/GO_0047217,"sucrose-1,6-alpha-glucan 3(6)-alpha-glucosyltransferase activity" +15.8562362,GO:0047262,http://purl.obolibrary.org/obo/GO_0047262,polygalacturonate 4-alpha-galacturonosyltransferase activity +15.8562362,GO:0047273,http://purl.obolibrary.org/obo/GO_0047273,galactosylgalactosylglucosylceramide beta-D-acetylgalactosaminyltransferase activity +15.8562362,GO:0047312,http://purl.obolibrary.org/obo/GO_0047312,L-phenylalanine:pyruvate aminotransferase activity +15.8562362,GO:0047335,http://purl.obolibrary.org/obo/GO_0047335,3-phosphoglyceroyl-phosphate-polyphosphate phosphotransferase activity +15.8562362,GO:0047349,http://purl.obolibrary.org/obo/GO_0047349,D-ribitol-5-phosphate cytidylyltransferase activity +15.8562362,GO:0047369,http://purl.obolibrary.org/obo/GO_0047369,succinate-hydroxymethylglutarate CoA-transferase activity +15.8562362,GO:0047371,http://purl.obolibrary.org/obo/GO_0047371,butyrate-acetoacetate CoA-transferase activity +15.8562362,GO:0047427,http://purl.obolibrary.org/obo/GO_0047427,cyanoalanine nitrilase activity +15.8562362,GO:0047442,http://purl.obolibrary.org/obo/GO_0047442,17-alpha-hydroxyprogesterone aldolase activity +15.8562362,GO:0047482,http://purl.obolibrary.org/obo/GO_0047482,UDP-N-acetylmuramoyl-L-alanyl-D-glutamate-L-lysine ligase activity +15.8562362,GO:0047484,http://purl.obolibrary.org/obo/GO_0047484,regulation of response to osmotic stress +15.8562362,GO:0047547,http://purl.obolibrary.org/obo/GO_0047547,2-methylcitrate dehydratase activity +15.8562362,GO:0047700,http://purl.obolibrary.org/obo/GO_0047700,beta-glucoside kinase activity +15.8562362,GO:0047757,http://purl.obolibrary.org/obo/GO_0047757,chondroitin-glucuronate 5-epimerase activity +15.8562362,GO:0047771,http://purl.obolibrary.org/obo/GO_0047771,carboxymethylhydantoinase activity +15.8562362,GO:0047790,http://purl.obolibrary.org/obo/GO_0047790,creatinine deaminase activity +15.8562362,GO:0047792,http://purl.obolibrary.org/obo/GO_0047792,cyanohydrin beta-glucosyltransferase activity +15.8562362,GO:0047794,http://purl.obolibrary.org/obo/GO_0047794,cyclohexadienyl dehydrogenase activity +15.8562362,GO:0047809,http://purl.obolibrary.org/obo/GO_0047809,D-2-hydroxy-acid dehydrogenase activity +15.8562362,GO:0047850,http://purl.obolibrary.org/obo/GO_0047850,diaminopimelate dehydrogenase activity +15.8562362,GO:0047875,http://purl.obolibrary.org/obo/GO_0047875,ecdysone oxidase activity +15.8562362,GO:0047888,http://purl.obolibrary.org/obo/GO_0047888,fatty acid peroxidase activity +15.8562362,GO:0047889,http://purl.obolibrary.org/obo/GO_0047889,ferredoxin-nitrate reductase activity +15.8562362,GO:0047895,http://purl.obolibrary.org/obo/GO_0047895,formaldehyde dismutase activity +15.8562362,GO:0047905,http://purl.obolibrary.org/obo/GO_0047905,fructose-6-phosphate phosphoketolase activity +15.8562362,GO:0047930,http://purl.obolibrary.org/obo/GO_0047930,glucosaminate ammonia-lyase activity +15.8562362,GO:0047936,http://purl.obolibrary.org/obo/GO_0047936,glucose 1-dehydrogenase [NAD(P)] activity +15.8562362,GO:0047943,http://purl.obolibrary.org/obo/GO_0047943,glutamate-methylamine ligase activity +15.8562362,GO:0047985,http://purl.obolibrary.org/obo/GO_0047985,hydrogen dehydrogenase activity +15.8562362,GO:0047994,http://purl.obolibrary.org/obo/GO_0047994,hydroxymethylglutaryl-CoA hydrolase activity +15.8562362,GO:0048000,http://purl.obolibrary.org/obo/GO_0048000,isoflavone 3'-hydroxylase activity +15.8562362,GO:0048086,http://purl.obolibrary.org/obo/GO_0048086,negative regulation of developmental pigmentation +15.8562362,GO:0048147,http://purl.obolibrary.org/obo/GO_0048147,negative regulation of fibroblast proliferation +15.8562362,GO:0048180,http://purl.obolibrary.org/obo/GO_0048180,activin complex +15.8562362,GO:0048194,http://purl.obolibrary.org/obo/GO_0048194,Golgi vesicle budding +15.8562362,GO:0048254,http://purl.obolibrary.org/obo/GO_0048254,snoRNA localization +15.8562362,GO:0048268,http://purl.obolibrary.org/obo/GO_0048268,clathrin coat assembly +15.8562362,GO:0048389,http://purl.obolibrary.org/obo/GO_0048389,intermediate mesoderm development +15.8562362,GO:0048445,http://purl.obolibrary.org/obo/GO_0048445,carpel morphogenesis +15.8562362,GO:0048447,http://purl.obolibrary.org/obo/GO_0048447,sepal morphogenesis +15.8562362,GO:0048472,http://purl.obolibrary.org/obo/GO_0048472,threonine-phosphate decarboxylase activity +15.8562362,GO:0048533,http://purl.obolibrary.org/obo/GO_0048533,sporocyte differentiation +15.8562362,GO:0048555,http://purl.obolibrary.org/obo/GO_0048555,generative cell nucleus +15.8562362,GO:0048641,http://purl.obolibrary.org/obo/GO_0048641,regulation of skeletal muscle tissue development +15.8562362,GO:0048735,http://purl.obolibrary.org/obo/GO_0048735,haltere morphogenesis +15.8562362,GO:0048767,http://purl.obolibrary.org/obo/GO_0048767,root hair elongation +15.8562362,GO:0048792,http://purl.obolibrary.org/obo/GO_0048792,spontaneous exocytosis of neurotransmitter +15.8562362,GO:0048868,http://purl.obolibrary.org/obo/GO_0048868,pollen tube development +15.8562362,GO:0050029,http://purl.obolibrary.org/obo/GO_0050029,L-lysine oxidase activity +15.8562362,GO:0050042,http://purl.obolibrary.org/obo/GO_0050042,lactate-malate transhydrogenase activity +15.8562362,GO:0050046,http://purl.obolibrary.org/obo/GO_0050046,delta7-sterol 5(6)-desaturase activity +15.8562362,GO:0050048,http://purl.obolibrary.org/obo/GO_0050048,L-leucine:2-oxoglutarate aminotransferase activity +15.8562362,GO:0050086,http://purl.obolibrary.org/obo/GO_0050086,mannitol 2-dehydrogenase activity +15.8562362,GO:0050103,http://purl.obolibrary.org/obo/GO_0050103,dextrin dextranase activity +15.8562362,GO:0050104,http://purl.obolibrary.org/obo/GO_0050104,L-gulonate 3-dehydrogenase activity +15.8562362,GO:0050116,http://purl.obolibrary.org/obo/GO_0050116,"N,N-dimethylformamidase activity" +15.8562362,GO:0050119,http://purl.obolibrary.org/obo/GO_0050119,N-acetylglucosamine deacetylase activity +15.8562362,GO:0050223,http://purl.obolibrary.org/obo/GO_0050223,protocatechuate decarboxylase activity +15.8562362,GO:0050232,http://purl.obolibrary.org/obo/GO_0050232,putrescine oxidase activity +15.8562362,GO:0050271,http://purl.obolibrary.org/obo/GO_0050271,S-alkylcysteine lyase activity +15.8562362,GO:0050282,http://purl.obolibrary.org/obo/GO_0050282,serine 2-dehydrogenase activity +15.8562362,GO:0050285,http://purl.obolibrary.org/obo/GO_0050285,sinapine esterase activity +15.8562362,GO:0050378,http://purl.obolibrary.org/obo/GO_0050378,UDP-glucuronate 4-epimerase activity +15.8562362,GO:0050379,http://purl.obolibrary.org/obo/GO_0050379,UDP-glucuronate 5'-epimerase activity +15.8562362,GO:0050393,http://purl.obolibrary.org/obo/GO_0050393,vinylacetyl-CoA delta-isomerase activity +15.8562362,GO:0050401,http://purl.obolibrary.org/obo/GO_0050401,xylonate dehydratase activity +15.8562362,GO:0050422,http://purl.obolibrary.org/obo/GO_0050422,strictosidine beta-glucosidase activity +15.8562362,GO:0050440,http://purl.obolibrary.org/obo/GO_0050440,2-methylcitrate synthase activity +15.8562362,GO:0050449,http://purl.obolibrary.org/obo/GO_0050449,casbene synthase activity +15.8562362,GO:0050452,http://purl.obolibrary.org/obo/GO_0050452,CoA-glutathione reductase activity +15.8562362,GO:0050453,http://purl.obolibrary.org/obo/GO_0050453,cob(II)alamin reductase activity +15.8562362,GO:0050535,http://purl.obolibrary.org/obo/GO_0050535,beta-primeverosidase activity +15.8562362,GO:0050537,http://purl.obolibrary.org/obo/GO_0050537,mandelamide amidase activity +15.8562362,GO:0050540,http://purl.obolibrary.org/obo/GO_0050540,2-aminomuconate deaminase activity +15.8562362,GO:0050554,http://purl.obolibrary.org/obo/GO_0050554,abietadiene synthase activity +15.8562362,GO:0050628,http://purl.obolibrary.org/obo/GO_0050628,2-oxopropyl-CoM reductase (carboxylating) activity +15.8562362,GO:0050638,http://purl.obolibrary.org/obo/GO_0050638,taxadien-5-alpha-ol O-acetyltransferase activity +15.8562362,GO:0050645,http://purl.obolibrary.org/obo/GO_0050645,limonoid glucosyltransferase activity +15.8562362,GO:0050655,http://purl.obolibrary.org/obo/GO_0050655,dermatan sulfate proteoglycan metabolic process +15.8562362,GO:0050704,http://purl.obolibrary.org/obo/GO_0050704,none +15.8562362,GO:0050706,http://purl.obolibrary.org/obo/GO_0050706,none +15.8562362,GO:0050771,http://purl.obolibrary.org/obo/GO_0050771,negative regulation of axonogenesis +15.8562362,GO:0050772,http://purl.obolibrary.org/obo/GO_0050772,positive regulation of axonogenesis +15.8562362,GO:0050860,http://purl.obolibrary.org/obo/GO_0050860,negative regulation of T cell receptor signaling pathway +15.8562362,GO:0050935,http://purl.obolibrary.org/obo/GO_0050935,iridophore differentiation +15.8562362,GO:0050941,http://purl.obolibrary.org/obo/GO_0050941,negative regulation of pigment cell differentiation +15.8562362,GO:0050958,http://purl.obolibrary.org/obo/GO_0050958,magnetoreception +15.8562362,GO:0050974,http://purl.obolibrary.org/obo/GO_0050974,detection of mechanical stimulus involved in sensory perception +15.8562362,GO:0051001,http://purl.obolibrary.org/obo/GO_0051001,negative regulation of nitric-oxide synthase activity +15.8562362,GO:0051151,http://purl.obolibrary.org/obo/GO_0051151,negative regulation of smooth muscle cell differentiation +15.8562362,GO:0051163,http://purl.obolibrary.org/obo/GO_0051163,D-arabitol metabolic process +15.8562362,GO:0051464,http://purl.obolibrary.org/obo/GO_0051464,positive regulation of cortisol secretion +15.8562362,GO:0051480,http://purl.obolibrary.org/obo/GO_0051480,regulation of cytosolic calcium ion concentration +15.8562362,GO:0051492,http://purl.obolibrary.org/obo/GO_0051492,regulation of stress fiber assembly +15.8562362,GO:0051500,http://purl.obolibrary.org/obo/GO_0051500,D-tyrosyl-tRNA(Tyr) deacylase activity +15.8562362,GO:0051566,http://purl.obolibrary.org/obo/GO_0051566,anthocyanidin-3-glucoside rhamnosyltransferase activity +15.8562362,GO:0051569,http://purl.obolibrary.org/obo/GO_0051569,regulation of histone H3-K4 methylation +15.8562362,GO:0051630,http://purl.obolibrary.org/obo/GO_0051630,acetylcholine uptake +15.8562362,GO:0051735,http://purl.obolibrary.org/obo/GO_0051735,GTP-dependent polynucleotide kinase activity +15.8562362,GO:0051889,http://purl.obolibrary.org/obo/GO_0051889,negative regulation of timing of exogen +15.8562362,GO:0051896,http://purl.obolibrary.org/obo/GO_0051896,regulation of protein kinase B signaling +15.8562362,GO:0051907,http://purl.obolibrary.org/obo/GO_0051907,S-(hydroxymethyl)glutathione synthase activity +15.8562362,GO:0052041,http://purl.obolibrary.org/obo/GO_0052041,negative regulation by symbiont of host programmed cell death +15.8562362,GO:0052490,http://purl.obolibrary.org/obo/GO_0052490,none +15.8562362,GO:0052574,http://purl.obolibrary.org/obo/GO_0052574,UDP-galactose biosynthetic process +15.8562362,GO:0052599,http://purl.obolibrary.org/obo/GO_0052599,methylputrescine oxidase activity +15.8562362,GO:0052611,http://purl.obolibrary.org/obo/GO_0052611,beta-carotene 3-hydroxylase activity +15.8562362,GO:0052653,http://purl.obolibrary.org/obo/GO_0052653,"3',5'-cyclic diguanylic acid metabolic process" +15.8562362,GO:0052668,http://purl.obolibrary.org/obo/GO_0052668,CTP:farnesol kinase activity +15.8562362,GO:0052693,http://purl.obolibrary.org/obo/GO_0052693,epoxyqueuosine reductase activity +15.8562362,GO:0052725,http://purl.obolibrary.org/obo/GO_0052725,"inositol-1,3,4-trisphosphate 6-kinase activity" +15.8562362,GO:0055071,http://purl.obolibrary.org/obo/GO_0055071,manganese ion homeostasis +15.8562362,GO:0060005,http://purl.obolibrary.org/obo/GO_0060005,vestibular reflex +15.8562362,GO:0060023,http://purl.obolibrary.org/obo/GO_0060023,soft palate development +15.8562362,GO:0060032,http://purl.obolibrary.org/obo/GO_0060032,notochord regression +15.8562362,GO:0060065,http://purl.obolibrary.org/obo/GO_0060065,uterus development +15.8562362,GO:0060117,http://purl.obolibrary.org/obo/GO_0060117,auditory receptor cell development +15.8562362,GO:0060118,http://purl.obolibrary.org/obo/GO_0060118,vestibular receptor cell development +15.8562362,GO:0060242,http://purl.obolibrary.org/obo/GO_0060242,contact inhibition +15.8562362,GO:0060293,http://purl.obolibrary.org/obo/GO_0060293,germ plasm +15.8562362,GO:0060309,http://purl.obolibrary.org/obo/GO_0060309,elastin catabolic process +15.8562362,GO:0060346,http://purl.obolibrary.org/obo/GO_0060346,bone trabecula formation +15.8562362,GO:0060357,http://purl.obolibrary.org/obo/GO_0060357,regulation of leucine import +15.8562362,GO:0060395,http://purl.obolibrary.org/obo/GO_0060395,SMAD protein signal transduction +15.8562362,GO:0060433,http://purl.obolibrary.org/obo/GO_0060433,bronchus development +15.8562362,GO:0060434,http://purl.obolibrary.org/obo/GO_0060434,bronchus morphogenesis +15.8562362,GO:0060509,http://purl.obolibrary.org/obo/GO_0060509,type I pneumocyte differentiation +15.8562362,GO:0060513,http://purl.obolibrary.org/obo/GO_0060513,prostatic bud formation +15.8562362,GO:0060601,http://purl.obolibrary.org/obo/GO_0060601,lateral sprouting from an epithelium +15.8562362,GO:0060717,http://purl.obolibrary.org/obo/GO_0060717,chorion development +15.8562362,GO:0060740,http://purl.obolibrary.org/obo/GO_0060740,prostate gland epithelium morphogenesis +15.8562362,GO:0060843,http://purl.obolibrary.org/obo/GO_0060843,venous endothelial cell differentiation +15.8562362,GO:0060860,http://purl.obolibrary.org/obo/GO_0060860,regulation of floral organ abscission +15.8562362,GO:0060912,http://purl.obolibrary.org/obo/GO_0060912,cardiac cell fate specification +15.8562362,GO:0060913,http://purl.obolibrary.org/obo/GO_0060913,cardiac cell fate determination +15.8562362,GO:0060956,http://purl.obolibrary.org/obo/GO_0060956,endocardial cell differentiation +15.8562362,GO:0061104,http://purl.obolibrary.org/obo/GO_0061104,adrenal chromaffin cell differentiation +15.8562362,GO:0061182,http://purl.obolibrary.org/obo/GO_0061182,negative regulation of chondrocyte development +15.8562362,GO:0061206,http://purl.obolibrary.org/obo/GO_0061206,mesonephros morphogenesis +15.8562362,GO:0061433,http://purl.obolibrary.org/obo/GO_0061433,cellular response to caloric restriction +15.8562362,GO:0061525,http://purl.obolibrary.org/obo/GO_0061525,hindgut development +15.8562362,GO:0061682,http://purl.obolibrary.org/obo/GO_0061682,seminal vesicle morphogenesis +15.8562362,GO:0061717,http://purl.obolibrary.org/obo/GO_0061717,none +15.8562362,GO:0061724,http://purl.obolibrary.org/obo/GO_0061724,lipophagy +15.8562362,GO:0061742,http://purl.obolibrary.org/obo/GO_0061742,chaperone-mediated autophagy translocation complex +15.8562362,GO:0061771,http://purl.obolibrary.org/obo/GO_0061771,response to caloric restriction +15.8562362,GO:0070004,http://purl.obolibrary.org/obo/GO_0070004,cysteine-type exopeptidase activity +15.8562362,GO:0070121,http://purl.obolibrary.org/obo/GO_0070121,Kupffer's vesicle development +15.8562362,GO:0070169,http://purl.obolibrary.org/obo/GO_0070169,positive regulation of biomineral tissue development +15.8562362,GO:0070173,http://purl.obolibrary.org/obo/GO_0070173,regulation of enamel mineralization +15.8562362,GO:0070176,http://purl.obolibrary.org/obo/GO_0070176,DRM complex +15.8562362,GO:0070206,http://purl.obolibrary.org/obo/GO_0070206,protein trimerization +15.8562362,GO:0070277,http://purl.obolibrary.org/obo/GO_0070277,iodide oxidation +15.8562362,GO:0070307,http://purl.obolibrary.org/obo/GO_0070307,lens fiber cell development +15.8562362,GO:0070309,http://purl.obolibrary.org/obo/GO_0070309,lens fiber cell morphogenesis +15.8562362,GO:0070343,http://purl.obolibrary.org/obo/GO_0070343,white fat cell proliferation +15.8562362,GO:0070421,http://purl.obolibrary.org/obo/GO_0070421,DNA ligase III-XRCC1 complex +15.8562362,GO:0070463,http://purl.obolibrary.org/obo/GO_0070463,tubulin-dependent ATPase activity +15.8562362,GO:0070493,http://purl.obolibrary.org/obo/GO_0070493,thrombin-activated receptor signaling pathway +15.8562362,GO:0070560,http://purl.obolibrary.org/obo/GO_0070560,protein secretion by platelet +15.8562362,GO:0070637,http://purl.obolibrary.org/obo/GO_0070637,pyridine nucleoside metabolic process +15.8562362,GO:0070652,http://purl.obolibrary.org/obo/GO_0070652,HAUS complex +15.8562362,GO:0070667,http://purl.obolibrary.org/obo/GO_0070667,negative regulation of mast cell proliferation +15.8562362,GO:0070694,http://purl.obolibrary.org/obo/GO_0070694,deoxyribonucleoside 5'-monophosphate N-glycosidase activity +15.8562362,GO:0070763,http://purl.obolibrary.org/obo/GO_0070763,Delta1 complex +15.8562362,GO:0070823,http://purl.obolibrary.org/obo/GO_0070823,HDA1 complex +15.8562362,GO:0070847,http://purl.obolibrary.org/obo/GO_0070847,core mediator complex +15.8562362,GO:0070874,http://purl.obolibrary.org/obo/GO_0070874,negative regulation of glycogen metabolic process +15.8562362,GO:0070932,http://purl.obolibrary.org/obo/GO_0070932,histone H3 deacetylation +15.8562362,GO:0070986,http://purl.obolibrary.org/obo/GO_0070986,left/right axis specification +15.8562362,GO:0071143,http://purl.obolibrary.org/obo/GO_0071143,none +15.8562362,GO:0071349,http://purl.obolibrary.org/obo/GO_0071349,cellular response to interleukin-12 +15.8562362,GO:0071384,http://purl.obolibrary.org/obo/GO_0071384,cellular response to corticosteroid stimulus +15.8562362,GO:0071389,http://purl.obolibrary.org/obo/GO_0071389,cellular response to mineralocorticoid stimulus +15.8562362,GO:0071390,http://purl.obolibrary.org/obo/GO_0071390,cellular response to ecdysone +15.8562362,GO:0071391,http://purl.obolibrary.org/obo/GO_0071391,cellular response to estrogen stimulus +15.8562362,GO:0071435,http://purl.obolibrary.org/obo/GO_0071435,none +15.8562362,GO:0071450,http://purl.obolibrary.org/obo/GO_0071450,cellular response to oxygen radical +15.8562362,GO:0071451,http://purl.obolibrary.org/obo/GO_0071451,cellular response to superoxide +15.8562362,GO:0071467,http://purl.obolibrary.org/obo/GO_0071467,cellular response to pH +15.8562362,GO:0071474,http://purl.obolibrary.org/obo/GO_0071474,cellular hyperosmotic response +15.8562362,GO:0071497,http://purl.obolibrary.org/obo/GO_0071497,cellular response to freezing +15.8562362,GO:0071498,http://purl.obolibrary.org/obo/GO_0071498,cellular response to fluid shear stress +15.8562362,GO:0071504,http://purl.obolibrary.org/obo/GO_0071504,cellular response to heparin +15.8562362,GO:0071524,http://purl.obolibrary.org/obo/GO_0071524,pyrrolysine biosynthetic process +15.8562362,GO:0071525,http://purl.obolibrary.org/obo/GO_0071525,pyrrolysine metabolic process +15.8562362,GO:0071557,http://purl.obolibrary.org/obo/GO_0071557,histone H3-K27 demethylation +15.8562362,GO:0071570,http://purl.obolibrary.org/obo/GO_0071570,cement gland development +15.8562362,GO:0071602,http://purl.obolibrary.org/obo/GO_0071602,phytosphingosine biosynthetic process +15.8562362,GO:0071612,http://purl.obolibrary.org/obo/GO_0071612,IP-10 production +15.8562362,GO:0071613,http://purl.obolibrary.org/obo/GO_0071613,granzyme B production +15.8562362,GO:0071655,http://purl.obolibrary.org/obo/GO_0071655,regulation of granulocyte colony-stimulating factor production +15.8562362,GO:0071678,http://purl.obolibrary.org/obo/GO_0071678,olfactory bulb axon guidance +15.8562362,GO:0071716,http://purl.obolibrary.org/obo/GO_0071716,leukotriene transport +15.8562362,GO:0071729,http://purl.obolibrary.org/obo/GO_0071729,beak morphogenesis +15.8562362,GO:0071735,http://purl.obolibrary.org/obo/GO_0071735,IgG immunoglobulin complex +15.8562362,GO:0071801,http://purl.obolibrary.org/obo/GO_0071801,regulation of podosome assembly +15.8562362,GO:0071821,http://purl.obolibrary.org/obo/GO_0071821,FANCM-MHF complex +15.8562362,GO:0071834,http://purl.obolibrary.org/obo/GO_0071834,mating pheromone secretion +15.8562362,GO:0071863,http://purl.obolibrary.org/obo/GO_0071863,regulation of cell proliferation in bone marrow +15.8562362,GO:0071879,http://purl.obolibrary.org/obo/GO_0071879,positive regulation of adenylate cyclase-activating adrenergic receptor signaling pathway +15.8562362,GO:0071997,http://purl.obolibrary.org/obo/GO_0071997,none +15.8562362,GO:0072007,http://purl.obolibrary.org/obo/GO_0072007,mesangial cell differentiation +15.8562362,GO:0072143,http://purl.obolibrary.org/obo/GO_0072143,mesangial cell development +15.8562362,GO:0072163,http://purl.obolibrary.org/obo/GO_0072163,mesonephric epithelium development +15.8562362,GO:0072164,http://purl.obolibrary.org/obo/GO_0072164,mesonephric tubule development +15.8562362,GO:0072331,http://purl.obolibrary.org/obo/GO_0072331,signal transduction by p53 class mediator +15.8562362,GO:0072622,http://purl.obolibrary.org/obo/GO_0072622,none +15.8562362,GO:0072711,http://purl.obolibrary.org/obo/GO_0072711,cellular response to hydroxyurea +15.8562362,GO:0072724,http://purl.obolibrary.org/obo/GO_0072724,response to 4-nitroquinoline N-oxide +15.8562362,GO:0072752,http://purl.obolibrary.org/obo/GO_0072752,cellular response to rapamycin +15.8562362,GO:0080021,http://purl.obolibrary.org/obo/GO_0080021,response to benzoic acid +15.8562362,GO:0080030,http://purl.obolibrary.org/obo/GO_0080030,methyl indole-3-acetate esterase activity +15.8562362,GO:0080060,http://purl.obolibrary.org/obo/GO_0080060,integument development +15.8562362,GO:0085030,http://purl.obolibrary.org/obo/GO_0085030,symbiotic process benefiting host +15.8562362,GO:0085031,http://purl.obolibrary.org/obo/GO_0085031,none +15.8562362,GO:0086009,http://purl.obolibrary.org/obo/GO_0086009,membrane repolarization +15.8562362,GO:0090076,http://purl.obolibrary.org/obo/GO_0090076,relaxation of skeletal muscle +15.8562362,GO:0090089,http://purl.obolibrary.org/obo/GO_0090089,regulation of dipeptide transport +15.8562362,GO:0090090,http://purl.obolibrary.org/obo/GO_0090090,negative regulation of canonical Wnt signaling pathway +15.8562362,GO:0090116,http://purl.obolibrary.org/obo/GO_0090116,C-5 methylation of cytosine +15.8562362,GO:0090161,http://purl.obolibrary.org/obo/GO_0090161,Golgi ribbon formation +15.8562362,GO:0090186,http://purl.obolibrary.org/obo/GO_0090186,regulation of pancreatic juice secretion +15.8562362,GO:0090192,http://purl.obolibrary.org/obo/GO_0090192,regulation of glomerulus development +15.8562362,GO:0090244,http://purl.obolibrary.org/obo/GO_0090244,Wnt signaling pathway involved in somitogenesis +15.8562362,GO:0090432,http://purl.obolibrary.org/obo/GO_0090432,myristoyl-CoA ligase activity +15.8562362,GO:0090558,http://purl.obolibrary.org/obo/GO_0090558,plant epidermis development +15.8562362,GO:0090615,http://purl.obolibrary.org/obo/GO_0090615,mitochondrial mRNA processing +15.8562362,GO:0090672,http://purl.obolibrary.org/obo/GO_0090672,telomerase RNA localization +15.8562362,GO:0097055,http://purl.obolibrary.org/obo/GO_0097055,agmatine biosynthetic process +15.8562362,GO:0097120,http://purl.obolibrary.org/obo/GO_0097120,receptor localization to synapse +15.8562362,GO:0097169,http://purl.obolibrary.org/obo/GO_0097169,AIM2 inflammasome complex +15.8562362,GO:0097209,http://purl.obolibrary.org/obo/GO_0097209,epidermal lamellar body +15.8562362,GO:0097212,http://purl.obolibrary.org/obo/GO_0097212,lysosomal membrane organization +15.8562362,GO:0097213,http://purl.obolibrary.org/obo/GO_0097213,regulation of lysosomal membrane permeability +15.8562362,GO:0097268,http://purl.obolibrary.org/obo/GO_0097268,cytoophidium +15.8562362,GO:0097274,http://purl.obolibrary.org/obo/GO_0097274,urea homeostasis +15.8562362,GO:0097282,http://purl.obolibrary.org/obo/GO_0097282,immunoglobulin-mediated neutralization +15.8562362,GO:0097284,http://purl.obolibrary.org/obo/GO_0097284,hepatocyte apoptotic process +15.8562362,GO:0097298,http://purl.obolibrary.org/obo/GO_0097298,regulation of nucleus size +15.8562362,GO:0097356,http://purl.obolibrary.org/obo/GO_0097356,perinucleolar compartment +15.8562362,GO:0097390,http://purl.obolibrary.org/obo/GO_0097390,chemokine (C-X-C motif) ligand 12 production +15.8562362,GO:0097398,http://purl.obolibrary.org/obo/GO_0097398,cellular response to interleukin-17 +15.8562362,GO:0097408,http://purl.obolibrary.org/obo/GO_0097408,fibrillary inclusion +15.8562362,GO:0097449,http://purl.obolibrary.org/obo/GO_0097449,astrocyte projection +15.8562362,GO:0097517,http://purl.obolibrary.org/obo/GO_0097517,contractile actin filament bundle +15.8562362,GO:0097547,http://purl.obolibrary.org/obo/GO_0097547,synaptic vesicle protein transport vesicle +15.8562362,GO:0097570,http://purl.obolibrary.org/obo/GO_0097570,cyst wall +15.8562362,GO:0098528,http://purl.obolibrary.org/obo/GO_0098528,skeletal muscle fiber differentiation +15.8562362,GO:0098593,http://purl.obolibrary.org/obo/GO_0098593,goblet cell theca +15.8562362,GO:0098635,http://purl.obolibrary.org/obo/GO_0098635,protein complex involved in cell-cell adhesion +15.8562362,GO:0098777,http://purl.obolibrary.org/obo/GO_0098777,protein secretion by the type VIII secretion system +15.8562362,GO:0098778,http://purl.obolibrary.org/obo/GO_0098778,curli subunit secretion coupled to curli assembly +15.8562362,GO:0099118,http://purl.obolibrary.org/obo/GO_0099118,microtubule-based protein transport +15.8562362,GO:0099608,http://purl.obolibrary.org/obo/GO_0099608,regulation of action potential firing pattern +15.8562362,GO:0110020,http://purl.obolibrary.org/obo/GO_0110020,regulation of actomyosin structure organization +15.8562362,GO:0110096,http://purl.obolibrary.org/obo/GO_0110096,cellular response to aldehyde +15.8562362,GO:0110118,http://purl.obolibrary.org/obo/GO_0110118,negative regulation of compound eye photoreceptor cell differentiation +15.8562362,GO:0110151,http://purl.obolibrary.org/obo/GO_0110151,positive regulation of biomineralization +15.8562362,GO:0140299,http://purl.obolibrary.org/obo/GO_0140299,small molecule sensor activity +15.8562362,GO:0140527,http://purl.obolibrary.org/obo/GO_0140527,reciprocal homologous recombination +15.8562362,GO:1900112,http://purl.obolibrary.org/obo/GO_1900112,regulation of histone H3-K9 trimethylation +15.8562362,GO:1900165,http://purl.obolibrary.org/obo/GO_1900165,none +15.8562362,GO:1900258,http://purl.obolibrary.org/obo/GO_1900258,positive regulation of beta1-adrenergic receptor activity +15.8562362,GO:1900409,http://purl.obolibrary.org/obo/GO_1900409,positive regulation of cellular response to oxidative stress +15.8562362,GO:1900788,http://purl.obolibrary.org/obo/GO_1900788,pseurotin A metabolic process +15.8562362,GO:1900790,http://purl.obolibrary.org/obo/GO_1900790,pseurotin A biosynthetic process +15.8562362,GO:1900810,http://purl.obolibrary.org/obo/GO_1900810,helvolic acid metabolic process +15.8562362,GO:1900812,http://purl.obolibrary.org/obo/GO_1900812,helvolic acid biosynthetic process +15.8562362,GO:1901000,http://purl.obolibrary.org/obo/GO_1901000,regulation of response to salt stress +15.8562362,GO:1901017,http://purl.obolibrary.org/obo/GO_1901017,negative regulation of potassium ion transmembrane transporter activity +15.8562362,GO:1901033,http://purl.obolibrary.org/obo/GO_1901033,positive regulation of response to reactive oxygen species +15.8562362,GO:1901042,http://purl.obolibrary.org/obo/GO_1901042,none +15.8562362,GO:1901107,http://purl.obolibrary.org/obo/GO_1901107,granaticin metabolic process +15.8562362,GO:1901109,http://purl.obolibrary.org/obo/GO_1901109,granaticin biosynthetic process +15.8562362,GO:1901380,http://purl.obolibrary.org/obo/GO_1901380,negative regulation of potassium ion transmembrane transport +15.8562362,GO:1901465,http://purl.obolibrary.org/obo/GO_1901465,positive regulation of tetrapyrrole biosynthetic process +15.8562362,GO:1901491,http://purl.obolibrary.org/obo/GO_1901491,negative regulation of lymphangiogenesis +15.8562362,GO:1901533,http://purl.obolibrary.org/obo/GO_1901533,negative regulation of hematopoietic progenitor cell differentiation +15.8562362,GO:1901550,http://purl.obolibrary.org/obo/GO_1901550,regulation of endothelial cell development +15.8562362,GO:1901585,http://purl.obolibrary.org/obo/GO_1901585,regulation of acid-sensing ion channel activity +15.8562362,GO:1901671,http://purl.obolibrary.org/obo/GO_1901671,positive regulation of superoxide dismutase activity +15.8562362,GO:1901715,http://purl.obolibrary.org/obo/GO_1901715,regulation of gamma-aminobutyric acid catabolic process +15.8562362,GO:1901731,http://purl.obolibrary.org/obo/GO_1901731,positive regulation of platelet aggregation +15.8562362,GO:1901734,http://purl.obolibrary.org/obo/GO_1901734,quercetin biosynthetic process +15.8562362,GO:1901753,http://purl.obolibrary.org/obo/GO_1901753,leukotriene A4 biosynthetic process +15.8562362,GO:1901890,http://purl.obolibrary.org/obo/GO_1901890,positive regulation of cell junction assembly +15.8562362,GO:1901970,http://purl.obolibrary.org/obo/GO_1901970,positive regulation of mitotic sister chromatid separation +15.8562362,GO:1901977,http://purl.obolibrary.org/obo/GO_1901977,negative regulation of cell cycle checkpoint +15.8562362,GO:1901978,http://purl.obolibrary.org/obo/GO_1901978,positive regulation of cell cycle checkpoint +15.8562362,GO:1902037,http://purl.obolibrary.org/obo/GO_1902037,negative regulation of hematopoietic stem cell differentiation +15.8562362,GO:1902084,http://purl.obolibrary.org/obo/GO_1902084,fumagillin metabolic process +15.8562362,GO:1902086,http://purl.obolibrary.org/obo/GO_1902086,fumagillin biosynthetic process +15.8562362,GO:1902101,http://purl.obolibrary.org/obo/GO_1902101,positive regulation of metaphase/anaphase transition of cell cycle +15.8562362,GO:1902306,http://purl.obolibrary.org/obo/GO_1902306,negative regulation of sodium ion transmembrane transport +15.8562362,GO:1902396,http://purl.obolibrary.org/obo/GO_1902396,protein localization to bicellular tight junction +15.8562362,GO:1902427,http://purl.obolibrary.org/obo/GO_1902427,regulation of water channel activity +15.8562362,GO:1902476,http://purl.obolibrary.org/obo/GO_1902476,chloride transmembrane transport +15.8562362,GO:1902552,http://purl.obolibrary.org/obo/GO_1902552,negative regulation of catalase activity +15.8562362,GO:1902636,http://purl.obolibrary.org/obo/GO_1902636,kinociliary basal body +15.8562362,GO:1902708,http://purl.obolibrary.org/obo/GO_1902708,response to plumbagin +15.8562362,GO:1902729,http://purl.obolibrary.org/obo/GO_1902729,negative regulation of proteoglycan biosynthetic process +15.8562362,GO:1902746,http://purl.obolibrary.org/obo/GO_1902746,regulation of lens fiber cell differentiation +15.8562362,GO:1902884,http://purl.obolibrary.org/obo/GO_1902884,positive regulation of response to oxidative stress +15.8562362,GO:1902928,http://purl.obolibrary.org/obo/GO_1902928,inulin biosynthetic process +15.8562362,GO:1902991,http://purl.obolibrary.org/obo/GO_1902991,regulation of amyloid precursor protein catabolic process +15.8562362,GO:1903011,http://purl.obolibrary.org/obo/GO_1903011,negative regulation of bone development +15.8562362,GO:1903019,http://purl.obolibrary.org/obo/GO_1903019,negative regulation of glycoprotein metabolic process +15.8562362,GO:1903042,http://purl.obolibrary.org/obo/GO_1903042,negative regulation of chondrocyte hypertrophy +15.8562362,GO:1903071,http://purl.obolibrary.org/obo/GO_1903071,positive regulation of ER-associated ubiquitin-dependent protein catabolic process +15.8562362,GO:1903072,http://purl.obolibrary.org/obo/GO_1903072,regulation of death-inducing signaling complex assembly +15.8562362,GO:1903083,http://purl.obolibrary.org/obo/GO_1903083,protein localization to condensed chromosome +15.8562362,GO:1903191,http://purl.obolibrary.org/obo/GO_1903191,glyoxal biosynthetic process +15.8562362,GO:1903338,http://purl.obolibrary.org/obo/GO_1903338,regulation of cell wall organization or biogenesis +15.8562362,GO:1903407,http://purl.obolibrary.org/obo/GO_1903407,negative regulation of P-type sodium:potassium-exchanging transporter activity +15.8562362,GO:1903428,http://purl.obolibrary.org/obo/GO_1903428,positive regulation of reactive oxygen species biosynthetic process +15.8562362,GO:1903444,http://purl.obolibrary.org/obo/GO_1903444,negative regulation of brown fat cell differentiation +15.8562362,GO:1903519,http://purl.obolibrary.org/obo/GO_1903519,regulation of mammary gland involution +15.8562362,GO:1903545,http://purl.obolibrary.org/obo/GO_1903545,cellular response to butyrate +15.8562362,GO:1903573,http://purl.obolibrary.org/obo/GO_1903573,negative regulation of response to endoplasmic reticulum stress +15.8562362,GO:1903590,http://purl.obolibrary.org/obo/GO_1903590,regulation of lysozyme activity +15.8562362,GO:1903596,http://purl.obolibrary.org/obo/GO_1903596,regulation of gap junction assembly +15.8562362,GO:1903656,http://purl.obolibrary.org/obo/GO_1903656,regulation of type IV pilus biogenesis +15.8562362,GO:1903699,http://purl.obolibrary.org/obo/GO_1903699,tarsal gland development +15.8562362,GO:1903754,http://purl.obolibrary.org/obo/GO_1903754,cortical microtubule plus-end +15.8562362,GO:1903787,http://purl.obolibrary.org/obo/GO_1903787,negative regulation of glutathione biosynthetic process +15.8562362,GO:1903884,http://purl.obolibrary.org/obo/GO_1903884,regulation of chemokine (C-C motif) ligand 20 production +15.8562362,GO:1903958,http://purl.obolibrary.org/obo/GO_1903958,nitric-oxide synthase complex +15.8562362,GO:1904015,http://purl.obolibrary.org/obo/GO_1904015,cellular response to serotonin +15.8562362,GO:1904045,http://purl.obolibrary.org/obo/GO_1904045,cellular response to aldosterone +15.8562362,GO:1904059,http://purl.obolibrary.org/obo/GO_1904059,regulation of locomotor rhythm +15.8562362,GO:1904097,http://purl.obolibrary.org/obo/GO_1904097,acid phosphatase complex +15.8562362,GO:1904117,http://purl.obolibrary.org/obo/GO_1904117,cellular response to vasopressin +15.8562362,GO:1904143,http://purl.obolibrary.org/obo/GO_1904143,positive regulation of carotenoid biosynthetic process +15.8562362,GO:1904223,http://purl.obolibrary.org/obo/GO_1904223,regulation of glucuronosyltransferase activity +15.8562362,GO:1904232,http://purl.obolibrary.org/obo/GO_1904232,regulation of aconitate hydratase activity +15.8562362,GO:1904238,http://purl.obolibrary.org/obo/GO_1904238,pericyte cell differentiation +15.8562362,GO:1904309,http://purl.obolibrary.org/obo/GO_1904309,response to cordycepin +15.8562362,GO:1904484,http://purl.obolibrary.org/obo/GO_1904484,cloacal gland development +15.8562362,GO:1904526,http://purl.obolibrary.org/obo/GO_1904526,regulation of microtubule binding +15.8562362,GO:1904558,http://purl.obolibrary.org/obo/GO_1904558,response to dextromethorphan +15.8562362,GO:1904639,http://purl.obolibrary.org/obo/GO_1904639,cellular response to resveratrol +15.8562362,GO:1904706,http://purl.obolibrary.org/obo/GO_1904706,negative regulation of vascular associated smooth muscle cell proliferation +15.8562362,GO:1904806,http://purl.obolibrary.org/obo/GO_1904806,regulation of protein oxidation +15.8562362,GO:1904826,http://purl.obolibrary.org/obo/GO_1904826,regulation of hydrogen sulfide biosynthetic process +15.8562362,GO:1904833,http://purl.obolibrary.org/obo/GO_1904833,positive regulation of removal of superoxide radicals +15.8562362,GO:1904892,http://purl.obolibrary.org/obo/GO_1904892,regulation of receptor signaling pathway via STAT +15.8562362,GO:1904895,http://purl.obolibrary.org/obo/GO_1904895,ESCRT complex assembly +15.8562362,GO:1905521,http://purl.obolibrary.org/obo/GO_1905521,regulation of macrophage migration +15.8562362,GO:1905532,http://purl.obolibrary.org/obo/GO_1905532,regulation of leucine import across plasma membrane +15.8562362,GO:1905940,http://purl.obolibrary.org/obo/GO_1905940,negative regulation of gonad development +15.8562362,GO:1905961,http://purl.obolibrary.org/obo/GO_1905961,protein-cysteine S-palmitoyltransferase complex +15.8562362,GO:1990067,http://purl.obolibrary.org/obo/GO_1990067,intrachromosomal DNA recombination +15.8562362,GO:1990125,http://purl.obolibrary.org/obo/GO_1990125,DiaA complex +15.8562362,GO:1990150,http://purl.obolibrary.org/obo/GO_1990150,VEGF-A complex +15.8562362,GO:1990341,http://purl.obolibrary.org/obo/GO_1990341,thrombospondin complex +15.8562362,GO:1990406,http://purl.obolibrary.org/obo/GO_1990406,CGRP receptor complex +15.8562362,GO:1990531,http://purl.obolibrary.org/obo/GO_1990531,phospholipid-translocating ATPase complex +15.8562362,GO:1990567,http://purl.obolibrary.org/obo/GO_1990567,DPS complex +15.8562362,GO:1990576,http://purl.obolibrary.org/obo/GO_1990576,G protein-coupled glucose receptor activity +15.8562362,GO:1990587,http://purl.obolibrary.org/obo/GO_1990587,FtsQBL complex +15.8562362,GO:1990619,http://purl.obolibrary.org/obo/GO_1990619,histone H3-K9 deacetylation +15.8562362,GO:1990681,http://purl.obolibrary.org/obo/GO_1990681,none +15.8562362,GO:1990723,http://purl.obolibrary.org/obo/GO_1990723,cytoplasmic periphery of the nuclear pore complex +15.8562362,GO:1990724,http://purl.obolibrary.org/obo/GO_1990724,galectin complex +15.8562362,GO:1990730,http://purl.obolibrary.org/obo/GO_1990730,VCP-NSFL1C complex +15.8562362,GO:1990770,http://purl.obolibrary.org/obo/GO_1990770,small intestine smooth muscle contraction +15.8562362,GO:1990785,http://purl.obolibrary.org/obo/GO_1990785,response to water-immersion restraint stress +15.8562362,GO:2000253,http://purl.obolibrary.org/obo/GO_2000253,positive regulation of feeding behavior +15.8562362,GO:2000293,http://purl.obolibrary.org/obo/GO_2000293,negative regulation of defecation +15.8562362,GO:2000341,http://purl.obolibrary.org/obo/GO_2000341,regulation of chemokine (C-X-C motif) ligand 2 production +15.8562362,GO:2000422,http://purl.obolibrary.org/obo/GO_2000422,regulation of eosinophil chemotaxis +15.8562362,GO:2000426,http://purl.obolibrary.org/obo/GO_2000426,negative regulation of apoptotic cell clearance +15.8562362,GO:2000428,http://purl.obolibrary.org/obo/GO_2000428,regulation of neutrophil aggregation +15.8562362,GO:2000598,http://purl.obolibrary.org/obo/GO_2000598,none +15.8562362,GO:2000648,http://purl.obolibrary.org/obo/GO_2000648,positive regulation of stem cell proliferation +15.8562362,GO:2000650,http://purl.obolibrary.org/obo/GO_2000650,negative regulation of sodium ion transmembrane transporter activity +15.8562362,GO:2000738,http://purl.obolibrary.org/obo/GO_2000738,positive regulation of stem cell differentiation +15.8562362,GO:2000747,http://purl.obolibrary.org/obo/GO_2000747,negative regulation of defecation rhythm +15.8562362,GO:2000832,http://purl.obolibrary.org/obo/GO_2000832,negative regulation of steroid hormone secretion +15.8562362,GO:2000848,http://purl.obolibrary.org/obo/GO_2000848,positive regulation of corticosteroid hormone secretion +15.8562362,GO:2000851,http://purl.obolibrary.org/obo/GO_2000851,positive regulation of glucocorticoid secretion +15.8562362,GO:2000864,http://purl.obolibrary.org/obo/GO_2000864,regulation of estradiol secretion +15.8562362,GO:2000909,http://purl.obolibrary.org/obo/GO_2000909,regulation of sterol import +15.8562362,GO:2001017,http://purl.obolibrary.org/obo/GO_2001017,regulation of retrograde axon cargo transport +15.8562362,GO:2001119,http://purl.obolibrary.org/obo/GO_2001119,methanofuran metabolic process +15.8562362,GO:2001120,http://purl.obolibrary.org/obo/GO_2001120,methanofuran biosynthetic process +15.8562362,GO:2001234,http://purl.obolibrary.org/obo/GO_2001234,negative regulation of apoptotic signaling pathway +15.8562362,GO:2001236,http://purl.obolibrary.org/obo/GO_2001236,regulation of extrinsic apoptotic signaling pathway +15.8562362,HP:0000529,http://purl.obolibrary.org/obo/HP_0000529,Progressive visual loss +15.8562362,HP:0000532,http://purl.obolibrary.org/obo/HP_0000532,Abnormal chorioretinal morphology +15.8562362,HP:0000589,http://purl.obolibrary.org/obo/HP_0000589,Coloboma +15.8562362,HP:0000609,http://purl.obolibrary.org/obo/HP_0000609,Optic nerve hypoplasia +15.8562362,HP:0000610,http://purl.obolibrary.org/obo/HP_0000610,Abnormal choroid morphology +15.8562362,HP:0000670,http://purl.obolibrary.org/obo/HP_0000670,Carious teeth +15.8562362,HP:0001048,http://purl.obolibrary.org/obo/HP_0001048,Cavernous hemangioma +15.8562362,HP:0001062,http://purl.obolibrary.org/obo/HP_0001062,Atypical nevus +15.8562362,HP:0001141,http://purl.obolibrary.org/obo/HP_0001141,Severely reduced visual acuity +15.8562362,HP:0001153,http://purl.obolibrary.org/obo/HP_0001153,Septate vagina +15.8562362,HP:0001407,http://purl.obolibrary.org/obo/HP_0001407,Hepatic cysts +15.8562362,HP:0001642,http://purl.obolibrary.org/obo/HP_0001642,Pulmonic stenosis +15.8562362,HP:0001714,http://purl.obolibrary.org/obo/HP_0001714,Ventricular hypertrophy +15.8562362,HP:0001924,http://purl.obolibrary.org/obo/HP_0001924,Sideroblastic anemia +15.8562362,HP:0001947,http://purl.obolibrary.org/obo/HP_0001947,Renal tubular acidosis +15.8562362,HP:0001998,http://purl.obolibrary.org/obo/HP_0001998,Neonatal hypoglycemia +15.8562362,HP:0002032,http://purl.obolibrary.org/obo/HP_0002032,Esophageal atresia +15.8562362,HP:0002098,http://purl.obolibrary.org/obo/HP_0002098,Respiratory distress +15.8562362,HP:0002169,http://purl.obolibrary.org/obo/HP_0002169,Clonus +15.8562362,HP:0002250,http://purl.obolibrary.org/obo/HP_0002250,Abnormal large intestine morphology +15.8562362,HP:0002401,http://purl.obolibrary.org/obo/HP_0002401,Stroke-like episode +15.8562362,HP:0002497,http://purl.obolibrary.org/obo/HP_0002497,Spastic ataxia +15.8562362,HP:0002884,http://purl.obolibrary.org/obo/HP_0002884,Hepatoblastoma +15.8562362,HP:0002898,http://purl.obolibrary.org/obo/HP_0002898,Embryonal neoplasm +15.8562362,HP:0002947,http://purl.obolibrary.org/obo/HP_0002947,Cervical kyphosis +15.8562362,HP:0003075,http://purl.obolibrary.org/obo/HP_0003075,Hypoproteinemia +15.8562362,HP:0003196,http://purl.obolibrary.org/obo/HP_0003196,Short nose +15.8562362,HP:0003228,http://purl.obolibrary.org/obo/HP_0003228,Hypernatremia +15.8562362,HP:0003477,http://purl.obolibrary.org/obo/HP_0003477,Peripheral axonal neuropathy +15.8562362,HP:0003712,http://purl.obolibrary.org/obo/HP_0003712,Skeletal muscle hypertrophy +15.8562362,HP:0004566,http://purl.obolibrary.org/obo/HP_0004566,Pear-shaped vertebrae +15.8562362,HP:0004626,http://purl.obolibrary.org/obo/HP_0004626,Lumbar scoliosis +15.8562362,HP:0005506,http://purl.obolibrary.org/obo/HP_0005506,Chronic myelogenous leukemia +15.8562362,HP:0005558,http://purl.obolibrary.org/obo/HP_0005558,Chronic leukemia +15.8562362,HP:0005576,http://purl.obolibrary.org/obo/HP_0005576,Tubulointerstitial fibrosis +15.8562362,HP:0005619,http://purl.obolibrary.org/obo/HP_0005619,Thoracolumbar kyphosis +15.8562362,HP:0006897,http://purl.obolibrary.org/obo/HP_0006897,Abducens palsy +15.8562362,HP:0007141,http://purl.obolibrary.org/obo/HP_0007141,Sensorimotor neuropathy +15.8562362,HP:0007209,http://purl.obolibrary.org/obo/HP_0007209,Facial paralysis +15.8562362,HP:0007447,http://purl.obolibrary.org/obo/HP_0007447,Diffuse palmoplantar hyperkeratosis +15.8562362,HP:0007707,http://purl.obolibrary.org/obo/HP_0007707,Congenital aphakia +15.8562362,HP:0007716,http://purl.obolibrary.org/obo/HP_0007716,Uveal melanoma +15.8562362,HP:0007902,http://purl.obolibrary.org/obo/HP_0007902,Vitreous hemorrhage +15.8562362,HP:0007970,http://purl.obolibrary.org/obo/HP_0007970,Congenital ptosis +15.8562362,HP:0008063,http://purl.obolibrary.org/obo/HP_0008063,Aplasia/Hypoplasia of the lens +15.8562362,HP:0008231,http://purl.obolibrary.org/obo/HP_0008231,Macronodular adrenal hyperplasia +15.8562362,HP:0008682,http://purl.obolibrary.org/obo/HP_0008682,Renal tubular epithelial necrosis +15.8562362,HP:0008807,http://purl.obolibrary.org/obo/HP_0008807,Acetabular dysplasia +15.8562362,HP:0009778,http://purl.obolibrary.org/obo/HP_0009778,Short thumb +15.8562362,HP:0010603,http://purl.obolibrary.org/obo/HP_0010603,Odontogenic keratocysts of the jaw +15.8562362,HP:0010788,http://purl.obolibrary.org/obo/HP_0010788,Testicular neoplasm +15.8562362,HP:0011098,http://purl.obolibrary.org/obo/HP_0011098,Speech apraxia +15.8562362,HP:0011141,http://purl.obolibrary.org/obo/HP_0011141,Age-related cataract +15.8562362,HP:0011473,http://purl.obolibrary.org/obo/HP_0011473,Villous atrophy +15.8562362,HP:0011897,http://purl.obolibrary.org/obo/HP_0011897,Neutrophilia +15.8562362,HP:0011970,http://purl.obolibrary.org/obo/HP_0011970,Cerebral amyloid angiopathy +15.8562362,HP:0012027,http://purl.obolibrary.org/obo/HP_0012027,Laryngeal edema +15.8562362,HP:0012034,http://purl.obolibrary.org/obo/HP_0012034,Liposarcoma +15.8562362,HP:0012054,http://purl.obolibrary.org/obo/HP_0012054,Choroidal melanoma +15.8562362,HP:0012062,http://purl.obolibrary.org/obo/HP_0012062,Bone cyst +15.8562362,HP:0012154,http://purl.obolibrary.org/obo/HP_0012154,Anhedonia +15.8562362,HP:0012197,http://purl.obolibrary.org/obo/HP_0012197,Insulinoma +15.8562362,HP:0012390,http://purl.obolibrary.org/obo/HP_0012390,Anal fissure +15.8562362,HP:0012735,http://purl.obolibrary.org/obo/HP_0012735,Cough +15.8562362,HP:0012799,http://purl.obolibrary.org/obo/HP_0012799,Unilateral facial palsy +15.8562362,HP:0025294,http://purl.obolibrary.org/obo/HP_0025294,Dermatomal +15.8562362,HP:0025451,http://purl.obolibrary.org/obo/HP_0025451,Testicular adrenal rest tumor +15.8562362,HP:0030069,http://purl.obolibrary.org/obo/HP_0030069,Primary central nervous system lymphoma +15.8562362,HP:0030078,http://purl.obolibrary.org/obo/HP_0030078,Lung adenocarcinoma +15.8562362,HP:0030408,http://purl.obolibrary.org/obo/HP_0030408,Pineoblastoma +15.8562362,HP:0030410,http://purl.obolibrary.org/obo/HP_0030410,Sebaceous gland carcinoma +15.8562362,HP:0030426,http://purl.obolibrary.org/obo/HP_0030426,Ossifying fibroma +15.8562362,HP:0030429,http://purl.obolibrary.org/obo/HP_0030429,Juvenile nasopharyngeal angiofibroma +15.8562362,HP:0030445,http://purl.obolibrary.org/obo/HP_0030445,Pulmonary carcinoid tumor +15.8562362,HP:0031492,http://purl.obolibrary.org/obo/HP_0031492,Epithelial neoplasm +15.8562362,HP:0031628,http://purl.obolibrary.org/obo/HP_0031628,Aborted sudden cardiac death +15.8562362,HP:0031691,http://purl.obolibrary.org/obo/HP_0031691,Severe viral infection +15.8562362,HP:0031915,http://purl.obolibrary.org/obo/HP_0031915,Stable +15.8562362,HP:0032092,http://purl.obolibrary.org/obo/HP_0032092,Left ventricular outflow tract obstruction +15.8562362,HP:0032131,http://purl.obolibrary.org/obo/HP_0032131,Cervical dysplasia +15.8562362,HP:0032187,http://purl.obolibrary.org/obo/HP_0032187,Anal intraepithelial neoplasia +15.8562362,HP:0032317,http://purl.obolibrary.org/obo/HP_0032317,Family history of cancer +15.8562362,HP:0032674,http://purl.obolibrary.org/obo/HP_0032674,Cutaneous wound +15.8562362,HP:0032792,http://purl.obolibrary.org/obo/HP_0032792,Tonic seizure +15.8562362,HP:0032807,http://purl.obolibrary.org/obo/HP_0032807,Neonatal seizure +15.8562362,HP:0040078,http://purl.obolibrary.org/obo/HP_0040078,Axonal degeneration +15.8562362,HP:0100003,http://purl.obolibrary.org/obo/HP_0100003,Peritoneal mesothelioma +15.8562362,HP:0100018,http://purl.obolibrary.org/obo/HP_0100018,Nuclear cataract +15.8562362,HP:0100026,http://purl.obolibrary.org/obo/HP_0100026,Arteriovenous malformation +15.8562362,HP:0100539,http://purl.obolibrary.org/obo/HP_0100539,Periorbital edema +15.8562362,HP:0100620,http://purl.obolibrary.org/obo/HP_0100620,Germinoma +15.8562362,HP:0100704,http://purl.obolibrary.org/obo/HP_0100704,Cerebral visual impairment +15.8562362,HP:0100768,http://purl.obolibrary.org/obo/HP_0100768,Choriocarcinoma +15.8562362,HP:0100844,http://purl.obolibrary.org/obo/HP_0100844,Pancreatic fistula +15.8562362,HP:0200034,http://purl.obolibrary.org/obo/HP_0200034,Papule +15.8562362,HP:0200151,http://purl.obolibrary.org/obo/HP_0200151,Cutaneous mastocytosis +15.8562362,MONDO:0000173,http://purl.obolibrary.org/obo/MONDO_0000173,"muscular dystrophy-dystroglycanopathy, type C" +15.8562362,MONDO:0000214,http://purl.obolibrary.org/obo/MONDO_0000214,hypermanganesemia with dystonia +15.8562362,MONDO:0000298,http://purl.obolibrary.org/obo/MONDO_0000298,dioctophymiasis +15.8562362,MONDO:0000342,http://purl.obolibrary.org/obo/MONDO_0000342,O'nyong'nyong fever +15.8562362,MONDO:0000397,http://purl.obolibrary.org/obo/MONDO_0000397,ataxic cerebral palsy +15.8562362,MONDO:0000460,http://purl.obolibrary.org/obo/MONDO_0000460,neural glioblastoma +15.8562362,MONDO:0000561,http://purl.obolibrary.org/obo/MONDO_0000561,spinocerebellar ataxia type 16 +15.8562362,MONDO:0000626,http://purl.obolibrary.org/obo/MONDO_0000626,vestibular gland benign neoplasm +15.8562362,MONDO:0000671,http://purl.obolibrary.org/obo/MONDO_0000671,finger agnosia +15.8562362,MONDO:0000722,http://purl.obolibrary.org/obo/MONDO_0000722,non-syndromic synpolydactyly +15.8562362,MONDO:0000723,http://purl.obolibrary.org/obo/MONDO_0000723,stutter disorder +15.8562362,MONDO:0000733,http://purl.obolibrary.org/obo/MONDO_0000733,cornea plana +15.8562362,MONDO:0000883,http://purl.obolibrary.org/obo/MONDO_0000883,myeloid neoplasms associated with PDGFRB rearrangement +15.8562362,MONDO:0000891,http://purl.obolibrary.org/obo/MONDO_0000891,mixed fibrolamellar hepatocellular carcinoma +15.8562362,MONDO:0001021,http://purl.obolibrary.org/obo/MONDO_0001021,ametropic amblyopia +15.8562362,MONDO:0001041,http://purl.obolibrary.org/obo/MONDO_0001041,dentin caries +15.8562362,MONDO:0001129,http://purl.obolibrary.org/obo/MONDO_0001129,nasal cavity olfactory neuroblastoma +15.8562362,MONDO:0001179,http://purl.obolibrary.org/obo/MONDO_0001179,pinguecula +15.8562362,MONDO:0001221,http://purl.obolibrary.org/obo/MONDO_0001221,esophageal varices +15.8562362,MONDO:0001241,http://purl.obolibrary.org/obo/MONDO_0001241,transient neonatal neutropenia +15.8562362,MONDO:0001258,http://purl.obolibrary.org/obo/MONDO_0001258,vertebral artery occlusion +15.8562362,MONDO:0001282,http://purl.obolibrary.org/obo/MONDO_0001282,fallopian tube endometriosis +15.8562362,MONDO:0001296,http://purl.obolibrary.org/obo/MONDO_0001296,acquired night blindness +15.8562362,MONDO:0001303,http://purl.obolibrary.org/obo/MONDO_0001303,abnormal pupillary function +15.8562362,MONDO:0001307,http://purl.obolibrary.org/obo/MONDO_0001307,corneal abscess +15.8562362,MONDO:0001540,http://purl.obolibrary.org/obo/MONDO_0001540,bagassosis +15.8562362,MONDO:0001732,http://purl.obolibrary.org/obo/MONDO_0001732,trigonitis +15.8562362,MONDO:0001789,http://purl.obolibrary.org/obo/MONDO_0001789,neurofibroma of spinal cord +15.8562362,MONDO:0001894,http://purl.obolibrary.org/obo/MONDO_0001894,spinal cord sarcoma +15.8562362,MONDO:0001984,http://purl.obolibrary.org/obo/MONDO_0001984,candidal paronychia +15.8562362,MONDO:0001986,http://purl.obolibrary.org/obo/MONDO_0001986,Argyll Robertson pupil +15.8562362,MONDO:0002076,http://purl.obolibrary.org/obo/MONDO_0002076,pneumothorax +15.8562362,MONDO:0002125,http://purl.obolibrary.org/obo/MONDO_0002125,status epilepticus +15.8562362,MONDO:0002137,http://purl.obolibrary.org/obo/MONDO_0002137,noninfectious dermatoses of eyelid +15.8562362,MONDO:0002138,http://purl.obolibrary.org/obo/MONDO_0002138,allergic contact dermatitis of eyelid +15.8562362,MONDO:0002298,http://purl.obolibrary.org/obo/MONDO_0002298,cutaneous glomangioma +15.8562362,MONDO:0002534,http://purl.obolibrary.org/obo/MONDO_0002534,fallopian tube papilloma +15.8562362,MONDO:0002551,http://purl.obolibrary.org/obo/MONDO_0002551,c-P angle neurinoma +15.8562362,MONDO:0002706,http://purl.obolibrary.org/obo/MONDO_0002706,cervix endometriosis +15.8562362,MONDO:0002798,http://purl.obolibrary.org/obo/MONDO_0002798,childhood central nervous system primitive neuroectodermal neoplasm +15.8562362,MONDO:0002832,http://purl.obolibrary.org/obo/MONDO_0002832,endometrial transitional cell carcinoma +15.8562362,MONDO:0002945,http://purl.obolibrary.org/obo/MONDO_0002945,micronodular basal cell carcinoma +15.8562362,MONDO:0003118,http://purl.obolibrary.org/obo/MONDO_0003118,testicular Brenner tumor +15.8562362,MONDO:0003141,http://purl.obolibrary.org/obo/MONDO_0003141,cerebellopontine angle embryonal tumor +15.8562362,MONDO:0003254,http://purl.obolibrary.org/obo/MONDO_0003254,cardiac granular cell neoplasm +15.8562362,MONDO:0003280,http://purl.obolibrary.org/obo/MONDO_0003280,swayback +15.8562362,MONDO:0003285,http://purl.obolibrary.org/obo/MONDO_0003285,fallopian tube leiomyoma +15.8562362,MONDO:0003349,http://purl.obolibrary.org/obo/MONDO_0003349,central nervous system leiomyosarcoma +15.8562362,MONDO:0003410,http://purl.obolibrary.org/obo/MONDO_0003410,Wolffian duct adenocarcinoma +15.8562362,MONDO:0003411,http://purl.obolibrary.org/obo/MONDO_0003411,breast hemangiopericytoma +15.8562362,MONDO:0003434,http://purl.obolibrary.org/obo/MONDO_0003434,vaginal adenoma +15.8562362,MONDO:0003463,http://purl.obolibrary.org/obo/MONDO_0003463,ovarian endometrioid adenofibroma +15.8562362,MONDO:0003482,http://purl.obolibrary.org/obo/MONDO_0003482,Pediculus humanus corporis infestation +15.8562362,MONDO:0003549,http://purl.obolibrary.org/obo/MONDO_0003549,adenosquamous bile duct carcinoma +15.8562362,MONDO:0003589,http://purl.obolibrary.org/obo/MONDO_0003589,liposarcoma of the ovary +15.8562362,MONDO:0003635,http://purl.obolibrary.org/obo/MONDO_0003635,sebaceous breast carcinoma +15.8562362,MONDO:0003651,http://purl.obolibrary.org/obo/MONDO_0003651,macrotrabecular hepatoblastoma +15.8562362,MONDO:0003731,http://purl.obolibrary.org/obo/MONDO_0003731,adult central nervous system teratoma +15.8562362,MONDO:0003788,http://purl.obolibrary.org/obo/MONDO_0003788,childhood embryonal testis carcinoma +15.8562362,MONDO:0003819,http://purl.obolibrary.org/obo/MONDO_0003819,childhood teratoma of the ovary +15.8562362,MONDO:0003850,http://purl.obolibrary.org/obo/MONDO_0003850,clivus chondroid chordoma +15.8562362,MONDO:0003853,http://purl.obolibrary.org/obo/MONDO_0003853,Bartholin gland adenocarcinoma +15.8562362,MONDO:0003858,http://purl.obolibrary.org/obo/MONDO_0003858,anterior optic tract meningioma +15.8562362,MONDO:0003872,http://purl.obolibrary.org/obo/MONDO_0003872,ovarian papillary cystadenoma +15.8562362,MONDO:0003886,http://purl.obolibrary.org/obo/MONDO_0003886,mucinous cystadenofibroma +15.8562362,MONDO:0003887,http://purl.obolibrary.org/obo/MONDO_0003887,ovarian mucinous adenofibroma +15.8562362,MONDO:0003896,http://purl.obolibrary.org/obo/MONDO_0003896,breast capillary hemangioma +15.8562362,MONDO:0004051,http://purl.obolibrary.org/obo/MONDO_0004051,aleukemic monocytic leukemia cutis +15.8562362,MONDO:0004056,http://purl.obolibrary.org/obo/MONDO_0004056,bladder papillary urothelial carcinoma +15.8562362,MONDO:0004089,http://purl.obolibrary.org/obo/MONDO_0004089,basaloid carcinoma of the penis +15.8562362,MONDO:0004127,http://purl.obolibrary.org/obo/MONDO_0004127,lung occult adenocarcinoma +15.8562362,MONDO:0004176,http://purl.obolibrary.org/obo/MONDO_0004176,childhood extraosseous osteosarcoma +15.8562362,MONDO:0004206,http://purl.obolibrary.org/obo/MONDO_0004206,pulmonary vein leiomyosarcoma +15.8562362,MONDO:0004239,http://purl.obolibrary.org/obo/MONDO_0004239,cervical keratinizing squamous cell carcinoma +15.8562362,MONDO:0004264,http://purl.obolibrary.org/obo/MONDO_0004264,acute gonococcal endometritis +15.8562362,MONDO:0004285,http://purl.obolibrary.org/obo/MONDO_0004285,pancreatic intraductal papillary-mucinous carcinoma +15.8562362,MONDO:0004296,http://purl.obolibrary.org/obo/MONDO_0004296,cervical lymphoepithelioma-like carcinoma +15.8562362,MONDO:0004332,http://purl.obolibrary.org/obo/MONDO_0004332,lung hilum cancer +15.8562362,MONDO:0004489,http://purl.obolibrary.org/obo/MONDO_0004489,fallopian tube gestational choriocarcinoma +15.8562362,MONDO:0004499,http://purl.obolibrary.org/obo/MONDO_0004499,lung hilum carcinoma +15.8562362,MONDO:0004552,http://purl.obolibrary.org/obo/MONDO_0004552,microinvasive cervical squamous cell carcinoma +15.8562362,MONDO:0004561,http://purl.obolibrary.org/obo/MONDO_0004561,retinal melanoma +15.8562362,MONDO:0004624,http://purl.obolibrary.org/obo/MONDO_0004624,uvula cancer +15.8562362,MONDO:0004713,http://purl.obolibrary.org/obo/MONDO_0004713,lower gum cancer +15.8562362,MONDO:0004714,http://purl.obolibrary.org/obo/MONDO_0004714,atrophic muscular disease +15.8562362,MONDO:0004720,http://purl.obolibrary.org/obo/MONDO_0004720,variola minor infection +15.8562362,MONDO:0004749,http://purl.obolibrary.org/obo/MONDO_0004749,myocardium cancer +15.8562362,MONDO:0004852,http://purl.obolibrary.org/obo/MONDO_0004852,gonococcal keratitis +15.8562362,MONDO:0004853,http://purl.obolibrary.org/obo/MONDO_0004853,gonococcal endophthalmia +15.8562362,MONDO:0004920,http://purl.obolibrary.org/obo/MONDO_0004920,hydrocele +15.8562362,MONDO:0004961,http://purl.obolibrary.org/obo/MONDO_0004961,stage I endometrioid carcinoma +15.8562362,MONDO:0005195,http://purl.obolibrary.org/obo/MONDO_0005195,septic peritonitis +15.8562362,MONDO:0005367,http://purl.obolibrary.org/obo/MONDO_0005367,heroin dependence +15.8562362,MONDO:0005443,http://purl.obolibrary.org/obo/MONDO_0005443,none +15.8562362,MONDO:0005459,http://purl.obolibrary.org/obo/MONDO_0005459,human African trypanosomiasis +15.8562362,MONDO:0005476,http://purl.obolibrary.org/obo/MONDO_0005476,atrioventricular node disease +15.8562362,MONDO:0005483,http://purl.obolibrary.org/obo/MONDO_0005483,chemotherapy-induced alopecia +15.8562362,MONDO:0005684,http://purl.obolibrary.org/obo/MONDO_0005684,bulbar polio +15.8562362,MONDO:0005772,http://purl.obolibrary.org/obo/MONDO_0005772,geotrichosis +15.8562362,MONDO:0006027,http://purl.obolibrary.org/obo/MONDO_0006027,breast synovial sarcoma +15.8562362,MONDO:0006050,http://purl.obolibrary.org/obo/MONDO_0006050,pleomorphic breast carcinoma +15.8562362,MONDO:0006103,http://purl.obolibrary.org/obo/MONDO_0006103,benign adrenal gland pheochromocytoma +15.8562362,MONDO:0006132,http://purl.obolibrary.org/obo/MONDO_0006132,cervical adenoid basal carcinoma +15.8562362,MONDO:0006138,http://purl.obolibrary.org/obo/MONDO_0006138,cervical large cell neuroendocrine carcinoma +15.8562362,MONDO:0006152,http://purl.obolibrary.org/obo/MONDO_0006152,colon inflammatory polyp +15.8562362,MONDO:0006212,http://purl.obolibrary.org/obo/MONDO_0006212,flat urothelial hyperplasia +15.8562362,MONDO:0006276,http://purl.obolibrary.org/obo/MONDO_0006276,lung inflammatory myofibroblastic tumor +15.8562362,MONDO:0006307,http://purl.obolibrary.org/obo/MONDO_0006307,mixed somatotroph-lactotroph pituitary gland adenoma +15.8562362,MONDO:0006366,http://purl.obolibrary.org/obo/MONDO_0006366,Peutz-Jeghers polyp of the stomach +15.8562362,MONDO:0006392,http://purl.obolibrary.org/obo/MONDO_0006392,rectal hyperplastic polyp +15.8562362,MONDO:0006420,http://purl.obolibrary.org/obo/MONDO_0006420,small intestinal mucosa-associated lymphoid tissue lymphoma +15.8562362,MONDO:0006430,http://purl.obolibrary.org/obo/MONDO_0006430,splenic mantle cell lymphoma +15.8562362,MONDO:0006455,http://purl.obolibrary.org/obo/MONDO_0006455,thymic undifferentiated carcinoma +15.8562362,MONDO:0006463,http://purl.obolibrary.org/obo/MONDO_0006463,thyroid gland mucoepidermoid carcinoma +15.8562362,MONDO:0006484,http://purl.obolibrary.org/obo/MONDO_0006484,usual ductal breast hyperplasia +15.8562362,MONDO:0006549,http://purl.obolibrary.org/obo/MONDO_0006549,fibroepithelial polyp of the anus +15.8562362,MONDO:0006563,http://purl.obolibrary.org/obo/MONDO_0006563,inverted follicular keratosis +15.8562362,MONDO:0006780,http://purl.obolibrary.org/obo/MONDO_0006780,heartwater disease +15.8562362,MONDO:0006803,http://purl.obolibrary.org/obo/MONDO_0006803,inferior myocardial infarction +15.8562362,MONDO:0006829,http://purl.obolibrary.org/obo/MONDO_0006829,leukemoid reaction +15.8562362,MONDO:0006889,http://purl.obolibrary.org/obo/MONDO_0006889,paraphimosis +15.8562362,MONDO:0006945,http://purl.obolibrary.org/obo/MONDO_0006945,renal artery obstruction +15.8562362,MONDO:0006978,http://purl.obolibrary.org/obo/MONDO_0006978,splenic infarction +15.8562362,MONDO:0007002,http://purl.obolibrary.org/obo/MONDO_0007002,trochlear nerve disease +15.8562362,MONDO:0007038,http://purl.obolibrary.org/obo/MONDO_0007038,Achoo syndrome +15.8562362,MONDO:0007153,http://purl.obolibrary.org/obo/MONDO_0007153,"arteries, anomalies of" +15.8562362,MONDO:0007205,http://purl.obolibrary.org/obo/MONDO_0007205,diaphyseal medullary stenosis-bone malignancy syndrome +15.8562362,MONDO:0007216,http://purl.obolibrary.org/obo/MONDO_0007216,brachydactyly type A2 +15.8562362,MONDO:0007226,http://purl.obolibrary.org/obo/MONDO_0007226,brachydactyly-nystagmus-cerebellar ataxia syndrome +15.8562362,MONDO:0007248,http://purl.obolibrary.org/obo/MONDO_0007248,hereditary painful callosities +15.8562362,MONDO:0007269,http://purl.obolibrary.org/obo/MONDO_0007269,dilated cardiomyopathy 1A +15.8562362,MONDO:0007282,http://purl.obolibrary.org/obo/MONDO_0007282,cataract 29 +15.8562362,MONDO:0007305,http://purl.obolibrary.org/obo/MONDO_0007305,cervical vertebral dysplasia +15.8562362,MONDO:0007334,http://purl.obolibrary.org/obo/MONDO_0007334,autosomal dominant popliteal pterygium syndrome +15.8562362,MONDO:0007353,http://purl.obolibrary.org/obo/MONDO_0007353,coloboma of macula-brachydactyly type B syndrome +15.8562362,MONDO:0007356,http://purl.obolibrary.org/obo/MONDO_0007356,Lynch syndrome 1 +15.8562362,MONDO:0007411,http://purl.obolibrary.org/obo/MONDO_0007411,"cutis laxa, autosomal dominant 1" +15.8562362,MONDO:0007570,http://purl.obolibrary.org/obo/MONDO_0007570,erythema palmare hereditarium +15.8562362,MONDO:0007796,http://purl.obolibrary.org/obo/MONDO_0007796,"hypoparathyroidism, familial isolated 1" +15.8562362,MONDO:0007809,http://purl.obolibrary.org/obo/MONDO_0007809,ichthyosis hystrix gravior +15.8562362,MONDO:0007944,http://purl.obolibrary.org/obo/MONDO_0007944,Treacher-Collins syndrome 1 +15.8562362,MONDO:0007974,http://purl.obolibrary.org/obo/MONDO_0007974,"intellectual disability, autosomal dominant 1" +15.8562362,MONDO:0007994,http://purl.obolibrary.org/obo/MONDO_0007994,micromelic bone dysplasia with cloverleaf skull +15.8562362,MONDO:0008014,http://purl.obolibrary.org/obo/MONDO_0008014,nondisjunction +15.8562362,MONDO:0008083,http://purl.obolibrary.org/obo/MONDO_0008083,neuronal ceroid lipofuscinosis 4B +15.8562362,MONDO:0008112,http://purl.obolibrary.org/obo/MONDO_0008112,none +15.8562362,MONDO:0008123,http://purl.obolibrary.org/obo/MONDO_0008123,autosomal dominant omodysplasia +15.8562362,MONDO:0008155,http://purl.obolibrary.org/obo/MONDO_0008155,osteomesopyknosis +15.8562362,MONDO:0008187,http://purl.obolibrary.org/obo/MONDO_0008187,panic disorder 1 +15.8562362,MONDO:0008213,http://purl.obolibrary.org/obo/MONDO_0008213,pectus excavatum +15.8562362,MONDO:0008376,http://purl.obolibrary.org/obo/MONDO_0008376,retinal venous beading +15.8562362,MONDO:0008396,http://purl.obolibrary.org/obo/MONDO_0008396,"oculodental syndrome, Rutherfurd type" +15.8562362,MONDO:0008397,http://purl.obolibrary.org/obo/MONDO_0008397,aplasia of lacrimal and salivary glands +15.8562362,MONDO:0008475,http://purl.obolibrary.org/obo/MONDO_0008475,spondylolisthesis +15.8562362,MONDO:0008557,http://purl.obolibrary.org/obo/MONDO_0008557,Paris-Trousseau thrombocytopenia +15.8562362,MONDO:0008607,http://purl.obolibrary.org/obo/MONDO_0008607,triphalangeal thumbs-brachyectrodactyly syndrome +15.8562362,MONDO:0008652,http://purl.obolibrary.org/obo/MONDO_0008652,congenital vertical talus +15.8562362,MONDO:0008755,http://purl.obolibrary.org/obo/MONDO_0008755,Moynahan syndrome +15.8562362,MONDO:0008834,http://purl.obolibrary.org/obo/MONDO_0008834,"asthma, nasal polyps, and aspirin intolerance" +15.8562362,MONDO:0008942,http://purl.obolibrary.org/obo/MONDO_0008942,cerebelloparenchymal disorder II +15.8562362,MONDO:0008944,http://purl.obolibrary.org/obo/MONDO_0008944,Joubert syndrome 1 +15.8562362,MONDO:0009028,http://purl.obolibrary.org/obo/MONDO_0009028,Crane-Heise syndrome +15.8562362,MONDO:0009042,http://purl.obolibrary.org/obo/MONDO_0009042,craniotelencephalic dysplasia +15.8562362,MONDO:0009205,http://purl.obolibrary.org/obo/MONDO_0009205,faciocardiorenal syndrome +15.8562362,MONDO:0009268,http://purl.obolibrary.org/obo/MONDO_0009268,Gaucher disease-ophthalmoplegia-cardiovascular calcification syndrome +15.8562362,MONDO:0009269,http://purl.obolibrary.org/obo/MONDO_0009269,geleophysic dysplasia 1 +15.8562362,MONDO:0009311,http://purl.obolibrary.org/obo/MONDO_0009311,grouped pigmentation of the retina +15.8562362,MONDO:0009372,http://purl.obolibrary.org/obo/MONDO_0009372,encephalopathy due to hydroxykynureninuria +15.8562362,MONDO:0009383,http://purl.obolibrary.org/obo/MONDO_0009383,transient familial neonatal hyperbilirubinemia +15.8562362,MONDO:0009477,http://purl.obolibrary.org/obo/MONDO_0009477,Stromme syndrome +15.8562362,MONDO:0009493,http://purl.obolibrary.org/obo/MONDO_0009493,Richards-Rundle syndrome +15.8562362,MONDO:0009542,http://purl.obolibrary.org/obo/MONDO_0009542,lysine malabsorption syndrome +15.8562362,MONDO:0009577,http://purl.obolibrary.org/obo/MONDO_0009577,megalocornea-intellectual disability syndrome +15.8562362,MONDO:0009618,http://purl.obolibrary.org/obo/MONDO_0009618,microcephaly-cardiomyopathy syndrome +15.8562362,MONDO:0009622,http://purl.obolibrary.org/obo/MONDO_0009622,Jawad syndrome +15.8562362,MONDO:0009724,http://purl.obolibrary.org/obo/MONDO_0009724,nail-patella-like renal disease +15.8562362,MONDO:0009733,http://purl.obolibrary.org/obo/MONDO_0009733,"nephrotic syndrome, type 4" +15.8562362,MONDO:0009805,http://purl.obolibrary.org/obo/MONDO_0009805,osteogenesis imperfecta type 9 +15.8562362,MONDO:0009843,http://purl.obolibrary.org/obo/MONDO_0009843,hypomyelinating leukodystrophy 3 +15.8562362,MONDO:0009879,http://purl.obolibrary.org/obo/MONDO_0009879,short stature due to growth hormone qualitative anomaly +15.8562362,MONDO:0010090,http://purl.obolibrary.org/obo/MONDO_0010090,Summitt syndrome +15.8562362,MONDO:0010143,http://purl.obolibrary.org/obo/MONDO_0010143,lethal restrictive dermopathy +15.8562362,MONDO:0010163,http://purl.obolibrary.org/obo/MONDO_0010163,Tyrosinosis +15.8562362,MONDO:0010178,http://purl.obolibrary.org/obo/MONDO_0010178,congenital bilateral aplasia of vas deferens from CFTR mutation +15.8562362,MONDO:0010194,http://purl.obolibrary.org/obo/MONDO_0010194,Weill-Marchesani syndrome 1 +15.8562362,MONDO:0010224,http://purl.obolibrary.org/obo/MONDO_0010224,corpus callosum agenesis-abnormal genitalia syndrome +15.8562362,MONDO:0010246,http://purl.obolibrary.org/obo/MONDO_0010246,"developmental and epileptic encephalopathy, 9" +15.8562362,MONDO:0010294,http://purl.obolibrary.org/obo/MONDO_0010294,X-linked severe congenital neutropenia +15.8562362,MONDO:0010303,http://purl.obolibrary.org/obo/MONDO_0010303,none +15.8562362,MONDO:0010323,http://purl.obolibrary.org/obo/MONDO_0010323,Atkin-Flaitz syndrome +15.8562362,MONDO:0010417,http://purl.obolibrary.org/obo/MONDO_0010417,syndromic X-linked intellectual disability Najm type +15.8562362,MONDO:0010431,http://purl.obolibrary.org/obo/MONDO_0010431,Joubert syndrome 10 +15.8562362,MONDO:0010482,http://purl.obolibrary.org/obo/MONDO_0010482,X-linked parkinsonism-spasticity syndrome +15.8562362,MONDO:0010498,http://purl.obolibrary.org/obo/MONDO_0010498,MEND syndrome +15.8562362,MONDO:0010521,http://purl.obolibrary.org/obo/MONDO_0010521,amelogenesis imperfecta type 1E +15.8562362,MONDO:0010682,http://purl.obolibrary.org/obo/MONDO_0010682,"myoclonic epilepsy, progressive, X-linked" +15.8562362,MONDO:0010728,http://purl.obolibrary.org/obo/MONDO_0010728,SCARF syndrome +15.8562362,MONDO:0010806,http://purl.obolibrary.org/obo/MONDO_0010806,retinitis pigmentosa 13 +15.8562362,MONDO:0010849,http://purl.obolibrary.org/obo/MONDO_0010849,"palmoplantar keratoderma, Bothnian type" +15.8562362,MONDO:0010860,http://purl.obolibrary.org/obo/MONDO_0010860,autosomal recessive nonsyndromic deafness 3 +15.8562362,MONDO:0010862,http://purl.obolibrary.org/obo/MONDO_0010862,type 1 diabetes mellitus 4 +15.8562362,MONDO:0010863,http://purl.obolibrary.org/obo/MONDO_0010863,type 1 diabetes mellitus 5 +15.8562362,MONDO:0010878,http://purl.obolibrary.org/obo/MONDO_0010878,hereditary spastic paraplegia 6 +15.8562362,MONDO:0010887,http://purl.obolibrary.org/obo/MONDO_0010887,isolated anterior cervical hypertrichosis +15.8562362,MONDO:0010895,http://purl.obolibrary.org/obo/MONDO_0010895,ABCD syndrome +15.8562362,MONDO:0010945,http://purl.obolibrary.org/obo/MONDO_0010945,retinitis pigmentosa 17 +15.8562362,MONDO:0010946,http://purl.obolibrary.org/obo/MONDO_0010946,hypertrophic cardiomyopathy 6 +15.8562362,MONDO:0010950,http://purl.obolibrary.org/obo/MONDO_0010950,type 1 diabetes mellitus 8 +15.8562362,MONDO:0010965,http://purl.obolibrary.org/obo/MONDO_0010965,autosomal recessive nonsyndromic deafness 6 +15.8562362,MONDO:0010969,http://purl.obolibrary.org/obo/MONDO_0010969,cone-rod dystrophy 5 +15.8562362,MONDO:0010973,http://purl.obolibrary.org/obo/MONDO_0010973,autosomal dominant nonsyndromic deafness 5 +15.8562362,MONDO:0011031,http://purl.obolibrary.org/obo/MONDO_0011031,autosomal dominant nonsyndromic deafness 10 +15.8562362,MONDO:0011059,http://purl.obolibrary.org/obo/MONDO_0011059,holoprosencephaly-craniosynostosis syndrome +15.8562362,MONDO:0011067,http://purl.obolibrary.org/obo/MONDO_0011067,autosomal recessive nonsyndromic deafness 12 +15.8562362,MONDO:0011075,http://purl.obolibrary.org/obo/MONDO_0011075,retinitis pigmentosa 18 +15.8562362,MONDO:0011114,http://purl.obolibrary.org/obo/MONDO_0011114,familial multiple trichoepithelioma +15.8562362,MONDO:0011143,http://purl.obolibrary.org/obo/MONDO_0011143,cone-rod dystrophy 6 +15.8562362,MONDO:0011166,http://purl.obolibrary.org/obo/MONDO_0011166,lymphedema-atrial septal defects-facial changes syndrome +15.8562362,MONDO:0011167,http://purl.obolibrary.org/obo/MONDO_0011167,type 1 diabetes mellitus 6 +15.8562362,MONDO:0011193,http://purl.obolibrary.org/obo/MONDO_0011193,cone dystrophy 3 +15.8562362,MONDO:0011221,http://purl.obolibrary.org/obo/MONDO_0011221,Weyers ulnar ray/oligodactyly syndrome +15.8562362,MONDO:0011253,http://purl.obolibrary.org/obo/MONDO_0011253,craniomicromelic syndrome +15.8562362,MONDO:0011318,http://purl.obolibrary.org/obo/MONDO_0011318,Tonoki syndrome +15.8562362,MONDO:0011395,http://purl.obolibrary.org/obo/MONDO_0011395,cone-rod dystrophy 3 +15.8562362,MONDO:0011422,http://purl.obolibrary.org/obo/MONDO_0011422,autosomal recessive proximal renal tubular acidosis +15.8562362,MONDO:0011456,http://purl.obolibrary.org/obo/MONDO_0011456,nephronophthisis 3 +15.8562362,MONDO:0011458,http://purl.obolibrary.org/obo/MONDO_0011458,Leber congenital amaurosis 4 +15.8562362,MONDO:0011484,http://purl.obolibrary.org/obo/MONDO_0011484,catecholaminergic polymorphic ventricular tachycardia 1 +15.8562362,MONDO:0011530,http://purl.obolibrary.org/obo/MONDO_0011530,"mesomelic dysplasia, Savarirayan type" +15.8562362,MONDO:0011537,http://purl.obolibrary.org/obo/MONDO_0011537,macrocephaly-autism syndrome +15.8562362,MONDO:0011558,http://purl.obolibrary.org/obo/MONDO_0011558,Usher syndrome type 2C +15.8562362,MONDO:0011590,http://purl.obolibrary.org/obo/MONDO_0011590,anisomastia +15.8562362,MONDO:0011609,http://purl.obolibrary.org/obo/MONDO_0011609,atopic dermatitis 6 +15.8562362,MONDO:0011630,http://purl.obolibrary.org/obo/MONDO_0011630,retinitis pigmentosa 28 +15.8562362,MONDO:0011637,http://purl.obolibrary.org/obo/MONDO_0011637,Sener syndrome +15.8562362,MONDO:0011681,http://purl.obolibrary.org/obo/MONDO_0011681,episodic ataxia type 4 +15.8562362,MONDO:0011713,http://purl.obolibrary.org/obo/MONDO_0011713,melanoma-pancreatic cancer syndrome +15.8562362,MONDO:0011723,http://purl.obolibrary.org/obo/MONDO_0011723,hemifacial myohyperplasia +15.8562362,MONDO:0011808,http://purl.obolibrary.org/obo/MONDO_0011808,cataract 27 +15.8562362,MONDO:0011907,http://purl.obolibrary.org/obo/MONDO_0011907,acrocapitofemoral dysplasia +15.8562362,MONDO:0011963,http://purl.obolibrary.org/obo/MONDO_0011963,Joubert syndrome 2 +15.8562362,MONDO:0011964,http://purl.obolibrary.org/obo/MONDO_0011964,DPAGT1-CDG +15.8562362,MONDO:0012062,http://purl.obolibrary.org/obo/MONDO_0012062,dilated cardiomyopathy 1O +15.8562362,MONDO:0012100,http://purl.obolibrary.org/obo/MONDO_0012100,major depressive disorder 2 +15.8562362,MONDO:0012143,http://purl.obolibrary.org/obo/MONDO_0012143,hereditary cryohydrocytosis with reduced stomatin +15.8562362,MONDO:0012164,http://purl.obolibrary.org/obo/MONDO_0012164,Meacham syndrome +15.8562362,MONDO:0012165,http://purl.obolibrary.org/obo/MONDO_0012165,BNAR syndrome +15.8562362,MONDO:0012217,http://purl.obolibrary.org/obo/MONDO_0012217,Bruck syndrome 2 +15.8562362,MONDO:0012231,http://purl.obolibrary.org/obo/MONDO_0012231,Charcot-Marie-Tooth disease type 2A2 +15.8562362,MONDO:0012237,http://purl.obolibrary.org/obo/MONDO_0012237,nemaline myopathy 6 +15.8562362,MONDO:0012239,http://purl.obolibrary.org/obo/MONDO_0012239,nemaline myopathy 1 +15.8562362,MONDO:0012252,http://purl.obolibrary.org/obo/MONDO_0012252,rhabdoid tumor predisposition syndrome 1 +15.8562362,MONDO:0012260,http://purl.obolibrary.org/obo/MONDO_0012260,cataract 35 +15.8562362,MONDO:0012423,http://purl.obolibrary.org/obo/MONDO_0012423,MORM syndrome +15.8562362,MONDO:0012444,http://purl.obolibrary.org/obo/MONDO_0012444,neurodegeneration with brain iron accumulation 2B +15.8562362,MONDO:0012445,http://purl.obolibrary.org/obo/MONDO_0012445,autosomal recessive nonsyndromic deafness 59 +15.8562362,MONDO:0012556,http://purl.obolibrary.org/obo/MONDO_0012556,DK1-CDG +15.8562362,MONDO:0012565,http://purl.obolibrary.org/obo/MONDO_0012565,Fanconi anemia complementation group N +15.8562362,MONDO:0012596,http://purl.obolibrary.org/obo/MONDO_0012596,PSAT deficiency +15.8562362,MONDO:0012611,http://purl.obolibrary.org/obo/MONDO_0012611,"polyhydramnios, megalencephaly, and symptomatic epilepsy" +15.8562362,MONDO:0012674,http://purl.obolibrary.org/obo/MONDO_0012674,age related macular degeneration 10 +15.8562362,MONDO:0012714,http://purl.obolibrary.org/obo/MONDO_0012714,early-onset myopathy with fatal cardiomyopathy +15.8562362,MONDO:0012728,http://purl.obolibrary.org/obo/MONDO_0012728,Brugada syndrome 2 +15.8562362,MONDO:0012736,http://purl.obolibrary.org/obo/MONDO_0012736,long QT syndrome 9 +15.8562362,MONDO:0012767,http://purl.obolibrary.org/obo/MONDO_0012767,age related macular degeneration 11 +15.8562362,MONDO:0012787,http://purl.obolibrary.org/obo/MONDO_0012787,hereditary spastic paraplegia 39 +15.8562362,MONDO:0012824,http://purl.obolibrary.org/obo/MONDO_0012824,hypomyelinating leukodystrophy 4 +15.8562362,MONDO:0012832,http://purl.obolibrary.org/obo/MONDO_0012832,inflammatory bowel disease 14 +15.8562362,MONDO:0012840,http://purl.obolibrary.org/obo/MONDO_0012840,inflammatory bowel disease 17 +15.8562362,MONDO:0012852,http://purl.obolibrary.org/obo/MONDO_0012852,inflammatory bowel disease 20 +15.8562362,MONDO:0012853,http://purl.obolibrary.org/obo/MONDO_0012853,Fontaine progeroid syndrome +15.8562362,MONDO:0012875,http://purl.obolibrary.org/obo/MONDO_0012875,inflammatory bowel disease 21 +15.8562362,MONDO:0012921,http://purl.obolibrary.org/obo/MONDO_0012921,type 1 diabetes mellitus 22 +15.8562362,MONDO:0012940,http://purl.obolibrary.org/obo/MONDO_0012940,inflammatory bowel disease 24 +15.8562362,MONDO:0012982,http://purl.obolibrary.org/obo/MONDO_0012982,episodic ataxia type 6 +15.8562362,MONDO:0013046,http://purl.obolibrary.org/obo/MONDO_0013046,glycogen storage disease due to muscle beta-enolase deficiency +15.8562362,MONDO:0013061,http://purl.obolibrary.org/obo/MONDO_0013061,myofibrillar myopathy 6 +15.8562362,MONDO:0013090,http://purl.obolibrary.org/obo/MONDO_0013090,chromosome 19q13.11 deletion syndrome +15.8562362,MONDO:0013107,http://purl.obolibrary.org/obo/MONDO_0013107,atopic dermatitis 7 +15.8562362,MONDO:0013153,http://purl.obolibrary.org/obo/MONDO_0013153,inflammatory bowel disease 28 +15.8562362,MONDO:0013234,http://purl.obolibrary.org/obo/MONDO_0013234,"hypokalemic periodic paralysis, type 2" +15.8562362,MONDO:0013248,http://purl.obolibrary.org/obo/MONDO_0013248,Fanconi anemia complementation group O +15.8562362,MONDO:0013307,http://purl.obolibrary.org/obo/MONDO_0013307,"myopathy, lactic acidosis, and sideroblastic anemia 2" +15.8562362,MONDO:0013355,http://purl.obolibrary.org/obo/MONDO_0013355,congenital dyserythropoietic anemia type 4 +15.8562362,MONDO:0013392,http://purl.obolibrary.org/obo/MONDO_0013392,autosomal recessive spinocerebellar ataxia 10 +15.8562362,MONDO:0013437,http://purl.obolibrary.org/obo/MONDO_0013437,retinitis pigmentosa 43 +15.8562362,MONDO:0013445,http://purl.obolibrary.org/obo/MONDO_0013445,complement component 9 deficiency +15.8562362,MONDO:0013458,http://purl.obolibrary.org/obo/MONDO_0013458,hyperuricemia-pulmonary hypertension-renal failure-alkalosis syndrome +15.8562362,MONDO:0013499,http://purl.obolibrary.org/obo/MONDO_0013499,Fanconi anemia complementation group P +15.8562362,MONDO:0013558,http://purl.obolibrary.org/obo/MONDO_0013558,Hermansky-Pudlak syndrome 6 +15.8562362,MONDO:0013572,http://purl.obolibrary.org/obo/MONDO_0013572,Keppen-Lubinsky syndrome +15.8562362,MONDO:0013612,http://purl.obolibrary.org/obo/MONDO_0013612,Geleophysic dysplasia 2 +15.8562362,MONDO:0013623,http://purl.obolibrary.org/obo/MONDO_0013623,platelet-type bleeding disorder 11 +15.8562362,MONDO:0013661,http://purl.obolibrary.org/obo/MONDO_0013661,combined malonic and methylmalonic acidemia +15.8562362,MONDO:0013673,http://purl.obolibrary.org/obo/MONDO_0013673,Wolfram-like syndrome +15.8562362,MONDO:0013717,http://purl.obolibrary.org/obo/MONDO_0013717,asphyxiating thoracic dystrophy 5 +15.8562362,MONDO:0013744,http://purl.obolibrary.org/obo/MONDO_0013744,cataract 37 +15.8562362,MONDO:0013794,http://purl.obolibrary.org/obo/MONDO_0013794,thrombocythemia 3 +15.8562362,MONDO:0013802,http://purl.obolibrary.org/obo/MONDO_0013802,infantile cerebellar-retinal degeneration +15.8562362,MONDO:0013839,http://purl.obolibrary.org/obo/MONDO_0013839,hereditary sensory and autonomic neuropathy type 6 +15.8562362,MONDO:0013864,http://purl.obolibrary.org/obo/MONDO_0013864,Cornelia de Lange syndrome 4 +15.8562362,MONDO:0013885,http://purl.obolibrary.org/obo/MONDO_0013885,Malan overgrowth syndrome +15.8562362,MONDO:0013891,http://purl.obolibrary.org/obo/MONDO_0013891,amyotrophic lateral sclerosis type 18 +15.8562362,MONDO:0013897,http://purl.obolibrary.org/obo/MONDO_0013897,Loeys-Dietz syndrome 4 +15.8562362,MONDO:0013918,http://purl.obolibrary.org/obo/MONDO_0013918,distal tetrasomy 15q +15.8562362,MONDO:0013944,http://purl.obolibrary.org/obo/MONDO_0013944,autoinflammation-PLCG2-associated antibody deficiency-immune dysregulation +15.8562362,MONDO:0013959,http://purl.obolibrary.org/obo/MONDO_0013959,Charcot-Marie-Tooth disease type 4F +15.8562362,MONDO:0013960,http://purl.obolibrary.org/obo/MONDO_0013960,sinoatrial node dysfunction and deafness +15.8562362,MONDO:0013996,http://purl.obolibrary.org/obo/MONDO_0013996,focal facial dermal dysplasia type II +15.8562362,MONDO:0013997,http://purl.obolibrary.org/obo/MONDO_0013997,focal facial dermal dysplasia type IV +15.8562362,MONDO:0014118,http://purl.obolibrary.org/obo/MONDO_0014118,congenital neutropenia-myelofibrosis-nephromegaly syndrome +15.8562362,MONDO:0014143,http://purl.obolibrary.org/obo/MONDO_0014143,Noonan syndrome 8 +15.8562362,MONDO:0014150,http://purl.obolibrary.org/obo/MONDO_0014150,childhood onset epileptic encephalopathy +15.8562362,MONDO:0014244,http://purl.obolibrary.org/obo/MONDO_0014244,hereditary sensory and autonomic neuropathy type 7 +15.8562362,MONDO:0014294,http://purl.obolibrary.org/obo/MONDO_0014294,chromosome 15q11.2 deletion syndrome +15.8562362,MONDO:0014339,http://purl.obolibrary.org/obo/MONDO_0014339,autosomal recessive spinocerebellar ataxia 16 +15.8562362,MONDO:0014439,http://purl.obolibrary.org/obo/MONDO_0014439,Bardet-Biedl syndrome 11 +15.8562362,MONDO:0014500,http://purl.obolibrary.org/obo/MONDO_0014500,atrial conduction disease +15.8562362,MONDO:0014521,http://purl.obolibrary.org/obo/MONDO_0014521,progressive myoclonic epilepsy type 7 +15.8562362,MONDO:0014522,http://purl.obolibrary.org/obo/MONDO_0014522,retinal dystrophy and obesity +15.8562362,MONDO:0014554,http://purl.obolibrary.org/obo/MONDO_0014554,infantile multisystem neurologic-endocrine-pancreatic disease +15.8562362,MONDO:0014555,http://purl.obolibrary.org/obo/MONDO_0014555,peeling skin syndrome type A +15.8562362,MONDO:0014565,http://purl.obolibrary.org/obo/MONDO_0014565,cataract 43 +15.8562362,MONDO:0014566,http://purl.obolibrary.org/obo/MONDO_0014566,Charcot-Marie-Tooth disease axonal type 2U +15.8562362,MONDO:0014609,http://purl.obolibrary.org/obo/MONDO_0014609,cognitive impairment - coarse facies - heart defects - obesity - pulmonary involvement - short stature - skeletal dysplasia syndrome +15.8562362,MONDO:0014659,http://purl.obolibrary.org/obo/MONDO_0014659,infantile liver failure syndrome 2 +15.8562362,MONDO:0014662,http://purl.obolibrary.org/obo/MONDO_0014662,congenital insensitivity to pain-hypohidrosis syndrome +15.8562362,MONDO:0014673,http://purl.obolibrary.org/obo/MONDO_0014673,cataract 44 +15.8562362,MONDO:0014700,http://purl.obolibrary.org/obo/MONDO_0014700,neurodevelopmental disorder-craniofacial dysmorphism-cardiac defect-hip dysplasia syndrome due to a point mutation +15.8562362,MONDO:0014716,http://purl.obolibrary.org/obo/MONDO_0014716,macrocephaly-intellectual disability-neurodevelopmental disorder-small thorax syndrome +15.8562362,MONDO:0014741,http://purl.obolibrary.org/obo/MONDO_0014741,facial dysmorphism-developmental delay-behavioral abnormalities syndrome due to WAC point mutation +15.8562362,MONDO:0014746,http://purl.obolibrary.org/obo/MONDO_0014746,SLC39A8-CDG +15.8562362,MONDO:0014778,http://purl.obolibrary.org/obo/MONDO_0014778,Lamb-Shaffer syndrome +15.8562362,MONDO:0014881,http://purl.obolibrary.org/obo/MONDO_0014881,transketolase deficiency +15.8562362,MONDO:0014920,http://purl.obolibrary.org/obo/MONDO_0014920,patterned macular dystrophy 3 +15.8562362,MONDO:0014944,http://purl.obolibrary.org/obo/MONDO_0014944,short stature-brachydactyly-obesity-global developmental delay syndrome +15.8562362,MONDO:0014957,http://purl.obolibrary.org/obo/MONDO_0014957,language delay and attention deficit-hyperactivity disorder/cognitive impairment with or without cardiac arrhythmia +15.8562362,MONDO:0014969,http://purl.obolibrary.org/obo/MONDO_0014969,isolated sedoheptulokinase deficiency +15.8562362,MONDO:0015019,http://purl.obolibrary.org/obo/MONDO_0015019,susceptibility to Yao syndrome +15.8562362,MONDO:0015023,http://purl.obolibrary.org/obo/MONDO_0015023,MYPN-related myopathy +15.8562362,MONDO:0015029,http://purl.obolibrary.org/obo/MONDO_0015029,reticular perineurioma +15.8562362,MONDO:0015069,http://purl.obolibrary.org/obo/MONDO_0015069,neuroendocrine tumor of the anal canal +15.8562362,MONDO:0015073,http://purl.obolibrary.org/obo/MONDO_0015073,"gallbladder neuroendocrine tumor, grade 1/2" +15.8562362,MONDO:0015090,http://purl.obolibrary.org/obo/MONDO_0015090,autosomal recessive pure spastic paraplegia +15.8562362,MONDO:0015166,http://purl.obolibrary.org/obo/MONDO_0015166,acute myeloid leukemia with t(8;21)(q22;q22) translocation +15.8562362,MONDO:0015271,http://purl.obolibrary.org/obo/MONDO_0015271,idiopathic camptocormia +15.8562362,MONDO:0015348,http://purl.obolibrary.org/obo/MONDO_0015348,leukoencephalopathy with bilateral anterior temporal lobe cysts +15.8562362,MONDO:0015352,http://purl.obolibrary.org/obo/MONDO_0015352,distal hereditary motor neuropathy type 2 +15.8562362,MONDO:0015367,http://purl.obolibrary.org/obo/MONDO_0015367,Charlie M syndrome +15.8562362,MONDO:0015640,http://purl.obolibrary.org/obo/MONDO_0015640,benign infantile seizures associated with mild gastroenteritis +15.8562362,MONDO:0015643,http://purl.obolibrary.org/obo/MONDO_0015643,photosensitive epilepsy +15.8562362,MONDO:0015763,http://purl.obolibrary.org/obo/MONDO_0015763,mosaic trisomy 2 +15.8562362,MONDO:0016004,http://purl.obolibrary.org/obo/MONDO_0016004,aminopterin/methotrexate embryofetopathy +15.8562362,MONDO:0016057,http://purl.obolibrary.org/obo/MONDO_0016057,isolated encephalocele +15.8562362,MONDO:0016142,http://purl.obolibrary.org/obo/MONDO_0016142,qualitative or quantitative defects of beta-sarcoglycan +15.8562362,MONDO:0016162,http://purl.obolibrary.org/obo/MONDO_0016162,bilateral frontal polymicrogyria +15.8562362,MONDO:0016211,http://purl.obolibrary.org/obo/MONDO_0016211,non-papillary transitional cell carcinoma of the bladder +15.8562362,MONDO:0016267,http://purl.obolibrary.org/obo/MONDO_0016267,undifferentiated carcinoma of the corpus uteri +15.8562362,MONDO:0016272,http://purl.obolibrary.org/obo/MONDO_0016272,transitional cell carcinoma of the corpus uteri +15.8562362,MONDO:0016284,http://purl.obolibrary.org/obo/MONDO_0016284,primitive neuroectodermal tumor of the cervix uteri +15.8562362,MONDO:0016316,http://purl.obolibrary.org/obo/MONDO_0016316,"mucopolysaccharidosis type 2, attenuated form" +15.8562362,MONDO:0016371,http://purl.obolibrary.org/obo/MONDO_0016371,combined hyperactive dysfunction syndrome of the cranial nerves +15.8562362,MONDO:0016377,http://purl.obolibrary.org/obo/MONDO_0016377,Pitt-Hopkins-like syndrome +15.8562362,MONDO:0016379,http://purl.obolibrary.org/obo/MONDO_0016379,erosive pustular dermatosis of the scalp +15.8562362,MONDO:0016439,http://purl.obolibrary.org/obo/MONDO_0016439,elastoderma +15.8562362,MONDO:0016446,http://purl.obolibrary.org/obo/MONDO_0016446,acquired cutis laxa +15.8562362,MONDO:0016509,http://purl.obolibrary.org/obo/MONDO_0016509,microcornea-posterior megalolenticonus-persistent fetal vasculature-coloboma syndrome +15.8562362,MONDO:0016607,http://purl.obolibrary.org/obo/MONDO_0016607,odontohypophosphatasia +15.8562362,MONDO:0016651,http://purl.obolibrary.org/obo/MONDO_0016651,maternal uniparental disomy of chromosome 1 +15.8562362,MONDO:0016810,http://purl.obolibrary.org/obo/MONDO_0016810,autosomal recessive progressive external ophthalmoplegia +15.8562362,MONDO:0016831,http://purl.obolibrary.org/obo/MONDO_0016831,linear verrucous nevus syndrome +15.8562362,MONDO:0016848,http://purl.obolibrary.org/obo/MONDO_0016848,juvenile temporal arteritis +15.8562362,MONDO:0016917,http://purl.obolibrary.org/obo/MONDO_0016917,partial deletion of the long arm of chromosome 19 +15.8562362,MONDO:0016928,http://purl.obolibrary.org/obo/MONDO_0016928,partial duplication of chromosome 7 +15.8562362,MONDO:0016991,http://purl.obolibrary.org/obo/MONDO_0016991,acute necrotizing encephalopathy of childhood +15.8562362,MONDO:0016996,http://purl.obolibrary.org/obo/MONDO_0016996,NK-cell enteropathy +15.8562362,MONDO:0017047,http://purl.obolibrary.org/obo/MONDO_0017047,infantile axonal neuropathy +15.8562362,MONDO:0017055,http://purl.obolibrary.org/obo/MONDO_0017055,mycophenolate mofetil embryopathy +15.8562362,MONDO:0017202,http://purl.obolibrary.org/obo/MONDO_0017202,acute endophthalmitis +15.8562362,MONDO:0017225,http://purl.obolibrary.org/obo/MONDO_0017225,null syndrome +15.8562362,MONDO:0017410,http://purl.obolibrary.org/obo/MONDO_0017410,porencephaly +15.8562362,MONDO:0017476,http://purl.obolibrary.org/obo/MONDO_0017476,upper limb hypertrophy +15.8562362,MONDO:0017649,http://purl.obolibrary.org/obo/MONDO_0017649,hemidystonia-hemiatrophy syndrome +15.8562362,MONDO:0017728,http://purl.obolibrary.org/obo/MONDO_0017728,"Tay-Sachs disease, B1 variant" +15.8562362,MONDO:0017737,http://purl.obolibrary.org/obo/MONDO_0017737,intermediate severe Salla disease +15.8562362,MONDO:0017803,http://purl.obolibrary.org/obo/MONDO_0017803,primary progressive apraxia of speech +15.8562362,MONDO:0017871,http://purl.obolibrary.org/obo/MONDO_0017871,bilateral massive adrenal hemorrhage +15.8562362,MONDO:0017956,http://purl.obolibrary.org/obo/MONDO_0017956,mixed autoinflammatory and autoimmune syndrome +15.8562362,MONDO:0018021,http://purl.obolibrary.org/obo/MONDO_0018021,hypotrichosis-deafness syndrome +15.8562362,MONDO:0018023,http://purl.obolibrary.org/obo/MONDO_0018023,hemoglobin M disease +15.8562362,MONDO:0018030,http://purl.obolibrary.org/obo/MONDO_0018030,tetrasomy 9p +15.8562362,MONDO:0018084,http://purl.obolibrary.org/obo/MONDO_0018084,Uhl anomaly +15.8562362,MONDO:0018114,http://purl.obolibrary.org/obo/MONDO_0018114,isolated brachycephaly +15.8562362,MONDO:0018144,http://purl.obolibrary.org/obo/MONDO_0018144,congenital myasthenic syndromes with glycosylation defect +15.8562362,MONDO:0018180,http://purl.obolibrary.org/obo/MONDO_0018180,staphylococcal scarlet fever +15.8562362,MONDO:0018183,http://purl.obolibrary.org/obo/MONDO_0018183,staphylococcal necrotizing pneumonia +15.8562362,MONDO:0018623,http://purl.obolibrary.org/obo/MONDO_0018623,postpartum psychosis +15.8562362,MONDO:0018647,http://purl.obolibrary.org/obo/MONDO_0018647,secondary sclerosing cholangitis +15.8562362,MONDO:0018662,http://purl.obolibrary.org/obo/MONDO_0018662,autosomal recessive brachyolmia +15.8562362,MONDO:0018668,http://purl.obolibrary.org/obo/MONDO_0018668,scedosporiosis +15.8562362,MONDO:0018681,http://purl.obolibrary.org/obo/MONDO_0018681,neurodevelopmental disorder-craniofacial dysmorphism-cardiac defect-hip dysplasia syndrome +15.8562362,MONDO:0018760,http://purl.obolibrary.org/obo/MONDO_0018760,WAC-related facial dysmorphism-developmental delay-behavioral abnormalities syndrome +15.8562362,MONDO:0018804,http://purl.obolibrary.org/obo/MONDO_0018804,MYO5B-related progressive familial intrahepatic cholestasis +15.8562362,MONDO:0018827,http://purl.obolibrary.org/obo/MONDO_0018827,familial chilblain lupus +15.8562362,MONDO:0019075,http://purl.obolibrary.org/obo/MONDO_0019075,Bosley-Salih-Alorainy syndrome +15.8562362,MONDO:0019138,http://purl.obolibrary.org/obo/MONDO_0019138,bleeding diathesis due to a collagen receptor defect +15.8562362,MONDO:0019414,http://purl.obolibrary.org/obo/MONDO_0019414,BRESEK syndrome +15.8562362,MONDO:0019493,http://purl.obolibrary.org/obo/MONDO_0019493,primary adult heart tumor +15.8562362,MONDO:0019528,http://purl.obolibrary.org/obo/MONDO_0019528,IgG4-related hepatopathy +15.8562362,MONDO:0019661,http://purl.obolibrary.org/obo/MONDO_0019661,Pfeiffer syndrome type 3 +15.8562362,MONDO:0019910,http://purl.obolibrary.org/obo/MONDO_0019910,maternal uniparental disomy of chromosome 2 +15.8562362,MONDO:0019911,http://purl.obolibrary.org/obo/MONDO_0019911,maternal uniparental disomy of chromosome 4 +15.8562362,MONDO:0019912,http://purl.obolibrary.org/obo/MONDO_0019912,maternal uniparental disomy of chromosome 6 +15.8562362,MONDO:0019993,http://purl.obolibrary.org/obo/MONDO_0019993,congenital renal artery stenosis +15.8562362,MONDO:0020110,http://purl.obolibrary.org/obo/MONDO_0020110,pulmonary agenesis +15.8562362,MONDO:0020298,http://purl.obolibrary.org/obo/MONDO_0020298,Prader-Willi syndrome due to maternal uniparental disomy of chromosome 15 +15.8562362,MONDO:0020470,http://purl.obolibrary.org/obo/MONDO_0020470,"49,XYYYY syndrome" +15.8562362,MONDO:0020558,http://purl.obolibrary.org/obo/MONDO_0020558,autosomal dominant Charcot-Marie-Tooth disease type 2K +15.8562362,MONDO:0020666,http://purl.obolibrary.org/obo/MONDO_0020666,Löfgren syndrome +15.8562362,MONDO:0020806,http://purl.obolibrary.org/obo/MONDO_0020806,sinoatrial block +15.8562362,MONDO:0021083,http://purl.obolibrary.org/obo/MONDO_0021083,congenital fibrosis of extraocular muscles type 1 +15.8562362,MONDO:0021090,http://purl.obolibrary.org/obo/MONDO_0021090,lipid-rich breast carcinoma +15.8562362,MONDO:0021105,http://purl.obolibrary.org/obo/MONDO_0021105,NAFLD1 +15.8562362,MONDO:0021172,http://purl.obolibrary.org/obo/MONDO_0021172,Timothy syndrome type 2 (disorder) +15.8562362,MONDO:0021177,http://purl.obolibrary.org/obo/MONDO_0021177,autoimmune hepatitis type 3 +15.8562362,MONDO:0021300,http://purl.obolibrary.org/obo/MONDO_0021300,adenoid cystic carcinoma of oropharynx +15.8562362,MONDO:0021456,http://purl.obolibrary.org/obo/MONDO_0021456,benign neoplasm of sternum +15.8562362,MONDO:0021471,http://purl.obolibrary.org/obo/MONDO_0021471,benign neoplasm of endometrium +15.8562362,MONDO:0021829,http://purl.obolibrary.org/obo/MONDO_0021829,agnathia-microstomia-synotia +15.8562362,MONDO:0022071,http://purl.obolibrary.org/obo/MONDO_0022071,carbon baby syndrome +15.8562362,MONDO:0022293,http://purl.obolibrary.org/obo/MONDO_0022293,vascular disorder of penis +15.8562362,MONDO:0022642,http://purl.obolibrary.org/obo/MONDO_0022642,childhood carcinoid tumor +15.8562362,MONDO:0022843,http://purl.obolibrary.org/obo/MONDO_0022843,congenital mumps +15.8562362,MONDO:0022919,http://purl.obolibrary.org/obo/MONDO_0022919,cytokine receptor deficiency +15.8562362,MONDO:0023076,http://purl.obolibrary.org/obo/MONDO_0023076,eosinophilic pustular folliculitis +15.8562362,MONDO:0023224,http://purl.obolibrary.org/obo/MONDO_0023224,inherited reflex epilepsy +15.8562362,MONDO:0023263,http://purl.obolibrary.org/obo/MONDO_0023263,glyceraldehyde-3-phosphate dehydrogenase deficiency +15.8562362,MONDO:0024332,http://purl.obolibrary.org/obo/MONDO_0024332,perennial allergic rhinitis +15.8562362,MONDO:0024340,http://purl.obolibrary.org/obo/MONDO_0024340,retinal neuroblastoma +15.8562362,MONDO:0024521,http://purl.obolibrary.org/obo/MONDO_0024521,"aortic aneurysm, familial abdominal, 1" +15.8562362,MONDO:0024568,http://purl.obolibrary.org/obo/MONDO_0024568,infantile liver failure syndrome 1 +15.8562362,MONDO:0024954,http://purl.obolibrary.org/obo/MONDO_0024954,"larva migrans, visceral" +15.8562362,MONDO:0025389,http://purl.obolibrary.org/obo/MONDO_0025389,"brucellosis, bovine" +15.8562362,MONDO:0025459,http://purl.obolibrary.org/obo/MONDO_0025459,rinderpest +15.8562362,MONDO:0027091,http://purl.obolibrary.org/obo/MONDO_0027091,xanthogranulomatous sialadenitis +15.8562362,MONDO:0033280,http://purl.obolibrary.org/obo/MONDO_0033280,nephrotic syndrome 16 +15.8562362,MONDO:0037251,http://purl.obolibrary.org/obo/MONDO_0037251,congestive splenomegaly +15.8562362,MONDO:0037740,http://purl.obolibrary.org/obo/MONDO_0037740,"malignant central nervous system mesenchymal, non-meningothelial neoplasm" +15.8562362,MONDO:0040753,http://purl.obolibrary.org/obo/MONDO_0040753,inactive tuberculosis +15.8562362,MONDO:0043137,http://purl.obolibrary.org/obo/MONDO_0043137,isolated microcephaly +15.8562362,MONDO:0043291,http://purl.obolibrary.org/obo/MONDO_0043291,Rokitansky-Aschoff sinuses of the gallbladder +15.8562362,MONDO:0043310,http://purl.obolibrary.org/obo/MONDO_0043310,amaurosis fugax +15.8562362,MONDO:0044300,http://purl.obolibrary.org/obo/MONDO_0044300,familial adenomatous polyposis 4 +15.8562362,MONDO:0044649,http://purl.obolibrary.org/obo/MONDO_0044649,omphalocele-diaphragmatic hernia-cardiovascular anomalies-radial ray defect syndrome +15.8562362,MONDO:0056817,http://purl.obolibrary.org/obo/MONDO_0056817,rectal adenosquamous carcinoma +15.8562362,MONDO:0060510,http://purl.obolibrary.org/obo/MONDO_0060510,Cohen-Gibson syndrome +15.8562362,MONDO:0060533,http://purl.obolibrary.org/obo/MONDO_0060533,"microcephaly, short stature, and limb abnormalities" +15.8562362,MONDO:0100156,http://purl.obolibrary.org/obo/MONDO_0100156,Imerslund-Grasbeck syndrome type 1 +15.8562362,MONDO:0100212,http://purl.obolibrary.org/obo/MONDO_0100212,IFAP syndrome +15.8562362,MONDO:0100213,http://purl.obolibrary.org/obo/MONDO_0100213,IFAP syndrome with or without BRESHECK syndrome +15.8562362,MOP:0000000,http://purl.obolibrary.org/obo/MOP_0000000,none +15.8562362,MOP:0000479,http://purl.obolibrary.org/obo/MOP_0000479,none +15.8562362,MOP:0000651,http://purl.obolibrary.org/obo/MOP_0000651,none +15.8562362,MOP:0000801,http://purl.obolibrary.org/obo/MOP_0000801,none +15.8562362,NCBITaxon:1000682,http://purl.obolibrary.org/obo/NCBITaxon_1000682,none +15.8562362,NCBITaxon:1002273,http://purl.obolibrary.org/obo/NCBITaxon_1002273,none +15.8562362,NCBITaxon:100382,http://purl.obolibrary.org/obo/NCBITaxon_100382,none +15.8562362,NCBITaxon:1003875,http://purl.obolibrary.org/obo/NCBITaxon_1003875,none +15.8562362,NCBITaxon:1006354,http://purl.obolibrary.org/obo/NCBITaxon_1006354,none +15.8562362,NCBITaxon:10122,http://purl.obolibrary.org/obo/NCBITaxon_10122,none +15.8562362,NCBITaxon:10190,http://purl.obolibrary.org/obo/NCBITaxon_10190,none +15.8562362,NCBITaxon:10191,http://purl.obolibrary.org/obo/NCBITaxon_10191,none +15.8562362,NCBITaxon:101947,http://purl.obolibrary.org/obo/NCBITaxon_101947,none +15.8562362,NCBITaxon:102312,http://purl.obolibrary.org/obo/NCBITaxon_102312,none +15.8562362,NCBITaxon:10251,http://purl.obolibrary.org/obo/NCBITaxon_10251,none +15.8562362,NCBITaxon:1027875,http://purl.obolibrary.org/obo/NCBITaxon_1027875,none +15.8562362,NCBITaxon:102808,http://purl.obolibrary.org/obo/NCBITaxon_102808,none +15.8562362,NCBITaxon:1031332,http://purl.obolibrary.org/obo/NCBITaxon_1031332,none +15.8562362,NCBITaxon:1033976,http://purl.obolibrary.org/obo/NCBITaxon_1033976,none +15.8562362,NCBITaxon:1033978,http://purl.obolibrary.org/obo/NCBITaxon_1033978,none +15.8562362,NCBITaxon:1033979,http://purl.obolibrary.org/obo/NCBITaxon_1033979,none +15.8562362,NCBITaxon:103474,http://purl.obolibrary.org/obo/NCBITaxon_103474,none +15.8562362,NCBITaxon:103475,http://purl.obolibrary.org/obo/NCBITaxon_103475,none +15.8562362,NCBITaxon:10364,http://purl.obolibrary.org/obo/NCBITaxon_10364,none +15.8562362,NCBITaxon:103695,http://purl.obolibrary.org/obo/NCBITaxon_103695,none +15.8562362,NCBITaxon:103724,http://purl.obolibrary.org/obo/NCBITaxon_103724,none +15.8562362,NCBITaxon:10408,http://purl.obolibrary.org/obo/NCBITaxon_10408,none +15.8562362,NCBITaxon:1041883,http://purl.obolibrary.org/obo/NCBITaxon_1041883,none +15.8562362,NCBITaxon:104435,http://purl.obolibrary.org/obo/NCBITaxon_104435,none +15.8562362,NCBITaxon:104450,http://purl.obolibrary.org/obo/NCBITaxon_104450,none +15.8562362,NCBITaxon:1046572,http://purl.obolibrary.org/obo/NCBITaxon_1046572,none +15.8562362,NCBITaxon:104660,http://purl.obolibrary.org/obo/NCBITaxon_104660,none +15.8562362,NCBITaxon:104688,http://purl.obolibrary.org/obo/NCBITaxon_104688,none +15.8562362,NCBITaxon:1048243,http://purl.obolibrary.org/obo/NCBITaxon_1048243,none +15.8562362,NCBITaxon:10491,http://purl.obolibrary.org/obo/NCBITaxon_10491,none +15.8562362,NCBITaxon:105,http://purl.obolibrary.org/obo/NCBITaxon_105,none +15.8562362,NCBITaxon:10529,http://purl.obolibrary.org/obo/NCBITaxon_10529,none +15.8562362,NCBITaxon:1053565,http://purl.obolibrary.org/obo/NCBITaxon_1053565,none +15.8562362,NCBITaxon:10541,http://purl.obolibrary.org/obo/NCBITaxon_10541,none +15.8562362,NCBITaxon:1054216,http://purl.obolibrary.org/obo/NCBITaxon_1054216,none +15.8562362,NCBITaxon:1055536,http://purl.obolibrary.org/obo/NCBITaxon_1055536,none +15.8562362,NCBITaxon:1056966,http://purl.obolibrary.org/obo/NCBITaxon_1056966,Aedini +15.8562362,NCBITaxon:10584,http://purl.obolibrary.org/obo/NCBITaxon_10584,none +15.8562362,NCBITaxon:10588,http://purl.obolibrary.org/obo/NCBITaxon_10588,none +15.8562362,NCBITaxon:105998,http://purl.obolibrary.org/obo/NCBITaxon_105998,none +15.8562362,NCBITaxon:10607,http://purl.obolibrary.org/obo/NCBITaxon_10607,none +15.8562362,NCBITaxon:106118,http://purl.obolibrary.org/obo/NCBITaxon_106118,none +15.8562362,NCBITaxon:106236,http://purl.obolibrary.org/obo/NCBITaxon_106236,none +15.8562362,NCBITaxon:1064520,http://purl.obolibrary.org/obo/NCBITaxon_1064520,none +15.8562362,NCBITaxon:1076345,http://purl.obolibrary.org/obo/NCBITaxon_1076345,none +15.8562362,NCBITaxon:10796,http://purl.obolibrary.org/obo/NCBITaxon_10796,Porcine parvovirus +15.8562362,NCBITaxon:1080798,http://purl.obolibrary.org/obo/NCBITaxon_1080798,none +15.8562362,NCBITaxon:10842,http://purl.obolibrary.org/obo/NCBITaxon_10842,none +15.8562362,NCBITaxon:10903,http://purl.obolibrary.org/obo/NCBITaxon_10903,none +15.8562362,NCBITaxon:1093958,http://purl.obolibrary.org/obo/NCBITaxon_1093958,none +15.8562362,NCBITaxon:10943,http://purl.obolibrary.org/obo/NCBITaxon_10943,none +15.8562362,NCBITaxon:109482,http://purl.obolibrary.org/obo/NCBITaxon_109482,none +15.8562362,NCBITaxon:10952,http://purl.obolibrary.org/obo/NCBITaxon_10952,none +15.8562362,NCBITaxon:109564,http://purl.obolibrary.org/obo/NCBITaxon_109564,none +15.8562362,NCBITaxon:109996,http://purl.obolibrary.org/obo/NCBITaxon_109996,none +15.8562362,NCBITaxon:11009,http://purl.obolibrary.org/obo/NCBITaxon_11009,none +15.8562362,NCBITaxon:1105173,http://purl.obolibrary.org/obo/NCBITaxon_1105173,none +15.8562362,NCBITaxon:11195,http://purl.obolibrary.org/obo/NCBITaxon_11195,none +15.8562362,NCBITaxon:112146,http://purl.obolibrary.org/obo/NCBITaxon_112146,none +15.8562362,NCBITaxon:1125,http://purl.obolibrary.org/obo/NCBITaxon_1125,none +15.8562362,NCBITaxon:1127767,http://purl.obolibrary.org/obo/NCBITaxon_1127767,none +15.8562362,NCBITaxon:1129036,http://purl.obolibrary.org/obo/NCBITaxon_1129036,none +15.8562362,NCBITaxon:113,http://purl.obolibrary.org/obo/NCBITaxon_113,none +15.8562362,NCBITaxon:1133086,http://purl.obolibrary.org/obo/NCBITaxon_1133086,none +15.8562362,NCBITaxon:1136260,http://purl.obolibrary.org/obo/NCBITaxon_1136260,none +15.8562362,NCBITaxon:1141492,http://purl.obolibrary.org/obo/NCBITaxon_1141492,none +15.8562362,NCBITaxon:114408,http://purl.obolibrary.org/obo/NCBITaxon_114408,none +15.8562362,NCBITaxon:114424,http://purl.obolibrary.org/obo/NCBITaxon_114424,none +15.8562362,NCBITaxon:114429,http://purl.obolibrary.org/obo/NCBITaxon_114429,none +15.8562362,NCBITaxon:114658,http://purl.obolibrary.org/obo/NCBITaxon_114658,none +15.8562362,NCBITaxon:114922,http://purl.obolibrary.org/obo/NCBITaxon_114922,none +15.8562362,NCBITaxon:115244,http://purl.obolibrary.org/obo/NCBITaxon_115244,none +15.8562362,NCBITaxon:115277,http://purl.obolibrary.org/obo/NCBITaxon_115277,none +15.8562362,NCBITaxon:115347,http://purl.obolibrary.org/obo/NCBITaxon_115347,none +15.8562362,NCBITaxon:1157040,http://purl.obolibrary.org/obo/NCBITaxon_1157040,none +15.8562362,NCBITaxon:1159905,http://purl.obolibrary.org/obo/NCBITaxon_1159905,none +15.8562362,NCBITaxon:116058,http://purl.obolibrary.org/obo/NCBITaxon_116058,none +15.8562362,NCBITaxon:11606,http://purl.obolibrary.org/obo/NCBITaxon_11606,none +15.8562362,NCBITaxon:11607,http://purl.obolibrary.org/obo/NCBITaxon_11607,none +15.8562362,NCBITaxon:1161,http://purl.obolibrary.org/obo/NCBITaxon_1161,none +15.8562362,NCBITaxon:116158,http://purl.obolibrary.org/obo/NCBITaxon_116158,none +15.8562362,NCBITaxon:1162,http://purl.obolibrary.org/obo/NCBITaxon_1162,none +15.8562362,NCBITaxon:1165752,http://purl.obolibrary.org/obo/NCBITaxon_1165752,none +15.8562362,NCBITaxon:116838,http://purl.obolibrary.org/obo/NCBITaxon_116838,none +15.8562362,NCBITaxon:116925,http://purl.obolibrary.org/obo/NCBITaxon_116925,Troglotremata +15.8562362,NCBITaxon:1170421,http://purl.obolibrary.org/obo/NCBITaxon_1170421,none +15.8562362,NCBITaxon:1170424,http://purl.obolibrary.org/obo/NCBITaxon_1170424,none +15.8562362,NCBITaxon:11725,http://purl.obolibrary.org/obo/NCBITaxon_11725,none +15.8562362,NCBITaxon:11726,http://purl.obolibrary.org/obo/NCBITaxon_11726,none +15.8562362,NCBITaxon:1174526,http://purl.obolibrary.org/obo/NCBITaxon_1174526,none +15.8562362,NCBITaxon:1176153,http://purl.obolibrary.org/obo/NCBITaxon_1176153,none +15.8562362,NCBITaxon:1177630,http://purl.obolibrary.org/obo/NCBITaxon_1177630,none +15.8562362,NCBITaxon:11783,http://purl.obolibrary.org/obo/NCBITaxon_11783,none +15.8562362,NCBITaxon:11821,http://purl.obolibrary.org/obo/NCBITaxon_11821,none +15.8562362,NCBITaxon:11834,http://purl.obolibrary.org/obo/NCBITaxon_11834,none +15.8562362,NCBITaxon:11868,http://purl.obolibrary.org/obo/NCBITaxon_11868,none +15.8562362,NCBITaxon:11873,http://purl.obolibrary.org/obo/NCBITaxon_11873,none +15.8562362,NCBITaxon:1190708,http://purl.obolibrary.org/obo/NCBITaxon_1190708,none +15.8562362,NCBITaxon:119196,http://purl.obolibrary.org/obo/NCBITaxon_119196,none +15.8562362,NCBITaxon:119259,http://purl.obolibrary.org/obo/NCBITaxon_119259,none +15.8562362,NCBITaxon:11948,http://purl.obolibrary.org/obo/NCBITaxon_11948,none +15.8562362,NCBITaxon:1204160,http://purl.obolibrary.org/obo/NCBITaxon_1204160,none +15.8562362,NCBITaxon:1204737,http://purl.obolibrary.org/obo/NCBITaxon_1204737,none +15.8562362,NCBITaxon:12071,http://purl.obolibrary.org/obo/NCBITaxon_12071,none +15.8562362,NCBITaxon:12090,http://purl.obolibrary.org/obo/NCBITaxon_12090,Enterovirus D70 +15.8562362,NCBITaxon:1211388,http://purl.obolibrary.org/obo/NCBITaxon_1211388,none +15.8562362,NCBITaxon:1213687,http://purl.obolibrary.org/obo/NCBITaxon_1213687,none +15.8562362,NCBITaxon:12153,http://purl.obolibrary.org/obo/NCBITaxon_12153,none +15.8562362,NCBITaxon:1218487,http://purl.obolibrary.org/obo/NCBITaxon_1218487,none +15.8562362,NCBITaxon:1223561,http://purl.obolibrary.org/obo/NCBITaxon_1223561,none +15.8562362,NCBITaxon:1223562,http://purl.obolibrary.org/obo/NCBITaxon_1223562,none +15.8562362,NCBITaxon:123222,http://purl.obolibrary.org/obo/NCBITaxon_123222,none +15.8562362,NCBITaxon:1232736,http://purl.obolibrary.org/obo/NCBITaxon_1232736,none +15.8562362,NCBITaxon:123757,http://purl.obolibrary.org/obo/NCBITaxon_123757,none +15.8562362,NCBITaxon:1239452,http://purl.obolibrary.org/obo/NCBITaxon_1239452,none +15.8562362,NCBITaxon:1239832,http://purl.obolibrary.org/obo/NCBITaxon_1239832,none +15.8562362,NCBITaxon:12456,http://purl.obolibrary.org/obo/NCBITaxon_12456,none +15.8562362,NCBITaxon:1246675,http://purl.obolibrary.org/obo/NCBITaxon_1246675,none +15.8562362,NCBITaxon:12468,http://purl.obolibrary.org/obo/NCBITaxon_12468,none +15.8562362,NCBITaxon:12509,http://purl.obolibrary.org/obo/NCBITaxon_12509,none +15.8562362,NCBITaxon:12571,http://purl.obolibrary.org/obo/NCBITaxon_12571,none +15.8562362,NCBITaxon:1263,http://purl.obolibrary.org/obo/NCBITaxon_1263,none +15.8562362,NCBITaxon:126387,http://purl.obolibrary.org/obo/NCBITaxon_126387,none +15.8562362,NCBITaxon:126402,http://purl.obolibrary.org/obo/NCBITaxon_126402,none +15.8562362,NCBITaxon:1264782,http://purl.obolibrary.org/obo/NCBITaxon_1264782,none +15.8562362,NCBITaxon:1264859,http://purl.obolibrary.org/obo/NCBITaxon_1264859,Entomophthoromycotina +15.8562362,NCBITaxon:126747,http://purl.obolibrary.org/obo/NCBITaxon_126747,none +15.8562362,NCBITaxon:126908,http://purl.obolibrary.org/obo/NCBITaxon_126908,none +15.8562362,NCBITaxon:126910,http://purl.obolibrary.org/obo/NCBITaxon_126910,none +15.8562362,NCBITaxon:1285463,http://purl.obolibrary.org/obo/NCBITaxon_1285463,none +15.8562362,NCBITaxon:128790,http://purl.obolibrary.org/obo/NCBITaxon_128790,none +15.8562362,NCBITaxon:1288500,http://purl.obolibrary.org/obo/NCBITaxon_1288500,none +15.8562362,NCBITaxon:128941,http://purl.obolibrary.org/obo/NCBITaxon_128941,none +15.8562362,NCBITaxon:1289939,http://purl.obolibrary.org/obo/NCBITaxon_1289939,none +15.8562362,NCBITaxon:129017,http://purl.obolibrary.org/obo/NCBITaxon_129017,none +15.8562362,NCBITaxon:129836,http://purl.obolibrary.org/obo/NCBITaxon_129836,none +15.8562362,NCBITaxon:1298590,http://purl.obolibrary.org/obo/NCBITaxon_1298590,none +15.8562362,NCBITaxon:1298591,http://purl.obolibrary.org/obo/NCBITaxon_1298591,none +15.8562362,NCBITaxon:1298592,http://purl.obolibrary.org/obo/NCBITaxon_1298592,none +15.8562362,NCBITaxon:129876,http://purl.obolibrary.org/obo/NCBITaxon_129876,none +15.8562362,NCBITaxon:1302812,http://purl.obolibrary.org/obo/NCBITaxon_1302812,none +15.8562362,NCBITaxon:130551,http://purl.obolibrary.org/obo/NCBITaxon_130551,none +15.8562362,NCBITaxon:1306546,http://purl.obolibrary.org/obo/NCBITaxon_1306546,none +15.8562362,NCBITaxon:130663,http://purl.obolibrary.org/obo/NCBITaxon_130663,none +15.8562362,NCBITaxon:1308838,http://purl.obolibrary.org/obo/NCBITaxon_1308838,none +15.8562362,NCBITaxon:1308840,http://purl.obolibrary.org/obo/NCBITaxon_1308840,none +15.8562362,NCBITaxon:13100,http://purl.obolibrary.org/obo/NCBITaxon_13100,none +15.8562362,NCBITaxon:1312864,http://purl.obolibrary.org/obo/NCBITaxon_1312864,none +15.8562362,NCBITaxon:1312929,http://purl.obolibrary.org/obo/NCBITaxon_1312929,none +15.8562362,NCBITaxon:131550,http://purl.obolibrary.org/obo/NCBITaxon_131550,none +15.8562362,NCBITaxon:132477,http://purl.obolibrary.org/obo/NCBITaxon_132477,none +15.8562362,NCBITaxon:1324959,http://purl.obolibrary.org/obo/NCBITaxon_1324959,none +15.8562362,NCBITaxon:1325569,http://purl.obolibrary.org/obo/NCBITaxon_1325569,none +15.8562362,NCBITaxon:1325730,http://purl.obolibrary.org/obo/NCBITaxon_1325730,none +15.8562362,NCBITaxon:13274,http://purl.obolibrary.org/obo/NCBITaxon_13274,none +15.8562362,NCBITaxon:1330069,http://purl.obolibrary.org/obo/NCBITaxon_1330069,none +15.8562362,NCBITaxon:133076,http://purl.obolibrary.org/obo/NCBITaxon_133076,none +15.8562362,NCBITaxon:13330,http://purl.obolibrary.org/obo/NCBITaxon_13330,none +15.8562362,NCBITaxon:1335581,http://purl.obolibrary.org/obo/NCBITaxon_1335581,none +15.8562362,NCBITaxon:1335583,http://purl.obolibrary.org/obo/NCBITaxon_1335583,none +15.8562362,NCBITaxon:1344952,http://purl.obolibrary.org/obo/NCBITaxon_1344952,none +15.8562362,NCBITaxon:1350000,http://purl.obolibrary.org/obo/NCBITaxon_1350000,none +15.8562362,NCBITaxon:135616,http://purl.obolibrary.org/obo/NCBITaxon_135616,none +15.8562362,NCBITaxon:1357,http://purl.obolibrary.org/obo/NCBITaxon_1357,none +15.8562362,NCBITaxon:13625,http://purl.obolibrary.org/obo/NCBITaxon_13625,none +15.8562362,NCBITaxon:136419,http://purl.obolibrary.org/obo/NCBITaxon_136419,none +15.8562362,NCBITaxon:13685,http://purl.obolibrary.org/obo/NCBITaxon_13685,none +15.8562362,NCBITaxon:13686,http://purl.obolibrary.org/obo/NCBITaxon_13686,none +15.8562362,NCBITaxon:1370065,http://purl.obolibrary.org/obo/NCBITaxon_1370065,none +15.8562362,NCBITaxon:137059,http://purl.obolibrary.org/obo/NCBITaxon_137059,none +15.8562362,NCBITaxon:13747,http://purl.obolibrary.org/obo/NCBITaxon_13747,none +15.8562362,NCBITaxon:137555,http://purl.obolibrary.org/obo/NCBITaxon_137555,none +15.8562362,NCBITaxon:13757,http://purl.obolibrary.org/obo/NCBITaxon_13757,none +15.8562362,NCBITaxon:137879,http://purl.obolibrary.org/obo/NCBITaxon_137879,none +15.8562362,NCBITaxon:1381012,http://purl.obolibrary.org/obo/NCBITaxon_1381012,none +15.8562362,NCBITaxon:138982,http://purl.obolibrary.org/obo/NCBITaxon_138982,none +15.8562362,NCBITaxon:139033,http://purl.obolibrary.org/obo/NCBITaxon_139033,none +15.8562362,NCBITaxon:1416571,http://purl.obolibrary.org/obo/NCBITaxon_1416571,none +15.8562362,NCBITaxon:141860,http://purl.obolibrary.org/obo/NCBITaxon_141860,none +15.8562362,NCBITaxon:1421775,http://purl.obolibrary.org/obo/NCBITaxon_1421775,none +15.8562362,NCBITaxon:1431456,http://purl.obolibrary.org/obo/NCBITaxon_1431456,none +15.8562362,NCBITaxon:1434269,http://purl.obolibrary.org/obo/NCBITaxon_1434269,none +15.8562362,NCBITaxon:143961,http://purl.obolibrary.org/obo/NCBITaxon_143961,none +15.8562362,NCBITaxon:1453406,http://purl.obolibrary.org/obo/NCBITaxon_1453406,none +15.8562362,NCBITaxon:1453409,http://purl.obolibrary.org/obo/NCBITaxon_1453409,none +15.8562362,NCBITaxon:145349,http://purl.obolibrary.org/obo/NCBITaxon_145349,none +15.8562362,NCBITaxon:1457165,http://purl.obolibrary.org/obo/NCBITaxon_1457165,none +15.8562362,NCBITaxon:1461100,http://purl.obolibrary.org/obo/NCBITaxon_1461100,none +15.8562362,NCBITaxon:1461168,http://purl.obolibrary.org/obo/NCBITaxon_1461168,none +15.8562362,NCBITaxon:1461171,http://purl.obolibrary.org/obo/NCBITaxon_1461171,none +15.8562362,NCBITaxon:1461176,http://purl.obolibrary.org/obo/NCBITaxon_1461176,none +15.8562362,NCBITaxon:1462682,http://purl.obolibrary.org/obo/NCBITaxon_1462682,none +15.8562362,NCBITaxon:1463147,http://purl.obolibrary.org/obo/NCBITaxon_1463147,none +15.8562362,NCBITaxon:147100,http://purl.obolibrary.org/obo/NCBITaxon_147100,none +15.8562362,NCBITaxon:147712,http://purl.obolibrary.org/obo/NCBITaxon_147712,none +15.8562362,NCBITaxon:1477515,http://purl.obolibrary.org/obo/NCBITaxon_1477515,none +15.8562362,NCBITaxon:1479612,http://purl.obolibrary.org/obo/NCBITaxon_1479612,none +15.8562362,NCBITaxon:1489621,http://purl.obolibrary.org/obo/NCBITaxon_1489621,none +15.8562362,NCBITaxon:1489714,http://purl.obolibrary.org/obo/NCBITaxon_1489714,none +15.8562362,NCBITaxon:1489737,http://purl.obolibrary.org/obo/NCBITaxon_1489737,none +15.8562362,NCBITaxon:1489785,http://purl.obolibrary.org/obo/NCBITaxon_1489785,none +15.8562362,NCBITaxon:1489880,http://purl.obolibrary.org/obo/NCBITaxon_1489880,none +15.8562362,NCBITaxon:1489931,http://purl.obolibrary.org/obo/NCBITaxon_1489931,none +15.8562362,NCBITaxon:149698,http://purl.obolibrary.org/obo/NCBITaxon_149698,none +15.8562362,NCBITaxon:1498478,http://purl.obolibrary.org/obo/NCBITaxon_1498478,none +15.8562362,NCBITaxon:150285,http://purl.obolibrary.org/obo/NCBITaxon_150285,none +15.8562362,NCBITaxon:150706,http://purl.obolibrary.org/obo/NCBITaxon_150706,none +15.8562362,NCBITaxon:1511910,http://purl.obolibrary.org/obo/NCBITaxon_1511910,none +15.8562362,NCBITaxon:1513531,http://purl.obolibrary.org/obo/NCBITaxon_1513531,none +15.8562362,NCBITaxon:1517744,http://purl.obolibrary.org/obo/NCBITaxon_1517744,none +15.8562362,NCBITaxon:156593,http://purl.obolibrary.org/obo/NCBITaxon_156593,none +15.8562362,NCBITaxon:157822,http://purl.obolibrary.org/obo/NCBITaxon_157822,none +15.8562362,NCBITaxon:157837,http://purl.obolibrary.org/obo/NCBITaxon_157837,none +15.8562362,NCBITaxon:158331,http://purl.obolibrary.org/obo/NCBITaxon_158331,none +15.8562362,NCBITaxon:158333,http://purl.obolibrary.org/obo/NCBITaxon_158333,none +15.8562362,NCBITaxon:158369,http://purl.obolibrary.org/obo/NCBITaxon_158369,none +15.8562362,NCBITaxon:158397,http://purl.obolibrary.org/obo/NCBITaxon_158397,none +15.8562362,NCBITaxon:158424,http://purl.obolibrary.org/obo/NCBITaxon_158424,none +15.8562362,NCBITaxon:15853,http://purl.obolibrary.org/obo/NCBITaxon_15853,none +15.8562362,NCBITaxon:159140,http://purl.obolibrary.org/obo/NCBITaxon_159140,none +15.8562362,NCBITaxon:159142,http://purl.obolibrary.org/obo/NCBITaxon_159142,none +15.8562362,NCBITaxon:159147,http://purl.obolibrary.org/obo/NCBITaxon_159147,none +15.8562362,NCBITaxon:160145,http://purl.obolibrary.org/obo/NCBITaxon_160145,none +15.8562362,NCBITaxon:160761,http://purl.obolibrary.org/obo/NCBITaxon_160761,none +15.8562362,NCBITaxon:1609962,http://purl.obolibrary.org/obo/NCBITaxon_1609962,none +15.8562362,NCBITaxon:161600,http://purl.obolibrary.org/obo/NCBITaxon_161600,none +15.8562362,NCBITaxon:16195,http://purl.obolibrary.org/obo/NCBITaxon_16195,none +15.8562362,NCBITaxon:162454,http://purl.obolibrary.org/obo/NCBITaxon_162454,none +15.8562362,NCBITaxon:162466,http://purl.obolibrary.org/obo/NCBITaxon_162466,none +15.8562362,NCBITaxon:162475,http://purl.obolibrary.org/obo/NCBITaxon_162475,none +15.8562362,NCBITaxon:162480,http://purl.obolibrary.org/obo/NCBITaxon_162480,none +15.8562362,NCBITaxon:162482,http://purl.obolibrary.org/obo/NCBITaxon_162482,none +15.8562362,NCBITaxon:162483,http://purl.obolibrary.org/obo/NCBITaxon_162483,none +15.8562362,NCBITaxon:163164,http://purl.obolibrary.org/obo/NCBITaxon_163164,none +15.8562362,NCBITaxon:1652080,http://purl.obolibrary.org/obo/NCBITaxon_1652080,none +15.8562362,NCBITaxon:165723,http://purl.obolibrary.org/obo/NCBITaxon_165723,none +15.8562362,NCBITaxon:165724,http://purl.obolibrary.org/obo/NCBITaxon_165724,none +15.8562362,NCBITaxon:165725,http://purl.obolibrary.org/obo/NCBITaxon_165725,none +15.8562362,NCBITaxon:165726,http://purl.obolibrary.org/obo/NCBITaxon_165726,none +15.8562362,NCBITaxon:165791,http://purl.obolibrary.org/obo/NCBITaxon_165791,none +15.8562362,NCBITaxon:165794,http://purl.obolibrary.org/obo/NCBITaxon_165794,none +15.8562362,NCBITaxon:166052,http://purl.obolibrary.org/obo/NCBITaxon_166052,none +15.8562362,NCBITaxon:16714,http://purl.obolibrary.org/obo/NCBITaxon_16714,none +15.8562362,NCBITaxon:167498,http://purl.obolibrary.org/obo/NCBITaxon_167498,none +15.8562362,NCBITaxon:169205,http://purl.obolibrary.org/obo/NCBITaxon_169205,none +15.8562362,NCBITaxon:169418,http://purl.obolibrary.org/obo/NCBITaxon_169418,Mustelinae +15.8562362,NCBITaxon:169440,http://purl.obolibrary.org/obo/NCBITaxon_169440,Coelopidae +15.8562362,NCBITaxon:169659,http://purl.obolibrary.org/obo/NCBITaxon_169659,none +15.8562362,NCBITaxon:170525,http://purl.obolibrary.org/obo/NCBITaxon_170525,none +15.8562362,NCBITaxon:1709201,http://purl.obolibrary.org/obo/NCBITaxon_1709201,none +15.8562362,NCBITaxon:172394,http://purl.obolibrary.org/obo/NCBITaxon_172394,none +15.8562362,NCBITaxon:1728960,http://purl.obolibrary.org/obo/NCBITaxon_1728960,none +15.8562362,NCBITaxon:1729789,http://purl.obolibrary.org/obo/NCBITaxon_1729789,none +15.8562362,NCBITaxon:1732204,http://purl.obolibrary.org/obo/NCBITaxon_1732204,none +15.8562362,NCBITaxon:1732304,http://purl.obolibrary.org/obo/NCBITaxon_1732304,none +15.8562362,NCBITaxon:173903,http://purl.obolibrary.org/obo/NCBITaxon_173903,none +15.8562362,NCBITaxon:173976,http://purl.obolibrary.org/obo/NCBITaxon_173976,none +15.8562362,NCBITaxon:174142,http://purl.obolibrary.org/obo/NCBITaxon_174142,none +15.8562362,NCBITaxon:175667,http://purl.obolibrary.org/obo/NCBITaxon_175667,none +15.8562362,NCBITaxon:176106,http://purl.obolibrary.org/obo/NCBITaxon_176106,none +15.8562362,NCBITaxon:176652,http://purl.obolibrary.org/obo/NCBITaxon_176652,none +15.8562362,NCBITaxon:177899,http://purl.obolibrary.org/obo/NCBITaxon_177899,none +15.8562362,NCBITaxon:180016,http://purl.obolibrary.org/obo/NCBITaxon_180016,none +15.8562362,NCBITaxon:182222,http://purl.obolibrary.org/obo/NCBITaxon_182222,Muraeninae +15.8562362,NCBITaxon:1851551,http://purl.obolibrary.org/obo/NCBITaxon_1851551,none +15.8562362,NCBITaxon:1857844,http://purl.obolibrary.org/obo/NCBITaxon_1857844,none +15.8562362,NCBITaxon:185979,http://purl.obolibrary.org/obo/NCBITaxon_185979,none +15.8562362,NCBITaxon:186283,http://purl.obolibrary.org/obo/NCBITaxon_186283,none +15.8562362,NCBITaxon:186794,http://purl.obolibrary.org/obo/NCBITaxon_186794,none +15.8562362,NCBITaxon:186804,http://purl.obolibrary.org/obo/NCBITaxon_186804,Peptostreptococcaceae +15.8562362,NCBITaxon:1890449,http://purl.obolibrary.org/obo/NCBITaxon_1890449,none +15.8562362,NCBITaxon:1891714,http://purl.obolibrary.org/obo/NCBITaxon_1891714,Betapolyomavirus +15.8562362,NCBITaxon:189782,http://purl.obolibrary.org/obo/NCBITaxon_189782,none +15.8562362,NCBITaxon:190063,http://purl.obolibrary.org/obo/NCBITaxon_190063,none +15.8562362,NCBITaxon:1910976,http://purl.obolibrary.org/obo/NCBITaxon_1910976,none +15.8562362,NCBITaxon:191247,http://purl.obolibrary.org/obo/NCBITaxon_191247,none +15.8562362,NCBITaxon:1914233,http://purl.obolibrary.org/obo/NCBITaxon_1914233,none +15.8562362,NCBITaxon:191436,http://purl.obolibrary.org/obo/NCBITaxon_191436,none +15.8562362,NCBITaxon:192684,http://purl.obolibrary.org/obo/NCBITaxon_192684,none +15.8562362,NCBITaxon:192848,http://purl.obolibrary.org/obo/NCBITaxon_192848,none +15.8562362,NCBITaxon:1933176,http://purl.obolibrary.org/obo/NCBITaxon_1933176,none +15.8562362,NCBITaxon:1933180,http://purl.obolibrary.org/obo/NCBITaxon_1933180,none +15.8562362,NCBITaxon:1933191,http://purl.obolibrary.org/obo/NCBITaxon_1933191,none +15.8562362,NCBITaxon:1933275,http://purl.obolibrary.org/obo/NCBITaxon_1933275,none +15.8562362,NCBITaxon:1933289,http://purl.obolibrary.org/obo/NCBITaxon_1933289,none +15.8562362,NCBITaxon:1938466,http://purl.obolibrary.org/obo/NCBITaxon_1938466,none +15.8562362,NCBITaxon:194958,http://purl.obolibrary.org/obo/NCBITaxon_194958,none +15.8562362,NCBITaxon:195166,http://purl.obolibrary.org/obo/NCBITaxon_195166,none +15.8562362,NCBITaxon:196089,http://purl.obolibrary.org/obo/NCBITaxon_196089,none +15.8562362,NCBITaxon:1963360,http://purl.obolibrary.org/obo/NCBITaxon_1963360,none +15.8562362,NCBITaxon:1965089,http://purl.obolibrary.org/obo/NCBITaxon_1965089,none +15.8562362,NCBITaxon:1965352,http://purl.obolibrary.org/obo/NCBITaxon_1965352,none +15.8562362,NCBITaxon:1972588,http://purl.obolibrary.org/obo/NCBITaxon_1972588,none +15.8562362,NCBITaxon:1972622,http://purl.obolibrary.org/obo/NCBITaxon_1972622,none +15.8562362,NCBITaxon:197409,http://purl.obolibrary.org/obo/NCBITaxon_197409,none +15.8562362,NCBITaxon:1978534,http://purl.obolibrary.org/obo/NCBITaxon_1978534,none +15.8562362,NCBITaxon:1978540,http://purl.obolibrary.org/obo/NCBITaxon_1978540,none +15.8562362,NCBITaxon:1980457,http://purl.obolibrary.org/obo/NCBITaxon_1980457,none +15.8562362,NCBITaxon:1980474,http://purl.obolibrary.org/obo/NCBITaxon_1980474,none +15.8562362,NCBITaxon:1980528,http://purl.obolibrary.org/obo/NCBITaxon_1980528,none +15.8562362,NCBITaxon:1982031,http://purl.obolibrary.org/obo/NCBITaxon_1982031,none +15.8562362,NCBITaxon:1983412,http://purl.obolibrary.org/obo/NCBITaxon_1983412,none +15.8562362,NCBITaxon:1985687,http://purl.obolibrary.org/obo/NCBITaxon_1985687,none +15.8562362,NCBITaxon:1985688,http://purl.obolibrary.org/obo/NCBITaxon_1985688,none +15.8562362,NCBITaxon:198633,http://purl.obolibrary.org/obo/NCBITaxon_198633,none +15.8562362,NCBITaxon:200204,http://purl.obolibrary.org/obo/NCBITaxon_200204,none +15.8562362,NCBITaxon:200376,http://purl.obolibrary.org/obo/NCBITaxon_200376,none +15.8562362,NCBITaxon:200404,http://purl.obolibrary.org/obo/NCBITaxon_200404,none +15.8562362,NCBITaxon:200783,http://purl.obolibrary.org/obo/NCBITaxon_200783,none +15.8562362,NCBITaxon:200918,http://purl.obolibrary.org/obo/NCBITaxon_200918,none +15.8562362,NCBITaxon:2022857,http://purl.obolibrary.org/obo/NCBITaxon_2022857,none +15.8562362,NCBITaxon:202813,http://purl.obolibrary.org/obo/NCBITaxon_202813,none +15.8562362,NCBITaxon:2034327,http://purl.obolibrary.org/obo/NCBITaxon_2034327,none +15.8562362,NCBITaxon:2034351,http://purl.obolibrary.org/obo/NCBITaxon_2034351,none +15.8562362,NCBITaxon:204816,http://purl.obolibrary.org/obo/NCBITaxon_204816,none +15.8562362,NCBITaxon:204928,http://purl.obolibrary.org/obo/NCBITaxon_204928,none +15.8562362,NCBITaxon:2050,http://purl.obolibrary.org/obo/NCBITaxon_2050,none +15.8562362,NCBITaxon:2052685,http://purl.obolibrary.org/obo/NCBITaxon_2052685,none +15.8562362,NCBITaxon:205932,http://purl.obolibrary.org/obo/NCBITaxon_205932,none +15.8562362,NCBITaxon:206448,http://purl.obolibrary.org/obo/NCBITaxon_206448,none +15.8562362,NCBITaxon:2068716,http://purl.obolibrary.org/obo/NCBITaxon_2068716,none +15.8562362,NCBITaxon:208177,http://purl.obolibrary.org/obo/NCBITaxon_208177,none +15.8562362,NCBITaxon:209,http://purl.obolibrary.org/obo/NCBITaxon_209,Helicobacter +15.8562362,NCBITaxon:209928,http://purl.obolibrary.org/obo/NCBITaxon_209928,none +15.8562362,NCBITaxon:209929,http://purl.obolibrary.org/obo/NCBITaxon_209929,none +15.8562362,NCBITaxon:211030,http://purl.obolibrary.org/obo/NCBITaxon_211030,none +15.8562362,NCBITaxon:2116532,http://purl.obolibrary.org/obo/NCBITaxon_2116532,none +15.8562362,NCBITaxon:2129,http://purl.obolibrary.org/obo/NCBITaxon_2129,Ureaplasma +15.8562362,NCBITaxon:213317,http://purl.obolibrary.org/obo/NCBITaxon_213317,none +15.8562362,NCBITaxon:213319,http://purl.obolibrary.org/obo/NCBITaxon_213319,none +15.8562362,NCBITaxon:214503,http://purl.obolibrary.org/obo/NCBITaxon_214503,none +15.8562362,NCBITaxon:214509,http://purl.obolibrary.org/obo/NCBITaxon_214509,none +15.8562362,NCBITaxon:214915,http://purl.obolibrary.org/obo/NCBITaxon_214915,none +15.8562362,NCBITaxon:21496,http://purl.obolibrary.org/obo/NCBITaxon_21496,none +15.8562362,NCBITaxon:216208,http://purl.obolibrary.org/obo/NCBITaxon_216208,none +15.8562362,NCBITaxon:216318,http://purl.obolibrary.org/obo/NCBITaxon_216318,none +15.8562362,NCBITaxon:216614,http://purl.obolibrary.org/obo/NCBITaxon_216614,none +15.8562362,NCBITaxon:216691,http://purl.obolibrary.org/obo/NCBITaxon_216691,none +15.8562362,NCBITaxon:216693,http://purl.obolibrary.org/obo/NCBITaxon_216693,none +15.8562362,NCBITaxon:216694,http://purl.obolibrary.org/obo/NCBITaxon_216694,none +15.8562362,NCBITaxon:216729,http://purl.obolibrary.org/obo/NCBITaxon_216729,none +15.8562362,NCBITaxon:216780,http://purl.obolibrary.org/obo/NCBITaxon_216780,none +15.8562362,NCBITaxon:216812,http://purl.obolibrary.org/obo/NCBITaxon_216812,none +15.8562362,NCBITaxon:2170050,http://purl.obolibrary.org/obo/NCBITaxon_2170050,none +15.8562362,NCBITaxon:2170087,http://purl.obolibrary.org/obo/NCBITaxon_2170087,none +15.8562362,NCBITaxon:2170175,http://purl.obolibrary.org/obo/NCBITaxon_2170175,none +15.8562362,NCBITaxon:2170177,http://purl.obolibrary.org/obo/NCBITaxon_2170177,none +15.8562362,NCBITaxon:217046,http://purl.obolibrary.org/obo/NCBITaxon_217046,none +15.8562362,NCBITaxon:217429,http://purl.obolibrary.org/obo/NCBITaxon_217429,none +15.8562362,NCBITaxon:219102,http://purl.obolibrary.org/obo/NCBITaxon_219102,none +15.8562362,NCBITaxon:219126,http://purl.obolibrary.org/obo/NCBITaxon_219126,none +15.8562362,NCBITaxon:219325,http://purl.obolibrary.org/obo/NCBITaxon_219325,none +15.8562362,NCBITaxon:219702,http://purl.obolibrary.org/obo/NCBITaxon_219702,none +15.8562362,NCBITaxon:220339,http://purl.obolibrary.org/obo/NCBITaxon_220339,none +15.8562362,NCBITaxon:220944,http://purl.obolibrary.org/obo/NCBITaxon_220944,none +15.8562362,NCBITaxon:2212732,http://purl.obolibrary.org/obo/NCBITaxon_2212732,none +15.8562362,NCBITaxon:222064,http://purl.obolibrary.org/obo/NCBITaxon_222064,none +15.8562362,NCBITaxon:222475,http://purl.obolibrary.org/obo/NCBITaxon_222475,none +15.8562362,NCBITaxon:223264,http://purl.obolibrary.org/obo/NCBITaxon_223264,none +15.8562362,NCBITaxon:223314,http://purl.obolibrary.org/obo/NCBITaxon_223314,none +15.8562362,NCBITaxon:223352,http://purl.obolibrary.org/obo/NCBITaxon_223352,none +15.8562362,NCBITaxon:227137,http://purl.obolibrary.org/obo/NCBITaxon_227137,none +15.8562362,NCBITaxon:22788,http://purl.obolibrary.org/obo/NCBITaxon_22788,none +15.8562362,NCBITaxon:228586,http://purl.obolibrary.org/obo/NCBITaxon_228586,none +15.8562362,NCBITaxon:228608,http://purl.obolibrary.org/obo/NCBITaxon_228608,none +15.8562362,NCBITaxon:229030,http://purl.obolibrary.org/obo/NCBITaxon_229030,none +15.8562362,NCBITaxon:231508,http://purl.obolibrary.org/obo/NCBITaxon_231508,none +15.8562362,NCBITaxon:231509,http://purl.obolibrary.org/obo/NCBITaxon_231509,none +15.8562362,NCBITaxon:23159,http://purl.obolibrary.org/obo/NCBITaxon_23159,none +15.8562362,NCBITaxon:232380,http://purl.obolibrary.org/obo/NCBITaxon_232380,none +15.8562362,NCBITaxon:236415,http://purl.obolibrary.org/obo/NCBITaxon_236415,none +15.8562362,NCBITaxon:238759,http://purl.obolibrary.org/obo/NCBITaxon_238759,none +15.8562362,NCBITaxon:238762,http://purl.obolibrary.org/obo/NCBITaxon_238762,none +15.8562362,NCBITaxon:238764,http://purl.obolibrary.org/obo/NCBITaxon_238764,none +15.8562362,NCBITaxon:238774,http://purl.obolibrary.org/obo/NCBITaxon_238774,none +15.8562362,NCBITaxon:241630,http://purl.obolibrary.org/obo/NCBITaxon_241630,none +15.8562362,NCBITaxon:241793,http://purl.obolibrary.org/obo/NCBITaxon_241793,none +15.8562362,NCBITaxon:247094,http://purl.obolibrary.org/obo/NCBITaxon_247094,none +15.8562362,NCBITaxon:248057,http://purl.obolibrary.org/obo/NCBITaxon_248057,none +15.8562362,NCBITaxon:24943,http://purl.obolibrary.org/obo/NCBITaxon_24943,none +15.8562362,NCBITaxon:252959,http://purl.obolibrary.org/obo/NCBITaxon_252959,none +15.8562362,NCBITaxon:252960,http://purl.obolibrary.org/obo/NCBITaxon_252960,none +15.8562362,NCBITaxon:252961,http://purl.obolibrary.org/obo/NCBITaxon_252961,none +15.8562362,NCBITaxon:253700,http://purl.obolibrary.org/obo/NCBITaxon_253700,none +15.8562362,NCBITaxon:25443,http://purl.obolibrary.org/obo/NCBITaxon_25443,none +15.8562362,NCBITaxon:2546017,http://purl.obolibrary.org/obo/NCBITaxon_2546017,none +15.8562362,NCBITaxon:2560073,http://purl.obolibrary.org/obo/NCBITaxon_2560073,none +15.8562362,NCBITaxon:2560344,http://purl.obolibrary.org/obo/NCBITaxon_2560344,none +15.8562362,NCBITaxon:2560361,http://purl.obolibrary.org/obo/NCBITaxon_2560361,none +15.8562362,NCBITaxon:2560389,http://purl.obolibrary.org/obo/NCBITaxon_2560389,none +15.8562362,NCBITaxon:2560587,http://purl.obolibrary.org/obo/NCBITaxon_2560587,none +15.8562362,NCBITaxon:2560600,http://purl.obolibrary.org/obo/NCBITaxon_2560600,none +15.8562362,NCBITaxon:258326,http://purl.obolibrary.org/obo/NCBITaxon_258326,none +15.8562362,NCBITaxon:260374,http://purl.obolibrary.org/obo/NCBITaxon_260374,none +15.8562362,NCBITaxon:263625,http://purl.obolibrary.org/obo/NCBITaxon_263625,none +15.8562362,NCBITaxon:264462,http://purl.obolibrary.org/obo/NCBITaxon_264462,none +15.8562362,NCBITaxon:266789,http://purl.obolibrary.org/obo/NCBITaxon_266789,none +15.8562362,NCBITaxon:266791,http://purl.obolibrary.org/obo/NCBITaxon_266791,none +15.8562362,NCBITaxon:26766,http://purl.obolibrary.org/obo/NCBITaxon_26766,none +15.8562362,NCBITaxon:2683658,http://purl.obolibrary.org/obo/NCBITaxon_2683658,none +15.8562362,NCBITaxon:2691355,http://purl.obolibrary.org/obo/NCBITaxon_2691355,none +15.8562362,NCBITaxon:269553,http://purl.obolibrary.org/obo/NCBITaxon_269553,none +15.8562362,NCBITaxon:269554,http://purl.obolibrary.org/obo/NCBITaxon_269554,none +15.8562362,NCBITaxon:270,http://purl.obolibrary.org/obo/NCBITaxon_270,none +15.8562362,NCBITaxon:270117,http://purl.obolibrary.org/obo/NCBITaxon_270117,none +15.8562362,NCBITaxon:270251,http://purl.obolibrary.org/obo/NCBITaxon_270251,none +15.8562362,NCBITaxon:2704646,http://purl.obolibrary.org/obo/NCBITaxon_2704646,none +15.8562362,NCBITaxon:270478,http://purl.obolibrary.org/obo/NCBITaxon_270478,none +15.8562362,NCBITaxon:2720872,http://purl.obolibrary.org/obo/NCBITaxon_2720872,none +15.8562362,NCBITaxon:2726946,http://purl.obolibrary.org/obo/NCBITaxon_2726946,Cladosporiales +15.8562362,NCBITaxon:2732588,http://purl.obolibrary.org/obo/NCBITaxon_2732588,none +15.8562362,NCBITaxon:2733251,http://purl.obolibrary.org/obo/NCBITaxon_2733251,none +15.8562362,NCBITaxon:2734443,http://purl.obolibrary.org/obo/NCBITaxon_2734443,none +15.8562362,NCBITaxon:2734468,http://purl.obolibrary.org/obo/NCBITaxon_2734468,none +15.8562362,NCBITaxon:27372,http://purl.obolibrary.org/obo/NCBITaxon_27372,none +15.8562362,NCBITaxon:2743696,http://purl.obolibrary.org/obo/NCBITaxon_2743696,none +15.8562362,NCBITaxon:2743728,http://purl.obolibrary.org/obo/NCBITaxon_2743728,none +15.8562362,NCBITaxon:27458,http://purl.obolibrary.org/obo/NCBITaxon_27458,Chrysops +15.8562362,NCBITaxon:2747493,http://purl.obolibrary.org/obo/NCBITaxon_2747493,none +15.8562362,NCBITaxon:27482,http://purl.obolibrary.org/obo/NCBITaxon_27482,none +15.8562362,NCBITaxon:2761160,http://purl.obolibrary.org/obo/NCBITaxon_2761160,none +15.8562362,NCBITaxon:27827,http://purl.obolibrary.org/obo/NCBITaxon_27827,none +15.8562362,NCBITaxon:27830,http://purl.obolibrary.org/obo/NCBITaxon_27830,none +15.8562362,NCBITaxon:2784887,http://purl.obolibrary.org/obo/NCBITaxon_2784887,none +15.8562362,NCBITaxon:2791029,http://purl.obolibrary.org/obo/NCBITaxon_2791029,none +15.8562362,NCBITaxon:279916,http://purl.obolibrary.org/obo/NCBITaxon_279916,none +15.8562362,NCBITaxon:280091,http://purl.obolibrary.org/obo/NCBITaxon_280091,none +15.8562362,NCBITaxon:2812006,http://purl.obolibrary.org/obo/NCBITaxon_2812006,none +15.8562362,NCBITaxon:2816136,http://purl.obolibrary.org/obo/NCBITaxon_2816136,none +15.8562362,NCBITaxon:28280,http://purl.obolibrary.org/obo/NCBITaxon_28280,none +15.8562362,NCBITaxon:2836391,http://purl.obolibrary.org/obo/NCBITaxon_2836391,none +15.8562362,NCBITaxon:2842327,http://purl.obolibrary.org/obo/NCBITaxon_2842327,none +15.8562362,NCBITaxon:287716,http://purl.obolibrary.org/obo/NCBITaxon_287716,none +15.8562362,NCBITaxon:288132,http://purl.obolibrary.org/obo/NCBITaxon_288132,none +15.8562362,NCBITaxon:288522,http://purl.obolibrary.org/obo/NCBITaxon_288522,none +15.8562362,NCBITaxon:289486,http://purl.obolibrary.org/obo/NCBITaxon_289486,none +15.8562362,NCBITaxon:29105,http://purl.obolibrary.org/obo/NCBITaxon_29105,Calomys +15.8562362,NCBITaxon:29116,http://purl.obolibrary.org/obo/NCBITaxon_29116,none +15.8562362,NCBITaxon:29117,http://purl.obolibrary.org/obo/NCBITaxon_29117,none +15.8562362,NCBITaxon:292919,http://purl.obolibrary.org/obo/NCBITaxon_292919,none +15.8562362,NCBITaxon:292924,http://purl.obolibrary.org/obo/NCBITaxon_292924,none +15.8562362,NCBITaxon:293507,http://purl.obolibrary.org/obo/NCBITaxon_293507,none +15.8562362,NCBITaxon:293508,http://purl.obolibrary.org/obo/NCBITaxon_293508,none +15.8562362,NCBITaxon:29574,http://purl.obolibrary.org/obo/NCBITaxon_29574,none +15.8562362,NCBITaxon:29619,http://purl.obolibrary.org/obo/NCBITaxon_29619,none +15.8562362,NCBITaxon:296190,http://purl.obolibrary.org/obo/NCBITaxon_296190,none +15.8562362,NCBITaxon:29800,http://purl.obolibrary.org/obo/NCBITaxon_29800,none +15.8562362,NCBITaxon:298333,http://purl.obolibrary.org/obo/NCBITaxon_298333,none +15.8562362,NCBITaxon:30001,http://purl.obolibrary.org/obo/NCBITaxon_30001,none +15.8562362,NCBITaxon:30009,http://purl.obolibrary.org/obo/NCBITaxon_30009,none +15.8562362,NCBITaxon:300275,http://purl.obolibrary.org/obo/NCBITaxon_300275,none +15.8562362,NCBITaxon:301242,http://purl.obolibrary.org/obo/NCBITaxon_301242,none +15.8562362,NCBITaxon:3014,http://purl.obolibrary.org/obo/NCBITaxon_3014,none +15.8562362,NCBITaxon:303557,http://purl.obolibrary.org/obo/NCBITaxon_303557,none +15.8562362,NCBITaxon:303991,http://purl.obolibrary.org/obo/NCBITaxon_303991,none +15.8562362,NCBITaxon:304037,http://purl.obolibrary.org/obo/NCBITaxon_304037,none +15.8562362,NCBITaxon:30424,http://purl.obolibrary.org/obo/NCBITaxon_30424,none +15.8562362,NCBITaxon:306034,http://purl.obolibrary.org/obo/NCBITaxon_306034,none +15.8562362,NCBITaxon:306035,http://purl.obolibrary.org/obo/NCBITaxon_306035,none +15.8562362,NCBITaxon:30645,http://purl.obolibrary.org/obo/NCBITaxon_30645,none +15.8562362,NCBITaxon:307164,http://purl.obolibrary.org/obo/NCBITaxon_307164,none +15.8562362,NCBITaxon:30723,http://purl.obolibrary.org/obo/NCBITaxon_30723,none +15.8562362,NCBITaxon:307671,http://purl.obolibrary.org/obo/NCBITaxon_307671,none +15.8562362,NCBITaxon:30806,http://purl.obolibrary.org/obo/NCBITaxon_30806,none +15.8562362,NCBITaxon:308077,http://purl.obolibrary.org/obo/NCBITaxon_308077,none +15.8562362,NCBITaxon:30840,http://purl.obolibrary.org/obo/NCBITaxon_30840,none +15.8562362,NCBITaxon:309390,http://purl.obolibrary.org/obo/NCBITaxon_309390,none +15.8562362,NCBITaxon:30942,http://purl.obolibrary.org/obo/NCBITaxon_30942,none +15.8562362,NCBITaxon:31,http://purl.obolibrary.org/obo/NCBITaxon_31,none +15.8562362,NCBITaxon:3110,http://purl.obolibrary.org/obo/NCBITaxon_3110,none +15.8562362,NCBITaxon:311227,http://purl.obolibrary.org/obo/NCBITaxon_311227,none +15.8562362,NCBITaxon:311477,http://purl.obolibrary.org/obo/NCBITaxon_311477,none +15.8562362,NCBITaxon:312008,http://purl.obolibrary.org/obo/NCBITaxon_312008,none +15.8562362,NCBITaxon:312273,http://purl.obolibrary.org/obo/NCBITaxon_312273,none +15.8562362,NCBITaxon:315576,http://purl.obolibrary.org/obo/NCBITaxon_315576,none +15.8562362,NCBITaxon:315953,http://purl.obolibrary.org/obo/NCBITaxon_315953,none +15.8562362,NCBITaxon:31651,http://purl.obolibrary.org/obo/NCBITaxon_31651,none +15.8562362,NCBITaxon:317321,http://purl.obolibrary.org/obo/NCBITaxon_317321,none +15.8562362,NCBITaxon:317605,http://purl.obolibrary.org/obo/NCBITaxon_317605,none +15.8562362,NCBITaxon:317606,http://purl.obolibrary.org/obo/NCBITaxon_317606,none +15.8562362,NCBITaxon:318062,http://purl.obolibrary.org/obo/NCBITaxon_318062,none +15.8562362,NCBITaxon:318529,http://purl.obolibrary.org/obo/NCBITaxon_318529,none +15.8562362,NCBITaxon:318559,http://purl.obolibrary.org/obo/NCBITaxon_318559,none +15.8562362,NCBITaxon:318848,http://purl.obolibrary.org/obo/NCBITaxon_318848,none +15.8562362,NCBITaxon:318854,http://purl.obolibrary.org/obo/NCBITaxon_318854,none +15.8562362,NCBITaxon:319056,http://purl.obolibrary.org/obo/NCBITaxon_319056,none +15.8562362,NCBITaxon:319060,http://purl.obolibrary.org/obo/NCBITaxon_319060,none +15.8562362,NCBITaxon:3195,http://purl.obolibrary.org/obo/NCBITaxon_3195,none +15.8562362,NCBITaxon:31989,http://purl.obolibrary.org/obo/NCBITaxon_31989,none +15.8562362,NCBITaxon:32,http://purl.obolibrary.org/obo/NCBITaxon_32,none +15.8562362,NCBITaxon:322053,http://purl.obolibrary.org/obo/NCBITaxon_322053,none +15.8562362,NCBITaxon:32257,http://purl.obolibrary.org/obo/NCBITaxon_32257,none +15.8562362,NCBITaxon:32299,http://purl.obolibrary.org/obo/NCBITaxon_32299,none +15.8562362,NCBITaxon:323549,http://purl.obolibrary.org/obo/NCBITaxon_323549,none +15.8562362,NCBITaxon:32386,http://purl.obolibrary.org/obo/NCBITaxon_32386,none +15.8562362,NCBITaxon:3243,http://purl.obolibrary.org/obo/NCBITaxon_3243,none +15.8562362,NCBITaxon:3244,http://purl.obolibrary.org/obo/NCBITaxon_3244,none +15.8562362,NCBITaxon:3245,http://purl.obolibrary.org/obo/NCBITaxon_3245,none +15.8562362,NCBITaxon:3246,http://purl.obolibrary.org/obo/NCBITaxon_3246,none +15.8562362,NCBITaxon:32611,http://purl.obolibrary.org/obo/NCBITaxon_32611,none +15.8562362,NCBITaxon:326941,http://purl.obolibrary.org/obo/NCBITaxon_326941,none +15.8562362,NCBITaxon:326956,http://purl.obolibrary.org/obo/NCBITaxon_326956,none +15.8562362,NCBITaxon:327280,http://purl.obolibrary.org/obo/NCBITaxon_327280,none +15.8562362,NCBITaxon:327387,http://purl.obolibrary.org/obo/NCBITaxon_327387,none +15.8562362,NCBITaxon:33057,http://purl.obolibrary.org/obo/NCBITaxon_33057,none +15.8562362,NCBITaxon:33084,http://purl.obolibrary.org/obo/NCBITaxon_33084,Entamoebidae +15.8562362,NCBITaxon:33104,http://purl.obolibrary.org/obo/NCBITaxon_33104,none +15.8562362,NCBITaxon:33218,http://purl.obolibrary.org/obo/NCBITaxon_33218,none +15.8562362,NCBITaxon:33263,http://purl.obolibrary.org/obo/NCBITaxon_33263,none +15.8562362,NCBITaxon:33362,http://purl.obolibrary.org/obo/NCBITaxon_33362,none +15.8562362,NCBITaxon:33370,http://purl.obolibrary.org/obo/NCBITaxon_33370,none +15.8562362,NCBITaxon:333763,http://purl.obolibrary.org/obo/NCBITaxon_333763,none +15.8562362,NCBITaxon:333767,http://purl.obolibrary.org/obo/NCBITaxon_333767,none +15.8562362,NCBITaxon:33385,http://purl.obolibrary.org/obo/NCBITaxon_33385,none +15.8562362,NCBITaxon:33386,http://purl.obolibrary.org/obo/NCBITaxon_33386,none +15.8562362,NCBITaxon:33551,http://purl.obolibrary.org/obo/NCBITaxon_33551,none +15.8562362,NCBITaxon:336063,http://purl.obolibrary.org/obo/NCBITaxon_336063,none +15.8562362,NCBITaxon:33758,http://purl.obolibrary.org/obo/NCBITaxon_33758,Echovirus +15.8562362,NCBITaxon:33859,http://purl.obolibrary.org/obo/NCBITaxon_33859,none +15.8562362,NCBITaxon:340184,http://purl.obolibrary.org/obo/NCBITaxon_340184,none +15.8562362,NCBITaxon:340195,http://purl.obolibrary.org/obo/NCBITaxon_340195,none +15.8562362,NCBITaxon:340921,http://purl.obolibrary.org/obo/NCBITaxon_340921,none +15.8562362,NCBITaxon:341297,http://purl.obolibrary.org/obo/NCBITaxon_341297,none +15.8562362,NCBITaxon:341711,http://purl.obolibrary.org/obo/NCBITaxon_341711,none +15.8562362,NCBITaxon:34385,http://purl.obolibrary.org/obo/NCBITaxon_34385,none +15.8562362,NCBITaxon:343908,http://purl.obolibrary.org/obo/NCBITaxon_343908,none +15.8562362,NCBITaxon:34398,http://purl.obolibrary.org/obo/NCBITaxon_34398,none +15.8562362,NCBITaxon:34502,http://purl.obolibrary.org/obo/NCBITaxon_34502,Troglotrematidae +15.8562362,NCBITaxon:34503,http://purl.obolibrary.org/obo/NCBITaxon_34503,Paragonimus +15.8562362,NCBITaxon:345249,http://purl.obolibrary.org/obo/NCBITaxon_345249,none +15.8562362,NCBITaxon:34667,http://purl.obolibrary.org/obo/NCBITaxon_34667,none +15.8562362,NCBITaxon:3493,http://purl.obolibrary.org/obo/NCBITaxon_3493,none +15.8562362,NCBITaxon:3499,http://purl.obolibrary.org/obo/NCBITaxon_3499,none +15.8562362,NCBITaxon:351048,http://purl.obolibrary.org/obo/NCBITaxon_351048,none +15.8562362,NCBITaxon:351049,http://purl.obolibrary.org/obo/NCBITaxon_351049,none +15.8562362,NCBITaxon:351425,http://purl.obolibrary.org/obo/NCBITaxon_351425,none +15.8562362,NCBITaxon:351427,http://purl.obolibrary.org/obo/NCBITaxon_351427,none +15.8562362,NCBITaxon:352235,http://purl.obolibrary.org/obo/NCBITaxon_352235,none +15.8562362,NCBITaxon:3525,http://purl.obolibrary.org/obo/NCBITaxon_3525,none +15.8562362,NCBITaxon:35274,http://purl.obolibrary.org/obo/NCBITaxon_35274,none +15.8562362,NCBITaxon:35307,http://purl.obolibrary.org/obo/NCBITaxon_35307,none +15.8562362,NCBITaxon:35308,http://purl.obolibrary.org/obo/NCBITaxon_35308,none +15.8562362,NCBITaxon:35327,http://purl.obolibrary.org/obo/NCBITaxon_35327,none +15.8562362,NCBITaxon:35590,http://purl.obolibrary.org/obo/NCBITaxon_35590,none +15.8562362,NCBITaxon:35593,http://purl.obolibrary.org/obo/NCBITaxon_35593,none +15.8562362,NCBITaxon:35932,http://purl.obolibrary.org/obo/NCBITaxon_35932,none +15.8562362,NCBITaxon:360394,http://purl.obolibrary.org/obo/NCBITaxon_360394,none +15.8562362,NCBITaxon:360579,http://purl.obolibrary.org/obo/NCBITaxon_360579,none +15.8562362,NCBITaxon:36108,http://purl.obolibrary.org/obo/NCBITaxon_36108,none +15.8562362,NCBITaxon:361688,http://purl.obolibrary.org/obo/NCBITaxon_361688,none +15.8562362,NCBITaxon:3620,http://purl.obolibrary.org/obo/NCBITaxon_3620,none +15.8562362,NCBITaxon:362784,http://purl.obolibrary.org/obo/NCBITaxon_362784,none +15.8562362,NCBITaxon:364158,http://purl.obolibrary.org/obo/NCBITaxon_364158,none +15.8562362,NCBITaxon:364330,http://purl.obolibrary.org/obo/NCBITaxon_364330,none +15.8562362,NCBITaxon:3647,http://purl.obolibrary.org/obo/NCBITaxon_3647,none +15.8562362,NCBITaxon:367061,http://purl.obolibrary.org/obo/NCBITaxon_367061,none +15.8562362,NCBITaxon:36752,http://purl.obolibrary.org/obo/NCBITaxon_36752,none +15.8562362,NCBITaxon:368445,http://purl.obolibrary.org/obo/NCBITaxon_368445,none +15.8562362,NCBITaxon:368736,http://purl.obolibrary.org/obo/NCBITaxon_368736,none +15.8562362,NCBITaxon:36939,http://purl.obolibrary.org/obo/NCBITaxon_36939,none +15.8562362,NCBITaxon:370241,http://purl.obolibrary.org/obo/NCBITaxon_370241,none +15.8562362,NCBITaxon:37120,http://purl.obolibrary.org/obo/NCBITaxon_37120,none +15.8562362,NCBITaxon:372785,http://purl.obolibrary.org/obo/NCBITaxon_372785,none +15.8562362,NCBITaxon:3737,http://purl.obolibrary.org/obo/NCBITaxon_3737,none +15.8562362,NCBITaxon:374,http://purl.obolibrary.org/obo/NCBITaxon_374,none +15.8562362,NCBITaxon:374069,http://purl.obolibrary.org/obo/NCBITaxon_374069,none +15.8562362,NCBITaxon:37428,http://purl.obolibrary.org/obo/NCBITaxon_37428,none +15.8562362,NCBITaxon:375546,http://purl.obolibrary.org/obo/NCBITaxon_375546,none +15.8562362,NCBITaxon:37568,http://purl.obolibrary.org/obo/NCBITaxon_37568,none +15.8562362,NCBITaxon:376725,http://purl.obolibrary.org/obo/NCBITaxon_376725,none +15.8562362,NCBITaxon:3771,http://purl.obolibrary.org/obo/NCBITaxon_3771,none +15.8562362,NCBITaxon:37881,http://purl.obolibrary.org/obo/NCBITaxon_37881,none +15.8562362,NCBITaxon:379964,http://purl.obolibrary.org/obo/NCBITaxon_379964,none +15.8562362,NCBITaxon:380438,http://purl.obolibrary.org/obo/NCBITaxon_380438,none +15.8562362,NCBITaxon:38066,http://purl.obolibrary.org/obo/NCBITaxon_38066,Alouattinae +15.8562362,NCBITaxon:381707,http://purl.obolibrary.org/obo/NCBITaxon_381707,none +15.8562362,NCBITaxon:38172,http://purl.obolibrary.org/obo/NCBITaxon_38172,none +15.8562362,NCBITaxon:3853,http://purl.obolibrary.org/obo/NCBITaxon_3853,none +15.8562362,NCBITaxon:38597,http://purl.obolibrary.org/obo/NCBITaxon_38597,none +15.8562362,NCBITaxon:38598,http://purl.obolibrary.org/obo/NCBITaxon_38598,none +15.8562362,NCBITaxon:38608,http://purl.obolibrary.org/obo/NCBITaxon_38608,none +15.8562362,NCBITaxon:38666,http://purl.obolibrary.org/obo/NCBITaxon_38666,none +15.8562362,NCBITaxon:38671,http://purl.obolibrary.org/obo/NCBITaxon_38671,none +15.8562362,NCBITaxon:38672,http://purl.obolibrary.org/obo/NCBITaxon_38672,none +15.8562362,NCBITaxon:38674,http://purl.obolibrary.org/obo/NCBITaxon_38674,none +15.8562362,NCBITaxon:38838,http://purl.obolibrary.org/obo/NCBITaxon_38838,none +15.8562362,NCBITaxon:388799,http://purl.obolibrary.org/obo/NCBITaxon_388799,none +15.8562362,NCBITaxon:3888,http://purl.obolibrary.org/obo/NCBITaxon_3888,none +15.8562362,NCBITaxon:388909,http://purl.obolibrary.org/obo/NCBITaxon_388909,none +15.8562362,NCBITaxon:39013,http://purl.obolibrary.org/obo/NCBITaxon_39013,none +15.8562362,NCBITaxon:390436,http://purl.obolibrary.org/obo/NCBITaxon_390436,none +15.8562362,NCBITaxon:39130,http://purl.obolibrary.org/obo/NCBITaxon_39130,none +15.8562362,NCBITaxon:392174,http://purl.obolibrary.org/obo/NCBITaxon_392174,none +15.8562362,NCBITaxon:39755,http://purl.obolibrary.org/obo/NCBITaxon_39755,none +15.8562362,NCBITaxon:399387,http://purl.obolibrary.org/obo/NCBITaxon_399387,none +15.8562362,NCBITaxon:40030,http://purl.obolibrary.org/obo/NCBITaxon_40030,none +15.8562362,NCBITaxon:400394,http://purl.obolibrary.org/obo/NCBITaxon_400394,none +15.8562362,NCBITaxon:40060,http://purl.obolibrary.org/obo/NCBITaxon_40060,none +15.8562362,NCBITaxon:40062,http://purl.obolibrary.org/obo/NCBITaxon_40062,none +15.8562362,NCBITaxon:400677,http://purl.obolibrary.org/obo/NCBITaxon_400677,none +15.8562362,NCBITaxon:400781,http://purl.obolibrary.org/obo/NCBITaxon_400781,none +15.8562362,NCBITaxon:40092,http://purl.obolibrary.org/obo/NCBITaxon_40092,none +15.8562362,NCBITaxon:40093,http://purl.obolibrary.org/obo/NCBITaxon_40093,none +15.8562362,NCBITaxon:40100,http://purl.obolibrary.org/obo/NCBITaxon_40100,none +15.8562362,NCBITaxon:4025,http://purl.obolibrary.org/obo/NCBITaxon_4025,none +15.8562362,NCBITaxon:403897,http://purl.obolibrary.org/obo/NCBITaxon_403897,none +15.8562362,NCBITaxon:40415,http://purl.obolibrary.org/obo/NCBITaxon_40415,none +15.8562362,NCBITaxon:404315,http://purl.obolibrary.org/obo/NCBITaxon_404315,none +15.8562362,NCBITaxon:40493,http://purl.obolibrary.org/obo/NCBITaxon_40493,none +15.8562362,NCBITaxon:40494,http://purl.obolibrary.org/obo/NCBITaxon_40494,none +15.8562362,NCBITaxon:4053,http://purl.obolibrary.org/obo/NCBITaxon_4053,none +15.8562362,NCBITaxon:405558,http://purl.obolibrary.org/obo/NCBITaxon_405558,none +15.8562362,NCBITaxon:40667,http://purl.obolibrary.org/obo/NCBITaxon_40667,none +15.8562362,NCBITaxon:40678,http://purl.obolibrary.org/obo/NCBITaxon_40678,none +15.8562362,NCBITaxon:408599,http://purl.obolibrary.org/obo/NCBITaxon_408599,none +15.8562362,NCBITaxon:409486,http://purl.obolibrary.org/obo/NCBITaxon_409486,none +15.8562362,NCBITaxon:4101,http://purl.obolibrary.org/obo/NCBITaxon_4101,none +15.8562362,NCBITaxon:4128,http://purl.obolibrary.org/obo/NCBITaxon_4128,none +15.8562362,NCBITaxon:41406,http://purl.obolibrary.org/obo/NCBITaxon_41406,none +15.8562362,NCBITaxon:414528,http://purl.obolibrary.org/obo/NCBITaxon_414528,none +15.8562362,NCBITaxon:41678,http://purl.obolibrary.org/obo/NCBITaxon_41678,Turkey adenovirus 3 +15.8562362,NCBITaxon:41832,http://purl.obolibrary.org/obo/NCBITaxon_41832,none +15.8562362,NCBITaxon:41934,http://purl.obolibrary.org/obo/NCBITaxon_41934,none +15.8562362,NCBITaxon:4196,http://purl.obolibrary.org/obo/NCBITaxon_4196,none +15.8562362,NCBITaxon:4211,http://purl.obolibrary.org/obo/NCBITaxon_4211,none +15.8562362,NCBITaxon:42228,http://purl.obolibrary.org/obo/NCBITaxon_42228,none +15.8562362,NCBITaxon:4223,http://purl.obolibrary.org/obo/NCBITaxon_4223,none +15.8562362,NCBITaxon:42240,http://purl.obolibrary.org/obo/NCBITaxon_42240,none +15.8562362,NCBITaxon:4235,http://purl.obolibrary.org/obo/NCBITaxon_4235,none +15.8562362,NCBITaxon:424552,http://purl.obolibrary.org/obo/NCBITaxon_424552,none +15.8562362,NCBITaxon:424559,http://purl.obolibrary.org/obo/NCBITaxon_424559,none +15.8562362,NCBITaxon:425279,http://purl.obolibrary.org/obo/NCBITaxon_425279,none +15.8562362,NCBITaxon:4253,http://purl.obolibrary.org/obo/NCBITaxon_4253,none +15.8562362,NCBITaxon:4255,http://purl.obolibrary.org/obo/NCBITaxon_4255,none +15.8562362,NCBITaxon:42553,http://purl.obolibrary.org/obo/NCBITaxon_42553,none +15.8562362,NCBITaxon:42555,http://purl.obolibrary.org/obo/NCBITaxon_42555,none +15.8562362,NCBITaxon:426104,http://purl.obolibrary.org/obo/NCBITaxon_426104,none +15.8562362,NCBITaxon:426786,http://purl.obolibrary.org/obo/NCBITaxon_426786,none +15.8562362,NCBITaxon:4269,http://purl.obolibrary.org/obo/NCBITaxon_4269,none +15.8562362,NCBITaxon:42789,http://purl.obolibrary.org/obo/NCBITaxon_42789,none +15.8562362,NCBITaxon:428043,http://purl.obolibrary.org/obo/NCBITaxon_428043,none +15.8562362,NCBITaxon:43167,http://purl.obolibrary.org/obo/NCBITaxon_43167,none +15.8562362,NCBITaxon:43271,http://purl.obolibrary.org/obo/NCBITaxon_43271,none +15.8562362,NCBITaxon:4346,http://purl.obolibrary.org/obo/NCBITaxon_4346,none +15.8562362,NCBITaxon:435892,http://purl.obolibrary.org/obo/NCBITaxon_435892,none +15.8562362,NCBITaxon:435893,http://purl.obolibrary.org/obo/NCBITaxon_435893,none +15.8562362,NCBITaxon:43716,http://purl.obolibrary.org/obo/NCBITaxon_43716,none +15.8562362,NCBITaxon:43717,http://purl.obolibrary.org/obo/NCBITaxon_43717,none +15.8562362,NCBITaxon:43813,http://purl.obolibrary.org/obo/NCBITaxon_43813,none +15.8562362,NCBITaxon:43920,http://purl.obolibrary.org/obo/NCBITaxon_43920,Chrysopsinae +15.8562362,NCBITaxon:4418,http://purl.obolibrary.org/obo/NCBITaxon_4418,none +15.8562362,NCBITaxon:442712,http://purl.obolibrary.org/obo/NCBITaxon_442712,none +15.8562362,NCBITaxon:44327,http://purl.obolibrary.org/obo/NCBITaxon_44327,none +15.8562362,NCBITaxon:44329,http://purl.obolibrary.org/obo/NCBITaxon_44329,none +15.8562362,NCBITaxon:443306,http://purl.obolibrary.org/obo/NCBITaxon_443306,none +15.8562362,NCBITaxon:4441,http://purl.obolibrary.org/obo/NCBITaxon_4441,none +15.8562362,NCBITaxon:44570,http://purl.obolibrary.org/obo/NCBITaxon_44570,none +15.8562362,NCBITaxon:4459,http://purl.obolibrary.org/obo/NCBITaxon_4459,none +15.8562362,NCBITaxon:44598,http://purl.obolibrary.org/obo/NCBITaxon_44598,none +15.8562362,NCBITaxon:4464,http://purl.obolibrary.org/obo/NCBITaxon_4464,none +15.8562362,NCBITaxon:446548,http://purl.obolibrary.org/obo/NCBITaxon_446548,none +15.8562362,NCBITaxon:447909,http://purl.obolibrary.org/obo/NCBITaxon_447909,none +15.8562362,NCBITaxon:4512,http://purl.obolibrary.org/obo/NCBITaxon_4512,none +15.8562362,NCBITaxon:4520,http://purl.obolibrary.org/obo/NCBITaxon_4520,none +15.8562362,NCBITaxon:45218,http://purl.obolibrary.org/obo/NCBITaxon_45218,none +15.8562362,NCBITaxon:45222,http://purl.obolibrary.org/obo/NCBITaxon_45222,none +15.8562362,NCBITaxon:452563,http://purl.obolibrary.org/obo/NCBITaxon_452563,Cladosporiaceae +15.8562362,NCBITaxon:45443,http://purl.obolibrary.org/obo/NCBITaxon_45443,none +15.8562362,NCBITaxon:455367,http://purl.obolibrary.org/obo/NCBITaxon_455367,none +15.8562362,NCBITaxon:45625,http://purl.obolibrary.org/obo/NCBITaxon_45625,none +15.8562362,NCBITaxon:46024,http://purl.obolibrary.org/obo/NCBITaxon_46024,none +15.8562362,NCBITaxon:46221,http://purl.obolibrary.org/obo/NCBITaxon_46221,none +15.8562362,NCBITaxon:462262,http://purl.obolibrary.org/obo/NCBITaxon_462262,none +15.8562362,NCBITaxon:46255,http://purl.obolibrary.org/obo/NCBITaxon_46255,none +15.8562362,NCBITaxon:4637,http://purl.obolibrary.org/obo/NCBITaxon_4637,none +15.8562362,NCBITaxon:46660,http://purl.obolibrary.org/obo/NCBITaxon_46660,Muraenidae +15.8562362,NCBITaxon:46729,http://purl.obolibrary.org/obo/NCBITaxon_46729,none +15.8562362,NCBITaxon:46730,http://purl.obolibrary.org/obo/NCBITaxon_46730,none +15.8562362,NCBITaxon:46790,http://purl.obolibrary.org/obo/NCBITaxon_46790,none +15.8562362,NCBITaxon:46794,http://purl.obolibrary.org/obo/NCBITaxon_46794,none +15.8562362,NCBITaxon:468197,http://purl.obolibrary.org/obo/NCBITaxon_468197,none +15.8562362,NCBITaxon:4685,http://purl.obolibrary.org/obo/NCBITaxon_4685,none +15.8562362,NCBITaxon:46881,http://purl.obolibrary.org/obo/NCBITaxon_46881,none +15.8562362,NCBITaxon:4732,http://purl.obolibrary.org/obo/NCBITaxon_4732,none +15.8562362,NCBITaxon:4741,http://purl.obolibrary.org/obo/NCBITaxon_4741,none +15.8562362,NCBITaxon:47529,http://purl.obolibrary.org/obo/NCBITaxon_47529,none +15.8562362,NCBITaxon:47530,http://purl.obolibrary.org/obo/NCBITaxon_47530,none +15.8562362,NCBITaxon:47898,http://purl.obolibrary.org/obo/NCBITaxon_47898,none +15.8562362,NCBITaxon:47901,http://purl.obolibrary.org/obo/NCBITaxon_47901,none +15.8562362,NCBITaxon:479060,http://purl.obolibrary.org/obo/NCBITaxon_479060,none +15.8562362,NCBITaxon:48008,http://purl.obolibrary.org/obo/NCBITaxon_48008,none +15.8562362,NCBITaxon:48090,http://purl.obolibrary.org/obo/NCBITaxon_48090,none +15.8562362,NCBITaxon:48201,http://purl.obolibrary.org/obo/NCBITaxon_48201,none +15.8562362,NCBITaxon:48317,http://purl.obolibrary.org/obo/NCBITaxon_48317,none +15.8562362,NCBITaxon:4854,http://purl.obolibrary.org/obo/NCBITaxon_4854,none +15.8562362,NCBITaxon:48542,http://purl.obolibrary.org/obo/NCBITaxon_48542,none +15.8562362,NCBITaxon:4855,http://purl.obolibrary.org/obo/NCBITaxon_4855,none +15.8562362,NCBITaxon:489448,http://purl.obolibrary.org/obo/NCBITaxon_489448,none +15.8562362,NCBITaxon:48982,http://purl.obolibrary.org/obo/NCBITaxon_48982,none +15.8562362,NCBITaxon:48991,http://purl.obolibrary.org/obo/NCBITaxon_48991,none +15.8562362,NCBITaxon:490109,http://purl.obolibrary.org/obo/NCBITaxon_490109,none +15.8562362,NCBITaxon:490110,http://purl.obolibrary.org/obo/NCBITaxon_490110,none +15.8562362,NCBITaxon:491893,http://purl.obolibrary.org/obo/NCBITaxon_491893,none +15.8562362,NCBITaxon:492502,http://purl.obolibrary.org/obo/NCBITaxon_492502,none +15.8562362,NCBITaxon:49267,http://purl.obolibrary.org/obo/NCBITaxon_49267,none +15.8562362,NCBITaxon:49445,http://purl.obolibrary.org/obo/NCBITaxon_49445,none +15.8562362,NCBITaxon:4951,http://purl.obolibrary.org/obo/NCBITaxon_4951,none +15.8562362,NCBITaxon:49542,http://purl.obolibrary.org/obo/NCBITaxon_49542,none +15.8562362,NCBITaxon:49606,http://purl.obolibrary.org/obo/NCBITaxon_49606,none +15.8562362,NCBITaxon:49662,http://purl.obolibrary.org/obo/NCBITaxon_49662,none +15.8562362,NCBITaxon:497705,http://purl.obolibrary.org/obo/NCBITaxon_497705,none +15.8562362,NCBITaxon:497862,http://purl.obolibrary.org/obo/NCBITaxon_497862,none +15.8562362,NCBITaxon:499854,http://purl.obolibrary.org/obo/NCBITaxon_499854,none +15.8562362,NCBITaxon:50033,http://purl.obolibrary.org/obo/NCBITaxon_50033,none +15.8562362,NCBITaxon:50241,http://purl.obolibrary.org/obo/NCBITaxon_50241,none +15.8562362,NCBITaxon:50424,http://purl.obolibrary.org/obo/NCBITaxon_50424,none +15.8562362,NCBITaxon:50425,http://purl.obolibrary.org/obo/NCBITaxon_50425,none +15.8562362,NCBITaxon:50457,http://purl.obolibrary.org/obo/NCBITaxon_50457,none +15.8562362,NCBITaxon:50672,http://purl.obolibrary.org/obo/NCBITaxon_50672,none +15.8562362,NCBITaxon:507486,http://purl.obolibrary.org/obo/NCBITaxon_507486,none +15.8562362,NCBITaxon:50861,http://purl.obolibrary.org/obo/NCBITaxon_50861,none +15.8562362,NCBITaxon:509528,http://purl.obolibrary.org/obo/NCBITaxon_509528,none +15.8562362,NCBITaxon:51033,http://purl.obolibrary.org/obo/NCBITaxon_51033,none +15.8562362,NCBITaxon:51159,http://purl.obolibrary.org/obo/NCBITaxon_51159,none +15.8562362,NCBITaxon:51238,http://purl.obolibrary.org/obo/NCBITaxon_51238,none +15.8562362,NCBITaxon:5149,http://purl.obolibrary.org/obo/NCBITaxon_5149,none +15.8562362,NCBITaxon:515446,http://purl.obolibrary.org/obo/NCBITaxon_515446,none +15.8562362,NCBITaxon:51676,http://purl.obolibrary.org/obo/NCBITaxon_51676,none +15.8562362,NCBITaxon:519426,http://purl.obolibrary.org/obo/NCBITaxon_519426,none +15.8562362,NCBITaxon:519443,http://purl.obolibrary.org/obo/NCBITaxon_519443,none +15.8562362,NCBITaxon:519444,http://purl.obolibrary.org/obo/NCBITaxon_519444,none +15.8562362,NCBITaxon:5197,http://purl.obolibrary.org/obo/NCBITaxon_5197,none +15.8562362,NCBITaxon:520848,http://purl.obolibrary.org/obo/NCBITaxon_520848,none +15.8562362,NCBITaxon:52201,http://purl.obolibrary.org/obo/NCBITaxon_52201,none +15.8562362,NCBITaxon:5240,http://purl.obolibrary.org/obo/NCBITaxon_5240,none +15.8562362,NCBITaxon:52905,http://purl.obolibrary.org/obo/NCBITaxon_52905,none +15.8562362,NCBITaxon:52906,http://purl.obolibrary.org/obo/NCBITaxon_52906,none +15.8562362,NCBITaxon:535898,http://purl.obolibrary.org/obo/NCBITaxon_535898,none +15.8562362,NCBITaxon:538123,http://purl.obolibrary.org/obo/NCBITaxon_538123,none +15.8562362,NCBITaxon:54110,http://purl.obolibrary.org/obo/NCBITaxon_54110,none +15.8562362,NCBITaxon:54134,http://purl.obolibrary.org/obo/NCBITaxon_54134,none +15.8562362,NCBITaxon:54135,http://purl.obolibrary.org/obo/NCBITaxon_54135,Allenopithecus nigroviridis +15.8562362,NCBITaxon:542835,http://purl.obolibrary.org/obo/NCBITaxon_542835,none +15.8562362,NCBITaxon:54459,http://purl.obolibrary.org/obo/NCBITaxon_54459,none +15.8562362,NCBITaxon:54460,http://purl.obolibrary.org/obo/NCBITaxon_54460,none +15.8562362,NCBITaxon:5498,http://purl.obolibrary.org/obo/NCBITaxon_5498,Cladosporium +15.8562362,NCBITaxon:55096,http://purl.obolibrary.org/obo/NCBITaxon_55096,none +15.8562362,NCBITaxon:551531,http://purl.obolibrary.org/obo/NCBITaxon_551531,none +15.8562362,NCBITaxon:55182,http://purl.obolibrary.org/obo/NCBITaxon_55182,none +15.8562362,NCBITaxon:552554,http://purl.obolibrary.org/obo/NCBITaxon_552554,none +15.8562362,NCBITaxon:553065,http://purl.obolibrary.org/obo/NCBITaxon_553065,none +15.8562362,NCBITaxon:55458,http://purl.obolibrary.org/obo/NCBITaxon_55458,none +15.8562362,NCBITaxon:55714,http://purl.obolibrary.org/obo/NCBITaxon_55714,none +15.8562362,NCBITaxon:5592,http://purl.obolibrary.org/obo/NCBITaxon_5592,Microascales +15.8562362,NCBITaxon:5593,http://purl.obolibrary.org/obo/NCBITaxon_5593,Microascaceae +15.8562362,NCBITaxon:55945,http://purl.obolibrary.org/obo/NCBITaxon_55945,none +15.8562362,NCBITaxon:55947,http://purl.obolibrary.org/obo/NCBITaxon_55947,none +15.8562362,NCBITaxon:56213,http://purl.obolibrary.org/obo/NCBITaxon_56213,none +15.8562362,NCBITaxon:56231,http://purl.obolibrary.org/obo/NCBITaxon_56231,none +15.8562362,NCBITaxon:564878,http://purl.obolibrary.org/obo/NCBITaxon_564878,none +15.8562362,NCBITaxon:56718,http://purl.obolibrary.org/obo/NCBITaxon_56718,none +15.8562362,NCBITaxon:5758,http://purl.obolibrary.org/obo/NCBITaxon_5758,Entamoeba +15.8562362,NCBITaxon:576352,http://purl.obolibrary.org/obo/NCBITaxon_576352,none +15.8562362,NCBITaxon:577124,http://purl.obolibrary.org/obo/NCBITaxon_577124,none +15.8562362,NCBITaxon:578107,http://purl.obolibrary.org/obo/NCBITaxon_578107,none +15.8562362,NCBITaxon:58328,http://purl.obolibrary.org/obo/NCBITaxon_58328,none +15.8562362,NCBITaxon:58543,http://purl.obolibrary.org/obo/NCBITaxon_58543,none +15.8562362,NCBITaxon:58546,http://purl.obolibrary.org/obo/NCBITaxon_58546,none +15.8562362,NCBITaxon:58578,http://purl.obolibrary.org/obo/NCBITaxon_58578,none +15.8562362,NCBITaxon:58579,http://purl.obolibrary.org/obo/NCBITaxon_58579,none +15.8562362,NCBITaxon:58829,http://purl.obolibrary.org/obo/NCBITaxon_58829,none +15.8562362,NCBITaxon:59070,http://purl.obolibrary.org/obo/NCBITaxon_59070,none +15.8562362,NCBITaxon:592558,http://purl.obolibrary.org/obo/NCBITaxon_592558,none +15.8562362,NCBITaxon:595895,http://purl.obolibrary.org/obo/NCBITaxon_595895,none +15.8562362,NCBITaxon:59801,http://purl.obolibrary.org/obo/NCBITaxon_59801,none +15.8562362,NCBITaxon:59848,http://purl.obolibrary.org/obo/NCBITaxon_59848,Chrysopsini +15.8562362,NCBITaxon:60004,http://purl.obolibrary.org/obo/NCBITaxon_60004,none +15.8562362,NCBITaxon:613091,http://purl.obolibrary.org/obo/NCBITaxon_613091,none +15.8562362,NCBITaxon:62155,http://purl.obolibrary.org/obo/NCBITaxon_62155,none +15.8562362,NCBITaxon:62752,http://purl.obolibrary.org/obo/NCBITaxon_62752,none +15.8562362,NCBITaxon:62921,http://purl.obolibrary.org/obo/NCBITaxon_62921,none +15.8562362,NCBITaxon:62923,http://purl.obolibrary.org/obo/NCBITaxon_62923,none +15.8562362,NCBITaxon:629727,http://purl.obolibrary.org/obo/NCBITaxon_629727,none +15.8562362,NCBITaxon:630701,http://purl.obolibrary.org/obo/NCBITaxon_630701,none +15.8562362,NCBITaxon:630702,http://purl.obolibrary.org/obo/NCBITaxon_630702,none +15.8562362,NCBITaxon:63071,http://purl.obolibrary.org/obo/NCBITaxon_63071,none +15.8562362,NCBITaxon:6342,http://purl.obolibrary.org/obo/NCBITaxon_6342,none +15.8562362,NCBITaxon:63443,http://purl.obolibrary.org/obo/NCBITaxon_63443,none +15.8562362,NCBITaxon:6373,http://purl.obolibrary.org/obo/NCBITaxon_6373,none +15.8562362,NCBITaxon:6383,http://purl.obolibrary.org/obo/NCBITaxon_6383,none +15.8562362,NCBITaxon:638313,http://purl.obolibrary.org/obo/NCBITaxon_638313,none +15.8562362,NCBITaxon:639021,http://purl.obolibrary.org/obo/NCBITaxon_639021,none +15.8562362,NCBITaxon:640621,http://purl.obolibrary.org/obo/NCBITaxon_640621,none +15.8562362,NCBITaxon:6440,http://purl.obolibrary.org/obo/NCBITaxon_6440,none +15.8562362,NCBITaxon:6445,http://purl.obolibrary.org/obo/NCBITaxon_6445,none +15.8562362,NCBITaxon:6446,http://purl.obolibrary.org/obo/NCBITaxon_6446,none +15.8562362,NCBITaxon:6475,http://purl.obolibrary.org/obo/NCBITaxon_6475,none +15.8562362,NCBITaxon:649187,http://purl.obolibrary.org/obo/NCBITaxon_649187,none +15.8562362,NCBITaxon:6496,http://purl.obolibrary.org/obo/NCBITaxon_6496,none +15.8562362,NCBITaxon:6497,http://purl.obolibrary.org/obo/NCBITaxon_6497,none +15.8562362,NCBITaxon:6498,http://purl.obolibrary.org/obo/NCBITaxon_6498,none +15.8562362,NCBITaxon:6499,http://purl.obolibrary.org/obo/NCBITaxon_6499,none +15.8562362,NCBITaxon:651667,http://purl.obolibrary.org/obo/NCBITaxon_651667,none +15.8562362,NCBITaxon:658048,http://purl.obolibrary.org/obo/NCBITaxon_658048,none +15.8562362,NCBITaxon:661981,http://purl.obolibrary.org/obo/NCBITaxon_661981,none +15.8562362,NCBITaxon:66264,http://purl.obolibrary.org/obo/NCBITaxon_66264,none +15.8562362,NCBITaxon:66366,http://purl.obolibrary.org/obo/NCBITaxon_66366,none +15.8562362,NCBITaxon:66522,http://purl.obolibrary.org/obo/NCBITaxon_66522,none +15.8562362,NCBITaxon:665874,http://purl.obolibrary.org/obo/NCBITaxon_665874,none +15.8562362,NCBITaxon:6670,http://purl.obolibrary.org/obo/NCBITaxon_6670,none +15.8562362,NCBITaxon:667093,http://purl.obolibrary.org/obo/NCBITaxon_667093,none +15.8562362,NCBITaxon:6738,http://purl.obolibrary.org/obo/NCBITaxon_6738,none +15.8562362,NCBITaxon:675065,http://purl.obolibrary.org/obo/NCBITaxon_675065,none +15.8562362,NCBITaxon:6774,http://purl.obolibrary.org/obo/NCBITaxon_6774,Portunoidea +15.8562362,NCBITaxon:680194,http://purl.obolibrary.org/obo/NCBITaxon_680194,none +15.8562362,NCBITaxon:680287,http://purl.obolibrary.org/obo/NCBITaxon_680287,none +15.8562362,NCBITaxon:68558,http://purl.obolibrary.org/obo/NCBITaxon_68558,none +15.8562362,NCBITaxon:685899,http://purl.obolibrary.org/obo/NCBITaxon_685899,none +15.8562362,NCBITaxon:686607,http://purl.obolibrary.org/obo/NCBITaxon_686607,none +15.8562362,NCBITaxon:6894,http://purl.obolibrary.org/obo/NCBITaxon_6894,none +15.8562362,NCBITaxon:689458,http://purl.obolibrary.org/obo/NCBITaxon_689458,none +15.8562362,NCBITaxon:69077,http://purl.obolibrary.org/obo/NCBITaxon_69077,none +15.8562362,NCBITaxon:693015,http://purl.obolibrary.org/obo/NCBITaxon_693015,none +15.8562362,NCBITaxon:693377,http://purl.obolibrary.org/obo/NCBITaxon_693377,none +15.8562362,NCBITaxon:693760,http://purl.obolibrary.org/obo/NCBITaxon_693760,none +15.8562362,NCBITaxon:69576,http://purl.obolibrary.org/obo/NCBITaxon_69576,none +15.8562362,NCBITaxon:69624,http://purl.obolibrary.org/obo/NCBITaxon_69624,none +15.8562362,NCBITaxon:698672,http://purl.obolibrary.org/obo/NCBITaxon_698672,none +15.8562362,NCBITaxon:7002,http://purl.obolibrary.org/obo/NCBITaxon_7002,none +15.8562362,NCBITaxon:70333,http://purl.obolibrary.org/obo/NCBITaxon_70333,none +15.8562362,NCBITaxon:703533,http://purl.obolibrary.org/obo/NCBITaxon_703533,none +15.8562362,NCBITaxon:7059,http://purl.obolibrary.org/obo/NCBITaxon_7059,none +15.8562362,NCBITaxon:71032,http://purl.obolibrary.org/obo/NCBITaxon_71032,none +15.8562362,NCBITaxon:7117,http://purl.obolibrary.org/obo/NCBITaxon_7117,none +15.8562362,NCBITaxon:712037,http://purl.obolibrary.org/obo/NCBITaxon_712037,none +15.8562362,NCBITaxon:71297,http://purl.obolibrary.org/obo/NCBITaxon_71297,none +15.8562362,NCBITaxon:7139,http://purl.obolibrary.org/obo/NCBITaxon_7139,none +15.8562362,NCBITaxon:714978,http://purl.obolibrary.org/obo/NCBITaxon_714978,none +15.8562362,NCBITaxon:7191,http://purl.obolibrary.org/obo/NCBITaxon_7191,none +15.8562362,NCBITaxon:722750,http://purl.obolibrary.org/obo/NCBITaxon_722750,none +15.8562362,NCBITaxon:722751,http://purl.obolibrary.org/obo/NCBITaxon_722751,none +15.8562362,NCBITaxon:722752,http://purl.obolibrary.org/obo/NCBITaxon_722752,none +15.8562362,NCBITaxon:723662,http://purl.obolibrary.org/obo/NCBITaxon_723662,none +15.8562362,NCBITaxon:7284,http://purl.obolibrary.org/obo/NCBITaxon_7284,none +15.8562362,NCBITaxon:73034,http://purl.obolibrary.org/obo/NCBITaxon_73034,none +15.8562362,NCBITaxon:73149,http://purl.obolibrary.org/obo/NCBITaxon_73149,none +15.8562362,NCBITaxon:7324,http://purl.obolibrary.org/obo/NCBITaxon_7324,none +15.8562362,NCBITaxon:7402,http://purl.obolibrary.org/obo/NCBITaxon_7402,none +15.8562362,NCBITaxon:745062,http://purl.obolibrary.org/obo/NCBITaxon_745062,none +15.8562362,NCBITaxon:746128,http://purl.obolibrary.org/obo/NCBITaxon_746128,none +15.8562362,NCBITaxon:74724,http://purl.obolibrary.org/obo/NCBITaxon_74724,none +15.8562362,NCBITaxon:75116,http://purl.obolibrary.org/obo/NCBITaxon_75116,none +15.8562362,NCBITaxon:75325,http://purl.obolibrary.org/obo/NCBITaxon_75325,none +15.8562362,NCBITaxon:75735,http://purl.obolibrary.org/obo/NCBITaxon_75735,none +15.8562362,NCBITaxon:75943,http://purl.obolibrary.org/obo/NCBITaxon_75943,none +15.8562362,NCBITaxon:76072,http://purl.obolibrary.org/obo/NCBITaxon_76072,none +15.8562362,NCBITaxon:76433,http://purl.obolibrary.org/obo/NCBITaxon_76433,none +15.8562362,NCBITaxon:765147,http://purl.obolibrary.org/obo/NCBITaxon_765147,none +15.8562362,NCBITaxon:77129,http://purl.obolibrary.org/obo/NCBITaxon_77129,none +15.8562362,NCBITaxon:7720,http://purl.obolibrary.org/obo/NCBITaxon_7720,none +15.8562362,NCBITaxon:7790,http://purl.obolibrary.org/obo/NCBITaxon_7790,none +15.8562362,NCBITaxon:7791,http://purl.obolibrary.org/obo/NCBITaxon_7791,none +15.8562362,NCBITaxon:78545,http://purl.obolibrary.org/obo/NCBITaxon_78545,none +15.8562362,NCBITaxon:792580,http://purl.obolibrary.org/obo/NCBITaxon_792580,none +15.8562362,NCBITaxon:7933,http://purl.obolibrary.org/obo/NCBITaxon_7933,Anguilliformes +15.8562362,NCBITaxon:79514,http://purl.obolibrary.org/obo/NCBITaxon_79514,none +15.8562362,NCBITaxon:797075,http://purl.obolibrary.org/obo/NCBITaxon_797075,none +15.8562362,NCBITaxon:79744,http://purl.obolibrary.org/obo/NCBITaxon_79744,none +15.8562362,NCBITaxon:8002,http://purl.obolibrary.org/obo/NCBITaxon_8002,none +15.8562362,NCBITaxon:80267,http://purl.obolibrary.org/obo/NCBITaxon_80267,none +15.8562362,NCBITaxon:8066,http://purl.obolibrary.org/obo/NCBITaxon_8066,none +15.8562362,NCBITaxon:80811,http://purl.obolibrary.org/obo/NCBITaxon_80811,none +15.8562362,NCBITaxon:81002,http://purl.obolibrary.org/obo/NCBITaxon_81002,none +15.8562362,NCBITaxon:81051,http://purl.obolibrary.org/obo/NCBITaxon_81051,none +15.8562362,NCBITaxon:8121,http://purl.obolibrary.org/obo/NCBITaxon_8121,none +15.8562362,NCBITaxon:8126,http://purl.obolibrary.org/obo/NCBITaxon_8126,none +15.8562362,NCBITaxon:814922,http://purl.obolibrary.org/obo/NCBITaxon_814922,none +15.8562362,NCBITaxon:8169,http://purl.obolibrary.org/obo/NCBITaxon_8169,none +15.8562362,NCBITaxon:8205,http://purl.obolibrary.org/obo/NCBITaxon_8205,none +15.8562362,NCBITaxon:8252,http://purl.obolibrary.org/obo/NCBITaxon_8252,none +15.8562362,NCBITaxon:82587,http://purl.obolibrary.org/obo/NCBITaxon_82587,none +15.8562362,NCBITaxon:82829,http://purl.obolibrary.org/obo/NCBITaxon_82829,none +15.8562362,NCBITaxon:83192,http://purl.obolibrary.org/obo/NCBITaxon_83192,none +15.8562362,NCBITaxon:83555,http://purl.obolibrary.org/obo/NCBITaxon_83555,Chlamydia abortus +15.8562362,NCBITaxon:83752,http://purl.obolibrary.org/obo/NCBITaxon_83752,none +15.8562362,NCBITaxon:8431,http://purl.obolibrary.org/obo/NCBITaxon_8431,none +15.8562362,NCBITaxon:84394,http://purl.obolibrary.org/obo/NCBITaxon_84394,none +15.8562362,NCBITaxon:84526,http://purl.obolibrary.org/obo/NCBITaxon_84526,Heterophyidae +15.8562362,NCBITaxon:84527,http://purl.obolibrary.org/obo/NCBITaxon_84527,Metagonimus +15.8562362,NCBITaxon:84565,http://purl.obolibrary.org/obo/NCBITaxon_84565,none +15.8562362,NCBITaxon:8476,http://purl.obolibrary.org/obo/NCBITaxon_8476,none +15.8562362,NCBITaxon:85023,http://purl.obolibrary.org/obo/NCBITaxon_85023,none +15.8562362,NCBITaxon:8515,http://purl.obolibrary.org/obo/NCBITaxon_8515,none +15.8562362,NCBITaxon:85516,http://purl.obolibrary.org/obo/NCBITaxon_85516,none +15.8562362,NCBITaxon:86197,http://purl.obolibrary.org/obo/NCBITaxon_86197,none +15.8562362,NCBITaxon:86231,http://purl.obolibrary.org/obo/NCBITaxon_86231,none +15.8562362,NCBITaxon:864,http://purl.obolibrary.org/obo/NCBITaxon_864,none +15.8562362,NCBITaxon:87367,http://purl.obolibrary.org/obo/NCBITaxon_87367,none +15.8562362,NCBITaxon:874269,http://purl.obolibrary.org/obo/NCBITaxon_874269,none +15.8562362,NCBITaxon:875324,http://purl.obolibrary.org/obo/NCBITaxon_875324,none +15.8562362,NCBITaxon:876648,http://purl.obolibrary.org/obo/NCBITaxon_876648,none +15.8562362,NCBITaxon:876649,http://purl.obolibrary.org/obo/NCBITaxon_876649,none +15.8562362,NCBITaxon:8835,http://purl.obolibrary.org/obo/NCBITaxon_8835,Anas +15.8562362,NCBITaxon:8839,http://purl.obolibrary.org/obo/NCBITaxon_8839,Anas platyrhynchos +15.8562362,NCBITaxon:886729,http://purl.obolibrary.org/obo/NCBITaxon_886729,none +15.8562362,NCBITaxon:88726,http://purl.obolibrary.org/obo/NCBITaxon_88726,none +15.8562362,NCBITaxon:889510,http://purl.obolibrary.org/obo/NCBITaxon_889510,none +15.8562362,NCBITaxon:89102,http://purl.obolibrary.org/obo/NCBITaxon_89102,none +15.8562362,NCBITaxon:9013,http://purl.obolibrary.org/obo/NCBITaxon_9013,none +15.8562362,NCBITaxon:9014,http://purl.obolibrary.org/obo/NCBITaxon_9014,none +15.8562362,NCBITaxon:909206,http://purl.obolibrary.org/obo/NCBITaxon_909206,none +15.8562362,NCBITaxon:90961,http://purl.obolibrary.org/obo/NCBITaxon_90961,none +15.8562362,NCBITaxon:911351,http://purl.obolibrary.org/obo/NCBITaxon_911351,none +15.8562362,NCBITaxon:91812,http://purl.obolibrary.org/obo/NCBITaxon_91812,none +15.8562362,NCBITaxon:91900,http://purl.obolibrary.org/obo/NCBITaxon_91900,none +15.8562362,NCBITaxon:91989,http://purl.obolibrary.org/obo/NCBITaxon_91989,none +15.8562362,NCBITaxon:9211,http://purl.obolibrary.org/obo/NCBITaxon_9211,none +15.8562362,NCBITaxon:9212,http://purl.obolibrary.org/obo/NCBITaxon_9212,none +15.8562362,NCBITaxon:92557,http://purl.obolibrary.org/obo/NCBITaxon_92557,none +15.8562362,NCBITaxon:9277,http://purl.obolibrary.org/obo/NCBITaxon_9277,Dasyuridae +15.8562362,NCBITaxon:934028,http://purl.obolibrary.org/obo/NCBITaxon_934028,none +15.8562362,NCBITaxon:93812,http://purl.obolibrary.org/obo/NCBITaxon_93812,none +15.8562362,NCBITaxon:945225,http://purl.obolibrary.org/obo/NCBITaxon_945225,none +15.8562362,NCBITaxon:9499,http://purl.obolibrary.org/obo/NCBITaxon_9499,Alouatta +15.8562362,NCBITaxon:9573,http://purl.obolibrary.org/obo/NCBITaxon_9573,none +15.8562362,NCBITaxon:96054,http://purl.obolibrary.org/obo/NCBITaxon_96054,none +15.8562362,NCBITaxon:9653,http://purl.obolibrary.org/obo/NCBITaxon_9653,none +15.8562362,NCBITaxon:9654,http://purl.obolibrary.org/obo/NCBITaxon_9654,Procyon lotor +15.8562362,NCBITaxon:9665,http://purl.obolibrary.org/obo/NCBITaxon_9665,none +15.8562362,NCBITaxon:980963,http://purl.obolibrary.org/obo/NCBITaxon_980963,none +15.8562362,NCBITaxon:9848,http://purl.obolibrary.org/obo/NCBITaxon_9848,none +15.8562362,NCBITaxon:9849,http://purl.obolibrary.org/obo/NCBITaxon_9849,none +15.8562362,NCBITaxon:988775,http://purl.obolibrary.org/obo/NCBITaxon_988775,none +15.8562362,NCBITaxon:989895,http://purl.obolibrary.org/obo/NCBITaxon_989895,none +15.8562362,NCBITaxon:99182,http://purl.obolibrary.org/obo/NCBITaxon_99182,none +15.8562362,NCBITaxon:99838,http://purl.obolibrary.org/obo/NCBITaxon_99838,none +15.8562362,NCBITaxon:999631,http://purl.obolibrary.org/obo/NCBITaxon_999631,none +15.8562362,NCBITaxon:class,http://purl.obolibrary.org/obo/NCBITaxon_class,none +15.8562362,PR:000000799,http://purl.obolibrary.org/obo/PR_000000799,voltage-gated potassium channel KCNS2 +15.8562362,PR:000001505,http://purl.obolibrary.org/obo/PR_000001505,G-protein coupled receptor 135 +15.8562362,PR:000001606,http://purl.obolibrary.org/obo/PR_000001606,none +15.8562362,PR:000002344,http://purl.obolibrary.org/obo/PR_000002344,protein kinase C theta type +15.8562362,PR:000003069,http://purl.obolibrary.org/obo/PR_000003069,CD4 molecule isoform 1 +15.8562362,PR:000003071,http://purl.obolibrary.org/obo/PR_000003071,CD4 molecule isoform 1 phosphorylated form +15.8562362,PR:000003072,http://purl.obolibrary.org/obo/PR_000003072,CD4 molecule isoform 1 phosphorylated 1 +15.8562362,PR:000003522,http://purl.obolibrary.org/obo/PR_000003522,arylacetamide deacetylase-like 2 +15.8562362,PR:000003574,http://purl.obolibrary.org/obo/PR_000003574,protein ABHD14A +15.8562362,PR:000003618,http://purl.obolibrary.org/obo/PR_000003618,acid-sensing ion channel 5 +15.8562362,PR:000003702,http://purl.obolibrary.org/obo/PR_000003702,actin-related protein T2 +15.8562362,PR:000003833,http://purl.obolibrary.org/obo/PR_000003833,"agmatinase, mitochondrial" +15.8562362,PR:000003974,http://purl.obolibrary.org/obo/PR_000003974,flagellum-associated coiled-coil domain-containing protein 1 +15.8562362,PR:000003976,http://purl.obolibrary.org/obo/PR_000003976,transmembrane protein 237 +15.8562362,PR:000004007,http://purl.obolibrary.org/obo/PR_000004007,none +15.8562362,PR:000004107,http://purl.obolibrary.org/obo/PR_000004107,AP-3 complex subunit mu-1 +15.8562362,PR:000004295,http://purl.obolibrary.org/obo/PR_000004295,ADP-ribosylation factor-like protein 8A +15.8562362,PR:000004315,http://purl.obolibrary.org/obo/PR_000004315,actin-related protein M1 +15.8562362,PR:000004348,http://purl.obolibrary.org/obo/PR_000004348,ankyrin repeat and SOCS box protein 16 +15.8562362,PR:000004479,http://purl.obolibrary.org/obo/PR_000004479,V-type proton ATPase subunit e 2 +15.8562362,PR:000004487,http://purl.obolibrary.org/obo/PR_000004487,V-type proton ATPase subunit E 2 +15.8562362,PR:000004488,http://purl.obolibrary.org/obo/PR_000004488,V-type proton ATPase subunit F +15.8562362,PR:000004490,http://purl.obolibrary.org/obo/PR_000004490,V-type proton ATPase subunit G 2 +15.8562362,PR:000004509,http://purl.obolibrary.org/obo/PR_000004509,ataxin-7-like protein 1 +15.8562362,PR:000004593,http://purl.obolibrary.org/obo/PR_000004593,"N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase 3" +15.8562362,PR:000004598,http://purl.obolibrary.org/obo/PR_000004598,"UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8" +15.8562362,PR:000004625,http://purl.obolibrary.org/obo/PR_000004625,B melanoma antigen 2 +15.8562362,PR:000004661,http://purl.obolibrary.org/obo/PR_000004661,BBSome-interacting protein 1 +15.8562362,PR:000004703,http://purl.obolibrary.org/obo/PR_000004703,B-cell CLL/lymphoma 7 protein family member C +15.8562362,PR:000004796,http://purl.obolibrary.org/obo/PR_000004796,BPI fold-containing family C protein +15.8562362,PR:000004797,http://purl.obolibrary.org/obo/PR_000004797,BPI fold-containing family B member 6 +15.8562362,PR:000004826,http://purl.obolibrary.org/obo/PR_000004826,CUGBP Elav-like family member 5 +15.8562362,PR:000004867,http://purl.obolibrary.org/obo/PR_000004867,none +15.8562362,PR:000005142,http://purl.obolibrary.org/obo/PR_000005142,cyclin-Y-like protein 1 +15.8562362,PR:000005301,http://purl.obolibrary.org/obo/PR_000005301,carcinoembryonic antigen-related cell adhesion molecule 18 +15.8562362,PR:000005304,http://purl.obolibrary.org/obo/PR_000005304,carcinoembryonic antigen-related cell adhesion molecule 21 +15.8562362,PR:000005335,http://purl.obolibrary.org/obo/PR_000005335,centromere protein O +15.8562362,PR:000005336,http://purl.obolibrary.org/obo/PR_000005336,centromere protein P +15.8562362,PR:000005549,http://purl.obolibrary.org/obo/PR_000005549,claudin-22 +15.8562362,PR:000005562,http://purl.obolibrary.org/obo/PR_000005562,C-type lectin domain family 18 member B +15.8562362,PR:000005607,http://purl.obolibrary.org/obo/PR_000005607,clarin-3 +15.8562362,PR:000005621,http://purl.obolibrary.org/obo/PR_000005621,carboxymethylenebutenolidase +15.8562362,PR:000005636,http://purl.obolibrary.org/obo/PR_000005636,protein cornichon homolog 4 +15.8562362,PR:000005708,http://purl.obolibrary.org/obo/PR_000005708,collagen alpha-1(XXIV) chain +15.8562362,PR:000005732,http://purl.obolibrary.org/obo/PR_000005732,catechol O-methyltransferase domain-containing protein 1 +15.8562362,PR:000005793,http://purl.obolibrary.org/obo/PR_000005793,"cytochrome c oxidase subunit 8C, mitochondrial" +15.8562362,PR:000005876,http://purl.obolibrary.org/obo/PR_000005876,putative protein CRIPAK +15.8562362,PR:000005918,http://purl.obolibrary.org/obo/PR_000005918,gamma-crystallin N +15.8562362,PR:000005979,http://purl.obolibrary.org/obo/PR_000005979,cystatin-like 1 +15.8562362,PR:000006060,http://purl.obolibrary.org/obo/PR_000006060,CWF19-like protein 1 +15.8562362,PR:000006113,http://purl.obolibrary.org/obo/PR_000006113,none +15.8562362,PR:000006138,http://purl.obolibrary.org/obo/PR_000006138,cytochrome P450 4F11 +15.8562362,PR:000006186,http://purl.obolibrary.org/obo/PR_000006186,none +15.8562362,PR:000006188,http://purl.obolibrary.org/obo/PR_000006188,none +15.8562362,PR:000006207,http://purl.obolibrary.org/obo/PR_000006207,none +15.8562362,PR:000006212,http://purl.obolibrary.org/obo/PR_000006212,none +15.8562362,PR:000006233,http://purl.obolibrary.org/obo/PR_000006233,none +15.8562362,PR:000006351,http://purl.obolibrary.org/obo/PR_000006351,D-aspartate oxidase +15.8562362,PR:000006362,http://purl.obolibrary.org/obo/PR_000006362,integrator complex subunit 6-like +15.8562362,PR:000006394,http://purl.obolibrary.org/obo/PR_000006394,beta-defensin 115 +15.8562362,PR:000006440,http://purl.obolibrary.org/obo/PR_000006440,protein DGCR6L +15.8562362,PR:000006460,http://purl.obolibrary.org/obo/PR_000006460,"dihydroorotate dehydrogenase (quinone), mitochondrial" +15.8562362,PR:000006462,http://purl.obolibrary.org/obo/PR_000006462,dehydrogenase/reductase SDR family member 12 +15.8562362,PR:000006469,http://purl.obolibrary.org/obo/PR_000006469,dehydrogenase/reductase SDR family member 7C +15.8562362,PR:000006485,http://purl.obolibrary.org/obo/PR_000006485,disco-interacting protein 2 homolog C +15.8562362,PR:000006489,http://purl.obolibrary.org/obo/PR_000006489,disrupted in renal carcinoma protein 1 +15.8562362,PR:000006538,http://purl.obolibrary.org/obo/PR_000006538,"dimethylglycine dehydrogenase, mitochondrial" +15.8562362,PR:000006539,http://purl.obolibrary.org/obo/PR_000006539,dermokine +15.8562362,PR:000006548,http://purl.obolibrary.org/obo/PR_000006548,doublesex- and mab-3-related transcription factor C1 +15.8562362,PR:000006558,http://purl.obolibrary.org/obo/PR_000006558,"dynein heavy chain 12, axonemal" +15.8562362,PR:000006675,http://purl.obolibrary.org/obo/PR_000006675,protein dpy-19 3 +15.8562362,PR:000006751,http://purl.obolibrary.org/obo/PR_000006751,serine/threonine/tyrosine-interacting-like protein 2 +15.8562362,PR:000006763,http://purl.obolibrary.org/obo/PR_000006763,double homeobox protein 5 +15.8562362,PR:000006799,http://purl.obolibrary.org/obo/PR_000006799,none +15.8562362,PR:000006863,http://purl.obolibrary.org/obo/PR_000006863,testis-expressed protein 33 +15.8562362,PR:000007078,http://purl.obolibrary.org/obo/PR_000007078,cytosolic endo-beta-N-acetylglucosaminidase +15.8562362,PR:000007179,http://purl.obolibrary.org/obo/PR_000007179,glutamate-rich protein 1 +15.8562362,PR:000007381,http://purl.obolibrary.org/obo/PR_000007381,F-box/LRR-repeat protein 22 +15.8562362,PR:000007384,http://purl.obolibrary.org/obo/PR_000007384,F-box/LRR-repeat protein 6 +15.8562362,PR:000007390,http://purl.obolibrary.org/obo/PR_000007390,F-box only protein 16 +15.8562362,PR:000007398,http://purl.obolibrary.org/obo/PR_000007398,F-box only protein 27 +15.8562362,PR:000007411,http://purl.obolibrary.org/obo/PR_000007411,F-box only protein 42 +15.8562362,PR:000007456,http://purl.obolibrary.org/obo/PR_000007456,protein fem-1 homolog C +15.8562362,PR:000007613,http://purl.obolibrary.org/obo/PR_000007613,forkhead box protein D4-like 1 +15.8562362,PR:000007651,http://purl.obolibrary.org/obo/PR_000007651,fucose-1-phosphate guanylyltransferase +15.8562362,PR:000007750,http://purl.obolibrary.org/obo/PR_000007750,none +15.8562362,PR:000007781,http://purl.obolibrary.org/obo/PR_000007781,gamma-aminobutyric acid receptor subunit theta +15.8562362,PR:000007832,http://purl.obolibrary.org/obo/PR_000007832,polypeptide N-acetylgalactosaminyltransferase-like 6 +15.8562362,PR:000007967,http://purl.obolibrary.org/obo/PR_000007967,glutathione hydrolase light chain 2 +15.8562362,PR:000008217,http://purl.obolibrary.org/obo/PR_000008217,protein GR6 +15.8562362,PR:000008312,http://purl.obolibrary.org/obo/PR_000008312,transcription initiation factor IIA subunit 2 +15.8562362,PR:000008342,http://purl.obolibrary.org/obo/PR_000008342,gametocyte-specific factor 1-like +15.8562362,PR:000008392,http://purl.obolibrary.org/obo/PR_000008392,none +15.8562362,PR:000008427,http://purl.obolibrary.org/obo/PR_000008427,"3-hydroxyanthranilate 3,4-dioxygenase" +15.8562362,PR:000008547,http://purl.obolibrary.org/obo/PR_000008547,hippocampus abundant transcript-like protein 1 +15.8562362,PR:000008582,http://purl.obolibrary.org/obo/PR_000008582,histone H2A type 1-D +15.8562362,PR:000008663,http://purl.obolibrary.org/obo/PR_000008663,heterogeneous nuclear ribonucleoprotein C-like 1 +15.8562362,PR:000008681,http://purl.obolibrary.org/obo/PR_000008681,homeobox and leucine zipper protein Homez +15.8562362,PR:000008731,http://purl.obolibrary.org/obo/PR_000008731,4-hydroxyphenylpyruvate dioxygenase-like protein +15.8562362,PR:000008748,http://purl.obolibrary.org/obo/PR_000008748,phospholipase A and acyltransferase 5 +15.8562362,PR:000008763,http://purl.obolibrary.org/obo/PR_000008763,heparan sulfate glucosamine 3-O-sulfotransferase 5 +15.8562362,PR:000008795,http://purl.obolibrary.org/obo/PR_000008795,"heat shock transcription factor, X-linked" +15.8562362,PR:000008891,http://purl.obolibrary.org/obo/PR_000008891,"isocitrate dehydrogenase [NAD] subunit gamma, mitochondrial" +15.8562362,PR:000008958,http://purl.obolibrary.org/obo/PR_000008958,immunoglobulin heavy constant epsilon +15.8562362,PR:000009042,http://purl.obolibrary.org/obo/PR_000009042,INO80 complex subunit D +15.8562362,PR:000009067,http://purl.obolibrary.org/obo/PR_000009067,integrator complex subunit 10 +15.8562362,PR:000009082,http://purl.obolibrary.org/obo/PR_000009082,inositol hexakisphosphate kinase 3 +15.8562362,PR:000009101,http://purl.obolibrary.org/obo/PR_000009101,interleukin-1 receptor-associated kinase 1-binding protein 1 +15.8562362,PR:000009270,http://purl.obolibrary.org/obo/PR_000009270,KCNQ1 downstream neighbor protein +15.8562362,PR:000009385,http://purl.obolibrary.org/obo/PR_000009385,kelch-like protein 23 +15.8562362,PR:000009392,http://purl.obolibrary.org/obo/PR_000009392,kelch-like protein 30 +15.8562362,PR:000009428,http://purl.obolibrary.org/obo/PR_000009428,kinocilin +15.8562362,PR:000009488,http://purl.obolibrary.org/obo/PR_000009488,"keratin, type II cytoskeletal 73" +15.8562362,PR:000009552,http://purl.obolibrary.org/obo/PR_000009552,keratin-associated protein 26-1 +15.8562362,PR:000009561,http://purl.obolibrary.org/obo/PR_000009561,keratin-associated protein 4-3 +15.8562362,PR:000009579,http://purl.obolibrary.org/obo/PR_000009579,keratin-associated protein 6-2 +15.8562362,PR:000009583,http://purl.obolibrary.org/obo/PR_000009583,keratin-associated protein 9-2 +15.8562362,PR:000009606,http://purl.obolibrary.org/obo/PR_000009606,none +15.8562362,PR:000009609,http://purl.obolibrary.org/obo/PR_000009609,none +15.8562362,PR:000009617,http://purl.obolibrary.org/obo/PR_000009617,none +15.8562362,PR:000009753,http://purl.obolibrary.org/obo/PR_000009753,late cornified envelope-like proline-rich protein 1 +15.8562362,PR:000009784,http://purl.obolibrary.org/obo/PR_000009784,LHFPL tetraspan subfamily member 6 protein +15.8562362,PR:000009785,http://purl.obolibrary.org/obo/PR_000009785,LHFPL tetraspan subfamily member 1 protein +15.8562362,PR:000009845,http://purl.obolibrary.org/obo/PR_000009845,LIX1-like protein +15.8562362,PR:000009851,http://purl.obolibrary.org/obo/PR_000009851,protein ERGIC-53-like +15.8562362,PR:000009878,http://purl.obolibrary.org/obo/PR_000009878,BLOC-1-related complex subunit 5 +15.8562362,PR:000009922,http://purl.obolibrary.org/obo/PR_000009922,LRP2-binding protein +15.8562362,PR:000009936,http://purl.obolibrary.org/obo/PR_000009936,leucine-rich repeat-containing protein 41 +15.8562362,PR:000009941,http://purl.obolibrary.org/obo/PR_000009941,leucine-rich repeat and coiled-coil domain-containing protein 1 +15.8562362,PR:000009959,http://purl.obolibrary.org/obo/PR_000009959,protein LSM14 homolog B +15.8562362,PR:000010023,http://purl.obolibrary.org/obo/PR_000010023,none +15.8562362,PR:000010060,http://purl.obolibrary.org/obo/PR_000010060,melanoma-associated antigen 5 +15.8562362,PR:000010066,http://purl.obolibrary.org/obo/PR_000010066,melanoma-associated antigen B18 +15.8562362,PR:000010068,http://purl.obolibrary.org/obo/PR_000010068,melanoma-associated antigen B3 +15.8562362,PR:000010330,http://purl.obolibrary.org/obo/PR_000010330,talin rod domain-containing protein 1 +15.8562362,PR:000010351,http://purl.obolibrary.org/obo/PR_000010351,tRNA N(3)-methylcytidine methyltransferase METTL6 +15.8562362,PR:000010371,http://purl.obolibrary.org/obo/PR_000010371,"beta-1,3-N-acetylglucosaminyltransferase manic fringe" +15.8562362,PR:000010402,http://purl.obolibrary.org/obo/PR_000010402,MICAL C-terminal-like protein +15.8562362,PR:000010403,http://purl.obolibrary.org/obo/PR_000010403,MICAL-like protein 1 +15.8562362,PR:000010404,http://purl.obolibrary.org/obo/PR_000010404,MICAL-like protein 2 +15.8562362,PR:000010463,http://purl.obolibrary.org/obo/PR_000010463,cyanocobalamin reductase / alkylcobalamin dealkylase +15.8562362,PR:000010524,http://purl.obolibrary.org/obo/PR_000010524,mortality factor 4-like protein 2 +15.8562362,PR:000010581,http://purl.obolibrary.org/obo/PR_000010581,"39S ribosomal protein L19, mitochondrial" +15.8562362,PR:000010584,http://purl.obolibrary.org/obo/PR_000010584,"39S ribosomal protein L21, mitochondrial" +15.8562362,PR:000010599,http://purl.obolibrary.org/obo/PR_000010599,"39S ribosomal protein L39, mitochondrial" +15.8562362,PR:000010608,http://purl.obolibrary.org/obo/PR_000010608,"39S ribosomal protein L47, mitochondrial" +15.8562362,PR:000010613,http://purl.obolibrary.org/obo/PR_000010613,"39S ribosomal protein L52, mitochondrial" +15.8562362,PR:000010614,http://purl.obolibrary.org/obo/PR_000010614,"39S ribosomal protein L53, mitochondrial" +15.8562362,PR:000010616,http://purl.obolibrary.org/obo/PR_000010616,"39S ribosomal protein L55, mitochondrial" +15.8562362,PR:000010617,http://purl.obolibrary.org/obo/PR_000010617,"39S ribosomal protein L9, mitochondrial" +15.8562362,PR:000010631,http://purl.obolibrary.org/obo/PR_000010631,"28S ribosomal protein S23, mitochondrial" +15.8562362,PR:000010646,http://purl.obolibrary.org/obo/PR_000010646,"28S ribosomal protein S9, mitochondrial" +15.8562362,PR:000010702,http://purl.obolibrary.org/obo/PR_000010702,metallothionein-1M +15.8562362,PR:000010716,http://purl.obolibrary.org/obo/PR_000010716,"transcription termination factor 2, mitochondrial" +15.8562362,PR:000010749,http://purl.obolibrary.org/obo/PR_000010749,"peptide chain release factor 1-like, mitochondrial" +15.8562362,PR:000010817,http://purl.obolibrary.org/obo/PR_000010817,COP9 signalosome complex subunit 9 +15.8562362,PR:000010848,http://purl.obolibrary.org/obo/PR_000010848,myoneurin +15.8562362,PR:000010899,http://purl.obolibrary.org/obo/PR_000010899,none +15.8562362,PR:000010917,http://purl.obolibrary.org/obo/PR_000010917,none +15.8562362,PR:000010937,http://purl.obolibrary.org/obo/PR_000010937,NEDD4-binding protein 1 +15.8562362,PR:000010940,http://purl.obolibrary.org/obo/PR_000010940,NEDD4-binding protein 2-like 2 +15.8562362,PR:000011086,http://purl.obolibrary.org/obo/PR_000011086,"NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 2, mitochondrial" +15.8562362,PR:000011094,http://purl.obolibrary.org/obo/PR_000011094,"NADH dehydrogenase [ubiquinone] 1 subunit C1, mitochondrial" +15.8562362,PR:000011183,http://purl.obolibrary.org/obo/PR_000011183,nuclear factor related to kappa-B-binding protein +15.8562362,PR:000011221,http://purl.obolibrary.org/obo/PR_000011221,protein NipSnap homolog 3A +15.8562362,PR:000011239,http://purl.obolibrary.org/obo/PR_000011239,NK1 transcription factor-related protein 1 +15.8562362,PR:000011307,http://purl.obolibrary.org/obo/PR_000011307,nucleolar protein 10 +15.8562362,PR:000011318,http://purl.obolibrary.org/obo/PR_000011318,nodal modulator 2 +15.8562362,PR:000011337,http://purl.obolibrary.org/obo/PR_000011337,protein notum +15.8562362,PR:000011367,http://purl.obolibrary.org/obo/PR_000011367,nuclear pore complex-interacting protein family member A1 +15.8562362,PR:000011401,http://purl.obolibrary.org/obo/PR_000011401,nuclear receptor 2C2-associated protein +15.8562362,PR:000011444,http://purl.obolibrary.org/obo/PR_000011444,NSFL1 cofactor p47 +15.8562362,PR:000011456,http://purl.obolibrary.org/obo/PR_000011456,7-methylguanosine phosphate-specific 5'-nucleotidase +15.8562362,PR:000011466,http://purl.obolibrary.org/obo/PR_000011466,netrin-5 +15.8562362,PR:000011512,http://purl.obolibrary.org/obo/PR_000011512,nuclear pore complex protein Nup205 +15.8562362,PR:000011563,http://purl.obolibrary.org/obo/PR_000011563,none +15.8562362,PR:000011573,http://purl.obolibrary.org/obo/PR_000011573,out at first protein +15.8562362,PR:000011585,http://purl.obolibrary.org/obo/PR_000011585,odorant-binding protein 2a +15.8562362,PR:000011715,http://purl.obolibrary.org/obo/PR_000011715,olfactory receptor 1A1 +15.8562362,PR:000011719,http://purl.obolibrary.org/obo/PR_000011719,olfactory receptor 1D2 +15.8562362,PR:000012104,http://purl.obolibrary.org/obo/PR_000012104,none +15.8562362,PR:000012120,http://purl.obolibrary.org/obo/PR_000012120,none +15.8562362,PR:000012134,http://purl.obolibrary.org/obo/PR_000012134,none +15.8562362,PR:000012186,http://purl.obolibrary.org/obo/PR_000012186,none +15.8562362,PR:000012211,http://purl.obolibrary.org/obo/PR_000012211,embryonic polyadenylate-binding protein 2 +15.8562362,PR:000012367,http://purl.obolibrary.org/obo/PR_000012367,protocadherin alpha-8 +15.8562362,PR:000012370,http://purl.obolibrary.org/obo/PR_000012370,protocadherin alpha-C2 +15.8562362,PR:000012378,http://purl.obolibrary.org/obo/PR_000012378,protocadherin beta-16 +15.8562362,PR:000012380,http://purl.obolibrary.org/obo/PR_000012380,protocadherin beta-3 +15.8562362,PR:000012502,http://purl.obolibrary.org/obo/PR_000012502,serine/threonine-protein kinase PDIK1L +15.8562362,PR:000012649,http://purl.obolibrary.org/obo/PR_000012649,PHD finger protein 21B +15.8562362,PR:000012729,http://purl.obolibrary.org/obo/PR_000012729,phosphoinositide 3-kinase regulatory subunit 6 +15.8562362,PR:000012731,http://purl.obolibrary.org/obo/PR_000012731,paired immunoglobulin-like type 2 receptor beta +15.8562362,PR:000012748,http://purl.obolibrary.org/obo/PR_000012748,phosphatidylinositol 4-phosphate 5-kinase-like protein 1 +15.8562362,PR:000012781,http://purl.obolibrary.org/obo/PR_000012781,cAMP-dependent protein kinase inhibitor gamma +15.8562362,PR:000012995,http://purl.obolibrary.org/obo/PR_000012995,DNA-directed RNA polymerase II subunit RPB9 +15.8562362,PR:000013010,http://purl.obolibrary.org/obo/PR_000013010,"DNA-directed RNA polymerase, mitochondrial" +15.8562362,PR:000013129,http://purl.obolibrary.org/obo/PR_000013129,protein phosphatase 1 regulatory subunit 3F +15.8562362,PR:000013156,http://purl.obolibrary.org/obo/PR_000013156,serine/threonine-protein phosphatase 4 regulatory subunit 4 +15.8562362,PR:000013162,http://purl.obolibrary.org/obo/PR_000013162,protein phosphatase PTC7 +15.8562362,PR:000013214,http://purl.obolibrary.org/obo/PR_000013214,prickle-like protein 4 +15.8562362,PR:000013298,http://purl.obolibrary.org/obo/PR_000013298,proline-rich protein 12 +15.8562362,PR:000013302,http://purl.obolibrary.org/obo/PR_000013302,protein Largen +15.8562362,PR:000013355,http://purl.obolibrary.org/obo/PR_000013355,pregnancy-specific beta-1-glycoprotein 8 +15.8562362,PR:000013368,http://purl.obolibrary.org/obo/PR_000013368,prostate-specific membrane antigen-like protein +15.8562362,PR:000013496,http://purl.obolibrary.org/obo/PR_000013496,purine-rich element-binding protein gamma +15.8562362,PR:000013569,http://purl.obolibrary.org/obo/PR_000013569,glutamine-rich protein 1 +15.8562362,PR:000013570,http://purl.obolibrary.org/obo/PR_000013570,glutamine-rich protein 2 +15.8562362,PR:000013572,http://purl.obolibrary.org/obo/PR_000013572,glutamine and serine-rich protein 1 +15.8562362,PR:000013656,http://purl.obolibrary.org/obo/PR_000013656,Rab-like protein 2A +15.8562362,PR:000013714,http://purl.obolibrary.org/obo/PR_000013714,Ran-binding protein 3-like +15.8562362,PR:000013732,http://purl.obolibrary.org/obo/PR_000013732,Rap guanine nucleotide exchange factor-like 1 +15.8562362,PR:000013800,http://purl.obolibrary.org/obo/PR_000013800,RNA-binding protein 42 +15.8562362,PR:000013802,http://purl.obolibrary.org/obo/PR_000013802,RNA-binding protein 44 +15.8562362,PR:000013885,http://purl.obolibrary.org/obo/PR_000013885,Rab15 effector protein +15.8562362,PR:000013901,http://purl.obolibrary.org/obo/PR_000013901,RNA exonuclease 1 +15.8562362,PR:000013912,http://purl.obolibrary.org/obo/PR_000013912,"beta-1,3-N-acetylglucosaminyltransferase radical fringe" +15.8562362,PR:000013917,http://purl.obolibrary.org/obo/PR_000013917,ret finger protein-like 4A +15.8562362,PR:000014007,http://purl.obolibrary.org/obo/PR_000014007,N-acetylaspartylglutamate synthase A +15.8562362,PR:000014032,http://purl.obolibrary.org/obo/PR_000014032,clavesin-2 +15.8562362,PR:000014043,http://purl.obolibrary.org/obo/PR_000014043,ribonuclease-like protein 10 +15.8562362,PR:000014092,http://purl.obolibrary.org/obo/PR_000014092,E3 ubiquitin-protein ligase RNF149 +15.8562362,PR:000014108,http://purl.obolibrary.org/obo/PR_000014108,E3 ubiquitin-protein ligase RNF182 +15.8562362,PR:000014109,http://purl.obolibrary.org/obo/PR_000014109,E3 ubiquitin-protein ligase RNF183 +15.8562362,PR:000014317,http://purl.obolibrary.org/obo/PR_000014317,"radical S-adenosyl methionine domain-containing protein 1, mitochondrial" +15.8562362,PR:000014321,http://purl.obolibrary.org/obo/PR_000014321,regulatory solute carrier protein family 1 member 1 +15.8562362,PR:000014360,http://purl.obolibrary.org/obo/PR_000014360,RUN domain-containing protein 1 +15.8562362,PR:000014384,http://purl.obolibrary.org/obo/PR_000014384,none +15.8562362,PR:000014457,http://purl.obolibrary.org/obo/PR_000014457,specifically androgen-regulated gene protein +15.8562362,PR:000014540,http://purl.obolibrary.org/obo/PR_000014540,secernin-3 +15.8562362,PR:000014550,http://purl.obolibrary.org/obo/PR_000014550,protein-associating with the carboxyl-terminal domain of ezrin +15.8562362,PR:000014594,http://purl.obolibrary.org/obo/PR_000014594,protein transport protein Sec31B +15.8562362,PR:000014752,http://purl.obolibrary.org/obo/PR_000014752,protein SFRS12IP1 +15.8562362,PR:000014758,http://purl.obolibrary.org/obo/PR_000014758,serine/arginine-rich splicing factor 8 +15.8562362,PR:000014780,http://purl.obolibrary.org/obo/PR_000014780,sideroflexin-5 +15.8562362,PR:000014791,http://purl.obolibrary.org/obo/PR_000014791,protein O-mannose kinase +15.8562362,PR:000014822,http://purl.obolibrary.org/obo/PR_000014822,SH3 domain-containing protein 19 +15.8562362,PR:000014872,http://purl.obolibrary.org/obo/PR_000014872,suppressor of IKK-epsilon +15.8562362,PR:000014884,http://purl.obolibrary.org/obo/PR_000014884,protein FAM220A +15.8562362,PR:000014921,http://purl.obolibrary.org/obo/PR_000014921,sodium/bile acid cotransporter 5 +15.8562362,PR:000015109,http://purl.obolibrary.org/obo/PR_000015109,solute carrier family 35 member F5 +15.8562362,PR:000015211,http://purl.obolibrary.org/obo/PR_000015211,sodium/hydrogen exchanger 10 +15.8562362,PR:000015255,http://purl.obolibrary.org/obo/PR_000015255,SMAD5 antisense gene protein 1 +15.8562362,PR:000015256,http://purl.obolibrary.org/obo/PR_000015256,small transmembrane and glycosylated protein +15.8562362,PR:000015336,http://purl.obolibrary.org/obo/PR_000015336,U5 small nuclear ribonucleoprotein 40 kDa protein +15.8562362,PR:000015372,http://purl.obolibrary.org/obo/PR_000015372,sorting nexin-22 +15.8562362,PR:000015373,http://purl.obolibrary.org/obo/PR_000015373,sorting nexin-24 +15.8562362,PR:000015438,http://purl.obolibrary.org/obo/PR_000015438,nuclear body protein SP140 +15.8562362,PR:000015466,http://purl.obolibrary.org/obo/PR_000015466,sperm protein associated with the nucleus on the X chromosome C +15.8562362,PR:000015487,http://purl.obolibrary.org/obo/PR_000015487,spermatogenesis-associated protein 21 +15.8562362,PR:000015545,http://purl.obolibrary.org/obo/PR_000015545,Kunitz-type protease inhibitor 4 +15.8562362,PR:000015577,http://purl.obolibrary.org/obo/PR_000015577,small proline-rich protein 2E +15.8562362,PR:000015694,http://purl.obolibrary.org/obo/PR_000015694,suppressor of tumorigenicity 7 protein-like +15.8562362,PR:000015748,http://purl.obolibrary.org/obo/PR_000015748,serine/threonine-protein kinase 32A +15.8562362,PR:000015770,http://purl.obolibrary.org/obo/PR_000015770,storkhead-box protein 2 +15.8562362,PR:000015867,http://purl.obolibrary.org/obo/PR_000015867,Rho GTPase-activating protein SYDE2 +15.8562362,PR:000015903,http://purl.obolibrary.org/obo/PR_000015903,synaptotagmin-17 +15.8562362,PR:000015932,http://purl.obolibrary.org/obo/PR_000015932,none +15.8562362,PR:000015982,http://purl.obolibrary.org/obo/PR_000015982,none +15.8562362,PR:000016024,http://purl.obolibrary.org/obo/PR_000016024,transcription initiation factor TFIID 210 kDa subunit +15.8562362,PR:000016105,http://purl.obolibrary.org/obo/PR_000016105,TBC1 domain family member 21 +15.8562362,PR:000016124,http://purl.obolibrary.org/obo/PR_000016124,TBC1 domain family member 9B +15.8562362,PR:000016163,http://purl.obolibrary.org/obo/PR_000016163,transcription elongation factor A protein-like 4 +15.8562362,PR:000016171,http://purl.obolibrary.org/obo/PR_000016171,elongin-A2 +15.8562362,PR:000016281,http://purl.obolibrary.org/obo/PR_000016281,TCF3 fusion partner +15.8562362,PR:000016337,http://purl.obolibrary.org/obo/PR_000016337,tigger transposable element-derived protein 7 +15.8562362,PR:000016345,http://purl.obolibrary.org/obo/PR_000016345,mitochondrial import inner membrane translocase subunit Tim17-B +15.8562362,PR:000016356,http://purl.obolibrary.org/obo/PR_000016356,tubulointerstitial nephritis antigen +15.8562362,PR:000016400,http://purl.obolibrary.org/obo/PR_000016400,transmembrane and coiled-coil domain-containing protein 3 +15.8562362,PR:000016421,http://purl.obolibrary.org/obo/PR_000016421,transmembrane protein 204 +15.8562362,PR:000016425,http://purl.obolibrary.org/obo/PR_000016425,cell cycle control protein 50C +15.8562362,PR:000016427,http://purl.obolibrary.org/obo/PR_000016427,trimeric intracellular cation channel type A +15.8562362,PR:000016435,http://purl.obolibrary.org/obo/PR_000016435,transmembrane protein 59-like +15.8562362,PR:000016454,http://purl.obolibrary.org/obo/PR_000016454,transmembrane protease serine 12 +15.8562362,PR:000016479,http://purl.obolibrary.org/obo/PR_000016479,tumor necrosis factor alpha-induced protein 8-like protein 3 +15.8562362,PR:000016537,http://purl.obolibrary.org/obo/PR_000016537,mitochondrial import receptor subunit TOM40B +15.8562362,PR:000016609,http://purl.obolibrary.org/obo/PR_000016609,translocation-associated membrane protein 1-like 1 +15.8562362,PR:000016685,http://purl.obolibrary.org/obo/PR_000016685,potential tRNA (adenine-N(1)-)-methyltransferase catalytic subunit TRMT61B +15.8562362,PR:000016710,http://purl.obolibrary.org/obo/PR_000016710,testis-expressed sequence 37 protein +15.8562362,PR:000016756,http://purl.obolibrary.org/obo/PR_000016756,protein TSPEAR +15.8562362,PR:000016759,http://purl.obolibrary.org/obo/PR_000016759,testis-specific Y-encoded protein 2 +15.8562362,PR:000016763,http://purl.obolibrary.org/obo/PR_000016763,testis-specific Y-encoded-like protein 4 +15.8562362,PR:000016797,http://purl.obolibrary.org/obo/PR_000016797,protein monoglycylase TTLL8 +15.8562362,PR:000016814,http://purl.obolibrary.org/obo/PR_000016814,tubulin alpha chain-like 3 +15.8562362,PR:000016893,http://purl.obolibrary.org/obo/PR_000016893,none +15.8562362,PR:000016895,http://purl.obolibrary.org/obo/PR_000016895,none +15.8562362,PR:000016903,http://purl.obolibrary.org/obo/PR_000016903,none +15.8562362,PR:000016911,http://purl.obolibrary.org/obo/PR_000016911,none +15.8562362,PR:000016931,http://purl.obolibrary.org/obo/PR_000016931,none +15.8562362,PR:000017001,http://purl.obolibrary.org/obo/PR_000017001,ubiquitin-like protein 7 +15.8562362,PR:000017005,http://purl.obolibrary.org/obo/PR_000017005,RING finger protein 37 +15.8562362,PR:000017067,http://purl.obolibrary.org/obo/PR_000017067,UDP-glucuronosyltransferase 3A2 +15.8562362,PR:000017101,http://purl.obolibrary.org/obo/PR_000017101,protein unc-93 homolog A +15.8562362,PR:000017213,http://purl.obolibrary.org/obo/PR_000017213,histone demethylase UTY +15.8562362,PR:000017306,http://purl.obolibrary.org/obo/PR_000017306,vimentin-type intermediate filament-associated coiled-coil protein +15.8562362,PR:000017396,http://purl.obolibrary.org/obo/PR_000017396,WD repeat-containing protein 55 +15.8562362,PR:000017469,http://purl.obolibrary.org/obo/PR_000017469,none +15.8562362,PR:000017478,http://purl.obolibrary.org/obo/PR_000017478,glycoprotein Xg +15.8562362,PR:000017530,http://purl.obolibrary.org/obo/PR_000017530,protein YIF1B +15.8562362,PR:000017531,http://purl.obolibrary.org/obo/PR_000017531,protein YIPF1 +15.8562362,PR:000017532,http://purl.obolibrary.org/obo/PR_000017532,protein YIPF2 +15.8562362,PR:000017545,http://purl.obolibrary.org/obo/PR_000017545,protein yippee-like 4 +15.8562362,PR:000017576,http://purl.obolibrary.org/obo/PR_000017576,zinc finger and BTB domain-containing protein 34 +15.8562362,PR:000017583,http://purl.obolibrary.org/obo/PR_000017583,zinc finger and BTB domain-containing protein 42 +15.8562362,PR:000017597,http://purl.obolibrary.org/obo/PR_000017597,zinc finger and BTB domain-containing protein 9 +15.8562362,PR:000017612,http://purl.obolibrary.org/obo/PR_000017612,palmitoyltransferase ZDHHC18 +15.8562362,PR:000017620,http://purl.obolibrary.org/obo/PR_000017620,AN1-type zinc finger protein 1 +15.8562362,PR:000017636,http://purl.obolibrary.org/obo/PR_000017636,zinc finger protein 28 homolog +15.8562362,PR:000017689,http://purl.obolibrary.org/obo/PR_000017689,zinc finger MYM-type protein 4 +15.8562362,PR:000017729,http://purl.obolibrary.org/obo/PR_000017729,zinc finger protein 175 +15.8562362,PR:000017738,http://purl.obolibrary.org/obo/PR_000017738,zinc finger protein 19 +15.8562362,PR:000017748,http://purl.obolibrary.org/obo/PR_000017748,BUB3-interacting and GLEBS motif-containing protein ZNF207 +15.8562362,PR:000017753,http://purl.obolibrary.org/obo/PR_000017753,zinc finger protein 214 +15.8562362,PR:000017771,http://purl.obolibrary.org/obo/PR_000017771,zinc finger protein 235 +15.8562362,PR:000017798,http://purl.obolibrary.org/obo/PR_000017798,zinc finger protein 277 +15.8562362,PR:000017799,http://purl.obolibrary.org/obo/PR_000017799,zinc finger protein 28 +15.8562362,PR:000017801,http://purl.obolibrary.org/obo/PR_000017801,zinc finger protein 280B +15.8562362,PR:000017855,http://purl.obolibrary.org/obo/PR_000017855,zinc finger protein 37A +15.8562362,PR:000017869,http://purl.obolibrary.org/obo/PR_000017869,zinc finger protein 398 +15.8562362,PR:000017907,http://purl.obolibrary.org/obo/PR_000017907,E3 SUMO-protein ligase ZNF451 +15.8562362,PR:000017927,http://purl.obolibrary.org/obo/PR_000017927,zinc finger protein 488 +15.8562362,PR:000018024,http://purl.obolibrary.org/obo/PR_000018024,zinc finger protein 608 +15.8562362,PR:000018055,http://purl.obolibrary.org/obo/PR_000018055,zinc finger protein 652 +15.8562362,PR:000018068,http://purl.obolibrary.org/obo/PR_000018068,zinc finger protein 668 +15.8562362,PR:000018090,http://purl.obolibrary.org/obo/PR_000018090,zinc finger protein 692 +15.8562362,PR:000018107,http://purl.obolibrary.org/obo/PR_000018107,zinc finger protein 708 +15.8562362,PR:000018109,http://purl.obolibrary.org/obo/PR_000018109,endothelial zinc finger protein induced by tumor necrosis factor alpha +15.8562362,PR:000018158,http://purl.obolibrary.org/obo/PR_000018158,zinc finger protein 79 +15.8562362,PR:000022068,http://purl.obolibrary.org/obo/PR_000022068,none +15.8562362,PR:000022081,http://purl.obolibrary.org/obo/PR_000022081,none +15.8562362,PR:000022082,http://purl.obolibrary.org/obo/PR_000022082,none +15.8562362,PR:000022091,http://purl.obolibrary.org/obo/PR_000022091,none +15.8562362,PR:000022102,http://purl.obolibrary.org/obo/PR_000022102,none +15.8562362,PR:000022105,http://purl.obolibrary.org/obo/PR_000022105,none +15.8562362,PR:000022148,http://purl.obolibrary.org/obo/PR_000022148,none +15.8562362,PR:000022202,http://purl.obolibrary.org/obo/PR_000022202,none +15.8562362,PR:000022204,http://purl.obolibrary.org/obo/PR_000022204,none +15.8562362,PR:000022229,http://purl.obolibrary.org/obo/PR_000022229,none +15.8562362,PR:000022241,http://purl.obolibrary.org/obo/PR_000022241,none +15.8562362,PR:000022245,http://purl.obolibrary.org/obo/PR_000022245,none +15.8562362,PR:000022289,http://purl.obolibrary.org/obo/PR_000022289,none +15.8562362,PR:000022290,http://purl.obolibrary.org/obo/PR_000022290,none +15.8562362,PR:000022291,http://purl.obolibrary.org/obo/PR_000022291,none +15.8562362,PR:000022317,http://purl.obolibrary.org/obo/PR_000022317,none +15.8562362,PR:000022327,http://purl.obolibrary.org/obo/PR_000022327,none +15.8562362,PR:000022346,http://purl.obolibrary.org/obo/PR_000022346,none +15.8562362,PR:000022351,http://purl.obolibrary.org/obo/PR_000022351,none +15.8562362,PR:000022365,http://purl.obolibrary.org/obo/PR_000022365,none +15.8562362,PR:000022412,http://purl.obolibrary.org/obo/PR_000022412,none +15.8562362,PR:000022423,http://purl.obolibrary.org/obo/PR_000022423,none +15.8562362,PR:000022427,http://purl.obolibrary.org/obo/PR_000022427,none +15.8562362,PR:000022438,http://purl.obolibrary.org/obo/PR_000022438,none +15.8562362,PR:000022448,http://purl.obolibrary.org/obo/PR_000022448,none +15.8562362,PR:000022455,http://purl.obolibrary.org/obo/PR_000022455,none +15.8562362,PR:000022477,http://purl.obolibrary.org/obo/PR_000022477,none +15.8562362,PR:000022506,http://purl.obolibrary.org/obo/PR_000022506,none +15.8562362,PR:000022508,http://purl.obolibrary.org/obo/PR_000022508,none +15.8562362,PR:000022522,http://purl.obolibrary.org/obo/PR_000022522,none +15.8562362,PR:000022526,http://purl.obolibrary.org/obo/PR_000022526,none +15.8562362,PR:000022532,http://purl.obolibrary.org/obo/PR_000022532,none +15.8562362,PR:000022536,http://purl.obolibrary.org/obo/PR_000022536,none +15.8562362,PR:000022553,http://purl.obolibrary.org/obo/PR_000022553,sensor protein EvgS +15.8562362,PR:000022557,http://purl.obolibrary.org/obo/PR_000022557,none +15.8562362,PR:000022575,http://purl.obolibrary.org/obo/PR_000022575,none +15.8562362,PR:000022601,http://purl.obolibrary.org/obo/PR_000022601,none +15.8562362,PR:000022614,http://purl.obolibrary.org/obo/PR_000022614,none +15.8562362,PR:000022619,http://purl.obolibrary.org/obo/PR_000022619,none +15.8562362,PR:000022620,http://purl.obolibrary.org/obo/PR_000022620,none +15.8562362,PR:000022621,http://purl.obolibrary.org/obo/PR_000022621,none +15.8562362,PR:000022622,http://purl.obolibrary.org/obo/PR_000022622,none +15.8562362,PR:000022640,http://purl.obolibrary.org/obo/PR_000022640,none +15.8562362,PR:000022669,http://purl.obolibrary.org/obo/PR_000022669,none +15.8562362,PR:000022683,http://purl.obolibrary.org/obo/PR_000022683,none +15.8562362,PR:000022687,http://purl.obolibrary.org/obo/PR_000022687,none +15.8562362,PR:000022688,http://purl.obolibrary.org/obo/PR_000022688,none +15.8562362,PR:000022715,http://purl.obolibrary.org/obo/PR_000022715,none +15.8562362,PR:000022723,http://purl.obolibrary.org/obo/PR_000022723,none +15.8562362,PR:000022729,http://purl.obolibrary.org/obo/PR_000022729,none +15.8562362,PR:000022735,http://purl.obolibrary.org/obo/PR_000022735,"fumarate hydratase class I, anaerobic" +15.8562362,PR:000022757,http://purl.obolibrary.org/obo/PR_000022757,none +15.8562362,PR:000022844,http://purl.obolibrary.org/obo/PR_000022844,none +15.8562362,PR:000022859,http://purl.obolibrary.org/obo/PR_000022859,none +15.8562362,PR:000022861,http://purl.obolibrary.org/obo/PR_000022861,none +15.8562362,PR:000022870,http://purl.obolibrary.org/obo/PR_000022870,none +15.8562362,PR:000022879,http://purl.obolibrary.org/obo/PR_000022879,none +15.8562362,PR:000022910,http://purl.obolibrary.org/obo/PR_000022910,none +15.8562362,PR:000022948,http://purl.obolibrary.org/obo/PR_000022948,none +15.8562362,PR:000022954,http://purl.obolibrary.org/obo/PR_000022954,none +15.8562362,PR:000022975,http://purl.obolibrary.org/obo/PR_000022975,none +15.8562362,PR:000022976,http://purl.obolibrary.org/obo/PR_000022976,none +15.8562362,PR:000023056,http://purl.obolibrary.org/obo/PR_000023056,none +15.8562362,PR:000023063,http://purl.obolibrary.org/obo/PR_000023063,none +15.8562362,PR:000023067,http://purl.obolibrary.org/obo/PR_000023067,none +15.8562362,PR:000023074,http://purl.obolibrary.org/obo/PR_000023074,none +15.8562362,PR:000023105,http://purl.obolibrary.org/obo/PR_000023105,none +15.8562362,PR:000023145,http://purl.obolibrary.org/obo/PR_000023145,none +15.8562362,PR:000023149,http://purl.obolibrary.org/obo/PR_000023149,none +15.8562362,PR:000023164,http://purl.obolibrary.org/obo/PR_000023164,none +15.8562362,PR:000023168,http://purl.obolibrary.org/obo/PR_000023168,none +15.8562362,PR:000023207,http://purl.obolibrary.org/obo/PR_000023207,none +15.8562362,PR:000023213,http://purl.obolibrary.org/obo/PR_000023213,none +15.8562362,PR:000023214,http://purl.obolibrary.org/obo/PR_000023214,none +15.8562362,PR:000023229,http://purl.obolibrary.org/obo/PR_000023229,none +15.8562362,PR:000023251,http://purl.obolibrary.org/obo/PR_000023251,none +15.8562362,PR:000023318,http://purl.obolibrary.org/obo/PR_000023318,none +15.8562362,PR:000023340,http://purl.obolibrary.org/obo/PR_000023340,none +15.8562362,PR:000023364,http://purl.obolibrary.org/obo/PR_000023364,none +15.8562362,PR:000023391,http://purl.obolibrary.org/obo/PR_000023391,none +15.8562362,PR:000023414,http://purl.obolibrary.org/obo/PR_000023414,none +15.8562362,PR:000023434,http://purl.obolibrary.org/obo/PR_000023434,none +15.8562362,PR:000023476,http://purl.obolibrary.org/obo/PR_000023476,none +15.8562362,PR:000023520,http://purl.obolibrary.org/obo/PR_000023520,none +15.8562362,PR:000023525,http://purl.obolibrary.org/obo/PR_000023525,none +15.8562362,PR:000023543,http://purl.obolibrary.org/obo/PR_000023543,none +15.8562362,PR:000023562,http://purl.obolibrary.org/obo/PR_000023562,none +15.8562362,PR:000023567,http://purl.obolibrary.org/obo/PR_000023567,none +15.8562362,PR:000023568,http://purl.obolibrary.org/obo/PR_000023568,none +15.8562362,PR:000023666,http://purl.obolibrary.org/obo/PR_000023666,none +15.8562362,PR:000023688,http://purl.obolibrary.org/obo/PR_000023688,none +15.8562362,PR:000023691,http://purl.obolibrary.org/obo/PR_000023691,sensor histidine kinase RcsC +15.8562362,PR:000023698,http://purl.obolibrary.org/obo/PR_000023698,none +15.8562362,PR:000023723,http://purl.obolibrary.org/obo/PR_000023723,none +15.8562362,PR:000023741,http://purl.obolibrary.org/obo/PR_000023741,none +15.8562362,PR:000023743,http://purl.obolibrary.org/obo/PR_000023743,none +15.8562362,PR:000023748,http://purl.obolibrary.org/obo/PR_000023748,none +15.8562362,PR:000023754,http://purl.obolibrary.org/obo/PR_000023754,none +15.8562362,PR:000023760,http://purl.obolibrary.org/obo/PR_000023760,none +15.8562362,PR:000023797,http://purl.obolibrary.org/obo/PR_000023797,none +15.8562362,PR:000023812,http://purl.obolibrary.org/obo/PR_000023812,none +15.8562362,PR:000023819,http://purl.obolibrary.org/obo/PR_000023819,none +15.8562362,PR:000023833,http://purl.obolibrary.org/obo/PR_000023833,none +15.8562362,PR:000023842,http://purl.obolibrary.org/obo/PR_000023842,none +15.8562362,PR:000023899,http://purl.obolibrary.org/obo/PR_000023899,none +15.8562362,PR:000023908,http://purl.obolibrary.org/obo/PR_000023908,none +15.8562362,PR:000023935,http://purl.obolibrary.org/obo/PR_000023935,none +15.8562362,PR:000023937,http://purl.obolibrary.org/obo/PR_000023937,none +15.8562362,PR:000023952,http://purl.obolibrary.org/obo/PR_000023952,none +15.8562362,PR:000023968,http://purl.obolibrary.org/obo/PR_000023968,none +15.8562362,PR:000024037,http://purl.obolibrary.org/obo/PR_000024037,none +15.8562362,PR:000024061,http://purl.obolibrary.org/obo/PR_000024061,none +15.8562362,PR:000024071,http://purl.obolibrary.org/obo/PR_000024071,none +15.8562362,PR:000024139,http://purl.obolibrary.org/obo/PR_000024139,none +15.8562362,PR:000024160,http://purl.obolibrary.org/obo/PR_000024160,none +15.8562362,PR:000024165,http://purl.obolibrary.org/obo/PR_000024165,none +15.8562362,PR:000024191,http://purl.obolibrary.org/obo/PR_000024191,none +15.8562362,PR:000024203,http://purl.obolibrary.org/obo/PR_000024203,none +15.8562362,PR:000024245,http://purl.obolibrary.org/obo/PR_000024245,none +15.8562362,PR:000024252,http://purl.obolibrary.org/obo/PR_000024252,none +15.8562362,PR:000024834,http://purl.obolibrary.org/obo/PR_000024834,none +15.8562362,PR:000025000,http://purl.obolibrary.org/obo/PR_000025000,none +15.8562362,PR:000025003,http://purl.obolibrary.org/obo/PR_000025003,none +15.8562362,PR:000025569,http://purl.obolibrary.org/obo/PR_000025569,amyloid-beta precursor protein sequence variant T714I (human) +15.8562362,PR:000025578,http://purl.obolibrary.org/obo/PR_000025578,none +15.8562362,PR:000025668,http://purl.obolibrary.org/obo/PR_000025668,none +15.8562362,PR:000026434,http://purl.obolibrary.org/obo/PR_000026434,DNA replication factor C complex (human) +15.8562362,PR:000026879,http://purl.obolibrary.org/obo/PR_000026879,caspase-3 complex (human) +15.8562362,PR:000027550,http://purl.obolibrary.org/obo/PR_000027550,none +15.8562362,PR:000027552,http://purl.obolibrary.org/obo/PR_000027552,none +15.8562362,PR:000027562,http://purl.obolibrary.org/obo/PR_000027562,none +15.8562362,PR:000027563,http://purl.obolibrary.org/obo/PR_000027563,none +15.8562362,PR:000027744,http://purl.obolibrary.org/obo/PR_000027744,TGF-beta receptor-regulated smad protein unmodified form +15.8562362,PR:000028148,http://purl.obolibrary.org/obo/PR_000028148,none +15.8562362,PR:000029035,http://purl.obolibrary.org/obo/PR_000029035,none +15.8562362,PR:000029107,http://purl.obolibrary.org/obo/PR_000029107,"FAST kinase domain-containing protein 3, mitochondrial" +15.8562362,PR:000029108,http://purl.obolibrary.org/obo/PR_000029108,"FAST kinase domain-containing protein 5, mitochondrial" +15.8562362,PR:000029300,http://purl.obolibrary.org/obo/PR_000029300,BEN domain-containing protein 4 +15.8562362,PR:000029429,http://purl.obolibrary.org/obo/PR_000029429,DnaJ homolog subfamily C member 8 +15.8562362,PR:000029431,http://purl.obolibrary.org/obo/PR_000029431,DnaJ homolog subfamily C member 9 +15.8562362,PR:000029444,http://purl.obolibrary.org/obo/PR_000029444,probable RNA-binding protein EIF1AD +15.8562362,PR:000029449,http://purl.obolibrary.org/obo/PR_000029449,extended synaptotagmin-3 +15.8562362,PR:000029504,http://purl.obolibrary.org/obo/PR_000029504,"glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial" +15.8562362,PR:000029518,http://purl.obolibrary.org/obo/PR_000029518,G patch domain-containing protein 2 +15.8562362,PR:000029519,http://purl.obolibrary.org/obo/PR_000029519,G patch domain-containing protein 4 +15.8562362,PR:000029536,http://purl.obolibrary.org/obo/PR_000029536,"dynein assembly factor 5, axonemal" +15.8562362,PR:000029544,http://purl.obolibrary.org/obo/PR_000029544,HIG1 domain family member 2A +15.8562362,PR:000029578,http://purl.obolibrary.org/obo/PR_000029578,protein O-glucosyltransferase 3 +15.8562362,PR:000029581,http://purl.obolibrary.org/obo/PR_000029581,killer cell lectin-like receptor subfamily G member 2 +15.8562362,PR:000029611,http://purl.obolibrary.org/obo/PR_000029611,leucine-rich repeat and transmembrane domain-containing protein 1 +15.8562362,PR:000029617,http://purl.obolibrary.org/obo/PR_000029617,LysM and putative peptidoglycan-binding domain-containing protein 3 +15.8562362,PR:000029645,http://purl.obolibrary.org/obo/PR_000029645,NmrA-like family domain-containing protein 1 +15.8562362,PR:000029673,http://purl.obolibrary.org/obo/PR_000029673,protein PHTF2 +15.8562362,PR:000029699,http://purl.obolibrary.org/obo/PR_000029699,pentatricopeptide repeat-containing protein 2 +15.8562362,PR:000029710,http://purl.obolibrary.org/obo/PR_000029710,probable RNA-binding protein 23 +15.8562362,PR:000029752,http://purl.obolibrary.org/obo/PR_000029752,E3 ubiquitin-protein ligase SH3RF3 +15.8562362,PR:000029791,http://purl.obolibrary.org/obo/PR_000029791,THUMP domain-containing protein 1 +15.8562362,PR:000029821,http://purl.obolibrary.org/obo/PR_000029821,multifunctional methyltransferase subunit TRM112-like protein +15.8562362,PR:000029843,http://purl.obolibrary.org/obo/PR_000029843,UAP56-interacting factor +15.8562362,PR:000029858,http://purl.obolibrary.org/obo/PR_000029858,pre-mRNA 3' end processing protein WDR33 +15.8562362,PR:000029864,http://purl.obolibrary.org/obo/PR_000029864,"dynein intermediate chain 3, axonemal" +15.8562362,PR:000029891,http://purl.obolibrary.org/obo/PR_000029891,palmitoyltransferase ZDHHC20 +15.8562362,PR:000030194,http://purl.obolibrary.org/obo/PR_000030194,"proline, histidine and glycine-rich protein 1" +15.8562362,PR:000030209,http://purl.obolibrary.org/obo/PR_000030209,rhomboid domain-containing protein 3 +15.8562362,PR:000030217,http://purl.obolibrary.org/obo/PR_000030217,paired-like homeodomain transcription factor LEUTX +15.8562362,PR:000030233,http://purl.obolibrary.org/obo/PR_000030233,DOMON domain-containing protein FRRS1L +15.8562362,PR:000030258,http://purl.obolibrary.org/obo/PR_000030258,BEN domain-containing protein 2 +15.8562362,PR:000030279,http://purl.obolibrary.org/obo/PR_000030279,SKI/DACH domain-containing protein 1 +15.8562362,PR:000030294,http://purl.obolibrary.org/obo/PR_000030294,ubiquitin-conjugating enzyme E2Q-like protein 1 +15.8562362,PR:000030302,http://purl.obolibrary.org/obo/PR_000030302,probable ubiquitin carboxyl-terminal hydrolase MINDY-4 +15.8562362,PR:000030305,http://purl.obolibrary.org/obo/PR_000030305,mitochondrial RNA pseudouridine synthase RPUSD4 +15.8562362,PR:000030312,http://purl.obolibrary.org/obo/PR_000030312,coiled-coil domain-containing protein 42 +15.8562362,PR:000030315,http://purl.obolibrary.org/obo/PR_000030315,lamin tail domain-containing protein 1 +15.8562362,PR:000030359,http://purl.obolibrary.org/obo/PR_000030359,transmembrane and coiled-coil domain protein 3 +15.8562362,PR:000030381,http://purl.obolibrary.org/obo/PR_000030381,leucine-rich repeat-containing protein 37A +15.8562362,PR:000030390,http://purl.obolibrary.org/obo/PR_000030390,mitochondrial coiled-coil domain protein 1 +15.8562362,PR:000030396,http://purl.obolibrary.org/obo/PR_000030396,protein ABHD1 +15.8562362,PR:000030403,http://purl.obolibrary.org/obo/PR_000030403,outer dynein arm-docking complex subunit 3 +15.8562362,PR:000030411,http://purl.obolibrary.org/obo/PR_000030411,IGF-like family receptor 1 +15.8562362,PR:000030417,http://purl.obolibrary.org/obo/PR_000030417,serine protease FAM111A +15.8562362,PR:000030437,http://purl.obolibrary.org/obo/PR_000030437,BMP/retinoic acid-inducible neural-specific protein 2 +15.8562362,PR:000030486,http://purl.obolibrary.org/obo/PR_000030486,G patch domain-containing protein 3 +15.8562362,PR:000030489,http://purl.obolibrary.org/obo/PR_000030489,transmembrane protein 190 +15.8562362,PR:000030511,http://purl.obolibrary.org/obo/PR_000030511,zinc finger protein 587B +15.8562362,PR:000030521,http://purl.obolibrary.org/obo/PR_000030521,methyltransferase-like protein 23 +15.8562362,PR:000030546,http://purl.obolibrary.org/obo/PR_000030546,putative chondrosarcoma-associated gene 1 protein +15.8562362,PR:000030554,http://purl.obolibrary.org/obo/PR_000030554,5'-nucleotidase domain-containing protein 2 +15.8562362,PR:000030556,http://purl.obolibrary.org/obo/PR_000030556,THAP domain-containing protein 5 +15.8562362,PR:000030568,http://purl.obolibrary.org/obo/PR_000030568,BTB/POZ domain-containing protein 6 +15.8562362,PR:000030576,http://purl.obolibrary.org/obo/PR_000030576,T cell receptor delta constant +15.8562362,PR:000030584,http://purl.obolibrary.org/obo/PR_000030584,transmembrane protein 60 +15.8562362,PR:000030589,http://purl.obolibrary.org/obo/PR_000030589,PC-esterase domain-containing protein 1B +15.8562362,PR:000030601,http://purl.obolibrary.org/obo/PR_000030601,TLC domain-containing protein 2 +15.8562362,PR:000030616,http://purl.obolibrary.org/obo/PR_000030616,none +15.8562362,PR:000030637,http://purl.obolibrary.org/obo/PR_000030637,centriolar coiled-coil protein of 110 kDa +15.8562362,PR:000030652,http://purl.obolibrary.org/obo/PR_000030652,transmembrane protein 135 +15.8562362,PR:000030675,http://purl.obolibrary.org/obo/PR_000030675,FERM domain-containing protein 4A +15.8562362,PR:000030679,http://purl.obolibrary.org/obo/PR_000030679,thioredoxin domain-containing protein 15 +15.8562362,PR:000030717,http://purl.obolibrary.org/obo/PR_000030717,lysophospholipase D GDPD3 +15.8562362,PR:000030730,http://purl.obolibrary.org/obo/PR_000030730,major facilitator superfamily domain-containing protein 12 +15.8562362,PR:000030801,http://purl.obolibrary.org/obo/PR_000030801,transmembrane protein 132E +15.8562362,PR:000030821,http://purl.obolibrary.org/obo/PR_000030821,major facilitator superfamily domain-containing protein 3 +15.8562362,PR:000030846,http://purl.obolibrary.org/obo/PR_000030846,WAP four-disulfide core domain protein 3 +15.8562362,PR:000030897,http://purl.obolibrary.org/obo/PR_000030897,FERM domain-containing protein 1 +15.8562362,PR:000030902,http://purl.obolibrary.org/obo/PR_000030902,DNA-directed RNA polymerase II subunit RPB11-a +15.8562362,PR:000030924,http://purl.obolibrary.org/obo/PR_000030924,Ras-related protein Rab-44 +15.8562362,PR:000030939,http://purl.obolibrary.org/obo/PR_000030939,leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 3 +15.8562362,PR:000030958,http://purl.obolibrary.org/obo/PR_000030958,SH2 domain-containing protein 4B +15.8562362,PR:000030975,http://purl.obolibrary.org/obo/PR_000030975,probable RNA-binding protein 46 +15.8562362,PR:000030978,http://purl.obolibrary.org/obo/PR_000030978,COBW domain-containing protein 1 +15.8562362,PR:000030989,http://purl.obolibrary.org/obo/PR_000030989,chemokine-like protein TAFA-1 +15.8562362,PR:000030997,http://purl.obolibrary.org/obo/PR_000030997,FTS and Hook-interacting protein +15.8562362,PR:000031008,http://purl.obolibrary.org/obo/PR_000031008,leucine-rich repeat and immunoglobulin-like domain-containing nogo receptor-interacting protein 4 +15.8562362,PR:000031017,http://purl.obolibrary.org/obo/PR_000031017,protein TASOR 2 +15.8562362,PR:000031088,http://purl.obolibrary.org/obo/PR_000031088,GRAM domain-containing protein 2A +15.8562362,PR:000031125,http://purl.obolibrary.org/obo/PR_000031125,MAP7 domain-containing protein 1 +15.8562362,PR:000031129,http://purl.obolibrary.org/obo/PR_000031129,tetratricopeptide repeat protein 34 +15.8562362,PR:000031157,http://purl.obolibrary.org/obo/PR_000031157,regulation of nuclear pre-mRNA domain-containing protein 2 +15.8562362,PR:000031174,http://purl.obolibrary.org/obo/PR_000031174,CUB domain-containing protein 2 +15.8562362,PR:000031197,http://purl.obolibrary.org/obo/PR_000031197,transmembrane protein 80 +15.8562362,PR:000031233,http://purl.obolibrary.org/obo/PR_000031233,zinc finger CCHC domain-containing protein 10 +15.8562362,PR:000031242,http://purl.obolibrary.org/obo/PR_000031242,Schlafen family member 13 +15.8562362,PR:000031250,http://purl.obolibrary.org/obo/PR_000031250,KH homology domain-containing protein 1 +15.8562362,PR:000031255,http://purl.obolibrary.org/obo/PR_000031255,transmembrane protein 17 +15.8562362,PR:000031256,http://purl.obolibrary.org/obo/PR_000031256,Ly6/PLAUR domain-containing protein 2 +15.8562362,PR:000031265,http://purl.obolibrary.org/obo/PR_000031265,ubiquitin thioesterase otulin +15.8562362,PR:000031266,http://purl.obolibrary.org/obo/PR_000031266,WAP four-disulfide core domain protein 8 +15.8562362,PR:000031279,http://purl.obolibrary.org/obo/PR_000031279,colipase-like protein 2 +15.8562362,PR:000031287,http://purl.obolibrary.org/obo/PR_000031287,ankyrin repeat and MYND domain-containing protein 2 +15.8562362,PR:000031290,http://purl.obolibrary.org/obo/PR_000031290,RIMS-binding protein 3A +15.8562362,PR:000031296,http://purl.obolibrary.org/obo/PR_000031296,testis-expressed protein 22 +15.8562362,PR:000031302,http://purl.obolibrary.org/obo/PR_000031302,metallophosphoesterase domain-containing protein 1 +15.8562362,PR:000031330,http://purl.obolibrary.org/obo/PR_000031330,ubiquitin domain-containing protein 1 +15.8562362,PR:000031349,http://purl.obolibrary.org/obo/PR_000031349,5'-deoxynucleotidase HDDC2 +15.8562362,PR:000031361,http://purl.obolibrary.org/obo/PR_000031361,protein FAM171B +15.8562362,PR:000031366,http://purl.obolibrary.org/obo/PR_000031366,forkhead-associated domain-containing protein 1 +15.8562362,PR:000031367,http://purl.obolibrary.org/obo/PR_000031367,cilia- and flagella-associated protein 70 +15.8562362,PR:000031388,http://purl.obolibrary.org/obo/PR_000031388,protease-associated domain-containing protein 1 +15.8562362,PR:000031389,http://purl.obolibrary.org/obo/PR_000031389,leucine rich adaptor protein 1 +15.8562362,PR:000031434,http://purl.obolibrary.org/obo/PR_000031434,tandem C2 domains nuclear protein +15.8562362,PR:000031452,http://purl.obolibrary.org/obo/PR_000031452,transmembrane protein 215 +15.8562362,PR:000031463,http://purl.obolibrary.org/obo/PR_000031463,DDB1- and CUL4-associated factor 5 +15.8562362,PR:000031499,http://purl.obolibrary.org/obo/PR_000031499,Ly6/PLAUR domain-containing protein 6B +15.8562362,PR:000031504,http://purl.obolibrary.org/obo/PR_000031504,major facilitator superfamily domain-containing protein 2B +15.8562362,PR:000031543,http://purl.obolibrary.org/obo/PR_000031543,transmembrane protein 183A +15.8562362,PR:000031545,http://purl.obolibrary.org/obo/PR_000031545,RUN and FYVE domain-containing protein 4 +15.8562362,PR:000031548,http://purl.obolibrary.org/obo/PR_000031548,probable E3 ubiquitin-protein ligase TRIML1 +15.8562362,PR:000031579,http://purl.obolibrary.org/obo/PR_000031579,DNA-directed primase/polymerase protein +15.8562362,PR:000031582,http://purl.obolibrary.org/obo/PR_000031582,alpha/beta hydrolase domain-containing protein 17A +15.8562362,PR:000031622,http://purl.obolibrary.org/obo/PR_000031622,testis-specific Y-encoded protein 8 +15.8562362,PR:000031670,http://purl.obolibrary.org/obo/PR_000031670,transmembrane and coiled-coil domain-containing protein 5A +15.8562362,PR:000031689,http://purl.obolibrary.org/obo/PR_000031689,protein FAM167A +15.8562362,PR:000031693,http://purl.obolibrary.org/obo/PR_000031693,putative serine protease 42 +15.8562362,PR:000031701,http://purl.obolibrary.org/obo/PR_000031701,T cell receptor beta variable 12-3 +15.8562362,PR:000031708,http://purl.obolibrary.org/obo/PR_000031708,SERTA domain-containing protein 4 +15.8562362,PR:000031711,http://purl.obolibrary.org/obo/PR_000031711,leucine-rich repeat and transmembrane domain-containing protein 2 +15.8562362,PR:000031714,http://purl.obolibrary.org/obo/PR_000031714,tripartite motif-containing protein 43 +15.8562362,PR:000031717,http://purl.obolibrary.org/obo/PR_000031717,phospholipid-transporting ATPase ID +15.8562362,PR:000031740,http://purl.obolibrary.org/obo/PR_000031740,divergent protein kinase domain 1B +15.8562362,PR:000031768,http://purl.obolibrary.org/obo/PR_000031768,PAK4-inhibitor INKA1 +15.8562362,PR:000031772,http://purl.obolibrary.org/obo/PR_000031772,glutaredoxin domain-containing cysteine-rich protein 2 +15.8562362,PR:000031846,http://purl.obolibrary.org/obo/PR_000031846,ATPase family AAA domain-containing protein 3C +15.8562362,PR:000031852,http://purl.obolibrary.org/obo/PR_000031852,cyclic nucleotide-binding domain-containing protein 1 +15.8562362,PR:000031862,http://purl.obolibrary.org/obo/PR_000031862,epoxide hydrolase 4 +15.8562362,PR:000031874,http://purl.obolibrary.org/obo/PR_000031874,protein O-glucosyltransferase 2 +15.8562362,PR:000031878,http://purl.obolibrary.org/obo/PR_000031878,"dynein assembly factor 3, axonemal" +15.8562362,PR:000031898,http://purl.obolibrary.org/obo/PR_000031898,KxDL motif-containing protein 1 +15.8562362,PR:000031918,http://purl.obolibrary.org/obo/PR_000031918,low-density lipoprotein receptor class A domain-containing protein 1 +15.8562362,PR:000031933,http://purl.obolibrary.org/obo/PR_000031933,E3 ubiquitin-protein ligase NEURL1B +15.8562362,PR:000031945,http://purl.obolibrary.org/obo/PR_000031945,IgA-inducing protein +15.8562362,PR:000031960,http://purl.obolibrary.org/obo/PR_000031960,epididymal secretory protein E3-beta +15.8562362,PR:000031964,http://purl.obolibrary.org/obo/PR_000031964,Ly6/PLAUR domain-containing protein 5 +15.8562362,PR:000031993,http://purl.obolibrary.org/obo/PR_000031993,solute carrier family 25 member 42 +15.8562362,PR:000032004,http://purl.obolibrary.org/obo/PR_000032004,dehydrogenase/reductase SDR family member 11 +15.8562362,PR:000032005,http://purl.obolibrary.org/obo/PR_000032005,dynein heavy chain domain-containing protein 1 +15.8562362,PR:000032022,http://purl.obolibrary.org/obo/PR_000032022,tudor domain-containing protein 10 +15.8562362,PR:000032039,http://purl.obolibrary.org/obo/PR_000032039,cytochrome c oxidase assembly factor 7 +15.8562362,PR:000032041,http://purl.obolibrary.org/obo/PR_000032041,protein ABHD15 +15.8562362,PR:000032072,http://purl.obolibrary.org/obo/PR_000032072,zinc finger CCHC domain-containing protein 9 +15.8562362,PR:000032077,http://purl.obolibrary.org/obo/PR_000032077,V-set and transmembrane domain-containing protein 2B +15.8562362,PR:000032084,http://purl.obolibrary.org/obo/PR_000032084,transmembrane protein 9B +15.8562362,PR:000032109,http://purl.obolibrary.org/obo/PR_000032109,THUMP domain-containing protein 3 +15.8562362,PR:000032128,http://purl.obolibrary.org/obo/PR_000032128,transmembrane protein 168 +15.8562362,PR:000032138,http://purl.obolibrary.org/obo/PR_000032138,haloacid dehalogenase-like hydrolase domain-containing protein 3 +15.8562362,PR:000032140,http://purl.obolibrary.org/obo/PR_000032140,protein FAM163A +15.8562362,PR:000032143,http://purl.obolibrary.org/obo/PR_000032143,TLC domain-containing protein 1 +15.8562362,PR:000032144,http://purl.obolibrary.org/obo/PR_000032144,interferon-induced transmembrane protein 10 +15.8562362,PR:000032175,http://purl.obolibrary.org/obo/PR_000032175,coiled-coil domain-containing protein 63 +15.8562362,PR:000032185,http://purl.obolibrary.org/obo/PR_000032185,neuroblastoma breakpoint family member 10 +15.8562362,PR:000032193,http://purl.obolibrary.org/obo/PR_000032193,probable ATP-dependent RNA helicase DDX31 +15.8562362,PR:000032197,http://purl.obolibrary.org/obo/PR_000032197,"dynein intermediate chain 4, axonemal" +15.8562362,PR:000032209,http://purl.obolibrary.org/obo/PR_000032209,probable ATP-dependent RNA helicase DDX49 +15.8562362,PR:000032234,http://purl.obolibrary.org/obo/PR_000032234,adhesion G-protein coupled receptor G4 +15.8562362,PR:000032242,http://purl.obolibrary.org/obo/PR_000032242,LYR motif-containing protein 2 +15.8562362,PR:000032257,http://purl.obolibrary.org/obo/PR_000032257,mitochondrial potassium channel +15.8562362,PR:000032269,http://purl.obolibrary.org/obo/PR_000032269,double zinc ribbon and ankyrin repeat-containing protein 1 +15.8562362,PR:000032285,http://purl.obolibrary.org/obo/PR_000032285,electron transfer flavoprotein beta subunit lysine methyltransferase +15.8562362,PR:000032287,http://purl.obolibrary.org/obo/PR_000032287,Golgi-associated kinase 1B +15.8562362,PR:000032314,http://purl.obolibrary.org/obo/PR_000032314,coiled-coil domain-containing protein 81 +15.8562362,PR:000032318,http://purl.obolibrary.org/obo/PR_000032318,tripartite motif-containing protein 48 +15.8562362,PR:000032323,http://purl.obolibrary.org/obo/PR_000032323,ankyrin repeat domain-containing protein 13C +15.8562362,PR:000032346,http://purl.obolibrary.org/obo/PR_000032346,protein FAM107B +15.8562362,PR:000032351,http://purl.obolibrary.org/obo/PR_000032351,mitochondrial mRNA pseudouridine synthase TRUB2 +15.8562362,PR:000032362,http://purl.obolibrary.org/obo/PR_000032362,probable ATP-dependent RNA helicase DDX60-like +15.8562362,PR:000032378,http://purl.obolibrary.org/obo/PR_000032378,SH3 domain-binding protein 5-like +15.8562362,PR:000032380,http://purl.obolibrary.org/obo/PR_000032380,HERV-H LTR-associating protein 1 +15.8562362,PR:000032385,http://purl.obolibrary.org/obo/PR_000032385,protein shisa-7 +15.8562362,PR:000032391,http://purl.obolibrary.org/obo/PR_000032391,calmodulin-lysine N-methyltransferase +15.8562362,PR:000032395,http://purl.obolibrary.org/obo/PR_000032395,5'-nucleotidase domain-containing protein 1 +15.8562362,PR:000032401,http://purl.obolibrary.org/obo/PR_000032401,NXPE family member 1 +15.8562362,PR:000032417,http://purl.obolibrary.org/obo/PR_000032417,"calcium uptake protein 3, mitochondrial" +15.8562362,PR:000032434,http://purl.obolibrary.org/obo/PR_000032434,LisH domain-containing protein ARMC9 +15.8562362,PR:000032451,http://purl.obolibrary.org/obo/PR_000032451,protein FAM92A +15.8562362,PR:000032453,http://purl.obolibrary.org/obo/PR_000032453,syndetin +15.8562362,PR:000032478,http://purl.obolibrary.org/obo/PR_000032478,G antigen family E member 2 +15.8562362,PR:000032518,http://purl.obolibrary.org/obo/PR_000032518,C-type lectin-like domain family protein 1 +15.8562362,PR:000032535,http://purl.obolibrary.org/obo/PR_000032535,leucine-rich repeat-containing protein 14 +15.8562362,PR:000032553,http://purl.obolibrary.org/obo/PR_000032553,SH2 domain-containing protein 5 +15.8562362,PR:000032617,http://purl.obolibrary.org/obo/PR_000032617,keratin-associated protein 1-4 +15.8562362,PR:000032637,http://purl.obolibrary.org/obo/PR_000032637,putative aldo-keto reductase family 1 member C8 +15.8562362,PR:000032638,http://purl.obolibrary.org/obo/PR_000032638,tetratricopeptide repeat protein 29 +15.8562362,PR:000032646,http://purl.obolibrary.org/obo/PR_000032646,serine protease 55 +15.8562362,PR:000032727,http://purl.obolibrary.org/obo/PR_000032727,ankyrin repeat and fibronectin type-III domain-containing protein 1 +15.8562362,PR:000032760,http://purl.obolibrary.org/obo/PR_000032760,tRNA-uridine aminocarboxypropyltransferase 2 +15.8562362,PR:000032787,http://purl.obolibrary.org/obo/PR_000032787,tetratricopeptide repeat protein 9A +15.8562362,PR:000032797,http://purl.obolibrary.org/obo/PR_000032797,coiled-coil-helix-coiled-coil-helix domain-containing protein 1 +15.8562362,PR:000032822,http://purl.obolibrary.org/obo/PR_000032822,consortin +15.8562362,PR:000032826,http://purl.obolibrary.org/obo/PR_000032826,leucine-rich repeat-containing protein 31 +15.8562362,PR:000032914,http://purl.obolibrary.org/obo/PR_000032914,none +15.8562362,PR:000032943,http://purl.obolibrary.org/obo/PR_000032943,none +15.8562362,PR:000032985,http://purl.obolibrary.org/obo/PR_000032985,none +15.8562362,PR:000033078,http://purl.obolibrary.org/obo/PR_000033078,none +15.8562362,PR:000033092,http://purl.obolibrary.org/obo/PR_000033092,none +15.8562362,PR:000033215,http://purl.obolibrary.org/obo/PR_000033215,none +15.8562362,PR:000033355,http://purl.obolibrary.org/obo/PR_000033355,none +15.8562362,PR:000033455,http://purl.obolibrary.org/obo/PR_000033455,none +15.8562362,PR:000033487,http://purl.obolibrary.org/obo/PR_000033487,none +15.8562362,PR:000033530,http://purl.obolibrary.org/obo/PR_000033530,none +15.8562362,PR:000033543,http://purl.obolibrary.org/obo/PR_000033543,none +15.8562362,PR:000033692,http://purl.obolibrary.org/obo/PR_000033692,none +15.8562362,PR:000033977,http://purl.obolibrary.org/obo/PR_000033977,none +15.8562362,PR:000034003,http://purl.obolibrary.org/obo/PR_000034003,none +15.8562362,PR:000034026,http://purl.obolibrary.org/obo/PR_000034026,none +15.8562362,PR:000034027,http://purl.obolibrary.org/obo/PR_000034027,none +15.8562362,PR:000034138,http://purl.obolibrary.org/obo/PR_000034138,none +15.8562362,PR:000034159,http://purl.obolibrary.org/obo/PR_000034159,none +15.8562362,PR:000034360,http://purl.obolibrary.org/obo/PR_000034360,none +15.8562362,PR:000034487,http://purl.obolibrary.org/obo/PR_000034487,none +15.8562362,PR:000034518,http://purl.obolibrary.org/obo/PR_000034518,none +15.8562362,PR:000034634,http://purl.obolibrary.org/obo/PR_000034634,none +15.8562362,PR:000034782,http://purl.obolibrary.org/obo/PR_000034782,none +15.8562362,PR:000034960,http://purl.obolibrary.org/obo/PR_000034960,none +15.8562362,PR:000035055,http://purl.obolibrary.org/obo/PR_000035055,none +15.8562362,PR:000035085,http://purl.obolibrary.org/obo/PR_000035085,none +15.8562362,PR:000035333,http://purl.obolibrary.org/obo/PR_000035333,none +15.8562362,PR:000035341,http://purl.obolibrary.org/obo/PR_000035341,none +15.8562362,PR:000035343,http://purl.obolibrary.org/obo/PR_000035343,none +15.8562362,PR:000036834,http://purl.obolibrary.org/obo/PR_000036834,none +15.8562362,PR:000036843,http://purl.obolibrary.org/obo/PR_000036843,none +15.8562362,PR:000037019,http://purl.obolibrary.org/obo/PR_000037019,ADP-ribosylation factor-like protein 17 +15.8562362,PR:000039860,http://purl.obolibrary.org/obo/PR_000039860,C2 domain-containing protein 5 +15.8562362,PR:000044403,http://purl.obolibrary.org/obo/PR_000044403,none +15.8562362,PR:000044444,http://purl.obolibrary.org/obo/PR_000044444,none +15.8562362,PR:000044449,http://purl.obolibrary.org/obo/PR_000044449,none +15.8562362,PR:000044707,http://purl.obolibrary.org/obo/PR_000044707,none +15.8562362,PR:A3KPF2,http://purl.obolibrary.org/obo/PR_A3KPF2,none +15.8562362,PR:A6NDN3,http://purl.obolibrary.org/obo/PR_A6NDN3,golgin subfamily A member 6B (human) +15.8562362,PR:A6X980,http://purl.obolibrary.org/obo/PR_A6X980,none +15.8562362,PR:A7XYH5,http://purl.obolibrary.org/obo/PR_A7XYH5,none +15.8562362,PR:A7XYI6,http://purl.obolibrary.org/obo/PR_A7XYI6,none +15.8562362,PR:A8MWY0,http://purl.obolibrary.org/obo/PR_A8MWY0,endosome/lysosome-associated apoptosis and autophagy regulator family member 2 (human) +15.8562362,PR:D3ZGQ5,http://purl.obolibrary.org/obo/PR_D3ZGQ5,none +15.8562362,PR:D4ABM4,http://purl.obolibrary.org/obo/PR_D4ABM4,none +15.8562362,PR:D4N500,http://purl.obolibrary.org/obo/PR_D4N500,none +15.8562362,PR:E9Q286,http://purl.obolibrary.org/obo/PR_E9Q286,none +15.8562362,PR:E9Q9D5,http://purl.obolibrary.org/obo/PR_E9Q9D5,none +15.8562362,PR:E9QJ75,http://purl.obolibrary.org/obo/PR_E9QJ75,none +15.8562362,PR:F1R4Y7,http://purl.obolibrary.org/obo/PR_F1R4Y7,none +15.8562362,PR:F4HRC1,http://purl.obolibrary.org/obo/PR_F4HRC1,none +15.8562362,PR:F4HW51,http://purl.obolibrary.org/obo/PR_F4HW51,none +15.8562362,PR:F4HY61,http://purl.obolibrary.org/obo/PR_F4HY61,none +15.8562362,PR:F4HYV5,http://purl.obolibrary.org/obo/PR_F4HYV5,none +15.8562362,PR:F4HZB2,http://purl.obolibrary.org/obo/PR_F4HZB2,none +15.8562362,PR:F4IPE3,http://purl.obolibrary.org/obo/PR_F4IPE3,none +15.8562362,PR:F4IXE7,http://purl.obolibrary.org/obo/PR_F4IXE7,none +15.8562362,PR:F4JIK2,http://purl.obolibrary.org/obo/PR_F4JIK2,none +15.8562362,PR:F4JPR7,http://purl.obolibrary.org/obo/PR_F4JPR7,none +15.8562362,PR:F4JVB8,http://purl.obolibrary.org/obo/PR_F4JVB8,none +15.8562362,PR:F4K2G3,http://purl.obolibrary.org/obo/PR_F4K2G3,none +15.8562362,PR:F4K2K3,http://purl.obolibrary.org/obo/PR_F4K2K3,none +15.8562362,PR:L0HN04,http://purl.obolibrary.org/obo/PR_L0HN04,none +15.8562362,PR:O04046,http://purl.obolibrary.org/obo/PR_O04046,none +15.8562362,PR:O04313,http://purl.obolibrary.org/obo/PR_O04313,none +15.8562362,PR:O04499,http://purl.obolibrary.org/obo/PR_O04499,none +15.8562362,PR:O04921,http://purl.obolibrary.org/obo/PR_O04921,none +15.8562362,PR:O22785,http://purl.obolibrary.org/obo/PR_O22785,none +15.8562362,PR:O23044,http://purl.obolibrary.org/obo/PR_O23044,none +15.8562362,PR:O23193,http://purl.obolibrary.org/obo/PR_O23193,none +15.8562362,PR:O23215,http://purl.obolibrary.org/obo/PR_O23215,none +15.8562362,PR:O23320,http://purl.obolibrary.org/obo/PR_O23320,none +15.8562362,PR:O23507,http://purl.obolibrary.org/obo/PR_O23507,none +15.8562362,PR:O23553,http://purl.obolibrary.org/obo/PR_O23553,none +15.8562362,PR:O23702,http://purl.obolibrary.org/obo/PR_O23702,none +15.8562362,PR:O23722,http://purl.obolibrary.org/obo/PR_O23722,none +15.8562362,PR:O35855,http://purl.obolibrary.org/obo/PR_O35855,none +15.8562362,PR:O43080,http://purl.obolibrary.org/obo/PR_O43080,none +15.8562362,PR:O46339,http://purl.obolibrary.org/obo/PR_O46339,none +15.8562362,PR:O49279,http://purl.obolibrary.org/obo/PR_O49279,none +15.8562362,PR:O59701,http://purl.obolibrary.org/obo/PR_O59701,none +15.8562362,PR:O64489,http://purl.obolibrary.org/obo/PR_O64489,none +15.8562362,PR:O64722,http://purl.obolibrary.org/obo/PR_O64722,none +15.8562362,PR:O65269,http://purl.obolibrary.org/obo/PR_O65269,none +15.8562362,PR:O65282,http://purl.obolibrary.org/obo/PR_O65282,none +15.8562362,PR:O65508,http://purl.obolibrary.org/obo/PR_O65508,none +15.8562362,PR:O65639,http://purl.obolibrary.org/obo/PR_O65639,none +15.8562362,PR:O74905,http://purl.obolibrary.org/obo/PR_O74905,none +15.8562362,PR:O74927,http://purl.obolibrary.org/obo/PR_O74927,none +15.8562362,PR:O80439,http://purl.obolibrary.org/obo/PR_O80439,none +15.8562362,PR:O80803,http://purl.obolibrary.org/obo/PR_O80803,none +15.8562362,PR:O81126,http://purl.obolibrary.org/obo/PR_O81126,none +15.8562362,PR:O82330,http://purl.obolibrary.org/obo/PR_O82330,none +15.8562362,PR:O88272,http://purl.obolibrary.org/obo/PR_O88272,none +15.8562362,PR:O96626,http://purl.obolibrary.org/obo/PR_O96626,none +15.8562362,PR:P00178,http://purl.obolibrary.org/obo/PR_P00178,none +15.8562362,PR:P02272,http://purl.obolibrary.org/obo/PR_P02272,none +15.8562362,PR:P03211,http://purl.obolibrary.org/obo/PR_P03211,none +15.8562362,PR:P04797,http://purl.obolibrary.org/obo/PR_P04797,none +15.8562362,PR:P04806,http://purl.obolibrary.org/obo/PR_P04806,none +15.8562362,PR:P08144,http://purl.obolibrary.org/obo/PR_P08144,none +15.8562362,PR:P08934,http://purl.obolibrary.org/obo/PR_P08934,none +15.8562362,PR:P09938,http://purl.obolibrary.org/obo/PR_P09938,none +15.8562362,PR:P0C0L6,http://purl.obolibrary.org/obo/PR_P0C0L6,none +15.8562362,PR:P0CG50,http://purl.obolibrary.org/obo/PR_P0CG50,none +15.8562362,PR:P0CT67,http://purl.obolibrary.org/obo/PR_P0CT67,none +15.8562362,PR:P0CT74,http://purl.obolibrary.org/obo/PR_P0CT74,none +15.8562362,PR:P0CT81,http://purl.obolibrary.org/obo/PR_P0CT81,none +15.8562362,PR:P0CX48,http://purl.obolibrary.org/obo/PR_P0CX48,none +15.8562362,PR:P10613,http://purl.obolibrary.org/obo/PR_P10613,none +15.8562362,PR:P10721,http://purl.obolibrary.org/obo/PR_P10721,mast/stem cell growth factor receptor Kit (human) +15.8562362,PR:P10795,http://purl.obolibrary.org/obo/PR_P10795,none +15.8562362,PR:P11747,http://purl.obolibrary.org/obo/PR_P11747,none +15.8562362,PR:P12830,http://purl.obolibrary.org/obo/PR_P12830,cadherin-1 (human) +15.8562362,PR:P12881,http://purl.obolibrary.org/obo/PR_P12881,none +15.8562362,PR:P12939,http://purl.obolibrary.org/obo/PR_P12939,none +15.8562362,PR:P13569,http://purl.obolibrary.org/obo/PR_P13569,cystic fibrosis transmembrane conductance regulator (human) +15.8562362,PR:P15270,http://purl.obolibrary.org/obo/PR_P15270,none +15.8562362,PR:P15538,http://purl.obolibrary.org/obo/PR_P15538,"cytochrome P450 11B1, mitochondrial (human)" +15.8562362,PR:P17221,http://purl.obolibrary.org/obo/PR_P17221,none +15.8562362,PR:P22769,http://purl.obolibrary.org/obo/PR_P22769,none +15.8562362,PR:P22887,http://purl.obolibrary.org/obo/PR_P22887,none +15.8562362,PR:P23059,http://purl.obolibrary.org/obo/PR_P23059,none +15.8562362,PR:P25569,http://purl.obolibrary.org/obo/PR_P25569,none +15.8562362,PR:P25641,http://purl.obolibrary.org/obo/PR_P25641,none +15.8562362,PR:P26151,http://purl.obolibrary.org/obo/PR_P26151,none +15.8562362,PR:P26786,http://purl.obolibrary.org/obo/PR_P26786,none +15.8562362,PR:P27637,http://purl.obolibrary.org/obo/PR_P27637,none +15.8562362,PR:P27780,http://purl.obolibrary.org/obo/PR_P27780,none +15.8562362,PR:P29515,http://purl.obolibrary.org/obo/PR_P29515,none +15.8562362,PR:P29681,http://purl.obolibrary.org/obo/PR_P29681,none +15.8562362,PR:P29774,http://purl.obolibrary.org/obo/PR_P29774,none +15.8562362,PR:P30152,http://purl.obolibrary.org/obo/PR_P30152,none +15.8562362,PR:P30302,http://purl.obolibrary.org/obo/PR_P30302,none +15.8562362,PR:P30713,http://purl.obolibrary.org/obo/PR_P30713,none +15.8562362,PR:P31688,http://purl.obolibrary.org/obo/PR_P31688,none +15.8562362,PR:P32029,http://purl.obolibrary.org/obo/PR_P32029,none +15.8562362,PR:P32178,http://purl.obolibrary.org/obo/PR_P32178,none +15.8562362,PR:P32468,http://purl.obolibrary.org/obo/PR_P32468,none +15.8562362,PR:P32787,http://purl.obolibrary.org/obo/PR_P32787,none +15.8562362,PR:P32793,http://purl.obolibrary.org/obo/PR_P32793,none +15.8562362,PR:P32830,http://purl.obolibrary.org/obo/PR_P32830,none +15.8562362,PR:P32832,http://purl.obolibrary.org/obo/PR_P32832,none +15.8562362,PR:P32843,http://purl.obolibrary.org/obo/PR_P32843,none +15.8562362,PR:P33766,http://purl.obolibrary.org/obo/PR_P33766,none +15.8562362,PR:P35411,http://purl.obolibrary.org/obo/PR_P35411,none +15.8562362,PR:P36008,http://purl.obolibrary.org/obo/PR_P36008,none +15.8562362,PR:P36525,http://purl.obolibrary.org/obo/PR_P36525,none +15.8562362,PR:P36584,http://purl.obolibrary.org/obo/PR_P36584,none +15.8562362,PR:P38155,http://purl.obolibrary.org/obo/PR_P38155,none +15.8562362,PR:P38210,http://purl.obolibrary.org/obo/PR_P38210,none +15.8562362,PR:P38264,http://purl.obolibrary.org/obo/PR_P38264,none +15.8562362,PR:P38270,http://purl.obolibrary.org/obo/PR_P38270,none +15.8562362,PR:P38361,http://purl.obolibrary.org/obo/PR_P38361,none +15.8562362,PR:P38428,http://purl.obolibrary.org/obo/PR_P38428,none +15.8562362,PR:P38637,http://purl.obolibrary.org/obo/PR_P38637,none +15.8562362,PR:P38804,http://purl.obolibrary.org/obo/PR_P38804,none +15.8562362,PR:P38806,http://purl.obolibrary.org/obo/PR_P38806,none +15.8562362,PR:P38907,http://purl.obolibrary.org/obo/PR_P38907,none +15.8562362,PR:P38954,http://purl.obolibrary.org/obo/PR_P38954,none +15.8562362,PR:P39069,http://purl.obolibrary.org/obo/PR_P39069,none +15.8562362,PR:P39953,http://purl.obolibrary.org/obo/PR_P39953,none +15.8562362,PR:P39963,http://purl.obolibrary.org/obo/PR_P39963,none +15.8562362,PR:P39969,http://purl.obolibrary.org/obo/PR_P39969,none +15.8562362,PR:P40070,http://purl.obolibrary.org/obo/PR_P40070,none +15.8562362,PR:P40073,http://purl.obolibrary.org/obo/PR_P40073,none +15.8562362,PR:P40091,http://purl.obolibrary.org/obo/PR_P40091,none +15.8562362,PR:P40481,http://purl.obolibrary.org/obo/PR_P40481,none +15.8562362,PR:P40525,http://purl.obolibrary.org/obo/PR_P40525,none +15.8562362,PR:P40556,http://purl.obolibrary.org/obo/PR_P40556,none +15.8562362,PR:P41833,http://purl.obolibrary.org/obo/PR_P41833,none +15.8562362,PR:P42761,http://purl.obolibrary.org/obo/PR_P42761,none +15.8562362,PR:P43124,http://purl.obolibrary.org/obo/PR_P43124,none +15.8562362,PR:P43609,http://purl.obolibrary.org/obo/PR_P43609,none +15.8562362,PR:P46350,http://purl.obolibrary.org/obo/PR_P46350,none +15.8562362,PR:P46421,http://purl.obolibrary.org/obo/PR_P46421,none +15.8562362,PR:P46646,http://purl.obolibrary.org/obo/PR_P46646,none +15.8562362,PR:P46673,http://purl.obolibrary.org/obo/PR_P46673,none +15.8562362,PR:P46678,http://purl.obolibrary.org/obo/PR_P46678,none +15.8562362,PR:P46974,http://purl.obolibrary.org/obo/PR_P46974,none +15.8562362,PR:P47017,http://purl.obolibrary.org/obo/PR_P47017,none +15.8562362,PR:P47050,http://purl.obolibrary.org/obo/PR_P47050,none +15.8562362,PR:P48010,http://purl.obolibrary.org/obo/PR_P48010,none +15.8562362,PR:P49769,http://purl.obolibrary.org/obo/PR_P49769,none +15.8562362,PR:P51410,http://purl.obolibrary.org/obo/PR_P51410,none +15.8562362,PR:P51590,http://purl.obolibrary.org/obo/PR_P51590,none +15.8562362,PR:P51678,http://purl.obolibrary.org/obo/PR_P51678,none +15.8562362,PR:P51683,http://purl.obolibrary.org/obo/PR_P51683,none +15.8562362,PR:P52485,http://purl.obolibrary.org/obo/PR_P52485,none +15.8562362,PR:P52871,http://purl.obolibrary.org/obo/PR_P52871,none +15.8562362,PR:P53040,http://purl.obolibrary.org/obo/PR_P53040,none +15.8562362,PR:P53176,http://purl.obolibrary.org/obo/PR_P53176,none +15.8562362,PR:P53507,http://purl.obolibrary.org/obo/PR_P53507,none +15.8562362,PR:P53616,http://purl.obolibrary.org/obo/PR_P53616,none +15.8562362,PR:P54193,http://purl.obolibrary.org/obo/PR_P54193,none +15.8562362,PR:P54195,http://purl.obolibrary.org/obo/PR_P54195,none +15.8562362,PR:P54888,http://purl.obolibrary.org/obo/PR_P54888,none +15.8562362,PR:P56783,http://purl.obolibrary.org/obo/PR_P56783,none +15.8562362,PR:P56818,http://purl.obolibrary.org/obo/PR_P56818,none +15.8562362,PR:P61837,http://purl.obolibrary.org/obo/PR_P61837,none +15.8562362,PR:P62892,http://purl.obolibrary.org/obo/PR_P62892,none +15.8562362,PR:P68331,http://purl.obolibrary.org/obo/PR_P68331,none +15.8562362,PR:P93024,http://purl.obolibrary.org/obo/PR_P93024,none +15.8562362,PR:P93042,http://purl.obolibrary.org/obo/PR_P93042,none +15.8562362,PR:P93732,http://purl.obolibrary.org/obo/PR_P93732,none +15.8562362,PR:P94014,http://purl.obolibrary.org/obo/PR_P94014,none +15.8562362,PR:P98060,http://purl.obolibrary.org/obo/PR_P98060,none +15.8562362,PR:P9WFX1,http://purl.obolibrary.org/obo/PR_P9WFX1,none +15.8562362,PR:P9WHB1,http://purl.obolibrary.org/obo/PR_P9WHB1,none +15.8562362,PR:P9WQN9,http://purl.obolibrary.org/obo/PR_P9WQN9,none +15.8562362,PR:Q00684,http://purl.obolibrary.org/obo/PR_Q00684,none +15.8562362,PR:Q01667,http://purl.obolibrary.org/obo/PR_Q01667,none +15.8562362,PR:Q01896,http://purl.obolibrary.org/obo/PR_Q01896,none +15.8562362,PR:Q02685,http://purl.obolibrary.org/obo/PR_Q02685,none +15.8562362,PR:Q03178,http://purl.obolibrary.org/obo/PR_Q03178,none +15.8562362,PR:Q03180,http://purl.obolibrary.org/obo/PR_Q03180,none +15.8562362,PR:Q03654,http://purl.obolibrary.org/obo/PR_Q03654,none +15.8562362,PR:Q04006,http://purl.obolibrary.org/obo/PR_Q04006,none +15.8562362,PR:Q04195,http://purl.obolibrary.org/obo/PR_Q04195,none +15.8562362,PR:Q05166,http://purl.obolibrary.org/obo/PR_Q05166,none +15.8562362,PR:Q05998,http://purl.obolibrary.org/obo/PR_Q05998,none +15.8562362,PR:Q06410,http://purl.obolibrary.org/obo/PR_Q06410,none +15.8562362,PR:Q09731,http://purl.obolibrary.org/obo/PR_Q09731,none +15.8562362,PR:Q0P4F6,http://purl.obolibrary.org/obo/PR_Q0P4F6,none +15.8562362,PR:Q0P5V2,http://purl.obolibrary.org/obo/PR_Q0P5V2,none +15.8562362,PR:Q12000,http://purl.obolibrary.org/obo/PR_Q12000,none +15.8562362,PR:Q12068,http://purl.obolibrary.org/obo/PR_Q12068,none +15.8562362,PR:Q12355,http://purl.obolibrary.org/obo/PR_Q12355,none +15.8562362,PR:Q14154,http://purl.obolibrary.org/obo/PR_Q14154,DAP3-binding cell death enhancer 1 (human) +15.8562362,PR:Q14667,http://purl.obolibrary.org/obo/PR_Q14667,protein KIAA0100 (human) +15.8562362,PR:Q18801,http://purl.obolibrary.org/obo/PR_Q18801,none +15.8562362,PR:Q1ECF1,http://purl.obolibrary.org/obo/PR_Q1ECF1,none +15.8562362,PR:Q1PFB9,http://purl.obolibrary.org/obo/PR_Q1PFB9,none +15.8562362,PR:Q1ZY22,http://purl.obolibrary.org/obo/PR_Q1ZY22,none +15.8562362,PR:Q23120,http://purl.obolibrary.org/obo/PR_Q23120,none +15.8562362,PR:Q24178,http://purl.obolibrary.org/obo/PR_Q24178,none +15.8562362,PR:Q24498,http://purl.obolibrary.org/obo/PR_Q24498,none +15.8562362,PR:Q2FZ08,http://purl.obolibrary.org/obo/PR_Q2FZ08,none +15.8562362,PR:Q2WG78,http://purl.obolibrary.org/obo/PR_Q2WG78,none +15.8562362,PR:Q39163,http://purl.obolibrary.org/obo/PR_Q39163,none +15.8562362,PR:Q39193,http://purl.obolibrary.org/obo/PR_Q39193,none +15.8562362,PR:Q39196,http://purl.obolibrary.org/obo/PR_Q39196,none +15.8562362,PR:Q3E7B6,http://purl.obolibrary.org/obo/PR_Q3E7B6,none +15.8562362,PR:Q3E7X9,http://purl.obolibrary.org/obo/PR_Q3E7X9,none +15.8562362,PR:Q3ECW8,http://purl.obolibrary.org/obo/PR_Q3ECW8,none +15.8562362,PR:Q401C0,http://purl.obolibrary.org/obo/PR_Q401C0,none +15.8562362,PR:Q45HK4,http://purl.obolibrary.org/obo/PR_Q45HK4,none +15.8562362,PR:Q4PIR3,http://purl.obolibrary.org/obo/PR_Q4PIR3,none +15.8562362,PR:Q54FI0,http://purl.obolibrary.org/obo/PR_Q54FI0,none +15.8562362,PR:Q54JU0,http://purl.obolibrary.org/obo/PR_Q54JU0,none +15.8562362,PR:Q54JU1,http://purl.obolibrary.org/obo/PR_Q54JU1,none +15.8562362,PR:Q54JU3,http://purl.obolibrary.org/obo/PR_Q54JU3,none +15.8562362,PR:Q54QD2,http://purl.obolibrary.org/obo/PR_Q54QD2,none +15.8562362,PR:Q54QE4,http://purl.obolibrary.org/obo/PR_Q54QE4,none +15.8562362,PR:Q54R41,http://purl.obolibrary.org/obo/PR_Q54R41,none +15.8562362,PR:Q54S40,http://purl.obolibrary.org/obo/PR_Q54S40,none +15.8562362,PR:Q58G47,http://purl.obolibrary.org/obo/PR_Q58G47,none +15.8562362,PR:Q5A8K2,http://purl.obolibrary.org/obo/PR_Q5A8K2,none +15.8562362,PR:Q5AQ36,http://purl.obolibrary.org/obo/PR_Q5AQ36,none +15.8562362,PR:Q5GIG6,http://purl.obolibrary.org/obo/PR_Q5GIG6,none +15.8562362,PR:Q5H7N8,http://purl.obolibrary.org/obo/PR_Q5H7N8,none +15.8562362,PR:Q5ZM96,http://purl.obolibrary.org/obo/PR_Q5ZM96,none +15.8562362,PR:Q63634,http://purl.obolibrary.org/obo/PR_Q63634,none +15.8562362,PR:Q63746,http://purl.obolibrary.org/obo/PR_Q63746,none +15.8562362,PR:Q64281,http://purl.obolibrary.org/obo/PR_Q64281,none +15.8562362,PR:Q64314,http://purl.obolibrary.org/obo/PR_Q64314,none +15.8562362,PR:Q66I08,http://purl.obolibrary.org/obo/PR_Q66I08,none +15.8562362,PR:Q682V0,http://purl.obolibrary.org/obo/PR_Q682V0,none +15.8562362,PR:Q6BDR8,http://purl.obolibrary.org/obo/PR_Q6BDR8,none +15.8562362,PR:Q6LA43,http://purl.obolibrary.org/obo/PR_Q6LA43,none +15.8562362,PR:Q6MG51,http://purl.obolibrary.org/obo/PR_Q6MG51,none +15.8562362,PR:Q6P8X9,http://purl.obolibrary.org/obo/PR_Q6P8X9,none +15.8562362,PR:Q6PCP5,http://purl.obolibrary.org/obo/PR_Q6PCP5,none +15.8562362,PR:Q6R0E3,http://purl.obolibrary.org/obo/PR_Q6R0E3,none +15.8562362,PR:Q6R0H0,http://purl.obolibrary.org/obo/PR_Q6R0H0,none +15.8562362,PR:Q6S5G3,http://purl.obolibrary.org/obo/PR_Q6S5G3,none +15.8562362,PR:Q6TH21,http://purl.obolibrary.org/obo/PR_Q6TH21,none +15.8562362,PR:Q75JK6,http://purl.obolibrary.org/obo/PR_Q75JK6,none +15.8562362,PR:Q76E23,http://purl.obolibrary.org/obo/PR_Q76E23,none +15.8562362,PR:Q76M72,http://purl.obolibrary.org/obo/PR_Q76M72,none +15.8562362,PR:Q7M438,http://purl.obolibrary.org/obo/PR_Q7M438,none +15.8562362,PR:Q7SXB7,http://purl.obolibrary.org/obo/PR_Q7SXB7,none +15.8562362,PR:Q7SXU0,http://purl.obolibrary.org/obo/PR_Q7SXU0,none +15.8562362,PR:Q7SYI5,http://purl.obolibrary.org/obo/PR_Q7SYI5,none +15.8562362,PR:Q7TN45,http://purl.obolibrary.org/obo/PR_Q7TN45,none +15.8562362,PR:Q7TQP6,http://purl.obolibrary.org/obo/PR_Q7TQP6,none +15.8562362,PR:Q7X9V2,http://purl.obolibrary.org/obo/PR_Q7X9V2,none +15.8562362,PR:Q7XA67,http://purl.obolibrary.org/obo/PR_Q7XA67,none +15.8562362,PR:Q7Z2C4,http://purl.obolibrary.org/obo/PR_Q7Z2C4,none +15.8562362,PR:Q84TK0,http://purl.obolibrary.org/obo/PR_Q84TK0,none +15.8562362,PR:Q8BG87,http://purl.obolibrary.org/obo/PR_Q8BG87,none +15.8562362,PR:Q8BWF2,http://purl.obolibrary.org/obo/PR_Q8BWF2,none +15.8562362,PR:Q8BZP8,http://purl.obolibrary.org/obo/PR_Q8BZP8,none +15.8562362,PR:Q8C3L1,http://purl.obolibrary.org/obo/PR_Q8C3L1,none +15.8562362,PR:Q8C7Q4,http://purl.obolibrary.org/obo/PR_Q8C7Q4,none +15.8562362,PR:Q8C9S4,http://purl.obolibrary.org/obo/PR_Q8C9S4,none +15.8562362,PR:Q8GUJ2,http://purl.obolibrary.org/obo/PR_Q8GUJ2,none +15.8562362,PR:Q8GW78,http://purl.obolibrary.org/obo/PR_Q8GW78,none +15.8562362,PR:Q8GXL7,http://purl.obolibrary.org/obo/PR_Q8GXL7,none +15.8562362,PR:Q8GYP3,http://purl.obolibrary.org/obo/PR_Q8GYP3,none +15.8562362,PR:Q8GZ53,http://purl.obolibrary.org/obo/PR_Q8GZ53,none +15.8562362,PR:Q8L5T5,http://purl.obolibrary.org/obo/PR_Q8L5T5,none +15.8562362,PR:Q8L7W8,http://purl.obolibrary.org/obo/PR_Q8L7W8,none +15.8562362,PR:Q8L7Y8,http://purl.obolibrary.org/obo/PR_Q8L7Y8,none +15.8562362,PR:Q8L9C4,http://purl.obolibrary.org/obo/PR_Q8L9C4,none +15.8562362,PR:Q8LAL0,http://purl.obolibrary.org/obo/PR_Q8LAL0,none +15.8562362,PR:Q8LAZ7,http://purl.obolibrary.org/obo/PR_Q8LAZ7,none +15.8562362,PR:Q8LD49,http://purl.obolibrary.org/obo/PR_Q8LD49,none +15.8562362,PR:Q8LFP7,http://purl.obolibrary.org/obo/PR_Q8LFP7,none +15.8562362,PR:Q8LGF7,http://purl.obolibrary.org/obo/PR_Q8LGF7,none +15.8562362,PR:Q8N5G0,http://purl.obolibrary.org/obo/PR_Q8N5G0,small integral membrane protein 20 (human) +15.8562362,PR:Q8RUC6,http://purl.obolibrary.org/obo/PR_Q8RUC6,none +15.8562362,PR:Q8RWU3,http://purl.obolibrary.org/obo/PR_Q8RWU3,none +15.8562362,PR:Q8RXS1,http://purl.obolibrary.org/obo/PR_Q8RXS1,none +15.8562362,PR:Q8S8E3,http://purl.obolibrary.org/obo/PR_Q8S8E3,none +15.8562362,PR:Q8S8N0,http://purl.obolibrary.org/obo/PR_Q8S8N0,none +15.8562362,PR:Q8S904,http://purl.obolibrary.org/obo/PR_Q8S904,none +15.8562362,PR:Q8VH31,http://purl.obolibrary.org/obo/PR_Q8VH31,none +15.8562362,PR:Q8VYJ1,http://purl.obolibrary.org/obo/PR_Q8VYJ1,none +15.8562362,PR:Q8VYJ7,http://purl.obolibrary.org/obo/PR_Q8VYJ7,none +15.8562362,PR:Q8VZJ0,http://purl.obolibrary.org/obo/PR_Q8VZJ0,none +15.8562362,PR:Q8W4I4,http://purl.obolibrary.org/obo/PR_Q8W4I4,none +15.8562362,PR:Q8WWC4,http://purl.obolibrary.org/obo/PR_Q8WWC4,"m-AAA protease-interacting protein 1, mitochondrial (human)" +15.8562362,PR:Q91974,http://purl.obolibrary.org/obo/PR_Q91974,none +15.8562362,PR:Q923Y1,http://purl.obolibrary.org/obo/PR_Q923Y1,none +15.8562362,PR:Q93V58,http://purl.obolibrary.org/obo/PR_Q93V58,none +15.8562362,PR:Q93VK5,http://purl.obolibrary.org/obo/PR_Q93VK5,none +15.8562362,PR:Q93VP3,http://purl.obolibrary.org/obo/PR_Q93VP3,none +15.8562362,PR:Q944L3,http://purl.obolibrary.org/obo/PR_Q944L3,none +15.8562362,PR:Q94A97,http://purl.obolibrary.org/obo/PR_Q94A97,none +15.8562362,PR:Q94BT9,http://purl.obolibrary.org/obo/PR_Q94BT9,none +15.8562362,PR:Q94C70,http://purl.obolibrary.org/obo/PR_Q94C70,none +15.8562362,PR:Q94CK4,http://purl.obolibrary.org/obo/PR_Q94CK4,none +15.8562362,PR:Q94F58,http://purl.obolibrary.org/obo/PR_Q94F58,none +15.8562362,PR:Q94ID6,http://purl.obolibrary.org/obo/PR_Q94ID6,none +15.8562362,PR:Q94K07,http://purl.obolibrary.org/obo/PR_Q94K07,none +15.8562362,PR:Q96W54,http://purl.obolibrary.org/obo/PR_Q96W54,none +15.8562362,PR:Q98948,http://purl.obolibrary.org/obo/PR_Q98948,none +15.8562362,PR:Q98949,http://purl.obolibrary.org/obo/PR_Q98949,none +15.8562362,PR:Q99MV5,http://purl.obolibrary.org/obo/PR_Q99MV5,none +15.8562362,PR:Q9BDB7,http://purl.obolibrary.org/obo/PR_Q9BDB7,none +15.8562362,PR:Q9BWL3,http://purl.obolibrary.org/obo/PR_Q9BWL3,protein C1orf43 (human) +15.8562362,PR:Q9BZS1,http://purl.obolibrary.org/obo/PR_Q9BZS1,forkhead box protein P3 (human) +15.8562362,PR:Q9C525,http://purl.obolibrary.org/obo/PR_Q9C525,none +15.8562362,PR:Q9C5I3,http://purl.obolibrary.org/obo/PR_Q9C5I3,none +15.8562362,PR:Q9C5X4,http://purl.obolibrary.org/obo/PR_Q9C5X4,none +15.8562362,PR:Q9C7I8,http://purl.obolibrary.org/obo/PR_Q9C7I8,none +15.8562362,PR:Q9C7X0,http://purl.obolibrary.org/obo/PR_Q9C7X0,none +15.8562362,PR:Q9C8H0,http://purl.obolibrary.org/obo/PR_Q9C8H0,none +15.8562362,PR:Q9C9E3,http://purl.obolibrary.org/obo/PR_Q9C9E3,none +15.8562362,PR:Q9C9Z9,http://purl.obolibrary.org/obo/PR_Q9C9Z9,none +15.8562362,PR:Q9CA40,http://purl.obolibrary.org/obo/PR_Q9CA40,none +15.8562362,PR:Q9D646,http://purl.obolibrary.org/obo/PR_Q9D646,none +15.8562362,PR:Q9DCV6,http://purl.obolibrary.org/obo/PR_Q9DCV6,none +15.8562362,PR:Q9DDD7,http://purl.obolibrary.org/obo/PR_Q9DDD7,none +15.8562362,PR:Q9EP97,http://purl.obolibrary.org/obo/PR_Q9EP97,none +15.8562362,PR:Q9FE67,http://purl.obolibrary.org/obo/PR_Q9FE67,none +15.8562362,PR:Q9FFA7,http://purl.obolibrary.org/obo/PR_Q9FFA7,none +15.8562362,PR:Q9FFH3,http://purl.obolibrary.org/obo/PR_Q9FFH3,none +15.8562362,PR:Q9FFS0,http://purl.obolibrary.org/obo/PR_Q9FFS0,none +15.8562362,PR:Q9FH28,http://purl.obolibrary.org/obo/PR_Q9FH28,none +15.8562362,PR:Q9FH59,http://purl.obolibrary.org/obo/PR_Q9FH59,none +15.8562362,PR:Q9FIF7,http://purl.obolibrary.org/obo/PR_Q9FIF7,none +15.8562362,PR:Q9FII5,http://purl.obolibrary.org/obo/PR_Q9FII5,none +15.8562362,PR:Q9FJ07,http://purl.obolibrary.org/obo/PR_Q9FJ07,none +15.8562362,PR:Q9FJW5,http://purl.obolibrary.org/obo/PR_Q9FJW5,none +15.8562362,PR:Q9FKC5,http://purl.obolibrary.org/obo/PR_Q9FKC5,none +15.8562362,PR:Q9FKC6,http://purl.obolibrary.org/obo/PR_Q9FKC6,none +15.8562362,PR:Q9FKM5,http://purl.obolibrary.org/obo/PR_Q9FKM5,none +15.8562362,PR:Q9FLN5,http://purl.obolibrary.org/obo/PR_Q9FLN5,none +15.8562362,PR:Q9FLP9,http://purl.obolibrary.org/obo/PR_Q9FLP9,none +15.8562362,PR:Q9FLT5,http://purl.obolibrary.org/obo/PR_Q9FLT5,none +15.8562362,PR:Q9FLX5,http://purl.obolibrary.org/obo/PR_Q9FLX5,none +15.8562362,PR:Q9FMA0,http://purl.obolibrary.org/obo/PR_Q9FMA0,none +15.8562362,PR:Q9FRR1,http://purl.obolibrary.org/obo/PR_Q9FRR1,none +15.8562362,PR:Q9FT70,http://purl.obolibrary.org/obo/PR_Q9FT70,none +15.8562362,PR:Q9FWX7,http://purl.obolibrary.org/obo/PR_Q9FWX7,none +15.8562362,PR:Q9FXA3,http://purl.obolibrary.org/obo/PR_Q9FXA3,none +15.8562362,PR:Q9GNK5,http://purl.obolibrary.org/obo/PR_Q9GNK5,none +15.8562362,PR:Q9GNL3,http://purl.obolibrary.org/obo/PR_Q9GNL3,none +15.8562362,PR:Q9I8V2,http://purl.obolibrary.org/obo/PR_Q9I8V2,none +15.8562362,PR:Q9JHU0,http://purl.obolibrary.org/obo/PR_Q9JHU0,none +15.8562362,PR:Q9JM62,http://purl.obolibrary.org/obo/PR_Q9JM62,none +15.8562362,PR:Q9LDF2,http://purl.obolibrary.org/obo/PR_Q9LDF2,none +15.8562362,PR:Q9LDR9,http://purl.obolibrary.org/obo/PR_Q9LDR9,none +15.8562362,PR:Q9LDU5,http://purl.obolibrary.org/obo/PR_Q9LDU5,none +15.8562362,PR:Q9LIB6,http://purl.obolibrary.org/obo/PR_Q9LIB6,none +15.8562362,PR:Q9LKC0,http://purl.obolibrary.org/obo/PR_Q9LKC0,none +15.8562362,PR:Q9LN68,http://purl.obolibrary.org/obo/PR_Q9LN68,none +15.8562362,PR:Q9LN86,http://purl.obolibrary.org/obo/PR_Q9LN86,none +15.8562362,PR:Q9LPV9,http://purl.obolibrary.org/obo/PR_Q9LPV9,none +15.8562362,PR:Q9LRY0,http://purl.obolibrary.org/obo/PR_Q9LRY0,none +15.8562362,PR:Q9LV85,http://purl.obolibrary.org/obo/PR_Q9LV85,none +15.8562362,PR:Q9LW83,http://purl.obolibrary.org/obo/PR_Q9LW83,none +15.8562362,PR:Q9LXV5,http://purl.obolibrary.org/obo/PR_Q9LXV5,none +15.8562362,PR:Q9LY71,http://purl.obolibrary.org/obo/PR_Q9LY71,none +15.8562362,PR:Q9LYS6,http://purl.obolibrary.org/obo/PR_Q9LYS6,none +15.8562362,PR:Q9LZ99,http://purl.obolibrary.org/obo/PR_Q9LZ99,none +15.8562362,PR:Q9M066,http://purl.obolibrary.org/obo/PR_Q9M066,none +15.8562362,PR:Q9M1J7,http://purl.obolibrary.org/obo/PR_Q9M1J7,none +15.8562362,PR:Q9M354,http://purl.obolibrary.org/obo/PR_Q9M354,none +15.8562362,PR:Q9NGP5,http://purl.obolibrary.org/obo/PR_Q9NGP5,none +15.8562362,PR:Q9NQR8,http://purl.obolibrary.org/obo/PR_Q9NQR8,none +15.8562362,PR:Q9P769,http://purl.obolibrary.org/obo/PR_Q9P769,none +15.8562362,PR:Q9P784,http://purl.obolibrary.org/obo/PR_Q9P784,none +15.8562362,PR:Q9P797,http://purl.obolibrary.org/obo/PR_Q9P797,none +15.8562362,PR:Q9QWE9,http://purl.obolibrary.org/obo/PR_Q9QWE9,none +15.8562362,PR:Q9QZN1,http://purl.obolibrary.org/obo/PR_Q9QZN1,none +15.8562362,PR:Q9R1T7,http://purl.obolibrary.org/obo/PR_Q9R1T7,none +15.8562362,PR:Q9S7J8,http://purl.obolibrary.org/obo/PR_Q9S7J8,none +15.8562362,PR:Q9SB04,http://purl.obolibrary.org/obo/PR_Q9SB04,none +15.8562362,PR:Q9SB61,http://purl.obolibrary.org/obo/PR_Q9SB61,none +15.8562362,PR:Q9SB92,http://purl.obolibrary.org/obo/PR_Q9SB92,none +15.8562362,PR:Q9SGH4,http://purl.obolibrary.org/obo/PR_Q9SGH4,none +15.8562362,PR:Q9SGP6,http://purl.obolibrary.org/obo/PR_Q9SGP6,none +15.8562362,PR:Q9SHJ3,http://purl.obolibrary.org/obo/PR_Q9SHJ3,none +15.8562362,PR:Q9SIV9,http://purl.obolibrary.org/obo/PR_Q9SIV9,none +15.8562362,PR:Q9SKB3,http://purl.obolibrary.org/obo/PR_Q9SKB3,none +15.8562362,PR:Q9SKR2,http://purl.obolibrary.org/obo/PR_Q9SKR2,none +15.8562362,PR:Q9SKX0,http://purl.obolibrary.org/obo/PR_Q9SKX0,none +15.8562362,PR:Q9SKX5,http://purl.obolibrary.org/obo/PR_Q9SKX5,none +15.8562362,PR:Q9SL03,http://purl.obolibrary.org/obo/PR_Q9SL03,none +15.8562362,PR:Q9SLG0,http://purl.obolibrary.org/obo/PR_Q9SLG0,none +15.8562362,PR:Q9SLM6,http://purl.obolibrary.org/obo/PR_Q9SLM6,none +15.8562362,PR:Q9SU86,http://purl.obolibrary.org/obo/PR_Q9SU86,none +15.8562362,PR:Q9SUL1,http://purl.obolibrary.org/obo/PR_Q9SUL1,none +15.8562362,PR:Q9SUR3,http://purl.obolibrary.org/obo/PR_Q9SUR3,none +15.8562362,PR:Q9SZ13,http://purl.obolibrary.org/obo/PR_Q9SZ13,none +15.8562362,PR:Q9U641,http://purl.obolibrary.org/obo/PR_Q9U641,none +15.8562362,PR:Q9USV1,http://purl.obolibrary.org/obo/PR_Q9USV1,none +15.8562362,PR:Q9V3W6,http://purl.obolibrary.org/obo/PR_Q9V3W6,none +15.8562362,PR:Q9V5N8,http://purl.obolibrary.org/obo/PR_Q9V5N8,none +15.8562362,PR:Q9VF87,http://purl.obolibrary.org/obo/PR_Q9VF87,none +15.8562362,PR:Q9VLU6,http://purl.obolibrary.org/obo/PR_Q9VLU6,none +15.8562362,PR:Q9W517,http://purl.obolibrary.org/obo/PR_Q9W517,none +15.8562362,PR:Q9WVS0,http://purl.obolibrary.org/obo/PR_Q9WVS0,none +15.8562362,PR:Q9XI73,http://purl.obolibrary.org/obo/PR_Q9XI73,none +15.8562362,PR:Q9Y6A4,http://purl.obolibrary.org/obo/PR_Q9Y6A4,cilia- and flagella-associated protein 20 (human) +15.8562362,PR:Q9Z1E3,http://purl.obolibrary.org/obo/PR_Q9Z1E3,none +15.8562362,PR:Q9Z2T6,http://purl.obolibrary.org/obo/PR_Q9Z2T6,none +15.8562362,PR:Q9ZBQ8,http://purl.obolibrary.org/obo/PR_Q9ZBQ8,none +15.8562362,PR:Q9ZNR6,http://purl.obolibrary.org/obo/PR_Q9ZNR6,none +15.8562362,PR:Q9ZPR4,http://purl.obolibrary.org/obo/PR_Q9ZPR4,none +15.8562362,PR:Q9ZPS7,http://purl.obolibrary.org/obo/PR_Q9ZPS7,none +15.8562362,PR:Q9ZSU4,http://purl.obolibrary.org/obo/PR_Q9ZSU4,none +15.8562362,PR:Q9ZUJ5,http://purl.obolibrary.org/obo/PR_Q9ZUJ5,none +15.8562362,PR:Q9ZUU9,http://purl.obolibrary.org/obo/PR_Q9ZUU9,none +15.8562362,PR:Q9ZW26,http://purl.obolibrary.org/obo/PR_Q9ZW26,none +15.8562362,PR:Q9ZW29,http://purl.obolibrary.org/obo/PR_Q9ZW29,none +15.8562362,SO:0000094,http://purl.obolibrary.org/obo/SO_0000094,cyanelle_gene +15.8562362,SO:0000231,http://purl.obolibrary.org/obo/SO_0000231,snRNA_primary_transcript +15.8562362,SO:0000474,http://purl.obolibrary.org/obo/SO_0000474,tiling_path_fragment +15.8562362,SO:0000480,http://purl.obolibrary.org/obo/SO_0000480,tiling_path_clone +15.8562362,SO:0000510,http://purl.obolibrary.org/obo/SO_0000510,VD_gene_segment +15.8562362,SO:0000569,http://purl.obolibrary.org/obo/SO_0000569,retrotransposed +15.8562362,SO:0000664,http://purl.obolibrary.org/obo/SO_0000664,introgressed_chromosome_region +15.8562362,SO:0000952,http://purl.obolibrary.org/obo/SO_0000952,oriV +15.8562362,SO:0000998,http://purl.obolibrary.org/obo/SO_0000998,recursive_splice_site +15.8562362,SO:0001072,http://purl.obolibrary.org/obo/SO_0001072,extramembrane_polypeptide_region +15.8562362,SO:0001073,http://purl.obolibrary.org/obo/SO_0001073,cytoplasmic_polypeptide_region +15.8562362,SO:0001134,http://purl.obolibrary.org/obo/SO_0001134,beta_turn_left_handed_type_one +15.8562362,SO:0001136,http://purl.obolibrary.org/obo/SO_0001136,beta_turn_right_handed_type_one +15.8562362,SO:0001300,http://purl.obolibrary.org/obo/SO_0001300,N6_isopentenyladenosine +15.8562362,SO:0001301,http://purl.obolibrary.org/obo/SO_0001301,two_methylthio_N6_isopentenyladenosine +15.8562362,SO:0001332,http://purl.obolibrary.org/obo/SO_0001332,wybutosine +15.8562362,SO:0001400,http://purl.obolibrary.org/obo/SO_0001400,modified_L_lysine +15.8562362,SO:0001529,http://purl.obolibrary.org/obo/SO_0001529,endosomal_localization_signal +15.8562362,SO:0001586,http://purl.obolibrary.org/obo/SO_0001586,non_conservative_missense_variant +15.8562362,SO:0001636,http://purl.obolibrary.org/obo/SO_0001636,2KB_upstream_variant +15.8562362,SO:0001850,http://purl.obolibrary.org/obo/SO_0001850,HSE +15.8562362,SO:0001853,http://purl.obolibrary.org/obo/SO_0001853,androgen_response_element +15.8562362,SO:0001881,http://purl.obolibrary.org/obo/SO_0001881,feature_translocation +15.8562362,SO:0001883,http://purl.obolibrary.org/obo/SO_0001883,transcript_translocation +15.8562362,SO:0001999,http://purl.obolibrary.org/obo/SO_0001999,mating_type_region_motif +15.8562362,SO:1001260,http://purl.obolibrary.org/obo/SO_1001260,internal_Shine_Dalgarno_sequence +15.8562362,UBERON:0000023,http://purl.obolibrary.org/obo/UBERON_0000023,wing +15.8562362,UBERON:0000341,http://purl.obolibrary.org/obo/UBERON_0000341,throat +15.8562362,UBERON:0000416,http://purl.obolibrary.org/obo/UBERON_0000416,subdural space +15.8562362,UBERON:0000915,http://purl.obolibrary.org/obo/UBERON_0000915,thoracic segment of trunk +15.8562362,UBERON:0001007,http://purl.obolibrary.org/obo/UBERON_0001007,digestive system +15.8562362,UBERON:0001201,http://purl.obolibrary.org/obo/UBERON_0001201,serosa of stomach +15.8562362,UBERON:0001219,http://purl.obolibrary.org/obo/UBERON_0001219,ileocolic vein +15.8562362,UBERON:0001414,http://purl.obolibrary.org/obo/UBERON_0001414,median basilic vein +15.8562362,UBERON:0001426,http://purl.obolibrary.org/obo/UBERON_0001426,jugular lymphatic vessel +15.8562362,UBERON:0001550,http://purl.obolibrary.org/obo/UBERON_0001550,medial marginal vein +15.8562362,UBERON:0001703,http://purl.obolibrary.org/obo/UBERON_0001703,neurocranium +15.8562362,UBERON:0001975,http://purl.obolibrary.org/obo/UBERON_0001975,serosa of esophagus +15.8562362,UBERON:0002030,http://purl.obolibrary.org/obo/UBERON_0002030,nipple +15.8562362,UBERON:0002148,http://purl.obolibrary.org/obo/UBERON_0002148,locus ceruleus +15.8562362,UBERON:0002504,http://purl.obolibrary.org/obo/UBERON_0002504,lesser trochanter +15.8562362,UBERON:0002594,http://purl.obolibrary.org/obo/UBERON_0002594,dentatothalamic tract +15.8562362,UBERON:0002612,http://purl.obolibrary.org/obo/UBERON_0002612,transverse orbital sulcus +15.8562362,UBERON:0002713,http://purl.obolibrary.org/obo/UBERON_0002713,circular sulcus of insula +15.8562362,UBERON:0002765,http://purl.obolibrary.org/obo/UBERON_0002765,lateral medullary lamina of globus pallidus +15.8562362,UBERON:0002775,http://purl.obolibrary.org/obo/UBERON_0002775,olivocochlear bundle +15.8562362,UBERON:0002776,http://purl.obolibrary.org/obo/UBERON_0002776,ventral nuclear group +15.8562362,UBERON:0002860,http://purl.obolibrary.org/obo/UBERON_0002860,first sacral dorsal root ganglion +15.8562362,UBERON:0002865,http://purl.obolibrary.org/obo/UBERON_0002865,arcuate nucleus of medulla +15.8562362,UBERON:0002884,http://purl.obolibrary.org/obo/UBERON_0002884,intercalated amygdaloid nuclei +15.8562362,UBERON:0002928,http://purl.obolibrary.org/obo/UBERON_0002928,dentate gyrus polymorphic layer +15.8562362,UBERON:0002933,http://purl.obolibrary.org/obo/UBERON_0002933,nucleus of anterior commissure +15.8562362,UBERON:0002961,http://purl.obolibrary.org/obo/UBERON_0002961,archicortex +15.8562362,UBERON:0002968,http://purl.obolibrary.org/obo/UBERON_0002968,central gray substance of pons +15.8562362,UBERON:0002999,http://purl.obolibrary.org/obo/UBERON_0002999,oral pontine reticular nucleus +15.8562362,UBERON:0003283,http://purl.obolibrary.org/obo/UBERON_0003283,mesentery of oesophagus +15.8562362,UBERON:0003314,http://purl.obolibrary.org/obo/UBERON_0003314,eye mesenchyme +15.8562362,UBERON:0003317,http://purl.obolibrary.org/obo/UBERON_0003317,odontogenic papilla of incisor +15.8562362,UBERON:0003329,http://purl.obolibrary.org/obo/UBERON_0003329,submucosa of anal canal +15.8562362,UBERON:0003380,http://purl.obolibrary.org/obo/UBERON_0003380,cardiac muscle of left atrium +15.8562362,UBERON:0003395,http://purl.obolibrary.org/obo/UBERON_0003395,mesentery of rectum +15.8562362,UBERON:0003412,http://purl.obolibrary.org/obo/UBERON_0003412,pelvic appendage bud mesenchyme +15.8562362,UBERON:0003414,http://purl.obolibrary.org/obo/UBERON_0003414,mesenchyme of mandible +15.8562362,UBERON:0003593,http://purl.obolibrary.org/obo/UBERON_0003593,thoracic cavity connective tissue +15.8562362,UBERON:0003972,http://purl.obolibrary.org/obo/UBERON_0003972,placenta junctional zone +15.8562362,UBERON:0003988,http://purl.obolibrary.org/obo/UBERON_0003988,thymus corticomedullary boundary +15.8562362,UBERON:0003998,http://purl.obolibrary.org/obo/UBERON_0003998,hyoid bone lesser horn +15.8562362,UBERON:0004021,http://purl.obolibrary.org/obo/UBERON_0004021,spongiotrophoblast layer +15.8562362,UBERON:0004045,http://purl.obolibrary.org/obo/UBERON_0004045,tailgut +15.8562362,UBERON:0004075,http://purl.obolibrary.org/obo/UBERON_0004075,cerebellum vermis lobule II +15.8562362,UBERON:0004082,http://purl.obolibrary.org/obo/UBERON_0004082,cerebellum vermis lobule VIII +15.8562362,UBERON:0004136,http://purl.obolibrary.org/obo/UBERON_0004136,intermediate tubule +15.8562362,UBERON:0004182,http://purl.obolibrary.org/obo/UBERON_0004182,mammary gland cord +15.8562362,UBERON:0004217,http://purl.obolibrary.org/obo/UBERON_0004217,upper arm nerve +15.8562362,UBERON:0004218,http://purl.obolibrary.org/obo/UBERON_0004218,lower leg nerve +15.8562362,UBERON:0004227,http://purl.obolibrary.org/obo/UBERON_0004227,kidney pelvis smooth muscle +15.8562362,UBERON:0004353,http://purl.obolibrary.org/obo/UBERON_0004353,female inguinal canal +15.8562362,UBERON:0004354,http://purl.obolibrary.org/obo/UBERON_0004354,male inguinal canal +15.8562362,UBERON:0004564,http://purl.obolibrary.org/obo/UBERON_0004564,hindlimb digital vein +15.8562362,UBERON:0004643,http://purl.obolibrary.org/obo/UBERON_0004643,lateral ventricle ependyma +15.8562362,UBERON:0004655,http://purl.obolibrary.org/obo/UBERON_0004655,zygomatic process of temporal bone +15.8562362,UBERON:0004698,http://purl.obolibrary.org/obo/UBERON_0004698,vena cava endothelium +15.8562362,UBERON:0004699,http://purl.obolibrary.org/obo/UBERON_0004699,outflow tract endothelium +15.8562362,UBERON:0004736,http://purl.obolibrary.org/obo/UBERON_0004736,metanephric glomerulus +15.8562362,UBERON:0004759,http://purl.obolibrary.org/obo/UBERON_0004759,cranial salt gland +15.8562362,UBERON:0004791,http://purl.obolibrary.org/obo/UBERON_0004791,thymus trabecula +15.8562362,UBERON:0005031,http://purl.obolibrary.org/obo/UBERON_0005031,mucosa of upper lip +15.8562362,UBERON:0005036,http://purl.obolibrary.org/obo/UBERON_0005036,mucosa of main bronchus +15.8562362,UBERON:0005273,http://purl.obolibrary.org/obo/UBERON_0005273,nail bed +15.8562362,UBERON:0005355,http://purl.obolibrary.org/obo/UBERON_0005355,malleus neck +15.8562362,UBERON:0005367,http://purl.obolibrary.org/obo/UBERON_0005367,hippocampus granule cell layer +15.8562362,UBERON:0005412,http://purl.obolibrary.org/obo/UBERON_0005412,optic fissure +15.8562362,UBERON:0005563,http://purl.obolibrary.org/obo/UBERON_0005563,trigeminal neural crest +15.8562362,UBERON:0005613,http://purl.obolibrary.org/obo/UBERON_0005613,left dorsal aorta +15.8562362,UBERON:0005636,http://purl.obolibrary.org/obo/UBERON_0005636,caecum epithelium +15.8562362,UBERON:0005797,http://purl.obolibrary.org/obo/UBERON_0005797,bipartite uterus +15.8562362,UBERON:0005865,http://purl.obolibrary.org/obo/UBERON_0005865,pre-muscle condensation +15.8562362,UBERON:0005919,http://purl.obolibrary.org/obo/UBERON_0005919,supreme nasal concha +15.8562362,UBERON:0005977,http://purl.obolibrary.org/obo/UBERON_0005977,ansiform lobule crus II +15.8562362,UBERON:0005986,http://purl.obolibrary.org/obo/UBERON_0005986,left bundle branch +15.8562362,UBERON:0005987,http://purl.obolibrary.org/obo/UBERON_0005987,right bundle branch +15.8562362,UBERON:0006098,http://purl.obolibrary.org/obo/UBERON_0006098,basal nuclear complex +15.8562362,UBERON:0006139,http://purl.obolibrary.org/obo/UBERON_0006139,plantar digital vein +15.8562362,UBERON:0006226,http://purl.obolibrary.org/obo/UBERON_0006226,endolymphatic appendage +15.8562362,UBERON:0006282,http://purl.obolibrary.org/obo/UBERON_0006282,primary head vein +15.8562362,UBERON:0006325,http://purl.obolibrary.org/obo/UBERON_0006325,laryngeal intrinsic ligament +15.8562362,UBERON:0006452,http://purl.obolibrary.org/obo/UBERON_0006452,fourth thoracic spinal cord segment +15.8562362,UBERON:0006465,http://purl.obolibrary.org/obo/UBERON_0006465,ninth thoracic spinal cord segment +15.8562362,UBERON:0006728,http://purl.obolibrary.org/obo/UBERON_0006728,liver left medial lobe +15.8562362,UBERON:0006770,http://purl.obolibrary.org/obo/UBERON_0006770,apophysis +15.8562362,UBERON:0006839,http://purl.obolibrary.org/obo/UBERON_0006839,dorsal ramus of spinal nerve +15.8562362,UBERON:0006867,http://purl.obolibrary.org/obo/UBERON_0006867,anal part of perineum +15.8562362,UBERON:0007099,http://purl.obolibrary.org/obo/UBERON_0007099,hyoid neural crest +15.8562362,UBERON:0007123,http://purl.obolibrary.org/obo/UBERON_0007123,pharyngeal pouch 2 +15.8562362,UBERON:0007167,http://purl.obolibrary.org/obo/UBERON_0007167,right dome of diaphragm +15.8562362,UBERON:0007170,http://purl.obolibrary.org/obo/UBERON_0007170,squamous part of occipital bone +15.8562362,UBERON:0007236,http://purl.obolibrary.org/obo/UBERON_0007236,8 cell stage +15.8562362,UBERON:0007285,http://purl.obolibrary.org/obo/UBERON_0007285,presumptive paraxial mesoderm +15.8562362,UBERON:0007286,http://purl.obolibrary.org/obo/UBERON_0007286,presumptive floor plate +15.8562362,UBERON:0007413,http://purl.obolibrary.org/obo/UBERON_0007413,nucleus of pontine reticular formation +15.8562362,UBERON:0007606,http://purl.obolibrary.org/obo/UBERON_0007606,ciliated stratified columnar epithelium +15.8562362,UBERON:0007617,http://purl.obolibrary.org/obo/UBERON_0007617,synovial cavity of joint +15.8562362,UBERON:0007631,http://purl.obolibrary.org/obo/UBERON_0007631,accessory olfactory bulb glomerular layer +15.8562362,UBERON:0007693,http://purl.obolibrary.org/obo/UBERON_0007693,caroticotympanic artery +15.8562362,UBERON:0007721,http://purl.obolibrary.org/obo/UBERON_0007721,interphalangeal joint of pes +15.8562362,UBERON:0007778,http://purl.obolibrary.org/obo/UBERON_0007778,umbilical artery endothelium +15.8562362,UBERON:0008195,http://purl.obolibrary.org/obo/UBERON_0008195,tarsometatarsus +15.8562362,UBERON:0008254,http://purl.obolibrary.org/obo/UBERON_0008254,styliform cartilage +15.8562362,UBERON:0008256,http://purl.obolibrary.org/obo/UBERON_0008256,left clavicle +15.8562362,UBERON:0008267,http://purl.obolibrary.org/obo/UBERON_0008267,left supracardinal vein +15.8562362,UBERON:0008335,http://purl.obolibrary.org/obo/UBERON_0008335,ventrolateral sulcus of medulla oblongata +15.8562362,UBERON:0008436,http://purl.obolibrary.org/obo/UBERON_0008436,thoracic vertebral arch +15.8562362,UBERON:0008453,http://purl.obolibrary.org/obo/UBERON_0008453,rectus capitis anterior +15.8562362,UBERON:0008606,http://purl.obolibrary.org/obo/UBERON_0008606,antitragicus muscle +15.8562362,UBERON:0009139,http://purl.obolibrary.org/obo/UBERON_0009139,right posterior cardinal vein +15.8562362,UBERON:0009558,http://purl.obolibrary.org/obo/UBERON_0009558,pastern bone +15.8562362,UBERON:0009635,http://purl.obolibrary.org/obo/UBERON_0009635,parachordal cartilage +15.8562362,UBERON:0009674,http://purl.obolibrary.org/obo/UBERON_0009674,accessory XI nerve spinal component +15.8562362,UBERON:0009772,http://purl.obolibrary.org/obo/UBERON_0009772,right anterior cardinal vein +15.8562362,UBERON:0009894,http://purl.obolibrary.org/obo/UBERON_0009894,siphon primordium +15.8562362,UBERON:0010010,http://purl.obolibrary.org/obo/UBERON_0010010,basal nucleus of telencephalon +15.8562362,UBERON:0010016,http://purl.obolibrary.org/obo/UBERON_0010016,spiral valve of intestine +15.8562362,UBERON:0010019,http://purl.obolibrary.org/obo/UBERON_0010019,spiracle (sensu Vertebrata) +15.8562362,UBERON:0010053,http://purl.obolibrary.org/obo/UBERON_0010053,echolocation organ +15.8562362,UBERON:0010185,http://purl.obolibrary.org/obo/UBERON_0010185,rete ovarii +15.8562362,UBERON:0010190,http://purl.obolibrary.org/obo/UBERON_0010190,pair of dorsal aortae +15.8562362,UBERON:0010355,http://purl.obolibrary.org/obo/UBERON_0010355,ossification center +15.8562362,UBERON:0010883,http://purl.obolibrary.org/obo/UBERON_0010883,forelimb cartilage element +15.8562362,UBERON:0010931,http://purl.obolibrary.org/obo/UBERON_0010931,intermandibularis +15.8562362,UBERON:0010948,http://purl.obolibrary.org/obo/UBERON_0010948,cleidooccipital muscle +15.8562362,UBERON:0011147,http://purl.obolibrary.org/obo/UBERON_0011147,Verson's gland +15.8562362,UBERON:0011170,http://purl.obolibrary.org/obo/UBERON_0011170,quadrate-articular joint +15.8562362,UBERON:0011287,http://purl.obolibrary.org/obo/UBERON_0011287,rostral organ +15.8562362,UBERON:0011464,http://purl.obolibrary.org/obo/UBERON_0011464,levator nasolabialis muscle +15.8562362,UBERON:0011599,http://purl.obolibrary.org/obo/UBERON_0011599,lenticular process of incus bone +15.8562362,UBERON:0011618,http://purl.obolibrary.org/obo/UBERON_0011618,basihyal bone +15.8562362,UBERON:0011685,http://purl.obolibrary.org/obo/UBERON_0011685,preorbitalis muscle +15.8562362,UBERON:0011878,http://purl.obolibrary.org/obo/UBERON_0011878,muscle layer of esophagus +15.8562362,UBERON:0011896,http://purl.obolibrary.org/obo/UBERON_0011896,smooth muscle endomysium +15.8562362,UBERON:0011898,http://purl.obolibrary.org/obo/UBERON_0011898,skeletal muscle endomysium +15.8562362,UBERON:0011960,http://purl.obolibrary.org/obo/UBERON_0011960,articular capsule of glenohumeral joint +15.8562362,UBERON:0012253,http://purl.obolibrary.org/obo/UBERON_0012253,cervical squamo-columnar junction +15.8562362,UBERON:0012375,http://purl.obolibrary.org/obo/UBERON_0012375,subserosa +15.8562362,UBERON:0012468,http://purl.obolibrary.org/obo/UBERON_0012468,anal tooth +15.8562362,UBERON:0013125,http://purl.obolibrary.org/obo/UBERON_0013125,left subcardinal vein +15.8562362,UBERON:0013133,http://purl.obolibrary.org/obo/UBERON_0013133,superior phrenic artery +15.8562362,UBERON:0013147,http://purl.obolibrary.org/obo/UBERON_0013147,early mesencephalic vesicle +15.8562362,UBERON:0013169,http://purl.obolibrary.org/obo/UBERON_0013169,vestibular ligament +15.8562362,UBERON:0013230,http://purl.obolibrary.org/obo/UBERON_0013230,nictitans gland +15.8562362,UBERON:0013233,http://purl.obolibrary.org/obo/UBERON_0013233,supraorbital gland +15.8562362,UBERON:0013247,http://purl.obolibrary.org/obo/UBERON_0013247,male paramesonephric duct +15.8562362,UBERON:0013639,http://purl.obolibrary.org/obo/UBERON_0013639,mechanical papilla of tongue +15.8562362,UBERON:0013645,http://purl.obolibrary.org/obo/UBERON_0013645,gular gland +15.8562362,UBERON:0013683,http://purl.obolibrary.org/obo/UBERON_0013683,left dorsal thalamus +15.8562362,UBERON:0013684,http://purl.obolibrary.org/obo/UBERON_0013684,right dorsal thalamus +15.8562362,UBERON:0013715,http://purl.obolibrary.org/obo/UBERON_0013715,ilio-marsupialis muscle +15.8562362,UBERON:0013746,http://purl.obolibrary.org/obo/UBERON_0013746,basibranchial element +15.8562362,UBERON:0014390,http://purl.obolibrary.org/obo/UBERON_0014390,muscle layer of ileum +15.8562362,UBERON:0014453,http://purl.obolibrary.org/obo/UBERON_0014453,gustatory epithelium of palate +15.8562362,UBERON:0014503,http://purl.obolibrary.org/obo/UBERON_0014503,proximal phalanx of digit 3 +15.8562362,UBERON:0014510,http://purl.obolibrary.org/obo/UBERON_0014510,lamina of omasum +15.8562362,UBERON:0014609,http://purl.obolibrary.org/obo/UBERON_0014609,thoracic spinal cord dorsal horn +15.8562362,UBERON:0014613,http://purl.obolibrary.org/obo/UBERON_0014613,cervical spinal cord gray matter +15.8562362,UBERON:0014620,http://purl.obolibrary.org/obo/UBERON_0014620,cervical spinal cord dorsal horn +15.8562362,UBERON:0014695,http://purl.obolibrary.org/obo/UBERON_0014695,deep auricular artery +15.8562362,UBERON:0014775,http://purl.obolibrary.org/obo/UBERON_0014775,prosomere +15.8562362,UBERON:0014798,http://purl.obolibrary.org/obo/UBERON_0014798,clavotrapezius muscle +15.8562362,UBERON:0014842,http://purl.obolibrary.org/obo/UBERON_0014842,puboischiofemoralis muscle +15.8562362,UBERON:0014889,http://purl.obolibrary.org/obo/UBERON_0014889,left hemisphere of cerebellum +15.8562362,UBERON:0014904,http://purl.obolibrary.org/obo/UBERON_0014904,intersegmental pulmonary vein +15.8562362,UBERON:0015012,http://purl.obolibrary.org/obo/UBERON_0015012,tarsometatarsus endochondral element +15.8562362,UBERON:0015223,http://purl.obolibrary.org/obo/UBERON_0015223,dorsal nasal meatus +15.8562362,UBERON:0015458,http://purl.obolibrary.org/obo/UBERON_0015458,mediastinal fat pad +15.8562362,UBERON:0015477,http://purl.obolibrary.org/obo/UBERON_0015477,axillary fat pad +15.8562362,UBERON:0015841,http://purl.obolibrary.org/obo/UBERON_0015841,molar dental lamina +15.8562362,UBERON:0016535,http://purl.obolibrary.org/obo/UBERON_0016535,white matter of occipital lobe +15.8562362,UBERON:0016850,http://purl.obolibrary.org/obo/UBERON_0016850,nucleus of phrenic nerve +15.8562362,UBERON:0016854,http://purl.obolibrary.org/obo/UBERON_0016854,dorsal part of optic cup +15.8562362,UBERON:0016880,http://purl.obolibrary.org/obo/UBERON_0016880,future nervous system +15.8562362,UBERON:0016886,http://purl.obolibrary.org/obo/UBERON_0016886,muscle tissue of terminal part of digestive tract +15.8562362,UBERON:0016925,http://purl.obolibrary.org/obo/UBERON_0016925,juxtaductal region of aortic arch +15.8562362,UBERON:0018112,http://purl.obolibrary.org/obo/UBERON_0018112,rectum smooth muscle tissue +15.8562362,UBERON:0018135,http://purl.obolibrary.org/obo/UBERON_0018135,fibrocollagenous connective tissue +15.8562362,UBERON:0018244,http://purl.obolibrary.org/obo/UBERON_0018244,superficial cervical thymus +15.8562362,UBERON:0018343,http://purl.obolibrary.org/obo/UBERON_0018343,oviduct mucosal fold +15.8562362,UBERON:0022279,http://purl.obolibrary.org/obo/UBERON_0022279,strand of hair on external ear +15.8562362,UBERON:0022315,http://purl.obolibrary.org/obo/UBERON_0022315,primary motor cortex layer 5 +15.8562362,UBERON:0022367,http://purl.obolibrary.org/obo/UBERON_0022367,inferior lateral occipital cortex +15.8562362,UBERON:0023920,http://purl.obolibrary.org/obo/UBERON_0023920,basal ganglia of rodent +15.8562362,UBERON:0024914,http://purl.obolibrary.org/obo/UBERON_0024914,circuit part of central nervous system +15.8562362,UBERON:0026386,http://purl.obolibrary.org/obo/UBERON_0026386,lumbar spinal cord white matter +15.8562362,UBERON:0026547,http://purl.obolibrary.org/obo/UBERON_0026547,intrinsic neuronal circuit +15.8562362,UBERON:0034676,http://purl.obolibrary.org/obo/UBERON_0034676,forceps major of corpus callosum +15.8562362,UBERON:0034707,http://purl.obolibrary.org/obo/UBERON_0034707,differentiating neuroepithelium +15.8562362,UBERON:0034721,http://purl.obolibrary.org/obo/UBERON_0034721,pharyngeal taste bud +15.8562362,UBERON:0034765,http://purl.obolibrary.org/obo/UBERON_0034765,glabella skin +15.8562362,UBERON:0034770,http://purl.obolibrary.org/obo/UBERON_0034770,bulbourethral gland epithelium +15.8562362,UBERON:0034877,http://purl.obolibrary.org/obo/UBERON_0034877,angioblastic cord +15.8562362,UBERON:0034884,http://purl.obolibrary.org/obo/UBERON_0034884,juxtaglomerular arteriole +15.8562362,UBERON:0034948,http://purl.obolibrary.org/obo/UBERON_0034948,carbon dioxide in respiratory system +15.8562362,UBERON:0034951,http://purl.obolibrary.org/obo/UBERON_0034951,subcutaneous lymph sac +15.8562362,UBERON:0034968,http://purl.obolibrary.org/obo/UBERON_0034968,sagittal sulcus +15.8562362,UBERON:0034988,http://purl.obolibrary.org/obo/UBERON_0034988,tendon of obturator internus +15.8562362,UBERON:0035099,http://purl.obolibrary.org/obo/UBERON_0035099,transversus perinei muscle +15.8562362,UBERON:0035108,http://purl.obolibrary.org/obo/UBERON_0035108,temporalis fascia +15.8562362,UBERON:0035118,http://purl.obolibrary.org/obo/UBERON_0035118,material entity in digestive tract +15.8562362,UBERON:0035561,http://purl.obolibrary.org/obo/UBERON_0035561,styliform element +15.8562362,UBERON:2000116,http://purl.obolibrary.org/obo/UBERON_2000116,macula lagena +15.8562362,UBERON:2000280,http://purl.obolibrary.org/obo/UBERON_2000280,medial division +15.8562362,UBERON:2000422,http://purl.obolibrary.org/obo/UBERON_2000422,retroarticular +15.8562362,UBERON:2000726,http://purl.obolibrary.org/obo/UBERON_2000726,somite 14 +15.8562362,UBERON:2000858,http://purl.obolibrary.org/obo/UBERON_2000858,somite 8 +15.8562362,UBERON:2001254,http://purl.obolibrary.org/obo/UBERON_2001254,abdominal scute series +15.8562362,UBERON:2001340,http://purl.obolibrary.org/obo/UBERON_2001340,nucleus of the tract of the postoptic commissure +15.8562362,UBERON:2001420,http://purl.obolibrary.org/obo/UBERON_2001420,anal fin pterygiophore +15.8562362,UBERON:2001547,http://purl.obolibrary.org/obo/UBERON_2001547,abdominal scute +15.8562362,UBERON:2001630,http://purl.obolibrary.org/obo/UBERON_2001630,supratemporal sensory canal +15.8562362,UBERON:2001683,http://purl.obolibrary.org/obo/UBERON_2001683,transcapular ligament +15.8562362,UBERON:2001783,http://purl.obolibrary.org/obo/UBERON_2001783,supraoccipital crest +15.8562362,UBERON:2001824,http://purl.obolibrary.org/obo/UBERON_2001824,lateral line scale +15.8562362,UBERON:2001828,http://purl.obolibrary.org/obo/UBERON_2001828,primordial ligament +15.8562362,UBERON:2001934,http://purl.obolibrary.org/obo/UBERON_2001934,rostral plate +15.8562362,UBERON:2001952,http://purl.obolibrary.org/obo/UBERON_2001952,dentary tooth row +15.8562362,UBERON:2002294,http://purl.obolibrary.org/obo/UBERON_2002294,fish scute +15.8562362,UBERON:2005027,http://purl.obolibrary.org/obo/UBERON_2005027,posterior cerebral vein +15.8562362,UBERON:2005032,http://purl.obolibrary.org/obo/UBERON_2005032,optic vein +15.8562362,UBERON:2005053,http://purl.obolibrary.org/obo/UBERON_2005053,nasal ciliary artery +15.8562362,UBERON:2005075,http://purl.obolibrary.org/obo/UBERON_2005075,peripheral cardiac conduction system +15.8562362,UBERON:3000050,http://purl.obolibrary.org/obo/UBERON_3000050,braincase and auditory apparatus +15.8562362,UBERON:3000051,http://purl.obolibrary.org/obo/UBERON_3000051,braincase and otic capsule opening +15.8562362,UBERON:3001009,http://purl.obolibrary.org/obo/UBERON_3001009,body spicule +15.8562362,UBERON:3010187,http://purl.obolibrary.org/obo/UBERON_3010187,inner metacarpal tubercle +15.8562362,UBERON:3010432,http://purl.obolibrary.org/obo/UBERON_3010432,archenteron roof +15.8562362,UBERON:3010453,http://purl.obolibrary.org/obo/UBERON_3010453,ventral marginal zone +15.8562362,UBERON:3010730,http://purl.obolibrary.org/obo/UBERON_3010730,none +15.8562362,UBERON:4000028,http://purl.obolibrary.org/obo/UBERON_4000028,integumentary papilla +15.8562362,UBERON:4000090,http://purl.obolibrary.org/obo/UBERON_4000090,integumentary skeleton +15.8562362,UBERON:4100005,http://purl.obolibrary.org/obo/UBERON_4100005,second phalanx +16.2617013,CHEBI:10093,http://purl.obolibrary.org/obo/CHEBI_10093,yohimbine +16.2617013,CHEBI:114248,http://purl.obolibrary.org/obo/CHEBI_114248,pentaglycine +16.2617013,CHEBI:11814,http://purl.obolibrary.org/obo/CHEBI_11814,3-hydroxy-3-methylglutaryl-CoA +16.2617013,CHEBI:131565,http://purl.obolibrary.org/obo/CHEBI_131565,steroid aldehyde +16.2617013,CHEBI:132447,http://purl.obolibrary.org/obo/CHEBI_132447,perfluoroalkanesulfonic acid +16.2617013,CHEBI:132742,http://purl.obolibrary.org/obo/CHEBI_132742,lysophosphatidic acid +16.2617013,CHEBI:132842,http://purl.obolibrary.org/obo/CHEBI_132842,sulfapyridine +16.2617013,CHEBI:133959,http://purl.obolibrary.org/obo/CHEBI_133959,4'-methoxyisoflavones +16.2617013,CHEBI:134069,http://purl.obolibrary.org/obo/CHEBI_134069,copper oxide +16.2617013,CHEBI:134144,http://purl.obolibrary.org/obo/CHEBI_134144,2-acylglycerol 20:4 +16.2617013,CHEBI:134161,http://purl.obolibrary.org/obo/CHEBI_134161,N-acylethanolamine 20:4 +16.2617013,CHEBI:134362,http://purl.obolibrary.org/obo/CHEBI_134362,homoallylic alcohol +16.2617013,CHEBI:137682,http://purl.obolibrary.org/obo/CHEBI_137682,methylhistidine +16.2617013,CHEBI:139166,http://purl.obolibrary.org/obo/CHEBI_139166,secoiridoid +16.2617013,CHEBI:142621,http://purl.obolibrary.org/obo/CHEBI_142621,medium-chain fatty aldehyde +16.2617013,CHEBI:14336,http://purl.obolibrary.org/obo/CHEBI_14336,glycerol 1-phosphate +16.2617013,CHEBI:145545,http://purl.obolibrary.org/obo/CHEBI_145545,nitrosothio compound +16.2617013,CHEBI:15380,http://purl.obolibrary.org/obo/CHEBI_15380,succinyl-CoA +16.2617013,CHEBI:15524,http://purl.obolibrary.org/obo/CHEBI_15524,glutaryl-CoA +16.2617013,CHEBI:15525,http://purl.obolibrary.org/obo/CHEBI_15525,palmitoyl-CoA +16.2617013,CHEBI:15551,http://purl.obolibrary.org/obo/CHEBI_15551,prostaglandin E2 +16.2617013,CHEBI:15571,http://purl.obolibrary.org/obo/CHEBI_15571,hydrazine +16.2617013,CHEBI:156473,http://purl.obolibrary.org/obo/CHEBI_156473,cyclobutanes +16.2617013,CHEBI:15729,http://purl.obolibrary.org/obo/CHEBI_15729,L-ornithine +16.2617013,CHEBI:15732,http://purl.obolibrary.org/obo/CHEBI_15732,phosphonoacetic acid +16.2617013,CHEBI:15793,http://purl.obolibrary.org/obo/CHEBI_15793,3-hydroxyanthranilic acid +16.2617013,CHEBI:15891,http://purl.obolibrary.org/obo/CHEBI_15891,taurine +16.2617013,CHEBI:15897,http://purl.obolibrary.org/obo/CHEBI_15897,N-(long-chain-acyl)ethanolamine +16.2617013,CHEBI:16119,http://purl.obolibrary.org/obo/CHEBI_16119,shikimic acid +16.2617013,CHEBI:16127,http://purl.obolibrary.org/obo/CHEBI_16127,L-glutaminyl-peptide +16.2617013,CHEBI:16204,http://purl.obolibrary.org/obo/CHEBI_16204,phloroglucinol +16.2617013,CHEBI:16243,http://purl.obolibrary.org/obo/CHEBI_16243,quercetin +16.2617013,CHEBI:16436,http://purl.obolibrary.org/obo/CHEBI_16436,CDP-choline +16.2617013,CHEBI:16576,http://purl.obolibrary.org/obo/CHEBI_16576,D-alanyl-D-alanine +16.2617013,CHEBI:16610,http://purl.obolibrary.org/obo/CHEBI_16610,spermidine +16.2617013,CHEBI:16625,http://purl.obolibrary.org/obo/CHEBI_16625,methylmalonyl-CoA +16.2617013,CHEBI:16643,http://purl.obolibrary.org/obo/CHEBI_16643,L-methionine +16.2617013,CHEBI:167098,http://purl.obolibrary.org/obo/CHEBI_167098,N-(fatty acyl)-ethanolamine +16.2617013,CHEBI:16738,http://purl.obolibrary.org/obo/CHEBI_16738,"2,4-dichlorophenol" +16.2617013,CHEBI:16742,http://purl.obolibrary.org/obo/CHEBI_16742,orotic acid +16.2617013,CHEBI:16874,http://purl.obolibrary.org/obo/CHEBI_16874,psychosine +16.2617013,CHEBI:16890,http://purl.obolibrary.org/obo/CHEBI_16890,glycerol monophosphate +16.2617013,CHEBI:16907,http://purl.obolibrary.org/obo/CHEBI_16907,4-nitroquinoline N-oxide +16.2617013,CHEBI:16929,http://purl.obolibrary.org/obo/CHEBI_16929,sn-glycero-3-phosphoethanolamine +16.2617013,CHEBI:16976,http://purl.obolibrary.org/obo/CHEBI_16976,hygromycin B +16.2617013,CHEBI:17061,http://purl.obolibrary.org/obo/CHEBI_17061,D-glutamine +16.2617013,CHEBI:17153,http://purl.obolibrary.org/obo/CHEBI_17153,propanal +16.2617013,CHEBI:17158,http://purl.obolibrary.org/obo/CHEBI_17158,methylglyoxal +16.2617013,CHEBI:17176,http://purl.obolibrary.org/obo/CHEBI_17176,long-chain fatty aldehyde +16.2617013,CHEBI:17296,http://purl.obolibrary.org/obo/CHEBI_17296,aniline +16.2617013,CHEBI:17389,http://purl.obolibrary.org/obo/CHEBI_17389,2-monoglyceride +16.2617013,CHEBI:17405,http://purl.obolibrary.org/obo/CHEBI_17405,4-pyridoxic acid +16.2617013,CHEBI:17408,http://purl.obolibrary.org/obo/CHEBI_17408,monoacylglycerol +16.2617013,CHEBI:17431,http://purl.obolibrary.org/obo/CHEBI_17431,agmatine +16.2617013,CHEBI:17552,http://purl.obolibrary.org/obo/CHEBI_17552,GDP +16.2617013,CHEBI:17574,http://purl.obolibrary.org/obo/CHEBI_17574,biochanin A +16.2617013,CHEBI:17637,http://purl.obolibrary.org/obo/CHEBI_17637,6-methylsalicylic acid +16.2617013,CHEBI:176783,http://purl.obolibrary.org/obo/CHEBI_176783,vitamin C +16.2617013,CHEBI:17698,http://purl.obolibrary.org/obo/CHEBI_17698,chloramphenicol +16.2617013,CHEBI:177332,http://purl.obolibrary.org/obo/CHEBI_177332,carbotetracyclic compound +16.2617013,CHEBI:17939,http://purl.obolibrary.org/obo/CHEBI_17939,puromycin +16.2617013,CHEBI:17962,http://purl.obolibrary.org/obo/CHEBI_17962,CDP-diacylglycerol +16.2617013,CHEBI:18127,http://purl.obolibrary.org/obo/CHEBI_18127,cadaverine +16.2617013,CHEBI:18361,http://purl.obolibrary.org/obo/CHEBI_18361,diphosphate(4-) +16.2617013,CHEBI:18376,http://purl.obolibrary.org/obo/CHEBI_18376,dermatan sulfate +16.2617013,CHEBI:20060,http://purl.obolibrary.org/obo/CHEBI_20060,3-hydroxy fatty acyl-CoA +16.2617013,CHEBI:20106,http://purl.obolibrary.org/obo/CHEBI_20106,vanillylmandelic acid +16.2617013,CHEBI:2038,http://purl.obolibrary.org/obo/CHEBI_2038,5-azacytidine +16.2617013,CHEBI:20612,http://purl.obolibrary.org/obo/CHEBI_20612,5-methyltetrahydrofolate +16.2617013,CHEBI:207229,http://purl.obolibrary.org/obo/CHEBI_207229,dihydroartemisinin +16.2617013,CHEBI:207496,http://purl.obolibrary.org/obo/CHEBI_207496,furfuryl alcohol +16.2617013,CHEBI:21008,http://purl.obolibrary.org/obo/CHEBI_21008,glucose phosphate +16.2617013,CHEBI:21260,http://purl.obolibrary.org/obo/CHEBI_21260,cysteic acid +16.2617013,CHEBI:21619,http://purl.obolibrary.org/obo/CHEBI_21619,N-acetylneuraminates +16.2617013,CHEBI:21759,http://purl.obolibrary.org/obo/CHEBI_21759,N-methyl-N'-nitro-N-nitrosoguanidine +16.2617013,CHEBI:21891,http://purl.obolibrary.org/obo/CHEBI_21891,N(6)-methyladenosine +16.2617013,CHEBI:22327,http://purl.obolibrary.org/obo/CHEBI_22327,aliphatic sulfide +16.2617013,CHEBI:22390,http://purl.obolibrary.org/obo/CHEBI_22390,alpha-D-glucoside +16.2617013,CHEBI:22496,http://purl.obolibrary.org/obo/CHEBI_22496,aminobiphenyl +16.2617013,CHEBI:22629,http://purl.obolibrary.org/obo/CHEBI_22629,arsenate ion +16.2617013,CHEBI:22638,http://purl.obolibrary.org/obo/CHEBI_22638,organoarsonic acid +16.2617013,CHEBI:22661,http://purl.obolibrary.org/obo/CHEBI_22661,aspartic acid derivative +16.2617013,CHEBI:22681,http://purl.obolibrary.org/obo/CHEBI_22681,aziridines +16.2617013,CHEBI:22689,http://purl.obolibrary.org/obo/CHEBI_22689,bafilomycin A1 +16.2617013,CHEBI:22707,http://purl.obolibrary.org/obo/CHEBI_22707,benzenetriol +16.2617013,CHEBI:22715,http://purl.obolibrary.org/obo/CHEBI_22715,benzimidazoles +16.2617013,CHEBI:22823,http://purl.obolibrary.org/obo/CHEBI_22823,beta-alanine derivative +16.2617013,CHEBI:22939,http://purl.obolibrary.org/obo/CHEBI_22939,butanals +16.2617013,CHEBI:22959,http://purl.obolibrary.org/obo/CHEBI_22959,butenoic acid +16.2617013,CHEBI:23012,http://purl.obolibrary.org/obo/CHEBI_23012,carbon disulfide +16.2617013,CHEBI:23130,http://purl.obolibrary.org/obo/CHEBI_23130,chloroaniline +16.2617013,CHEBI:23152,http://purl.obolibrary.org/obo/CHEBI_23152,chlorophenoxyacetic acid +16.2617013,CHEBI:23243,http://purl.obolibrary.org/obo/CHEBI_23243,cineole +16.2617013,CHEBI:23316,http://purl.obolibrary.org/obo/CHEBI_23316,citral +16.2617013,CHEBI:23450,http://purl.obolibrary.org/obo/CHEBI_23450,cyclitol phosphate +16.2617013,CHEBI:23480,http://purl.obolibrary.org/obo/CHEBI_23480,cyclohexanols +16.2617013,CHEBI:23483,http://purl.obolibrary.org/obo/CHEBI_23483,cyclohexenecarboxylic acid +16.2617013,CHEBI:23643,http://purl.obolibrary.org/obo/CHEBI_23643,depsipeptide +16.2617013,CHEBI:23757,http://purl.obolibrary.org/obo/CHEBI_23757,dihydrophaseic acid +16.2617013,CHEBI:23763,http://purl.obolibrary.org/obo/CHEBI_23763,pyrroline +16.2617013,CHEBI:23808,http://purl.obolibrary.org/obo/CHEBI_23808,dimethylarsinous acid +16.2617013,CHEBI:23891,http://purl.obolibrary.org/obo/CHEBI_23891,ecdysone antagonists +16.2617013,CHEBI:239133,http://purl.obolibrary.org/obo/CHEBI_239133,salicylanilide +16.2617013,CHEBI:24067,http://purl.obolibrary.org/obo/CHEBI_24067,fluoroalkane +16.2617013,CHEBI:2430,http://purl.obolibrary.org/obo/CHEBI_2430,aconitine +16.2617013,CHEBI:24317,http://purl.obolibrary.org/obo/CHEBI_24317,L-glutamine derivative +16.2617013,CHEBI:24353,http://purl.obolibrary.org/obo/CHEBI_24353,glycerol ether +16.2617013,CHEBI:24387,http://purl.obolibrary.org/obo/CHEBI_24387,glycolaldehydes +16.2617013,CHEBI:24405,http://purl.obolibrary.org/obo/CHEBI_24405,glycosylglucose +16.2617013,CHEBI:245199,http://purl.obolibrary.org/obo/CHEBI_245199,"2,2':6',2''-terpyridine" +16.2617013,CHEBI:2468,http://purl.obolibrary.org/obo/CHEBI_2468,secondary alpha-hydroxy ketone +16.2617013,CHEBI:24727,http://purl.obolibrary.org/obo/CHEBI_24727,hydroxynaphthalene +16.2617013,CHEBI:24769,http://purl.obolibrary.org/obo/CHEBI_24769,iduronic acid +16.2617013,CHEBI:24786,http://purl.obolibrary.org/obo/CHEBI_24786,iminodiacetic acid +16.2617013,CHEBI:24846,http://purl.obolibrary.org/obo/CHEBI_24846,inositol phosphate +16.2617013,CHEBI:25013,http://purl.obolibrary.org/obo/CHEBI_25013,lanthionine +16.2617013,CHEBI:25095,http://purl.obolibrary.org/obo/CHEBI_25095,L-lysine derivative +16.2617013,CHEBI:25166,http://purl.obolibrary.org/obo/CHEBI_25166,mannosamine +16.2617013,CHEBI:25241,http://purl.obolibrary.org/obo/CHEBI_25241,methoxyflavone +16.2617013,CHEBI:25276,http://purl.obolibrary.org/obo/CHEBI_25276,methylarsinous acid +16.2617013,CHEBI:25307,http://purl.obolibrary.org/obo/CHEBI_25307,methylguanosine +16.2617013,CHEBI:25345,http://purl.obolibrary.org/obo/CHEBI_25345,methyltetrahydrofolate +16.2617013,CHEBI:25392,http://purl.obolibrary.org/obo/CHEBI_25392,naphthols +16.2617013,CHEBI:25399,http://purl.obolibrary.org/obo/CHEBI_25399,cresol +16.2617013,CHEBI:25401,http://purl.obolibrary.org/obo/CHEBI_25401,monomethoxyflavone +16.2617013,CHEBI:25438,http://purl.obolibrary.org/obo/CHEBI_25438,mycolic acid +16.2617013,CHEBI:25457,http://purl.obolibrary.org/obo/CHEBI_25457,myristyl group +16.2617013,CHEBI:25512,http://purl.obolibrary.org/obo/CHEBI_25512,neurotransmitter +16.2617013,CHEBI:25549,http://purl.obolibrary.org/obo/CHEBI_25549,nitrites +16.2617013,CHEBI:25553,http://purl.obolibrary.org/obo/CHEBI_25553,nitrobenzoic acid +16.2617013,CHEBI:25588,http://purl.obolibrary.org/obo/CHEBI_25588,nonpolar amino acid +16.2617013,CHEBI:25604,http://purl.obolibrary.org/obo/CHEBI_25604,nucleotide-(amino alcohol)s +16.2617013,CHEBI:25675,http://purl.obolibrary.org/obo/CHEBI_25675,oligomycin +16.2617013,CHEBI:25835,http://purl.obolibrary.org/obo/CHEBI_25835,hexadecanoate ester +16.2617013,CHEBI:25883,http://purl.obolibrary.org/obo/CHEBI_25883,pentahydroxyflavone +16.2617013,CHEBI:25996,http://purl.obolibrary.org/obo/CHEBI_25996,phenylhydrazines +16.2617013,CHEBI:26088,http://purl.obolibrary.org/obo/CHEBI_26088,photosystem-I inhibitor +16.2617013,CHEBI:26148,http://purl.obolibrary.org/obo/CHEBI_26148,piperidinemonocarboxylic acid +16.2617013,CHEBI:26173,http://purl.obolibrary.org/obo/CHEBI_26173,poly-L-glutamic acid +16.2617013,CHEBI:26338,http://purl.obolibrary.org/obo/CHEBI_26338,prostaglandins E +16.2617013,CHEBI:2637,http://purl.obolibrary.org/obo/CHEBI_2637,amikacin +16.2617013,CHEBI:26433,http://purl.obolibrary.org/obo/CHEBI_26433,pyrimidine 2'-deoxyribonucleoside diphosphate +16.2617013,CHEBI:26437,http://purl.obolibrary.org/obo/CHEBI_26437,pyrimidine nucleoside diphosphate +16.2617013,CHEBI:26442,http://purl.obolibrary.org/obo/CHEBI_26442,pyrimidine ribonucleoside diphosphate +16.2617013,CHEBI:26447,http://purl.obolibrary.org/obo/CHEBI_26447,pyrimidinemonocarboxylic acid +16.2617013,CHEBI:26534,http://purl.obolibrary.org/obo/CHEBI_26534,retinals +16.2617013,CHEBI:2667,http://purl.obolibrary.org/obo/CHEBI_2667,Amitriptyline hydrochloride +16.2617013,CHEBI:26689,http://purl.obolibrary.org/obo/CHEBI_26689,singlet dioxygen +16.2617013,CHEBI:26823,http://purl.obolibrary.org/obo/CHEBI_26823,sulfites +16.2617013,CHEBI:2696,http://purl.obolibrary.org/obo/CHEBI_2696,Anacardic acid +16.2617013,CHEBI:2700,http://purl.obolibrary.org/obo/CHEBI_2700,anandamide +16.2617013,CHEBI:27001,http://purl.obolibrary.org/obo/CHEBI_27001,thymidine phosphate +16.2617013,CHEBI:27135,http://purl.obolibrary.org/obo/CHEBI_27135,trinitrotoluene +16.2617013,CHEBI:2720,http://purl.obolibrary.org/obo/CHEBI_2720,Angiotensinogen +16.2617013,CHEBI:27275,http://purl.obolibrary.org/obo/CHEBI_27275,vanadium molecular entity +16.2617013,CHEBI:27288,http://purl.obolibrary.org/obo/CHEBI_27288,vinca alkaloid +16.2617013,CHEBI:27573,http://purl.obolibrary.org/obo/CHEBI_27573,silicon atom +16.2617013,CHEBI:27584,http://purl.obolibrary.org/obo/CHEBI_27584,aldosterone +16.2617013,CHEBI:27585,http://purl.obolibrary.org/obo/CHEBI_27585,selenomethionine +16.2617013,CHEBI:27642,http://purl.obolibrary.org/obo/CHEBI_27642,methyl tert-butyl ether +16.2617013,CHEBI:27659,http://purl.obolibrary.org/obo/CHEBI_27659,2-oxo aldehyde +16.2617013,CHEBI:27899,http://purl.obolibrary.org/obo/CHEBI_27899,cisplatin +16.2617013,CHEBI:27961,http://purl.obolibrary.org/obo/CHEBI_27961,"1,8-cineole" +16.2617013,CHEBI:28063,http://purl.obolibrary.org/obo/CHEBI_28063,o-xylene +16.2617013,CHEBI:28077,http://purl.obolibrary.org/obo/CHEBI_28077,rifampicin +16.2617013,CHEBI:28078,http://purl.obolibrary.org/obo/CHEBI_28078,4-chlorophenol +16.2617013,CHEBI:28179,http://purl.obolibrary.org/obo/CHEBI_28179,benzamide +16.2617013,CHEBI:28487,http://purl.obolibrary.org/obo/CHEBI_28487,reserpine +16.2617013,CHEBI:28545,http://purl.obolibrary.org/obo/CHEBI_28545,valinomycin +16.2617013,CHEBI:28616,http://purl.obolibrary.org/obo/CHEBI_28616,carbamic acid +16.2617013,CHEBI:28862,http://purl.obolibrary.org/obo/CHEBI_28862,dGDP +16.2617013,CHEBI:28887,http://purl.obolibrary.org/obo/CHEBI_28887,dimethyl ether +16.2617013,CHEBI:28892,http://purl.obolibrary.org/obo/CHEBI_28892,ganglioside +16.2617013,CHEBI:28987,http://purl.obolibrary.org/obo/CHEBI_28987,abietic acid +16.2617013,CHEBI:291902,http://purl.obolibrary.org/obo/CHEBI_291902,eptifibatide +16.2617013,CHEBI:29221,http://purl.obolibrary.org/obo/CHEBI_29221,perchloric acid +16.2617013,CHEBI:29318,http://purl.obolibrary.org/obo/CHEBI_29318,aminyl +16.2617013,CHEBI:29354,http://purl.obolibrary.org/obo/CHEBI_29354,oxy group +16.2617013,CHEBI:29678,http://purl.obolibrary.org/obo/CHEBI_29678,sodium arsenite +16.2617013,CHEBI:29865,http://purl.obolibrary.org/obo/CHEBI_29865,benzo[a]pyrene +16.2617013,CHEBI:30092,http://purl.obolibrary.org/obo/CHEBI_30092,hydrazino group +16.2617013,CHEBI:30093,http://purl.obolibrary.org/obo/CHEBI_30093,hydrazinyl +16.2617013,CHEBI:30200,http://purl.obolibrary.org/obo/CHEBI_30200,kaempferol 3-O-beta-D-glucoside +16.2617013,CHEBI:30365,http://purl.obolibrary.org/obo/CHEBI_30365,cyclopropane +16.2617013,CHEBI:30377,http://purl.obolibrary.org/obo/CHEBI_30377,cyclobutane +16.2617013,CHEBI:30661,http://purl.obolibrary.org/obo/CHEBI_30661,thyronine +16.2617013,CHEBI:30856,http://purl.obolibrary.org/obo/CHEBI_30856,thiophene +16.2617013,CHEBI:30860,http://purl.obolibrary.org/obo/CHEBI_30860,methylmalonic acid +16.2617013,CHEBI:30961,http://purl.obolibrary.org/obo/CHEBI_30961,pyridoxine hydrochloride +16.2617013,CHEBI:30985,http://purl.obolibrary.org/obo/CHEBI_30985,"4,4'-bipyridine" +16.2617013,CHEBI:31264,http://purl.obolibrary.org/obo/CHEBI_31264,benzethonium chloride +16.2617013,CHEBI:31286,http://purl.obolibrary.org/obo/CHEBI_31286,bifonazole +16.2617013,CHEBI:31342,http://purl.obolibrary.org/obo/CHEBI_31342,Calcium hypochlorite +16.2617013,CHEBI:31623,http://purl.obolibrary.org/obo/CHEBI_31623,fluocinolone acetonide +16.2617013,CHEBI:31647,http://purl.obolibrary.org/obo/CHEBI_31647,gemcitabine hydrochloride +16.2617013,CHEBI:31705,http://purl.obolibrary.org/obo/CHEBI_31705,iodixanol +16.2617013,CHEBI:31794,http://purl.obolibrary.org/obo/CHEBI_31794,magnesium oxide +16.2617013,CHEBI:31861,http://purl.obolibrary.org/obo/CHEBI_31861,Molsidomine +16.2617013,CHEBI:31882,http://purl.obolibrary.org/obo/CHEBI_31882,N-methyl-D-aspartic acid +16.2617013,CHEBI:32013,http://purl.obolibrary.org/obo/CHEBI_32013,Pirenoxine +16.2617013,CHEBI:32028,http://purl.obolibrary.org/obo/CHEBI_32028,poly(vinyl acetate) +16.2617013,CHEBI:32114,http://purl.obolibrary.org/obo/CHEBI_32114,salicylamide +16.2617013,CHEBI:32158,http://purl.obolibrary.org/obo/CHEBI_32158,streptomycin sulfate +16.2617013,CHEBI:32161,http://purl.obolibrary.org/obo/CHEBI_32161,sulfadimethoxine +16.2617013,CHEBI:32365,http://purl.obolibrary.org/obo/CHEBI_32365,heptadecanoic acid +16.2617013,CHEBI:3242,http://purl.obolibrary.org/obo/CHEBI_3242,butorphanol +16.2617013,CHEBI:3245,http://purl.obolibrary.org/obo/CHEBI_3245,butyl acrylate +16.2617013,CHEBI:32631,http://purl.obolibrary.org/obo/CHEBI_32631,L-methioninate +16.2617013,CHEBI:32672,http://purl.obolibrary.org/obo/CHEBI_32672,D-glutaminate +16.2617013,CHEBI:32687,http://purl.obolibrary.org/obo/CHEBI_32687,piperonyl butoxide +16.2617013,CHEBI:32879,http://purl.obolibrary.org/obo/CHEBI_32879,propane +16.2617013,CHEBI:32954,http://purl.obolibrary.org/obo/CHEBI_32954,sodium acetate +16.2617013,CHEBI:33083,http://purl.obolibrary.org/obo/CHEBI_33083,fluoranthene +16.2617013,CHEBI:33135,http://purl.obolibrary.org/obo/CHEBI_33135,pyrrolidine +16.2617013,CHEBI:33322,http://purl.obolibrary.org/obo/CHEBI_33322,rubidium atom +16.2617013,CHEBI:33347,http://purl.obolibrary.org/obo/CHEBI_33347,vanadium group element atom +16.2617013,CHEBI:33372,http://purl.obolibrary.org/obo/CHEBI_33372,neodymium atom +16.2617013,CHEBI:33375,http://purl.obolibrary.org/obo/CHEBI_33375,gadolinium atom +16.2617013,CHEBI:33404,http://purl.obolibrary.org/obo/CHEBI_33404,3-hydroxypropionic acid +16.2617013,CHEBI:33407,http://purl.obolibrary.org/obo/CHEBI_33407,arsenic oxoacid +16.2617013,CHEBI:33418,http://purl.obolibrary.org/obo/CHEBI_33418,graphite +16.2617013,CHEBI:33441,http://purl.obolibrary.org/obo/CHEBI_33441,cycloalkyl group +16.2617013,CHEBI:33470,http://purl.obolibrary.org/obo/CHEBI_33470,heteroaryl group +16.2617013,CHEBI:33477,http://purl.obolibrary.org/obo/CHEBI_33477,vinylic group +16.2617013,CHEBI:33624,http://purl.obolibrary.org/obo/CHEBI_33624,bromophenol +16.2617013,CHEBI:33677,http://purl.obolibrary.org/obo/CHEBI_33677,f-block molecular entity +16.2617013,CHEBI:33715,http://purl.obolibrary.org/obo/CHEBI_33715,N-terminal alpha-amino-acid residue +16.2617013,CHEBI:33716,http://purl.obolibrary.org/obo/CHEBI_33716,N-terminal proteinogenic amino-acid residue +16.2617013,CHEBI:33746,http://purl.obolibrary.org/obo/CHEBI_33746,vanadium group molecular entity +16.2617013,CHEBI:33775,http://purl.obolibrary.org/obo/CHEBI_33775,lanthanoid molecular entity +16.2617013,CHEBI:33888,http://purl.obolibrary.org/obo/CHEBI_33888,cobalt molecular entity +16.2617013,CHEBI:33972,http://purl.obolibrary.org/obo/CHEBI_33972,gold salt +16.2617013,CHEBI:33979,http://purl.obolibrary.org/obo/CHEBI_33979,lithium hydroxide +16.2617013,CHEBI:34093,http://purl.obolibrary.org/obo/CHEBI_34093,1-Hydroxypyrene +16.2617013,CHEBI:34107,http://purl.obolibrary.org/obo/CHEBI_34107,1-nitropyrene +16.2617013,CHEBI:3415,http://purl.obolibrary.org/obo/CHEBI_3415,carfentrazone +16.2617013,CHEBI:34472,http://purl.obolibrary.org/obo/CHEBI_34472,6-Hydroxyflavone +16.2617013,CHEBI:34730,http://purl.obolibrary.org/obo/CHEBI_34730,doxycycline hyclate +16.2617013,CHEBI:34875,http://purl.obolibrary.org/obo/CHEBI_34875,N-Nitrosodiphenylamine +16.2617013,CHEBI:34876,http://purl.obolibrary.org/obo/CHEBI_34876,N-Phenyl-1-naphthylamine +16.2617013,CHEBI:35135,http://purl.obolibrary.org/obo/CHEBI_35135,iron-sulfur protein +16.2617013,CHEBI:35174,http://purl.obolibrary.org/obo/CHEBI_35174,vanadium oxide +16.2617013,CHEBI:35206,http://purl.obolibrary.org/obo/CHEBI_35206,isotopic tracer +16.2617013,CHEBI:35213,http://purl.obolibrary.org/obo/CHEBI_35213,cyclodepsipeptide +16.2617013,CHEBI:35297,http://purl.obolibrary.org/obo/CHEBI_35297,acene +16.2617013,CHEBI:35298,http://purl.obolibrary.org/obo/CHEBI_35298,anthracene +16.2617013,CHEBI:35343,http://purl.obolibrary.org/obo/CHEBI_35343,17beta-hydroxy steroid +16.2617013,CHEBI:35510,http://purl.obolibrary.org/obo/CHEBI_35510,aluminium salt +16.2617013,CHEBI:35511,http://purl.obolibrary.org/obo/CHEBI_35511,hydrazine hydrate +16.2617013,CHEBI:35556,http://purl.obolibrary.org/obo/CHEBI_35556,pyrrole +16.2617013,CHEBI:35624,http://purl.obolibrary.org/obo/CHEBI_35624,azaspiro compound +16.2617013,CHEBI:35640,http://purl.obolibrary.org/obo/CHEBI_35640,adrenergic uptake inhibitor +16.2617013,CHEBI:35719,http://purl.obolibrary.org/obo/CHEBI_35719,sulfamic acids +16.2617013,CHEBI:35721,http://purl.obolibrary.org/obo/CHEBI_35721,heparan sulfates +16.2617013,CHEBI:35729,http://purl.obolibrary.org/obo/CHEBI_35729,gadolinium molecular entity +16.2617013,CHEBI:35774,http://purl.obolibrary.org/obo/CHEBI_35774,CDP-glycerols +16.2617013,CHEBI:35776,http://purl.obolibrary.org/obo/CHEBI_35776,arsenic oxoanion +16.2617013,CHEBI:35779,http://purl.obolibrary.org/obo/CHEBI_35779,dicarboxylic acid diamide +16.2617013,CHEBI:35782,http://purl.obolibrary.org/obo/CHEBI_35782,diphosphate ion +16.2617013,CHEBI:3594,http://purl.obolibrary.org/obo/CHEBI_3594,chicoric acid +16.2617013,CHEBI:35969,http://purl.obolibrary.org/obo/CHEBI_35969,3-hydroxy monocarboxylic acid +16.2617013,CHEBI:35971,http://purl.obolibrary.org/obo/CHEBI_35971,6-hydroxy monocarboxylic acid +16.2617013,CHEBI:36003,http://purl.obolibrary.org/obo/CHEBI_36003,decenoic acid +16.2617013,CHEBI:36050,http://purl.obolibrary.org/obo/CHEBI_36050,antitreponemal drug +16.2617013,CHEBI:36051,http://purl.obolibrary.org/obo/CHEBI_36051,antisyphilitic drug +16.2617013,CHEBI:36055,http://purl.obolibrary.org/obo/CHEBI_36055,furoic acid +16.2617013,CHEBI:36062,http://purl.obolibrary.org/obo/CHEBI_36062,"3,4-dihydroxybenzoic acid" +16.2617013,CHEBI:36181,http://purl.obolibrary.org/obo/CHEBI_36181,succinate ester +16.2617013,CHEBI:36255,http://purl.obolibrary.org/obo/CHEBI_36255,bile acid glycine conjugate +16.2617013,CHEBI:36276,http://purl.obolibrary.org/obo/CHEBI_36276,sodium taurocholate +16.2617013,CHEBI:36316,http://purl.obolibrary.org/obo/CHEBI_36316,dipyrrole +16.2617013,CHEBI:3636,http://purl.obolibrary.org/obo/CHEBI_3636,chloroprocaine +16.2617013,CHEBI:36386,http://purl.obolibrary.org/obo/CHEBI_36386,dichloroacetic acid +16.2617013,CHEBI:36498,http://purl.obolibrary.org/obo/CHEBI_36498,galactosylceramide +16.2617013,CHEBI:36526,http://purl.obolibrary.org/obo/CHEBI_36526,acidic glycosphingolipid +16.2617013,CHEBI:36527,http://purl.obolibrary.org/obo/CHEBI_36527,glycosylsphingoid +16.2617013,CHEBI:36598,http://purl.obolibrary.org/obo/CHEBI_36598,heterone +16.2617013,CHEBI:36599,http://purl.obolibrary.org/obo/CHEBI_36599,acyclic heterone +16.2617013,CHEBI:36604,http://purl.obolibrary.org/obo/CHEBI_36604,metal carbonyl +16.2617013,CHEBI:36685,http://purl.obolibrary.org/obo/CHEBI_36685,chlorocarboxylic acid +16.2617013,CHEBI:36749,http://purl.obolibrary.org/obo/CHEBI_36749,dipyrrins +16.2617013,CHEBI:36847,http://purl.obolibrary.org/obo/CHEBI_36847,12beta-hydroxy steroid +16.2617013,CHEBI:36874,http://purl.obolibrary.org/obo/CHEBI_36874,radical cation +16.2617013,CHEBI:36887,http://purl.obolibrary.org/obo/CHEBI_36887,18-oxo steroid +16.2617013,CHEBI:36944,http://purl.obolibrary.org/obo/CHEBI_36944,steroid phosphate +16.2617013,CHEBI:37024,http://purl.obolibrary.org/obo/CHEBI_37024,2-aminoadipic acid +16.2617013,CHEBI:37037,http://purl.obolibrary.org/obo/CHEBI_37037,pyrimidine 2'-deoxyribonucleoside 5'-diphosphate +16.2617013,CHEBI:37039,http://purl.obolibrary.org/obo/CHEBI_37039,pyrimidine ribonucleoside 5'-diphosphate +16.2617013,CHEBI:37079,http://purl.obolibrary.org/obo/CHEBI_37079,2-methylacetoacetic acid +16.2617013,CHEBI:37086,http://purl.obolibrary.org/obo/CHEBI_37086,C-nucleoside +16.2617013,CHEBI:37149,http://purl.obolibrary.org/obo/CHEBI_37149,bromobenzenes +16.2617013,CHEBI:37285,http://purl.obolibrary.org/obo/CHEBI_37285,elemental gadolinium +16.2617013,CHEBI:37603,http://purl.obolibrary.org/obo/CHEBI_37603,vinyl group +16.2617013,CHEBI:37661,http://purl.obolibrary.org/obo/CHEBI_37661,glucopyranose +16.2617013,CHEBI:3770,http://purl.obolibrary.org/obo/CHEBI_3770,co-trimoxazole +16.2617013,CHEBI:37749,http://purl.obolibrary.org/obo/CHEBI_37749,halogen oxide +16.2617013,CHEBI:37830,http://purl.obolibrary.org/obo/CHEBI_37830,pentane +16.2617013,CHEBI:37853,http://purl.obolibrary.org/obo/CHEBI_37853,phosphate salt +16.2617013,CHEBI:37942,http://purl.obolibrary.org/obo/CHEBI_37942,thienopyridine +16.2617013,CHEBI:38012,http://purl.obolibrary.org/obo/CHEBI_38012,aminoglycoside sulfate salt +16.2617013,CHEBI:38092,http://purl.obolibrary.org/obo/CHEBI_38092,cardenolide glycoside +16.2617013,CHEBI:38096,http://purl.obolibrary.org/obo/CHEBI_38096,azulenes +16.2617013,CHEBI:38273,http://purl.obolibrary.org/obo/CHEBI_38273,diboronic acid +16.2617013,CHEBI:38279,http://purl.obolibrary.org/obo/CHEBI_38279,carborane +16.2617013,CHEBI:38439,http://purl.obolibrary.org/obo/CHEBI_38439,N-acetyl-D-glucosaminate +16.2617013,CHEBI:38459,http://purl.obolibrary.org/obo/CHEBI_38459,oxindoles +16.2617013,CHEBI:38477,http://purl.obolibrary.org/obo/CHEBI_38477,formamidine +16.2617013,CHEBI:38495,http://purl.obolibrary.org/obo/CHEBI_38495,aluminium phosphide +16.2617013,CHEBI:38756,http://purl.obolibrary.org/obo/CHEBI_38756,methoxyisoflavone +16.2617013,CHEBI:38769,http://purl.obolibrary.org/obo/CHEBI_38769,indazoles +16.2617013,CHEBI:38824,http://purl.obolibrary.org/obo/CHEBI_38824,fluorocarbon +16.2617013,CHEBI:38999,http://purl.obolibrary.org/obo/CHEBI_38999,GABA-gated chloride channel antagonist +16.2617013,CHEBI:39035,http://purl.obolibrary.org/obo/CHEBI_39035,TES +16.2617013,CHEBI:39087,http://purl.obolibrary.org/obo/CHEBI_39087,sulfurous acid derivative +16.2617013,CHEBI:39106,http://purl.obolibrary.org/obo/CHEBI_39106,pyrene +16.2617013,CHEBI:39123,http://purl.obolibrary.org/obo/CHEBI_39123,calcium cation +16.2617013,CHEBI:39127,http://purl.obolibrary.org/obo/CHEBI_39127,magnesium cation +16.2617013,CHEBI:39142,http://purl.obolibrary.org/obo/CHEBI_39142,Bronsted base +16.2617013,CHEBI:39166,http://purl.obolibrary.org/obo/CHEBI_39166,tetramine +16.2617013,CHEBI:39205,http://purl.obolibrary.org/obo/CHEBI_39205,dibenzopyrrole +16.2617013,CHEBI:39246,http://purl.obolibrary.org/obo/CHEBI_39246,nonadecanoic acid +16.2617013,CHEBI:39321,http://purl.obolibrary.org/obo/CHEBI_39321,tetrazine +16.2617013,CHEBI:39479,http://purl.obolibrary.org/obo/CHEBI_39479,butadiene +16.2617013,CHEBI:40009,http://purl.obolibrary.org/obo/CHEBI_40009,D-cycloserine +16.2617013,CHEBI:40070,http://purl.obolibrary.org/obo/CHEBI_40070,4-hydroxycoumarin +16.2617013,CHEBI:4021,http://purl.obolibrary.org/obo/CHEBI_4021,Cyclopamine +16.2617013,CHEBI:41237,http://purl.obolibrary.org/obo/CHEBI_41237,benzyl benzoate +16.2617013,CHEBI:41321,http://purl.obolibrary.org/obo/CHEBI_41321,cholesterol sulfate +16.2617013,CHEBI:4178,http://purl.obolibrary.org/obo/CHEBI_4178,D-glucuronic acid +16.2617013,CHEBI:41865,http://purl.obolibrary.org/obo/CHEBI_41865,sebacic acid +16.2617013,CHEBI:41879,http://purl.obolibrary.org/obo/CHEBI_41879,dexamethasone +16.2617013,CHEBI:42098,http://purl.obolibrary.org/obo/CHEBI_42098,digoxigenin +16.2617013,CHEBI:42478,http://purl.obolibrary.org/obo/CHEBI_42478,ethidium +16.2617013,CHEBI:42491,http://purl.obolibrary.org/obo/CHEBI_42491,flavone +16.2617013,CHEBI:43931,http://purl.obolibrary.org/obo/CHEBI_43931,methyllycaconitine +16.2617013,CHEBI:44445,http://purl.obolibrary.org/obo/CHEBI_44445,nimesulide +16.2617013,CHEBI:4450,http://purl.obolibrary.org/obo/CHEBI_4450,desmopressin +16.2617013,CHEBI:44557,http://purl.obolibrary.org/obo/CHEBI_44557,nitrilotriacetic acid +16.2617013,CHEBI:44605,http://purl.obolibrary.org/obo/CHEBI_44605,8-oxoguanine +16.2617013,CHEBI:4488,http://purl.obolibrary.org/obo/CHEBI_4488,diallyl disulfide +16.2617013,CHEBI:45373,http://purl.obolibrary.org/obo/CHEBI_45373,sulfanilamide +16.2617013,CHEBI:4551,http://purl.obolibrary.org/obo/CHEBI_4551,digoxin +16.2617013,CHEBI:45652,http://purl.obolibrary.org/obo/CHEBI_45652,succinylcholine +16.2617013,CHEBI:4629,http://purl.obolibrary.org/obo/CHEBI_4629,diosgenin +16.2617013,CHEBI:4640,http://purl.obolibrary.org/obo/CHEBI_4640,diphenylamine +16.2617013,CHEBI:46700,http://purl.obolibrary.org/obo/CHEBI_46700,benzoxazole +16.2617013,CHEBI:46740,http://purl.obolibrary.org/obo/CHEBI_46740,glycyl group +16.2617013,CHEBI:4676,http://purl.obolibrary.org/obo/CHEBI_4676,dodecanedioic acid +16.2617013,CHEBI:46786,http://purl.obolibrary.org/obo/CHEBI_46786,diether +16.2617013,CHEBI:46790,http://purl.obolibrary.org/obo/CHEBI_46790,2-methoxyethanol +16.2617013,CHEBI:4681,http://purl.obolibrary.org/obo/CHEBI_4681,dofetilide +16.2617013,CHEBI:46837,http://purl.obolibrary.org/obo/CHEBI_46837,dipicolinic acid +16.2617013,CHEBI:46914,http://purl.obolibrary.org/obo/CHEBI_46914,L-ornithinate +16.2617013,CHEBI:46928,http://purl.obolibrary.org/obo/CHEBI_46928,ornithine residue +16.2617013,CHEBI:46969,http://purl.obolibrary.org/obo/CHEBI_46969,benzoxazine +16.2617013,CHEBI:47042,http://purl.obolibrary.org/obo/CHEBI_47042,hydroxycalciol +16.2617013,CHEBI:474859,http://purl.obolibrary.org/obo/CHEBI_474859,maleic anhydride +16.2617013,CHEBI:47773,http://purl.obolibrary.org/obo/CHEBI_47773,very-low-density lipoprotein cholesterol +16.2617013,CHEBI:479072,http://purl.obolibrary.org/obo/CHEBI_479072,2-aminopurine +16.2617013,CHEBI:48009,http://purl.obolibrary.org/obo/CHEBI_48009,"N-glycosyl-1,3,5-triazine" +16.2617013,CHEBI:48128,http://purl.obolibrary.org/obo/CHEBI_48128,decaketide +16.2617013,CHEBI:48131,http://purl.obolibrary.org/obo/CHEBI_48131,nonanedioic acid +16.2617013,CHEBI:48136,http://purl.obolibrary.org/obo/CHEBI_48136,xanthosines +16.2617013,CHEBI:48140,http://purl.obolibrary.org/obo/CHEBI_48140,silicone macromolecule +16.2617013,CHEBI:48150,http://purl.obolibrary.org/obo/CHEBI_48150,organosiloxane +16.2617013,CHEBI:48219,http://purl.obolibrary.org/obo/CHEBI_48219,disinfectant +16.2617013,CHEBI:48285,http://purl.obolibrary.org/obo/CHEBI_48285,anilino group +16.2617013,CHEBI:48428,http://purl.obolibrary.org/obo/CHEBI_48428,"alpha-2,8-linked polymer of sialic acid" +16.2617013,CHEBI:48511,http://purl.obolibrary.org/obo/CHEBI_48511,triflic acid +16.2617013,CHEBI:48513,http://purl.obolibrary.org/obo/CHEBI_48513,carbazoles +16.2617013,CHEBI:48544,http://purl.obolibrary.org/obo/CHEBI_48544,methanesulfonates +16.2617013,CHEBI:48565,http://purl.obolibrary.org/obo/CHEBI_48565,methyl 17-hydroxy-20xi-yohimban-16-carboxylate +16.2617013,CHEBI:48590,http://purl.obolibrary.org/obo/CHEBI_48590,hydroxypiperidine +16.2617013,CHEBI:48765,http://purl.obolibrary.org/obo/CHEBI_48765,dimethylarsinic acid +16.2617013,CHEBI:48857,http://purl.obolibrary.org/obo/CHEBI_48857,sulfite salt +16.2617013,CHEBI:48888,http://purl.obolibrary.org/obo/CHEBI_48888,pyridoindole +16.2617013,CHEBI:48946,http://purl.obolibrary.org/obo/CHEBI_48946,2-methylbutyrate +16.2617013,CHEBI:48951,http://purl.obolibrary.org/obo/CHEBI_48951,cyclohexenone +16.2617013,CHEBI:49018,http://purl.obolibrary.org/obo/CHEBI_49018,neuraminic acid +16.2617013,CHEBI:49110,http://purl.obolibrary.org/obo/CHEBI_49110,peripheral nervous system drug +16.2617013,CHEBI:49172,http://purl.obolibrary.org/obo/CHEBI_49172,"1,2-diglyceride" +16.2617013,CHEBI:4998,http://purl.obolibrary.org/obo/CHEBI_4998,fenarimol +16.2617013,CHEBI:5000,http://purl.obolibrary.org/obo/CHEBI_5000,fenfluramine +16.2617013,CHEBI:50017,http://purl.obolibrary.org/obo/CHEBI_50017,arsonous acids +16.2617013,CHEBI:50018,http://purl.obolibrary.org/obo/CHEBI_50018,glycosyloxyflavone +16.2617013,CHEBI:50048,http://purl.obolibrary.org/obo/CHEBI_50048,phenylethylamine +16.2617013,CHEBI:50088,http://purl.obolibrary.org/obo/CHEBI_50088,lithium hydrides +16.2617013,CHEBI:50091,http://purl.obolibrary.org/obo/CHEBI_50091,S-nitrosoglutathione +16.2617013,CHEBI:50102,http://purl.obolibrary.org/obo/CHEBI_50102,N-methyl-N-nitrosourea +16.2617013,CHEBI:50127,http://purl.obolibrary.org/obo/CHEBI_50127,trifluoromethyl group +16.2617013,CHEBI:50144,http://purl.obolibrary.org/obo/CHEBI_50144,sodium pyruvate +16.2617013,CHEBI:5020,http://purl.obolibrary.org/obo/CHEBI_5020,ferricyanide +16.2617013,CHEBI:50274,http://purl.obolibrary.org/obo/CHEBI_50274,secoiridoid glycoside +16.2617013,CHEBI:50329,http://purl.obolibrary.org/obo/CHEBI_50329,2-carboxyethyl group +16.2617013,CHEBI:50424,http://purl.obolibrary.org/obo/CHEBI_50424,acrylate ester +16.2617013,CHEBI:50491,http://purl.obolibrary.org/obo/CHEBI_50491,haloalkyl group +16.2617013,CHEBI:5050,http://purl.obolibrary.org/obo/CHEBI_5050,fexofenadine +16.2617013,CHEBI:50553,http://purl.obolibrary.org/obo/CHEBI_50553,mancude carbobicyclic parent +16.2617013,CHEBI:50582,http://purl.obolibrary.org/obo/CHEBI_50582,alkenyl alcohol +16.2617013,CHEBI:50607,http://purl.obolibrary.org/obo/CHEBI_50607,dityrosine +16.2617013,CHEBI:506227,http://purl.obolibrary.org/obo/CHEBI_506227,N-acetyl-D-glucosamine +16.2617013,CHEBI:50740,http://purl.obolibrary.org/obo/CHEBI_50740,raloxifene hydrochloride +16.2617013,CHEBI:50819,http://purl.obolibrary.org/obo/CHEBI_50819,ferric oxide +16.2617013,CHEBI:50825,http://purl.obolibrary.org/obo/CHEBI_50825,gold nanoparticle +16.2617013,CHEBI:50955,http://purl.obolibrary.org/obo/CHEBI_50955,arsonic acids +16.2617013,CHEBI:51108,http://purl.obolibrary.org/obo/CHEBI_51108,BODIPY compound +16.2617013,CHEBI:51109,http://purl.obolibrary.org/obo/CHEBI_51109,"4-bora-3a,4a-diaza-s-indacene" +16.2617013,CHEBI:51111,http://purl.obolibrary.org/obo/CHEBI_51111,copper sulfide +16.2617013,CHEBI:51123,http://purl.obolibrary.org/obo/CHEBI_51123,BODIPY dye +16.2617013,CHEBI:51152,http://purl.obolibrary.org/obo/CHEBI_51152,nitrogen ylide +16.2617013,CHEBI:51214,http://purl.obolibrary.org/obo/CHEBI_51214,diamminedichloroplatinum +16.2617013,CHEBI:51267,http://purl.obolibrary.org/obo/CHEBI_51267,swelling agent +16.2617013,CHEBI:51358,http://purl.obolibrary.org/obo/CHEBI_51358,aziridine aldehyde +16.2617013,CHEBI:51516,http://purl.obolibrary.org/obo/CHEBI_51516,acylimine +16.2617013,CHEBI:51635,http://purl.obolibrary.org/obo/CHEBI_51635,pyridyl group +16.2617013,CHEBI:51847,http://purl.obolibrary.org/obo/CHEBI_51847,ketoester +16.2617013,CHEBI:51871,http://purl.obolibrary.org/obo/CHEBI_51871,sulfamides +16.2617013,CHEBI:51874,http://purl.obolibrary.org/obo/CHEBI_51874,auramine O free base +16.2617013,CHEBI:52055,http://purl.obolibrary.org/obo/CHEBI_52055,ethidium homodimer +16.2617013,CHEBI:52090,http://purl.obolibrary.org/obo/CHEBI_52090,methoxide +16.2617013,CHEBI:52330,http://purl.obolibrary.org/obo/CHEBI_52330,glycerophosphatidylethanolamine +16.2617013,CHEBI:52392,http://purl.obolibrary.org/obo/CHEBI_52392,2-arachidonoylglycerol +16.2617013,CHEBI:5254,http://purl.obolibrary.org/obo/CHEBI_5254,galactolipid +16.2617013,CHEBI:52554,http://purl.obolibrary.org/obo/CHEBI_52554,o-tolyl group +16.2617013,CHEBI:52575,http://purl.obolibrary.org/obo/CHEBI_52575,alkylglycerol +16.2617013,CHEBI:52898,http://purl.obolibrary.org/obo/CHEBI_52898,azamacrocycle +16.2617013,CHEBI:53001,http://purl.obolibrary.org/obo/CHEBI_53001,nickel sulfate +16.2617013,CHEBI:53050,http://purl.obolibrary.org/obo/CHEBI_53050,trimellitic anhydride +16.2617013,CHEBI:53123,http://purl.obolibrary.org/obo/CHEBI_53123,diazoline +16.2617013,CHEBI:53243,http://purl.obolibrary.org/obo/CHEBI_53243,poly(vinyl chloride) +16.2617013,CHEBI:53395,http://purl.obolibrary.org/obo/CHEBI_53395,penicillic acid +16.2617013,CHEBI:53537,http://purl.obolibrary.org/obo/CHEBI_53537,poly(2-hydroxyethyl methacrylate) macromolecule +16.2617013,CHEBI:53585,http://purl.obolibrary.org/obo/CHEBI_53585,"poly(N,N-dimethylacrylamide) macromolecule" +16.2617013,CHEBI:53663,http://purl.obolibrary.org/obo/CHEBI_53663,guaiacylglycerol +16.2617013,CHEBI:5383,http://purl.obolibrary.org/obo/CHEBI_5383,glimepiride +16.2617013,CHEBI:5441,http://purl.obolibrary.org/obo/CHEBI_5441,glyburide +16.2617013,CHEBI:55319,http://purl.obolibrary.org/obo/CHEBI_55319,tetrapropylammonium +16.2617013,CHEBI:55465,http://purl.obolibrary.org/obo/CHEBI_55465,7-hydroxyisoflavones +16.2617013,CHEBI:5558,http://purl.obolibrary.org/obo/CHEBI_5558,Guanfacine +16.2617013,CHEBI:566274,http://purl.obolibrary.org/obo/CHEBI_566274,malonaldehyde +16.2617013,CHEBI:5807,http://purl.obolibrary.org/obo/CHEBI_5807,Hydroxylamine hydrochloride +16.2617013,CHEBI:5818,http://purl.obolibrary.org/obo/CHEBI_5818,hydroxyzine +16.2617013,CHEBI:58189,http://purl.obolibrary.org/obo/CHEBI_58189,GDP(3-) +16.2617013,CHEBI:58595,http://purl.obolibrary.org/obo/CHEBI_58595,dGDP(3-) +16.2617013,CHEBI:59340,http://purl.obolibrary.org/obo/CHEBI_59340,famoxadone +16.2617013,CHEBI:59375,http://purl.obolibrary.org/obo/CHEBI_59375,glycopeptidolipid +16.2617013,CHEBI:59656,http://purl.obolibrary.org/obo/CHEBI_59656,phosphine oxide +16.2617013,CHEBI:59830,http://purl.obolibrary.org/obo/CHEBI_59830,polysiloxane macromolecule +16.2617013,CHEBI:59838,http://purl.obolibrary.org/obo/CHEBI_59838,glyoxamides +16.2617013,CHEBI:59926,http://purl.obolibrary.org/obo/CHEBI_59926,"1,2,4-triazolines" +16.2617013,CHEBI:59964,http://purl.obolibrary.org/obo/CHEBI_59964,imidazolium ion +16.2617013,CHEBI:60003,http://purl.obolibrary.org/obo/CHEBI_60003,pure substance +16.2617013,CHEBI:60141,http://purl.obolibrary.org/obo/CHEBI_60141,poly(2-oxazoline) polymer +16.2617013,CHEBI:60148,http://purl.obolibrary.org/obo/CHEBI_60148,poly(divinylbenzene) polymer +16.2617013,CHEBI:60156,http://purl.obolibrary.org/obo/CHEBI_60156,oxidised phospholipid +16.2617013,CHEBI:60218,http://purl.obolibrary.org/obo/CHEBI_60218,mimotope +16.2617013,CHEBI:60632,http://purl.obolibrary.org/obo/CHEBI_60632,N-acetyl group +16.2617013,CHEBI:60644,http://purl.obolibrary.org/obo/CHEBI_60644,bridged diphenyl antifungal agent +16.2617013,CHEBI:60720,http://purl.obolibrary.org/obo/CHEBI_60720,sodium silicate +16.2617013,CHEBI:60834,http://purl.obolibrary.org/obo/CHEBI_60834,beta-carbolines +16.2617013,CHEBI:60963,http://purl.obolibrary.org/obo/CHEBI_60963,colanic acid +16.2617013,CHEBI:60971,http://purl.obolibrary.org/obo/CHEBI_60971,aminophospholipid +16.2617013,CHEBI:60979,http://purl.obolibrary.org/obo/CHEBI_60979,alpha-glucoside +16.2617013,CHEBI:61281,http://purl.obolibrary.org/obo/CHEBI_61281,5-nitrosalicylic acid +16.2617013,CHEBI:61310,http://purl.obolibrary.org/obo/CHEBI_61310,chromium ion +16.2617013,CHEBI:61321,http://purl.obolibrary.org/obo/CHEBI_61321,1-alkyl-3-methylimidazolium +16.2617013,CHEBI:61326,http://purl.obolibrary.org/obo/CHEBI_61326,1-ethyl-3-methylimidazolium +16.2617013,CHEBI:61340,http://purl.obolibrary.org/obo/CHEBI_61340,1-hexyl-3-methylimidazolium chloride +16.2617013,CHEBI:61355,http://purl.obolibrary.org/obo/CHEBI_61355,3-hydroxy carboxylic acid +16.2617013,CHEBI:61412,http://purl.obolibrary.org/obo/CHEBI_61412,tactic polymer +16.2617013,CHEBI:61476,http://purl.obolibrary.org/obo/CHEBI_61476,emeraldine polymer +16.2617013,CHEBI:61689,http://purl.obolibrary.org/obo/CHEBI_61689,amino cyclitol +16.2617013,CHEBI:61778,http://purl.obolibrary.org/obo/CHEBI_61778,triterpenoid saponin +16.2617013,CHEBI:61902,http://purl.obolibrary.org/obo/CHEBI_61902,hydroxy fatty acyl-CoA +16.2617013,CHEBI:62873,http://purl.obolibrary.org/obo/CHEBI_62873,odorant receptor agonist +16.2617013,CHEBI:62965,http://purl.obolibrary.org/obo/CHEBI_62965,sodium formate +16.2617013,CHEBI:62969,http://purl.obolibrary.org/obo/CHEBI_62969,polygalacturonic acid +16.2617013,CHEBI:63050,http://purl.obolibrary.org/obo/CHEBI_63050,ammonium formate +16.2617013,CHEBI:63173,http://purl.obolibrary.org/obo/CHEBI_63173,T-cell proliferation inhibitor +16.2617013,CHEBI:63326,http://purl.obolibrary.org/obo/CHEBI_63326,3'-hydroxyflavone +16.2617013,CHEBI:63457,http://purl.obolibrary.org/obo/CHEBI_63457,fibroblast growth factor receptor antagonist +16.2617013,CHEBI:63554,http://purl.obolibrary.org/obo/CHEBI_63554,cocamidopropyl betaine +16.2617013,CHEBI:63561,http://purl.obolibrary.org/obo/CHEBI_63561,ketoaldonate derivative +16.2617013,CHEBI:63567,http://purl.obolibrary.org/obo/CHEBI_63567,tetrasaccharide derivative +16.2617013,CHEBI:63613,http://purl.obolibrary.org/obo/CHEBI_63613,nevirapine +16.2617013,CHEBI:63667,http://purl.obolibrary.org/obo/CHEBI_63667,dipyridodiazepine +16.2617013,CHEBI:63921,http://purl.obolibrary.org/obo/CHEBI_63921,2-butoxyethanol +16.2617013,CHEBI:63923,http://purl.obolibrary.org/obo/CHEBI_63923,sclerotherapy agent +16.2617013,CHEBI:63940,http://purl.obolibrary.org/obo/CHEBI_63940,sodium tungstate +16.2617013,CHEBI:64042,http://purl.obolibrary.org/obo/CHEBI_64042,3-aminobenzamide +16.2617013,CHEBI:6426,http://purl.obolibrary.org/obo/CHEBI_6426,leupeptin +16.2617013,CHEBI:64312,http://purl.obolibrary.org/obo/CHEBI_64312,memantine +16.2617013,CHEBI:64323,http://purl.obolibrary.org/obo/CHEBI_64323,memantine hydrochloride +16.2617013,CHEBI:64611,http://purl.obolibrary.org/obo/CHEBI_64611,ether lipid +16.2617013,CHEBI:64634,http://purl.obolibrary.org/obo/CHEBI_64634,kaempferol O-glucoside +16.2617013,CHEBI:64647,http://purl.obolibrary.org/obo/CHEBI_64647,amyloid-beta polypeptide 42 +16.2617013,CHEBI:64952,http://purl.obolibrary.org/obo/CHEBI_64952,anti-HSV agent +16.2617013,CHEBI:6504,http://purl.obolibrary.org/obo/CHEBI_6504,lithium carbonate +16.2617013,CHEBI:65122,http://purl.obolibrary.org/obo/CHEBI_65122,3-substituted propionyl-CoA +16.2617013,CHEBI:65180,http://purl.obolibrary.org/obo/CHEBI_65180,GDP(2-) +16.2617013,CHEBI:65327,http://purl.obolibrary.org/obo/CHEBI_65327,D-xylose +16.2617013,CHEBI:65858,http://purl.obolibrary.org/obo/CHEBI_65858,ergosterol peroxide +16.2617013,CHEBI:669,http://purl.obolibrary.org/obo/CHEBI_669,1-phenylethanol +16.2617013,CHEBI:67121,http://purl.obolibrary.org/obo/CHEBI_67121,nitroxoline +16.2617013,CHEBI:6839,http://purl.obolibrary.org/obo/CHEBI_6839,methoxamine +16.2617013,CHEBI:6905,http://purl.obolibrary.org/obo/CHEBI_6905,Metoprolol succinate +16.2617013,CHEBI:6923,http://purl.obolibrary.org/obo/CHEBI_6923,miconazole +16.2617013,CHEBI:70169,http://purl.obolibrary.org/obo/CHEBI_70169,Narciclasine +16.2617013,CHEBI:70959,http://purl.obolibrary.org/obo/CHEBI_70959,3-methylhistidine +16.2617013,CHEBI:71968,http://purl.obolibrary.org/obo/CHEBI_71968,hydroxyflavonoid +16.2617013,CHEBI:71989,http://purl.obolibrary.org/obo/CHEBI_71989,ortho ester +16.2617013,CHEBI:72311,http://purl.obolibrary.org/obo/CHEBI_72311,glucagon-like peptide-2 receptor agonist +16.2617013,CHEBI:73339,http://purl.obolibrary.org/obo/CHEBI_73339,methoctramine +16.2617013,CHEBI:73410,http://purl.obolibrary.org/obo/CHEBI_73410,nisoxetine +16.2617013,CHEBI:73454,http://purl.obolibrary.org/obo/CHEBI_73454,Asp-Ser +16.2617013,CHEBI:73472,http://purl.obolibrary.org/obo/CHEBI_73472,kynuramine +16.2617013,CHEBI:73478,http://purl.obolibrary.org/obo/CHEBI_73478,acetylide +16.2617013,CHEBI:73585,http://purl.obolibrary.org/obo/CHEBI_73585,Leu-Phe +16.2617013,CHEBI:73726,http://purl.obolibrary.org/obo/CHEBI_73726,GW 501516 +16.2617013,CHEBI:73757,http://purl.obolibrary.org/obo/CHEBI_73757,Ala-Gly +16.2617013,CHEBI:73774,http://purl.obolibrary.org/obo/CHEBI_73774,enterobacterial common antigen +16.2617013,CHEBI:73925,http://purl.obolibrary.org/obo/CHEBI_73925,His-Asp +16.2617013,CHEBI:73942,http://purl.obolibrary.org/obo/CHEBI_73942,benzenesulfonic acids +16.2617013,CHEBI:74035,http://purl.obolibrary.org/obo/CHEBI_74035,small nuclear RNA +16.2617013,CHEBI:74052,http://purl.obolibrary.org/obo/CHEBI_74052,His-Lys +16.2617013,CHEBI:74079,http://purl.obolibrary.org/obo/CHEBI_74079,allylthiourea +16.2617013,CHEBI:74266,http://purl.obolibrary.org/obo/CHEBI_74266,N-acylurea +16.2617013,CHEBI:74352,http://purl.obolibrary.org/obo/CHEBI_74352,quinol oxidation site inhibitor +16.2617013,CHEBI:7459,http://purl.obolibrary.org/obo/CHEBI_7459,naloxone +16.2617013,CHEBI:74634,http://purl.obolibrary.org/obo/CHEBI_74634,cardenolides +16.2617013,CHEBI:75226,http://purl.obolibrary.org/obo/CHEBI_75226,sodium periodate +16.2617013,CHEBI:75530,http://purl.obolibrary.org/obo/CHEBI_75530,rac-1-monoacylglycerol +16.2617013,CHEBI:7578,http://purl.obolibrary.org/obo/CHEBI_7578,Nitidine +16.2617013,CHEBI:75909,http://purl.obolibrary.org/obo/CHEBI_75909,double-stranded DNA fragment +16.2617013,CHEBI:75984,http://purl.obolibrary.org/obo/CHEBI_75984,flecainide +16.2617013,CHEBI:76194,http://purl.obolibrary.org/obo/CHEBI_76194,palmitoyl bioconjugate +16.2617013,CHEBI:76359,http://purl.obolibrary.org/obo/CHEBI_76359,butylated hydroxyanisole +16.2617013,CHEBI:76575,http://purl.obolibrary.org/obo/CHEBI_76575,monoradylglycerol +16.2617013,CHEBI:76595,http://purl.obolibrary.org/obo/CHEBI_76595,nephroprotective agent +16.2617013,CHEBI:77069,http://purl.obolibrary.org/obo/CHEBI_77069,eperisone +16.2617013,CHEBI:77289,http://purl.obolibrary.org/obo/CHEBI_77289,tetramisole +16.2617013,CHEBI:77477,http://purl.obolibrary.org/obo/CHEBI_77477,nitrone +16.2617013,CHEBI:77614,http://purl.obolibrary.org/obo/CHEBI_77614,terbinafine hydrochloride +16.2617013,CHEBI:77750,http://purl.obolibrary.org/obo/CHEBI_77750,ATP/ADP translocase inhibitor +16.2617013,CHEBI:7794,http://purl.obolibrary.org/obo/CHEBI_7794,phosphate monoester +16.2617013,CHEBI:78115,http://purl.obolibrary.org/obo/CHEBI_78115,fatty acid anion 4:0 +16.2617013,CHEBI:7824,http://purl.obolibrary.org/obo/CHEBI_7824,oxcarbazepine +16.2617013,CHEBI:78574,http://purl.obolibrary.org/obo/CHEBI_78574,pyrimidinecarboxylic acid +16.2617013,CHEBI:78913,http://purl.obolibrary.org/obo/CHEBI_78913,copovidone +16.2617013,CHEBI:7934,http://purl.obolibrary.org/obo/CHEBI_7934,paromomycin +16.2617013,CHEBI:7936,http://purl.obolibrary.org/obo/CHEBI_7936,paroxetine +16.2617013,CHEBI:7989,http://purl.obolibrary.org/obo/CHEBI_7989,pepstatin A +16.2617013,CHEBI:80128,http://purl.obolibrary.org/obo/CHEBI_80128,angiotensin (1-9) +16.2617013,CHEBI:80161,http://purl.obolibrary.org/obo/CHEBI_80161,Galanin +16.2617013,CHEBI:80165,http://purl.obolibrary.org/obo/CHEBI_80165,Glucose-dependent insulinotropic peptide +16.2617013,CHEBI:80271,http://purl.obolibrary.org/obo/CHEBI_80271,Glucagon-like peptide 2 +16.2617013,CHEBI:8080,http://purl.obolibrary.org/obo/CHEBI_8080,phentermine +16.2617013,CHEBI:81008,http://purl.obolibrary.org/obo/CHEBI_81008,tRNA adenine +16.2617013,CHEBI:81860,http://purl.obolibrary.org/obo/CHEBI_81860,Sodium oleate +16.2617013,CHEBI:81923,http://purl.obolibrary.org/obo/CHEBI_81923,flutriafol +16.2617013,CHEBI:82403,http://purl.obolibrary.org/obo/CHEBI_82403,Benzo[c]fluorene +16.2617013,CHEBI:82415,http://purl.obolibrary.org/obo/CHEBI_82415,Chloramine +16.2617013,CHEBI:82851,http://purl.obolibrary.org/obo/CHEBI_82851,phthalimides +16.2617013,CHEBI:82978,http://purl.obolibrary.org/obo/CHEBI_82978,paliperidone +16.2617013,CHEBI:83400,http://purl.obolibrary.org/obo/CHEBI_83400,RNA polyanion +16.2617013,CHEBI:83492,http://purl.obolibrary.org/obo/CHEBI_83492,perfluorohexanoic acid +16.2617013,CHEBI:83563,http://purl.obolibrary.org/obo/CHEBI_83563,long-chain alkane +16.2617013,CHEBI:83970,http://purl.obolibrary.org/obo/CHEBI_83970,cardiac glycoside +16.2617013,CHEBI:83979,http://purl.obolibrary.org/obo/CHEBI_83979,D-aspartic acid derivative +16.2617013,CHEBI:84069,http://purl.obolibrary.org/obo/CHEBI_84069,pentanal +16.2617013,CHEBI:8430,http://purl.obolibrary.org/obo/CHEBI_8430,procaine +16.2617013,CHEBI:84587,http://purl.obolibrary.org/obo/CHEBI_84587,"2,3-saturated fatty aldehyde" +16.2617013,CHEBI:85129,http://purl.obolibrary.org/obo/CHEBI_85129,ristocetin +16.2617013,CHEBI:85180,http://purl.obolibrary.org/obo/CHEBI_85180,nonnucleoside hepatitis C virus polymerase inhibitor +16.2617013,CHEBI:85281,http://purl.obolibrary.org/obo/CHEBI_85281,N-(polyunsaturated fatty acyl)ethanolamine +16.2617013,CHEBI:85662,http://purl.obolibrary.org/obo/CHEBI_85662,lixisenatide +16.2617013,CHEBI:8572,http://purl.obolibrary.org/obo/CHEBI_8572,Protein serine +16.2617013,CHEBI:8631,http://purl.obolibrary.org/obo/CHEBI_8631,Pteroylpoly-gamma-glutamate +16.2617013,CHEBI:86477,http://purl.obolibrary.org/obo/CHEBI_86477,sodium sulfite +16.2617013,CHEBI:86482,http://purl.obolibrary.org/obo/CHEBI_86482,strobilurin antifungal agent +16.2617013,CHEBI:86494,http://purl.obolibrary.org/obo/CHEBI_86494,botanical anti-fungal agent +16.2617013,CHEBI:8665,http://purl.obolibrary.org/obo/CHEBI_8665,Pyridostigmine +16.2617013,CHEBI:87018,http://purl.obolibrary.org/obo/CHEBI_87018,benzanilide fungicide +16.2617013,CHEBI:87039,http://purl.obolibrary.org/obo/CHEBI_87039,bridged diphenyl fungicide +16.2617013,CHEBI:87195,http://purl.obolibrary.org/obo/CHEBI_87195,dicarboximide fungicide +16.2617013,CHEBI:87200,http://purl.obolibrary.org/obo/CHEBI_87200,dicarboximide antifungal agent +16.2617013,CHEBI:87207,http://purl.obolibrary.org/obo/CHEBI_87207,pyrimidine fungicide +16.2617013,CHEBI:87210,http://purl.obolibrary.org/obo/CHEBI_87210,semicarbazone +16.2617013,CHEBI:87211,http://purl.obolibrary.org/obo/CHEBI_87211,fluoroquinolone antibiotic +16.2617013,CHEBI:87230,http://purl.obolibrary.org/obo/CHEBI_87230,nitrofuran antibiotic +16.2617013,CHEBI:87633,http://purl.obolibrary.org/obo/CHEBI_87633,statin (semi-synthetic) +16.2617013,CHEBI:8874,http://purl.obolibrary.org/obo/CHEBI_8874,rivastigmine +16.2617013,CHEBI:9163,http://purl.obolibrary.org/obo/CHEBI_9163,Sinomenine +16.2617013,CHEBI:9334,http://purl.obolibrary.org/obo/CHEBI_9334,sulfasalazine +16.2617013,CHEBI:9665,http://purl.obolibrary.org/obo/CHEBI_9665,triadimefon +16.2617013,CHEBI:9747,http://purl.obolibrary.org/obo/CHEBI_9747,Triptolide +16.2617013,CHEBI:9757,http://purl.obolibrary.org/obo/CHEBI_9757,Tropicamide +16.2617013,CHEBI:9919,http://purl.obolibrary.org/obo/CHEBI_9919,Valacyclovir hydrochloride +16.2617013,CL:0000042,http://purl.obolibrary.org/obo/CL_0000042,neutrophilic myeloblast +16.2617013,CL:0000140,http://purl.obolibrary.org/obo/CL_0000140,odontocyte +16.2617013,CL:0000205,http://purl.obolibrary.org/obo/CL_0000205,thermoreceptor cell +16.2617013,CL:0000273,http://purl.obolibrary.org/obo/CL_0000273,none +16.2617013,CL:0000326,http://purl.obolibrary.org/obo/CL_0000326,glycogen accumulating cell +16.2617013,CL:0000357,http://purl.obolibrary.org/obo/CL_0000357,stratified epithelial stem cell +16.2617013,CL:0000427,http://purl.obolibrary.org/obo/CL_0000427,GLR cell +16.2617013,CL:0000452,http://purl.obolibrary.org/obo/CL_0000452,thyroid hormone secreting cell +16.2617013,CL:0000496,http://purl.obolibrary.org/obo/CL_0000496,green sensitive photoreceptor cell +16.2617013,CL:0000613,http://purl.obolibrary.org/obo/CL_0000613,basophil progenitor cell +16.2617013,CL:0000752,http://purl.obolibrary.org/obo/CL_0000752,cone retinal bipolar cell +16.2617013,CL:0000780,http://purl.obolibrary.org/obo/CL_0000780,multinuclear odontoclast +16.2617013,CL:0000801,http://purl.obolibrary.org/obo/CL_0000801,gamma-delta intraepithelial T cell +16.2617013,CL:0000829,http://purl.obolibrary.org/obo/CL_0000829,basophilic myeloblast +16.2617013,CL:0000852,http://purl.obolibrary.org/obo/CL_0000852,neuromast support cell +16.2617013,CL:0000873,http://purl.obolibrary.org/obo/CL_0000873,splenic metallophillic macrophage +16.2617013,CL:0000984,http://purl.obolibrary.org/obo/CL_0000984,IgA plasmablast +16.2617013,CL:0002010,http://purl.obolibrary.org/obo/CL_0002010,pre-conventional dendritic cell +16.2617013,CL:0002102,http://purl.obolibrary.org/obo/CL_0002102,CD38-negative naive B cell +16.2617013,CL:0002189,http://purl.obolibrary.org/obo/CL_0002189,granular cell of epidermis +16.2617013,CL:0002201,http://purl.obolibrary.org/obo/CL_0002201,renal beta-intercalated cell +16.2617013,CL:0002244,http://purl.obolibrary.org/obo/CL_0002244,squamous cell of ectocervix +16.2617013,CL:0002249,http://purl.obolibrary.org/obo/CL_0002249,primitive cardiac myocyte +16.2617013,CL:0002285,http://purl.obolibrary.org/obo/CL_0002285,type III taste bud cell +16.2617013,CL:0002313,http://purl.obolibrary.org/obo/CL_0002313,endocrine-paracrine cell of prostate gland +16.2617013,CL:0002340,http://purl.obolibrary.org/obo/CL_0002340,luminal cell of prostate epithelium +16.2617013,CL:0002571,http://purl.obolibrary.org/obo/CL_0002571,hepatic mesenchymal stem cell +16.2617013,CL:0002668,http://purl.obolibrary.org/obo/CL_0002668,type 4 otic fibrocyte +16.2617013,CL:1000706,http://purl.obolibrary.org/obo/CL_1000706,ureter urothelial cell +16.2617013,CL:1001432,http://purl.obolibrary.org/obo/CL_1001432,kidney collecting duct intercalated cell +16.2617013,DRUGBANK:DB00057,http://purl.obolibrary.org/obo/DRUGBANK_DB00057,none +16.2617013,DRUGBANK:DB00306,http://purl.obolibrary.org/obo/DRUGBANK_DB00306,none +16.2617013,DRUGBANK:DB00769,http://purl.obolibrary.org/obo/DRUGBANK_DB00769,none +16.2617013,DRUGBANK:DB01342,http://purl.obolibrary.org/obo/DRUGBANK_DB01342,none +16.2617013,DRUGBANK:DB01347,http://purl.obolibrary.org/obo/DRUGBANK_DB01347,none +16.2617013,DRUGBANK:DB01444,http://purl.obolibrary.org/obo/DRUGBANK_DB01444,none +16.2617013,DRUGBANK:DB01453,http://purl.obolibrary.org/obo/DRUGBANK_DB01453,none +16.2617013,DRUGBANK:DB01523,http://purl.obolibrary.org/obo/DRUGBANK_DB01523,none +16.2617013,DRUGBANK:DB01538,http://purl.obolibrary.org/obo/DRUGBANK_DB01538,none +16.2617013,DRUGBANK:DB01542,http://purl.obolibrary.org/obo/DRUGBANK_DB01542,none +16.2617013,DRUGBANK:DB01543,http://purl.obolibrary.org/obo/DRUGBANK_DB01543,none +16.2617013,DRUGBANK:DB01630,http://purl.obolibrary.org/obo/DRUGBANK_DB01630,none +16.2617013,DRUGBANK:DB01681,http://purl.obolibrary.org/obo/DRUGBANK_DB01681,none +16.2617013,DRUGBANK:DB01806,http://purl.obolibrary.org/obo/DRUGBANK_DB01806,none +16.2617013,DRUGBANK:DB01834,http://purl.obolibrary.org/obo/DRUGBANK_DB01834,none +16.2617013,DRUGBANK:DB01854,http://purl.obolibrary.org/obo/DRUGBANK_DB01854,none +16.2617013,DRUGBANK:DB01963,http://purl.obolibrary.org/obo/DRUGBANK_DB01963,none +16.2617013,DRUGBANK:DB01993,http://purl.obolibrary.org/obo/DRUGBANK_DB01993,none +16.2617013,DRUGBANK:DB02019,http://purl.obolibrary.org/obo/DRUGBANK_DB02019,none +16.2617013,DRUGBANK:DB02027,http://purl.obolibrary.org/obo/DRUGBANK_DB02027,none +16.2617013,DRUGBANK:DB02034,http://purl.obolibrary.org/obo/DRUGBANK_DB02034,none +16.2617013,DRUGBANK:DB02035,http://purl.obolibrary.org/obo/DRUGBANK_DB02035,none +16.2617013,DRUGBANK:DB02065,http://purl.obolibrary.org/obo/DRUGBANK_DB02065,none +16.2617013,DRUGBANK:DB02088,http://purl.obolibrary.org/obo/DRUGBANK_DB02088,none +16.2617013,DRUGBANK:DB02096,http://purl.obolibrary.org/obo/DRUGBANK_DB02096,none +16.2617013,DRUGBANK:DB02104,http://purl.obolibrary.org/obo/DRUGBANK_DB02104,none +16.2617013,DRUGBANK:DB02131,http://purl.obolibrary.org/obo/DRUGBANK_DB02131,none +16.2617013,DRUGBANK:DB02169,http://purl.obolibrary.org/obo/DRUGBANK_DB02169,none +16.2617013,DRUGBANK:DB02184,http://purl.obolibrary.org/obo/DRUGBANK_DB02184,none +16.2617013,DRUGBANK:DB02186,http://purl.obolibrary.org/obo/DRUGBANK_DB02186,none +16.2617013,DRUGBANK:DB02202,http://purl.obolibrary.org/obo/DRUGBANK_DB02202,none +16.2617013,DRUGBANK:DB02217,http://purl.obolibrary.org/obo/DRUGBANK_DB02217,none +16.2617013,DRUGBANK:DB02222,http://purl.obolibrary.org/obo/DRUGBANK_DB02222,none +16.2617013,DRUGBANK:DB02260,http://purl.obolibrary.org/obo/DRUGBANK_DB02260,none +16.2617013,DRUGBANK:DB02271,http://purl.obolibrary.org/obo/DRUGBANK_DB02271,none +16.2617013,DRUGBANK:DB02311,http://purl.obolibrary.org/obo/DRUGBANK_DB02311,none +16.2617013,DRUGBANK:DB02322,http://purl.obolibrary.org/obo/DRUGBANK_DB02322,none +16.2617013,DRUGBANK:DB02448,http://purl.obolibrary.org/obo/DRUGBANK_DB02448,none +16.2617013,DRUGBANK:DB02472,http://purl.obolibrary.org/obo/DRUGBANK_DB02472,none +16.2617013,DRUGBANK:DB02498,http://purl.obolibrary.org/obo/DRUGBANK_DB02498,none +16.2617013,DRUGBANK:DB02519,http://purl.obolibrary.org/obo/DRUGBANK_DB02519,none +16.2617013,DRUGBANK:DB02592,http://purl.obolibrary.org/obo/DRUGBANK_DB02592,none +16.2617013,DRUGBANK:DB02619,http://purl.obolibrary.org/obo/DRUGBANK_DB02619,none +16.2617013,DRUGBANK:DB02646,http://purl.obolibrary.org/obo/DRUGBANK_DB02646,none +16.2617013,DRUGBANK:DB02660,http://purl.obolibrary.org/obo/DRUGBANK_DB02660,none +16.2617013,DRUGBANK:DB02663,http://purl.obolibrary.org/obo/DRUGBANK_DB02663,none +16.2617013,DRUGBANK:DB02688,http://purl.obolibrary.org/obo/DRUGBANK_DB02688,none +16.2617013,DRUGBANK:DB02716,http://purl.obolibrary.org/obo/DRUGBANK_DB02716,none +16.2617013,DRUGBANK:DB02741,http://purl.obolibrary.org/obo/DRUGBANK_DB02741,none +16.2617013,DRUGBANK:DB02761,http://purl.obolibrary.org/obo/DRUGBANK_DB02761,none +16.2617013,DRUGBANK:DB02787,http://purl.obolibrary.org/obo/DRUGBANK_DB02787,none +16.2617013,DRUGBANK:DB02799,http://purl.obolibrary.org/obo/DRUGBANK_DB02799,none +16.2617013,DRUGBANK:DB02812,http://purl.obolibrary.org/obo/DRUGBANK_DB02812,none +16.2617013,DRUGBANK:DB02884,http://purl.obolibrary.org/obo/DRUGBANK_DB02884,none +16.2617013,DRUGBANK:DB02924,http://purl.obolibrary.org/obo/DRUGBANK_DB02924,none +16.2617013,DRUGBANK:DB02941,http://purl.obolibrary.org/obo/DRUGBANK_DB02941,none +16.2617013,DRUGBANK:DB02951,http://purl.obolibrary.org/obo/DRUGBANK_DB02951,none +16.2617013,DRUGBANK:DB02987,http://purl.obolibrary.org/obo/DRUGBANK_DB02987,none +16.2617013,DRUGBANK:DB03007,http://purl.obolibrary.org/obo/DRUGBANK_DB03007,none +16.2617013,DRUGBANK:DB03008,http://purl.obolibrary.org/obo/DRUGBANK_DB03008,none +16.2617013,DRUGBANK:DB03020,http://purl.obolibrary.org/obo/DRUGBANK_DB03020,none +16.2617013,DRUGBANK:DB03132,http://purl.obolibrary.org/obo/DRUGBANK_DB03132,none +16.2617013,DRUGBANK:DB03136,http://purl.obolibrary.org/obo/DRUGBANK_DB03136,none +16.2617013,DRUGBANK:DB03157,http://purl.obolibrary.org/obo/DRUGBANK_DB03157,none +16.2617013,DRUGBANK:DB03212,http://purl.obolibrary.org/obo/DRUGBANK_DB03212,none +16.2617013,DRUGBANK:DB03215,http://purl.obolibrary.org/obo/DRUGBANK_DB03215,none +16.2617013,DRUGBANK:DB03230,http://purl.obolibrary.org/obo/DRUGBANK_DB03230,none +16.2617013,DRUGBANK:DB03239,http://purl.obolibrary.org/obo/DRUGBANK_DB03239,none +16.2617013,DRUGBANK:DB03422,http://purl.obolibrary.org/obo/DRUGBANK_DB03422,none +16.2617013,DRUGBANK:DB03436,http://purl.obolibrary.org/obo/DRUGBANK_DB03436,none +16.2617013,DRUGBANK:DB03446,http://purl.obolibrary.org/obo/DRUGBANK_DB03446,none +16.2617013,DRUGBANK:DB03451,http://purl.obolibrary.org/obo/DRUGBANK_DB03451,none +16.2617013,DRUGBANK:DB03466,http://purl.obolibrary.org/obo/DRUGBANK_DB03466,none +16.2617013,DRUGBANK:DB03565,http://purl.obolibrary.org/obo/DRUGBANK_DB03565,none +16.2617013,DRUGBANK:DB03726,http://purl.obolibrary.org/obo/DRUGBANK_DB03726,none +16.2617013,DRUGBANK:DB03735,http://purl.obolibrary.org/obo/DRUGBANK_DB03735,none +16.2617013,DRUGBANK:DB03781,http://purl.obolibrary.org/obo/DRUGBANK_DB03781,none +16.2617013,DRUGBANK:DB03829,http://purl.obolibrary.org/obo/DRUGBANK_DB03829,none +16.2617013,DRUGBANK:DB03834,http://purl.obolibrary.org/obo/DRUGBANK_DB03834,none +16.2617013,DRUGBANK:DB03855,http://purl.obolibrary.org/obo/DRUGBANK_DB03855,none +16.2617013,DRUGBANK:DB03889,http://purl.obolibrary.org/obo/DRUGBANK_DB03889,none +16.2617013,DRUGBANK:DB03894,http://purl.obolibrary.org/obo/DRUGBANK_DB03894,none +16.2617013,DRUGBANK:DB03901,http://purl.obolibrary.org/obo/DRUGBANK_DB03901,none +16.2617013,DRUGBANK:DB04035,http://purl.obolibrary.org/obo/DRUGBANK_DB04035,none +16.2617013,DRUGBANK:DB04047,http://purl.obolibrary.org/obo/DRUGBANK_DB04047,none +16.2617013,DRUGBANK:DB04065,http://purl.obolibrary.org/obo/DRUGBANK_DB04065,none +16.2617013,DRUGBANK:DB04099,http://purl.obolibrary.org/obo/DRUGBANK_DB04099,none +16.2617013,DRUGBANK:DB04110,http://purl.obolibrary.org/obo/DRUGBANK_DB04110,none +16.2617013,DRUGBANK:DB04191,http://purl.obolibrary.org/obo/DRUGBANK_DB04191,none +16.2617013,DRUGBANK:DB04279,http://purl.obolibrary.org/obo/DRUGBANK_DB04279,none +16.2617013,DRUGBANK:DB04295,http://purl.obolibrary.org/obo/DRUGBANK_DB04295,none +16.2617013,DRUGBANK:DB04321,http://purl.obolibrary.org/obo/DRUGBANK_DB04321,none +16.2617013,DRUGBANK:DB04346,http://purl.obolibrary.org/obo/DRUGBANK_DB04346,none +16.2617013,DRUGBANK:DB04352,http://purl.obolibrary.org/obo/DRUGBANK_DB04352,none +16.2617013,DRUGBANK:DB04406,http://purl.obolibrary.org/obo/DRUGBANK_DB04406,none +16.2617013,DRUGBANK:DB04434,http://purl.obolibrary.org/obo/DRUGBANK_DB04434,none +16.2617013,DRUGBANK:DB04438,http://purl.obolibrary.org/obo/DRUGBANK_DB04438,none +16.2617013,DRUGBANK:DB04476,http://purl.obolibrary.org/obo/DRUGBANK_DB04476,none +16.2617013,DRUGBANK:DB04516,http://purl.obolibrary.org/obo/DRUGBANK_DB04516,none +16.2617013,DRUGBANK:DB04529,http://purl.obolibrary.org/obo/DRUGBANK_DB04529,none +16.2617013,DRUGBANK:DB04551,http://purl.obolibrary.org/obo/DRUGBANK_DB04551,none +16.2617013,DRUGBANK:DB04568,http://purl.obolibrary.org/obo/DRUGBANK_DB04568,none +16.2617013,DRUGBANK:DB04637,http://purl.obolibrary.org/obo/DRUGBANK_DB04637,none +16.2617013,DRUGBANK:DB04700,http://purl.obolibrary.org/obo/DRUGBANK_DB04700,none +16.2617013,DRUGBANK:DB04776,http://purl.obolibrary.org/obo/DRUGBANK_DB04776,none +16.2617013,DRUGBANK:DB04867,http://purl.obolibrary.org/obo/DRUGBANK_DB04867,none +16.2617013,DRUGBANK:DB04904,http://purl.obolibrary.org/obo/DRUGBANK_DB04904,none +16.2617013,DRUGBANK:DB04921,http://purl.obolibrary.org/obo/DRUGBANK_DB04921,none +16.2617013,DRUGBANK:DB04986,http://purl.obolibrary.org/obo/DRUGBANK_DB04986,none +16.2617013,DRUGBANK:DB05014,http://purl.obolibrary.org/obo/DRUGBANK_DB05014,none +16.2617013,DRUGBANK:DB05048,http://purl.obolibrary.org/obo/DRUGBANK_DB05048,none +16.2617013,DRUGBANK:DB05055,http://purl.obolibrary.org/obo/DRUGBANK_DB05055,none +16.2617013,DRUGBANK:DB05091,http://purl.obolibrary.org/obo/DRUGBANK_DB05091,none +16.2617013,DRUGBANK:DB05115,http://purl.obolibrary.org/obo/DRUGBANK_DB05115,none +16.2617013,DRUGBANK:DB05122,http://purl.obolibrary.org/obo/DRUGBANK_DB05122,none +16.2617013,DRUGBANK:DB05146,http://purl.obolibrary.org/obo/DRUGBANK_DB05146,none +16.2617013,DRUGBANK:DB05152,http://purl.obolibrary.org/obo/DRUGBANK_DB05152,none +16.2617013,DRUGBANK:DB05177,http://purl.obolibrary.org/obo/DRUGBANK_DB05177,none +16.2617013,DRUGBANK:DB05234,http://purl.obolibrary.org/obo/DRUGBANK_DB05234,none +16.2617013,DRUGBANK:DB05236,http://purl.obolibrary.org/obo/DRUGBANK_DB05236,none +16.2617013,DRUGBANK:DB05244,http://purl.obolibrary.org/obo/DRUGBANK_DB05244,none +16.2617013,DRUGBANK:DB05326,http://purl.obolibrary.org/obo/DRUGBANK_DB05326,none +16.2617013,DRUGBANK:DB05405,http://purl.obolibrary.org/obo/DRUGBANK_DB05405,none +16.2617013,DRUGBANK:DB05417,http://purl.obolibrary.org/obo/DRUGBANK_DB05417,none +16.2617013,DRUGBANK:DB05430,http://purl.obolibrary.org/obo/DRUGBANK_DB05430,none +16.2617013,DRUGBANK:DB05458,http://purl.obolibrary.org/obo/DRUGBANK_DB05458,none +16.2617013,DRUGBANK:DB05478,http://purl.obolibrary.org/obo/DRUGBANK_DB05478,none +16.2617013,DRUGBANK:DB05490,http://purl.obolibrary.org/obo/DRUGBANK_DB05490,none +16.2617013,DRUGBANK:DB05511,http://purl.obolibrary.org/obo/DRUGBANK_DB05511,none +16.2617013,DRUGBANK:DB05533,http://purl.obolibrary.org/obo/DRUGBANK_DB05533,none +16.2617013,DRUGBANK:DB05596,http://purl.obolibrary.org/obo/DRUGBANK_DB05596,none +16.2617013,DRUGBANK:DB05714,http://purl.obolibrary.org/obo/DRUGBANK_DB05714,none +16.2617013,DRUGBANK:DB05755,http://purl.obolibrary.org/obo/DRUGBANK_DB05755,none +16.2617013,DRUGBANK:DB05797,http://purl.obolibrary.org/obo/DRUGBANK_DB05797,none +16.2617013,DRUGBANK:DB05800,http://purl.obolibrary.org/obo/DRUGBANK_DB05800,none +16.2617013,DRUGBANK:DB05811,http://purl.obolibrary.org/obo/DRUGBANK_DB05811,none +16.2617013,DRUGBANK:DB05840,http://purl.obolibrary.org/obo/DRUGBANK_DB05840,none +16.2617013,DRUGBANK:DB05841,http://purl.obolibrary.org/obo/DRUGBANK_DB05841,none +16.2617013,DRUGBANK:DB05842,http://purl.obolibrary.org/obo/DRUGBANK_DB05842,none +16.2617013,DRUGBANK:DB05852,http://purl.obolibrary.org/obo/DRUGBANK_DB05852,none +16.2617013,DRUGBANK:DB05854,http://purl.obolibrary.org/obo/DRUGBANK_DB05854,none +16.2617013,DRUGBANK:DB05860,http://purl.obolibrary.org/obo/DRUGBANK_DB05860,none +16.2617013,DRUGBANK:DB05932,http://purl.obolibrary.org/obo/DRUGBANK_DB05932,none +16.2617013,DRUGBANK:DB06005,http://purl.obolibrary.org/obo/DRUGBANK_DB06005,none +16.2617013,DRUGBANK:DB06045,http://purl.obolibrary.org/obo/DRUGBANK_DB06045,none +16.2617013,DRUGBANK:DB06071,http://purl.obolibrary.org/obo/DRUGBANK_DB06071,none +16.2617013,DRUGBANK:DB06103,http://purl.obolibrary.org/obo/DRUGBANK_DB06103,none +16.2617013,DRUGBANK:DB06161,http://purl.obolibrary.org/obo/DRUGBANK_DB06161,none +16.2617013,DRUGBANK:DB06166,http://purl.obolibrary.org/obo/DRUGBANK_DB06166,none +16.2617013,DRUGBANK:DB06248,http://purl.obolibrary.org/obo/DRUGBANK_DB06248,none +16.2617013,DRUGBANK:DB06322,http://purl.obolibrary.org/obo/DRUGBANK_DB06322,none +16.2617013,DRUGBANK:DB06374,http://purl.obolibrary.org/obo/DRUGBANK_DB06374,none +16.2617013,DRUGBANK:DB06449,http://purl.obolibrary.org/obo/DRUGBANK_DB06449,none +16.2617013,DRUGBANK:DB06481,http://purl.obolibrary.org/obo/DRUGBANK_DB06481,none +16.2617013,DRUGBANK:DB06494,http://purl.obolibrary.org/obo/DRUGBANK_DB06494,none +16.2617013,DRUGBANK:DB06640,http://purl.obolibrary.org/obo/DRUGBANK_DB06640,none +16.2617013,DRUGBANK:DB06669,http://purl.obolibrary.org/obo/DRUGBANK_DB06669,none +16.2617013,DRUGBANK:DB07110,http://purl.obolibrary.org/obo/DRUGBANK_DB07110,none +16.2617013,DRUGBANK:DB07278,http://purl.obolibrary.org/obo/DRUGBANK_DB07278,none +16.2617013,DRUGBANK:DB07330,http://purl.obolibrary.org/obo/DRUGBANK_DB07330,none +16.2617013,DRUGBANK:DB07365,http://purl.obolibrary.org/obo/DRUGBANK_DB07365,none +16.2617013,DRUGBANK:DB07493,http://purl.obolibrary.org/obo/DRUGBANK_DB07493,none +16.2617013,DRUGBANK:DB07778,http://purl.obolibrary.org/obo/DRUGBANK_DB07778,none +16.2617013,DRUGBANK:DB07914,http://purl.obolibrary.org/obo/DRUGBANK_DB07914,none +16.2617013,DRUGBANK:DB08060,http://purl.obolibrary.org/obo/DRUGBANK_DB08060,none +16.2617013,DRUGBANK:DB08078,http://purl.obolibrary.org/obo/DRUGBANK_DB08078,none +16.2617013,DRUGBANK:DB08079,http://purl.obolibrary.org/obo/DRUGBANK_DB08079,none +16.2617013,DRUGBANK:DB08238,http://purl.obolibrary.org/obo/DRUGBANK_DB08238,none +16.2617013,DRUGBANK:DB08271,http://purl.obolibrary.org/obo/DRUGBANK_DB08271,none +16.2617013,DRUGBANK:DB08570,http://purl.obolibrary.org/obo/DRUGBANK_DB08570,none +16.2617013,DRUGBANK:DB08573,http://purl.obolibrary.org/obo/DRUGBANK_DB08573,none +16.2617013,DRUGBANK:DB08767,http://purl.obolibrary.org/obo/DRUGBANK_DB08767,none +16.2617013,DRUGBANK:DB08790,http://purl.obolibrary.org/obo/DRUGBANK_DB08790,none +16.2617013,DRUGBANK:DB08803,http://purl.obolibrary.org/obo/DRUGBANK_DB08803,none +16.2617013,DRUGBANK:DB08998,http://purl.obolibrary.org/obo/DRUGBANK_DB08998,none +16.2617013,DRUGBANK:DB09137,http://purl.obolibrary.org/obo/DRUGBANK_DB09137,none +16.2617013,DRUGBANK:DB09172,http://purl.obolibrary.org/obo/DRUGBANK_DB09172,none +16.2617013,DRUGBANK:DB09178,http://purl.obolibrary.org/obo/DRUGBANK_DB09178,none +16.2617013,DRUGBANK:DB09179,http://purl.obolibrary.org/obo/DRUGBANK_DB09179,none +16.2617013,DRUGBANK:DB09182,http://purl.obolibrary.org/obo/DRUGBANK_DB09182,none +16.2617013,DRUGBANK:DB09305,http://purl.obolibrary.org/obo/DRUGBANK_DB09305,none +16.2617013,DRUGBANK:DB09329,http://purl.obolibrary.org/obo/DRUGBANK_DB09329,none +16.2617013,DRUGBANK:DB09340,http://purl.obolibrary.org/obo/DRUGBANK_DB09340,none +16.2617013,DRUGBANK:DB09364,http://purl.obolibrary.org/obo/DRUGBANK_DB09364,none +16.2617013,DRUGBANK:DB09376,http://purl.obolibrary.org/obo/DRUGBANK_DB09376,none +16.2617013,DRUGBANK:DB10332,http://purl.obolibrary.org/obo/DRUGBANK_DB10332,none +16.2617013,DRUGBANK:DB10386,http://purl.obolibrary.org/obo/DRUGBANK_DB10386,none +16.2617013,DRUGBANK:DB10399,http://purl.obolibrary.org/obo/DRUGBANK_DB10399,none +16.2617013,DRUGBANK:DB10412,http://purl.obolibrary.org/obo/DRUGBANK_DB10412,none +16.2617013,DRUGBANK:DB10459,http://purl.obolibrary.org/obo/DRUGBANK_DB10459,none +16.2617013,DRUGBANK:DB10480,http://purl.obolibrary.org/obo/DRUGBANK_DB10480,none +16.2617013,DRUGBANK:DB10604,http://purl.obolibrary.org/obo/DRUGBANK_DB10604,none +16.2617013,DRUGBANK:DB10704,http://purl.obolibrary.org/obo/DRUGBANK_DB10704,none +16.2617013,DRUGBANK:DB10744,http://purl.obolibrary.org/obo/DRUGBANK_DB10744,none +16.2617013,DRUGBANK:DB10746,http://purl.obolibrary.org/obo/DRUGBANK_DB10746,none +16.2617013,DRUGBANK:DB10820,http://purl.obolibrary.org/obo/DRUGBANK_DB10820,none +16.2617013,DRUGBANK:DB10975,http://purl.obolibrary.org/obo/DRUGBANK_DB10975,none +16.2617013,DRUGBANK:DB11066,http://purl.obolibrary.org/obo/DRUGBANK_DB11066,none +16.2617013,DRUGBANK:DB11108,http://purl.obolibrary.org/obo/DRUGBANK_DB11108,none +16.2617013,DRUGBANK:DB11271,http://purl.obolibrary.org/obo/DRUGBANK_DB11271,none +16.2617013,DRUGBANK:DB11361,http://purl.obolibrary.org/obo/DRUGBANK_DB11361,none +16.2617013,DRUGBANK:DB11645,http://purl.obolibrary.org/obo/DRUGBANK_DB11645,none +16.2617013,DRUGBANK:DB11658,http://purl.obolibrary.org/obo/DRUGBANK_DB11658,none +16.2617013,DRUGBANK:DB11694,http://purl.obolibrary.org/obo/DRUGBANK_DB11694,none +16.2617013,DRUGBANK:DB11711,http://purl.obolibrary.org/obo/DRUGBANK_DB11711,none +16.2617013,DRUGBANK:DB11773,http://purl.obolibrary.org/obo/DRUGBANK_DB11773,none +16.2617013,DRUGBANK:DB11798,http://purl.obolibrary.org/obo/DRUGBANK_DB11798,none +16.2617013,DRUGBANK:DB11819,http://purl.obolibrary.org/obo/DRUGBANK_DB11819,none +16.2617013,DRUGBANK:DB11879,http://purl.obolibrary.org/obo/DRUGBANK_DB11879,none +16.2617013,DRUGBANK:DB11917,http://purl.obolibrary.org/obo/DRUGBANK_DB11917,none +16.2617013,DRUGBANK:DB11923,http://purl.obolibrary.org/obo/DRUGBANK_DB11923,none +16.2617013,DRUGBANK:DB11928,http://purl.obolibrary.org/obo/DRUGBANK_DB11928,none +16.2617013,DRUGBANK:DB11938,http://purl.obolibrary.org/obo/DRUGBANK_DB11938,none +16.2617013,DRUGBANK:DB11939,http://purl.obolibrary.org/obo/DRUGBANK_DB11939,none +16.2617013,DRUGBANK:DB11961,http://purl.obolibrary.org/obo/DRUGBANK_DB11961,none +16.2617013,DRUGBANK:DB11968,http://purl.obolibrary.org/obo/DRUGBANK_DB11968,none +16.2617013,DRUGBANK:DB11973,http://purl.obolibrary.org/obo/DRUGBANK_DB11973,none +16.2617013,DRUGBANK:DB12030,http://purl.obolibrary.org/obo/DRUGBANK_DB12030,none +16.2617013,DRUGBANK:DB12069,http://purl.obolibrary.org/obo/DRUGBANK_DB12069,none +16.2617013,DRUGBANK:DB12105,http://purl.obolibrary.org/obo/DRUGBANK_DB12105,none +16.2617013,DRUGBANK:DB12183,http://purl.obolibrary.org/obo/DRUGBANK_DB12183,none +16.2617013,DRUGBANK:DB12227,http://purl.obolibrary.org/obo/DRUGBANK_DB12227,none +16.2617013,DRUGBANK:DB12312,http://purl.obolibrary.org/obo/DRUGBANK_DB12312,none +16.2617013,DRUGBANK:DB12346,http://purl.obolibrary.org/obo/DRUGBANK_DB12346,none +16.2617013,DRUGBANK:DB12360,http://purl.obolibrary.org/obo/DRUGBANK_DB12360,none +16.2617013,DRUGBANK:DB12389,http://purl.obolibrary.org/obo/DRUGBANK_DB12389,none +16.2617013,DRUGBANK:DB12411,http://purl.obolibrary.org/obo/DRUGBANK_DB12411,none +16.2617013,DRUGBANK:DB12433,http://purl.obolibrary.org/obo/DRUGBANK_DB12433,none +16.2617013,DRUGBANK:DB12438,http://purl.obolibrary.org/obo/DRUGBANK_DB12438,none +16.2617013,DRUGBANK:DB12443,http://purl.obolibrary.org/obo/DRUGBANK_DB12443,none +16.2617013,DRUGBANK:DB12462,http://purl.obolibrary.org/obo/DRUGBANK_DB12462,none +16.2617013,DRUGBANK:DB12470,http://purl.obolibrary.org/obo/DRUGBANK_DB12470,none +16.2617013,DRUGBANK:DB12512,http://purl.obolibrary.org/obo/DRUGBANK_DB12512,none +16.2617013,DRUGBANK:DB12532,http://purl.obolibrary.org/obo/DRUGBANK_DB12532,none +16.2617013,DRUGBANK:DB12533,http://purl.obolibrary.org/obo/DRUGBANK_DB12533,none +16.2617013,DRUGBANK:DB12542,http://purl.obolibrary.org/obo/DRUGBANK_DB12542,none +16.2617013,DRUGBANK:DB12564,http://purl.obolibrary.org/obo/DRUGBANK_DB12564,none +16.2617013,DRUGBANK:DB12573,http://purl.obolibrary.org/obo/DRUGBANK_DB12573,none +16.2617013,DRUGBANK:DB12578,http://purl.obolibrary.org/obo/DRUGBANK_DB12578,none +16.2617013,DRUGBANK:DB12660,http://purl.obolibrary.org/obo/DRUGBANK_DB12660,none +16.2617013,DRUGBANK:DB12664,http://purl.obolibrary.org/obo/DRUGBANK_DB12664,none +16.2617013,DRUGBANK:DB12668,http://purl.obolibrary.org/obo/DRUGBANK_DB12668,none +16.2617013,DRUGBANK:DB12676,http://purl.obolibrary.org/obo/DRUGBANK_DB12676,none +16.2617013,DRUGBANK:DB12714,http://purl.obolibrary.org/obo/DRUGBANK_DB12714,none +16.2617013,DRUGBANK:DB12721,http://purl.obolibrary.org/obo/DRUGBANK_DB12721,none +16.2617013,DRUGBANK:DB12741,http://purl.obolibrary.org/obo/DRUGBANK_DB12741,none +16.2617013,DRUGBANK:DB12746,http://purl.obolibrary.org/obo/DRUGBANK_DB12746,none +16.2617013,DRUGBANK:DB12757,http://purl.obolibrary.org/obo/DRUGBANK_DB12757,none +16.2617013,DRUGBANK:DB12759,http://purl.obolibrary.org/obo/DRUGBANK_DB12759,none +16.2617013,DRUGBANK:DB12760,http://purl.obolibrary.org/obo/DRUGBANK_DB12760,none +16.2617013,DRUGBANK:DB12806,http://purl.obolibrary.org/obo/DRUGBANK_DB12806,none +16.2617013,DRUGBANK:DB12814,http://purl.obolibrary.org/obo/DRUGBANK_DB12814,none +16.2617013,DRUGBANK:DB12842,http://purl.obolibrary.org/obo/DRUGBANK_DB12842,none +16.2617013,DRUGBANK:DB12854,http://purl.obolibrary.org/obo/DRUGBANK_DB12854,none +16.2617013,DRUGBANK:DB12858,http://purl.obolibrary.org/obo/DRUGBANK_DB12858,none +16.2617013,DRUGBANK:DB12897,http://purl.obolibrary.org/obo/DRUGBANK_DB12897,none +16.2617013,DRUGBANK:DB12898,http://purl.obolibrary.org/obo/DRUGBANK_DB12898,none +16.2617013,DRUGBANK:DB12908,http://purl.obolibrary.org/obo/DRUGBANK_DB12908,none +16.2617013,DRUGBANK:DB12959,http://purl.obolibrary.org/obo/DRUGBANK_DB12959,none +16.2617013,DRUGBANK:DB13000,http://purl.obolibrary.org/obo/DRUGBANK_DB13000,none +16.2617013,DRUGBANK:DB13019,http://purl.obolibrary.org/obo/DRUGBANK_DB13019,none +16.2617013,DRUGBANK:DB13020,http://purl.obolibrary.org/obo/DRUGBANK_DB13020,none +16.2617013,DRUGBANK:DB13040,http://purl.obolibrary.org/obo/DRUGBANK_DB13040,none +16.2617013,DRUGBANK:DB13078,http://purl.obolibrary.org/obo/DRUGBANK_DB13078,none +16.2617013,DRUGBANK:DB13120,http://purl.obolibrary.org/obo/DRUGBANK_DB13120,none +16.2617013,DRUGBANK:DB13214,http://purl.obolibrary.org/obo/DRUGBANK_DB13214,none +16.2617013,DRUGBANK:DB13284,http://purl.obolibrary.org/obo/DRUGBANK_DB13284,none +16.2617013,DRUGBANK:DB13285,http://purl.obolibrary.org/obo/DRUGBANK_DB13285,none +16.2617013,DRUGBANK:DB13294,http://purl.obolibrary.org/obo/DRUGBANK_DB13294,none +16.2617013,DRUGBANK:DB13311,http://purl.obolibrary.org/obo/DRUGBANK_DB13311,none +16.2617013,DRUGBANK:DB13333,http://purl.obolibrary.org/obo/DRUGBANK_DB13333,none +16.2617013,DRUGBANK:DB13334,http://purl.obolibrary.org/obo/DRUGBANK_DB13334,none +16.2617013,DRUGBANK:DB13389,http://purl.obolibrary.org/obo/DRUGBANK_DB13389,none +16.2617013,DRUGBANK:DB13422,http://purl.obolibrary.org/obo/DRUGBANK_DB13422,none +16.2617013,DRUGBANK:DB13439,http://purl.obolibrary.org/obo/DRUGBANK_DB13439,none +16.2617013,DRUGBANK:DB13451,http://purl.obolibrary.org/obo/DRUGBANK_DB13451,none +16.2617013,DRUGBANK:DB13458,http://purl.obolibrary.org/obo/DRUGBANK_DB13458,none +16.2617013,DRUGBANK:DB13479,http://purl.obolibrary.org/obo/DRUGBANK_DB13479,none +16.2617013,DRUGBANK:DB13485,http://purl.obolibrary.org/obo/DRUGBANK_DB13485,none +16.2617013,DRUGBANK:DB13542,http://purl.obolibrary.org/obo/DRUGBANK_DB13542,none +16.2617013,DRUGBANK:DB13595,http://purl.obolibrary.org/obo/DRUGBANK_DB13595,none +16.2617013,DRUGBANK:DB13650,http://purl.obolibrary.org/obo/DRUGBANK_DB13650,none +16.2617013,DRUGBANK:DB13671,http://purl.obolibrary.org/obo/DRUGBANK_DB13671,none +16.2617013,DRUGBANK:DB13686,http://purl.obolibrary.org/obo/DRUGBANK_DB13686,none +16.2617013,DRUGBANK:DB13703,http://purl.obolibrary.org/obo/DRUGBANK_DB13703,none +16.2617013,DRUGBANK:DB13719,http://purl.obolibrary.org/obo/DRUGBANK_DB13719,none +16.2617013,DRUGBANK:DB13760,http://purl.obolibrary.org/obo/DRUGBANK_DB13760,none +16.2617013,DRUGBANK:DB13771,http://purl.obolibrary.org/obo/DRUGBANK_DB13771,none +16.2617013,DRUGBANK:DB13797,http://purl.obolibrary.org/obo/DRUGBANK_DB13797,none +16.2617013,DRUGBANK:DB13815,http://purl.obolibrary.org/obo/DRUGBANK_DB13815,none +16.2617013,DRUGBANK:DB13858,http://purl.obolibrary.org/obo/DRUGBANK_DB13858,none +16.2617013,DRUGBANK:DB13884,http://purl.obolibrary.org/obo/DRUGBANK_DB13884,none +16.2617013,DRUGBANK:DB13947,http://purl.obolibrary.org/obo/DRUGBANK_DB13947,none +16.2617013,DRUGBANK:DB13970,http://purl.obolibrary.org/obo/DRUGBANK_DB13970,none +16.2617013,DRUGBANK:DB14093,http://purl.obolibrary.org/obo/DRUGBANK_DB14093,none +16.2617013,DRUGBANK:DB14115,http://purl.obolibrary.org/obo/DRUGBANK_DB14115,none +16.2617013,DRUGBANK:DB14137,http://purl.obolibrary.org/obo/DRUGBANK_DB14137,none +16.2617013,DRUGBANK:DB14328,http://purl.obolibrary.org/obo/DRUGBANK_DB14328,none +16.2617013,DRUGBANK:DB14541,http://purl.obolibrary.org/obo/DRUGBANK_DB14541,none +16.2617013,DRUGBANK:DB14584,http://purl.obolibrary.org/obo/DRUGBANK_DB14584,none +16.2617013,DRUGBANK:DB14624,http://purl.obolibrary.org/obo/DRUGBANK_DB14624,none +16.2617013,DRUGBANK:DB14683,http://purl.obolibrary.org/obo/DRUGBANK_DB14683,none +16.2617013,DRUGBANK:DB14700,http://purl.obolibrary.org/obo/DRUGBANK_DB14700,none +16.2617013,DRUGBANK:DB14703,http://purl.obolibrary.org/obo/DRUGBANK_DB14703,none +16.2617013,DRUGBANK:DB14730,http://purl.obolibrary.org/obo/DRUGBANK_DB14730,none +16.2617013,DRUGBANK:DB14768,http://purl.obolibrary.org/obo/DRUGBANK_DB14768,none +16.2617013,DRUGBANK:DB14783,http://purl.obolibrary.org/obo/DRUGBANK_DB14783,none +16.2617013,DRUGBANK:DB14787,http://purl.obolibrary.org/obo/DRUGBANK_DB14787,none +16.2617013,DRUGBANK:DB14794,http://purl.obolibrary.org/obo/DRUGBANK_DB14794,none +16.2617013,DRUGBANK:DB14819,http://purl.obolibrary.org/obo/DRUGBANK_DB14819,none +16.2617013,DRUGBANK:DB14827,http://purl.obolibrary.org/obo/DRUGBANK_DB14827,none +16.2617013,DRUGBANK:DB14831,http://purl.obolibrary.org/obo/DRUGBANK_DB14831,none +16.2617013,DRUGBANK:DB14858,http://purl.obolibrary.org/obo/DRUGBANK_DB14858,none +16.2617013,DRUGBANK:DB14871,http://purl.obolibrary.org/obo/DRUGBANK_DB14871,none +16.2617013,DRUGBANK:DB14885,http://purl.obolibrary.org/obo/DRUGBANK_DB14885,none +16.2617013,DRUGBANK:DB14892,http://purl.obolibrary.org/obo/DRUGBANK_DB14892,none +16.2617013,DRUGBANK:DB14898,http://purl.obolibrary.org/obo/DRUGBANK_DB14898,none +16.2617013,DRUGBANK:DB14900,http://purl.obolibrary.org/obo/DRUGBANK_DB14900,none +16.2617013,DRUGBANK:DB14928,http://purl.obolibrary.org/obo/DRUGBANK_DB14928,none +16.2617013,DRUGBANK:DB14931,http://purl.obolibrary.org/obo/DRUGBANK_DB14931,none +16.2617013,DRUGBANK:DB14934,http://purl.obolibrary.org/obo/DRUGBANK_DB14934,none +16.2617013,DRUGBANK:DB14940,http://purl.obolibrary.org/obo/DRUGBANK_DB14940,none +16.2617013,DRUGBANK:DB14941,http://purl.obolibrary.org/obo/DRUGBANK_DB14941,none +16.2617013,DRUGBANK:DB14948,http://purl.obolibrary.org/obo/DRUGBANK_DB14948,none +16.2617013,DRUGBANK:DB14955,http://purl.obolibrary.org/obo/DRUGBANK_DB14955,none +16.2617013,DRUGBANK:DB14967,http://purl.obolibrary.org/obo/DRUGBANK_DB14967,none +16.2617013,DRUGBANK:DB15012,http://purl.obolibrary.org/obo/DRUGBANK_DB15012,none +16.2617013,DRUGBANK:DB15024,http://purl.obolibrary.org/obo/DRUGBANK_DB15024,none +16.2617013,DRUGBANK:DB15026,http://purl.obolibrary.org/obo/DRUGBANK_DB15026,none +16.2617013,DRUGBANK:DB15041,http://purl.obolibrary.org/obo/DRUGBANK_DB15041,none +16.2617013,DRUGBANK:DB15053,http://purl.obolibrary.org/obo/DRUGBANK_DB15053,none +16.2617013,DRUGBANK:DB15065,http://purl.obolibrary.org/obo/DRUGBANK_DB15065,none +16.2617013,DRUGBANK:DB15080,http://purl.obolibrary.org/obo/DRUGBANK_DB15080,none +16.2617013,DRUGBANK:DB15082,http://purl.obolibrary.org/obo/DRUGBANK_DB15082,none +16.2617013,DRUGBANK:DB15085,http://purl.obolibrary.org/obo/DRUGBANK_DB15085,none +16.2617013,DRUGBANK:DB15092,http://purl.obolibrary.org/obo/DRUGBANK_DB15092,none +16.2617013,DRUGBANK:DB15099,http://purl.obolibrary.org/obo/DRUGBANK_DB15099,none +16.2617013,DRUGBANK:DB15105,http://purl.obolibrary.org/obo/DRUGBANK_DB15105,none +16.2617013,DRUGBANK:DB15123,http://purl.obolibrary.org/obo/DRUGBANK_DB15123,none +16.2617013,DRUGBANK:DB15145,http://purl.obolibrary.org/obo/DRUGBANK_DB15145,none +16.2617013,DRUGBANK:DB15157,http://purl.obolibrary.org/obo/DRUGBANK_DB15157,none +16.2617013,DRUGBANK:DB15165,http://purl.obolibrary.org/obo/DRUGBANK_DB15165,none +16.2617013,DRUGBANK:DB15168,http://purl.obolibrary.org/obo/DRUGBANK_DB15168,none +16.2617013,DRUGBANK:DB15173,http://purl.obolibrary.org/obo/DRUGBANK_DB15173,none +16.2617013,DRUGBANK:DB15190,http://purl.obolibrary.org/obo/DRUGBANK_DB15190,none +16.2617013,DRUGBANK:DB15219,http://purl.obolibrary.org/obo/DRUGBANK_DB15219,none +16.2617013,DRUGBANK:DB15221,http://purl.obolibrary.org/obo/DRUGBANK_DB15221,none +16.2617013,DRUGBANK:DB15223,http://purl.obolibrary.org/obo/DRUGBANK_DB15223,none +16.2617013,DRUGBANK:DB15248,http://purl.obolibrary.org/obo/DRUGBANK_DB15248,none +16.2617013,DRUGBANK:DB15253,http://purl.obolibrary.org/obo/DRUGBANK_DB15253,none +16.2617013,DRUGBANK:DB15262,http://purl.obolibrary.org/obo/DRUGBANK_DB15262,none +16.2617013,DRUGBANK:DB15264,http://purl.obolibrary.org/obo/DRUGBANK_DB15264,none +16.2617013,DRUGBANK:DB15268,http://purl.obolibrary.org/obo/DRUGBANK_DB15268,none +16.2617013,DRUGBANK:DB15292,http://purl.obolibrary.org/obo/DRUGBANK_DB15292,none +16.2617013,DRUGBANK:DB15321,http://purl.obolibrary.org/obo/DRUGBANK_DB15321,none +16.2617013,DRUGBANK:DB15324,http://purl.obolibrary.org/obo/DRUGBANK_DB15324,none +16.2617013,DRUGBANK:DB15332,http://purl.obolibrary.org/obo/DRUGBANK_DB15332,none +16.2617013,DRUGBANK:DB15341,http://purl.obolibrary.org/obo/DRUGBANK_DB15341,none +16.2617013,DRUGBANK:DB15347,http://purl.obolibrary.org/obo/DRUGBANK_DB15347,none +16.2617013,DRUGBANK:DB15367,http://purl.obolibrary.org/obo/DRUGBANK_DB15367,none +16.2617013,DRUGBANK:DB15370,http://purl.obolibrary.org/obo/DRUGBANK_DB15370,none +16.2617013,DRUGBANK:DB15374,http://purl.obolibrary.org/obo/DRUGBANK_DB15374,none +16.2617013,DRUGBANK:DB15376,http://purl.obolibrary.org/obo/DRUGBANK_DB15376,none +16.2617013,DRUGBANK:DB15382,http://purl.obolibrary.org/obo/DRUGBANK_DB15382,none +16.2617013,DRUGBANK:DB15386,http://purl.obolibrary.org/obo/DRUGBANK_DB15386,none +16.2617013,DRUGBANK:DB15396,http://purl.obolibrary.org/obo/DRUGBANK_DB15396,none +16.2617013,DRUGBANK:DB15400,http://purl.obolibrary.org/obo/DRUGBANK_DB15400,none +16.2617013,DRUGBANK:DB15407,http://purl.obolibrary.org/obo/DRUGBANK_DB15407,none +16.2617013,DRUGBANK:DB15409,http://purl.obolibrary.org/obo/DRUGBANK_DB15409,none +16.2617013,DRUGBANK:DB15414,http://purl.obolibrary.org/obo/DRUGBANK_DB15414,none +16.2617013,DRUGBANK:DB15416,http://purl.obolibrary.org/obo/DRUGBANK_DB15416,none +16.2617013,DRUGBANK:DB15422,http://purl.obolibrary.org/obo/DRUGBANK_DB15422,none +16.2617013,DRUGBANK:DB15431,http://purl.obolibrary.org/obo/DRUGBANK_DB15431,none +16.2617013,DRUGBANK:DB15441,http://purl.obolibrary.org/obo/DRUGBANK_DB15441,none +16.2617013,DRUGBANK:DB15448,http://purl.obolibrary.org/obo/DRUGBANK_DB15448,none +16.2617013,DRUGBANK:DB15449,http://purl.obolibrary.org/obo/DRUGBANK_DB15449,none +16.2617013,DRUGBANK:DB15479,http://purl.obolibrary.org/obo/DRUGBANK_DB15479,none +16.2617013,DRUGBANK:DB15498,http://purl.obolibrary.org/obo/DRUGBANK_DB15498,none +16.2617013,DRUGBANK:DB15544,http://purl.obolibrary.org/obo/DRUGBANK_DB15544,none +16.2617013,DRUGBANK:DB15557,http://purl.obolibrary.org/obo/DRUGBANK_DB15557,none +16.2617013,DRUGBANK:DB15568,http://purl.obolibrary.org/obo/DRUGBANK_DB15568,none +16.2617013,DRUGBANK:DB15599,http://purl.obolibrary.org/obo/DRUGBANK_DB15599,none +16.2617013,DRUGBANK:DB15612,http://purl.obolibrary.org/obo/DRUGBANK_DB15612,none +16.2617013,DRUGBANK:DB15661,http://purl.obolibrary.org/obo/DRUGBANK_DB15661,none +16.2617013,DRUGBANK:DB15665,http://purl.obolibrary.org/obo/DRUGBANK_DB15665,none +16.2617013,DRUGBANK:DB15669,http://purl.obolibrary.org/obo/DRUGBANK_DB15669,none +16.2617013,DRUGBANK:DB15685,http://purl.obolibrary.org/obo/DRUGBANK_DB15685,none +16.2617013,DRUGBANK:DB15686,http://purl.obolibrary.org/obo/DRUGBANK_DB15686,none +16.2617013,DRUGBANK:DB15690,http://purl.obolibrary.org/obo/DRUGBANK_DB15690,none +16.2617013,DRUGBANK:DB15694,http://purl.obolibrary.org/obo/DRUGBANK_DB15694,none +16.2617013,DRUGBANK:DB15725,http://purl.obolibrary.org/obo/DRUGBANK_DB15725,none +16.2617013,DRUGBANK:DB15739,http://purl.obolibrary.org/obo/DRUGBANK_DB15739,none +16.2617013,DRUGBANK:DB15744,http://purl.obolibrary.org/obo/DRUGBANK_DB15744,none +16.2617013,DRUGBANK:DB15768,http://purl.obolibrary.org/obo/DRUGBANK_DB15768,none +16.2617013,DRUGBANK:DB15771,http://purl.obolibrary.org/obo/DRUGBANK_DB15771,none +16.2617013,DRUGBANK:DB15793,http://purl.obolibrary.org/obo/DRUGBANK_DB15793,none +16.2617013,DRUGBANK:DB15797,http://purl.obolibrary.org/obo/DRUGBANK_DB15797,none +16.2617013,DRUGBANK:DB15816,http://purl.obolibrary.org/obo/DRUGBANK_DB15816,none +16.2617013,DRUGBANK:DB15853,http://purl.obolibrary.org/obo/DRUGBANK_DB15853,none +16.2617013,DRUGBANK:DB15876,http://purl.obolibrary.org/obo/DRUGBANK_DB15876,none +16.2617013,DRUGBANK:DB15948,http://purl.obolibrary.org/obo/DRUGBANK_DB15948,none +16.2617013,DRUGBANK:DB15987,http://purl.obolibrary.org/obo/DRUGBANK_DB15987,none +16.2617013,DRUGBANK:DB15992,http://purl.obolibrary.org/obo/DRUGBANK_DB15992,none +16.2617013,DRUGBANK:DB15999,http://purl.obolibrary.org/obo/DRUGBANK_DB15999,none +16.2617013,DRUGBANK:DB16036,http://purl.obolibrary.org/obo/DRUGBANK_DB16036,none +16.2617013,DRUGBANK:DB16039,http://purl.obolibrary.org/obo/DRUGBANK_DB16039,none +16.2617013,DRUGBANK:DB16042,http://purl.obolibrary.org/obo/DRUGBANK_DB16042,none +16.2617013,DRUGBANK:DB16058,http://purl.obolibrary.org/obo/DRUGBANK_DB16058,none +16.2617013,DRUGBANK:DB16060,http://purl.obolibrary.org/obo/DRUGBANK_DB16060,none +16.2617013,DRUGBANK:DB16124,http://purl.obolibrary.org/obo/DRUGBANK_DB16124,none +16.2617013,DRUGBANK:DB16130,http://purl.obolibrary.org/obo/DRUGBANK_DB16130,none +16.2617013,DRUGBANK:DB16136,http://purl.obolibrary.org/obo/DRUGBANK_DB16136,none +16.2617013,DRUGBANK:DB16159,http://purl.obolibrary.org/obo/DRUGBANK_DB16159,none +16.2617013,DRUGBANK:DB16166,http://purl.obolibrary.org/obo/DRUGBANK_DB16166,none +16.2617013,DRUGBANK:DB16182,http://purl.obolibrary.org/obo/DRUGBANK_DB16182,none +16.2617013,DRUGBANK:DB16197,http://purl.obolibrary.org/obo/DRUGBANK_DB16197,none +16.2617013,DRUGBANK:DB16216,http://purl.obolibrary.org/obo/DRUGBANK_DB16216,none +16.2617013,DRUGBANK:DB16222,http://purl.obolibrary.org/obo/DRUGBANK_DB16222,none +16.2617013,DRUGBANK:DB16224,http://purl.obolibrary.org/obo/DRUGBANK_DB16224,none +16.2617013,DRUGBANK:DB16235,http://purl.obolibrary.org/obo/DRUGBANK_DB16235,none +16.2617013,DRUGBANK:DB16239,http://purl.obolibrary.org/obo/DRUGBANK_DB16239,none +16.2617013,DRUGBANK:DB16248,http://purl.obolibrary.org/obo/DRUGBANK_DB16248,none +16.2617013,DRUGBANK:DB16251,http://purl.obolibrary.org/obo/DRUGBANK_DB16251,none +16.2617013,DRUGBANK:DB16294,http://purl.obolibrary.org/obo/DRUGBANK_DB16294,none +16.2617013,DRUGBANK:DB16295,http://purl.obolibrary.org/obo/DRUGBANK_DB16295,none +16.2617013,DRUGBANK:DB16313,http://purl.obolibrary.org/obo/DRUGBANK_DB16313,none +16.2617013,GO:0000024,http://purl.obolibrary.org/obo/GO_0000024,maltose biosynthetic process +16.2617013,GO:0000080,http://purl.obolibrary.org/obo/GO_0000080,mitotic G1 phase +16.2617013,GO:0000085,http://purl.obolibrary.org/obo/GO_0000085,mitotic G2 phase +16.2617013,GO:0000120,http://purl.obolibrary.org/obo/GO_0000120,RNA polymerase I transcription regulator complex +16.2617013,GO:0000127,http://purl.obolibrary.org/obo/GO_0000127,transcription factor TFIIIC complex +16.2617013,GO:0000155,http://purl.obolibrary.org/obo/GO_0000155,phosphorelay sensor kinase activity +16.2617013,GO:0000183,http://purl.obolibrary.org/obo/GO_0000183,rDNA heterochromatin assembly +16.2617013,GO:0000209,http://purl.obolibrary.org/obo/GO_0000209,protein polyubiquitination +16.2617013,GO:0000214,http://purl.obolibrary.org/obo/GO_0000214,tRNA-intron endonuclease complex +16.2617013,GO:0000237,http://purl.obolibrary.org/obo/GO_0000237,leptotene +16.2617013,GO:0000312,http://purl.obolibrary.org/obo/GO_0000312,plastid small ribosomal subunit +16.2617013,GO:0000408,http://purl.obolibrary.org/obo/GO_0000408,EKC/KEOPS complex +16.2617013,GO:0000460,http://purl.obolibrary.org/obo/GO_0000460,maturation of 5.8S rRNA +16.2617013,GO:0000500,http://purl.obolibrary.org/obo/GO_0000500,RNA polymerase I upstream activating factor complex +16.2617013,GO:0000715,http://purl.obolibrary.org/obo/GO_0000715,"nucleotide-excision repair, DNA damage recognition" +16.2617013,GO:0000721,http://purl.obolibrary.org/obo/GO_0000721,"(R,R)-butanediol dehydrogenase activity" +16.2617013,GO:0000722,http://purl.obolibrary.org/obo/GO_0000722,telomere maintenance via recombination +16.2617013,GO:0000738,http://purl.obolibrary.org/obo/GO_0000738,"DNA catabolic process, exonucleolytic" +16.2617013,GO:0000817,http://purl.obolibrary.org/obo/GO_0000817,COMA complex +16.2617013,GO:0000906,http://purl.obolibrary.org/obo/GO_0000906,"6,7-dimethyl-8-ribityllumazine synthase activity" +16.2617013,GO:0000923,http://purl.obolibrary.org/obo/GO_0000923,equatorial microtubule organizing center +16.2617013,GO:0001076,http://purl.obolibrary.org/obo/GO_0001076,none +16.2617013,GO:0001104,http://purl.obolibrary.org/obo/GO_0001104,none +16.2617013,GO:0001105,http://purl.obolibrary.org/obo/GO_0001105,none +16.2617013,GO:0001190,http://purl.obolibrary.org/obo/GO_0001190,none +16.2617013,GO:0001191,http://purl.obolibrary.org/obo/GO_0001191,none +16.2617013,GO:0001410,http://purl.obolibrary.org/obo/GO_0001410,chlamydospore formation +16.2617013,GO:0001502,http://purl.obolibrary.org/obo/GO_0001502,cartilage condensation +16.2617013,GO:0001518,http://purl.obolibrary.org/obo/GO_0001518,voltage-gated sodium channel complex +16.2617013,GO:0001522,http://purl.obolibrary.org/obo/GO_0001522,pseudouridine synthesis +16.2617013,GO:0001580,http://purl.obolibrary.org/obo/GO_0001580,detection of chemical stimulus involved in sensory perception of bitter taste +16.2617013,GO:0001655,http://purl.obolibrary.org/obo/GO_0001655,urogenital system development +16.2617013,GO:0001656,http://purl.obolibrary.org/obo/GO_0001656,metanephros development +16.2617013,GO:0001657,http://purl.obolibrary.org/obo/GO_0001657,ureteric bud development +16.2617013,GO:0001665,http://purl.obolibrary.org/obo/GO_0001665,"alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase activity" +16.2617013,GO:0001695,http://purl.obolibrary.org/obo/GO_0001695,histamine catabolic process +16.2617013,GO:0001714,http://purl.obolibrary.org/obo/GO_0001714,endodermal cell fate specification +16.2617013,GO:0001735,http://purl.obolibrary.org/obo/GO_0001735,prenylcysteine oxidase activity +16.2617013,GO:0001736,http://purl.obolibrary.org/obo/GO_0001736,establishment of planar polarity +16.2617013,GO:0001742,http://purl.obolibrary.org/obo/GO_0001742,oenocyte differentiation +16.2617013,GO:0001745,http://purl.obolibrary.org/obo/GO_0001745,compound eye morphogenesis +16.2617013,GO:0001810,http://purl.obolibrary.org/obo/GO_0001810,regulation of type I hypersensitivity +16.2617013,GO:0001829,http://purl.obolibrary.org/obo/GO_0001829,trophectodermal cell differentiation +16.2617013,GO:0001842,http://purl.obolibrary.org/obo/GO_0001842,neural fold formation +16.2617013,GO:0001877,http://purl.obolibrary.org/obo/GO_0001877,lipoarabinomannan immune receptor activity +16.2617013,GO:0001911,http://purl.obolibrary.org/obo/GO_0001911,negative regulation of leukocyte mediated cytotoxicity +16.2617013,GO:0001916,http://purl.obolibrary.org/obo/GO_0001916,positive regulation of T cell mediated cytotoxicity +16.2617013,GO:0001938,http://purl.obolibrary.org/obo/GO_0001938,positive regulation of endothelial cell proliferation +16.2617013,GO:0002026,http://purl.obolibrary.org/obo/GO_0002026,regulation of the force of heart contraction +16.2617013,GO:0002053,http://purl.obolibrary.org/obo/GO_0002053,positive regulation of mesenchymal cell proliferation +16.2617013,GO:0002199,http://purl.obolibrary.org/obo/GO_0002199,zona pellucida receptor complex +16.2617013,GO:0002278,http://purl.obolibrary.org/obo/GO_0002278,eosinophil activation involved in immune response +16.2617013,GO:0002359,http://purl.obolibrary.org/obo/GO_0002359,B-1 B cell proliferation +16.2617013,GO:0002557,http://purl.obolibrary.org/obo/GO_0002557,histamine secretion by basophil +16.2617013,GO:0002639,http://purl.obolibrary.org/obo/GO_0002639,positive regulation of immunoglobulin production +16.2617013,GO:0002687,http://purl.obolibrary.org/obo/GO_0002687,positive regulation of leukocyte migration +16.2617013,GO:0002690,http://purl.obolibrary.org/obo/GO_0002690,positive regulation of leukocyte chemotaxis +16.2617013,GO:0002765,http://purl.obolibrary.org/obo/GO_0002765,immune response-inhibiting signal transduction +16.2617013,GO:0002767,http://purl.obolibrary.org/obo/GO_0002767,immune response-inhibiting cell surface receptor signaling pathway +16.2617013,GO:0002888,http://purl.obolibrary.org/obo/GO_0002888,positive regulation of myeloid leukocyte mediated immunity +16.2617013,GO:0003010,http://purl.obolibrary.org/obo/GO_0003010,voluntary skeletal muscle contraction +16.2617013,GO:0003017,http://purl.obolibrary.org/obo/GO_0003017,lymph circulation +16.2617013,GO:0003183,http://purl.obolibrary.org/obo/GO_0003183,mitral valve morphogenesis +16.2617013,GO:0003188,http://purl.obolibrary.org/obo/GO_0003188,heart valve formation +16.2617013,GO:0003315,http://purl.obolibrary.org/obo/GO_0003315,heart rudiment formation +16.2617013,GO:0003353,http://purl.obolibrary.org/obo/GO_0003353,positive regulation of cilium movement +16.2617013,GO:0003358,http://purl.obolibrary.org/obo/GO_0003358,noradrenergic neuron development +16.2617013,GO:0003836,http://purl.obolibrary.org/obo/GO_0003836,"beta-galactoside (CMP) alpha-2,3-sialyltransferase activity" +16.2617013,GO:0003871,http://purl.obolibrary.org/obo/GO_0003871,5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity +16.2617013,GO:0003885,http://purl.obolibrary.org/obo/GO_0003885,"D-arabinono-1,4-lactone oxidase activity" +16.2617013,GO:0004022,http://purl.obolibrary.org/obo/GO_0004022,alcohol dehydrogenase (NAD+) activity +16.2617013,GO:0004120,http://purl.obolibrary.org/obo/GO_0004120,photoreceptor cyclic-nucleotide phosphodiesterase activity +16.2617013,GO:0004154,http://purl.obolibrary.org/obo/GO_0004154,dihydropterin oxidase activity +16.2617013,GO:0004313,http://purl.obolibrary.org/obo/GO_0004313,[acyl-carrier-protein] S-acetyltransferase activity +16.2617013,GO:0004318,http://purl.obolibrary.org/obo/GO_0004318,enoyl-[acyl-carrier-protein] reductase (NADH) activity +16.2617013,GO:0004436,http://purl.obolibrary.org/obo/GO_0004436,phosphatidylinositol diacylglycerol-lyase activity +16.2617013,GO:0004456,http://purl.obolibrary.org/obo/GO_0004456,phosphogluconate dehydratase activity +16.2617013,GO:0004572,http://purl.obolibrary.org/obo/GO_0004572,"mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity" +16.2617013,GO:0004578,http://purl.obolibrary.org/obo/GO_0004578,chitobiosyldiphosphodolichol beta-mannosyltransferase activity +16.2617013,GO:0004593,http://purl.obolibrary.org/obo/GO_0004593,pantothenase activity +16.2617013,GO:0004651,http://purl.obolibrary.org/obo/GO_0004651,polynucleotide 5'-phosphatase activity +16.2617013,GO:0004715,http://purl.obolibrary.org/obo/GO_0004715,non-membrane spanning protein tyrosine kinase activity +16.2617013,GO:0004732,http://purl.obolibrary.org/obo/GO_0004732,pyridoxal oxidase activity +16.2617013,GO:0004810,http://purl.obolibrary.org/obo/GO_0004810,tRNA adenylyltransferase activity +16.2617013,GO:0005006,http://purl.obolibrary.org/obo/GO_0005006,epidermal growth factor-activated receptor activity +16.2617013,GO:0005186,http://purl.obolibrary.org/obo/GO_0005186,pheromone activity +16.2617013,GO:0005252,http://purl.obolibrary.org/obo/GO_0005252,open rectifier potassium channel activity +16.2617013,GO:0005384,http://purl.obolibrary.org/obo/GO_0005384,manganese ion transmembrane transporter activity +16.2617013,GO:0005452,http://purl.obolibrary.org/obo/GO_0005452,inorganic anion exchanger activity +16.2617013,GO:0005513,http://purl.obolibrary.org/obo/GO_0005513,detection of calcium ion +16.2617013,GO:0005669,http://purl.obolibrary.org/obo/GO_0005669,transcription factor TFIID complex +16.2617013,GO:0005673,http://purl.obolibrary.org/obo/GO_0005673,transcription factor TFIIE complex +16.2617013,GO:0005744,http://purl.obolibrary.org/obo/GO_0005744,TIM23 mitochondrial import inner membrane translocase complex +16.2617013,GO:0005927,http://purl.obolibrary.org/obo/GO_0005927,muscle tendon junction +16.2617013,GO:0005946,http://purl.obolibrary.org/obo/GO_0005946,"alpha,alpha-trehalose-phosphate synthase complex (UDP-forming)" +16.2617013,GO:0005995,http://purl.obolibrary.org/obo/GO_0005995,melibiose catabolic process +16.2617013,GO:0006002,http://purl.obolibrary.org/obo/GO_0006002,fructose 6-phosphate metabolic process +16.2617013,GO:0006054,http://purl.obolibrary.org/obo/GO_0006054,N-acetylneuraminate metabolic process +16.2617013,GO:0006074,http://purl.obolibrary.org/obo/GO_0006074,(1->3)-beta-D-glucan metabolic process +16.2617013,GO:0006124,http://purl.obolibrary.org/obo/GO_0006124,ferredoxin metabolic process +16.2617013,GO:0006154,http://purl.obolibrary.org/obo/GO_0006154,adenosine catabolic process +16.2617013,GO:0006175,http://purl.obolibrary.org/obo/GO_0006175,dATP biosynthetic process +16.2617013,GO:0006204,http://purl.obolibrary.org/obo/GO_0006204,IMP catabolic process +16.2617013,GO:0006232,http://purl.obolibrary.org/obo/GO_0006232,TDP biosynthetic process +16.2617013,GO:0006242,http://purl.obolibrary.org/obo/GO_0006242,dCTP biosynthetic process +16.2617013,GO:0006336,http://purl.obolibrary.org/obo/GO_0006336,DNA replication-independent chromatin assembly +16.2617013,GO:0006404,http://purl.obolibrary.org/obo/GO_0006404,RNA import into nucleus +16.2617013,GO:0006418,http://purl.obolibrary.org/obo/GO_0006418,tRNA aminoacylation for protein translation +16.2617013,GO:0006524,http://purl.obolibrary.org/obo/GO_0006524,alanine catabolic process +16.2617013,GO:0006548,http://purl.obolibrary.org/obo/GO_0006548,histidine catabolic process +16.2617013,GO:0006550,http://purl.obolibrary.org/obo/GO_0006550,isoleucine catabolic process +16.2617013,GO:0006559,http://purl.obolibrary.org/obo/GO_0006559,L-phenylalanine catabolic process +16.2617013,GO:0006567,http://purl.obolibrary.org/obo/GO_0006567,threonine catabolic process +16.2617013,GO:0006590,http://purl.obolibrary.org/obo/GO_0006590,thyroid hormone generation +16.2617013,GO:0006611,http://purl.obolibrary.org/obo/GO_0006611,protein export from nucleus +16.2617013,GO:0006612,http://purl.obolibrary.org/obo/GO_0006612,protein targeting to membrane +16.2617013,GO:0006622,http://purl.obolibrary.org/obo/GO_0006622,protein targeting to lysosome +16.2617013,GO:0006623,http://purl.obolibrary.org/obo/GO_0006623,protein targeting to vacuole +16.2617013,GO:0006680,http://purl.obolibrary.org/obo/GO_0006680,glucosylceramide catabolic process +16.2617013,GO:0006709,http://purl.obolibrary.org/obo/GO_0006709,progesterone catabolic process +16.2617013,GO:0006780,http://purl.obolibrary.org/obo/GO_0006780,uroporphyrinogen III biosynthetic process +16.2617013,GO:0006982,http://purl.obolibrary.org/obo/GO_0006982,response to lipid hydroperoxide +16.2617013,GO:0006995,http://purl.obolibrary.org/obo/GO_0006995,cellular response to nitrogen starvation +16.2617013,GO:0007023,http://purl.obolibrary.org/obo/GO_0007023,post-chaperonin tubulin folding pathway +16.2617013,GO:0007035,http://purl.obolibrary.org/obo/GO_0007035,vacuolar acidification +16.2617013,GO:0007084,http://purl.obolibrary.org/obo/GO_0007084,mitotic nuclear membrane reassembly +16.2617013,GO:0007091,http://purl.obolibrary.org/obo/GO_0007091,metaphase/anaphase transition of mitotic cell cycle +16.2617013,GO:0007092,http://purl.obolibrary.org/obo/GO_0007092,none +16.2617013,GO:0007138,http://purl.obolibrary.org/obo/GO_0007138,meiotic anaphase II +16.2617013,GO:0007147,http://purl.obolibrary.org/obo/GO_0007147,female meiosis II +16.2617013,GO:0007164,http://purl.obolibrary.org/obo/GO_0007164,establishment of tissue polarity +16.2617013,GO:0007204,http://purl.obolibrary.org/obo/GO_0007204,positive regulation of cytosolic calcium ion concentration +16.2617013,GO:0007253,http://purl.obolibrary.org/obo/GO_0007253,cytoplasmic sequestering of NF-kappaB +16.2617013,GO:0007323,http://purl.obolibrary.org/obo/GO_0007323,peptide pheromone maturation +16.2617013,GO:0007414,http://purl.obolibrary.org/obo/GO_0007414,axonal defasciculation +16.2617013,GO:0007418,http://purl.obolibrary.org/obo/GO_0007418,ventral midline development +16.2617013,GO:0007443,http://purl.obolibrary.org/obo/GO_0007443,Malpighian tubule morphogenesis +16.2617013,GO:0007521,http://purl.obolibrary.org/obo/GO_0007521,muscle cell fate determination +16.2617013,GO:0007522,http://purl.obolibrary.org/obo/GO_0007522,visceral muscle development +16.2617013,GO:0007555,http://purl.obolibrary.org/obo/GO_0007555,regulation of ecdysteroid secretion +16.2617013,GO:0007563,http://purl.obolibrary.org/obo/GO_0007563,regulation of eclosion +16.2617013,GO:0008039,http://purl.obolibrary.org/obo/GO_0008039,synaptic target recognition +16.2617013,GO:0008124,http://purl.obolibrary.org/obo/GO_0008124,4-alpha-hydroxytetrahydrobiopterin dehydratase activity +16.2617013,GO:0008131,http://purl.obolibrary.org/obo/GO_0008131,primary amine oxidase activity +16.2617013,GO:0008193,http://purl.obolibrary.org/obo/GO_0008193,tRNA guanylyltransferase activity +16.2617013,GO:0008208,http://purl.obolibrary.org/obo/GO_0008208,C21-steroid hormone catabolic process +16.2617013,GO:0008265,http://purl.obolibrary.org/obo/GO_0008265,Mo-molybdopterin cofactor sulfurase activity +16.2617013,GO:0008313,http://purl.obolibrary.org/obo/GO_0008313,gurken-activated receptor activity +16.2617013,GO:0008315,http://purl.obolibrary.org/obo/GO_0008315,G2/MI transition of meiotic cell cycle +16.2617013,GO:0008330,http://purl.obolibrary.org/obo/GO_0008330,protein tyrosine/threonine phosphatase activity +16.2617013,GO:0008427,http://purl.obolibrary.org/obo/GO_0008427,calcium-dependent protein kinase inhibitor activity +16.2617013,GO:0008466,http://purl.obolibrary.org/obo/GO_0008466,glycogenin glucosyltransferase activity +16.2617013,GO:0008532,http://purl.obolibrary.org/obo/GO_0008532,"N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase activity" +16.2617013,GO:0008674,http://purl.obolibrary.org/obo/GO_0008674,2-dehydro-3-deoxy-6-phosphogalactonate aldolase activity +16.2617013,GO:0008686,http://purl.obolibrary.org/obo/GO_0008686,"3,4-dihydroxy-2-butanone-4-phosphate synthase activity" +16.2617013,GO:0008689,http://purl.obolibrary.org/obo/GO_0008689,3-demethylubiquinone-9 3-O-methyltransferase activity +16.2617013,GO:0008700,http://purl.obolibrary.org/obo/GO_0008700,4-hydroxy-2-oxoglutarate aldolase activity +16.2617013,GO:0008710,http://purl.obolibrary.org/obo/GO_0008710,8-amino-7-oxononanoate synthase activity +16.2617013,GO:0008713,http://purl.obolibrary.org/obo/GO_0008713,ADP-heptose-lipopolysaccharide heptosyltransferase activity +16.2617013,GO:0008715,http://purl.obolibrary.org/obo/GO_0008715,CDP-diacylglycerol diphosphatase activity +16.2617013,GO:0008758,http://purl.obolibrary.org/obo/GO_0008758,"UDP-2,3-diacylglucosamine hydrolase activity" +16.2617013,GO:0008764,http://purl.obolibrary.org/obo/GO_0008764,UDP-N-acetylmuramoylalanine-D-glutamate ligase activity +16.2617013,GO:0008774,http://purl.obolibrary.org/obo/GO_0008774,acetaldehyde dehydrogenase (acetylating) activity +16.2617013,GO:0008798,http://purl.obolibrary.org/obo/GO_0008798,beta-aspartyl-peptidase activity +16.2617013,GO:0008827,http://purl.obolibrary.org/obo/GO_0008827,none +16.2617013,GO:0008874,http://purl.obolibrary.org/obo/GO_0008874,gluconate 5-dehydrogenase activity +16.2617013,GO:0008893,http://purl.obolibrary.org/obo/GO_0008893,"guanosine-3',5'-bis(diphosphate) 3'-diphosphatase activity" +16.2617013,GO:0008918,http://purl.obolibrary.org/obo/GO_0008918,lipopolysaccharide 3-alpha-galactosyltransferase activity +16.2617013,GO:0008939,http://purl.obolibrary.org/obo/GO_0008939,nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity +16.2617013,GO:0008946,http://purl.obolibrary.org/obo/GO_0008946,oligonucleotidase activity +16.2617013,GO:0008988,http://purl.obolibrary.org/obo/GO_0008988,rRNA (adenine-N6-)-methyltransferase activity +16.2617013,GO:0008994,http://purl.obolibrary.org/obo/GO_0008994,rhamnulose-1-phosphate aldolase activity +16.2617013,GO:0009010,http://purl.obolibrary.org/obo/GO_0009010,sorbitol-6-phosphate 2-dehydrogenase activity +16.2617013,GO:0009051,http://purl.obolibrary.org/obo/GO_0009051,"pentose-phosphate shunt, oxidative branch" +16.2617013,GO:0009080,http://purl.obolibrary.org/obo/GO_0009080,pyruvate family amino acid catabolic process +16.2617013,GO:0009134,http://purl.obolibrary.org/obo/GO_0009134,nucleoside diphosphate catabolic process +16.2617013,GO:0009137,http://purl.obolibrary.org/obo/GO_0009137,purine nucleoside diphosphate catabolic process +16.2617013,GO:0009143,http://purl.obolibrary.org/obo/GO_0009143,nucleoside triphosphate catabolic process +16.2617013,GO:0009149,http://purl.obolibrary.org/obo/GO_0009149,pyrimidine nucleoside triphosphate catabolic process +16.2617013,GO:0009171,http://purl.obolibrary.org/obo/GO_0009171,purine deoxyribonucleoside monophosphate biosynthetic process +16.2617013,GO:0009181,http://purl.obolibrary.org/obo/GO_0009181,purine ribonucleoside diphosphate catabolic process +16.2617013,GO:0009191,http://purl.obolibrary.org/obo/GO_0009191,ribonucleoside diphosphate catabolic process +16.2617013,GO:0009203,http://purl.obolibrary.org/obo/GO_0009203,ribonucleoside triphosphate catabolic process +16.2617013,GO:0009210,http://purl.obolibrary.org/obo/GO_0009210,pyrimidine ribonucleoside triphosphate catabolic process +16.2617013,GO:0009222,http://purl.obolibrary.org/obo/GO_0009222,pyrimidine ribonucleotide catabolic process +16.2617013,GO:0009246,http://purl.obolibrary.org/obo/GO_0009246,enterobacterial common antigen biosynthetic process +16.2617013,GO:0009249,http://purl.obolibrary.org/obo/GO_0009249,protein lipoylation +16.2617013,GO:0009253,http://purl.obolibrary.org/obo/GO_0009253,peptidoglycan catabolic process +16.2617013,GO:0009496,http://purl.obolibrary.org/obo/GO_0009496,plastoquinol--plastocyanin reductase activity +16.2617013,GO:0009714,http://purl.obolibrary.org/obo/GO_0009714,chalcone metabolic process +16.2617013,GO:0009765,http://purl.obolibrary.org/obo/GO_0009765,"photosynthesis, light harvesting" +16.2617013,GO:0009773,http://purl.obolibrary.org/obo/GO_0009773,photosynthetic electron transport in photosystem I +16.2617013,GO:0009779,http://purl.obolibrary.org/obo/GO_0009779,noncyclic photosynthetic phosphorylation +16.2617013,GO:0009782,http://purl.obolibrary.org/obo/GO_0009782,photosystem I antenna complex +16.2617013,GO:0009803,http://purl.obolibrary.org/obo/GO_0009803,cinnamic acid metabolic process +16.2617013,GO:0009835,http://purl.obolibrary.org/obo/GO_0009835,fruit ripening +16.2617013,GO:0009846,http://purl.obolibrary.org/obo/GO_0009846,pollen germination +16.2617013,GO:0009961,http://purl.obolibrary.org/obo/GO_0009961,response to 1-aminocyclopropane-1-carboxylic acid +16.2617013,GO:0010002,http://purl.obolibrary.org/obo/GO_0010002,cardioblast differentiation +16.2617013,GO:0010007,http://purl.obolibrary.org/obo/GO_0010007,magnesium chelatase complex +16.2617013,GO:0010012,http://purl.obolibrary.org/obo/GO_0010012,steroid 22-alpha hydroxylase activity +16.2617013,GO:0010022,http://purl.obolibrary.org/obo/GO_0010022,meristem determinacy +16.2617013,GO:0010040,http://purl.obolibrary.org/obo/GO_0010040,response to iron(II) ion +16.2617013,GO:0010041,http://purl.obolibrary.org/obo/GO_0010041,response to iron(III) ion +16.2617013,GO:0010107,http://purl.obolibrary.org/obo/GO_0010107,none +16.2617013,GO:0010136,http://purl.obolibrary.org/obo/GO_0010136,ureide catabolic process +16.2617013,GO:0010213,http://purl.obolibrary.org/obo/GO_0010213,non-photoreactive DNA repair +16.2617013,GO:0010219,http://purl.obolibrary.org/obo/GO_0010219,regulation of vernalization response +16.2617013,GO:0010249,http://purl.obolibrary.org/obo/GO_0010249,auxin conjugate metabolic process +16.2617013,GO:0010269,http://purl.obolibrary.org/obo/GO_0010269,response to selenium ion +16.2617013,GO:0010273,http://purl.obolibrary.org/obo/GO_0010273,detoxification of copper ion +16.2617013,GO:0010395,http://purl.obolibrary.org/obo/GO_0010395,rhamnogalacturonan I metabolic process +16.2617013,GO:0010432,http://purl.obolibrary.org/obo/GO_0010432,bract development +16.2617013,GO:0010478,http://purl.obolibrary.org/obo/GO_0010478,chlororespiration +16.2617013,GO:0010596,http://purl.obolibrary.org/obo/GO_0010596,negative regulation of endothelial cell migration +16.2617013,GO:0010718,http://purl.obolibrary.org/obo/GO_0010718,positive regulation of epithelial to mesenchymal transition +16.2617013,GO:0010819,http://purl.obolibrary.org/obo/GO_0010819,regulation of T cell chemotaxis +16.2617013,GO:0010826,http://purl.obolibrary.org/obo/GO_0010826,negative regulation of centrosome duplication +16.2617013,GO:0010869,http://purl.obolibrary.org/obo/GO_0010869,none +16.2617013,GO:0010873,http://purl.obolibrary.org/obo/GO_0010873,positive regulation of cholesterol esterification +16.2617013,GO:0010935,http://purl.obolibrary.org/obo/GO_0010935,regulation of macrophage cytokine production +16.2617013,GO:0010981,http://purl.obolibrary.org/obo/GO_0010981,regulation of cell wall macromolecule metabolic process +16.2617013,GO:0010998,http://purl.obolibrary.org/obo/GO_0010998,regulation of translational initiation by eIF2 alpha phosphorylation +16.2617013,GO:0014012,http://purl.obolibrary.org/obo/GO_0014012,peripheral nervous system axon regeneration +16.2617013,GO:0014015,http://purl.obolibrary.org/obo/GO_0014015,positive regulation of gliogenesis +16.2617013,GO:0014059,http://purl.obolibrary.org/obo/GO_0014059,regulation of dopamine secretion +16.2617013,GO:0014067,http://purl.obolibrary.org/obo/GO_0014067,negative regulation of phosphatidylinositol 3-kinase signaling +16.2617013,GO:0014741,http://purl.obolibrary.org/obo/GO_0014741,negative regulation of muscle hypertrophy +16.2617013,GO:0014742,http://purl.obolibrary.org/obo/GO_0014742,positive regulation of muscle hypertrophy +16.2617013,GO:0014826,http://purl.obolibrary.org/obo/GO_0014826,vein smooth muscle contraction +16.2617013,GO:0015047,http://purl.obolibrary.org/obo/GO_0015047,NADPH-cytochrome-c2 reductase activity +16.2617013,GO:0015114,http://purl.obolibrary.org/obo/GO_0015114,phosphate ion transmembrane transporter activity +16.2617013,GO:0015139,http://purl.obolibrary.org/obo/GO_0015139,alpha-ketoglutarate transmembrane transporter activity +16.2617013,GO:0015222,http://purl.obolibrary.org/obo/GO_0015222,none +16.2617013,GO:0015410,http://purl.obolibrary.org/obo/GO_0015410,ABC-type manganese transporter activity +16.2617013,GO:0015415,http://purl.obolibrary.org/obo/GO_0015415,ATPase-coupled phosphate ion transmembrane transporter activity +16.2617013,GO:0015431,http://purl.obolibrary.org/obo/GO_0015431,ABC-type glutathione S-conjugate transporter activity +16.2617013,GO:0015607,http://purl.obolibrary.org/obo/GO_0015607,ABC-type fatty-acyl-CoA transporter activity +16.2617013,GO:0015667,http://purl.obolibrary.org/obo/GO_0015667,site-specific DNA-methyltransferase (cytosine-N4-specific) activity +16.2617013,GO:0015676,http://purl.obolibrary.org/obo/GO_0015676,vanadium ion transport +16.2617013,GO:0015680,http://purl.obolibrary.org/obo/GO_0015680,protein maturation by copper ion transfer +16.2617013,GO:0015702,http://purl.obolibrary.org/obo/GO_0015702,chlorate transport +16.2617013,GO:0015738,http://purl.obolibrary.org/obo/GO_0015738,glucuronate transmembrane transport +16.2617013,GO:0015754,http://purl.obolibrary.org/obo/GO_0015754,allose transmembrane transport +16.2617013,GO:0015777,http://purl.obolibrary.org/obo/GO_0015777,teichoic acid transport +16.2617013,GO:0015885,http://purl.obolibrary.org/obo/GO_0015885,5-formyltetrahydrofolate transport +16.2617013,GO:0015915,http://purl.obolibrary.org/obo/GO_0015915,fatty-acyl group transport +16.2617013,GO:0015924,http://purl.obolibrary.org/obo/GO_0015924,mannosyl-oligosaccharide mannosidase activity +16.2617013,GO:0016009,http://purl.obolibrary.org/obo/GO_0016009,minor mitochondrial derivative +16.2617013,GO:0016188,http://purl.obolibrary.org/obo/GO_0016188,synaptic vesicle maturation +16.2617013,GO:0016277,http://purl.obolibrary.org/obo/GO_0016277,[myelin basic protein]-arginine N-methyltransferase activity +16.2617013,GO:0016319,http://purl.obolibrary.org/obo/GO_0016319,mushroom body development +16.2617013,GO:0016507,http://purl.obolibrary.org/obo/GO_0016507,mitochondrial fatty acid beta-oxidation multienzyme complex +16.2617013,GO:0016576,http://purl.obolibrary.org/obo/GO_0016576,histone dephosphorylation +16.2617013,GO:0016601,http://purl.obolibrary.org/obo/GO_0016601,Rac protein signal transduction +16.2617013,GO:0016767,http://purl.obolibrary.org/obo/GO_0016767,geranylgeranyl-diphosphate geranylgeranyltransferase activity +16.2617013,GO:0016794,http://purl.obolibrary.org/obo/GO_0016794,diphosphoric monoester hydrolase activity +16.2617013,GO:0016843,http://purl.obolibrary.org/obo/GO_0016843,amine-lyase activity +16.2617013,GO:0016844,http://purl.obolibrary.org/obo/GO_0016844,strictosidine synthase activity +16.2617013,GO:0016852,http://purl.obolibrary.org/obo/GO_0016852,sirohydrochlorin cobaltochelatase activity +16.2617013,GO:0016871,http://purl.obolibrary.org/obo/GO_0016871,cycloartenol synthase activity +16.2617013,GO:0017067,http://purl.obolibrary.org/obo/GO_0017067,tyrosine-ester sulfotransferase activity +16.2617013,GO:0017084,http://purl.obolibrary.org/obo/GO_0017084,delta1-pyrroline-5-carboxylate synthetase activity +16.2617013,GO:0017107,http://purl.obolibrary.org/obo/GO_0017107,none +16.2617013,GO:0017178,http://purl.obolibrary.org/obo/GO_0017178,diphthine-ammonia ligase activity +16.2617013,GO:0018065,http://purl.obolibrary.org/obo/GO_0018065,none +16.2617013,GO:0018077,http://purl.obolibrary.org/obo/GO_0018077,protein iodination +16.2617013,GO:0018079,http://purl.obolibrary.org/obo/GO_0018079,protein halogenation +16.2617013,GO:0018214,http://purl.obolibrary.org/obo/GO_0018214,protein carboxylation +16.2617013,GO:0018343,http://purl.obolibrary.org/obo/GO_0018343,protein farnesylation +16.2617013,GO:0018344,http://purl.obolibrary.org/obo/GO_0018344,protein geranylgeranylation +16.2617013,GO:0018377,http://purl.obolibrary.org/obo/GO_0018377,protein myristoylation +16.2617013,GO:0018392,http://purl.obolibrary.org/obo/GO_0018392,glycoprotein 3-alpha-L-fucosyltransferase activity +16.2617013,GO:0018455,http://purl.obolibrary.org/obo/GO_0018455,alcohol dehydrogenase [NAD(P)+] activity +16.2617013,GO:0018531,http://purl.obolibrary.org/obo/GO_0018531,(S)-6-hydroxynicotine oxidase activity +16.2617013,GO:0018575,http://purl.obolibrary.org/obo/GO_0018575,"chlorocatechol 1,2-dioxygenase activity" +16.2617013,GO:0018578,http://purl.obolibrary.org/obo/GO_0018578,"protocatechuate 3,4-dioxygenase activity" +16.2617013,GO:0018579,http://purl.obolibrary.org/obo/GO_0018579,"protocatechuate 4,5-dioxygenase activity" +16.2617013,GO:0018733,http://purl.obolibrary.org/obo/GO_0018733,"3,4-dihydrocoumarin hydrolase activity" +16.2617013,GO:0018765,http://purl.obolibrary.org/obo/GO_0018765,"2-hydroxy-6-oxohepta-2,4-dienoate hydrolase activity" +16.2617013,GO:0018767,http://purl.obolibrary.org/obo/GO_0018767,"2-hydroxy-6-oxo-7-methylocta-2,4-dienoate hydrolase activity" +16.2617013,GO:0018781,http://purl.obolibrary.org/obo/GO_0018781,S-triazine hydrolase activity +16.2617013,GO:0018800,http://purl.obolibrary.org/obo/GO_0018800,"5-oxopent-3-ene-1,2,5-tricarboxylate decarboxylase activity" +16.2617013,GO:0018803,http://purl.obolibrary.org/obo/GO_0018803,4-(2-carboxyphenyl)-2-oxobut-3-enoate aldolase activity +16.2617013,GO:0018851,http://purl.obolibrary.org/obo/GO_0018851,alpha-pinene-oxide decyclase activity +16.2617013,GO:0018852,http://purl.obolibrary.org/obo/GO_0018852,dichloromuconate cycloisomerase activity +16.2617013,GO:0018871,http://purl.obolibrary.org/obo/GO_0018871,1-aminocyclopropane-1-carboxylate metabolic process +16.2617013,GO:0018880,http://purl.obolibrary.org/obo/GO_0018880,4-chlorobiphenyl metabolic process +16.2617013,GO:0018883,http://purl.obolibrary.org/obo/GO_0018883,caprolactam metabolic process +16.2617013,GO:0018907,http://purl.obolibrary.org/obo/GO_0018907,dimethyl sulfoxide metabolic process +16.2617013,GO:0018951,http://purl.obolibrary.org/obo/GO_0018951,p-xylene metabolic process +16.2617013,GO:0018953,http://purl.obolibrary.org/obo/GO_0018953,p-cymene metabolic process +16.2617013,GO:0019069,http://purl.obolibrary.org/obo/GO_0019069,viral capsid assembly +16.2617013,GO:0019084,http://purl.obolibrary.org/obo/GO_0019084,middle viral transcription +16.2617013,GO:0019134,http://purl.obolibrary.org/obo/GO_0019134,glucosamine-1-phosphate N-acetyltransferase activity +16.2617013,GO:0019149,http://purl.obolibrary.org/obo/GO_0019149,3-chloro-D-alanine dehydrochlorinase activity +16.2617013,GO:0019157,http://purl.obolibrary.org/obo/GO_0019157,none +16.2617013,GO:0019180,http://purl.obolibrary.org/obo/GO_0019180,"dTDP-4-amino-4,6-dideoxygalactose transaminase activity" +16.2617013,GO:0019289,http://purl.obolibrary.org/obo/GO_0019289,rhizobactin 1021 biosynthetic process +16.2617013,GO:0019302,http://purl.obolibrary.org/obo/GO_0019302,D-ribose biosynthetic process +16.2617013,GO:0019313,http://purl.obolibrary.org/obo/GO_0019313,allose metabolic process +16.2617013,GO:0019323,http://purl.obolibrary.org/obo/GO_0019323,pentose catabolic process +16.2617013,GO:0019381,http://purl.obolibrary.org/obo/GO_0019381,atrazine catabolic process +16.2617013,GO:0019419,http://purl.obolibrary.org/obo/GO_0019419,sulfate reduction +16.2617013,GO:0019428,http://purl.obolibrary.org/obo/GO_0019428,allantoin biosynthetic process +16.2617013,GO:0019469,http://purl.obolibrary.org/obo/GO_0019469,octopine catabolic process +16.2617013,GO:0019478,http://purl.obolibrary.org/obo/GO_0019478,D-amino acid catabolic process +16.2617013,GO:0019500,http://purl.obolibrary.org/obo/GO_0019500,cyanide catabolic process +16.2617013,GO:0019516,http://purl.obolibrary.org/obo/GO_0019516,lactate oxidation +16.2617013,GO:0019608,http://purl.obolibrary.org/obo/GO_0019608,nicotine catabolic process +16.2617013,GO:0019628,http://purl.obolibrary.org/obo/GO_0019628,urate catabolic process +16.2617013,GO:0019650,http://purl.obolibrary.org/obo/GO_0019650,glycolytic fermentation to butanediol +16.2617013,GO:0021509,http://purl.obolibrary.org/obo/GO_0021509,roof plate formation +16.2617013,GO:0021522,http://purl.obolibrary.org/obo/GO_0021522,spinal cord motor neuron differentiation +16.2617013,GO:0021556,http://purl.obolibrary.org/obo/GO_0021556,central nervous system formation +16.2617013,GO:0021557,http://purl.obolibrary.org/obo/GO_0021557,oculomotor nerve development +16.2617013,GO:0021594,http://purl.obolibrary.org/obo/GO_0021594,rhombomere formation +16.2617013,GO:0021643,http://purl.obolibrary.org/obo/GO_0021643,vagus nerve maturation +16.2617013,GO:0021702,http://purl.obolibrary.org/obo/GO_0021702,cerebellar Purkinje cell differentiation +16.2617013,GO:0021730,http://purl.obolibrary.org/obo/GO_0021730,trigeminal sensory nucleus development +16.2617013,GO:0021756,http://purl.obolibrary.org/obo/GO_0021756,striatum development +16.2617013,GO:0021855,http://purl.obolibrary.org/obo/GO_0021855,hypothalamus cell migration +16.2617013,GO:0021860,http://purl.obolibrary.org/obo/GO_0021860,pyramidal neuron development +16.2617013,GO:0021990,http://purl.obolibrary.org/obo/GO_0021990,neural plate formation +16.2617013,GO:0022037,http://purl.obolibrary.org/obo/GO_0022037,metencephalon development +16.2617013,GO:0022038,http://purl.obolibrary.org/obo/GO_0022038,corpus callosum development +16.2617013,GO:0030140,http://purl.obolibrary.org/obo/GO_0030140,trans-Golgi network transport vesicle +16.2617013,GO:0030150,http://purl.obolibrary.org/obo/GO_0030150,protein import into mitochondrial matrix +16.2617013,GO:0030211,http://purl.obolibrary.org/obo/GO_0030211,heparin catabolic process +16.2617013,GO:0030214,http://purl.obolibrary.org/obo/GO_0030214,hyaluronan catabolic process +16.2617013,GO:0030289,http://purl.obolibrary.org/obo/GO_0030289,protein phosphatase 4 complex +16.2617013,GO:0030309,http://purl.obolibrary.org/obo/GO_0030309,poly-N-acetyllactosamine metabolic process +16.2617013,GO:0030311,http://purl.obolibrary.org/obo/GO_0030311,poly-N-acetyllactosamine biosynthetic process +16.2617013,GO:0030320,http://purl.obolibrary.org/obo/GO_0030320,cellular monovalent inorganic anion homeostasis +16.2617013,GO:0030339,http://purl.obolibrary.org/obo/GO_0030339,fatty-acyl-ethyl-ester synthase activity +16.2617013,GO:0030389,http://purl.obolibrary.org/obo/GO_0030389,fructosamine metabolic process +16.2617013,GO:0030418,http://purl.obolibrary.org/obo/GO_0030418,nicotianamine biosynthetic process +16.2617013,GO:0030437,http://purl.obolibrary.org/obo/GO_0030437,ascospore formation +16.2617013,GO:0030514,http://purl.obolibrary.org/obo/GO_0030514,negative regulation of BMP signaling pathway +16.2617013,GO:0030734,http://purl.obolibrary.org/obo/GO_0030734,polysaccharide O-methyltransferase activity +16.2617013,GO:0030755,http://purl.obolibrary.org/obo/GO_0030755,quercetin 3-O-methyltransferase activity +16.2617013,GO:0030766,http://purl.obolibrary.org/obo/GO_0030766,11-O-demethyl-17-O-deacetylvindoline O-methyltransferase activity +16.2617013,GO:0030770,http://purl.obolibrary.org/obo/GO_0030770,demethylmacrocin O-methyltransferase activity +16.2617013,GO:0030782,http://purl.obolibrary.org/obo/GO_0030782,(S)-tetrahydroprotoberberine N-methyltransferase activity +16.2617013,GO:0030788,http://purl.obolibrary.org/obo/GO_0030788,precorrin-2 C20-methyltransferase activity +16.2617013,GO:0030790,http://purl.obolibrary.org/obo/GO_0030790,chlorophenol O-methyltransferase activity +16.2617013,GO:0030794,http://purl.obolibrary.org/obo/GO_0030794,(S)-coclaurine-N-methyltransferase activity +16.2617013,GO:0030835,http://purl.obolibrary.org/obo/GO_0030835,negative regulation of actin filament depolymerization +16.2617013,GO:0030859,http://purl.obolibrary.org/obo/GO_0030859,polarized epithelial cell differentiation +16.2617013,GO:0030895,http://purl.obolibrary.org/obo/GO_0030895,apolipoprotein B mRNA editing enzyme complex +16.2617013,GO:0030953,http://purl.obolibrary.org/obo/GO_0030953,astral microtubule organization +16.2617013,GO:0031019,http://purl.obolibrary.org/obo/GO_0031019,mitochondrial mRNA editing complex +16.2617013,GO:0031064,http://purl.obolibrary.org/obo/GO_0031064,negative regulation of histone deacetylation +16.2617013,GO:0031116,http://purl.obolibrary.org/obo/GO_0031116,positive regulation of microtubule polymerization +16.2617013,GO:0031122,http://purl.obolibrary.org/obo/GO_0031122,cytoplasmic microtubule organization +16.2617013,GO:0031129,http://purl.obolibrary.org/obo/GO_0031129,inductive cell-cell signaling +16.2617013,GO:0031272,http://purl.obolibrary.org/obo/GO_0031272,regulation of pseudopodium assembly +16.2617013,GO:0031275,http://purl.obolibrary.org/obo/GO_0031275,none +16.2617013,GO:0031339,http://purl.obolibrary.org/obo/GO_0031339,negative regulation of vesicle fusion +16.2617013,GO:0031342,http://purl.obolibrary.org/obo/GO_0031342,negative regulation of cell killing +16.2617013,GO:0031388,http://purl.obolibrary.org/obo/GO_0031388,organic acid phosphorylation +16.2617013,GO:0031417,http://purl.obolibrary.org/obo/GO_0031417,NatC complex +16.2617013,GO:0031466,http://purl.obolibrary.org/obo/GO_0031466,Cul5-RING ubiquitin ligase complex +16.2617013,GO:0031468,http://purl.obolibrary.org/obo/GO_0031468,nuclear membrane reassembly +16.2617013,GO:0031470,http://purl.obolibrary.org/obo/GO_0031470,carboxysome +16.2617013,GO:0031494,http://purl.obolibrary.org/obo/GO_0031494,regulation of mating type switching +16.2617013,GO:0031511,http://purl.obolibrary.org/obo/GO_0031511,Mis6-Sim4 complex +16.2617013,GO:0031592,http://purl.obolibrary.org/obo/GO_0031592,centrosomal corona +16.2617013,GO:0031595,http://purl.obolibrary.org/obo/GO_0031595,nuclear proteasome complex +16.2617013,GO:0031617,http://purl.obolibrary.org/obo/GO_0031617,NMS complex +16.2617013,GO:0031640,http://purl.obolibrary.org/obo/GO_0031640,killing of cells of other organism +16.2617013,GO:0031650,http://purl.obolibrary.org/obo/GO_0031650,regulation of heat generation +16.2617013,GO:0031935,http://purl.obolibrary.org/obo/GO_0031935,none +16.2617013,GO:0031952,http://purl.obolibrary.org/obo/GO_0031952,regulation of protein autophosphorylation +16.2617013,GO:0031992,http://purl.obolibrary.org/obo/GO_0031992,energy transducer activity +16.2617013,GO:0032009,http://purl.obolibrary.org/obo/GO_0032009,early phagosome +16.2617013,GO:0032026,http://purl.obolibrary.org/obo/GO_0032026,response to magnesium ion +16.2617013,GO:0032297,http://purl.obolibrary.org/obo/GO_0032297,negative regulation of DNA-dependent DNA replication initiation +16.2617013,GO:0032299,http://purl.obolibrary.org/obo/GO_0032299,ribonuclease H2 complex +16.2617013,GO:0032420,http://purl.obolibrary.org/obo/GO_0032420,stereocilium +16.2617013,GO:0032425,http://purl.obolibrary.org/obo/GO_0032425,positive regulation of mismatch repair +16.2617013,GO:0032442,http://purl.obolibrary.org/obo/GO_0032442,phenylcoumaran benzylic ether reductase activity +16.2617013,GO:0032455,http://purl.obolibrary.org/obo/GO_0032455,nerve growth factor processing +16.2617013,GO:0032481,http://purl.obolibrary.org/obo/GO_0032481,positive regulation of type I interferon production +16.2617013,GO:0032504,http://purl.obolibrary.org/obo/GO_0032504,multicellular organism reproduction +16.2617013,GO:0032515,http://purl.obolibrary.org/obo/GO_0032515,negative regulation of phosphoprotein phosphatase activity +16.2617013,GO:0032574,http://purl.obolibrary.org/obo/GO_0032574,5'-3' RNA helicase activity +16.2617013,GO:0032610,http://purl.obolibrary.org/obo/GO_0032610,interleukin-1 alpha production +16.2617013,GO:0032614,http://purl.obolibrary.org/obo/GO_0032614,interleukin-11 production +16.2617013,GO:0032618,http://purl.obolibrary.org/obo/GO_0032618,interleukin-15 production +16.2617013,GO:0032625,http://purl.obolibrary.org/obo/GO_0032625,interleukin-21 production +16.2617013,GO:0032644,http://purl.obolibrary.org/obo/GO_0032644,regulation of fractalkine production +16.2617013,GO:0032688,http://purl.obolibrary.org/obo/GO_0032688,negative regulation of interferon-beta production +16.2617013,GO:0032693,http://purl.obolibrary.org/obo/GO_0032693,negative regulation of interleukin-10 production +16.2617013,GO:0032732,http://purl.obolibrary.org/obo/GO_0032732,positive regulation of interleukin-1 production +16.2617013,GO:0032735,http://purl.obolibrary.org/obo/GO_0032735,positive regulation of interleukin-12 production +16.2617013,GO:0032736,http://purl.obolibrary.org/obo/GO_0032736,positive regulation of interleukin-13 production +16.2617013,GO:0032753,http://purl.obolibrary.org/obo/GO_0032753,positive regulation of interleukin-4 production +16.2617013,GO:0032763,http://purl.obolibrary.org/obo/GO_0032763,regulation of mast cell cytokine production +16.2617013,GO:0032796,http://purl.obolibrary.org/obo/GO_0032796,uropod organization +16.2617013,GO:0032799,http://purl.obolibrary.org/obo/GO_0032799,low-density lipoprotein receptor particle metabolic process +16.2617013,GO:0032836,http://purl.obolibrary.org/obo/GO_0032836,glomerular basement membrane development +16.2617013,GO:0032911,http://purl.obolibrary.org/obo/GO_0032911,negative regulation of transforming growth factor beta1 production +16.2617013,GO:0032937,http://purl.obolibrary.org/obo/GO_0032937,SREBP-SCAP-Insig complex +16.2617013,GO:0032967,http://purl.obolibrary.org/obo/GO_0032967,positive regulation of collagen biosynthetic process +16.2617013,GO:0033051,http://purl.obolibrary.org/obo/GO_0033051,aminophosphonate metabolic process +16.2617013,GO:0033055,http://purl.obolibrary.org/obo/GO_0033055,D-arginine metabolic process +16.2617013,GO:0033056,http://purl.obolibrary.org/obo/GO_0033056,D-ornithine metabolic process +16.2617013,GO:0033060,http://purl.obolibrary.org/obo/GO_0033060,ocellus pigmentation +16.2617013,GO:0033074,http://purl.obolibrary.org/obo/GO_0033074,pinene catabolic process +16.2617013,GO:0033106,http://purl.obolibrary.org/obo/GO_0033106,cis-Golgi network membrane +16.2617013,GO:0033119,http://purl.obolibrary.org/obo/GO_0033119,negative regulation of RNA splicing +16.2617013,GO:0033144,http://purl.obolibrary.org/obo/GO_0033144,negative regulation of intracellular steroid hormone receptor signaling pathway +16.2617013,GO:0033156,http://purl.obolibrary.org/obo/GO_0033156,oligogalacturonide transport +16.2617013,GO:0033163,http://purl.obolibrary.org/obo/GO_0033163,microneme membrane +16.2617013,GO:0033164,http://purl.obolibrary.org/obo/GO_0033164,"glycolipid 1,6-alpha-mannosyltransferase activity" +16.2617013,GO:0033169,http://purl.obolibrary.org/obo/GO_0033169,histone H3-K9 demethylation +16.2617013,GO:0033254,http://purl.obolibrary.org/obo/GO_0033254,vacuolar transporter chaperone complex +16.2617013,GO:0033270,http://purl.obolibrary.org/obo/GO_0033270,paranode region of axon +16.2617013,GO:0033281,http://purl.obolibrary.org/obo/GO_0033281,TAT protein transport complex +16.2617013,GO:0033289,http://purl.obolibrary.org/obo/GO_0033289,intraconoid microtubule +16.2617013,GO:0033315,http://purl.obolibrary.org/obo/GO_0033315,meiotic G2/MI DNA replication checkpoint signaling +16.2617013,GO:0033385,http://purl.obolibrary.org/obo/GO_0033385,geranylgeranyl diphosphate metabolic process +16.2617013,GO:0033386,http://purl.obolibrary.org/obo/GO_0033386,geranylgeranyl diphosphate biosynthetic process +16.2617013,GO:0033496,http://purl.obolibrary.org/obo/GO_0033496,sinapate metabolic process +16.2617013,GO:0033501,http://purl.obolibrary.org/obo/GO_0033501,galactose homeostasis +16.2617013,GO:0033504,http://purl.obolibrary.org/obo/GO_0033504,floor plate development +16.2617013,GO:0033510,http://purl.obolibrary.org/obo/GO_0033510,luteolin metabolic process +16.2617013,GO:0033533,http://purl.obolibrary.org/obo/GO_0033533,verbascose metabolic process +16.2617013,GO:0033563,http://purl.obolibrary.org/obo/GO_0033563,dorsal/ventral axon guidance +16.2617013,GO:0033571,http://purl.obolibrary.org/obo/GO_0033571,lactoferrin transport +16.2617013,GO:0033624,http://purl.obolibrary.org/obo/GO_0033624,negative regulation of integrin activation +16.2617013,GO:0033705,http://purl.obolibrary.org/obo/GO_0033705,GDP-4-dehydro-6-deoxy-D-mannose reductase activity +16.2617013,GO:0033727,http://purl.obolibrary.org/obo/GO_0033727,aldehyde dehydrogenase (FAD-independent) activity +16.2617013,GO:0033739,http://purl.obolibrary.org/obo/GO_0033739,preQ1 synthase activity +16.2617013,GO:0033741,http://purl.obolibrary.org/obo/GO_0033741,adenylyl-sulfate reductase (glutathione) activity +16.2617013,GO:0033743,http://purl.obolibrary.org/obo/GO_0033743,peptide-methionine (R)-S-oxide reductase activity +16.2617013,GO:0033786,http://purl.obolibrary.org/obo/GO_0033786,heptose-1-phosphate adenylyltransferase activity +16.2617013,GO:0033826,http://purl.obolibrary.org/obo/GO_0033826,xyloglucan 4-glucosyltransferase activity +16.2617013,GO:0033830,http://purl.obolibrary.org/obo/GO_0033830,Skp1-protein-hydroxyproline N-acetylglucosaminyltransferase activity +16.2617013,GO:0033837,http://purl.obolibrary.org/obo/GO_0033837,anthocyanin 3'-O-beta-glucosyltransferase activity +16.2617013,GO:0033852,http://purl.obolibrary.org/obo/GO_0033852,thyroid-hormone transaminase activity +16.2617013,GO:0033869,http://purl.obolibrary.org/obo/GO_0033869,nucleoside bisphosphate catabolic process +16.2617013,GO:0033871,http://purl.obolibrary.org/obo/GO_0033871,[heparan sulfate]-glucosamine 3-sulfotransferase 2 activity +16.2617013,GO:0033879,http://purl.obolibrary.org/obo/GO_0033879,acetylajmaline esterase activity +16.2617013,GO:0033881,http://purl.obolibrary.org/obo/GO_0033881,bile-acid-CoA hydrolase activity +16.2617013,GO:0033909,http://purl.obolibrary.org/obo/GO_0033909,fucoidanase activity +16.2617013,GO:0033911,http://purl.obolibrary.org/obo/GO_0033911,mycodextranase activity +16.2617013,GO:0033922,http://purl.obolibrary.org/obo/GO_0033922,peptidoglycan beta-N-acetylmuramidase activity +16.2617013,GO:0033956,http://purl.obolibrary.org/obo/GO_0033956,beta-apiosyl-beta-glucosidase activity +16.2617013,GO:0033965,http://purl.obolibrary.org/obo/GO_0033965,aculeacin-A deacylase activity +16.2617013,GO:0033978,http://purl.obolibrary.org/obo/GO_0033978,phosphonopyruvate hydrolase activity +16.2617013,GO:0033984,http://purl.obolibrary.org/obo/GO_0033984,indole-3-glycerol-phosphate lyase activity +16.2617013,GO:0033994,http://purl.obolibrary.org/obo/GO_0033994,glucuronan lyase activity +16.2617013,GO:0034015,http://purl.obolibrary.org/obo/GO_0034015,L-ribulose-5-phosphate 3-epimerase activity +16.2617013,GO:0034020,http://purl.obolibrary.org/obo/GO_0034020,neoxanthin synthase activity +16.2617013,GO:0034025,http://purl.obolibrary.org/obo/GO_0034025,D-aspartate ligase activity +16.2617013,GO:0034027,http://purl.obolibrary.org/obo/GO_0034027,(carboxyethyl)arginine beta-lactam-synthase activity +16.2617013,GO:0034031,http://purl.obolibrary.org/obo/GO_0034031,ribonucleoside bisphosphate catabolic process +16.2617013,GO:0034034,http://purl.obolibrary.org/obo/GO_0034034,purine nucleoside bisphosphate catabolic process +16.2617013,GO:0034039,http://purl.obolibrary.org/obo/GO_0034039,"8-oxo-7,8-dihydroguanine DNA N-glycosylase activity" +16.2617013,GO:0034051,http://purl.obolibrary.org/obo/GO_0034051,negative regulation of plant-type hypersensitive response +16.2617013,GO:0034085,http://purl.obolibrary.org/obo/GO_0034085,establishment of sister chromatid cohesion +16.2617013,GO:0034188,http://purl.obolibrary.org/obo/GO_0034188,apolipoprotein A-I receptor activity +16.2617013,GO:0034200,http://purl.obolibrary.org/obo/GO_0034200,"D,D-heptose 1,7-bisphosphate phosphatase activity" +16.2617013,GO:0034240,http://purl.obolibrary.org/obo/GO_0034240,negative regulation of macrophage fusion +16.2617013,GO:0034242,http://purl.obolibrary.org/obo/GO_0034242,negative regulation of syncytium formation by plasma membrane fusion +16.2617013,GO:0034296,http://purl.obolibrary.org/obo/GO_0034296,zygospore formation +16.2617013,GO:0034303,http://purl.obolibrary.org/obo/GO_0034303,myxospore formation +16.2617013,GO:0034331,http://purl.obolibrary.org/obo/GO_0034331,cell junction maintenance +16.2617013,GO:0034353,http://purl.obolibrary.org/obo/GO_0034353,RNA pyrophosphohydrolase activity +16.2617013,GO:0034383,http://purl.obolibrary.org/obo/GO_0034383,low-density lipoprotein particle clearance +16.2617013,GO:0034431,http://purl.obolibrary.org/obo/GO_0034431,bis(5'-adenosyl)-hexaphosphatase activity +16.2617013,GO:0034457,http://purl.obolibrary.org/obo/GO_0034457,Mpp10 complex +16.2617013,GO:0034458,http://purl.obolibrary.org/obo/GO_0034458,3'-5' RNA helicase activity +16.2617013,GO:0034460,http://purl.obolibrary.org/obo/GO_0034460,uropod assembly +16.2617013,GO:0034493,http://purl.obolibrary.org/obo/GO_0034493,melanosome lumen +16.2617013,GO:0034501,http://purl.obolibrary.org/obo/GO_0034501,protein localization to kinetochore +16.2617013,GO:0034556,http://purl.obolibrary.org/obo/GO_0034556,nitrobenzoate nitroreductase activity +16.2617013,GO:0034669,http://purl.obolibrary.org/obo/GO_0034669,integrin alpha4-beta7 complex +16.2617013,GO:0034724,http://purl.obolibrary.org/obo/GO_0034724,DNA replication-independent chromatin organization +16.2617013,GO:0034757,http://purl.obolibrary.org/obo/GO_0034757,negative regulation of iron ion transport +16.2617013,GO:0034759,http://purl.obolibrary.org/obo/GO_0034759,regulation of iron ion transmembrane transport +16.2617013,GO:0034773,http://purl.obolibrary.org/obo/GO_0034773,histone H4-K20 trimethylation +16.2617013,GO:0034784,http://purl.obolibrary.org/obo/GO_0034784,pivalyl-CoA mutase activity +16.2617013,GO:0034791,http://purl.obolibrary.org/obo/GO_0034791,isobutylamine N-hydroxylase activity +16.2617013,GO:0034844,http://purl.obolibrary.org/obo/GO_0034844,naphthyl-2-methyl-succinate CoA-transferase activity +16.2617013,GO:0034875,http://purl.obolibrary.org/obo/GO_0034875,caffeine oxidase activity +16.2617013,GO:0034952,http://purl.obolibrary.org/obo/GO_0034952,malonate semialdehyde decarboxylase activity +16.2617013,GO:0034957,http://purl.obolibrary.org/obo/GO_0034957,3-nitrophenol nitroreductase activity +16.2617013,GO:0034995,http://purl.obolibrary.org/obo/GO_0034995,SC5b-7 complex +16.2617013,GO:0035058,http://purl.obolibrary.org/obo/GO_0035058,none +16.2617013,GO:0035112,http://purl.obolibrary.org/obo/GO_0035112,genitalia morphogenesis +16.2617013,GO:0035141,http://purl.obolibrary.org/obo/GO_0035141,medial fin morphogenesis +16.2617013,GO:0035143,http://purl.obolibrary.org/obo/GO_0035143,caudal fin morphogenesis +16.2617013,GO:0035153,http://purl.obolibrary.org/obo/GO_0035153,"epithelial cell type specification, open tracheal system" +16.2617013,GO:0035154,http://purl.obolibrary.org/obo/GO_0035154,"terminal cell fate specification, open tracheal system" +16.2617013,GO:0035179,http://purl.obolibrary.org/obo/GO_0035179,larval turning behavior +16.2617013,GO:0035180,http://purl.obolibrary.org/obo/GO_0035180,larval wandering behavior +16.2617013,GO:0035211,http://purl.obolibrary.org/obo/GO_0035211,spermathecum morphogenesis +16.2617013,GO:0035261,http://purl.obolibrary.org/obo/GO_0035261,external genitalia morphogenesis +16.2617013,GO:0035310,http://purl.obolibrary.org/obo/GO_0035310,notum cell fate specification +16.2617013,GO:0035407,http://purl.obolibrary.org/obo/GO_0035407,histone H3-T11 phosphorylation +16.2617013,GO:0035409,http://purl.obolibrary.org/obo/GO_0035409,histone H3-Y41 phosphorylation +16.2617013,GO:0035457,http://purl.obolibrary.org/obo/GO_0035457,cellular response to interferon-alpha +16.2617013,GO:0035507,http://purl.obolibrary.org/obo/GO_0035507,regulation of myosin-light-chain-phosphatase activity +16.2617013,GO:0035560,http://purl.obolibrary.org/obo/GO_0035560,pheophorbidase activity +16.2617013,GO:0035589,http://purl.obolibrary.org/obo/GO_0035589,G protein-coupled purinergic nucleotide receptor signaling pathway +16.2617013,GO:0035645,http://purl.obolibrary.org/obo/GO_0035645,enteric smooth muscle cell differentiation +16.2617013,GO:0035648,http://purl.obolibrary.org/obo/GO_0035648,circadian mating behavior +16.2617013,GO:0035658,http://purl.obolibrary.org/obo/GO_0035658,Mon1-Ccz1 complex +16.2617013,GO:0035683,http://purl.obolibrary.org/obo/GO_0035683,memory T cell extravasation +16.2617013,GO:0035705,http://purl.obolibrary.org/obo/GO_0035705,T-helper 17 cell chemotaxis +16.2617013,GO:0035706,http://purl.obolibrary.org/obo/GO_0035706,T-helper 1 cell chemotaxis +16.2617013,GO:0035719,http://purl.obolibrary.org/obo/GO_0035719,tRNA import into nucleus +16.2617013,GO:0035732,http://purl.obolibrary.org/obo/GO_0035732,nitric oxide storage +16.2617013,GO:0035772,http://purl.obolibrary.org/obo/GO_0035772,interleukin-13-mediated signaling pathway +16.2617013,GO:0035794,http://purl.obolibrary.org/obo/GO_0035794,positive regulation of mitochondrial membrane permeability +16.2617013,GO:0035846,http://purl.obolibrary.org/obo/GO_0035846,oviduct epithelium development +16.2617013,GO:0035847,http://purl.obolibrary.org/obo/GO_0035847,uterine epithelium development +16.2617013,GO:0035848,http://purl.obolibrary.org/obo/GO_0035848,oviduct morphogenesis +16.2617013,GO:0035878,http://purl.obolibrary.org/obo/GO_0035878,nail development +16.2617013,GO:0035973,http://purl.obolibrary.org/obo/GO_0035973,aggrephagy +16.2617013,GO:0035997,http://purl.obolibrary.org/obo/GO_0035997,rhabdomere microvillus membrane +16.2617013,GO:0036001,http://purl.obolibrary.org/obo/GO_0036001,'de novo' pyridoxal 5'-phosphate biosynthetic process +16.2617013,GO:0036016,http://purl.obolibrary.org/obo/GO_0036016,cellular response to interleukin-3 +16.2617013,GO:0036053,http://purl.obolibrary.org/obo/GO_0036053,glomerular endothelium fenestra +16.2617013,GO:0036060,http://purl.obolibrary.org/obo/GO_0036060,slit diaphragm assembly +16.2617013,GO:0036090,http://purl.obolibrary.org/obo/GO_0036090,cleavage furrow ingression +16.2617013,GO:0036103,http://purl.obolibrary.org/obo/GO_0036103,Kdo2-lipid A metabolic process +16.2617013,GO:0036104,http://purl.obolibrary.org/obo/GO_0036104,Kdo2-lipid A biosynthetic process +16.2617013,GO:0036126,http://purl.obolibrary.org/obo/GO_0036126,sperm flagellum +16.2617013,GO:0036131,http://purl.obolibrary.org/obo/GO_0036131,prostaglandin D2 11-ketoreductase activity +16.2617013,GO:0036174,http://purl.obolibrary.org/obo/GO_0036174,butane monooxygenase activity +16.2617013,GO:0036176,http://purl.obolibrary.org/obo/GO_0036176,response to neutral pH +16.2617013,GO:0036186,http://purl.obolibrary.org/obo/GO_0036186,early phagosome membrane +16.2617013,GO:0036194,http://purl.obolibrary.org/obo/GO_0036194,muscle cell projection +16.2617013,GO:0036201,http://purl.obolibrary.org/obo/GO_0036201,ent-isokaurene C2-hydroxylase activity +16.2617013,GO:0036214,http://purl.obolibrary.org/obo/GO_0036214,contractile ring localization +16.2617013,GO:0036216,http://purl.obolibrary.org/obo/GO_0036216,cellular response to stem cell factor stimulus +16.2617013,GO:0036239,http://purl.obolibrary.org/obo/GO_0036239,taxoid 7beta-hydroxylase activity +16.2617013,GO:0036245,http://purl.obolibrary.org/obo/GO_0036245,cellular response to menadione +16.2617013,GO:0036291,http://purl.obolibrary.org/obo/GO_0036291,protein cis-autophosphorylation +16.2617013,GO:0036311,http://purl.obolibrary.org/obo/GO_0036311,chitin disaccharide deacetylase activity +16.2617013,GO:0036320,http://purl.obolibrary.org/obo/GO_0036320,mating-type P-factor pheromone receptor activity +16.2617013,GO:0036356,http://purl.obolibrary.org/obo/GO_0036356,"cyclic 2,3-diphosphoglycerate synthetase activity" +16.2617013,GO:0036362,http://purl.obolibrary.org/obo/GO_0036362,ascus membrane +16.2617013,GO:0036380,http://purl.obolibrary.org/obo/GO_0036380,UDP-N-acetylglucosamine-undecaprenyl-phosphate N-acetylglucosaminephosphotransferase activity +16.2617013,GO:0036396,http://purl.obolibrary.org/obo/GO_0036396,RNA N6-methyladenosine methyltransferase complex +16.2617013,GO:0036414,http://purl.obolibrary.org/obo/GO_0036414,histone citrullination +16.2617013,GO:0036436,http://purl.obolibrary.org/obo/GO_0036436,Isw1a complex +16.2617013,GO:0036457,http://purl.obolibrary.org/obo/GO_0036457,keratohyalin granule +16.2617013,GO:0036513,http://purl.obolibrary.org/obo/GO_0036513,Derlin-1 retrotranslocation complex +16.2617013,GO:0036514,http://purl.obolibrary.org/obo/GO_0036514,dopaminergic neuron axon guidance +16.2617013,GO:0036515,http://purl.obolibrary.org/obo/GO_0036515,serotonergic neuron axon guidance +16.2617013,GO:0038061,http://purl.obolibrary.org/obo/GO_0038061,NIK/NF-kappaB signaling +16.2617013,GO:0038186,http://purl.obolibrary.org/obo/GO_0038186,lithocholic acid receptor activity +16.2617013,GO:0038197,http://purl.obolibrary.org/obo/GO_0038197,type I interferon receptor complex +16.2617013,GO:0039692,http://purl.obolibrary.org/obo/GO_0039692,single stranded viral RNA replication via double stranded DNA intermediate +16.2617013,GO:0040010,http://purl.obolibrary.org/obo/GO_0040010,positive regulation of growth rate +16.2617013,GO:0040019,http://purl.obolibrary.org/obo/GO_0040019,positive regulation of embryonic development +16.2617013,GO:0042066,http://purl.obolibrary.org/obo/GO_0042066,perineurial glial growth +16.2617013,GO:0042078,http://purl.obolibrary.org/obo/GO_0042078,germ-line stem cell division +16.2617013,GO:0042085,http://purl.obolibrary.org/obo/GO_0042085,5-methyltetrahydropteroyltri-L-glutamate-dependent methyltransferase activity +16.2617013,GO:0042131,http://purl.obolibrary.org/obo/GO_0042131,thiamine phosphate phosphatase activity +16.2617013,GO:0042148,http://purl.obolibrary.org/obo/GO_0042148,strand invasion +16.2617013,GO:0042199,http://purl.obolibrary.org/obo/GO_0042199,cyanuric acid metabolic process +16.2617013,GO:0042203,http://purl.obolibrary.org/obo/GO_0042203,toluene catabolic process +16.2617013,GO:0042204,http://purl.obolibrary.org/obo/GO_0042204,s-triazine compound catabolic process +16.2617013,GO:0042256,http://purl.obolibrary.org/obo/GO_0042256,mature ribosome assembly +16.2617013,GO:0042272,http://purl.obolibrary.org/obo/GO_0042272,nuclear RNA export factor complex +16.2617013,GO:0042281,http://purl.obolibrary.org/obo/GO_0042281,"dolichyl pyrophosphate Man9GlcNAc2 alpha-1,3-glucosyltransferase activity" +16.2617013,GO:0042345,http://purl.obolibrary.org/obo/GO_0042345,none +16.2617013,GO:0042347,http://purl.obolibrary.org/obo/GO_0042347,none +16.2617013,GO:0042351,http://purl.obolibrary.org/obo/GO_0042351,'de novo' GDP-L-fucose biosynthetic process +16.2617013,GO:0042404,http://purl.obolibrary.org/obo/GO_0042404,thyroid hormone catabolic process +16.2617013,GO:0042442,http://purl.obolibrary.org/obo/GO_0042442,melatonin catabolic process +16.2617013,GO:0042452,http://purl.obolibrary.org/obo/GO_0042452,deoxyguanosine biosynthetic process +16.2617013,GO:0042467,http://purl.obolibrary.org/obo/GO_0042467,orthokinesis +16.2617013,GO:0042474,http://purl.obolibrary.org/obo/GO_0042474,middle ear morphogenesis +16.2617013,GO:0042503,http://purl.obolibrary.org/obo/GO_0042503,none +16.2617013,GO:0042508,http://purl.obolibrary.org/obo/GO_0042508,none +16.2617013,GO:0042509,http://purl.obolibrary.org/obo/GO_0042509,regulation of tyrosine phosphorylation of STAT protein +16.2617013,GO:0042531,http://purl.obolibrary.org/obo/GO_0042531,positive regulation of tyrosine phosphorylation of STAT protein +16.2617013,GO:0042621,http://purl.obolibrary.org/obo/GO_0042621,poly(3-hydroxyalkanoate) biosynthetic process +16.2617013,GO:0042630,http://purl.obolibrary.org/obo/GO_0042630,behavioral response to water deprivation +16.2617013,GO:0042754,http://purl.obolibrary.org/obo/GO_0042754,negative regulation of circadian rhythm +16.2617013,GO:0042812,http://purl.obolibrary.org/obo/GO_0042812,pheromone catabolic process +16.2617013,GO:0042815,http://purl.obolibrary.org/obo/GO_0042815,bipolar cell growth +16.2617013,GO:0042896,http://purl.obolibrary.org/obo/GO_0042896,chloramphenicol transmembrane transporter activity +16.2617013,GO:0042932,http://purl.obolibrary.org/obo/GO_0042932,chrysobactin transport +16.2617013,GO:0042947,http://purl.obolibrary.org/obo/GO_0042947,glucoside transmembrane transporter activity +16.2617013,GO:0042959,http://purl.obolibrary.org/obo/GO_0042959,alkanesulfonate transmembrane transporter activity +16.2617013,GO:0042969,http://purl.obolibrary.org/obo/GO_0042969,none +16.2617013,GO:0042987,http://purl.obolibrary.org/obo/GO_0042987,amyloid precursor protein catabolic process +16.2617013,GO:0043033,http://purl.obolibrary.org/obo/GO_0043033,isoamylase complex +16.2617013,GO:0043049,http://purl.obolibrary.org/obo/GO_0043049,otic placode formation +16.2617013,GO:0043050,http://purl.obolibrary.org/obo/GO_0043050,pharyngeal pumping +16.2617013,GO:0043084,http://purl.obolibrary.org/obo/GO_0043084,penile erection +16.2617013,GO:0043104,http://purl.obolibrary.org/obo/GO_0043104,positive regulation of GTP cyclohydrolase I activity +16.2617013,GO:0043107,http://purl.obolibrary.org/obo/GO_0043107,type IV pilus-dependent motility +16.2617013,GO:0043117,http://purl.obolibrary.org/obo/GO_0043117,positive regulation of vascular permeability +16.2617013,GO:0043124,http://purl.obolibrary.org/obo/GO_0043124,negative regulation of I-kappaB kinase/NF-kappaB signaling +16.2617013,GO:0043134,http://purl.obolibrary.org/obo/GO_0043134,regulation of hindgut contraction +16.2617013,GO:0043157,http://purl.obolibrary.org/obo/GO_0043157,response to cation stress +16.2617013,GO:0043246,http://purl.obolibrary.org/obo/GO_0043246,megasome +16.2617013,GO:0043291,http://purl.obolibrary.org/obo/GO_0043291,RAVE complex +16.2617013,GO:0043308,http://purl.obolibrary.org/obo/GO_0043308,eosinophil degranulation +16.2617013,GO:0043402,http://purl.obolibrary.org/obo/GO_0043402,glucocorticoid mediated signaling pathway +16.2617013,GO:0043419,http://purl.obolibrary.org/obo/GO_0043419,urea catabolic process +16.2617013,GO:0043421,http://purl.obolibrary.org/obo/GO_0043421,anthranilate catabolic process +16.2617013,GO:0043496,http://purl.obolibrary.org/obo/GO_0043496,regulation of protein homodimerization activity +16.2617013,GO:0043511,http://purl.obolibrary.org/obo/GO_0043511,inhibin complex +16.2617013,GO:0043519,http://purl.obolibrary.org/obo/GO_0043519,regulation of myosin II filament organization +16.2617013,GO:0043524,http://purl.obolibrary.org/obo/GO_0043524,negative regulation of neuron apoptotic process +16.2617013,GO:0043553,http://purl.obolibrary.org/obo/GO_0043553,negative regulation of phosphatidylinositol 3-kinase activity +16.2617013,GO:0043562,http://purl.obolibrary.org/obo/GO_0043562,cellular response to nitrogen levels +16.2617013,GO:0043601,http://purl.obolibrary.org/obo/GO_0043601,nuclear replisome +16.2617013,GO:0043605,http://purl.obolibrary.org/obo/GO_0043605,cellular amide catabolic process +16.2617013,GO:0043606,http://purl.obolibrary.org/obo/GO_0043606,formamide metabolic process +16.2617013,GO:0043618,http://purl.obolibrary.org/obo/GO_0043618,regulation of transcription from RNA polymerase II promoter in response to stress +16.2617013,GO:0043674,http://purl.obolibrary.org/obo/GO_0043674,columella +16.2617013,GO:0043684,http://purl.obolibrary.org/obo/GO_0043684,type IV secretion system complex +16.2617013,GO:0043715,http://purl.obolibrary.org/obo/GO_0043715,"2,3-diketo-5-methylthiopentyl-1-phosphate enolase activity" +16.2617013,GO:0043791,http://purl.obolibrary.org/obo/GO_0043791,dimethylamine methyltransferase activity +16.2617013,GO:0043800,http://purl.obolibrary.org/obo/GO_0043800,hexulose-6-phosphate isomerase activity +16.2617013,GO:0043876,http://purl.obolibrary.org/obo/GO_0043876,D-threonine aldolase activity +16.2617013,GO:0043878,http://purl.obolibrary.org/obo/GO_0043878,glyceraldehyde-3-phosphate dehydrogenase (NAD+) (non-phosphorylating) activity +16.2617013,GO:0043897,http://purl.obolibrary.org/obo/GO_0043897,"glucan 1,4-alpha-maltohydrolase activity" +16.2617013,GO:0043967,http://purl.obolibrary.org/obo/GO_0043967,histone H4 acetylation +16.2617013,GO:0044102,http://purl.obolibrary.org/obo/GO_0044102,purine deoxyribosyltransferase activity +16.2617013,GO:0044157,http://purl.obolibrary.org/obo/GO_0044157,host cell projection +16.2617013,GO:0044167,http://purl.obolibrary.org/obo/GO_0044167,host cell endoplasmic reticulum membrane +16.2617013,GO:0044176,http://purl.obolibrary.org/obo/GO_0044176,host cell filopodium +16.2617013,GO:0044199,http://purl.obolibrary.org/obo/GO_0044199,host cell nuclear envelope +16.2617013,GO:0044200,http://purl.obolibrary.org/obo/GO_0044200,host cell nuclear membrane +16.2617013,GO:0044254,http://purl.obolibrary.org/obo/GO_0044254,none +16.2617013,GO:0044266,http://purl.obolibrary.org/obo/GO_0044266,none +16.2617013,GO:0044353,http://purl.obolibrary.org/obo/GO_0044353,micropinosome +16.2617013,GO:0044364,http://purl.obolibrary.org/obo/GO_0044364,disruption of cells of other organism +16.2617013,GO:0044394,http://purl.obolibrary.org/obo/GO_0044394,protein malonylation +16.2617013,GO:0044399,http://purl.obolibrary.org/obo/GO_0044399,multi-species biofilm formation +16.2617013,GO:0044530,http://purl.obolibrary.org/obo/GO_0044530,supraspliceosomal complex +16.2617013,GO:0044567,http://purl.obolibrary.org/obo/GO_0044567,primary cell wall cellulose synthase complex +16.2617013,GO:0044612,http://purl.obolibrary.org/obo/GO_0044612,nuclear pore linkers +16.2617013,GO:0044683,http://purl.obolibrary.org/obo/GO_0044683,methylthiol:coenzyme M methyltransferase activity +16.2617013,GO:0044722,http://purl.obolibrary.org/obo/GO_0044722,renal phosphate excretion +16.2617013,GO:0044778,http://purl.obolibrary.org/obo/GO_0044778,meiotic DNA integrity checkpoint signaling +16.2617013,GO:0044785,http://purl.obolibrary.org/obo/GO_0044785,metaphase/anaphase transition of meiotic cell cycle +16.2617013,GO:0044799,http://purl.obolibrary.org/obo/GO_0044799,NarGHI complex +16.2617013,GO:0044806,http://purl.obolibrary.org/obo/GO_0044806,G-quadruplex DNA unwinding +16.2617013,GO:0045004,http://purl.obolibrary.org/obo/GO_0045004,DNA replication proofreading +16.2617013,GO:0045035,http://purl.obolibrary.org/obo/GO_0045035,sensory organ precursor cell division +16.2617013,GO:0045039,http://purl.obolibrary.org/obo/GO_0045039,protein insertion into mitochondrial inner membrane +16.2617013,GO:0045046,http://purl.obolibrary.org/obo/GO_0045046,protein import into peroxisome membrane +16.2617013,GO:0045071,http://purl.obolibrary.org/obo/GO_0045071,negative regulation of viral genome replication +16.2617013,GO:0045092,http://purl.obolibrary.org/obo/GO_0045092,interleukin-18 receptor complex +16.2617013,GO:0045116,http://purl.obolibrary.org/obo/GO_0045116,protein neddylation +16.2617013,GO:0045137,http://purl.obolibrary.org/obo/GO_0045137,development of primary sexual characteristics +16.2617013,GO:0045169,http://purl.obolibrary.org/obo/GO_0045169,fusome +16.2617013,GO:0045186,http://purl.obolibrary.org/obo/GO_0045186,zonula adherens assembly +16.2617013,GO:0045217,http://purl.obolibrary.org/obo/GO_0045217,cell-cell junction maintenance +16.2617013,GO:0045222,http://purl.obolibrary.org/obo/GO_0045222,CD4 biosynthetic process +16.2617013,GO:0045343,http://purl.obolibrary.org/obo/GO_0045343,regulation of MHC class I biosynthetic process +16.2617013,GO:0045429,http://purl.obolibrary.org/obo/GO_0045429,positive regulation of nitric oxide biosynthetic process +16.2617013,GO:0045543,http://purl.obolibrary.org/obo/GO_0045543,gibberellin 2-beta-dioxygenase activity +16.2617013,GO:0045582,http://purl.obolibrary.org/obo/GO_0045582,positive regulation of T cell differentiation +16.2617013,GO:0045606,http://purl.obolibrary.org/obo/GO_0045606,positive regulation of epidermal cell differentiation +16.2617013,GO:0045618,http://purl.obolibrary.org/obo/GO_0045618,positive regulation of keratinocyte differentiation +16.2617013,GO:0045687,http://purl.obolibrary.org/obo/GO_0045687,positive regulation of glial cell differentiation +16.2617013,GO:0045714,http://purl.obolibrary.org/obo/GO_0045714,none +16.2617013,GO:0045717,http://purl.obolibrary.org/obo/GO_0045717,negative regulation of fatty acid biosynthetic process +16.2617013,GO:0045737,http://purl.obolibrary.org/obo/GO_0045737,positive regulation of cyclin-dependent protein serine/threonine kinase activity +16.2617013,GO:0045764,http://purl.obolibrary.org/obo/GO_0045764,positive regulation of cellular amino acid metabolic process +16.2617013,GO:0045780,http://purl.obolibrary.org/obo/GO_0045780,positive regulation of bone resorption +16.2617013,GO:0045792,http://purl.obolibrary.org/obo/GO_0045792,negative regulation of cell size +16.2617013,GO:0045797,http://purl.obolibrary.org/obo/GO_0045797,positive regulation of intestinal cholesterol absorption +16.2617013,GO:0045852,http://purl.obolibrary.org/obo/GO_0045852,pH elevation +16.2617013,GO:0045897,http://purl.obolibrary.org/obo/GO_0045897,none +16.2617013,GO:0045914,http://purl.obolibrary.org/obo/GO_0045914,negative regulation of catecholamine metabolic process +16.2617013,GO:0045963,http://purl.obolibrary.org/obo/GO_0045963,negative regulation of dopamine metabolic process +16.2617013,GO:0046011,http://purl.obolibrary.org/obo/GO_0046011,regulation of oskar mRNA translation +16.2617013,GO:0046032,http://purl.obolibrary.org/obo/GO_0046032,ADP catabolic process +16.2617013,GO:0046054,http://purl.obolibrary.org/obo/GO_0046054,dGMP metabolic process +16.2617013,GO:0046060,http://purl.obolibrary.org/obo/GO_0046060,dATP metabolic process +16.2617013,GO:0046069,http://purl.obolibrary.org/obo/GO_0046069,cGMP catabolic process +16.2617013,GO:0046070,http://purl.obolibrary.org/obo/GO_0046070,dGTP metabolic process +16.2617013,GO:0046088,http://purl.obolibrary.org/obo/GO_0046088,cytidine biosynthetic process +16.2617013,GO:0046101,http://purl.obolibrary.org/obo/GO_0046101,hypoxanthine biosynthetic process +16.2617013,GO:0046199,http://purl.obolibrary.org/obo/GO_0046199,cresol catabolic process +16.2617013,GO:0046201,http://purl.obolibrary.org/obo/GO_0046201,cyanate biosynthetic process +16.2617013,GO:0046249,http://purl.obolibrary.org/obo/GO_0046249,alpha-pinene catabolic process +16.2617013,GO:0046284,http://purl.obolibrary.org/obo/GO_0046284,anthocyanin-containing compound catabolic process +16.2617013,GO:0046317,http://purl.obolibrary.org/obo/GO_0046317,regulation of glucosylceramide biosynthetic process +16.2617013,GO:0046331,http://purl.obolibrary.org/obo/GO_0046331,lateral inhibition +16.2617013,GO:0046378,http://purl.obolibrary.org/obo/GO_0046378,enterobacterial common antigen metabolic process +16.2617013,GO:0046380,http://purl.obolibrary.org/obo/GO_0046380,N-acetylneuraminate biosynthetic process +16.2617013,GO:0046408,http://purl.obolibrary.org/obo/GO_0046408,chlorophyll synthetase activity +16.2617013,GO:0046411,http://purl.obolibrary.org/obo/GO_0046411,2-keto-3-deoxygluconate transmembrane transport +16.2617013,GO:0046427,http://purl.obolibrary.org/obo/GO_0046427,positive regulation of receptor signaling pathway via JAK-STAT +16.2617013,GO:0046441,http://purl.obolibrary.org/obo/GO_0046441,D-lysine metabolic process +16.2617013,GO:0046477,http://purl.obolibrary.org/obo/GO_0046477,glycosylceramide catabolic process +16.2617013,GO:0046494,http://purl.obolibrary.org/obo/GO_0046494,rhizobactin 1021 metabolic process +16.2617013,GO:0046502,http://purl.obolibrary.org/obo/GO_0046502,uroporphyrinogen III metabolic process +16.2617013,GO:0046511,http://purl.obolibrary.org/obo/GO_0046511,sphinganine biosynthetic process +16.2617013,GO:0046543,http://purl.obolibrary.org/obo/GO_0046543,development of secondary female sexual characteristics +16.2617013,GO:0046544,http://purl.obolibrary.org/obo/GO_0046544,development of secondary male sexual characteristics +16.2617013,GO:0046573,http://purl.obolibrary.org/obo/GO_0046573,lactonohydrolase activity +16.2617013,GO:0046606,http://purl.obolibrary.org/obo/GO_0046606,negative regulation of centrosome cycle +16.2617013,GO:0046678,http://purl.obolibrary.org/obo/GO_0046678,response to bacteriocin +16.2617013,GO:0046681,http://purl.obolibrary.org/obo/GO_0046681,response to carbamate +16.2617013,GO:0046690,http://purl.obolibrary.org/obo/GO_0046690,response to tellurium ion +16.2617013,GO:0046719,http://purl.obolibrary.org/obo/GO_0046719,regulation by virus of viral protein levels in host cell +16.2617013,GO:0046730,http://purl.obolibrary.org/obo/GO_0046730,induction by virus of host immune response +16.2617013,GO:0046798,http://purl.obolibrary.org/obo/GO_0046798,viral portal complex +16.2617013,GO:0046816,http://purl.obolibrary.org/obo/GO_0046816,virion transport vesicle +16.2617013,GO:0046922,http://purl.obolibrary.org/obo/GO_0046922,peptide-O-fucosyltransferase activity +16.2617013,GO:0047041,http://purl.obolibrary.org/obo/GO_0047041,(S)-carnitine 3-dehydrogenase activity +16.2617013,GO:0047090,http://purl.obolibrary.org/obo/GO_0047090,benzoyl-CoA 3-monooxygenase activity +16.2617013,GO:0047094,http://purl.obolibrary.org/obo/GO_0047094,3-hydroxyphenylacetate 6-hydroxylase activity +16.2617013,GO:0047129,http://purl.obolibrary.org/obo/GO_0047129,opine dehydrogenase activity +16.2617013,GO:0047130,http://purl.obolibrary.org/obo/GO_0047130,"saccharopine dehydrogenase (NADP+, L-lysine-forming) activity" +16.2617013,GO:0047132,http://purl.obolibrary.org/obo/GO_0047132,dihydrobenzophenanthridine oxidase activity +16.2617013,GO:0047147,http://purl.obolibrary.org/obo/GO_0047147,trimethylsulfonium-tetrahydrofolate N-methyltransferase activity +16.2617013,GO:0047164,http://purl.obolibrary.org/obo/GO_0047164,isoflavone-7-O-beta-glucoside 6''-O-malonyltransferase activity +16.2617013,GO:0047204,http://purl.obolibrary.org/obo/GO_0047204,chlorogenate-glucarate O-hydroxycinnamoyltransferase activity +16.2617013,GO:0047241,http://purl.obolibrary.org/obo/GO_0047241,lipopolysaccharide N-acetylmannosaminouronosyltransferase activity +16.2617013,GO:0047255,http://purl.obolibrary.org/obo/GO_0047255,galactogen 6-beta-galactosyltransferase activity +16.2617013,GO:0047271,http://purl.obolibrary.org/obo/GO_0047271,glycosaminoglycan galactosyltransferase activity +16.2617013,GO:0047277,http://purl.obolibrary.org/obo/GO_0047277,globoside alpha-N-acetylgalactosaminyltransferase activity +16.2617013,GO:0047278,http://purl.obolibrary.org/obo/GO_0047278,bilirubin-glucuronoside glucuronosyltransferase activity +16.2617013,GO:0047292,http://purl.obolibrary.org/obo/GO_0047292,trihydroxypterocarpan dimethylallyltransferase activity +16.2617013,GO:0047297,http://purl.obolibrary.org/obo/GO_0047297,asparagine-oxo-acid transaminase activity +16.2617013,GO:0047303,http://purl.obolibrary.org/obo/GO_0047303,glycine-oxaloacetate transaminase activity +16.2617013,GO:0047313,http://purl.obolibrary.org/obo/GO_0047313,aromatic-amino-acid-glyoxylate transaminase activity +16.2617013,GO:0047326,http://purl.obolibrary.org/obo/GO_0047326,inositol tetrakisphosphate 5-kinase activity +16.2617013,GO:0047328,http://purl.obolibrary.org/obo/GO_0047328,acyl-phosphate-hexose phosphotransferase activity +16.2617013,GO:0047339,http://purl.obolibrary.org/obo/GO_0047339,nucleoside-triphosphate-hexose-1-phosphate nucleotidyltransferase activity +16.2617013,GO:0047341,http://purl.obolibrary.org/obo/GO_0047341,fucose-1-phosphate guanylyltransferase activity +16.2617013,GO:0047356,http://purl.obolibrary.org/obo/GO_0047356,CDP-ribitol ribitolphosphotransferase activity +16.2617013,GO:0047357,http://purl.obolibrary.org/obo/GO_0047357,UDP-galactose-UDP-N-acetylglucosamine galactose phosphotransferase activity +16.2617013,GO:0047367,http://purl.obolibrary.org/obo/GO_0047367,"quercetin-3,3'-bissulfate 7-sulfotransferase activity" +16.2617013,GO:0047370,http://purl.obolibrary.org/obo/GO_0047370,succinate-citramalate CoA-transferase activity +16.2617013,GO:0047386,http://purl.obolibrary.org/obo/GO_0047386,"fructose-2,6-bisphosphate 6-phosphatase activity" +16.2617013,GO:0047422,http://purl.obolibrary.org/obo/GO_0047422,N-acyl-D-aspartate deacylase activity +16.2617013,GO:0047433,http://purl.obolibrary.org/obo/GO_0047433,branched-chain-2-oxoacid decarboxylase activity +16.2617013,GO:0047492,http://purl.obolibrary.org/obo/GO_0047492,xanthan lyase activity +16.2617013,GO:0047525,http://purl.obolibrary.org/obo/GO_0047525,2'-hydroxydaidzein reductase activity +16.2617013,GO:0047538,http://purl.obolibrary.org/obo/GO_0047538,2-carboxy-D-arabinitol-1-phosphatase activity +16.2617013,GO:0047548,http://purl.obolibrary.org/obo/GO_0047548,2-methyleneglutarate mutase activity +16.2617013,GO:0047550,http://purl.obolibrary.org/obo/GO_0047550,2-oxoadipate reductase activity +16.2617013,GO:0047558,http://purl.obolibrary.org/obo/GO_0047558,3-cyanoalanine hydratase activity +16.2617013,GO:0047559,http://purl.obolibrary.org/obo/GO_0047559,3-dehydro-L-gulonate 2-dehydrogenase activity +16.2617013,GO:0047563,http://purl.obolibrary.org/obo/GO_0047563,3-hydroxybenzoate 2-monooxygenase activity +16.2617013,GO:0047575,http://purl.obolibrary.org/obo/GO_0047575,4-carboxymuconolactone decarboxylase activity +16.2617013,GO:0047576,http://purl.obolibrary.org/obo/GO_0047576,4-chlorobenzoate dehalogenase activity +16.2617013,GO:0047591,http://purl.obolibrary.org/obo/GO_0047591,5-hydroxypentanoate CoA-transferase activity +16.2617013,GO:0047621,http://purl.obolibrary.org/obo/GO_0047621,acylpyruvate hydrolase activity +16.2617013,GO:0047628,http://purl.obolibrary.org/obo/GO_0047628,ADP-thymidine kinase activity +16.2617013,GO:0047640,http://purl.obolibrary.org/obo/GO_0047640,aldose 1-dehydrogenase activity +16.2617013,GO:0047648,http://purl.obolibrary.org/obo/GO_0047648,alkylamidase activity +16.2617013,GO:0047672,http://purl.obolibrary.org/obo/GO_0047672,anthranilate N-benzoyltransferase activity +16.2617013,GO:0047690,http://purl.obolibrary.org/obo/GO_0047690,aspartyltransferase activity +16.2617013,GO:0047713,http://purl.obolibrary.org/obo/GO_0047713,galactitol 2-dehydrogenase activity +16.2617013,GO:0047715,http://purl.obolibrary.org/obo/GO_0047715,hypotaurocyamine kinase activity +16.2617013,GO:0047726,http://purl.obolibrary.org/obo/GO_0047726,iron-cytochrome-c reductase activity +16.2617013,GO:0047738,http://purl.obolibrary.org/obo/GO_0047738,cellobiose phosphorylase activity +16.2617013,GO:0047750,http://purl.obolibrary.org/obo/GO_0047750,cholestenol delta-isomerase activity +16.2617013,GO:0047769,http://purl.obolibrary.org/obo/GO_0047769,arogenate dehydratase activity +16.2617013,GO:0047831,http://purl.obolibrary.org/obo/GO_0047831,"D-ornithine 4,5-aminomutase activity" +16.2617013,GO:0047872,http://purl.obolibrary.org/obo/GO_0047872,dolichol O-acyltransferase activity +16.2617013,GO:0047904,http://purl.obolibrary.org/obo/GO_0047904,fructose 5-dehydrogenase activity +16.2617013,GO:0047922,http://purl.obolibrary.org/obo/GO_0047922,"gentisate 1,2-dioxygenase activity" +16.2617013,GO:0047924,http://purl.obolibrary.org/obo/GO_0047924,geraniol dehydrogenase activity +16.2617013,GO:0047937,http://purl.obolibrary.org/obo/GO_0047937,glucose-1-phosphate phosphodismutase activity +16.2617013,GO:0047951,http://purl.obolibrary.org/obo/GO_0047951,glutathione thiolesterase activity +16.2617013,GO:0047953,http://purl.obolibrary.org/obo/GO_0047953,glycerol 2-dehydrogenase (NADP+) activity +16.2617013,GO:0047970,http://purl.obolibrary.org/obo/GO_0047970,guanidinoacetase activity +16.2617013,GO:0047981,http://purl.obolibrary.org/obo/GO_0047981,histidine N-acetyltransferase activity +16.2617013,GO:0047992,http://purl.obolibrary.org/obo/GO_0047992,hydroxylysine kinase activity +16.2617013,GO:0048012,http://purl.obolibrary.org/obo/GO_0048012,hepatocyte growth factor receptor signaling pathway +16.2617013,GO:0048258,http://purl.obolibrary.org/obo/GO_0048258,3-ketoglucose-reductase activity +16.2617013,GO:0048308,http://purl.obolibrary.org/obo/GO_0048308,organelle inheritance +16.2617013,GO:0048313,http://purl.obolibrary.org/obo/GO_0048313,Golgi inheritance +16.2617013,GO:0048318,http://purl.obolibrary.org/obo/GO_0048318,axial mesoderm development +16.2617013,GO:0048320,http://purl.obolibrary.org/obo/GO_0048320,axial mesoderm formation +16.2617013,GO:0048391,http://purl.obolibrary.org/obo/GO_0048391,intermediate mesoderm formation +16.2617013,GO:0048440,http://purl.obolibrary.org/obo/GO_0048440,carpel development +16.2617013,GO:0048448,http://purl.obolibrary.org/obo/GO_0048448,stamen morphogenesis +16.2617013,GO:0048451,http://purl.obolibrary.org/obo/GO_0048451,petal formation +16.2617013,GO:0048453,http://purl.obolibrary.org/obo/GO_0048453,sepal formation +16.2617013,GO:0048473,http://purl.obolibrary.org/obo/GO_0048473,D-methionine transport +16.2617013,GO:0048476,http://purl.obolibrary.org/obo/GO_0048476,Holliday junction resolvase complex +16.2617013,GO:0048526,http://purl.obolibrary.org/obo/GO_0048526,imaginal disc-derived wing expansion +16.2617013,GO:0048564,http://purl.obolibrary.org/obo/GO_0048564,photosystem I assembly +16.2617013,GO:0048601,http://purl.obolibrary.org/obo/GO_0048601,oocyte morphogenesis +16.2617013,GO:0048636,http://purl.obolibrary.org/obo/GO_0048636,positive regulation of muscle organ development +16.2617013,GO:0048704,http://purl.obolibrary.org/obo/GO_0048704,embryonic skeletal system morphogenesis +16.2617013,GO:0048745,http://purl.obolibrary.org/obo/GO_0048745,smooth muscle tissue development +16.2617013,GO:0048785,http://purl.obolibrary.org/obo/GO_0048785,hatching gland development +16.2617013,GO:0048793,http://purl.obolibrary.org/obo/GO_0048793,pronephros development +16.2617013,GO:0048826,http://purl.obolibrary.org/obo/GO_0048826,cotyledon morphogenesis +16.2617013,GO:0048830,http://purl.obolibrary.org/obo/GO_0048830,adventitious root development +16.2617013,GO:0048847,http://purl.obolibrary.org/obo/GO_0048847,adenohypophysis formation +16.2617013,GO:0048859,http://purl.obolibrary.org/obo/GO_0048859,formation of anatomical boundary +16.2617013,GO:0048882,http://purl.obolibrary.org/obo/GO_0048882,lateral line development +16.2617013,GO:0048884,http://purl.obolibrary.org/obo/GO_0048884,neuromast development +16.2617013,GO:0050011,http://purl.obolibrary.org/obo/GO_0050011,itaconyl-CoA hydratase activity +16.2617013,GO:0050012,http://purl.obolibrary.org/obo/GO_0050012,juglone 3-hydroxylase activity +16.2617013,GO:0050055,http://purl.obolibrary.org/obo/GO_0050055,limonin-D-ring-lactonase activity +16.2617013,GO:0050060,http://purl.obolibrary.org/obo/GO_0050060,long-chain-alcohol dehydrogenase activity +16.2617013,GO:0050063,http://purl.obolibrary.org/obo/GO_0050063,none +16.2617013,GO:0050067,http://purl.obolibrary.org/obo/GO_0050067,lysine 2-monooxygenase activity +16.2617013,GO:0050072,http://purl.obolibrary.org/obo/GO_0050072,m7G(5')pppN diphosphatase activity +16.2617013,GO:0050078,http://purl.obolibrary.org/obo/GO_0050078,malonate CoA-transferase activity +16.2617013,GO:0050095,http://purl.obolibrary.org/obo/GO_0050095,methionine decarboxylase activity +16.2617013,GO:0050126,http://purl.obolibrary.org/obo/GO_0050126,N-carbamoylputrescine amidase activity +16.2617013,GO:0050134,http://purl.obolibrary.org/obo/GO_0050134,N6-methyl-lysine oxidase activity +16.2617013,GO:0050150,http://purl.obolibrary.org/obo/GO_0050150,o-pyrocatechuate decarboxylase activity +16.2617013,GO:0050155,http://purl.obolibrary.org/obo/GO_0050155,ornithine(lysine) transaminase activity +16.2617013,GO:0050160,http://purl.obolibrary.org/obo/GO_0050160,orsellinate-depside hydrolase activity +16.2617013,GO:0050161,http://purl.obolibrary.org/obo/GO_0050161,succinyl-CoA:oxalate CoA-transferase +16.2617013,GO:0050167,http://purl.obolibrary.org/obo/GO_0050167,pantothenoylcysteine decarboxylase activity +16.2617013,GO:0050205,http://purl.obolibrary.org/obo/GO_0050205,oxamate carbamoyltransferase activity +16.2617013,GO:0050260,http://purl.obolibrary.org/obo/GO_0050260,ribose-5-phosphate-ammonia ligase activity +16.2617013,GO:0050275,http://purl.obolibrary.org/obo/GO_0050275,scopoletin glucosyltransferase activity +16.2617013,GO:0050286,http://purl.obolibrary.org/obo/GO_0050286,sorbitol-6-phosphatase activity +16.2617013,GO:0050299,http://purl.obolibrary.org/obo/GO_0050299,streptomycin 3''-kinase activity +16.2617013,GO:0050301,http://purl.obolibrary.org/obo/GO_0050301,streptomycin-6-phosphatase activity +16.2617013,GO:0050303,http://purl.obolibrary.org/obo/GO_0050303,lysine 6-dehydrogenase activity +16.2617013,GO:0050337,http://purl.obolibrary.org/obo/GO_0050337,thiosulfate-thiol sulfurtransferase activity +16.2617013,GO:0050338,http://purl.obolibrary.org/obo/GO_0050338,thiosulfate dehydrogenase activity +16.2617013,GO:0050370,http://purl.obolibrary.org/obo/GO_0050370,tyrosine N-monooxygenase activity +16.2617013,GO:0050377,http://purl.obolibrary.org/obo/GO_0050377,"UDP-glucose 4,6-dehydratase activity" +16.2617013,GO:0050437,http://purl.obolibrary.org/obo/GO_0050437,(-)-endo-fenchol synthase activity +16.2617013,GO:0050460,http://purl.obolibrary.org/obo/GO_0050460,hydroxylamine reductase (NADH) activity +16.2617013,GO:0050503,http://purl.obolibrary.org/obo/GO_0050503,trehalose 6-phosphate phosphorylase activity +16.2617013,GO:0050505,http://purl.obolibrary.org/obo/GO_0050505,hydroquinone glucosyltransferase activity +16.2617013,GO:0050511,http://purl.obolibrary.org/obo/GO_0050511,undecaprenyldiphospho-muramoylpentapeptide beta-N-acetylglucosaminyltransferase activity +16.2617013,GO:0050532,http://purl.obolibrary.org/obo/GO_0050532,2-phosphosulfolactate phosphatase activity +16.2617013,GO:0050550,http://purl.obolibrary.org/obo/GO_0050550,pinene synthase activity +16.2617013,GO:0050558,http://purl.obolibrary.org/obo/GO_0050558,maltose epimerase activity +16.2617013,GO:0050573,http://purl.obolibrary.org/obo/GO_0050573,dTDP-4-dehydro-6-deoxyglucose reductase activity +16.2617013,GO:0050597,http://purl.obolibrary.org/obo/GO_0050597,taxane 10-beta-hydroxylase activity +16.2617013,GO:0050604,http://purl.obolibrary.org/obo/GO_0050604,taxadiene 5-alpha-hydroxylase activity +16.2617013,GO:0050625,http://purl.obolibrary.org/obo/GO_0050625,"2-hydroxy-1,4-benzoquinone reductase activity" +16.2617013,GO:0050641,http://purl.obolibrary.org/obo/GO_0050641,6-methylsalicylic acid synthase activity +16.2617013,GO:0050651,http://purl.obolibrary.org/obo/GO_0050651,dermatan sulfate proteoglycan biosynthetic process +16.2617013,GO:0050731,http://purl.obolibrary.org/obo/GO_0050731,positive regulation of peptidyl-tyrosine phosphorylation +16.2617013,GO:0050758,http://purl.obolibrary.org/obo/GO_0050758,regulation of thymidylate synthase biosynthetic process +16.2617013,GO:0050828,http://purl.obolibrary.org/obo/GO_0050828,regulation of liquid surface tension +16.2617013,GO:0050855,http://purl.obolibrary.org/obo/GO_0050855,regulation of B cell receptor signaling pathway +16.2617013,GO:0050857,http://purl.obolibrary.org/obo/GO_0050857,positive regulation of antigen receptor-mediated signaling pathway +16.2617013,GO:0051005,http://purl.obolibrary.org/obo/GO_0051005,negative regulation of lipoprotein lipase activity +16.2617013,GO:0051030,http://purl.obolibrary.org/obo/GO_0051030,snRNA transport +16.2617013,GO:0051057,http://purl.obolibrary.org/obo/GO_0051057,positive regulation of small GTPase mediated signal transduction +16.2617013,GO:0051073,http://purl.obolibrary.org/obo/GO_0051073,adenosylcobinamide-GDP ribazoletransferase activity +16.2617013,GO:0051095,http://purl.obolibrary.org/obo/GO_0051095,regulation of helicase activity +16.2617013,GO:0051108,http://purl.obolibrary.org/obo/GO_0051108,carnitine-CoA ligase activity +16.2617013,GO:0051121,http://purl.obolibrary.org/obo/GO_0051121,hepoxilin metabolic process +16.2617013,GO:0051124,http://purl.obolibrary.org/obo/GO_0051124,synaptic assembly at neuromuscular junction +16.2617013,GO:0051155,http://purl.obolibrary.org/obo/GO_0051155,positive regulation of striated muscle cell differentiation +16.2617013,GO:0051204,http://purl.obolibrary.org/obo/GO_0051204,protein insertion into mitochondrial membrane +16.2617013,GO:0051210,http://purl.obolibrary.org/obo/GO_0051210,isotropic cell growth +16.2617013,GO:0051255,http://purl.obolibrary.org/obo/GO_0051255,spindle midzone assembly +16.2617013,GO:0051262,http://purl.obolibrary.org/obo/GO_0051262,protein tetramerization +16.2617013,GO:0051266,http://purl.obolibrary.org/obo/GO_0051266,sirohydrochlorin ferrochelatase activity +16.2617013,GO:0051296,http://purl.obolibrary.org/obo/GO_0051296,establishment of meiotic spindle orientation +16.2617013,GO:0051305,http://purl.obolibrary.org/obo/GO_0051305,chromosome movement towards spindle pole +16.2617013,GO:0051377,http://purl.obolibrary.org/obo/GO_0051377,mannose-ethanolamine phosphotransferase activity +16.2617013,GO:0051392,http://purl.obolibrary.org/obo/GO_0051392,tRNA N-acetyltransferase activity +16.2617013,GO:0051437,http://purl.obolibrary.org/obo/GO_0051437,none +16.2617013,GO:0051454,http://purl.obolibrary.org/obo/GO_0051454,intracellular pH elevation +16.2617013,GO:0051478,http://purl.obolibrary.org/obo/GO_0051478,mannosylglycerate metabolic process +16.2617013,GO:0051479,http://purl.obolibrary.org/obo/GO_0051479,mannosylglycerate biosynthetic process +16.2617013,GO:0051548,http://purl.obolibrary.org/obo/GO_0051548,negative regulation of keratinocyte migration +16.2617013,GO:0051590,http://purl.obolibrary.org/obo/GO_0051590,positive regulation of neurotransmitter transport +16.2617013,GO:0051625,http://purl.obolibrary.org/obo/GO_0051625,epinephrine uptake +16.2617013,GO:0051675,http://purl.obolibrary.org/obo/GO_0051675,isopullulanase activity +16.2617013,GO:0051676,http://purl.obolibrary.org/obo/GO_0051676,pullulan metabolic process +16.2617013,GO:0051744,http://purl.obolibrary.org/obo/GO_0051744,"3,8-divinyl protochlorophyllide a 8-vinyl reductase activity" +16.2617013,GO:0051749,http://purl.obolibrary.org/obo/GO_0051749,indole acetic acid carboxyl methyltransferase activity +16.2617013,GO:0051751,http://purl.obolibrary.org/obo/GO_0051751,"alpha-1,4-mannosyltransferase activity" +16.2617013,GO:0051764,http://purl.obolibrary.org/obo/GO_0051764,actin crosslink formation +16.2617013,GO:0051767,http://purl.obolibrary.org/obo/GO_0051767,nitric-oxide synthase biosynthetic process +16.2617013,GO:0051769,http://purl.obolibrary.org/obo/GO_0051769,regulation of nitric-oxide synthase biosynthetic process +16.2617013,GO:0051897,http://purl.obolibrary.org/obo/GO_0051897,positive regulation of protein kinase B signaling +16.2617013,GO:0051912,http://purl.obolibrary.org/obo/GO_0051912,CoB--CoM heterodisulfide reductase activity +16.2617013,GO:0051926,http://purl.obolibrary.org/obo/GO_0051926,negative regulation of calcium ion transport +16.2617013,GO:0051946,http://purl.obolibrary.org/obo/GO_0051946,regulation of glutamate uptake involved in transmission of nerve impulse +16.2617013,GO:0051965,http://purl.obolibrary.org/obo/GO_0051965,positive regulation of synapse assembly +16.2617013,GO:0052097,http://purl.obolibrary.org/obo/GO_0052097,none +16.2617013,GO:0052545,http://purl.obolibrary.org/obo/GO_0052545,callose localization +16.2617013,GO:0052576,http://purl.obolibrary.org/obo/GO_0052576,carbohydrate storage +16.2617013,GO:0052581,http://purl.obolibrary.org/obo/GO_0052581,(-)-isopiperitenone reductase activity +16.2617013,GO:0052630,http://purl.obolibrary.org/obo/GO_0052630,UDP-N-acetylgalactosamine diphosphorylase activity +16.2617013,GO:0052654,http://purl.obolibrary.org/obo/GO_0052654,L-leucine transaminase activity +16.2617013,GO:0052667,http://purl.obolibrary.org/obo/GO_0052667,phosphomethylethanolamine N-methyltransferase activity +16.2617013,GO:0052763,http://purl.obolibrary.org/obo/GO_0052763,ulvan lyase activity +16.2617013,GO:0052773,http://purl.obolibrary.org/obo/GO_0052773,diacetylchitobiose deacetylase activity +16.2617013,GO:0052792,http://purl.obolibrary.org/obo/GO_0052792,endo-xylogalacturonan hydrolase activity +16.2617013,GO:0052811,http://purl.obolibrary.org/obo/GO_0052811,1-phosphatidylinositol-3-phosphate 4-kinase activity +16.2617013,GO:0052827,http://purl.obolibrary.org/obo/GO_0052827,inositol pentakisphosphate phosphatase activity +16.2617013,GO:0052829,http://purl.obolibrary.org/obo/GO_0052829,"inositol-1,3,4-trisphosphate 1-phosphatase activity" +16.2617013,GO:0052880,http://purl.obolibrary.org/obo/GO_0052880,"oxidoreductase activity, acting on diphenols and related substances as donors, with copper protein as acceptor" +16.2617013,GO:0052905,http://purl.obolibrary.org/obo/GO_0052905,tRNA (guanine(9)-N(1))-methyltransferase activity +16.2617013,GO:0052908,http://purl.obolibrary.org/obo/GO_0052908,16S rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase activity +16.2617013,GO:0055003,http://purl.obolibrary.org/obo/GO_0055003,cardiac myofibril assembly +16.2617013,GO:0055012,http://purl.obolibrary.org/obo/GO_0055012,ventricular cardiac muscle cell differentiation +16.2617013,GO:0055021,http://purl.obolibrary.org/obo/GO_0055021,regulation of cardiac muscle tissue growth +16.2617013,GO:0055047,http://purl.obolibrary.org/obo/GO_0055047,generative cell mitosis +16.2617013,GO:0055062,http://purl.obolibrary.org/obo/GO_0055062,phosphate ion homeostasis +16.2617013,GO:0055119,http://purl.obolibrary.org/obo/GO_0055119,relaxation of cardiac muscle +16.2617013,GO:0060022,http://purl.obolibrary.org/obo/GO_0060022,hard palate development +16.2617013,GO:0060040,http://purl.obolibrary.org/obo/GO_0060040,retinal bipolar neuron differentiation +16.2617013,GO:0060043,http://purl.obolibrary.org/obo/GO_0060043,regulation of cardiac muscle cell proliferation +16.2617013,GO:0060067,http://purl.obolibrary.org/obo/GO_0060067,cervix development +16.2617013,GO:0060114,http://purl.obolibrary.org/obo/GO_0060114,vestibular receptor cell differentiation +16.2617013,GO:0060183,http://purl.obolibrary.org/obo/GO_0060183,apelin receptor signaling pathway +16.2617013,GO:0060192,http://purl.obolibrary.org/obo/GO_0060192,negative regulation of lipase activity +16.2617013,GO:0060253,http://purl.obolibrary.org/obo/GO_0060253,negative regulation of glial cell proliferation +16.2617013,GO:0060305,http://purl.obolibrary.org/obo/GO_0060305,regulation of cell diameter +16.2617013,GO:0060306,http://purl.obolibrary.org/obo/GO_0060306,regulation of membrane repolarization +16.2617013,GO:0060347,http://purl.obolibrary.org/obo/GO_0060347,heart trabecula formation +16.2617013,GO:0060415,http://purl.obolibrary.org/obo/GO_0060415,muscle tissue morphogenesis +16.2617013,GO:0060438,http://purl.obolibrary.org/obo/GO_0060438,trachea development +16.2617013,GO:0060440,http://purl.obolibrary.org/obo/GO_0060440,trachea formation +16.2617013,GO:0060455,http://purl.obolibrary.org/obo/GO_0060455,negative regulation of gastric acid secretion +16.2617013,GO:0060457,http://purl.obolibrary.org/obo/GO_0060457,negative regulation of digestive system process +16.2617013,GO:0060573,http://purl.obolibrary.org/obo/GO_0060573,cell fate specification involved in pattern specification +16.2617013,GO:0060596,http://purl.obolibrary.org/obo/GO_0060596,mammary placode formation +16.2617013,GO:0060620,http://purl.obolibrary.org/obo/GO_0060620,regulation of cholesterol import +16.2617013,GO:0060698,http://purl.obolibrary.org/obo/GO_0060698,endoribonuclease inhibitor activity +16.2617013,GO:0060703,http://purl.obolibrary.org/obo/GO_0060703,deoxyribonuclease inhibitor activity +16.2617013,GO:0060753,http://purl.obolibrary.org/obo/GO_0060753,regulation of mast cell chemotaxis +16.2617013,GO:0060766,http://purl.obolibrary.org/obo/GO_0060766,negative regulation of androgen receptor signaling pathway +16.2617013,GO:0060842,http://purl.obolibrary.org/obo/GO_0060842,arterial endothelial cell differentiation +16.2617013,GO:0060961,http://purl.obolibrary.org/obo/GO_0060961,phospholipase D inhibitor activity +16.2617013,GO:0060977,http://purl.obolibrary.org/obo/GO_0060977,coronary vasculature morphogenesis +16.2617013,GO:0061040,http://purl.obolibrary.org/obo/GO_0061040,female gonad morphogenesis +16.2617013,GO:0061056,http://purl.obolibrary.org/obo/GO_0061056,sclerotome development +16.2617013,GO:0061073,http://purl.obolibrary.org/obo/GO_0061073,ciliary body morphogenesis +16.2617013,GO:0061085,http://purl.obolibrary.org/obo/GO_0061085,regulation of histone H3-K27 methylation +16.2617013,GO:0061178,http://purl.obolibrary.org/obo/GO_0061178,regulation of insulin secretion involved in cellular response to glucose stimulus +16.2617013,GO:0061194,http://purl.obolibrary.org/obo/GO_0061194,taste bud morphogenesis +16.2617013,GO:0061197,http://purl.obolibrary.org/obo/GO_0061197,fungiform papilla morphogenesis +16.2617013,GO:0061356,http://purl.obolibrary.org/obo/GO_0061356,regulation of Wnt protein secretion +16.2617013,GO:0061366,http://purl.obolibrary.org/obo/GO_0061366,behavioral response to chemical pain +16.2617013,GO:0061368,http://purl.obolibrary.org/obo/GO_0061368,behavioral response to formalin induced pain +16.2617013,GO:0061443,http://purl.obolibrary.org/obo/GO_0061443,endocardial cushion cell differentiation +16.2617013,GO:0061453,http://purl.obolibrary.org/obo/GO_0061453,interstitial cell of Cajal differentiation +16.2617013,GO:0061479,http://purl.obolibrary.org/obo/GO_0061479,response to reverse transcriptase inhibitor +16.2617013,GO:0061487,http://purl.obolibrary.org/obo/GO_0061487,none +16.2617013,GO:0061536,http://purl.obolibrary.org/obo/GO_0061536,glycine secretion +16.2617013,GO:0061542,http://purl.obolibrary.org/obo/GO_0061542,3-demethylubiquinol-n 3-O-methyltransferase activity +16.2617013,GO:0061549,http://purl.obolibrary.org/obo/GO_0061549,sympathetic ganglion development +16.2617013,GO:0061626,http://purl.obolibrary.org/obo/GO_0061626,pharyngeal arch artery morphogenesis +16.2617013,GO:0061648,http://purl.obolibrary.org/obo/GO_0061648,tooth replacement +16.2617013,GO:0061652,http://purl.obolibrary.org/obo/GO_0061652,FAT10 conjugating enzyme activity +16.2617013,GO:0061683,http://purl.obolibrary.org/obo/GO_0061683,branching involved in seminal vesicle morphogenesis +16.2617013,GO:0061723,http://purl.obolibrary.org/obo/GO_0061723,glycophagy +16.2617013,GO:0061745,http://purl.obolibrary.org/obo/GO_0061745,none +16.2617013,GO:0061751,http://purl.obolibrary.org/obo/GO_0061751,neutral sphingomyelin phosphodiesterase activity +16.2617013,GO:0070093,http://purl.obolibrary.org/obo/GO_0070093,negative regulation of glucagon secretion +16.2617013,GO:0070094,http://purl.obolibrary.org/obo/GO_0070094,positive regulation of glucagon secretion +16.2617013,GO:0070102,http://purl.obolibrary.org/obo/GO_0070102,interleukin-6-mediated signaling pathway +16.2617013,GO:0070103,http://purl.obolibrary.org/obo/GO_0070103,regulation of interleukin-6-mediated signaling pathway +16.2617013,GO:0070110,http://purl.obolibrary.org/obo/GO_0070110,ciliary neurotrophic factor receptor complex +16.2617013,GO:0070126,http://purl.obolibrary.org/obo/GO_0070126,mitochondrial translational termination +16.2617013,GO:0070132,http://purl.obolibrary.org/obo/GO_0070132,regulation of mitochondrial translational initiation +16.2617013,GO:0070142,http://purl.obolibrary.org/obo/GO_0070142,synaptic vesicle budding +16.2617013,GO:0070198,http://purl.obolibrary.org/obo/GO_0070198,"protein localization to chromosome, telomeric region" +16.2617013,GO:0070209,http://purl.obolibrary.org/obo/GO_0070209,ASTRA complex +16.2617013,GO:0070320,http://purl.obolibrary.org/obo/GO_0070320,inward rectifier potassium channel inhibitor activity +16.2617013,GO:0070370,http://purl.obolibrary.org/obo/GO_0070370,cellular heat acclimation +16.2617013,GO:0070483,http://purl.obolibrary.org/obo/GO_0070483,detection of hypoxia +16.2617013,GO:0070602,http://purl.obolibrary.org/obo/GO_0070602,regulation of centromeric sister chromatid cohesion +16.2617013,GO:0070695,http://purl.obolibrary.org/obo/GO_0070695,FHF complex +16.2617013,GO:0070715,http://purl.obolibrary.org/obo/GO_0070715,sodium-dependent organic cation transport +16.2617013,GO:0070725,http://purl.obolibrary.org/obo/GO_0070725,Yb body +16.2617013,GO:0070735,http://purl.obolibrary.org/obo/GO_0070735,protein-glycine ligase activity +16.2617013,GO:0070738,http://purl.obolibrary.org/obo/GO_0070738,tubulin-glycine ligase activity +16.2617013,GO:0070753,http://purl.obolibrary.org/obo/GO_0070753,interleukin-35 production +16.2617013,GO:0070824,http://purl.obolibrary.org/obo/GO_0070824,SHREC complex +16.2617013,GO:0070827,http://purl.obolibrary.org/obo/GO_0070827,none +16.2617013,GO:0070865,http://purl.obolibrary.org/obo/GO_0070865,investment cone +16.2617013,GO:0070876,http://purl.obolibrary.org/obo/GO_0070876,SOSS complex +16.2617013,GO:0070939,http://purl.obolibrary.org/obo/GO_0070939,Dsl1/NZR complex +16.2617013,GO:0070989,http://purl.obolibrary.org/obo/GO_0070989,oxidative demethylation +16.2617013,GO:0071145,http://purl.obolibrary.org/obo/GO_0071145,none +16.2617013,GO:0071170,http://purl.obolibrary.org/obo/GO_0071170,site-specific DNA replication termination +16.2617013,GO:0071220,http://purl.obolibrary.org/obo/GO_0071220,cellular response to bacterial lipoprotein +16.2617013,GO:0071275,http://purl.obolibrary.org/obo/GO_0071275,cellular response to aluminum ion +16.2617013,GO:0071307,http://purl.obolibrary.org/obo/GO_0071307,cellular response to vitamin K +16.2617013,GO:0071311,http://purl.obolibrary.org/obo/GO_0071311,cellular response to acetate +16.2617013,GO:0071315,http://purl.obolibrary.org/obo/GO_0071315,cellular response to morphine +16.2617013,GO:0071317,http://purl.obolibrary.org/obo/GO_0071317,cellular response to isoquinoline alkaloid +16.2617013,GO:0071406,http://purl.obolibrary.org/obo/GO_0071406,cellular response to methylmercury +16.2617013,GO:0071414,http://purl.obolibrary.org/obo/GO_0071414,cellular response to methotrexate +16.2617013,GO:0071422,http://purl.obolibrary.org/obo/GO_0071422,succinate transmembrane transport +16.2617013,GO:0071454,http://purl.obolibrary.org/obo/GO_0071454,cellular response to anoxia +16.2617013,GO:0071464,http://purl.obolibrary.org/obo/GO_0071464,cellular response to hydrostatic pressure +16.2617013,GO:0071526,http://purl.obolibrary.org/obo/GO_0071526,semaphorin-plexin signaling pathway +16.2617013,GO:0071543,http://purl.obolibrary.org/obo/GO_0071543,diphosphoinositol polyphosphate metabolic process +16.2617013,GO:0071585,http://purl.obolibrary.org/obo/GO_0071585,detoxification of cadmium ion +16.2617013,GO:0071677,http://purl.obolibrary.org/obo/GO_0071677,positive regulation of mononuclear cell migration +16.2617013,GO:0071680,http://purl.obolibrary.org/obo/GO_0071680,response to indole-3-methanol +16.2617013,GO:0071870,http://purl.obolibrary.org/obo/GO_0071870,cellular response to catecholamine stimulus +16.2617013,GO:0071888,http://purl.obolibrary.org/obo/GO_0071888,macrophage apoptotic process +16.2617013,GO:0072052,http://purl.obolibrary.org/obo/GO_0072052,juxtaglomerulus cell differentiation +16.2617013,GO:0072074,http://purl.obolibrary.org/obo/GO_0072074,kidney mesenchyme development +16.2617013,GO:0072075,http://purl.obolibrary.org/obo/GO_0072075,metanephric mesenchyme development +16.2617013,GO:0072079,http://purl.obolibrary.org/obo/GO_0072079,nephron tubule formation +16.2617013,GO:0072104,http://purl.obolibrary.org/obo/GO_0072104,glomerular capillary formation +16.2617013,GO:0072158,http://purl.obolibrary.org/obo/GO_0072158,proximal tubule morphogenesis +16.2617013,GO:0072176,http://purl.obolibrary.org/obo/GO_0072176,nephric duct development +16.2617013,GO:0072193,http://purl.obolibrary.org/obo/GO_0072193,ureter smooth muscle cell differentiation +16.2617013,GO:0072501,http://purl.obolibrary.org/obo/GO_0072501,cellular divalent inorganic anion homeostasis +16.2617013,GO:0072506,http://purl.obolibrary.org/obo/GO_0072506,trivalent inorganic anion homeostasis +16.2617013,GO:0072520,http://purl.obolibrary.org/obo/GO_0072520,seminiferous tubule development +16.2617013,GO:0072536,http://purl.obolibrary.org/obo/GO_0072536,interleukin-23 receptor complex +16.2617013,GO:0072588,http://purl.obolibrary.org/obo/GO_0072588,box H/ACA RNP complex +16.2617013,GO:0072636,http://purl.obolibrary.org/obo/GO_0072636,none +16.2617013,GO:0072644,http://purl.obolibrary.org/obo/GO_0072644,none +16.2617013,GO:0072651,http://purl.obolibrary.org/obo/GO_0072651,interferon-tau production +16.2617013,GO:0072666,http://purl.obolibrary.org/obo/GO_0072666,establishment of protein localization to vacuole +16.2617013,GO:0072672,http://purl.obolibrary.org/obo/GO_0072672,neutrophil extravasation +16.2617013,GO:0072704,http://purl.obolibrary.org/obo/GO_0072704,response to mercaptoethanol +16.2617013,GO:0075527,http://purl.obolibrary.org/obo/GO_0075527,viral RNA editing +16.2617013,GO:0080032,http://purl.obolibrary.org/obo/GO_0080032,methyl jasmonate esterase activity +16.2617013,GO:0080051,http://purl.obolibrary.org/obo/GO_0080051,cutin transport +16.2617013,GO:0080161,http://purl.obolibrary.org/obo/GO_0080161,auxin transmembrane transporter activity +16.2617013,GO:0085039,http://purl.obolibrary.org/obo/GO_0085039,hyphal membrane +16.2617013,GO:0089713,http://purl.obolibrary.org/obo/GO_0089713,Cbf1-Met4-Met28 complex +16.2617013,GO:0090027,http://purl.obolibrary.org/obo/GO_0090027,negative regulation of monocyte chemotaxis +16.2617013,GO:0090036,http://purl.obolibrary.org/obo/GO_0090036,regulation of protein kinase C signaling +16.2617013,GO:0090063,http://purl.obolibrary.org/obo/GO_0090063,positive regulation of microtubule nucleation +16.2617013,GO:0090071,http://purl.obolibrary.org/obo/GO_0090071,negative regulation of ribosome biogenesis +16.2617013,GO:0090083,http://purl.obolibrary.org/obo/GO_0090083,regulation of inclusion body assembly +16.2617013,GO:0090085,http://purl.obolibrary.org/obo/GO_0090085,regulation of protein deubiquitination +16.2617013,GO:0090102,http://purl.obolibrary.org/obo/GO_0090102,cochlea development +16.2617013,GO:0090151,http://purl.obolibrary.org/obo/GO_0090151,establishment of protein localization to mitochondrial membrane +16.2617013,GO:0090160,http://purl.obolibrary.org/obo/GO_0090160,Golgi to lysosome transport +16.2617013,GO:0090171,http://purl.obolibrary.org/obo/GO_0090171,chondrocyte morphogenesis +16.2617013,GO:0090187,http://purl.obolibrary.org/obo/GO_0090187,positive regulation of pancreatic juice secretion +16.2617013,GO:0090208,http://purl.obolibrary.org/obo/GO_0090208,positive regulation of triglyceride metabolic process +16.2617013,GO:0090219,http://purl.obolibrary.org/obo/GO_0090219,negative regulation of lipid kinase activity +16.2617013,GO:0090289,http://purl.obolibrary.org/obo/GO_0090289,regulation of osteoclast proliferation +16.2617013,GO:0090328,http://purl.obolibrary.org/obo/GO_0090328,regulation of olfactory learning +16.2617013,GO:0090331,http://purl.obolibrary.org/obo/GO_0090331,negative regulation of platelet aggregation +16.2617013,GO:0090354,http://purl.obolibrary.org/obo/GO_0090354,regulation of auxin metabolic process +16.2617013,GO:0090402,http://purl.obolibrary.org/obo/GO_0090402,oncogene-induced cell senescence +16.2617013,GO:0090437,http://purl.obolibrary.org/obo/GO_0090437,socket cell differentiation +16.2617013,GO:0090459,http://purl.obolibrary.org/obo/GO_0090459,aspartate homeostasis +16.2617013,GO:0090462,http://purl.obolibrary.org/obo/GO_0090462,ornithine homeostasis +16.2617013,GO:0090464,http://purl.obolibrary.org/obo/GO_0090464,histidine homeostasis +16.2617013,GO:0090576,http://purl.obolibrary.org/obo/GO_0090576,RNA polymerase III transcription regulator complex +16.2617013,GO:0090620,http://purl.obolibrary.org/obo/GO_0090620,none +16.2617013,GO:0090631,http://purl.obolibrary.org/obo/GO_0090631,none +16.2617013,GO:0090633,http://purl.obolibrary.org/obo/GO_0090633,keto-deoxynonulosonic acid (KDN) cytidylyltransferase activity +16.2617013,GO:0090644,http://purl.obolibrary.org/obo/GO_0090644,age-related resistance +16.2617013,GO:0090660,http://purl.obolibrary.org/obo/GO_0090660,cerebrospinal fluid circulation +16.2617013,GO:0097023,http://purl.obolibrary.org/obo/GO_0097023,fructose 6-phosphate aldolase activity +16.2617013,GO:0097092,http://purl.obolibrary.org/obo/GO_0097092,polyacyltrehalose metabolic process +16.2617013,GO:0097093,http://purl.obolibrary.org/obo/GO_0097093,polyacyltrehalose biosynthetic process +16.2617013,GO:0097096,http://purl.obolibrary.org/obo/GO_0097096,facial suture morphogenesis +16.2617013,GO:0097141,http://purl.obolibrary.org/obo/GO_0097141,BIM-BCL-2 complex +16.2617013,GO:0097211,http://purl.obolibrary.org/obo/GO_0097211,cellular response to gonadotropin-releasing hormone +16.2617013,GO:0097266,http://purl.obolibrary.org/obo/GO_0097266,"phenylacetyl-CoA 1,2-epoxidase activity" +16.2617013,GO:0097273,http://purl.obolibrary.org/obo/GO_0097273,creatinine homeostasis +16.2617013,GO:0097278,http://purl.obolibrary.org/obo/GO_0097278,complement-dependent cytotoxicity +16.2617013,GO:0097313,http://purl.obolibrary.org/obo/GO_0097313,bacterial biofilm matrix surface +16.2617013,GO:0097315,http://purl.obolibrary.org/obo/GO_0097315,response to N-acetyl-D-glucosamine +16.2617013,GO:0097345,http://purl.obolibrary.org/obo/GO_0097345,mitochondrial outer membrane permeabilization +16.2617013,GO:0097361,http://purl.obolibrary.org/obo/GO_0097361,CIA complex +16.2617013,GO:0097391,http://purl.obolibrary.org/obo/GO_0097391,chemokine (C-X-C motif) ligand 13 production +16.2617013,GO:0097423,http://purl.obolibrary.org/obo/GO_0097423,mitochondrion-associated adherens complex +16.2617013,GO:0097426,http://purl.obolibrary.org/obo/GO_0097426,glial filament +16.2617013,GO:0097468,http://purl.obolibrary.org/obo/GO_0097468,programmed cell death in response to reactive oxygen species +16.2617013,GO:0097501,http://purl.obolibrary.org/obo/GO_0097501,stress response to metal ion +16.2617013,GO:0097513,http://purl.obolibrary.org/obo/GO_0097513,myosin II filament +16.2617013,GO:0097516,http://purl.obolibrary.org/obo/GO_0097516,microvillar actin bundle +16.2617013,GO:0097536,http://purl.obolibrary.org/obo/GO_0097536,thymus epithelium morphogenesis +16.2617013,GO:0097540,http://purl.obolibrary.org/obo/GO_0097540,axonemal central pair +16.2617013,GO:0097543,http://purl.obolibrary.org/obo/GO_0097543,ciliary inversin compartment +16.2617013,GO:0097729,http://purl.obolibrary.org/obo/GO_0097729,9+2 motile cilium +16.2617013,GO:0098038,http://purl.obolibrary.org/obo/GO_0098038,"non-replicative transposition, DNA-mediated" +16.2617013,GO:0098577,http://purl.obolibrary.org/obo/GO_0098577,inactive sex chromosome +16.2617013,GO:0098581,http://purl.obolibrary.org/obo/GO_0098581,detection of external biotic stimulus +16.2617013,GO:0098627,http://purl.obolibrary.org/obo/GO_0098627,protein arginine phosphatase activity +16.2617013,GO:0098727,http://purl.obolibrary.org/obo/GO_0098727,maintenance of cell number +16.2617013,GO:0098744,http://purl.obolibrary.org/obo/GO_0098744,1-phosphatidylinositol 4-kinase activator activity +16.2617013,GO:0098749,http://purl.obolibrary.org/obo/GO_0098749,cerebellar neuron development +16.2617013,GO:0098761,http://purl.obolibrary.org/obo/GO_0098761,cellular response to interleukin-7 +16.2617013,GO:0098811,http://purl.obolibrary.org/obo/GO_0098811,none +16.2617013,GO:0098859,http://purl.obolibrary.org/obo/GO_0098859,actin filament bundle of actin-based cell projection +16.2617013,GO:0098870,http://purl.obolibrary.org/obo/GO_0098870,action potential propagation +16.2617013,GO:0099560,http://purl.obolibrary.org/obo/GO_0099560,synaptic membrane adhesion +16.2617013,GO:0101024,http://purl.obolibrary.org/obo/GO_0101024,mitotic nuclear membrane organization +16.2617013,GO:0110030,http://purl.obolibrary.org/obo/GO_0110030,regulation of G2/MI transition of meiotic cell cycle +16.2617013,GO:0110031,http://purl.obolibrary.org/obo/GO_0110031,negative regulation of G2/MI transition of meiotic cell cycle +16.2617013,GO:0120013,http://purl.obolibrary.org/obo/GO_0120013,lipid transfer activity +16.2617013,GO:0120034,http://purl.obolibrary.org/obo/GO_0120034,positive regulation of plasma membrane bounded cell projection assembly +16.2617013,GO:0120063,http://purl.obolibrary.org/obo/GO_0120063,stomach smooth muscle contraction +16.2617013,GO:0140014,http://purl.obolibrary.org/obo/GO_0140014,mitotic nuclear division +16.2617013,GO:0150066,http://purl.obolibrary.org/obo/GO_0150066,negative regulation of deacetylase activity +16.2617013,GO:0150179,http://purl.obolibrary.org/obo/GO_0150179,positive regulation of phosphatidylserine metabolic process +16.2617013,GO:1900022,http://purl.obolibrary.org/obo/GO_1900022,regulation of D-erythro-sphingosine kinase activity +16.2617013,GO:1900038,http://purl.obolibrary.org/obo/GO_1900038,negative regulation of cellular response to hypoxia +16.2617013,GO:1900089,http://purl.obolibrary.org/obo/GO_1900089,negative regulation of inositol biosynthetic process +16.2617013,GO:1900097,http://purl.obolibrary.org/obo/GO_1900097,positive regulation of dosage compensation by inactivation of X chromosome +16.2617013,GO:1900117,http://purl.obolibrary.org/obo/GO_1900117,regulation of execution phase of apoptosis +16.2617013,GO:1900178,http://purl.obolibrary.org/obo/GO_1900178,negative regulation of aflatoxin biosynthetic process +16.2617013,GO:1900208,http://purl.obolibrary.org/obo/GO_1900208,regulation of cardiolipin metabolic process +16.2617013,GO:1900390,http://purl.obolibrary.org/obo/GO_1900390,none +16.2617013,GO:1900399,http://purl.obolibrary.org/obo/GO_1900399,positive regulation of pyrimidine nucleotide biosynthetic process +16.2617013,GO:1900408,http://purl.obolibrary.org/obo/GO_1900408,negative regulation of cellular response to oxidative stress +16.2617013,GO:1900470,http://purl.obolibrary.org/obo/GO_1900470,positive regulation of phosphatidylserine biosynthetic process +16.2617013,GO:1900552,http://purl.obolibrary.org/obo/GO_1900552,asperfuranone metabolic process +16.2617013,GO:1900554,http://purl.obolibrary.org/obo/GO_1900554,asperfuranone biosynthetic process +16.2617013,GO:1900773,http://purl.obolibrary.org/obo/GO_1900773,fumiquinazoline metabolic process +16.2617013,GO:1900775,http://purl.obolibrary.org/obo/GO_1900775,fumiquinazoline biosynthetic process +16.2617013,GO:1900807,http://purl.obolibrary.org/obo/GO_1900807,fumigaclavine C metabolic process +16.2617013,GO:1900809,http://purl.obolibrary.org/obo/GO_1900809,fumigaclavine C biosynthetic process +16.2617013,GO:1900813,http://purl.obolibrary.org/obo/GO_1900813,monodictyphenone metabolic process +16.2617013,GO:1900815,http://purl.obolibrary.org/obo/GO_1900815,monodictyphenone biosynthetic process +16.2617013,GO:1900822,http://purl.obolibrary.org/obo/GO_1900822,regulation of ergot alkaloid biosynthetic process +16.2617013,GO:1900920,http://purl.obolibrary.org/obo/GO_1900920,none +16.2617013,GO:1901004,http://purl.obolibrary.org/obo/GO_1901004,ubiquinone-6 metabolic process +16.2617013,GO:1901006,http://purl.obolibrary.org/obo/GO_1901006,ubiquinone-6 biosynthetic process +16.2617013,GO:1901020,http://purl.obolibrary.org/obo/GO_1901020,negative regulation of calcium ion transmembrane transporter activity +16.2617013,GO:1901061,http://purl.obolibrary.org/obo/GO_1901061,guaiacyl lignin metabolic process +16.2617013,GO:1901063,http://purl.obolibrary.org/obo/GO_1901063,guaiacyl lignin biosynthetic process +16.2617013,GO:1901098,http://purl.obolibrary.org/obo/GO_1901098,positive regulation of autophagosome maturation +16.2617013,GO:1901119,http://purl.obolibrary.org/obo/GO_1901119,tobramycin metabolic process +16.2617013,GO:1901121,http://purl.obolibrary.org/obo/GO_1901121,tobramycin biosynthetic process +16.2617013,GO:1901163,http://purl.obolibrary.org/obo/GO_1901163,regulation of trophoblast cell migration +16.2617013,GO:1901170,http://purl.obolibrary.org/obo/GO_1901170,naphthalene catabolic process +16.2617013,GO:1901183,http://purl.obolibrary.org/obo/GO_1901183,positive regulation of camalexin biosynthetic process +16.2617013,GO:1901215,http://purl.obolibrary.org/obo/GO_1901215,negative regulation of neuron death +16.2617013,GO:1901277,http://purl.obolibrary.org/obo/GO_1901277,tartrate biosynthetic process +16.2617013,GO:1901308,http://purl.obolibrary.org/obo/GO_1901308,regulation of sterol regulatory element binding protein cleavage +16.2617013,GO:1901332,http://purl.obolibrary.org/obo/GO_1901332,negative regulation of lateral root development +16.2617013,GO:1901333,http://purl.obolibrary.org/obo/GO_1901333,positive regulation of lateral root development +16.2617013,GO:1901344,http://purl.obolibrary.org/obo/GO_1901344,response to leptomycin B +16.2617013,GO:1901393,http://purl.obolibrary.org/obo/GO_1901393,negative regulation of transforming growth factor beta1 activation +16.2617013,GO:1901498,http://purl.obolibrary.org/obo/GO_1901498,response to tetralin +16.2617013,GO:1901625,http://purl.obolibrary.org/obo/GO_1901625,cellular response to ergosterol +16.2617013,GO:1901645,http://purl.obolibrary.org/obo/GO_1901645,regulation of synoviocyte proliferation +16.2617013,GO:1901664,http://purl.obolibrary.org/obo/GO_1901664,regulation of NAD+ ADP-ribosyltransferase activity +16.2617013,GO:1901672,http://purl.obolibrary.org/obo/GO_1901672,positive regulation of systemic acquired resistance +16.2617013,GO:1901697,http://purl.obolibrary.org/obo/GO_1901697,olivetolic acid biosynthetic process +16.2617013,GO:1901716,http://purl.obolibrary.org/obo/GO_1901716,negative regulation of gamma-aminobutyric acid catabolic process +16.2617013,GO:1901726,http://purl.obolibrary.org/obo/GO_1901726,negative regulation of histone deacetylase activity +16.2617013,GO:1901745,http://purl.obolibrary.org/obo/GO_1901745,prephenate(2-) metabolic process +16.2617013,GO:1901747,http://purl.obolibrary.org/obo/GO_1901747,prephenate(2-) biosynthetic process +16.2617013,GO:1901748,http://purl.obolibrary.org/obo/GO_1901748,leukotriene D4 metabolic process +16.2617013,GO:1901785,http://purl.obolibrary.org/obo/GO_1901785,p-cresol catabolic process +16.2617013,GO:1901786,http://purl.obolibrary.org/obo/GO_1901786,p-cresol biosynthetic process +16.2617013,GO:1901789,http://purl.obolibrary.org/obo/GO_1901789,benzoyl-CoA biosynthetic process +16.2617013,GO:1901848,http://purl.obolibrary.org/obo/GO_1901848,nicotinate catabolic process +16.2617013,GO:1901889,http://purl.obolibrary.org/obo/GO_1901889,negative regulation of cell junction assembly +16.2617013,GO:1901944,http://purl.obolibrary.org/obo/GO_1901944,miltiradiene metabolic process +16.2617013,GO:1901946,http://purl.obolibrary.org/obo/GO_1901946,miltiradiene biosynthetic process +16.2617013,GO:1901950,http://purl.obolibrary.org/obo/GO_1901950,dense core granule transport +16.2617013,GO:1901957,http://purl.obolibrary.org/obo/GO_1901957,regulation of cutin biosynthetic process +16.2617013,GO:1901979,http://purl.obolibrary.org/obo/GO_1901979,regulation of inward rectifier potassium channel activity +16.2617013,GO:1902001,http://purl.obolibrary.org/obo/GO_1902001,fatty acid transmembrane transport +16.2617013,GO:1902003,http://purl.obolibrary.org/obo/GO_1902003,regulation of amyloid-beta formation +16.2617013,GO:1902075,http://purl.obolibrary.org/obo/GO_1902075,cellular response to salt +16.2617013,GO:1902093,http://purl.obolibrary.org/obo/GO_1902093,positive regulation of flagellated sperm motility +16.2617013,GO:1902108,http://purl.obolibrary.org/obo/GO_1902108,regulation of mitochondrial membrane permeability involved in apoptotic process +16.2617013,GO:1902110,http://purl.obolibrary.org/obo/GO_1902110,positive regulation of mitochondrial membrane permeability involved in apoptotic process +16.2617013,GO:1902179,http://purl.obolibrary.org/obo/GO_1902179,verruculogen metabolic process +16.2617013,GO:1902181,http://purl.obolibrary.org/obo/GO_1902181,verruculogen biosynthetic process +16.2617013,GO:1902188,http://purl.obolibrary.org/obo/GO_1902188,none +16.2617013,GO:1902222,http://purl.obolibrary.org/obo/GO_1902222,erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process +16.2617013,GO:1902276,http://purl.obolibrary.org/obo/GO_1902276,regulation of pancreatic amylase secretion +16.2617013,GO:1902278,http://purl.obolibrary.org/obo/GO_1902278,positive regulation of pancreatic amylase secretion +16.2617013,GO:1902279,http://purl.obolibrary.org/obo/GO_1902279,positive regulation of pancreatic amylase secretion by cholecystokinin signaling pathway +16.2617013,GO:1902343,http://purl.obolibrary.org/obo/GO_1902343,regulation of maltose transport +16.2617013,GO:1902447,http://purl.obolibrary.org/obo/GO_1902447,negative regulation of shade avoidance +16.2617013,GO:1902500,http://purl.obolibrary.org/obo/GO_1902500,vacuolar HOPS complex +16.2617013,GO:1902623,http://purl.obolibrary.org/obo/GO_1902623,negative regulation of neutrophil migration +16.2617013,GO:1902668,http://purl.obolibrary.org/obo/GO_1902668,negative regulation of axon guidance +16.2617013,GO:1902669,http://purl.obolibrary.org/obo/GO_1902669,positive regulation of axon guidance +16.2617013,GO:1902686,http://purl.obolibrary.org/obo/GO_1902686,mitochondrial outer membrane permeabilization involved in programmed cell death +16.2617013,GO:1902721,http://purl.obolibrary.org/obo/GO_1902721,negative regulation of prolactin secretion +16.2617013,GO:1902766,http://purl.obolibrary.org/obo/GO_1902766,skeletal muscle satellite cell migration +16.2617013,GO:1902788,http://purl.obolibrary.org/obo/GO_1902788,response to isooctane +16.2617013,GO:1902789,http://purl.obolibrary.org/obo/GO_1902789,cellular response to isooctane +16.2617013,GO:1902819,http://purl.obolibrary.org/obo/GO_1902819,ethyl acetate biosynthetic process +16.2617013,GO:1902820,http://purl.obolibrary.org/obo/GO_1902820,1-undecene metabolic process +16.2617013,GO:1902821,http://purl.obolibrary.org/obo/GO_1902821,1-undecene biosynthetic process +16.2617013,GO:1902860,http://purl.obolibrary.org/obo/GO_1902860,propionyl-CoA biosynthetic process +16.2617013,GO:1902883,http://purl.obolibrary.org/obo/GO_1902883,negative regulation of response to oxidative stress +16.2617013,GO:1902890,http://purl.obolibrary.org/obo/GO_1902890,regulation of root hair elongation +16.2617013,GO:1902906,http://purl.obolibrary.org/obo/GO_1902906,proteasome storage granule assembly +16.2617013,GO:1902932,http://purl.obolibrary.org/obo/GO_1902932,positive regulation of alcohol biosynthetic process +16.2617013,GO:1902996,http://purl.obolibrary.org/obo/GO_1902996,regulation of neurofibrillary tangle assembly +16.2617013,GO:1903015,http://purl.obolibrary.org/obo/GO_1903015,regulation of exo-alpha-sialidase activity +16.2617013,GO:1903027,http://purl.obolibrary.org/obo/GO_1903027,regulation of opsonization +16.2617013,GO:1903070,http://purl.obolibrary.org/obo/GO_1903070,negative regulation of ER-associated ubiquitin-dependent protein catabolic process +16.2617013,GO:1903074,http://purl.obolibrary.org/obo/GO_1903074,TRAIL death-inducing signaling complex assembly +16.2617013,GO:1903076,http://purl.obolibrary.org/obo/GO_1903076,regulation of protein localization to plasma membrane +16.2617013,GO:1903170,http://purl.obolibrary.org/obo/GO_1903170,negative regulation of calcium ion transmembrane transport +16.2617013,GO:1903177,http://purl.obolibrary.org/obo/GO_1903177,negative regulation of tyrosine 3-monooxygenase activity +16.2617013,GO:1903178,http://purl.obolibrary.org/obo/GO_1903178,positive regulation of tyrosine 3-monooxygenase activity +16.2617013,GO:1903180,http://purl.obolibrary.org/obo/GO_1903180,negative regulation of dopamine biosynthetic process +16.2617013,GO:1903282,http://purl.obolibrary.org/obo/GO_1903282,regulation of glutathione peroxidase activity +16.2617013,GO:1903307,http://purl.obolibrary.org/obo/GO_1903307,positive regulation of regulated secretory pathway +16.2617013,GO:1903326,http://purl.obolibrary.org/obo/GO_1903326,regulation of tRNA metabolic process +16.2617013,GO:1903330,http://purl.obolibrary.org/obo/GO_1903330,negative regulation of iron-sulfur cluster assembly +16.2617013,GO:1903333,http://purl.obolibrary.org/obo/GO_1903333,negative regulation of protein folding +16.2617013,GO:1903334,http://purl.obolibrary.org/obo/GO_1903334,positive regulation of protein folding +16.2617013,GO:1903335,http://purl.obolibrary.org/obo/GO_1903335,regulation of vacuolar transport +16.2617013,GO:1903341,http://purl.obolibrary.org/obo/GO_1903341,regulation of meiotic DNA double-strand break formation +16.2617013,GO:1903349,http://purl.obolibrary.org/obo/GO_1903349,omegasome membrane +16.2617013,GO:1903351,http://purl.obolibrary.org/obo/GO_1903351,cellular response to dopamine +16.2617013,GO:1903400,http://purl.obolibrary.org/obo/GO_1903400,none +16.2617013,GO:1903442,http://purl.obolibrary.org/obo/GO_1903442,response to lipoic acid +16.2617013,GO:1903498,http://purl.obolibrary.org/obo/GO_1903498,bundle sheath cell differentiation +16.2617013,GO:1903525,http://purl.obolibrary.org/obo/GO_1903525,regulation of membrane tubulation +16.2617013,GO:1903548,http://purl.obolibrary.org/obo/GO_1903548,negative regulation of growth hormone activity +16.2617013,GO:1903600,http://purl.obolibrary.org/obo/GO_1903600,glutaminase complex +16.2617013,GO:1903630,http://purl.obolibrary.org/obo/GO_1903630,regulation of aminoacyl-tRNA ligase activity +16.2617013,GO:1903644,http://purl.obolibrary.org/obo/GO_1903644,regulation of chaperone-mediated protein folding +16.2617013,GO:1903659,http://purl.obolibrary.org/obo/GO_1903659,regulation of complement-dependent cytotoxicity +16.2617013,GO:1903718,http://purl.obolibrary.org/obo/GO_1903718,none +16.2617013,GO:1903722,http://purl.obolibrary.org/obo/GO_1903722,regulation of centriole elongation +16.2617013,GO:1903746,http://purl.obolibrary.org/obo/GO_1903746,positive regulation of pharyngeal pumping +16.2617013,GO:1903826,http://purl.obolibrary.org/obo/GO_1903826,L-arginine transmembrane transport +16.2617013,GO:1903830,http://purl.obolibrary.org/obo/GO_1903830,magnesium ion transmembrane transport +16.2617013,GO:1903859,http://purl.obolibrary.org/obo/GO_1903859,regulation of dendrite extension +16.2617013,GO:1903886,http://purl.obolibrary.org/obo/GO_1903886,positive regulation of chemokine (C-C motif) ligand 20 production +16.2617013,GO:1903888,http://purl.obolibrary.org/obo/GO_1903888,regulation of plant epidermal cell differentiation +16.2617013,GO:1903939,http://purl.obolibrary.org/obo/GO_1903939,regulation of TORC2 signaling +16.2617013,GO:1903956,http://purl.obolibrary.org/obo/GO_1903956,none +16.2617013,GO:1904000,http://purl.obolibrary.org/obo/GO_1904000,positive regulation of eating behavior +16.2617013,GO:1904007,http://purl.obolibrary.org/obo/GO_1904007,positive regulation of phospholipase D activity +16.2617013,GO:1904031,http://purl.obolibrary.org/obo/GO_1904031,positive regulation of cyclin-dependent protein kinase activity +16.2617013,GO:1904057,http://purl.obolibrary.org/obo/GO_1904057,negative regulation of sensory perception of pain +16.2617013,GO:1904071,http://purl.obolibrary.org/obo/GO_1904071,presynaptic active zone assembly +16.2617013,GO:1904159,http://purl.obolibrary.org/obo/GO_1904159,megasporocyte differentiation +16.2617013,GO:1904201,http://purl.obolibrary.org/obo/GO_1904201,regulation of iodide transport +16.2617013,GO:1904207,http://purl.obolibrary.org/obo/GO_1904207,none +16.2617013,GO:1904278,http://purl.obolibrary.org/obo/GO_1904278,positive regulation of wax biosynthetic process +16.2617013,GO:1904293,http://purl.obolibrary.org/obo/GO_1904293,negative regulation of ERAD pathway +16.2617013,GO:1904304,http://purl.obolibrary.org/obo/GO_1904304,regulation of gastro-intestinal system smooth muscle contraction +16.2617013,GO:1904341,http://purl.obolibrary.org/obo/GO_1904341,regulation of colon smooth muscle contraction +16.2617013,GO:1904377,http://purl.obolibrary.org/obo/GO_1904377,positive regulation of protein localization to cell periphery +16.2617013,GO:1904390,http://purl.obolibrary.org/obo/GO_1904390,cone retinal bipolar cell differentiation +16.2617013,GO:1904407,http://purl.obolibrary.org/obo/GO_1904407,positive regulation of nitric oxide metabolic process +16.2617013,GO:1904425,http://purl.obolibrary.org/obo/GO_1904425,negative regulation of GTP binding +16.2617013,GO:1904470,http://purl.obolibrary.org/obo/GO_1904470,regulation of endothelin production +16.2617013,GO:1904480,http://purl.obolibrary.org/obo/GO_1904480,positive regulation of intestinal absorption +16.2617013,GO:1904523,http://purl.obolibrary.org/obo/GO_1904523,regulation of DNA amplification +16.2617013,GO:1904529,http://purl.obolibrary.org/obo/GO_1904529,regulation of actin filament binding +16.2617013,GO:1904569,http://purl.obolibrary.org/obo/GO_1904569,regulation of selenocysteine incorporation +16.2617013,GO:1904584,http://purl.obolibrary.org/obo/GO_1904584,cellular response to polyamine macromolecule +16.2617013,GO:1904591,http://purl.obolibrary.org/obo/GO_1904591,positive regulation of protein import +16.2617013,GO:1904628,http://purl.obolibrary.org/obo/GO_1904628,cellular response to phorbol 13-acetate 12-myristate +16.2617013,GO:1904668,http://purl.obolibrary.org/obo/GO_1904668,positive regulation of ubiquitin protein ligase activity +16.2617013,GO:1904731,http://purl.obolibrary.org/obo/GO_1904731,positive regulation of intestinal lipid absorption +16.2617013,GO:1904761,http://purl.obolibrary.org/obo/GO_1904761,negative regulation of myofibroblast differentiation +16.2617013,GO:1904775,http://purl.obolibrary.org/obo/GO_1904775,positive regulation of ubiquinone biosynthetic process +16.2617013,GO:1904893,http://purl.obolibrary.org/obo/GO_1904893,negative regulation of receptor signaling pathway via STAT +16.2617013,GO:1904894,http://purl.obolibrary.org/obo/GO_1904894,positive regulation of receptor signaling pathway via STAT +16.2617013,GO:1904902,http://purl.obolibrary.org/obo/GO_1904902,ESCRT III complex assembly +16.2617013,GO:1905347,http://purl.obolibrary.org/obo/GO_1905347,endodeoxyribonuclease complex +16.2617013,GO:1905710,http://purl.obolibrary.org/obo/GO_1905710,positive regulation of membrane permeability +16.2617013,GO:1905962,http://purl.obolibrary.org/obo/GO_1905962,glutamatergic neuron differentiation +16.2617013,GO:1990012,http://purl.obolibrary.org/obo/GO_1990012,complex laminated body +16.2617013,GO:1990103,http://purl.obolibrary.org/obo/GO_1990103,DnaA-HU complex +16.2617013,GO:1990115,http://purl.obolibrary.org/obo/GO_1990115,RNA polymerase III assembly +16.2617013,GO:1990143,http://purl.obolibrary.org/obo/GO_1990143,CoA-synthesizing protein complex +16.2617013,GO:1990191,http://purl.obolibrary.org/obo/GO_1990191,cobalamin transport complex +16.2617013,GO:1990231,http://purl.obolibrary.org/obo/GO_1990231,STING complex +16.2617013,GO:1990246,http://purl.obolibrary.org/obo/GO_1990246,uniplex complex +16.2617013,GO:1990261,http://purl.obolibrary.org/obo/GO_1990261,pre-mRNA catabolic process +16.2617013,GO:1990314,http://purl.obolibrary.org/obo/GO_1990314,cellular response to insulin-like growth factor stimulus +16.2617013,GO:1990362,http://purl.obolibrary.org/obo/GO_1990362,butanol dehydrogenase activity +16.2617013,GO:1990394,http://purl.obolibrary.org/obo/GO_1990394,cellular response to cell wall damage +16.2617013,GO:1990457,http://purl.obolibrary.org/obo/GO_1990457,pexophagosome +16.2617013,GO:1990462,http://purl.obolibrary.org/obo/GO_1990462,omegasome +16.2617013,GO:1990469,http://purl.obolibrary.org/obo/GO_1990469,Rhino-Deadlock-Cutoff Complex +16.2617013,GO:1990530,http://purl.obolibrary.org/obo/GO_1990530,Cdc50p-Drs2p complex +16.2617013,GO:1990604,http://purl.obolibrary.org/obo/GO_1990604,IRE1-TRAF2-ASK1 complex +16.2617013,GO:1990623,http://purl.obolibrary.org/obo/GO_1990623,Herring body +16.2617013,GO:1990709,http://purl.obolibrary.org/obo/GO_1990709,presynaptic active zone organization +16.2617013,GO:1990733,http://purl.obolibrary.org/obo/GO_1990733,titin-telethonin complex +16.2617013,GO:1990822,http://purl.obolibrary.org/obo/GO_1990822,basic amino acid transmembrane transport +16.2617013,GO:1990859,http://purl.obolibrary.org/obo/GO_1990859,cellular response to endothelin +16.2617013,GO:2000059,http://purl.obolibrary.org/obo/GO_2000059,negative regulation of ubiquitin-dependent protein catabolic process +16.2617013,GO:2000108,http://purl.obolibrary.org/obo/GO_2000108,positive regulation of leukocyte apoptotic process +16.2617013,GO:2000155,http://purl.obolibrary.org/obo/GO_2000155,positive regulation of cilium-dependent cell motility +16.2617013,GO:2000171,http://purl.obolibrary.org/obo/GO_2000171,negative regulation of dendrite development +16.2617013,GO:2000284,http://purl.obolibrary.org/obo/GO_2000284,positive regulation of cellular amino acid biosynthetic process +16.2617013,GO:2000332,http://purl.obolibrary.org/obo/GO_2000332,regulation of blood microparticle formation +16.2617013,GO:2000402,http://purl.obolibrary.org/obo/GO_2000402,negative regulation of lymphocyte migration +16.2617013,GO:2000410,http://purl.obolibrary.org/obo/GO_2000410,regulation of thymocyte migration +16.2617013,GO:2000434,http://purl.obolibrary.org/obo/GO_2000434,regulation of protein neddylation +16.2617013,GO:2000471,http://purl.obolibrary.org/obo/GO_2000471,regulation of hematopoietic stem cell migration +16.2617013,GO:2000506,http://purl.obolibrary.org/obo/GO_2000506,none +16.2617013,GO:2000569,http://purl.obolibrary.org/obo/GO_2000569,regulation of T-helper 2 cell activation +16.2617013,GO:2000631,http://purl.obolibrary.org/obo/GO_2000631,regulation of pre-miRNA processing +16.2617013,GO:2000638,http://purl.obolibrary.org/obo/GO_2000638,regulation of SREBP signaling pathway +16.2617013,GO:2000662,http://purl.obolibrary.org/obo/GO_2000662,none +16.2617013,GO:2000665,http://purl.obolibrary.org/obo/GO_2000665,none +16.2617013,GO:2000786,http://purl.obolibrary.org/obo/GO_2000786,positive regulation of autophagosome assembly +16.2617013,GO:2000811,http://purl.obolibrary.org/obo/GO_2000811,negative regulation of anoikis +16.2617013,GO:2000824,http://purl.obolibrary.org/obo/GO_2000824,none +16.2617013,GO:2000826,http://purl.obolibrary.org/obo/GO_2000826,regulation of heart morphogenesis +16.2617013,GO:2000871,http://purl.obolibrary.org/obo/GO_2000871,negative regulation of progesterone secretion +16.2617013,GO:2000889,http://purl.obolibrary.org/obo/GO_2000889,cellodextrin metabolic process +16.2617013,GO:2000948,http://purl.obolibrary.org/obo/GO_2000948,regulation of xyloglucan metabolic process +16.2617013,GO:2000983,http://purl.obolibrary.org/obo/GO_2000983,regulation of ATP citrate synthase activity +16.2617013,GO:2001014,http://purl.obolibrary.org/obo/GO_2001014,regulation of skeletal muscle cell differentiation +16.2617013,GO:2001096,http://purl.obolibrary.org/obo/GO_2001096,cellotriose transport +16.2617013,GO:2001109,http://purl.obolibrary.org/obo/GO_2001109,regulation of lens epithelial cell proliferation +16.2617013,GO:2001138,http://purl.obolibrary.org/obo/GO_2001138,regulation of phospholipid transport +16.2617013,GO:2001154,http://purl.obolibrary.org/obo/GO_2001154,regulation of glycolytic fermentation to ethanol +16.2617013,GO:2001205,http://purl.obolibrary.org/obo/GO_2001205,negative regulation of osteoclast development +16.2617013,GO:2001286,http://purl.obolibrary.org/obo/GO_2001286,regulation of caveolin-mediated endocytosis +16.2617013,HP:0000029,http://purl.obolibrary.org/obo/HP_0000029,Testicular atrophy +16.2617013,HP:0000062,http://purl.obolibrary.org/obo/HP_0000062,Ambiguous genitalia +16.2617013,HP:0000122,http://purl.obolibrary.org/obo/HP_0000122,Unilateral renal agenesis +16.2617013,HP:0000124,http://purl.obolibrary.org/obo/HP_0000124,Renal tubular dysfunction +16.2617013,HP:0000147,http://purl.obolibrary.org/obo/HP_0000147,Polycystic ovaries +16.2617013,HP:0000154,http://purl.obolibrary.org/obo/HP_0000154,Wide mouth +16.2617013,HP:0000158,http://purl.obolibrary.org/obo/HP_0000158,Macroglossia +16.2617013,HP:0000201,http://purl.obolibrary.org/obo/HP_0000201,Pierre-Robin sequence +16.2617013,HP:0000248,http://purl.obolibrary.org/obo/HP_0000248,Brachycephaly +16.2617013,HP:0000303,http://purl.obolibrary.org/obo/HP_0000303,Mandibular prognathia +16.2617013,HP:0000327,http://purl.obolibrary.org/obo/HP_0000327,Hypoplasia of the maxilla +16.2617013,HP:0000356,http://purl.obolibrary.org/obo/HP_0000356,Abnormality of the outer ear +16.2617013,HP:0000388,http://purl.obolibrary.org/obo/HP_0000388,Otitis media +16.2617013,HP:0000410,http://purl.obolibrary.org/obo/HP_0000410,Mixed hearing impairment +16.2617013,HP:0000411,http://purl.obolibrary.org/obo/HP_0000411,Protruding ear +16.2617013,HP:0000544,http://purl.obolibrary.org/obo/HP_0000544,External ophthalmoplegia +16.2617013,HP:0000639,http://purl.obolibrary.org/obo/HP_0000639,Nystagmus +16.2617013,HP:0000716,http://purl.obolibrary.org/obo/HP_0000716,Depression +16.2617013,HP:0000835,http://purl.obolibrary.org/obo/HP_0000835,Adrenal hypoplasia +16.2617013,HP:0000894,http://purl.obolibrary.org/obo/HP_0000894,Short clavicles +16.2617013,HP:0000957,http://purl.obolibrary.org/obo/HP_0000957,Cafe-au-lait spot +16.2617013,HP:0000958,http://purl.obolibrary.org/obo/HP_0000958,Dry skin +16.2617013,HP:0001087,http://purl.obolibrary.org/obo/HP_0001087,Developmental glaucoma +16.2617013,HP:0001105,http://purl.obolibrary.org/obo/HP_0001105,Retinal atrophy +16.2617013,HP:0001107,http://purl.obolibrary.org/obo/HP_0001107,Ocular albinism +16.2617013,HP:0001270,http://purl.obolibrary.org/obo/HP_0001270,Motor delay +16.2617013,HP:0001291,http://purl.obolibrary.org/obo/HP_0001291,Abnormal cranial nerve morphology +16.2617013,HP:0001347,http://purl.obolibrary.org/obo/HP_0001347,Hyperreflexia +16.2617013,HP:0001488,http://purl.obolibrary.org/obo/HP_0001488,Bilateral ptosis +16.2617013,HP:0001489,http://purl.obolibrary.org/obo/HP_0001489,Posterior vitreous detachment +16.2617013,HP:0001679,http://purl.obolibrary.org/obo/HP_0001679,Abnormal aortic morphology +16.2617013,HP:0001685,http://purl.obolibrary.org/obo/HP_0001685,Myocardial fibrosis +16.2617013,HP:0001692,http://purl.obolibrary.org/obo/HP_0001692,Atrial arrhythmia +16.2617013,HP:0001756,http://purl.obolibrary.org/obo/HP_0001756,Vestibular hypofunction +16.2617013,HP:0001822,http://purl.obolibrary.org/obo/HP_0001822,Hallux valgus +16.2617013,HP:0001901,http://purl.obolibrary.org/obo/HP_0001901,Polycythemia +16.2617013,HP:0001915,http://purl.obolibrary.org/obo/HP_0001915,Aplastic anemia +16.2617013,HP:0001961,http://purl.obolibrary.org/obo/HP_0001961,Hypoplastic heart +16.2617013,HP:0001987,http://purl.obolibrary.org/obo/HP_0001987,Hyperammonemia +16.2617013,HP:0001988,http://purl.obolibrary.org/obo/HP_0001988,Recurrent hypoglycemia +16.2617013,HP:0002025,http://purl.obolibrary.org/obo/HP_0002025,Anal stenosis +16.2617013,HP:0002034,http://purl.obolibrary.org/obo/HP_0002034,Abnormal rectum morphology +16.2617013,HP:0002079,http://purl.obolibrary.org/obo/HP_0002079,Hypoplasia of the corpus callosum +16.2617013,HP:0002097,http://purl.obolibrary.org/obo/HP_0002097,Emphysema +16.2617013,HP:0002247,http://purl.obolibrary.org/obo/HP_0002247,Duodenal atresia +16.2617013,HP:0002311,http://purl.obolibrary.org/obo/HP_0002311,Incoordination +16.2617013,HP:0002643,http://purl.obolibrary.org/obo/HP_0002643,Neonatal respiratory distress +16.2617013,HP:0002804,http://purl.obolibrary.org/obo/HP_0002804,Arthrogryposis multiplex congenita +16.2617013,HP:0002943,http://purl.obolibrary.org/obo/HP_0002943,Thoracic scoliosis +16.2617013,HP:0003159,http://purl.obolibrary.org/obo/HP_0003159,Hyperoxaluria +16.2617013,HP:0003281,http://purl.obolibrary.org/obo/HP_0003281,Increased circulating ferritin concentration +16.2617013,HP:0003394,http://purl.obolibrary.org/obo/HP_0003394,Muscle spasm +16.2617013,HP:0003416,http://purl.obolibrary.org/obo/HP_0003416,Spinal canal stenosis +16.2617013,HP:0003447,http://purl.obolibrary.org/obo/HP_0003447,Axonal loss +16.2617013,HP:0003581,http://purl.obolibrary.org/obo/HP_0003581,Adult onset +16.2617013,HP:0003756,http://purl.obolibrary.org/obo/HP_0003756,Skeletal myopathy +16.2617013,HP:0003763,http://purl.obolibrary.org/obo/HP_0003763,Bruxism +16.2617013,HP:0004409,http://purl.obolibrary.org/obo/HP_0004409,Hyposmia +16.2617013,HP:0004416,http://purl.obolibrary.org/obo/HP_0004416,Precocious atherosclerosis +16.2617013,HP:0004736,http://purl.obolibrary.org/obo/HP_0004736,Crossed fused renal ectopia +16.2617013,HP:0005112,http://purl.obolibrary.org/obo/HP_0005112,Abdominal aortic aneurysm +16.2617013,HP:0005133,http://purl.obolibrary.org/obo/HP_0005133,Right ventricular dilatation +16.2617013,HP:0005235,http://purl.obolibrary.org/obo/HP_0005235,Jejunal atresia +16.2617013,HP:0005305,http://purl.obolibrary.org/obo/HP_0005305,Cerebral venous thrombosis +16.2617013,HP:0005318,http://purl.obolibrary.org/obo/HP_0005318,Cerebral vasculitis +16.2617013,HP:0005484,http://purl.obolibrary.org/obo/HP_0005484,Secondary microcephaly +16.2617013,HP:0005948,http://purl.obolibrary.org/obo/HP_0005948,Multiple pulmonary cysts +16.2617013,HP:0006385,http://purl.obolibrary.org/obo/HP_0006385,Short lower limbs +16.2617013,HP:0006737,http://purl.obolibrary.org/obo/HP_0006737,Extraadrenal pheochromocytoma +16.2617013,HP:0006765,http://purl.obolibrary.org/obo/HP_0006765,Chondrosarcoma +16.2617013,HP:0006772,http://purl.obolibrary.org/obo/HP_0006772,Renal angiomyolipoma +16.2617013,HP:0006780,http://purl.obolibrary.org/obo/HP_0006780,Parathyroid carcinoma +16.2617013,HP:0006829,http://purl.obolibrary.org/obo/HP_0006829,Severe muscular hypotonia +16.2617013,HP:0007002,http://purl.obolibrary.org/obo/HP_0007002,Motor axonal neuropathy +16.2617013,HP:0007343,http://purl.obolibrary.org/obo/HP_0007343,Abnormal morphology of the limbic system +16.2617013,HP:0007401,http://purl.obolibrary.org/obo/HP_0007401,Macular atrophy +16.2617013,HP:0007750,http://purl.obolibrary.org/obo/HP_0007750,Hypoplasia of the fovea +16.2617013,HP:0008221,http://purl.obolibrary.org/obo/HP_0008221,Adrenal hyperplasia +16.2617013,HP:0008480,http://purl.obolibrary.org/obo/HP_0008480,Cervical spondylosis +16.2617013,HP:0008568,http://purl.obolibrary.org/obo/HP_0008568,Vestibular areflexia +16.2617013,HP:0008625,http://purl.obolibrary.org/obo/HP_0008625,Severe sensorineural hearing impairment +16.2617013,HP:0008629,http://purl.obolibrary.org/obo/HP_0008629,Pulsatile tinnitus +16.2617013,HP:0008715,http://purl.obolibrary.org/obo/HP_0008715,Testicular dysgenesis +16.2617013,HP:0009720,http://purl.obolibrary.org/obo/HP_0009720,Adenoma sebaceum +16.2617013,HP:0010302,http://purl.obolibrary.org/obo/HP_0010302,Spinal cord tumor +16.2617013,HP:0010447,http://purl.obolibrary.org/obo/HP_0010447,Anal fistula +16.2617013,HP:0010516,http://purl.obolibrary.org/obo/HP_0010516,Thymus hyperplasia +16.2617013,HP:0010617,http://purl.obolibrary.org/obo/HP_0010617,Cardiac fibroma +16.2617013,HP:0010808,http://purl.obolibrary.org/obo/HP_0010808,Protruding tongue +16.2617013,HP:0010816,http://purl.obolibrary.org/obo/HP_0010816,Epidermal nevus +16.2617013,HP:0010958,http://purl.obolibrary.org/obo/HP_0010958,Bilateral renal agenesis +16.2617013,HP:0011034,http://purl.obolibrary.org/obo/HP_0011034,Amyloidosis +16.2617013,HP:0011107,http://purl.obolibrary.org/obo/HP_0011107,Recurrent aphthous stomatitis +16.2617013,HP:0011798,http://purl.obolibrary.org/obo/HP_0011798,Renal oncocytoma +16.2617013,HP:0011800,http://purl.obolibrary.org/obo/HP_0011800,Midface retrusion +16.2617013,HP:0011846,http://purl.obolibrary.org/obo/HP_0011846,Osteoblastoma +16.2617013,HP:0011847,http://purl.obolibrary.org/obo/HP_0011847,Giant cell tumor of bone +16.2617013,HP:0011915,http://purl.obolibrary.org/obo/HP_0011915,Cardiovascular calcification +16.2617013,HP:0011975,http://purl.obolibrary.org/obo/HP_0011975,Aminoglycoside-induced hearing loss +16.2617013,HP:0012028,http://purl.obolibrary.org/obo/HP_0012028,Hepatocellular adenoma +16.2617013,HP:0012031,http://purl.obolibrary.org/obo/HP_0012031,Lipomatous tumor +16.2617013,HP:0012205,http://purl.obolibrary.org/obo/HP_0012205,Globozoospermia +16.2617013,HP:0012226,http://purl.obolibrary.org/obo/HP_0012226,Ovarian teratoma +16.2617013,HP:0012304,http://purl.obolibrary.org/obo/HP_0012304,Hypoplastic aortic arch +16.2617013,HP:0012417,http://purl.obolibrary.org/obo/HP_0012417,Hypocapnia +16.2617013,HP:0012581,http://purl.obolibrary.org/obo/HP_0012581,Simple renal cyst +16.2617013,HP:0012720,http://purl.obolibrary.org/obo/HP_0012720,Neoplasm of the nose +16.2617013,HP:0020110,http://purl.obolibrary.org/obo/HP_0020110,Bone fracture +16.2617013,HP:0025170,http://purl.obolibrary.org/obo/HP_0025170,Neuronal/glioneuronal neoplasm of the central nervous system +16.2617013,HP:0025247,http://purl.obolibrary.org/obo/HP_0025247,Dermoid cyst +16.2617013,HP:0025283,http://purl.obolibrary.org/obo/HP_0025283,Tender +16.2617013,HP:0025349,http://purl.obolibrary.org/obo/HP_0025349,Limbal edema +16.2617013,HP:0025499,http://purl.obolibrary.org/obo/HP_0025499,Class I obesity +16.2617013,HP:0030080,http://purl.obolibrary.org/obo/HP_0030080,Burkitt lymphoma +16.2617013,HP:0030319,http://purl.obolibrary.org/obo/HP_0030319,Weakness of facial musculature +16.2617013,HP:0030359,http://purl.obolibrary.org/obo/HP_0030359,Squamous cell lung carcinoma +16.2617013,HP:0030392,http://purl.obolibrary.org/obo/HP_0030392,Choroid plexus carcinoma +16.2617013,HP:0030423,http://purl.obolibrary.org/obo/HP_0030423,Splenic cyst +16.2617013,HP:0030447,http://purl.obolibrary.org/obo/HP_0030447,Merkel cell skin cancer +16.2617013,HP:0030829,http://purl.obolibrary.org/obo/HP_0030829,Abnormal breath sound +16.2617013,HP:0030843,http://purl.obolibrary.org/obo/HP_0030843,Cardiac amyloidosis +16.2617013,HP:0030856,http://purl.obolibrary.org/obo/HP_0030856,Posterior staphyloma +16.2617013,HP:0030890,http://purl.obolibrary.org/obo/HP_0030890,Hyperintensity of cerebral white matter on MRI +16.2617013,HP:0031111,http://purl.obolibrary.org/obo/HP_0031111,Cutaneous hamartoma +16.2617013,HP:0031368,http://purl.obolibrary.org/obo/HP_0031368,Intestinal perforation +16.2617013,HP:0031475,http://purl.obolibrary.org/obo/HP_0031475,Status epilepticus without prominent motor symptoms +16.2617013,HP:0031525,http://purl.obolibrary.org/obo/HP_0031525,Keratoacanthoma +16.2617013,HP:0032323,http://purl.obolibrary.org/obo/HP_0032323,Periodic fever +16.2617013,HP:0032505,http://purl.obolibrary.org/obo/HP_0032505,Hydrophobia +16.2617013,HP:0032660,http://purl.obolibrary.org/obo/HP_0032660,Convulsive status epilepticus +16.2617013,HP:0032703,http://purl.obolibrary.org/obo/HP_0032703,none +16.2617013,HP:0032867,http://purl.obolibrary.org/obo/HP_0032867,Refractory status epilepticus +16.2617013,HP:0033052,http://purl.obolibrary.org/obo/HP_0033052,Psychogenic non-epileptic seizure +16.2617013,HP:0040096,http://purl.obolibrary.org/obo/HP_0040096,Neoplasm of the inner ear +16.2617013,HP:0040187,http://purl.obolibrary.org/obo/HP_0040187,Neonatal sepsis +16.2617013,HP:0045059,http://purl.obolibrary.org/obo/HP_0045059,Hyperkeratotic papule +16.2617013,HP:0100246,http://purl.obolibrary.org/obo/HP_0100246,Osteoma +16.2617013,HP:0100258,http://purl.obolibrary.org/obo/HP_0100258,Preaxial polydactyly +16.2617013,HP:0100333,http://purl.obolibrary.org/obo/HP_0100333,Unilateral cleft lip +16.2617013,HP:0100522,http://purl.obolibrary.org/obo/HP_0100522,Thymoma +16.2617013,HP:0100540,http://purl.obolibrary.org/obo/HP_0100540,Palpebral edema +16.2617013,HP:0100634,http://purl.obolibrary.org/obo/HP_0100634,Neuroendocrine neoplasm +16.2617013,HP:0100728,http://purl.obolibrary.org/obo/HP_0100728,Germ cell neoplasia +16.2617013,HP:0100751,http://purl.obolibrary.org/obo/HP_0100751,Esophageal neoplasm +16.2617013,HP:0100777,http://purl.obolibrary.org/obo/HP_0100777,Exostoses +16.2617013,HP:0200026,http://purl.obolibrary.org/obo/HP_0200026,Ocular pain +16.2617013,HP:0410170,http://purl.obolibrary.org/obo/HP_0410170,Hippocampal atrophy +16.2617013,MONDO:0000032,http://purl.obolibrary.org/obo/MONDO_0000032,"febrile seizures, familial" +16.2617013,MONDO:0000082,http://purl.obolibrary.org/obo/MONDO_0000082,pelvic organ prolapse +16.2617013,MONDO:0000105,http://purl.obolibrary.org/obo/MONDO_0000105,"anemia, nonspherocytic hemolytic" +16.2617013,MONDO:0000227,http://purl.obolibrary.org/obo/MONDO_0000227,African tick-bite fever +16.2617013,MONDO:0000331,http://purl.obolibrary.org/obo/MONDO_0000331,Rickettsia helvetica spotted fever +16.2617013,MONDO:0000371,http://purl.obolibrary.org/obo/MONDO_0000371,oral cavity carcinoma in situ +16.2617013,MONDO:0000428,http://purl.obolibrary.org/obo/MONDO_0000428,Y-linked disease +16.2617013,MONDO:0000513,http://purl.obolibrary.org/obo/MONDO_0000513,bone ameloblastoma +16.2617013,MONDO:0000517,http://purl.obolibrary.org/obo/MONDO_0000517,brain stem medulloblastoma +16.2617013,MONDO:0000659,http://purl.obolibrary.org/obo/MONDO_0000659,delta-heavy chain disease +16.2617013,MONDO:0000775,http://purl.obolibrary.org/obo/MONDO_0000775,drug allergy +16.2617013,MONDO:0000894,http://purl.obolibrary.org/obo/MONDO_0000894,mucinous bronchioloalveolar adenocarcinoma +16.2617013,MONDO:0000971,http://purl.obolibrary.org/obo/MONDO_0000971,chest wall lipoma +16.2617013,MONDO:0000972,http://purl.obolibrary.org/obo/MONDO_0000972,gallbladder lipoma +16.2617013,MONDO:0001048,http://purl.obolibrary.org/obo/MONDO_0001048,orbital granuloma +16.2617013,MONDO:0001051,http://purl.obolibrary.org/obo/MONDO_0001051,acute otitis externa +16.2617013,MONDO:0001055,http://purl.obolibrary.org/obo/MONDO_0001055,conjunctival pterygium +16.2617013,MONDO:0001138,http://purl.obolibrary.org/obo/MONDO_0001138,angiodysplasia of intestine +16.2617013,MONDO:0001172,http://purl.obolibrary.org/obo/MONDO_0001172,salpingo-oophoritis +16.2617013,MONDO:0001174,http://purl.obolibrary.org/obo/MONDO_0001174,conjunctival vascular disease +16.2617013,MONDO:0001182,http://purl.obolibrary.org/obo/MONDO_0001182,idiopathic corneal edema +16.2617013,MONDO:0001210,http://purl.obolibrary.org/obo/MONDO_0001210,enophthalmos +16.2617013,MONDO:0001217,http://purl.obolibrary.org/obo/MONDO_0001217,pseudomembranous conjunctivitis +16.2617013,MONDO:0001227,http://purl.obolibrary.org/obo/MONDO_0001227,chronic tympanitis +16.2617013,MONDO:0001232,http://purl.obolibrary.org/obo/MONDO_0001232,orbital osteomyelitis +16.2617013,MONDO:0001321,http://purl.obolibrary.org/obo/MONDO_0001321,scleral staphyloma +16.2617013,MONDO:0001327,http://purl.obolibrary.org/obo/MONDO_0001327,pelvic muscle wasting +16.2617013,MONDO:0001335,http://purl.obolibrary.org/obo/MONDO_0001335,hypotrichosis of eyelid +16.2617013,MONDO:0001418,http://purl.obolibrary.org/obo/MONDO_0001418,trachea sarcoma +16.2617013,MONDO:0001466,http://purl.obolibrary.org/obo/MONDO_0001466,punctate epithelial keratoconjunctivitis +16.2617013,MONDO:0001592,http://purl.obolibrary.org/obo/MONDO_0001592,prolapse of female genital organ +16.2617013,MONDO:0001630,http://purl.obolibrary.org/obo/MONDO_0001630,branch retinal artery occlusion +16.2617013,MONDO:0001685,http://purl.obolibrary.org/obo/MONDO_0001685,chronic follicular conjunctivitis +16.2617013,MONDO:0001717,http://purl.obolibrary.org/obo/MONDO_0001717,posterior corneal pigmentation +16.2617013,MONDO:0001731,http://purl.obolibrary.org/obo/MONDO_0001731,benign vaginal mixed epithelial and mesenchymal neoplasm +16.2617013,MONDO:0001771,http://purl.obolibrary.org/obo/MONDO_0001771,infective urethral stricture +16.2617013,MONDO:0001776,http://purl.obolibrary.org/obo/MONDO_0001776,prostate calculus +16.2617013,MONDO:0001809,http://purl.obolibrary.org/obo/MONDO_0001809,adhesions of uterus +16.2617013,MONDO:0001813,http://purl.obolibrary.org/obo/MONDO_0001813,squamous blepharitis +16.2617013,MONDO:0001853,http://purl.obolibrary.org/obo/MONDO_0001853,contact blepharoconjunctivitis +16.2617013,MONDO:0001884,http://purl.obolibrary.org/obo/MONDO_0001884,abducens nerve neoplasm +16.2617013,MONDO:0001987,http://purl.obolibrary.org/obo/MONDO_0001987,senile degeneration of brain +16.2617013,MONDO:0002064,http://purl.obolibrary.org/obo/MONDO_0002064,breast angiomatosis +16.2617013,MONDO:0002099,http://purl.obolibrary.org/obo/MONDO_0002099,Histoplasma capsulatum infectious disease +16.2617013,MONDO:0002193,http://purl.obolibrary.org/obo/MONDO_0002193,Bartholin gland benign neoplasm +16.2617013,MONDO:0002201,http://purl.obolibrary.org/obo/MONDO_0002201,vulvar trichoepithelioma +16.2617013,MONDO:0002338,http://purl.obolibrary.org/obo/MONDO_0002338,extratemporal epilepsy +16.2617013,MONDO:0002435,http://purl.obolibrary.org/obo/MONDO_0002435,oculomotor nerve neoplasm +16.2617013,MONDO:0002449,http://purl.obolibrary.org/obo/MONDO_0002449,nodular degeneration of cornea +16.2617013,MONDO:0002554,http://purl.obolibrary.org/obo/MONDO_0002554,sympathetic neurilemmoma +16.2617013,MONDO:0002626,http://purl.obolibrary.org/obo/MONDO_0002626,spinal accessory nerve neoplasm +16.2617013,MONDO:0002636,http://purl.obolibrary.org/obo/MONDO_0002636,accessory nerve disease +16.2617013,MONDO:0002642,http://purl.obolibrary.org/obo/MONDO_0002642,trochlear nerve neoplasm +16.2617013,MONDO:0002644,http://purl.obolibrary.org/obo/MONDO_0002644,idiopathic granulomatous myositis +16.2617013,MONDO:0002649,http://purl.obolibrary.org/obo/MONDO_0002649,scrotum Paget disease +16.2617013,MONDO:0002664,http://purl.obolibrary.org/obo/MONDO_0002664,extrahepatic bile duct signet ring cell carcinoma +16.2617013,MONDO:0002698,http://purl.obolibrary.org/obo/MONDO_0002698,testicular gonadoblastoma +16.2617013,MONDO:0002750,http://purl.obolibrary.org/obo/MONDO_0002750,bladder colloid adenocarcinoma +16.2617013,MONDO:0002811,http://purl.obolibrary.org/obo/MONDO_0002811,main bronchus cancer +16.2617013,MONDO:0002833,http://purl.obolibrary.org/obo/MONDO_0002833,fallopian tube transitional cell carcinoma +16.2617013,MONDO:0002856,http://purl.obolibrary.org/obo/MONDO_0002856,gallbladder rhabdomyosarcoma +16.2617013,MONDO:0002929,http://purl.obolibrary.org/obo/MONDO_0002929,pulmonary immaturity +16.2617013,MONDO:0002943,http://purl.obolibrary.org/obo/MONDO_0002943,external ear basal cell carcinoma +16.2617013,MONDO:0002990,http://purl.obolibrary.org/obo/MONDO_0002990,benign deep fibrous histiocytoma +16.2617013,MONDO:0003032,http://purl.obolibrary.org/obo/MONDO_0003032,superior vena cava angiosarcoma +16.2617013,MONDO:0003052,http://purl.obolibrary.org/obo/MONDO_0003052,granulomatous endometritis +16.2617013,MONDO:0003053,http://purl.obolibrary.org/obo/MONDO_0003053,choroid plexus meningioma +16.2617013,MONDO:0003097,http://purl.obolibrary.org/obo/MONDO_0003097,childhood mediastinal neurogenic neoplasm +16.2617013,MONDO:0003171,http://purl.obolibrary.org/obo/MONDO_0003171,pineal gland astrocytoma +16.2617013,MONDO:0003206,http://purl.obolibrary.org/obo/MONDO_0003206,acquired hemangioma +16.2617013,MONDO:0003234,http://purl.obolibrary.org/obo/MONDO_0003234,optic nerve astrocytoma +16.2617013,MONDO:0003238,http://purl.obolibrary.org/obo/MONDO_0003238,cervical adenomyoma +16.2617013,MONDO:0003302,http://purl.obolibrary.org/obo/MONDO_0003302,epithelioid neurofibroma +16.2617013,MONDO:0003419,http://purl.obolibrary.org/obo/MONDO_0003419,Bartholin gland adenoma +16.2617013,MONDO:0003452,http://purl.obolibrary.org/obo/MONDO_0003452,cochlear disease +16.2617013,MONDO:0003528,http://purl.obolibrary.org/obo/MONDO_0003528,Volkmann contracture +16.2617013,MONDO:0003548,http://purl.obolibrary.org/obo/MONDO_0003548,adenosquamous breast carcinoma +16.2617013,MONDO:0003565,http://purl.obolibrary.org/obo/MONDO_0003565,urethral villous adenoma +16.2617013,MONDO:0003622,http://purl.obolibrary.org/obo/MONDO_0003622,pancreatic vasoactive intestinal peptide producing tumor +16.2617013,MONDO:0003636,http://purl.obolibrary.org/obo/MONDO_0003636,vulvar sebaceous carcinoma +16.2617013,MONDO:0003722,http://purl.obolibrary.org/obo/MONDO_0003722,internal auditory canal meningioma +16.2617013,MONDO:0003735,http://purl.obolibrary.org/obo/MONDO_0003735,central nervous system immature teratoma +16.2617013,MONDO:0003737,http://purl.obolibrary.org/obo/MONDO_0003737,malignant testicular Leydig cell tumor +16.2617013,MONDO:0003738,http://purl.obolibrary.org/obo/MONDO_0003738,selective IgE deficiency disease +16.2617013,MONDO:0003745,http://purl.obolibrary.org/obo/MONDO_0003745,choroid spindle cell melanoma +16.2617013,MONDO:0003851,http://purl.obolibrary.org/obo/MONDO_0003851,ovarian fetiform teratoma +16.2617013,MONDO:0003903,http://purl.obolibrary.org/obo/MONDO_0003903,benign vaginal mixed tumor +16.2617013,MONDO:0003933,http://purl.obolibrary.org/obo/MONDO_0003933,chest wall bone cancer +16.2617013,MONDO:0003984,http://purl.obolibrary.org/obo/MONDO_0003984,internal auditory canal lipoma +16.2617013,MONDO:0003989,http://purl.obolibrary.org/obo/MONDO_0003989,polyembryoma of the ovary +16.2617013,MONDO:0004017,http://purl.obolibrary.org/obo/MONDO_0004017,pineal region immature teratoma +16.2617013,MONDO:0004032,http://purl.obolibrary.org/obo/MONDO_0004032,ovarian seromucinous carcinoma +16.2617013,MONDO:0004052,http://purl.obolibrary.org/obo/MONDO_0004052,rectal cloacogenic carcinoma +16.2617013,MONDO:0004053,http://purl.obolibrary.org/obo/MONDO_0004053,bartholin gland squamous cell carcinoma +16.2617013,MONDO:0004074,http://purl.obolibrary.org/obo/MONDO_0004074,ovarian mucinous cystadenofibroma +16.2617013,MONDO:0004079,http://purl.obolibrary.org/obo/MONDO_0004079,lung mucous gland adenoma +16.2617013,MONDO:0004087,http://purl.obolibrary.org/obo/MONDO_0004087,basaloid large cell lung carcinoma +16.2617013,MONDO:0004107,http://purl.obolibrary.org/obo/MONDO_0004107,splenic manifestation of leukemia +16.2617013,MONDO:0004117,http://purl.obolibrary.org/obo/MONDO_0004117,ampulla of vater small cell neuroendocrine carcinoma +16.2617013,MONDO:0004218,http://purl.obolibrary.org/obo/MONDO_0004218,childhood germ cell brain tumor +16.2617013,MONDO:0004240,http://purl.obolibrary.org/obo/MONDO_0004240,posterior urethra cancer +16.2617013,MONDO:0004243,http://purl.obolibrary.org/obo/MONDO_0004243,vulvar proximal-type epithelioid sarcoma +16.2617013,MONDO:0004289,http://purl.obolibrary.org/obo/MONDO_0004289,glottis verrucous carcinoma +16.2617013,MONDO:0004307,http://purl.obolibrary.org/obo/MONDO_0004307,sarcomatosis of the meninges +16.2617013,MONDO:0004389,http://purl.obolibrary.org/obo/MONDO_0004389,mite infestation +16.2617013,MONDO:0004421,http://purl.obolibrary.org/obo/MONDO_0004421,sclerosing breast papilloma +16.2617013,MONDO:0004442,http://purl.obolibrary.org/obo/MONDO_0004442,testis polyembryoma +16.2617013,MONDO:0004447,http://purl.obolibrary.org/obo/MONDO_0004447,pituitary stalk meningioma +16.2617013,MONDO:0004500,http://purl.obolibrary.org/obo/MONDO_0004500,lung superior sulcus carcinoma +16.2617013,MONDO:0004525,http://purl.obolibrary.org/obo/MONDO_0004525,scabies +16.2617013,MONDO:0004529,http://purl.obolibrary.org/obo/MONDO_0004529,non-ossifying fibromyxoid tumor +16.2617013,MONDO:0004546,http://purl.obolibrary.org/obo/MONDO_0004546,lumbar plexus neoplasm +16.2617013,MONDO:0004644,http://purl.obolibrary.org/obo/MONDO_0004644,subacute monocytic leukemia +16.2617013,MONDO:0004679,http://purl.obolibrary.org/obo/MONDO_0004679,leukoplakia of vagina +16.2617013,MONDO:0004752,http://purl.obolibrary.org/obo/MONDO_0004752,neurofibroma of the heart +16.2617013,MONDO:0004799,http://purl.obolibrary.org/obo/MONDO_0004799,ulcerative blepharitis +16.2617013,MONDO:0004815,http://purl.obolibrary.org/obo/MONDO_0004815,osteosclerotic plasma cell myeloma +16.2617013,MONDO:0004846,http://purl.obolibrary.org/obo/MONDO_0004846,placental abruption +16.2617013,MONDO:0005127,http://purl.obolibrary.org/obo/MONDO_0005127,lepromatous leprosy +16.2617013,MONDO:0005295,http://purl.obolibrary.org/obo/MONDO_0005295,intermittent vascular claudication +16.2617013,MONDO:0005398,http://purl.obolibrary.org/obo/MONDO_0005398,upper aerodigestive tract neoplasm +16.2617013,MONDO:0005435,http://purl.obolibrary.org/obo/MONDO_0005435,anti-neutrophil antibody associated vasculitis +16.2617013,MONDO:0005668,http://purl.obolibrary.org/obo/MONDO_0005668,bird fancier's lung +16.2617013,MONDO:0005743,http://purl.obolibrary.org/obo/MONDO_0005743,encephalitozoonosis +16.2617013,MONDO:0005752,http://purl.obolibrary.org/obo/MONDO_0005752,epidural abscess +16.2617013,MONDO:0005811,http://purl.obolibrary.org/obo/MONDO_0005811,infectious myxomatosis +16.2617013,MONDO:0005855,http://purl.obolibrary.org/obo/MONDO_0005855,molluscum contagiosum +16.2617013,MONDO:0005980,http://purl.obolibrary.org/obo/MONDO_0005980,tick infestation +16.2617013,MONDO:0005981,http://purl.obolibrary.org/obo/MONDO_0005981,tick paralysis +16.2617013,MONDO:0006156,http://purl.obolibrary.org/obo/MONDO_0006156,colon sessile serrated adenoma/polyp +16.2617013,MONDO:0006158,http://purl.obolibrary.org/obo/MONDO_0006158,colorectal diffuse large B-cell lymphoma +16.2617013,MONDO:0006203,http://purl.obolibrary.org/obo/MONDO_0006203,extrahepatic bile duct squamous cell carcinoma +16.2617013,MONDO:0006214,http://purl.obolibrary.org/obo/MONDO_0006214,follicular variant thyroid gland papillary carcinoma +16.2617013,MONDO:0006274,http://purl.obolibrary.org/obo/MONDO_0006274,low grade vulvar intraepithelial neoplasia +16.2617013,MONDO:0006291,http://purl.obolibrary.org/obo/MONDO_0006291,malignant jugulotympanic paraganglioma +16.2617013,MONDO:0006313,http://purl.obolibrary.org/obo/MONDO_0006313,nabothian cyst +16.2617013,MONDO:0006323,http://purl.obolibrary.org/obo/MONDO_0006323,non-seminomatous lesion +16.2617013,MONDO:0006353,http://purl.obolibrary.org/obo/MONDO_0006353,paranasal sinus Schneiderian papilloma +16.2617013,MONDO:0006364,http://purl.obolibrary.org/obo/MONDO_0006364,peritoneal well differentiated papillary mesothelioma +16.2617013,MONDO:0006416,http://purl.obolibrary.org/obo/MONDO_0006416,small intestinal Burkitt lymphoma +16.2617013,MONDO:0006419,http://purl.obolibrary.org/obo/MONDO_0006419,small intestinal intraepithelial neoplasia +16.2617013,MONDO:0006422,http://purl.obolibrary.org/obo/MONDO_0006422,small intestinal tubulovillous adenoma +16.2617013,MONDO:0006432,http://purl.obolibrary.org/obo/MONDO_0006432,stromal predominant kidney Wilms tumor +16.2617013,MONDO:0006459,http://purl.obolibrary.org/obo/MONDO_0006459,thymoma type B1 +16.2617013,MONDO:0006577,http://purl.obolibrary.org/obo/MONDO_0006577,maxillary sinus cholesteatoma +16.2617013,MONDO:0006582,http://purl.obolibrary.org/obo/MONDO_0006582,mongolian spot +16.2617013,MONDO:0006606,http://purl.obolibrary.org/obo/MONDO_0006606,scleredema adultorum +16.2617013,MONDO:0006618,http://purl.obolibrary.org/obo/MONDO_0006618,vibratory urticaria +16.2617013,MONDO:0006625,http://purl.obolibrary.org/obo/MONDO_0006625,altitude sickness +16.2617013,MONDO:0006671,http://purl.obolibrary.org/obo/MONDO_0006671,Bacteroides infectious disease +16.2617013,MONDO:0006705,http://purl.obolibrary.org/obo/MONDO_0006705,Bacteroidaceae infectious disease +16.2617013,MONDO:0006766,http://purl.obolibrary.org/obo/MONDO_0006766,gait apraxia +16.2617013,MONDO:0006791,http://purl.obolibrary.org/obo/MONDO_0006791,hyperemesis gravidarum +16.2617013,MONDO:0006807,http://purl.obolibrary.org/obo/MONDO_0006807,intestinal perforation +16.2617013,MONDO:0006825,http://purl.obolibrary.org/obo/MONDO_0006825,kuru +16.2617013,MONDO:0006931,http://purl.obolibrary.org/obo/MONDO_0006931,pulmonary coin lesion +16.2617013,MONDO:0006933,http://purl.obolibrary.org/obo/MONDO_0006933,pulmonary plasma cell granuloma +16.2617013,MONDO:0007219,http://purl.obolibrary.org/obo/MONDO_0007219,brachydactyly type A6 +16.2617013,MONDO:0007228,http://purl.obolibrary.org/obo/MONDO_0007228,brachymesomelia-renal syndrome +16.2617013,MONDO:0007299,http://purl.obolibrary.org/obo/MONDO_0007299,Sotos syndrome 1 +16.2617013,MONDO:0007368,http://purl.obolibrary.org/obo/MONDO_0007368,familial benign copper deficiency +16.2617013,MONDO:0007371,http://purl.obolibrary.org/obo/MONDO_0007371,cornea guttata with anterior polar cataracts +16.2617013,MONDO:0007382,http://purl.obolibrary.org/obo/MONDO_0007382,Ramos-Arroyo syndrome +16.2617013,MONDO:0007443,http://purl.obolibrary.org/obo/MONDO_0007443,congenital unilateral hypoplasia of depressor anguli oris +16.2617013,MONDO:0007478,http://purl.obolibrary.org/obo/MONDO_0007478,autosomal dominant Kenny-Caffey syndrome +16.2617013,MONDO:0007490,http://purl.obolibrary.org/obo/MONDO_0007490,carpotarsal osteochondromatosis +16.2617013,MONDO:0007529,http://purl.obolibrary.org/obo/MONDO_0007529,elastosis perforans serpiginosa +16.2617013,MONDO:0007624,http://purl.obolibrary.org/obo/MONDO_0007624,Flynn-Aird syndrome +16.2617013,MONDO:0007663,http://purl.obolibrary.org/obo/MONDO_0007663,glaucoma with elevated episcleral venous pressure +16.2617013,MONDO:0007673,http://purl.obolibrary.org/obo/MONDO_0007673,Glucoglycinuria +16.2617013,MONDO:0007683,http://purl.obolibrary.org/obo/MONDO_0007683,Grant syndrome +16.2617013,MONDO:0007701,http://purl.obolibrary.org/obo/MONDO_0007701,progressive familial heart block type II +16.2617013,MONDO:0007711,http://purl.obolibrary.org/obo/MONDO_0007711,Bencze syndrome +16.2617013,MONDO:0007726,http://purl.obolibrary.org/obo/MONDO_0007726,"hip dysplasia, Beukes type" +16.2617013,MONDO:0007811,http://purl.obolibrary.org/obo/MONDO_0007811,ichthyosis-cheek-eyebrow syndrome +16.2617013,MONDO:0007843,http://purl.obolibrary.org/obo/MONDO_0007843,Kabuki syndrome 1 +16.2617013,MONDO:0007860,http://purl.obolibrary.org/obo/MONDO_0007860,focal palmoplantar and gingival keratoderma +16.2617013,MONDO:0007937,http://purl.obolibrary.org/obo/MONDO_0007937,renal hypomagnesemia 2 +16.2617013,MONDO:0007990,http://purl.obolibrary.org/obo/MONDO_0007990,multiple benign circumferential skin creases on limbs +16.2617013,MONDO:0008005,http://purl.obolibrary.org/obo/MONDO_0008005,cardiospondylocarpofacial syndrome +16.2617013,MONDO:0008009,http://purl.obolibrary.org/obo/MONDO_0008009,monilethrix +16.2617013,MONDO:0008110,http://purl.obolibrary.org/obo/MONDO_0008110,ocular dominance +16.2617013,MONDO:0008136,http://purl.obolibrary.org/obo/MONDO_0008136,isolated optic nerve hypoplasia +16.2617013,MONDO:0008206,http://purl.obolibrary.org/obo/MONDO_0008206,benign paroxysmal tonic upgaze of childhood with ataxia +16.2617013,MONDO:0008270,http://purl.obolibrary.org/obo/MONDO_0008270,polydactyly of a triphalangeal thumb +16.2617013,MONDO:0008271,http://purl.obolibrary.org/obo/MONDO_0008271,polydactyly of an index finger +16.2617013,MONDO:0008273,http://purl.obolibrary.org/obo/MONDO_0008273,actinic prurigo +16.2617013,MONDO:0008292,http://purl.obolibrary.org/obo/MONDO_0008292,punctate palmoplantar keratoderma type 2 +16.2617013,MONDO:0008294,http://purl.obolibrary.org/obo/MONDO_0008294,acute intermittent porphyria +16.2617013,MONDO:0008301,http://purl.obolibrary.org/obo/MONDO_0008301,Guttmacher syndrome +16.2617013,MONDO:0008378,http://purl.obolibrary.org/obo/MONDO_0008378,retinitis pigmentosa 9 +16.2617013,MONDO:0008465,http://purl.obolibrary.org/obo/MONDO_0008465,Patterson-Stevenson-Fontaine syndrome +16.2617013,MONDO:0008473,http://purl.obolibrary.org/obo/MONDO_0008473,"spondyloepimetaphyseal dysplasia, Maroteaux type" +16.2617013,MONDO:0008511,http://purl.obolibrary.org/obo/MONDO_0008511,proximal symphalangism +16.2617013,MONDO:0008560,http://purl.obolibrary.org/obo/MONDO_0008560,thrombophilia due to activated protein C resistance +16.2617013,MONDO:0008594,http://purl.obolibrary.org/obo/MONDO_0008594,familial multiple discoid fibromas +16.2617013,MONDO:0008665,http://purl.obolibrary.org/obo/MONDO_0008665,ptosis-vocal cord paralysis syndrome +16.2617013,MONDO:0008679,http://purl.obolibrary.org/obo/MONDO_0008679,Wilms tumor 1 +16.2617013,MONDO:0008701,http://purl.obolibrary.org/obo/MONDO_0008701,achondrogenesis type IA +16.2617013,MONDO:0008707,http://purl.obolibrary.org/obo/MONDO_0008707,acro-renal-mandibular syndrome +16.2617013,MONDO:0008714,http://purl.obolibrary.org/obo/MONDO_0008714,acrofacial dysostosis Rodriguez type +16.2617013,MONDO:0008717,http://purl.obolibrary.org/obo/MONDO_0008717,"acromesomelic dysplasia, Hunter-Thompson type" +16.2617013,MONDO:0008812,http://purl.obolibrary.org/obo/MONDO_0008812,AREDYLD syndrome +16.2617013,MONDO:0009003,http://purl.obolibrary.org/obo/MONDO_0009003,achromatopsia 2 +16.2617013,MONDO:0009035,http://purl.obolibrary.org/obo/MONDO_0009035,"craniometaphyseal dysplasia, autosomal recessive" +16.2617013,MONDO:0009139,http://purl.obolibrary.org/obo/MONDO_0009139,"dyssegmental dysplasia, Rolland-Desbuquois type" +16.2617013,MONDO:0009161,http://purl.obolibrary.org/obo/MONDO_0009161,"Ehlers-Danlos syndrome, dermatosparaxis type" +16.2617013,MONDO:0009194,http://purl.obolibrary.org/obo/MONDO_0009194,immunodeficiency 32B +16.2617013,MONDO:0009209,http://purl.obolibrary.org/obo/MONDO_0009209,autosomal recessive faciodigitogenital syndrome +16.2617013,MONDO:0009241,http://purl.obolibrary.org/obo/MONDO_0009241,fountain syndrome +16.2617013,MONDO:0009262,http://purl.obolibrary.org/obo/MONDO_0009262,GM1 gangliosidosis type 3 +16.2617013,MONDO:0009270,http://purl.obolibrary.org/obo/MONDO_0009270,genito-palato-cardiac syndrome +16.2617013,MONDO:0009272,http://purl.obolibrary.org/obo/MONDO_0009272,German syndrome +16.2617013,MONDO:0009298,http://purl.obolibrary.org/obo/MONDO_0009298,GOMBO syndrome +16.2617013,MONDO:0009320,http://purl.obolibrary.org/obo/MONDO_0009320,Hall-Riggs syndrome +16.2617013,MONDO:0009338,http://purl.obolibrary.org/obo/MONDO_0009338,hepatic veno-occlusive disease-immunodeficiency syndrome +16.2617013,MONDO:0009359,http://purl.obolibrary.org/obo/MONDO_0009359,multinucleated neurons-anhydramnios-renal dysplasia-cerebellar hypoplasia-hydranencephaly syndrome +16.2617013,MONDO:0009361,http://purl.obolibrary.org/obo/MONDO_0009361,autosomal recessive hydrocephalus due to congenital stenosis of aqueduct of Sylvius +16.2617013,MONDO:0009384,http://purl.obolibrary.org/obo/MONDO_0009384,"Leydig cell hypoplasia, type 1" +16.2617013,MONDO:0009401,http://purl.obolibrary.org/obo/MONDO_0009401,hyperprolinemia type 2 +16.2617013,MONDO:0009417,http://purl.obolibrary.org/obo/MONDO_0009417,hypergonadotropic hypogonadism-cataract syndrome +16.2617013,MONDO:0009424,http://purl.obolibrary.org/obo/MONDO_0009424,Bartter disease type 2 +16.2617013,MONDO:0009570,http://purl.obolibrary.org/obo/MONDO_0009570,McDonough syndrome +16.2617013,MONDO:0009582,http://purl.obolibrary.org/obo/MONDO_0009582,Mietens syndrome +16.2617013,MONDO:0009611,http://purl.obolibrary.org/obo/MONDO_0009611,3-methylglutaconic aciduria type 4 +16.2617013,MONDO:0009614,http://purl.obolibrary.org/obo/MONDO_0009614,vitamin B12-responsive methylmalonic acidemia type cblB +16.2617013,MONDO:0009619,http://purl.obolibrary.org/obo/MONDO_0009619,microcephaly-micromelia syndrome +16.2617013,MONDO:0009634,http://purl.obolibrary.org/obo/MONDO_0009634,microtia with meatal atresia and conductive deafness +16.2617013,MONDO:0009643,http://purl.obolibrary.org/obo/MONDO_0009643,sulfite oxidase deficiency due to molybdenum cofactor deficiency type A +16.2617013,MONDO:0009740,http://purl.obolibrary.org/obo/MONDO_0009740,neurofaciodigitorenal syndrome +16.2617013,MONDO:0009768,http://purl.obolibrary.org/obo/MONDO_0009768,"oculodentodigital dysplasia, autosomal recessive" +16.2617013,MONDO:0009769,http://purl.obolibrary.org/obo/MONDO_0009769,oculo-palato-cerebral syndrome +16.2617013,MONDO:0009777,http://purl.obolibrary.org/obo/MONDO_0009777,Oliver syndrome +16.2617013,MONDO:0009780,http://purl.obolibrary.org/obo/MONDO_0009780,lethal omphalocele-cleft palate syndrome +16.2617013,MONDO:0009786,http://purl.obolibrary.org/obo/MONDO_0009786,optic atrophy 6 +16.2617013,MONDO:0009806,http://purl.obolibrary.org/obo/MONDO_0009806,Bruck syndrome 1 +16.2617013,MONDO:0009844,http://purl.obolibrary.org/obo/MONDO_0009844,pellagra-like syndrome +16.2617013,MONDO:0009845,http://purl.obolibrary.org/obo/MONDO_0009845,pelviscapular dysplasia +16.2617013,MONDO:0009865,http://purl.obolibrary.org/obo/MONDO_0009865,glycogen storage disease due to phosphoglycerate mutase deficiency +16.2617013,MONDO:0009900,http://purl.obolibrary.org/obo/MONDO_0009900,polysyndactyly-cardiac malformation syndrome +16.2617013,MONDO:0009909,http://purl.obolibrary.org/obo/MONDO_0009909,progesterone resistance +16.2617013,MONDO:0009930,http://purl.obolibrary.org/obo/MONDO_0009930,pulmonary arteriovenous malformation +16.2617013,MONDO:0009967,http://purl.obolibrary.org/obo/MONDO_0009967,renal tubular acidosis 3 +16.2617013,MONDO:0009984,http://purl.obolibrary.org/obo/MONDO_0009984,late-adult onset retinitis pigmentosa +16.2617013,MONDO:0010014,http://purl.obolibrary.org/obo/MONDO_0010014,"craniometadiaphyseal dysplasia, wormian bone type" +16.2617013,MONDO:0010047,http://purl.obolibrary.org/obo/MONDO_0010047,hereditary spastic paraplegia 5A +16.2617013,MONDO:0010050,http://purl.obolibrary.org/obo/MONDO_0010050,spastic pseudosclerosis +16.2617013,MONDO:0010066,http://purl.obolibrary.org/obo/MONDO_0010066,familial isolated congenital asplenia +16.2617013,MONDO:0010072,http://purl.obolibrary.org/obo/MONDO_0010072,"spondyloepiphyseal dysplasia tarda, autosomal recessive" +16.2617013,MONDO:0010080,http://purl.obolibrary.org/obo/MONDO_0010080,familial infantile bilateral striatal necrosis +16.2617013,MONDO:0010101,http://purl.obolibrary.org/obo/MONDO_0010101,Teebi-Shaltout syndrome +16.2617013,MONDO:0010132,http://purl.obolibrary.org/obo/MONDO_0010132,familial thyroid dyshormonogenesis +16.2617013,MONDO:0010167,http://purl.obolibrary.org/obo/MONDO_0010167,urocanic aciduria +16.2617013,MONDO:0010181,http://purl.obolibrary.org/obo/MONDO_0010181,oculogastrointestinal muscular dystrophy +16.2617013,MONDO:0010245,http://purl.obolibrary.org/obo/MONDO_0010245,X-linked cone-rod dystrophy 2 +16.2617013,MONDO:0010248,http://purl.obolibrary.org/obo/MONDO_0010248,X-linked spondyloepimetaphyseal dysplasia +16.2617013,MONDO:0010268,http://purl.obolibrary.org/obo/MONDO_0010268,X-linked lissencephaly with abnormal genitalia +16.2617013,MONDO:0010286,http://purl.obolibrary.org/obo/MONDO_0010286,syndromic X-linked intellectual disability Siderius type +16.2617013,MONDO:0010319,http://purl.obolibrary.org/obo/MONDO_0010319,syndromic X-linked intellectual disability Hedera type +16.2617013,MONDO:0010400,http://purl.obolibrary.org/obo/MONDO_0010400,X-linked scapuloperoneal muscular dystrophy +16.2617013,MONDO:0010480,http://purl.obolibrary.org/obo/MONDO_0010480,"anemia, nonspherocytic hemolytic, due to G6PD deficiency" +16.2617013,MONDO:0010514,http://purl.obolibrary.org/obo/MONDO_0010514,combined immunodeficiency due to moesin deficiency +16.2617013,MONDO:0010532,http://purl.obolibrary.org/obo/MONDO_0010532,infantile-onset X-linked spinal muscular atrophy +16.2617013,MONDO:0010541,http://purl.obolibrary.org/obo/MONDO_0010541,X-linked calvarial hyperostosis +16.2617013,MONDO:0010574,http://purl.obolibrary.org/obo/MONDO_0010574,syndromic X-linked intellectual disability 5 +16.2617013,MONDO:0010591,http://purl.obolibrary.org/obo/MONDO_0010591,fingerprint body myopathy +16.2617013,MONDO:0010614,http://purl.obolibrary.org/obo/MONDO_0010614,X-linked congenital generalized hypertrichosis +16.2617013,MONDO:0010618,http://purl.obolibrary.org/obo/MONDO_0010618,familial isolated hypoparathyroidism due to agenesis of parathyroid gland +16.2617013,MONDO:0010667,http://purl.obolibrary.org/obo/MONDO_0010667,Prieto syndrome +16.2617013,MONDO:0010722,http://purl.obolibrary.org/obo/MONDO_0010722,X-linked retinal dysplasia +16.2617013,MONDO:0010743,http://purl.obolibrary.org/obo/MONDO_0010743,thrombocytopenia 1 +16.2617013,MONDO:0010810,http://purl.obolibrary.org/obo/MONDO_0010810,"vitamin D hydroxylation-deficient rickets, type 1B" +16.2617013,MONDO:0010838,http://purl.obolibrary.org/obo/MONDO_0010838,gonadal agenesis +16.2617013,MONDO:0010851,http://purl.obolibrary.org/obo/MONDO_0010851,Lowry-MacLean syndrome +16.2617013,MONDO:0010871,http://purl.obolibrary.org/obo/MONDO_0010871,succinic acidemia +16.2617013,MONDO:0010894,http://purl.obolibrary.org/obo/MONDO_0010894,maturity-onset diabetes of the young type 3 +16.2617013,MONDO:0010900,http://purl.obolibrary.org/obo/MONDO_0010900,intrauterine growth retardation with increased mitomycin c sensitivity +16.2617013,MONDO:0010907,http://purl.obolibrary.org/obo/MONDO_0010907,familial hypertryptophanemia +16.2617013,MONDO:0010923,http://purl.obolibrary.org/obo/MONDO_0010923,proximal myopathy with focal depletion of mitochondria +16.2617013,MONDO:0010943,http://purl.obolibrary.org/obo/MONDO_0010943,schizophrenia 4 +16.2617013,MONDO:0010963,http://purl.obolibrary.org/obo/MONDO_0010963,autosomal dominant nonsyndromic deafness 6 +16.2617013,MONDO:0010974,http://purl.obolibrary.org/obo/MONDO_0010974,"nephrotic syndrome, type 2" +16.2617013,MONDO:0010989,http://purl.obolibrary.org/obo/MONDO_0010989,Mayer-Rokitansky-Küster-Hauser syndrome type 2 +16.2617013,MONDO:0011003,http://purl.obolibrary.org/obo/MONDO_0011003,dilated cardiomyopathy 1E +16.2617013,MONDO:0011016,http://purl.obolibrary.org/obo/MONDO_0011016,type 1 diabetes mellitus 11 +16.2617013,MONDO:0011032,http://purl.obolibrary.org/obo/MONDO_0011032,autosomal dominant nonsyndromic deafness 11 +16.2617013,MONDO:0011083,http://purl.obolibrary.org/obo/MONDO_0011083,trichodental syndrome +16.2617013,MONDO:0011126,http://purl.obolibrary.org/obo/MONDO_0011126,acute insulin response +16.2617013,MONDO:0011148,http://purl.obolibrary.org/obo/MONDO_0011148,Spondylospinal thoracic dysostosis +16.2617013,MONDO:0011170,http://purl.obolibrary.org/obo/MONDO_0011170,autosomal recessive limb-girdle muscular dystrophy type 2G +16.2617013,MONDO:0011197,http://purl.obolibrary.org/obo/MONDO_0011197,hereditary thermosensitive neuropathy +16.2617013,MONDO:0011202,http://purl.obolibrary.org/obo/MONDO_0011202,RHYNS syndrome +16.2617013,MONDO:0011216,http://purl.obolibrary.org/obo/MONDO_0011216,hemochromatosis type 2A +16.2617013,MONDO:0011278,http://purl.obolibrary.org/obo/MONDO_0011278,bile duct cysts +16.2617013,MONDO:0011286,http://purl.obolibrary.org/obo/MONDO_0011286,autosomal recessive nonsyndromic deafness 13 +16.2617013,MONDO:0011289,http://purl.obolibrary.org/obo/MONDO_0011289,apraxia of eyelid opening +16.2617013,MONDO:0011305,http://purl.obolibrary.org/obo/MONDO_0011305,cerebral cavernous malformation 3 +16.2617013,MONDO:0011347,http://purl.obolibrary.org/obo/MONDO_0011347,craniosynostosis with ectopia lentis +16.2617013,MONDO:0011350,http://purl.obolibrary.org/obo/MONDO_0011350,autosomal dominant nonsyndromic deafness 17 +16.2617013,MONDO:0011351,http://purl.obolibrary.org/obo/MONDO_0011351,autosomal recessive nonsyndromic deafness 21 +16.2617013,MONDO:0011355,http://purl.obolibrary.org/obo/MONDO_0011355,cone-rod dystrophy 7 +16.2617013,MONDO:0011390,http://purl.obolibrary.org/obo/MONDO_0011390,focal segmental glomerulosclerosis 2 +16.2617013,MONDO:0011408,http://purl.obolibrary.org/obo/MONDO_0011408,hereditary spastic paraplegia 10 +16.2617013,MONDO:0011460,http://purl.obolibrary.org/obo/MONDO_0011460,arrhythmogenic right ventricular dysplasia 6 +16.2617013,MONDO:0011483,http://purl.obolibrary.org/obo/MONDO_0011483,polycystic bone disease +16.2617013,MONDO:0011489,http://purl.obolibrary.org/obo/MONDO_0011489,hereditary spastic paraplegia 12 +16.2617013,MONDO:0011523,http://purl.obolibrary.org/obo/MONDO_0011523,Bardet-Biedl syndrome 6 +16.2617013,MONDO:0011568,http://purl.obolibrary.org/obo/MONDO_0011568,autosomal dominant nonsyndromic deafness 25 +16.2617013,MONDO:0011572,http://purl.obolibrary.org/obo/MONDO_0011572,type 1 diabetes mellitus 18 +16.2617013,MONDO:0011580,http://purl.obolibrary.org/obo/MONDO_0011580,cerebellar ataxia and hypergonadotropic hypogonadism +16.2617013,MONDO:0011621,http://purl.obolibrary.org/obo/MONDO_0011621,acropectoral syndrome +16.2617013,MONDO:0011632,http://purl.obolibrary.org/obo/MONDO_0011632,amyotrophic lateral sclerosis type 21 +16.2617013,MONDO:0011670,http://purl.obolibrary.org/obo/MONDO_0011670,Ehlers-Danlos syndrome due to tenascin-X deficiency +16.2617013,MONDO:0011691,http://purl.obolibrary.org/obo/MONDO_0011691,amyotrophic lateral sclerosis type 3 +16.2617013,MONDO:0011735,http://purl.obolibrary.org/obo/MONDO_0011735,hyper-IgM syndrome type 3 +16.2617013,MONDO:0011748,http://purl.obolibrary.org/obo/MONDO_0011748,Usher syndrome type 1G +16.2617013,MONDO:0011764,http://purl.obolibrary.org/obo/MONDO_0011764,autosomal dominant Parkinson disease 8 +16.2617013,MONDO:0011767,http://purl.obolibrary.org/obo/MONDO_0011767,autosomal recessive nonsyndromic deafness 31 +16.2617013,MONDO:0011784,http://purl.obolibrary.org/obo/MONDO_0011784,Moyamoya disease 2 +16.2617013,MONDO:0011816,http://purl.obolibrary.org/obo/MONDO_0011816,lathosterolosis +16.2617013,MONDO:0011839,http://purl.obolibrary.org/obo/MONDO_0011839,Newfoundland cone-rod dystrophy +16.2617013,MONDO:0011866,http://purl.obolibrary.org/obo/MONDO_0011866,pontocerebellar hypoplasia type 1A +16.2617013,MONDO:0011890,http://purl.obolibrary.org/obo/MONDO_0011890,Charcot-Marie-Tooth disease type 1D +16.2617013,MONDO:0011901,http://purl.obolibrary.org/obo/MONDO_0011901,Charcot-Marie-Tooth disease axonal type 2H +16.2617013,MONDO:0011903,http://purl.obolibrary.org/obo/MONDO_0011903,Charcot-Marie-Tooth disease type 2J +16.2617013,MONDO:0011924,http://purl.obolibrary.org/obo/MONDO_0011924,panic disorder 2 +16.2617013,MONDO:0011935,http://purl.obolibrary.org/obo/MONDO_0011935,retinitis pigmentosa 30 +16.2617013,MONDO:0011969,http://purl.obolibrary.org/obo/MONDO_0011969,ALG8-CDG +16.2617013,MONDO:0011984,http://purl.obolibrary.org/obo/MONDO_0011984,synpolydactyly type 2 +16.2617013,MONDO:0011994,http://purl.obolibrary.org/obo/MONDO_0011994,autosomal dominant nonsyndromic deafness 41 +16.2617013,MONDO:0012013,http://purl.obolibrary.org/obo/MONDO_0012013,glaucoma-ectopia-microspherophakia-stiff joints-short stature syndrome +16.2617013,MONDO:0012019,http://purl.obolibrary.org/obo/MONDO_0012019,"spondyloepiphyseal dysplasia, Kimberley type" +16.2617013,MONDO:0012040,http://purl.obolibrary.org/obo/MONDO_0012040,inflammatory bowel disease 9 +16.2617013,MONDO:0012060,http://purl.obolibrary.org/obo/MONDO_0012060,autosomal recessive nonsyndromic deafness 35 +16.2617013,MONDO:0012074,http://purl.obolibrary.org/obo/MONDO_0012074,mandibuloacral dysplasia with type B lipodystrophy +16.2617013,MONDO:0012083,http://purl.obolibrary.org/obo/MONDO_0012083,autosomal dominant nonsyndromic deafness 28 +16.2617013,MONDO:0012135,http://purl.obolibrary.org/obo/MONDO_0012135,"restless legs syndrome, susceptibility to, 2" +16.2617013,MONDO:0012169,http://purl.obolibrary.org/obo/MONDO_0012169,premature ovarian failure 3 +16.2617013,MONDO:0012175,http://purl.obolibrary.org/obo/MONDO_0012175,cataract 28 +16.2617013,MONDO:0012177,http://purl.obolibrary.org/obo/MONDO_0012177,posterior column ataxia-retinitis pigmentosa syndrome +16.2617013,MONDO:0012188,http://purl.obolibrary.org/obo/MONDO_0012188,neuronal ceroid lipofuscinosis 9 +16.2617013,MONDO:0012192,http://purl.obolibrary.org/obo/MONDO_0012192,permanent neonatal diabetes mellitus-pancreatic and cerebellar agenesis syndrome +16.2617013,MONDO:0012196,http://purl.obolibrary.org/obo/MONDO_0012196,autosomal dominant auditory neuropathy 1 +16.2617013,MONDO:0012206,http://purl.obolibrary.org/obo/MONDO_0012206,"Czech dysplasia, metatarsal type" +16.2617013,MONDO:0012216,http://purl.obolibrary.org/obo/MONDO_0012216,foveal hypoplasia - optic nerve decussation defect - anterior segment dysgenesis syndrome +16.2617013,MONDO:0012246,http://purl.obolibrary.org/obo/MONDO_0012246,spinocerebellar ataxia type 26 +16.2617013,MONDO:0012249,http://purl.obolibrary.org/obo/MONDO_0012249,"colorectal cancer, hereditary nonpolyposis, type 2" +16.2617013,MONDO:0012280,http://purl.obolibrary.org/obo/MONDO_0012280,Goldberg-Shprintzen megacolon syndrome +16.2617013,MONDO:0012282,http://purl.obolibrary.org/obo/MONDO_0012282,Al-Gazali syndrome +16.2617013,MONDO:0012287,http://purl.obolibrary.org/obo/MONDO_0012287,"Stickler syndrome, type I, nonsyndromic ocular" +16.2617013,MONDO:0012314,http://purl.obolibrary.org/obo/MONDO_0012314,short QT syndrome type 3 +16.2617013,MONDO:0012342,http://purl.obolibrary.org/obo/MONDO_0012342,7q11.23 microduplication syndrome +16.2617013,MONDO:0012416,http://purl.obolibrary.org/obo/MONDO_0012416,Devriendt syndrome +16.2617013,MONDO:0012419,http://purl.obolibrary.org/obo/MONDO_0012419,age related macular degeneration 7 +16.2617013,MONDO:0012420,http://purl.obolibrary.org/obo/MONDO_0012420,autosomal recessive nonsyndromic deafness 49 +16.2617013,MONDO:0012422,http://purl.obolibrary.org/obo/MONDO_0012422,type 1 diabetes mellitus 19 +16.2617013,MONDO:0012476,http://purl.obolibrary.org/obo/MONDO_0012476,hereditary spastic paraplegia 30 +16.2617013,MONDO:0012492,http://purl.obolibrary.org/obo/MONDO_0012492,"restless legs syndrome, susceptibility to, 3" +16.2617013,MONDO:0012494,http://purl.obolibrary.org/obo/MONDO_0012494,testicular microlithiasis +16.2617013,MONDO:0012504,http://purl.obolibrary.org/obo/MONDO_0012504,camptodactyly-tall stature-scoliosis-hearing loss syndrome +16.2617013,MONDO:0012518,http://purl.obolibrary.org/obo/MONDO_0012518,congenital myasthenic syndrome 12 +16.2617013,MONDO:0012526,http://purl.obolibrary.org/obo/MONDO_0012526,hereditary angioedema type 3 +16.2617013,MONDO:0012544,http://purl.obolibrary.org/obo/MONDO_0012544,brachydactyly-syndactyly syndrome +16.2617013,MONDO:0012546,http://purl.obolibrary.org/obo/MONDO_0012546,"nephrotic syndrome, type 3" +16.2617013,MONDO:0012547,http://purl.obolibrary.org/obo/MONDO_0012547,Noonan syndrome 4 +16.2617013,MONDO:0012590,http://purl.obolibrary.org/obo/MONDO_0012590,XFE progeroid syndrome +16.2617013,MONDO:0012603,http://purl.obolibrary.org/obo/MONDO_0012603,episodic kinesigenic dyskinesia 2 +16.2617013,MONDO:0012608,http://purl.obolibrary.org/obo/MONDO_0012608,autosomal recessive lower motor neuron disease with childhood onset +16.2617013,MONDO:0012622,http://purl.obolibrary.org/obo/MONDO_0012622,leukoencephalopathy with brain stem and spinal cord involvement-high lactate syndrome +16.2617013,MONDO:0012651,http://purl.obolibrary.org/obo/MONDO_0012651,spastic ataxia 2 +16.2617013,MONDO:0012742,http://purl.obolibrary.org/obo/MONDO_0012742,Brugada syndrome 3 +16.2617013,MONDO:0012750,http://purl.obolibrary.org/obo/MONDO_0012750,lethal arthrogryposis-anterior horn cell disease syndrome +16.2617013,MONDO:0012784,http://purl.obolibrary.org/obo/MONDO_0012784,autosomal recessive ataxia due to ubiquinone deficiency +16.2617013,MONDO:0012795,http://purl.obolibrary.org/obo/MONDO_0012795,hypophosphatemic rickets and hyperparathyroidism +16.2617013,MONDO:0012802,http://purl.obolibrary.org/obo/MONDO_0012802,oculoauricular syndrome +16.2617013,MONDO:0012839,http://purl.obolibrary.org/obo/MONDO_0012839,pyogenic bacterial infections due to MyD88 deficiency +16.2617013,MONDO:0012845,http://purl.obolibrary.org/obo/MONDO_0012845,inflammatory bowel disease 19 +16.2617013,MONDO:0012886,http://purl.obolibrary.org/obo/MONDO_0012886,inflammatory bowel disease 22 +16.2617013,MONDO:0012889,http://purl.obolibrary.org/obo/MONDO_0012889,"sarcoidosis, susceptibility to, 3" +16.2617013,MONDO:0012914,http://purl.obolibrary.org/obo/MONDO_0012914,chromosome 1q21.1 deletion syndrome +16.2617013,MONDO:0012923,http://purl.obolibrary.org/obo/MONDO_0012923,congenital generalized lipodystrophy type 3 +16.2617013,MONDO:0012925,http://purl.obolibrary.org/obo/MONDO_0012925,Diamond-Blackfan anemia 5 +16.2617013,MONDO:0012937,http://purl.obolibrary.org/obo/MONDO_0012937,Diamond-Blackfan anemia 6 +16.2617013,MONDO:0012947,http://purl.obolibrary.org/obo/MONDO_0012947,"intellectual disability, autosomal dominant 4" +16.2617013,MONDO:0012948,http://purl.obolibrary.org/obo/MONDO_0012948,chromosome 6pter-p24 deletion syndrome +16.2617013,MONDO:0012960,http://purl.obolibrary.org/obo/MONDO_0012960,"intellectual disability, autosomal dominant 5" +16.2617013,MONDO:0012991,http://purl.obolibrary.org/obo/MONDO_0012991,Kahrizi syndrome +16.2617013,MONDO:0013014,http://purl.obolibrary.org/obo/MONDO_0013014,"spondyloepimetaphyseal dysplasia, aggrecan type" +16.2617013,MONDO:0013078,http://purl.obolibrary.org/obo/MONDO_0013078,type 1 diabetes mellitus 24 +16.2617013,MONDO:0013091,http://purl.obolibrary.org/obo/MONDO_0013091,glycogen storage disease IXc +16.2617013,MONDO:0013182,http://purl.obolibrary.org/obo/MONDO_0013182,chromosome 17p13.3 duplication syndrome +16.2617013,MONDO:0013195,http://purl.obolibrary.org/obo/MONDO_0013195,hypertrophic cardiomyopathy 13 +16.2617013,MONDO:0013197,http://purl.obolibrary.org/obo/MONDO_0013197,hypertrophic cardiomyopathy 14 +16.2617013,MONDO:0013200,http://purl.obolibrary.org/obo/MONDO_0013200,hypertrophic cardiomyopathy 15 +16.2617013,MONDO:0013222,http://purl.obolibrary.org/obo/MONDO_0013222,Miyoshi muscular dystrophy 3 +16.2617013,MONDO:0013259,http://purl.obolibrary.org/obo/MONDO_0013259,Oguchi disease-2 +16.2617013,MONDO:0013271,http://purl.obolibrary.org/obo/MONDO_0013271,frontonasal dysplasia - severe microphthalmia - severe facial clefting syndrome +16.2617013,MONDO:0013279,http://purl.obolibrary.org/obo/MONDO_0013279,long QT syndrome 13 +16.2617013,MONDO:0013291,http://purl.obolibrary.org/obo/MONDO_0013291,glycogen storage disease XV +16.2617013,MONDO:0013298,http://purl.obolibrary.org/obo/MONDO_0013298,chromosome 17q21.31 duplication syndrome +16.2617013,MONDO:0013379,http://purl.obolibrary.org/obo/MONDO_0013379,Noonan syndrome 7 +16.2617013,MONDO:0013386,http://purl.obolibrary.org/obo/MONDO_0013386,autosomal recessive nonsyndromic deafness 74 +16.2617013,MONDO:0013395,http://purl.obolibrary.org/obo/MONDO_0013395,retinitis pigmentosa 4 +16.2617013,MONDO:0013439,http://purl.obolibrary.org/obo/MONDO_0013439,congenital bile acid synthesis defect 3 +16.2617013,MONDO:0013476,http://purl.obolibrary.org/obo/MONDO_0013476,hypertrophic cardiomyopathy 19 +16.2617013,MONDO:0013509,http://purl.obolibrary.org/obo/MONDO_0013509,"intellectual disability, autosomal dominant 6" +16.2617013,MONDO:0013559,http://purl.obolibrary.org/obo/MONDO_0013559,Hermansky-Pudlak syndrome 7 +16.2617013,MONDO:0013560,http://purl.obolibrary.org/obo/MONDO_0013560,Hermansky-Pudlak syndrome 8 +16.2617013,MONDO:0013561,http://purl.obolibrary.org/obo/MONDO_0013561,"chondrodysplasia with joint dislocations, gPAPP type" +16.2617013,MONDO:0013578,http://purl.obolibrary.org/obo/MONDO_0013578,DYRK1A-related intellectual disability syndrome +16.2617013,MONDO:0013589,http://purl.obolibrary.org/obo/MONDO_0013589,focal segmental glomerulosclerosis 6 +16.2617013,MONDO:0013597,http://purl.obolibrary.org/obo/MONDO_0013597,platelet-type bleeding disorder 14 +16.2617013,MONDO:0013615,http://purl.obolibrary.org/obo/MONDO_0013615,craniosynostosis and dental anomalies +16.2617013,MONDO:0013635,http://purl.obolibrary.org/obo/MONDO_0013635,Adams-Oliver syndrome 2 +16.2617013,MONDO:0013658,http://purl.obolibrary.org/obo/MONDO_0013658,"intellectual disability, autosomal dominant 11" +16.2617013,MONDO:0013675,http://purl.obolibrary.org/obo/MONDO_0013675,multiple mitochondrial dysfunctions syndrome 2 +16.2617013,MONDO:0013679,http://purl.obolibrary.org/obo/MONDO_0013679,sclerosteosis 2 +16.2617013,MONDO:0013700,http://purl.obolibrary.org/obo/MONDO_0013700,pancreatic triacylglycerol lipase deficiency +16.2617013,MONDO:0013715,http://purl.obolibrary.org/obo/MONDO_0013715,amyotrophic lateral sclerosis type 16 +16.2617013,MONDO:0013752,http://purl.obolibrary.org/obo/MONDO_0013752,hypoplastic left heart syndrome 2 +16.2617013,MONDO:0013753,http://purl.obolibrary.org/obo/MONDO_0013753,Charcot-Marie-Tooth disease axonal type 2P +16.2617013,MONDO:0013762,http://purl.obolibrary.org/obo/MONDO_0013762,lipoic acid synthetase deficiency +16.2617013,MONDO:0013776,http://purl.obolibrary.org/obo/MONDO_0013776,spastic ataxia 5 +16.2617013,MONDO:0013786,http://purl.obolibrary.org/obo/MONDO_0013786,cone-rod dystrophy 16 +16.2617013,MONDO:0013792,http://purl.obolibrary.org/obo/MONDO_0013792,intracerebral hemorrhage +16.2617013,MONDO:0013800,http://purl.obolibrary.org/obo/MONDO_0013800,"Ehlers-Danlos syndrome, kyphoscoliotic and deafness type" +16.2617013,MONDO:0013813,http://purl.obolibrary.org/obo/MONDO_0013813,dystonia 21 +16.2617013,MONDO:0013820,http://purl.obolibrary.org/obo/MONDO_0013820,"intellectual disability, autosomal dominant 15" +16.2617013,MONDO:0013821,http://purl.obolibrary.org/obo/MONDO_0013821,"intellectual disability, autosomal dominant 16" +16.2617013,MONDO:0013826,http://purl.obolibrary.org/obo/MONDO_0013826,autosomal recessive nonsyndromic deafness 86 +16.2617013,MONDO:0013852,http://purl.obolibrary.org/obo/MONDO_0013852,hypertrophic cardiomyopathy 21 +16.2617013,MONDO:0013928,http://purl.obolibrary.org/obo/MONDO_0013928,dystonia 23 +16.2617013,MONDO:0013935,http://purl.obolibrary.org/obo/MONDO_0013935,Usher syndrome type 1J +16.2617013,MONDO:0013970,http://purl.obolibrary.org/obo/MONDO_0013970,branched-chain keto acid dehydrogenase kinase deficiency +16.2617013,MONDO:0013993,http://purl.obolibrary.org/obo/MONDO_0013993,pontocerebellar hypoplasia type 7 +16.2617013,MONDO:0014008,http://purl.obolibrary.org/obo/MONDO_0014008,phosphohydroxylysinuria +16.2617013,MONDO:0014046,http://purl.obolibrary.org/obo/MONDO_0014046,Cowden syndrome 4 +16.2617013,MONDO:0014058,http://purl.obolibrary.org/obo/MONDO_0014058,facial dysmorphism-immunodeficiency-livedo-short stature syndrome +16.2617013,MONDO:0014206,http://purl.obolibrary.org/obo/MONDO_0014206,severe early-onset pulmonary alveolar proteinosis due to MARS deficiency +16.2617013,MONDO:0014252,http://purl.obolibrary.org/obo/MONDO_0014252,familial hypobetalipoproteinemia 1 +16.2617013,MONDO:0014266,http://purl.obolibrary.org/obo/MONDO_0014266,age related macular degeneration 15 +16.2617013,MONDO:0014271,http://purl.obolibrary.org/obo/MONDO_0014271,STT3B-CDG +16.2617013,MONDO:0014301,http://purl.obolibrary.org/obo/MONDO_0014301,dowling-degos disease 3 +16.2617013,MONDO:0014313,http://purl.obolibrary.org/obo/MONDO_0014313,autosomal recessive primary immunodeficiency with defective spontaneous natural killer cell cytotoxicity +16.2617013,MONDO:0014318,http://purl.obolibrary.org/obo/MONDO_0014318,hyperphosphatasia with intellectual disability syndrome 4 +16.2617013,MONDO:0014379,http://purl.obolibrary.org/obo/MONDO_0014379,ADNP-related multiple congenital anomalies - intellectual disability - autism spectrum disorder +16.2617013,MONDO:0014436,http://purl.obolibrary.org/obo/MONDO_0014436,Bardet-Biedl syndrome 8 +16.2617013,MONDO:0014440,http://purl.obolibrary.org/obo/MONDO_0014440,Bardet-Biedl syndrome 12 +16.2617013,MONDO:0014464,http://purl.obolibrary.org/obo/MONDO_0014464,progressive encephalopathy with leukodystrophy due to DECR deficiency +16.2617013,MONDO:0014515,http://purl.obolibrary.org/obo/MONDO_0014515,macular dystrophy with central cone involvement +16.2617013,MONDO:0014572,http://purl.obolibrary.org/obo/MONDO_0014572,Lichtenstein-Knorr syndrome +16.2617013,MONDO:0014574,http://purl.obolibrary.org/obo/MONDO_0014574,peeling skin-leukonuchia-acral punctate keratoses-cheilitis-knuckle pads syndrome +16.2617013,MONDO:0014591,http://purl.obolibrary.org/obo/MONDO_0014591,autosomal dominant Robinow syndrome 2 +16.2617013,MONDO:0014608,http://purl.obolibrary.org/obo/MONDO_0014608,mandibulofacial dysostosis with alopecia +16.2617013,MONDO:0014632,http://purl.obolibrary.org/obo/MONDO_0014632,hypomyelinating leukodystrophy 10 +16.2617013,MONDO:0014651,http://purl.obolibrary.org/obo/MONDO_0014651,acrofacial dysostosis Cincinnati type +16.2617013,MONDO:0014701,http://purl.obolibrary.org/obo/MONDO_0014701,"spondyloepiphyseal dysplasia, Stanescu type" +16.2617013,MONDO:0014705,http://purl.obolibrary.org/obo/MONDO_0014705,craniosynostosis 6 +16.2617013,MONDO:0014731,http://purl.obolibrary.org/obo/MONDO_0014731,seizures-scoliosis-macrocephaly syndrome +16.2617013,MONDO:0014757,http://purl.obolibrary.org/obo/MONDO_0014757,macrothrombocytopenia-lymphedema-developmental delay-facial dysmorphism-camptodactyly syndrome +16.2617013,MONDO:0014792,http://purl.obolibrary.org/obo/MONDO_0014792,Paget disease of bone 6 +16.2617013,MONDO:0014793,http://purl.obolibrary.org/obo/MONDO_0014793,microcephaly-congenital cataract-psoriasiform dermatitis syndrome +16.2617013,MONDO:0014846,http://purl.obolibrary.org/obo/MONDO_0014846,autosomal recessive cerebellar ataxia - epilepsy - intellectual disability syndrome due to TUD deficiency +16.2617013,MONDO:0014883,http://purl.obolibrary.org/obo/MONDO_0014883,hypertrophic cardiomyopathy 26 +16.2617013,MONDO:0014885,http://purl.obolibrary.org/obo/MONDO_0014885,Hermansky-Pudlak syndrome 10 +16.2617013,MONDO:0014890,http://purl.obolibrary.org/obo/MONDO_0014890,PERCHING syndrome +16.2617013,MONDO:0015041,http://purl.obolibrary.org/obo/MONDO_0015041,myelodysplastic syndrome with excess blasts-2 +16.2617013,MONDO:0015196,http://purl.obolibrary.org/obo/MONDO_0015196,vein of Galen aneurysm +16.2617013,MONDO:0015237,http://purl.obolibrary.org/obo/MONDO_0015237,arrhinia +16.2617013,MONDO:0015281,http://purl.obolibrary.org/obo/MONDO_0015281,atrial standstill +16.2617013,MONDO:0015284,http://purl.obolibrary.org/obo/MONDO_0015284,heart-hand syndrome type 2 +16.2617013,MONDO:0015289,http://purl.obolibrary.org/obo/MONDO_0015289,infectious epithelial keratitis +16.2617013,MONDO:0015315,http://purl.obolibrary.org/obo/MONDO_0015315,neonatal brainstem dysfunction +16.2617013,MONDO:0015380,http://purl.obolibrary.org/obo/MONDO_0015380,facial dermoid cyst +16.2617013,MONDO:0015381,http://purl.obolibrary.org/obo/MONDO_0015381,commissural lip fistula +16.2617013,MONDO:0015382,http://purl.obolibrary.org/obo/MONDO_0015382,lower lip fistula +16.2617013,MONDO:0015399,http://purl.obolibrary.org/obo/MONDO_0015399,glossopalatine ankylosis +16.2617013,MONDO:0015428,http://purl.obolibrary.org/obo/MONDO_0015428,choroidal atrophy-alopecia syndrome +16.2617013,MONDO:0015458,http://purl.obolibrary.org/obo/MONDO_0015458,intellectual disability-hypoplastic corpus callosum-preauricular tag syndrome +16.2617013,MONDO:0015522,http://purl.obolibrary.org/obo/MONDO_0015522,situs ambiguus +16.2617013,MONDO:0015641,http://purl.obolibrary.org/obo/MONDO_0015641,benign infantile focal epilepsy with midline spikes and wave during sleep +16.2617013,MONDO:0015729,http://purl.obolibrary.org/obo/MONDO_0015729,mosaic trisomy 16 +16.2617013,MONDO:0015740,http://purl.obolibrary.org/obo/MONDO_0015740,trisomy 18p +16.2617013,MONDO:0015748,http://purl.obolibrary.org/obo/MONDO_0015748,hereditary mucosal leukokeratosis +16.2617013,MONDO:0015755,http://purl.obolibrary.org/obo/MONDO_0015755,myopathy with hexagonally cross-linked tubular arrays +16.2617013,MONDO:0015826,http://purl.obolibrary.org/obo/MONDO_0015826,autosomal dominant spondylocostal dysostosis +16.2617013,MONDO:0016016,http://purl.obolibrary.org/obo/MONDO_0016016,toluene embryopathy +16.2617013,MONDO:0016042,http://purl.obolibrary.org/obo/MONDO_0016042,late-onset isolated ACTH deficiency +16.2617013,MONDO:0016053,http://purl.obolibrary.org/obo/MONDO_0016053,isolated cerebellar vermis hypoplasia +16.2617013,MONDO:0016116,http://purl.obolibrary.org/obo/MONDO_0016116,generalized bulbospinal muscular atrophy +16.2617013,MONDO:0016173,http://purl.obolibrary.org/obo/MONDO_0016173,non-paraneoplastic sensory ganglionopathy +16.2617013,MONDO:0016192,http://purl.obolibrary.org/obo/MONDO_0016192,qualitative or quantitative defects of telethonin +16.2617013,MONDO:0016202,http://purl.obolibrary.org/obo/MONDO_0016202,autosomal dominant rhegmatogenous retinal detachment +16.2617013,MONDO:0016221,http://purl.obolibrary.org/obo/MONDO_0016221,temporomandibular joint anomaly +16.2617013,MONDO:0016276,http://purl.obolibrary.org/obo/MONDO_0016276,high-grade neuroendocrine carcinoma of the cervix uteri +16.2617013,MONDO:0016337,http://purl.obolibrary.org/obo/MONDO_0016337,syndrome associated with dilated cardiomyopathy +16.2617013,MONDO:0016357,http://purl.obolibrary.org/obo/MONDO_0016357,dysplastic cortical hyperostosis +16.2617013,MONDO:0016373,http://purl.obolibrary.org/obo/MONDO_0016373,isolated facial myokymia +16.2617013,MONDO:0016376,http://purl.obolibrary.org/obo/MONDO_0016376,confetti-like macular atrophy +16.2617013,MONDO:0016460,http://purl.obolibrary.org/obo/MONDO_0016460,polyvalvular heart disease syndrome +16.2617013,MONDO:0016600,http://purl.obolibrary.org/obo/MONDO_0016600,acute neonatal citrullinemia type I +16.2617013,MONDO:0016650,http://purl.obolibrary.org/obo/MONDO_0016650,paternal uniparental disomy of chromosome 1 +16.2617013,MONDO:0016770,http://purl.obolibrary.org/obo/MONDO_0016770,actinic lichen planus +16.2617013,MONDO:0016785,http://purl.obolibrary.org/obo/MONDO_0016785,complete hydatidiform mole +16.2617013,MONDO:0016786,http://purl.obolibrary.org/obo/MONDO_0016786,partial hydatidiform mole +16.2617013,MONDO:0016788,http://purl.obolibrary.org/obo/MONDO_0016788,genetic hyperferritinemia without iron overload +16.2617013,MONDO:0016862,http://purl.obolibrary.org/obo/MONDO_0016862,Alagille syndrome due to a JAG1 point mutation +16.2617013,MONDO:0016888,http://purl.obolibrary.org/obo/MONDO_0016888,partial deletion of the short arm of chromosome 6 +16.2617013,MONDO:0016927,http://purl.obolibrary.org/obo/MONDO_0016927,partial duplication of chromosome 6 +16.2617013,MONDO:0016957,http://purl.obolibrary.org/obo/MONDO_0016957,partial duplication of the long arm of chromosome 6 +16.2617013,MONDO:0016958,http://purl.obolibrary.org/obo/MONDO_0016958,partial duplication of the long arm of chromosome 7 +16.2617013,MONDO:0016964,http://purl.obolibrary.org/obo/MONDO_0016964,partial duplication of the long arm of chromosome 14 +16.2617013,MONDO:0016967,http://purl.obolibrary.org/obo/MONDO_0016967,partial duplication of the long arm of chromosome 17 +16.2617013,MONDO:0016979,http://purl.obolibrary.org/obo/MONDO_0016979,MRCS syndrome +16.2617013,MONDO:0016995,http://purl.obolibrary.org/obo/MONDO_0016995,familial multiple meningioma +16.2617013,MONDO:0017053,http://purl.obolibrary.org/obo/MONDO_0017053,intermittent maple syrup urine disease +16.2617013,MONDO:0017073,http://purl.obolibrary.org/obo/MONDO_0017073,cervical spina bifida cystica +16.2617013,MONDO:0017082,http://purl.obolibrary.org/obo/MONDO_0017082,basal encephalocele +16.2617013,MONDO:0017086,http://purl.obolibrary.org/obo/MONDO_0017086,primary tethered cord syndrome +16.2617013,MONDO:0017205,http://purl.obolibrary.org/obo/MONDO_0017205,primary oculocerebral lymphoma +16.2617013,MONDO:0017211,http://purl.obolibrary.org/obo/MONDO_0017211,infectious panuveitis +16.2617013,MONDO:0017223,http://purl.obolibrary.org/obo/MONDO_0017223,"Pelizaeus-Merzbacher disease, transitional form" +16.2617013,MONDO:0017264,http://purl.obolibrary.org/obo/MONDO_0017264,syndromic recessive X-linked ichthyosis +16.2617013,MONDO:0017375,http://purl.obolibrary.org/obo/MONDO_0017375,congenital enterovirus infection +16.2617013,MONDO:0017437,http://purl.obolibrary.org/obo/MONDO_0017437,amelia of upper limb +16.2617013,MONDO:0017445,http://purl.obolibrary.org/obo/MONDO_0017445,acheiria +16.2617013,MONDO:0017449,http://purl.obolibrary.org/obo/MONDO_0017449,split hand +16.2617013,MONDO:0017625,http://purl.obolibrary.org/obo/MONDO_0017625,familial primary hypomagnesemia with hypocalcuria +16.2617013,MONDO:0017647,http://purl.obolibrary.org/obo/MONDO_0017647,postinfectious autoimmune disease with chorea +16.2617013,MONDO:0017648,http://purl.obolibrary.org/obo/MONDO_0017648,Sydenham chorea +16.2617013,MONDO:0017709,http://purl.obolibrary.org/obo/MONDO_0017709,disorder of lipid absorption and transport +16.2617013,MONDO:0017770,http://purl.obolibrary.org/obo/MONDO_0017770,Robinow-like syndrome +16.2617013,MONDO:0017791,http://purl.obolibrary.org/obo/MONDO_0017791,high bone mass osteogenesis imperfecta +16.2617013,MONDO:0017822,http://purl.obolibrary.org/obo/MONDO_0017822,mixed functioning pituitary adenoma +16.2617013,MONDO:0017823,http://purl.obolibrary.org/obo/MONDO_0017823,somatomammotropinoma +16.2617013,MONDO:0017843,http://purl.obolibrary.org/obo/MONDO_0017843,congenital pulmonary sequestration +16.2617013,MONDO:0017872,http://purl.obolibrary.org/obo/MONDO_0017872,Lujo hemorrhagic fever +16.2617013,MONDO:0017912,http://purl.obolibrary.org/obo/MONDO_0017912,X-linked pure spastic paraplegia +16.2617013,MONDO:0017985,http://purl.obolibrary.org/obo/MONDO_0017985,congenital radioulnar synostosis +16.2617013,MONDO:0018065,http://purl.obolibrary.org/obo/MONDO_0018065,isolated trigonocephaly +16.2617013,MONDO:0018226,http://purl.obolibrary.org/obo/MONDO_0018226,infantile epileptic-dyskinetic encephalopathy +16.2617013,MONDO:0018258,http://purl.obolibrary.org/obo/MONDO_0018258,Angora hair nevus +16.2617013,MONDO:0018311,http://purl.obolibrary.org/obo/MONDO_0018311,acromelanosis +16.2617013,MONDO:0018341,http://purl.obolibrary.org/obo/MONDO_0018341,3q27.3 microdeletion syndrome +16.2617013,MONDO:0018351,http://purl.obolibrary.org/obo/MONDO_0018351,adenocarcinoma of penis +16.2617013,MONDO:0018394,http://purl.obolibrary.org/obo/MONDO_0018394,male infertility with teratozoospermia due to single gene mutation +16.2617013,MONDO:0018442,http://purl.obolibrary.org/obo/MONDO_0018442,acitretin/etretinate embryopathy +16.2617013,MONDO:0018445,http://purl.obolibrary.org/obo/MONDO_0018445,global developmental delay - lung cysts - overgrowth - Wilms tumor syndrome +16.2617013,MONDO:0018492,http://purl.obolibrary.org/obo/MONDO_0018492,hereditary clear cell renal cell carcinoma +16.2617013,MONDO:0018549,http://purl.obolibrary.org/obo/MONDO_0018549,late-onset scapuloperoneal muscular dystrophy with hyaline bodies +16.2617013,MONDO:0018652,http://purl.obolibrary.org/obo/MONDO_0018652,biological anomaly without phenotypic characterization +16.2617013,MONDO:0018746,http://purl.obolibrary.org/obo/MONDO_0018746,mucous membrane pemphigoid +16.2617013,MONDO:0018748,http://purl.obolibrary.org/obo/MONDO_0018748,linear IgA Dermatosis +16.2617013,MONDO:0018750,http://purl.obolibrary.org/obo/MONDO_0018750,class I glucose-6-phosphate dehydrogenase deficiency +16.2617013,MONDO:0018793,http://purl.obolibrary.org/obo/MONDO_0018793,primary condylar hyperplasia +16.2617013,MONDO:0018806,http://purl.obolibrary.org/obo/MONDO_0018806,primary intrahepatic lithiasis +16.2617013,MONDO:0018809,http://purl.obolibrary.org/obo/MONDO_0018809,idiopathic peliosis hepatis +16.2617013,MONDO:0018951,http://purl.obolibrary.org/obo/MONDO_0018951,distal myopathy with vocal cord weakness +16.2617013,MONDO:0019094,http://purl.obolibrary.org/obo/MONDO_0019094,congenital Epstein-Barr virus infection +16.2617013,MONDO:0019160,http://purl.obolibrary.org/obo/MONDO_0019160,primary progressive freezing gait +16.2617013,MONDO:0019212,http://purl.obolibrary.org/obo/MONDO_0019212,disseminated superficial actinic porokeratosis +16.2617013,MONDO:0019318,http://purl.obolibrary.org/obo/MONDO_0019318,inflammatory linear verrucous epidermal nevus +16.2617013,MONDO:0019394,http://purl.obolibrary.org/obo/MONDO_0019394,Senior-Boichis syndrome +16.2617013,MONDO:0019432,http://purl.obolibrary.org/obo/MONDO_0019432,rheumatoid factor-negative juvenile idiopathic arthritis +16.2617013,MONDO:0019482,http://purl.obolibrary.org/obo/MONDO_0019482,dendritic cell sarcoma not otherwise specified +16.2617013,MONDO:0019488,http://purl.obolibrary.org/obo/MONDO_0019488,myoclonic epilepsy in non-progressive encephalopathies +16.2617013,MONDO:0019494,http://purl.obolibrary.org/obo/MONDO_0019494,primary pediatric heart tumor +16.2617013,MONDO:0019552,http://purl.obolibrary.org/obo/MONDO_0019552,centrifugal lipodystrophy +16.2617013,MONDO:0019604,http://purl.obolibrary.org/obo/MONDO_0019604,acquired monoclonal Ig light chain-associated Fanconi syndrome +16.2617013,MONDO:0019634,http://purl.obolibrary.org/obo/MONDO_0019634,familial nasal acilia +16.2617013,MONDO:0019639,http://purl.obolibrary.org/obo/MONDO_0019639,congenital megacalycosis +16.2617013,MONDO:0019664,http://purl.obolibrary.org/obo/MONDO_0019664,"short rib-polydactyly syndrome, Verma-Naumoff type" +16.2617013,MONDO:0019808,http://purl.obolibrary.org/obo/MONDO_0019808,aortic valve atresia +16.2617013,MONDO:0019902,http://purl.obolibrary.org/obo/MONDO_0019902,monosomy 13q34 +16.2617013,MONDO:0019914,http://purl.obolibrary.org/obo/MONDO_0019914,maternal uniparental disomy of chromosome 9 +16.2617013,MONDO:0019918,http://purl.obolibrary.org/obo/MONDO_0019918,maternal uniparental disomy of chromosome 21 +16.2617013,MONDO:0019919,http://purl.obolibrary.org/obo/MONDO_0019919,maternal uniparental disomy of chromosome 22 +16.2617013,MONDO:0019923,http://purl.obolibrary.org/obo/MONDO_0019923,Beckwith-Wiedemann syndrome due to paternal uniparental disomy of chromosome 11 +16.2617013,MONDO:0019973,http://purl.obolibrary.org/obo/MONDO_0019973,persistent placoid maculopathy +16.2617013,MONDO:0019989,http://purl.obolibrary.org/obo/MONDO_0019989,pauci-immune glomerulonephritis without ANCA +16.2617013,MONDO:0020296,http://purl.obolibrary.org/obo/MONDO_0020296,congenital arteriovenous fistula +16.2617013,MONDO:0020340,http://purl.obolibrary.org/obo/MONDO_0020340,bilateral perisylvian polymicrogyria +16.2617013,MONDO:0020382,http://purl.obolibrary.org/obo/MONDO_0020382,multifocal pattern dystrophy simulating fundus flavimaculatus +16.2617013,MONDO:0020398,http://purl.obolibrary.org/obo/MONDO_0020398,congenital mitral stenosis +16.2617013,MONDO:0020416,http://purl.obolibrary.org/obo/MONDO_0020416,Neuhauser anomaly +16.2617013,MONDO:0020457,http://purl.obolibrary.org/obo/MONDO_0020457,6-phosphogluconate dehydrogenase deficiency +16.2617013,MONDO:0020468,http://purl.obolibrary.org/obo/MONDO_0020468,paternal uniparental disomy of chromosome 13 +16.2617013,MONDO:0020594,http://purl.obolibrary.org/obo/MONDO_0020594,abducens nerve disease +16.2617013,MONDO:0020959,http://purl.obolibrary.org/obo/MONDO_0020959,Mansonella ozzardi infection +16.2617013,MONDO:0020989,http://purl.obolibrary.org/obo/MONDO_0020989,hereditary persistence of fetal hemoglobin +16.2617013,MONDO:0021099,http://purl.obolibrary.org/obo/MONDO_0021099,intraductal papillomatosis +16.2617013,MONDO:0021160,http://purl.obolibrary.org/obo/MONDO_0021160,gonococcal cystitis +16.2617013,MONDO:0021161,http://purl.obolibrary.org/obo/MONDO_0021161,gonococcal prostatitis +16.2617013,MONDO:0021402,http://purl.obolibrary.org/obo/MONDO_0021402,polyp of external auditory canal +16.2617013,MONDO:0021418,http://purl.obolibrary.org/obo/MONDO_0021418,polyp of ethmoidal sinus +16.2617013,MONDO:0021424,http://purl.obolibrary.org/obo/MONDO_0021424,hemangiopericytoma of skin +16.2617013,MONDO:0021441,http://purl.obolibrary.org/obo/MONDO_0021441,benign neoplasm of exocrine pancreas +16.2617013,MONDO:0021496,http://purl.obolibrary.org/obo/MONDO_0021496,benign neoplasm of lip +16.2617013,MONDO:0021505,http://purl.obolibrary.org/obo/MONDO_0021505,benign neoplasm of endocardium +16.2617013,MONDO:0021509,http://purl.obolibrary.org/obo/MONDO_0021509,benign neoplasm of myocardium +16.2617013,MONDO:0021569,http://purl.obolibrary.org/obo/MONDO_0021569,"Emery-Dreifuss muscular dystrophy 2, autosomal dominant" +16.2617013,MONDO:0021811,http://purl.obolibrary.org/obo/MONDO_0021811,acute mountain sickness +16.2617013,MONDO:0022180,http://purl.obolibrary.org/obo/MONDO_0022180,chromosome 16 trisomy +16.2617013,MONDO:0022468,http://purl.obolibrary.org/obo/MONDO_0022468,antigen-peptide-transporter 2 deficiency +16.2617013,MONDO:0022556,http://purl.obolibrary.org/obo/MONDO_0022556,oculo-cerebral dysplasia +16.2617013,MONDO:0022676,http://purl.obolibrary.org/obo/MONDO_0022676,none +16.2617013,MONDO:0022699,http://purl.obolibrary.org/obo/MONDO_0022699,cerebral palsy spastic hemiplegic +16.2617013,MONDO:0022854,http://purl.obolibrary.org/obo/MONDO_0022854,congenital unilateral pulmonary hypoplasia +16.2617013,MONDO:0022901,http://purl.obolibrary.org/obo/MONDO_0022901,Crohn disease of the esophagus +16.2617013,MONDO:0022912,http://purl.obolibrary.org/obo/MONDO_0022912,cutis verticis gyrata mental deficiency +16.2617013,MONDO:0023039,http://purl.obolibrary.org/obo/MONDO_0023039,eccrine mucinous carcinoma +16.2617013,MONDO:0024283,http://purl.obolibrary.org/obo/MONDO_0024283,Demodex folliculitis +16.2617013,MONDO:0024290,http://purl.obolibrary.org/obo/MONDO_0024290,enuresis +16.2617013,MONDO:0024412,http://purl.obolibrary.org/obo/MONDO_0024412,Peptostreptococcus infectious disease +16.2617013,MONDO:0024414,http://purl.obolibrary.org/obo/MONDO_0024414,anaerobic cellulitis +16.2617013,MONDO:0024430,http://purl.obolibrary.org/obo/MONDO_0024430,allesthesia +16.2617013,MONDO:0024457,http://purl.obolibrary.org/obo/MONDO_0024457,neurodegeneration with brain iron accumulation 2A +16.2617013,MONDO:0024531,http://purl.obolibrary.org/obo/MONDO_0024531,"myopathy, tubular aggregate, 1" +16.2617013,MONDO:0024540,http://purl.obolibrary.org/obo/MONDO_0024540,Jervell and Lange-Nielsen syndrome 1 +16.2617013,MONDO:0024565,http://purl.obolibrary.org/obo/MONDO_0024565,ectodermal dysplasia-syndactyly syndrome 1 +16.2617013,MONDO:0024649,http://purl.obolibrary.org/obo/MONDO_0024649,optic tract astrocytoma +16.2617013,MONDO:0024889,http://purl.obolibrary.org/obo/MONDO_0024889,benign mesonephroma +16.2617013,MONDO:0024935,http://purl.obolibrary.org/obo/MONDO_0024935,foot rot +16.2617013,MONDO:0025003,http://purl.obolibrary.org/obo/MONDO_0025003,goat disease +16.2617013,MONDO:0025135,http://purl.obolibrary.org/obo/MONDO_0025135,"tuberculosis, avian" +16.2617013,MONDO:0025382,http://purl.obolibrary.org/obo/MONDO_0025382,"sarcoma, avian" +16.2617013,MONDO:0027694,http://purl.obolibrary.org/obo/MONDO_0027694,amyotrophic lateral sclerosis type 23 +16.2617013,MONDO:0028618,http://purl.obolibrary.org/obo/MONDO_0028618,gastroenteric neuroendocrine neoplasm +16.2617013,MONDO:0030116,http://purl.obolibrary.org/obo/MONDO_0030116,silver-russell syndrome 2 +16.2617013,MONDO:0031037,http://purl.obolibrary.org/obo/MONDO_0031037,famililal cerebral cavernous malformations +16.2617013,MONDO:0032651,http://purl.obolibrary.org/obo/MONDO_0032651,"fibrosis, neurodegeneration, and cerebral angiomatosis" +16.2617013,MONDO:0033004,http://purl.obolibrary.org/obo/MONDO_0033004,polycystic kidney disease 4 +16.2617013,MONDO:0033281,http://purl.obolibrary.org/obo/MONDO_0033281,polycystic kidney disease 5 +16.2617013,MONDO:0033926,http://purl.obolibrary.org/obo/MONDO_0033926,prepubertal anorexia nervosa +16.2617013,MONDO:0033948,http://purl.obolibrary.org/obo/MONDO_0033948,acquired angioedema with C1Inh deficiency +16.2617013,MONDO:0034204,http://purl.obolibrary.org/obo/MONDO_0034204,syndromic congenital sodium diarrhea +16.2617013,MONDO:0036915,http://purl.obolibrary.org/obo/MONDO_0036915,benign ovarian mucinous tumor +16.2617013,MONDO:0037105,http://purl.obolibrary.org/obo/MONDO_0037105,lung germ cell tumor +16.2617013,MONDO:0037737,http://purl.obolibrary.org/obo/MONDO_0037737,peritoneal solitary fibrous tumor +16.2617013,MONDO:0041403,http://purl.obolibrary.org/obo/MONDO_0041403,toxic amblyopia +16.2617013,MONDO:0041447,http://purl.obolibrary.org/obo/MONDO_0041447,metastatic malignant neoplasm in the colon +16.2617013,MONDO:0041751,http://purl.obolibrary.org/obo/MONDO_0041751,multibacillary leprosy +16.2617013,MONDO:0042966,http://purl.obolibrary.org/obo/MONDO_0042966,inherited mitral valve disease +16.2617013,MONDO:0043168,http://purl.obolibrary.org/obo/MONDO_0043168,panostotic fibrous dysplasia +16.2617013,MONDO:0043176,http://purl.obolibrary.org/obo/MONDO_0043176,phosphoribosylpyrophosphate synthetase deficiency +16.2617013,MONDO:0043904,http://purl.obolibrary.org/obo/MONDO_0043904,"leishmaniasis, diffuse cutaneous" +16.2617013,MONDO:0044202,http://purl.obolibrary.org/obo/MONDO_0044202,episodic kinesigenic dyskinesia +16.2617013,MONDO:0044624,http://purl.obolibrary.org/obo/MONDO_0044624,pediatric collagenous gastritis +16.2617013,MONDO:0044655,http://purl.obolibrary.org/obo/MONDO_0044655,c12orf65-related combined oxidative phosphorylation defect +16.2617013,MONDO:0044656,http://purl.obolibrary.org/obo/MONDO_0044656,epidermolytic nevus +16.2617013,MONDO:0044997,http://purl.obolibrary.org/obo/MONDO_0044997,midbrain disease +16.2617013,MONDO:0045034,http://purl.obolibrary.org/obo/MONDO_0045034,infectious disease characteristic +16.2617013,MONDO:0045059,http://purl.obolibrary.org/obo/MONDO_0045059,cribriform carcinoma of breast +16.2617013,MONDO:0060491,http://purl.obolibrary.org/obo/MONDO_0060491,neurodevelopmental disorder with involuntary movements +16.2617013,MONDO:0060551,http://purl.obolibrary.org/obo/MONDO_0060551,"cerebellar atrophy, developmental delay, and seizures" +16.2617013,MONDO:0060592,http://purl.obolibrary.org/obo/MONDO_0060592,Sweeney-Cox syndrome +16.2617013,MONDO:0100015,http://purl.obolibrary.org/obo/MONDO_0100015,adult-onset segmental dystonia +16.2617013,MONDO:0100112,http://purl.obolibrary.org/obo/MONDO_0100112,acyl-CoA binding domain containing protein 5 deficiency +16.2617013,MONDO:0100125,http://purl.obolibrary.org/obo/MONDO_0100125,hallucinogen-persisting perception disorder +16.2617013,MONDO:0100129,http://purl.obolibrary.org/obo/MONDO_0100129,intracranial arachoid cyst +16.2617013,MONDO:0100138,http://purl.obolibrary.org/obo/MONDO_0100138,X-linked recessive mitochondrial myopathy +16.2617013,MONDO:0100343,http://purl.obolibrary.org/obo/MONDO_0100343,antenatal Bartter syndrome +16.2617013,MOP:0000016,http://purl.obolibrary.org/obo/MOP_0000016,none +16.2617013,MOP:0000031,http://purl.obolibrary.org/obo/MOP_0000031,none +16.2617013,MOP:0000434,http://purl.obolibrary.org/obo/MOP_0000434,none +16.2617013,MOP:0000674,http://purl.obolibrary.org/obo/MOP_0000674,none +16.2617013,MOP:0000706,http://purl.obolibrary.org/obo/MOP_0000706,none +16.2617013,MOP:0001494,http://purl.obolibrary.org/obo/MOP_0001494,none +16.2617013,MOP:0001550,http://purl.obolibrary.org/obo/MOP_0001550,none +16.2617013,MOP:0003093,http://purl.obolibrary.org/obo/MOP_0003093,none +16.2617013,MOP:0004030,http://purl.obolibrary.org/obo/MOP_0004030,none +16.2617013,NCBITaxon:1000585,http://purl.obolibrary.org/obo/NCBITaxon_1000585,none +16.2617013,NCBITaxon:1000586,http://purl.obolibrary.org/obo/NCBITaxon_1000586,none +16.2617013,NCBITaxon:100127,http://purl.obolibrary.org/obo/NCBITaxon_100127,none +16.2617013,NCBITaxon:100167,http://purl.obolibrary.org/obo/NCBITaxon_100167,none +16.2617013,NCBITaxon:1003864,http://purl.obolibrary.org/obo/NCBITaxon_1003864,none +16.2617013,NCBITaxon:10043,http://purl.obolibrary.org/obo/NCBITaxon_10043,none +16.2617013,NCBITaxon:10055,http://purl.obolibrary.org/obo/NCBITaxon_10055,none +16.2617013,NCBITaxon:1005993,http://purl.obolibrary.org/obo/NCBITaxon_1005993,none +16.2617013,NCBITaxon:1006063,http://purl.obolibrary.org/obo/NCBITaxon_1006063,none +16.2617013,NCBITaxon:1006583,http://purl.obolibrary.org/obo/NCBITaxon_1006583,none +16.2617013,NCBITaxon:10075,http://purl.obolibrary.org/obo/NCBITaxon_10075,none +16.2617013,NCBITaxon:10080,http://purl.obolibrary.org/obo/NCBITaxon_10080,none +16.2617013,NCBITaxon:100860,http://purl.obolibrary.org/obo/NCBITaxon_100860,none +16.2617013,NCBITaxon:101029,http://purl.obolibrary.org/obo/NCBITaxon_101029,none +16.2617013,NCBITaxon:101165,http://purl.obolibrary.org/obo/NCBITaxon_101165,none +16.2617013,NCBITaxon:10132,http://purl.obolibrary.org/obo/NCBITaxon_10132,none +16.2617013,NCBITaxon:10162,http://purl.obolibrary.org/obo/NCBITaxon_10162,none +16.2617013,NCBITaxon:101672,http://purl.obolibrary.org/obo/NCBITaxon_101672,none +16.2617013,NCBITaxon:101673,http://purl.obolibrary.org/obo/NCBITaxon_101673,none +16.2617013,NCBITaxon:101675,http://purl.obolibrary.org/obo/NCBITaxon_101675,none +16.2617013,NCBITaxon:101676,http://purl.obolibrary.org/obo/NCBITaxon_101676,none +16.2617013,NCBITaxon:10193,http://purl.obolibrary.org/obo/NCBITaxon_10193,none +16.2617013,NCBITaxon:10205,http://purl.obolibrary.org/obo/NCBITaxon_10205,none +16.2617013,NCBITaxon:102106,http://purl.obolibrary.org/obo/NCBITaxon_102106,none +16.2617013,NCBITaxon:10226,http://purl.obolibrary.org/obo/NCBITaxon_10226,none +16.2617013,NCBITaxon:10246,http://purl.obolibrary.org/obo/NCBITaxon_10246,none +16.2617013,NCBITaxon:1027398,http://purl.obolibrary.org/obo/NCBITaxon_1027398,none +16.2617013,NCBITaxon:1027468,http://purl.obolibrary.org/obo/NCBITaxon_1027468,none +16.2617013,NCBITaxon:1027880,http://purl.obolibrary.org/obo/NCBITaxon_1027880,none +16.2617013,NCBITaxon:102811,http://purl.obolibrary.org/obo/NCBITaxon_102811,none +16.2617013,NCBITaxon:102816,http://purl.obolibrary.org/obo/NCBITaxon_102816,none +16.2617013,NCBITaxon:102819,http://purl.obolibrary.org/obo/NCBITaxon_102819,none +16.2617013,NCBITaxon:1032457,http://purl.obolibrary.org/obo/NCBITaxon_1032457,none +16.2617013,NCBITaxon:1034067,http://purl.obolibrary.org/obo/NCBITaxon_1034067,none +16.2617013,NCBITaxon:1036719,http://purl.obolibrary.org/obo/NCBITaxon_1036719,none +16.2617013,NCBITaxon:1036964,http://purl.obolibrary.org/obo/NCBITaxon_1036964,none +16.2617013,NCBITaxon:103723,http://purl.obolibrary.org/obo/NCBITaxon_103723,none +16.2617013,NCBITaxon:103765,http://purl.obolibrary.org/obo/NCBITaxon_103765,none +16.2617013,NCBITaxon:10380,http://purl.obolibrary.org/obo/NCBITaxon_10380,none +16.2617013,NCBITaxon:1038067,http://purl.obolibrary.org/obo/NCBITaxon_1038067,none +16.2617013,NCBITaxon:103844,http://purl.obolibrary.org/obo/NCBITaxon_103844,none +16.2617013,NCBITaxon:103845,http://purl.obolibrary.org/obo/NCBITaxon_103845,none +16.2617013,NCBITaxon:103887,http://purl.obolibrary.org/obo/NCBITaxon_103887,none +16.2617013,NCBITaxon:1041831,http://purl.obolibrary.org/obo/NCBITaxon_1041831,none +16.2617013,NCBITaxon:104395,http://purl.obolibrary.org/obo/NCBITaxon_104395,none +16.2617013,NCBITaxon:104581,http://purl.obolibrary.org/obo/NCBITaxon_104581,none +16.2617013,NCBITaxon:1046402,http://purl.obolibrary.org/obo/NCBITaxon_1046402,none +16.2617013,NCBITaxon:1051966,http://purl.obolibrary.org/obo/NCBITaxon_1051966,none +16.2617013,NCBITaxon:105299,http://purl.obolibrary.org/obo/NCBITaxon_105299,none +16.2617013,NCBITaxon:10534,http://purl.obolibrary.org/obo/NCBITaxon_10534,none +16.2617013,NCBITaxon:105390,http://purl.obolibrary.org/obo/NCBITaxon_105390,none +16.2617013,NCBITaxon:10546,http://purl.obolibrary.org/obo/NCBITaxon_10546,none +16.2617013,NCBITaxon:105506,http://purl.obolibrary.org/obo/NCBITaxon_105506,none +16.2617013,NCBITaxon:1055539,http://purl.obolibrary.org/obo/NCBITaxon_1055539,none +16.2617013,NCBITaxon:1056494,http://purl.obolibrary.org/obo/NCBITaxon_1056494,none +16.2617013,NCBITaxon:105710,http://purl.obolibrary.org/obo/NCBITaxon_105710,none +16.2617013,NCBITaxon:106,http://purl.obolibrary.org/obo/NCBITaxon_106,none +16.2617013,NCBITaxon:10601,http://purl.obolibrary.org/obo/NCBITaxon_10601,none +16.2617013,NCBITaxon:10611,http://purl.obolibrary.org/obo/NCBITaxon_10611,none +16.2617013,NCBITaxon:10616,http://purl.obolibrary.org/obo/NCBITaxon_10616,none +16.2617013,NCBITaxon:10621,http://purl.obolibrary.org/obo/NCBITaxon_10621,none +16.2617013,NCBITaxon:10629,http://purl.obolibrary.org/obo/NCBITaxon_10629,none +16.2617013,NCBITaxon:106589,http://purl.obolibrary.org/obo/NCBITaxon_106589,none +16.2617013,NCBITaxon:1070983,http://purl.obolibrary.org/obo/NCBITaxon_1070983,none +16.2617013,NCBITaxon:10719,http://purl.obolibrary.org/obo/NCBITaxon_10719,none +16.2617013,NCBITaxon:1072458,http://purl.obolibrary.org/obo/NCBITaxon_1072458,none +16.2617013,NCBITaxon:107449,http://purl.obolibrary.org/obo/NCBITaxon_107449,none +16.2617013,NCBITaxon:10761,http://purl.obolibrary.org/obo/NCBITaxon_10761,none +16.2617013,NCBITaxon:1077859,http://purl.obolibrary.org/obo/NCBITaxon_1077859,none +16.2617013,NCBITaxon:1078,http://purl.obolibrary.org/obo/NCBITaxon_1078,none +16.2617013,NCBITaxon:1078030,http://purl.obolibrary.org/obo/NCBITaxon_1078030,none +16.2617013,NCBITaxon:10806,http://purl.obolibrary.org/obo/NCBITaxon_10806,none +16.2617013,NCBITaxon:1080709,http://purl.obolibrary.org/obo/NCBITaxon_1080709,none +16.2617013,NCBITaxon:1080799,http://purl.obolibrary.org/obo/NCBITaxon_1080799,none +16.2617013,NCBITaxon:108090,http://purl.obolibrary.org/obo/NCBITaxon_108090,none +16.2617013,NCBITaxon:108091,http://purl.obolibrary.org/obo/NCBITaxon_108091,none +16.2617013,NCBITaxon:108093,http://purl.obolibrary.org/obo/NCBITaxon_108093,none +16.2617013,NCBITaxon:108148,http://purl.obolibrary.org/obo/NCBITaxon_108148,none +16.2617013,NCBITaxon:108149,http://purl.obolibrary.org/obo/NCBITaxon_108149,none +16.2617013,NCBITaxon:10825,http://purl.obolibrary.org/obo/NCBITaxon_10825,none +16.2617013,NCBITaxon:10860,http://purl.obolibrary.org/obo/NCBITaxon_10860,none +16.2617013,NCBITaxon:10861,http://purl.obolibrary.org/obo/NCBITaxon_10861,none +16.2617013,NCBITaxon:108826,http://purl.obolibrary.org/obo/NCBITaxon_108826,none +16.2617013,NCBITaxon:1089387,http://purl.obolibrary.org/obo/NCBITaxon_1089387,none +16.2617013,NCBITaxon:1090675,http://purl.obolibrary.org/obo/NCBITaxon_1090675,none +16.2617013,NCBITaxon:10913,http://purl.obolibrary.org/obo/NCBITaxon_10913,Porcine rotavirus +16.2617013,NCBITaxon:1093160,http://purl.obolibrary.org/obo/NCBITaxon_1093160,none +16.2617013,NCBITaxon:10942,http://purl.obolibrary.org/obo/NCBITaxon_10942,none +16.2617013,NCBITaxon:1094349,http://purl.obolibrary.org/obo/NCBITaxon_1094349,none +16.2617013,NCBITaxon:109448,http://purl.obolibrary.org/obo/NCBITaxon_109448,none +16.2617013,NCBITaxon:1094892,http://purl.obolibrary.org/obo/NCBITaxon_1094892,none +16.2617013,NCBITaxon:109940,http://purl.obolibrary.org/obo/NCBITaxon_109940,none +16.2617013,NCBITaxon:109993,http://purl.obolibrary.org/obo/NCBITaxon_109993,none +16.2617013,NCBITaxon:1105028,http://purl.obolibrary.org/obo/NCBITaxon_1105028,none +16.2617013,NCBITaxon:110846,http://purl.obolibrary.org/obo/NCBITaxon_110846,none +16.2617013,NCBITaxon:11088,http://purl.obolibrary.org/obo/NCBITaxon_11088,none +16.2617013,NCBITaxon:1108949,http://purl.obolibrary.org/obo/NCBITaxon_1108949,none +16.2617013,NCBITaxon:110944,http://purl.obolibrary.org/obo/NCBITaxon_110944,none +16.2617013,NCBITaxon:1111709,http://purl.obolibrary.org/obo/NCBITaxon_1111709,none +16.2617013,NCBITaxon:1112769,http://purl.obolibrary.org/obo/NCBITaxon_1112769,none +16.2617013,NCBITaxon:1112770,http://purl.obolibrary.org/obo/NCBITaxon_1112770,none +16.2617013,NCBITaxon:11130,http://purl.obolibrary.org/obo/NCBITaxon_11130,none +16.2617013,NCBITaxon:111367,http://purl.obolibrary.org/obo/NCBITaxon_111367,none +16.2617013,NCBITaxon:112092,http://purl.obolibrary.org/obo/NCBITaxon_112092,none +16.2617013,NCBITaxon:1131416,http://purl.obolibrary.org/obo/NCBITaxon_1131416,none +16.2617013,NCBITaxon:1132026,http://purl.obolibrary.org/obo/NCBITaxon_1132026,none +16.2617013,NCBITaxon:1133751,http://purl.obolibrary.org/obo/NCBITaxon_1133751,none +16.2617013,NCBITaxon:1134411,http://purl.obolibrary.org/obo/NCBITaxon_1134411,none +16.2617013,NCBITaxon:114078,http://purl.obolibrary.org/obo/NCBITaxon_114078,none +16.2617013,NCBITaxon:1143716,http://purl.obolibrary.org/obo/NCBITaxon_1143716,none +16.2617013,NCBITaxon:1147756,http://purl.obolibrary.org/obo/NCBITaxon_1147756,none +16.2617013,NCBITaxon:114861,http://purl.obolibrary.org/obo/NCBITaxon_114861,none +16.2617013,NCBITaxon:114923,http://purl.obolibrary.org/obo/NCBITaxon_114923,none +16.2617013,NCBITaxon:114924,http://purl.obolibrary.org/obo/NCBITaxon_114924,none +16.2617013,NCBITaxon:1150,http://purl.obolibrary.org/obo/NCBITaxon_1150,none +16.2617013,NCBITaxon:1151044,http://purl.obolibrary.org/obo/NCBITaxon_1151044,none +16.2617013,NCBITaxon:115353,http://purl.obolibrary.org/obo/NCBITaxon_115353,none +16.2617013,NCBITaxon:115428,http://purl.obolibrary.org/obo/NCBITaxon_115428,none +16.2617013,NCBITaxon:115429,http://purl.obolibrary.org/obo/NCBITaxon_115429,none +16.2617013,NCBITaxon:115574,http://purl.obolibrary.org/obo/NCBITaxon_115574,none +16.2617013,NCBITaxon:115696,http://purl.obolibrary.org/obo/NCBITaxon_115696,none +16.2617013,NCBITaxon:1158190,http://purl.obolibrary.org/obo/NCBITaxon_1158190,none +16.2617013,NCBITaxon:1160968,http://purl.obolibrary.org/obo/NCBITaxon_1160968,none +16.2617013,NCBITaxon:116104,http://purl.obolibrary.org/obo/NCBITaxon_116104,none +16.2617013,NCBITaxon:1162280,http://purl.obolibrary.org/obo/NCBITaxon_1162280,none +16.2617013,NCBITaxon:1163668,http://purl.obolibrary.org/obo/NCBITaxon_1163668,none +16.2617013,NCBITaxon:116570,http://purl.obolibrary.org/obo/NCBITaxon_116570,none +16.2617013,NCBITaxon:1169032,http://purl.obolibrary.org/obo/NCBITaxon_1169032,none +16.2617013,NCBITaxon:116933,http://purl.obolibrary.org/obo/NCBITaxon_116933,none +16.2617013,NCBITaxon:1170425,http://purl.obolibrary.org/obo/NCBITaxon_1170425,none +16.2617013,NCBITaxon:1170505,http://purl.obolibrary.org/obo/NCBITaxon_1170505,none +16.2617013,NCBITaxon:1170506,http://purl.obolibrary.org/obo/NCBITaxon_1170506,none +16.2617013,NCBITaxon:11712,http://purl.obolibrary.org/obo/NCBITaxon_11712,none +16.2617013,NCBITaxon:1172174,http://purl.obolibrary.org/obo/NCBITaxon_1172174,none +16.2617013,NCBITaxon:117574,http://purl.obolibrary.org/obo/NCBITaxon_117574,none +16.2617013,NCBITaxon:1177,http://purl.obolibrary.org/obo/NCBITaxon_1177,none +16.2617013,NCBITaxon:117858,http://purl.obolibrary.org/obo/NCBITaxon_117858,none +16.2617013,NCBITaxon:117879,http://purl.obolibrary.org/obo/NCBITaxon_117879,none +16.2617013,NCBITaxon:117880,http://purl.obolibrary.org/obo/NCBITaxon_117880,none +16.2617013,NCBITaxon:11823,http://purl.obolibrary.org/obo/NCBITaxon_11823,none +16.2617013,NCBITaxon:1183241,http://purl.obolibrary.org/obo/NCBITaxon_1183241,none +16.2617013,NCBITaxon:1184124,http://purl.obolibrary.org/obo/NCBITaxon_1184124,none +16.2617013,NCBITaxon:11849,http://purl.obolibrary.org/obo/NCBITaxon_11849,none +16.2617013,NCBITaxon:1186059,http://purl.obolibrary.org/obo/NCBITaxon_1186059,none +16.2617013,NCBITaxon:1188810,http://purl.obolibrary.org/obo/NCBITaxon_1188810,none +16.2617013,NCBITaxon:11889,http://purl.obolibrary.org/obo/NCBITaxon_11889,none +16.2617013,NCBITaxon:1188990,http://purl.obolibrary.org/obo/NCBITaxon_1188990,none +16.2617013,NCBITaxon:119095,http://purl.obolibrary.org/obo/NCBITaxon_119095,Capillaria +16.2617013,NCBITaxon:1191644,http://purl.obolibrary.org/obo/NCBITaxon_1191644,none +16.2617013,NCBITaxon:119166,http://purl.obolibrary.org/obo/NCBITaxon_119166,none +16.2617013,NCBITaxon:119429,http://purl.obolibrary.org/obo/NCBITaxon_119429,none +16.2617013,NCBITaxon:1194732,http://purl.obolibrary.org/obo/NCBITaxon_1194732,none +16.2617013,NCBITaxon:1194755,http://purl.obolibrary.org/obo/NCBITaxon_1194755,none +16.2617013,NCBITaxon:11949,http://purl.obolibrary.org/obo/NCBITaxon_11949,none +16.2617013,NCBITaxon:1195162,http://purl.obolibrary.org/obo/NCBITaxon_1195162,none +16.2617013,NCBITaxon:1195163,http://purl.obolibrary.org/obo/NCBITaxon_1195163,none +16.2617013,NCBITaxon:119604,http://purl.obolibrary.org/obo/NCBITaxon_119604,none +16.2617013,NCBITaxon:1198134,http://purl.obolibrary.org/obo/NCBITaxon_1198134,none +16.2617013,NCBITaxon:1198136,http://purl.obolibrary.org/obo/NCBITaxon_1198136,none +16.2617013,NCBITaxon:1198219,http://purl.obolibrary.org/obo/NCBITaxon_1198219,none +16.2617013,NCBITaxon:1198220,http://purl.obolibrary.org/obo/NCBITaxon_1198220,none +16.2617013,NCBITaxon:1198980,http://purl.obolibrary.org/obo/NCBITaxon_1198980,none +16.2617013,NCBITaxon:12023,http://purl.obolibrary.org/obo/NCBITaxon_12023,none +16.2617013,NCBITaxon:1203512,http://purl.obolibrary.org/obo/NCBITaxon_1203512,none +16.2617013,NCBITaxon:12073,http://purl.obolibrary.org/obo/NCBITaxon_12073,none +16.2617013,NCBITaxon:12080,http://purl.obolibrary.org/obo/NCBITaxon_12080,Human poliovirus 1 +16.2617013,NCBITaxon:1208378,http://purl.obolibrary.org/obo/NCBITaxon_1208378,none +16.2617013,NCBITaxon:12086,http://purl.obolibrary.org/obo/NCBITaxon_12086,Human poliovirus 3 +16.2617013,NCBITaxon:121069,http://purl.obolibrary.org/obo/NCBITaxon_121069,none +16.2617013,NCBITaxon:1211275,http://purl.obolibrary.org/obo/NCBITaxon_1211275,none +16.2617013,NCBITaxon:1211276,http://purl.obolibrary.org/obo/NCBITaxon_1211276,none +16.2617013,NCBITaxon:121164,http://purl.obolibrary.org/obo/NCBITaxon_121164,none +16.2617013,NCBITaxon:12121,http://purl.obolibrary.org/obo/NCBITaxon_12121,none +16.2617013,NCBITaxon:12130,http://purl.obolibrary.org/obo/NCBITaxon_12130,none +16.2617013,NCBITaxon:1213588,http://purl.obolibrary.org/obo/NCBITaxon_1213588,none +16.2617013,NCBITaxon:1219465,http://purl.obolibrary.org/obo/NCBITaxon_1219465,none +16.2617013,NCBITaxon:12206,http://purl.obolibrary.org/obo/NCBITaxon_12206,none +16.2617013,NCBITaxon:12207,http://purl.obolibrary.org/obo/NCBITaxon_12207,none +16.2617013,NCBITaxon:1220758,http://purl.obolibrary.org/obo/NCBITaxon_1220758,none +16.2617013,NCBITaxon:1221206,http://purl.obolibrary.org/obo/NCBITaxon_1221206,none +16.2617013,NCBITaxon:1221437,http://purl.obolibrary.org/obo/NCBITaxon_1221437,none +16.2617013,NCBITaxon:1221449,http://purl.obolibrary.org/obo/NCBITaxon_1221449,none +16.2617013,NCBITaxon:122399,http://purl.obolibrary.org/obo/NCBITaxon_122399,none +16.2617013,NCBITaxon:1225069,http://purl.obolibrary.org/obo/NCBITaxon_1225069,none +16.2617013,NCBITaxon:122543,http://purl.obolibrary.org/obo/NCBITaxon_122543,none +16.2617013,NCBITaxon:12292,http://purl.obolibrary.org/obo/NCBITaxon_12292,none +16.2617013,NCBITaxon:1232461,http://purl.obolibrary.org/obo/NCBITaxon_1232461,none +16.2617013,NCBITaxon:1232680,http://purl.obolibrary.org/obo/NCBITaxon_1232680,none +16.2617013,NCBITaxon:123459,http://purl.obolibrary.org/obo/NCBITaxon_123459,none +16.2617013,NCBITaxon:1235850,http://purl.obolibrary.org/obo/NCBITaxon_1235850,none +16.2617013,NCBITaxon:123760,http://purl.obolibrary.org/obo/NCBITaxon_123760,none +16.2617013,NCBITaxon:12432,http://purl.obolibrary.org/obo/NCBITaxon_12432,none +16.2617013,NCBITaxon:1246964,http://purl.obolibrary.org/obo/NCBITaxon_1246964,none +16.2617013,NCBITaxon:1246965,http://purl.obolibrary.org/obo/NCBITaxon_1246965,none +16.2617013,NCBITaxon:1254420,http://purl.obolibrary.org/obo/NCBITaxon_1254420,none +16.2617013,NCBITaxon:1254451,http://purl.obolibrary.org/obo/NCBITaxon_1254451,none +16.2617013,NCBITaxon:1257,http://purl.obolibrary.org/obo/NCBITaxon_1257,Peptostreptococcus +16.2617013,NCBITaxon:12583,http://purl.obolibrary.org/obo/NCBITaxon_12583,none +16.2617013,NCBITaxon:1260513,http://purl.obolibrary.org/obo/NCBITaxon_1260513,none +16.2617013,NCBITaxon:1261100,http://purl.obolibrary.org/obo/NCBITaxon_1261100,none +16.2617013,NCBITaxon:1261101,http://purl.obolibrary.org/obo/NCBITaxon_1261101,none +16.2617013,NCBITaxon:126297,http://purl.obolibrary.org/obo/NCBITaxon_126297,none +16.2617013,NCBITaxon:1264872,http://purl.obolibrary.org/obo/NCBITaxon_1264872,Basidiobolales +16.2617013,NCBITaxon:1266529,http://purl.obolibrary.org/obo/NCBITaxon_1266529,none +16.2617013,NCBITaxon:1269043,http://purl.obolibrary.org/obo/NCBITaxon_1269043,none +16.2617013,NCBITaxon:127010,http://purl.obolibrary.org/obo/NCBITaxon_127010,none +16.2617013,NCBITaxon:127271,http://purl.obolibrary.org/obo/NCBITaxon_127271,none +16.2617013,NCBITaxon:1272962,http://purl.obolibrary.org/obo/NCBITaxon_1272962,none +16.2617013,NCBITaxon:1273158,http://purl.obolibrary.org/obo/NCBITaxon_1273158,none +16.2617013,NCBITaxon:127399,http://purl.obolibrary.org/obo/NCBITaxon_127399,none +16.2617013,NCBITaxon:1280,http://purl.obolibrary.org/obo/NCBITaxon_1280,Staphylococcus aureus +16.2617013,NCBITaxon:128161,http://purl.obolibrary.org/obo/NCBITaxon_128161,none +16.2617013,NCBITaxon:1291658,http://purl.obolibrary.org/obo/NCBITaxon_1291658,none +16.2617013,NCBITaxon:129384,http://purl.obolibrary.org/obo/NCBITaxon_129384,none +16.2617013,NCBITaxon:129432,http://purl.obolibrary.org/obo/NCBITaxon_129432,none +16.2617013,NCBITaxon:12960,http://purl.obolibrary.org/obo/NCBITaxon_12960,none +16.2617013,NCBITaxon:1296569,http://purl.obolibrary.org/obo/NCBITaxon_1296569,none +16.2617013,NCBITaxon:1296572,http://purl.obolibrary.org/obo/NCBITaxon_1296572,none +16.2617013,NCBITaxon:129724,http://purl.obolibrary.org/obo/NCBITaxon_129724,none +16.2617013,NCBITaxon:1297661,http://purl.obolibrary.org/obo/NCBITaxon_1297661,none +16.2617013,NCBITaxon:1298467,http://purl.obolibrary.org/obo/NCBITaxon_1298467,none +16.2617013,NCBITaxon:1298587,http://purl.obolibrary.org/obo/NCBITaxon_1298587,none +16.2617013,NCBITaxon:1298632,http://purl.obolibrary.org/obo/NCBITaxon_1298632,none +16.2617013,NCBITaxon:129914,http://purl.obolibrary.org/obo/NCBITaxon_129914,none +16.2617013,NCBITaxon:129953,http://purl.obolibrary.org/obo/NCBITaxon_129953,none +16.2617013,NCBITaxon:129956,http://purl.obolibrary.org/obo/NCBITaxon_129956,none +16.2617013,NCBITaxon:1301246,http://purl.obolibrary.org/obo/NCBITaxon_1301246,none +16.2617013,NCBITaxon:130327,http://purl.obolibrary.org/obo/NCBITaxon_130327,none +16.2617013,NCBITaxon:1303386,http://purl.obolibrary.org/obo/NCBITaxon_1303386,none +16.2617013,NCBITaxon:1307796,http://purl.obolibrary.org/obo/NCBITaxon_1307796,none +16.2617013,NCBITaxon:1312402,http://purl.obolibrary.org/obo/NCBITaxon_1312402,Xenacoelomorpha +16.2617013,NCBITaxon:1312863,http://purl.obolibrary.org/obo/NCBITaxon_1312863,none +16.2617013,NCBITaxon:13130,http://purl.obolibrary.org/obo/NCBITaxon_13130,none +16.2617013,NCBITaxon:13131,http://purl.obolibrary.org/obo/NCBITaxon_13131,none +16.2617013,NCBITaxon:131324,http://purl.obolibrary.org/obo/NCBITaxon_131324,none +16.2617013,NCBITaxon:1314973,http://purl.obolibrary.org/obo/NCBITaxon_1314973,none +16.2617013,NCBITaxon:13203,http://purl.obolibrary.org/obo/NCBITaxon_13203,Phlebotomus +16.2617013,NCBITaxon:132364,http://purl.obolibrary.org/obo/NCBITaxon_132364,none +16.2617013,NCBITaxon:1324128,http://purl.obolibrary.org/obo/NCBITaxon_1324128,none +16.2617013,NCBITaxon:13248,http://purl.obolibrary.org/obo/NCBITaxon_13248,none +16.2617013,NCBITaxon:13328,http://purl.obolibrary.org/obo/NCBITaxon_13328,none +16.2617013,NCBITaxon:1336861,http://purl.obolibrary.org/obo/NCBITaxon_1336861,none +16.2617013,NCBITaxon:1338664,http://purl.obolibrary.org/obo/NCBITaxon_1338664,none +16.2617013,NCBITaxon:13402,http://purl.obolibrary.org/obo/NCBITaxon_13402,none +16.2617013,NCBITaxon:1340535,http://purl.obolibrary.org/obo/NCBITaxon_1340535,none +16.2617013,NCBITaxon:1343473,http://purl.obolibrary.org/obo/NCBITaxon_1343473,none +16.2617013,NCBITaxon:13442,http://purl.obolibrary.org/obo/NCBITaxon_13442,none +16.2617013,NCBITaxon:1345656,http://purl.obolibrary.org/obo/NCBITaxon_1345656,none +16.2617013,NCBITaxon:13492,http://purl.obolibrary.org/obo/NCBITaxon_13492,none +16.2617013,NCBITaxon:13509,http://purl.obolibrary.org/obo/NCBITaxon_13509,none +16.2617013,NCBITaxon:135246,http://purl.obolibrary.org/obo/NCBITaxon_135246,none +16.2617013,NCBITaxon:13546,http://purl.obolibrary.org/obo/NCBITaxon_13546,none +16.2617013,NCBITaxon:135627,http://purl.obolibrary.org/obo/NCBITaxon_135627,none +16.2617013,NCBITaxon:13578,http://purl.obolibrary.org/obo/NCBITaxon_13578,none +16.2617013,NCBITaxon:13582,http://purl.obolibrary.org/obo/NCBITaxon_13582,none +16.2617013,NCBITaxon:135860,http://purl.obolibrary.org/obo/NCBITaxon_135860,none +16.2617013,NCBITaxon:13650,http://purl.obolibrary.org/obo/NCBITaxon_13650,none +16.2617013,NCBITaxon:13667,http://purl.obolibrary.org/obo/NCBITaxon_13667,none +16.2617013,NCBITaxon:13673,http://purl.obolibrary.org/obo/NCBITaxon_13673,none +16.2617013,NCBITaxon:13678,http://purl.obolibrary.org/obo/NCBITaxon_13678,none +16.2617013,NCBITaxon:13798,http://purl.obolibrary.org/obo/NCBITaxon_13798,none +16.2617013,NCBITaxon:1381464,http://purl.obolibrary.org/obo/NCBITaxon_1381464,none +16.2617013,NCBITaxon:1382279,http://purl.obolibrary.org/obo/NCBITaxon_1382279,none +16.2617013,NCBITaxon:1382300,http://purl.obolibrary.org/obo/NCBITaxon_1382300,none +16.2617013,NCBITaxon:1383205,http://purl.obolibrary.org/obo/NCBITaxon_1383205,none +16.2617013,NCBITaxon:1383888,http://purl.obolibrary.org/obo/NCBITaxon_1383888,none +16.2617013,NCBITaxon:1386090,http://purl.obolibrary.org/obo/NCBITaxon_1386090,none +16.2617013,NCBITaxon:138672,http://purl.obolibrary.org/obo/NCBITaxon_138672,none +16.2617013,NCBITaxon:1387354,http://purl.obolibrary.org/obo/NCBITaxon_1387354,none +16.2617013,NCBITaxon:138948,http://purl.obolibrary.org/obo/NCBITaxon_138948,Enterovirus A +16.2617013,NCBITaxon:139445,http://purl.obolibrary.org/obo/NCBITaxon_139445,none +16.2617013,NCBITaxon:1395180,http://purl.obolibrary.org/obo/NCBITaxon_1395180,none +16.2617013,NCBITaxon:1397286,http://purl.obolibrary.org/obo/NCBITaxon_1397286,none +16.2617013,NCBITaxon:1399327,http://purl.obolibrary.org/obo/NCBITaxon_1399327,none +16.2617013,NCBITaxon:1399768,http://purl.obolibrary.org/obo/NCBITaxon_1399768,Basidiobolomycetes +16.2617013,NCBITaxon:1405807,http://purl.obolibrary.org/obo/NCBITaxon_1405807,none +16.2617013,NCBITaxon:140590,http://purl.obolibrary.org/obo/NCBITaxon_140590,none +16.2617013,NCBITaxon:1406512,http://purl.obolibrary.org/obo/NCBITaxon_1406512,none +16.2617013,NCBITaxon:1406816,http://purl.obolibrary.org/obo/NCBITaxon_1406816,none +16.2617013,NCBITaxon:1406950,http://purl.obolibrary.org/obo/NCBITaxon_1406950,none +16.2617013,NCBITaxon:1407638,http://purl.obolibrary.org/obo/NCBITaxon_1407638,none +16.2617013,NCBITaxon:1408137,http://purl.obolibrary.org/obo/NCBITaxon_1408137,none +16.2617013,NCBITaxon:1414655,http://purl.obolibrary.org/obo/NCBITaxon_1414655,none +16.2617013,NCBITaxon:1416026,http://purl.obolibrary.org/obo/NCBITaxon_1416026,none +16.2617013,NCBITaxon:1421774,http://purl.obolibrary.org/obo/NCBITaxon_1421774,none +16.2617013,NCBITaxon:1425211,http://purl.obolibrary.org/obo/NCBITaxon_1425211,none +16.2617013,NCBITaxon:142700,http://purl.obolibrary.org/obo/NCBITaxon_142700,none +16.2617013,NCBITaxon:1428456,http://purl.obolibrary.org/obo/NCBITaxon_1428456,none +16.2617013,NCBITaxon:142931,http://purl.obolibrary.org/obo/NCBITaxon_142931,none +16.2617013,NCBITaxon:143067,http://purl.obolibrary.org/obo/NCBITaxon_143067,none +16.2617013,NCBITaxon:143461,http://purl.obolibrary.org/obo/NCBITaxon_143461,none +16.2617013,NCBITaxon:1437125,http://purl.obolibrary.org/obo/NCBITaxon_1437125,none +16.2617013,NCBITaxon:144004,http://purl.obolibrary.org/obo/NCBITaxon_144004,none +16.2617013,NCBITaxon:1445418,http://purl.obolibrary.org/obo/NCBITaxon_1445418,none +16.2617013,NCBITaxon:144740,http://purl.obolibrary.org/obo/NCBITaxon_144740,none +16.2617013,NCBITaxon:1453405,http://purl.obolibrary.org/obo/NCBITaxon_1453405,none +16.2617013,NCBITaxon:145410,http://purl.obolibrary.org/obo/NCBITaxon_145410,none +16.2617013,NCBITaxon:1457322,http://purl.obolibrary.org/obo/NCBITaxon_1457322,none +16.2617013,NCBITaxon:1459831,http://purl.obolibrary.org/obo/NCBITaxon_1459831,none +16.2617013,NCBITaxon:1461172,http://purl.obolibrary.org/obo/NCBITaxon_1461172,none +16.2617013,NCBITaxon:1463136,http://purl.obolibrary.org/obo/NCBITaxon_1463136,none +16.2617013,NCBITaxon:1463142,http://purl.obolibrary.org/obo/NCBITaxon_1463142,none +16.2617013,NCBITaxon:1463144,http://purl.obolibrary.org/obo/NCBITaxon_1463144,none +16.2617013,NCBITaxon:146672,http://purl.obolibrary.org/obo/NCBITaxon_146672,none +16.2617013,NCBITaxon:146761,http://purl.obolibrary.org/obo/NCBITaxon_146761,none +16.2617013,NCBITaxon:146762,http://purl.obolibrary.org/obo/NCBITaxon_146762,none +16.2617013,NCBITaxon:147099,http://purl.obolibrary.org/obo/NCBITaxon_147099,Acoelomorpha +16.2617013,NCBITaxon:1471047,http://purl.obolibrary.org/obo/NCBITaxon_1471047,none +16.2617013,NCBITaxon:1471048,http://purl.obolibrary.org/obo/NCBITaxon_1471048,none +16.2617013,NCBITaxon:147207,http://purl.obolibrary.org/obo/NCBITaxon_147207,none +16.2617013,NCBITaxon:147384,http://purl.obolibrary.org/obo/NCBITaxon_147384,none +16.2617013,NCBITaxon:1474807,http://purl.obolibrary.org/obo/NCBITaxon_1474807,none +16.2617013,NCBITaxon:147555,http://purl.obolibrary.org/obo/NCBITaxon_147555,none +16.2617013,NCBITaxon:1479613,http://purl.obolibrary.org/obo/NCBITaxon_1479613,none +16.2617013,NCBITaxon:148361,http://purl.obolibrary.org/obo/NCBITaxon_148361,none +16.2617013,NCBITaxon:1489838,http://purl.obolibrary.org/obo/NCBITaxon_1489838,Paracanthopterygii +16.2617013,NCBITaxon:1489841,http://purl.obolibrary.org/obo/NCBITaxon_1489841,Zeiogadaria +16.2617013,NCBITaxon:1489843,http://purl.obolibrary.org/obo/NCBITaxon_1489843,Gadariae +16.2617013,NCBITaxon:1489845,http://purl.obolibrary.org/obo/NCBITaxon_1489845,Gadoidei +16.2617013,NCBITaxon:1489884,http://purl.obolibrary.org/obo/NCBITaxon_1489884,none +16.2617013,NCBITaxon:1489888,http://purl.obolibrary.org/obo/NCBITaxon_1489888,none +16.2617013,NCBITaxon:1489905,http://purl.obolibrary.org/obo/NCBITaxon_1489905,none +16.2617013,NCBITaxon:1489930,http://purl.obolibrary.org/obo/NCBITaxon_1489930,none +16.2617013,NCBITaxon:1489935,http://purl.obolibrary.org/obo/NCBITaxon_1489935,none +16.2617013,NCBITaxon:1489939,http://purl.obolibrary.org/obo/NCBITaxon_1489939,none +16.2617013,NCBITaxon:149687,http://purl.obolibrary.org/obo/NCBITaxon_149687,none +16.2617013,NCBITaxon:1497434,http://purl.obolibrary.org/obo/NCBITaxon_1497434,none +16.2617013,NCBITaxon:1498428,http://purl.obolibrary.org/obo/NCBITaxon_1498428,none +16.2617013,NCBITaxon:1498477,http://purl.obolibrary.org/obo/NCBITaxon_1498477,none +16.2617013,NCBITaxon:150058,http://purl.obolibrary.org/obo/NCBITaxon_150058,none +16.2617013,NCBITaxon:150247,http://purl.obolibrary.org/obo/NCBITaxon_150247,none +16.2617013,NCBITaxon:1505530,http://purl.obolibrary.org/obo/NCBITaxon_1505530,none +16.2617013,NCBITaxon:1507809,http://purl.obolibrary.org/obo/NCBITaxon_1507809,none +16.2617013,NCBITaxon:1508712,http://purl.obolibrary.org/obo/NCBITaxon_1508712,none +16.2617013,NCBITaxon:151043,http://purl.obolibrary.org/obo/NCBITaxon_151043,none +16.2617013,NCBITaxon:151175,http://purl.obolibrary.org/obo/NCBITaxon_151175,none +16.2617013,NCBITaxon:1511778,http://purl.obolibrary.org/obo/NCBITaxon_1511778,none +16.2617013,NCBITaxon:1511838,http://purl.obolibrary.org/obo/NCBITaxon_1511838,none +16.2617013,NCBITaxon:1511909,http://purl.obolibrary.org/obo/NCBITaxon_1511909,none +16.2617013,NCBITaxon:1513294,http://purl.obolibrary.org/obo/NCBITaxon_1513294,none +16.2617013,NCBITaxon:1513489,http://purl.obolibrary.org/obo/NCBITaxon_1513489,none +16.2617013,NCBITaxon:1513520,http://purl.obolibrary.org/obo/NCBITaxon_1513520,none +16.2617013,NCBITaxon:1513525,http://purl.obolibrary.org/obo/NCBITaxon_1513525,none +16.2617013,NCBITaxon:1524893,http://purl.obolibrary.org/obo/NCBITaxon_1524893,none +16.2617013,NCBITaxon:1525212,http://purl.obolibrary.org/obo/NCBITaxon_1525212,none +16.2617013,NCBITaxon:15297,http://purl.obolibrary.org/obo/NCBITaxon_15297,none +16.2617013,NCBITaxon:153621,http://purl.obolibrary.org/obo/NCBITaxon_153621,none +16.2617013,NCBITaxon:1538097,http://purl.obolibrary.org/obo/NCBITaxon_1538097,none +16.2617013,NCBITaxon:1542744,http://purl.obolibrary.org/obo/NCBITaxon_1542744,none +16.2617013,NCBITaxon:1550890,http://purl.obolibrary.org/obo/NCBITaxon_1550890,none +16.2617013,NCBITaxon:156410,http://purl.obolibrary.org/obo/NCBITaxon_156410,none +16.2617013,NCBITaxon:156411,http://purl.obolibrary.org/obo/NCBITaxon_156411,none +16.2617013,NCBITaxon:157054,http://purl.obolibrary.org/obo/NCBITaxon_157054,none +16.2617013,NCBITaxon:157055,http://purl.obolibrary.org/obo/NCBITaxon_157055,none +16.2617013,NCBITaxon:157619,http://purl.obolibrary.org/obo/NCBITaxon_157619,none +16.2617013,NCBITaxon:1577788,http://purl.obolibrary.org/obo/NCBITaxon_1577788,none +16.2617013,NCBITaxon:1579336,http://purl.obolibrary.org/obo/NCBITaxon_1579336,none +16.2617013,NCBITaxon:158338,http://purl.obolibrary.org/obo/NCBITaxon_158338,none +16.2617013,NCBITaxon:158350,http://purl.obolibrary.org/obo/NCBITaxon_158350,none +16.2617013,NCBITaxon:1589887,http://purl.obolibrary.org/obo/NCBITaxon_1589887,none +16.2617013,NCBITaxon:1589896,http://purl.obolibrary.org/obo/NCBITaxon_1589896,none +16.2617013,NCBITaxon:159138,http://purl.obolibrary.org/obo/NCBITaxon_159138,none +16.2617013,NCBITaxon:159149,http://purl.obolibrary.org/obo/NCBITaxon_159149,none +16.2617013,NCBITaxon:160492,http://purl.obolibrary.org/obo/NCBITaxon_160492,none +16.2617013,NCBITaxon:160513,http://purl.obolibrary.org/obo/NCBITaxon_160513,none +16.2617013,NCBITaxon:160796,http://purl.obolibrary.org/obo/NCBITaxon_160796,none +16.2617013,NCBITaxon:160798,http://purl.obolibrary.org/obo/NCBITaxon_160798,none +16.2617013,NCBITaxon:161696,http://purl.obolibrary.org/obo/NCBITaxon_161696,none +16.2617013,NCBITaxon:162168,http://purl.obolibrary.org/obo/NCBITaxon_162168,none +16.2617013,NCBITaxon:1623289,http://purl.obolibrary.org/obo/NCBITaxon_1623289,none +16.2617013,NCBITaxon:16255,http://purl.obolibrary.org/obo/NCBITaxon_16255,none +16.2617013,NCBITaxon:162714,http://purl.obolibrary.org/obo/NCBITaxon_162714,none +16.2617013,NCBITaxon:162715,http://purl.obolibrary.org/obo/NCBITaxon_162715,none +16.2617013,NCBITaxon:163116,http://purl.obolibrary.org/obo/NCBITaxon_163116,none +16.2617013,NCBITaxon:163117,http://purl.obolibrary.org/obo/NCBITaxon_163117,none +16.2617013,NCBITaxon:16367,http://purl.obolibrary.org/obo/NCBITaxon_16367,none +16.2617013,NCBITaxon:16372,http://purl.obolibrary.org/obo/NCBITaxon_16372,none +16.2617013,NCBITaxon:163736,http://purl.obolibrary.org/obo/NCBITaxon_163736,none +16.2617013,NCBITaxon:163737,http://purl.obolibrary.org/obo/NCBITaxon_163737,none +16.2617013,NCBITaxon:163738,http://purl.obolibrary.org/obo/NCBITaxon_163738,none +16.2617013,NCBITaxon:1643947,http://purl.obolibrary.org/obo/NCBITaxon_1643947,none +16.2617013,NCBITaxon:1643949,http://purl.obolibrary.org/obo/NCBITaxon_1643949,none +16.2617013,NCBITaxon:1644055,http://purl.obolibrary.org/obo/NCBITaxon_1644055,none +16.2617013,NCBITaxon:164750,http://purl.obolibrary.org/obo/NCBITaxon_164750,none +16.2617013,NCBITaxon:1647988,http://purl.obolibrary.org/obo/NCBITaxon_1647988,none +16.2617013,NCBITaxon:1648028,http://purl.obolibrary.org/obo/NCBITaxon_1648028,none +16.2617013,NCBITaxon:165250,http://purl.obolibrary.org/obo/NCBITaxon_165250,none +16.2617013,NCBITaxon:1653398,http://purl.obolibrary.org/obo/NCBITaxon_1653398,none +16.2617013,NCBITaxon:1654822,http://purl.obolibrary.org/obo/NCBITaxon_1654822,none +16.2617013,NCBITaxon:166333,http://purl.obolibrary.org/obo/NCBITaxon_166333,none +16.2617013,NCBITaxon:166363,http://purl.obolibrary.org/obo/NCBITaxon_166363,none +16.2617013,NCBITaxon:166366,http://purl.obolibrary.org/obo/NCBITaxon_166366,none +16.2617013,NCBITaxon:1667020,http://purl.obolibrary.org/obo/NCBITaxon_1667020,none +16.2617013,NCBITaxon:166981,http://purl.obolibrary.org/obo/NCBITaxon_166981,none +16.2617013,NCBITaxon:167331,http://purl.obolibrary.org/obo/NCBITaxon_167331,none +16.2617013,NCBITaxon:16748,http://purl.obolibrary.org/obo/NCBITaxon_16748,none +16.2617013,NCBITaxon:168657,http://purl.obolibrary.org/obo/NCBITaxon_168657,none +16.2617013,NCBITaxon:169102,http://purl.obolibrary.org/obo/NCBITaxon_169102,none +16.2617013,NCBITaxon:169197,http://purl.obolibrary.org/obo/NCBITaxon_169197,none +16.2617013,NCBITaxon:169520,http://purl.obolibrary.org/obo/NCBITaxon_169520,none +16.2617013,NCBITaxon:169640,http://purl.obolibrary.org/obo/NCBITaxon_169640,none +16.2617013,NCBITaxon:169642,http://purl.obolibrary.org/obo/NCBITaxon_169642,none +16.2617013,NCBITaxon:169683,http://purl.obolibrary.org/obo/NCBITaxon_169683,none +16.2617013,NCBITaxon:1699106,http://purl.obolibrary.org/obo/NCBITaxon_1699106,none +16.2617013,NCBITaxon:169927,http://purl.obolibrary.org/obo/NCBITaxon_169927,none +16.2617013,NCBITaxon:170264,http://purl.obolibrary.org/obo/NCBITaxon_170264,none +16.2617013,NCBITaxon:170265,http://purl.obolibrary.org/obo/NCBITaxon_170265,none +16.2617013,NCBITaxon:170488,http://purl.obolibrary.org/obo/NCBITaxon_170488,none +16.2617013,NCBITaxon:170621,http://purl.obolibrary.org/obo/NCBITaxon_170621,none +16.2617013,NCBITaxon:1707744,http://purl.obolibrary.org/obo/NCBITaxon_1707744,none +16.2617013,NCBITaxon:171187,http://purl.obolibrary.org/obo/NCBITaxon_171187,none +16.2617013,NCBITaxon:171959,http://purl.obolibrary.org/obo/NCBITaxon_171959,none +16.2617013,NCBITaxon:173330,http://purl.obolibrary.org/obo/NCBITaxon_173330,none +16.2617013,NCBITaxon:173331,http://purl.obolibrary.org/obo/NCBITaxon_173331,none +16.2617013,NCBITaxon:174216,http://purl.obolibrary.org/obo/NCBITaxon_174216,none +16.2617013,NCBITaxon:174217,http://purl.obolibrary.org/obo/NCBITaxon_174217,none +16.2617013,NCBITaxon:1748295,http://purl.obolibrary.org/obo/NCBITaxon_1748295,none +16.2617013,NCBITaxon:175567,http://purl.obolibrary.org/obo/NCBITaxon_175567,none +16.2617013,NCBITaxon:176188,http://purl.obolibrary.org/obo/NCBITaxon_176188,none +16.2617013,NCBITaxon:177060,http://purl.obolibrary.org/obo/NCBITaxon_177060,none +16.2617013,NCBITaxon:177630,http://purl.obolibrary.org/obo/NCBITaxon_177630,none +16.2617013,NCBITaxon:177631,http://purl.obolibrary.org/obo/NCBITaxon_177631,none +16.2617013,NCBITaxon:177632,http://purl.obolibrary.org/obo/NCBITaxon_177632,none +16.2617013,NCBITaxon:1779148,http://purl.obolibrary.org/obo/NCBITaxon_1779148,none +16.2617013,NCBITaxon:1780203,http://purl.obolibrary.org/obo/NCBITaxon_1780203,none +16.2617013,NCBITaxon:178276,http://purl.obolibrary.org/obo/NCBITaxon_178276,none +16.2617013,NCBITaxon:179872,http://purl.obolibrary.org/obo/NCBITaxon_179872,none +16.2617013,NCBITaxon:180202,http://purl.obolibrary.org/obo/NCBITaxon_180202,none +16.2617013,NCBITaxon:180245,http://purl.obolibrary.org/obo/NCBITaxon_180245,none +16.2617013,NCBITaxon:180648,http://purl.obolibrary.org/obo/NCBITaxon_180648,none +16.2617013,NCBITaxon:181085,http://purl.obolibrary.org/obo/NCBITaxon_181085,none +16.2617013,NCBITaxon:1812776,http://purl.obolibrary.org/obo/NCBITaxon_1812776,none +16.2617013,NCBITaxon:183192,http://purl.obolibrary.org/obo/NCBITaxon_183192,none +16.2617013,NCBITaxon:183260,http://purl.obolibrary.org/obo/NCBITaxon_183260,none +16.2617013,NCBITaxon:183601,http://purl.obolibrary.org/obo/NCBITaxon_183601,none +16.2617013,NCBITaxon:183663,http://purl.obolibrary.org/obo/NCBITaxon_183663,none +16.2617013,NCBITaxon:183967,http://purl.obolibrary.org/obo/NCBITaxon_183967,none +16.2617013,NCBITaxon:183980,http://purl.obolibrary.org/obo/NCBITaxon_183980,none +16.2617013,NCBITaxon:185017,http://purl.obolibrary.org/obo/NCBITaxon_185017,none +16.2617013,NCBITaxon:185218,http://purl.obolibrary.org/obo/NCBITaxon_185218,none +16.2617013,NCBITaxon:185686,http://purl.obolibrary.org/obo/NCBITaxon_185686,none +16.2617013,NCBITaxon:185812,http://purl.obolibrary.org/obo/NCBITaxon_185812,none +16.2617013,NCBITaxon:186160,http://purl.obolibrary.org/obo/NCBITaxon_186160,none +16.2617013,NCBITaxon:186165,http://purl.obolibrary.org/obo/NCBITaxon_186165,none +16.2617013,NCBITaxon:186329,http://purl.obolibrary.org/obo/NCBITaxon_186329,none +16.2617013,NCBITaxon:186538,http://purl.obolibrary.org/obo/NCBITaxon_186538,Zaire ebolavirus +16.2617013,NCBITaxon:186616,http://purl.obolibrary.org/obo/NCBITaxon_186616,none +16.2617013,NCBITaxon:186637,http://purl.obolibrary.org/obo/NCBITaxon_186637,none +16.2617013,NCBITaxon:186747,http://purl.obolibrary.org/obo/NCBITaxon_186747,none +16.2617013,NCBITaxon:186765,http://purl.obolibrary.org/obo/NCBITaxon_186765,none +16.2617013,NCBITaxon:186770,http://purl.obolibrary.org/obo/NCBITaxon_186770,none +16.2617013,NCBITaxon:186774,http://purl.obolibrary.org/obo/NCBITaxon_186774,none +16.2617013,NCBITaxon:186823,http://purl.obolibrary.org/obo/NCBITaxon_186823,none +16.2617013,NCBITaxon:187217,http://purl.obolibrary.org/obo/NCBITaxon_187217,none +16.2617013,NCBITaxon:187857,http://purl.obolibrary.org/obo/NCBITaxon_187857,none +16.2617013,NCBITaxon:188281,http://purl.obolibrary.org/obo/NCBITaxon_188281,none +16.2617013,NCBITaxon:188282,http://purl.obolibrary.org/obo/NCBITaxon_188282,none +16.2617013,NCBITaxon:188708,http://purl.obolibrary.org/obo/NCBITaxon_188708,none +16.2617013,NCBITaxon:188709,http://purl.obolibrary.org/obo/NCBITaxon_188709,none +16.2617013,NCBITaxon:1892577,http://purl.obolibrary.org/obo/NCBITaxon_1892577,none +16.2617013,NCBITaxon:189819,http://purl.obolibrary.org/obo/NCBITaxon_189819,none +16.2617013,NCBITaxon:189831,http://purl.obolibrary.org/obo/NCBITaxon_189831,none +16.2617013,NCBITaxon:190503,http://purl.obolibrary.org/obo/NCBITaxon_190503,none +16.2617013,NCBITaxon:190729,http://purl.obolibrary.org/obo/NCBITaxon_190729,none +16.2617013,NCBITaxon:191045,http://purl.obolibrary.org/obo/NCBITaxon_191045,none +16.2617013,NCBITaxon:1910928,http://purl.obolibrary.org/obo/NCBITaxon_1910928,none +16.2617013,NCBITaxon:1910991,http://purl.obolibrary.org/obo/NCBITaxon_1910991,none +16.2617013,NCBITaxon:1911928,http://purl.obolibrary.org/obo/NCBITaxon_1911928,none +16.2617013,NCBITaxon:1914851,http://purl.obolibrary.org/obo/NCBITaxon_1914851,none +16.2617013,NCBITaxon:191580,http://purl.obolibrary.org/obo/NCBITaxon_191580,none +16.2617013,NCBITaxon:191582,http://purl.obolibrary.org/obo/NCBITaxon_191582,none +16.2617013,NCBITaxon:192023,http://purl.obolibrary.org/obo/NCBITaxon_192023,none +16.2617013,NCBITaxon:1921544,http://purl.obolibrary.org/obo/NCBITaxon_1921544,none +16.2617013,NCBITaxon:1921545,http://purl.obolibrary.org/obo/NCBITaxon_1921545,none +16.2617013,NCBITaxon:1921548,http://purl.obolibrary.org/obo/NCBITaxon_1921548,none +16.2617013,NCBITaxon:1921556,http://purl.obolibrary.org/obo/NCBITaxon_1921556,none +16.2617013,NCBITaxon:192931,http://purl.obolibrary.org/obo/NCBITaxon_192931,none +16.2617013,NCBITaxon:193122,http://purl.obolibrary.org/obo/NCBITaxon_193122,none +16.2617013,NCBITaxon:1933185,http://purl.obolibrary.org/obo/NCBITaxon_1933185,none +16.2617013,NCBITaxon:1933291,http://purl.obolibrary.org/obo/NCBITaxon_1933291,none +16.2617013,NCBITaxon:1937962,http://purl.obolibrary.org/obo/NCBITaxon_1937962,none +16.2617013,NCBITaxon:1937963,http://purl.obolibrary.org/obo/NCBITaxon_1937963,none +16.2617013,NCBITaxon:194287,http://purl.obolibrary.org/obo/NCBITaxon_194287,none +16.2617013,NCBITaxon:194560,http://purl.obolibrary.org/obo/NCBITaxon_194560,none +16.2617013,NCBITaxon:194699,http://purl.obolibrary.org/obo/NCBITaxon_194699,none +16.2617013,NCBITaxon:1963268,http://purl.obolibrary.org/obo/NCBITaxon_1963268,none +16.2617013,NCBITaxon:1965347,http://purl.obolibrary.org/obo/NCBITaxon_1965347,none +16.2617013,NCBITaxon:196691,http://purl.obolibrary.org/obo/NCBITaxon_196691,none +16.2617013,NCBITaxon:1968271,http://purl.obolibrary.org/obo/NCBITaxon_1968271,none +16.2617013,NCBITaxon:1968428,http://purl.obolibrary.org/obo/NCBITaxon_1968428,none +16.2617013,NCBITaxon:196895,http://purl.obolibrary.org/obo/NCBITaxon_196895,none +16.2617013,NCBITaxon:1972581,http://purl.obolibrary.org/obo/NCBITaxon_1972581,none +16.2617013,NCBITaxon:1972592,http://purl.obolibrary.org/obo/NCBITaxon_1972592,none +16.2617013,NCBITaxon:1972594,http://purl.obolibrary.org/obo/NCBITaxon_1972594,none +16.2617013,NCBITaxon:1972620,http://purl.obolibrary.org/obo/NCBITaxon_1972620,none +16.2617013,NCBITaxon:1972682,http://purl.obolibrary.org/obo/NCBITaxon_1972682,none +16.2617013,NCBITaxon:1972686,http://purl.obolibrary.org/obo/NCBITaxon_1972686,none +16.2617013,NCBITaxon:1977917,http://purl.obolibrary.org/obo/NCBITaxon_1977917,none +16.2617013,NCBITaxon:1977918,http://purl.obolibrary.org/obo/NCBITaxon_1977918,none +16.2617013,NCBITaxon:1977980,http://purl.obolibrary.org/obo/NCBITaxon_1977980,none +16.2617013,NCBITaxon:1977990,http://purl.obolibrary.org/obo/NCBITaxon_1977990,none +16.2617013,NCBITaxon:1978533,http://purl.obolibrary.org/obo/NCBITaxon_1978533,none +16.2617013,NCBITaxon:1978546,http://purl.obolibrary.org/obo/NCBITaxon_1978546,none +16.2617013,NCBITaxon:197864,http://purl.obolibrary.org/obo/NCBITaxon_197864,none +16.2617013,NCBITaxon:197905,http://purl.obolibrary.org/obo/NCBITaxon_197905,none +16.2617013,NCBITaxon:1979176,http://purl.obolibrary.org/obo/NCBITaxon_1979176,none +16.2617013,NCBITaxon:1980420,http://purl.obolibrary.org/obo/NCBITaxon_1980420,none +16.2617013,NCBITaxon:1980475,http://purl.obolibrary.org/obo/NCBITaxon_1980475,none +16.2617013,NCBITaxon:1980523,http://purl.obolibrary.org/obo/NCBITaxon_1980523,none +16.2617013,NCBITaxon:1980547,http://purl.obolibrary.org/obo/NCBITaxon_1980547,none +16.2617013,NCBITaxon:1985690,http://purl.obolibrary.org/obo/NCBITaxon_1985690,none +16.2617013,NCBITaxon:1985703,http://purl.obolibrary.org/obo/NCBITaxon_1985703,none +16.2617013,NCBITaxon:198600,http://purl.obolibrary.org/obo/NCBITaxon_198600,none +16.2617013,NCBITaxon:198635,http://purl.obolibrary.org/obo/NCBITaxon_198635,none +16.2617013,NCBITaxon:199219,http://purl.obolibrary.org/obo/NCBITaxon_199219,none +16.2617013,NCBITaxon:19952,http://purl.obolibrary.org/obo/NCBITaxon_19952,none +16.2617013,NCBITaxon:19955,http://purl.obolibrary.org/obo/NCBITaxon_19955,none +16.2617013,NCBITaxon:199587,http://purl.obolibrary.org/obo/NCBITaxon_199587,none +16.2617013,NCBITaxon:2005525,http://purl.obolibrary.org/obo/NCBITaxon_2005525,none +16.2617013,NCBITaxon:2006179,http://purl.obolibrary.org/obo/NCBITaxon_2006179,none +16.2617013,NCBITaxon:201862,http://purl.obolibrary.org/obo/NCBITaxon_201862,none +16.2617013,NCBITaxon:201955,http://purl.obolibrary.org/obo/NCBITaxon_201955,none +16.2617013,NCBITaxon:201956,http://purl.obolibrary.org/obo/NCBITaxon_201956,none +16.2617013,NCBITaxon:202568,http://purl.obolibrary.org/obo/NCBITaxon_202568,none +16.2617013,NCBITaxon:203143,http://purl.obolibrary.org/obo/NCBITaxon_203143,none +16.2617013,NCBITaxon:203494,http://purl.obolibrary.org/obo/NCBITaxon_203494,none +16.2617013,NCBITaxon:203557,http://purl.obolibrary.org/obo/NCBITaxon_203557,none +16.2617013,NCBITaxon:2044973,http://purl.obolibrary.org/obo/NCBITaxon_2044973,none +16.2617013,NCBITaxon:204509,http://purl.obolibrary.org/obo/NCBITaxon_204509,none +16.2617013,NCBITaxon:204737,http://purl.obolibrary.org/obo/NCBITaxon_204737,none +16.2617013,NCBITaxon:204813,http://purl.obolibrary.org/obo/NCBITaxon_204813,none +16.2617013,NCBITaxon:2049475,http://purl.obolibrary.org/obo/NCBITaxon_2049475,none +16.2617013,NCBITaxon:206379,http://purl.obolibrary.org/obo/NCBITaxon_206379,none +16.2617013,NCBITaxon:208964,http://purl.obolibrary.org/obo/NCBITaxon_208964,none +16.2617013,NCBITaxon:208973,http://purl.obolibrary.org/obo/NCBITaxon_208973,none +16.2617013,NCBITaxon:2094303,http://purl.obolibrary.org/obo/NCBITaxon_2094303,none +16.2617013,NCBITaxon:210586,http://purl.obolibrary.org/obo/NCBITaxon_210586,none +16.2617013,NCBITaxon:2109251,http://purl.obolibrary.org/obo/NCBITaxon_2109251,none +16.2617013,NCBITaxon:211184,http://purl.obolibrary.org/obo/NCBITaxon_211184,none +16.2617013,NCBITaxon:211185,http://purl.obolibrary.org/obo/NCBITaxon_211185,none +16.2617013,NCBITaxon:211186,http://purl.obolibrary.org/obo/NCBITaxon_211186,none +16.2617013,NCBITaxon:211187,http://purl.obolibrary.org/obo/NCBITaxon_211187,none +16.2617013,NCBITaxon:213118,http://purl.obolibrary.org/obo/NCBITaxon_213118,none +16.2617013,NCBITaxon:213545,http://purl.obolibrary.org/obo/NCBITaxon_213545,none +16.2617013,NCBITaxon:213546,http://purl.obolibrary.org/obo/NCBITaxon_213546,none +16.2617013,NCBITaxon:214093,http://purl.obolibrary.org/obo/NCBITaxon_214093,none +16.2617013,NCBITaxon:2146,http://purl.obolibrary.org/obo/NCBITaxon_2146,none +16.2617013,NCBITaxon:2147,http://purl.obolibrary.org/obo/NCBITaxon_2147,none +16.2617013,NCBITaxon:214832,http://purl.obolibrary.org/obo/NCBITaxon_214832,none +16.2617013,NCBITaxon:215387,http://purl.obolibrary.org/obo/NCBITaxon_215387,none +16.2617013,NCBITaxon:215407,http://purl.obolibrary.org/obo/NCBITaxon_215407,none +16.2617013,NCBITaxon:215681,http://purl.obolibrary.org/obo/NCBITaxon_215681,none +16.2617013,NCBITaxon:215751,http://purl.obolibrary.org/obo/NCBITaxon_215751,none +16.2617013,NCBITaxon:216015,http://purl.obolibrary.org/obo/NCBITaxon_216015,none +16.2617013,NCBITaxon:216278,http://purl.obolibrary.org/obo/NCBITaxon_216278,none +16.2617013,NCBITaxon:216291,http://purl.obolibrary.org/obo/NCBITaxon_216291,none +16.2617013,NCBITaxon:216701,http://purl.obolibrary.org/obo/NCBITaxon_216701,none +16.2617013,NCBITaxon:216720,http://purl.obolibrary.org/obo/NCBITaxon_216720,none +16.2617013,NCBITaxon:216794,http://purl.obolibrary.org/obo/NCBITaxon_216794,none +16.2617013,NCBITaxon:2169567,http://purl.obolibrary.org/obo/NCBITaxon_2169567,none +16.2617013,NCBITaxon:2169574,http://purl.obolibrary.org/obo/NCBITaxon_2169574,none +16.2617013,NCBITaxon:2169663,http://purl.obolibrary.org/obo/NCBITaxon_2169663,none +16.2617013,NCBITaxon:2169706,http://purl.obolibrary.org/obo/NCBITaxon_2169706,none +16.2617013,NCBITaxon:2170180,http://purl.obolibrary.org/obo/NCBITaxon_2170180,none +16.2617013,NCBITaxon:217037,http://purl.obolibrary.org/obo/NCBITaxon_217037,none +16.2617013,NCBITaxon:217042,http://purl.obolibrary.org/obo/NCBITaxon_217042,none +16.2617013,NCBITaxon:2171524,http://purl.obolibrary.org/obo/NCBITaxon_2171524,none +16.2617013,NCBITaxon:217615,http://purl.obolibrary.org/obo/NCBITaxon_217615,none +16.2617013,NCBITaxon:217992,http://purl.obolibrary.org/obo/NCBITaxon_217992,none +16.2617013,NCBITaxon:218469,http://purl.obolibrary.org/obo/NCBITaxon_218469,none +16.2617013,NCBITaxon:218792,http://purl.obolibrary.org/obo/NCBITaxon_218792,none +16.2617013,NCBITaxon:218793,http://purl.obolibrary.org/obo/NCBITaxon_218793,none +16.2617013,NCBITaxon:218825,http://purl.obolibrary.org/obo/NCBITaxon_218825,none +16.2617013,NCBITaxon:219134,http://purl.obolibrary.org/obo/NCBITaxon_219134,none +16.2617013,NCBITaxon:219171,http://purl.obolibrary.org/obo/NCBITaxon_219171,none +16.2617013,NCBITaxon:219592,http://purl.obolibrary.org/obo/NCBITaxon_219592,none +16.2617013,NCBITaxon:22002,http://purl.obolibrary.org/obo/NCBITaxon_22002,none +16.2617013,NCBITaxon:221067,http://purl.obolibrary.org/obo/NCBITaxon_221067,none +16.2617013,NCBITaxon:221128,http://purl.obolibrary.org/obo/NCBITaxon_221128,none +16.2617013,NCBITaxon:221262,http://purl.obolibrary.org/obo/NCBITaxon_221262,none +16.2617013,NCBITaxon:221541,http://purl.obolibrary.org/obo/NCBITaxon_221541,none +16.2617013,NCBITaxon:2218736,http://purl.obolibrary.org/obo/NCBITaxon_2218736,none +16.2617013,NCBITaxon:221904,http://purl.obolibrary.org/obo/NCBITaxon_221904,none +16.2617013,NCBITaxon:221912,http://purl.obolibrary.org/obo/NCBITaxon_221912,none +16.2617013,NCBITaxon:221913,http://purl.obolibrary.org/obo/NCBITaxon_221913,none +16.2617013,NCBITaxon:2219557,http://purl.obolibrary.org/obo/NCBITaxon_2219557,none +16.2617013,NCBITaxon:2222,http://purl.obolibrary.org/obo/NCBITaxon_2222,none +16.2617013,NCBITaxon:222444,http://purl.obolibrary.org/obo/NCBITaxon_222444,none +16.2617013,NCBITaxon:2231,http://purl.obolibrary.org/obo/NCBITaxon_2231,none +16.2617013,NCBITaxon:2232,http://purl.obolibrary.org/obo/NCBITaxon_2232,none +16.2617013,NCBITaxon:2233,http://purl.obolibrary.org/obo/NCBITaxon_2233,none +16.2617013,NCBITaxon:223305,http://purl.obolibrary.org/obo/NCBITaxon_223305,none +16.2617013,NCBITaxon:223316,http://purl.obolibrary.org/obo/NCBITaxon_223316,none +16.2617013,NCBITaxon:223317,http://purl.obolibrary.org/obo/NCBITaxon_223317,none +16.2617013,NCBITaxon:223321,http://purl.obolibrary.org/obo/NCBITaxon_223321,none +16.2617013,NCBITaxon:223337,http://purl.obolibrary.org/obo/NCBITaxon_223337,none +16.2617013,NCBITaxon:223345,http://purl.obolibrary.org/obo/NCBITaxon_223345,none +16.2617013,NCBITaxon:224583,http://purl.obolibrary.org/obo/NCBITaxon_224583,none +16.2617013,NCBITaxon:227247,http://purl.obolibrary.org/obo/NCBITaxon_227247,none +16.2617013,NCBITaxon:2283794,http://purl.obolibrary.org/obo/NCBITaxon_2283794,none +16.2617013,NCBITaxon:2283796,http://purl.obolibrary.org/obo/NCBITaxon_2283796,none +16.2617013,NCBITaxon:228648,http://purl.obolibrary.org/obo/NCBITaxon_228648,none +16.2617013,NCBITaxon:22868,http://purl.obolibrary.org/obo/NCBITaxon_22868,none +16.2617013,NCBITaxon:230006,http://purl.obolibrary.org/obo/NCBITaxon_230006,none +16.2617013,NCBITaxon:23005,http://purl.obolibrary.org/obo/NCBITaxon_23005,none +16.2617013,NCBITaxon:2301114,http://purl.obolibrary.org/obo/NCBITaxon_2301114,none +16.2617013,NCBITaxon:23012,http://purl.obolibrary.org/obo/NCBITaxon_23012,none +16.2617013,NCBITaxon:230228,http://purl.obolibrary.org/obo/NCBITaxon_230228,none +16.2617013,NCBITaxon:230233,http://purl.obolibrary.org/obo/NCBITaxon_230233,none +16.2617013,NCBITaxon:230234,http://purl.obolibrary.org/obo/NCBITaxon_230234,none +16.2617013,NCBITaxon:2315723,http://purl.obolibrary.org/obo/NCBITaxon_2315723,none +16.2617013,NCBITaxon:235882,http://purl.obolibrary.org/obo/NCBITaxon_235882,none +16.2617013,NCBITaxon:236940,http://purl.obolibrary.org/obo/NCBITaxon_236940,none +16.2617013,NCBITaxon:238884,http://purl.obolibrary.org/obo/NCBITaxon_238884,none +16.2617013,NCBITaxon:23945,http://purl.obolibrary.org/obo/NCBITaxon_23945,none +16.2617013,NCBITaxon:239934,http://purl.obolibrary.org/obo/NCBITaxon_239934,none +16.2617013,NCBITaxon:24,http://purl.obolibrary.org/obo/NCBITaxon_24,none +16.2617013,NCBITaxon:240865,http://purl.obolibrary.org/obo/NCBITaxon_240865,none +16.2617013,NCBITaxon:241625,http://purl.obolibrary.org/obo/NCBITaxon_241625,none +16.2617013,NCBITaxon:241804,http://purl.obolibrary.org/obo/NCBITaxon_241804,none +16.2617013,NCBITaxon:241840,http://purl.obolibrary.org/obo/NCBITaxon_241840,none +16.2617013,NCBITaxon:2419,http://purl.obolibrary.org/obo/NCBITaxon_2419,none +16.2617013,NCBITaxon:244319,http://purl.obolibrary.org/obo/NCBITaxon_244319,none +16.2617013,NCBITaxon:246392,http://purl.obolibrary.org/obo/NCBITaxon_246392,none +16.2617013,NCBITaxon:246878,http://purl.obolibrary.org/obo/NCBITaxon_246878,none +16.2617013,NCBITaxon:247085,http://purl.obolibrary.org/obo/NCBITaxon_247085,none +16.2617013,NCBITaxon:247297,http://purl.obolibrary.org/obo/NCBITaxon_247297,none +16.2617013,NCBITaxon:248797,http://purl.obolibrary.org/obo/NCBITaxon_248797,none +16.2617013,NCBITaxon:248798,http://purl.obolibrary.org/obo/NCBITaxon_248798,none +16.2617013,NCBITaxon:248799,http://purl.obolibrary.org/obo/NCBITaxon_248799,none +16.2617013,NCBITaxon:248909,http://purl.obolibrary.org/obo/NCBITaxon_248909,none +16.2617013,NCBITaxon:2496631,http://purl.obolibrary.org/obo/NCBITaxon_2496631,none +16.2617013,NCBITaxon:2501774,http://purl.obolibrary.org/obo/NCBITaxon_2501774,none +16.2617013,NCBITaxon:2508086,http://purl.obolibrary.org/obo/NCBITaxon_2508086,none +16.2617013,NCBITaxon:2509490,http://purl.obolibrary.org/obo/NCBITaxon_2509490,none +16.2617013,NCBITaxon:2509502,http://purl.obolibrary.org/obo/NCBITaxon_2509502,none +16.2617013,NCBITaxon:253701,http://purl.obolibrary.org/obo/NCBITaxon_253701,none +16.2617013,NCBITaxon:2546012,http://purl.obolibrary.org/obo/NCBITaxon_2546012,none +16.2617013,NCBITaxon:255255,http://purl.obolibrary.org/obo/NCBITaxon_255255,none +16.2617013,NCBITaxon:255587,http://purl.obolibrary.org/obo/NCBITaxon_255587,none +16.2617013,NCBITaxon:2560259,http://purl.obolibrary.org/obo/NCBITaxon_2560259,none +16.2617013,NCBITaxon:2560260,http://purl.obolibrary.org/obo/NCBITaxon_2560260,none +16.2617013,NCBITaxon:2560526,http://purl.obolibrary.org/obo/NCBITaxon_2560526,Human orthorubulavirus 4 +16.2617013,NCBITaxon:2560533,http://purl.obolibrary.org/obo/NCBITaxon_2560533,none +16.2617013,NCBITaxon:2560716,http://purl.obolibrary.org/obo/NCBITaxon_2560716,none +16.2617013,NCBITaxon:2560728,http://purl.obolibrary.org/obo/NCBITaxon_2560728,none +16.2617013,NCBITaxon:257463,http://purl.obolibrary.org/obo/NCBITaxon_257463,none +16.2617013,NCBITaxon:257464,http://purl.obolibrary.org/obo/NCBITaxon_257464,none +16.2617013,NCBITaxon:260378,http://purl.obolibrary.org/obo/NCBITaxon_260378,none +16.2617013,NCBITaxon:2606521,http://purl.obolibrary.org/obo/NCBITaxon_2606521,none +16.2617013,NCBITaxon:2608109,http://purl.obolibrary.org/obo/NCBITaxon_2608109,none +16.2617013,NCBITaxon:2608131,http://purl.obolibrary.org/obo/NCBITaxon_2608131,none +16.2617013,NCBITaxon:260895,http://purl.obolibrary.org/obo/NCBITaxon_260895,none +16.2617013,NCBITaxon:26336,http://purl.obolibrary.org/obo/NCBITaxon_26336,none +16.2617013,NCBITaxon:263363,http://purl.obolibrary.org/obo/NCBITaxon_263363,none +16.2617013,NCBITaxon:263793,http://purl.obolibrary.org/obo/NCBITaxon_263793,none +16.2617013,NCBITaxon:263815,http://purl.obolibrary.org/obo/NCBITaxon_263815,none +16.2617013,NCBITaxon:2638247,http://purl.obolibrary.org/obo/NCBITaxon_2638247,none +16.2617013,NCBITaxon:2639525,http://purl.obolibrary.org/obo/NCBITaxon_2639525,none +16.2617013,NCBITaxon:2643579,http://purl.obolibrary.org/obo/NCBITaxon_2643579,none +16.2617013,NCBITaxon:264540,http://purl.obolibrary.org/obo/NCBITaxon_264540,none +16.2617013,NCBITaxon:264598,http://purl.obolibrary.org/obo/NCBITaxon_264598,none +16.2617013,NCBITaxon:264599,http://purl.obolibrary.org/obo/NCBITaxon_264599,none +16.2617013,NCBITaxon:265877,http://purl.obolibrary.org/obo/NCBITaxon_265877,none +16.2617013,NCBITaxon:2681634,http://purl.obolibrary.org/obo/NCBITaxon_2681634,none +16.2617013,NCBITaxon:2683659,http://purl.obolibrary.org/obo/NCBITaxon_2683659,none +16.2617013,NCBITaxon:26867,http://purl.obolibrary.org/obo/NCBITaxon_26867,none +16.2617013,NCBITaxon:268883,http://purl.obolibrary.org/obo/NCBITaxon_268883,none +16.2617013,NCBITaxon:2689243,http://purl.obolibrary.org/obo/NCBITaxon_2689243,none +16.2617013,NCBITaxon:269277,http://purl.obolibrary.org/obo/NCBITaxon_269277,none +16.2617013,NCBITaxon:269306,http://purl.obolibrary.org/obo/NCBITaxon_269306,none +16.2617013,NCBITaxon:2701,http://purl.obolibrary.org/obo/NCBITaxon_2701,Gardnerella +16.2617013,NCBITaxon:270145,http://purl.obolibrary.org/obo/NCBITaxon_270145,none +16.2617013,NCBITaxon:270161,http://purl.obolibrary.org/obo/NCBITaxon_270161,none +16.2617013,NCBITaxon:270255,http://purl.obolibrary.org/obo/NCBITaxon_270255,none +16.2617013,NCBITaxon:270530,http://purl.obolibrary.org/obo/NCBITaxon_270530,none +16.2617013,NCBITaxon:271509,http://purl.obolibrary.org/obo/NCBITaxon_271509,none +16.2617013,NCBITaxon:271514,http://purl.obolibrary.org/obo/NCBITaxon_271514,none +16.2617013,NCBITaxon:272199,http://purl.obolibrary.org/obo/NCBITaxon_272199,none +16.2617013,NCBITaxon:2724078,http://purl.obolibrary.org/obo/NCBITaxon_2724078,none +16.2617013,NCBITaxon:2731651,http://purl.obolibrary.org/obo/NCBITaxon_2731651,none +16.2617013,NCBITaxon:2731691,http://purl.obolibrary.org/obo/NCBITaxon_2731691,none +16.2617013,NCBITaxon:27319,http://purl.obolibrary.org/obo/NCBITaxon_27319,none +16.2617013,NCBITaxon:2731990,http://purl.obolibrary.org/obo/NCBITaxon_2731990,none +16.2617013,NCBITaxon:2732535,http://purl.obolibrary.org/obo/NCBITaxon_2732535,none +16.2617013,NCBITaxon:2732537,http://purl.obolibrary.org/obo/NCBITaxon_2732537,none +16.2617013,NCBITaxon:2732891,http://purl.obolibrary.org/obo/NCBITaxon_2732891,none +16.2617013,NCBITaxon:2732930,http://purl.obolibrary.org/obo/NCBITaxon_2732930,none +16.2617013,NCBITaxon:2733183,http://purl.obolibrary.org/obo/NCBITaxon_2733183,none +16.2617013,NCBITaxon:2733252,http://purl.obolibrary.org/obo/NCBITaxon_2733252,none +16.2617013,NCBITaxon:2733254,http://purl.obolibrary.org/obo/NCBITaxon_2733254,none +16.2617013,NCBITaxon:273343,http://purl.obolibrary.org/obo/NCBITaxon_273343,none +16.2617013,NCBITaxon:2733591,http://purl.obolibrary.org/obo/NCBITaxon_2733591,none +16.2617013,NCBITaxon:2734383,http://purl.obolibrary.org/obo/NCBITaxon_2734383,none +16.2617013,NCBITaxon:2734393,http://purl.obolibrary.org/obo/NCBITaxon_2734393,none +16.2617013,NCBITaxon:2734426,http://purl.obolibrary.org/obo/NCBITaxon_2734426,none +16.2617013,NCBITaxon:2734448,http://purl.obolibrary.org/obo/NCBITaxon_2734448,none +16.2617013,NCBITaxon:2734488,http://purl.obolibrary.org/obo/NCBITaxon_2734488,none +16.2617013,NCBITaxon:2734493,http://purl.obolibrary.org/obo/NCBITaxon_2734493,none +16.2617013,NCBITaxon:2734602,http://purl.obolibrary.org/obo/NCBITaxon_2734602,none +16.2617013,NCBITaxon:273794,http://purl.obolibrary.org/obo/NCBITaxon_273794,none +16.2617013,NCBITaxon:27386,http://purl.obolibrary.org/obo/NCBITaxon_27386,none +16.2617013,NCBITaxon:273877,http://purl.obolibrary.org/obo/NCBITaxon_273877,none +16.2617013,NCBITaxon:27420,http://purl.obolibrary.org/obo/NCBITaxon_27420,none +16.2617013,NCBITaxon:2743710,http://purl.obolibrary.org/obo/NCBITaxon_2743710,none +16.2617013,NCBITaxon:2743745,http://purl.obolibrary.org/obo/NCBITaxon_2743745,none +16.2617013,NCBITaxon:2743747,http://purl.obolibrary.org/obo/NCBITaxon_2743747,none +16.2617013,NCBITaxon:2758482,http://purl.obolibrary.org/obo/NCBITaxon_2758482,none +16.2617013,NCBITaxon:2766773,http://purl.obolibrary.org/obo/NCBITaxon_2766773,none +16.2617013,NCBITaxon:2774,http://purl.obolibrary.org/obo/NCBITaxon_2774,none +16.2617013,NCBITaxon:27791,http://purl.obolibrary.org/obo/NCBITaxon_27791,none +16.2617013,NCBITaxon:2787994,http://purl.obolibrary.org/obo/NCBITaxon_2787994,none +16.2617013,NCBITaxon:279540,http://purl.obolibrary.org/obo/NCBITaxon_279540,none +16.2617013,NCBITaxon:2802,http://purl.obolibrary.org/obo/NCBITaxon_2802,none +16.2617013,NCBITaxon:2807454,http://purl.obolibrary.org/obo/NCBITaxon_2807454,none +16.2617013,NCBITaxon:282279,http://purl.obolibrary.org/obo/NCBITaxon_282279,none +16.2617013,NCBITaxon:2822796,http://purl.obolibrary.org/obo/NCBITaxon_2822796,none +16.2617013,NCBITaxon:282280,http://purl.obolibrary.org/obo/NCBITaxon_282280,none +16.2617013,NCBITaxon:2830,http://purl.obolibrary.org/obo/NCBITaxon_2830,none +16.2617013,NCBITaxon:283373,http://purl.obolibrary.org/obo/NCBITaxon_283373,none +16.2617013,NCBITaxon:28348,http://purl.obolibrary.org/obo/NCBITaxon_28348,none +16.2617013,NCBITaxon:2835904,http://purl.obolibrary.org/obo/NCBITaxon_2835904,none +16.2617013,NCBITaxon:2835922,http://purl.obolibrary.org/obo/NCBITaxon_2835922,none +16.2617013,NCBITaxon:2836338,http://purl.obolibrary.org/obo/NCBITaxon_2836338,none +16.2617013,NCBITaxon:2836352,http://purl.obolibrary.org/obo/NCBITaxon_2836352,none +16.2617013,NCBITaxon:2842329,http://purl.obolibrary.org/obo/NCBITaxon_2842329,none +16.2617013,NCBITaxon:2842412,http://purl.obolibrary.org/obo/NCBITaxon_2842412,none +16.2617013,NCBITaxon:2843016,http://purl.obolibrary.org/obo/NCBITaxon_2843016,none +16.2617013,NCBITaxon:284593,http://purl.obolibrary.org/obo/NCBITaxon_284593,none +16.2617013,NCBITaxon:28568,http://purl.obolibrary.org/obo/NCBITaxon_28568,Trichocomaceae +16.2617013,NCBITaxon:286151,http://purl.obolibrary.org/obo/NCBITaxon_286151,none +16.2617013,NCBITaxon:286540,http://purl.obolibrary.org/obo/NCBITaxon_286540,none +16.2617013,NCBITaxon:286710,http://purl.obolibrary.org/obo/NCBITaxon_286710,none +16.2617013,NCBITaxon:286945,http://purl.obolibrary.org/obo/NCBITaxon_286945,none +16.2617013,NCBITaxon:28742,http://purl.obolibrary.org/obo/NCBITaxon_28742,none +16.2617013,NCBITaxon:28756,http://purl.obolibrary.org/obo/NCBITaxon_28756,Fundulidae +16.2617013,NCBITaxon:2877,http://purl.obolibrary.org/obo/NCBITaxon_2877,none +16.2617013,NCBITaxon:28771,http://purl.obolibrary.org/obo/NCBITaxon_28771,none +16.2617013,NCBITaxon:287717,http://purl.obolibrary.org/obo/NCBITaxon_287717,none +16.2617013,NCBITaxon:28774,http://purl.obolibrary.org/obo/NCBITaxon_28774,none +16.2617013,NCBITaxon:2878,http://purl.obolibrary.org/obo/NCBITaxon_2878,none +16.2617013,NCBITaxon:2879,http://purl.obolibrary.org/obo/NCBITaxon_2879,none +16.2617013,NCBITaxon:288517,http://purl.obolibrary.org/obo/NCBITaxon_288517,none +16.2617013,NCBITaxon:288519,http://purl.obolibrary.org/obo/NCBITaxon_288519,none +16.2617013,NCBITaxon:288555,http://purl.obolibrary.org/obo/NCBITaxon_288555,none +16.2617013,NCBITaxon:28908,http://purl.obolibrary.org/obo/NCBITaxon_28908,none +16.2617013,NCBITaxon:290030,http://purl.obolibrary.org/obo/NCBITaxon_290030,none +16.2617013,NCBITaxon:29006,http://purl.obolibrary.org/obo/NCBITaxon_29006,none +16.2617013,NCBITaxon:29040,http://purl.obolibrary.org/obo/NCBITaxon_29040,none +16.2617013,NCBITaxon:29051,http://purl.obolibrary.org/obo/NCBITaxon_29051,none +16.2617013,NCBITaxon:290650,http://purl.obolibrary.org/obo/NCBITaxon_290650,none +16.2617013,NCBITaxon:29092,http://purl.obolibrary.org/obo/NCBITaxon_29092,none +16.2617013,NCBITaxon:29095,http://purl.obolibrary.org/obo/NCBITaxon_29095,none +16.2617013,NCBITaxon:290983,http://purl.obolibrary.org/obo/NCBITaxon_290983,none +16.2617013,NCBITaxon:2910,http://purl.obolibrary.org/obo/NCBITaxon_2910,none +16.2617013,NCBITaxon:292638,http://purl.obolibrary.org/obo/NCBITaxon_292638,none +16.2617013,NCBITaxon:293502,http://purl.obolibrary.org/obo/NCBITaxon_293502,none +16.2617013,NCBITaxon:293506,http://purl.obolibrary.org/obo/NCBITaxon_293506,none +16.2617013,NCBITaxon:294789,http://purl.obolibrary.org/obo/NCBITaxon_294789,none +16.2617013,NCBITaxon:29585,http://purl.obolibrary.org/obo/NCBITaxon_29585,none +16.2617013,NCBITaxon:297313,http://purl.obolibrary.org/obo/NCBITaxon_297313,none +16.2617013,NCBITaxon:298338,http://purl.obolibrary.org/obo/NCBITaxon_298338,none +16.2617013,NCBITaxon:299115,http://purl.obolibrary.org/obo/NCBITaxon_299115,none +16.2617013,NCBITaxon:30025,http://purl.obolibrary.org/obo/NCBITaxon_30025,none +16.2617013,NCBITaxon:30030,http://purl.obolibrary.org/obo/NCBITaxon_30030,none +16.2617013,NCBITaxon:30040,http://purl.obolibrary.org/obo/NCBITaxon_30040,none +16.2617013,NCBITaxon:300414,http://purl.obolibrary.org/obo/NCBITaxon_300414,none +16.2617013,NCBITaxon:30063,http://purl.obolibrary.org/obo/NCBITaxon_30063,none +16.2617013,NCBITaxon:3015,http://purl.obolibrary.org/obo/NCBITaxon_3015,none +16.2617013,NCBITaxon:301865,http://purl.obolibrary.org/obo/NCBITaxon_301865,none +16.2617013,NCBITaxon:301914,http://purl.obolibrary.org/obo/NCBITaxon_301914,none +16.2617013,NCBITaxon:30300,http://purl.obolibrary.org/obo/NCBITaxon_30300,none +16.2617013,NCBITaxon:303123,http://purl.obolibrary.org/obo/NCBITaxon_303123,none +16.2617013,NCBITaxon:303182,http://purl.obolibrary.org/obo/NCBITaxon_303182,none +16.2617013,NCBITaxon:30348,http://purl.obolibrary.org/obo/NCBITaxon_30348,none +16.2617013,NCBITaxon:3043,http://purl.obolibrary.org/obo/NCBITaxon_3043,none +16.2617013,NCBITaxon:3044,http://purl.obolibrary.org/obo/NCBITaxon_3044,none +16.2617013,NCBITaxon:304574,http://purl.obolibrary.org/obo/NCBITaxon_304574,none +16.2617013,NCBITaxon:30475,http://purl.obolibrary.org/obo/NCBITaxon_30475,none +16.2617013,NCBITaxon:30577,http://purl.obolibrary.org/obo/NCBITaxon_30577,Erinaceinae +16.2617013,NCBITaxon:30635,http://purl.obolibrary.org/obo/NCBITaxon_30635,none +16.2617013,NCBITaxon:30650,http://purl.obolibrary.org/obo/NCBITaxon_30650,none +16.2617013,NCBITaxon:307110,http://purl.obolibrary.org/obo/NCBITaxon_307110,none +16.2617013,NCBITaxon:30725,http://purl.obolibrary.org/obo/NCBITaxon_30725,none +16.2617013,NCBITaxon:307266,http://purl.obolibrary.org/obo/NCBITaxon_307266,none +16.2617013,NCBITaxon:30768,http://purl.obolibrary.org/obo/NCBITaxon_30768,none +16.2617013,NCBITaxon:30870,http://purl.obolibrary.org/obo/NCBITaxon_30870,none +16.2617013,NCBITaxon:308714,http://purl.obolibrary.org/obo/NCBITaxon_308714,none +16.2617013,NCBITaxon:308912,http://purl.obolibrary.org/obo/NCBITaxon_308912,none +16.2617013,NCBITaxon:30907,http://purl.obolibrary.org/obo/NCBITaxon_30907,none +16.2617013,NCBITaxon:30908,http://purl.obolibrary.org/obo/NCBITaxon_30908,none +16.2617013,NCBITaxon:30989,http://purl.obolibrary.org/obo/NCBITaxon_30989,none +16.2617013,NCBITaxon:31001,http://purl.obolibrary.org/obo/NCBITaxon_31001,none +16.2617013,NCBITaxon:31013,http://purl.obolibrary.org/obo/NCBITaxon_31013,none +16.2617013,NCBITaxon:31029,http://purl.obolibrary.org/obo/NCBITaxon_31029,none +16.2617013,NCBITaxon:311316,http://purl.obolibrary.org/obo/NCBITaxon_311316,none +16.2617013,NCBITaxon:312306,http://purl.obolibrary.org/obo/NCBITaxon_312306,none +16.2617013,NCBITaxon:312346,http://purl.obolibrary.org/obo/NCBITaxon_312346,none +16.2617013,NCBITaxon:31256,http://purl.obolibrary.org/obo/NCBITaxon_31256,none +16.2617013,NCBITaxon:31257,http://purl.obolibrary.org/obo/NCBITaxon_31257,none +16.2617013,NCBITaxon:31265,http://purl.obolibrary.org/obo/NCBITaxon_31265,none +16.2617013,NCBITaxon:3127,http://purl.obolibrary.org/obo/NCBITaxon_3127,none +16.2617013,NCBITaxon:31377,http://purl.obolibrary.org/obo/NCBITaxon_31377,none +16.2617013,NCBITaxon:3146,http://purl.obolibrary.org/obo/NCBITaxon_3146,none +16.2617013,NCBITaxon:3152,http://purl.obolibrary.org/obo/NCBITaxon_3152,none +16.2617013,NCBITaxon:31547,http://purl.obolibrary.org/obo/NCBITaxon_31547,none +16.2617013,NCBITaxon:31563,http://purl.obolibrary.org/obo/NCBITaxon_31563,none +16.2617013,NCBITaxon:315754,http://purl.obolibrary.org/obo/NCBITaxon_315754,none +16.2617013,NCBITaxon:316407,http://purl.obolibrary.org/obo/NCBITaxon_316407,none +16.2617013,NCBITaxon:317027,http://purl.obolibrary.org/obo/NCBITaxon_317027,none +16.2617013,NCBITaxon:317312,http://purl.obolibrary.org/obo/NCBITaxon_317312,none +16.2617013,NCBITaxon:31749,http://purl.obolibrary.org/obo/NCBITaxon_31749,none +16.2617013,NCBITaxon:318493,http://purl.obolibrary.org/obo/NCBITaxon_318493,none +16.2617013,NCBITaxon:318516,http://purl.obolibrary.org/obo/NCBITaxon_318516,none +16.2617013,NCBITaxon:318530,http://purl.obolibrary.org/obo/NCBITaxon_318530,none +16.2617013,NCBITaxon:318531,http://purl.obolibrary.org/obo/NCBITaxon_318531,none +16.2617013,NCBITaxon:318834,http://purl.obolibrary.org/obo/NCBITaxon_318834,none +16.2617013,NCBITaxon:318842,http://purl.obolibrary.org/obo/NCBITaxon_318842,none +16.2617013,NCBITaxon:318843,http://purl.obolibrary.org/obo/NCBITaxon_318843,none +16.2617013,NCBITaxon:318850,http://purl.obolibrary.org/obo/NCBITaxon_318850,none +16.2617013,NCBITaxon:319460,http://purl.obolibrary.org/obo/NCBITaxon_319460,none +16.2617013,NCBITaxon:3196,http://purl.obolibrary.org/obo/NCBITaxon_3196,none +16.2617013,NCBITaxon:319807,http://purl.obolibrary.org/obo/NCBITaxon_319807,none +16.2617013,NCBITaxon:319808,http://purl.obolibrary.org/obo/NCBITaxon_319808,none +16.2617013,NCBITaxon:32069,http://purl.obolibrary.org/obo/NCBITaxon_32069,none +16.2617013,NCBITaxon:32201,http://purl.obolibrary.org/obo/NCBITaxon_32201,none +16.2617013,NCBITaxon:32260,http://purl.obolibrary.org/obo/NCBITaxon_32260,none +16.2617013,NCBITaxon:32300,http://purl.obolibrary.org/obo/NCBITaxon_32300,none +16.2617013,NCBITaxon:323105,http://purl.obolibrary.org/obo/NCBITaxon_323105,none +16.2617013,NCBITaxon:323118,http://purl.obolibrary.org/obo/NCBITaxon_323118,none +16.2617013,NCBITaxon:32314,http://purl.obolibrary.org/obo/NCBITaxon_32314,none +16.2617013,NCBITaxon:323368,http://purl.obolibrary.org/obo/NCBITaxon_323368,none +16.2617013,NCBITaxon:323370,http://purl.obolibrary.org/obo/NCBITaxon_323370,none +16.2617013,NCBITaxon:32350,http://purl.obolibrary.org/obo/NCBITaxon_32350,none +16.2617013,NCBITaxon:323737,http://purl.obolibrary.org/obo/NCBITaxon_323737,none +16.2617013,NCBITaxon:32380,http://purl.obolibrary.org/obo/NCBITaxon_32380,none +16.2617013,NCBITaxon:3251,http://purl.obolibrary.org/obo/NCBITaxon_3251,none +16.2617013,NCBITaxon:325284,http://purl.obolibrary.org/obo/NCBITaxon_325284,none +16.2617013,NCBITaxon:325294,http://purl.obolibrary.org/obo/NCBITaxon_325294,none +16.2617013,NCBITaxon:32622,http://purl.obolibrary.org/obo/NCBITaxon_32622,none +16.2617013,NCBITaxon:3268,http://purl.obolibrary.org/obo/NCBITaxon_3268,none +16.2617013,NCBITaxon:327108,http://purl.obolibrary.org/obo/NCBITaxon_327108,none +16.2617013,NCBITaxon:328670,http://purl.obolibrary.org/obo/NCBITaxon_328670,none +16.2617013,NCBITaxon:330383,http://purl.obolibrary.org/obo/NCBITaxon_330383,none +16.2617013,NCBITaxon:33194,http://purl.obolibrary.org/obo/NCBITaxon_33194,none +16.2617013,NCBITaxon:332179,http://purl.obolibrary.org/obo/NCBITaxon_332179,none +16.2617013,NCBITaxon:332471,http://purl.obolibrary.org/obo/NCBITaxon_332471,none +16.2617013,NCBITaxon:33260,http://purl.obolibrary.org/obo/NCBITaxon_33260,none +16.2617013,NCBITaxon:332672,http://purl.obolibrary.org/obo/NCBITaxon_332672,none +16.2617013,NCBITaxon:3328,http://purl.obolibrary.org/obo/NCBITaxon_3328,none +16.2617013,NCBITaxon:333293,http://purl.obolibrary.org/obo/NCBITaxon_333293,none +16.2617013,NCBITaxon:333340,http://purl.obolibrary.org/obo/NCBITaxon_333340,none +16.2617013,NCBITaxon:333348,http://purl.obolibrary.org/obo/NCBITaxon_333348,none +16.2617013,NCBITaxon:33358,http://purl.obolibrary.org/obo/NCBITaxon_33358,none +16.2617013,NCBITaxon:333762,http://purl.obolibrary.org/obo/NCBITaxon_333762,none +16.2617013,NCBITaxon:333968,http://purl.obolibrary.org/obo/NCBITaxon_333968,none +16.2617013,NCBITaxon:334207,http://purl.obolibrary.org/obo/NCBITaxon_334207,none +16.2617013,NCBITaxon:334521,http://purl.obolibrary.org/obo/NCBITaxon_334521,none +16.2617013,NCBITaxon:3347,http://purl.obolibrary.org/obo/NCBITaxon_3347,none +16.2617013,NCBITaxon:334899,http://purl.obolibrary.org/obo/NCBITaxon_334899,none +16.2617013,NCBITaxon:335795,http://purl.obolibrary.org/obo/NCBITaxon_335795,none +16.2617013,NCBITaxon:336487,http://purl.obolibrary.org/obo/NCBITaxon_336487,none +16.2617013,NCBITaxon:33651,http://purl.obolibrary.org/obo/NCBITaxon_33651,none +16.2617013,NCBITaxon:33652,http://purl.obolibrary.org/obo/NCBITaxon_33652,none +16.2617013,NCBITaxon:336780,http://purl.obolibrary.org/obo/NCBITaxon_336780,none +16.2617013,NCBITaxon:336987,http://purl.obolibrary.org/obo/NCBITaxon_336987,none +16.2617013,NCBITaxon:337823,http://purl.obolibrary.org/obo/NCBITaxon_337823,none +16.2617013,NCBITaxon:337826,http://purl.obolibrary.org/obo/NCBITaxon_337826,none +16.2617013,NCBITaxon:33831,http://purl.obolibrary.org/obo/NCBITaxon_33831,none +16.2617013,NCBITaxon:338474,http://purl.obolibrary.org/obo/NCBITaxon_338474,none +16.2617013,NCBITaxon:33849,http://purl.obolibrary.org/obo/NCBITaxon_33849,none +16.2617013,NCBITaxon:33850,http://purl.obolibrary.org/obo/NCBITaxon_33850,none +16.2617013,NCBITaxon:33882,http://purl.obolibrary.org/obo/NCBITaxon_33882,none +16.2617013,NCBITaxon:33993,http://purl.obolibrary.org/obo/NCBITaxon_33993,Neorickettsia +16.2617013,NCBITaxon:340016,http://purl.obolibrary.org/obo/NCBITaxon_340016,none +16.2617013,NCBITaxon:340332,http://purl.obolibrary.org/obo/NCBITaxon_340332,none +16.2617013,NCBITaxon:34067,http://purl.obolibrary.org/obo/NCBITaxon_34067,none +16.2617013,NCBITaxon:341067,http://purl.obolibrary.org/obo/NCBITaxon_341067,none +16.2617013,NCBITaxon:341113,http://purl.obolibrary.org/obo/NCBITaxon_341113,none +16.2617013,NCBITaxon:3427,http://purl.obolibrary.org/obo/NCBITaxon_3427,none +16.2617013,NCBITaxon:343463,http://purl.obolibrary.org/obo/NCBITaxon_343463,none +16.2617013,NCBITaxon:34392,http://purl.obolibrary.org/obo/NCBITaxon_34392,none +16.2617013,NCBITaxon:3441,http://purl.obolibrary.org/obo/NCBITaxon_3441,none +16.2617013,NCBITaxon:345195,http://purl.obolibrary.org/obo/NCBITaxon_345195,none +16.2617013,NCBITaxon:345199,http://purl.obolibrary.org/obo/NCBITaxon_345199,none +16.2617013,NCBITaxon:345203,http://purl.obolibrary.org/obo/NCBITaxon_345203,none +16.2617013,NCBITaxon:346174,http://purl.obolibrary.org/obo/NCBITaxon_346174,none +16.2617013,NCBITaxon:3462,http://purl.obolibrary.org/obo/NCBITaxon_3462,none +16.2617013,NCBITaxon:3463,http://purl.obolibrary.org/obo/NCBITaxon_3463,none +16.2617013,NCBITaxon:34643,http://purl.obolibrary.org/obo/NCBITaxon_34643,none +16.2617013,NCBITaxon:347325,http://purl.obolibrary.org/obo/NCBITaxon_347325,none +16.2617013,NCBITaxon:34735,http://purl.obolibrary.org/obo/NCBITaxon_34735,none +16.2617013,NCBITaxon:348013,http://purl.obolibrary.org/obo/NCBITaxon_348013,none +16.2617013,NCBITaxon:348026,http://purl.obolibrary.org/obo/NCBITaxon_348026,none +16.2617013,NCBITaxon:348027,http://purl.obolibrary.org/obo/NCBITaxon_348027,none +16.2617013,NCBITaxon:3485,http://purl.obolibrary.org/obo/NCBITaxon_3485,none +16.2617013,NCBITaxon:34868,http://purl.obolibrary.org/obo/NCBITaxon_34868,none +16.2617013,NCBITaxon:3488,http://purl.obolibrary.org/obo/NCBITaxon_3488,none +16.2617013,NCBITaxon:348894,http://purl.obolibrary.org/obo/NCBITaxon_348894,none +16.2617013,NCBITaxon:349639,http://purl.obolibrary.org/obo/NCBITaxon_349639,none +16.2617013,NCBITaxon:349709,http://purl.obolibrary.org/obo/NCBITaxon_349709,none +16.2617013,NCBITaxon:3504,http://purl.obolibrary.org/obo/NCBITaxon_3504,none +16.2617013,NCBITaxon:350831,http://purl.obolibrary.org/obo/NCBITaxon_350831,none +16.2617013,NCBITaxon:3509,http://purl.obolibrary.org/obo/NCBITaxon_3509,none +16.2617013,NCBITaxon:351509,http://purl.obolibrary.org/obo/NCBITaxon_351509,none +16.2617013,NCBITaxon:351514,http://purl.obolibrary.org/obo/NCBITaxon_351514,none +16.2617013,NCBITaxon:3520,http://purl.obolibrary.org/obo/NCBITaxon_3520,none +16.2617013,NCBITaxon:3521,http://purl.obolibrary.org/obo/NCBITaxon_3521,none +16.2617013,NCBITaxon:352236,http://purl.obolibrary.org/obo/NCBITaxon_352236,none +16.2617013,NCBITaxon:352454,http://purl.obolibrary.org/obo/NCBITaxon_352454,none +16.2617013,NCBITaxon:3526,http://purl.obolibrary.org/obo/NCBITaxon_3526,none +16.2617013,NCBITaxon:35322,http://purl.obolibrary.org/obo/NCBITaxon_35322,none +16.2617013,NCBITaxon:3543,http://purl.obolibrary.org/obo/NCBITaxon_3543,none +16.2617013,NCBITaxon:354519,http://purl.obolibrary.org/obo/NCBITaxon_354519,none +16.2617013,NCBITaxon:35513,http://purl.obolibrary.org/obo/NCBITaxon_35513,none +16.2617013,NCBITaxon:355237,http://purl.obolibrary.org/obo/NCBITaxon_355237,none +16.2617013,NCBITaxon:355245,http://purl.obolibrary.org/obo/NCBITaxon_355245,none +16.2617013,NCBITaxon:35570,http://purl.obolibrary.org/obo/NCBITaxon_35570,none +16.2617013,NCBITaxon:35571,http://purl.obolibrary.org/obo/NCBITaxon_35571,none +16.2617013,NCBITaxon:356180,http://purl.obolibrary.org/obo/NCBITaxon_356180,none +16.2617013,NCBITaxon:356490,http://purl.obolibrary.org/obo/NCBITaxon_356490,none +16.2617013,NCBITaxon:3569,http://purl.obolibrary.org/obo/NCBITaxon_3569,none +16.2617013,NCBITaxon:3573,http://purl.obolibrary.org/obo/NCBITaxon_3573,none +16.2617013,NCBITaxon:3581,http://purl.obolibrary.org/obo/NCBITaxon_3581,none +16.2617013,NCBITaxon:3582,http://purl.obolibrary.org/obo/NCBITaxon_3582,none +16.2617013,NCBITaxon:358792,http://purl.obolibrary.org/obo/NCBITaxon_358792,none +16.2617013,NCBITaxon:35937,http://purl.obolibrary.org/obo/NCBITaxon_35937,none +16.2617013,NCBITaxon:359995,http://purl.obolibrary.org/obo/NCBITaxon_359995,none +16.2617013,NCBITaxon:360507,http://purl.obolibrary.org/obo/NCBITaxon_360507,none +16.2617013,NCBITaxon:361731,http://purl.obolibrary.org/obo/NCBITaxon_361731,none +16.2617013,NCBITaxon:362306,http://purl.obolibrary.org/obo/NCBITaxon_362306,none +16.2617013,NCBITaxon:36277,http://purl.obolibrary.org/obo/NCBITaxon_36277,none +16.2617013,NCBITaxon:363020,http://purl.obolibrary.org/obo/NCBITaxon_363020,none +16.2617013,NCBITaxon:36351,http://purl.obolibrary.org/obo/NCBITaxon_36351,none +16.2617013,NCBITaxon:36410,http://purl.obolibrary.org/obo/NCBITaxon_36410,none +16.2617013,NCBITaxon:36459,http://purl.obolibrary.org/obo/NCBITaxon_36459,none +16.2617013,NCBITaxon:3648,http://purl.obolibrary.org/obo/NCBITaxon_3648,none +16.2617013,NCBITaxon:3649,http://purl.obolibrary.org/obo/NCBITaxon_3649,none +16.2617013,NCBITaxon:36685,http://purl.obolibrary.org/obo/NCBITaxon_36685,none +16.2617013,NCBITaxon:36686,http://purl.obolibrary.org/obo/NCBITaxon_36686,none +16.2617013,NCBITaxon:36715,http://purl.obolibrary.org/obo/NCBITaxon_36715,none +16.2617013,NCBITaxon:36750,http://purl.obolibrary.org/obo/NCBITaxon_36750,none +16.2617013,NCBITaxon:3676,http://purl.obolibrary.org/obo/NCBITaxon_3676,none +16.2617013,NCBITaxon:367682,http://purl.obolibrary.org/obo/NCBITaxon_367682,none +16.2617013,NCBITaxon:367850,http://purl.obolibrary.org/obo/NCBITaxon_367850,none +16.2617013,NCBITaxon:36795,http://purl.obolibrary.org/obo/NCBITaxon_36795,none +16.2617013,NCBITaxon:3680,http://purl.obolibrary.org/obo/NCBITaxon_3680,none +16.2617013,NCBITaxon:368076,http://purl.obolibrary.org/obo/NCBITaxon_368076,none +16.2617013,NCBITaxon:3681,http://purl.obolibrary.org/obo/NCBITaxon_3681,none +16.2617013,NCBITaxon:368735,http://purl.obolibrary.org/obo/NCBITaxon_368735,none +16.2617013,NCBITaxon:369752,http://purl.obolibrary.org/obo/NCBITaxon_369752,none +16.2617013,NCBITaxon:37119,http://purl.obolibrary.org/obo/NCBITaxon_37119,none +16.2617013,NCBITaxon:371730,http://purl.obolibrary.org/obo/NCBITaxon_371730,none +16.2617013,NCBITaxon:371826,http://purl.obolibrary.org/obo/NCBITaxon_371826,none +16.2617013,NCBITaxon:372443,http://purl.obolibrary.org/obo/NCBITaxon_372443,none +16.2617013,NCBITaxon:37266,http://purl.obolibrary.org/obo/NCBITaxon_37266,none +16.2617013,NCBITaxon:372810,http://purl.obolibrary.org/obo/NCBITaxon_372810,none +16.2617013,NCBITaxon:37300,http://purl.obolibrary.org/obo/NCBITaxon_37300,none +16.2617013,NCBITaxon:373319,http://purl.obolibrary.org/obo/NCBITaxon_373319,none +16.2617013,NCBITaxon:373373,http://purl.obolibrary.org/obo/NCBITaxon_373373,none +16.2617013,NCBITaxon:373398,http://purl.obolibrary.org/obo/NCBITaxon_373398,none +16.2617013,NCBITaxon:3735,http://purl.obolibrary.org/obo/NCBITaxon_3735,none +16.2617013,NCBITaxon:3740,http://purl.obolibrary.org/obo/NCBITaxon_3740,none +16.2617013,NCBITaxon:375288,http://purl.obolibrary.org/obo/NCBITaxon_375288,none +16.2617013,NCBITaxon:37582,http://purl.obolibrary.org/obo/NCBITaxon_37582,none +16.2617013,NCBITaxon:376612,http://purl.obolibrary.org/obo/NCBITaxon_376612,none +16.2617013,NCBITaxon:377462,http://purl.obolibrary.org/obo/NCBITaxon_377462,none +16.2617013,NCBITaxon:378091,http://purl.obolibrary.org/obo/NCBITaxon_378091,none +16.2617013,NCBITaxon:378092,http://purl.obolibrary.org/obo/NCBITaxon_378092,none +16.2617013,NCBITaxon:378093,http://purl.obolibrary.org/obo/NCBITaxon_378093,none +16.2617013,NCBITaxon:37871,http://purl.obolibrary.org/obo/NCBITaxon_37871,none +16.2617013,NCBITaxon:37878,http://purl.obolibrary.org/obo/NCBITaxon_37878,none +16.2617013,NCBITaxon:3792,http://purl.obolibrary.org/obo/NCBITaxon_3792,none +16.2617013,NCBITaxon:380160,http://purl.obolibrary.org/obo/NCBITaxon_380160,none +16.2617013,NCBITaxon:380431,http://purl.obolibrary.org/obo/NCBITaxon_380431,none +16.2617013,NCBITaxon:380442,http://purl.obolibrary.org/obo/NCBITaxon_380442,none +16.2617013,NCBITaxon:38068,http://purl.obolibrary.org/obo/NCBITaxon_38068,none +16.2617013,NCBITaxon:38106,http://purl.obolibrary.org/obo/NCBITaxon_38106,none +16.2617013,NCBITaxon:3841,http://purl.obolibrary.org/obo/NCBITaxon_3841,none +16.2617013,NCBITaxon:38595,http://purl.obolibrary.org/obo/NCBITaxon_38595,none +16.2617013,NCBITaxon:3865,http://purl.obolibrary.org/obo/NCBITaxon_3865,none +16.2617013,NCBITaxon:38665,http://purl.obolibrary.org/obo/NCBITaxon_38665,none +16.2617013,NCBITaxon:38833,http://purl.obolibrary.org/obo/NCBITaxon_38833,none +16.2617013,NCBITaxon:388680,http://purl.obolibrary.org/obo/NCBITaxon_388680,none +16.2617013,NCBITaxon:389227,http://purl.obolibrary.org/obo/NCBITaxon_389227,none +16.2617013,NCBITaxon:390437,http://purl.obolibrary.org/obo/NCBITaxon_390437,none +16.2617013,NCBITaxon:390442,http://purl.obolibrary.org/obo/NCBITaxon_390442,none +16.2617013,NCBITaxon:39068,http://purl.obolibrary.org/obo/NCBITaxon_39068,none +16.2617013,NCBITaxon:390849,http://purl.obolibrary.org/obo/NCBITaxon_390849,none +16.2617013,NCBITaxon:39085,http://purl.obolibrary.org/obo/NCBITaxon_39085,none +16.2617013,NCBITaxon:39109,http://purl.obolibrary.org/obo/NCBITaxon_39109,none +16.2617013,NCBITaxon:39137,http://purl.obolibrary.org/obo/NCBITaxon_39137,none +16.2617013,NCBITaxon:3917,http://purl.obolibrary.org/obo/NCBITaxon_3917,none +16.2617013,NCBITaxon:39172,http://purl.obolibrary.org/obo/NCBITaxon_39172,none +16.2617013,NCBITaxon:39190,http://purl.obolibrary.org/obo/NCBITaxon_39190,none +16.2617013,NCBITaxon:3921,http://purl.obolibrary.org/obo/NCBITaxon_3921,none +16.2617013,NCBITaxon:39249,http://purl.obolibrary.org/obo/NCBITaxon_39249,none +16.2617013,NCBITaxon:3929,http://purl.obolibrary.org/obo/NCBITaxon_3929,none +16.2617013,NCBITaxon:393603,http://purl.obolibrary.org/obo/NCBITaxon_393603,none +16.2617013,NCBITaxon:39457,http://purl.obolibrary.org/obo/NCBITaxon_39457,none +16.2617013,NCBITaxon:39500,http://purl.obolibrary.org/obo/NCBITaxon_39500,none +16.2617013,NCBITaxon:39501,http://purl.obolibrary.org/obo/NCBITaxon_39501,none +16.2617013,NCBITaxon:396427,http://purl.obolibrary.org/obo/NCBITaxon_396427,none +16.2617013,NCBITaxon:39683,http://purl.obolibrary.org/obo/NCBITaxon_39683,none +16.2617013,NCBITaxon:39701,http://purl.obolibrary.org/obo/NCBITaxon_39701,none +16.2617013,NCBITaxon:39721,http://purl.obolibrary.org/obo/NCBITaxon_39721,none +16.2617013,NCBITaxon:3980,http://purl.obolibrary.org/obo/NCBITaxon_3980,none +16.2617013,NCBITaxon:39802,http://purl.obolibrary.org/obo/NCBITaxon_39802,none +16.2617013,NCBITaxon:3984,http://purl.obolibrary.org/obo/NCBITaxon_3984,none +16.2617013,NCBITaxon:399314,http://purl.obolibrary.org/obo/NCBITaxon_399314,none +16.2617013,NCBITaxon:399316,http://purl.obolibrary.org/obo/NCBITaxon_399316,none +16.2617013,NCBITaxon:39998,http://purl.obolibrary.org/obo/NCBITaxon_39998,none +16.2617013,NCBITaxon:400835,http://purl.obolibrary.org/obo/NCBITaxon_400835,none +16.2617013,NCBITaxon:401040,http://purl.obolibrary.org/obo/NCBITaxon_401040,none +16.2617013,NCBITaxon:40120,http://purl.obolibrary.org/obo/NCBITaxon_40120,none +16.2617013,NCBITaxon:40139,http://purl.obolibrary.org/obo/NCBITaxon_40139,none +16.2617013,NCBITaxon:4026,http://purl.obolibrary.org/obo/NCBITaxon_4026,none +16.2617013,NCBITaxon:40323,http://purl.obolibrary.org/obo/NCBITaxon_40323,none +16.2617013,NCBITaxon:40369,http://purl.obolibrary.org/obo/NCBITaxon_40369,none +16.2617013,NCBITaxon:4042,http://purl.obolibrary.org/obo/NCBITaxon_4042,none +16.2617013,NCBITaxon:4043,http://purl.obolibrary.org/obo/NCBITaxon_4043,none +16.2617013,NCBITaxon:40470,http://purl.obolibrary.org/obo/NCBITaxon_40470,none +16.2617013,NCBITaxon:40521,http://purl.obolibrary.org/obo/NCBITaxon_40521,none +16.2617013,NCBITaxon:40523,http://purl.obolibrary.org/obo/NCBITaxon_40523,none +16.2617013,NCBITaxon:406817,http://purl.obolibrary.org/obo/NCBITaxon_406817,none +16.2617013,NCBITaxon:4081,http://purl.obolibrary.org/obo/NCBITaxon_4081,Solanum lycopersicum +16.2617013,NCBITaxon:408136,http://purl.obolibrary.org/obo/NCBITaxon_408136,none +16.2617013,NCBITaxon:40917,http://purl.obolibrary.org/obo/NCBITaxon_40917,none +16.2617013,NCBITaxon:40925,http://purl.obolibrary.org/obo/NCBITaxon_40925,none +16.2617013,NCBITaxon:409287,http://purl.obolibrary.org/obo/NCBITaxon_409287,none +16.2617013,NCBITaxon:41076,http://purl.obolibrary.org/obo/NCBITaxon_41076,none +16.2617013,NCBITaxon:410830,http://purl.obolibrary.org/obo/NCBITaxon_410830,none +16.2617013,NCBITaxon:41102,http://purl.obolibrary.org/obo/NCBITaxon_41102,none +16.2617013,NCBITaxon:41324,http://purl.obolibrary.org/obo/NCBITaxon_41324,Siboglinidae +16.2617013,NCBITaxon:41387,http://purl.obolibrary.org/obo/NCBITaxon_41387,none +16.2617013,NCBITaxon:41408,http://purl.obolibrary.org/obo/NCBITaxon_41408,none +16.2617013,NCBITaxon:41495,http://purl.obolibrary.org/obo/NCBITaxon_41495,none +16.2617013,NCBITaxon:41692,http://purl.obolibrary.org/obo/NCBITaxon_41692,none +16.2617013,NCBITaxon:41798,http://purl.obolibrary.org/obo/NCBITaxon_41798,none +16.2617013,NCBITaxon:41799,http://purl.obolibrary.org/obo/NCBITaxon_41799,none +16.2617013,NCBITaxon:418905,http://purl.obolibrary.org/obo/NCBITaxon_418905,none +16.2617013,NCBITaxon:41947,http://purl.obolibrary.org/obo/NCBITaxon_41947,none +16.2617013,NCBITaxon:42097,http://purl.obolibrary.org/obo/NCBITaxon_42097,none +16.2617013,NCBITaxon:42159,http://purl.obolibrary.org/obo/NCBITaxon_42159,none +16.2617013,NCBITaxon:42167,http://purl.obolibrary.org/obo/NCBITaxon_42167,none +16.2617013,NCBITaxon:42219,http://purl.obolibrary.org/obo/NCBITaxon_42219,none +16.2617013,NCBITaxon:42231,http://purl.obolibrary.org/obo/NCBITaxon_42231,Mansonella perstans +16.2617013,NCBITaxon:42261,http://purl.obolibrary.org/obo/NCBITaxon_42261,none +16.2617013,NCBITaxon:425088,http://purl.obolibrary.org/obo/NCBITaxon_425088,none +16.2617013,NCBITaxon:426106,http://purl.obolibrary.org/obo/NCBITaxon_426106,none +16.2617013,NCBITaxon:42630,http://purl.obolibrary.org/obo/NCBITaxon_42630,none +16.2617013,NCBITaxon:42740,http://purl.obolibrary.org/obo/NCBITaxon_42740,Opalinata +16.2617013,NCBITaxon:42748,http://purl.obolibrary.org/obo/NCBITaxon_42748,none +16.2617013,NCBITaxon:42750,http://purl.obolibrary.org/obo/NCBITaxon_42750,none +16.2617013,NCBITaxon:42791,http://purl.obolibrary.org/obo/NCBITaxon_42791,none +16.2617013,NCBITaxon:42812,http://purl.obolibrary.org/obo/NCBITaxon_42812,none +16.2617013,NCBITaxon:430997,http://purl.obolibrary.org/obo/NCBITaxon_430997,none +16.2617013,NCBITaxon:43170,http://purl.obolibrary.org/obo/NCBITaxon_43170,none +16.2617013,NCBITaxon:43174,http://purl.obolibrary.org/obo/NCBITaxon_43174,none +16.2617013,NCBITaxon:431837,http://purl.obolibrary.org/obo/NCBITaxon_431837,none +16.2617013,NCBITaxon:4319,http://purl.obolibrary.org/obo/NCBITaxon_4319,none +16.2617013,NCBITaxon:432370,http://purl.obolibrary.org/obo/NCBITaxon_432370,none +16.2617013,NCBITaxon:4331,http://purl.obolibrary.org/obo/NCBITaxon_4331,none +16.2617013,NCBITaxon:434061,http://purl.obolibrary.org/obo/NCBITaxon_434061,none +16.2617013,NCBITaxon:434062,http://purl.obolibrary.org/obo/NCBITaxon_434062,none +16.2617013,NCBITaxon:434357,http://purl.obolibrary.org/obo/NCBITaxon_434357,none +16.2617013,NCBITaxon:43486,http://purl.obolibrary.org/obo/NCBITaxon_43486,none +16.2617013,NCBITaxon:435718,http://purl.obolibrary.org/obo/NCBITaxon_435718,none +16.2617013,NCBITaxon:436007,http://purl.obolibrary.org/obo/NCBITaxon_436007,none +16.2617013,NCBITaxon:4361,http://purl.obolibrary.org/obo/NCBITaxon_4361,none +16.2617013,NCBITaxon:436463,http://purl.obolibrary.org/obo/NCBITaxon_436463,none +16.2617013,NCBITaxon:43697,http://purl.obolibrary.org/obo/NCBITaxon_43697,none +16.2617013,NCBITaxon:43743,http://purl.obolibrary.org/obo/NCBITaxon_43743,none +16.2617013,NCBITaxon:437444,http://purl.obolibrary.org/obo/NCBITaxon_437444,none +16.2617013,NCBITaxon:437799,http://purl.obolibrary.org/obo/NCBITaxon_437799,none +16.2617013,NCBITaxon:43790,http://purl.obolibrary.org/obo/NCBITaxon_43790,none +16.2617013,NCBITaxon:438782,http://purl.obolibrary.org/obo/NCBITaxon_438782,none +16.2617013,NCBITaxon:43916,http://purl.obolibrary.org/obo/NCBITaxon_43916,none +16.2617013,NCBITaxon:43921,http://purl.obolibrary.org/obo/NCBITaxon_43921,none +16.2617013,NCBITaxon:4449,http://purl.obolibrary.org/obo/NCBITaxon_4449,none +16.2617013,NCBITaxon:4450,http://purl.obolibrary.org/obo/NCBITaxon_4450,none +16.2617013,NCBITaxon:445314,http://purl.obolibrary.org/obo/NCBITaxon_445314,none +16.2617013,NCBITaxon:445435,http://purl.obolibrary.org/obo/NCBITaxon_445435,none +16.2617013,NCBITaxon:44757,http://purl.obolibrary.org/obo/NCBITaxon_44757,none +16.2617013,NCBITaxon:44945,http://purl.obolibrary.org/obo/NCBITaxon_44945,none +16.2617013,NCBITaxon:4496,http://purl.obolibrary.org/obo/NCBITaxon_4496,none +16.2617013,NCBITaxon:44985,http://purl.obolibrary.org/obo/NCBITaxon_44985,none +16.2617013,NCBITaxon:45119,http://purl.obolibrary.org/obo/NCBITaxon_45119,none +16.2617013,NCBITaxon:451455,http://purl.obolibrary.org/obo/NCBITaxon_451455,none +16.2617013,NCBITaxon:451456,http://purl.obolibrary.org/obo/NCBITaxon_451456,none +16.2617013,NCBITaxon:451459,http://purl.obolibrary.org/obo/NCBITaxon_451459,none +16.2617013,NCBITaxon:4521,http://purl.obolibrary.org/obo/NCBITaxon_4521,none +16.2617013,NCBITaxon:45221,http://purl.obolibrary.org/obo/NCBITaxon_45221,none +16.2617013,NCBITaxon:452342,http://purl.obolibrary.org/obo/NCBITaxon_452342,none +16.2617013,NCBITaxon:452758,http://purl.obolibrary.org/obo/NCBITaxon_452758,none +16.2617013,NCBITaxon:45284,http://purl.obolibrary.org/obo/NCBITaxon_45284,none +16.2617013,NCBITaxon:453035,http://purl.obolibrary.org/obo/NCBITaxon_453035,none +16.2617013,NCBITaxon:4541,http://purl.obolibrary.org/obo/NCBITaxon_4541,none +16.2617013,NCBITaxon:45418,http://purl.obolibrary.org/obo/NCBITaxon_45418,none +16.2617013,NCBITaxon:454508,http://purl.obolibrary.org/obo/NCBITaxon_454508,none +16.2617013,NCBITaxon:45475,http://purl.obolibrary.org/obo/NCBITaxon_45475,none +16.2617013,NCBITaxon:454757,http://purl.obolibrary.org/obo/NCBITaxon_454757,none +16.2617013,NCBITaxon:455364,http://purl.obolibrary.org/obo/NCBITaxon_455364,none +16.2617013,NCBITaxon:455365,http://purl.obolibrary.org/obo/NCBITaxon_455365,none +16.2617013,NCBITaxon:455381,http://purl.obolibrary.org/obo/NCBITaxon_455381,Capillariidae +16.2617013,NCBITaxon:4557,http://purl.obolibrary.org/obo/NCBITaxon_4557,none +16.2617013,NCBITaxon:457286,http://purl.obolibrary.org/obo/NCBITaxon_457286,none +16.2617013,NCBITaxon:459247,http://purl.obolibrary.org/obo/NCBITaxon_459247,none +16.2617013,NCBITaxon:459299,http://purl.obolibrary.org/obo/NCBITaxon_459299,none +16.2617013,NCBITaxon:459300,http://purl.obolibrary.org/obo/NCBITaxon_459300,none +16.2617013,NCBITaxon:459856,http://purl.obolibrary.org/obo/NCBITaxon_459856,none +16.2617013,NCBITaxon:4605,http://purl.obolibrary.org/obo/NCBITaxon_4605,none +16.2617013,NCBITaxon:460718,http://purl.obolibrary.org/obo/NCBITaxon_460718,none +16.2617013,NCBITaxon:4613,http://purl.obolibrary.org/obo/NCBITaxon_4613,none +16.2617013,NCBITaxon:4619,http://purl.obolibrary.org/obo/NCBITaxon_4619,none +16.2617013,NCBITaxon:462210,http://purl.obolibrary.org/obo/NCBITaxon_462210,none +16.2617013,NCBITaxon:4626,http://purl.obolibrary.org/obo/NCBITaxon_4626,none +16.2617013,NCBITaxon:4627,http://purl.obolibrary.org/obo/NCBITaxon_4627,none +16.2617013,NCBITaxon:46290,http://purl.obolibrary.org/obo/NCBITaxon_46290,none +16.2617013,NCBITaxon:4640,http://purl.obolibrary.org/obo/NCBITaxon_4640,none +16.2617013,NCBITaxon:465283,http://purl.obolibrary.org/obo/NCBITaxon_465283,none +16.2617013,NCBITaxon:46682,http://purl.obolibrary.org/obo/NCBITaxon_46682,Heterakoidea +16.2617013,NCBITaxon:4674,http://purl.obolibrary.org/obo/NCBITaxon_4674,none +16.2617013,NCBITaxon:46768,http://purl.obolibrary.org/obo/NCBITaxon_46768,none +16.2617013,NCBITaxon:46878,http://purl.obolibrary.org/obo/NCBITaxon_46878,none +16.2617013,NCBITaxon:46895,http://purl.obolibrary.org/obo/NCBITaxon_46895,none +16.2617013,NCBITaxon:4695,http://purl.obolibrary.org/obo/NCBITaxon_4695,none +16.2617013,NCBITaxon:46995,http://purl.obolibrary.org/obo/NCBITaxon_46995,none +16.2617013,NCBITaxon:470665,http://purl.obolibrary.org/obo/NCBITaxon_470665,none +16.2617013,NCBITaxon:471285,http://purl.obolibrary.org/obo/NCBITaxon_471285,none +16.2617013,NCBITaxon:47145,http://purl.obolibrary.org/obo/NCBITaxon_47145,none +16.2617013,NCBITaxon:471870,http://purl.obolibrary.org/obo/NCBITaxon_471870,none +16.2617013,NCBITaxon:472296,http://purl.obolibrary.org/obo/NCBITaxon_472296,none +16.2617013,NCBITaxon:472297,http://purl.obolibrary.org/obo/NCBITaxon_472297,none +16.2617013,NCBITaxon:472706,http://purl.obolibrary.org/obo/NCBITaxon_472706,none +16.2617013,NCBITaxon:472707,http://purl.obolibrary.org/obo/NCBITaxon_472707,none +16.2617013,NCBITaxon:47420,http://purl.obolibrary.org/obo/NCBITaxon_47420,none +16.2617013,NCBITaxon:47424,http://purl.obolibrary.org/obo/NCBITaxon_47424,none +16.2617013,NCBITaxon:474453,http://purl.obolibrary.org/obo/NCBITaxon_474453,none +16.2617013,NCBITaxon:474942,http://purl.obolibrary.org/obo/NCBITaxon_474942,none +16.2617013,NCBITaxon:4761,http://purl.obolibrary.org/obo/NCBITaxon_4761,none +16.2617013,NCBITaxon:4763,http://purl.obolibrary.org/obo/NCBITaxon_4763,none +16.2617013,NCBITaxon:4764,http://purl.obolibrary.org/obo/NCBITaxon_4764,none +16.2617013,NCBITaxon:47736,http://purl.obolibrary.org/obo/NCBITaxon_47736,none +16.2617013,NCBITaxon:477967,http://purl.obolibrary.org/obo/NCBITaxon_477967,none +16.2617013,NCBITaxon:4782,http://purl.obolibrary.org/obo/NCBITaxon_4782,none +16.2617013,NCBITaxon:4797,http://purl.obolibrary.org/obo/NCBITaxon_4797,none +16.2617013,NCBITaxon:48224,http://purl.obolibrary.org/obo/NCBITaxon_48224,none +16.2617013,NCBITaxon:48461,http://purl.obolibrary.org/obo/NCBITaxon_48461,none +16.2617013,NCBITaxon:48479,http://purl.obolibrary.org/obo/NCBITaxon_48479,none +16.2617013,NCBITaxon:485440,http://purl.obolibrary.org/obo/NCBITaxon_485440,none +16.2617013,NCBITaxon:4858,http://purl.obolibrary.org/obo/NCBITaxon_4858,Basidiobolaceae +16.2617013,NCBITaxon:4859,http://purl.obolibrary.org/obo/NCBITaxon_4859,Basidiobolus +16.2617013,NCBITaxon:48667,http://purl.obolibrary.org/obo/NCBITaxon_48667,none +16.2617013,NCBITaxon:486809,http://purl.obolibrary.org/obo/NCBITaxon_486809,none +16.2617013,NCBITaxon:487050,http://purl.obolibrary.org/obo/NCBITaxon_487050,none +16.2617013,NCBITaxon:487097,http://purl.obolibrary.org/obo/NCBITaxon_487097,none +16.2617013,NCBITaxon:487155,http://purl.obolibrary.org/obo/NCBITaxon_487155,none +16.2617013,NCBITaxon:48876,http://purl.obolibrary.org/obo/NCBITaxon_48876,none +16.2617013,NCBITaxon:489404,http://purl.obolibrary.org/obo/NCBITaxon_489404,none +16.2617013,NCBITaxon:490054,http://purl.obolibrary.org/obo/NCBITaxon_490054,none +16.2617013,NCBITaxon:490111,http://purl.obolibrary.org/obo/NCBITaxon_490111,none +16.2617013,NCBITaxon:490832,http://purl.obolibrary.org/obo/NCBITaxon_490832,none +16.2617013,NCBITaxon:49274,http://purl.obolibrary.org/obo/NCBITaxon_49274,Solanum subgen. Lycopersicon +16.2617013,NCBITaxon:494397,http://purl.obolibrary.org/obo/NCBITaxon_494397,none +16.2617013,NCBITaxon:4953,http://purl.obolibrary.org/obo/NCBITaxon_4953,none +16.2617013,NCBITaxon:4958,http://purl.obolibrary.org/obo/NCBITaxon_4958,none +16.2617013,NCBITaxon:497488,http://purl.obolibrary.org/obo/NCBITaxon_497488,none +16.2617013,NCBITaxon:499113,http://purl.obolibrary.org/obo/NCBITaxon_499113,none +16.2617013,NCBITaxon:5008,http://purl.obolibrary.org/obo/NCBITaxon_5008,none +16.2617013,NCBITaxon:5009,http://purl.obolibrary.org/obo/NCBITaxon_5009,none +16.2617013,NCBITaxon:5010,http://purl.obolibrary.org/obo/NCBITaxon_5010,none +16.2617013,NCBITaxon:50178,http://purl.obolibrary.org/obo/NCBITaxon_50178,none +16.2617013,NCBITaxon:502106,http://purl.obolibrary.org/obo/NCBITaxon_502106,none +16.2617013,NCBITaxon:50460,http://purl.obolibrary.org/obo/NCBITaxon_50460,none +16.2617013,NCBITaxon:50489,http://purl.obolibrary.org/obo/NCBITaxon_50489,none +16.2617013,NCBITaxon:504915,http://purl.obolibrary.org/obo/NCBITaxon_504915,none +16.2617013,NCBITaxon:5065,http://purl.obolibrary.org/obo/NCBITaxon_5065,none +16.2617013,NCBITaxon:508940,http://purl.obolibrary.org/obo/NCBITaxon_508940,none +16.2617013,NCBITaxon:5106,http://purl.obolibrary.org/obo/NCBITaxon_5106,none +16.2617013,NCBITaxon:5114,http://purl.obolibrary.org/obo/NCBITaxon_5114,none +16.2617013,NCBITaxon:51166,http://purl.obolibrary.org/obo/NCBITaxon_51166,none +16.2617013,NCBITaxon:51292,http://purl.obolibrary.org/obo/NCBITaxon_51292,none +16.2617013,NCBITaxon:51293,http://purl.obolibrary.org/obo/NCBITaxon_51293,none +16.2617013,NCBITaxon:51347,http://purl.obolibrary.org/obo/NCBITaxon_51347,none +16.2617013,NCBITaxon:5135,http://purl.obolibrary.org/obo/NCBITaxon_5135,none +16.2617013,NCBITaxon:51372,http://purl.obolibrary.org/obo/NCBITaxon_51372,none +16.2617013,NCBITaxon:51373,http://purl.obolibrary.org/obo/NCBITaxon_51373,none +16.2617013,NCBITaxon:51431,http://purl.obolibrary.org/obo/NCBITaxon_51431,none +16.2617013,NCBITaxon:51439,http://purl.obolibrary.org/obo/NCBITaxon_51439,none +16.2617013,NCBITaxon:51440,http://purl.obolibrary.org/obo/NCBITaxon_51440,none +16.2617013,NCBITaxon:51653,http://purl.obolibrary.org/obo/NCBITaxon_51653,none +16.2617013,NCBITaxon:51654,http://purl.obolibrary.org/obo/NCBITaxon_51654,none +16.2617013,NCBITaxon:516811,http://purl.obolibrary.org/obo/NCBITaxon_516811,none +16.2617013,NCBITaxon:517360,http://purl.obolibrary.org/obo/NCBITaxon_517360,none +16.2617013,NCBITaxon:51814,http://purl.obolibrary.org/obo/NCBITaxon_51814,none +16.2617013,NCBITaxon:5192,http://purl.obolibrary.org/obo/NCBITaxon_5192,none +16.2617013,NCBITaxon:5193,http://purl.obolibrary.org/obo/NCBITaxon_5193,none +16.2617013,NCBITaxon:52071,http://purl.obolibrary.org/obo/NCBITaxon_52071,none +16.2617013,NCBITaxon:523712,http://purl.obolibrary.org/obo/NCBITaxon_523712,none +16.2617013,NCBITaxon:523720,http://purl.obolibrary.org/obo/NCBITaxon_523720,none +16.2617013,NCBITaxon:524023,http://purl.obolibrary.org/obo/NCBITaxon_524023,none +16.2617013,NCBITaxon:5251,http://purl.obolibrary.org/obo/NCBITaxon_5251,none +16.2617013,NCBITaxon:52517,http://purl.obolibrary.org/obo/NCBITaxon_52517,none +16.2617013,NCBITaxon:526523,http://purl.obolibrary.org/obo/NCBITaxon_526523,none +16.2617013,NCBITaxon:527138,http://purl.obolibrary.org/obo/NCBITaxon_527138,none +16.2617013,NCBITaxon:52729,http://purl.obolibrary.org/obo/NCBITaxon_52729,none +16.2617013,NCBITaxon:528322,http://purl.obolibrary.org/obo/NCBITaxon_528322,none +16.2617013,NCBITaxon:52938,http://purl.obolibrary.org/obo/NCBITaxon_52938,none +16.2617013,NCBITaxon:52939,http://purl.obolibrary.org/obo/NCBITaxon_52939,none +16.2617013,NCBITaxon:530536,http://purl.obolibrary.org/obo/NCBITaxon_530536,none +16.2617013,NCBITaxon:53171,http://purl.obolibrary.org/obo/NCBITaxon_53171,none +16.2617013,NCBITaxon:53179,http://purl.obolibrary.org/obo/NCBITaxon_53179,none +16.2617013,NCBITaxon:53226,http://purl.obolibrary.org/obo/NCBITaxon_53226,none +16.2617013,NCBITaxon:53275,http://purl.obolibrary.org/obo/NCBITaxon_53275,none +16.2617013,NCBITaxon:53324,http://purl.obolibrary.org/obo/NCBITaxon_53324,none +16.2617013,NCBITaxon:53335,http://purl.obolibrary.org/obo/NCBITaxon_53335,none +16.2617013,NCBITaxon:53550,http://purl.obolibrary.org/obo/NCBITaxon_53550,Culicini +16.2617013,NCBITaxon:536231,http://purl.obolibrary.org/obo/NCBITaxon_536231,none +16.2617013,NCBITaxon:538121,http://purl.obolibrary.org/obo/NCBITaxon_538121,none +16.2617013,NCBITaxon:538398,http://purl.obolibrary.org/obo/NCBITaxon_538398,none +16.2617013,NCBITaxon:53845,http://purl.obolibrary.org/obo/NCBITaxon_53845,none +16.2617013,NCBITaxon:53866,http://purl.obolibrary.org/obo/NCBITaxon_53866,none +16.2617013,NCBITaxon:53892,http://purl.obolibrary.org/obo/NCBITaxon_53892,none +16.2617013,NCBITaxon:54071,http://purl.obolibrary.org/obo/NCBITaxon_54071,none +16.2617013,NCBITaxon:54285,http://purl.obolibrary.org/obo/NCBITaxon_54285,Oestrinae +16.2617013,NCBITaxon:54291,http://purl.obolibrary.org/obo/NCBITaxon_54291,none +16.2617013,NCBITaxon:542957,http://purl.obolibrary.org/obo/NCBITaxon_542957,none +16.2617013,NCBITaxon:542959,http://purl.obolibrary.org/obo/NCBITaxon_542959,none +16.2617013,NCBITaxon:542960,http://purl.obolibrary.org/obo/NCBITaxon_542960,none +16.2617013,NCBITaxon:545259,http://purl.obolibrary.org/obo/NCBITaxon_545259,none +16.2617013,NCBITaxon:548915,http://purl.obolibrary.org/obo/NCBITaxon_548915,none +16.2617013,NCBITaxon:54924,http://purl.obolibrary.org/obo/NCBITaxon_54924,none +16.2617013,NCBITaxon:54958,http://purl.obolibrary.org/obo/NCBITaxon_54958,none +16.2617013,NCBITaxon:54976,http://purl.obolibrary.org/obo/NCBITaxon_54976,none +16.2617013,NCBITaxon:54977,http://purl.obolibrary.org/obo/NCBITaxon_54977,none +16.2617013,NCBITaxon:54986,http://purl.obolibrary.org/obo/NCBITaxon_54986,none +16.2617013,NCBITaxon:55074,http://purl.obolibrary.org/obo/NCBITaxon_55074,none +16.2617013,NCBITaxon:55080,http://purl.obolibrary.org/obo/NCBITaxon_55080,none +16.2617013,NCBITaxon:551003,http://purl.obolibrary.org/obo/NCBITaxon_551003,none +16.2617013,NCBITaxon:551454,http://purl.obolibrary.org/obo/NCBITaxon_551454,none +16.2617013,NCBITaxon:551790,http://purl.obolibrary.org/obo/NCBITaxon_551790,none +16.2617013,NCBITaxon:55517,http://purl.obolibrary.org/obo/NCBITaxon_55517,none +16.2617013,NCBITaxon:55708,http://purl.obolibrary.org/obo/NCBITaxon_55708,none +16.2617013,NCBITaxon:55784,http://purl.obolibrary.org/obo/NCBITaxon_55784,none +16.2617013,NCBITaxon:558018,http://purl.obolibrary.org/obo/NCBITaxon_558018,none +16.2617013,NCBITaxon:55824,http://purl.obolibrary.org/obo/NCBITaxon_55824,Hirudinea +16.2617013,NCBITaxon:5596,http://purl.obolibrary.org/obo/NCBITaxon_5596,none +16.2617013,NCBITaxon:56139,http://purl.obolibrary.org/obo/NCBITaxon_56139,none +16.2617013,NCBITaxon:5642,http://purl.obolibrary.org/obo/NCBITaxon_5642,none +16.2617013,NCBITaxon:564645,http://purl.obolibrary.org/obo/NCBITaxon_564645,none +16.2617013,NCBITaxon:56487,http://purl.obolibrary.org/obo/NCBITaxon_56487,none +16.2617013,NCBITaxon:56488,http://purl.obolibrary.org/obo/NCBITaxon_56488,none +16.2617013,NCBITaxon:564944,http://purl.obolibrary.org/obo/NCBITaxon_564944,none +16.2617013,NCBITaxon:565624,http://purl.obolibrary.org/obo/NCBITaxon_565624,none +16.2617013,NCBITaxon:565680,http://purl.obolibrary.org/obo/NCBITaxon_565680,none +16.2617013,NCBITaxon:56625,http://purl.obolibrary.org/obo/NCBITaxon_56625,none +16.2617013,NCBITaxon:57294,http://purl.obolibrary.org/obo/NCBITaxon_57294,Pycnogonida +16.2617013,NCBITaxon:573053,http://purl.obolibrary.org/obo/NCBITaxon_573053,none +16.2617013,NCBITaxon:573054,http://purl.obolibrary.org/obo/NCBITaxon_573054,none +16.2617013,NCBITaxon:573055,http://purl.obolibrary.org/obo/NCBITaxon_573055,none +16.2617013,NCBITaxon:573615,http://purl.obolibrary.org/obo/NCBITaxon_573615,none +16.2617013,NCBITaxon:574984,http://purl.obolibrary.org/obo/NCBITaxon_574984,none +16.2617013,NCBITaxon:575917,http://purl.obolibrary.org/obo/NCBITaxon_575917,none +16.2617013,NCBITaxon:577122,http://purl.obolibrary.org/obo/NCBITaxon_577122,none +16.2617013,NCBITaxon:57747,http://purl.obolibrary.org/obo/NCBITaxon_57747,none +16.2617013,NCBITaxon:579,http://purl.obolibrary.org/obo/NCBITaxon_579,none +16.2617013,NCBITaxon:580370,http://purl.obolibrary.org/obo/NCBITaxon_580370,none +16.2617013,NCBITaxon:58066,http://purl.obolibrary.org/obo/NCBITaxon_58066,none +16.2617013,NCBITaxon:581380,http://purl.obolibrary.org/obo/NCBITaxon_581380,none +16.2617013,NCBITaxon:58177,http://purl.obolibrary.org/obo/NCBITaxon_58177,none +16.2617013,NCBITaxon:581957,http://purl.obolibrary.org/obo/NCBITaxon_581957,none +16.2617013,NCBITaxon:58282,http://purl.obolibrary.org/obo/NCBITaxon_58282,none +16.2617013,NCBITaxon:582896,http://purl.obolibrary.org/obo/NCBITaxon_582896,none +16.2617013,NCBITaxon:58539,http://purl.obolibrary.org/obo/NCBITaxon_58539,none +16.2617013,NCBITaxon:58540,http://purl.obolibrary.org/obo/NCBITaxon_58540,none +16.2617013,NCBITaxon:58949,http://purl.obolibrary.org/obo/NCBITaxon_58949,none +16.2617013,NCBITaxon:590126,http://purl.obolibrary.org/obo/NCBITaxon_590126,none +16.2617013,NCBITaxon:592206,http://purl.obolibrary.org/obo/NCBITaxon_592206,none +16.2617013,NCBITaxon:59305,http://purl.obolibrary.org/obo/NCBITaxon_59305,none +16.2617013,NCBITaxon:5934,http://purl.obolibrary.org/obo/NCBITaxon_5934,none +16.2617013,NCBITaxon:5957,http://purl.obolibrary.org/obo/NCBITaxon_5957,none +16.2617013,NCBITaxon:5959,http://purl.obolibrary.org/obo/NCBITaxon_5959,none +16.2617013,NCBITaxon:5977,http://purl.obolibrary.org/obo/NCBITaxon_5977,none +16.2617013,NCBITaxon:5989,http://purl.obolibrary.org/obo/NCBITaxon_5989,none +16.2617013,NCBITaxon:59897,http://purl.obolibrary.org/obo/NCBITaxon_59897,none +16.2617013,NCBITaxon:603003,http://purl.obolibrary.org/obo/NCBITaxon_603003,none +16.2617013,NCBITaxon:60759,http://purl.obolibrary.org/obo/NCBITaxon_60759,none +16.2617013,NCBITaxon:6086,http://purl.obolibrary.org/obo/NCBITaxon_6086,none +16.2617013,NCBITaxon:61151,http://purl.obolibrary.org/obo/NCBITaxon_61151,none +16.2617013,NCBITaxon:611708,http://purl.obolibrary.org/obo/NCBITaxon_611708,none +16.2617013,NCBITaxon:613905,http://purl.obolibrary.org/obo/NCBITaxon_613905,none +16.2617013,NCBITaxon:61471,http://purl.obolibrary.org/obo/NCBITaxon_61471,none +16.2617013,NCBITaxon:6163,http://purl.obolibrary.org/obo/NCBITaxon_6163,none +16.2617013,NCBITaxon:619357,http://purl.obolibrary.org/obo/NCBITaxon_619357,none +16.2617013,NCBITaxon:619599,http://purl.obolibrary.org/obo/NCBITaxon_619599,none +16.2617013,NCBITaxon:62060,http://purl.obolibrary.org/obo/NCBITaxon_62060,none +16.2617013,NCBITaxon:62680,http://purl.obolibrary.org/obo/NCBITaxon_62680,none +16.2617013,NCBITaxon:627479,http://purl.obolibrary.org/obo/NCBITaxon_627479,none +16.2617013,NCBITaxon:6278,http://purl.obolibrary.org/obo/NCBITaxon_6278,none +16.2617013,NCBITaxon:6288,http://purl.obolibrary.org/obo/NCBITaxon_6288,none +16.2617013,NCBITaxon:629736,http://purl.obolibrary.org/obo/NCBITaxon_629736,none +16.2617013,NCBITaxon:6318,http://purl.obolibrary.org/obo/NCBITaxon_6318,Trichostrongylus +16.2617013,NCBITaxon:634441,http://purl.obolibrary.org/obo/NCBITaxon_634441,none +16.2617013,NCBITaxon:6366,http://purl.obolibrary.org/obo/NCBITaxon_6366,none +16.2617013,NCBITaxon:638358,http://purl.obolibrary.org/obo/NCBITaxon_638358,none +16.2617013,NCBITaxon:6385,http://purl.obolibrary.org/obo/NCBITaxon_6385,none +16.2617013,NCBITaxon:6403,http://purl.obolibrary.org/obo/NCBITaxon_6403,none +16.2617013,NCBITaxon:640327,http://purl.obolibrary.org/obo/NCBITaxon_640327,none +16.2617013,NCBITaxon:640623,http://purl.obolibrary.org/obo/NCBITaxon_640623,none +16.2617013,NCBITaxon:6416,http://purl.obolibrary.org/obo/NCBITaxon_6416,none +16.2617013,NCBITaxon:6417,http://purl.obolibrary.org/obo/NCBITaxon_6417,none +16.2617013,NCBITaxon:6427,http://purl.obolibrary.org/obo/NCBITaxon_6427,none +16.2617013,NCBITaxon:64280,http://purl.obolibrary.org/obo/NCBITaxon_64280,none +16.2617013,NCBITaxon:64282,http://purl.obolibrary.org/obo/NCBITaxon_64282,none +16.2617013,NCBITaxon:64291,http://purl.obolibrary.org/obo/NCBITaxon_64291,none +16.2617013,NCBITaxon:64312,http://purl.obolibrary.org/obo/NCBITaxon_64312,none +16.2617013,NCBITaxon:643133,http://purl.obolibrary.org/obo/NCBITaxon_643133,none +16.2617013,NCBITaxon:64317,http://purl.obolibrary.org/obo/NCBITaxon_64317,none +16.2617013,NCBITaxon:646317,http://purl.obolibrary.org/obo/NCBITaxon_646317,none +16.2617013,NCBITaxon:646318,http://purl.obolibrary.org/obo/NCBITaxon_646318,none +16.2617013,NCBITaxon:646324,http://purl.obolibrary.org/obo/NCBITaxon_646324,none +16.2617013,NCBITaxon:64894,http://purl.obolibrary.org/obo/NCBITaxon_64894,none +16.2617013,NCBITaxon:64898,http://purl.obolibrary.org/obo/NCBITaxon_64898,none +16.2617013,NCBITaxon:648998,http://purl.obolibrary.org/obo/NCBITaxon_648998,none +16.2617013,NCBITaxon:649890,http://purl.obolibrary.org/obo/NCBITaxon_649890,none +16.2617013,NCBITaxon:65022,http://purl.obolibrary.org/obo/NCBITaxon_65022,none +16.2617013,NCBITaxon:651137,http://purl.obolibrary.org/obo/NCBITaxon_651137,none +16.2617013,NCBITaxon:65149,http://purl.obolibrary.org/obo/NCBITaxon_65149,none +16.2617013,NCBITaxon:65231,http://purl.obolibrary.org/obo/NCBITaxon_65231,none +16.2617013,NCBITaxon:652717,http://purl.obolibrary.org/obo/NCBITaxon_652717,none +16.2617013,NCBITaxon:652718,http://purl.obolibrary.org/obo/NCBITaxon_652718,none +16.2617013,NCBITaxon:65551,http://purl.obolibrary.org/obo/NCBITaxon_65551,none +16.2617013,NCBITaxon:656190,http://purl.obolibrary.org/obo/NCBITaxon_656190,none +16.2617013,NCBITaxon:65622,http://purl.obolibrary.org/obo/NCBITaxon_65622,none +16.2617013,NCBITaxon:65631,http://purl.obolibrary.org/obo/NCBITaxon_65631,none +16.2617013,NCBITaxon:658227,http://purl.obolibrary.org/obo/NCBITaxon_658227,none +16.2617013,NCBITaxon:6609,http://purl.obolibrary.org/obo/NCBITaxon_6609,none +16.2617013,NCBITaxon:662028,http://purl.obolibrary.org/obo/NCBITaxon_662028,none +16.2617013,NCBITaxon:665589,http://purl.obolibrary.org/obo/NCBITaxon_665589,none +16.2617013,NCBITaxon:665811,http://purl.obolibrary.org/obo/NCBITaxon_665811,none +16.2617013,NCBITaxon:665812,http://purl.obolibrary.org/obo/NCBITaxon_665812,none +16.2617013,NCBITaxon:66655,http://purl.obolibrary.org/obo/NCBITaxon_66655,none +16.2617013,NCBITaxon:666641,http://purl.obolibrary.org/obo/NCBITaxon_666641,none +16.2617013,NCBITaxon:66670,http://purl.obolibrary.org/obo/NCBITaxon_66670,none +16.2617013,NCBITaxon:66671,http://purl.obolibrary.org/obo/NCBITaxon_66671,none +16.2617013,NCBITaxon:66672,http://purl.obolibrary.org/obo/NCBITaxon_66672,none +16.2617013,NCBITaxon:66702,http://purl.obolibrary.org/obo/NCBITaxon_66702,none +16.2617013,NCBITaxon:66704,http://purl.obolibrary.org/obo/NCBITaxon_66704,none +16.2617013,NCBITaxon:6671,http://purl.obolibrary.org/obo/NCBITaxon_6671,none +16.2617013,NCBITaxon:667119,http://purl.obolibrary.org/obo/NCBITaxon_667119,none +16.2617013,NCBITaxon:66789,http://purl.obolibrary.org/obo/NCBITaxon_66789,none +16.2617013,NCBITaxon:67082,http://purl.obolibrary.org/obo/NCBITaxon_67082,none +16.2617013,NCBITaxon:672412,http://purl.obolibrary.org/obo/NCBITaxon_672412,none +16.2617013,NCBITaxon:6744,http://purl.obolibrary.org/obo/NCBITaxon_6744,none +16.2617013,NCBITaxon:6745,http://purl.obolibrary.org/obo/NCBITaxon_6745,none +16.2617013,NCBITaxon:674952,http://purl.obolibrary.org/obo/NCBITaxon_674952,none +16.2617013,NCBITaxon:674979,http://purl.obolibrary.org/obo/NCBITaxon_674979,none +16.2617013,NCBITaxon:67522,http://purl.obolibrary.org/obo/NCBITaxon_67522,none +16.2617013,NCBITaxon:675844,http://purl.obolibrary.org/obo/NCBITaxon_675844,none +16.2617013,NCBITaxon:67825,http://purl.obolibrary.org/obo/NCBITaxon_67825,none +16.2617013,NCBITaxon:680115,http://purl.obolibrary.org/obo/NCBITaxon_680115,none +16.2617013,NCBITaxon:682880,http://purl.obolibrary.org/obo/NCBITaxon_682880,none +16.2617013,NCBITaxon:6833,http://purl.obolibrary.org/obo/NCBITaxon_6833,none +16.2617013,NCBITaxon:68347,http://purl.obolibrary.org/obo/NCBITaxon_68347,none +16.2617013,NCBITaxon:68348,http://purl.obolibrary.org/obo/NCBITaxon_68348,none +16.2617013,NCBITaxon:6844,http://purl.obolibrary.org/obo/NCBITaxon_6844,none +16.2617013,NCBITaxon:68460,http://purl.obolibrary.org/obo/NCBITaxon_68460,none +16.2617013,NCBITaxon:685134,http://purl.obolibrary.org/obo/NCBITaxon_685134,none +16.2617013,NCBITaxon:68543,http://purl.obolibrary.org/obo/NCBITaxon_68543,none +16.2617013,NCBITaxon:686982,http://purl.obolibrary.org/obo/NCBITaxon_686982,none +16.2617013,NCBITaxon:687337,http://purl.obolibrary.org/obo/NCBITaxon_687337,none +16.2617013,NCBITaxon:687338,http://purl.obolibrary.org/obo/NCBITaxon_687338,none +16.2617013,NCBITaxon:687384,http://purl.obolibrary.org/obo/NCBITaxon_687384,none +16.2617013,NCBITaxon:687385,http://purl.obolibrary.org/obo/NCBITaxon_687385,none +16.2617013,NCBITaxon:688438,http://purl.obolibrary.org/obo/NCBITaxon_688438,none +16.2617013,NCBITaxon:688449,http://purl.obolibrary.org/obo/NCBITaxon_688449,none +16.2617013,NCBITaxon:688699,http://purl.obolibrary.org/obo/NCBITaxon_688699,none +16.2617013,NCBITaxon:688701,http://purl.obolibrary.org/obo/NCBITaxon_688701,none +16.2617013,NCBITaxon:68893,http://purl.obolibrary.org/obo/NCBITaxon_68893,none +16.2617013,NCBITaxon:69074,http://purl.obolibrary.org/obo/NCBITaxon_69074,none +16.2617013,NCBITaxon:69075,http://purl.obolibrary.org/obo/NCBITaxon_69075,none +16.2617013,NCBITaxon:6913,http://purl.obolibrary.org/obo/NCBITaxon_6913,none +16.2617013,NCBITaxon:691644,http://purl.obolibrary.org/obo/NCBITaxon_691644,none +16.2617013,NCBITaxon:69248,http://purl.obolibrary.org/obo/NCBITaxon_69248,none +16.2617013,NCBITaxon:69263,http://purl.obolibrary.org/obo/NCBITaxon_69263,none +16.2617013,NCBITaxon:693450,http://purl.obolibrary.org/obo/NCBITaxon_693450,none +16.2617013,NCBITaxon:693894,http://purl.obolibrary.org/obo/NCBITaxon_693894,none +16.2617013,NCBITaxon:694006,http://purl.obolibrary.org/obo/NCBITaxon_694006,none +16.2617013,NCBITaxon:69450,http://purl.obolibrary.org/obo/NCBITaxon_69450,none +16.2617013,NCBITaxon:69451,http://purl.obolibrary.org/obo/NCBITaxon_69451,none +16.2617013,NCBITaxon:6947,http://purl.obolibrary.org/obo/NCBITaxon_6947,Prostigmata +16.2617013,NCBITaxon:69501,http://purl.obolibrary.org/obo/NCBITaxon_69501,none +16.2617013,NCBITaxon:69541,http://purl.obolibrary.org/obo/NCBITaxon_69541,none +16.2617013,NCBITaxon:69597,http://purl.obolibrary.org/obo/NCBITaxon_69597,none +16.2617013,NCBITaxon:6996,http://purl.obolibrary.org/obo/NCBITaxon_6996,none +16.2617013,NCBITaxon:6997,http://purl.obolibrary.org/obo/NCBITaxon_6997,none +16.2617013,NCBITaxon:69986,http://purl.obolibrary.org/obo/NCBITaxon_69986,none +16.2617013,NCBITaxon:700688,http://purl.obolibrary.org/obo/NCBITaxon_700688,none +16.2617013,NCBITaxon:70072,http://purl.obolibrary.org/obo/NCBITaxon_70072,none +16.2617013,NCBITaxon:701737,http://purl.obolibrary.org/obo/NCBITaxon_701737,none +16.2617013,NCBITaxon:70187,http://purl.obolibrary.org/obo/NCBITaxon_70187,none +16.2617013,NCBITaxon:70219,http://purl.obolibrary.org/obo/NCBITaxon_70219,none +16.2617013,NCBITaxon:70243,http://purl.obolibrary.org/obo/NCBITaxon_70243,none +16.2617013,NCBITaxon:702718,http://purl.obolibrary.org/obo/NCBITaxon_702718,none +16.2617013,NCBITaxon:703257,http://purl.obolibrary.org/obo/NCBITaxon_703257,none +16.2617013,NCBITaxon:703493,http://purl.obolibrary.org/obo/NCBITaxon_703493,none +16.2617013,NCBITaxon:703534,http://purl.obolibrary.org/obo/NCBITaxon_703534,none +16.2617013,NCBITaxon:703535,http://purl.obolibrary.org/obo/NCBITaxon_703535,none +16.2617013,NCBITaxon:703910,http://purl.obolibrary.org/obo/NCBITaxon_703910,none +16.2617013,NCBITaxon:703913,http://purl.obolibrary.org/obo/NCBITaxon_703913,none +16.2617013,NCBITaxon:70409,http://purl.obolibrary.org/obo/NCBITaxon_70409,none +16.2617013,NCBITaxon:70447,http://purl.obolibrary.org/obo/NCBITaxon_70447,none +16.2617013,NCBITaxon:7065,http://purl.obolibrary.org/obo/NCBITaxon_7065,none +16.2617013,NCBITaxon:70821,http://purl.obolibrary.org/obo/NCBITaxon_70821,none +16.2617013,NCBITaxon:70893,http://purl.obolibrary.org/obo/NCBITaxon_70893,none +16.2617013,NCBITaxon:7102,http://purl.obolibrary.org/obo/NCBITaxon_7102,none +16.2617013,NCBITaxon:710235,http://purl.obolibrary.org/obo/NCBITaxon_710235,none +16.2617013,NCBITaxon:710545,http://purl.obolibrary.org/obo/NCBITaxon_710545,none +16.2617013,NCBITaxon:7108,http://purl.obolibrary.org/obo/NCBITaxon_7108,Spodoptera frugiperda +16.2617013,NCBITaxon:7118,http://purl.obolibrary.org/obo/NCBITaxon_7118,Antheraea +16.2617013,NCBITaxon:71243,http://purl.obolibrary.org/obo/NCBITaxon_71243,none +16.2617013,NCBITaxon:7128,http://purl.obolibrary.org/obo/NCBITaxon_7128,none +16.2617013,NCBITaxon:71323,http://purl.obolibrary.org/obo/NCBITaxon_71323,none +16.2617013,NCBITaxon:713909,http://purl.obolibrary.org/obo/NCBITaxon_713909,none +16.2617013,NCBITaxon:7140,http://purl.obolibrary.org/obo/NCBITaxon_7140,none +16.2617013,NCBITaxon:71510,http://purl.obolibrary.org/obo/NCBITaxon_71510,none +16.2617013,NCBITaxon:71511,http://purl.obolibrary.org/obo/NCBITaxon_71511,none +16.2617013,NCBITaxon:7154,http://purl.obolibrary.org/obo/NCBITaxon_7154,none +16.2617013,NCBITaxon:7174,http://purl.obolibrary.org/obo/NCBITaxon_7174,Culex +16.2617013,NCBITaxon:72033,http://purl.obolibrary.org/obo/NCBITaxon_72033,none +16.2617013,NCBITaxon:72034,http://purl.obolibrary.org/obo/NCBITaxon_72034,none +16.2617013,NCBITaxon:72045,http://purl.obolibrary.org/obo/NCBITaxon_72045,none +16.2617013,NCBITaxon:72071,http://purl.obolibrary.org/obo/NCBITaxon_72071,none +16.2617013,NCBITaxon:721789,http://purl.obolibrary.org/obo/NCBITaxon_721789,none +16.2617013,NCBITaxon:722755,http://purl.obolibrary.org/obo/NCBITaxon_722755,none +16.2617013,NCBITaxon:7239,http://purl.obolibrary.org/obo/NCBITaxon_7239,none +16.2617013,NCBITaxon:72445,http://purl.obolibrary.org/obo/NCBITaxon_72445,none +16.2617013,NCBITaxon:7252,http://purl.obolibrary.org/obo/NCBITaxon_7252,none +16.2617013,NCBITaxon:72537,http://purl.obolibrary.org/obo/NCBITaxon_72537,none +16.2617013,NCBITaxon:7268,http://purl.obolibrary.org/obo/NCBITaxon_7268,none +16.2617013,NCBITaxon:72772,http://purl.obolibrary.org/obo/NCBITaxon_72772,none +16.2617013,NCBITaxon:7289,http://purl.obolibrary.org/obo/NCBITaxon_7289,none +16.2617013,NCBITaxon:73011,http://purl.obolibrary.org/obo/NCBITaxon_73011,none +16.2617013,NCBITaxon:73108,http://purl.obolibrary.org/obo/NCBITaxon_73108,none +16.2617013,NCBITaxon:73157,http://purl.obolibrary.org/obo/NCBITaxon_73157,none +16.2617013,NCBITaxon:73917,http://purl.obolibrary.org/obo/NCBITaxon_73917,none +16.2617013,NCBITaxon:74048,http://purl.obolibrary.org/obo/NCBITaxon_74048,none +16.2617013,NCBITaxon:74049,http://purl.obolibrary.org/obo/NCBITaxon_74049,none +16.2617013,NCBITaxon:7408,http://purl.obolibrary.org/obo/NCBITaxon_7408,none +16.2617013,NCBITaxon:740971,http://purl.obolibrary.org/obo/NCBITaxon_740971,none +16.2617013,NCBITaxon:742010,http://purl.obolibrary.org/obo/NCBITaxon_742010,none +16.2617013,NCBITaxon:742011,http://purl.obolibrary.org/obo/NCBITaxon_742011,none +16.2617013,NCBITaxon:742508,http://purl.obolibrary.org/obo/NCBITaxon_742508,none +16.2617013,NCBITaxon:745063,http://purl.obolibrary.org/obo/NCBITaxon_745063,none +16.2617013,NCBITaxon:745087,http://purl.obolibrary.org/obo/NCBITaxon_745087,none +16.2617013,NCBITaxon:74537,http://purl.obolibrary.org/obo/NCBITaxon_74537,none +16.2617013,NCBITaxon:74581,http://purl.obolibrary.org/obo/NCBITaxon_74581,none +16.2617013,NCBITaxon:74663,http://purl.obolibrary.org/obo/NCBITaxon_74663,none +16.2617013,NCBITaxon:747056,http://purl.obolibrary.org/obo/NCBITaxon_747056,none +16.2617013,NCBITaxon:748667,http://purl.obolibrary.org/obo/NCBITaxon_748667,none +16.2617013,NCBITaxon:75031,http://purl.obolibrary.org/obo/NCBITaxon_75031,none +16.2617013,NCBITaxon:75032,http://purl.obolibrary.org/obo/NCBITaxon_75032,none +16.2617013,NCBITaxon:75186,http://purl.obolibrary.org/obo/NCBITaxon_75186,none +16.2617013,NCBITaxon:75359,http://purl.obolibrary.org/obo/NCBITaxon_75359,none +16.2617013,NCBITaxon:753642,http://purl.obolibrary.org/obo/NCBITaxon_753642,none +16.2617013,NCBITaxon:75381,http://purl.obolibrary.org/obo/NCBITaxon_75381,none +16.2617013,NCBITaxon:75542,http://purl.obolibrary.org/obo/NCBITaxon_75542,none +16.2617013,NCBITaxon:75740,http://purl.obolibrary.org/obo/NCBITaxon_75740,none +16.2617013,NCBITaxon:75741,http://purl.obolibrary.org/obo/NCBITaxon_75741,none +16.2617013,NCBITaxon:758677,http://purl.obolibrary.org/obo/NCBITaxon_758677,none +16.2617013,NCBITaxon:761701,http://purl.obolibrary.org/obo/NCBITaxon_761701,none +16.2617013,NCBITaxon:761702,http://purl.obolibrary.org/obo/NCBITaxon_761702,none +16.2617013,NCBITaxon:76263,http://purl.obolibrary.org/obo/NCBITaxon_76263,none +16.2617013,NCBITaxon:765312,http://purl.obolibrary.org/obo/NCBITaxon_765312,none +16.2617013,NCBITaxon:766733,http://purl.obolibrary.org/obo/NCBITaxon_766733,none +16.2617013,NCBITaxon:7672,http://purl.obolibrary.org/obo/NCBITaxon_7672,none +16.2617013,NCBITaxon:7673,http://purl.obolibrary.org/obo/NCBITaxon_7673,none +16.2617013,NCBITaxon:7681,http://purl.obolibrary.org/obo/NCBITaxon_7681,none +16.2617013,NCBITaxon:7682,http://purl.obolibrary.org/obo/NCBITaxon_7682,none +16.2617013,NCBITaxon:7721,http://purl.obolibrary.org/obo/NCBITaxon_7721,none +16.2617013,NCBITaxon:77344,http://purl.obolibrary.org/obo/NCBITaxon_77344,none +16.2617013,NCBITaxon:77757,http://purl.obolibrary.org/obo/NCBITaxon_77757,none +16.2617013,NCBITaxon:78168,http://purl.obolibrary.org/obo/NCBITaxon_78168,none +16.2617013,NCBITaxon:78381,http://purl.obolibrary.org/obo/NCBITaxon_78381,none +16.2617013,NCBITaxon:78395,http://purl.obolibrary.org/obo/NCBITaxon_78395,none +16.2617013,NCBITaxon:78522,http://purl.obolibrary.org/obo/NCBITaxon_78522,none +16.2617013,NCBITaxon:7858,http://purl.obolibrary.org/obo/NCBITaxon_7858,none +16.2617013,NCBITaxon:79205,http://purl.obolibrary.org/obo/NCBITaxon_79205,none +16.2617013,NCBITaxon:796352,http://purl.obolibrary.org/obo/NCBITaxon_796352,none +16.2617013,NCBITaxon:79890,http://purl.obolibrary.org/obo/NCBITaxon_79890,none +16.2617013,NCBITaxon:79918,http://purl.obolibrary.org/obo/NCBITaxon_79918,none +16.2617013,NCBITaxon:7999,http://purl.obolibrary.org/obo/NCBITaxon_7999,none +16.2617013,NCBITaxon:80271,http://purl.obolibrary.org/obo/NCBITaxon_80271,none +16.2617013,NCBITaxon:8043,http://purl.obolibrary.org/obo/NCBITaxon_8043,Gadiformes +16.2617013,NCBITaxon:8045,http://purl.obolibrary.org/obo/NCBITaxon_8045,Gadidae +16.2617013,NCBITaxon:8077,http://purl.obolibrary.org/obo/NCBITaxon_8077,none +16.2617013,NCBITaxon:80832,http://purl.obolibrary.org/obo/NCBITaxon_80832,none +16.2617013,NCBITaxon:81689,http://purl.obolibrary.org/obo/NCBITaxon_81689,none +16.2617013,NCBITaxon:81707,http://purl.obolibrary.org/obo/NCBITaxon_81707,none +16.2617013,NCBITaxon:81945,http://purl.obolibrary.org/obo/NCBITaxon_81945,none +16.2617013,NCBITaxon:82804,http://purl.obolibrary.org/obo/NCBITaxon_82804,none +16.2617013,NCBITaxon:82847,http://purl.obolibrary.org/obo/NCBITaxon_82847,none +16.2617013,NCBITaxon:830,http://purl.obolibrary.org/obo/NCBITaxon_830,none +16.2617013,NCBITaxon:83136,http://purl.obolibrary.org/obo/NCBITaxon_83136,Trombidiformes +16.2617013,NCBITaxon:83484,http://purl.obolibrary.org/obo/NCBITaxon_83484,none +16.2617013,NCBITaxon:83485,http://purl.obolibrary.org/obo/NCBITaxon_83485,none +16.2617013,NCBITaxon:83551,http://purl.obolibrary.org/obo/NCBITaxon_83551,none +16.2617013,NCBITaxon:836,http://purl.obolibrary.org/obo/NCBITaxon_836,Porphyromonas +16.2617013,NCBITaxon:8404,http://purl.obolibrary.org/obo/NCBITaxon_8404,none +16.2617013,NCBITaxon:84059,http://purl.obolibrary.org/obo/NCBITaxon_84059,none +16.2617013,NCBITaxon:8406,http://purl.obolibrary.org/obo/NCBITaxon_8406,none +16.2617013,NCBITaxon:84070,http://purl.obolibrary.org/obo/NCBITaxon_84070,none +16.2617013,NCBITaxon:8412,http://purl.obolibrary.org/obo/NCBITaxon_8412,none +16.2617013,NCBITaxon:8419,http://purl.obolibrary.org/obo/NCBITaxon_8419,none +16.2617013,NCBITaxon:84398,http://purl.obolibrary.org/obo/NCBITaxon_84398,none +16.2617013,NCBITaxon:84399,http://purl.obolibrary.org/obo/NCBITaxon_84399,none +16.2617013,NCBITaxon:8465,http://purl.obolibrary.org/obo/NCBITaxon_8465,none +16.2617013,NCBITaxon:8468,http://purl.obolibrary.org/obo/NCBITaxon_8468,none +16.2617013,NCBITaxon:84858,http://purl.obolibrary.org/obo/NCBITaxon_84858,none +16.2617013,NCBITaxon:8528,http://purl.obolibrary.org/obo/NCBITaxon_8528,none +16.2617013,NCBITaxon:85309,http://purl.obolibrary.org/obo/NCBITaxon_85309,none +16.2617013,NCBITaxon:85310,http://purl.obolibrary.org/obo/NCBITaxon_85310,none +16.2617013,NCBITaxon:85617,http://purl.obolibrary.org/obo/NCBITaxon_85617,none +16.2617013,NCBITaxon:857474,http://purl.obolibrary.org/obo/NCBITaxon_857474,none +16.2617013,NCBITaxon:8604,http://purl.obolibrary.org/obo/NCBITaxon_8604,none +16.2617013,NCBITaxon:8605,http://purl.obolibrary.org/obo/NCBITaxon_8605,none +16.2617013,NCBITaxon:862241,http://purl.obolibrary.org/obo/NCBITaxon_862241,none +16.2617013,NCBITaxon:862944,http://purl.obolibrary.org/obo/NCBITaxon_862944,none +16.2617013,NCBITaxon:864176,http://purl.obolibrary.org/obo/NCBITaxon_864176,none +16.2617013,NCBITaxon:864177,http://purl.obolibrary.org/obo/NCBITaxon_864177,none +16.2617013,NCBITaxon:866084,http://purl.obolibrary.org/obo/NCBITaxon_866084,none +16.2617013,NCBITaxon:86619,http://purl.obolibrary.org/obo/NCBITaxon_86619,none +16.2617013,NCBITaxon:86974,http://purl.obolibrary.org/obo/NCBITaxon_86974,none +16.2617013,NCBITaxon:8721,http://purl.obolibrary.org/obo/NCBITaxon_8721,none +16.2617013,NCBITaxon:8725,http://purl.obolibrary.org/obo/NCBITaxon_8725,none +16.2617013,NCBITaxon:8728,http://purl.obolibrary.org/obo/NCBITaxon_8728,none +16.2617013,NCBITaxon:873160,http://purl.obolibrary.org/obo/NCBITaxon_873160,none +16.2617013,NCBITaxon:87877,http://purl.obolibrary.org/obo/NCBITaxon_87877,none +16.2617013,NCBITaxon:879476,http://purl.obolibrary.org/obo/NCBITaxon_879476,none +16.2617013,NCBITaxon:883876,http://purl.obolibrary.org/obo/NCBITaxon_883876,none +16.2617013,NCBITaxon:8842,http://purl.obolibrary.org/obo/NCBITaxon_8842,Anser +16.2617013,NCBITaxon:8847,http://purl.obolibrary.org/obo/NCBITaxon_8847,none +16.2617013,NCBITaxon:88560,http://purl.obolibrary.org/obo/NCBITaxon_88560,none +16.2617013,NCBITaxon:8867,http://purl.obolibrary.org/obo/NCBITaxon_8867,none +16.2617013,NCBITaxon:8868,http://purl.obolibrary.org/obo/NCBITaxon_8868,none +16.2617013,NCBITaxon:889338,http://purl.obolibrary.org/obo/NCBITaxon_889338,none +16.2617013,NCBITaxon:8906,http://purl.obolibrary.org/obo/NCBITaxon_8906,none +16.2617013,NCBITaxon:8931,http://purl.obolibrary.org/obo/NCBITaxon_8931,none +16.2617013,NCBITaxon:89456,http://purl.obolibrary.org/obo/NCBITaxon_89456,none +16.2617013,NCBITaxon:905054,http://purl.obolibrary.org/obo/NCBITaxon_905054,none +16.2617013,NCBITaxon:905818,http://purl.obolibrary.org/obo/NCBITaxon_905818,none +16.2617013,NCBITaxon:908225,http://purl.obolibrary.org/obo/NCBITaxon_908225,none +16.2617013,NCBITaxon:909208,http://purl.obolibrary.org/obo/NCBITaxon_909208,none +16.2617013,NCBITaxon:914,http://purl.obolibrary.org/obo/NCBITaxon_914,none +16.2617013,NCBITaxon:914216,http://purl.obolibrary.org/obo/NCBITaxon_914216,none +16.2617013,NCBITaxon:914217,http://purl.obolibrary.org/obo/NCBITaxon_914217,none +16.2617013,NCBITaxon:91513,http://purl.obolibrary.org/obo/NCBITaxon_91513,none +16.2617013,NCBITaxon:91893,http://purl.obolibrary.org/obo/NCBITaxon_91893,none +16.2617013,NCBITaxon:9219,http://purl.obolibrary.org/obo/NCBITaxon_9219,none +16.2617013,NCBITaxon:92443,http://purl.obolibrary.org/obo/NCBITaxon_92443,none +16.2617013,NCBITaxon:92625,http://purl.obolibrary.org/obo/NCBITaxon_92625,none +16.2617013,NCBITaxon:92713,http://purl.obolibrary.org/obo/NCBITaxon_92713,none +16.2617013,NCBITaxon:928315,http://purl.obolibrary.org/obo/NCBITaxon_928315,none +16.2617013,NCBITaxon:930167,http://purl.obolibrary.org/obo/NCBITaxon_930167,none +16.2617013,NCBITaxon:930168,http://purl.obolibrary.org/obo/NCBITaxon_930168,none +16.2617013,NCBITaxon:931972,http://purl.obolibrary.org/obo/NCBITaxon_931972,none +16.2617013,NCBITaxon:932070,http://purl.obolibrary.org/obo/NCBITaxon_932070,none +16.2617013,NCBITaxon:932071,http://purl.obolibrary.org/obo/NCBITaxon_932071,none +16.2617013,NCBITaxon:9337,http://purl.obolibrary.org/obo/NCBITaxon_9337,none +16.2617013,NCBITaxon:93389,http://purl.obolibrary.org/obo/NCBITaxon_93389,none +16.2617013,NCBITaxon:936004,http://purl.obolibrary.org/obo/NCBITaxon_936004,none +16.2617013,NCBITaxon:9364,http://purl.obolibrary.org/obo/NCBITaxon_9364,Erinaceus +16.2617013,NCBITaxon:93874,http://purl.obolibrary.org/obo/NCBITaxon_93874,none +16.2617013,NCBITaxon:93875,http://purl.obolibrary.org/obo/NCBITaxon_93875,none +16.2617013,NCBITaxon:9402,http://purl.obolibrary.org/obo/NCBITaxon_9402,none +16.2617013,NCBITaxon:940280,http://purl.obolibrary.org/obo/NCBITaxon_940280,none +16.2617013,NCBITaxon:941058,http://purl.obolibrary.org/obo/NCBITaxon_941058,none +16.2617013,NCBITaxon:94111,http://purl.obolibrary.org/obo/NCBITaxon_94111,none +16.2617013,NCBITaxon:94248,http://purl.obolibrary.org/obo/NCBITaxon_94248,none +16.2617013,NCBITaxon:94326,http://purl.obolibrary.org/obo/NCBITaxon_94326,none +16.2617013,NCBITaxon:943925,http://purl.obolibrary.org/obo/NCBITaxon_943925,none +16.2617013,NCBITaxon:945943,http://purl.obolibrary.org/obo/NCBITaxon_945943,none +16.2617013,NCBITaxon:94695,http://purl.obolibrary.org/obo/NCBITaxon_94695,none +16.2617013,NCBITaxon:94700,http://purl.obolibrary.org/obo/NCBITaxon_94700,none +16.2617013,NCBITaxon:94967,http://purl.obolibrary.org/obo/NCBITaxon_94967,none +16.2617013,NCBITaxon:94992,http://purl.obolibrary.org/obo/NCBITaxon_94992,none +16.2617013,NCBITaxon:94993,http://purl.obolibrary.org/obo/NCBITaxon_94993,none +16.2617013,NCBITaxon:9515,http://purl.obolibrary.org/obo/NCBITaxon_9515,none +16.2617013,NCBITaxon:95197,http://purl.obolibrary.org/obo/NCBITaxon_95197,none +16.2617013,NCBITaxon:95244,http://purl.obolibrary.org/obo/NCBITaxon_95244,none +16.2617013,NCBITaxon:9529,http://purl.obolibrary.org/obo/NCBITaxon_9529,Cercocebus +16.2617013,NCBITaxon:95525,http://purl.obolibrary.org/obo/NCBITaxon_95525,none +16.2617013,NCBITaxon:9592,http://purl.obolibrary.org/obo/NCBITaxon_9592,Gorilla +16.2617013,NCBITaxon:96235,http://purl.obolibrary.org/obo/NCBITaxon_96235,none +16.2617013,NCBITaxon:96236,http://purl.obolibrary.org/obo/NCBITaxon_96236,none +16.2617013,NCBITaxon:96428,http://purl.obolibrary.org/obo/NCBITaxon_96428,none +16.2617013,NCBITaxon:96459,http://purl.obolibrary.org/obo/NCBITaxon_96459,none +16.2617013,NCBITaxon:97129,http://purl.obolibrary.org/obo/NCBITaxon_97129,none +16.2617013,NCBITaxon:97264,http://purl.obolibrary.org/obo/NCBITaxon_97264,none +16.2617013,NCBITaxon:97265,http://purl.obolibrary.org/obo/NCBITaxon_97265,none +16.2617013,NCBITaxon:97748,http://purl.obolibrary.org/obo/NCBITaxon_97748,none +16.2617013,NCBITaxon:977774,http://purl.obolibrary.org/obo/NCBITaxon_977774,none +16.2617013,NCBITaxon:978,http://purl.obolibrary.org/obo/NCBITaxon_978,none +16.2617013,NCBITaxon:980353,http://purl.obolibrary.org/obo/NCBITaxon_980353,none +16.2617013,NCBITaxon:98297,http://purl.obolibrary.org/obo/NCBITaxon_98297,none +16.2617013,NCBITaxon:983535,http://purl.obolibrary.org/obo/NCBITaxon_983535,none +16.2617013,NCBITaxon:985683,http://purl.obolibrary.org/obo/NCBITaxon_985683,none +16.2617013,NCBITaxon:985782,http://purl.obolibrary.org/obo/NCBITaxon_985782,none +16.2617013,NCBITaxon:98661,http://purl.obolibrary.org/obo/NCBITaxon_98661,none +16.2617013,NCBITaxon:9889,http://purl.obolibrary.org/obo/NCBITaxon_9889,none +16.2617013,NCBITaxon:9890,http://purl.obolibrary.org/obo/NCBITaxon_9890,none +16.2617013,NCBITaxon:9891,http://purl.obolibrary.org/obo/NCBITaxon_9891,none +16.2617013,NCBITaxon:992,http://purl.obolibrary.org/obo/NCBITaxon_992,none +16.2617013,NCBITaxon:994388,http://purl.obolibrary.org/obo/NCBITaxon_994388,none +16.2617013,NCBITaxon:99585,http://purl.obolibrary.org/obo/NCBITaxon_99585,none +16.2617013,NCBITaxon:99677,http://purl.obolibrary.org/obo/NCBITaxon_99677,none +16.2617013,NCBITaxon:99678,http://purl.obolibrary.org/obo/NCBITaxon_99678,none +16.2617013,NCBITaxon:997,http://purl.obolibrary.org/obo/NCBITaxon_997,none +16.2617013,NCBITaxon:997078,http://purl.obolibrary.org/obo/NCBITaxon_997078,none +16.2617013,NCBITaxon:99826,http://purl.obolibrary.org/obo/NCBITaxon_99826,none +16.2617013,NCBITaxon:subspecies,http://purl.obolibrary.org/obo/NCBITaxon_subspecies,none +16.2617013,PR:000000217,http://purl.obolibrary.org/obo/PR_000000217,activin/inhibin beta B chain +16.2617013,PR:000001509,http://purl.obolibrary.org/obo/PR_000001509,probable G-protein coupled receptor 146 +16.2617013,PR:000001516,http://purl.obolibrary.org/obo/PR_000001516,probable G-protein coupled receptor 160 +16.2617013,PR:000001690,http://purl.obolibrary.org/obo/PR_000001690,none +16.2617013,PR:000002213,http://purl.obolibrary.org/obo/PR_000002213,none +16.2617013,PR:000003335,http://purl.obolibrary.org/obo/PR_000003335,collagen alpha-5(IV) chain isoform 1 +16.2617013,PR:000003336,http://purl.obolibrary.org/obo/PR_000003336,none +16.2617013,PR:000003354,http://purl.obolibrary.org/obo/PR_000003354,collagen alpha-1(VI) chain isoform 1 +16.2617013,PR:000003355,http://purl.obolibrary.org/obo/PR_000003355,none +16.2617013,PR:000003478,http://purl.obolibrary.org/obo/PR_000003478,none +16.2617013,PR:000003530,http://purl.obolibrary.org/obo/PR_000003530,beta-alanine-activating enzyme +16.2617013,PR:000003645,http://purl.obolibrary.org/obo/PR_000003645,acyl-coenzyme A oxidase-like protein +16.2617013,PR:000003668,http://purl.obolibrary.org/obo/PR_000003668,"acyl-coenzyme A synthetase ACSM4, mitochondrial" +16.2617013,PR:000003670,http://purl.obolibrary.org/obo/PR_000003670,"acyl-coenzyme A synthetase ACSM6, mitochondrial" +16.2617013,PR:000003701,http://purl.obolibrary.org/obo/PR_000003701,actin-related protein T1 +16.2617013,PR:000003804,http://purl.obolibrary.org/obo/PR_000003804,actin filament-associated protein 1-like 2 +16.2617013,PR:000003818,http://purl.obolibrary.org/obo/PR_000003818,"Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 4" +16.2617013,PR:000003820,http://purl.obolibrary.org/obo/PR_000003820,"putative Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 7" +16.2617013,PR:000003852,http://purl.obolibrary.org/obo/PR_000003852,alanine--glyoxylate aminotransferase 2-like 2 +16.2617013,PR:000003861,http://purl.obolibrary.org/obo/PR_000003861,putative activator of 90 kDa heat shock protein ATPase homolog 2 +16.2617013,PR:000003910,http://purl.obolibrary.org/obo/PR_000003910,aflatoxin B1 aldehyde reductase member 4 +16.2617013,PR:000003995,http://purl.obolibrary.org/obo/PR_000003995,AMMECR1-like protein +16.2617013,PR:000004011,http://purl.obolibrary.org/obo/PR_000004011,archaemetzincin-2 +16.2617013,PR:000004021,http://purl.obolibrary.org/obo/PR_000004021,protein angel homolog 1 +16.2617013,PR:000004038,http://purl.obolibrary.org/obo/PR_000004038,ankyrin repeat and IBR domain-containing protein 1 +16.2617013,PR:000004048,http://purl.obolibrary.org/obo/PR_000004048,serine/threonine-protein phosphatase 6 regulatory ankyrin repeat subunit B +16.2617013,PR:000004161,http://purl.obolibrary.org/obo/PR_000004161,apolipoprotein L4 +16.2617013,PR:000004181,http://purl.obolibrary.org/obo/PR_000004181,aquaporin-12B +16.2617013,PR:000004216,http://purl.obolibrary.org/obo/PR_000004216,arginine-fifty homeobox +16.2617013,PR:000004276,http://purl.obolibrary.org/obo/PR_000004276,ADP-ribosylation factor-like protein 13A +16.2617013,PR:000004280,http://purl.obolibrary.org/obo/PR_000004280,ADP-ribosylation factor-like protein 16 +16.2617013,PR:000004281,http://purl.obolibrary.org/obo/PR_000004281,none +16.2617013,PR:000004297,http://purl.obolibrary.org/obo/PR_000004297,ADP-ribosylation factor-like protein 9 +16.2617013,PR:000004344,http://purl.obolibrary.org/obo/PR_000004344,ankyrin repeat and SOCS box protein 12 +16.2617013,PR:000004345,http://purl.obolibrary.org/obo/PR_000004345,ankyrin repeat and SOCS box protein 13 +16.2617013,PR:000004366,http://purl.obolibrary.org/obo/PR_000004366,achaete-scute homolog 5 +16.2617013,PR:000004393,http://purl.obolibrary.org/obo/PR_000004393,protein ATAD4 +16.2617013,PR:000004422,http://purl.obolibrary.org/obo/PR_000004422,protein-glucosylgalactosylhydroxylysine glucosidase +16.2617013,PR:000004441,http://purl.obolibrary.org/obo/PR_000004441,protein ATP1B4 +16.2617013,PR:000004511,http://purl.obolibrary.org/obo/PR_000004511,ataxin-7-like protein 3 +16.2617013,PR:000004524,http://purl.obolibrary.org/obo/PR_000004524,arginine vasopressin-induced protein 1 +16.2617013,PR:000004542,http://purl.obolibrary.org/obo/PR_000004542,none +16.2617013,PR:000004543,http://purl.obolibrary.org/obo/PR_000004543,none +16.2617013,PR:000004546,http://purl.obolibrary.org/obo/PR_000004546,none +16.2617013,PR:000004548,http://purl.obolibrary.org/obo/PR_000004548,none +16.2617013,PR:000004551,http://purl.obolibrary.org/obo/PR_000004551,none +16.2617013,PR:000004581,http://purl.obolibrary.org/obo/PR_000004581,"UDP-GalNAc:beta-1,3-N-acetylgalactosaminyltransferase 1" +16.2617013,PR:000004583,http://purl.obolibrary.org/obo/PR_000004583,"beta-1,3-galactosyltransferase 1" +16.2617013,PR:000004591,http://purl.obolibrary.org/obo/PR_000004591,"beta-1,4-glucuronyltransferase 1" +16.2617013,PR:000004600,http://purl.obolibrary.org/obo/PR_000004600,"UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like protein 1" +16.2617013,PR:000004607,http://purl.obolibrary.org/obo/PR_000004607,"beta-1,4-galactosyltransferase 3" +16.2617013,PR:000004612,http://purl.obolibrary.org/obo/PR_000004612,B9 domain-containing protein 2 +16.2617013,PR:000004613,http://purl.obolibrary.org/obo/PR_000004613,brain and acute leukemia cytoplasmic protein +16.2617013,PR:000004696,http://purl.obolibrary.org/obo/PR_000004696,apoptosis facilitator Bcl-2-like protein 14 +16.2617013,PR:000004786,http://purl.obolibrary.org/obo/PR_000004786,BolA-like protein 1 +16.2617013,PR:000005013,http://purl.obolibrary.org/obo/PR_000005013,calpain-13 +16.2617013,PR:000005045,http://purl.obolibrary.org/obo/PR_000005045,"cysteine--tRNA ligase, cytoplasmic" +16.2617013,PR:000005102,http://purl.obolibrary.org/obo/PR_000005102,thyroid transcription factor 1-associated protein 26 +16.2617013,PR:000005160,http://purl.obolibrary.org/obo/PR_000005160,CD164 sialomucin-like 2 protein +16.2617013,PR:000005186,http://purl.obolibrary.org/obo/PR_000005186,dual specificity protein phosphatase CDC14C +16.2617013,PR:000005272,http://purl.obolibrary.org/obo/PR_000005272,cyclin-dependent kinase-like 4 +16.2617013,PR:000005315,http://purl.obolibrary.org/obo/PR_000005315,haloacid dehalogenase-like hydrolase domain-containing 5 +16.2617013,PR:000005334,http://purl.obolibrary.org/obo/PR_000005334,centromere protein N +16.2617013,PR:000005348,http://purl.obolibrary.org/obo/PR_000005348,HAUS augmin-like complex subunit 2 +16.2617013,PR:000005362,http://purl.obolibrary.org/obo/PR_000005362,glycosyltransferase 25 family member 3 +16.2617013,PR:000005606,http://purl.obolibrary.org/obo/PR_000005606,clarin-2 +16.2617013,PR:000005719,http://purl.obolibrary.org/obo/PR_000005719,collagen alpha-6(VI) chain +16.2617013,PR:000005749,http://purl.obolibrary.org/obo/PR_000005749,"coenzyme Q-binding protein COQ10 homolog A, mitochondrial" +16.2617013,PR:000005750,http://purl.obolibrary.org/obo/PR_000005750,"coenzyme Q-binding protein COQ10 homolog B, mitochondrial" +16.2617013,PR:000005817,http://purl.obolibrary.org/obo/PR_000005817,copine-2 +16.2617013,PR:000005944,http://purl.obolibrary.org/obo/PR_000005944,casein kinase I isoform alpha-like +16.2617013,PR:000005956,http://purl.obolibrary.org/obo/PR_000005956,cysteine/serine-rich nuclear protein 2 +16.2617013,PR:000005980,http://purl.obolibrary.org/obo/PR_000005980,cancer/testis antigen family 45 member A1 +16.2617013,PR:000005981,http://purl.obolibrary.org/obo/PR_000005981,cancer/testis antigen family 45 member A2 +16.2617013,PR:000006041,http://purl.obolibrary.org/obo/PR_000006041,cortexin-2 +16.2617013,PR:000006112,http://purl.obolibrary.org/obo/PR_000006112,cytochrome P450 27C1 +16.2617013,PR:000006136,http://purl.obolibrary.org/obo/PR_000006136,cytochrome P450 4A22 +16.2617013,PR:000006172,http://purl.obolibrary.org/obo/PR_000006172,CD209 molecule-like protein B +16.2617013,PR:000006187,http://purl.obolibrary.org/obo/PR_000006187,none +16.2617013,PR:000006189,http://purl.obolibrary.org/obo/PR_000006189,none +16.2617013,PR:000006196,http://purl.obolibrary.org/obo/PR_000006196,none +16.2617013,PR:000006232,http://purl.obolibrary.org/obo/PR_000006232,none +16.2617013,PR:000006318,http://purl.obolibrary.org/obo/PR_000006318,mRNA-decapping enzyme 1B +16.2617013,PR:000006392,http://purl.obolibrary.org/obo/PR_000006392,beta-defensin 113 +16.2617013,PR:000006395,http://purl.obolibrary.org/obo/PR_000006395,beta-defensin 116 +16.2617013,PR:000006400,http://purl.obolibrary.org/obo/PR_000006400,beta-defensin 124 +16.2617013,PR:000006405,http://purl.obolibrary.org/obo/PR_000006405,beta-defensin 129 +16.2617013,PR:000006467,http://purl.obolibrary.org/obo/PR_000006467,dehydrogenase/reductase SDR family member 4-like 2 +16.2617013,PR:000006484,http://purl.obolibrary.org/obo/PR_000006484,disco-interacting protein 2 homolog B +16.2617013,PR:000006492,http://purl.obolibrary.org/obo/PR_000006492,DIS3-like exonuclease 1 +16.2617013,PR:000006584,http://purl.obolibrary.org/obo/PR_000006584,DnaJ homolog subfamily C member 22 +16.2617013,PR:000006600,http://purl.obolibrary.org/obo/PR_000006600,DNL-type zinc finger protein +16.2617013,PR:000006635,http://purl.obolibrary.org/obo/PR_000006635,dolichol kinase +16.2617013,PR:000006684,http://purl.obolibrary.org/obo/PR_000006684,ATP-dependent RNA helicase DQX1 +16.2617013,PR:000006735,http://purl.obolibrary.org/obo/PR_000006735,tRNA-dihydrouridine synthase 4-like +16.2617013,PR:000006747,http://purl.obolibrary.org/obo/PR_000006747,dual specificity protein phosphatase 21 +16.2617013,PR:000006773,http://purl.obolibrary.org/obo/PR_000006773,cytoplasmic dynein 1 light intermediate chain 1 +16.2617013,PR:000006788,http://purl.obolibrary.org/obo/PR_000006788,dystrotelin +16.2617013,PR:000006791,http://purl.obolibrary.org/obo/PR_000006791,zinc finger protein DZIP1L +16.2617013,PR:000006816,http://purl.obolibrary.org/obo/PR_000006816,none +16.2617013,PR:000006833,http://purl.obolibrary.org/obo/PR_000006833,none +16.2617013,PR:000006843,http://purl.obolibrary.org/obo/PR_000006843,none +16.2617013,PR:000006884,http://purl.obolibrary.org/obo/PR_000006884,"evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial" +16.2617013,PR:000006925,http://purl.obolibrary.org/obo/PR_000006925,protein EFR3 homolog B +16.2617013,PR:000007061,http://purl.obolibrary.org/obo/PR_000007061,echinoderm microtubule-associated protein-like 6 +16.2617013,PR:000007150,http://purl.obolibrary.org/obo/PR_000007150,epidermal growth factor receptor kinase substrate 8-like protein 3 +16.2617013,PR:000007188,http://purl.obolibrary.org/obo/PR_000007188,ERO1-like protein beta +16.2617013,PR:000007244,http://purl.obolibrary.org/obo/PR_000007244,exocrine differentiation and proliferation factor +16.2617013,PR:000007249,http://purl.obolibrary.org/obo/PR_000007249,exocyst complex component 3-like protein +16.2617013,PR:000007373,http://purl.obolibrary.org/obo/PR_000007373,F-box/LRR-repeat protein 15 +16.2617013,PR:000007407,http://purl.obolibrary.org/obo/PR_000007407,F-box only protein 39 +16.2617013,PR:000007451,http://purl.obolibrary.org/obo/PR_000007451,"ferredoxin-2, mitochondrial" +16.2617013,PR:000007521,http://purl.obolibrary.org/obo/PR_000007521,factor in the germline alpha +16.2617013,PR:000007582,http://purl.obolibrary.org/obo/PR_000007582,fructosamine-3-kinase +16.2617013,PR:000007673,http://purl.obolibrary.org/obo/PR_000007673,protein furry-like +16.2617013,PR:000007693,http://purl.obolibrary.org/obo/PR_000007693,"ferritin, mitochondrial" +16.2617013,PR:000007703,http://purl.obolibrary.org/obo/PR_000007703,"alpha-(1,3)-fucosyltransferase 10" +16.2617013,PR:000007756,http://purl.obolibrary.org/obo/PR_000007756,GRB2-associated-binding protein 4 +16.2617013,PR:000007760,http://purl.obolibrary.org/obo/PR_000007760,gamma-aminobutyric acid receptor-associated protein-like 3 +16.2617013,PR:000007795,http://purl.obolibrary.org/obo/PR_000007795,G antigen 12I +16.2617013,PR:000007799,http://purl.obolibrary.org/obo/PR_000007799,none +16.2617013,PR:000007851,http://purl.obolibrary.org/obo/PR_000007851,GAS2-like protein 2 +16.2617013,PR:000007914,http://purl.obolibrary.org/obo/PR_000007914,ganglioside-induced differentiation-associated protein 2 +16.2617013,PR:000007945,http://purl.obolibrary.org/obo/PR_000007945,glucose-fructose oxidoreductase domain-containing protein 2 +16.2617013,PR:000008019,http://purl.obolibrary.org/obo/PR_000008019,beta-galactosidase-1-like protein 3 +16.2617013,PR:000008032,http://purl.obolibrary.org/obo/PR_000008032,GLIPR1-like protein 2 +16.2617013,PR:000008062,http://purl.obolibrary.org/obo/PR_000008062,glycine N-acyltransferase-like protein 3 +16.2617013,PR:000008136,http://purl.obolibrary.org/obo/PR_000008136,golgin subfamily A member 7B +16.2617013,PR:000008273,http://purl.obolibrary.org/obo/PR_000008273,"GrpE protein homolog 2, mitochondrial" +16.2617013,PR:000008310,http://purl.obolibrary.org/obo/PR_000008310,transcription initiation factor IIA subunit 1 +16.2617013,PR:000008314,http://purl.obolibrary.org/obo/PR_000008314,general transcription factor IIE subunit 1 +16.2617013,PR:000008319,http://purl.obolibrary.org/obo/PR_000008319,general transcription factor IIH subunit 3 +16.2617013,PR:000008325,http://purl.obolibrary.org/obo/PR_000008325,general transcription factor 3C polypeptide 1 +16.2617013,PR:000008329,http://purl.obolibrary.org/obo/PR_000008329,general transcription factor 3C polypeptide 5 +16.2617013,PR:000008338,http://purl.obolibrary.org/obo/PR_000008338,GTP-binding protein 8 +16.2617013,PR:000008386,http://purl.obolibrary.org/obo/PR_000008386,none +16.2617013,PR:000008416,http://purl.obolibrary.org/obo/PR_000008416,histone H2A.J +16.2617013,PR:000008495,http://purl.obolibrary.org/obo/PR_000008495,solute carrier family 25 member 47 +16.2617013,PR:000008545,http://purl.obolibrary.org/obo/PR_000008545,HERV-H LTR-associating protein 3 +16.2617013,PR:000008580,http://purl.obolibrary.org/obo/PR_000008580,histone H2A type 1-A +16.2617013,PR:000008589,http://purl.obolibrary.org/obo/PR_000008589,histone H2B type 1-H +16.2617013,PR:000008592,http://purl.obolibrary.org/obo/PR_000008592,histone H2B type 1-L +16.2617013,PR:000008593,http://purl.obolibrary.org/obo/PR_000008593,histone H2B type 1-M +16.2617013,PR:000008598,http://purl.obolibrary.org/obo/PR_000008598,histone H2B type 2-E +16.2617013,PR:000008750,http://purl.obolibrary.org/obo/PR_000008750,histidine-rich carboxyl terminus protein 1 +16.2617013,PR:000008764,http://purl.obolibrary.org/obo/PR_000008764,heparan sulfate glucosamine 3-O-sulfotransferase 6 +16.2617013,PR:000008777,http://purl.obolibrary.org/obo/PR_000008777,17-beta-hydroxysteroid dehydrogenase 13 +16.2617013,PR:000008868,http://purl.obolibrary.org/obo/PR_000008868,none +16.2617013,PR:000008879,http://purl.obolibrary.org/obo/PR_000008879,inhibitor of Bruton tyrosine kinase +16.2617013,PR:000008973,http://purl.obolibrary.org/obo/PR_000008973,protein turtle homolog B +16.2617013,PR:000008987,http://purl.obolibrary.org/obo/PR_000008987,interleukin-1 family member 10 +16.2617013,PR:000009012,http://purl.obolibrary.org/obo/PR_000009012,mitochondrial inner membrane protease subunit 1 +16.2617013,PR:000009124,http://purl.obolibrary.org/obo/PR_000009124,protein FAM234A +16.2617013,PR:000009163,http://purl.obolibrary.org/obo/PR_000009163,"inositol 1,4,5-trisphosphate receptor-interacting protein-like 2" +16.2617013,PR:000009179,http://purl.obolibrary.org/obo/PR_000009179,none +16.2617013,PR:000009187,http://purl.obolibrary.org/obo/PR_000009187,none +16.2617013,PR:000009192,http://purl.obolibrary.org/obo/PR_000009192,none +16.2617013,PR:000009201,http://purl.obolibrary.org/obo/PR_000009201,Janus kinase and microtubule-interacting protein 3 +16.2617013,PR:000009394,http://purl.obolibrary.org/obo/PR_000009394,kelch-like protein 32 +16.2617013,PR:000009396,http://purl.obolibrary.org/obo/PR_000009396,kelch-like protein 34 +16.2617013,PR:000009398,http://purl.obolibrary.org/obo/PR_000009398,kelch-like protein 36 +16.2617013,PR:000009443,http://purl.obolibrary.org/obo/PR_000009443,protein KRBA1 +16.2617013,PR:000009444,http://purl.obolibrary.org/obo/PR_000009444,lysine-rich coiled-coil protein 1 +16.2617013,PR:000009529,http://purl.obolibrary.org/obo/PR_000009529,keratin-associated protein 17-1 +16.2617013,PR:000009532,http://purl.obolibrary.org/obo/PR_000009532,keratin-associated protein 19-3 +16.2617013,PR:000009540,http://purl.obolibrary.org/obo/PR_000009540,keratin-associated protein 2-3 +16.2617013,PR:000009541,http://purl.obolibrary.org/obo/PR_000009541,keratin-associated protein 2-4 +16.2617013,PR:000009543,http://purl.obolibrary.org/obo/PR_000009543,keratin-associated protein 20-2 +16.2617013,PR:000009547,http://purl.obolibrary.org/obo/PR_000009547,keratin-associated protein 22-1 +16.2617013,PR:000009560,http://purl.obolibrary.org/obo/PR_000009560,keratin-associated protein 4-2 +16.2617013,PR:000009605,http://purl.obolibrary.org/obo/PR_000009605,none +16.2617013,PR:000009619,http://purl.obolibrary.org/obo/PR_000009619,none +16.2617013,PR:000009645,http://purl.obolibrary.org/obo/PR_000009645,extracellular glycoprotein lacritin +16.2617013,PR:000009703,http://purl.obolibrary.org/obo/PR_000009703,late cornified envelope protein 1E +16.2617013,PR:000009705,http://purl.obolibrary.org/obo/PR_000009705,late cornified envelope protein 2A +16.2617013,PR:000009706,http://purl.obolibrary.org/obo/PR_000009706,late cornified envelope protein 2B +16.2617013,PR:000009709,http://purl.obolibrary.org/obo/PR_000009709,late cornified envelope protein 3A +16.2617013,PR:000009715,http://purl.obolibrary.org/obo/PR_000009715,late cornified envelope protein 5A +16.2617013,PR:000009722,http://purl.obolibrary.org/obo/PR_000009722,epididymal-specific lipocalin-10 +16.2617013,PR:000009723,http://purl.obolibrary.org/obo/PR_000009723,epididymal-specific lipocalin-12 +16.2617013,PR:000009740,http://purl.obolibrary.org/obo/PR_000009740,L-lactate dehydrogenase A-like 6A +16.2617013,PR:000009778,http://purl.obolibrary.org/obo/PR_000009778,galectin-9C +16.2617013,PR:000009829,http://purl.obolibrary.org/obo/PR_000009829,E3 ubiquitin-protein ligase NEURL3 +16.2617013,PR:000009849,http://purl.obolibrary.org/obo/PR_000009849,protein LLP +16.2617013,PR:000009879,http://purl.obolibrary.org/obo/PR_000009879,loss of heterozygosity 3 chromosomal region 2 gene A protein +16.2617013,PR:000009985,http://purl.obolibrary.org/obo/PR_000009985,leucine zipper protein 6 +16.2617013,PR:000010018,http://purl.obolibrary.org/obo/PR_000010018,protein LZIC +16.2617013,PR:000010086,http://purl.obolibrary.org/obo/PR_000010086,protein mago nashi +16.2617013,PR:000010134,http://purl.obolibrary.org/obo/PR_000010134,mitogen-activated protein kinase kinase kinase 15 +16.2617013,PR:000010175,http://purl.obolibrary.org/obo/PR_000010175,E3 ubiquitin-protein ligase MARCHF11 +16.2617013,PR:000010340,http://purl.obolibrary.org/obo/PR_000010340,"protein RSM22, mitochondrial" +16.2617013,PR:000010352,http://purl.obolibrary.org/obo/PR_000010352,methyltransferase-like protein 7A +16.2617013,PR:000010355,http://purl.obolibrary.org/obo/PR_000010355,methyltransferase-like protein 9 +16.2617013,PR:000010421,http://purl.obolibrary.org/obo/PR_000010421,protein Mis18-alpha +16.2617013,PR:000010468,http://purl.obolibrary.org/obo/PR_000010468,ER membrane protein complex subunit 5 +16.2617013,PR:000010486,http://purl.obolibrary.org/obo/PR_000010486,matrix metalloproteinase-27 +16.2617013,PR:000010577,http://purl.obolibrary.org/obo/PR_000010577,"39S ribosomal protein L15, mitochondrial" +16.2617013,PR:000010578,http://purl.obolibrary.org/obo/PR_000010578,"39S ribosomal protein L16, mitochondrial" +16.2617013,PR:000010588,http://purl.obolibrary.org/obo/PR_000010588,"39S ribosomal protein L27, mitochondrial" +16.2617013,PR:000010593,http://purl.obolibrary.org/obo/PR_000010593,"39S ribosomal protein L33, mitochondrial" +16.2617013,PR:000010603,http://purl.obolibrary.org/obo/PR_000010603,"28S ribosomal protein L42, mitochondrial" +16.2617013,PR:000010609,http://purl.obolibrary.org/obo/PR_000010609,"39S ribosomal protein L48, mitochondrial" +16.2617013,PR:000010622,http://purl.obolibrary.org/obo/PR_000010622,"28S ribosomal protein S15, mitochondrial" +16.2617013,PR:000010642,http://purl.obolibrary.org/obo/PR_000010642,"28S ribosomal protein S36, mitochondrial" +16.2617013,PR:000010662,http://purl.obolibrary.org/obo/PR_000010662,membrane-spanning 4-domains subfamily A member 7 +16.2617013,PR:000010677,http://purl.obolibrary.org/obo/PR_000010677,mesothelin-like protein +16.2617013,PR:000010776,http://purl.obolibrary.org/obo/PR_000010776,PWWP domain-containing DNA repair factor 3B +16.2617013,PR:000010783,http://purl.obolibrary.org/obo/PR_000010783,protein Muted +16.2617013,PR:000010807,http://purl.obolibrary.org/obo/PR_000010807,myosin-binding protein H-like +16.2617013,PR:000010928,http://purl.obolibrary.org/obo/PR_000010928,none +16.2617013,PR:000010941,http://purl.obolibrary.org/obo/PR_000010941,NEDD4-binding protein 3 +16.2617013,PR:000010964,http://purl.obolibrary.org/obo/PR_000010964,"N-acetylglutamate synthase, mitochondrial" +16.2617013,PR:000010983,http://purl.obolibrary.org/obo/PR_000010983,N-acyl-phosphatidylethanolamine-hydrolyzing phospholipase D +16.2617013,PR:000010984,http://purl.obolibrary.org/obo/PR_000010984,gamma-soluble NSF attachment protein +16.2617013,PR:000011150,http://purl.obolibrary.org/obo/PR_000011150,neuralized-like protein 2 +16.2617013,PR:000011179,http://purl.obolibrary.org/obo/PR_000011179,NF-kappa-B inhibitor delta +16.2617013,PR:000011215,http://purl.obolibrary.org/obo/PR_000011215,PSME3-interacting protein +16.2617013,PR:000011304,http://purl.obolibrary.org/obo/PR_000011304,nucleolar complex protein 4 +16.2617013,PR:000011308,http://purl.obolibrary.org/obo/PR_000011308,nucleolar protein 11 +16.2617013,PR:000011346,http://purl.obolibrary.org/obo/PR_000011346,magnesium transporter NIPA3 +16.2617013,PR:000011435,http://purl.obolibrary.org/obo/PR_000011435,neuritin-like protein +16.2617013,PR:000011568,http://purl.obolibrary.org/obo/PR_000011568,none +16.2617013,PR:000011570,http://purl.obolibrary.org/obo/PR_000011570,none +16.2617013,PR:000011601,http://purl.obolibrary.org/obo/PR_000011601,outer dense fiber protein 3B +16.2617013,PR:000011628,http://purl.obolibrary.org/obo/PR_000011628,olfactomedin-like protein 2A +16.2617013,PR:000011712,http://purl.obolibrary.org/obo/PR_000011712,olfactory receptor 14I1 +16.2617013,PR:000011759,http://purl.obolibrary.org/obo/PR_000011759,olfactory receptor 2B6 +16.2617013,PR:000011784,http://purl.obolibrary.org/obo/PR_000011784,olfactory receptor 2T1 +16.2617013,PR:000011913,http://purl.obolibrary.org/obo/PR_000011913,olfactory receptor 5AN1 +16.2617013,PR:000012001,http://purl.obolibrary.org/obo/PR_000012001,olfactory receptor 8B8 +16.2617013,PR:000012096,http://purl.obolibrary.org/obo/PR_000012096,"succinyl-CoA:3-ketoacid-coenzyme A transferase 2, mitochondrial" +16.2617013,PR:000012124,http://purl.obolibrary.org/obo/PR_000012124,none +16.2617013,PR:000012125,http://purl.obolibrary.org/obo/PR_000012125,none +16.2617013,PR:000012128,http://purl.obolibrary.org/obo/PR_000012128,none +16.2617013,PR:000012129,http://purl.obolibrary.org/obo/PR_000012129,none +16.2617013,PR:000012130,http://purl.obolibrary.org/obo/PR_000012130,none +16.2617013,PR:000012131,http://purl.obolibrary.org/obo/PR_000012131,none +16.2617013,PR:000012133,http://purl.obolibrary.org/obo/PR_000012133,none +16.2617013,PR:000012205,http://purl.obolibrary.org/obo/PR_000012205,polyadenylate-binding protein 1-like +16.2617013,PR:000012300,http://purl.obolibrary.org/obo/PR_000012300,protein mono-ADP-ribosyltransferase PARP8 +16.2617013,PR:000012360,http://purl.obolibrary.org/obo/PR_000012360,protocadherin alpha-13 +16.2617013,PR:000012362,http://purl.obolibrary.org/obo/PR_000012362,protocadherin alpha-3 +16.2617013,PR:000012365,http://purl.obolibrary.org/obo/PR_000012365,protocadherin alpha-6 +16.2617013,PR:000012369,http://purl.obolibrary.org/obo/PR_000012369,protocadherin alpha-C1 +16.2617013,PR:000012371,http://purl.obolibrary.org/obo/PR_000012371,protocadherin beta-1 +16.2617013,PR:000012373,http://purl.obolibrary.org/obo/PR_000012373,protocadherin beta-11 +16.2617013,PR:000012381,http://purl.obolibrary.org/obo/PR_000012381,protocadherin beta-4 +16.2617013,PR:000012384,http://purl.obolibrary.org/obo/PR_000012384,protocadherin beta-7 +16.2617013,PR:000012389,http://purl.obolibrary.org/obo/PR_000012389,protocadherin gamma-A11 +16.2617013,PR:000012391,http://purl.obolibrary.org/obo/PR_000012391,protocadherin gamma-A2 +16.2617013,PR:000012393,http://purl.obolibrary.org/obo/PR_000012393,protocadherin gamma-A4 +16.2617013,PR:000012398,http://purl.obolibrary.org/obo/PR_000012398,protocadherin gamma-A9 +16.2617013,PR:000012407,http://purl.obolibrary.org/obo/PR_000012407,protocadherin gamma-C4 +16.2617013,PR:000012408,http://purl.obolibrary.org/obo/PR_000012408,protocadherin gamma-C5 +16.2617013,PR:000012426,http://purl.obolibrary.org/obo/PR_000012426,pecanex-like protein 3 +16.2617013,PR:000012517,http://purl.obolibrary.org/obo/PR_000012517,"pyruvate dehydrogenase phosphatase regulatory subunit, mitochondrial" +16.2617013,PR:000012557,http://purl.obolibrary.org/obo/PR_000012557,peroxisomal membrane protein 11C +16.2617013,PR:000012670,http://purl.obolibrary.org/obo/PR_000012670,pyridoxal phosphate phosphatase PHOSPHO2 +16.2617013,PR:000012706,http://purl.obolibrary.org/obo/PR_000012706,GPI transamidase component PIG-S +16.2617013,PR:000012711,http://purl.obolibrary.org/obo/PR_000012711,phosphatidylinositol-glycan biosynthesis class X protein +16.2617013,PR:000012712,http://purl.obolibrary.org/obo/PR_000012712,phosphatidylinositol N-acetylglucosaminyltransferase subunit Y +16.2617013,PR:000012753,http://purl.obolibrary.org/obo/PR_000012753,phosphatidylinositol transfer protein alpha isoform +16.2617013,PR:000012809,http://purl.obolibrary.org/obo/PR_000012809,cytosolic phospholipase A2 zeta +16.2617013,PR:000012928,http://purl.obolibrary.org/obo/PR_000012928,pancreatic lipase-related protein 3 +16.2617013,PR:000012956,http://purl.obolibrary.org/obo/PR_000012956,podocalyxin-like protein 2 +16.2617013,PR:000012979,http://purl.obolibrary.org/obo/PR_000012979,DNA-directed DNA/RNA polymerase mu +16.2617013,PR:000013115,http://purl.obolibrary.org/obo/PR_000013115,protein phosphatase 1 regulatory subunit 14D +16.2617013,PR:000013122,http://purl.obolibrary.org/obo/PR_000013122,protein phosphatase 1 regulatory subunit 1C +16.2617013,PR:000013242,http://purl.obolibrary.org/obo/PR_000013242,PRKR-interacting protein 1 +16.2617013,PR:000013245,http://purl.obolibrary.org/obo/PR_000013245,putative serine/threonine-protein kinase PRKY +16.2617013,PR:000013270,http://purl.obolibrary.org/obo/PR_000013270,pyridoxal phosphate homeostasis protein PLPBP +16.2617013,PR:000013407,http://purl.obolibrary.org/obo/PR_000013407,L-seryl-tRNA(Sec) kinase +16.2617013,PR:000013479,http://purl.obolibrary.org/obo/PR_000013479,receptor-type tyrosine-protein phosphatase S +16.2617013,PR:000013653,http://purl.obolibrary.org/obo/PR_000013653,geranylgeranyl transferase type-2 subunit alpha +16.2617013,PR:000013715,http://purl.obolibrary.org/obo/PR_000013715,Ran-binding protein 6 +16.2617013,PR:000013785,http://purl.obolibrary.org/obo/PR_000013785,RNA-binding protein 12B +16.2617013,PR:000013791,http://purl.obolibrary.org/obo/PR_000013791,RNA-binding protein 26 +16.2617013,PR:000013795,http://purl.obolibrary.org/obo/PR_000013795,RNA-binding protein 34 +16.2617013,PR:000013801,http://purl.obolibrary.org/obo/PR_000013801,RNA-binding protein 43 +16.2617013,PR:000013921,http://purl.obolibrary.org/obo/PR_000013921,raftlin-2 +16.2617013,PR:000013992,http://purl.obolibrary.org/obo/PR_000013992,RIB43A-like with coiled-coils protein 1 +16.2617013,PR:000014070,http://purl.obolibrary.org/obo/PR_000014070,RING finger protein 113B +16.2617013,PR:000014075,http://purl.obolibrary.org/obo/PR_000014075,RING finger protein 122 +16.2617013,PR:000014081,http://purl.obolibrary.org/obo/PR_000014081,E3 ubiquitin-protein ligase RNF130 +16.2617013,PR:000014089,http://purl.obolibrary.org/obo/PR_000014089,RING finger protein 145 +16.2617013,PR:000014091,http://purl.obolibrary.org/obo/PR_000014091,RING finger protein 148 +16.2617013,PR:000014099,http://purl.obolibrary.org/obo/PR_000014099,E3 ubiquitin-protein ligase RNF166 +16.2617013,PR:000014120,http://purl.obolibrary.org/obo/PR_000014120,E3 ubiquitin-protein ligase RNF213 +16.2617013,PR:000014223,http://purl.obolibrary.org/obo/PR_000014223,60S ribosomal protein L37a +16.2617013,PR:000014227,http://purl.obolibrary.org/obo/PR_000014227,60S ribosomal protein L3-like +16.2617013,PR:000014234,http://purl.obolibrary.org/obo/PR_000014234,60S ribosomal protein L7-like 1 +16.2617013,PR:000014247,http://purl.obolibrary.org/obo/PR_000014247,ribonuclease P protein subunit p40 +16.2617013,PR:000014249,http://purl.obolibrary.org/obo/PR_000014249,protein reprimo +16.2617013,PR:000014323,http://purl.obolibrary.org/obo/PR_000014323,radial spoke head protein 6 homolog A +16.2617013,PR:000014385,http://purl.obolibrary.org/obo/PR_000014385,none +16.2617013,PR:000014387,http://purl.obolibrary.org/obo/PR_000014387,none +16.2617013,PR:000014427,http://purl.obolibrary.org/obo/PR_000014427,protein SAAL1 +16.2617013,PR:000014583,http://purl.obolibrary.org/obo/PR_000014583,vesicle-trafficking protein SEC22a +16.2617013,PR:000014596,http://purl.obolibrary.org/obo/PR_000014596,protein transport protein Sec61 subunit alpha isoform 2 +16.2617013,PR:000014667,http://purl.obolibrary.org/obo/PR_000014667,small EDRK-rich factor 2 +16.2617013,PR:000014670,http://purl.obolibrary.org/obo/PR_000014670,serine hydrolase-like protein 2 +16.2617013,PR:000014735,http://purl.obolibrary.org/obo/PR_000014735,splicing factor 3B subunit 6 +16.2617013,PR:000014739,http://purl.obolibrary.org/obo/PR_000014739,splicing factor 3B subunit 5 +16.2617013,PR:000014768,http://purl.obolibrary.org/obo/PR_000014768,vesicle transport protein SFT2B +16.2617013,PR:000014902,http://purl.obolibrary.org/obo/PR_000014902,protein SIX6OS1 +16.2617013,PR:000015025,http://purl.obolibrary.org/obo/PR_000015025,mitochondrial basic amino acids transporter +16.2617013,PR:000015027,http://purl.obolibrary.org/obo/PR_000015027,kidney mitochondrial carrier protein 1 +16.2617013,PR:000015030,http://purl.obolibrary.org/obo/PR_000015030,solute carrier family 25 member 33 +16.2617013,PR:000015062,http://purl.obolibrary.org/obo/PR_000015062,proton myo-inositol cotransporter +16.2617013,PR:000015151,http://purl.obolibrary.org/obo/PR_000015151,thymic stromal cotransporter +16.2617013,PR:000015212,http://purl.obolibrary.org/obo/PR_000015212,sodium/hydrogen exchanger 11 +16.2617013,PR:000015245,http://purl.obolibrary.org/obo/PR_000015245,PRELI domain containing protein 3A +16.2617013,PR:000015333,http://purl.obolibrary.org/obo/PR_000015333,U11/U12 small nuclear ribonucleoprotein 25 kDa protein +16.2617013,PR:000015381,http://purl.obolibrary.org/obo/PR_000015381,sorting nexin-32 +16.2617013,PR:000015496,http://purl.obolibrary.org/obo/PR_000015496,spermatogenesis-associated protein 8 +16.2617013,PR:000015539,http://purl.obolibrary.org/obo/PR_000015539,serine protease inhibitor Kazal-type 8 +16.2617013,PR:000015560,http://purl.obolibrary.org/obo/PR_000015560,speckle-type POZ protein-like +16.2617013,PR:000015637,http://purl.obolibrary.org/obo/PR_000015637,SRR1-like protein +16.2617013,PR:000015675,http://purl.obolibrary.org/obo/PR_000015675,putative protein SSX8 +16.2617013,PR:000015791,http://purl.obolibrary.org/obo/PR_000015791,syntaxin-19 +16.2617013,PR:000015900,http://purl.obolibrary.org/obo/PR_000015900,putative synaptotagmin-14-like protein +16.2617013,PR:000015901,http://purl.obolibrary.org/obo/PR_000015901,synaptotagmin-15 +16.2617013,PR:000015902,http://purl.obolibrary.org/obo/PR_000015902,synaptotagmin-16 +16.2617013,PR:000015943,http://purl.obolibrary.org/obo/PR_000015943,none +16.2617013,PR:000015981,http://purl.obolibrary.org/obo/PR_000015981,none +16.2617013,PR:000016012,http://purl.obolibrary.org/obo/PR_000016012,transcriptional adapter 2-alpha +16.2617013,PR:000016072,http://purl.obolibrary.org/obo/PR_000016072,taste receptor type 2 member 40 +16.2617013,PR:000016098,http://purl.obolibrary.org/obo/PR_000016098,TBC1 domain family member 14 +16.2617013,PR:000016100,http://purl.obolibrary.org/obo/PR_000016100,TBC1 domain family member 16 +16.2617013,PR:000016111,http://purl.obolibrary.org/obo/PR_000016111,TBC1 domain family member 2B +16.2617013,PR:000016161,http://purl.obolibrary.org/obo/PR_000016161,transcription elongation factor A protein-like 2 +16.2617013,PR:000016165,http://purl.obolibrary.org/obo/PR_000016165,transcription elongation factor A protein-like 6 +16.2617013,PR:000016167,http://purl.obolibrary.org/obo/PR_000016167,transcription elongation factor A protein-like 8 +16.2617013,PR:000016206,http://purl.obolibrary.org/obo/PR_000016206,T-cell leukemia translocation-altered gene protein +16.2617013,PR:000016224,http://purl.obolibrary.org/obo/PR_000016224,transmembrane epididymal protein 1 +16.2617013,PR:000016258,http://purl.obolibrary.org/obo/PR_000016258,testis-expressed protein 264 +16.2617013,PR:000016335,http://purl.obolibrary.org/obo/PR_000016335,tigger transposable element-derived protein 5 +16.2617013,PR:000016420,http://purl.obolibrary.org/obo/PR_000016420,transmembrane protein 184C +16.2617013,PR:000016449,http://purl.obolibrary.org/obo/PR_000016449,transmembrane protease serine 11B +16.2617013,PR:000016453,http://purl.obolibrary.org/obo/PR_000016453,transmembrane protease serine 11F +16.2617013,PR:000016565,http://purl.obolibrary.org/obo/PR_000016565,TP53-target gene 3 protein +16.2617013,PR:000016566,http://purl.obolibrary.org/obo/PR_000016566,TP53-target gene 5 protein +16.2617013,PR:000016591,http://purl.obolibrary.org/obo/PR_000016591,EKC/KEOPS complex subunit TPRKB +16.2617013,PR:000016618,http://purl.obolibrary.org/obo/PR_000016618,trafficking protein particle complex subunit 6B +16.2617013,PR:000016681,http://purl.obolibrary.org/obo/PR_000016681,tRNA (uracil-5-)-methyltransferase +16.2617013,PR:000016722,http://purl.obolibrary.org/obo/PR_000016722,testis-specific gene 13 protein +16.2617013,PR:000016728,http://purl.obolibrary.org/obo/PR_000016728,testis-specific serine kinase substrate +16.2617013,PR:000016781,http://purl.obolibrary.org/obo/PR_000016781,tetratricopeptide repeat protein 30B +16.2617013,PR:000016900,http://purl.obolibrary.org/obo/PR_000016900,none +16.2617013,PR:000016912,http://purl.obolibrary.org/obo/PR_000016912,none +16.2617013,PR:000016918,http://purl.obolibrary.org/obo/PR_000016918,none +16.2617013,PR:000016924,http://purl.obolibrary.org/obo/PR_000016924,none +16.2617013,PR:000016999,http://purl.obolibrary.org/obo/PR_000016999,ubiquitin-like protein 4B +16.2617013,PR:000017071,http://purl.obolibrary.org/obo/PR_000017071,UHRF1-binding protein 1 +16.2617013,PR:000017096,http://purl.obolibrary.org/obo/PR_000017096,UNC5C-like protein +16.2617013,PR:000017180,http://purl.obolibrary.org/obo/PR_000017180,ubiquitin carboxyl-terminal hydrolase 40 +16.2617013,PR:000017239,http://purl.obolibrary.org/obo/PR_000017239,none +16.2617013,PR:000017276,http://purl.obolibrary.org/obo/PR_000017276,variable charge X-linked protein 2 +16.2617013,PR:000017279,http://purl.obolibrary.org/obo/PR_000017279,testis-specific basic protein Y 1 +16.2617013,PR:000017338,http://purl.obolibrary.org/obo/PR_000017338,vacuolar protein sorting-associated protein 37D +16.2617013,PR:000017415,http://purl.obolibrary.org/obo/PR_000017415,"WASP-associated protein with actin, membranes and microtubules" +16.2617013,PR:000017430,http://purl.obolibrary.org/obo/PR_000017430,protein Wiz +16.2617013,PR:000017488,http://purl.obolibrary.org/obo/PR_000017488,XK-related protein 9 +16.2617013,PR:000017518,http://purl.obolibrary.org/obo/PR_000017518,none +16.2617013,PR:000017581,http://purl.obolibrary.org/obo/PR_000017581,zinc finger and BTB domain-containing protein 40 +16.2617013,PR:000017591,http://purl.obolibrary.org/obo/PR_000017591,zinc finger and BTB domain-containing protein 6 +16.2617013,PR:000017603,http://purl.obolibrary.org/obo/PR_000017603,nuclear-interacting partner of ALK +16.2617013,PR:000017622,http://purl.obolibrary.org/obo/PR_000017622,AN1-type zinc finger protein 2B +16.2617013,PR:000017638,http://purl.obolibrary.org/obo/PR_000017638,zinc finger protein 30 homolog +16.2617013,PR:000017690,http://purl.obolibrary.org/obo/PR_000017690,zinc finger MYM-type protein 5 +16.2617013,PR:000017702,http://purl.obolibrary.org/obo/PR_000017702,zinc finger protein 121 +16.2617013,PR:000017722,http://purl.obolibrary.org/obo/PR_000017722,zinc finger protein 16 +16.2617013,PR:000017723,http://purl.obolibrary.org/obo/PR_000017723,zinc finger protein 160 +16.2617013,PR:000017739,http://purl.obolibrary.org/obo/PR_000017739,zinc finger protein with KRAB and SCAN domains 8 +16.2617013,PR:000017740,http://purl.obolibrary.org/obo/PR_000017740,zinc finger and SCAN domain-containing protein 9 +16.2617013,PR:000017744,http://purl.obolibrary.org/obo/PR_000017744,zinc finger protein 20 +16.2617013,PR:000017756,http://purl.obolibrary.org/obo/PR_000017756,zinc finger protein 219 +16.2617013,PR:000017759,http://purl.obolibrary.org/obo/PR_000017759,zinc finger protein 222 +16.2617013,PR:000017779,http://purl.obolibrary.org/obo/PR_000017779,zinc finger protein 251 +16.2617013,PR:000017781,http://purl.obolibrary.org/obo/PR_000017781,zinc finger protein 253 +16.2617013,PR:000017783,http://purl.obolibrary.org/obo/PR_000017783,zinc finger protein 256 +16.2617013,PR:000017790,http://purl.obolibrary.org/obo/PR_000017790,zinc finger protein 266 +16.2617013,PR:000017800,http://purl.obolibrary.org/obo/PR_000017800,zinc finger protein 280A +16.2617013,PR:000017803,http://purl.obolibrary.org/obo/PR_000017803,zinc finger protein 280D +16.2617013,PR:000017812,http://purl.obolibrary.org/obo/PR_000017812,zinc finger and BTB domain-containing protein 21 +16.2617013,PR:000017829,http://purl.obolibrary.org/obo/PR_000017829,zinc finger protein 324B +16.2617013,PR:000017832,http://purl.obolibrary.org/obo/PR_000017832,zinc finger protein 330 +16.2617013,PR:000017854,http://purl.obolibrary.org/obo/PR_000017854,zinc finger protein 367 +16.2617013,PR:000017862,http://purl.obolibrary.org/obo/PR_000017862,zinc finger protein 385D +16.2617013,PR:000017872,http://purl.obolibrary.org/obo/PR_000017872,zinc finger protein 408 +16.2617013,PR:000017877,http://purl.obolibrary.org/obo/PR_000017877,zinc finger protein 415 +16.2617013,PR:000017891,http://purl.obolibrary.org/obo/PR_000017891,zinc finger protein 432 +16.2617013,PR:000017911,http://purl.obolibrary.org/obo/PR_000017911,zinc finger protein 462 +16.2617013,PR:000017931,http://purl.obolibrary.org/obo/PR_000017931,zinc finger protein 493 +16.2617013,PR:000018012,http://purl.obolibrary.org/obo/PR_000018012,zinc finger protein 592 +16.2617013,PR:000018018,http://purl.obolibrary.org/obo/PR_000018018,E3 ubiquitin-protein ligase ZNF598 +16.2617013,PR:000018041,http://purl.obolibrary.org/obo/PR_000018041,zinc finger protein 627 +16.2617013,PR:000018051,http://purl.obolibrary.org/obo/PR_000018051,E3 ubiquitin-protein ligase CBLL2 +16.2617013,PR:000018071,http://purl.obolibrary.org/obo/PR_000018071,zinc finger protein 671 +16.2617013,PR:000018085,http://purl.obolibrary.org/obo/PR_000018085,zinc finger protein 687 +16.2617013,PR:000018086,http://purl.obolibrary.org/obo/PR_000018086,zinc finger protein 688 +16.2617013,PR:000018091,http://purl.obolibrary.org/obo/PR_000018091,zinc finger protein 695 +16.2617013,PR:000018123,http://purl.obolibrary.org/obo/PR_000018123,zinc finger protein 740 +16.2617013,PR:000018128,http://purl.obolibrary.org/obo/PR_000018128,zinc finger protein 75D +16.2617013,PR:000018132,http://purl.obolibrary.org/obo/PR_000018132,zinc finger protein 764 +16.2617013,PR:000018137,http://purl.obolibrary.org/obo/PR_000018137,zinc finger protein 77 +16.2617013,PR:000018168,http://purl.obolibrary.org/obo/PR_000018168,zinc finger protein 804B +16.2617013,PR:000018181,http://purl.obolibrary.org/obo/PR_000018181,zinc finger protein 83 +16.2617013,PR:000018195,http://purl.obolibrary.org/obo/PR_000018195,zinc finger protein 85 +16.2617013,PR:000018223,http://purl.obolibrary.org/obo/PR_000018223,zinc finger and SCAN domain-containing protein 16 +16.2617013,PR:000018306,http://purl.obolibrary.org/obo/PR_000018306,"receptor-type tyrosine-protein phosphatase C, signal peptide removed form" +16.2617013,PR:000018582,http://purl.obolibrary.org/obo/PR_000018582,none +16.2617013,PR:000022028,http://purl.obolibrary.org/obo/PR_000022028,none +16.2617013,PR:000022030,http://purl.obolibrary.org/obo/PR_000022030,none +16.2617013,PR:000022059,http://purl.obolibrary.org/obo/PR_000022059,none +16.2617013,PR:000022060,http://purl.obolibrary.org/obo/PR_000022060,none +16.2617013,PR:000022122,http://purl.obolibrary.org/obo/PR_000022122,none +16.2617013,PR:000022135,http://purl.obolibrary.org/obo/PR_000022135,none +16.2617013,PR:000022159,http://purl.obolibrary.org/obo/PR_000022159,none +16.2617013,PR:000022169,http://purl.obolibrary.org/obo/PR_000022169,none +16.2617013,PR:000022220,http://purl.obolibrary.org/obo/PR_000022220,none +16.2617013,PR:000022237,http://purl.obolibrary.org/obo/PR_000022237,none +16.2617013,PR:000022246,http://purl.obolibrary.org/obo/PR_000022246,none +16.2617013,PR:000022292,http://purl.obolibrary.org/obo/PR_000022292,none +16.2617013,PR:000022303,http://purl.obolibrary.org/obo/PR_000022303,none +16.2617013,PR:000022313,http://purl.obolibrary.org/obo/PR_000022313,none +16.2617013,PR:000022347,http://purl.obolibrary.org/obo/PR_000022347,none +16.2617013,PR:000022353,http://purl.obolibrary.org/obo/PR_000022353,none +16.2617013,PR:000022367,http://purl.obolibrary.org/obo/PR_000022367,none +16.2617013,PR:000022368,http://purl.obolibrary.org/obo/PR_000022368,none +16.2617013,PR:000022371,http://purl.obolibrary.org/obo/PR_000022371,none +16.2617013,PR:000022403,http://purl.obolibrary.org/obo/PR_000022403,none +16.2617013,PR:000022404,http://purl.obolibrary.org/obo/PR_000022404,none +16.2617013,PR:000022411,http://purl.obolibrary.org/obo/PR_000022411,none +16.2617013,PR:000022426,http://purl.obolibrary.org/obo/PR_000022426,none +16.2617013,PR:000022444,http://purl.obolibrary.org/obo/PR_000022444,none +16.2617013,PR:000022450,http://purl.obolibrary.org/obo/PR_000022450,none +16.2617013,PR:000022452,http://purl.obolibrary.org/obo/PR_000022452,none +16.2617013,PR:000022454,http://purl.obolibrary.org/obo/PR_000022454,none +16.2617013,PR:000022481,http://purl.obolibrary.org/obo/PR_000022481,none +16.2617013,PR:000022510,http://purl.obolibrary.org/obo/PR_000022510,none +16.2617013,PR:000022521,http://purl.obolibrary.org/obo/PR_000022521,none +16.2617013,PR:000022539,http://purl.obolibrary.org/obo/PR_000022539,none +16.2617013,PR:000022545,http://purl.obolibrary.org/obo/PR_000022545,none +16.2617013,PR:000022566,http://purl.obolibrary.org/obo/PR_000022566,none +16.2617013,PR:000022571,http://purl.obolibrary.org/obo/PR_000022571,none +16.2617013,PR:000022579,http://purl.obolibrary.org/obo/PR_000022579,none +16.2617013,PR:000022594,http://purl.obolibrary.org/obo/PR_000022594,none +16.2617013,PR:000022597,http://purl.obolibrary.org/obo/PR_000022597,none +16.2617013,PR:000022599,http://purl.obolibrary.org/obo/PR_000022599,none +16.2617013,PR:000022608,http://purl.obolibrary.org/obo/PR_000022608,none +16.2617013,PR:000022630,http://purl.obolibrary.org/obo/PR_000022630,none +16.2617013,PR:000022636,http://purl.obolibrary.org/obo/PR_000022636,none +16.2617013,PR:000022638,http://purl.obolibrary.org/obo/PR_000022638,none +16.2617013,PR:000022646,http://purl.obolibrary.org/obo/PR_000022646,none +16.2617013,PR:000022659,http://purl.obolibrary.org/obo/PR_000022659,none +16.2617013,PR:000022675,http://purl.obolibrary.org/obo/PR_000022675,none +16.2617013,PR:000022696,http://purl.obolibrary.org/obo/PR_000022696,none +16.2617013,PR:000022716,http://purl.obolibrary.org/obo/PR_000022716,none +16.2617013,PR:000022736,http://purl.obolibrary.org/obo/PR_000022736,none +16.2617013,PR:000022791,http://purl.obolibrary.org/obo/PR_000022791,none +16.2617013,PR:000022820,http://purl.obolibrary.org/obo/PR_000022820,none +16.2617013,PR:000022831,http://purl.obolibrary.org/obo/PR_000022831,none +16.2617013,PR:000022858,http://purl.obolibrary.org/obo/PR_000022858,none +16.2617013,PR:000022880,http://purl.obolibrary.org/obo/PR_000022880,none +16.2617013,PR:000022883,http://purl.obolibrary.org/obo/PR_000022883,none +16.2617013,PR:000022902,http://purl.obolibrary.org/obo/PR_000022902,none +16.2617013,PR:000022917,http://purl.obolibrary.org/obo/PR_000022917,none +16.2617013,PR:000022931,http://purl.obolibrary.org/obo/PR_000022931,none +16.2617013,PR:000022936,http://purl.obolibrary.org/obo/PR_000022936,none +16.2617013,PR:000022939,http://purl.obolibrary.org/obo/PR_000022939,none +16.2617013,PR:000022940,http://purl.obolibrary.org/obo/PR_000022940,none +16.2617013,PR:000022956,http://purl.obolibrary.org/obo/PR_000022956,none +16.2617013,PR:000022965,http://purl.obolibrary.org/obo/PR_000022965,none +16.2617013,PR:000022970,http://purl.obolibrary.org/obo/PR_000022970,none +16.2617013,PR:000022974,http://purl.obolibrary.org/obo/PR_000022974,none +16.2617013,PR:000022990,http://purl.obolibrary.org/obo/PR_000022990,none +16.2617013,PR:000023009,http://purl.obolibrary.org/obo/PR_000023009,none +16.2617013,PR:000023020,http://purl.obolibrary.org/obo/PR_000023020,none +16.2617013,PR:000023033,http://purl.obolibrary.org/obo/PR_000023033,none +16.2617013,PR:000023047,http://purl.obolibrary.org/obo/PR_000023047,none +16.2617013,PR:000023049,http://purl.obolibrary.org/obo/PR_000023049,none +16.2617013,PR:000023050,http://purl.obolibrary.org/obo/PR_000023050,none +16.2617013,PR:000023058,http://purl.obolibrary.org/obo/PR_000023058,none +16.2617013,PR:000023060,http://purl.obolibrary.org/obo/PR_000023060,none +16.2617013,PR:000023101,http://purl.obolibrary.org/obo/PR_000023101,none +16.2617013,PR:000023106,http://purl.obolibrary.org/obo/PR_000023106,none +16.2617013,PR:000023107,http://purl.obolibrary.org/obo/PR_000023107,none +16.2617013,PR:000023119,http://purl.obolibrary.org/obo/PR_000023119,none +16.2617013,PR:000023182,http://purl.obolibrary.org/obo/PR_000023182,none +16.2617013,PR:000023193,http://purl.obolibrary.org/obo/PR_000023193,none +16.2617013,PR:000023206,http://purl.obolibrary.org/obo/PR_000023206,none +16.2617013,PR:000023239,http://purl.obolibrary.org/obo/PR_000023239,none +16.2617013,PR:000023255,http://purl.obolibrary.org/obo/PR_000023255,none +16.2617013,PR:000023270,http://purl.obolibrary.org/obo/PR_000023270,none +16.2617013,PR:000023302,http://purl.obolibrary.org/obo/PR_000023302,none +16.2617013,PR:000023322,http://purl.obolibrary.org/obo/PR_000023322,none +16.2617013,PR:000023359,http://purl.obolibrary.org/obo/PR_000023359,none +16.2617013,PR:000023371,http://purl.obolibrary.org/obo/PR_000023371,none +16.2617013,PR:000023376,http://purl.obolibrary.org/obo/PR_000023376,none +16.2617013,PR:000023377,http://purl.obolibrary.org/obo/PR_000023377,none +16.2617013,PR:000023386,http://purl.obolibrary.org/obo/PR_000023386,none +16.2617013,PR:000023393,http://purl.obolibrary.org/obo/PR_000023393,none +16.2617013,PR:000023400,http://purl.obolibrary.org/obo/PR_000023400,none +16.2617013,PR:000023423,http://purl.obolibrary.org/obo/PR_000023423,none +16.2617013,PR:000023435,http://purl.obolibrary.org/obo/PR_000023435,none +16.2617013,PR:000023437,http://purl.obolibrary.org/obo/PR_000023437,none +16.2617013,PR:000023443,http://purl.obolibrary.org/obo/PR_000023443,none +16.2617013,PR:000023477,http://purl.obolibrary.org/obo/PR_000023477,none +16.2617013,PR:000023479,http://purl.obolibrary.org/obo/PR_000023479,none +16.2617013,PR:000023483,http://purl.obolibrary.org/obo/PR_000023483,none +16.2617013,PR:000023564,http://purl.obolibrary.org/obo/PR_000023564,none +16.2617013,PR:000023613,http://purl.obolibrary.org/obo/PR_000023613,none +16.2617013,PR:000023673,http://purl.obolibrary.org/obo/PR_000023673,none +16.2617013,PR:000023680,http://purl.obolibrary.org/obo/PR_000023680,none +16.2617013,PR:000023726,http://purl.obolibrary.org/obo/PR_000023726,none +16.2617013,PR:000023738,http://purl.obolibrary.org/obo/PR_000023738,none +16.2617013,PR:000023744,http://purl.obolibrary.org/obo/PR_000023744,none +16.2617013,PR:000023752,http://purl.obolibrary.org/obo/PR_000023752,none +16.2617013,PR:000023761,http://purl.obolibrary.org/obo/PR_000023761,none +16.2617013,PR:000023765,http://purl.obolibrary.org/obo/PR_000023765,none +16.2617013,PR:000023776,http://purl.obolibrary.org/obo/PR_000023776,none +16.2617013,PR:000023791,http://purl.obolibrary.org/obo/PR_000023791,none +16.2617013,PR:000023792,http://purl.obolibrary.org/obo/PR_000023792,none +16.2617013,PR:000023802,http://purl.obolibrary.org/obo/PR_000023802,none +16.2617013,PR:000023825,http://purl.obolibrary.org/obo/PR_000023825,none +16.2617013,PR:000023836,http://purl.obolibrary.org/obo/PR_000023836,50S ribosomal protein L31 +16.2617013,PR:000023837,http://purl.obolibrary.org/obo/PR_000023837,none +16.2617013,PR:000023864,http://purl.obolibrary.org/obo/PR_000023864,none +16.2617013,PR:000023866,http://purl.obolibrary.org/obo/PR_000023866,none +16.2617013,PR:000023867,http://purl.obolibrary.org/obo/PR_000023867,none +16.2617013,PR:000023870,http://purl.obolibrary.org/obo/PR_000023870,none +16.2617013,PR:000023877,http://purl.obolibrary.org/obo/PR_000023877,none +16.2617013,PR:000023886,http://purl.obolibrary.org/obo/PR_000023886,none +16.2617013,PR:000023888,http://purl.obolibrary.org/obo/PR_000023888,none +16.2617013,PR:000023903,http://purl.obolibrary.org/obo/PR_000023903,none +16.2617013,PR:000023995,http://purl.obolibrary.org/obo/PR_000023995,none +16.2617013,PR:000024040,http://purl.obolibrary.org/obo/PR_000024040,none +16.2617013,PR:000024041,http://purl.obolibrary.org/obo/PR_000024041,none +16.2617013,PR:000024042,http://purl.obolibrary.org/obo/PR_000024042,none +16.2617013,PR:000024106,http://purl.obolibrary.org/obo/PR_000024106,none +16.2617013,PR:000024137,http://purl.obolibrary.org/obo/PR_000024137,none +16.2617013,PR:000024170,http://purl.obolibrary.org/obo/PR_000024170,none +16.2617013,PR:000024181,http://purl.obolibrary.org/obo/PR_000024181,none +16.2617013,PR:000024184,http://purl.obolibrary.org/obo/PR_000024184,none +16.2617013,PR:000024187,http://purl.obolibrary.org/obo/PR_000024187,none +16.2617013,PR:000024195,http://purl.obolibrary.org/obo/PR_000024195,none +16.2617013,PR:000024196,http://purl.obolibrary.org/obo/PR_000024196,none +16.2617013,PR:000024211,http://purl.obolibrary.org/obo/PR_000024211,none +16.2617013,PR:000024215,http://purl.obolibrary.org/obo/PR_000024215,none +16.2617013,PR:000024221,http://purl.obolibrary.org/obo/PR_000024221,none +16.2617013,PR:000024228,http://purl.obolibrary.org/obo/PR_000024228,none +16.2617013,PR:000024231,http://purl.obolibrary.org/obo/PR_000024231,none +16.2617013,PR:000024232,http://purl.obolibrary.org/obo/PR_000024232,none +16.2617013,PR:000024256,http://purl.obolibrary.org/obo/PR_000024256,none +16.2617013,PR:000025004,http://purl.obolibrary.org/obo/PR_000025004,none +16.2617013,PR:000025147,http://purl.obolibrary.org/obo/PR_000025147,prokaryotic NADP-dependent malic enzyme +16.2617013,PR:000025565,http://purl.obolibrary.org/obo/PR_000025565,amyloid-beta precursor protein sequence variant D694N (human) +16.2617013,PR:000025585,http://purl.obolibrary.org/obo/PR_000025585,none +16.2617013,PR:000025805,http://purl.obolibrary.org/obo/PR_000025805,none +16.2617013,PR:000025813,http://purl.obolibrary.org/obo/PR_000025813,none +16.2617013,PR:000027102,http://purl.obolibrary.org/obo/PR_000027102,none +16.2617013,PR:000027570,http://purl.obolibrary.org/obo/PR_000027570,none +16.2617013,PR:000027572,http://purl.obolibrary.org/obo/PR_000027572,none +16.2617013,PR:000027573,http://purl.obolibrary.org/obo/PR_000027573,none +16.2617013,PR:000027574,http://purl.obolibrary.org/obo/PR_000027574,none +16.2617013,PR:000027576,http://purl.obolibrary.org/obo/PR_000027576,none +16.2617013,PR:000027579,http://purl.obolibrary.org/obo/PR_000027579,none +16.2617013,PR:000027580,http://purl.obolibrary.org/obo/PR_000027580,none +16.2617013,PR:000027591,http://purl.obolibrary.org/obo/PR_000027591,none +16.2617013,PR:000027596,http://purl.obolibrary.org/obo/PR_000027596,none +16.2617013,PR:000027597,http://purl.obolibrary.org/obo/PR_000027597,none +16.2617013,PR:000027598,http://purl.obolibrary.org/obo/PR_000027598,none +16.2617013,PR:000027602,http://purl.obolibrary.org/obo/PR_000027602,none +16.2617013,PR:000028510,http://purl.obolibrary.org/obo/PR_000028510,none +16.2617013,PR:000029099,http://purl.obolibrary.org/obo/PR_000029099,protein CNPPD1 +16.2617013,PR:000029110,http://purl.obolibrary.org/obo/PR_000029110,glycerol kinase 3 +16.2617013,PR:000029121,http://purl.obolibrary.org/obo/PR_000029121,leucine-rich repeat and guanylate kinase domain-containing protein +16.2617013,PR:000029131,http://purl.obolibrary.org/obo/PR_000029131,putative 3-phosphoinositide-dependent protein kinase 2 +16.2617013,PR:000029285,http://purl.obolibrary.org/obo/PR_000029285,asparagine synthetase domain-containing protein 1 +16.2617013,PR:000029309,http://purl.obolibrary.org/obo/PR_000029309,cilia- and flagella-associated protein 36 +16.2617013,PR:000029337,http://purl.obolibrary.org/obo/PR_000029337,coiled-coil domain-containing protein 73 +16.2617013,PR:000029344,http://purl.obolibrary.org/obo/PR_000029344,splicing factor YJU2 +16.2617013,PR:000029357,http://purl.obolibrary.org/obo/PR_000029357,coiled-coil-helix-coiled-coil-helix domain-containing protein 8 +16.2617013,PR:000029406,http://purl.obolibrary.org/obo/PR_000029406,deoxyribose-phosphate aldolase +16.2617013,PR:000029409,http://purl.obolibrary.org/obo/PR_000029409,desumoylating isopeptidase 1 +16.2617013,PR:000029461,http://purl.obolibrary.org/obo/PR_000029461,protein FAM133B +16.2617013,PR:000029472,http://purl.obolibrary.org/obo/PR_000029472,shieldin complex subunit 2 +16.2617013,PR:000029473,http://purl.obolibrary.org/obo/PR_000029473,DENN domain-containing protein 10 +16.2617013,PR:000029485,http://purl.obolibrary.org/obo/PR_000029485,protein FAM83G +16.2617013,PR:000029488,http://purl.obolibrary.org/obo/PR_000029488,leucine repeat adapter protein 25 +16.2617013,PR:000029490,http://purl.obolibrary.org/obo/PR_000029490,cytosolic iron-sulfur assembly component 2A +16.2617013,PR:000029491,http://purl.obolibrary.org/obo/PR_000029491,protein FAM98B +16.2617013,PR:000029501,http://purl.obolibrary.org/obo/PR_000029501,FLYWCH family member 2 +16.2617013,PR:000029538,http://purl.obolibrary.org/obo/PR_000029538,HEAT repeat-containing protein 3 +16.2617013,PR:000029582,http://purl.obolibrary.org/obo/PR_000029582,KRAB-A domain-containing protein 2 +16.2617013,PR:000029589,http://purl.obolibrary.org/obo/PR_000029589,putative RNA-binding protein Luc7-like 2 +16.2617013,PR:000029600,http://purl.obolibrary.org/obo/PR_000029600,leucine-rich repeat-containing protein 42 +16.2617013,PR:000029601,http://purl.obolibrary.org/obo/PR_000029601,leucine-rich repeat-containing protein 45 +16.2617013,PR:000029603,http://purl.obolibrary.org/obo/PR_000029603,leucine-rich repeat-containing protein 56 +16.2617013,PR:000029608,http://purl.obolibrary.org/obo/PR_000029608,DISP complex protein LRCH3 +16.2617013,PR:000029677,http://purl.obolibrary.org/obo/PR_000029677,pleckstrin homology domain-containing family H member 3 +16.2617013,PR:000029681,http://purl.obolibrary.org/obo/PR_000029681,pleckstrin homology domain-containing family O member 2 +16.2617013,PR:000029685,http://purl.obolibrary.org/obo/PR_000029685,PI-PLC X domain-containing protein 2 +16.2617013,PR:000029690,http://purl.obolibrary.org/obo/PR_000029690,POTE ankyrin domain family member E +16.2617013,PR:000029691,http://purl.obolibrary.org/obo/PR_000029691,protein phosphatase 1 regulatory subunit 21 +16.2617013,PR:000029692,http://purl.obolibrary.org/obo/PR_000029692,solute carrier family 66 member 2 +16.2617013,PR:000029696,http://purl.obolibrary.org/obo/PR_000029696,proline-rich transmembrane protein 3 +16.2617013,PR:000029713,http://purl.obolibrary.org/obo/PR_000029713,"RNA-binding motif protein, X-linked 2" +16.2617013,PR:000029717,http://purl.obolibrary.org/obo/PR_000029717,RanBP2-like and GRIP domain-containing protein 3 +16.2617013,PR:000029736,http://purl.obolibrary.org/obo/PR_000029736,probable UDP-sugar transporter protein SLC35A5 +16.2617013,PR:000029782,http://purl.obolibrary.org/obo/PR_000029782,TBC domain-containing protein kinase-like protein +16.2617013,PR:000029787,http://purl.obolibrary.org/obo/PR_000029787,THAP domain-containing protein 10 +16.2617013,PR:000029806,http://purl.obolibrary.org/obo/PR_000029806,transmembrane protein 225 +16.2617013,PR:000029811,http://purl.obolibrary.org/obo/PR_000029811,transmembrane protein 87A +16.2617013,PR:000029818,http://purl.obolibrary.org/obo/PR_000029818,protein O-mannosyl-transferase TMTC4 +16.2617013,PR:000029830,http://purl.obolibrary.org/obo/PR_000029830,tetratricopeptide repeat protein 13 +16.2617013,PR:000029853,http://purl.obolibrary.org/obo/PR_000029853,von Willebrand factor A domain-containing protein 3B +16.2617013,PR:000029862,http://purl.obolibrary.org/obo/PR_000029862,WD repeat-containing protein 54 +16.2617013,PR:000029875,http://purl.obolibrary.org/obo/PR_000029875,"WD repeat, SAM and U-box domain-containing protein 1" +16.2617013,PR:000029888,http://purl.obolibrary.org/obo/PR_000029888,zinc finger CCHC-type and RNA-binding motif-containing protein 1 +16.2617013,PR:000029903,http://purl.obolibrary.org/obo/PR_000029903,none +16.2617013,PR:000030201,http://purl.obolibrary.org/obo/PR_000030201,transmembrane protein 229A +16.2617013,PR:000030206,http://purl.obolibrary.org/obo/PR_000030206,zinc finger protein 90 +16.2617013,PR:000030210,http://purl.obolibrary.org/obo/PR_000030210,"DnaJ homolog subfamily C member 30, mitochondrial" +16.2617013,PR:000030220,http://purl.obolibrary.org/obo/PR_000030220,inactive phospholipid phosphatase 7 +16.2617013,PR:000030228,http://purl.obolibrary.org/obo/PR_000030228,protein prenyltransferase alpha subunit repeat-containing protein 1 +16.2617013,PR:000030239,http://purl.obolibrary.org/obo/PR_000030239,death domain-containing protein 1 +16.2617013,PR:000030254,http://purl.obolibrary.org/obo/PR_000030254,palmitoyltransferase ZDHHC22 +16.2617013,PR:000030273,http://purl.obolibrary.org/obo/PR_000030273,ankyrin repeat domain-containing protein SOWAHC +16.2617013,PR:000030288,http://purl.obolibrary.org/obo/PR_000030288,BTB/POZ domain-containing protein 8 +16.2617013,PR:000030293,http://purl.obolibrary.org/obo/PR_000030293,acyl-coenzyme A thioesterase THEM5 +16.2617013,PR:000030303,http://purl.obolibrary.org/obo/PR_000030303,leucine-rich repeat-containing protein 49 +16.2617013,PR:000030313,http://purl.obolibrary.org/obo/PR_000030313,pleckstrin homology domain-containing family D member 1 +16.2617013,PR:000030321,http://purl.obolibrary.org/obo/PR_000030321,NHL repeat-containing protein 3 +16.2617013,PR:000030341,http://purl.obolibrary.org/obo/PR_000030341,endogenous retrovirus group V member 2 Env polyprotein +16.2617013,PR:000030346,http://purl.obolibrary.org/obo/PR_000030346,WD repeat-containing protein 37 +16.2617013,PR:000030361,http://purl.obolibrary.org/obo/PR_000030361,"calcium uniporter regulatory subunit MCUb, mitochondrial" +16.2617013,PR:000030373,http://purl.obolibrary.org/obo/PR_000030373,tripartite motif-containing protein 73 +16.2617013,PR:000030375,http://purl.obolibrary.org/obo/PR_000030375,putative neuroblastoma breakpoint family member 8 +16.2617013,PR:000030376,http://purl.obolibrary.org/obo/PR_000030376,nuclear envelope integral membrane protein 2 +16.2617013,PR:000030377,http://purl.obolibrary.org/obo/PR_000030377,coiled-coil domain-containing protein 78 +16.2617013,PR:000030386,http://purl.obolibrary.org/obo/PR_000030386,nucleoside diphosphate-linked moiety X motif 17 +16.2617013,PR:000030393,http://purl.obolibrary.org/obo/PR_000030393,transmembrane protein 216 +16.2617013,PR:000030404,http://purl.obolibrary.org/obo/PR_000030404,GDNF family receptor alpha-like +16.2617013,PR:000030409,http://purl.obolibrary.org/obo/PR_000030409,SH3 domain-binding glutamic acid-rich-like protein +16.2617013,PR:000030412,http://purl.obolibrary.org/obo/PR_000030412,GTPase-activating Rap/Ran-GAP domain-like protein 3 +16.2617013,PR:000030449,http://purl.obolibrary.org/obo/PR_000030449,zinc finger CCCH domain-containing protein 3 +16.2617013,PR:000030472,http://purl.obolibrary.org/obo/PR_000030472,protein FAM53B +16.2617013,PR:000030475,http://purl.obolibrary.org/obo/PR_000030475,mitochondrial pyruvate carrier 1-like protein +16.2617013,PR:000030480,http://purl.obolibrary.org/obo/PR_000030480,neuroblastoma breakpoint family member 9 +16.2617013,PR:000030491,http://purl.obolibrary.org/obo/PR_000030491,minichromosome maintenance domain-containing protein 2 +16.2617013,PR:000030498,http://purl.obolibrary.org/obo/PR_000030498,adhesion G protein-coupled receptor F4 +16.2617013,PR:000030503,http://purl.obolibrary.org/obo/PR_000030503,THAP domain-containing protein 3 +16.2617013,PR:000030507,http://purl.obolibrary.org/obo/PR_000030507,leucine-rich repeat-containing protein 38 +16.2617013,PR:000030508,http://purl.obolibrary.org/obo/PR_000030508,putative inactive neutral ceramidase B +16.2617013,PR:000030512,http://purl.obolibrary.org/obo/PR_000030512,retrotransposon Gag-like protein 3 +16.2617013,PR:000030514,http://purl.obolibrary.org/obo/PR_000030514,centrosomal protein CCDC61 +16.2617013,PR:000030520,http://purl.obolibrary.org/obo/PR_000030520,ion channel TACAN +16.2617013,PR:000030544,http://purl.obolibrary.org/obo/PR_000030544,neuroblastoma breakpoint family member 15 +16.2617013,PR:000030547,http://purl.obolibrary.org/obo/PR_000030547,coiled-coil domain-containing protein 136 +16.2617013,PR:000030555,http://purl.obolibrary.org/obo/PR_000030555,cilia- and flagella-associated protein 46 +16.2617013,PR:000030562,http://purl.obolibrary.org/obo/PR_000030562,zinc finger C2HC domain-containing protein 1A +16.2617013,PR:000030586,http://purl.obolibrary.org/obo/PR_000030586,protein FAM171A1 +16.2617013,PR:000030592,http://purl.obolibrary.org/obo/PR_000030592,V-set and immunoglobulin domain-containing protein 8 +16.2617013,PR:000030618,http://purl.obolibrary.org/obo/PR_000030618,mitochondrial carrier protein SCaMC-3L +16.2617013,PR:000030641,http://purl.obolibrary.org/obo/PR_000030641,none +16.2617013,PR:000030648,http://purl.obolibrary.org/obo/PR_000030648,terminal nucleotidyltransferase 5B +16.2617013,PR:000030651,http://purl.obolibrary.org/obo/PR_000030651,coiled-coil-helix-coiled-coil-helix domain-containing protein 5 +16.2617013,PR:000030668,http://purl.obolibrary.org/obo/PR_000030668,probable aminopeptidase NPEPL1 +16.2617013,PR:000030669,http://purl.obolibrary.org/obo/PR_000030669,kelch repeat and BTB domain-containing protein 6 +16.2617013,PR:000030689,http://purl.obolibrary.org/obo/PR_000030689,TRPM8 channel-associated factor 2 +16.2617013,PR:000030698,http://purl.obolibrary.org/obo/PR_000030698,putative acyl-coenzyme A thioesterase 6 +16.2617013,PR:000030712,http://purl.obolibrary.org/obo/PR_000030712,leucine-rich repeat-containing protein 47 +16.2617013,PR:000030718,http://purl.obolibrary.org/obo/PR_000030718,protein-L-isoaspartate O-methyltransferase domain-containing protein 2 +16.2617013,PR:000030743,http://purl.obolibrary.org/obo/PR_000030743,transmembrane protein 178A +16.2617013,PR:000030754,http://purl.obolibrary.org/obo/PR_000030754,SET domain-containing protein 9 +16.2617013,PR:000030760,http://purl.obolibrary.org/obo/PR_000030760,TRPM8 channel-associated factor 1 +16.2617013,PR:000030788,http://purl.obolibrary.org/obo/PR_000030788,adhesion G-protein coupled receptor F3 +16.2617013,PR:000030798,http://purl.obolibrary.org/obo/PR_000030798,protein FAM47E +16.2617013,PR:000030824,http://purl.obolibrary.org/obo/PR_000030824,kelch repeat and BTB domain-containing protein 12 +16.2617013,PR:000030845,http://purl.obolibrary.org/obo/PR_000030845,protein FAM72B +16.2617013,PR:000030863,http://purl.obolibrary.org/obo/PR_000030863,tripartite motif-containing protein 74 +16.2617013,PR:000030867,http://purl.obolibrary.org/obo/PR_000030867,transmembrane protein 229B +16.2617013,PR:000030873,http://purl.obolibrary.org/obo/PR_000030873,testis-specific Y-encoded protein 3 +16.2617013,PR:000030891,http://purl.obolibrary.org/obo/PR_000030891,LON peptidase N-terminal domain and RING finger protein 1 +16.2617013,PR:000030903,http://purl.obolibrary.org/obo/PR_000030903,zinc finger CCHC domain-containing protein 3 +16.2617013,PR:000030956,http://purl.obolibrary.org/obo/PR_000030956,BTB/POZ domain-containing protein KCTD19 +16.2617013,PR:000030993,http://purl.obolibrary.org/obo/PR_000030993,Rho GTPase-activating protein 39 +16.2617013,PR:000030995,http://purl.obolibrary.org/obo/PR_000030995,tetratricopeptide repeat protein 23 +16.2617013,PR:000031011,http://purl.obolibrary.org/obo/PR_000031011,uncharacterized protein IDI2-AS1 +16.2617013,PR:000031032,http://purl.obolibrary.org/obo/PR_000031032,serine-rich coiled-coil domain-containing protein 2 +16.2617013,PR:000031042,http://purl.obolibrary.org/obo/PR_000031042,mitochondrial mRNA pseudouridine synthase RPUSD3 +16.2617013,PR:000031051,http://purl.obolibrary.org/obo/PR_000031051,Rho guanine nucleotide exchange factor 33 +16.2617013,PR:000031052,http://purl.obolibrary.org/obo/PR_000031052,adhesion G-protein coupled receptor F2 +16.2617013,PR:000031061,http://purl.obolibrary.org/obo/PR_000031061,KICSTOR complex protein ITFG2 +16.2617013,PR:000031064,http://purl.obolibrary.org/obo/PR_000031064,transmembrane protein 88B +16.2617013,PR:000031075,http://purl.obolibrary.org/obo/PR_000031075,cyclin N-terminal domain-containing protein 1 +16.2617013,PR:000031076,http://purl.obolibrary.org/obo/PR_000031076,leucine-rich repeat-containing protein 61 +16.2617013,PR:000031081,http://purl.obolibrary.org/obo/PR_000031081,transmembrane protein 19 +16.2617013,PR:000031110,http://purl.obolibrary.org/obo/PR_000031110,PRAME family member 2 +16.2617013,PR:000031122,http://purl.obolibrary.org/obo/PR_000031122,protein FAM124B +16.2617013,PR:000031138,http://purl.obolibrary.org/obo/PR_000031138,KRAB domain-containing protein 1 +16.2617013,PR:000031148,http://purl.obolibrary.org/obo/PR_000031148,WD repeat-containing protein 27 +16.2617013,PR:000031194,http://purl.obolibrary.org/obo/PR_000031194,EF-hand calcium-binding domain-containing protein 9 +16.2617013,PR:000031198,http://purl.obolibrary.org/obo/PR_000031198,BTB/POZ domain-containing protein KCTD18 +16.2617013,PR:000031200,http://purl.obolibrary.org/obo/PR_000031200,armadillo repeat-containing X-linked protein 5 +16.2617013,PR:000031239,http://purl.obolibrary.org/obo/PR_000031239,alanine and arginine-rich domain-containing protein +16.2617013,PR:000031240,http://purl.obolibrary.org/obo/PR_000031240,NudC domain-containing protein 3 +16.2617013,PR:000031247,http://purl.obolibrary.org/obo/PR_000031247,solute carrier family 15 member 5 +16.2617013,PR:000031248,http://purl.obolibrary.org/obo/PR_000031248,RNA pseudouridylate synthase domain-containing protein 1 +16.2617013,PR:000031260,http://purl.obolibrary.org/obo/PR_000031260,solute carrier family 22 member 23 +16.2617013,PR:000031273,http://purl.obolibrary.org/obo/PR_000031273,protein tyrosine phosphatase domain-containing protein 1 +16.2617013,PR:000031285,http://purl.obolibrary.org/obo/PR_000031285,maestro heat-like repeat-containing protein family member 1 +16.2617013,PR:000031291,http://purl.obolibrary.org/obo/PR_000031291,DALR anticodon-binding domain-containing protein 3 +16.2617013,PR:000031306,http://purl.obolibrary.org/obo/PR_000031306,sperm acrosome-associated protein 7 +16.2617013,PR:000031307,http://purl.obolibrary.org/obo/PR_000031307,metallo-beta-lactamase domain-containing protein 2 +16.2617013,PR:000031326,http://purl.obolibrary.org/obo/PR_000031326,WD repeat-containing protein 25 +16.2617013,PR:000031352,http://purl.obolibrary.org/obo/PR_000031352,protein ABHD8 +16.2617013,PR:000031358,http://purl.obolibrary.org/obo/PR_000031358,thymosin beta-15B +16.2617013,PR:000031370,http://purl.obolibrary.org/obo/PR_000031370,transmembrane protein 61 +16.2617013,PR:000031376,http://purl.obolibrary.org/obo/PR_000031376,"putative aspartate aminotransferase, cytoplasmic 2" +16.2617013,PR:000031379,http://purl.obolibrary.org/obo/PR_000031379,sushi domain-containing protein 1 +16.2617013,PR:000031386,http://purl.obolibrary.org/obo/PR_000031386,transmembrane protein 31 +16.2617013,PR:000031402,http://purl.obolibrary.org/obo/PR_000031402,protein FAM182B +16.2617013,PR:000031404,http://purl.obolibrary.org/obo/PR_000031404,testicular spindle-associated protein SHCBP1L +16.2617013,PR:000031417,http://purl.obolibrary.org/obo/PR_000031417,protein INSYN2B +16.2617013,PR:000031419,http://purl.obolibrary.org/obo/PR_000031419,palmitoyltransferase ZDHHC12 +16.2617013,PR:000031432,http://purl.obolibrary.org/obo/PR_000031432,LIM and senescent cell antigen-like-containing domain protein 3 +16.2617013,PR:000031441,http://purl.obolibrary.org/obo/PR_000031441,protein AKNAD1 +16.2617013,PR:000031453,http://purl.obolibrary.org/obo/PR_000031453,probable G-protein coupled receptor 156 +16.2617013,PR:000031457,http://purl.obolibrary.org/obo/PR_000031457,"NAD(P)H pyrophosphatase NUDT13, mitochondrial" +16.2617013,PR:000031472,http://purl.obolibrary.org/obo/PR_000031472,ATP synthase subunit C lysine N-methyltransferase +16.2617013,PR:000031484,http://purl.obolibrary.org/obo/PR_000031484,LON peptidase N-terminal domain and RING finger protein 2 +16.2617013,PR:000031487,http://purl.obolibrary.org/obo/PR_000031487,ZAR1-like protein +16.2617013,PR:000031497,http://purl.obolibrary.org/obo/PR_000031497,G antigen family D member 1 +16.2617013,PR:000031502,http://purl.obolibrary.org/obo/PR_000031502,neuroblastoma breakpoint family member 14 +16.2617013,PR:000031537,http://purl.obolibrary.org/obo/PR_000031537,NudC domain-containing protein 2 +16.2617013,PR:000031553,http://purl.obolibrary.org/obo/PR_000031553,12S rRNA N4-methylcytidine (m4C) methyltransferase +16.2617013,PR:000031556,http://purl.obolibrary.org/obo/PR_000031556,solute carrier family 22 member 25 +16.2617013,PR:000031569,http://purl.obolibrary.org/obo/PR_000031569,SH2 domain-containing protein 6 +16.2617013,PR:000031621,http://purl.obolibrary.org/obo/PR_000031621,ankyrin repeat and BTB/POZ domain-containing protein BTBD11 +16.2617013,PR:000031624,http://purl.obolibrary.org/obo/PR_000031624,ankyrin repeat domain-containing protein SOWAHA +16.2617013,PR:000031625,http://purl.obolibrary.org/obo/PR_000031625,transmembrane protein 207 +16.2617013,PR:000031632,http://purl.obolibrary.org/obo/PR_000031632,protein FAM186B +16.2617013,PR:000031635,http://purl.obolibrary.org/obo/PR_000031635,soluble scavenger receptor cysteine-rich domain-containing protein SSC5D +16.2617013,PR:000031639,http://purl.obolibrary.org/obo/PR_000031639,"dynein assembly factor 6, axonemal" +16.2617013,PR:000031645,http://purl.obolibrary.org/obo/PR_000031645,leucine-rich repeat-containing protein 37B +16.2617013,PR:000031648,http://purl.obolibrary.org/obo/PR_000031648,polyadenylate-binding protein 4-like +16.2617013,PR:000031669,http://purl.obolibrary.org/obo/PR_000031669,UBX domain-containing protein 10 +16.2617013,PR:000031678,http://purl.obolibrary.org/obo/PR_000031678,putative transmembrane protein 75 +16.2617013,PR:000031706,http://purl.obolibrary.org/obo/PR_000031706,lysoplasmalogenase +16.2617013,PR:000031715,http://purl.obolibrary.org/obo/PR_000031715,piRNA biogenesis protein EXD1 +16.2617013,PR:000031730,http://purl.obolibrary.org/obo/PR_000031730,KAT8 regulatory NSL complex subunit 1-like protein +16.2617013,PR:000031737,http://purl.obolibrary.org/obo/PR_000031737,ankyrin repeat domain-containing protein 45 +16.2617013,PR:000031747,http://purl.obolibrary.org/obo/PR_000031747,transmembrane protein 53 +16.2617013,PR:000031788,http://purl.obolibrary.org/obo/PR_000031788,ubiquitin carboxyl-terminal hydrolase MINDY-2 +16.2617013,PR:000031790,http://purl.obolibrary.org/obo/PR_000031790,protein PRR14L +16.2617013,PR:000031791,http://purl.obolibrary.org/obo/PR_000031791,protein FAM53A +16.2617013,PR:000031806,http://purl.obolibrary.org/obo/PR_000031806,transmembrane protein 240 +16.2617013,PR:000031826,http://purl.obolibrary.org/obo/PR_000031826,ankyrin repeat domain-containing protein 50 +16.2617013,PR:000031837,http://purl.obolibrary.org/obo/PR_000031837,protein FAM161B +16.2617013,PR:000031840,http://purl.obolibrary.org/obo/PR_000031840,"T-cell-interacting, activating receptor on myeloid cells protein 1" +16.2617013,PR:000031860,http://purl.obolibrary.org/obo/PR_000031860,membrane protein FAM174B +16.2617013,PR:000031870,http://purl.obolibrary.org/obo/PR_000031870,RNA-binding protein 48 +16.2617013,PR:000031902,http://purl.obolibrary.org/obo/PR_000031902,ARL14 effector protein +16.2617013,PR:000031920,http://purl.obolibrary.org/obo/PR_000031920,POTE ankyrin domain family member I +16.2617013,PR:000031924,http://purl.obolibrary.org/obo/PR_000031924,WAP four-disulfide core domain protein 6 +16.2617013,PR:000031939,http://purl.obolibrary.org/obo/PR_000031939,leucine-rich repeat-containing protein 46 +16.2617013,PR:000031959,http://purl.obolibrary.org/obo/PR_000031959,solute carrier family 46 member 3 +16.2617013,PR:000031975,http://purl.obolibrary.org/obo/PR_000031975,oxidoreductase NAD-binding domain-containing protein 1 +16.2617013,PR:000031981,http://purl.obolibrary.org/obo/PR_000031981,WD repeat-containing protein 90 +16.2617013,PR:000031986,http://purl.obolibrary.org/obo/PR_000031986,DnaJ homolog subfamily C member 27 +16.2617013,PR:000032014,http://purl.obolibrary.org/obo/PR_000032014,"protein PET117 homolog, mitochondrial" +16.2617013,PR:000032017,http://purl.obolibrary.org/obo/PR_000032017,transmembrane protein 106C +16.2617013,PR:000032042,http://purl.obolibrary.org/obo/PR_000032042,putative PRAME family member 13 +16.2617013,PR:000032051,http://purl.obolibrary.org/obo/PR_000032051,tetratricopeptide repeat protein 17 +16.2617013,PR:000032055,http://purl.obolibrary.org/obo/PR_000032055,leucine-rich repeat-containing protein 23 +16.2617013,PR:000032067,http://purl.obolibrary.org/obo/PR_000032067,nuclear pore complex-interacting protein family member B7 +16.2617013,PR:000032068,http://purl.obolibrary.org/obo/PR_000032068,dynein light chain Tctex-type protein 2B +16.2617013,PR:000032089,http://purl.obolibrary.org/obo/PR_000032089,coiled-coil domain-containing protein 144B +16.2617013,PR:000032114,http://purl.obolibrary.org/obo/PR_000032114,transmembrane protein 71 +16.2617013,PR:000032147,http://purl.obolibrary.org/obo/PR_000032147,ankyrin repeat domain-containing protein 18A +16.2617013,PR:000032152,http://purl.obolibrary.org/obo/PR_000032152,transport and Golgi organization 6 +16.2617013,PR:000032153,http://purl.obolibrary.org/obo/PR_000032153,izumo sperm-egg fusion protein 3 +16.2617013,PR:000032174,http://purl.obolibrary.org/obo/PR_000032174,palmitoyltransferase ZDHHC19 +16.2617013,PR:000032181,http://purl.obolibrary.org/obo/PR_000032181,V-set and transmembrane domain-containing protein 2A +16.2617013,PR:000032188,http://purl.obolibrary.org/obo/PR_000032188,leucine-rich repeat-containing protein 58 +16.2617013,PR:000032191,http://purl.obolibrary.org/obo/PR_000032191,cilia- and flagella-associated protein 73 +16.2617013,PR:000032195,http://purl.obolibrary.org/obo/PR_000032195,probable cation-transporting ATPase 13A5 +16.2617013,PR:000032206,http://purl.obolibrary.org/obo/PR_000032206,coiled-coil domain-containing protein 60 +16.2617013,PR:000032216,http://purl.obolibrary.org/obo/PR_000032216,NXPE family member 4 +16.2617013,PR:000032218,http://purl.obolibrary.org/obo/PR_000032218,Nck-associated protein 5-like +16.2617013,PR:000032225,http://purl.obolibrary.org/obo/PR_000032225,cilia- and flagella-associated protein 57 +16.2617013,PR:000032239,http://purl.obolibrary.org/obo/PR_000032239,coiled-coil domain-containing protein 33 +16.2617013,PR:000032245,http://purl.obolibrary.org/obo/PR_000032245,transmembrane protein 138 +16.2617013,PR:000032247,http://purl.obolibrary.org/obo/PR_000032247,endogenous Bornavirus-like nucleoprotein 2 +16.2617013,PR:000032249,http://purl.obolibrary.org/obo/PR_000032249,leucine-rich repeat-containing protein 63 +16.2617013,PR:000032250,http://purl.obolibrary.org/obo/PR_000032250,transmembrane protein 132B +16.2617013,PR:000032253,http://purl.obolibrary.org/obo/PR_000032253,transmembrane protein 182 +16.2617013,PR:000032293,http://purl.obolibrary.org/obo/PR_000032293,BTB/POZ domain-containing protein 18 +16.2617013,PR:000032301,http://purl.obolibrary.org/obo/PR_000032301,BEN domain-containing protein 6 +16.2617013,PR:000032312,http://purl.obolibrary.org/obo/PR_000032312,mitochondrial assembly of ribosomal large subunit protein 1 +16.2617013,PR:000032324,http://purl.obolibrary.org/obo/PR_000032324,dynein regulatory complex subunit 7 +16.2617013,PR:000032336,http://purl.obolibrary.org/obo/PR_000032336,protein FAM9B +16.2617013,PR:000032383,http://purl.obolibrary.org/obo/PR_000032383,cytochrome c oxidase assembly factor 5 +16.2617013,PR:000032397,http://purl.obolibrary.org/obo/PR_000032397,methyltransferase-like protein 22 +16.2617013,PR:000032398,http://purl.obolibrary.org/obo/PR_000032398,MORN repeat-containing protein 5 +16.2617013,PR:000032405,http://purl.obolibrary.org/obo/PR_000032405,glycosyltransferase 1 domain-containing protein 1 +16.2617013,PR:000032407,http://purl.obolibrary.org/obo/PR_000032407,zinc finger BED domain-containing protein 2 +16.2617013,PR:000032411,http://purl.obolibrary.org/obo/PR_000032411,BTB/POZ domain-containing protein KCTD21 +16.2617013,PR:000032420,http://purl.obolibrary.org/obo/PR_000032420,chemokine-like protein TAFA-3 +16.2617013,PR:000032423,http://purl.obolibrary.org/obo/PR_000032423,"RNA-binding motif protein, X-linked-like-3" +16.2617013,PR:000032435,http://purl.obolibrary.org/obo/PR_000032435,POTE ankyrin domain family member F +16.2617013,PR:000032439,http://purl.obolibrary.org/obo/PR_000032439,MANSC domain-containing protein 1 +16.2617013,PR:000032444,http://purl.obolibrary.org/obo/PR_000032444,patched domain-containing protein 4 +16.2617013,PR:000032468,http://purl.obolibrary.org/obo/PR_000032468,transmembrane protein 241 +16.2617013,PR:000032475,http://purl.obolibrary.org/obo/PR_000032475,transmembrane protein 108 +16.2617013,PR:000032476,http://purl.obolibrary.org/obo/PR_000032476,"citrate synthase-lysine N-methyltransferase CSKMT, mitochondrial" +16.2617013,PR:000032524,http://purl.obolibrary.org/obo/PR_000032524,translation machinery-associated protein 16 +16.2617013,PR:000032531,http://purl.obolibrary.org/obo/PR_000032531,SPRY domain-containing protein 4 +16.2617013,PR:000032534,http://purl.obolibrary.org/obo/PR_000032534,protein FAM180B +16.2617013,PR:000032547,http://purl.obolibrary.org/obo/PR_000032547,transmembrane protein 134 +16.2617013,PR:000032554,http://purl.obolibrary.org/obo/PR_000032554,low-density lipoprotein receptor class A domain-containing protein 3 +16.2617013,PR:000032565,http://purl.obolibrary.org/obo/PR_000032565,HEAT repeat-containing protein 5B +16.2617013,PR:000032613,http://purl.obolibrary.org/obo/PR_000032613,protein-lysine methyltransferase METTL21D +16.2617013,PR:000032619,http://purl.obolibrary.org/obo/PR_000032619,protein MIX23 +16.2617013,PR:000032630,http://purl.obolibrary.org/obo/PR_000032630,coiled-coil domain-containing protein 89 +16.2617013,PR:000032655,http://purl.obolibrary.org/obo/PR_000032655,spermatogenesis-associated protein 24 +16.2617013,PR:000032656,http://purl.obolibrary.org/obo/PR_000032656,zinc finger C3H1 domain-containing protein +16.2617013,PR:000032679,http://purl.obolibrary.org/obo/PR_000032679,GRB2-associated and regulator of MAPK protein 2 +16.2617013,PR:000032683,http://purl.obolibrary.org/obo/PR_000032683,protein MMS22-like +16.2617013,PR:000032686,http://purl.obolibrary.org/obo/PR_000032686,centrosomal AT-AC splicing factor +16.2617013,PR:000032705,http://purl.obolibrary.org/obo/PR_000032705,EMI domain-containing protein 1 +16.2617013,PR:000032715,http://purl.obolibrary.org/obo/PR_000032715,kelch repeat and BTB domain-containing protein 4 +16.2617013,PR:000032717,http://purl.obolibrary.org/obo/PR_000032717,CSC1-like protein 2 +16.2617013,PR:000032724,http://purl.obolibrary.org/obo/PR_000032724,retrotransposon Gag-like protein 5 +16.2617013,PR:000032737,http://purl.obolibrary.org/obo/PR_000032737,protein FAM160B1 +16.2617013,PR:000032743,http://purl.obolibrary.org/obo/PR_000032743,ATPase family AAA domain-containing protein 2B +16.2617013,PR:000032754,http://purl.obolibrary.org/obo/PR_000032754,solute carrier family 49 member A3 +16.2617013,PR:000032761,http://purl.obolibrary.org/obo/PR_000032761,zinc finger and BTB domain-containing protein 8A +16.2617013,PR:000032763,http://purl.obolibrary.org/obo/PR_000032763,galectin-16 +16.2617013,PR:000032786,http://purl.obolibrary.org/obo/PR_000032786,probable palmitoyltransferase ZDHHC11B +16.2617013,PR:000032804,http://purl.obolibrary.org/obo/PR_000032804,DEP domain-containing protein 4 +16.2617013,PR:000032849,http://purl.obolibrary.org/obo/PR_000032849,none +16.2617013,PR:000032859,http://purl.obolibrary.org/obo/PR_000032859,none +16.2617013,PR:000032866,http://purl.obolibrary.org/obo/PR_000032866,none +16.2617013,PR:000032868,http://purl.obolibrary.org/obo/PR_000032868,none +16.2617013,PR:000032884,http://purl.obolibrary.org/obo/PR_000032884,none +16.2617013,PR:000032994,http://purl.obolibrary.org/obo/PR_000032994,none +16.2617013,PR:000033003,http://purl.obolibrary.org/obo/PR_000033003,none +16.2617013,PR:000033022,http://purl.obolibrary.org/obo/PR_000033022,none +16.2617013,PR:000033082,http://purl.obolibrary.org/obo/PR_000033082,none +16.2617013,PR:000033127,http://purl.obolibrary.org/obo/PR_000033127,none +16.2617013,PR:000033134,http://purl.obolibrary.org/obo/PR_000033134,none +16.2617013,PR:000033192,http://purl.obolibrary.org/obo/PR_000033192,none +16.2617013,PR:000033206,http://purl.obolibrary.org/obo/PR_000033206,none +16.2617013,PR:000033217,http://purl.obolibrary.org/obo/PR_000033217,none +16.2617013,PR:000033221,http://purl.obolibrary.org/obo/PR_000033221,none +16.2617013,PR:000033258,http://purl.obolibrary.org/obo/PR_000033258,none +16.2617013,PR:000033266,http://purl.obolibrary.org/obo/PR_000033266,none +16.2617013,PR:000033320,http://purl.obolibrary.org/obo/PR_000033320,none +16.2617013,PR:000033345,http://purl.obolibrary.org/obo/PR_000033345,none +16.2617013,PR:000033390,http://purl.obolibrary.org/obo/PR_000033390,none +16.2617013,PR:000033392,http://purl.obolibrary.org/obo/PR_000033392,none +16.2617013,PR:000033398,http://purl.obolibrary.org/obo/PR_000033398,none +16.2617013,PR:000033405,http://purl.obolibrary.org/obo/PR_000033405,none +16.2617013,PR:000033432,http://purl.obolibrary.org/obo/PR_000033432,none +16.2617013,PR:000033450,http://purl.obolibrary.org/obo/PR_000033450,protein PTGES3L +16.2617013,PR:000033469,http://purl.obolibrary.org/obo/PR_000033469,none +16.2617013,PR:000033479,http://purl.obolibrary.org/obo/PR_000033479,none +16.2617013,PR:000033506,http://purl.obolibrary.org/obo/PR_000033506,none +16.2617013,PR:000033519,http://purl.obolibrary.org/obo/PR_000033519,none +16.2617013,PR:000033544,http://purl.obolibrary.org/obo/PR_000033544,none +16.2617013,PR:000033562,http://purl.obolibrary.org/obo/PR_000033562,none +16.2617013,PR:000033575,http://purl.obolibrary.org/obo/PR_000033575,none +16.2617013,PR:000033581,http://purl.obolibrary.org/obo/PR_000033581,none +16.2617013,PR:000033636,http://purl.obolibrary.org/obo/PR_000033636,none +16.2617013,PR:000033761,http://purl.obolibrary.org/obo/PR_000033761,none +16.2617013,PR:000033822,http://purl.obolibrary.org/obo/PR_000033822,none +16.2617013,PR:000033876,http://purl.obolibrary.org/obo/PR_000033876,none +16.2617013,PR:000033955,http://purl.obolibrary.org/obo/PR_000033955,none +16.2617013,PR:000033976,http://purl.obolibrary.org/obo/PR_000033976,none +16.2617013,PR:000034031,http://purl.obolibrary.org/obo/PR_000034031,none +16.2617013,PR:000034059,http://purl.obolibrary.org/obo/PR_000034059,none +16.2617013,PR:000034135,http://purl.obolibrary.org/obo/PR_000034135,none +16.2617013,PR:000034181,http://purl.obolibrary.org/obo/PR_000034181,none +16.2617013,PR:000034186,http://purl.obolibrary.org/obo/PR_000034186,none +16.2617013,PR:000034193,http://purl.obolibrary.org/obo/PR_000034193,none +16.2617013,PR:000034233,http://purl.obolibrary.org/obo/PR_000034233,none +16.2617013,PR:000034279,http://purl.obolibrary.org/obo/PR_000034279,none +16.2617013,PR:000034324,http://purl.obolibrary.org/obo/PR_000034324,none +16.2617013,PR:000034388,http://purl.obolibrary.org/obo/PR_000034388,none +16.2617013,PR:000034390,http://purl.obolibrary.org/obo/PR_000034390,none +16.2617013,PR:000034393,http://purl.obolibrary.org/obo/PR_000034393,none +16.2617013,PR:000034395,http://purl.obolibrary.org/obo/PR_000034395,none +16.2617013,PR:000034456,http://purl.obolibrary.org/obo/PR_000034456,none +16.2617013,PR:000034486,http://purl.obolibrary.org/obo/PR_000034486,none +16.2617013,PR:000034564,http://purl.obolibrary.org/obo/PR_000034564,none +16.2617013,PR:000034570,http://purl.obolibrary.org/obo/PR_000034570,none +16.2617013,PR:000034585,http://purl.obolibrary.org/obo/PR_000034585,none +16.2617013,PR:000034589,http://purl.obolibrary.org/obo/PR_000034589,none +16.2617013,PR:000034593,http://purl.obolibrary.org/obo/PR_000034593,none +16.2617013,PR:000034598,http://purl.obolibrary.org/obo/PR_000034598,none +16.2617013,PR:000034621,http://purl.obolibrary.org/obo/PR_000034621,none +16.2617013,PR:000034753,http://purl.obolibrary.org/obo/PR_000034753,none +16.2617013,PR:000034778,http://purl.obolibrary.org/obo/PR_000034778,none +16.2617013,PR:000034792,http://purl.obolibrary.org/obo/PR_000034792,none +16.2617013,PR:000034798,http://purl.obolibrary.org/obo/PR_000034798,none +16.2617013,PR:000034862,http://purl.obolibrary.org/obo/PR_000034862,none +16.2617013,PR:000034882,http://purl.obolibrary.org/obo/PR_000034882,none +16.2617013,PR:000034940,http://purl.obolibrary.org/obo/PR_000034940,none +16.2617013,PR:000034945,http://purl.obolibrary.org/obo/PR_000034945,none +16.2617013,PR:000034947,http://purl.obolibrary.org/obo/PR_000034947,none +16.2617013,PR:000034981,http://purl.obolibrary.org/obo/PR_000034981,none +16.2617013,PR:000034999,http://purl.obolibrary.org/obo/PR_000034999,none +16.2617013,PR:000035017,http://purl.obolibrary.org/obo/PR_000035017,none +16.2617013,PR:000035029,http://purl.obolibrary.org/obo/PR_000035029,none +16.2617013,PR:000035057,http://purl.obolibrary.org/obo/PR_000035057,none +16.2617013,PR:000035077,http://purl.obolibrary.org/obo/PR_000035077,none +16.2617013,PR:000035088,http://purl.obolibrary.org/obo/PR_000035088,none +16.2617013,PR:000035196,http://purl.obolibrary.org/obo/PR_000035196,none +16.2617013,PR:000035274,http://purl.obolibrary.org/obo/PR_000035274,none +16.2617013,PR:000035302,http://purl.obolibrary.org/obo/PR_000035302,none +16.2617013,PR:000035329,http://purl.obolibrary.org/obo/PR_000035329,none +16.2617013,PR:000035339,http://purl.obolibrary.org/obo/PR_000035339,none +16.2617013,PR:000035383,http://purl.obolibrary.org/obo/PR_000035383,none +16.2617013,PR:000035894,http://purl.obolibrary.org/obo/PR_000035894,none +16.2617013,PR:000036823,http://purl.obolibrary.org/obo/PR_000036823,none +16.2617013,PR:000036947,http://purl.obolibrary.org/obo/PR_000036947,T-cell surface glycoprotein CD1 (human) +16.2617013,PR:000037012,http://purl.obolibrary.org/obo/PR_000037012,none +16.2617013,PR:000037079,http://purl.obolibrary.org/obo/PR_000037079,neddylated protein +16.2617013,PR:000038988,http://purl.obolibrary.org/obo/PR_000038988,transmembrane domain-containing protein TMIGD3 +16.2617013,PR:000039135,http://purl.obolibrary.org/obo/PR_000039135,protein Hikeshi +16.2617013,PR:000039166,http://purl.obolibrary.org/obo/PR_000039166,exonuclease mut-7 homolog +16.2617013,PR:000041293,http://purl.obolibrary.org/obo/PR_000041293,none +16.2617013,PR:000044419,http://purl.obolibrary.org/obo/PR_000044419,none +16.2617013,PR:000044429,http://purl.obolibrary.org/obo/PR_000044429,none +16.2617013,PR:000044433,http://purl.obolibrary.org/obo/PR_000044433,none +16.2617013,PR:A1A5V9,http://purl.obolibrary.org/obo/PR_A1A5V9,none +16.2617013,PR:A2AE20,http://purl.obolibrary.org/obo/PR_A2AE20,none +16.2617013,PR:A5PN28,http://purl.obolibrary.org/obo/PR_A5PN28,none +16.2617013,PR:A9LNK9,http://purl.obolibrary.org/obo/PR_A9LNK9,none +16.2617013,PR:B2RYE5,http://purl.obolibrary.org/obo/PR_B2RYE5,none +16.2617013,PR:B3H5R8,http://purl.obolibrary.org/obo/PR_B3H5R8,none +16.2617013,PR:B5X570,http://purl.obolibrary.org/obo/PR_B5X570,none +16.2617013,PR:B6EXY6,http://purl.obolibrary.org/obo/PR_B6EXY6,none +16.2617013,PR:B7SY83,http://purl.obolibrary.org/obo/PR_B7SY83,none +16.2617013,PR:B9DGG8,http://purl.obolibrary.org/obo/PR_B9DGG8,none +16.2617013,PR:C0LGU0,http://purl.obolibrary.org/obo/PR_C0LGU0,none +16.2617013,PR:D1KF50,http://purl.obolibrary.org/obo/PR_D1KF50,none +16.2617013,PR:E9Q9U0,http://purl.obolibrary.org/obo/PR_E9Q9U0,none +16.2617013,PR:F1QR98,http://purl.obolibrary.org/obo/PR_F1QR98,none +16.2617013,PR:F4IH31,http://purl.obolibrary.org/obo/PR_F4IH31,none +16.2617013,PR:F4J7A7,http://purl.obolibrary.org/obo/PR_F4J7A7,none +16.2617013,PR:G2TRL3,http://purl.obolibrary.org/obo/PR_G2TRL3,none +16.2617013,PR:G5EBK1,http://purl.obolibrary.org/obo/PR_G5EBK1,none +16.2617013,PR:G5EDR5,http://purl.obolibrary.org/obo/PR_G5EDR5,none +16.2617013,PR:M9NEY8,http://purl.obolibrary.org/obo/PR_M9NEY8,none +16.2617013,PR:O04034,http://purl.obolibrary.org/obo/PR_O04034,none +16.2617013,PR:O04193,http://purl.obolibrary.org/obo/PR_O04193,none +16.2617013,PR:O04200,http://purl.obolibrary.org/obo/PR_O04200,none +16.2617013,PR:O08565,http://purl.obolibrary.org/obo/PR_O08565,none +16.2617013,PR:O13282,http://purl.obolibrary.org/obo/PR_O13282,none +16.2617013,PR:O13516,http://purl.obolibrary.org/obo/PR_O13516,none +16.2617013,PR:O13563,http://purl.obolibrary.org/obo/PR_O13563,none +16.2617013,PR:O13614,http://purl.obolibrary.org/obo/PR_O13614,none +16.2617013,PR:O14388,http://purl.obolibrary.org/obo/PR_O14388,none +16.2617013,PR:O15706,http://purl.obolibrary.org/obo/PR_O15706,none +16.2617013,PR:O15819,http://purl.obolibrary.org/obo/PR_O15819,none +16.2617013,PR:O16130,http://purl.obolibrary.org/obo/PR_O16130,none +16.2617013,PR:O22265,http://purl.obolibrary.org/obo/PR_O22265,none +16.2617013,PR:O22290,http://purl.obolibrary.org/obo/PR_O22290,none +16.2617013,PR:O22682,http://purl.obolibrary.org/obo/PR_O22682,none +16.2617013,PR:O22850,http://purl.obolibrary.org/obo/PR_O22850,none +16.2617013,PR:O22971,http://purl.obolibrary.org/obo/PR_O22971,none +16.2617013,PR:O23300,http://purl.obolibrary.org/obo/PR_O23300,none +16.2617013,PR:O23349,http://purl.obolibrary.org/obo/PR_O23349,none +16.2617013,PR:O23512,http://purl.obolibrary.org/obo/PR_O23512,none +16.2617013,PR:O23647,http://purl.obolibrary.org/obo/PR_O23647,none +16.2617013,PR:O35291,http://purl.obolibrary.org/obo/PR_O35291,none +16.2617013,PR:O35817,http://purl.obolibrary.org/obo/PR_O35817,none +16.2617013,PR:O42356,http://purl.obolibrary.org/obo/PR_O42356,none +16.2617013,PR:O42848,http://purl.obolibrary.org/obo/PR_O42848,none +16.2617013,PR:O42861,http://purl.obolibrary.org/obo/PR_O42861,none +16.2617013,PR:O43036,http://purl.obolibrary.org/obo/PR_O43036,none +16.2617013,PR:O48528,http://purl.obolibrary.org/obo/PR_O48528,none +16.2617013,PR:O48773,http://purl.obolibrary.org/obo/PR_O48773,none +16.2617013,PR:O48947,http://purl.obolibrary.org/obo/PR_O48947,none +16.2617013,PR:O49403,http://purl.obolibrary.org/obo/PR_O49403,none +16.2617013,PR:O49506,http://purl.obolibrary.org/obo/PR_O49506,none +16.2617013,PR:O49743,http://purl.obolibrary.org/obo/PR_O49743,none +16.2617013,PR:O54814,http://purl.obolibrary.org/obo/PR_O54814,none +16.2617013,PR:O55193,http://purl.obolibrary.org/obo/PR_O55193,none +16.2617013,PR:O57329,http://purl.obolibrary.org/obo/PR_O57329,none +16.2617013,PR:O59732,http://purl.obolibrary.org/obo/PR_O59732,none +16.2617013,PR:O64518,http://purl.obolibrary.org/obo/PR_O64518,none +16.2617013,PR:O64842,http://purl.obolibrary.org/obo/PR_O64842,none +16.2617013,PR:O70497,http://purl.obolibrary.org/obo/PR_O70497,none +16.2617013,PR:O74895,http://purl.obolibrary.org/obo/PR_O74895,none +16.2617013,PR:O80365,http://purl.obolibrary.org/obo/PR_O80365,none +16.2617013,PR:O80366,http://purl.obolibrary.org/obo/PR_O80366,none +16.2617013,PR:O80450,http://purl.obolibrary.org/obo/PR_O80450,none +16.2617013,PR:O80513,http://purl.obolibrary.org/obo/PR_O80513,none +16.2617013,PR:O80852,http://purl.obolibrary.org/obo/PR_O80852,none +16.2617013,PR:O80902,http://purl.obolibrary.org/obo/PR_O80902,none +16.2617013,PR:O80982,http://purl.obolibrary.org/obo/PR_O80982,none +16.2617013,PR:O81796,http://purl.obolibrary.org/obo/PR_O81796,none +16.2617013,PR:O82316,http://purl.obolibrary.org/obo/PR_O82316,none +16.2617013,PR:O82568,http://purl.obolibrary.org/obo/PR_O82568,none +16.2617013,PR:O82804,http://purl.obolibrary.org/obo/PR_O82804,none +16.2617013,PR:O94487,http://purl.obolibrary.org/obo/PR_O94487,none +16.2617013,PR:O94617,http://purl.obolibrary.org/obo/PR_O94617,none +16.2617013,PR:O94691,http://purl.obolibrary.org/obo/PR_O94691,none +16.2617013,PR:O96552,http://purl.obolibrary.org/obo/PR_O96552,none +16.2617013,PR:P00630,http://purl.obolibrary.org/obo/PR_P00630,none +16.2617013,PR:P01902-1,http://purl.obolibrary.org/obo/PR_P01902-1,none +16.2617013,PR:P02782,http://purl.obolibrary.org/obo/PR_P02782,none +16.2617013,PR:P03877,http://purl.obolibrary.org/obo/PR_P03877,none +16.2617013,PR:P03995,http://purl.obolibrary.org/obo/PR_P03995,none +16.2617013,PR:P04216,http://purl.obolibrary.org/obo/PR_P04216,Thy-1 membrane glycoprotein (human) +16.2617013,PR:P04288,http://purl.obolibrary.org/obo/PR_P04288,none +16.2617013,PR:P04488,http://purl.obolibrary.org/obo/PR_P04488,none +16.2617013,PR:P04625,http://purl.obolibrary.org/obo/PR_P04625,none +16.2617013,PR:P04710,http://purl.obolibrary.org/obo/PR_P04710,none +16.2617013,PR:P04745,http://purl.obolibrary.org/obo/PR_P04745,alpha-amylase 1 (human) +16.2617013,PR:P04814,http://purl.obolibrary.org/obo/PR_P04814,none +16.2617013,PR:P05544,http://purl.obolibrary.org/obo/PR_P05544,none +16.2617013,PR:P06243,http://purl.obolibrary.org/obo/PR_P06243,none +16.2617013,PR:P06634,http://purl.obolibrary.org/obo/PR_P06634,none +16.2617013,PR:P06776,http://purl.obolibrary.org/obo/PR_P06776,none +16.2617013,PR:P07284,http://purl.obolibrary.org/obo/PR_P07284,none +16.2617013,PR:P07665,http://purl.obolibrary.org/obo/PR_P07665,none +16.2617013,PR:P07909,http://purl.obolibrary.org/obo/PR_P07909,none +16.2617013,PR:P08473,http://purl.obolibrary.org/obo/PR_P08473,neprilysin (human) +16.2617013,PR:P08736,http://purl.obolibrary.org/obo/PR_P08736,none +16.2617013,PR:P09774,http://purl.obolibrary.org/obo/PR_P09774,none +16.2617013,PR:P0C0W9,http://purl.obolibrary.org/obo/PR_P0C0W9,none +16.2617013,PR:P0C8Y0,http://purl.obolibrary.org/obo/PR_P0C8Y0,none +16.2617013,PR:P0CT57,http://purl.obolibrary.org/obo/PR_P0CT57,none +16.2617013,PR:P0CT59,http://purl.obolibrary.org/obo/PR_P0CT59,none +16.2617013,PR:P0CT65,http://purl.obolibrary.org/obo/PR_P0CT65,none +16.2617013,PR:P0CX38,http://purl.obolibrary.org/obo/PR_P0CX38,none +16.2617013,PR:P0CX40,http://purl.obolibrary.org/obo/PR_P0CX40,none +16.2617013,PR:P0CX54,http://purl.obolibrary.org/obo/PR_P0CX54,none +16.2617013,PR:P11022,http://purl.obolibrary.org/obo/PR_P11022,none +16.2617013,PR:P11707,http://purl.obolibrary.org/obo/PR_P11707,none +16.2617013,PR:P12530,http://purl.obolibrary.org/obo/PR_P12530,none +16.2617013,PR:P12844,http://purl.obolibrary.org/obo/PR_P12844,none +16.2617013,PR:P13267,http://purl.obolibrary.org/obo/PR_P13267,none +16.2617013,PR:P14599,http://purl.obolibrary.org/obo/PR_P14599,none +16.2617013,PR:P14905,http://purl.obolibrary.org/obo/PR_P14905,none +16.2617013,PR:P14942,http://purl.obolibrary.org/obo/PR_P14942,none +16.2617013,PR:P15372,http://purl.obolibrary.org/obo/PR_P15372,none +16.2617013,PR:P15813,http://purl.obolibrary.org/obo/PR_P15813,antigen-presenting glycoprotein CD1d (human) +16.2617013,PR:P17486,http://purl.obolibrary.org/obo/PR_P17486,none +16.2617013,PR:P17839,http://purl.obolibrary.org/obo/PR_P17839,none +16.2617013,PR:P18154,http://purl.obolibrary.org/obo/PR_P18154,none +16.2617013,PR:P18167,http://purl.obolibrary.org/obo/PR_P18167,none +16.2617013,PR:P19538,http://purl.obolibrary.org/obo/PR_P19538,none +16.2617013,PR:P19956,http://purl.obolibrary.org/obo/PR_P19956,none +16.2617013,PR:P20289,http://purl.obolibrary.org/obo/PR_P20289,none +16.2617013,PR:P22136,http://purl.obolibrary.org/obo/PR_P22136,none +16.2617013,PR:P22219,http://purl.obolibrary.org/obo/PR_P22219,none +16.2617013,PR:P22465,http://purl.obolibrary.org/obo/PR_P22465,none +16.2617013,PR:P22981,http://purl.obolibrary.org/obo/PR_P22981,none +16.2617013,PR:P23769,http://purl.obolibrary.org/obo/PR_P23769,endothelial transcription factor GATA-2 (human) +16.2617013,PR:P23771,http://purl.obolibrary.org/obo/PR_P23771,trans-acting T-cell-specific transcription factor GATA-3 (human) +16.2617013,PR:P24000,http://purl.obolibrary.org/obo/PR_P24000,none +16.2617013,PR:P24639,http://purl.obolibrary.org/obo/PR_P24639,none +16.2617013,PR:P25025,http://purl.obolibrary.org/obo/PR_P25025,C-X-C chemokine receptor type 2 (human) +16.2617013,PR:P25044,http://purl.obolibrary.org/obo/PR_P25044,none +16.2617013,PR:P25441,http://purl.obolibrary.org/obo/PR_P25441,none +16.2617013,PR:P26587,http://purl.obolibrary.org/obo/PR_P26587,none +16.2617013,PR:P27895,http://purl.obolibrary.org/obo/PR_P27895,none +16.2617013,PR:P27929,http://purl.obolibrary.org/obo/PR_P27929,none +16.2617013,PR:P29029,http://purl.obolibrary.org/obo/PR_P29029,none +16.2617013,PR:P30181,http://purl.obolibrary.org/obo/PR_P30181,none +16.2617013,PR:P31007,http://purl.obolibrary.org/obo/PR_P31007,none +16.2617013,PR:P31382,http://purl.obolibrary.org/obo/PR_P31382,none +16.2617013,PR:P32325,http://purl.obolibrary.org/obo/PR_P32325,none +16.2617013,PR:P32343,http://purl.obolibrary.org/obo/PR_P32343,none +16.2617013,PR:P32344,http://purl.obolibrary.org/obo/PR_P32344,none +16.2617013,PR:P32349,http://purl.obolibrary.org/obo/PR_P32349,none +16.2617013,PR:P32465,http://purl.obolibrary.org/obo/PR_P32465,none +16.2617013,PR:P32488,http://purl.obolibrary.org/obo/PR_P32488,none +16.2617013,PR:P32529,http://purl.obolibrary.org/obo/PR_P32529,none +16.2617013,PR:P32591,http://purl.obolibrary.org/obo/PR_P32591,none +16.2617013,PR:P32865,http://purl.obolibrary.org/obo/PR_P32865,none +16.2617013,PR:P33419,http://purl.obolibrary.org/obo/PR_P33419,none +16.2617013,PR:P33894,http://purl.obolibrary.org/obo/PR_P33894,none +16.2617013,PR:P34328,http://purl.obolibrary.org/obo/PR_P34328,none +16.2617013,PR:P34482,http://purl.obolibrary.org/obo/PR_P34482,none +16.2617013,PR:P35344,http://purl.obolibrary.org/obo/PR_P35344,none +16.2617013,PR:P35510,http://purl.obolibrary.org/obo/PR_P35510,none +16.2617013,PR:P37298,http://purl.obolibrary.org/obo/PR_P37298,none +16.2617013,PR:P37478,http://purl.obolibrary.org/obo/PR_P37478,none +16.2617013,PR:P38156,http://purl.obolibrary.org/obo/PR_P38156,none +16.2617013,PR:P38157,http://purl.obolibrary.org/obo/PR_P38157,none +16.2617013,PR:P38158,http://purl.obolibrary.org/obo/PR_P38158,none +16.2617013,PR:P38162,http://purl.obolibrary.org/obo/PR_P38162,none +16.2617013,PR:P38241,http://purl.obolibrary.org/obo/PR_P38241,none +16.2617013,PR:P38305,http://purl.obolibrary.org/obo/PR_P38305,none +16.2617013,PR:P38555,http://purl.obolibrary.org/obo/PR_P38555,none +16.2617013,PR:P38689,http://purl.obolibrary.org/obo/PR_P38689,none +16.2617013,PR:P38825,http://purl.obolibrary.org/obo/PR_P38825,none +16.2617013,PR:P38872,http://purl.obolibrary.org/obo/PR_P38872,none +16.2617013,PR:P38996,http://purl.obolibrary.org/obo/PR_P38996,none +16.2617013,PR:P39952,http://purl.obolibrary.org/obo/PR_P39952,none +16.2617013,PR:P39968,http://purl.obolibrary.org/obo/PR_P39968,none +16.2617013,PR:P39998,http://purl.obolibrary.org/obo/PR_P39998,none +16.2617013,PR:P40358,http://purl.obolibrary.org/obo/PR_P40358,none +16.2617013,PR:P40389,http://purl.obolibrary.org/obo/PR_P40389,none +16.2617013,PR:P40809,http://purl.obolibrary.org/obo/PR_P40809,none +16.2617013,PR:P41894,http://purl.obolibrary.org/obo/PR_P41894,none +16.2617013,PR:P42644,http://purl.obolibrary.org/obo/PR_P42644,none +16.2617013,PR:P42795,http://purl.obolibrary.org/obo/PR_P42795,none +16.2617013,PR:P43288,http://purl.obolibrary.org/obo/PR_P43288,none +16.2617013,PR:P43601,http://purl.obolibrary.org/obo/PR_P43601,none +16.2617013,PR:P46573,http://purl.obolibrary.org/obo/PR_P46573,none +16.2617013,PR:P46579,http://purl.obolibrary.org/obo/PR_P46579,none +16.2617013,PR:P47069,http://purl.obolibrary.org/obo/PR_P47069,none +16.2617013,PR:P47104,http://purl.obolibrary.org/obo/PR_P47104,none +16.2617013,PR:P47176,http://purl.obolibrary.org/obo/PR_P47176,none +16.2617013,PR:P47979,http://purl.obolibrary.org/obo/PR_P47979,none +16.2617013,PR:P47999,http://purl.obolibrary.org/obo/PR_P47999,none +16.2617013,PR:P48558,http://purl.obolibrary.org/obo/PR_P48558,none +16.2617013,PR:P49290,http://purl.obolibrary.org/obo/PR_P49290,none +16.2617013,PR:P49333,http://purl.obolibrary.org/obo/PR_P49333,none +16.2617013,PR:P50082,http://purl.obolibrary.org/obo/PR_P50082,none +16.2617013,PR:P51677,http://purl.obolibrary.org/obo/PR_P51677,C-C chemokine receptor type 3 (human) +16.2617013,PR:P51818,http://purl.obolibrary.org/obo/PR_P51818,none +16.2617013,PR:P52032,http://purl.obolibrary.org/obo/PR_P52032,none +16.2617013,PR:P52960,http://purl.obolibrary.org/obo/PR_P52960,none +16.2617013,PR:P53192,http://purl.obolibrary.org/obo/PR_P53192,none +16.2617013,PR:P53615,http://purl.obolibrary.org/obo/PR_P53615,none +16.2617013,PR:P53624,http://purl.obolibrary.org/obo/PR_P53624,none +16.2617013,PR:P53694,http://purl.obolibrary.org/obo/PR_P53694,none +16.2617013,PR:P54144,http://purl.obolibrary.org/obo/PR_P54144,none +16.2617013,PR:P54653,http://purl.obolibrary.org/obo/PR_P54653,none +16.2617013,PR:P54785,http://purl.obolibrary.org/obo/PR_P54785,none +16.2617013,PR:P55339,http://purl.obolibrary.org/obo/PR_P55339,none +16.2617013,PR:P57756,http://purl.obolibrary.org/obo/PR_P57756,none +16.2617013,PR:P58270,http://purl.obolibrary.org/obo/PR_P58270,none +16.2617013,PR:P59232,http://purl.obolibrary.org/obo/PR_P59232,none +16.2617013,PR:P61089,http://purl.obolibrary.org/obo/PR_P61089,none +16.2617013,PR:P61358,http://purl.obolibrary.org/obo/PR_P61358,none +16.2617013,PR:P66516,http://purl.obolibrary.org/obo/PR_P66516,none +16.2617013,PR:P69851,http://purl.obolibrary.org/obo/PR_P69851,none +16.2617013,PR:P70174,http://purl.obolibrary.org/obo/PR_P70174,none +16.2617013,PR:P70236,http://purl.obolibrary.org/obo/PR_P70236,none +16.2617013,PR:P80456,http://purl.obolibrary.org/obo/PR_P80456,none +16.2617013,PR:P81449,http://purl.obolibrary.org/obo/PR_P81449,none +16.2617013,PR:P81921,http://purl.obolibrary.org/obo/PR_P81921,none +16.2617013,PR:P82747,http://purl.obolibrary.org/obo/PR_P82747,none +16.2617013,PR:P82792,http://purl.obolibrary.org/obo/PR_P82792,none +16.2617013,PR:P87061,http://purl.obolibrary.org/obo/PR_P87061,none +16.2617013,PR:P90971,http://purl.obolibrary.org/obo/PR_P90971,none +16.2617013,PR:P91200,http://purl.obolibrary.org/obo/PR_P91200,none +16.2617013,PR:P92976,http://purl.obolibrary.org/obo/PR_P92976,none +16.2617013,PR:P93028,http://purl.obolibrary.org/obo/PR_P93028,none +16.2617013,PR:P93032,http://purl.obolibrary.org/obo/PR_P93032,none +16.2617013,PR:P93822,http://purl.obolibrary.org/obo/PR_P93822,none +16.2617013,PR:P93829,http://purl.obolibrary.org/obo/PR_P93829,none +16.2617013,PR:P97861,http://purl.obolibrary.org/obo/PR_P97861,none +16.2617013,PR:P97887,http://purl.obolibrary.org/obo/PR_P97887,none +16.2617013,PR:Q00466,http://purl.obolibrary.org/obo/PR_Q00466,none +16.2617013,PR:Q01703,http://purl.obolibrary.org/obo/PR_Q01703,none +16.2617013,PR:Q02820,http://purl.obolibrary.org/obo/PR_Q02820,none +16.2617013,PR:Q03067,http://purl.obolibrary.org/obo/PR_Q03067,none +16.2617013,PR:Q03290,http://purl.obolibrary.org/obo/PR_Q03290,none +16.2617013,PR:Q03308,http://purl.obolibrary.org/obo/PR_Q03308,none +16.2617013,PR:Q03356,http://purl.obolibrary.org/obo/PR_Q03356,none +16.2617013,PR:Q03357,http://purl.obolibrary.org/obo/PR_Q03357,none +16.2617013,PR:Q03401,http://purl.obolibrary.org/obo/PR_Q03401,none +16.2617013,PR:Q03446,http://purl.obolibrary.org/obo/PR_Q03446,none +16.2617013,PR:Q03533,http://purl.obolibrary.org/obo/PR_Q03533,none +16.2617013,PR:Q03713,http://purl.obolibrary.org/obo/PR_Q03713,none +16.2617013,PR:Q04005,http://purl.obolibrary.org/obo/PR_Q04005,none +16.2617013,PR:Q04172,http://purl.obolibrary.org/obo/PR_Q04172,none +16.2617013,PR:Q04175,http://purl.obolibrary.org/obo/PR_Q04175,none +16.2617013,PR:Q04178,http://purl.obolibrary.org/obo/PR_Q04178,none +16.2617013,PR:Q04697,http://purl.obolibrary.org/obo/PR_Q04697,none +16.2617013,PR:Q04746,http://purl.obolibrary.org/obo/PR_Q04746,none +16.2617013,PR:Q05021,http://purl.obolibrary.org/obo/PR_Q05021,none +16.2617013,PR:Q05192,http://purl.obolibrary.org/obo/PR_Q05192,none +16.2617013,PR:Q05431,http://purl.obolibrary.org/obo/PR_Q05431,none +16.2617013,PR:Q05609,http://purl.obolibrary.org/obo/PR_Q05609,none +16.2617013,PR:Q05762,http://purl.obolibrary.org/obo/PR_Q05762,none +16.2617013,PR:Q05999,http://purl.obolibrary.org/obo/PR_Q05999,none +16.2617013,PR:Q06005,http://purl.obolibrary.org/obo/PR_Q06005,none +16.2617013,PR:Q06675,http://purl.obolibrary.org/obo/PR_Q06675,none +16.2617013,PR:Q07100,http://purl.obolibrary.org/obo/PR_Q07100,none +16.2617013,PR:Q08970,http://purl.obolibrary.org/obo/PR_Q08970,none +16.2617013,PR:Q08CE6,http://purl.obolibrary.org/obo/PR_Q08CE6,none +16.2617013,PR:Q0IGM7,http://purl.obolibrary.org/obo/PR_Q0IGM7,none +16.2617013,PR:Q0WX00,http://purl.obolibrary.org/obo/PR_Q0WX00,none +16.2617013,PR:Q10589,http://purl.obolibrary.org/obo/PR_Q10589,bone marrow stromal antigen 2 (human) +16.2617013,PR:Q10663,http://purl.obolibrary.org/obo/PR_Q10663,none +16.2617013,PR:Q12524,http://purl.obolibrary.org/obo/PR_Q12524,none +16.2617013,PR:Q12768,http://purl.obolibrary.org/obo/PR_Q12768,WASH complex subunit 5 (human) +16.2617013,PR:Q13536,http://purl.obolibrary.org/obo/PR_Q13536,protein CROC-4 (human) +16.2617013,PR:Q16637,http://purl.obolibrary.org/obo/PR_Q16637,survival motor neuron protein (human) +16.2617013,PR:Q1MTQ1,http://purl.obolibrary.org/obo/PR_Q1MTQ1,none +16.2617013,PR:Q20977,http://purl.obolibrary.org/obo/PR_Q20977,none +16.2617013,PR:Q23970,http://purl.obolibrary.org/obo/PR_Q23970,none +16.2617013,PR:Q23982,http://purl.obolibrary.org/obo/PR_Q23982,none +16.2617013,PR:Q24192,http://purl.obolibrary.org/obo/PR_Q24192,none +16.2617013,PR:Q24246,http://purl.obolibrary.org/obo/PR_Q24246,none +16.2617013,PR:Q27377,http://purl.obolibrary.org/obo/PR_Q27377,none +16.2617013,PR:Q27513,http://purl.obolibrary.org/obo/PR_Q27513,none +16.2617013,PR:Q27591,http://purl.obolibrary.org/obo/PR_Q27591,none +16.2617013,PR:Q2FZK3,http://purl.obolibrary.org/obo/PR_Q2FZK3,none +16.2617013,PR:Q2G1N7,http://purl.obolibrary.org/obo/PR_Q2G1N7,none +16.2617013,PR:Q2G2U6,http://purl.obolibrary.org/obo/PR_Q2G2U6,none +16.2617013,PR:Q2V3B2,http://purl.obolibrary.org/obo/PR_Q2V3B2,none +16.2617013,PR:Q34572,http://purl.obolibrary.org/obo/PR_Q34572,none +16.2617013,PR:Q38900,http://purl.obolibrary.org/obo/PR_Q38900,none +16.2617013,PR:Q38902,http://purl.obolibrary.org/obo/PR_Q38902,none +16.2617013,PR:Q38908,http://purl.obolibrary.org/obo/PR_Q38908,none +16.2617013,PR:Q38910,http://purl.obolibrary.org/obo/PR_Q38910,none +16.2617013,PR:Q38911,http://purl.obolibrary.org/obo/PR_Q38911,none +16.2617013,PR:Q39068,http://purl.obolibrary.org/obo/PR_Q39068,none +16.2617013,PR:Q3E754,http://purl.obolibrary.org/obo/PR_Q3E754,none +16.2617013,PR:Q41932,http://purl.obolibrary.org/obo/PR_Q41932,none +16.2617013,PR:Q41951,http://purl.obolibrary.org/obo/PR_Q41951,none +16.2617013,PR:Q42410,http://purl.obolibrary.org/obo/PR_Q42410,none +16.2617013,PR:Q42538,http://purl.obolibrary.org/obo/PR_Q42538,none +16.2617013,PR:Q42589,http://purl.obolibrary.org/obo/PR_Q42589,none +16.2617013,PR:Q42602,http://purl.obolibrary.org/obo/PR_Q42602,none +16.2617013,PR:Q499T7,http://purl.obolibrary.org/obo/PR_Q499T7,none +16.2617013,PR:Q49HM9,http://purl.obolibrary.org/obo/PR_Q49HM9,none +16.2617013,PR:Q4V9H3,http://purl.obolibrary.org/obo/PR_Q4V9H3,none +16.2617013,PR:Q502M8,http://purl.obolibrary.org/obo/PR_Q502M8,none +16.2617013,PR:Q54GK9,http://purl.obolibrary.org/obo/PR_Q54GK9,none +16.2617013,PR:Q54HC6,http://purl.obolibrary.org/obo/PR_Q54HC6,none +16.2617013,PR:Q54I36,http://purl.obolibrary.org/obo/PR_Q54I36,none +16.2617013,PR:Q54QN2,http://purl.obolibrary.org/obo/PR_Q54QN2,none +16.2617013,PR:Q54SV9,http://purl.obolibrary.org/obo/PR_Q54SV9,none +16.2617013,PR:Q54TA1,http://purl.obolibrary.org/obo/PR_Q54TA1,none +16.2617013,PR:Q54VG1,http://purl.obolibrary.org/obo/PR_Q54VG1,none +16.2617013,PR:Q54ZW0,http://purl.obolibrary.org/obo/PR_Q54ZW0,none +16.2617013,PR:Q55CW3,http://purl.obolibrary.org/obo/PR_Q55CW3,none +16.2617013,PR:Q55FS2,http://purl.obolibrary.org/obo/PR_Q55FS2,none +16.2617013,PR:Q56WN1,http://purl.obolibrary.org/obo/PR_Q56WN1,none +16.2617013,PR:Q59N74,http://purl.obolibrary.org/obo/PR_Q59N74,none +16.2617013,PR:Q59XA7,http://purl.obolibrary.org/obo/PR_Q59XA7,none +16.2617013,PR:Q5A0X8,http://purl.obolibrary.org/obo/PR_Q5A0X8,none +16.2617013,PR:Q5A246,http://purl.obolibrary.org/obo/PR_Q5A246,none +16.2617013,PR:Q5A5M7,http://purl.obolibrary.org/obo/PR_Q5A5M7,none +16.2617013,PR:Q5A5U4,http://purl.obolibrary.org/obo/PR_Q5A5U4,none +16.2617013,PR:Q5A744,http://purl.obolibrary.org/obo/PR_Q5A744,none +16.2617013,PR:Q5AHB8,http://purl.obolibrary.org/obo/PR_Q5AHB8,none +16.2617013,PR:Q5DTX6,http://purl.obolibrary.org/obo/PR_Q5DTX6,none +16.2617013,PR:Q5GIT4,http://purl.obolibrary.org/obo/PR_Q5GIT4,none +16.2617013,PR:Q5MFV8,http://purl.obolibrary.org/obo/PR_Q5MFV8,none +16.2617013,PR:Q5ZJL5,http://purl.obolibrary.org/obo/PR_Q5ZJL5,none +16.2617013,PR:Q62789,http://purl.obolibrary.org/obo/PR_Q62789,none +16.2617013,PR:Q62850,http://purl.obolibrary.org/obo/PR_Q62850,none +16.2617013,PR:Q66GR6,http://purl.obolibrary.org/obo/PR_Q66GR6,none +16.2617013,PR:Q67ZM7,http://purl.obolibrary.org/obo/PR_Q67ZM7,none +16.2617013,PR:Q68KI4,http://purl.obolibrary.org/obo/PR_Q68KI4,none +16.2617013,PR:Q6AYT9,http://purl.obolibrary.org/obo/PR_Q6AYT9,none +16.2617013,PR:Q6DH94,http://purl.obolibrary.org/obo/PR_Q6DH94,none +16.2617013,PR:Q6IMF0,http://purl.obolibrary.org/obo/PR_Q6IMF0,none +16.2617013,PR:Q6P6V7,http://purl.obolibrary.org/obo/PR_Q6P6V7,none +16.2617013,PR:Q6PBK8,http://purl.obolibrary.org/obo/PR_Q6PBK8,none +16.2617013,PR:Q6XPT5,http://purl.obolibrary.org/obo/PR_Q6XPT5,none +16.2617013,PR:Q70GP4,http://purl.obolibrary.org/obo/PR_Q70GP4,none +16.2617013,PR:Q76P23,http://purl.obolibrary.org/obo/PR_Q76P23,none +16.2617013,PR:Q7PC86,http://purl.obolibrary.org/obo/PR_Q7PC86,none +16.2617013,PR:Q7T3B2,http://purl.obolibrary.org/obo/PR_Q7T3B2,none +16.2617013,PR:Q7XJT7,http://purl.obolibrary.org/obo/PR_Q7XJT7,none +16.2617013,PR:Q7Y211,http://purl.obolibrary.org/obo/PR_Q7Y211,none +16.2617013,PR:Q7ZVU1,http://purl.obolibrary.org/obo/PR_Q7ZVU1,none +16.2617013,PR:Q80T32,http://purl.obolibrary.org/obo/PR_Q80T32,none +16.2617013,PR:Q84JQ4,http://purl.obolibrary.org/obo/PR_Q84JQ4,none +16.2617013,PR:Q8AYM7,http://purl.obolibrary.org/obo/PR_Q8AYM7,none +16.2617013,PR:Q8AYM8,http://purl.obolibrary.org/obo/PR_Q8AYM8,none +16.2617013,PR:Q8BTU1,http://purl.obolibrary.org/obo/PR_Q8BTU1,none +16.2617013,PR:Q8BU03,http://purl.obolibrary.org/obo/PR_Q8BU03,none +16.2617013,PR:Q8C2E7,http://purl.obolibrary.org/obo/PR_Q8C2E7,none +16.2617013,PR:Q8GXE6,http://purl.obolibrary.org/obo/PR_Q8GXE6,none +16.2617013,PR:Q8GXI9,http://purl.obolibrary.org/obo/PR_Q8GXI9,none +16.2617013,PR:Q8GY42,http://purl.obolibrary.org/obo/PR_Q8GY42,none +16.2617013,PR:Q8GY82,http://purl.obolibrary.org/obo/PR_Q8GY82,none +16.2617013,PR:Q8GYA4,http://purl.obolibrary.org/obo/PR_Q8GYA4,none +16.2617013,PR:Q8H0X6,http://purl.obolibrary.org/obo/PR_Q8H0X6,none +16.2617013,PR:Q8H116,http://purl.obolibrary.org/obo/PR_Q8H116,none +16.2617013,PR:Q8H1R0,http://purl.obolibrary.org/obo/PR_Q8H1R0,none +16.2617013,PR:Q8IZA0,http://purl.obolibrary.org/obo/PR_Q8IZA0,dyslexia-associated protein KIAA0319-like protein (human) +16.2617013,PR:Q8K135,http://purl.obolibrary.org/obo/PR_Q8K135,none +16.2617013,PR:Q8K3J9,http://purl.obolibrary.org/obo/PR_Q8K3J9,none +16.2617013,PR:Q8L7K0,http://purl.obolibrary.org/obo/PR_Q8L7K0,none +16.2617013,PR:Q8LA14,http://purl.obolibrary.org/obo/PR_Q8LA14,none +16.2617013,PR:Q8LAI1,http://purl.obolibrary.org/obo/PR_Q8LAI1,none +16.2617013,PR:Q8LB60,http://purl.obolibrary.org/obo/PR_Q8LB60,none +16.2617013,PR:Q8LBW3,http://purl.obolibrary.org/obo/PR_Q8LBW3,none +16.2617013,PR:Q8LDF9,http://purl.obolibrary.org/obo/PR_Q8LDF9,none +16.2617013,PR:Q8LEM4,http://purl.obolibrary.org/obo/PR_Q8LEM4,none +16.2617013,PR:Q8LF80,http://purl.obolibrary.org/obo/PR_Q8LF80,none +16.2617013,PR:Q8LF99,http://purl.obolibrary.org/obo/PR_Q8LF99,none +16.2617013,PR:Q8LFH6,http://purl.obolibrary.org/obo/PR_Q8LFH6,none +16.2617013,PR:Q8LG50,http://purl.obolibrary.org/obo/PR_Q8LG50,none +16.2617013,PR:Q8LK93,http://purl.obolibrary.org/obo/PR_Q8LK93,none +16.2617013,PR:Q8MVR1,http://purl.obolibrary.org/obo/PR_Q8MVR1,none +16.2617013,PR:Q8R0W0,http://purl.obolibrary.org/obo/PR_Q8R0W0,none +16.2617013,PR:Q8RXE7,http://purl.obolibrary.org/obo/PR_Q8RXE7,none +16.2617013,PR:Q8RY29,http://purl.obolibrary.org/obo/PR_Q8RY29,none +16.2617013,PR:Q8S3D5,http://purl.obolibrary.org/obo/PR_Q8S3D5,none +16.2617013,PR:Q8S8N1,http://purl.obolibrary.org/obo/PR_Q8S8N1,none +16.2617013,PR:Q8T130,http://purl.obolibrary.org/obo/PR_Q8T130,none +16.2617013,PR:Q8T1V7,http://purl.obolibrary.org/obo/PR_Q8T1V7,none +16.2617013,PR:Q8T673,http://purl.obolibrary.org/obo/PR_Q8T673,none +16.2617013,PR:Q8VI88,http://purl.obolibrary.org/obo/PR_Q8VI88,none +16.2617013,PR:Q8VIP2,http://purl.obolibrary.org/obo/PR_Q8VIP2,none +16.2617013,PR:Q8VWF6,http://purl.obolibrary.org/obo/PR_Q8VWF6,none +16.2617013,PR:Q8VWI7,http://purl.obolibrary.org/obo/PR_Q8VWI7,none +16.2617013,PR:Q8VZ56,http://purl.obolibrary.org/obo/PR_Q8VZ56,none +16.2617013,PR:Q8VZ79,http://purl.obolibrary.org/obo/PR_Q8VZ79,none +16.2617013,PR:Q8VZE7,http://purl.obolibrary.org/obo/PR_Q8VZE7,none +16.2617013,PR:Q8VZJ1,http://purl.obolibrary.org/obo/PR_Q8VZJ1,none +16.2617013,PR:Q8VZR2,http://purl.obolibrary.org/obo/PR_Q8VZR2,none +16.2617013,PR:Q8VZS8,http://purl.obolibrary.org/obo/PR_Q8VZS8,none +16.2617013,PR:Q8VZV9,http://purl.obolibrary.org/obo/PR_Q8VZV9,none +16.2617013,PR:Q8W037,http://purl.obolibrary.org/obo/PR_Q8W037,none +16.2617013,PR:Q8W2B8,http://purl.obolibrary.org/obo/PR_Q8W2B8,none +16.2617013,PR:Q8W595,http://purl.obolibrary.org/obo/PR_Q8W595,none +16.2617013,PR:Q8WTC1,http://purl.obolibrary.org/obo/PR_Q8WTC1,none +16.2617013,PR:Q90932,http://purl.obolibrary.org/obo/PR_Q90932,none +16.2617013,PR:Q91VF5,http://purl.obolibrary.org/obo/PR_Q91VF5,none +16.2617013,PR:Q92ZQ4,http://purl.obolibrary.org/obo/PR_Q92ZQ4,none +16.2617013,PR:Q93VT9,http://purl.obolibrary.org/obo/PR_Q93VT9,none +16.2617013,PR:Q93Y07,http://purl.obolibrary.org/obo/PR_Q93Y07,none +16.2617013,PR:Q93YQ1,http://purl.obolibrary.org/obo/PR_Q93YQ1,none +16.2617013,PR:Q93ZD7,http://purl.obolibrary.org/obo/PR_Q93ZD7,none +16.2617013,PR:Q940Z5,http://purl.obolibrary.org/obo/PR_Q940Z5,none +16.2617013,PR:Q941C7,http://purl.obolibrary.org/obo/PR_Q941C7,none +16.2617013,PR:Q94AF0,http://purl.obolibrary.org/obo/PR_Q94AF0,none +16.2617013,PR:Q94AQ8,http://purl.obolibrary.org/obo/PR_Q94AQ8,none +16.2617013,PR:Q94AX5,http://purl.obolibrary.org/obo/PR_Q94AX5,none +16.2617013,PR:Q94CL9,http://purl.obolibrary.org/obo/PR_Q94CL9,none +16.2617013,PR:Q96292,http://purl.obolibrary.org/obo/PR_Q96292,none +16.2617013,PR:Q96528,http://purl.obolibrary.org/obo/PR_Q96528,none +16.2617013,PR:Q966R0,http://purl.obolibrary.org/obo/PR_Q966R0,none +16.2617013,PR:Q99JB6,http://purl.obolibrary.org/obo/PR_Q99JB6,none +16.2617013,PR:Q99PE2,http://purl.obolibrary.org/obo/PR_Q99PE2,none +16.2617013,PR:Q9ASS6,http://purl.obolibrary.org/obo/PR_Q9ASS6,none +16.2617013,PR:Q9BSD3,http://purl.obolibrary.org/obo/PR_Q9BSD3,"RAD9, HUS1, RAD1-interacting nuclear orphan protein 1 (human)" +16.2617013,PR:Q9C0Z7,http://purl.obolibrary.org/obo/PR_Q9C0Z7,none +16.2617013,PR:Q9C4Z7,http://purl.obolibrary.org/obo/PR_Q9C4Z7,none +16.2617013,PR:Q9C5S2,http://purl.obolibrary.org/obo/PR_Q9C5S2,none +16.2617013,PR:Q9C670,http://purl.obolibrary.org/obo/PR_Q9C670,none +16.2617013,PR:Q9C6B2,http://purl.obolibrary.org/obo/PR_Q9C6B2,none +16.2617013,PR:Q9C6B8,http://purl.obolibrary.org/obo/PR_Q9C6B8,none +16.2617013,PR:Q9C6L5,http://purl.obolibrary.org/obo/PR_Q9C6L5,none +16.2617013,PR:Q9C6T0,http://purl.obolibrary.org/obo/PR_Q9C6T0,none +16.2617013,PR:Q9C6Y3,http://purl.obolibrary.org/obo/PR_Q9C6Y3,none +16.2617013,PR:Q9C720,http://purl.obolibrary.org/obo/PR_Q9C720,none +16.2617013,PR:Q9C8P7,http://purl.obolibrary.org/obo/PR_Q9C8P7,none +16.2617013,PR:Q9C9G4,http://purl.obolibrary.org/obo/PR_Q9C9G4,none +16.2617013,PR:Q9C9U2,http://purl.obolibrary.org/obo/PR_Q9C9U2,none +16.2617013,PR:Q9C9U3,http://purl.obolibrary.org/obo/PR_Q9C9U3,none +16.2617013,PR:Q9CA42,http://purl.obolibrary.org/obo/PR_Q9CA42,none +16.2617013,PR:Q9CA59,http://purl.obolibrary.org/obo/PR_Q9CA59,none +16.2617013,PR:Q9CAI7,http://purl.obolibrary.org/obo/PR_Q9CAI7,none +16.2617013,PR:Q9CAL8,http://purl.obolibrary.org/obo/PR_Q9CAL8,none +16.2617013,PR:Q9CAR0,http://purl.obolibrary.org/obo/PR_Q9CAR0,none +16.2617013,PR:Q9CAX3,http://purl.obolibrary.org/obo/PR_Q9CAX3,none +16.2617013,PR:Q9CPT3,http://purl.obolibrary.org/obo/PR_Q9CPT3,none +16.2617013,PR:Q9D9E0,http://purl.obolibrary.org/obo/PR_Q9D9E0,none +16.2617013,PR:Q9DDJ0,http://purl.obolibrary.org/obo/PR_Q9DDJ0,none +16.2617013,PR:Q9ET61,http://purl.obolibrary.org/obo/PR_Q9ET61,none +16.2617013,PR:Q9FDW1,http://purl.obolibrary.org/obo/PR_Q9FDW1,none +16.2617013,PR:Q9FG68,http://purl.obolibrary.org/obo/PR_Q9FG68,none +16.2617013,PR:Q9FG89,http://purl.obolibrary.org/obo/PR_Q9FG89,none +16.2617013,PR:Q9FGS4,http://purl.obolibrary.org/obo/PR_Q9FGS4,none +16.2617013,PR:Q9FGW9,http://purl.obolibrary.org/obo/PR_Q9FGW9,none +16.2617013,PR:Q9FH27,http://purl.obolibrary.org/obo/PR_Q9FH27,none +16.2617013,PR:Q9FHE4,http://purl.obolibrary.org/obo/PR_Q9FHE4,none +16.2617013,PR:Q9FIX2,http://purl.obolibrary.org/obo/PR_Q9FIX2,none +16.2617013,PR:Q9FIZ9,http://purl.obolibrary.org/obo/PR_Q9FIZ9,none +16.2617013,PR:Q9FJ72,http://purl.obolibrary.org/obo/PR_Q9FJ72,none +16.2617013,PR:Q9FJK6,http://purl.obolibrary.org/obo/PR_Q9FJK6,none +16.2617013,PR:Q9FJV0,http://purl.obolibrary.org/obo/PR_Q9FJV0,none +16.2617013,PR:Q9FKF6,http://purl.obolibrary.org/obo/PR_Q9FKF6,none +16.2617013,PR:Q9FLI1,http://purl.obolibrary.org/obo/PR_Q9FLI1,none +16.2617013,PR:Q9FLT2,http://purl.obolibrary.org/obo/PR_Q9FLT2,none +16.2617013,PR:Q9FMH5,http://purl.obolibrary.org/obo/PR_Q9FMH5,none +16.2617013,PR:Q9FN05,http://purl.obolibrary.org/obo/PR_Q9FN05,none +16.2617013,PR:Q9FNC7,http://purl.obolibrary.org/obo/PR_Q9FNC7,none +16.2617013,PR:Q9FND9,http://purl.obolibrary.org/obo/PR_Q9FND9,none +16.2617013,PR:Q9FNL7,http://purl.obolibrary.org/obo/PR_Q9FNL7,none +16.2617013,PR:Q9FR95,http://purl.obolibrary.org/obo/PR_Q9FR95,none +16.2617013,PR:Q9FRL5,http://purl.obolibrary.org/obo/PR_Q9FRL5,none +16.2617013,PR:Q9FT97,http://purl.obolibrary.org/obo/PR_Q9FT97,none +16.2617013,PR:Q9FVS2,http://purl.obolibrary.org/obo/PR_Q9FVS2,none +16.2617013,PR:Q9FWX6,http://purl.obolibrary.org/obo/PR_Q9FWX6,none +16.2617013,PR:Q9FWX8,http://purl.obolibrary.org/obo/PR_Q9FWX8,none +16.2617013,PR:Q9FY75,http://purl.obolibrary.org/obo/PR_Q9FY75,none +16.2617013,PR:Q9GYF1,http://purl.obolibrary.org/obo/PR_Q9GYF1,none +16.2617013,PR:Q9H3H3,http://purl.obolibrary.org/obo/PR_Q9H3H3,UPF0696 protein C11orf68 (human) +16.2617013,PR:Q9H7Y0,http://purl.obolibrary.org/obo/PR_Q9H7Y0,divergent protein kinase domain 2B (human) +16.2617013,PR:Q9HDZ7,http://purl.obolibrary.org/obo/PR_Q9HDZ7,none +16.2617013,PR:Q9JHR9,http://purl.obolibrary.org/obo/PR_Q9JHR9,none +16.2617013,PR:Q9LD57,http://purl.obolibrary.org/obo/PR_Q9LD57,none +16.2617013,PR:Q9LDE4,http://purl.obolibrary.org/obo/PR_Q9LDE4,none +16.2617013,PR:Q9LDN0,http://purl.obolibrary.org/obo/PR_Q9LDN0,none +16.2617013,PR:Q9LEU7,http://purl.obolibrary.org/obo/PR_Q9LEU7,none +16.2617013,PR:Q9LFT8,http://purl.obolibrary.org/obo/PR_Q9LFT8,none +16.2617013,PR:Q9LFU1,http://purl.obolibrary.org/obo/PR_Q9LFU1,none +16.2617013,PR:Q9LFX9,http://purl.obolibrary.org/obo/PR_Q9LFX9,none +16.2617013,PR:Q9LI83,http://purl.obolibrary.org/obo/PR_Q9LI83,none +16.2617013,PR:Q9LIC2,http://purl.obolibrary.org/obo/PR_Q9LIC2,none +16.2617013,PR:Q9LIC6,http://purl.obolibrary.org/obo/PR_Q9LIC6,none +16.2617013,PR:Q9LJ45,http://purl.obolibrary.org/obo/PR_Q9LJ45,none +16.2617013,PR:Q9LJL4,http://purl.obolibrary.org/obo/PR_Q9LJL4,none +16.2617013,PR:Q9LKR6,http://purl.obolibrary.org/obo/PR_Q9LKR6,none +16.2617013,PR:Q9LLL8,http://purl.obolibrary.org/obo/PR_Q9LLL8,none +16.2617013,PR:Q9LM25,http://purl.obolibrary.org/obo/PR_Q9LM25,none +16.2617013,PR:Q9LNQ4,http://purl.obolibrary.org/obo/PR_Q9LNQ4,none +16.2617013,PR:Q9LNU4,http://purl.obolibrary.org/obo/PR_Q9LNU4,none +16.2617013,PR:Q9LPL4,http://purl.obolibrary.org/obo/PR_Q9LPL4,none +16.2617013,PR:Q9LPZ1,http://purl.obolibrary.org/obo/PR_Q9LPZ1,none +16.2617013,PR:Q9LPZ9,http://purl.obolibrary.org/obo/PR_Q9LPZ9,none +16.2617013,PR:Q9LQ73,http://purl.obolibrary.org/obo/PR_Q9LQ73,none +16.2617013,PR:Q9LQF2,http://purl.obolibrary.org/obo/PR_Q9LQF2,none +16.2617013,PR:Q9LQW3,http://purl.obolibrary.org/obo/PR_Q9LQW3,none +16.2617013,PR:Q9LRB0,http://purl.obolibrary.org/obo/PR_Q9LRB0,none +16.2617013,PR:Q9LRM4,http://purl.obolibrary.org/obo/PR_Q9LRM4,none +16.2617013,PR:Q9LSF8,http://purl.obolibrary.org/obo/PR_Q9LSF8,none +16.2617013,PR:Q9LTJ6,http://purl.obolibrary.org/obo/PR_Q9LTJ6,none +16.2617013,PR:Q9LTW5,http://purl.obolibrary.org/obo/PR_Q9LTW5,none +16.2617013,PR:Q9LU21,http://purl.obolibrary.org/obo/PR_Q9LU21,none +16.2617013,PR:Q9LU36,http://purl.obolibrary.org/obo/PR_Q9LU36,none +16.2617013,PR:Q9LUD7,http://purl.obolibrary.org/obo/PR_Q9LUD7,none +16.2617013,PR:Q9LUG9,http://purl.obolibrary.org/obo/PR_Q9LUG9,none +16.2617013,PR:Q9LVQ7,http://purl.obolibrary.org/obo/PR_Q9LVQ7,none +16.2617013,PR:Q9LVW3,http://purl.obolibrary.org/obo/PR_Q9LVW3,none +16.2617013,PR:Q9LVW4,http://purl.obolibrary.org/obo/PR_Q9LVW4,none +16.2617013,PR:Q9LW12,http://purl.obolibrary.org/obo/PR_Q9LW12,none +16.2617013,PR:Q9LX07,http://purl.obolibrary.org/obo/PR_Q9LX07,none +16.2617013,PR:Q9LX12,http://purl.obolibrary.org/obo/PR_Q9LX12,none +16.2617013,PR:Q9LXD7,http://purl.obolibrary.org/obo/PR_Q9LXD7,none +16.2617013,PR:Q9LXF3,http://purl.obolibrary.org/obo/PR_Q9LXF3,none +16.2617013,PR:Q9LY15,http://purl.obolibrary.org/obo/PR_Q9LY15,none +16.2617013,PR:Q9LY16,http://purl.obolibrary.org/obo/PR_Q9LY16,none +16.2617013,PR:Q9LY23,http://purl.obolibrary.org/obo/PR_Q9LY23,none +16.2617013,PR:Q9LYU3,http://purl.obolibrary.org/obo/PR_Q9LYU3,none +16.2617013,PR:Q9LZM0,http://purl.obolibrary.org/obo/PR_Q9LZM0,none +16.2617013,PR:Q9LZT5,http://purl.obolibrary.org/obo/PR_Q9LZT5,none +16.2617013,PR:Q9M0G7,http://purl.obolibrary.org/obo/PR_Q9M0G7,none +16.2617013,PR:Q9M0K4,http://purl.obolibrary.org/obo/PR_Q9M0K4,none +16.2617013,PR:Q9M111,http://purl.obolibrary.org/obo/PR_Q9M111,none +16.2617013,PR:Q9M1E2,http://purl.obolibrary.org/obo/PR_Q9M1E2,none +16.2617013,PR:Q9M1E6,http://purl.obolibrary.org/obo/PR_Q9M1E6,none +16.2617013,PR:Q9M1J1,http://purl.obolibrary.org/obo/PR_Q9M1J1,none +16.2617013,PR:Q9M1K0,http://purl.obolibrary.org/obo/PR_Q9M1K0,none +16.2617013,PR:Q9M1K1,http://purl.obolibrary.org/obo/PR_Q9M1K1,none +16.2617013,PR:Q9M1K3,http://purl.obolibrary.org/obo/PR_Q9M1K3,none +16.2617013,PR:Q9M2J7,http://purl.obolibrary.org/obo/PR_Q9M2J7,none +16.2617013,PR:Q9M2S7,http://purl.obolibrary.org/obo/PR_Q9M2S7,none +16.2617013,PR:Q9M2Y0,http://purl.obolibrary.org/obo/PR_Q9M2Y0,none +16.2617013,PR:Q9M644,http://purl.obolibrary.org/obo/PR_Q9M644,none +16.2617013,PR:Q9M7J9,http://purl.obolibrary.org/obo/PR_Q9M7J9,none +16.2617013,PR:Q9M817,http://purl.obolibrary.org/obo/PR_Q9M817,none +16.2617013,PR:Q9M8R7,http://purl.obolibrary.org/obo/PR_Q9M8R7,none +16.2617013,PR:Q9M8W5,http://purl.obolibrary.org/obo/PR_Q9M8W5,none +16.2617013,PR:Q9M9E9,http://purl.obolibrary.org/obo/PR_Q9M9E9,none +16.2617013,PR:Q9M9M4,http://purl.obolibrary.org/obo/PR_Q9M9M4,none +16.2617013,PR:Q9MA75,http://purl.obolibrary.org/obo/PR_Q9MA75,none +16.2617013,PR:Q9N658,http://purl.obolibrary.org/obo/PR_Q9N658,none +16.2617013,PR:Q9NZ63,http://purl.obolibrary.org/obo/PR_Q9NZ63,telomere length and silencing protein 1 homolog (human) +16.2617013,PR:Q9P7J6,http://purl.obolibrary.org/obo/PR_Q9P7J6,none +16.2617013,PR:Q9PWE8,http://purl.obolibrary.org/obo/PR_Q9PWE8,none +16.2617013,PR:Q9RVD6,http://purl.obolibrary.org/obo/PR_Q9RVD6,none +16.2617013,PR:Q9S4W2,http://purl.obolibrary.org/obo/PR_Q9S4W2,none +16.2617013,PR:Q9S752,http://purl.obolibrary.org/obo/PR_Q9S752,none +16.2617013,PR:Q9S757,http://purl.obolibrary.org/obo/PR_Q9S757,none +16.2617013,PR:Q9S7I2,http://purl.obolibrary.org/obo/PR_Q9S7I2,none +16.2617013,PR:Q9S7Y7,http://purl.obolibrary.org/obo/PR_Q9S7Y7,none +16.2617013,PR:Q9S9P3,http://purl.obolibrary.org/obo/PR_Q9S9P3,none +16.2617013,PR:Q9SA32,http://purl.obolibrary.org/obo/PR_Q9SA32,none +16.2617013,PR:Q9SAI4,http://purl.obolibrary.org/obo/PR_Q9SAI4,none +16.2617013,PR:Q9SAZ5,http://purl.obolibrary.org/obo/PR_Q9SAZ5,none +16.2617013,PR:Q9SBB2,http://purl.obolibrary.org/obo/PR_Q9SBB2,none +16.2617013,PR:Q9SCJ9,http://purl.obolibrary.org/obo/PR_Q9SCJ9,none +16.2617013,PR:Q9SD82,http://purl.obolibrary.org/obo/PR_Q9SD82,none +16.2617013,PR:Q9SEH3,http://purl.obolibrary.org/obo/PR_Q9SEH3,none +16.2617013,PR:Q9SEI0,http://purl.obolibrary.org/obo/PR_Q9SEI0,none +16.2617013,PR:Q9SFB6,http://purl.obolibrary.org/obo/PR_Q9SFB6,none +16.2617013,PR:Q9SGD2,http://purl.obolibrary.org/obo/PR_Q9SGD2,none +16.2617013,PR:Q9SGY1,http://purl.obolibrary.org/obo/PR_Q9SGY1,none +16.2617013,PR:Q9SHD3,http://purl.obolibrary.org/obo/PR_Q9SHD3,none +16.2617013,PR:Q9SHZ3,http://purl.obolibrary.org/obo/PR_Q9SHZ3,none +16.2617013,PR:Q9SIM9,http://purl.obolibrary.org/obo/PR_Q9SIM9,none +16.2617013,PR:Q9SIZ9,http://purl.obolibrary.org/obo/PR_Q9SIZ9,none +16.2617013,PR:Q9SL95,http://purl.obolibrary.org/obo/PR_Q9SL95,none +16.2617013,PR:Q9SMP0,http://purl.obolibrary.org/obo/PR_Q9SMP0,none +16.2617013,PR:Q9SMV7,http://purl.obolibrary.org/obo/PR_Q9SMV7,none +16.2617013,PR:Q9SP02,http://purl.obolibrary.org/obo/PR_Q9SP02,none +16.2617013,PR:Q9SR59,http://purl.obolibrary.org/obo/PR_Q9SR59,none +16.2617013,PR:Q9SRD4,http://purl.obolibrary.org/obo/PR_Q9SRD4,none +16.2617013,PR:Q9SRH5,http://purl.obolibrary.org/obo/PR_Q9SRH5,none +16.2617013,PR:Q9SS01,http://purl.obolibrary.org/obo/PR_Q9SS01,none +16.2617013,PR:Q9SS87,http://purl.obolibrary.org/obo/PR_Q9SS87,none +16.2617013,PR:Q9SSD2,http://purl.obolibrary.org/obo/PR_Q9SSD2,none +16.2617013,PR:Q9SSF8,http://purl.obolibrary.org/obo/PR_Q9SSF8,none +16.2617013,PR:Q9STT7,http://purl.obolibrary.org/obo/PR_Q9STT7,none +16.2617013,PR:Q9SU14,http://purl.obolibrary.org/obo/PR_Q9SU14,none +16.2617013,PR:Q9SUR6,http://purl.obolibrary.org/obo/PR_Q9SUR6,none +16.2617013,PR:Q9SUT9,http://purl.obolibrary.org/obo/PR_Q9SUT9,none +16.2617013,PR:Q9SUW0,http://purl.obolibrary.org/obo/PR_Q9SUW0,none +16.2617013,PR:Q9SV84,http://purl.obolibrary.org/obo/PR_Q9SV84,none +16.2617013,PR:Q9SXY0,http://purl.obolibrary.org/obo/PR_Q9SXY0,none +16.2617013,PR:Q9SYK4,http://purl.obolibrary.org/obo/PR_Q9SYK4,none +16.2617013,PR:Q9SZD4,http://purl.obolibrary.org/obo/PR_Q9SZD4,none +16.2617013,PR:Q9SZE4,http://purl.obolibrary.org/obo/PR_Q9SZE4,none +16.2617013,PR:Q9T042,http://purl.obolibrary.org/obo/PR_Q9T042,none +16.2617013,PR:Q9T0A4,http://purl.obolibrary.org/obo/PR_Q9T0A4,none +16.2617013,PR:Q9T0G7,http://purl.obolibrary.org/obo/PR_Q9T0G7,none +16.2617013,PR:Q9T0I1,http://purl.obolibrary.org/obo/PR_Q9T0I1,none +16.2617013,PR:Q9U1K1,http://purl.obolibrary.org/obo/PR_Q9U1K1,none +16.2617013,PR:Q9ULI1,http://purl.obolibrary.org/obo/PR_Q9ULI1,NACHT and WD repeat domain-containing protein 2 (human) +16.2617013,PR:Q9URQ5,http://purl.obolibrary.org/obo/PR_Q9URQ5,none +16.2617013,PR:Q9USK2,http://purl.obolibrary.org/obo/PR_Q9USK2,none +16.2617013,PR:Q9USW5,http://purl.obolibrary.org/obo/PR_Q9USW5,none +16.2617013,PR:Q9UT02,http://purl.obolibrary.org/obo/PR_Q9UT02,none +16.2617013,PR:Q9UTG4,http://purl.obolibrary.org/obo/PR_Q9UTG4,none +16.2617013,PR:Q9UTP0,http://purl.obolibrary.org/obo/PR_Q9UTP0,none +16.2617013,PR:Q9VC27,http://purl.obolibrary.org/obo/PR_Q9VC27,none +16.2617013,PR:Q9VR17,http://purl.obolibrary.org/obo/PR_Q9VR17,none +16.2617013,PR:Q9VRX6,http://purl.obolibrary.org/obo/PR_Q9VRX6,none +16.2617013,PR:Q9VS05,http://purl.obolibrary.org/obo/PR_Q9VS05,none +16.2617013,PR:Q9VUN0,http://purl.obolibrary.org/obo/PR_Q9VUN0,none +16.2617013,PR:Q9VZF4,http://purl.obolibrary.org/obo/PR_Q9VZF4,none +16.2617013,PR:Q9W6A5,http://purl.obolibrary.org/obo/PR_Q9W6A5,none +16.2617013,PR:Q9W6A6,http://purl.obolibrary.org/obo/PR_Q9W6A6,none +16.2617013,PR:Q9W757,http://purl.obolibrary.org/obo/PR_Q9W757,none +16.2617013,PR:Q9XFR5,http://purl.obolibrary.org/obo/PR_Q9XFR5,none +16.2617013,PR:Q9Y536,http://purl.obolibrary.org/obo/PR_Q9Y536,peptidyl-prolyl cis-trans isomerase A-like 4A (human) +16.2617013,PR:Q9Y7Y5,http://purl.obolibrary.org/obo/PR_Q9Y7Y5,none +16.2617013,PR:Q9Y7Z7,http://purl.obolibrary.org/obo/PR_Q9Y7Z7,none +16.2617013,PR:Q9YGY0,http://purl.obolibrary.org/obo/PR_Q9YGY0,none +16.2617013,PR:Q9Z331,http://purl.obolibrary.org/obo/PR_Q9Z331,none +16.2617013,PR:Q9ZNR0,http://purl.obolibrary.org/obo/PR_Q9ZNR0,none +16.2617013,PR:Q9ZNV8,http://purl.obolibrary.org/obo/PR_Q9ZNV8,none +16.2617013,PR:Q9ZNV9,http://purl.obolibrary.org/obo/PR_Q9ZNV9,none +16.2617013,PR:Q9ZQ80,http://purl.obolibrary.org/obo/PR_Q9ZQ80,none +16.2617013,PR:Q9ZR04,http://purl.obolibrary.org/obo/PR_Q9ZR04,none +16.2617013,PR:Q9ZSM8,http://purl.obolibrary.org/obo/PR_Q9ZSM8,none +16.2617013,PR:Q9ZST4,http://purl.obolibrary.org/obo/PR_Q9ZST4,none +16.2617013,PR:Q9ZVQ6,http://purl.obolibrary.org/obo/PR_Q9ZVQ6,none +16.2617013,PR:Q9ZW27,http://purl.obolibrary.org/obo/PR_Q9ZW27,none +16.2617013,SO:0000030,http://purl.obolibrary.org/obo/SO_0000030,sugar_edge_base_pair +16.2617013,SO:0000307,http://purl.obolibrary.org/obo/SO_0000307,CpG_island +16.2617013,SO:0000325,http://purl.obolibrary.org/obo/SO_0000325,rRNA_large_subunit_primary_transcript +16.2617013,SO:0000379,http://purl.obolibrary.org/obo/SO_0000379,GcvB_RNA +16.2617013,SO:0000406,http://purl.obolibrary.org/obo/SO_0000406,twintron +16.2617013,SO:0000464,http://purl.obolibrary.org/obo/SO_0000464,decayed_exon +16.2617013,SO:0000507,http://purl.obolibrary.org/obo/SO_0000507,pseudogenic_exon +16.2617013,SO:0000607,http://purl.obolibrary.org/obo/SO_0000607,unedited_region +16.2617013,SO:0000627,http://purl.obolibrary.org/obo/SO_0000627,insulator +16.2617013,SO:0000718,http://purl.obolibrary.org/obo/SO_0000718,blocked_reading_frame +16.2617013,SO:0000739,http://purl.obolibrary.org/obo/SO_0000739,nucleomorphic_sequence +16.2617013,SO:0000743,http://purl.obolibrary.org/obo/SO_0000743,apicoplast_sequence +16.2617013,SO:0000778,http://purl.obolibrary.org/obo/SO_0000778,pseudogenic_tRNA +16.2617013,SO:0000796,http://purl.obolibrary.org/obo/SO_0000796,transgenic_transposable_element +16.2617013,SO:0000861,http://purl.obolibrary.org/obo/SO_0000861,capped_primary_transcript +16.2617013,SO:0000892,http://purl.obolibrary.org/obo/SO_0000892,positively_autoregulated_gene +16.2617013,SO:0000897,http://purl.obolibrary.org/obo/SO_0000897,allelically_excluded_gene +16.2617013,SO:0000914,http://purl.obolibrary.org/obo/SO_0000914,cloned_genomic_insert +16.2617013,SO:0001086,http://purl.obolibrary.org/obo/SO_0001086,sequence_uncertainty +16.2617013,SO:0001135,http://purl.obolibrary.org/obo/SO_0001135,beta_turn_left_handed_type_two +16.2617013,SO:0001137,http://purl.obolibrary.org/obo/SO_0001137,beta_turn_right_handed_type_two +16.2617013,SO:0001225,http://purl.obolibrary.org/obo/SO_0001225,gene_silenced_by_histone_modification +16.2617013,SO:0001278,http://purl.obolibrary.org/obo/SO_0001278,one_methylinosine +16.2617013,SO:0001281,http://purl.obolibrary.org/obo/SO_0001281,three_methylcytidine +16.2617013,SO:0001282,http://purl.obolibrary.org/obo/SO_0001282,five_methylcytidine +16.2617013,SO:0001284,http://purl.obolibrary.org/obo/SO_0001284,two_thiocytidine +16.2617013,SO:0001328,http://purl.obolibrary.org/obo/SO_0001328,N2_N2_dimethylguanosine +16.2617013,SO:0001344,http://purl.obolibrary.org/obo/SO_0001344,five_methyluridine +16.2617013,SO:0001353,http://purl.obolibrary.org/obo/SO_0001353,three_three_amino_three_carboxypropyl_uridine +16.2617013,SO:0001378,http://purl.obolibrary.org/obo/SO_0001378,five_taurinomethyluridine +16.2617013,SO:0001390,http://purl.obolibrary.org/obo/SO_0001390,modified_L_cysteine +16.2617013,SO:0001398,http://purl.obolibrary.org/obo/SO_0001398,modified_L_histidine +16.2617013,SO:0001406,http://purl.obolibrary.org/obo/SO_0001406,modified_L_arginine +16.2617013,SO:0001424,http://purl.obolibrary.org/obo/SO_0001424,pyrosequenced_read +16.2617013,SO:0001478,http://purl.obolibrary.org/obo/SO_0001478,promoter_trap_construct +16.2617013,SO:0001525,http://purl.obolibrary.org/obo/SO_0001525,assembly_error_correction +16.2617013,SO:0001577,http://purl.obolibrary.org/obo/SO_0001577,complex_transcript_variant +16.2617013,SO:0001578,http://purl.obolibrary.org/obo/SO_0001578,stop_lost +16.2617013,SO:0001682,http://purl.obolibrary.org/obo/SO_0001682,replication_regulatory_region +16.2617013,SO:0001699,http://purl.obolibrary.org/obo/SO_0001699,dCAPS_primer +16.2617013,SO:0001776,http://purl.obolibrary.org/obo/SO_0001776,paternal_variant +16.2617013,SO:0001897,http://purl.obolibrary.org/obo/SO_0001897,transposable_element_pseudogene +16.2617013,SO:0001898,http://purl.obolibrary.org/obo/SO_0001898,dg_repeat +16.2617013,SO:0001914,http://purl.obolibrary.org/obo/SO_0001914,rDNA_replication_fork_barrier +16.2617013,SO:0001929,http://purl.obolibrary.org/obo/SO_0001929,mitochondrial_DNA_read +16.2617013,SO:0001956,http://purl.obolibrary.org/obo/SO_0001956,protease_site +16.2617013,SO:0001961,http://purl.obolibrary.org/obo/SO_0001961,5_formylcytosine +16.2617013,SO:0002008,http://purl.obolibrary.org/obo/SO_0002008,rare_amino_acid_variant +16.2617013,SO:0002030,http://purl.obolibrary.org/obo/SO_0002030,X_region +16.2617013,SO:1000005,http://purl.obolibrary.org/obo/SO_1000005,complex_substitution +16.2617013,SO:1000025,http://purl.obolibrary.org/obo/SO_1000025,A_to_T_transversion +16.2617013,SO:1001273,http://purl.obolibrary.org/obo/SO_1001273,CTG_start_codon +16.2617013,SO:1001288,http://purl.obolibrary.org/obo/SO_1001288,stop_codon_signal +16.2617013,UBERON:0000066,http://purl.obolibrary.org/obo/UBERON_0000066,fully formed stage +16.2617013,UBERON:0000081,http://purl.obolibrary.org/obo/UBERON_0000081,metanephros +16.2617013,UBERON:0000106,http://purl.obolibrary.org/obo/UBERON_0000106,zygote stage +16.2617013,UBERON:0000108,http://purl.obolibrary.org/obo/UBERON_0000108,blastula stage +16.2617013,UBERON:0000373,http://purl.obolibrary.org/obo/UBERON_0000373,tapetum of corpus callosum +16.2617013,UBERON:0000450,http://purl.obolibrary.org/obo/UBERON_0000450,corpus albicans +16.2617013,UBERON:0000491,http://purl.obolibrary.org/obo/UBERON_0000491,solid compound organ +16.2617013,UBERON:0000911,http://purl.obolibrary.org/obo/UBERON_0000911,chyle +16.2617013,UBERON:0001079,http://purl.obolibrary.org/obo/UBERON_0001079,prezygapophysis +16.2617013,UBERON:0001099,http://purl.obolibrary.org/obo/UBERON_0001099,subcostal vein +16.2617013,UBERON:0001116,http://purl.obolibrary.org/obo/UBERON_0001116,quadrate lobe of liver +16.2617013,UBERON:0001149,http://purl.obolibrary.org/obo/UBERON_0001149,bare area of liver +16.2617013,UBERON:0001154,http://purl.obolibrary.org/obo/UBERON_0001154,vermiform appendix +16.2617013,UBERON:0001171,http://purl.obolibrary.org/obo/UBERON_0001171,portal lobule +16.2617013,UBERON:0001202,http://purl.obolibrary.org/obo/UBERON_0001202,pyloric sphincter +16.2617013,UBERON:0001337,http://purl.obolibrary.org/obo/UBERON_0001337,spongiose part of urethra +16.2617013,UBERON:0001400,http://purl.obolibrary.org/obo/UBERON_0001400,iliocostalis thoracis muscle +16.2617013,UBERON:0001405,http://purl.obolibrary.org/obo/UBERON_0001405,spinalis thoracis muscle +16.2617013,UBERON:0001422,http://purl.obolibrary.org/obo/UBERON_0001422,facial lymphatic vessel +16.2617013,UBERON:0001436,http://purl.obolibrary.org/obo/UBERON_0001436,phalanx of manus +16.2617013,UBERON:0001729,http://purl.obolibrary.org/obo/UBERON_0001729,oropharynx +16.2617013,UBERON:0001788,http://purl.obolibrary.org/obo/UBERON_0001788,outer limiting layer of retina +16.2617013,UBERON:0001857,http://purl.obolibrary.org/obo/UBERON_0001857,anterior semicircular duct +16.2617013,UBERON:0001888,http://purl.obolibrary.org/obo/UBERON_0001888,lateral olfactory stria +16.2617013,UBERON:0001909,http://purl.obolibrary.org/obo/UBERON_0001909,habenular commissure +16.2617013,UBERON:0001928,http://purl.obolibrary.org/obo/UBERON_0001928,preoptic area +16.2617013,UBERON:0001953,http://purl.obolibrary.org/obo/UBERON_0001953,presubiculum +16.2617013,UBERON:0002038,http://purl.obolibrary.org/obo/UBERON_0002038,substantia nigra +16.2617013,UBERON:0002068,http://purl.obolibrary.org/obo/UBERON_0002068,urachus +16.2617013,UBERON:0002145,http://purl.obolibrary.org/obo/UBERON_0002145,interpeduncular nucleus +16.2617013,UBERON:0002160,http://purl.obolibrary.org/obo/UBERON_0002160,nucleus prepositus +16.2617013,UBERON:0002177,http://purl.obolibrary.org/obo/UBERON_0002177,right main bronchus +16.2617013,UBERON:0002207,http://purl.obolibrary.org/obo/UBERON_0002207,xiphoid process +16.2617013,UBERON:0002208,http://purl.obolibrary.org/obo/UBERON_0002208,sternebra +16.2617013,UBERON:0002221,http://purl.obolibrary.org/obo/UBERON_0002221,fontanelle +16.2617013,UBERON:0002237,http://purl.obolibrary.org/obo/UBERON_0002237,true rib +16.2617013,UBERON:0002327,http://purl.obolibrary.org/obo/UBERON_0002327,trunk of intercostal nerve +16.2617013,UBERON:0002455,http://purl.obolibrary.org/obo/UBERON_0002455,common plantar digital arteries +16.2617013,UBERON:0002459,http://purl.obolibrary.org/obo/UBERON_0002459,inferior palpebral vein +16.2617013,UBERON:0002498,http://purl.obolibrary.org/obo/UBERON_0002498,deltopectoral crest +16.2617013,UBERON:0002552,http://purl.obolibrary.org/obo/UBERON_0002552,vestibulocerebellar tract +16.2617013,UBERON:0002582,http://purl.obolibrary.org/obo/UBERON_0002582,anterior calcarine sulcus +16.2617013,UBERON:0002597,http://purl.obolibrary.org/obo/UBERON_0002597,principal sensory nucleus of trigeminal nerve +16.2617013,UBERON:0002598,http://purl.obolibrary.org/obo/UBERON_0002598,paracentral sulcus +16.2617013,UBERON:0002614,http://purl.obolibrary.org/obo/UBERON_0002614,medial part of ventral lateral nucleus +16.2617013,UBERON:0002641,http://purl.obolibrary.org/obo/UBERON_0002641,oral pulvinar nucleus +16.2617013,UBERON:0002733,http://purl.obolibrary.org/obo/UBERON_0002733,intralaminar nuclear group +16.2617013,UBERON:0002738,http://purl.obolibrary.org/obo/UBERON_0002738,isthmus of cingulate gyrus +16.2617013,UBERON:0002741,http://purl.obolibrary.org/obo/UBERON_0002741,diagonal band of Broca +16.2617013,UBERON:0002752,http://purl.obolibrary.org/obo/UBERON_0002752,olivocerebellar tract +16.2617013,UBERON:0002763,http://purl.obolibrary.org/obo/UBERON_0002763,accessory medullary lamina of globus pallidus +16.2617013,UBERON:0002799,http://purl.obolibrary.org/obo/UBERON_0002799,fronto-orbital sulcus +16.2617013,UBERON:0002843,http://purl.obolibrary.org/obo/UBERON_0002843,seventh cervical dorsal root ganglion +16.2617013,UBERON:0003098,http://purl.obolibrary.org/obo/UBERON_0003098,optic stalk +16.2617013,UBERON:0003125,http://purl.obolibrary.org/obo/UBERON_0003125,vitelline membrane +16.2617013,UBERON:0003202,http://purl.obolibrary.org/obo/UBERON_0003202,endocuticle +16.2617013,UBERON:0003241,http://purl.obolibrary.org/obo/UBERON_0003241,epithelium of utricle +16.2617013,UBERON:0003242,http://purl.obolibrary.org/obo/UBERON_0003242,epithelium of saccule +16.2617013,UBERON:0003277,http://purl.obolibrary.org/obo/UBERON_0003277,skeleton of upper jaw +16.2617013,UBERON:0003299,http://purl.obolibrary.org/obo/UBERON_0003299,roof plate of midbrain +16.2617013,UBERON:0003304,http://purl.obolibrary.org/obo/UBERON_0003304,mesoderm blood island +16.2617013,UBERON:0003356,http://purl.obolibrary.org/obo/UBERON_0003356,epithelium of nasal septum +16.2617013,UBERON:0003366,http://purl.obolibrary.org/obo/UBERON_0003366,epithelium of uterine horn +16.2617013,UBERON:0003418,http://purl.obolibrary.org/obo/UBERON_0003418,mesenchyme of submandibular gland +16.2617013,UBERON:0003432,http://purl.obolibrary.org/obo/UBERON_0003432,chest nerve +16.2617013,UBERON:0003467,http://purl.obolibrary.org/obo/UBERON_0003467,sesamoid bone of gastrocnemius +16.2617013,UBERON:0003505,http://purl.obolibrary.org/obo/UBERON_0003505,trachea blood vessel +16.2617013,UBERON:0003571,http://purl.obolibrary.org/obo/UBERON_0003571,trachea connective tissue +16.2617013,UBERON:0003581,http://purl.obolibrary.org/obo/UBERON_0003581,eyelid connective tissue +16.2617013,UBERON:0003609,http://purl.obolibrary.org/obo/UBERON_0003609,aorta elastic tissue +16.2617013,UBERON:0003620,http://purl.obolibrary.org/obo/UBERON_0003620,manual digit 1 phalanx +16.2617013,UBERON:0003625,http://purl.obolibrary.org/obo/UBERON_0003625,manual digit 5 +16.2617013,UBERON:0003664,http://purl.obolibrary.org/obo/UBERON_0003664,manual digit muscle +16.2617013,UBERON:0003689,http://purl.obolibrary.org/obo/UBERON_0003689,sella turcica +16.2617013,UBERON:0003853,http://purl.obolibrary.org/obo/UBERON_0003853,spinal cord neural crest +16.2617013,UBERON:0003934,http://purl.obolibrary.org/obo/UBERON_0003934,mesenchyme pectoral fin +16.2617013,UBERON:0003952,http://purl.obolibrary.org/obo/UBERON_0003952,anterior stroma of cornea +16.2617013,UBERON:0003966,http://purl.obolibrary.org/obo/UBERON_0003966,gonial bone +16.2617013,UBERON:0003984,http://purl.obolibrary.org/obo/UBERON_0003984,uterine tube infundibulum +16.2617013,UBERON:0004009,http://purl.obolibrary.org/obo/UBERON_0004009,cerebellum posterior vermis +16.2617013,UBERON:0004060,http://purl.obolibrary.org/obo/UBERON_0004060,neural tube ventricular layer +16.2617013,UBERON:0004084,http://purl.obolibrary.org/obo/UBERON_0004084,genital labium +16.2617013,UBERON:0004104,http://purl.obolibrary.org/obo/UBERON_0004104,hairline +16.2617013,UBERON:0004108,http://purl.obolibrary.org/obo/UBERON_0004108,clivus of occipital bone +16.2617013,UBERON:0004126,http://purl.obolibrary.org/obo/UBERON_0004126,trabecular layer of ventricle +16.2617013,UBERON:0004173,http://purl.obolibrary.org/obo/UBERON_0004173,medulla reticulospinal tract +16.2617013,UBERON:0004190,http://purl.obolibrary.org/obo/UBERON_0004190,renal glomerulus vasculature +16.2617013,UBERON:0004246,http://purl.obolibrary.org/obo/UBERON_0004246,outflow tract smooth muscle +16.2617013,UBERON:0004361,http://purl.obolibrary.org/obo/UBERON_0004361,stylohyoid ligament +16.2617013,UBERON:0004399,http://purl.obolibrary.org/obo/UBERON_0004399,epiphysis of fifth metatarsal bone +16.2617013,UBERON:0004431,http://purl.obolibrary.org/obo/UBERON_0004431,proximal epiphysis of fifth metatarsal bone +16.2617013,UBERON:0004472,http://purl.obolibrary.org/obo/UBERON_0004472,none +16.2617013,UBERON:0004540,http://purl.obolibrary.org/obo/UBERON_0004540,proper plantar digital artery +16.2617013,UBERON:0004607,http://purl.obolibrary.org/obo/UBERON_0004607,rib 7 +16.2617013,UBERON:0004650,http://purl.obolibrary.org/obo/UBERON_0004650,tongue keratinized epithelium +16.2617013,UBERON:0004719,http://purl.obolibrary.org/obo/UBERON_0004719,kidney arcuate vein +16.2617013,UBERON:0004741,http://purl.obolibrary.org/obo/UBERON_0004741,cleithrum +16.2617013,UBERON:0004761,http://purl.obolibrary.org/obo/UBERON_0004761,cartilaginous neurocranium +16.2617013,UBERON:0004835,http://purl.obolibrary.org/obo/UBERON_0004835,epididymis smooth muscle +16.2617013,UBERON:0004912,http://purl.obolibrary.org/obo/UBERON_0004912,biliary bud +16.2617013,UBERON:0004945,http://purl.obolibrary.org/obo/UBERON_0004945,submucosa of neck of urinary bladder +16.2617013,UBERON:0004990,http://purl.obolibrary.org/obo/UBERON_0004990,mucosa of ascending colon +16.2617013,UBERON:0004991,http://purl.obolibrary.org/obo/UBERON_0004991,mucosa of transverse colon +16.2617013,UBERON:0005037,http://purl.obolibrary.org/obo/UBERON_0005037,mucosa of lobar bronchus +16.2617013,UBERON:0005039,http://purl.obolibrary.org/obo/UBERON_0005039,mucosa of bronchiole +16.2617013,UBERON:0005104,http://purl.obolibrary.org/obo/UBERON_0005104,anterior mesonephric tubule +16.2617013,UBERON:0005155,http://purl.obolibrary.org/obo/UBERON_0005155,open tracheal system +16.2617013,UBERON:0005236,http://purl.obolibrary.org/obo/UBERON_0005236,osseus labyrinth vestibule +16.2617013,UBERON:0005243,http://purl.obolibrary.org/obo/UBERON_0005243,interventricular septum endocardium +16.2617013,UBERON:0005268,http://purl.obolibrary.org/obo/UBERON_0005268,renal cortex artery +16.2617013,UBERON:0005308,http://purl.obolibrary.org/obo/UBERON_0005308,nephrostome +16.2617013,UBERON:0005319,http://purl.obolibrary.org/obo/UBERON_0005319,mesonephric collecting duct +16.2617013,UBERON:0005331,http://purl.obolibrary.org/obo/UBERON_0005331,mesonephric renal vesicle +16.2617013,UBERON:0005336,http://purl.obolibrary.org/obo/UBERON_0005336,capillary layer of choroid +16.2617013,UBERON:0005385,http://purl.obolibrary.org/obo/UBERON_0005385,nasal cavity respiratory epithelium +16.2617013,UBERON:0005407,http://purl.obolibrary.org/obo/UBERON_0005407,sublingual ganglion +16.2617013,UBERON:0005459,http://purl.obolibrary.org/obo/UBERON_0005459,left umbilical vein +16.2617013,UBERON:0005485,http://purl.obolibrary.org/obo/UBERON_0005485,valve of inferior vena cava +16.2617013,UBERON:0005496,http://purl.obolibrary.org/obo/UBERON_0005496,neural tube lateral wall +16.2617013,UBERON:0005602,http://purl.obolibrary.org/obo/UBERON_0005602,dorsal mesogastrium +16.2617013,UBERON:0005608,http://purl.obolibrary.org/obo/UBERON_0005608,hyoid artery +16.2617013,UBERON:0005615,http://purl.obolibrary.org/obo/UBERON_0005615,lens equatorial epithelium +16.2617013,UBERON:0005642,http://purl.obolibrary.org/obo/UBERON_0005642,ultimobranchial body epithelium +16.2617013,UBERON:0005815,http://purl.obolibrary.org/obo/UBERON_0005815,anterior tubercle of transverse process of cervical vertebra +16.2617013,UBERON:0005818,http://purl.obolibrary.org/obo/UBERON_0005818,cephalic midbrain flexure +16.2617013,UBERON:0005832,http://purl.obolibrary.org/obo/UBERON_0005832,cuneate fasciculus +16.2617013,UBERON:0005835,http://purl.obolibrary.org/obo/UBERON_0005835,cuneate fasciculus of spinal cord +16.2617013,UBERON:0005981,http://purl.obolibrary.org/obo/UBERON_0005981,vena cava sinus +16.2617013,UBERON:0006060,http://purl.obolibrary.org/obo/UBERON_0006060,conotruncus +16.2617013,UBERON:0006099,http://purl.obolibrary.org/obo/UBERON_0006099,Brodmann (1909) area 1 +16.2617013,UBERON:0006101,http://purl.obolibrary.org/obo/UBERON_0006101,Brodmann (1909) area 24 +16.2617013,UBERON:0006173,http://purl.obolibrary.org/obo/UBERON_0006173,pronephric proximal tubule +16.2617013,UBERON:0006190,http://purl.obolibrary.org/obo/UBERON_0006190,mesonephric distal tubule +16.2617013,UBERON:0006307,http://purl.obolibrary.org/obo/UBERON_0006307,urogenital membrane +16.2617013,UBERON:0006453,http://purl.obolibrary.org/obo/UBERON_0006453,fifth thoracic spinal cord segment +16.2617013,UBERON:0006698,http://purl.obolibrary.org/obo/UBERON_0006698,mammillotegmental axonal tract +16.2617013,UBERON:0006743,http://purl.obolibrary.org/obo/UBERON_0006743,paleodentate of dentate nucleus +16.2617013,UBERON:0006802,http://purl.obolibrary.org/obo/UBERON_0006802,acetabular rim +16.2617013,UBERON:0006831,http://purl.obolibrary.org/obo/UBERON_0006831,pre-tracheal muscle +16.2617013,UBERON:0006855,http://purl.obolibrary.org/obo/UBERON_0006855,muscular coat of ureter +16.2617013,UBERON:0006912,http://purl.obolibrary.org/obo/UBERON_0006912,urinary bladder muscularis mucosa +16.2617013,UBERON:0006972,http://purl.obolibrary.org/obo/UBERON_0006972,nephridium +16.2617013,UBERON:0007094,http://purl.obolibrary.org/obo/UBERON_0007094,none +16.2617013,UBERON:0007098,http://purl.obolibrary.org/obo/UBERON_0007098,mandibular neural crest +16.2617013,UBERON:0007124,http://purl.obolibrary.org/obo/UBERON_0007124,pharyngeal pouch 3 +16.2617013,UBERON:0007154,http://purl.obolibrary.org/obo/UBERON_0007154,inferior epigastric vein +16.2617013,UBERON:0007158,http://purl.obolibrary.org/obo/UBERON_0007158,lumen of anal canal +16.2617013,UBERON:0007281,http://purl.obolibrary.org/obo/UBERON_0007281,presumptive midbrain hindbrain boundary +16.2617013,UBERON:0007297,http://purl.obolibrary.org/obo/UBERON_0007297,presumptive pronephric mesoderm +16.2617013,UBERON:0007317,http://purl.obolibrary.org/obo/UBERON_0007317,superficial external pudendal artery +16.2617013,UBERON:0007377,http://purl.obolibrary.org/obo/UBERON_0007377,stratum compactum of dermis +16.2617013,UBERON:0007632,http://purl.obolibrary.org/obo/UBERON_0007632,Barrington's nucleus +16.2617013,UBERON:0007732,http://purl.obolibrary.org/obo/UBERON_0007732,interphalangeal joint of manual digit 5 +16.2617013,UBERON:0007738,http://purl.obolibrary.org/obo/UBERON_0007738,metacarpophalangeal joint of manual digit 2 +16.2617013,UBERON:0007763,http://purl.obolibrary.org/obo/UBERON_0007763,cerebellum vermis culmen +16.2617013,UBERON:0007862,http://purl.obolibrary.org/obo/UBERON_0007862,perichordal tissue +16.2617013,UBERON:0007960,http://purl.obolibrary.org/obo/UBERON_0007960,scapholunate +16.2617013,UBERON:0008268,http://purl.obolibrary.org/obo/UBERON_0008268,right supracardinal vein +16.2617013,UBERON:0008310,http://purl.obolibrary.org/obo/UBERON_0008310,nasopharyngeal gland +16.2617013,UBERON:0008544,http://purl.obolibrary.org/obo/UBERON_0008544,splenius cervicis +16.2617013,UBERON:0008790,http://purl.obolibrary.org/obo/UBERON_0008790,rugal fold +16.2617013,UBERON:0008799,http://purl.obolibrary.org/obo/UBERON_0008799,transverse palatine fold +16.2617013,UBERON:0008859,http://purl.obolibrary.org/obo/UBERON_0008859,cardiac gastric gland +16.2617013,UBERON:0009204,http://purl.obolibrary.org/obo/UBERON_0009204,medial nasal process mesenchyme +16.2617013,UBERON:0009559,http://purl.obolibrary.org/obo/UBERON_0009559,metacarpal/tarsal-phalangeal joint +16.2617013,UBERON:0009611,http://purl.obolibrary.org/obo/UBERON_0009611,midbrain neural plate +16.2617013,UBERON:0009697,http://purl.obolibrary.org/obo/UBERON_0009697,epithelium of appendix +16.2617013,UBERON:0009721,http://purl.obolibrary.org/obo/UBERON_0009721,atrial siphon +16.2617013,UBERON:0009871,http://purl.obolibrary.org/obo/UBERON_0009871,nephrogenic zone +16.2617013,UBERON:0009887,http://purl.obolibrary.org/obo/UBERON_0009887,interlobar vein +16.2617013,UBERON:0009907,http://purl.obolibrary.org/obo/UBERON_0009907,sensory root of trigeminal nerve +16.2617013,UBERON:0009920,http://purl.obolibrary.org/obo/UBERON_0009920,optic neural crest +16.2617013,UBERON:0009974,http://purl.obolibrary.org/obo/UBERON_0009974,lumen of Rathke's pouch +16.2617013,UBERON:0010034,http://purl.obolibrary.org/obo/UBERON_0010034,copula linguae +16.2617013,UBERON:0010049,http://purl.obolibrary.org/obo/UBERON_0010049,supralabial gland +16.2617013,UBERON:0010078,http://purl.obolibrary.org/obo/UBERON_0010078,optic choroid vascular plexus +16.2617013,UBERON:0010151,http://purl.obolibrary.org/obo/UBERON_0010151,duct of bulbourethral gland +16.2617013,UBERON:0010155,http://purl.obolibrary.org/obo/UBERON_0010155,parietomastoid suture +16.2617013,UBERON:0010285,http://purl.obolibrary.org/obo/UBERON_0010285,midbrain basal plate +16.2617013,UBERON:0010330,http://purl.obolibrary.org/obo/UBERON_0010330,eyelid mesenchyme +16.2617013,UBERON:0010391,http://purl.obolibrary.org/obo/UBERON_0010391,parametrium +16.2617013,UBERON:0010395,http://purl.obolibrary.org/obo/UBERON_0010395,lymph node primary follicle +16.2617013,UBERON:0010398,http://purl.obolibrary.org/obo/UBERON_0010398,spleen marginal sinus +16.2617013,UBERON:0010506,http://purl.obolibrary.org/obo/UBERON_0010506,meningeal dura mater +16.2617013,UBERON:0010507,http://purl.obolibrary.org/obo/UBERON_0010507,layer of dura mater +16.2617013,UBERON:0010519,http://purl.obolibrary.org/obo/UBERON_0010519,tail electric organ +16.2617013,UBERON:0010711,http://purl.obolibrary.org/obo/UBERON_0010711,pelvic fin skeleton +16.2617013,UBERON:0010724,http://purl.obolibrary.org/obo/UBERON_0010724,lateral tubercle of talus +16.2617013,UBERON:0010854,http://purl.obolibrary.org/obo/UBERON_0010854,skin of front of neck +16.2617013,UBERON:0010947,http://purl.obolibrary.org/obo/UBERON_0010947,occipitalis +16.2617013,UBERON:0011025,http://purl.obolibrary.org/obo/UBERON_0011025,aryepiglotticus muscle +16.2617013,UBERON:0011177,http://purl.obolibrary.org/obo/UBERON_0011177,posterior division of bed nuclei of stria terminalis +16.2617013,UBERON:0011220,http://purl.obolibrary.org/obo/UBERON_0011220,mastoid process of temporal bone +16.2617013,UBERON:0011320,http://purl.obolibrary.org/obo/UBERON_0011320,ligament of temporomandibular joint +16.2617013,UBERON:0011358,http://purl.obolibrary.org/obo/UBERON_0011358,infundibular organ +16.2617013,UBERON:0011360,http://purl.obolibrary.org/obo/UBERON_0011360,ampulla caudalis +16.2617013,UBERON:0011598,http://purl.obolibrary.org/obo/UBERON_0011598,coronoid bone +16.2617013,UBERON:0011603,http://purl.obolibrary.org/obo/UBERON_0011603,coronoid tooth +16.2617013,UBERON:0011607,http://purl.obolibrary.org/obo/UBERON_0011607,hyomandibular cartilage +16.2617013,UBERON:0011649,http://purl.obolibrary.org/obo/UBERON_0011649,levator operculi +16.2617013,UBERON:0011665,http://purl.obolibrary.org/obo/UBERON_0011665,carapace bone +16.2617013,UBERON:0011875,http://purl.obolibrary.org/obo/UBERON_0011875,ligament of sternoclavicular joint +16.2617013,UBERON:0011909,http://purl.obolibrary.org/obo/UBERON_0011909,gastrocnemius internus +16.2617013,UBERON:0011949,http://purl.obolibrary.org/obo/UBERON_0011949,endometrium luminal epithelium +16.2617013,UBERON:0011961,http://purl.obolibrary.org/obo/UBERON_0011961,articular capsule of hip joint +16.2617013,UBERON:0012085,http://purl.obolibrary.org/obo/UBERON_0012085,lumen of tertiary bronchus +16.2617013,UBERON:0012109,http://purl.obolibrary.org/obo/UBERON_0012109,zygomatic process of frontal bone +16.2617013,UBERON:0012172,http://purl.obolibrary.org/obo/UBERON_0012172,stomach primordium +16.2617013,UBERON:0012175,http://purl.obolibrary.org/obo/UBERON_0012175,acoustico-facial VII-VIII ganglion complex +16.2617013,UBERON:0012179,http://purl.obolibrary.org/obo/UBERON_0012179,bone of pelvis +16.2617013,UBERON:0012236,http://purl.obolibrary.org/obo/UBERON_0012236,intercostal lymph node +16.2617013,UBERON:0012260,http://purl.obolibrary.org/obo/UBERON_0012260,alular digit +16.2617013,UBERON:0012281,http://purl.obolibrary.org/obo/UBERON_0012281,perianal sebaceous gland +16.2617013,UBERON:0012286,http://purl.obolibrary.org/obo/UBERON_0012286,hemisphere of embryo +16.2617013,UBERON:0012301,http://purl.obolibrary.org/obo/UBERON_0012301,female membranous urethra +16.2617013,UBERON:0012316,http://purl.obolibrary.org/obo/UBERON_0012316,primitive palate +16.2617013,UBERON:0012401,http://purl.obolibrary.org/obo/UBERON_0012401,small intestine smooth muscle circular layer +16.2617013,UBERON:0012420,http://purl.obolibrary.org/obo/UBERON_0012420,coprodeum +16.2617013,UBERON:0012642,http://purl.obolibrary.org/obo/UBERON_0012642,vestimentum muscle +16.2617013,UBERON:0013170,http://purl.obolibrary.org/obo/UBERON_0013170,cricoarytenoid ligament +16.2617013,UBERON:0013216,http://purl.obolibrary.org/obo/UBERON_0013216,udder +16.2617013,UBERON:0013224,http://purl.obolibrary.org/obo/UBERON_0013224,Ciaccio's gland +16.2617013,UBERON:0013227,http://purl.obolibrary.org/obo/UBERON_0013227,crypt of Henle +16.2617013,UBERON:0013245,http://purl.obolibrary.org/obo/UBERON_0013245,sinovaginal bulb +16.2617013,UBERON:0013248,http://purl.obolibrary.org/obo/UBERON_0013248,paradidymis +16.2617013,UBERON:0013398,http://purl.obolibrary.org/obo/UBERON_0013398,choroidal gland +16.2617013,UBERON:0013488,http://purl.obolibrary.org/obo/UBERON_0013488,panniculus adiposus +16.2617013,UBERON:0013519,http://purl.obolibrary.org/obo/UBERON_0013519,avian uterine tube isthmus +16.2617013,UBERON:0013526,http://purl.obolibrary.org/obo/UBERON_0013526,otocyst lumen +16.2617013,UBERON:0013553,http://purl.obolibrary.org/obo/UBERON_0013553,Brodmann (1909) area 22 +16.2617013,UBERON:0013687,http://purl.obolibrary.org/obo/UBERON_0013687,pericranium +16.2617013,UBERON:0013700,http://purl.obolibrary.org/obo/UBERON_0013700,axial musculature +16.2617013,UBERON:0013739,http://purl.obolibrary.org/obo/UBERON_0013739,base of crypt of Lieberkuhn +16.2617013,UBERON:0013747,http://purl.obolibrary.org/obo/UBERON_0013747,basibranchial cartilage +16.2617013,UBERON:0013753,http://purl.obolibrary.org/obo/UBERON_0013753,distal epiphysis of metacarpal bone +16.2617013,UBERON:0014404,http://purl.obolibrary.org/obo/UBERON_0014404,female anatomical structure +16.2617013,UBERON:0014452,http://purl.obolibrary.org/obo/UBERON_0014452,gustatory epithelium of tongue +16.2617013,UBERON:0014483,http://purl.obolibrary.org/obo/UBERON_0014483,distal phalanx of digit 1 +16.2617013,UBERON:0014488,http://purl.obolibrary.org/obo/UBERON_0014488,middle phalanx of digit 2 +16.2617013,UBERON:0014538,http://purl.obolibrary.org/obo/UBERON_0014538,subdivision of spinal cord central canal +16.2617013,UBERON:0014549,http://purl.obolibrary.org/obo/UBERON_0014549,pyramidal layer of CA2 +16.2617013,UBERON:0014556,http://purl.obolibrary.org/obo/UBERON_0014556,CA3 stratum radiatum +16.2617013,UBERON:0014557,http://purl.obolibrary.org/obo/UBERON_0014557,CA1 stratum lacunosum moleculare +16.2617013,UBERON:0014667,http://purl.obolibrary.org/obo/UBERON_0014667,periventricular nucleus of hypothalamus +16.2617013,UBERON:0014699,http://purl.obolibrary.org/obo/UBERON_0014699,extraembryonic venous system +16.2617013,UBERON:0014735,http://purl.obolibrary.org/obo/UBERON_0014735,paleocortex +16.2617013,UBERON:0014736,http://purl.obolibrary.org/obo/UBERON_0014736,periallocortex +16.2617013,UBERON:0014741,http://purl.obolibrary.org/obo/UBERON_0014741,lateral pallium +16.2617013,UBERON:0014776,http://purl.obolibrary.org/obo/UBERON_0014776,midbrain neuromere +16.2617013,UBERON:0014890,http://purl.obolibrary.org/obo/UBERON_0014890,right hemisphere of cerebellum +16.2617013,UBERON:0014913,http://purl.obolibrary.org/obo/UBERON_0014913,ventral pallium +16.2617013,UBERON:0014915,http://purl.obolibrary.org/obo/UBERON_0014915,genu of facial nerve +16.2617013,UBERON:0015024,http://purl.obolibrary.org/obo/UBERON_0015024,manual digit phalanx endochondral element +16.2617013,UBERON:0015025,http://purl.obolibrary.org/obo/UBERON_0015025,manual digit 1 phalanx endochondral element +16.2617013,UBERON:0015127,http://purl.obolibrary.org/obo/UBERON_0015127,posterior internodal tract +16.2617013,UBERON:0015128,http://purl.obolibrary.org/obo/UBERON_0015128,subepicardial layer of epicardium +16.2617013,UBERON:0015147,http://purl.obolibrary.org/obo/UBERON_0015147,pinna hair +16.2617013,UBERON:0015151,http://purl.obolibrary.org/obo/UBERON_0015151,Harderian gland duct +16.2617013,UBERON:0015244,http://purl.obolibrary.org/obo/UBERON_0015244,accessory olfactory bulb granule cell layer +16.2617013,UBERON:0015791,http://purl.obolibrary.org/obo/UBERON_0015791,digit connective tissue +16.2617013,UBERON:0015886,http://purl.obolibrary.org/obo/UBERON_0015886,root of nail +16.2617013,UBERON:0016392,http://purl.obolibrary.org/obo/UBERON_0016392,mastoid lymph node +16.2617013,UBERON:0016578,http://purl.obolibrary.org/obo/UBERON_0016578,lamina VII of gray matter of spinal cord +16.2617013,UBERON:0017270,http://purl.obolibrary.org/obo/UBERON_0017270,secondary premolar tooth +16.2617013,UBERON:0017637,http://purl.obolibrary.org/obo/UBERON_0017637,marginal venous sinus +16.2617013,UBERON:0018131,http://purl.obolibrary.org/obo/UBERON_0018131,periovarian fat pad +16.2617013,UBERON:0018157,http://purl.obolibrary.org/obo/UBERON_0018157,lateral malleal ligament +16.2617013,UBERON:0018159,http://purl.obolibrary.org/obo/UBERON_0018159,anterior malleal ligament +16.2617013,UBERON:0018247,http://purl.obolibrary.org/obo/UBERON_0018247,cervical thymic artery +16.2617013,UBERON:0018248,http://purl.obolibrary.org/obo/UBERON_0018248,inferior superficial cervical thymic artery +16.2617013,UBERON:0018249,http://purl.obolibrary.org/obo/UBERON_0018249,superior superficial cervical thymic artery +16.2617013,UBERON:0018298,http://purl.obolibrary.org/obo/UBERON_0018298,stylocone +16.2617013,UBERON:0018346,http://purl.obolibrary.org/obo/UBERON_0018346,parietal notch +16.2617013,UBERON:0018561,http://purl.obolibrary.org/obo/UBERON_0018561,upper secondary canine tooth +16.2617013,UBERON:0018643,http://purl.obolibrary.org/obo/UBERON_0018643,deciduous molar tooth 2 +16.2617013,UBERON:0019231,http://purl.obolibrary.org/obo/UBERON_0019231,manual digit 1 or 5 +16.2617013,UBERON:0019328,http://purl.obolibrary.org/obo/UBERON_0019328,palpebral lobe of lacrimal gland +16.2617013,UBERON:0022274,http://purl.obolibrary.org/obo/UBERON_0022274,lacrimal papilla +16.2617013,UBERON:0022278,http://purl.obolibrary.org/obo/UBERON_0022278,nucleus of pudendal nerve +16.2617013,UBERON:0022299,http://purl.obolibrary.org/obo/UBERON_0022299,upper eyelid nerve +16.2617013,UBERON:0022329,http://purl.obolibrary.org/obo/UBERON_0022329,entorhinal cortex layer 6 +16.2617013,UBERON:0022337,http://purl.obolibrary.org/obo/UBERON_0022337,entorhinal cortex layer 2 +16.2617013,UBERON:0022395,http://purl.obolibrary.org/obo/UBERON_0022395,temporal fusiform gyrus +16.2617013,UBERON:0022453,http://purl.obolibrary.org/obo/UBERON_0022453,olfactory entorhinal cortex +16.2617013,UBERON:0025261,http://purl.obolibrary.org/obo/UBERON_0025261,thalamic fiber tract +16.2617013,UBERON:0025768,http://purl.obolibrary.org/obo/UBERON_0025768,posterior middle temporal sulcus +16.2617013,UBERON:0025829,http://purl.obolibrary.org/obo/UBERON_0025829,anterior parieto-occipital sulcus +16.2617013,UBERON:0026719,http://purl.obolibrary.org/obo/UBERON_0026719,intermediate frontal sulcus +16.2617013,UBERON:0026721,http://purl.obolibrary.org/obo/UBERON_0026721,medial precentral sulcus +16.2617013,UBERON:0026724,http://purl.obolibrary.org/obo/UBERON_0026724,superior parietal sulcus +16.2617013,UBERON:0027113,http://purl.obolibrary.org/obo/UBERON_0027113,anterior middle temporal sulcus +16.2617013,UBERON:0027225,http://purl.obolibrary.org/obo/UBERON_0027225,noradrenergic system +16.2617013,UBERON:0029009,http://purl.obolibrary.org/obo/UBERON_0029009,granular cell layer of dorsal cochlear nucleus +16.2617013,UBERON:0030276,http://purl.obolibrary.org/obo/UBERON_0030276,lumbar spinal cord ventral horn +16.2617013,UBERON:0034670,http://purl.obolibrary.org/obo/UBERON_0034670,palatal taste bud +16.2617013,UBERON:0034722,http://purl.obolibrary.org/obo/UBERON_0034722,mouth roof taste bud +16.2617013,UBERON:0034730,http://purl.obolibrary.org/obo/UBERON_0034730,olfactory tract linking bulb to ipsilateral dorsal telencephalon +16.2617013,UBERON:0034734,http://purl.obolibrary.org/obo/UBERON_0034734,medial olfactory stria +16.2617013,UBERON:0034773,http://purl.obolibrary.org/obo/UBERON_0034773,uncus of parahippocampal gyrus +16.2617013,UBERON:0034935,http://purl.obolibrary.org/obo/UBERON_0034935,pars plicata of ciliary body +16.2617013,UBERON:0034984,http://purl.obolibrary.org/obo/UBERON_0034984,nerve to quadratus femoris +16.2617013,UBERON:0035097,http://purl.obolibrary.org/obo/UBERON_0035097,iliocaudalis muscle +16.2617013,UBERON:0035151,http://purl.obolibrary.org/obo/UBERON_0035151,dorsal cerebral vein +16.2617013,UBERON:0035787,http://purl.obolibrary.org/obo/UBERON_0035787,layer of CA2 field +16.2617013,UBERON:1000007,http://purl.obolibrary.org/obo/UBERON_1000007,forehead protuberance +16.2617013,UBERON:2000068,http://purl.obolibrary.org/obo/UBERON_2000068,neural plate proneural cluster +16.2617013,UBERON:2000127,http://purl.obolibrary.org/obo/UBERON_2000127,antorbital +16.2617013,UBERON:2000156,http://purl.obolibrary.org/obo/UBERON_2000156,somite 20 +16.2617013,UBERON:2000226,http://purl.obolibrary.org/obo/UBERON_2000226,lateral ethmoid bone +16.2617013,UBERON:2000234,http://purl.obolibrary.org/obo/UBERON_2000234,macula neglecta +16.2617013,UBERON:2000245,http://purl.obolibrary.org/obo/UBERON_2000245,nucleus of the descending root +16.2617013,UBERON:2000461,http://purl.obolibrary.org/obo/UBERON_2000461,Weberian ossicle +16.2617013,UBERON:2000527,http://purl.obolibrary.org/obo/UBERON_2000527,pharyngobranchial bone +16.2617013,UBERON:2000558,http://purl.obolibrary.org/obo/UBERON_2000558,posterior macula +16.2617013,UBERON:2000594,http://purl.obolibrary.org/obo/UBERON_2000594,supracleithrum +16.2617013,UBERON:2000658,http://purl.obolibrary.org/obo/UBERON_2000658,epibranchial bone +16.2617013,UBERON:2000666,http://purl.obolibrary.org/obo/UBERON_2000666,filamental artery +16.2617013,UBERON:2000731,http://purl.obolibrary.org/obo/UBERON_2000731,somite 27 +16.2617013,UBERON:2000852,http://purl.obolibrary.org/obo/UBERON_2000852,somite 15 +16.2617013,UBERON:2000854,http://purl.obolibrary.org/obo/UBERON_2000854,somite 21 +16.2617013,UBERON:2000855,http://purl.obolibrary.org/obo/UBERON_2000855,somite 24 +16.2617013,UBERON:2000978,http://purl.obolibrary.org/obo/UBERON_2000978,somite 22 +16.2617013,UBERON:2000983,http://purl.obolibrary.org/obo/UBERON_2000983,somite 9 +16.2617013,UBERON:2001201,http://purl.obolibrary.org/obo/UBERON_2001201,ventral lateral mesoderm +16.2617013,UBERON:2001428,http://purl.obolibrary.org/obo/UBERON_2001428,olfactory rosette +16.2617013,UBERON:2001480,http://purl.obolibrary.org/obo/UBERON_2001480,dorsal anterior lateral line nerve +16.2617013,UBERON:2001522,http://purl.obolibrary.org/obo/UBERON_2001522,hypobranchial cartilage +16.2617013,UBERON:2001553,http://purl.obolibrary.org/obo/UBERON_2001553,manubrium +16.2617013,UBERON:2001593,http://purl.obolibrary.org/obo/UBERON_2001593,caudal fin upper lobe +16.2617013,UBERON:2001739,http://purl.obolibrary.org/obo/UBERON_2001739,anterior cranial fontanel +16.2617013,UBERON:2001812,http://purl.obolibrary.org/obo/UBERON_2001812,preoperculo-mandibular sensory canal +16.2617013,UBERON:2001893,http://purl.obolibrary.org/obo/UBERON_2001893,hypobranchial element +16.2617013,UBERON:2001909,http://purl.obolibrary.org/obo/UBERON_2001909,pharyngobranchial element +16.2617013,UBERON:2001921,http://purl.obolibrary.org/obo/UBERON_2001921,adipose eyelid +16.2617013,UBERON:2002015,http://purl.obolibrary.org/obo/UBERON_2002015,pharyngobranchial tooth plate +16.2617013,UBERON:2002061,http://purl.obolibrary.org/obo/UBERON_2002061,predorsal vertebra +16.2617013,UBERON:2002221,http://purl.obolibrary.org/obo/UBERON_2002221,pericardial muscle +16.2617013,UBERON:2002223,http://purl.obolibrary.org/obo/UBERON_2002223,pillar of the semicircular canal +16.2617013,UBERON:2005015,http://purl.obolibrary.org/obo/UBERON_2005015,afferent lamellar arteriole +16.2617013,UBERON:2005038,http://purl.obolibrary.org/obo/UBERON_2005038,supraintestinal vein +16.2617013,UBERON:2005279,http://purl.obolibrary.org/obo/UBERON_2005279,enteric circular muscle +16.2617013,UBERON:2005338,http://purl.obolibrary.org/obo/UBERON_2005338,posterior recess +16.2617013,UBERON:2007023,http://purl.obolibrary.org/obo/UBERON_2007023,posterior neural keel +16.2617013,UBERON:2007024,http://purl.obolibrary.org/obo/UBERON_2007024,anterior neural keel +16.2617013,UBERON:2007029,http://purl.obolibrary.org/obo/UBERON_2007029,hindbrain neural keel +16.2617013,UBERON:2007042,http://purl.obolibrary.org/obo/UBERON_2007042,spinal cord neural tube +16.2617013,UBERON:3000015,http://purl.obolibrary.org/obo/UBERON_3000015,anterior maxillary process +16.2617013,UBERON:3000234,http://purl.obolibrary.org/obo/UBERON_3000234,inferior prenasal cartilage +16.2617013,UBERON:3000713,http://purl.obolibrary.org/obo/UBERON_3000713,epichordal +16.2617013,UBERON:3000894,http://purl.obolibrary.org/obo/UBERON_3000894,femoral ridge +16.2617013,UBERON:3000991,http://purl.obolibrary.org/obo/UBERON_3000991,dorsal folds +16.2617013,UBERON:3000998,http://purl.obolibrary.org/obo/UBERON_3000998,suprarostral cartilage +16.2617013,UBERON:3000999,http://purl.obolibrary.org/obo/UBERON_3000999,dorsal pouch +16.2617013,UBERON:3010138,http://purl.obolibrary.org/obo/UBERON_3010138,trabecular horn +16.2617013,UBERON:3010144,http://purl.obolibrary.org/obo/UBERON_3010144,odontoids +16.2617013,UBERON:3010190,http://purl.obolibrary.org/obo/UBERON_3010190,tibial protuberances +16.2617013,UBERON:3010201,http://purl.obolibrary.org/obo/UBERON_3010201,dorsal tail tubercle +16.2617013,UBERON:3010241,http://purl.obolibrary.org/obo/UBERON_3010241,labial fold +16.2617013,UBERON:3010242,http://purl.obolibrary.org/obo/UBERON_3010242,nasolabial groove +16.2617013,UBERON:3010394,http://purl.obolibrary.org/obo/UBERON_3010394,mesonephric late proximal tubule +16.2617013,UBERON:3010564,http://purl.obolibrary.org/obo/UBERON_3010564,carotid foramen +16.2617013,UBERON:3010584,http://purl.obolibrary.org/obo/UBERON_3010584,mandibular arch neural crest +16.2617013,UBERON:4000053,http://purl.obolibrary.org/obo/UBERON_4000053,vacuolated notochordal tissue +16.2617013,UBERON:4000070,http://purl.obolibrary.org/obo/UBERON_4000070,elasmoid scale +16.2617013,UBERON:4000106,http://purl.obolibrary.org/obo/UBERON_4000106,vasodentine +16.2617013,UBERON:4200171,http://purl.obolibrary.org/obo/UBERON_4200171,process 4 of entepicondyle +16.2617013,UBERON:4300111,http://purl.obolibrary.org/obo/UBERON_4300111,lateral ethmoid element +16.2617013,UBERON:4300127,http://purl.obolibrary.org/obo/UBERON_4300127,nuchal crest +16.2617013,UBERON:4300130,http://purl.obolibrary.org/obo/UBERON_4300130,lateral pelvic gland +16.9548485,CHEBI:101096,http://purl.obolibrary.org/obo/CHEBI_101096,ethoxzolamide +16.9548485,CHEBI:10589,http://purl.obolibrary.org/obo/CHEBI_10589,m-toluic acid +16.9548485,CHEBI:11152,http://purl.obolibrary.org/obo/CHEBI_11152,"1,2-didecanoylglycerol" +16.9548485,CHEBI:1148,http://purl.obolibrary.org/obo/CHEBI_1148,2-hydroxybutyric acid +16.9548485,CHEBI:115155,http://purl.obolibrary.org/obo/CHEBI_115155,(8xi)-cinchonan-9-ol +16.9548485,CHEBI:1156,http://purl.obolibrary.org/obo/CHEBI_1156,2-hydroxyestrone +16.9548485,CHEBI:11684,http://purl.obolibrary.org/obo/CHEBI_11684,"3,3',5'-triiodo-L-thyronine" +16.9548485,CHEBI:1224,http://purl.obolibrary.org/obo/CHEBI_1224,2-nitrofluorene +16.9548485,CHEBI:12834,http://purl.obolibrary.org/obo/CHEBI_12834,n-alkanal +16.9548485,CHEBI:131621,http://purl.obolibrary.org/obo/CHEBI_131621,C19-steroid +16.9548485,CHEBI:131869,http://purl.obolibrary.org/obo/CHEBI_131869,hydroxy monounsaturated fatty acid +16.9548485,CHEBI:131878,http://purl.obolibrary.org/obo/CHEBI_131878,cholanic acid anion +16.9548485,CHEBI:131879,http://purl.obolibrary.org/obo/CHEBI_131879,cholanic acid conjugate anion +16.9548485,CHEBI:13209,http://purl.obolibrary.org/obo/CHEBI_13209,long-chain fatty acid ethyl ester +16.9548485,CHEBI:132130,http://purl.obolibrary.org/obo/CHEBI_132130,hydroxyquinone +16.9548485,CHEBI:132155,http://purl.obolibrary.org/obo/CHEBI_132155,hydroxynaphthoquinone +16.9548485,CHEBI:132157,http://purl.obolibrary.org/obo/CHEBI_132157,"hydroxy-1,4-naphthoquinone" +16.9548485,CHEBI:132449,http://purl.obolibrary.org/obo/CHEBI_132449,wax ester 36:1 +16.9548485,CHEBI:132948,http://purl.obolibrary.org/obo/CHEBI_132948,pyridoxate +16.9548485,CHEBI:133004,http://purl.obolibrary.org/obo/CHEBI_133004,bisbenzylisoquinoline alkaloid +16.9548485,CHEBI:133131,http://purl.obolibrary.org/obo/CHEBI_133131,spiro-epoxide +16.9548485,CHEBI:134045,http://purl.obolibrary.org/obo/CHEBI_134045,polychlorinated dibenzodioxines and related compounds +16.9548485,CHEBI:134416,http://purl.obolibrary.org/obo/CHEBI_134416,3-oxo fatty acid +16.9548485,CHEBI:13611,http://purl.obolibrary.org/obo/CHEBI_13611,4-hydroxy carboxylic acid +16.9548485,CHEBI:136438,http://purl.obolibrary.org/obo/CHEBI_136438,D-thioglucoside +16.9548485,CHEBI:136440,http://purl.obolibrary.org/obo/CHEBI_136440,beta-D-thioglucoside +16.9548485,CHEBI:137419,http://purl.obolibrary.org/obo/CHEBI_137419,secondary ammonium ion +16.9548485,CHEBI:13759,http://purl.obolibrary.org/obo/CHEBI_13759,alkylamine +16.9548485,CHEBI:138029,http://purl.obolibrary.org/obo/CHEBI_138029,14alpha-methyl steroid +16.9548485,CHEBI:138088,http://purl.obolibrary.org/obo/CHEBI_138088,long chain primary alcohol +16.9548485,CHEBI:138130,http://purl.obolibrary.org/obo/CHEBI_138130,Delta(7)-sterol +16.9548485,CHEBI:138856,http://purl.obolibrary.org/obo/CHEBI_138856,oxolinic acid +16.9548485,CHEBI:139359,http://purl.obolibrary.org/obo/CHEBI_139359,tritiated compound +16.9548485,CHEBI:139544,http://purl.obolibrary.org/obo/CHEBI_139544,(11)C-modified compound +16.9548485,CHEBI:13956,http://purl.obolibrary.org/obo/CHEBI_13956,ceramide 1-phosphate +16.9548485,CHEBI:140277,http://purl.obolibrary.org/obo/CHEBI_140277,5-hydroxyanthocyanidin +16.9548485,CHEBI:140345,http://purl.obolibrary.org/obo/CHEBI_140345,hydroxy polyunsaturated fatty acid +16.9548485,CHEBI:140785,http://purl.obolibrary.org/obo/CHEBI_140785,R-cob(III)alamin +16.9548485,CHEBI:141498,http://purl.obolibrary.org/obo/CHEBI_141498,hemiaminal ether +16.9548485,CHEBI:142118,http://purl.obolibrary.org/obo/CHEBI_142118,imidazobenzodiazepine +16.9548485,CHEBI:142348,http://purl.obolibrary.org/obo/CHEBI_142348,hexahydronaphthalenes +16.9548485,CHEBI:142622,http://purl.obolibrary.org/obo/CHEBI_142622,primary fatty alcohol +16.9548485,CHEBI:142940,http://purl.obolibrary.org/obo/CHEBI_142940,dihexadecanoylglycerol +16.9548485,CHEBI:14428,http://purl.obolibrary.org/obo/CHEBI_14428,hyponitrous acid +16.9548485,CHEBI:146281,http://purl.obolibrary.org/obo/CHEBI_146281,anthracenone +16.9548485,CHEBI:14750,http://purl.obolibrary.org/obo/CHEBI_14750,acetylacetone +16.9548485,CHEBI:15035,http://purl.obolibrary.org/obo/CHEBI_15035,retinal +16.9548485,CHEBI:15040,http://purl.obolibrary.org/obo/CHEBI_15040,retinyl palmitate +16.9548485,CHEBI:15258,http://purl.obolibrary.org/obo/CHEBI_15258,trichlorophenols +16.9548485,CHEBI:15341,http://purl.obolibrary.org/obo/CHEBI_15341,beta-D-glucosiduronic acid +16.9548485,CHEBI:15344,http://purl.obolibrary.org/obo/CHEBI_15344,acetoacetic acid +16.9548485,CHEBI:15369,http://purl.obolibrary.org/obo/CHEBI_15369,actinomycin +16.9548485,CHEBI:15420,http://purl.obolibrary.org/obo/CHEBI_15420,perillyl alcohol +16.9548485,CHEBI:15440,http://purl.obolibrary.org/obo/CHEBI_15440,squalene +16.9548485,CHEBI:15463,http://purl.obolibrary.org/obo/CHEBI_15463,cinnamoyl-CoA +16.9548485,CHEBI:15518,http://purl.obolibrary.org/obo/CHEBI_15518,caffeoyl-CoA +16.9548485,CHEBI:15529,http://purl.obolibrary.org/obo/CHEBI_15529,lactoyl-CoA +16.9548485,CHEBI:15535,http://purl.obolibrary.org/obo/CHEBI_15535,oxalyl-CoA +16.9548485,CHEBI:15539,http://purl.obolibrary.org/obo/CHEBI_15539,propionyl-CoA +16.9548485,CHEBI:15570,http://purl.obolibrary.org/obo/CHEBI_15570,D-alanine +16.9548485,CHEBI:156095,http://purl.obolibrary.org/obo/CHEBI_156095,lumefantrine +16.9548485,CHEBI:156549,http://purl.obolibrary.org/obo/CHEBI_156549,tetroxocane +16.9548485,CHEBI:15733,http://purl.obolibrary.org/obo/CHEBI_15733,N-methylaniline +16.9548485,CHEBI:15743,http://purl.obolibrary.org/obo/CHEBI_15743,butanal +16.9548485,CHEBI:15748,http://purl.obolibrary.org/obo/CHEBI_15748,D-glucuronate +16.9548485,CHEBI:15760,http://purl.obolibrary.org/obo/CHEBI_15760,tyramine +16.9548485,CHEBI:1582,http://purl.obolibrary.org/obo/CHEBI_1582,3-methoxytyramine +16.9548485,CHEBI:15936,http://purl.obolibrary.org/obo/CHEBI_15936,aldehydo-D-xylose +16.9548485,CHEBI:15966,http://purl.obolibrary.org/obo/CHEBI_15966,D-glutamic acid +16.9548485,CHEBI:15971,http://purl.obolibrary.org/obo/CHEBI_15971,L-histidine +16.9548485,CHEBI:15978,http://purl.obolibrary.org/obo/CHEBI_15978,sn-glycerol 3-phosphate +16.9548485,CHEBI:16010,http://purl.obolibrary.org/obo/CHEBI_16010,5-oxoproline +16.9548485,CHEBI:16051,http://purl.obolibrary.org/obo/CHEBI_16051,poly(ribitol phosphate) +16.9548485,CHEBI:16079,http://purl.obolibrary.org/obo/CHEBI_16079,benzyl 2-methyl-3-oxobutanoate +16.9548485,CHEBI:16092,http://purl.obolibrary.org/obo/CHEBI_16092,isoquinoline +16.9548485,CHEBI:16094,http://purl.obolibrary.org/obo/CHEBI_16094,thiosulfate(2-) +16.9548485,CHEBI:16096,http://purl.obolibrary.org/obo/CHEBI_16096,palmatine +16.9548485,CHEBI:16101,http://purl.obolibrary.org/obo/CHEBI_16101,ethylbenzene +16.9548485,CHEBI:16118,http://purl.obolibrary.org/obo/CHEBI_16118,berberine +16.9548485,CHEBI:16135,http://purl.obolibrary.org/obo/CHEBI_16135,isobutyric acid +16.9548485,CHEBI:16168,http://purl.obolibrary.org/obo/CHEBI_16168,6-hydroxynicotinic acid +16.9548485,CHEBI:16193,http://purl.obolibrary.org/obo/CHEBI_16193,3-hydroxybenzoate +16.9548485,CHEBI:16260,http://purl.obolibrary.org/obo/CHEBI_16260,2-nitrophenol +16.9548485,CHEBI:16301,http://purl.obolibrary.org/obo/CHEBI_16301,nitrite +16.9548485,CHEBI:16310,http://purl.obolibrary.org/obo/CHEBI_16310,sulcatone +16.9548485,CHEBI:16313,http://purl.obolibrary.org/obo/CHEBI_16313,D-proline +16.9548485,CHEBI:16366,http://purl.obolibrary.org/obo/CHEBI_16366,anthocyanidin cation +16.9548485,CHEBI:16375,http://purl.obolibrary.org/obo/CHEBI_16375,D-cysteine +16.9548485,CHEBI:16410,http://purl.obolibrary.org/obo/CHEBI_16410,pyridoxamine +16.9548485,CHEBI:16510,http://purl.obolibrary.org/obo/CHEBI_16510,3-hydroxypropionate +16.9548485,CHEBI:16521,http://purl.obolibrary.org/obo/CHEBI_16521,lanosterol +16.9548485,CHEBI:16548,http://purl.obolibrary.org/obo/CHEBI_16548,chlordecone +16.9548485,CHEBI:16558,http://purl.obolibrary.org/obo/CHEBI_16558,triacetic acid +16.9548485,CHEBI:16563,http://purl.obolibrary.org/obo/CHEBI_16563,tetrahydropalmatine +16.9548485,CHEBI:16566,http://purl.obolibrary.org/obo/CHEBI_16566,sphinganine +16.9548485,CHEBI:16595,http://purl.obolibrary.org/obo/CHEBI_16595,"1D-myo-inositol 1,4,5-trisphosphate" +16.9548485,CHEBI:16613,http://purl.obolibrary.org/obo/CHEBI_16613,glutathionylspermidine +16.9548485,CHEBI:16628,http://purl.obolibrary.org/obo/CHEBI_16628,methylguanidine +16.9548485,CHEBI:16698,http://purl.obolibrary.org/obo/CHEBI_16698,cyanamide +16.9548485,CHEBI:16796,http://purl.obolibrary.org/obo/CHEBI_16796,melatonin +16.9548485,CHEBI:16797,http://purl.obolibrary.org/obo/CHEBI_16797,1-methylnicotinamide +16.9548485,CHEBI:16814,http://purl.obolibrary.org/obo/CHEBI_16814,dehydroepiandrosterone sulfate +16.9548485,CHEBI:16891,http://purl.obolibrary.org/obo/CHEBI_16891,glyoxylic acid +16.9548485,CHEBI:16899,http://purl.obolibrary.org/obo/CHEBI_16899,D-mannitol +16.9548485,CHEBI:16958,http://purl.obolibrary.org/obo/CHEBI_16958,beta-alanine +16.9548485,CHEBI:16966,http://purl.obolibrary.org/obo/CHEBI_16966,heteroglycan +16.9548485,CHEBI:16969,http://purl.obolibrary.org/obo/CHEBI_16969,tRNA queuine +16.9548485,CHEBI:16973,http://purl.obolibrary.org/obo/CHEBI_16973,11-deoxycorticosterone +16.9548485,CHEBI:16998,http://purl.obolibrary.org/obo/CHEBI_16998,D-phenylalanine +16.9548485,CHEBI:17015,http://purl.obolibrary.org/obo/CHEBI_17015,riboflavin +16.9548485,CHEBI:17053,http://purl.obolibrary.org/obo/CHEBI_17053,L-aspartic acid +16.9548485,CHEBI:17064,http://purl.obolibrary.org/obo/CHEBI_17064,4-nitroaniline +16.9548485,CHEBI:17071,http://purl.obolibrary.org/obo/CHEBI_17071,glycolaldehyde +16.9548485,CHEBI:17098,http://purl.obolibrary.org/obo/CHEBI_17098,veratraldehyde +16.9548485,CHEBI:17101,http://purl.obolibrary.org/obo/CHEBI_17101,macarpine +16.9548485,CHEBI:17134,http://purl.obolibrary.org/obo/CHEBI_17134,octopamine +16.9548485,CHEBI:17135,http://purl.obolibrary.org/obo/CHEBI_17135,long-chain fatty alcohol +16.9548485,CHEBI:17151,http://purl.obolibrary.org/obo/CHEBI_17151,xylitol +16.9548485,CHEBI:17179,http://purl.obolibrary.org/obo/CHEBI_17179,taurolithocholate +16.9548485,CHEBI:17183,http://purl.obolibrary.org/obo/CHEBI_17183,sanguinarine +16.9548485,CHEBI:17189,http://purl.obolibrary.org/obo/CHEBI_17189,"2,5-dihydroxybenzoic acid" +16.9548485,CHEBI:17196,http://purl.obolibrary.org/obo/CHEBI_17196,L-asparagine +16.9548485,CHEBI:17217,http://purl.obolibrary.org/obo/CHEBI_17217,2-butenoic acid +16.9548485,CHEBI:17254,http://purl.obolibrary.org/obo/CHEBI_17254,4-methylcatechol +16.9548485,CHEBI:17268,http://purl.obolibrary.org/obo/CHEBI_17268,myo-inositol +16.9548485,CHEBI:17297,http://purl.obolibrary.org/obo/CHEBI_17297,UDP-sugar +16.9548485,CHEBI:17301,http://purl.obolibrary.org/obo/CHEBI_17301,glucaric acid +16.9548485,CHEBI:17303,http://purl.obolibrary.org/obo/CHEBI_17303,morphine +16.9548485,CHEBI:17306,http://purl.obolibrary.org/obo/CHEBI_17306,maltose +16.9548485,CHEBI:17347,http://purl.obolibrary.org/obo/CHEBI_17347,testosterone +16.9548485,CHEBI:17364,http://purl.obolibrary.org/obo/CHEBI_17364,D-aspartic acid +16.9548485,CHEBI:17368,http://purl.obolibrary.org/obo/CHEBI_17368,hypoxanthine +16.9548485,CHEBI:17378,http://purl.obolibrary.org/obo/CHEBI_17378,D-glyceraldehyde +16.9548485,CHEBI:17464,http://purl.obolibrary.org/obo/CHEBI_17464,"L-galactono-1,4-lactone" +16.9548485,CHEBI:17480,http://purl.obolibrary.org/obo/CHEBI_17480,5-oxoprolyl-peptide +16.9548485,CHEBI:17548,http://purl.obolibrary.org/obo/CHEBI_17548,alginic acid +16.9548485,CHEBI:17591,http://purl.obolibrary.org/obo/CHEBI_17591,tRNA containing 5-methylcytosine +16.9548485,CHEBI:17593,http://purl.obolibrary.org/obo/CHEBI_17593,maltooligosaccharide +16.9548485,CHEBI:17600,http://purl.obolibrary.org/obo/CHEBI_17600,hexadecanal +16.9548485,CHEBI:17642,http://purl.obolibrary.org/obo/CHEBI_17642,pentachlorophenol +16.9548485,CHEBI:17659,http://purl.obolibrary.org/obo/CHEBI_17659,UDP +16.9548485,CHEBI:176838,http://purl.obolibrary.org/obo/CHEBI_176838,vitamin B2 +16.9548485,CHEBI:176843,http://purl.obolibrary.org/obo/CHEBI_176843,vitamin B12 +16.9548485,CHEBI:17687,http://purl.obolibrary.org/obo/CHEBI_17687,glycocholic acid +16.9548485,CHEBI:17716,http://purl.obolibrary.org/obo/CHEBI_17716,lactose +16.9548485,CHEBI:17724,http://purl.obolibrary.org/obo/CHEBI_17724,"N,N-dimethylglycine" +16.9548485,CHEBI:17741,http://purl.obolibrary.org/obo/CHEBI_17741,"N,N-dimethylformamide" +16.9548485,CHEBI:17815,http://purl.obolibrary.org/obo/CHEBI_17815,"1,2-diacyl-sn-glycerol" +16.9548485,CHEBI:17823,http://purl.obolibrary.org/obo/CHEBI_17823,calcitriol +16.9548485,CHEBI:17826,http://purl.obolibrary.org/obo/CHEBI_17826,methylarsonous acid +16.9548485,CHEBI:17847,http://purl.obolibrary.org/obo/CHEBI_17847,p-cresol +16.9548485,CHEBI:17859,http://purl.obolibrary.org/obo/CHEBI_17859,glutaric acid +16.9548485,CHEBI:17879,http://purl.obolibrary.org/obo/CHEBI_17879,4-hydroxybenzoate +16.9548485,CHEBI:17883,http://purl.obolibrary.org/obo/CHEBI_17883,hydrogen chloride +16.9548485,CHEBI:17967,http://purl.obolibrary.org/obo/CHEBI_17967,urethane +16.9548485,CHEBI:17968,http://purl.obolibrary.org/obo/CHEBI_17968,butyrate +16.9548485,CHEBI:18000,http://purl.obolibrary.org/obo/CHEBI_18000,aralkylamine +16.9548485,CHEBI:18066,http://purl.obolibrary.org/obo/CHEBI_18066,UDP-D-glucose +16.9548485,CHEBI:18075,http://purl.obolibrary.org/obo/CHEBI_18075,dTDP +16.9548485,CHEBI:18077,http://purl.obolibrary.org/obo/CHEBI_18077,dTTP +16.9548485,CHEBI:18083,http://purl.obolibrary.org/obo/CHEBI_18083,1-methyladenine +16.9548485,CHEBI:18087,http://purl.obolibrary.org/obo/CHEBI_18087,myo-inositol polyphosphate +16.9548485,CHEBI:18099,http://purl.obolibrary.org/obo/CHEBI_18099,cyclohexanol +16.9548485,CHEBI:18101,http://purl.obolibrary.org/obo/CHEBI_18101,4-hydroxyphenylacetic acid +16.9548485,CHEBI:18107,http://purl.obolibrary.org/obo/CHEBI_18107,xanthosine +16.9548485,CHEBI:18152,http://purl.obolibrary.org/obo/CHEBI_18152,myricetin +16.9548485,CHEBI:18222,http://purl.obolibrary.org/obo/CHEBI_18222,xylose +16.9548485,CHEBI:18230,http://purl.obolibrary.org/obo/CHEBI_18230,chlorophyll a +16.9548485,CHEBI:18258,http://purl.obolibrary.org/obo/CHEBI_18258,"3,3',5-triiodo-L-thyronine" +16.9548485,CHEBI:18280,http://purl.obolibrary.org/obo/CHEBI_18280,phenylglyoxylic acid +16.9548485,CHEBI:18287,http://purl.obolibrary.org/obo/CHEBI_18287,L-fucose +16.9548485,CHEBI:18315,http://purl.obolibrary.org/obo/CHEBI_18315,pyrroloquinoline quinone +16.9548485,CHEBI:18346,http://purl.obolibrary.org/obo/CHEBI_18346,vanillin +16.9548485,CHEBI:18347,http://purl.obolibrary.org/obo/CHEBI_18347,L-norleucine +16.9548485,CHEBI:18353,http://purl.obolibrary.org/obo/CHEBI_18353,vanillyl alcohol +16.9548485,CHEBI:18375,http://purl.obolibrary.org/obo/CHEBI_18375,"nucleoside 3',5'-cyclic phosphate" +16.9548485,CHEBI:18386,http://purl.obolibrary.org/obo/CHEBI_18386,quinaldic acid +16.9548485,CHEBI:18388,http://purl.obolibrary.org/obo/CHEBI_18388,apigenin +16.9548485,CHEBI:18397,http://purl.obolibrary.org/obo/CHEBI_18397,2-phenylethylamine +16.9548485,CHEBI:18420,http://purl.obolibrary.org/obo/CHEBI_18420,magnesium(2+) +16.9548485,CHEBI:18946,http://purl.obolibrary.org/obo/CHEBI_18946,delta-lactone +16.9548485,CHEBI:190358,http://purl.obolibrary.org/obo/CHEBI_190358,azobenzene +16.9548485,CHEBI:1909,http://purl.obolibrary.org/obo/CHEBI_1909,4-Nitroanilide +16.9548485,CHEBI:19168,http://purl.obolibrary.org/obo/CHEBI_19168,17-oxo steroid +16.9548485,CHEBI:19391,http://purl.obolibrary.org/obo/CHEBI_19391,"2,6-dibromophenol" +16.9548485,CHEBI:19452,http://purl.obolibrary.org/obo/CHEBI_19452,"2-amino-4,6-dinitrotoluene" +16.9548485,CHEBI:19573,http://purl.obolibrary.org/obo/CHEBI_19573,2-enoyl-CoA +16.9548485,CHEBI:19702,http://purl.obolibrary.org/obo/CHEBI_19702,N(2)-methylguanosine +16.9548485,CHEBI:19763,http://purl.obolibrary.org/obo/CHEBI_19763,2-phosphoglycolate +16.9548485,CHEBI:19834,http://purl.obolibrary.org/obo/CHEBI_19834,"3',5'-cyclic purine nucleotide" +16.9548485,CHEBI:19904,http://purl.obolibrary.org/obo/CHEBI_19904,"3,5-dichloroaniline" +16.9548485,CHEBI:2030,http://purl.obolibrary.org/obo/CHEBI_2030,5-aminoimidazole-4-carboxamide +16.9548485,CHEBI:203600,http://purl.obolibrary.org/obo/CHEBI_203600,"1D-myo-inositol 1,4,5-trisphosphate(6-)" +16.9548485,CHEBI:20485,http://purl.obolibrary.org/obo/CHEBI_20485,4-pyridones +16.9548485,CHEBI:20568,http://purl.obolibrary.org/obo/CHEBI_20568,5-deoxyribose phosphate +16.9548485,CHEBI:2086,http://purl.obolibrary.org/obo/CHEBI_2086,"5-methoxy-N,N-dimethyltryptamine" +16.9548485,CHEBI:21077,http://purl.obolibrary.org/obo/CHEBI_21077,D-ribonic acid +16.9548485,CHEBI:21167,http://purl.obolibrary.org/obo/CHEBI_21167,GDP-hexose +16.9548485,CHEBI:21168,http://purl.obolibrary.org/obo/CHEBI_21168,GDP-mannose +16.9548485,CHEBI:21169,http://purl.obolibrary.org/obo/CHEBI_21169,GDP-sugar +16.9548485,CHEBI:21650,http://purl.obolibrary.org/obo/CHEBI_21650,N-acyl-L-glutamic acid +16.9548485,CHEBI:21658,http://purl.obolibrary.org/obo/CHEBI_21658,N-acylglutamic acid +16.9548485,CHEBI:21663,http://purl.obolibrary.org/obo/CHEBI_21663,N-acylneuraminates +16.9548485,CHEBI:21858,http://purl.obolibrary.org/obo/CHEBI_21858,hypusine +16.9548485,CHEBI:22078,http://purl.obolibrary.org/obo/CHEBI_22078,Se-oxide +16.9548485,CHEBI:22191,http://purl.obolibrary.org/obo/CHEBI_22191,acetyl phosphate(2-) +16.9548485,CHEBI:22211,http://purl.obolibrary.org/obo/CHEBI_22211,aconitic acid +16.9548485,CHEBI:22271,http://purl.obolibrary.org/obo/CHEBI_22271,aflatoxin +16.9548485,CHEBI:22302,http://purl.obolibrary.org/obo/CHEBI_22302,aldonolactone +16.9548485,CHEBI:22359,http://purl.obolibrary.org/obo/CHEBI_22359,alloisoleucine +16.9548485,CHEBI:22475,http://purl.obolibrary.org/obo/CHEBI_22475,amino acid amide +16.9548485,CHEBI:22476,http://purl.obolibrary.org/obo/CHEBI_22476,amino acid derivative antibiotics +16.9548485,CHEBI:22482,http://purl.obolibrary.org/obo/CHEBI_22482,amino-nitrotoluene +16.9548485,CHEBI:22492,http://purl.obolibrary.org/obo/CHEBI_22492,amino aldehyde +16.9548485,CHEBI:22494,http://purl.obolibrary.org/obo/CHEBI_22494,aminobenzoate +16.9548485,CHEBI:22512,http://purl.obolibrary.org/obo/CHEBI_22512,aminoimidazole +16.9548485,CHEBI:22532,http://purl.obolibrary.org/obo/CHEBI_22532,aminouracil +16.9548485,CHEBI:2260,http://purl.obolibrary.org/obo/CHEBI_2260,7-deoxyloganic acid +16.9548485,CHEBI:22644,http://purl.obolibrary.org/obo/CHEBI_22644,arylalkylamine +16.9548485,CHEBI:22651,http://purl.obolibrary.org/obo/CHEBI_22651,ascorbate +16.9548485,CHEBI:2268,http://purl.obolibrary.org/obo/CHEBI_2268,7-hydroxyflavone +16.9548485,CHEBI:22908,http://purl.obolibrary.org/obo/CHEBI_22908,borate +16.9548485,CHEBI:22909,http://purl.obolibrary.org/obo/CHEBI_22909,borate ion +16.9548485,CHEBI:22910,http://purl.obolibrary.org/obo/CHEBI_22910,borates +16.9548485,CHEBI:22926,http://purl.obolibrary.org/obo/CHEBI_22926,bromohydrocarbon +16.9548485,CHEBI:22951,http://purl.obolibrary.org/obo/CHEBI_22951,butanone +16.9548485,CHEBI:23044,http://purl.obolibrary.org/obo/CHEBI_23044,carotenoid +16.9548485,CHEBI:23045,http://purl.obolibrary.org/obo/CHEBI_23045,carotenol +16.9548485,CHEBI:23086,http://purl.obolibrary.org/obo/CHEBI_23086,chalcones +16.9548485,CHEBI:23134,http://purl.obolibrary.org/obo/CHEBI_23134,chlorobenzoic acid +16.9548485,CHEBI:23169,http://purl.obolibrary.org/obo/CHEBI_23169,cholate salt +16.9548485,CHEBI:231935,http://purl.obolibrary.org/obo/CHEBI_231935,glycerol 1-phosphate(2-) +16.9548485,CHEBI:23238,http://purl.obolibrary.org/obo/CHEBI_23238,chromones +16.9548485,CHEBI:23239,http://purl.obolibrary.org/obo/CHEBI_23239,chromopeptide +16.9548485,CHEBI:23253,http://purl.obolibrary.org/obo/CHEBI_23253,cinnamoyl-CoAs +16.9548485,CHEBI:23315,http://purl.obolibrary.org/obo/CHEBI_23315,citraconoyl group +16.9548485,CHEBI:23333,http://purl.obolibrary.org/obo/CHEBI_23333,cob(III)alamins +16.9548485,CHEBI:23334,http://purl.obolibrary.org/obo/CHEBI_23334,cobalamins +16.9548485,CHEBI:23341,http://purl.obolibrary.org/obo/CHEBI_23341,cobamides +16.9548485,CHEBI:23390,http://purl.obolibrary.org/obo/CHEBI_23390,cobalt-corrinoid hexaamide +16.9548485,CHEBI:23414,http://purl.obolibrary.org/obo/CHEBI_23414,copper(II) sulfate +16.9548485,CHEBI:23497,http://purl.obolibrary.org/obo/CHEBI_23497,cyclopentenyl fatty acid +16.9548485,CHEBI:23500,http://purl.obolibrary.org/obo/CHEBI_23500,cyclopropanecarboxylic acid +16.9548485,CHEBI:23529,http://purl.obolibrary.org/obo/CHEBI_23529,cytochrome-b6f complex inhibitor +16.9548485,CHEBI:23614,http://purl.obolibrary.org/obo/CHEBI_23614,deoxycholate +16.9548485,CHEBI:23622,http://purl.obolibrary.org/obo/CHEBI_23622,deoxygalactose +16.9548485,CHEBI:23696,http://purl.obolibrary.org/obo/CHEBI_23696,dichloroaniline +16.9548485,CHEBI:23796,http://purl.obolibrary.org/obo/CHEBI_23796,diiodotyrosine +16.9548485,CHEBI:23837,http://purl.obolibrary.org/obo/CHEBI_23837,diphenic acid +16.9548485,CHEBI:23853,http://purl.obolibrary.org/obo/CHEBI_23853,dithiol +16.9548485,CHEBI:23866,http://purl.obolibrary.org/obo/CHEBI_23866,dodecanols +16.9548485,CHEBI:23867,http://purl.obolibrary.org/obo/CHEBI_23867,dodecenoic acid +16.9548485,CHEBI:23871,http://purl.obolibrary.org/obo/CHEBI_23871,dodecyl palmitate +16.9548485,CHEBI:23929,http://purl.obolibrary.org/obo/CHEBI_23929,episterol +16.9548485,CHEBI:23994,http://purl.obolibrary.org/obo/CHEBI_23994,ethyl methanesulfonate +16.9548485,CHEBI:23995,http://purl.obolibrary.org/obo/CHEBI_23995,N-ethyl-N-nitrosourea +16.9548485,CHEBI:23996,http://purl.obolibrary.org/obo/CHEBI_23996,ethyl sulfide +16.9548485,CHEBI:24071,http://purl.obolibrary.org/obo/CHEBI_24071,fluorobenzoic acid +16.9548485,CHEBI:24103,http://purl.obolibrary.org/obo/CHEBI_24103,fructosamine +16.9548485,CHEBI:24150,http://purl.obolibrary.org/obo/CHEBI_24150,galactonolactone +16.9548485,CHEBI:24151,http://purl.obolibrary.org/obo/CHEBI_24151,galactooligosaccharide +16.9548485,CHEBI:24163,http://purl.obolibrary.org/obo/CHEBI_24163,galactoside +16.9548485,CHEBI:2417,http://purl.obolibrary.org/obo/CHEBI_2417,acetylcholine chloride +16.9548485,CHEBI:24195,http://purl.obolibrary.org/obo/CHEBI_24195,gamma-glutamylcysteine +16.9548485,CHEBI:24268,http://purl.obolibrary.org/obo/CHEBI_24268,glucooligosaccharide +16.9548485,CHEBI:24279,http://purl.obolibrary.org/obo/CHEBI_24279,glucosinolate +16.9548485,CHEBI:24297,http://purl.obolibrary.org/obo/CHEBI_24297,glucuronate +16.9548485,CHEBI:24302,http://purl.obolibrary.org/obo/CHEBI_24302,glucosiduronic acid +16.9548485,CHEBI:24323,http://purl.obolibrary.org/obo/CHEBI_24323,glutamyl-L-amino acid +16.9548485,CHEBI:24401,http://purl.obolibrary.org/obo/CHEBI_24401,glycosinolate +16.9548485,CHEBI:24499,http://purl.obolibrary.org/obo/CHEBI_24499,heparan sulfate proteoglycan +16.9548485,CHEBI:24500,http://purl.obolibrary.org/obo/CHEBI_24500,heparan +16.9548485,CHEBI:24523,http://purl.obolibrary.org/obo/CHEBI_24523,heptenone +16.9548485,CHEBI:24555,http://purl.obolibrary.org/obo/CHEBI_24555,hexadienoic acid +16.9548485,CHEBI:24561,http://purl.obolibrary.org/obo/CHEBI_24561,hexahydroxyflavone +16.9548485,CHEBI:24573,http://purl.obolibrary.org/obo/CHEBI_24573,hexanone +16.9548485,CHEBI:24577,http://purl.obolibrary.org/obo/CHEBI_24577,hexaric acid +16.9548485,CHEBI:24591,http://purl.obolibrary.org/obo/CHEBI_24591,hexuronate +16.9548485,CHEBI:24628,http://purl.obolibrary.org/obo/CHEBI_24628,"imidazolidine-2,4-dione" +16.9548485,CHEBI:24668,http://purl.obolibrary.org/obo/CHEBI_24668,hydroxyacetophenone +16.9548485,CHEBI:24793,http://purl.obolibrary.org/obo/CHEBI_24793,indoledione +16.9548485,CHEBI:24853,http://purl.obolibrary.org/obo/CHEBI_24853,intercalator +16.9548485,CHEBI:24865,http://purl.obolibrary.org/obo/CHEBI_24865,iodotyrosine +16.9548485,CHEBI:24923,http://purl.obolibrary.org/obo/CHEBI_24923,isoquinolinol +16.9548485,CHEBI:24961,http://purl.obolibrary.org/obo/CHEBI_24961,ketoaldonate +16.9548485,CHEBI:24983,http://purl.obolibrary.org/obo/CHEBI_24983,ketoxime +16.9548485,CHEBI:25029,http://purl.obolibrary.org/obo/CHEBI_25029,leukotriene +16.9548485,CHEBI:25036,http://purl.obolibrary.org/obo/CHEBI_25036,lignan +16.9548485,CHEBI:25040,http://purl.obolibrary.org/obo/CHEBI_25040,limonene monoterpenoid +16.9548485,CHEBI:25111,http://purl.obolibrary.org/obo/CHEBI_25111,magnesium porphyrin +16.9548485,CHEBI:25223,http://purl.obolibrary.org/obo/CHEBI_25223,methanesulfonate ester +16.9548485,CHEBI:25240,http://purl.obolibrary.org/obo/CHEBI_25240,methoxyflavanone +16.9548485,CHEBI:25253,http://purl.obolibrary.org/obo/CHEBI_25253,methyl halides +16.9548485,CHEBI:25256,http://purl.obolibrary.org/obo/CHEBI_25256,methyl phosphate +16.9548485,CHEBI:25275,http://purl.obolibrary.org/obo/CHEBI_25275,methylaniline +16.9548485,CHEBI:25280,http://purl.obolibrary.org/obo/CHEBI_25280,methylbenzoic acid +16.9548485,CHEBI:25289,http://purl.obolibrary.org/obo/CHEBI_25289,methylcatechol +16.9548485,CHEBI:25299,http://purl.obolibrary.org/obo/CHEBI_25299,methyl glucoside +16.9548485,CHEBI:25302,http://purl.obolibrary.org/obo/CHEBI_25302,methyl glycoside +16.9548485,CHEBI:25347,http://purl.obolibrary.org/obo/CHEBI_25347,methyluridine +16.9548485,CHEBI:25381,http://purl.obolibrary.org/obo/CHEBI_25381,monoalkyl phosphate +16.9548485,CHEBI:25432,http://purl.obolibrary.org/obo/CHEBI_25432,muramic acids +16.9548485,CHEBI:25434,http://purl.obolibrary.org/obo/CHEBI_25434,bis(2-chloroethyl) sulfide +16.9548485,CHEBI:25448,http://purl.obolibrary.org/obo/CHEBI_25448,myo-inositol phosphate +16.9548485,CHEBI:25450,http://purl.obolibrary.org/obo/CHEBI_25450,myo-inositol trisphosphate +16.9548485,CHEBI:25468,http://purl.obolibrary.org/obo/CHEBI_25468,naphthaldehydes +16.9548485,CHEBI:25483,http://purl.obolibrary.org/obo/CHEBI_25483,naphthoic acid +16.9548485,CHEBI:2550,http://purl.obolibrary.org/obo/CHEBI_2550,albuterol sulfate +16.9548485,CHEBI:25505,http://purl.obolibrary.org/obo/CHEBI_25505,neuraminate +16.9548485,CHEBI:25534,http://purl.obolibrary.org/obo/CHEBI_25534,nicotinic acid nucleotide +16.9548485,CHEBI:25550,http://purl.obolibrary.org/obo/CHEBI_25550,nitroaniline +16.9548485,CHEBI:25622,http://purl.obolibrary.org/obo/CHEBI_25622,orthoquinones +16.9548485,CHEBI:25657,http://purl.obolibrary.org/obo/CHEBI_25657,octyl group +16.9548485,CHEBI:25708,http://purl.obolibrary.org/obo/CHEBI_25708,organophosphate insecticide +16.9548485,CHEBI:25711,http://purl.obolibrary.org/obo/CHEBI_25711,organophosphorus insecticide +16.9548485,CHEBI:25716,http://purl.obolibrary.org/obo/CHEBI_25716,organothiophosphorus compound +16.9548485,CHEBI:25717,http://purl.obolibrary.org/obo/CHEBI_25717,organotin compound +16.9548485,CHEBI:2573,http://purl.obolibrary.org/obo/CHEBI_2573,Aliphatic hydroxy acid +16.9548485,CHEBI:25750,http://purl.obolibrary.org/obo/CHEBI_25750,oxime +16.9548485,CHEBI:25751,http://purl.obolibrary.org/obo/CHEBI_25751,oxindole-3-acetic acid +16.9548485,CHEBI:25789,http://purl.obolibrary.org/obo/CHEBI_25789,hexenedioic acid +16.9548485,CHEBI:25798,http://purl.obolibrary.org/obo/CHEBI_25798,oxopentanoates +16.9548485,CHEBI:25801,http://purl.obolibrary.org/obo/CHEBI_25801,oxoproline +16.9548485,CHEBI:25899,http://purl.obolibrary.org/obo/CHEBI_25899,pentitol +16.9548485,CHEBI:25935,http://purl.obolibrary.org/obo/CHEBI_25935,hydroperoxyl +16.9548485,CHEBI:25942,http://purl.obolibrary.org/obo/CHEBI_25942,peroxynitrous acid +16.9548485,CHEBI:25973,http://purl.obolibrary.org/obo/CHEBI_25973,phenylacetaldehydes +16.9548485,CHEBI:26066,http://purl.obolibrary.org/obo/CHEBI_26066,phosphonate +16.9548485,CHEBI:26095,http://purl.obolibrary.org/obo/CHEBI_26095,phthaloyl group +16.9548485,CHEBI:26117,http://purl.obolibrary.org/obo/CHEBI_26117,phytodienoic acid +16.9548485,CHEBI:2612,http://purl.obolibrary.org/obo/CHEBI_2612,alstonine +16.9548485,CHEBI:26145,http://purl.obolibrary.org/obo/CHEBI_26145,piperideine +16.9548485,CHEBI:26172,http://purl.obolibrary.org/obo/CHEBI_26172,poly(ribitol phosphate)s +16.9548485,CHEBI:26199,http://purl.obolibrary.org/obo/CHEBI_26199,polyprenol +16.9548485,CHEBI:262350,http://purl.obolibrary.org/obo/CHEBI_262350,4-nitrobenzoic acid +16.9548485,CHEBI:26244,http://purl.obolibrary.org/obo/CHEBI_26244,prenols +16.9548485,CHEBI:26288,http://purl.obolibrary.org/obo/CHEBI_26288,propanediol +16.9548485,CHEBI:2636,http://purl.obolibrary.org/obo/CHEBI_2636,amifostine +16.9548485,CHEBI:26414,http://purl.obolibrary.org/obo/CHEBI_26414,pyridazinone +16.9548485,CHEBI:26461,http://purl.obolibrary.org/obo/CHEBI_26461,pyrroloquinoline cofactor +16.9548485,CHEBI:26515,http://purl.obolibrary.org/obo/CHEBI_26515,quinolizidine alkaloid +16.9548485,CHEBI:26516,http://purl.obolibrary.org/obo/CHEBI_26516,quinolizidines +16.9548485,CHEBI:26548,http://purl.obolibrary.org/obo/CHEBI_26548,rhamnosylglucoside +16.9548485,CHEBI:26587,http://purl.obolibrary.org/obo/CHEBI_26587,rutinoside +16.9548485,CHEBI:2663,http://purl.obolibrary.org/obo/CHEBI_2663,amiodarone +16.9548485,CHEBI:26632,http://purl.obolibrary.org/obo/CHEBI_26632,selenocysteines +16.9548485,CHEBI:26643,http://purl.obolibrary.org/obo/CHEBI_26643,aldehydic acid +16.9548485,CHEBI:26675,http://purl.obolibrary.org/obo/CHEBI_26675,silicic acid +16.9548485,CHEBI:26711,http://purl.obolibrary.org/obo/CHEBI_26711,sodium cholate +16.9548485,CHEBI:26767,http://purl.obolibrary.org/obo/CHEBI_26767,steroid alkaloid +16.9548485,CHEBI:26825,http://purl.obolibrary.org/obo/CHEBI_26825,sulfobenzoic acid +16.9548485,CHEBI:26833,http://purl.obolibrary.org/obo/CHEBI_26833,sulfur atom +16.9548485,CHEBI:26888,http://purl.obolibrary.org/obo/CHEBI_26888,tetrachlorobenzene +16.9548485,CHEBI:26893,http://purl.obolibrary.org/obo/CHEBI_26893,tetracyclic triterpenoid +16.9548485,CHEBI:26935,http://purl.obolibrary.org/obo/CHEBI_26935,tetraterpenoid +16.9548485,CHEBI:26945,http://purl.obolibrary.org/obo/CHEBI_26945,thiamine phosphate +16.9548485,CHEBI:26952,http://purl.obolibrary.org/obo/CHEBI_26952,thioacetic acid +16.9548485,CHEBI:26977,http://purl.obolibrary.org/obo/CHEBI_26977,thiosulfate +16.9548485,CHEBI:26978,http://purl.obolibrary.org/obo/CHEBI_26978,thiouridine +16.9548485,CHEBI:26995,http://purl.obolibrary.org/obo/CHEBI_26995,thromboxane +16.9548485,CHEBI:2705,http://purl.obolibrary.org/obo/CHEBI_2705,Anatabine +16.9548485,CHEBI:27096,http://purl.obolibrary.org/obo/CHEBI_27096,trichlorobenzene +16.9548485,CHEBI:27102,http://purl.obolibrary.org/obo/CHEBI_27102,trichlorophenol +16.9548485,CHEBI:27122,http://purl.obolibrary.org/obo/CHEBI_27122,trimetaphosphate +16.9548485,CHEBI:27131,http://purl.obolibrary.org/obo/CHEBI_27131,trimethylarsine oxide +16.9548485,CHEBI:2718,http://purl.obolibrary.org/obo/CHEBI_2718,angiotensin I +16.9548485,CHEBI:27193,http://purl.obolibrary.org/obo/CHEBI_27193,undecaprenyl phosphate +16.9548485,CHEBI:27248,http://purl.obolibrary.org/obo/CHEBI_27248,urocanic acid +16.9548485,CHEBI:27267,http://purl.obolibrary.org/obo/CHEBI_27267,valine derivative +16.9548485,CHEBI:27325,http://purl.obolibrary.org/obo/CHEBI_27325,xanthophyll +16.9548485,CHEBI:2735,http://purl.obolibrary.org/obo/CHEBI_2735,Anisodamine +16.9548485,CHEBI:27376,http://purl.obolibrary.org/obo/CHEBI_27376,methanesulfonic acid +16.9548485,CHEBI:27417,http://purl.obolibrary.org/obo/CHEBI_27417,p-xylene +16.9548485,CHEBI:27471,http://purl.obolibrary.org/obo/CHEBI_27471,glycodeoxycholic acid +16.9548485,CHEBI:27532,http://purl.obolibrary.org/obo/CHEBI_27532,L-cysteine thioether +16.9548485,CHEBI:27539,http://purl.obolibrary.org/obo/CHEBI_27539,isatin +16.9548485,CHEBI:27543,http://purl.obolibrary.org/obo/CHEBI_27543,9H-carbazole +16.9548485,CHEBI:27560,http://purl.obolibrary.org/obo/CHEBI_27560,boron atom +16.9548485,CHEBI:27666,http://purl.obolibrary.org/obo/CHEBI_27666,actinomycin D +16.9548485,CHEBI:27676,http://purl.obolibrary.org/obo/CHEBI_27676,L-histidinal +16.9548485,CHEBI:27698,http://purl.obolibrary.org/obo/CHEBI_27698,vanadium atom +16.9548485,CHEBI:27741,http://purl.obolibrary.org/obo/CHEBI_27741,3'-hydroxyflavonoid +16.9548485,CHEBI:27744,http://purl.obolibrary.org/obo/CHEBI_27744,glyphosate +16.9548485,CHEBI:27754,http://purl.obolibrary.org/obo/CHEBI_27754,methacrylyl-CoA +16.9548485,CHEBI:27827,http://purl.obolibrary.org/obo/CHEBI_27827,paraoxon +16.9548485,CHEBI:27836,http://purl.obolibrary.org/obo/CHEBI_27836,dodecanal +16.9548485,CHEBI:27837,http://purl.obolibrary.org/obo/CHEBI_27837,2-cyanopyridine +16.9548485,CHEBI:27869,http://purl.obolibrary.org/obo/CHEBI_27869,chloroacetic acid +16.9548485,CHEBI:27870,http://purl.obolibrary.org/obo/CHEBI_27870,biocytin +16.9548485,CHEBI:2788,http://purl.obolibrary.org/obo/CHEBI_2788,apraclonidine +16.9548485,CHEBI:2790,http://purl.obolibrary.org/obo/CHEBI_2790,apramycin +16.9548485,CHEBI:27916,http://purl.obolibrary.org/obo/CHEBI_27916,2'-hydroxychalcone +16.9548485,CHEBI:27929,http://purl.obolibrary.org/obo/CHEBI_27929,"2,5-dichlorophenol" +16.9548485,CHEBI:27957,http://purl.obolibrary.org/obo/CHEBI_27957,hydroxyacetone +16.9548485,CHEBI:27978,http://purl.obolibrary.org/obo/CHEBI_27978,"3,4-dihydroxyphenylacetaldehyde" +16.9548485,CHEBI:27997,http://purl.obolibrary.org/obo/CHEBI_27997,elaidic acid +16.9548485,CHEBI:28037,http://purl.obolibrary.org/obo/CHEBI_28037,N-acetyl-D-galactosamine +16.9548485,CHEBI:28054,http://purl.obolibrary.org/obo/CHEBI_28054,o-cresol +16.9548485,CHEBI:28105,http://purl.obolibrary.org/obo/CHEBI_28105,4-chlorobenzaldehyde +16.9548485,CHEBI:28115,http://purl.obolibrary.org/obo/CHEBI_28115,methylcobalamin +16.9548485,CHEBI:2814,http://purl.obolibrary.org/obo/CHEBI_2814,arecoline +16.9548485,CHEBI:28172,http://purl.obolibrary.org/obo/CHEBI_28172,harmaline +16.9548485,CHEBI:28225,http://purl.obolibrary.org/obo/CHEBI_28225,D-leucine +16.9548485,CHEBI:28241,http://purl.obolibrary.org/obo/CHEBI_28241,papaverine +16.9548485,CHEBI:28295,http://purl.obolibrary.org/obo/CHEBI_28295,2-deoxystreptamine +16.9548485,CHEBI:28328,http://purl.obolibrary.org/obo/CHEBI_28328,D-galactosamine +16.9548485,CHEBI:28340,http://purl.obolibrary.org/obo/CHEBI_28340,L-2-aminobutyrate +16.9548485,CHEBI:28445,http://purl.obolibrary.org/obo/CHEBI_28445,vincristine +16.9548485,CHEBI:28484,http://purl.obolibrary.org/obo/CHEBI_28484,isovaleric acid +16.9548485,CHEBI:28568,http://purl.obolibrary.org/obo/CHEBI_28568,piperazine +16.9548485,CHEBI:28592,http://purl.obolibrary.org/obo/CHEBI_28592,ricinoleic acid +16.9548485,CHEBI:28631,http://purl.obolibrary.org/obo/CHEBI_28631,3-phenylpropionic acid +16.9548485,CHEBI:28655,http://purl.obolibrary.org/obo/CHEBI_28655,N-acetyl-D-galactosaminate +16.9548485,CHEBI:28661,http://purl.obolibrary.org/obo/CHEBI_28661,gamma-linolenic acid +16.9548485,CHEBI:28671,http://purl.obolibrary.org/obo/CHEBI_28671,cuminaldehyde +16.9548485,CHEBI:28685,http://purl.obolibrary.org/obo/CHEBI_28685,molybdenum atom +16.9548485,CHEBI:28747,http://purl.obolibrary.org/obo/CHEBI_28747,picolinic acid +16.9548485,CHEBI:28755,http://purl.obolibrary.org/obo/CHEBI_28755,"2,4,6-trichlorophenol" +16.9548485,CHEBI:28774,http://purl.obolibrary.org/obo/CHEBI_28774,"3,3',5'-triiodothyronine" +16.9548485,CHEBI:28790,http://purl.obolibrary.org/obo/CHEBI_28790,serotonin +16.9548485,CHEBI:28794,http://purl.obolibrary.org/obo/CHEBI_28794,coumarin +16.9548485,CHEBI:28801,http://purl.obolibrary.org/obo/CHEBI_28801,stearolic acid +16.9548485,CHEBI:28815,http://purl.obolibrary.org/obo/CHEBI_28815,heparan sulfate +16.9548485,CHEBI:28817,http://purl.obolibrary.org/obo/CHEBI_28817,dodecane +16.9548485,CHEBI:28827,http://purl.obolibrary.org/obo/CHEBI_28827,sparteine +16.9548485,CHEBI:28830,http://purl.obolibrary.org/obo/CHEBI_28830,chlorambucil +16.9548485,CHEBI:28838,http://purl.obolibrary.org/obo/CHEBI_28838,lutein +16.9548485,CHEBI:28849,http://purl.obolibrary.org/obo/CHEBI_28849,naphthazarin +16.9548485,CHEBI:28850,http://purl.obolibrary.org/obo/CHEBI_28850,dUDP +16.9548485,CHEBI:28866,http://purl.obolibrary.org/obo/CHEBI_28866,tetracosanoic acid +16.9548485,CHEBI:28966,http://purl.obolibrary.org/obo/CHEBI_28966,chlorophyll +16.9548485,CHEBI:28969,http://purl.obolibrary.org/obo/CHEBI_28969,"N,N-dimethyltryptamine" +16.9548485,CHEBI:28971,http://purl.obolibrary.org/obo/CHEBI_28971,ampicillin +16.9548485,CHEBI:28973,http://purl.obolibrary.org/obo/CHEBI_28973,strychnine +16.9548485,CHEBI:28986,http://purl.obolibrary.org/obo/CHEBI_28986,anabasine +16.9548485,CHEBI:29005,http://purl.obolibrary.org/obo/CHEBI_29005,cyclohexane +16.9548485,CHEBI:29019,http://purl.obolibrary.org/obo/CHEBI_29019,nonanoic acid +16.9548485,CHEBI:29031,http://purl.obolibrary.org/obo/CHEBI_29031,phosphinic acid +16.9548485,CHEBI:29056,http://purl.obolibrary.org/obo/CHEBI_29056,lipid IVA +16.9548485,CHEBI:29063,http://purl.obolibrary.org/obo/CHEBI_29063,L-mimosine +16.9548485,CHEBI:29073,http://purl.obolibrary.org/obo/CHEBI_29073,L-ascorbic acid +16.9548485,CHEBI:2909,http://purl.obolibrary.org/obo/CHEBI_2909,atisine +16.9548485,CHEBI:29176,http://purl.obolibrary.org/obo/CHEBI_29176,tRNA(Gly) +16.9548485,CHEBI:29179,http://purl.obolibrary.org/obo/CHEBI_29179,tRNA(Ser) +16.9548485,CHEBI:29183,http://purl.obolibrary.org/obo/CHEBI_29183,tRNA(Val) +16.9548485,CHEBI:29184,http://purl.obolibrary.org/obo/CHEBI_29184,tRNA(Phe) +16.9548485,CHEBI:29202,http://purl.obolibrary.org/obo/CHEBI_29202,isocyanic acid +16.9548485,CHEBI:29205,http://purl.obolibrary.org/obo/CHEBI_29205,diphosphonic acid +16.9548485,CHEBI:29226,http://purl.obolibrary.org/obo/CHEBI_29226,iodate +16.9548485,CHEBI:29228,http://purl.obolibrary.org/obo/CHEBI_29228,hydrogen fluoride +16.9548485,CHEBI:29237,http://purl.obolibrary.org/obo/CHEBI_29237,deuterium atom +16.9548485,CHEBI:29241,http://purl.obolibrary.org/obo/CHEBI_29241,silicate(4-) +16.9548485,CHEBI:29260,http://purl.obolibrary.org/obo/CHEBI_29260,phosphinous acid +16.9548485,CHEBI:29262,http://purl.obolibrary.org/obo/CHEBI_29262,diphosphonate(2-) +16.9548485,CHEBI:29264,http://purl.obolibrary.org/obo/CHEBI_29264,tRNA(Sec) +16.9548485,CHEBI:29271,http://purl.obolibrary.org/obo/CHEBI_29271,peroxynitric acid +16.9548485,CHEBI:29342,http://purl.obolibrary.org/obo/CHEBI_29342,imino group +16.9548485,CHEBI:29358,http://purl.obolibrary.org/obo/CHEBI_29358,methylidene group +16.9548485,CHEBI:29368,http://purl.obolibrary.org/obo/CHEBI_29368,sulfamide +16.9548485,CHEBI:29377,http://purl.obolibrary.org/obo/CHEBI_29377,sodium carbonate +16.9548485,CHEBI:2948,http://purl.obolibrary.org/obo/CHEBI_2948,azathioprine +16.9548485,CHEBI:29548,http://purl.obolibrary.org/obo/CHEBI_29548,Streptomyces coelicolor calcium-dependent antibiotic CDA4b +16.9548485,CHEBI:29639,http://purl.obolibrary.org/obo/CHEBI_29639,N-(3-oxododecanoyl)homoserine lactone +16.9548485,CHEBI:29691,http://purl.obolibrary.org/obo/CHEBI_29691,Tetraphyllicine +16.9548485,CHEBI:29693,http://purl.obolibrary.org/obo/CHEBI_29693,thiostrepton +16.9548485,CHEBI:2979,http://purl.obolibrary.org/obo/CHEBI_2979,baicalein +16.9548485,CHEBI:29809,http://purl.obolibrary.org/obo/CHEBI_29809,cyanato group +16.9548485,CHEBI:29822,http://purl.obolibrary.org/obo/CHEBI_29822,sulfinyl group +16.9548485,CHEBI:29851,http://purl.obolibrary.org/obo/CHEBI_29851,phenylarsonic acid +16.9548485,CHEBI:29852,http://purl.obolibrary.org/obo/CHEBI_29852,methylarsonic acid +16.9548485,CHEBI:29922,http://purl.obolibrary.org/obo/CHEBI_29922,sulfo group +16.9548485,CHEBI:29993,http://purl.obolibrary.org/obo/CHEBI_29993,L-aspartate(2-) +16.9548485,CHEBI:30021,http://purl.obolibrary.org/obo/CHEBI_30021,L-selenomethionine +16.9548485,CHEBI:30047,http://purl.obolibrary.org/obo/CHEBI_30047,vanadium dioxide +16.9548485,CHEBI:30065,http://purl.obolibrary.org/obo/CHEBI_30065,thioglycolic acid +16.9548485,CHEBI:30076,http://purl.obolibrary.org/obo/CHEBI_30076,gold trichloride +16.9548485,CHEBI:30146,http://purl.obolibrary.org/obo/CHEBI_30146,lithium hydride +16.9548485,CHEBI:30157,http://purl.obolibrary.org/obo/CHEBI_30157,borohydride +16.9548485,CHEBI:30217,http://purl.obolibrary.org/obo/CHEBI_30217,helium atom +16.9548485,CHEBI:30222,http://purl.obolibrary.org/obo/CHEBI_30222,neutron +16.9548485,CHEBI:30304,http://purl.obolibrary.org/obo/CHEBI_30304,antimony(0) +16.9548485,CHEBI:30356,http://purl.obolibrary.org/obo/CHEBI_30356,isobutyl group +16.9548485,CHEBI:30363,http://purl.obolibrary.org/obo/CHEBI_30363,isobutane +16.9548485,CHEBI:30364,http://purl.obolibrary.org/obo/CHEBI_30364,cyclopropyl group +16.9548485,CHEBI:30395,http://purl.obolibrary.org/obo/CHEBI_30395,acetylacetonate +16.9548485,CHEBI:30412,http://purl.obolibrary.org/obo/CHEBI_30412,monoatomic dication +16.9548485,CHEBI:30513,http://purl.obolibrary.org/obo/CHEBI_30513,antimony atom +16.9548485,CHEBI:30531,http://purl.obolibrary.org/obo/CHEBI_30531,pimelic acid +16.9548485,CHEBI:30566,http://purl.obolibrary.org/obo/CHEBI_30566,gamma-aminobutyrate +16.9548485,CHEBI:30588,http://purl.obolibrary.org/obo/CHEBI_30588,silicon monoxide +16.9548485,CHEBI:30622,http://purl.obolibrary.org/obo/CHEBI_30622,dipyridophenazine +16.9548485,CHEBI:30627,http://purl.obolibrary.org/obo/CHEBI_30627,molybdenum trioxide +16.9548485,CHEBI:3063,http://purl.obolibrary.org/obo/CHEBI_3063,Berbamine +16.9548485,CHEBI:30632,http://purl.obolibrary.org/obo/CHEBI_30632,loganic acid +16.9548485,CHEBI:30655,http://purl.obolibrary.org/obo/CHEBI_30655,L-homoserine lactone +16.9548485,CHEBI:30662,http://purl.obolibrary.org/obo/CHEBI_30662,L-thyronine +16.9548485,CHEBI:30740,http://purl.obolibrary.org/obo/CHEBI_30740,ethylene glycol bis(2-aminoethyl)tetraacetic acid +16.9548485,CHEBI:30741,http://purl.obolibrary.org/obo/CHEBI_30741,ethylene glycol bis(2-aminoethyl)tetraacetate +16.9548485,CHEBI:30762,http://purl.obolibrary.org/obo/CHEBI_30762,salicylate +16.9548485,CHEBI:30763,http://purl.obolibrary.org/obo/CHEBI_30763,4-hydroxybenzoic acid +16.9548485,CHEBI:30764,http://purl.obolibrary.org/obo/CHEBI_30764,3-hydroxybenzoic acid +16.9548485,CHEBI:30802,http://purl.obolibrary.org/obo/CHEBI_30802,isophthalic acid +16.9548485,CHEBI:30830,http://purl.obolibrary.org/obo/CHEBI_30830,4-hydroxybutyric acid +16.9548485,CHEBI:30832,http://purl.obolibrary.org/obo/CHEBI_30832,adipic acid +16.9548485,CHEBI:30845,http://purl.obolibrary.org/obo/CHEBI_30845,2-furoic acid +16.9548485,CHEBI:30913,http://purl.obolibrary.org/obo/CHEBI_30913,L-pipecolic acid +16.9548485,CHEBI:30954,http://purl.obolibrary.org/obo/CHEBI_30954,pyridazine +16.9548485,CHEBI:30959,http://purl.obolibrary.org/obo/CHEBI_30959,4-pyridoxate +16.9548485,CHEBI:309594,http://purl.obolibrary.org/obo/CHEBI_309594,oxybuprocaine +16.9548485,CHEBI:31009,http://purl.obolibrary.org/obo/CHEBI_31009,hexacosanoic acid +16.9548485,CHEBI:31225,http://purl.obolibrary.org/obo/CHEBI_31225,antipyrine +16.9548485,CHEBI:31249,http://purl.obolibrary.org/obo/CHEBI_31249,azulene +16.9548485,CHEBI:31266,http://purl.obolibrary.org/obo/CHEBI_31266,Benzydamine hydrochloride +16.9548485,CHEBI:31336,http://purl.obolibrary.org/obo/CHEBI_31336,calcium glycerophosphate +16.9548485,CHEBI:31344,http://purl.obolibrary.org/obo/CHEBI_31344,calcium oxide +16.9548485,CHEBI:31389,http://purl.obolibrary.org/obo/CHEBI_31389,chelidonine +16.9548485,CHEBI:31399,http://purl.obolibrary.org/obo/CHEBI_31399,cilnidipine +16.9548485,CHEBI:31403,http://purl.obolibrary.org/obo/CHEBI_31403,cinnarizine +16.9548485,CHEBI:31410,http://purl.obolibrary.org/obo/CHEBI_31410,clenbuterol hydrochloride +16.9548485,CHEBI:31501,http://purl.obolibrary.org/obo/CHEBI_31501,dimorpholamine +16.9548485,CHEBI:31512,http://purl.obolibrary.org/obo/CHEBI_31512,distigmine bromide +16.9548485,CHEBI:31527,http://purl.obolibrary.org/obo/CHEBI_31527,dydrogesterone +16.9548485,CHEBI:31654,http://purl.obolibrary.org/obo/CHEBI_31654,gliclazide +16.9548485,CHEBI:3168,http://purl.obolibrary.org/obo/CHEBI_3168,brassicasterol +16.9548485,CHEBI:31710,http://purl.obolibrary.org/obo/CHEBI_31710,iomeprol +16.9548485,CHEBI:31739,http://purl.obolibrary.org/obo/CHEBI_31739,josamycin +16.9548485,CHEBI:3175,http://purl.obolibrary.org/obo/CHEBI_3175,brimonidine +16.9548485,CHEBI:31811,http://purl.obolibrary.org/obo/CHEBI_31811,none +16.9548485,CHEBI:31836,http://purl.obolibrary.org/obo/CHEBI_31836,methylphenidate hydrochloride +16.9548485,CHEBI:31856,http://purl.obolibrary.org/obo/CHEBI_31856,mithramycin +16.9548485,CHEBI:31892,http://purl.obolibrary.org/obo/CHEBI_31892,naloxone hydrochloride +16.9548485,CHEBI:31941,http://purl.obolibrary.org/obo/CHEBI_31941,oxaliplatin +16.9548485,CHEBI:31953,http://purl.obolibrary.org/obo/CHEBI_31953,Oxytetracycline hydrochloride +16.9548485,CHEBI:3197,http://purl.obolibrary.org/obo/CHEBI_3197,Brusatol +16.9548485,CHEBI:31974,http://purl.obolibrary.org/obo/CHEBI_31974,Pentagastrin +16.9548485,CHEBI:32030,http://purl.obolibrary.org/obo/CHEBI_32030,potassium bromide +16.9548485,CHEBI:32076,http://purl.obolibrary.org/obo/CHEBI_32076,zinc pyrithione +16.9548485,CHEBI:3210,http://purl.obolibrary.org/obo/CHEBI_3210,bufotenin +16.9548485,CHEBI:32122,http://purl.obolibrary.org/obo/CHEBI_32122,Sarpogrelate hydrochloride +16.9548485,CHEBI:32127,http://purl.obolibrary.org/obo/CHEBI_32127,Sevelamer hydrochloride +16.9548485,CHEBI:32154,http://purl.obolibrary.org/obo/CHEBI_32154,octadecan-1-ol +16.9548485,CHEBI:32193,http://purl.obolibrary.org/obo/CHEBI_32193,Terguride +16.9548485,CHEBI:32220,http://purl.obolibrary.org/obo/CHEBI_32220,Tiapride hydrochloride +16.9548485,CHEBI:32243,http://purl.obolibrary.org/obo/CHEBI_32243,tolfenamic acid +16.9548485,CHEBI:32270,http://purl.obolibrary.org/obo/CHEBI_32270,trospium chloride +16.9548485,CHEBI:32297,http://purl.obolibrary.org/obo/CHEBI_32297,Vinpocetine +16.9548485,CHEBI:32325,http://purl.obolibrary.org/obo/CHEBI_32325,beta-ionone +16.9548485,CHEBI:32435,http://purl.obolibrary.org/obo/CHEBI_32435,D-alaninate +16.9548485,CHEBI:32450,http://purl.obolibrary.org/obo/CHEBI_32450,D-cysteinate(2-) +16.9548485,CHEBI:32494,http://purl.obolibrary.org/obo/CHEBI_32494,D-phenylalaninate +16.9548485,CHEBI:32511,http://purl.obolibrary.org/obo/CHEBI_32511,L-histidinate(2-) +16.9548485,CHEBI:32538,http://purl.obolibrary.org/obo/CHEBI_32538,bacillosamine +16.9548485,CHEBI:32547,http://purl.obolibrary.org/obo/CHEBI_32547,4-methylpyridine +16.9548485,CHEBI:32584,http://purl.obolibrary.org/obo/CHEBI_32584,calcium sulfate hemihydrate +16.9548485,CHEBI:32623,http://purl.obolibrary.org/obo/CHEBI_32623,D-leucinate +16.9548485,CHEBI:32650,http://purl.obolibrary.org/obo/CHEBI_32650,L-asparaginate +16.9548485,CHEBI:32735,http://purl.obolibrary.org/obo/CHEBI_32735,guanidinium chloride +16.9548485,CHEBI:32850,http://purl.obolibrary.org/obo/CHEBI_32850,"N,N,N',N'-tetramethylethylenediamine" +16.9548485,CHEBI:32867,http://purl.obolibrary.org/obo/CHEBI_32867,D-prolinate +16.9548485,CHEBI:32880,http://purl.obolibrary.org/obo/CHEBI_32880,pentan-2-yl group +16.9548485,CHEBI:32909,http://purl.obolibrary.org/obo/CHEBI_32909,pentadecyl group +16.9548485,CHEBI:32918,http://purl.obolibrary.org/obo/CHEBI_32918,1-naphthaleneacetic acid +16.9548485,CHEBI:32987,http://purl.obolibrary.org/obo/CHEBI_32987,kekulene +16.9548485,CHEBI:32999,http://purl.obolibrary.org/obo/CHEBI_32999,europium atom +16.9548485,CHEBI:33074,http://purl.obolibrary.org/obo/CHEBI_33074,pentalene +16.9548485,CHEBI:33093,http://purl.obolibrary.org/obo/CHEBI_33093,boron trifluoride +16.9548485,CHEBI:3310,http://purl.obolibrary.org/obo/CHEBI_3310,calcium acetate +16.9548485,CHEBI:33137,http://purl.obolibrary.org/obo/CHEBI_33137,imidazolidine +16.9548485,CHEBI:33202,http://purl.obolibrary.org/obo/CHEBI_33202,2-thiobarbituric acid +16.9548485,CHEBI:33271,http://purl.obolibrary.org/obo/CHEBI_33271,aldimine +16.9548485,CHEBI:33272,http://purl.obolibrary.org/obo/CHEBI_33272,ketimine +16.9548485,CHEBI:33289,http://purl.obolibrary.org/obo/CHEBI_33289,avicide +16.9548485,CHEBI:33307,http://purl.obolibrary.org/obo/CHEBI_33307,thiocarboxylic acid +16.9548485,CHEBI:33328,http://purl.obolibrary.org/obo/CHEBI_33328,silicon oxoacid +16.9548485,CHEBI:33333,http://purl.obolibrary.org/obo/CHEBI_33333,alkylidene group +16.9548485,CHEBI:33341,http://purl.obolibrary.org/obo/CHEBI_33341,titanium atom +16.9548485,CHEBI:33344,http://purl.obolibrary.org/obo/CHEBI_33344,niobium atom +16.9548485,CHEBI:33403,http://purl.obolibrary.org/obo/CHEBI_33403,elemental sulfur +16.9548485,CHEBI:33417,http://purl.obolibrary.org/obo/CHEBI_33417,diamond +16.9548485,CHEBI:33445,http://purl.obolibrary.org/obo/CHEBI_33445,iodine oxoanion +16.9548485,CHEBI:33473,http://purl.obolibrary.org/obo/CHEBI_33473,hydrocarbylidene group +16.9548485,CHEBI:33511,http://purl.obolibrary.org/obo/CHEBI_33511,ribonic acid +16.9548485,CHEBI:33549,http://purl.obolibrary.org/obo/CHEBI_33549,uronate +16.9548485,CHEBI:33557,http://purl.obolibrary.org/obo/CHEBI_33557,aminobenzenesulfonic acid +16.9548485,CHEBI:33569,http://purl.obolibrary.org/obo/CHEBI_33569,noradrenaline +16.9548485,CHEBI:33588,http://purl.obolibrary.org/obo/CHEBI_33588,boron hydride +16.9548485,CHEBI:33619,http://purl.obolibrary.org/obo/CHEBI_33619,boron oxoanion +16.9548485,CHEBI:33625,http://purl.obolibrary.org/obo/CHEBI_33625,dibromophenol +16.9548485,CHEBI:33642,http://purl.obolibrary.org/obo/CHEBI_33642,cyclic olefin +16.9548485,CHEBI:33643,http://purl.obolibrary.org/obo/CHEBI_33643,cycloalkene +16.9548485,CHEBI:33665,http://purl.obolibrary.org/obo/CHEBI_33665,aryne +16.9548485,CHEBI:33667,http://purl.obolibrary.org/obo/CHEBI_33667,benzyne +16.9548485,CHEBI:33706,http://purl.obolibrary.org/obo/CHEBI_33706,beta-amino acid +16.9548485,CHEBI:3371,http://purl.obolibrary.org/obo/CHEBI_3371,capreomycin +16.9548485,CHEBI:3374,http://purl.obolibrary.org/obo/CHEBI_3374,capsaicin +16.9548485,CHEBI:33753,http://purl.obolibrary.org/obo/CHEBI_33753,pentonic acid +16.9548485,CHEBI:33890,http://purl.obolibrary.org/obo/CHEBI_33890,cobalt coordination entity +16.9548485,CHEBI:33903,http://purl.obolibrary.org/obo/CHEBI_33903,glucuronates +16.9548485,CHEBI:33906,http://purl.obolibrary.org/obo/CHEBI_33906,cobalt corrinoid +16.9548485,CHEBI:3391,http://purl.obolibrary.org/obo/CHEBI_3391,carbazole +16.9548485,CHEBI:33913,http://purl.obolibrary.org/obo/CHEBI_33913,corrinoid +16.9548485,CHEBI:33963,http://purl.obolibrary.org/obo/CHEBI_33963,metallocene +16.9548485,CHEBI:33968,http://purl.obolibrary.org/obo/CHEBI_33968,silver salt +16.9548485,CHEBI:33976,http://purl.obolibrary.org/obo/CHEBI_33976,magnesium coordination entity +16.9548485,CHEBI:33984,http://purl.obolibrary.org/obo/CHEBI_33984,fucose +16.9548485,CHEBI:34043,http://purl.obolibrary.org/obo/CHEBI_34043,"1,2-phenylenediamine" +16.9548485,CHEBI:34264,http://purl.obolibrary.org/obo/CHEBI_34264,2-bromophenol +16.9548485,CHEBI:34334,http://purl.obolibrary.org/obo/CHEBI_34334,3-formylsalicylic acid +16.9548485,CHEBI:34401,http://purl.obolibrary.org/obo/CHEBI_34401,4-Chlorotoluene +16.9548485,CHEBI:34421,http://purl.obolibrary.org/obo/CHEBI_34421,4-Hydroxybenzophenone +16.9548485,CHEBI:34440,http://purl.obolibrary.org/obo/CHEBI_34440,4-nonylphenol +16.9548485,CHEBI:34457,http://purl.obolibrary.org/obo/CHEBI_34457,5-Nitro-2-(3-phenylpropylamino)benzoic acid +16.9548485,CHEBI:34523,http://purl.obolibrary.org/obo/CHEBI_34523,Acotiamide +16.9548485,CHEBI:34535,http://purl.obolibrary.org/obo/CHEBI_34535,ampicillin sodium +16.9548485,CHEBI:34569,http://purl.obolibrary.org/obo/CHEBI_34569,Benzo[k]fluoranthene +16.9548485,CHEBI:34573,http://purl.obolibrary.org/obo/CHEBI_34573,Bis(2-chloroethyl)ether +16.9548485,CHEBI:3469,http://purl.obolibrary.org/obo/CHEBI_3469,catharanthine +16.9548485,CHEBI:34694,http://purl.obolibrary.org/obo/CHEBI_34694,Dicyclohexylamine +16.9548485,CHEBI:34718,http://purl.obolibrary.org/obo/CHEBI_34718,"1-chloro-2,4-dinitrobenzene" +16.9548485,CHEBI:34727,http://purl.obolibrary.org/obo/CHEBI_34727,domoic acid +16.9548485,CHEBI:34786,http://purl.obolibrary.org/obo/CHEBI_34786,Heptachlor epoxide +16.9548485,CHEBI:34787,http://purl.obolibrary.org/obo/CHEBI_34787,heptanal +16.9548485,CHEBI:34823,http://purl.obolibrary.org/obo/CHEBI_34823,Linopirdine +16.9548485,CHEBI:34840,http://purl.obolibrary.org/obo/CHEBI_34840,methyl methacrylate +16.9548485,CHEBI:348530,http://purl.obolibrary.org/obo/CHEBI_348530,thiouracil +16.9548485,CHEBI:34856,http://purl.obolibrary.org/obo/CHEBI_34856,morpholine +16.9548485,CHEBI:34873,http://purl.obolibrary.org/obo/CHEBI_34873,N-nitrosodiethylamine +16.9548485,CHEBI:34888,http://purl.obolibrary.org/obo/CHEBI_34888,Niflumic acid +16.9548485,CHEBI:35038,http://purl.obolibrary.org/obo/CHEBI_35038,tris(2-butoxyethyl) phosphate +16.9548485,CHEBI:35085,http://purl.obolibrary.org/obo/CHEBI_35085,benzene-1-3-disulfonamide +16.9548485,CHEBI:35149,http://purl.obolibrary.org/obo/CHEBI_35149,magnesium hydroxide +16.9548485,CHEBI:35188,http://purl.obolibrary.org/obo/CHEBI_35188,hemiterpene +16.9548485,CHEBI:35194,http://purl.obolibrary.org/obo/CHEBI_35194,isoprene +16.9548485,CHEBI:35217,http://purl.obolibrary.org/obo/CHEBI_35217,alkaline earth coordination entity +16.9548485,CHEBI:35314,http://purl.obolibrary.org/obo/CHEBI_35314,glycosiduronic acid +16.9548485,CHEBI:35368,http://purl.obolibrary.org/obo/CHEBI_35368,hexasaccharide +16.9548485,CHEBI:35403,http://purl.obolibrary.org/obo/CHEBI_35403,chromium coordination entity +16.9548485,CHEBI:35405,http://purl.obolibrary.org/obo/CHEBI_35405,transition element oxoanion +16.9548485,CHEBI:35413,http://purl.obolibrary.org/obo/CHEBI_35413,methanediamine +16.9548485,CHEBI:35418,http://purl.obolibrary.org/obo/CHEBI_35418,N-acetylneuraminate +16.9548485,CHEBI:35446,http://purl.obolibrary.org/obo/CHEBI_35446,chlorobiphenyl +16.9548485,CHEBI:35449,http://purl.obolibrary.org/obo/CHEBI_35449,"1,3-phenylene group" +16.9548485,CHEBI:35450,http://purl.obolibrary.org/obo/CHEBI_35450,"1,4-phenylene group" +16.9548485,CHEBI:35508,http://purl.obolibrary.org/obo/CHEBI_35508,steroid fundamental parent +16.9548485,CHEBI:35516,http://purl.obolibrary.org/obo/CHEBI_35516,cholestane +16.9548485,CHEBI:35546,http://purl.obolibrary.org/obo/CHEBI_35546,perfluorodecanoic acid +16.9548485,CHEBI:35558,http://purl.obolibrary.org/obo/CHEBI_35558,2H-pyrrole +16.9548485,CHEBI:35592,http://purl.obolibrary.org/obo/CHEBI_35592,2H-pyran +16.9548485,CHEBI:35594,http://purl.obolibrary.org/obo/CHEBI_35594,pyran +16.9548485,CHEBI:35595,http://purl.obolibrary.org/obo/CHEBI_35595,isoxazole +16.9548485,CHEBI:35602,http://purl.obolibrary.org/obo/CHEBI_35602,chromene +16.9548485,CHEBI:35603,http://purl.obolibrary.org/obo/CHEBI_35603,4H-chromene +16.9548485,CHEBI:35629,http://purl.obolibrary.org/obo/CHEBI_35629,naphthylacetic acid +16.9548485,CHEBI:35662,http://purl.obolibrary.org/obo/CHEBI_35662,terpenoid fundamental parent +16.9548485,CHEBI:35676,http://purl.obolibrary.org/obo/CHEBI_35676,benzazepine +16.9548485,CHEBI:35689,http://purl.obolibrary.org/obo/CHEBI_35689,tetrazoles +16.9548485,CHEBI:35698,http://purl.obolibrary.org/obo/CHEBI_35698,cobalt salt +16.9548485,CHEBI:35737,http://purl.obolibrary.org/obo/CHEBI_35737,monothiocarboxylic acid +16.9548485,CHEBI:35738,http://purl.obolibrary.org/obo/CHEBI_35738,mycosporine-like amino acid +16.9548485,CHEBI:35744,http://purl.obolibrary.org/obo/CHEBI_35744,carbocyclic fatty acid +16.9548485,CHEBI:35777,http://purl.obolibrary.org/obo/CHEBI_35777,boron oxide +16.9548485,CHEBI:35843,http://purl.obolibrary.org/obo/CHEBI_35843,arsine oxides +16.9548485,CHEBI:35848,http://purl.obolibrary.org/obo/CHEBI_35848,alloisoleucine residue +16.9548485,CHEBI:35884,http://purl.obolibrary.org/obo/CHEBI_35884,primary phosphine +16.9548485,CHEBI:35887,http://purl.obolibrary.org/obo/CHEBI_35887,methylphosphine +16.9548485,CHEBI:35892,http://purl.obolibrary.org/obo/CHEBI_35892,phosphoranes +16.9548485,CHEBI:35897,http://purl.obolibrary.org/obo/CHEBI_35897,but-3-enoic acid +16.9548485,CHEBI:35962,http://purl.obolibrary.org/obo/CHEBI_35962,sorbic acid +16.9548485,CHEBI:35970,http://purl.obolibrary.org/obo/CHEBI_35970,4-hydroxy monocarboxylic acid +16.9548485,CHEBI:35998,http://purl.obolibrary.org/obo/CHEBI_35998,tridecane +16.9548485,CHEBI:36014,http://purl.obolibrary.org/obo/CHEBI_36014,chloromethane +16.9548485,CHEBI:36106,http://purl.obolibrary.org/obo/CHEBI_36106,2-naphthoic acid +16.9548485,CHEBI:36108,http://purl.obolibrary.org/obo/CHEBI_36108,1-hydroxy-2-naphthoic acid +16.9548485,CHEBI:36109,http://purl.obolibrary.org/obo/CHEBI_36109,piperidinecarboxylate +16.9548485,CHEBI:36235,http://purl.obolibrary.org/obo/CHEBI_36235,bile acid anion +16.9548485,CHEBI:36262,http://purl.obolibrary.org/obo/CHEBI_36262,molybdenum oxoanion +16.9548485,CHEBI:36264,http://purl.obolibrary.org/obo/CHEBI_36264,molybdate +16.9548485,CHEBI:36383,http://purl.obolibrary.org/obo/CHEBI_36383,strontium dichloride +16.9548485,CHEBI:36384,http://purl.obolibrary.org/obo/CHEBI_36384,strontium salt +16.9548485,CHEBI:3640,http://purl.obolibrary.org/obo/CHEBI_3640,chlorothiazide +16.9548485,CHEBI:36403,http://purl.obolibrary.org/obo/CHEBI_36403,monocyclic olefin +16.9548485,CHEBI:36405,http://purl.obolibrary.org/obo/CHEBI_36405,2-aminohexanoic acid +16.9548485,CHEBI:36419,http://purl.obolibrary.org/obo/CHEBI_36419,"4,7-phenanthroline" +16.9548485,CHEBI:3645,http://purl.obolibrary.org/obo/CHEBI_3645,Chlorpheniramine maleate +16.9548485,CHEBI:36539,http://purl.obolibrary.org/obo/CHEBI_36539,kaurane +16.9548485,CHEBI:3655,http://purl.obolibrary.org/obo/CHEBI_3655,chlorzoxazone +16.9548485,CHEBI:36557,http://purl.obolibrary.org/obo/CHEBI_36557,N-methylanthranilate +16.9548485,CHEBI:36595,http://purl.obolibrary.org/obo/CHEBI_36595,succinic anhydride +16.9548485,CHEBI:36628,http://purl.obolibrary.org/obo/CHEBI_36628,"1,8-naphthyridine" +16.9548485,CHEBI:36655,http://purl.obolibrary.org/obo/CHEBI_36655,glyoxylate +16.9548485,CHEBI:36686,http://purl.obolibrary.org/obo/CHEBI_36686,chloroarene +16.9548485,CHEBI:36721,http://purl.obolibrary.org/obo/CHEBI_36721,pentachlorobiphenyl +16.9548485,CHEBI:36786,http://purl.obolibrary.org/obo/CHEBI_36786,tetralins +16.9548485,CHEBI:36808,http://purl.obolibrary.org/obo/CHEBI_36808,duloxetine hydrochloride +16.9548485,CHEBI:36819,http://purl.obolibrary.org/obo/CHEBI_36819,seco-ergostane +16.9548485,CHEBI:36857,http://purl.obolibrary.org/obo/CHEBI_36857,2-hydroxy steroid +16.9548485,CHEBI:36919,http://purl.obolibrary.org/obo/CHEBI_36919,antimony molecular entity +16.9548485,CHEBI:36922,http://purl.obolibrary.org/obo/CHEBI_36922,elemental antimony +16.9548485,CHEBI:36928,http://purl.obolibrary.org/obo/CHEBI_36928,carbon-13 atom +16.9548485,CHEBI:36929,http://purl.obolibrary.org/obo/CHEBI_36929,carbon-11 atom +16.9548485,CHEBI:36940,http://purl.obolibrary.org/obo/CHEBI_36940,fluorine-19 atom +16.9548485,CHEBI:36982,http://purl.obolibrary.org/obo/CHEBI_36982,cyclic purine nucleotide +16.9548485,CHEBI:3699,http://purl.obolibrary.org/obo/CHEBI_3699,cimetidine +16.9548485,CHEBI:37001,http://purl.obolibrary.org/obo/CHEBI_37001,imidazolidin-2-one +16.9548485,CHEBI:37008,http://purl.obolibrary.org/obo/CHEBI_37008,nicotinic acid mononucleotide +16.9548485,CHEBI:3703,http://purl.obolibrary.org/obo/CHEBI_3703,cinchonidine +16.9548485,CHEBI:37131,http://purl.obolibrary.org/obo/CHEBI_37131,strontium molecular entity +16.9548485,CHEBI:37133,http://purl.obolibrary.org/obo/CHEBI_37133,barium molecular entity +16.9548485,CHEBI:37190,http://purl.obolibrary.org/obo/CHEBI_37190,silicon coordination entity +16.9548485,CHEBI:37191,http://purl.obolibrary.org/obo/CHEBI_37191,silicon oxoanion +16.9548485,CHEBI:37196,http://purl.obolibrary.org/obo/CHEBI_37196,bismuth molecular entity +16.9548485,CHEBI:37421,http://purl.obolibrary.org/obo/CHEBI_37421,carbohydrate lactone +16.9548485,CHEBI:37511,http://purl.obolibrary.org/obo/CHEBI_37511,thiophosphate +16.9548485,CHEBI:37512,http://purl.obolibrary.org/obo/CHEBI_37512,organic thiophosphate +16.9548485,CHEBI:37517,http://purl.obolibrary.org/obo/CHEBI_37517,benzocycloheptene +16.9548485,CHEBI:3753,http://purl.obolibrary.org/obo/CHEBI_3753,clomiphene citrate +16.9548485,CHEBI:37531,http://purl.obolibrary.org/obo/CHEBI_37531,polyprenyl diphosphate +16.9548485,CHEBI:37558,http://purl.obolibrary.org/obo/CHEBI_37558,aryl dialkyl phosphate +16.9548485,CHEBI:37568,http://purl.obolibrary.org/obo/CHEBI_37568,dTTP(4-) +16.9548485,CHEBI:37583,http://purl.obolibrary.org/obo/CHEBI_37583,trisodium phosphate +16.9548485,CHEBI:37588,http://purl.obolibrary.org/obo/CHEBI_37588,phosphonic acid derivative +16.9548485,CHEBI:37606,http://purl.obolibrary.org/obo/CHEBI_37606,octadecene +16.9548485,CHEBI:37628,http://purl.obolibrary.org/obo/CHEBI_37628,desmosine +16.9548485,CHEBI:37657,http://purl.obolibrary.org/obo/CHEBI_37657,methyl D-glucoside +16.9548485,CHEBI:37750,http://purl.obolibrary.org/obo/CHEBI_37750,chlorine oxide +16.9548485,CHEBI:37760,http://purl.obolibrary.org/obo/CHEBI_37760,alkali metal hydride +16.9548485,CHEBI:37764,http://purl.obolibrary.org/obo/CHEBI_37764,bromine oxide +16.9548485,CHEBI:37778,http://purl.obolibrary.org/obo/CHEBI_37778,cycloartane +16.9548485,CHEBI:37786,http://purl.obolibrary.org/obo/CHEBI_37786,acyclic phosphorus acid anhydride +16.9548485,CHEBI:37808,http://purl.obolibrary.org/obo/CHEBI_37808,butane +16.9548485,CHEBI:37827,http://purl.obolibrary.org/obo/CHEBI_37827,thiosulfuric acid derivative +16.9548485,CHEBI:37868,http://purl.obolibrary.org/obo/CHEBI_37868,octanol +16.9548485,CHEBI:37903,http://purl.obolibrary.org/obo/CHEBI_37903,lysyl group +16.9548485,CHEBI:37906,http://purl.obolibrary.org/obo/CHEBI_37906,histidyl group +16.9548485,CHEBI:37919,http://purl.obolibrary.org/obo/CHEBI_37919,aryl sulfate +16.9548485,CHEBI:37931,http://purl.obolibrary.org/obo/CHEBI_37931,10H-phenothiazine +16.9548485,CHEBI:37989,http://purl.obolibrary.org/obo/CHEBI_37989,Cy5 dye +16.9548485,CHEBI:38028,http://purl.obolibrary.org/obo/CHEBI_38028,cyanuric acid +16.9548485,CHEBI:38037,http://purl.obolibrary.org/obo/CHEBI_38037,methanesulfonate salt +16.9548485,CHEBI:38038,http://purl.obolibrary.org/obo/CHEBI_38038,sulfuric amide +16.9548485,CHEBI:38056,http://purl.obolibrary.org/obo/CHEBI_38056,triazine +16.9548485,CHEBI:38063,http://purl.obolibrary.org/obo/CHEBI_38063,quinolizines +16.9548485,CHEBI:38081,http://purl.obolibrary.org/obo/CHEBI_38081,dithiole +16.9548485,CHEBI:38091,http://purl.obolibrary.org/obo/CHEBI_38091,spirostanyl glycoside +16.9548485,CHEBI:38110,http://purl.obolibrary.org/obo/CHEBI_38110,acyl fluoride +16.9548485,CHEBI:38141,http://purl.obolibrary.org/obo/CHEBI_38141,dihydronaphthalene +16.9548485,CHEBI:38143,http://purl.obolibrary.org/obo/CHEBI_38143,"1,4-dihydronaphthalene" +16.9548485,CHEBI:38168,http://purl.obolibrary.org/obo/CHEBI_38168,"chloro-1,3,5-triazine" +16.9548485,CHEBI:38183,http://purl.obolibrary.org/obo/CHEBI_38183,pyridone +16.9548485,CHEBI:38198,http://purl.obolibrary.org/obo/CHEBI_38198,aminoalkylpyridine +16.9548485,CHEBI:38251,http://purl.obolibrary.org/obo/CHEBI_38251,magnesium tetrapyrrole +16.9548485,CHEBI:38290,http://purl.obolibrary.org/obo/CHEBI_38290,L-ascorbate +16.9548485,CHEBI:38291,http://purl.obolibrary.org/obo/CHEBI_38291,dihydrostreptomycin +16.9548485,CHEBI:3830,http://purl.obolibrary.org/obo/CHEBI_3830,camphene +16.9548485,CHEBI:38307,http://purl.obolibrary.org/obo/CHEBI_38307,imidazolyl carboxylic acid +16.9548485,CHEBI:38340,http://purl.obolibrary.org/obo/CHEBI_38340,hydroxypyrimidine +16.9548485,CHEBI:38371,http://purl.obolibrary.org/obo/CHEBI_38371,2-dodecenoic acid +16.9548485,CHEBI:38372,http://purl.obolibrary.org/obo/CHEBI_38372,cis-2-dodecenoic acid +16.9548485,CHEBI:38382,http://purl.obolibrary.org/obo/CHEBI_38382,"9,11,13-octadecatrienoic acid" +16.9548485,CHEBI:38387,http://purl.obolibrary.org/obo/CHEBI_38387,"9,11,15-octadecatrienoic acid" +16.9548485,CHEBI:38431,http://purl.obolibrary.org/obo/CHEBI_38431,"1,4-benzodiazepine" +16.9548485,CHEBI:38460,http://purl.obolibrary.org/obo/CHEBI_38460,methylindole +16.9548485,CHEBI:38525,http://purl.obolibrary.org/obo/CHEBI_38525,terpene alkaloid fundamental parent +16.9548485,CHEBI:38526,http://purl.obolibrary.org/obo/CHEBI_38526,quinolizidine alkaloid fundamental parent +16.9548485,CHEBI:38605,http://purl.obolibrary.org/obo/CHEBI_38605,phenethylamine alkaloid +16.9548485,CHEBI:38606,http://purl.obolibrary.org/obo/CHEBI_38606,cyclopentapyran +16.9548485,CHEBI:38653,http://purl.obolibrary.org/obo/CHEBI_38653,methylbutyric acid +16.9548485,CHEBI:38656,http://purl.obolibrary.org/obo/CHEBI_38656,organochlorine pesticide +16.9548485,CHEBI:38669,http://purl.obolibrary.org/obo/CHEBI_38669,pyrazolopyrimidine +16.9548485,CHEBI:38687,http://purl.obolibrary.org/obo/CHEBI_38687,monohydroxyflavone +16.9548485,CHEBI:38738,http://purl.obolibrary.org/obo/CHEBI_38738,monomethoxyflavanone +16.9548485,CHEBI:38748,http://purl.obolibrary.org/obo/CHEBI_38748,monohydroxyflavanone +16.9548485,CHEBI:38780,http://purl.obolibrary.org/obo/CHEBI_38780,N-nitro compound +16.9548485,CHEBI:38800,http://purl.obolibrary.org/obo/CHEBI_38800,benzenedicarboxamide +16.9548485,CHEBI:38817,http://purl.obolibrary.org/obo/CHEBI_38817,phthalimide +16.9548485,CHEBI:38826,http://purl.obolibrary.org/obo/CHEBI_38826,perfluorooctane +16.9548485,CHEBI:38830,http://purl.obolibrary.org/obo/CHEBI_38830,1-benzofurans +16.9548485,CHEBI:38879,http://purl.obolibrary.org/obo/CHEBI_38879,1-phenylpyrazole +16.9548485,CHEBI:38900,http://purl.obolibrary.org/obo/CHEBI_38900,boron halide +16.9548485,CHEBI:38901,http://purl.obolibrary.org/obo/CHEBI_38901,boron fluoride +16.9548485,CHEBI:38926,http://purl.obolibrary.org/obo/CHEBI_38926,dibenzooxepine +16.9548485,CHEBI:38959,http://purl.obolibrary.org/obo/CHEBI_38959,diphenyl sulfide +16.9548485,CHEBI:39093,http://purl.obolibrary.org/obo/CHEBI_39093,organophosphorus pesticide +16.9548485,CHEBI:39150,http://purl.obolibrary.org/obo/CHEBI_39150,4-oxopentanoate +16.9548485,CHEBI:39179,http://purl.obolibrary.org/obo/CHEBI_39179,nitroguanidine +16.9548485,CHEBI:39209,http://purl.obolibrary.org/obo/CHEBI_39209,macrolide insecticide +16.9548485,CHEBI:39213,http://purl.obolibrary.org/obo/CHEBI_39213,avermectin insecticide +16.9548485,CHEBI:39220,http://purl.obolibrary.org/obo/CHEBI_39220,avermectin pesticide +16.9548485,CHEBI:39221,http://purl.obolibrary.org/obo/CHEBI_39221,macrolide pesticide +16.9548485,CHEBI:39233,http://purl.obolibrary.org/obo/CHEBI_39233,emamectin benzoate +16.9548485,CHEBI:39268,http://purl.obolibrary.org/obo/CHEBI_39268,dibenzothiazepine +16.9548485,CHEBI:39307,http://purl.obolibrary.org/obo/CHEBI_39307,benzazocine +16.9548485,CHEBI:39311,http://purl.obolibrary.org/obo/CHEBI_39311,pymetrozine +16.9548485,CHEBI:39322,http://purl.obolibrary.org/obo/CHEBI_39322,"1,2,3,4-tetrazine" +16.9548485,CHEBI:39352,http://purl.obolibrary.org/obo/CHEBI_39352,dinitrophenol +16.9548485,CHEBI:39390,http://purl.obolibrary.org/obo/CHEBI_39390,felinine +16.9548485,CHEBI:39414,http://purl.obolibrary.org/obo/CHEBI_39414,benzilic acid +16.9548485,CHEBI:39427,http://purl.obolibrary.org/obo/CHEBI_39427,perfluorohexane +16.9548485,CHEBI:39430,http://purl.obolibrary.org/obo/CHEBI_39430,dioxolane +16.9548485,CHEBI:39439,http://purl.obolibrary.org/obo/CHEBI_39439,benzoquinone +16.9548485,CHEBI:39475,http://purl.obolibrary.org/obo/CHEBI_39475,pentamethyldiethylenetriamine +16.9548485,CHEBI:3962,http://purl.obolibrary.org/obo/CHEBI_3962,curcumin +16.9548485,CHEBI:39708,http://purl.obolibrary.org/obo/CHEBI_39708,8-anilinonaphthalene-1-sulfonic acid +16.9548485,CHEBI:3978,http://purl.obolibrary.org/obo/CHEBI_3978,cyanin +16.9548485,CHEBI:39912,http://purl.obolibrary.org/obo/CHEBI_39912,"3,5-dihydroxybenzoic acid" +16.9548485,CHEBI:39931,http://purl.obolibrary.org/obo/CHEBI_39931,3-nitrotoluene +16.9548485,CHEBI:39992,http://purl.obolibrary.org/obo/CHEBI_39992,3-methylcytosine +16.9548485,CHEBI:40448,http://purl.obolibrary.org/obo/CHEBI_40448,"9,10-anthraquinone" +16.9548485,CHEBI:4046,http://purl.obolibrary.org/obo/CHEBI_4046,cyproheptadine +16.9548485,CHEBI:40526,http://purl.obolibrary.org/obo/CHEBI_40526,9-methyladenine +16.9548485,CHEBI:4055,http://purl.obolibrary.org/obo/CHEBI_4055,cytisine +16.9548485,CHEBI:40572,http://purl.obolibrary.org/obo/CHEBI_40572,diethylene glycol monoethyl ether +16.9548485,CHEBI:40909,http://purl.obolibrary.org/obo/CHEBI_40909,azoxystrobin +16.9548485,CHEBI:41039,http://purl.obolibrary.org/obo/CHEBI_41039,benfotiamine +16.9548485,CHEBI:41131,http://purl.obolibrary.org/obo/CHEBI_41131,crotonic acid +16.9548485,CHEBI:412516,http://purl.obolibrary.org/obo/CHEBI_412516,5-hydroxymethylfurfural +16.9548485,CHEBI:41531,http://purl.obolibrary.org/obo/CHEBI_41531,methyl L-cysteinate +16.9548485,CHEBI:4167,http://purl.obolibrary.org/obo/CHEBI_4167,D-glucopyranose +16.9548485,CHEBI:41774,http://purl.obolibrary.org/obo/CHEBI_41774,tamoxifen +16.9548485,CHEBI:42017,http://purl.obolibrary.org/obo/CHEBI_42017,"2,4-dinitrophenol" +16.9548485,CHEBI:42638,http://purl.obolibrary.org/obo/CHEBI_42638,flufenamic acid +16.9548485,CHEBI:43098,http://purl.obolibrary.org/obo/CHEBI_43098,heptane +16.9548485,CHEBI:43355,http://purl.obolibrary.org/obo/CHEBI_43355,indoxyl sulfate +16.9548485,CHEBI:43732,http://purl.obolibrary.org/obo/CHEBI_43732,thiazole +16.9548485,CHEBI:44209,http://purl.obolibrary.org/obo/CHEBI_44209,methylamino group +16.9548485,CHEBI:44368,http://purl.obolibrary.org/obo/CHEBI_44368,nitrofurazone +16.9548485,CHEBI:44534,http://purl.obolibrary.org/obo/CHEBI_44534,N-(3-oxododecanoyl)-L-homoserine lactone +16.9548485,CHEBI:44730,http://purl.obolibrary.org/obo/CHEBI_44730,2-hydroxyethyl group +16.9548485,CHEBI:4489,http://purl.obolibrary.org/obo/CHEBI_4489,Diallyl sulfide +16.9548485,CHEBI:44926,http://purl.obolibrary.org/obo/CHEBI_44926,triethylene glycol +16.9548485,CHEBI:44932,http://purl.obolibrary.org/obo/CHEBI_44932,acepromazine +16.9548485,CHEBI:45129,http://purl.obolibrary.org/obo/CHEBI_45129,methylphosphonic acid +16.9548485,CHEBI:45296,http://purl.obolibrary.org/obo/CHEBI_45296,hexadecane +16.9548485,CHEBI:45304,http://purl.obolibrary.org/obo/CHEBI_45304,rifapentine +16.9548485,CHEBI:46020,http://purl.obolibrary.org/obo/CHEBI_46020,tetramethylammonium +16.9548485,CHEBI:46053,http://purl.obolibrary.org/obo/CHEBI_46053,"2,4,6-trinitrotoluene" +16.9548485,CHEBI:4614,http://purl.obolibrary.org/obo/CHEBI_4614,Dimethyl trisulfide +16.9548485,CHEBI:46195,http://purl.obolibrary.org/obo/CHEBI_46195,paracetamol +16.9548485,CHEBI:4630,http://purl.obolibrary.org/obo/CHEBI_4630,diosmetin +16.9548485,CHEBI:46548,http://purl.obolibrary.org/obo/CHEBI_46548,zardaverine +16.9548485,CHEBI:46642,http://purl.obolibrary.org/obo/CHEBI_46642,D-galactosaminate +16.9548485,CHEBI:46648,http://purl.obolibrary.org/obo/CHEBI_46648,nitrite salt +16.9548485,CHEBI:46756,http://purl.obolibrary.org/obo/CHEBI_46756,HEPES +16.9548485,CHEBI:46788,http://purl.obolibrary.org/obo/CHEBI_46788,2-ethoxyethanol +16.9548485,CHEBI:46819,http://purl.obolibrary.org/obo/CHEBI_46819,urate salt +16.9548485,CHEBI:46844,http://purl.obolibrary.org/obo/CHEBI_46844,N-acylpiperazine +16.9548485,CHEBI:46851,http://purl.obolibrary.org/obo/CHEBI_46851,N-(2-hydroxyethyl)piperazine +16.9548485,CHEBI:46852,http://purl.obolibrary.org/obo/CHEBI_46852,N-(sulfoalkyl)piperazine +16.9548485,CHEBI:46908,http://purl.obolibrary.org/obo/CHEBI_46908,imidazopyridine +16.9548485,CHEBI:46916,http://purl.obolibrary.org/obo/CHEBI_46916,vinyl acetate +16.9548485,CHEBI:46923,http://purl.obolibrary.org/obo/CHEBI_46923,dioxane +16.9548485,CHEBI:46926,http://purl.obolibrary.org/obo/CHEBI_46926,dioxanes +16.9548485,CHEBI:46931,http://purl.obolibrary.org/obo/CHEBI_46931,capsaicinoid +16.9548485,CHEBI:46940,http://purl.obolibrary.org/obo/CHEBI_46940,indanes +16.9548485,CHEBI:46944,http://purl.obolibrary.org/obo/CHEBI_46944,cyclobutenone +16.9548485,CHEBI:46968,http://purl.obolibrary.org/obo/CHEBI_46968,"2-aminooctadecane-1,3-diol" +16.9548485,CHEBI:46970,http://purl.obolibrary.org/obo/CHEBI_46970,phytosphingosine 1-phosphate +16.9548485,CHEBI:4698,http://purl.obolibrary.org/obo/CHEBI_4698,Dopamine hydrochloride +16.9548485,CHEBI:4702,http://purl.obolibrary.org/obo/CHEBI_4702,dorzolamide +16.9548485,CHEBI:47022,http://purl.obolibrary.org/obo/CHEBI_47022,tetrahydrofurandione +16.9548485,CHEBI:47026,http://purl.obolibrary.org/obo/CHEBI_47026,diselenide +16.9548485,CHEBI:47032,http://purl.obolibrary.org/obo/CHEBI_47032,"1,4-dioxane" +16.9548485,CHEBI:4708,http://purl.obolibrary.org/obo/CHEBI_4708,doxazosin +16.9548485,CHEBI:47083,http://purl.obolibrary.org/obo/CHEBI_47083,2-chlorophenol +16.9548485,CHEBI:4710,http://purl.obolibrary.org/obo/CHEBI_4710,doxepin +16.9548485,CHEBI:47381,http://purl.obolibrary.org/obo/CHEBI_47381,diclofenac +16.9548485,CHEBI:47426,http://purl.obolibrary.org/obo/CHEBI_47426,furosemide +16.9548485,CHEBI:4747,http://purl.obolibrary.org/obo/CHEBI_4747,Echinocystic acid +16.9548485,CHEBI:47776,http://purl.obolibrary.org/obo/CHEBI_47776,very-low-density lipoprotein triglyceride +16.9548485,CHEBI:47780,http://purl.obolibrary.org/obo/CHEBI_47780,clomipramine +16.9548485,CHEBI:47781,http://purl.obolibrary.org/obo/CHEBI_47781,desipramine +16.9548485,CHEBI:47787,http://purl.obolibrary.org/obo/CHEBI_47787,11-oxo steroid +16.9548485,CHEBI:4781,http://purl.obolibrary.org/obo/CHEBI_4781,emetine +16.9548485,CHEBI:47901,http://purl.obolibrary.org/obo/CHEBI_47901,alkanesulfonic acid +16.9548485,CHEBI:47910,http://purl.obolibrary.org/obo/CHEBI_47910,S-substituted L-cysteine +16.9548485,CHEBI:47965,http://purl.obolibrary.org/obo/CHEBI_47965,N-acetylmuramic acid +16.9548485,CHEBI:47985,http://purl.obolibrary.org/obo/CHEBI_47985,enol ether +16.9548485,CHEBI:48002,http://purl.obolibrary.org/obo/CHEBI_48002,ketene +16.9548485,CHEBI:48003,http://purl.obolibrary.org/obo/CHEBI_48003,ethenone +16.9548485,CHEBI:48004,http://purl.obolibrary.org/obo/CHEBI_48004,ketenimine +16.9548485,CHEBI:48057,http://purl.obolibrary.org/obo/CHEBI_48057,2-oxopropylidene group +16.9548485,CHEBI:480999,http://purl.obolibrary.org/obo/CHEBI_480999,vinorelbine +16.9548485,CHEBI:48123,http://purl.obolibrary.org/obo/CHEBI_48123,silicate ion +16.9548485,CHEBI:48129,http://purl.obolibrary.org/obo/CHEBI_48129,benzoisochromanequinone +16.9548485,CHEBI:48202,http://purl.obolibrary.org/obo/CHEBI_48202,nanaomycin A +16.9548485,CHEBI:48210,http://purl.obolibrary.org/obo/CHEBI_48210,cyclopentafurofurochromene +16.9548485,CHEBI:48233,http://purl.obolibrary.org/obo/CHEBI_48233,calcium peroxide +16.9548485,CHEBI:48235,http://purl.obolibrary.org/obo/CHEBI_48235,chromium oxide +16.9548485,CHEBI:4828,http://purl.obolibrary.org/obo/CHEBI_4828,ergothioneine +16.9548485,CHEBI:48359,http://purl.obolibrary.org/obo/CHEBI_48359,protophilic solvent +16.9548485,CHEBI:48391,http://purl.obolibrary.org/obo/CHEBI_48391,cinacalcet hydrochloride +16.9548485,CHEBI:48442,http://purl.obolibrary.org/obo/CHEBI_48442,"purine 2',3'-dideoxyribonucleoside" +16.9548485,CHEBI:48518,http://purl.obolibrary.org/obo/CHEBI_48518,3-isobutyl-1-methylxanthine +16.9548485,CHEBI:48535,http://purl.obolibrary.org/obo/CHEBI_48535,aryloxypyrimidine +16.9548485,CHEBI:48541,http://purl.obolibrary.org/obo/CHEBI_48541,4-methoxycinnamic acid +16.9548485,CHEBI:48551,http://purl.obolibrary.org/obo/CHEBI_48551,guanidino group +16.9548485,CHEBI:48594,http://purl.obolibrary.org/obo/CHEBI_48594,biindole +16.9548485,CHEBI:48597,http://purl.obolibrary.org/obo/CHEBI_48597,arsenate(2-) +16.9548485,CHEBI:4868,http://purl.obolibrary.org/obo/CHEBI_4868,estramustine +16.9548485,CHEBI:4878,http://purl.obolibrary.org/obo/CHEBI_4878,ethambutol dihydrochloride +16.9548485,CHEBI:48844,http://purl.obolibrary.org/obo/CHEBI_48844,roxithromycin +16.9548485,CHEBI:4885,http://purl.obolibrary.org/obo/CHEBI_4885,ethionamide +16.9548485,CHEBI:4887,http://purl.obolibrary.org/obo/CHEBI_4887,ethosuximide +16.9548485,CHEBI:48891,http://purl.obolibrary.org/obo/CHEBI_48891,thiazolidinone +16.9548485,CHEBI:48924,http://purl.obolibrary.org/obo/CHEBI_48924,erythromycin derivative +16.9548485,CHEBI:48927,http://purl.obolibrary.org/obo/CHEBI_48927,N-acyl-L-alpha-amino acid +16.9548485,CHEBI:48942,http://purl.obolibrary.org/obo/CHEBI_48942,isovalerate +16.9548485,CHEBI:48943,http://purl.obolibrary.org/obo/CHEBI_48943,isobutyraldehyde +16.9548485,CHEBI:48944,http://purl.obolibrary.org/obo/CHEBI_48944,isobutyrate +16.9548485,CHEBI:48982,http://purl.obolibrary.org/obo/CHEBI_48982,methylquinoline +16.9548485,CHEBI:4903,http://purl.obolibrary.org/obo/CHEBI_4903,17alpha-ethynylestradiol +16.9548485,CHEBI:490877,http://purl.obolibrary.org/obo/CHEBI_490877,didanosine +16.9548485,CHEBI:49095,http://purl.obolibrary.org/obo/CHEBI_49095,beta-amino-acid anion +16.9548485,CHEBI:49114,http://purl.obolibrary.org/obo/CHEBI_49114,pterin protein +16.9548485,CHEBI:49115,http://purl.obolibrary.org/obo/CHEBI_49115,pyranopterin protein +16.9548485,CHEBI:49116,http://purl.obolibrary.org/obo/CHEBI_49116,metal-bis(pyranopterin) protein +16.9548485,CHEBI:4912,http://purl.obolibrary.org/obo/CHEBI_4912,etorphine +16.9548485,CHEBI:49120,http://purl.obolibrary.org/obo/CHEBI_49120,formate dehydrogenase +16.9548485,CHEBI:49188,http://purl.obolibrary.org/obo/CHEBI_49188,2-methyl-branched fatty aldehyde +16.9548485,CHEBI:49193,http://purl.obolibrary.org/obo/CHEBI_49193,diterpene lactone +16.9548485,CHEBI:49324,http://purl.obolibrary.org/obo/CHEBI_49324,female contraceptive drug +16.9548485,CHEBI:49553,http://purl.obolibrary.org/obo/CHEBI_49553,copper(II) chloride +16.9548485,CHEBI:4964,http://purl.obolibrary.org/obo/CHEBI_4964,Factor X +16.9548485,CHEBI:49709,http://purl.obolibrary.org/obo/CHEBI_49709,chlorate +16.9548485,CHEBI:49798,http://purl.obolibrary.org/obo/CHEBI_49798,tetraethylenepentamine +16.9548485,CHEBI:50019,http://purl.obolibrary.org/obo/CHEBI_50019,phenylarsonous acid +16.9548485,CHEBI:50034,http://purl.obolibrary.org/obo/CHEBI_50034,phellandrene +16.9548485,CHEBI:50038,http://purl.obolibrary.org/obo/CHEBI_50038,deoxyhypusine +16.9548485,CHEBI:50073,http://purl.obolibrary.org/obo/CHEBI_50073,p-menthadiene +16.9548485,CHEBI:50122,http://purl.obolibrary.org/obo/CHEBI_50122,rosiglitazone +16.9548485,CHEBI:50133,http://purl.obolibrary.org/obo/CHEBI_50133,iron hydride +16.9548485,CHEBI:50160,http://purl.obolibrary.org/obo/CHEBI_50160,steroid acid anion +16.9548485,CHEBI:50193,http://purl.obolibrary.org/obo/CHEBI_50193,quinone imine +16.9548485,CHEBI:50241,http://purl.obolibrary.org/obo/CHEBI_50241,cholinesterase reactivator +16.9548485,CHEBI:50268,http://purl.obolibrary.org/obo/CHEBI_50268,GABA modulator +16.9548485,CHEBI:50270,http://purl.obolibrary.org/obo/CHEBI_50270,pantoprazole sodium +16.9548485,CHEBI:50293,http://purl.obolibrary.org/obo/CHEBI_50293,cadmium salt +16.9548485,CHEBI:5032,http://purl.obolibrary.org/obo/CHEBI_5032,ferrocyanide +16.9548485,CHEBI:50342,http://purl.obolibrary.org/obo/CHEBI_50342,L-proline residue +16.9548485,CHEBI:50343,http://purl.obolibrary.org/obo/CHEBI_50343,diazonium ion +16.9548485,CHEBI:50345,http://purl.obolibrary.org/obo/CHEBI_50345,milbemycin +16.9548485,CHEBI:50383,http://purl.obolibrary.org/obo/CHEBI_50383,nicotinamide mononucleotide +16.9548485,CHEBI:50398,http://purl.obolibrary.org/obo/CHEBI_50398,succinamic acid +16.9548485,CHEBI:50402,http://purl.obolibrary.org/obo/CHEBI_50402,androstanoid +16.9548485,CHEBI:50414,http://purl.obolibrary.org/obo/CHEBI_50414,methylpyridine +16.9548485,CHEBI:50441,http://purl.obolibrary.org/obo/CHEBI_50441,N-substituted diamine +16.9548485,CHEBI:50453,http://purl.obolibrary.org/obo/CHEBI_50453,desferrioxamine +16.9548485,CHEBI:50465,http://purl.obolibrary.org/obo/CHEBI_50465,2-decenoic acid +16.9548485,CHEBI:50503,http://purl.obolibrary.org/obo/CHEBI_50503,laxative +16.9548485,CHEBI:50504,http://purl.obolibrary.org/obo/CHEBI_50504,osmotic diuretic +16.9548485,CHEBI:50512,http://purl.obolibrary.org/obo/CHEBI_50512,lidocaine hydrochloride +16.9548485,CHEBI:50519,http://purl.obolibrary.org/obo/CHEBI_50519,sulfoacetic acid +16.9548485,CHEBI:50529,http://purl.obolibrary.org/obo/CHEBI_50529,pentaketide +16.9548485,CHEBI:50586,http://purl.obolibrary.org/obo/CHEBI_50586,9xi-episterol +16.9548485,CHEBI:5062,http://purl.obolibrary.org/obo/CHEBI_5062,finasteride +16.9548485,CHEBI:50631,http://purl.obolibrary.org/obo/CHEBI_50631,nitronaphthalene +16.9548485,CHEBI:50632,http://purl.obolibrary.org/obo/CHEBI_50632,mononitronaphthalene +16.9548485,CHEBI:50637,http://purl.obolibrary.org/obo/CHEBI_50637,2-nitronaphthalene +16.9548485,CHEBI:50646,http://purl.obolibrary.org/obo/CHEBI_50646,bone density conservation agent +16.9548485,CHEBI:50648,http://purl.obolibrary.org/obo/CHEBI_50648,9-cis-retinoic acid +16.9548485,CHEBI:50697,http://purl.obolibrary.org/obo/CHEBI_50697,minocycline hydrochloride +16.9548485,CHEBI:5070,http://purl.obolibrary.org/obo/CHEBI_5070,flavanone +16.9548485,CHEBI:50729,http://purl.obolibrary.org/obo/CHEBI_50729,mitoxantrone +16.9548485,CHEBI:5078,http://purl.obolibrary.org/obo/CHEBI_5078,flavonol +16.9548485,CHEBI:50808,http://purl.obolibrary.org/obo/CHEBI_50808,nitrogen-doped carbon nanotube +16.9548485,CHEBI:50820,http://purl.obolibrary.org/obo/CHEBI_50820,ferrous oxide +16.9548485,CHEBI:50838,http://purl.obolibrary.org/obo/CHEBI_50838,drospirenone +16.9548485,CHEBI:50872,http://purl.obolibrary.org/obo/CHEBI_50872,boron nitride nanotube +16.9548485,CHEBI:50887,http://purl.obolibrary.org/obo/CHEBI_50887,haloarene +16.9548485,CHEBI:50907,http://purl.obolibrary.org/obo/CHEBI_50907,deaminating agent +16.9548485,CHEBI:50918,http://purl.obolibrary.org/obo/CHEBI_50918,pyrroloquinoline +16.9548485,CHEBI:50985,http://purl.obolibrary.org/obo/CHEBI_50985,sodium borohydride +16.9548485,CHEBI:50986,http://purl.obolibrary.org/obo/CHEBI_50986,tetrahydroborate salt +16.9548485,CHEBI:50987,http://purl.obolibrary.org/obo/CHEBI_50987,metal tetrahydridoborate +16.9548485,CHEBI:51006,http://purl.obolibrary.org/obo/CHEBI_51006,unsaturated fatty acyl-CoA +16.9548485,CHEBI:5103,http://purl.obolibrary.org/obo/CHEBI_5103,flumazenil +16.9548485,CHEBI:51057,http://purl.obolibrary.org/obo/CHEBI_51057,3-phenylpropionate +16.9548485,CHEBI:51068,http://purl.obolibrary.org/obo/CHEBI_51068,miotic +16.9548485,CHEBI:51075,http://purl.obolibrary.org/obo/CHEBI_51075,sophorolipid +16.9548485,CHEBI:51094,http://purl.obolibrary.org/obo/CHEBI_51094,tosyl group +16.9548485,CHEBI:51110,http://purl.obolibrary.org/obo/CHEBI_51110,copper(II) sulfide +16.9548485,CHEBI:51130,http://purl.obolibrary.org/obo/CHEBI_51130,nitroolefin +16.9548485,CHEBI:51145,http://purl.obolibrary.org/obo/CHEBI_51145,secondary amino group +16.9548485,CHEBI:5115,http://purl.obolibrary.org/obo/CHEBI_5115,monofluorobenzene +16.9548485,CHEBI:51153,http://purl.obolibrary.org/obo/CHEBI_51153,phosphorus ylide +16.9548485,CHEBI:51154,http://purl.obolibrary.org/obo/CHEBI_51154,phosphonium ylide +16.9548485,CHEBI:51157,http://purl.obolibrary.org/obo/CHEBI_51157,brimonidine tartrate +16.9548485,CHEBI:51259,http://purl.obolibrary.org/obo/CHEBI_51259,"1,2,4-triazoline" +16.9548485,CHEBI:51260,http://purl.obolibrary.org/obo/CHEBI_51260,triazoline +16.9548485,CHEBI:51261,http://purl.obolibrary.org/obo/CHEBI_51261,triazolines +16.9548485,CHEBI:51268,http://purl.obolibrary.org/obo/CHEBI_51268,drying control chemical additive +16.9548485,CHEBI:51331,http://purl.obolibrary.org/obo/CHEBI_51331,molecular knot +16.9548485,CHEBI:5134,http://purl.obolibrary.org/obo/CHEBI_5134,fluticasone +16.9548485,CHEBI:51344,http://purl.obolibrary.org/obo/CHEBI_51344,benzathine +16.9548485,CHEBI:51380,http://purl.obolibrary.org/obo/CHEBI_51380,doxylamine +16.9548485,CHEBI:5139,http://purl.obolibrary.org/obo/CHEBI_5139,Fluvoxamine maleate +16.9548485,CHEBI:51461,http://purl.obolibrary.org/obo/CHEBI_51461,SYBR Green I +16.9548485,CHEBI:51517,http://purl.obolibrary.org/obo/CHEBI_51517,N-acylimine +16.9548485,CHEBI:51548,http://purl.obolibrary.org/obo/CHEBI_51548,"1,3-benzoxazoles" +16.9548485,CHEBI:5161,http://purl.obolibrary.org/obo/CHEBI_5161,none +16.9548485,CHEBI:51614,http://purl.obolibrary.org/obo/CHEBI_51614,diarylmethane +16.9548485,CHEBI:5162,http://purl.obolibrary.org/obo/CHEBI_5162,Fosfomycin tromethamine +16.9548485,CHEBI:51641,http://purl.obolibrary.org/obo/CHEBI_51641,2-pyridyl group +16.9548485,CHEBI:51704,http://purl.obolibrary.org/obo/CHEBI_51704,glyoxylates +16.9548485,CHEBI:517248,http://purl.obolibrary.org/obo/CHEBI_517248,bufalin +16.9548485,CHEBI:51803,http://purl.obolibrary.org/obo/CHEBI_51803,aminoacridines +16.9548485,CHEBI:51848,http://purl.obolibrary.org/obo/CHEBI_51848,alpha-ketoester +16.9548485,CHEBI:51849,http://purl.obolibrary.org/obo/CHEBI_51849,beta-ketoester +16.9548485,CHEBI:51850,http://purl.obolibrary.org/obo/CHEBI_51850,methyl pyruvate +16.9548485,CHEBI:51872,http://purl.obolibrary.org/obo/CHEBI_51872,sulfamidate +16.9548485,CHEBI:51914,http://purl.obolibrary.org/obo/CHEBI_51914,organic heterohexacyclic compound +16.9548485,CHEBI:51961,http://purl.obolibrary.org/obo/CHEBI_51961,sesquarterpenoid +16.9548485,CHEBI:5199,http://purl.obolibrary.org/obo/CHEBI_5199,Fusaric acid +16.9548485,CHEBI:51990,http://purl.obolibrary.org/obo/CHEBI_51990,tetrabutylammonium fluoride +16.9548485,CHEBI:51992,http://purl.obolibrary.org/obo/CHEBI_51992,tetrabutylammonium salt +16.9548485,CHEBI:520,http://purl.obolibrary.org/obo/CHEBI_520,"1,3-dicaffeoylquinic acid" +16.9548485,CHEBI:52003,http://purl.obolibrary.org/obo/CHEBI_52003,Cy5.5 dye +16.9548485,CHEBI:52007,http://purl.obolibrary.org/obo/CHEBI_52007,monodansylcadaverine +16.9548485,CHEBI:52077,http://purl.obolibrary.org/obo/CHEBI_52077,FM 1-43 dye +16.9548485,CHEBI:52092,http://purl.obolibrary.org/obo/CHEBI_52092,ethoxide +16.9548485,CHEBI:52093,http://purl.obolibrary.org/obo/CHEBI_52093,N-methylmorpholine N-oxide +16.9548485,CHEBI:52095,http://purl.obolibrary.org/obo/CHEBI_52095,morpholine N-oxide +16.9548485,CHEBI:52141,http://purl.obolibrary.org/obo/CHEBI_52141,squaric acid +16.9548485,CHEBI:52145,http://purl.obolibrary.org/obo/CHEBI_52145,pyrrolidinium ion +16.9548485,CHEBI:52250,http://purl.obolibrary.org/obo/CHEBI_52250,quinine sulfate +16.9548485,CHEBI:52254,http://purl.obolibrary.org/obo/CHEBI_52254,apatite +16.9548485,CHEBI:52257,http://purl.obolibrary.org/obo/CHEBI_52257,fluorapatite +16.9548485,CHEBI:52295,http://purl.obolibrary.org/obo/CHEBI_52295,thionine +16.9548485,CHEBI:52334,http://purl.obolibrary.org/obo/CHEBI_52334,rhodamine B +16.9548485,CHEBI:52357,http://purl.obolibrary.org/obo/CHEBI_52357,chlorine dioxide +16.9548485,CHEBI:52366,http://purl.obolibrary.org/obo/CHEBI_52366,naphthaldehyde +16.9548485,CHEBI:52368,http://purl.obolibrary.org/obo/CHEBI_52368,2-naphthaldehyde +16.9548485,CHEBI:52400,http://purl.obolibrary.org/obo/CHEBI_52400,2-methoxyacetophenone +16.9548485,CHEBI:52404,http://purl.obolibrary.org/obo/CHEBI_52404,quinomethanes +16.9548485,CHEBI:52405,http://purl.obolibrary.org/obo/CHEBI_52405,quinodimethane +16.9548485,CHEBI:52445,http://purl.obolibrary.org/obo/CHEBI_52445,tetracyanoquinodimethane +16.9548485,CHEBI:52479,http://purl.obolibrary.org/obo/CHEBI_52479,imidate +16.9548485,CHEBI:52492,http://purl.obolibrary.org/obo/CHEBI_52492,mancozeb +16.9548485,CHEBI:52512,http://purl.obolibrary.org/obo/CHEBI_52512,olivin +16.9548485,CHEBI:52513,http://purl.obolibrary.org/obo/CHEBI_52513,aureolic acid +16.9548485,CHEBI:52552,http://purl.obolibrary.org/obo/CHEBI_52552,cyclohexyl group +16.9548485,CHEBI:52555,http://purl.obolibrary.org/obo/CHEBI_52555,m-tolyl group +16.9548485,CHEBI:52618,http://purl.obolibrary.org/obo/CHEBI_52618,2-hydroxy carboxylic acid +16.9548485,CHEBI:52661,http://purl.obolibrary.org/obo/CHEBI_52661,Alexa Fluor 488 +16.9548485,CHEBI:5276,http://purl.obolibrary.org/obo/CHEBI_5276,Garcinol +16.9548485,CHEBI:52838,http://purl.obolibrary.org/obo/CHEBI_52838,benzothiazolium ion +16.9548485,CHEBI:52845,http://purl.obolibrary.org/obo/CHEBI_52845,cyclic organic group +16.9548485,CHEBI:52849,http://purl.obolibrary.org/obo/CHEBI_52849,organic heteromonocyclic ring +16.9548485,CHEBI:52853,http://purl.obolibrary.org/obo/CHEBI_52853,palladium nanoparticle +16.9548485,CHEBI:52861,http://purl.obolibrary.org/obo/CHEBI_52861,pyranine(3-) +16.9548485,CHEBI:52916,http://purl.obolibrary.org/obo/CHEBI_52916,phenylsulfonyl group +16.9548485,CHEBI:52938,http://purl.obolibrary.org/obo/CHEBI_52938,lactone ring +16.9548485,CHEBI:52991,http://purl.obolibrary.org/obo/CHEBI_52991,tin dioxide +16.9548485,CHEBI:53018,http://purl.obolibrary.org/obo/CHEBI_53018,"2,4-dinitrophenyl group" +16.9548485,CHEBI:53094,http://purl.obolibrary.org/obo/CHEBI_53094,imidazoline +16.9548485,CHEBI:53156,http://purl.obolibrary.org/obo/CHEBI_53156,polychlorobiphenyl +16.9548485,CHEBI:53174,http://purl.obolibrary.org/obo/CHEBI_53174,N-bromosuccinimide +16.9548485,CHEBI:53212,http://purl.obolibrary.org/obo/CHEBI_53212,isocyanates +16.9548485,CHEBI:53213,http://purl.obolibrary.org/obo/CHEBI_53213,diisocyanate +16.9548485,CHEBI:53227,http://purl.obolibrary.org/obo/CHEBI_53227,poly(ethylene) +16.9548485,CHEBI:53245,http://purl.obolibrary.org/obo/CHEBI_53245,poly(vinylpyridine) +16.9548485,CHEBI:53247,http://purl.obolibrary.org/obo/CHEBI_53247,poly(4-vinylpyridine) +16.9548485,CHEBI:53249,http://purl.obolibrary.org/obo/CHEBI_53249,poly(vinylidene) +16.9548485,CHEBI:53251,http://purl.obolibrary.org/obo/CHEBI_53251,poly(tetrafluoroethylene) +16.9548485,CHEBI:53259,http://purl.obolibrary.org/obo/CHEBI_53259,poly(ethylene terephthalate) macromolecule +16.9548485,CHEBI:53279,http://purl.obolibrary.org/obo/CHEBI_53279,poly(sodium styrenesulfonate) +16.9548485,CHEBI:53280,http://purl.obolibrary.org/obo/CHEBI_53280,poly(sodium 4-styrenesulfonate) +16.9548485,CHEBI:53387,http://purl.obolibrary.org/obo/CHEBI_53387,poly(hydroxyalkanoate) +16.9548485,CHEBI:53388,http://purl.obolibrary.org/obo/CHEBI_53388,poly(hydroxybutyrate) +16.9548485,CHEBI:53389,http://purl.obolibrary.org/obo/CHEBI_53389,poly(3-hydroxybutyrate) +16.9548485,CHEBI:53404,http://purl.obolibrary.org/obo/CHEBI_53404,poly(alkylene vinylene) macromolecule +16.9548485,CHEBI:53405,http://purl.obolibrary.org/obo/CHEBI_53405,poly(isoprene) macromolecule +16.9548485,CHEBI:53431,http://purl.obolibrary.org/obo/CHEBI_53431,chain carrier +16.9548485,CHEBI:53436,http://purl.obolibrary.org/obo/CHEBI_53436,ethylene glycol dimethacrylate +16.9548485,CHEBI:53449,http://purl.obolibrary.org/obo/CHEBI_53449,methoxypoly(ethylene glycol) +16.9548485,CHEBI:53474,http://purl.obolibrary.org/obo/CHEBI_53474,lithium sulfate +16.9548485,CHEBI:53526,http://purl.obolibrary.org/obo/CHEBI_53526,tritiated thymidine +16.9548485,CHEBI:53551,http://purl.obolibrary.org/obo/CHEBI_53551,poly(methylene) +16.9548485,CHEBI:53578,http://purl.obolibrary.org/obo/CHEBI_53578,hexamethylene diisocyanate +16.9548485,CHEBI:53581,http://purl.obolibrary.org/obo/CHEBI_53581,cetyltrimethylammonium chloride +16.9548485,CHEBI:53661,http://purl.obolibrary.org/obo/CHEBI_53661,alexidine +16.9548485,CHEBI:53680,http://purl.obolibrary.org/obo/CHEBI_53680,dihalogenated L-tyrosine +16.9548485,CHEBI:53700,http://purl.obolibrary.org/obo/CHEBI_53700,quinoline yellow +16.9548485,CHEBI:53766,http://purl.obolibrary.org/obo/CHEBI_53766,acenocoumarol +16.9548485,CHEBI:53767,http://purl.obolibrary.org/obo/CHEBI_53767,chloramine T +16.9548485,CHEBI:55340,http://purl.obolibrary.org/obo/CHEBI_55340,morphine hydrochloride +16.9548485,CHEBI:55374,http://purl.obolibrary.org/obo/CHEBI_55374,oxazolidinone +16.9548485,CHEBI:5538,http://purl.obolibrary.org/obo/CHEBI_5538,Granisetron hydrochloride +16.9548485,CHEBI:55416,http://purl.obolibrary.org/obo/CHEBI_55416,4-methylaminophenol +16.9548485,CHEBI:55418,http://purl.obolibrary.org/obo/CHEBI_55418,nitroguanosine +16.9548485,CHEBI:55419,http://purl.obolibrary.org/obo/CHEBI_55419,8-nitroguanosine +16.9548485,CHEBI:55474,http://purl.obolibrary.org/obo/CHEBI_55474,N-acyl-L-homoserine lactone +16.9548485,CHEBI:55477,http://purl.obolibrary.org/obo/CHEBI_55477,N-phenylglycine +16.9548485,CHEBI:5600,http://purl.obolibrary.org/obo/CHEBI_5600,Haemanthamine +16.9548485,CHEBI:5613,http://purl.obolibrary.org/obo/CHEBI_5613,haloperidol +16.9548485,CHEBI:5626,http://purl.obolibrary.org/obo/CHEBI_5626,Harringtonine +16.9548485,CHEBI:566519,http://purl.obolibrary.org/obo/CHEBI_566519,"3,4,5-trimethoxycinnamic acid" +16.9548485,CHEBI:5712,http://purl.obolibrary.org/obo/CHEBI_5712,1-hexanamine +16.9548485,CHEBI:5747,http://purl.obolibrary.org/obo/CHEBI_5747,Homatropine +16.9548485,CHEBI:5757,http://purl.obolibrary.org/obo/CHEBI_5757,homostachydrine +16.9548485,CHEBI:57597,http://purl.obolibrary.org/obo/CHEBI_57597,sn-glycerol 3-phosphate(2-) +16.9548485,CHEBI:57606,http://purl.obolibrary.org/obo/CHEBI_57606,5-oxoprolinate +16.9548485,CHEBI:5764,http://purl.obolibrary.org/obo/CHEBI_5764,hordenine +16.9548485,CHEBI:57703,http://purl.obolibrary.org/obo/CHEBI_57703,2-nitrophenolate +16.9548485,CHEBI:5784,http://purl.obolibrary.org/obo/CHEBI_5784,hydroflumethiazide +16.9548485,CHEBI:5790,http://purl.obolibrary.org/obo/CHEBI_5790,hydromorphone +16.9548485,CHEBI:5810,http://purl.obolibrary.org/obo/CHEBI_5810,hydroxymethylphosphonic acid +16.9548485,CHEBI:58217,http://purl.obolibrary.org/obo/CHEBI_58217,pentachlorophenolate +16.9548485,CHEBI:58223,http://purl.obolibrary.org/obo/CHEBI_58223,UDP(3-) +16.9548485,CHEBI:5831,http://purl.obolibrary.org/obo/CHEBI_5831,Hypaconitine +16.9548485,CHEBI:5834,http://purl.obolibrary.org/obo/CHEBI_5834,hyperforin +16.9548485,CHEBI:58369,http://purl.obolibrary.org/obo/CHEBI_58369,dTDP(3-) +16.9548485,CHEBI:58370,http://purl.obolibrary.org/obo/CHEBI_58370,dTTP(3-) +16.9548485,CHEBI:5869,http://purl.obolibrary.org/obo/CHEBI_5869,imazaquin +16.9548485,CHEBI:58958,http://purl.obolibrary.org/obo/CHEBI_58958,organosulfate oxoanion +16.9548485,CHEBI:58964,http://purl.obolibrary.org/obo/CHEBI_58964,cyanuric chloride +16.9548485,CHEBI:59062,http://purl.obolibrary.org/obo/CHEBI_59062,polymyxin +16.9548485,CHEBI:59121,http://purl.obolibrary.org/obo/CHEBI_59121,iodobenzoic acid +16.9548485,CHEBI:59173,http://purl.obolibrary.org/obo/CHEBI_59173,bivalirudin +16.9548485,CHEBI:59240,http://purl.obolibrary.org/obo/CHEBI_59240,phthiocerol A +16.9548485,CHEBI:59265,http://purl.obolibrary.org/obo/CHEBI_59265,palmitelaidic acid +16.9548485,CHEBI:59414,http://purl.obolibrary.org/obo/CHEBI_59414,muramyl dipeptide +16.9548485,CHEBI:59466,http://purl.obolibrary.org/obo/CHEBI_59466,phosphatidylinositol mannoside +16.9548485,CHEBI:59511,http://purl.obolibrary.org/obo/CHEBI_59511,cilastatin sodium +16.9548485,CHEBI:59523,http://purl.obolibrary.org/obo/CHEBI_59523,O-glycoprotein +16.9548485,CHEBI:59558,http://purl.obolibrary.org/obo/CHEBI_59558,medium-chain fatty acid anion +16.9548485,CHEBI:59644,http://purl.obolibrary.org/obo/CHEBI_59644,oxo fatty acid +16.9548485,CHEBI:59658,http://purl.obolibrary.org/obo/CHEBI_59658,pyrylium salt +16.9548485,CHEBI:59718,http://purl.obolibrary.org/obo/CHEBI_59718,cyclobutenones +16.9548485,CHEBI:59761,http://purl.obolibrary.org/obo/CHEBI_59761,methyl phosphate(2-) +16.9548485,CHEBI:59831,http://purl.obolibrary.org/obo/CHEBI_59831,enyne +16.9548485,CHEBI:59836,http://purl.obolibrary.org/obo/CHEBI_59836,oxo fatty acid anion +16.9548485,CHEBI:59839,http://purl.obolibrary.org/obo/CHEBI_59839,glyoxamide +16.9548485,CHEBI:59859,http://purl.obolibrary.org/obo/CHEBI_59859,benzyl ether +16.9548485,CHEBI:59918,http://purl.obolibrary.org/obo/CHEBI_59918,acyl monophosphate(2-) +16.9548485,CHEBI:59951,http://purl.obolibrary.org/obo/CHEBI_59951,pentosidine +16.9548485,CHEBI:59960,http://purl.obolibrary.org/obo/CHEBI_59960,(+-)-gamma-cadinene +16.9548485,CHEBI:60135,http://purl.obolibrary.org/obo/CHEBI_60135,polyisocyanide polymer +16.9548485,CHEBI:60194,http://purl.obolibrary.org/obo/CHEBI_60194,peptide cation +16.9548485,CHEBI:60240,http://purl.obolibrary.org/obo/CHEBI_60240,divalent metal cation +16.9548485,CHEBI:60272,http://purl.obolibrary.org/obo/CHEBI_60272,aluminium ion +16.9548485,CHEBI:6028,http://purl.obolibrary.org/obo/CHEBI_6028,Isometamidium chloride +16.9548485,CHEBI:60308,http://purl.obolibrary.org/obo/CHEBI_60308,"3,3',5-triiodo-L-thyroninate" +16.9548485,CHEBI:60471,http://purl.obolibrary.org/obo/CHEBI_60471,dUDP(3-) +16.9548485,CHEBI:60506,http://purl.obolibrary.org/obo/CHEBI_60506,polycarbazole polymer +16.9548485,CHEBI:6052,http://purl.obolibrary.org/obo/CHEBI_6052,isorhamnetin +16.9548485,CHEBI:60529,http://purl.obolibrary.org/obo/CHEBI_60529,ergoline alkaloid +16.9548485,CHEBI:60552,http://purl.obolibrary.org/obo/CHEBI_60552,polyacetylene polymer +16.9548485,CHEBI:60554,http://purl.obolibrary.org/obo/CHEBI_60554,poly(diacetylene) polymer +16.9548485,CHEBI:60586,http://purl.obolibrary.org/obo/CHEBI_60586,"poly(9,9'-fluorene) polymer" +16.9548485,CHEBI:60590,http://purl.obolibrary.org/obo/CHEBI_60590,"poly(9,9'-dioctylfluorene) polymer" +16.9548485,CHEBI:60622,http://purl.obolibrary.org/obo/CHEBI_60622,"poly(3,4-ethylenedioxythiophene) polymer" +16.9548485,CHEBI:60669,http://purl.obolibrary.org/obo/CHEBI_60669,chloroacetyl group +16.9548485,CHEBI:60731,http://purl.obolibrary.org/obo/CHEBI_60731,2-thiouridine +16.9548485,CHEBI:60734,http://purl.obolibrary.org/obo/CHEBI_60734,poly(phosphazene) polymer +16.9548485,CHEBI:60740,http://purl.obolibrary.org/obo/CHEBI_60740,poly(sulfone) polymer +16.9548485,CHEBI:60742,http://purl.obolibrary.org/obo/CHEBI_60742,poly(ether-sulfone) polymer +16.9548485,CHEBI:60743,http://purl.obolibrary.org/obo/CHEBI_60743,polyphenylene ethynylene polymer +16.9548485,CHEBI:60807,http://purl.obolibrary.org/obo/CHEBI_60807,anaesthesia adjuvant +16.9548485,CHEBI:60977,http://purl.obolibrary.org/obo/CHEBI_60977,phenylalkylamine +16.9548485,CHEBI:61028,http://purl.obolibrary.org/obo/CHEBI_61028,DOTA +16.9548485,CHEBI:61109,http://purl.obolibrary.org/obo/CHEBI_61109,pyrimidine nucleotide-sugar +16.9548485,CHEBI:61160,http://purl.obolibrary.org/obo/CHEBI_61160,conjugated linolenic acid +16.9548485,CHEBI:61184,http://purl.obolibrary.org/obo/CHEBI_61184,"poly(N,N-dimethylacrylamide) polymer" +16.9548485,CHEBI:61223,http://purl.obolibrary.org/obo/CHEBI_61223,"poly(N,N-diethylacrylamide) polymer" +16.9548485,CHEBI:61260,http://purl.obolibrary.org/obo/CHEBI_61260,poly[2-(dimethylamino)ethyl methacrylate] polymer +16.9548485,CHEBI:61280,http://purl.obolibrary.org/obo/CHEBI_61280,5-nitroanthranilic acid +16.9548485,CHEBI:61377,http://purl.obolibrary.org/obo/CHEBI_61377,TDP +16.9548485,CHEBI:61379,http://purl.obolibrary.org/obo/CHEBI_61379,harmala alkaloid +16.9548485,CHEBI:61408,http://purl.obolibrary.org/obo/CHEBI_61408,poly(aryleneethynylene) polymer +16.9548485,CHEBI:61417,http://purl.obolibrary.org/obo/CHEBI_61417,TDP(3-) +16.9548485,CHEBI:6142,http://purl.obolibrary.org/obo/CHEBI_6142,Kokusaginine +16.9548485,CHEBI:6149,http://purl.obolibrary.org/obo/CHEBI_6149,levobupivacaine +16.9548485,CHEBI:61504,http://purl.obolibrary.org/obo/CHEBI_61504,poly(phenylene oxide) polymer +16.9548485,CHEBI:61615,http://purl.obolibrary.org/obo/CHEBI_61615,poly(propylene glycol) polymer +16.9548485,CHEBI:61640,http://purl.obolibrary.org/obo/CHEBI_61640,poly(vinylcarbazole) polymer +16.9548485,CHEBI:61692,http://purl.obolibrary.org/obo/CHEBI_61692,pyridoisoquinoline +16.9548485,CHEBI:61703,http://purl.obolibrary.org/obo/CHEBI_61703,nonclassic icosanoid +16.9548485,CHEBI:61800,http://purl.obolibrary.org/obo/CHEBI_61800,2-deoxystreptamine derivative +16.9548485,CHEBI:61894,http://purl.obolibrary.org/obo/CHEBI_61894,L-cysteinyl ester +16.9548485,CHEBI:62215,http://purl.obolibrary.org/obo/CHEBI_62215,allelochemical +16.9548485,CHEBI:62219,http://purl.obolibrary.org/obo/CHEBI_62219,2-heptyl-4-quinolone +16.9548485,CHEBI:62643,http://purl.obolibrary.org/obo/CHEBI_62643,anionic phospholipid +16.9548485,CHEBI:62982,http://purl.obolibrary.org/obo/CHEBI_62982,ammonium dihydrogen phosphate +16.9548485,CHEBI:62984,http://purl.obolibrary.org/obo/CHEBI_62984,zinc acetate +16.9548485,CHEBI:63005,http://purl.obolibrary.org/obo/CHEBI_63005,sodium nitrate +16.9548485,CHEBI:63043,http://purl.obolibrary.org/obo/CHEBI_63043,potassium nitrate +16.9548485,CHEBI:63070,http://purl.obolibrary.org/obo/CHEBI_63070,beta-alaninate +16.9548485,CHEBI:63146,http://purl.obolibrary.org/obo/CHEBI_63146,insulin release inhibitor +16.9548485,CHEBI:63171,http://purl.obolibrary.org/obo/CHEBI_63171,mononitrotoluene +16.9548485,CHEBI:63317,http://purl.obolibrary.org/obo/CHEBI_63317,barium chloride +16.9548485,CHEBI:63320,http://purl.obolibrary.org/obo/CHEBI_63320,barium salt +16.9548485,CHEBI:63338,http://purl.obolibrary.org/obo/CHEBI_63338,deoxy sugar derivative +16.9548485,CHEBI:63340,http://purl.obolibrary.org/obo/CHEBI_63340,deoxyhexose derivative +16.9548485,CHEBI:63349,http://purl.obolibrary.org/obo/CHEBI_63349,trideoxyhexose derivative +16.9548485,CHEBI:63527,http://purl.obolibrary.org/obo/CHEBI_63527,TTP(4-) +16.9548485,CHEBI:63550,http://purl.obolibrary.org/obo/CHEBI_63550,TTP +16.9548485,CHEBI:63571,http://purl.obolibrary.org/obo/CHEBI_63571,trisaccharide derivative +16.9548485,CHEBI:63578,http://purl.obolibrary.org/obo/CHEBI_63578,iopromide +16.9548485,CHEBI:6378,http://purl.obolibrary.org/obo/CHEBI_6378,Lappaconitine +16.9548485,CHEBI:63882,http://purl.obolibrary.org/obo/CHEBI_63882,ethylammonium nitrate +16.9548485,CHEBI:63949,http://purl.obolibrary.org/obo/CHEBI_63949,"2,3-bis(4-hydroxyphenyl)propionitrile" +16.9548485,CHEBI:63961,http://purl.obolibrary.org/obo/CHEBI_63961,glycyl-glycyl-glycine +16.9548485,CHEBI:6402,http://purl.obolibrary.org/obo/CHEBI_6402,leflunomide +16.9548485,CHEBI:64096,http://purl.obolibrary.org/obo/CHEBI_64096,benzodioxine +16.9548485,CHEBI:64103,http://purl.obolibrary.org/obo/CHEBI_64103,sodium butyrate +16.9548485,CHEBI:6427,http://purl.obolibrary.org/obo/CHEBI_6427,leuprolide +16.9548485,CHEBI:64313,http://purl.obolibrary.org/obo/CHEBI_64313,4-demethylwyosine +16.9548485,CHEBI:64317,http://purl.obolibrary.org/obo/CHEBI_64317,isoprenaline +16.9548485,CHEBI:64356,http://purl.obolibrary.org/obo/CHEBI_64356,pregabalin +16.9548485,CHEBI:64358,http://purl.obolibrary.org/obo/CHEBI_64358,rivastigmine tartrate +16.9548485,CHEBI:64366,http://purl.obolibrary.org/obo/CHEBI_64366,isodesmosine +16.9548485,CHEBI:64382,http://purl.obolibrary.org/obo/CHEBI_64382,organosulfonate salt +16.9548485,CHEBI:64455,http://purl.obolibrary.org/obo/CHEBI_64455,benzenesulfonic acid +16.9548485,CHEBI:64577,http://purl.obolibrary.org/obo/CHEBI_64577,flour treatment agent +16.9548485,CHEBI:64618,http://purl.obolibrary.org/obo/CHEBI_64618,phosphagen +16.9548485,CHEBI:64637,http://purl.obolibrary.org/obo/CHEBI_64637,O-polysaccharide +16.9548485,CHEBI:64641,http://purl.obolibrary.org/obo/CHEBI_64641,divalent inorganic cation +16.9548485,CHEBI:64711,http://purl.obolibrary.org/obo/CHEBI_64711,purine nucleotide-sugar +16.9548485,CHEBI:6472,http://purl.obolibrary.org/obo/CHEBI_6472,lincomycin +16.9548485,CHEBI:64954,http://purl.obolibrary.org/obo/CHEBI_64954,anti-HSV-2 agent +16.9548485,CHEBI:6497,http://purl.obolibrary.org/obo/CHEBI_6497,lipoxin +16.9548485,CHEBI:65310,http://purl.obolibrary.org/obo/CHEBI_65310,triciribine +16.9548485,CHEBI:6532,http://purl.obolibrary.org/obo/CHEBI_6532,loperamide +16.9548485,CHEBI:65331,http://purl.obolibrary.org/obo/CHEBI_65331,alkyl caffeate ester +16.9548485,CHEBI:65408,http://purl.obolibrary.org/obo/CHEBI_65408,andrographolide +16.9548485,CHEBI:65610,http://purl.obolibrary.org/obo/CHEBI_65610,chaetominine +16.9548485,CHEBI:65850,http://purl.obolibrary.org/obo/CHEBI_65850,7-epiclusianone +16.9548485,CHEBI:65853,http://purl.obolibrary.org/obo/CHEBI_65853,"5alpha,8alpha-epidioxysterol" +16.9548485,CHEBI:6605,http://purl.obolibrary.org/obo/CHEBI_6605,lysergic acid diethylamide +16.9548485,CHEBI:66871,http://purl.obolibrary.org/obo/CHEBI_66871,ammonium fluoride +16.9548485,CHEBI:66872,http://purl.obolibrary.org/obo/CHEBI_66872,potassium fluoride +16.9548485,CHEBI:66889,http://purl.obolibrary.org/obo/CHEBI_66889,peginesatide +16.9548485,CHEBI:670,http://purl.obolibrary.org/obo/CHEBI_670,1-phenylethylamine +16.9548485,CHEBI:67001,http://purl.obolibrary.org/obo/CHEBI_67001,hypusinate +16.9548485,CHEBI:67013,http://purl.obolibrary.org/obo/CHEBI_67013,methyl-branched fatty acid anion +16.9548485,CHEBI:6706,http://purl.obolibrary.org/obo/CHEBI_6706,Mecamylamine +16.9548485,CHEBI:67098,http://purl.obolibrary.org/obo/CHEBI_67098,tris phosphate +16.9548485,CHEBI:6710,http://purl.obolibrary.org/obo/CHEBI_6710,meclofenamic acid +16.9548485,CHEBI:67125,http://purl.obolibrary.org/obo/CHEBI_67125,2-acetyl-1-pyrroline +16.9548485,CHEBI:67155,http://purl.obolibrary.org/obo/CHEBI_67155,mycophenolate sodium +16.9548485,CHEBI:67249,http://purl.obolibrary.org/obo/CHEBI_67249,N-acetylcarnosine +16.9548485,CHEBI:67264,http://purl.obolibrary.org/obo/CHEBI_67264,geranic acid +16.9548485,CHEBI:67272,http://purl.obolibrary.org/obo/CHEBI_67272,perifosine +16.9548485,CHEBI:67375,http://purl.obolibrary.org/obo/CHEBI_67375,noreugenin +16.9548485,CHEBI:67518,http://purl.obolibrary.org/obo/CHEBI_67518,gardneramine +16.9548485,CHEBI:67554,http://purl.obolibrary.org/obo/CHEBI_67554,daucosterol +16.9548485,CHEBI:6759,http://purl.obolibrary.org/obo/CHEBI_6759,mepivacaine +16.9548485,CHEBI:6760,http://purl.obolibrary.org/obo/CHEBI_6760,mepivacaine hydrochloride +16.9548485,CHEBI:67606,http://purl.obolibrary.org/obo/CHEBI_67606,Sampangine +16.9548485,CHEBI:6773,http://purl.obolibrary.org/obo/CHEBI_6773,Mesaconitine +16.9548485,CHEBI:67818,http://purl.obolibrary.org/obo/CHEBI_67818,caryophyllene oxide +16.9548485,CHEBI:67862,http://purl.obolibrary.org/obo/CHEBI_67862,coptisine +16.9548485,CHEBI:67886,http://purl.obolibrary.org/obo/CHEBI_67886,none +16.9548485,CHEBI:67895,http://purl.obolibrary.org/obo/CHEBI_67895,corosolic acid +16.9548485,CHEBI:6802,http://purl.obolibrary.org/obo/CHEBI_6802,metformin hydrochloride +16.9548485,CHEBI:68540,http://purl.obolibrary.org/obo/CHEBI_68540,teriflunomide +16.9548485,CHEBI:68551,http://purl.obolibrary.org/obo/CHEBI_68551,linaclotide +16.9548485,CHEBI:68575,http://purl.obolibrary.org/obo/CHEBI_68575,indacaterol +16.9548485,CHEBI:68620,http://purl.obolibrary.org/obo/CHEBI_68620,poly(4-vinylbenzoate) +16.9548485,CHEBI:68649,http://purl.obolibrary.org/obo/CHEBI_68649,pentalenate +16.9548485,CHEBI:68676,http://purl.obolibrary.org/obo/CHEBI_68676,legionaminic acid +16.9548485,CHEBI:6890,http://purl.obolibrary.org/obo/CHEBI_6890,Methylprednisolone sodium succinate +16.9548485,CHEBI:6899,http://purl.obolibrary.org/obo/CHEBI_6899,metoclopramide hydrochloride +16.9548485,CHEBI:69387,http://purl.obolibrary.org/obo/CHEBI_69387,protostemonine +16.9548485,CHEBI:69426,http://purl.obolibrary.org/obo/CHEBI_69426,cordysinin B +16.9548485,CHEBI:6956,http://purl.obolibrary.org/obo/CHEBI_6956,Mitragynine +16.9548485,CHEBI:69656,http://purl.obolibrary.org/obo/CHEBI_69656,Caffeic acid ethyl ester +16.9548485,CHEBI:69808,http://purl.obolibrary.org/obo/CHEBI_69808,"14-Deoxy-11,12-didehydroandrographolide" +16.9548485,CHEBI:70435,http://purl.obolibrary.org/obo/CHEBI_70435,Platyconic acid A +16.9548485,CHEBI:70514,http://purl.obolibrary.org/obo/CHEBI_70514,leuconoxine +16.9548485,CHEBI:70746,http://purl.obolibrary.org/obo/CHEBI_70746,dabigatran etexilate +16.9548485,CHEBI:70752,http://purl.obolibrary.org/obo/CHEBI_70752,dabigatran +16.9548485,CHEBI:70803,http://purl.obolibrary.org/obo/CHEBI_70803,acacic acid +16.9548485,CHEBI:70816,http://purl.obolibrary.org/obo/CHEBI_70816,pentalenolactone +16.9548485,CHEBI:70851,http://purl.obolibrary.org/obo/CHEBI_70851,phthalaldehyde +16.9548485,CHEBI:70961,http://purl.obolibrary.org/obo/CHEBI_70961,histidine methyl ester +16.9548485,CHEBI:71028,http://purl.obolibrary.org/obo/CHEBI_71028,carglumic acid +16.9548485,CHEBI:71182,http://purl.obolibrary.org/obo/CHEBI_71182,trans-3-hydroxycotinine +16.9548485,CHEBI:71272,http://purl.obolibrary.org/obo/CHEBI_71272,saxagliptin +16.9548485,CHEBI:71329,http://purl.obolibrary.org/obo/CHEBI_71329,pyridobenzodiazepine +16.9548485,CHEBI:71415,http://purl.obolibrary.org/obo/CHEBI_71415,nitrofurantoin +16.9548485,CHEBI:71666,http://purl.obolibrary.org/obo/CHEBI_71666,gamma-amino acid anion +16.9548485,CHEBI:72293,http://purl.obolibrary.org/obo/CHEBI_72293,monoterpene glycoside +16.9548485,CHEBI:72297,http://purl.obolibrary.org/obo/CHEBI_72297,lomitapide +16.9548485,CHEBI:72305,http://purl.obolibrary.org/obo/CHEBI_72305,teduglutide +16.9548485,CHEBI:72312,http://purl.obolibrary.org/obo/CHEBI_72312,pasireotide +16.9548485,CHEBI:72322,http://purl.obolibrary.org/obo/CHEBI_72322,(11)C-choline +16.9548485,CHEBI:72631,http://purl.obolibrary.org/obo/CHEBI_72631,3-phenoxybenzoic acid +16.9548485,CHEBI:72633,http://purl.obolibrary.org/obo/CHEBI_72633,phenoxybenzoic acid +16.9548485,CHEBI:72690,http://purl.obolibrary.org/obo/CHEBI_72690,pomalidomide +16.9548485,CHEBI:72723,http://purl.obolibrary.org/obo/CHEBI_72723,Phe-Phe +16.9548485,CHEBI:72726,http://purl.obolibrary.org/obo/CHEBI_72726,hydroxypalmitic acid +16.9548485,CHEBI:72799,http://purl.obolibrary.org/obo/CHEBI_72799,HEPE +16.9548485,CHEBI:72816,http://purl.obolibrary.org/obo/CHEBI_72816,L-alanyl-L-alanine +16.9548485,CHEBI:73158,http://purl.obolibrary.org/obo/CHEBI_73158,sirtinol +16.9548485,CHEBI:73167,http://purl.obolibrary.org/obo/CHEBI_73167,concanamycin A +16.9548485,CHEBI:73175,http://purl.obolibrary.org/obo/CHEBI_73175,"2,3,5-triiodobenzoic acid" +16.9548485,CHEBI:73191,http://purl.obolibrary.org/obo/CHEBI_73191,abscisic acid receptor agonist +16.9548485,CHEBI:73195,http://purl.obolibrary.org/obo/CHEBI_73195,concanamycin +16.9548485,CHEBI:73451,http://purl.obolibrary.org/obo/CHEBI_73451,Asp-His +16.9548485,CHEBI:73514,http://purl.obolibrary.org/obo/CHEBI_73514,Gly-Leu +16.9548485,CHEBI:73520,http://purl.obolibrary.org/obo/CHEBI_73520,Ile-His +16.9548485,CHEBI:73521,http://purl.obolibrary.org/obo/CHEBI_73521,Glu-Lys +16.9548485,CHEBI:73558,http://purl.obolibrary.org/obo/CHEBI_73558,D3 vitamins +16.9548485,CHEBI:73579,http://purl.obolibrary.org/obo/CHEBI_73579,Leu-Val +16.9548485,CHEBI:73607,http://purl.obolibrary.org/obo/CHEBI_73607,Lys-Val +16.9548485,CHEBI:73637,http://purl.obolibrary.org/obo/CHEBI_73637,Phe-Tyr +16.9548485,CHEBI:73701,http://purl.obolibrary.org/obo/CHEBI_73701,Val-Pro +16.9548485,CHEBI:73772,http://purl.obolibrary.org/obo/CHEBI_73772,K antigen +16.9548485,CHEBI:73788,http://purl.obolibrary.org/obo/CHEBI_73788,Ala-Gln +16.9548485,CHEBI:73803,http://purl.obolibrary.org/obo/CHEBI_73803,Ala-Asp +16.9548485,CHEBI:73807,http://purl.obolibrary.org/obo/CHEBI_73807,Ala-Phe +16.9548485,CHEBI:73809,http://purl.obolibrary.org/obo/CHEBI_73809,Ala-Val +16.9548485,CHEBI:73826,http://purl.obolibrary.org/obo/CHEBI_73826,Asp-Ala +16.9548485,CHEBI:73828,http://purl.obolibrary.org/obo/CHEBI_73828,Asp-Glu +16.9548485,CHEBI:73847,http://purl.obolibrary.org/obo/CHEBI_73847,Gln-Glu +16.9548485,CHEBI:73849,http://purl.obolibrary.org/obo/CHEBI_73849,Glu-Ala +16.9548485,CHEBI:73860,http://purl.obolibrary.org/obo/CHEBI_73860,Gly-Arg +16.9548485,CHEBI:73928,http://purl.obolibrary.org/obo/CHEBI_73928,His-Glu +16.9548485,CHEBI:74023,http://purl.obolibrary.org/obo/CHEBI_74023,dioscin +16.9548485,CHEBI:74055,http://purl.obolibrary.org/obo/CHEBI_74055,His-Pro +16.9548485,CHEBI:74059,http://purl.obolibrary.org/obo/CHEBI_74059,His-Tyr +16.9548485,CHEBI:74075,http://purl.obolibrary.org/obo/CHEBI_74075,Ile-Phe +16.9548485,CHEBI:7440,http://purl.obolibrary.org/obo/CHEBI_7440,NOP +16.9548485,CHEBI:7465,http://purl.obolibrary.org/obo/CHEBI_7465,naltrexone +16.9548485,CHEBI:7470,http://purl.obolibrary.org/obo/CHEBI_7470,Naphazoline +16.9548485,CHEBI:74772,http://purl.obolibrary.org/obo/CHEBI_74772,aluminium sulfate +16.9548485,CHEBI:74783,http://purl.obolibrary.org/obo/CHEBI_74783,astringent +16.9548485,CHEBI:74789,http://purl.obolibrary.org/obo/CHEBI_74789,9-aminoacridine +16.9548485,CHEBI:74823,http://purl.obolibrary.org/obo/CHEBI_74823,Ser-Val +16.9548485,CHEBI:74846,http://purl.obolibrary.org/obo/CHEBI_74846,azaserine +16.9548485,CHEBI:74904,http://purl.obolibrary.org/obo/CHEBI_74904,isocaproate +16.9548485,CHEBI:75012,http://purl.obolibrary.org/obo/CHEBI_75012,Val-Ile +16.9548485,CHEBI:75021,http://purl.obolibrary.org/obo/CHEBI_75021,Val-Ser +16.9548485,CHEBI:75108,http://purl.obolibrary.org/obo/CHEBI_75108,linoelaidic acid +16.9548485,CHEBI:75132,http://purl.obolibrary.org/obo/CHEBI_75132,DL-threo-1-phenyl-2-palmitoylamino-3-morpholino-1-propanol +16.9548485,CHEBI:7514,http://purl.obolibrary.org/obo/CHEBI_7514,neostigmine +16.9548485,CHEBI:75153,http://purl.obolibrary.org/obo/CHEBI_75153,single-stranded DNA oligonucleotide +16.9548485,CHEBI:75179,http://purl.obolibrary.org/obo/CHEBI_75179,trifluridine +16.9548485,CHEBI:75221,http://purl.obolibrary.org/obo/CHEBI_75221,sodium metavanadate +16.9548485,CHEBI:75273,http://purl.obolibrary.org/obo/CHEBI_75273,sodium tetradecyl sulfate +16.9548485,CHEBI:75314,http://purl.obolibrary.org/obo/CHEBI_75314,peonidin +16.9548485,CHEBI:75324,http://purl.obolibrary.org/obo/CHEBI_75324,excipient +16.9548485,CHEBI:75458,http://purl.obolibrary.org/obo/CHEBI_75458,carbonyl cyanide p-trifluoromethoxyphenylhydrazone +16.9548485,CHEBI:75531,http://purl.obolibrary.org/obo/CHEBI_75531,"rac-1,2-diglyceride" +16.9548485,CHEBI:75543,http://purl.obolibrary.org/obo/CHEBI_75543,rac-1-monolauroylglycerol +16.9548485,CHEBI:75549,http://purl.obolibrary.org/obo/CHEBI_75549,rac-1-palmitoyl-2-oleoylglycerol +16.9548485,CHEBI:75592,http://purl.obolibrary.org/obo/CHEBI_75592,L-cycloserine +16.9548485,CHEBI:75625,http://purl.obolibrary.org/obo/CHEBI_75625,stearyl oleate +16.9548485,CHEBI:75811,http://purl.obolibrary.org/obo/CHEBI_75811,rac-1-monopalmitoylglycerol +16.9548485,CHEBI:7582,http://purl.obolibrary.org/obo/CHEBI_7582,nitrendipine +16.9548485,CHEBI:75838,http://purl.obolibrary.org/obo/CHEBI_75838,phytyl phosphate +16.9548485,CHEBI:75955,http://purl.obolibrary.org/obo/CHEBI_75955,copper(II) oxide +16.9548485,CHEBI:7596,http://purl.obolibrary.org/obo/CHEBI_7596,nitroprusside +16.9548485,CHEBI:76016,http://purl.obolibrary.org/obo/CHEBI_76016,vortioxetine +16.9548485,CHEBI:76107,http://purl.obolibrary.org/obo/CHEBI_76107,deuterated compound +16.9548485,CHEBI:76144,http://purl.obolibrary.org/obo/CHEBI_76144,flunixin meglumine +16.9548485,CHEBI:7625,http://purl.obolibrary.org/obo/CHEBI_7625,nordihydroguaiaretic acid +16.9548485,CHEBI:76301,http://purl.obolibrary.org/obo/CHEBI_76301,inositol phosphate oxoanion +16.9548485,CHEBI:76326,http://purl.obolibrary.org/obo/CHEBI_76326,N-nitrosomorpholine +16.9548485,CHEBI:76606,http://purl.obolibrary.org/obo/CHEBI_76606,methyl carbamate +16.9548485,CHEBI:76629,http://purl.obolibrary.org/obo/CHEBI_76629,2-lysophosphatidic acid +16.9548485,CHEBI:76631,http://purl.obolibrary.org/obo/CHEBI_76631,1-lysophosphatidic acid +16.9548485,CHEBI:76674,http://purl.obolibrary.org/obo/CHEBI_76674,phosphorothioate oligonucleotide +16.9548485,CHEBI:76794,http://purl.obolibrary.org/obo/CHEBI_76794,5-formylcytosine +16.9548485,CHEBI:77396,http://purl.obolibrary.org/obo/CHEBI_77396,long-chain primary fatty alcohol +16.9548485,CHEBI:77424,http://purl.obolibrary.org/obo/CHEBI_77424,"4-amino-2,6-dinitrotoluene" +16.9548485,CHEBI:77431,http://purl.obolibrary.org/obo/CHEBI_77431,"1-butyl-N-(2,6-dimethylphenyl)piperidine-2-carboxamide" +16.9548485,CHEBI:7747,http://purl.obolibrary.org/obo/CHEBI_7747,oleuropein +16.9548485,CHEBI:7774,http://purl.obolibrary.org/obo/CHEBI_7774,Ondansetron hydrochloride +16.9548485,CHEBI:77742,http://purl.obolibrary.org/obo/CHEBI_77742,bongkrekic acid +16.9548485,CHEBI:77775,http://purl.obolibrary.org/obo/CHEBI_77775,sodium selenate +16.9548485,CHEBI:77789,http://purl.obolibrary.org/obo/CHEBI_77789,tetrindole hydrochloride +16.9548485,CHEBI:77799,http://purl.obolibrary.org/obo/CHEBI_77799,tetrindole +16.9548485,CHEBI:77868,http://purl.obolibrary.org/obo/CHEBI_77868,potassium sorbate +16.9548485,CHEBI:7799,http://purl.obolibrary.org/obo/CHEBI_7799,oseltamivir phosphate +16.9548485,CHEBI:78016,http://purl.obolibrary.org/obo/CHEBI_78016,food gelling agent +16.9548485,CHEBI:78059,http://purl.obolibrary.org/obo/CHEBI_78059,food additive carrier +16.9548485,CHEBI:78090,http://purl.obolibrary.org/obo/CHEBI_78090,"1,2-dipalmitoylglycerol" +16.9548485,CHEBI:78138,http://purl.obolibrary.org/obo/CHEBI_78138,fatty alcohol 18:0 +16.9548485,CHEBI:78160,http://purl.obolibrary.org/obo/CHEBI_78160,bleomycin A5 +16.9548485,CHEBI:78398,http://purl.obolibrary.org/obo/CHEBI_78398,5-(2-oxopropylideneamino)-6-D-ribitylaminouracil +16.9548485,CHEBI:78407,http://purl.obolibrary.org/obo/CHEBI_78407,ethyl mandelate +16.9548485,CHEBI:78493,http://purl.obolibrary.org/obo/CHEBI_78493,organic trisulfide +16.9548485,CHEBI:78554,http://purl.obolibrary.org/obo/CHEBI_78554,2-methyl-3-hydroxybutyrate +16.9548485,CHEBI:7857,http://purl.obolibrary.org/obo/CHEBI_7857,oxybutynin chloride +16.9548485,CHEBI:7859,http://purl.obolibrary.org/obo/CHEBI_7859,oxycodone hydrochloride +16.9548485,CHEBI:7866,http://purl.obolibrary.org/obo/CHEBI_7866,Oxymorphone hydrochloride +16.9548485,CHEBI:7872,http://purl.obolibrary.org/obo/CHEBI_7872,oxytocin +16.9548485,CHEBI:78757,http://purl.obolibrary.org/obo/CHEBI_78757,cystamine +16.9548485,CHEBI:78802,http://purl.obolibrary.org/obo/CHEBI_78802,diarylheptanoid +16.9548485,CHEBI:78855,http://purl.obolibrary.org/obo/CHEBI_78855,penicilloyl polylysine +16.9548485,CHEBI:78870,http://purl.obolibrary.org/obo/CHEBI_78870,sodium nitrite +16.9548485,CHEBI:78903,http://purl.obolibrary.org/obo/CHEBI_78903,mannoprotein +16.9548485,CHEBI:79311,http://purl.obolibrary.org/obo/CHEBI_79311,glucoraphanin +16.9548485,CHEBI:79313,http://purl.obolibrary.org/obo/CHEBI_79313,glycosinolic acid +16.9548485,CHEBI:79316,http://purl.obolibrary.org/obo/CHEBI_79316,glucosinolic acid +16.9548485,CHEBI:79322,http://purl.obolibrary.org/obo/CHEBI_79322,thia-alkylglucosinolic acid +16.9548485,CHEBI:79327,http://purl.obolibrary.org/obo/CHEBI_79327,alkylglucosinolic acid +16.9548485,CHEBI:79381,http://purl.obolibrary.org/obo/CHEBI_79381,A-factor +16.9548485,CHEBI:79401,http://purl.obolibrary.org/obo/CHEBI_79401,vincristine sulfate +16.9548485,CHEBI:79516,http://purl.obolibrary.org/obo/CHEBI_79516,Nonylphenol +16.9548485,CHEBI:7959,http://purl.obolibrary.org/obo/CHEBI_7959,D-penicillamine +16.9548485,CHEBI:7982,http://purl.obolibrary.org/obo/CHEBI_7982,pentazocine +16.9548485,CHEBI:7984,http://purl.obolibrary.org/obo/CHEBI_7984,Pentobarbital sodium +16.9548485,CHEBI:7998,http://purl.obolibrary.org/obo/CHEBI_7998,Peptide(-Leu) +16.9548485,CHEBI:7999,http://purl.obolibrary.org/obo/CHEBI_7999,Peptide(-Lys) +16.9548485,CHEBI:8005,http://purl.obolibrary.org/obo/CHEBI_8005,peptidoglycan +16.9548485,CHEBI:8014,http://purl.obolibrary.org/obo/CHEBI_8014,Peptidyl-aminoacyl-tRNA +16.9548485,CHEBI:80171,http://purl.obolibrary.org/obo/CHEBI_80171,HA Peptide +16.9548485,CHEBI:80268,http://purl.obolibrary.org/obo/CHEBI_80268,Galanin-like peptide +16.9548485,CHEBI:80324,http://purl.obolibrary.org/obo/CHEBI_80324,RFamide-related peptide 3 +16.9548485,CHEBI:80329,http://purl.obolibrary.org/obo/CHEBI_80329,Pancreatic polypeptide +16.9548485,CHEBI:80491,http://purl.obolibrary.org/obo/CHEBI_80491,pinostrobin +16.9548485,CHEBI:80502,http://purl.obolibrary.org/obo/CHEBI_80502,N'-Nitrosonornicotine +16.9548485,CHEBI:8058,http://purl.obolibrary.org/obo/CHEBI_8058,phencyclidine +16.9548485,CHEBI:80581,http://purl.obolibrary.org/obo/CHEBI_80581,Morphine-6-glucuronide +16.9548485,CHEBI:80631,http://purl.obolibrary.org/obo/CHEBI_80631,Morphine-3-glucuronide +16.9548485,CHEBI:8075,http://purl.obolibrary.org/obo/CHEBI_8075,phenoxyacetic acid +16.9548485,CHEBI:8077,http://purl.obolibrary.org/obo/CHEBI_8077,Phenoxybenzamine +16.9548485,CHEBI:8082,http://purl.obolibrary.org/obo/CHEBI_8082,phenyl acetate +16.9548485,CHEBI:80831,http://purl.obolibrary.org/obo/CHEBI_80831,Glutinone +16.9548485,CHEBI:81006,http://purl.obolibrary.org/obo/CHEBI_81006,tRNA containing 2-thiouridine +16.9548485,CHEBI:8102,http://purl.obolibrary.org/obo/CHEBI_8102,phenylmethanesulfonyl fluoride +16.9548485,CHEBI:81178,http://purl.obolibrary.org/obo/CHEBI_81178,2-Polyprenyl-6-hydroxyphenol +16.9548485,CHEBI:81304,http://purl.obolibrary.org/obo/CHEBI_81304,Magnesium peroxide +16.9548485,CHEBI:81415,http://purl.obolibrary.org/obo/CHEBI_81415,Colchicoside +16.9548485,CHEBI:81472,http://purl.obolibrary.org/obo/CHEBI_81472,Biotinyl-[protein] +16.9548485,CHEBI:81584,http://purl.obolibrary.org/obo/CHEBI_81584,"2,2',4,4'-Tetrabromodiphenyl ether" +16.9548485,CHEBI:81588,http://purl.obolibrary.org/obo/CHEBI_81588,Placental lactogen +16.9548485,CHEBI:81715,http://purl.obolibrary.org/obo/CHEBI_81715,Thiamine disulfide +16.9548485,CHEBI:81729,http://purl.obolibrary.org/obo/CHEBI_81729,Methyridine +16.9548485,CHEBI:81803,http://purl.obolibrary.org/obo/CHEBI_81803,Metaflumizone +16.9548485,CHEBI:81833,http://purl.obolibrary.org/obo/CHEBI_81833,trifloxystrobin +16.9548485,CHEBI:81902,http://purl.obolibrary.org/obo/CHEBI_81902,Chloralose +16.9548485,CHEBI:81908,http://purl.obolibrary.org/obo/CHEBI_81908,cuprous oxide +16.9548485,CHEBI:81931,http://purl.obolibrary.org/obo/CHEBI_81931,metaldehyde +16.9548485,CHEBI:82016,http://purl.obolibrary.org/obo/CHEBI_82016,Fluridone +16.9548485,CHEBI:82130,http://purl.obolibrary.org/obo/CHEBI_82130,Vinylidene chloride-vinyl chloride copolymer +16.9548485,CHEBI:82163,http://purl.obolibrary.org/obo/CHEBI_82163,"rac-1,2-dichloropropane" +16.9548485,CHEBI:82259,http://purl.obolibrary.org/obo/CHEBI_82259,Norbormide +16.9548485,CHEBI:82283,http://purl.obolibrary.org/obo/CHEBI_82283,Tungsten carbide +16.9548485,CHEBI:82297,http://purl.obolibrary.org/obo/CHEBI_82297,carbon black +16.9548485,CHEBI:82327,http://purl.obolibrary.org/obo/CHEBI_82327,Ethyl acrylate +16.9548485,CHEBI:82342,http://purl.obolibrary.org/obo/CHEBI_82342,5-Methylchrysene +16.9548485,CHEBI:82344,http://purl.obolibrary.org/obo/CHEBI_82344,Methyl isobutyl ketone +16.9548485,CHEBI:82461,http://purl.obolibrary.org/obo/CHEBI_82461,Doxylamine succinate +16.9548485,CHEBI:8247,http://purl.obolibrary.org/obo/CHEBI_8247,pirenzepine +16.9548485,CHEBI:82507,http://purl.obolibrary.org/obo/CHEBI_82507,N'-Nitrosoanabasine +16.9548485,CHEBI:82508,http://purl.obolibrary.org/obo/CHEBI_82508,N'-Nitrosoanatabine +16.9548485,CHEBI:82599,http://purl.obolibrary.org/obo/CHEBI_82599,avermectin analogue +16.9548485,CHEBI:82625,http://purl.obolibrary.org/obo/CHEBI_82625,Trolox +16.9548485,CHEBI:82700,http://purl.obolibrary.org/obo/CHEBI_82700,olodaterol +16.9548485,CHEBI:82755,http://purl.obolibrary.org/obo/CHEBI_82755,mertansine +16.9548485,CHEBI:82760,http://purl.obolibrary.org/obo/CHEBI_82760,maytansinoid +16.9548485,CHEBI:82929,http://purl.obolibrary.org/obo/CHEBI_82929,"1,2-dipalmitoyl-sn-glycerol" +16.9548485,CHEBI:83228,http://purl.obolibrary.org/obo/CHEBI_83228,L-alpha-amino acid residue +16.9548485,CHEBI:83326,http://purl.obolibrary.org/obo/CHEBI_83326,tedizolid phosphate +16.9548485,CHEBI:83328,http://purl.obolibrary.org/obo/CHEBI_83328,pyrazolone +16.9548485,CHEBI:83347,http://purl.obolibrary.org/obo/CHEBI_83347,organosulfonic ester +16.9548485,CHEBI:83390,http://purl.obolibrary.org/obo/CHEBI_83390,pentachlorobenzenes +16.9548485,CHEBI:83494,http://purl.obolibrary.org/obo/CHEBI_83494,6:2 fluorotelomer unsaturated carboxylic acid +16.9548485,CHEBI:83513,http://purl.obolibrary.org/obo/CHEBI_83513,4-acetamidoantipyrine +16.9548485,CHEBI:8355,http://purl.obolibrary.org/obo/CHEBI_8355,pralidoxime chloride +16.9548485,CHEBI:83605,http://purl.obolibrary.org/obo/CHEBI_83605,"3,5-diethoxycarbonyl-1,4-dihydrocollidine" +16.9548485,CHEBI:83606,http://purl.obolibrary.org/obo/CHEBI_83606,fenticonazole nitrate +16.9548485,CHEBI:8361,http://purl.obolibrary.org/obo/CHEBI_8361,pravastatin sodium +16.9548485,CHEBI:83741,http://purl.obolibrary.org/obo/CHEBI_83741,phospholipid biosynthesis inhibitor +16.9548485,CHEBI:8378,http://purl.obolibrary.org/obo/CHEBI_8378,prednisolone +16.9548485,CHEBI:8379,http://purl.obolibrary.org/obo/CHEBI_8379,prednisolone sodium phosphate +16.9548485,CHEBI:83814,http://purl.obolibrary.org/obo/CHEBI_83814,fluorotelomer +16.9548485,CHEBI:8382,http://purl.obolibrary.org/obo/CHEBI_8382,prednisone +16.9548485,CHEBI:83965,http://purl.obolibrary.org/obo/CHEBI_83965,L-arginine derivative +16.9548485,CHEBI:83972,http://purl.obolibrary.org/obo/CHEBI_83972,3-methyl fatty acid anion +16.9548485,CHEBI:8405,http://purl.obolibrary.org/obo/CHEBI_8405,primaquine +16.9548485,CHEBI:84070,http://purl.obolibrary.org/obo/CHEBI_84070,sodium arsenate +16.9548485,CHEBI:84076,http://purl.obolibrary.org/obo/CHEBI_84076,L-histidine derivative +16.9548485,CHEBI:84129,http://purl.obolibrary.org/obo/CHEBI_84129,L-valine derivative +16.9548485,CHEBI:84135,http://purl.obolibrary.org/obo/CHEBI_84135,L-serine derivative +16.9548485,CHEBI:84314,http://purl.obolibrary.org/obo/CHEBI_84314,oligomycin mixture +16.9548485,CHEBI:84561,http://purl.obolibrary.org/obo/CHEBI_84561,"2,4-dinitrophenol(1-)" +16.9548485,CHEBI:84612,http://purl.obolibrary.org/obo/CHEBI_84612,8-(4-chlorophenylthio)-cAMP +16.9548485,CHEBI:8462,http://purl.obolibrary.org/obo/CHEBI_8462,promethazine hydrochloride +16.9548485,CHEBI:8482,http://purl.obolibrary.org/obo/CHEBI_8482,Propantheline bromide +16.9548485,CHEBI:84879,http://purl.obolibrary.org/obo/CHEBI_84879,nitroxyl +16.9548485,CHEBI:8493,http://purl.obolibrary.org/obo/CHEBI_8493,Propiverine +16.9548485,CHEBI:84940,http://purl.obolibrary.org/obo/CHEBI_84940,ethyl oleate +16.9548485,CHEBI:84997,http://purl.obolibrary.org/obo/CHEBI_84997,sodium gluconate +16.9548485,CHEBI:85078,http://purl.obolibrary.org/obo/CHEBI_85078,dapagliflozin +16.9548485,CHEBI:85138,http://purl.obolibrary.org/obo/CHEBI_85138,cobalt(II) acetate +16.9548485,CHEBI:85146,http://purl.obolibrary.org/obo/CHEBI_85146,carboxymethylcellulose +16.9548485,CHEBI:85249,http://purl.obolibrary.org/obo/CHEBI_85249,hydroxyethylcellulose +16.9548485,CHEBI:85309,http://purl.obolibrary.org/obo/CHEBI_85309,isoaspartate +16.9548485,CHEBI:85364,http://purl.obolibrary.org/obo/CHEBI_85364,ammonium bromide +16.9548485,CHEBI:85429,http://purl.obolibrary.org/obo/CHEBI_85429,phosphatidylethanol +16.9548485,CHEBI:85541,http://purl.obolibrary.org/obo/CHEBI_85541,elemental bismuth +16.9548485,CHEBI:85543,http://purl.obolibrary.org/obo/CHEBI_85543,bismuth ion +16.9548485,CHEBI:85639,http://purl.obolibrary.org/obo/CHEBI_85639,(9Z)-12-hydroxyoctadec-9-enoic acid +16.9548485,CHEBI:85688,http://purl.obolibrary.org/obo/CHEBI_85688,diacylglycerol 32:0 +16.9548485,CHEBI:85966,http://purl.obolibrary.org/obo/CHEBI_85966,ivabradine +16.9548485,CHEBI:8597,http://purl.obolibrary.org/obo/CHEBI_8597,protriptyline +16.9548485,CHEBI:85980,http://purl.obolibrary.org/obo/CHEBI_85980,eluxadoline +16.9548485,CHEBI:86158,http://purl.obolibrary.org/obo/CHEBI_86158,calcium chloride dihydrate +16.9548485,CHEBI:86290,http://purl.obolibrary.org/obo/CHEBI_86290,6-bromoindirubin-3'-oxime +16.9548485,CHEBI:86315,http://purl.obolibrary.org/obo/CHEBI_86315,methyl sulfide +16.9548485,CHEBI:86319,http://purl.obolibrary.org/obo/CHEBI_86319,25-hydroxyvitamin D2 +16.9548485,CHEBI:8633,http://purl.obolibrary.org/obo/CHEBI_8633,puerarin +16.9548485,CHEBI:86371,http://purl.obolibrary.org/obo/CHEBI_86371,"3,4-dihydroxybutyric acid" +16.9548485,CHEBI:8638,http://purl.obolibrary.org/obo/CHEBI_8638,"(9Z,11E,13Z)-octadecatrienoic acid" +16.9548485,CHEBI:86469,http://purl.obolibrary.org/obo/CHEBI_86469,peptidoglycosaminoglycan +16.9548485,CHEBI:86484,http://purl.obolibrary.org/obo/CHEBI_86484,methoxyacrylate strobilurin antifungal agent +16.9548485,CHEBI:86488,http://purl.obolibrary.org/obo/CHEBI_86488,methoxyiminoacetate strobilurin antifungal agent +16.9548485,CHEBI:86498,http://purl.obolibrary.org/obo/CHEBI_86498,hydroxylysine +16.9548485,CHEBI:86549,http://purl.obolibrary.org/obo/CHEBI_86549,"3,4-dimethoxycinnamic acid" +16.9548485,CHEBI:8707,http://purl.obolibrary.org/obo/CHEBI_8707,quetiapine +16.9548485,CHEBI:8710,http://purl.obolibrary.org/obo/CHEBI_8710,quillaic acid +16.9548485,CHEBI:87101,http://purl.obolibrary.org/obo/CHEBI_87101,triazole antifungal drug +16.9548485,CHEBI:87166,http://purl.obolibrary.org/obo/CHEBI_87166,3-hexenedioic acid +16.9548485,CHEBI:87248,http://purl.obolibrary.org/obo/CHEBI_87248,ethyl glucuronide +16.9548485,CHEBI:8729,http://purl.obolibrary.org/obo/CHEBI_8729,Quinoline-3-carboxamides +16.9548485,CHEBI:8758,http://purl.obolibrary.org/obo/CHEBI_8758,RNA (poly(U)) +16.9548485,CHEBI:87658,http://purl.obolibrary.org/obo/CHEBI_87658,decanoate ester +16.9548485,CHEBI:8828,http://purl.obolibrary.org/obo/CHEBI_8828,rhodamine 123 +16.9548485,CHEBI:8885,http://purl.obolibrary.org/obo/CHEBI_8885,rocuronium bromide +16.9548485,CHEBI:9009,http://purl.obolibrary.org/obo/CHEBI_9009,Salidroside +16.9548485,CHEBI:9017,http://purl.obolibrary.org/obo/CHEBI_9017,Salvianolic acid A +16.9548485,CHEBI:90320,http://purl.obolibrary.org/obo/CHEBI_90320,pyruvate ester +16.9548485,CHEBI:90740,http://purl.obolibrary.org/obo/CHEBI_90740,dihydronaphthalenes +16.9548485,CHEBI:9093,http://purl.obolibrary.org/obo/CHEBI_9093,selenocysteine +16.9548485,CHEBI:9123,http://purl.obolibrary.org/obo/CHEBI_9123,sertraline +16.9548485,CHEBI:9124,http://purl.obolibrary.org/obo/CHEBI_9124,sertraline hydrochloride +16.9548485,CHEBI:9150,http://purl.obolibrary.org/obo/CHEBI_9150,simvastatin +16.9548485,CHEBI:9180,http://purl.obolibrary.org/obo/CHEBI_9180,Sodium salicylate +16.9548485,CHEBI:9190,http://purl.obolibrary.org/obo/CHEBI_9190,solasodine +16.9548485,CHEBI:9198,http://purl.obolibrary.org/obo/CHEBI_9198,Sophoramine +16.9548485,CHEBI:9307,http://purl.obolibrary.org/obo/CHEBI_9307,succinimide +16.9548485,CHEBI:9330,http://purl.obolibrary.org/obo/CHEBI_9330,sulfamic acid +16.9548485,CHEBI:9448,http://purl.obolibrary.org/obo/CHEBI_9448,terbinafine +16.9548485,CHEBI:9450,http://purl.obolibrary.org/obo/CHEBI_9450,terbutaline sulfate +16.9548485,CHEBI:9468,http://purl.obolibrary.org/obo/CHEBI_9468,tetracaine +16.9548485,CHEBI:9479,http://purl.obolibrary.org/obo/CHEBI_9479,tetrahydroalstonine +16.9548485,CHEBI:9553,http://purl.obolibrary.org/obo/CHEBI_9553,thioglucoside +16.9548485,CHEBI:9561,http://purl.obolibrary.org/obo/CHEBI_9561,thiopental sodium +16.9548485,CHEBI:9619,http://purl.obolibrary.org/obo/CHEBI_9619,tolmetin sodium +16.9548485,CHEBI:9710,http://purl.obolibrary.org/obo/CHEBI_9710,trifluoperazine hydrochloride +16.9548485,CHEBI:9724,http://purl.obolibrary.org/obo/CHEBI_9724,Trilobolide +16.9548485,CHEBI:9750,http://purl.obolibrary.org/obo/CHEBI_9750,Triton X-100 +16.9548485,CHEBI:9753,http://purl.obolibrary.org/obo/CHEBI_9753,troglitazone +16.9548485,CHEBI:9878,http://purl.obolibrary.org/obo/CHEBI_9878,Unsaturated alcohol +16.9548485,CHEBI:9921,http://purl.obolibrary.org/obo/CHEBI_9921,valerenic acid +16.9548485,CHEBI:9944,http://purl.obolibrary.org/obo/CHEBI_9944,venlafaxine hydrochloride +16.9548485,CL:0000011,http://purl.obolibrary.org/obo/CL_0000011,migratory trunk neural crest cell +16.9548485,CL:0000208,http://purl.obolibrary.org/obo/CL_0000208,pH receptor cell +16.9548485,CL:0000279,http://purl.obolibrary.org/obo/CL_0000279,none +16.9548485,CL:0000310,http://purl.obolibrary.org/obo/CL_0000310,iron accumulating cell +16.9548485,CL:0000397,http://purl.obolibrary.org/obo/CL_0000397,ganglion interneuron +16.9548485,CL:0000435,http://purl.obolibrary.org/obo/CL_0000435,alkali secreting cell +16.9548485,CL:0000456,http://purl.obolibrary.org/obo/CL_0000456,mineralocorticoid secreting cell +16.9548485,CL:0000470,http://purl.obolibrary.org/obo/CL_0000470,digestive enzyme secreting cell +16.9548485,CL:0000495,http://purl.obolibrary.org/obo/CL_0000495,blue sensitive photoreceptor cell +16.9548485,CL:0000497,http://purl.obolibrary.org/obo/CL_0000497,red sensitive photoreceptor cell +16.9548485,CL:0000532,http://purl.obolibrary.org/obo/CL_0000532,CAP motoneuron +16.9548485,CL:0000534,http://purl.obolibrary.org/obo/CL_0000534,primary interneuron +16.9548485,CL:0000544,http://purl.obolibrary.org/obo/CL_0000544,slowly adapting mechanoreceptor cell +16.9548485,CL:0000600,http://purl.obolibrary.org/obo/CL_0000600,heterokaryon +16.9548485,CL:0000715,http://purl.obolibrary.org/obo/CL_0000715,embryonic crystal cell +16.9548485,CL:0000736,http://purl.obolibrary.org/obo/CL_0000736,embryonic gland hemocyte +16.9548485,CL:0000756,http://purl.obolibrary.org/obo/CL_0000756,type 4 cone bipolar cell (sensu Mus) +16.9548485,CL:0000762,http://purl.obolibrary.org/obo/CL_0000762,nucleated thrombocyte +16.9548485,CL:0000781,http://purl.obolibrary.org/obo/CL_0000781,mononuclear odontoclast +16.9548485,CL:0000797,http://purl.obolibrary.org/obo/CL_0000797,alpha-beta intraepithelial T cell +16.9548485,CL:0000810,http://purl.obolibrary.org/obo/CL_0000810,"CD4-positive, alpha-beta thymocyte" +16.9548485,CL:0000840,http://purl.obolibrary.org/obo/CL_0000840,immature conventional dendritic cell +16.9548485,CL:0000851,http://purl.obolibrary.org/obo/CL_0000851,neuromast mantle cell +16.9548485,CL:0000857,http://purl.obolibrary.org/obo/CL_0000857,slow muscle myoblast +16.9548485,CL:0000858,http://purl.obolibrary.org/obo/CL_0000858,fast muscle myoblast +16.9548485,CL:0000876,http://purl.obolibrary.org/obo/CL_0000876,splenic white pulp macrophage +16.9548485,CL:0000882,http://purl.obolibrary.org/obo/CL_0000882,thymic medullary macrophage +16.9548485,CL:0000883,http://purl.obolibrary.org/obo/CL_0000883,thymic cortical macrophage +16.9548485,CL:0000895,http://purl.obolibrary.org/obo/CL_0000895,"naive thymus-derived CD4-positive, alpha-beta T cell" +16.9548485,CL:0000940,http://purl.obolibrary.org/obo/CL_0000940,mucosal invariant T cell +16.9548485,CL:0000949,http://purl.obolibrary.org/obo/CL_0000949,IgD plasmablast +16.9548485,CL:0000950,http://purl.obolibrary.org/obo/CL_0000950,IgE plasmablast +16.9548485,CL:0000982,http://purl.obolibrary.org/obo/CL_0000982,IgG plasmablast +16.9548485,CL:0000983,http://purl.obolibrary.org/obo/CL_0000983,IgM plasmablast +16.9548485,CL:0001010,http://purl.obolibrary.org/obo/CL_0001010,mature dermal dendritic cell +16.9548485,CL:0002028,http://purl.obolibrary.org/obo/CL_0002028,basophil mast progenitor cell +16.9548485,CL:0002045,http://purl.obolibrary.org/obo/CL_0002045,Fraction A pre-pro B cell +16.9548485,CL:0002073,http://purl.obolibrary.org/obo/CL_0002073,transitional myocyte +16.9548485,CL:0002133,http://purl.obolibrary.org/obo/CL_0002133,stromal cell of ovarian cortex +16.9548485,CL:0002142,http://purl.obolibrary.org/obo/CL_0002142,dark cell of eccrine sweat gland +16.9548485,CL:0002146,http://purl.obolibrary.org/obo/CL_0002146,clear cell of eccrine sweat gland +16.9548485,CL:0002216,http://purl.obolibrary.org/obo/CL_0002216,intermediate muscle cell +16.9548485,CL:0002219,http://purl.obolibrary.org/obo/CL_0002219,anchoring trophoblast +16.9548485,CL:0002223,http://purl.obolibrary.org/obo/CL_0002223,anterior lens cell +16.9548485,CL:0002232,http://purl.obolibrary.org/obo/CL_0002232,epithelial cell of prostatic duct +16.9548485,CL:0002233,http://purl.obolibrary.org/obo/CL_0002233,epithelial cell of prostatic acinus +16.9548485,CL:0002239,http://purl.obolibrary.org/obo/CL_0002239,ooblast +16.9548485,CL:0002272,http://purl.obolibrary.org/obo/CL_0002272,motilin secreting cell +16.9548485,CL:0002294,http://purl.obolibrary.org/obo/CL_0002294,type-1 epithelial cell of thymus +16.9548485,CL:0002298,http://purl.obolibrary.org/obo/CL_0002298,type-5 epithelial cell of thymus +16.9548485,CL:0002326,http://purl.obolibrary.org/obo/CL_0002326,luminal epithelial cell of mammary gland +16.9548485,CL:0002373,http://purl.obolibrary.org/obo/CL_0002373,growth hormone releasing hormone secreting cell +16.9548485,CL:0002399,http://purl.obolibrary.org/obo/CL_0002399,CD1c-positive myeloid dendritic cell +16.9548485,CL:0002425,http://purl.obolibrary.org/obo/CL_0002425,early T lineage precursor +16.9548485,CL:0002441,http://purl.obolibrary.org/obo/CL_0002441,"CD94-positive natural killer cell, mouse" +16.9548485,CL:0002462,http://purl.obolibrary.org/obo/CL_0002462,adipose dendritic cell +16.9548485,CL:0002529,http://purl.obolibrary.org/obo/CL_0002529,CD1a-positive dermal dendritic cell +16.9548485,CL:0002541,http://purl.obolibrary.org/obo/CL_0002541,chorionic membrane mesenchymal stem cell +16.9548485,CL:0002557,http://purl.obolibrary.org/obo/CL_0002557,fibroblast of pulmonary artery +16.9548485,CL:0002569,http://purl.obolibrary.org/obo/CL_0002569,mesenchymal stem cell of umbilical cord +16.9548485,CL:0002594,http://purl.obolibrary.org/obo/CL_0002594,smooth muscle cell of the umbilical artery +16.9548485,CL:0002596,http://purl.obolibrary.org/obo/CL_0002596,smooth muscle cell of the carotid artery +16.9548485,CL:0002666,http://purl.obolibrary.org/obo/CL_0002666,type 2 otic fibrocyte +16.9548485,CL:0005002,http://purl.obolibrary.org/obo/CL_0005002,xanthoblast +16.9548485,CL:0007013,http://purl.obolibrary.org/obo/CL_0007013,terminally differentiated odontoblast +16.9548485,CL:0010011,http://purl.obolibrary.org/obo/CL_0010011,cerebral cortex GABAergic interneuron +16.9548485,CL:0010020,http://purl.obolibrary.org/obo/CL_0010020,cardiac glial cell +16.9548485,CL:1000296,http://purl.obolibrary.org/obo/CL_1000296,epithelial cell of urethra +16.9548485,CL:1000415,http://purl.obolibrary.org/obo/CL_1000415,epithelial cell of gall bladder +16.9548485,CL:1000436,http://purl.obolibrary.org/obo/CL_1000436,epithelial cell of lacrimal sac +16.9548485,CL:1000486,http://purl.obolibrary.org/obo/CL_1000486,basal cell of urothelium +16.9548485,CL:1000682,http://purl.obolibrary.org/obo/CL_1000682,kidney medulla interstitial cell +16.9548485,CL:1000699,http://purl.obolibrary.org/obo/CL_1000699,kidney resident dendritic cell +16.9548485,CL:1000850,http://purl.obolibrary.org/obo/CL_1000850,macula densa epithelial cell +16.9548485,CL:1000891,http://purl.obolibrary.org/obo/CL_1000891,kidney arterial blood vessel cell +16.9548485,CL:1000893,http://purl.obolibrary.org/obo/CL_1000893,kidney venous blood vessel cell +16.9548485,CL:1001036,http://purl.obolibrary.org/obo/CL_1001036,vasa recta cell +16.9548485,CL:1001045,http://purl.obolibrary.org/obo/CL_1001045,kidney cortex artery cell +16.9548485,CL:1001064,http://purl.obolibrary.org/obo/CL_1001064,kidney artery smooth muscle cell +16.9548485,CL:1001135,http://purl.obolibrary.org/obo/CL_1001135,arcuate artery cell +16.9548485,CL:1001214,http://purl.obolibrary.org/obo/CL_1001214,arcuate artery smooth muscle cell +16.9548485,CL:1001430,http://purl.obolibrary.org/obo/CL_1001430,urethra urothelial cell +16.9548485,CL:1001517,http://purl.obolibrary.org/obo/CL_1001517,stomach enteroendocrine cell +16.9548485,DRUGBANK:DB01461,http://purl.obolibrary.org/obo/DRUGBANK_DB01461,none +16.9548485,DRUGBANK:DB01464,http://purl.obolibrary.org/obo/DRUGBANK_DB01464,none +16.9548485,DRUGBANK:DB01503,http://purl.obolibrary.org/obo/DRUGBANK_DB01503,none +16.9548485,DRUGBANK:DB01518,http://purl.obolibrary.org/obo/DRUGBANK_DB01518,none +16.9548485,DRUGBANK:DB01547,http://purl.obolibrary.org/obo/DRUGBANK_DB01547,none +16.9548485,DRUGBANK:DB01562,http://purl.obolibrary.org/obo/DRUGBANK_DB01562,none +16.9548485,DRUGBANK:DB01573,http://purl.obolibrary.org/obo/DRUGBANK_DB01573,none +16.9548485,DRUGBANK:DB01659,http://purl.obolibrary.org/obo/DRUGBANK_DB01659,none +16.9548485,DRUGBANK:DB01664,http://purl.obolibrary.org/obo/DRUGBANK_DB01664,none +16.9548485,DRUGBANK:DB01675,http://purl.obolibrary.org/obo/DRUGBANK_DB01675,none +16.9548485,DRUGBANK:DB01682,http://purl.obolibrary.org/obo/DRUGBANK_DB01682,none +16.9548485,DRUGBANK:DB01687,http://purl.obolibrary.org/obo/DRUGBANK_DB01687,none +16.9548485,DRUGBANK:DB01689,http://purl.obolibrary.org/obo/DRUGBANK_DB01689,none +16.9548485,DRUGBANK:DB01691,http://purl.obolibrary.org/obo/DRUGBANK_DB01691,none +16.9548485,DRUGBANK:DB01695,http://purl.obolibrary.org/obo/DRUGBANK_DB01695,none +16.9548485,DRUGBANK:DB01697,http://purl.obolibrary.org/obo/DRUGBANK_DB01697,none +16.9548485,DRUGBANK:DB01701,http://purl.obolibrary.org/obo/DRUGBANK_DB01701,none +16.9548485,DRUGBANK:DB01706,http://purl.obolibrary.org/obo/DRUGBANK_DB01706,none +16.9548485,DRUGBANK:DB01767,http://purl.obolibrary.org/obo/DRUGBANK_DB01767,none +16.9548485,DRUGBANK:DB01821,http://purl.obolibrary.org/obo/DRUGBANK_DB01821,none +16.9548485,DRUGBANK:DB01840,http://purl.obolibrary.org/obo/DRUGBANK_DB01840,none +16.9548485,DRUGBANK:DB01847,http://purl.obolibrary.org/obo/DRUGBANK_DB01847,none +16.9548485,DRUGBANK:DB01887,http://purl.obolibrary.org/obo/DRUGBANK_DB01887,none +16.9548485,DRUGBANK:DB01938,http://purl.obolibrary.org/obo/DRUGBANK_DB01938,none +16.9548485,DRUGBANK:DB01969,http://purl.obolibrary.org/obo/DRUGBANK_DB01969,none +16.9548485,DRUGBANK:DB01986,http://purl.obolibrary.org/obo/DRUGBANK_DB01986,none +16.9548485,DRUGBANK:DB01994,http://purl.obolibrary.org/obo/DRUGBANK_DB01994,none +16.9548485,DRUGBANK:DB02009,http://purl.obolibrary.org/obo/DRUGBANK_DB02009,none +16.9548485,DRUGBANK:DB02026,http://purl.obolibrary.org/obo/DRUGBANK_DB02026,none +16.9548485,DRUGBANK:DB02071,http://purl.obolibrary.org/obo/DRUGBANK_DB02071,none +16.9548485,DRUGBANK:DB02103,http://purl.obolibrary.org/obo/DRUGBANK_DB02103,none +16.9548485,DRUGBANK:DB02118,http://purl.obolibrary.org/obo/DRUGBANK_DB02118,none +16.9548485,DRUGBANK:DB02126,http://purl.obolibrary.org/obo/DRUGBANK_DB02126,none +16.9548485,DRUGBANK:DB02143,http://purl.obolibrary.org/obo/DRUGBANK_DB02143,none +16.9548485,DRUGBANK:DB02144,http://purl.obolibrary.org/obo/DRUGBANK_DB02144,none +16.9548485,DRUGBANK:DB02151,http://purl.obolibrary.org/obo/DRUGBANK_DB02151,none +16.9548485,DRUGBANK:DB02159,http://purl.obolibrary.org/obo/DRUGBANK_DB02159,none +16.9548485,DRUGBANK:DB02198,http://purl.obolibrary.org/obo/DRUGBANK_DB02198,none +16.9548485,DRUGBANK:DB02215,http://purl.obolibrary.org/obo/DRUGBANK_DB02215,none +16.9548485,DRUGBANK:DB02247,http://purl.obolibrary.org/obo/DRUGBANK_DB02247,none +16.9548485,DRUGBANK:DB02270,http://purl.obolibrary.org/obo/DRUGBANK_DB02270,none +16.9548485,DRUGBANK:DB02297,http://purl.obolibrary.org/obo/DRUGBANK_DB02297,none +16.9548485,DRUGBANK:DB02310,http://purl.obolibrary.org/obo/DRUGBANK_DB02310,none +16.9548485,DRUGBANK:DB02312,http://purl.obolibrary.org/obo/DRUGBANK_DB02312,none +16.9548485,DRUGBANK:DB02358,http://purl.obolibrary.org/obo/DRUGBANK_DB02358,none +16.9548485,DRUGBANK:DB02369,http://purl.obolibrary.org/obo/DRUGBANK_DB02369,none +16.9548485,DRUGBANK:DB02376,http://purl.obolibrary.org/obo/DRUGBANK_DB02376,none +16.9548485,DRUGBANK:DB02386,http://purl.obolibrary.org/obo/DRUGBANK_DB02386,none +16.9548485,DRUGBANK:DB02393,http://purl.obolibrary.org/obo/DRUGBANK_DB02393,none +16.9548485,DRUGBANK:DB02405,http://purl.obolibrary.org/obo/DRUGBANK_DB02405,none +16.9548485,DRUGBANK:DB02407,http://purl.obolibrary.org/obo/DRUGBANK_DB02407,none +16.9548485,DRUGBANK:DB02415,http://purl.obolibrary.org/obo/DRUGBANK_DB02415,none +16.9548485,DRUGBANK:DB02427,http://purl.obolibrary.org/obo/DRUGBANK_DB02427,none +16.9548485,DRUGBANK:DB02434,http://purl.obolibrary.org/obo/DRUGBANK_DB02434,none +16.9548485,DRUGBANK:DB02466,http://purl.obolibrary.org/obo/DRUGBANK_DB02466,none +16.9548485,DRUGBANK:DB02469,http://purl.obolibrary.org/obo/DRUGBANK_DB02469,none +16.9548485,DRUGBANK:DB02479,http://purl.obolibrary.org/obo/DRUGBANK_DB02479,none +16.9548485,DRUGBANK:DB02482,http://purl.obolibrary.org/obo/DRUGBANK_DB02482,none +16.9548485,DRUGBANK:DB02492,http://purl.obolibrary.org/obo/DRUGBANK_DB02492,none +16.9548485,DRUGBANK:DB02499,http://purl.obolibrary.org/obo/DRUGBANK_DB02499,none +16.9548485,DRUGBANK:DB02607,http://purl.obolibrary.org/obo/DRUGBANK_DB02607,none +16.9548485,DRUGBANK:DB02613,http://purl.obolibrary.org/obo/DRUGBANK_DB02613,none +16.9548485,DRUGBANK:DB02616,http://purl.obolibrary.org/obo/DRUGBANK_DB02616,none +16.9548485,DRUGBANK:DB02622,http://purl.obolibrary.org/obo/DRUGBANK_DB02622,none +16.9548485,DRUGBANK:DB02623,http://purl.obolibrary.org/obo/DRUGBANK_DB02623,none +16.9548485,DRUGBANK:DB02627,http://purl.obolibrary.org/obo/DRUGBANK_DB02627,none +16.9548485,DRUGBANK:DB02639,http://purl.obolibrary.org/obo/DRUGBANK_DB02639,none +16.9548485,DRUGBANK:DB02664,http://purl.obolibrary.org/obo/DRUGBANK_DB02664,none +16.9548485,DRUGBANK:DB02667,http://purl.obolibrary.org/obo/DRUGBANK_DB02667,none +16.9548485,DRUGBANK:DB02669,http://purl.obolibrary.org/obo/DRUGBANK_DB02669,none +16.9548485,DRUGBANK:DB02685,http://purl.obolibrary.org/obo/DRUGBANK_DB02685,none +16.9548485,DRUGBANK:DB02722,http://purl.obolibrary.org/obo/DRUGBANK_DB02722,none +16.9548485,DRUGBANK:DB02731,http://purl.obolibrary.org/obo/DRUGBANK_DB02731,none +16.9548485,DRUGBANK:DB02753,http://purl.obolibrary.org/obo/DRUGBANK_DB02753,none +16.9548485,DRUGBANK:DB02759,http://purl.obolibrary.org/obo/DRUGBANK_DB02759,none +16.9548485,DRUGBANK:DB02770,http://purl.obolibrary.org/obo/DRUGBANK_DB02770,none +16.9548485,DRUGBANK:DB02780,http://purl.obolibrary.org/obo/DRUGBANK_DB02780,none +16.9548485,DRUGBANK:DB02801,http://purl.obolibrary.org/obo/DRUGBANK_DB02801,none +16.9548485,DRUGBANK:DB02805,http://purl.obolibrary.org/obo/DRUGBANK_DB02805,none +16.9548485,DRUGBANK:DB02807,http://purl.obolibrary.org/obo/DRUGBANK_DB02807,none +16.9548485,DRUGBANK:DB02809,http://purl.obolibrary.org/obo/DRUGBANK_DB02809,none +16.9548485,DRUGBANK:DB02828,http://purl.obolibrary.org/obo/DRUGBANK_DB02828,none +16.9548485,DRUGBANK:DB02834,http://purl.obolibrary.org/obo/DRUGBANK_DB02834,none +16.9548485,DRUGBANK:DB02836,http://purl.obolibrary.org/obo/DRUGBANK_DB02836,none +16.9548485,DRUGBANK:DB02864,http://purl.obolibrary.org/obo/DRUGBANK_DB02864,none +16.9548485,DRUGBANK:DB02883,http://purl.obolibrary.org/obo/DRUGBANK_DB02883,none +16.9548485,DRUGBANK:DB02906,http://purl.obolibrary.org/obo/DRUGBANK_DB02906,none +16.9548485,DRUGBANK:DB02919,http://purl.obolibrary.org/obo/DRUGBANK_DB02919,none +16.9548485,DRUGBANK:DB02931,http://purl.obolibrary.org/obo/DRUGBANK_DB02931,none +16.9548485,DRUGBANK:DB02934,http://purl.obolibrary.org/obo/DRUGBANK_DB02934,none +16.9548485,DRUGBANK:DB02966,http://purl.obolibrary.org/obo/DRUGBANK_DB02966,none +16.9548485,DRUGBANK:DB02976,http://purl.obolibrary.org/obo/DRUGBANK_DB02976,none +16.9548485,DRUGBANK:DB02984,http://purl.obolibrary.org/obo/DRUGBANK_DB02984,none +16.9548485,DRUGBANK:DB02988,http://purl.obolibrary.org/obo/DRUGBANK_DB02988,none +16.9548485,DRUGBANK:DB02990,http://purl.obolibrary.org/obo/DRUGBANK_DB02990,none +16.9548485,DRUGBANK:DB02993,http://purl.obolibrary.org/obo/DRUGBANK_DB02993,none +16.9548485,DRUGBANK:DB02995,http://purl.obolibrary.org/obo/DRUGBANK_DB02995,none +16.9548485,DRUGBANK:DB03060,http://purl.obolibrary.org/obo/DRUGBANK_DB03060,none +16.9548485,DRUGBANK:DB03064,http://purl.obolibrary.org/obo/DRUGBANK_DB03064,none +16.9548485,DRUGBANK:DB03109,http://purl.obolibrary.org/obo/DRUGBANK_DB03109,none +16.9548485,DRUGBANK:DB03118,http://purl.obolibrary.org/obo/DRUGBANK_DB03118,none +16.9548485,DRUGBANK:DB03130,http://purl.obolibrary.org/obo/DRUGBANK_DB03130,none +16.9548485,DRUGBANK:DB03164,http://purl.obolibrary.org/obo/DRUGBANK_DB03164,none +16.9548485,DRUGBANK:DB03179,http://purl.obolibrary.org/obo/DRUGBANK_DB03179,none +16.9548485,DRUGBANK:DB03192,http://purl.obolibrary.org/obo/DRUGBANK_DB03192,none +16.9548485,DRUGBANK:DB03194,http://purl.obolibrary.org/obo/DRUGBANK_DB03194,none +16.9548485,DRUGBANK:DB03195,http://purl.obolibrary.org/obo/DRUGBANK_DB03195,none +16.9548485,DRUGBANK:DB03210,http://purl.obolibrary.org/obo/DRUGBANK_DB03210,none +16.9548485,DRUGBANK:DB03213,http://purl.obolibrary.org/obo/DRUGBANK_DB03213,none +16.9548485,DRUGBANK:DB03218,http://purl.obolibrary.org/obo/DRUGBANK_DB03218,none +16.9548485,DRUGBANK:DB03220,http://purl.obolibrary.org/obo/DRUGBANK_DB03220,none +16.9548485,DRUGBANK:DB03251,http://purl.obolibrary.org/obo/DRUGBANK_DB03251,none +16.9548485,DRUGBANK:DB03264,http://purl.obolibrary.org/obo/DRUGBANK_DB03264,none +16.9548485,DRUGBANK:DB03293,http://purl.obolibrary.org/obo/DRUGBANK_DB03293,none +16.9548485,DRUGBANK:DB03299,http://purl.obolibrary.org/obo/DRUGBANK_DB03299,none +16.9548485,DRUGBANK:DB03320,http://purl.obolibrary.org/obo/DRUGBANK_DB03320,none +16.9548485,DRUGBANK:DB03321,http://purl.obolibrary.org/obo/DRUGBANK_DB03321,none +16.9548485,DRUGBANK:DB03338,http://purl.obolibrary.org/obo/DRUGBANK_DB03338,none +16.9548485,DRUGBANK:DB03343,http://purl.obolibrary.org/obo/DRUGBANK_DB03343,none +16.9548485,DRUGBANK:DB03349,http://purl.obolibrary.org/obo/DRUGBANK_DB03349,none +16.9548485,DRUGBANK:DB03350,http://purl.obolibrary.org/obo/DRUGBANK_DB03350,none +16.9548485,DRUGBANK:DB03351,http://purl.obolibrary.org/obo/DRUGBANK_DB03351,none +16.9548485,DRUGBANK:DB03354,http://purl.obolibrary.org/obo/DRUGBANK_DB03354,none +16.9548485,DRUGBANK:DB03365,http://purl.obolibrary.org/obo/DRUGBANK_DB03365,none +16.9548485,DRUGBANK:DB03367,http://purl.obolibrary.org/obo/DRUGBANK_DB03367,none +16.9548485,DRUGBANK:DB03390,http://purl.obolibrary.org/obo/DRUGBANK_DB03390,none +16.9548485,DRUGBANK:DB03411,http://purl.obolibrary.org/obo/DRUGBANK_DB03411,none +16.9548485,DRUGBANK:DB03426,http://purl.obolibrary.org/obo/DRUGBANK_DB03426,none +16.9548485,DRUGBANK:DB03427,http://purl.obolibrary.org/obo/DRUGBANK_DB03427,none +16.9548485,DRUGBANK:DB03429,http://purl.obolibrary.org/obo/DRUGBANK_DB03429,none +16.9548485,DRUGBANK:DB03471,http://purl.obolibrary.org/obo/DRUGBANK_DB03471,none +16.9548485,DRUGBANK:DB03472,http://purl.obolibrary.org/obo/DRUGBANK_DB03472,none +16.9548485,DRUGBANK:DB03473,http://purl.obolibrary.org/obo/DRUGBANK_DB03473,none +16.9548485,DRUGBANK:DB03509,http://purl.obolibrary.org/obo/DRUGBANK_DB03509,none +16.9548485,DRUGBANK:DB03517,http://purl.obolibrary.org/obo/DRUGBANK_DB03517,none +16.9548485,DRUGBANK:DB03530,http://purl.obolibrary.org/obo/DRUGBANK_DB03530,none +16.9548485,DRUGBANK:DB03571,http://purl.obolibrary.org/obo/DRUGBANK_DB03571,none +16.9548485,DRUGBANK:DB03574,http://purl.obolibrary.org/obo/DRUGBANK_DB03574,none +16.9548485,DRUGBANK:DB03629,http://purl.obolibrary.org/obo/DRUGBANK_DB03629,none +16.9548485,DRUGBANK:DB03637,http://purl.obolibrary.org/obo/DRUGBANK_DB03637,none +16.9548485,DRUGBANK:DB03645,http://purl.obolibrary.org/obo/DRUGBANK_DB03645,none +16.9548485,DRUGBANK:DB03649,http://purl.obolibrary.org/obo/DRUGBANK_DB03649,none +16.9548485,DRUGBANK:DB03670,http://purl.obolibrary.org/obo/DRUGBANK_DB03670,none +16.9548485,DRUGBANK:DB03679,http://purl.obolibrary.org/obo/DRUGBANK_DB03679,none +16.9548485,DRUGBANK:DB03682,http://purl.obolibrary.org/obo/DRUGBANK_DB03682,none +16.9548485,DRUGBANK:DB03730,http://purl.obolibrary.org/obo/DRUGBANK_DB03730,none +16.9548485,DRUGBANK:DB03734,http://purl.obolibrary.org/obo/DRUGBANK_DB03734,none +16.9548485,DRUGBANK:DB03764,http://purl.obolibrary.org/obo/DRUGBANK_DB03764,none +16.9548485,DRUGBANK:DB03782,http://purl.obolibrary.org/obo/DRUGBANK_DB03782,none +16.9548485,DRUGBANK:DB03830,http://purl.obolibrary.org/obo/DRUGBANK_DB03830,none +16.9548485,DRUGBANK:DB03850,http://purl.obolibrary.org/obo/DRUGBANK_DB03850,none +16.9548485,DRUGBANK:DB03856,http://purl.obolibrary.org/obo/DRUGBANK_DB03856,none +16.9548485,DRUGBANK:DB03876,http://purl.obolibrary.org/obo/DRUGBANK_DB03876,none +16.9548485,DRUGBANK:DB03898,http://purl.obolibrary.org/obo/DRUGBANK_DB03898,none +16.9548485,DRUGBANK:DB03905,http://purl.obolibrary.org/obo/DRUGBANK_DB03905,none +16.9548485,DRUGBANK:DB03911,http://purl.obolibrary.org/obo/DRUGBANK_DB03911,none +16.9548485,DRUGBANK:DB03918,http://purl.obolibrary.org/obo/DRUGBANK_DB03918,none +16.9548485,DRUGBANK:DB03920,http://purl.obolibrary.org/obo/DRUGBANK_DB03920,none +16.9548485,DRUGBANK:DB03928,http://purl.obolibrary.org/obo/DRUGBANK_DB03928,none +16.9548485,DRUGBANK:DB03931,http://purl.obolibrary.org/obo/DRUGBANK_DB03931,none +16.9548485,DRUGBANK:DB03945,http://purl.obolibrary.org/obo/DRUGBANK_DB03945,none +16.9548485,DRUGBANK:DB03962,http://purl.obolibrary.org/obo/DRUGBANK_DB03962,none +16.9548485,DRUGBANK:DB03985,http://purl.obolibrary.org/obo/DRUGBANK_DB03985,none +16.9548485,DRUGBANK:DB04009,http://purl.obolibrary.org/obo/DRUGBANK_DB04009,none +16.9548485,DRUGBANK:DB04015,http://purl.obolibrary.org/obo/DRUGBANK_DB04015,none +16.9548485,DRUGBANK:DB04118,http://purl.obolibrary.org/obo/DRUGBANK_DB04118,none +16.9548485,DRUGBANK:DB04119,http://purl.obolibrary.org/obo/DRUGBANK_DB04119,none +16.9548485,DRUGBANK:DB04120,http://purl.obolibrary.org/obo/DRUGBANK_DB04120,none +16.9548485,DRUGBANK:DB04121,http://purl.obolibrary.org/obo/DRUGBANK_DB04121,none +16.9548485,DRUGBANK:DB04136,http://purl.obolibrary.org/obo/DRUGBANK_DB04136,none +16.9548485,DRUGBANK:DB04152,http://purl.obolibrary.org/obo/DRUGBANK_DB04152,none +16.9548485,DRUGBANK:DB04197,http://purl.obolibrary.org/obo/DRUGBANK_DB04197,none +16.9548485,DRUGBANK:DB04217,http://purl.obolibrary.org/obo/DRUGBANK_DB04217,none +16.9548485,DRUGBANK:DB04218,http://purl.obolibrary.org/obo/DRUGBANK_DB04218,none +16.9548485,DRUGBANK:DB04237,http://purl.obolibrary.org/obo/DRUGBANK_DB04237,none +16.9548485,DRUGBANK:DB04294,http://purl.obolibrary.org/obo/DRUGBANK_DB04294,none +16.9548485,DRUGBANK:DB04312,http://purl.obolibrary.org/obo/DRUGBANK_DB04312,none +16.9548485,DRUGBANK:DB04320,http://purl.obolibrary.org/obo/DRUGBANK_DB04320,none +16.9548485,DRUGBANK:DB04336,http://purl.obolibrary.org/obo/DRUGBANK_DB04336,none +16.9548485,DRUGBANK:DB04341,http://purl.obolibrary.org/obo/DRUGBANK_DB04341,none +16.9548485,DRUGBANK:DB04351,http://purl.obolibrary.org/obo/DRUGBANK_DB04351,none +16.9548485,DRUGBANK:DB04360,http://purl.obolibrary.org/obo/DRUGBANK_DB04360,none +16.9548485,DRUGBANK:DB04362,http://purl.obolibrary.org/obo/DRUGBANK_DB04362,none +16.9548485,DRUGBANK:DB04374,http://purl.obolibrary.org/obo/DRUGBANK_DB04374,none +16.9548485,DRUGBANK:DB04376,http://purl.obolibrary.org/obo/DRUGBANK_DB04376,none +16.9548485,DRUGBANK:DB04389,http://purl.obolibrary.org/obo/DRUGBANK_DB04389,none +16.9548485,DRUGBANK:DB04395,http://purl.obolibrary.org/obo/DRUGBANK_DB04395,none +16.9548485,DRUGBANK:DB04397,http://purl.obolibrary.org/obo/DRUGBANK_DB04397,none +16.9548485,DRUGBANK:DB04433,http://purl.obolibrary.org/obo/DRUGBANK_DB04433,none +16.9548485,DRUGBANK:DB04467,http://purl.obolibrary.org/obo/DRUGBANK_DB04467,none +16.9548485,DRUGBANK:DB04515,http://purl.obolibrary.org/obo/DRUGBANK_DB04515,none +16.9548485,DRUGBANK:DB04530,http://purl.obolibrary.org/obo/DRUGBANK_DB04530,none +16.9548485,DRUGBANK:DB04554,http://purl.obolibrary.org/obo/DRUGBANK_DB04554,none +16.9548485,DRUGBANK:DB04585,http://purl.obolibrary.org/obo/DRUGBANK_DB04585,none +16.9548485,DRUGBANK:DB04600,http://purl.obolibrary.org/obo/DRUGBANK_DB04600,none +16.9548485,DRUGBANK:DB04601,http://purl.obolibrary.org/obo/DRUGBANK_DB04601,none +16.9548485,DRUGBANK:DB04636,http://purl.obolibrary.org/obo/DRUGBANK_DB04636,none +16.9548485,DRUGBANK:DB04678,http://purl.obolibrary.org/obo/DRUGBANK_DB04678,none +16.9548485,DRUGBANK:DB04693,http://purl.obolibrary.org/obo/DRUGBANK_DB04693,none +16.9548485,DRUGBANK:DB04713,http://purl.obolibrary.org/obo/DRUGBANK_DB04713,none +16.9548485,DRUGBANK:DB04763,http://purl.obolibrary.org/obo/DRUGBANK_DB04763,none +16.9548485,DRUGBANK:DB04783,http://purl.obolibrary.org/obo/DRUGBANK_DB04783,none +16.9548485,DRUGBANK:DB04804,http://purl.obolibrary.org/obo/DRUGBANK_DB04804,none +16.9548485,DRUGBANK:DB04850,http://purl.obolibrary.org/obo/DRUGBANK_DB04850,none +16.9548485,DRUGBANK:DB04929,http://purl.obolibrary.org/obo/DRUGBANK_DB04929,none +16.9548485,DRUGBANK:DB04962,http://purl.obolibrary.org/obo/DRUGBANK_DB04962,none +16.9548485,DRUGBANK:DB05001,http://purl.obolibrary.org/obo/DRUGBANK_DB05001,none +16.9548485,DRUGBANK:DB05020,http://purl.obolibrary.org/obo/DRUGBANK_DB05020,none +16.9548485,DRUGBANK:DB05023,http://purl.obolibrary.org/obo/DRUGBANK_DB05023,none +16.9548485,DRUGBANK:DB05033,http://purl.obolibrary.org/obo/DRUGBANK_DB05033,none +16.9548485,DRUGBANK:DB05044,http://purl.obolibrary.org/obo/DRUGBANK_DB05044,none +16.9548485,DRUGBANK:DB05053,http://purl.obolibrary.org/obo/DRUGBANK_DB05053,none +16.9548485,DRUGBANK:DB05069,http://purl.obolibrary.org/obo/DRUGBANK_DB05069,none +16.9548485,DRUGBANK:DB05071,http://purl.obolibrary.org/obo/DRUGBANK_DB05071,none +16.9548485,DRUGBANK:DB05072,http://purl.obolibrary.org/obo/DRUGBANK_DB05072,none +16.9548485,DRUGBANK:DB05078,http://purl.obolibrary.org/obo/DRUGBANK_DB05078,none +16.9548485,DRUGBANK:DB05090,http://purl.obolibrary.org/obo/DRUGBANK_DB05090,none +16.9548485,DRUGBANK:DB05124,http://purl.obolibrary.org/obo/DRUGBANK_DB05124,none +16.9548485,DRUGBANK:DB05125,http://purl.obolibrary.org/obo/DRUGBANK_DB05125,none +16.9548485,DRUGBANK:DB05126,http://purl.obolibrary.org/obo/DRUGBANK_DB05126,none +16.9548485,DRUGBANK:DB05144,http://purl.obolibrary.org/obo/DRUGBANK_DB05144,none +16.9548485,DRUGBANK:DB05151,http://purl.obolibrary.org/obo/DRUGBANK_DB05151,none +16.9548485,DRUGBANK:DB05156,http://purl.obolibrary.org/obo/DRUGBANK_DB05156,none +16.9548485,DRUGBANK:DB05164,http://purl.obolibrary.org/obo/DRUGBANK_DB05164,none +16.9548485,DRUGBANK:DB05165,http://purl.obolibrary.org/obo/DRUGBANK_DB05165,none +16.9548485,DRUGBANK:DB05172,http://purl.obolibrary.org/obo/DRUGBANK_DB05172,none +16.9548485,DRUGBANK:DB05182,http://purl.obolibrary.org/obo/DRUGBANK_DB05182,none +16.9548485,DRUGBANK:DB05194,http://purl.obolibrary.org/obo/DRUGBANK_DB05194,none +16.9548485,DRUGBANK:DB05201,http://purl.obolibrary.org/obo/DRUGBANK_DB05201,none +16.9548485,DRUGBANK:DB05230,http://purl.obolibrary.org/obo/DRUGBANK_DB05230,none +16.9548485,DRUGBANK:DB05242,http://purl.obolibrary.org/obo/DRUGBANK_DB05242,none +16.9548485,DRUGBANK:DB05264,http://purl.obolibrary.org/obo/DRUGBANK_DB05264,none +16.9548485,DRUGBANK:DB05268,http://purl.obolibrary.org/obo/DRUGBANK_DB05268,none +16.9548485,DRUGBANK:DB05301,http://purl.obolibrary.org/obo/DRUGBANK_DB05301,none +16.9548485,DRUGBANK:DB05310,http://purl.obolibrary.org/obo/DRUGBANK_DB05310,none +16.9548485,DRUGBANK:DB05325,http://purl.obolibrary.org/obo/DRUGBANK_DB05325,none +16.9548485,DRUGBANK:DB05328,http://purl.obolibrary.org/obo/DRUGBANK_DB05328,none +16.9548485,DRUGBANK:DB05330,http://purl.obolibrary.org/obo/DRUGBANK_DB05330,none +16.9548485,DRUGBANK:DB05337,http://purl.obolibrary.org/obo/DRUGBANK_DB05337,none +16.9548485,DRUGBANK:DB05339,http://purl.obolibrary.org/obo/DRUGBANK_DB05339,none +16.9548485,DRUGBANK:DB05367,http://purl.obolibrary.org/obo/DRUGBANK_DB05367,none +16.9548485,DRUGBANK:DB05410,http://purl.obolibrary.org/obo/DRUGBANK_DB05410,none +16.9548485,DRUGBANK:DB05412,http://purl.obolibrary.org/obo/DRUGBANK_DB05412,none +16.9548485,DRUGBANK:DB05414,http://purl.obolibrary.org/obo/DRUGBANK_DB05414,none +16.9548485,DRUGBANK:DB05437,http://purl.obolibrary.org/obo/DRUGBANK_DB05437,none +16.9548485,DRUGBANK:DB05447,http://purl.obolibrary.org/obo/DRUGBANK_DB05447,none +16.9548485,DRUGBANK:DB05454,http://purl.obolibrary.org/obo/DRUGBANK_DB05454,none +16.9548485,DRUGBANK:DB05456,http://purl.obolibrary.org/obo/DRUGBANK_DB05456,none +16.9548485,DRUGBANK:DB05495,http://purl.obolibrary.org/obo/DRUGBANK_DB05495,none +16.9548485,DRUGBANK:DB05518,http://purl.obolibrary.org/obo/DRUGBANK_DB05518,none +16.9548485,DRUGBANK:DB05560,http://purl.obolibrary.org/obo/DRUGBANK_DB05560,none +16.9548485,DRUGBANK:DB05631,http://purl.obolibrary.org/obo/DRUGBANK_DB05631,none +16.9548485,DRUGBANK:DB05670,http://purl.obolibrary.org/obo/DRUGBANK_DB05670,none +16.9548485,DRUGBANK:DB05678,http://purl.obolibrary.org/obo/DRUGBANK_DB05678,none +16.9548485,DRUGBANK:DB05712,http://purl.obolibrary.org/obo/DRUGBANK_DB05712,none +16.9548485,DRUGBANK:DB05723,http://purl.obolibrary.org/obo/DRUGBANK_DB05723,none +16.9548485,DRUGBANK:DB05766,http://purl.obolibrary.org/obo/DRUGBANK_DB05766,none +16.9548485,DRUGBANK:DB05771,http://purl.obolibrary.org/obo/DRUGBANK_DB05771,none +16.9548485,DRUGBANK:DB05805,http://purl.obolibrary.org/obo/DRUGBANK_DB05805,none +16.9548485,DRUGBANK:DB05815,http://purl.obolibrary.org/obo/DRUGBANK_DB05815,none +16.9548485,DRUGBANK:DB05836,http://purl.obolibrary.org/obo/DRUGBANK_DB05836,none +16.9548485,DRUGBANK:DB05846,http://purl.obolibrary.org/obo/DRUGBANK_DB05846,none +16.9548485,DRUGBANK:DB05849,http://purl.obolibrary.org/obo/DRUGBANK_DB05849,none +16.9548485,DRUGBANK:DB05879,http://purl.obolibrary.org/obo/DRUGBANK_DB05879,none +16.9548485,DRUGBANK:DB05884,http://purl.obolibrary.org/obo/DRUGBANK_DB05884,none +16.9548485,DRUGBANK:DB05887,http://purl.obolibrary.org/obo/DRUGBANK_DB05887,none +16.9548485,DRUGBANK:DB05888,http://purl.obolibrary.org/obo/DRUGBANK_DB05888,none +16.9548485,DRUGBANK:DB05905,http://purl.obolibrary.org/obo/DRUGBANK_DB05905,none +16.9548485,DRUGBANK:DB05911,http://purl.obolibrary.org/obo/DRUGBANK_DB05911,none +16.9548485,DRUGBANK:DB05919,http://purl.obolibrary.org/obo/DRUGBANK_DB05919,none +16.9548485,DRUGBANK:DB05924,http://purl.obolibrary.org/obo/DRUGBANK_DB05924,none +16.9548485,DRUGBANK:DB05961,http://purl.obolibrary.org/obo/DRUGBANK_DB05961,none +16.9548485,DRUGBANK:DB05967,http://purl.obolibrary.org/obo/DRUGBANK_DB05967,none +16.9548485,DRUGBANK:DB06042,http://purl.obolibrary.org/obo/DRUGBANK_DB06042,none +16.9548485,DRUGBANK:DB06137,http://purl.obolibrary.org/obo/DRUGBANK_DB06137,none +16.9548485,DRUGBANK:DB06225,http://purl.obolibrary.org/obo/DRUGBANK_DB06225,none +16.9548485,DRUGBANK:DB06299,http://purl.obolibrary.org/obo/DRUGBANK_DB06299,none +16.9548485,DRUGBANK:DB06303,http://purl.obolibrary.org/obo/DRUGBANK_DB06303,none +16.9548485,DRUGBANK:DB06304,http://purl.obolibrary.org/obo/DRUGBANK_DB06304,none +16.9548485,DRUGBANK:DB06307,http://purl.obolibrary.org/obo/DRUGBANK_DB06307,none +16.9548485,DRUGBANK:DB06325,http://purl.obolibrary.org/obo/DRUGBANK_DB06325,none +16.9548485,DRUGBANK:DB06356,http://purl.obolibrary.org/obo/DRUGBANK_DB06356,none +16.9548485,DRUGBANK:DB06464,http://purl.obolibrary.org/obo/DRUGBANK_DB06464,none +16.9548485,DRUGBANK:DB06475,http://purl.obolibrary.org/obo/DRUGBANK_DB06475,none +16.9548485,DRUGBANK:DB06485,http://purl.obolibrary.org/obo/DRUGBANK_DB06485,none +16.9548485,DRUGBANK:DB06499,http://purl.obolibrary.org/obo/DRUGBANK_DB06499,none +16.9548485,DRUGBANK:DB06519,http://purl.obolibrary.org/obo/DRUGBANK_DB06519,none +16.9548485,DRUGBANK:DB06830,http://purl.obolibrary.org/obo/DRUGBANK_DB06830,none +16.9548485,DRUGBANK:DB06935,http://purl.obolibrary.org/obo/DRUGBANK_DB06935,none +16.9548485,DRUGBANK:DB06962,http://purl.obolibrary.org/obo/DRUGBANK_DB06962,none +16.9548485,DRUGBANK:DB07096,http://purl.obolibrary.org/obo/DRUGBANK_DB07096,none +16.9548485,DRUGBANK:DB07108,http://purl.obolibrary.org/obo/DRUGBANK_DB07108,none +16.9548485,DRUGBANK:DB07138,http://purl.obolibrary.org/obo/DRUGBANK_DB07138,none +16.9548485,DRUGBANK:DB07186,http://purl.obolibrary.org/obo/DRUGBANK_DB07186,none +16.9548485,DRUGBANK:DB07262,http://purl.obolibrary.org/obo/DRUGBANK_DB07262,none +16.9548485,DRUGBANK:DB07266,http://purl.obolibrary.org/obo/DRUGBANK_DB07266,none +16.9548485,DRUGBANK:DB07271,http://purl.obolibrary.org/obo/DRUGBANK_DB07271,none +16.9548485,DRUGBANK:DB07292,http://purl.obolibrary.org/obo/DRUGBANK_DB07292,none +16.9548485,DRUGBANK:DB07314,http://purl.obolibrary.org/obo/DRUGBANK_DB07314,none +16.9548485,DRUGBANK:DB07342,http://purl.obolibrary.org/obo/DRUGBANK_DB07342,none +16.9548485,DRUGBANK:DB07418,http://purl.obolibrary.org/obo/DRUGBANK_DB07418,none +16.9548485,DRUGBANK:DB07430,http://purl.obolibrary.org/obo/DRUGBANK_DB07430,none +16.9548485,DRUGBANK:DB07492,http://purl.obolibrary.org/obo/DRUGBANK_DB07492,none +16.9548485,DRUGBANK:DB07506,http://purl.obolibrary.org/obo/DRUGBANK_DB07506,none +16.9548485,DRUGBANK:DB07513,http://purl.obolibrary.org/obo/DRUGBANK_DB07513,none +16.9548485,DRUGBANK:DB07553,http://purl.obolibrary.org/obo/DRUGBANK_DB07553,none +16.9548485,DRUGBANK:DB07575,http://purl.obolibrary.org/obo/DRUGBANK_DB07575,none +16.9548485,DRUGBANK:DB07577,http://purl.obolibrary.org/obo/DRUGBANK_DB07577,none +16.9548485,DRUGBANK:DB07578,http://purl.obolibrary.org/obo/DRUGBANK_DB07578,none +16.9548485,DRUGBANK:DB07603,http://purl.obolibrary.org/obo/DRUGBANK_DB07603,none +16.9548485,DRUGBANK:DB07632,http://purl.obolibrary.org/obo/DRUGBANK_DB07632,none +16.9548485,DRUGBANK:DB07668,http://purl.obolibrary.org/obo/DRUGBANK_DB07668,none +16.9548485,DRUGBANK:DB07701,http://purl.obolibrary.org/obo/DRUGBANK_DB07701,none +16.9548485,DRUGBANK:DB07721,http://purl.obolibrary.org/obo/DRUGBANK_DB07721,none +16.9548485,DRUGBANK:DB07724,http://purl.obolibrary.org/obo/DRUGBANK_DB07724,none +16.9548485,DRUGBANK:DB07773,http://purl.obolibrary.org/obo/DRUGBANK_DB07773,none +16.9548485,DRUGBANK:DB07794,http://purl.obolibrary.org/obo/DRUGBANK_DB07794,none +16.9548485,DRUGBANK:DB07805,http://purl.obolibrary.org/obo/DRUGBANK_DB07805,none +16.9548485,DRUGBANK:DB07829,http://purl.obolibrary.org/obo/DRUGBANK_DB07829,none +16.9548485,DRUGBANK:DB07884,http://purl.obolibrary.org/obo/DRUGBANK_DB07884,none +16.9548485,DRUGBANK:DB08017,http://purl.obolibrary.org/obo/DRUGBANK_DB08017,none +16.9548485,DRUGBANK:DB08085,http://purl.obolibrary.org/obo/DRUGBANK_DB08085,none +16.9548485,DRUGBANK:DB08165,http://purl.obolibrary.org/obo/DRUGBANK_DB08165,none +16.9548485,DRUGBANK:DB08190,http://purl.obolibrary.org/obo/DRUGBANK_DB08190,none +16.9548485,DRUGBANK:DB08191,http://purl.obolibrary.org/obo/DRUGBANK_DB08191,none +16.9548485,DRUGBANK:DB08214,http://purl.obolibrary.org/obo/DRUGBANK_DB08214,none +16.9548485,DRUGBANK:DB08264,http://purl.obolibrary.org/obo/DRUGBANK_DB08264,none +16.9548485,DRUGBANK:DB08278,http://purl.obolibrary.org/obo/DRUGBANK_DB08278,none +16.9548485,DRUGBANK:DB08288,http://purl.obolibrary.org/obo/DRUGBANK_DB08288,none +16.9548485,DRUGBANK:DB08299,http://purl.obolibrary.org/obo/DRUGBANK_DB08299,none +16.9548485,DRUGBANK:DB08325,http://purl.obolibrary.org/obo/DRUGBANK_DB08325,none +16.9548485,DRUGBANK:DB08342,http://purl.obolibrary.org/obo/DRUGBANK_DB08342,none +16.9548485,DRUGBANK:DB08358,http://purl.obolibrary.org/obo/DRUGBANK_DB08358,none +16.9548485,DRUGBANK:DB08382,http://purl.obolibrary.org/obo/DRUGBANK_DB08382,none +16.9548485,DRUGBANK:DB08406,http://purl.obolibrary.org/obo/DRUGBANK_DB08406,none +16.9548485,DRUGBANK:DB08451,http://purl.obolibrary.org/obo/DRUGBANK_DB08451,none +16.9548485,DRUGBANK:DB08508,http://purl.obolibrary.org/obo/DRUGBANK_DB08508,none +16.9548485,DRUGBANK:DB08512,http://purl.obolibrary.org/obo/DRUGBANK_DB08512,none +16.9548485,DRUGBANK:DB08547,http://purl.obolibrary.org/obo/DRUGBANK_DB08547,none +16.9548485,DRUGBANK:DB08577,http://purl.obolibrary.org/obo/DRUGBANK_DB08577,none +16.9548485,DRUGBANK:DB08659,http://purl.obolibrary.org/obo/DRUGBANK_DB08659,none +16.9548485,DRUGBANK:DB08673,http://purl.obolibrary.org/obo/DRUGBANK_DB08673,none +16.9548485,DRUGBANK:DB08773,http://purl.obolibrary.org/obo/DRUGBANK_DB08773,none +16.9548485,DRUGBANK:DB08858,http://purl.obolibrary.org/obo/DRUGBANK_DB08858,none +16.9548485,DRUGBANK:DB08926,http://purl.obolibrary.org/obo/DRUGBANK_DB08926,none +16.9548485,DRUGBANK:DB09148,http://purl.obolibrary.org/obo/DRUGBANK_DB09148,none +16.9548485,DRUGBANK:DB09171,http://purl.obolibrary.org/obo/DRUGBANK_DB09171,none +16.9548485,DRUGBANK:DB09188,http://purl.obolibrary.org/obo/DRUGBANK_DB09188,none +16.9548485,DRUGBANK:DB09189,http://purl.obolibrary.org/obo/DRUGBANK_DB09189,none +16.9548485,DRUGBANK:DB09193,http://purl.obolibrary.org/obo/DRUGBANK_DB09193,none +16.9548485,DRUGBANK:DB09243,http://purl.obolibrary.org/obo/DRUGBANK_DB09243,none +16.9548485,DRUGBANK:DB09252,http://purl.obolibrary.org/obo/DRUGBANK_DB09252,none +16.9548485,DRUGBANK:DB09266,http://purl.obolibrary.org/obo/DRUGBANK_DB09266,none +16.9548485,DRUGBANK:DB09347,http://purl.obolibrary.org/obo/DRUGBANK_DB09347,none +16.9548485,DRUGBANK:DB09377,http://purl.obolibrary.org/obo/DRUGBANK_DB09377,none +16.9548485,DRUGBANK:DB09425,http://purl.obolibrary.org/obo/DRUGBANK_DB09425,none +16.9548485,DRUGBANK:DB09479,http://purl.obolibrary.org/obo/DRUGBANK_DB09479,none +16.9548485,DRUGBANK:DB10061,http://purl.obolibrary.org/obo/DRUGBANK_DB10061,none +16.9548485,DRUGBANK:DB10313,http://purl.obolibrary.org/obo/DRUGBANK_DB10313,none +16.9548485,DRUGBANK:DB10315,http://purl.obolibrary.org/obo/DRUGBANK_DB10315,none +16.9548485,DRUGBANK:DB10340,http://purl.obolibrary.org/obo/DRUGBANK_DB10340,none +16.9548485,DRUGBANK:DB10354,http://purl.obolibrary.org/obo/DRUGBANK_DB10354,none +16.9548485,DRUGBANK:DB10356,http://purl.obolibrary.org/obo/DRUGBANK_DB10356,none +16.9548485,DRUGBANK:DB10392,http://purl.obolibrary.org/obo/DRUGBANK_DB10392,none +16.9548485,DRUGBANK:DB10395,http://purl.obolibrary.org/obo/DRUGBANK_DB10395,none +16.9548485,DRUGBANK:DB10426,http://purl.obolibrary.org/obo/DRUGBANK_DB10426,none +16.9548485,DRUGBANK:DB10435,http://purl.obolibrary.org/obo/DRUGBANK_DB10435,none +16.9548485,DRUGBANK:DB10467,http://purl.obolibrary.org/obo/DRUGBANK_DB10467,none +16.9548485,DRUGBANK:DB10470,http://purl.obolibrary.org/obo/DRUGBANK_DB10470,none +16.9548485,DRUGBANK:DB10478,http://purl.obolibrary.org/obo/DRUGBANK_DB10478,none +16.9548485,DRUGBANK:DB10484,http://purl.obolibrary.org/obo/DRUGBANK_DB10484,none +16.9548485,DRUGBANK:DB10485,http://purl.obolibrary.org/obo/DRUGBANK_DB10485,none +16.9548485,DRUGBANK:DB10487,http://purl.obolibrary.org/obo/DRUGBANK_DB10487,none +16.9548485,DRUGBANK:DB10728,http://purl.obolibrary.org/obo/DRUGBANK_DB10728,none +16.9548485,DRUGBANK:DB10750,http://purl.obolibrary.org/obo/DRUGBANK_DB10750,none +16.9548485,DRUGBANK:DB10768,http://purl.obolibrary.org/obo/DRUGBANK_DB10768,none +16.9548485,DRUGBANK:DB10837,http://purl.obolibrary.org/obo/DRUGBANK_DB10837,none +16.9548485,DRUGBANK:DB10839,http://purl.obolibrary.org/obo/DRUGBANK_DB10839,none +16.9548485,DRUGBANK:DB10936,http://purl.obolibrary.org/obo/DRUGBANK_DB10936,none +16.9548485,DRUGBANK:DB10942,http://purl.obolibrary.org/obo/DRUGBANK_DB10942,none +16.9548485,DRUGBANK:DB11025,http://purl.obolibrary.org/obo/DRUGBANK_DB11025,none +16.9548485,DRUGBANK:DB11033,http://purl.obolibrary.org/obo/DRUGBANK_DB11033,none +16.9548485,DRUGBANK:DB11054,http://purl.obolibrary.org/obo/DRUGBANK_DB11054,none +16.9548485,DRUGBANK:DB11069,http://purl.obolibrary.org/obo/DRUGBANK_DB11069,none +16.9548485,DRUGBANK:DB11169,http://purl.obolibrary.org/obo/DRUGBANK_DB11169,none +16.9548485,DRUGBANK:DB11189,http://purl.obolibrary.org/obo/DRUGBANK_DB11189,none +16.9548485,DRUGBANK:DB11226,http://purl.obolibrary.org/obo/DRUGBANK_DB11226,none +16.9548485,DRUGBANK:DB11234,http://purl.obolibrary.org/obo/DRUGBANK_DB11234,none +16.9548485,DRUGBANK:DB11261,http://purl.obolibrary.org/obo/DRUGBANK_DB11261,none +16.9548485,DRUGBANK:DB11265,http://purl.obolibrary.org/obo/DRUGBANK_DB11265,none +16.9548485,DRUGBANK:DB11279,http://purl.obolibrary.org/obo/DRUGBANK_DB11279,none +16.9548485,DRUGBANK:DB11291,http://purl.obolibrary.org/obo/DRUGBANK_DB11291,none +16.9548485,DRUGBANK:DB11297,http://purl.obolibrary.org/obo/DRUGBANK_DB11297,none +16.9548485,DRUGBANK:DB11349,http://purl.obolibrary.org/obo/DRUGBANK_DB11349,none +16.9548485,DRUGBANK:DB11572,http://purl.obolibrary.org/obo/DRUGBANK_DB11572,none +16.9548485,DRUGBANK:DB11686,http://purl.obolibrary.org/obo/DRUGBANK_DB11686,none +16.9548485,DRUGBANK:DB11710,http://purl.obolibrary.org/obo/DRUGBANK_DB11710,none +16.9548485,DRUGBANK:DB11719,http://purl.obolibrary.org/obo/DRUGBANK_DB11719,none +16.9548485,DRUGBANK:DB11775,http://purl.obolibrary.org/obo/DRUGBANK_DB11775,none +16.9548485,DRUGBANK:DB11786,http://purl.obolibrary.org/obo/DRUGBANK_DB11786,none +16.9548485,DRUGBANK:DB11794,http://purl.obolibrary.org/obo/DRUGBANK_DB11794,none +16.9548485,DRUGBANK:DB11806,http://purl.obolibrary.org/obo/DRUGBANK_DB11806,none +16.9548485,DRUGBANK:DB11863,http://purl.obolibrary.org/obo/DRUGBANK_DB11863,none +16.9548485,DRUGBANK:DB11902,http://purl.obolibrary.org/obo/DRUGBANK_DB11902,none +16.9548485,DRUGBANK:DB11970,http://purl.obolibrary.org/obo/DRUGBANK_DB11970,none +16.9548485,DRUGBANK:DB12005,http://purl.obolibrary.org/obo/DRUGBANK_DB12005,none +16.9548485,DRUGBANK:DB12014,http://purl.obolibrary.org/obo/DRUGBANK_DB12014,none +16.9548485,DRUGBANK:DB12022,http://purl.obolibrary.org/obo/DRUGBANK_DB12022,none +16.9548485,DRUGBANK:DB12068,http://purl.obolibrary.org/obo/DRUGBANK_DB12068,none +16.9548485,DRUGBANK:DB12074,http://purl.obolibrary.org/obo/DRUGBANK_DB12074,none +16.9548485,DRUGBANK:DB12075,http://purl.obolibrary.org/obo/DRUGBANK_DB12075,none +16.9548485,DRUGBANK:DB12096,http://purl.obolibrary.org/obo/DRUGBANK_DB12096,none +16.9548485,DRUGBANK:DB12099,http://purl.obolibrary.org/obo/DRUGBANK_DB12099,none +16.9548485,DRUGBANK:DB12106,http://purl.obolibrary.org/obo/DRUGBANK_DB12106,none +16.9548485,DRUGBANK:DB12122,http://purl.obolibrary.org/obo/DRUGBANK_DB12122,none +16.9548485,DRUGBANK:DB12133,http://purl.obolibrary.org/obo/DRUGBANK_DB12133,none +16.9548485,DRUGBANK:DB12135,http://purl.obolibrary.org/obo/DRUGBANK_DB12135,none +16.9548485,DRUGBANK:DB12170,http://purl.obolibrary.org/obo/DRUGBANK_DB12170,none +16.9548485,DRUGBANK:DB12188,http://purl.obolibrary.org/obo/DRUGBANK_DB12188,none +16.9548485,DRUGBANK:DB12219,http://purl.obolibrary.org/obo/DRUGBANK_DB12219,none +16.9548485,DRUGBANK:DB12229,http://purl.obolibrary.org/obo/DRUGBANK_DB12229,none +16.9548485,DRUGBANK:DB12272,http://purl.obolibrary.org/obo/DRUGBANK_DB12272,none +16.9548485,DRUGBANK:DB12284,http://purl.obolibrary.org/obo/DRUGBANK_DB12284,none +16.9548485,DRUGBANK:DB12299,http://purl.obolibrary.org/obo/DRUGBANK_DB12299,none +16.9548485,DRUGBANK:DB12373,http://purl.obolibrary.org/obo/DRUGBANK_DB12373,none +16.9548485,DRUGBANK:DB12375,http://purl.obolibrary.org/obo/DRUGBANK_DB12375,none +16.9548485,DRUGBANK:DB12382,http://purl.obolibrary.org/obo/DRUGBANK_DB12382,none +16.9548485,DRUGBANK:DB12393,http://purl.obolibrary.org/obo/DRUGBANK_DB12393,none +16.9548485,DRUGBANK:DB12398,http://purl.obolibrary.org/obo/DRUGBANK_DB12398,none +16.9548485,DRUGBANK:DB12419,http://purl.obolibrary.org/obo/DRUGBANK_DB12419,none +16.9548485,DRUGBANK:DB12421,http://purl.obolibrary.org/obo/DRUGBANK_DB12421,none +16.9548485,DRUGBANK:DB12435,http://purl.obolibrary.org/obo/DRUGBANK_DB12435,none +16.9548485,DRUGBANK:DB12464,http://purl.obolibrary.org/obo/DRUGBANK_DB12464,none +16.9548485,DRUGBANK:DB12468,http://purl.obolibrary.org/obo/DRUGBANK_DB12468,none +16.9548485,DRUGBANK:DB12490,http://purl.obolibrary.org/obo/DRUGBANK_DB12490,none +16.9548485,DRUGBANK:DB12493,http://purl.obolibrary.org/obo/DRUGBANK_DB12493,none +16.9548485,DRUGBANK:DB12511,http://purl.obolibrary.org/obo/DRUGBANK_DB12511,none +16.9548485,DRUGBANK:DB12527,http://purl.obolibrary.org/obo/DRUGBANK_DB12527,none +16.9548485,DRUGBANK:DB12535,http://purl.obolibrary.org/obo/DRUGBANK_DB12535,none +16.9548485,DRUGBANK:DB12563,http://purl.obolibrary.org/obo/DRUGBANK_DB12563,none +16.9548485,DRUGBANK:DB12575,http://purl.obolibrary.org/obo/DRUGBANK_DB12575,none +16.9548485,DRUGBANK:DB12631,http://purl.obolibrary.org/obo/DRUGBANK_DB12631,none +16.9548485,DRUGBANK:DB12632,http://purl.obolibrary.org/obo/DRUGBANK_DB12632,none +16.9548485,DRUGBANK:DB12634,http://purl.obolibrary.org/obo/DRUGBANK_DB12634,none +16.9548485,DRUGBANK:DB12636,http://purl.obolibrary.org/obo/DRUGBANK_DB12636,none +16.9548485,DRUGBANK:DB12639,http://purl.obolibrary.org/obo/DRUGBANK_DB12639,none +16.9548485,DRUGBANK:DB12641,http://purl.obolibrary.org/obo/DRUGBANK_DB12641,none +16.9548485,DRUGBANK:DB12675,http://purl.obolibrary.org/obo/DRUGBANK_DB12675,none +16.9548485,DRUGBANK:DB12694,http://purl.obolibrary.org/obo/DRUGBANK_DB12694,none +16.9548485,DRUGBANK:DB12719,http://purl.obolibrary.org/obo/DRUGBANK_DB12719,none +16.9548485,DRUGBANK:DB12720,http://purl.obolibrary.org/obo/DRUGBANK_DB12720,none +16.9548485,DRUGBANK:DB12724,http://purl.obolibrary.org/obo/DRUGBANK_DB12724,none +16.9548485,DRUGBANK:DB12731,http://purl.obolibrary.org/obo/DRUGBANK_DB12731,none +16.9548485,DRUGBANK:DB12786,http://purl.obolibrary.org/obo/DRUGBANK_DB12786,none +16.9548485,DRUGBANK:DB12810,http://purl.obolibrary.org/obo/DRUGBANK_DB12810,none +16.9548485,DRUGBANK:DB12826,http://purl.obolibrary.org/obo/DRUGBANK_DB12826,none +16.9548485,DRUGBANK:DB12850,http://purl.obolibrary.org/obo/DRUGBANK_DB12850,none +16.9548485,DRUGBANK:DB12853,http://purl.obolibrary.org/obo/DRUGBANK_DB12853,none +16.9548485,DRUGBANK:DB12857,http://purl.obolibrary.org/obo/DRUGBANK_DB12857,none +16.9548485,DRUGBANK:DB12884,http://purl.obolibrary.org/obo/DRUGBANK_DB12884,none +16.9548485,DRUGBANK:DB12899,http://purl.obolibrary.org/obo/DRUGBANK_DB12899,none +16.9548485,DRUGBANK:DB12910,http://purl.obolibrary.org/obo/DRUGBANK_DB12910,none +16.9548485,DRUGBANK:DB12953,http://purl.obolibrary.org/obo/DRUGBANK_DB12953,none +16.9548485,DRUGBANK:DB12955,http://purl.obolibrary.org/obo/DRUGBANK_DB12955,none +16.9548485,DRUGBANK:DB12972,http://purl.obolibrary.org/obo/DRUGBANK_DB12972,none +16.9548485,DRUGBANK:DB12998,http://purl.obolibrary.org/obo/DRUGBANK_DB12998,none +16.9548485,DRUGBANK:DB13016,http://purl.obolibrary.org/obo/DRUGBANK_DB13016,none +16.9548485,DRUGBANK:DB13021,http://purl.obolibrary.org/obo/DRUGBANK_DB13021,none +16.9548485,DRUGBANK:DB13102,http://purl.obolibrary.org/obo/DRUGBANK_DB13102,none +16.9548485,DRUGBANK:DB13106,http://purl.obolibrary.org/obo/DRUGBANK_DB13106,none +16.9548485,DRUGBANK:DB13107,http://purl.obolibrary.org/obo/DRUGBANK_DB13107,none +16.9548485,DRUGBANK:DB13121,http://purl.obolibrary.org/obo/DRUGBANK_DB13121,none +16.9548485,DRUGBANK:DB13126,http://purl.obolibrary.org/obo/DRUGBANK_DB13126,none +16.9548485,DRUGBANK:DB13146,http://purl.obolibrary.org/obo/DRUGBANK_DB13146,none +16.9548485,DRUGBANK:DB13157,http://purl.obolibrary.org/obo/DRUGBANK_DB13157,none +16.9548485,DRUGBANK:DB13224,http://purl.obolibrary.org/obo/DRUGBANK_DB13224,none +16.9548485,DRUGBANK:DB13235,http://purl.obolibrary.org/obo/DRUGBANK_DB13235,none +16.9548485,DRUGBANK:DB13241,http://purl.obolibrary.org/obo/DRUGBANK_DB13241,none +16.9548485,DRUGBANK:DB13275,http://purl.obolibrary.org/obo/DRUGBANK_DB13275,none +16.9548485,DRUGBANK:DB13291,http://purl.obolibrary.org/obo/DRUGBANK_DB13291,none +16.9548485,DRUGBANK:DB13302,http://purl.obolibrary.org/obo/DRUGBANK_DB13302,none +16.9548485,DRUGBANK:DB13305,http://purl.obolibrary.org/obo/DRUGBANK_DB13305,none +16.9548485,DRUGBANK:DB13332,http://purl.obolibrary.org/obo/DRUGBANK_DB13332,none +16.9548485,DRUGBANK:DB13342,http://purl.obolibrary.org/obo/DRUGBANK_DB13342,none +16.9548485,DRUGBANK:DB13349,http://purl.obolibrary.org/obo/DRUGBANK_DB13349,none +16.9548485,DRUGBANK:DB13356,http://purl.obolibrary.org/obo/DRUGBANK_DB13356,none +16.9548485,DRUGBANK:DB13367,http://purl.obolibrary.org/obo/DRUGBANK_DB13367,none +16.9548485,DRUGBANK:DB13412,http://purl.obolibrary.org/obo/DRUGBANK_DB13412,none +16.9548485,DRUGBANK:DB13428,http://purl.obolibrary.org/obo/DRUGBANK_DB13428,none +16.9548485,DRUGBANK:DB13445,http://purl.obolibrary.org/obo/DRUGBANK_DB13445,none +16.9548485,DRUGBANK:DB13525,http://purl.obolibrary.org/obo/DRUGBANK_DB13525,none +16.9548485,DRUGBANK:DB13529,http://purl.obolibrary.org/obo/DRUGBANK_DB13529,none +16.9548485,DRUGBANK:DB13558,http://purl.obolibrary.org/obo/DRUGBANK_DB13558,none +16.9548485,DRUGBANK:DB13566,http://purl.obolibrary.org/obo/DRUGBANK_DB13566,none +16.9548485,DRUGBANK:DB13576,http://purl.obolibrary.org/obo/DRUGBANK_DB13576,none +16.9548485,DRUGBANK:DB13579,http://purl.obolibrary.org/obo/DRUGBANK_DB13579,none +16.9548485,DRUGBANK:DB13596,http://purl.obolibrary.org/obo/DRUGBANK_DB13596,none +16.9548485,DRUGBANK:DB13608,http://purl.obolibrary.org/obo/DRUGBANK_DB13608,none +16.9548485,DRUGBANK:DB13614,http://purl.obolibrary.org/obo/DRUGBANK_DB13614,none +16.9548485,DRUGBANK:DB13632,http://purl.obolibrary.org/obo/DRUGBANK_DB13632,none +16.9548485,DRUGBANK:DB13636,http://purl.obolibrary.org/obo/DRUGBANK_DB13636,none +16.9548485,DRUGBANK:DB13659,http://purl.obolibrary.org/obo/DRUGBANK_DB13659,none +16.9548485,DRUGBANK:DB13663,http://purl.obolibrary.org/obo/DRUGBANK_DB13663,none +16.9548485,DRUGBANK:DB13696,http://purl.obolibrary.org/obo/DRUGBANK_DB13696,none +16.9548485,DRUGBANK:DB13764,http://purl.obolibrary.org/obo/DRUGBANK_DB13764,none +16.9548485,DRUGBANK:DB13799,http://purl.obolibrary.org/obo/DRUGBANK_DB13799,none +16.9548485,DRUGBANK:DB13812,http://purl.obolibrary.org/obo/DRUGBANK_DB13812,none +16.9548485,DRUGBANK:DB13826,http://purl.obolibrary.org/obo/DRUGBANK_DB13826,none +16.9548485,DRUGBANK:DB13910,http://purl.obolibrary.org/obo/DRUGBANK_DB13910,none +16.9548485,DRUGBANK:DB13935,http://purl.obolibrary.org/obo/DRUGBANK_DB13935,none +16.9548485,DRUGBANK:DB13936,http://purl.obolibrary.org/obo/DRUGBANK_DB13936,none +16.9548485,DRUGBANK:DB14080,http://purl.obolibrary.org/obo/DRUGBANK_DB14080,none +16.9548485,DRUGBANK:DB14117,http://purl.obolibrary.org/obo/DRUGBANK_DB14117,none +16.9548485,DRUGBANK:DB14130,http://purl.obolibrary.org/obo/DRUGBANK_DB14130,none +16.9548485,DRUGBANK:DB14174,http://purl.obolibrary.org/obo/DRUGBANK_DB14174,none +16.9548485,DRUGBANK:DB14200,http://purl.obolibrary.org/obo/DRUGBANK_DB14200,none +16.9548485,DRUGBANK:DB14231,http://purl.obolibrary.org/obo/DRUGBANK_DB14231,none +16.9548485,DRUGBANK:DB14236,http://purl.obolibrary.org/obo/DRUGBANK_DB14236,none +16.9548485,DRUGBANK:DB14280,http://purl.obolibrary.org/obo/DRUGBANK_DB14280,none +16.9548485,DRUGBANK:DB14289,http://purl.obolibrary.org/obo/DRUGBANK_DB14289,none +16.9548485,DRUGBANK:DB14308,http://purl.obolibrary.org/obo/DRUGBANK_DB14308,none +16.9548485,DRUGBANK:DB14314,http://purl.obolibrary.org/obo/DRUGBANK_DB14314,none +16.9548485,DRUGBANK:DB14332,http://purl.obolibrary.org/obo/DRUGBANK_DB14332,none +16.9548485,DRUGBANK:DB14341,http://purl.obolibrary.org/obo/DRUGBANK_DB14341,none +16.9548485,DRUGBANK:DB14355,http://purl.obolibrary.org/obo/DRUGBANK_DB14355,none +16.9548485,DRUGBANK:DB14528,http://purl.obolibrary.org/obo/DRUGBANK_DB14528,none +16.9548485,DRUGBANK:DB14555,http://purl.obolibrary.org/obo/DRUGBANK_DB14555,none +16.9548485,DRUGBANK:DB14628,http://purl.obolibrary.org/obo/DRUGBANK_DB14628,none +16.9548485,DRUGBANK:DB14629,http://purl.obolibrary.org/obo/DRUGBANK_DB14629,none +16.9548485,DRUGBANK:DB14637,http://purl.obolibrary.org/obo/DRUGBANK_DB14637,none +16.9548485,DRUGBANK:DB14769,http://purl.obolibrary.org/obo/DRUGBANK_DB14769,none +16.9548485,DRUGBANK:DB14775,http://purl.obolibrary.org/obo/DRUGBANK_DB14775,none +16.9548485,DRUGBANK:DB14779,http://purl.obolibrary.org/obo/DRUGBANK_DB14779,none +16.9548485,DRUGBANK:DB14781,http://purl.obolibrary.org/obo/DRUGBANK_DB14781,none +16.9548485,DRUGBANK:DB14786,http://purl.obolibrary.org/obo/DRUGBANK_DB14786,none +16.9548485,DRUGBANK:DB14793,http://purl.obolibrary.org/obo/DRUGBANK_DB14793,none +16.9548485,DRUGBANK:DB14796,http://purl.obolibrary.org/obo/DRUGBANK_DB14796,none +16.9548485,DRUGBANK:DB14798,http://purl.obolibrary.org/obo/DRUGBANK_DB14798,none +16.9548485,DRUGBANK:DB14799,http://purl.obolibrary.org/obo/DRUGBANK_DB14799,none +16.9548485,DRUGBANK:DB14823,http://purl.obolibrary.org/obo/DRUGBANK_DB14823,none +16.9548485,DRUGBANK:DB14825,http://purl.obolibrary.org/obo/DRUGBANK_DB14825,none +16.9548485,DRUGBANK:DB14841,http://purl.obolibrary.org/obo/DRUGBANK_DB14841,none +16.9548485,DRUGBANK:DB14846,http://purl.obolibrary.org/obo/DRUGBANK_DB14846,none +16.9548485,DRUGBANK:DB14848,http://purl.obolibrary.org/obo/DRUGBANK_DB14848,none +16.9548485,DRUGBANK:DB14851,http://purl.obolibrary.org/obo/DRUGBANK_DB14851,none +16.9548485,DRUGBANK:DB14874,http://purl.obolibrary.org/obo/DRUGBANK_DB14874,none +16.9548485,DRUGBANK:DB14883,http://purl.obolibrary.org/obo/DRUGBANK_DB14883,none +16.9548485,DRUGBANK:DB14899,http://purl.obolibrary.org/obo/DRUGBANK_DB14899,none +16.9548485,DRUGBANK:DB14918,http://purl.obolibrary.org/obo/DRUGBANK_DB14918,none +16.9548485,DRUGBANK:DB14925,http://purl.obolibrary.org/obo/DRUGBANK_DB14925,none +16.9548485,DRUGBANK:DB14935,http://purl.obolibrary.org/obo/DRUGBANK_DB14935,none +16.9548485,DRUGBANK:DB14944,http://purl.obolibrary.org/obo/DRUGBANK_DB14944,none +16.9548485,DRUGBANK:DB14946,http://purl.obolibrary.org/obo/DRUGBANK_DB14946,none +16.9548485,DRUGBANK:DB14950,http://purl.obolibrary.org/obo/DRUGBANK_DB14950,none +16.9548485,DRUGBANK:DB14957,http://purl.obolibrary.org/obo/DRUGBANK_DB14957,none +16.9548485,DRUGBANK:DB14964,http://purl.obolibrary.org/obo/DRUGBANK_DB14964,none +16.9548485,DRUGBANK:DB14965,http://purl.obolibrary.org/obo/DRUGBANK_DB14965,none +16.9548485,DRUGBANK:DB14984,http://purl.obolibrary.org/obo/DRUGBANK_DB14984,none +16.9548485,DRUGBANK:DB14987,http://purl.obolibrary.org/obo/DRUGBANK_DB14987,none +16.9548485,DRUGBANK:DB14992,http://purl.obolibrary.org/obo/DRUGBANK_DB14992,none +16.9548485,DRUGBANK:DB15005,http://purl.obolibrary.org/obo/DRUGBANK_DB15005,none +16.9548485,DRUGBANK:DB15017,http://purl.obolibrary.org/obo/DRUGBANK_DB15017,none +16.9548485,DRUGBANK:DB15023,http://purl.obolibrary.org/obo/DRUGBANK_DB15023,none +16.9548485,DRUGBANK:DB15042,http://purl.obolibrary.org/obo/DRUGBANK_DB15042,none +16.9548485,DRUGBANK:DB15047,http://purl.obolibrary.org/obo/DRUGBANK_DB15047,none +16.9548485,DRUGBANK:DB15048,http://purl.obolibrary.org/obo/DRUGBANK_DB15048,none +16.9548485,DRUGBANK:DB15068,http://purl.obolibrary.org/obo/DRUGBANK_DB15068,none +16.9548485,DRUGBANK:DB15072,http://purl.obolibrary.org/obo/DRUGBANK_DB15072,none +16.9548485,DRUGBANK:DB15104,http://purl.obolibrary.org/obo/DRUGBANK_DB15104,none +16.9548485,DRUGBANK:DB15110,http://purl.obolibrary.org/obo/DRUGBANK_DB15110,none +16.9548485,DRUGBANK:DB15121,http://purl.obolibrary.org/obo/DRUGBANK_DB15121,none +16.9548485,DRUGBANK:DB15124,http://purl.obolibrary.org/obo/DRUGBANK_DB15124,none +16.9548485,DRUGBANK:DB15125,http://purl.obolibrary.org/obo/DRUGBANK_DB15125,none +16.9548485,DRUGBANK:DB15129,http://purl.obolibrary.org/obo/DRUGBANK_DB15129,none +16.9548485,DRUGBANK:DB15137,http://purl.obolibrary.org/obo/DRUGBANK_DB15137,none +16.9548485,DRUGBANK:DB15147,http://purl.obolibrary.org/obo/DRUGBANK_DB15147,none +16.9548485,DRUGBANK:DB15148,http://purl.obolibrary.org/obo/DRUGBANK_DB15148,none +16.9548485,DRUGBANK:DB15149,http://purl.obolibrary.org/obo/DRUGBANK_DB15149,none +16.9548485,DRUGBANK:DB15152,http://purl.obolibrary.org/obo/DRUGBANK_DB15152,none +16.9548485,DRUGBANK:DB15153,http://purl.obolibrary.org/obo/DRUGBANK_DB15153,none +16.9548485,DRUGBANK:DB15158,http://purl.obolibrary.org/obo/DRUGBANK_DB15158,none +16.9548485,DRUGBANK:DB15177,http://purl.obolibrary.org/obo/DRUGBANK_DB15177,none +16.9548485,DRUGBANK:DB15178,http://purl.obolibrary.org/obo/DRUGBANK_DB15178,none +16.9548485,DRUGBANK:DB15194,http://purl.obolibrary.org/obo/DRUGBANK_DB15194,none +16.9548485,DRUGBANK:DB15195,http://purl.obolibrary.org/obo/DRUGBANK_DB15195,none +16.9548485,DRUGBANK:DB15247,http://purl.obolibrary.org/obo/DRUGBANK_DB15247,none +16.9548485,DRUGBANK:DB15278,http://purl.obolibrary.org/obo/DRUGBANK_DB15278,none +16.9548485,DRUGBANK:DB15279,http://purl.obolibrary.org/obo/DRUGBANK_DB15279,none +16.9548485,DRUGBANK:DB15286,http://purl.obolibrary.org/obo/DRUGBANK_DB15286,none +16.9548485,DRUGBANK:DB15295,http://purl.obolibrary.org/obo/DRUGBANK_DB15295,none +16.9548485,DRUGBANK:DB15297,http://purl.obolibrary.org/obo/DRUGBANK_DB15297,none +16.9548485,DRUGBANK:DB15315,http://purl.obolibrary.org/obo/DRUGBANK_DB15315,none +16.9548485,DRUGBANK:DB15345,http://purl.obolibrary.org/obo/DRUGBANK_DB15345,none +16.9548485,DRUGBANK:DB15346,http://purl.obolibrary.org/obo/DRUGBANK_DB15346,none +16.9548485,DRUGBANK:DB15349,http://purl.obolibrary.org/obo/DRUGBANK_DB15349,none +16.9548485,DRUGBANK:DB15362,http://purl.obolibrary.org/obo/DRUGBANK_DB15362,none +16.9548485,DRUGBANK:DB15363,http://purl.obolibrary.org/obo/DRUGBANK_DB15363,none +16.9548485,DRUGBANK:DB15371,http://purl.obolibrary.org/obo/DRUGBANK_DB15371,none +16.9548485,DRUGBANK:DB15387,http://purl.obolibrary.org/obo/DRUGBANK_DB15387,none +16.9548485,DRUGBANK:DB15391,http://purl.obolibrary.org/obo/DRUGBANK_DB15391,none +16.9548485,DRUGBANK:DB15397,http://purl.obolibrary.org/obo/DRUGBANK_DB15397,none +16.9548485,DRUGBANK:DB15403,http://purl.obolibrary.org/obo/DRUGBANK_DB15403,none +16.9548485,DRUGBANK:DB15421,http://purl.obolibrary.org/obo/DRUGBANK_DB15421,none +16.9548485,DRUGBANK:DB15423,http://purl.obolibrary.org/obo/DRUGBANK_DB15423,none +16.9548485,DRUGBANK:DB15424,http://purl.obolibrary.org/obo/DRUGBANK_DB15424,none +16.9548485,DRUGBANK:DB15434,http://purl.obolibrary.org/obo/DRUGBANK_DB15434,none +16.9548485,DRUGBANK:DB15453,http://purl.obolibrary.org/obo/DRUGBANK_DB15453,none +16.9548485,DRUGBANK:DB15460,http://purl.obolibrary.org/obo/DRUGBANK_DB15460,none +16.9548485,DRUGBANK:DB15468,http://purl.obolibrary.org/obo/DRUGBANK_DB15468,none +16.9548485,DRUGBANK:DB15593,http://purl.obolibrary.org/obo/DRUGBANK_DB15593,none +16.9548485,DRUGBANK:DB15617,http://purl.obolibrary.org/obo/DRUGBANK_DB15617,none +16.9548485,DRUGBANK:DB15630,http://purl.obolibrary.org/obo/DRUGBANK_DB15630,none +16.9548485,DRUGBANK:DB15636,http://purl.obolibrary.org/obo/DRUGBANK_DB15636,none +16.9548485,DRUGBANK:DB15643,http://purl.obolibrary.org/obo/DRUGBANK_DB15643,none +16.9548485,DRUGBANK:DB15651,http://purl.obolibrary.org/obo/DRUGBANK_DB15651,none +16.9548485,DRUGBANK:DB15657,http://purl.obolibrary.org/obo/DRUGBANK_DB15657,none +16.9548485,DRUGBANK:DB15662,http://purl.obolibrary.org/obo/DRUGBANK_DB15662,none +16.9548485,DRUGBANK:DB15664,http://purl.obolibrary.org/obo/DRUGBANK_DB15664,none +16.9548485,DRUGBANK:DB15670,http://purl.obolibrary.org/obo/DRUGBANK_DB15670,none +16.9548485,DRUGBANK:DB15689,http://purl.obolibrary.org/obo/DRUGBANK_DB15689,none +16.9548485,DRUGBANK:DB15733,http://purl.obolibrary.org/obo/DRUGBANK_DB15733,none +16.9548485,DRUGBANK:DB15760,http://purl.obolibrary.org/obo/DRUGBANK_DB15760,none +16.9548485,DRUGBANK:DB15767,http://purl.obolibrary.org/obo/DRUGBANK_DB15767,none +16.9548485,DRUGBANK:DB15781,http://purl.obolibrary.org/obo/DRUGBANK_DB15781,none +16.9548485,DRUGBANK:DB15789,http://purl.obolibrary.org/obo/DRUGBANK_DB15789,none +16.9548485,DRUGBANK:DB15791,http://purl.obolibrary.org/obo/DRUGBANK_DB15791,none +16.9548485,DRUGBANK:DB15817,http://purl.obolibrary.org/obo/DRUGBANK_DB15817,none +16.9548485,DRUGBANK:DB15818,http://purl.obolibrary.org/obo/DRUGBANK_DB15818,none +16.9548485,DRUGBANK:DB15822,http://purl.obolibrary.org/obo/DRUGBANK_DB15822,none +16.9548485,DRUGBANK:DB15833,http://purl.obolibrary.org/obo/DRUGBANK_DB15833,none +16.9548485,DRUGBANK:DB15908,http://purl.obolibrary.org/obo/DRUGBANK_DB15908,none +16.9548485,DRUGBANK:DB15970,http://purl.obolibrary.org/obo/DRUGBANK_DB15970,none +16.9548485,DRUGBANK:DB16000,http://purl.obolibrary.org/obo/DRUGBANK_DB16000,none +16.9548485,DRUGBANK:DB16006,http://purl.obolibrary.org/obo/DRUGBANK_DB16006,none +16.9548485,DRUGBANK:DB16011,http://purl.obolibrary.org/obo/DRUGBANK_DB16011,none +16.9548485,DRUGBANK:DB16016,http://purl.obolibrary.org/obo/DRUGBANK_DB16016,none +16.9548485,DRUGBANK:DB16034,http://purl.obolibrary.org/obo/DRUGBANK_DB16034,none +16.9548485,DRUGBANK:DB16044,http://purl.obolibrary.org/obo/DRUGBANK_DB16044,none +16.9548485,DRUGBANK:DB16049,http://purl.obolibrary.org/obo/DRUGBANK_DB16049,none +16.9548485,DRUGBANK:DB16053,http://purl.obolibrary.org/obo/DRUGBANK_DB16053,none +16.9548485,DRUGBANK:DB16056,http://purl.obolibrary.org/obo/DRUGBANK_DB16056,none +16.9548485,DRUGBANK:DB16057,http://purl.obolibrary.org/obo/DRUGBANK_DB16057,none +16.9548485,DRUGBANK:DB16063,http://purl.obolibrary.org/obo/DRUGBANK_DB16063,none +16.9548485,DRUGBANK:DB16065,http://purl.obolibrary.org/obo/DRUGBANK_DB16065,none +16.9548485,DRUGBANK:DB16067,http://purl.obolibrary.org/obo/DRUGBANK_DB16067,none +16.9548485,DRUGBANK:DB16068,http://purl.obolibrary.org/obo/DRUGBANK_DB16068,none +16.9548485,DRUGBANK:DB16069,http://purl.obolibrary.org/obo/DRUGBANK_DB16069,none +16.9548485,DRUGBANK:DB16071,http://purl.obolibrary.org/obo/DRUGBANK_DB16071,none +16.9548485,DRUGBANK:DB16074,http://purl.obolibrary.org/obo/DRUGBANK_DB16074,none +16.9548485,DRUGBANK:DB16081,http://purl.obolibrary.org/obo/DRUGBANK_DB16081,none +16.9548485,DRUGBANK:DB16087,http://purl.obolibrary.org/obo/DRUGBANK_DB16087,none +16.9548485,DRUGBANK:DB16100,http://purl.obolibrary.org/obo/DRUGBANK_DB16100,none +16.9548485,DRUGBANK:DB16110,http://purl.obolibrary.org/obo/DRUGBANK_DB16110,none +16.9548485,DRUGBANK:DB16111,http://purl.obolibrary.org/obo/DRUGBANK_DB16111,none +16.9548485,DRUGBANK:DB16122,http://purl.obolibrary.org/obo/DRUGBANK_DB16122,none +16.9548485,DRUGBANK:DB16131,http://purl.obolibrary.org/obo/DRUGBANK_DB16131,none +16.9548485,DRUGBANK:DB16134,http://purl.obolibrary.org/obo/DRUGBANK_DB16134,none +16.9548485,DRUGBANK:DB16155,http://purl.obolibrary.org/obo/DRUGBANK_DB16155,none +16.9548485,DRUGBANK:DB16156,http://purl.obolibrary.org/obo/DRUGBANK_DB16156,none +16.9548485,DRUGBANK:DB16173,http://purl.obolibrary.org/obo/DRUGBANK_DB16173,none +16.9548485,DRUGBANK:DB16176,http://purl.obolibrary.org/obo/DRUGBANK_DB16176,none +16.9548485,DRUGBANK:DB16185,http://purl.obolibrary.org/obo/DRUGBANK_DB16185,none +16.9548485,DRUGBANK:DB16193,http://purl.obolibrary.org/obo/DRUGBANK_DB16193,none +16.9548485,DRUGBANK:DB16202,http://purl.obolibrary.org/obo/DRUGBANK_DB16202,none +16.9548485,DRUGBANK:DB16209,http://purl.obolibrary.org/obo/DRUGBANK_DB16209,none +16.9548485,DRUGBANK:DB16225,http://purl.obolibrary.org/obo/DRUGBANK_DB16225,none +16.9548485,DRUGBANK:DB16228,http://purl.obolibrary.org/obo/DRUGBANK_DB16228,none +16.9548485,DRUGBANK:DB16236,http://purl.obolibrary.org/obo/DRUGBANK_DB16236,none +16.9548485,DRUGBANK:DB16240,http://purl.obolibrary.org/obo/DRUGBANK_DB16240,none +16.9548485,DRUGBANK:DB16247,http://purl.obolibrary.org/obo/DRUGBANK_DB16247,none +16.9548485,DRUGBANK:DB16259,http://purl.obolibrary.org/obo/DRUGBANK_DB16259,none +16.9548485,DRUGBANK:DB16281,http://purl.obolibrary.org/obo/DRUGBANK_DB16281,none +16.9548485,DRUGBANK:DB16283,http://purl.obolibrary.org/obo/DRUGBANK_DB16283,none +16.9548485,DRUGBANK:DB16284,http://purl.obolibrary.org/obo/DRUGBANK_DB16284,none +16.9548485,DRUGBANK:DB16306,http://purl.obolibrary.org/obo/DRUGBANK_DB16306,none +16.9548485,DRUGBANK:DB16312,http://purl.obolibrary.org/obo/DRUGBANK_DB16312,none +16.9548485,DRUGBANK:DB16319,http://purl.obolibrary.org/obo/DRUGBANK_DB16319,none +16.9548485,DRUGBANK:DB16323,http://purl.obolibrary.org/obo/DRUGBANK_DB16323,none +16.9548485,DRUGBANK:DB16332,http://purl.obolibrary.org/obo/DRUGBANK_DB16332,none +16.9548485,DRUGBANK:DB16335,http://purl.obolibrary.org/obo/DRUGBANK_DB16335,none +16.9548485,DRUGBANK:DB16338,http://purl.obolibrary.org/obo/DRUGBANK_DB16338,none +16.9548485,DRUGBANK:DB16339,http://purl.obolibrary.org/obo/DRUGBANK_DB16339,none +16.9548485,DRUGBANK:DB16344,http://purl.obolibrary.org/obo/DRUGBANK_DB16344,none +16.9548485,DRUGBANK:DB16359,http://purl.obolibrary.org/obo/DRUGBANK_DB16359,none +16.9548485,DRUGBANK:DB16407,http://purl.obolibrary.org/obo/DRUGBANK_DB16407,none +16.9548485,GO:0000010,http://purl.obolibrary.org/obo/GO_0000010,trans-hexaprenyltranstransferase activity +16.9548485,GO:0000027,http://purl.obolibrary.org/obo/GO_0000027,ribosomal large subunit assembly +16.9548485,GO:0000136,http://purl.obolibrary.org/obo/GO_0000136,mannan polymerase complex +16.9548485,GO:0000148,http://purl.obolibrary.org/obo/GO_0000148,"1,3-beta-D-glucan synthase complex" +16.9548485,GO:0000159,http://purl.obolibrary.org/obo/GO_0000159,protein phosphatase type 2A complex +16.9548485,GO:0000240,http://purl.obolibrary.org/obo/GO_0000240,diplotene +16.9548485,GO:0000249,http://purl.obolibrary.org/obo/GO_0000249,C-22 sterol desaturase activity +16.9548485,GO:0000311,http://purl.obolibrary.org/obo/GO_0000311,plastid large ribosomal subunit +16.9548485,GO:0000337,http://purl.obolibrary.org/obo/GO_0000337,"regulation of transposition, DNA-mediated" +16.9548485,GO:0000439,http://purl.obolibrary.org/obo/GO_0000439,transcription factor TFIIH core complex +16.9548485,GO:0000491,http://purl.obolibrary.org/obo/GO_0000491,small nucleolar ribonucleoprotein complex assembly +16.9548485,GO:0000703,http://purl.obolibrary.org/obo/GO_0000703,oxidized pyrimidine nucleobase lesion DNA N-glycosylase activity +16.9548485,GO:0000704,http://purl.obolibrary.org/obo/GO_0000704,pyrimidine dimer DNA N-glycosylase activity +16.9548485,GO:0000772,http://purl.obolibrary.org/obo/GO_0000772,mating pheromone activity +16.9548485,GO:0000777,http://purl.obolibrary.org/obo/GO_0000777,none +16.9548485,GO:0000794,http://purl.obolibrary.org/obo/GO_0000794,condensed nuclear chromosome +16.9548485,GO:0000798,http://purl.obolibrary.org/obo/GO_0000798,nuclear cohesin complex +16.9548485,GO:0000802,http://purl.obolibrary.org/obo/GO_0000802,transverse filament +16.9548485,GO:0000824,http://purl.obolibrary.org/obo/GO_0000824,inositol tetrakisphosphate 3-kinase activity +16.9548485,GO:0000827,http://purl.obolibrary.org/obo/GO_0000827,"inositol-1,3,4,5,6-pentakisphosphate kinase activity" +16.9548485,GO:0000829,http://purl.obolibrary.org/obo/GO_0000829,inositol heptakisphosphate kinase activity +16.9548485,GO:0000914,http://purl.obolibrary.org/obo/GO_0000914,phragmoplast assembly +16.9548485,GO:0000921,http://purl.obolibrary.org/obo/GO_0000921,septin ring assembly +16.9548485,GO:0000965,http://purl.obolibrary.org/obo/GO_0000965,mitochondrial RNA 3'-end processing +16.9548485,GO:0001112,http://purl.obolibrary.org/obo/GO_0001112,DNA-templated transcription open complex formation +16.9548485,GO:0001113,http://purl.obolibrary.org/obo/GO_0001113,transcription open complex formation at RNA polymerase II promoter +16.9548485,GO:0001120,http://purl.obolibrary.org/obo/GO_0001120,protein-DNA complex remodeling +16.9548485,GO:0001325,http://purl.obolibrary.org/obo/GO_0001325,formation of extrachromosomal circular DNA +16.9548485,GO:0001407,http://purl.obolibrary.org/obo/GO_0001407,glycerophosphodiester transmembrane transport +16.9548485,GO:0001547,http://purl.obolibrary.org/obo/GO_0001547,antral ovarian follicle growth +16.9548485,GO:0001713,http://purl.obolibrary.org/obo/GO_0001713,ectodermal cell fate determination +16.9548485,GO:0001725,http://purl.obolibrary.org/obo/GO_0001725,stress fiber +16.9548485,GO:0001769,http://purl.obolibrary.org/obo/GO_0001769,establishment of B cell polarity +16.9548485,GO:0001770,http://purl.obolibrary.org/obo/GO_0001770,establishment of natural killer cell polarity +16.9548485,GO:0001798,http://purl.obolibrary.org/obo/GO_0001798,positive regulation of type IIa hypersensitivity +16.9548485,GO:0001815,http://purl.obolibrary.org/obo/GO_0001815,positive regulation of antibody-dependent cellular cytotoxicity +16.9548485,GO:0001833,http://purl.obolibrary.org/obo/GO_0001833,inner cell mass cell proliferation +16.9548485,GO:0001860,http://purl.obolibrary.org/obo/GO_0001860,complement component C3d receptor activity +16.9548485,GO:0001881,http://purl.obolibrary.org/obo/GO_0001881,receptor recycling +16.9548485,GO:0001891,http://purl.obolibrary.org/obo/GO_0001891,phagocytic cup +16.9548485,GO:0001893,http://purl.obolibrary.org/obo/GO_0001893,maternal placenta development +16.9548485,GO:0001897,http://purl.obolibrary.org/obo/GO_0001897,cytolysis by symbiont of host cells +16.9548485,GO:0001907,http://purl.obolibrary.org/obo/GO_0001907,killing by symbiont of host cells +16.9548485,GO:0001915,http://purl.obolibrary.org/obo/GO_0001915,negative regulation of T cell mediated cytotoxicity +16.9548485,GO:0001941,http://purl.obolibrary.org/obo/GO_0001941,postsynaptic membrane organization +16.9548485,GO:0001953,http://purl.obolibrary.org/obo/GO_0001953,negative regulation of cell-matrix adhesion +16.9548485,GO:0001956,http://purl.obolibrary.org/obo/GO_0001956,positive regulation of neurotransmitter secretion +16.9548485,GO:0001961,http://purl.obolibrary.org/obo/GO_0001961,positive regulation of cytokine-mediated signaling pathway +16.9548485,GO:0002003,http://purl.obolibrary.org/obo/GO_0002003,angiotensin maturation +16.9548485,GO:0002037,http://purl.obolibrary.org/obo/GO_0002037,negative regulation of L-glutamate import across plasma membrane +16.9548485,GO:0002048,http://purl.obolibrary.org/obo/GO_0002048,pyoverdine metabolic process +16.9548485,GO:0002093,http://purl.obolibrary.org/obo/GO_0002093,auditory receptor cell morphogenesis +16.9548485,GO:0002095,http://purl.obolibrary.org/obo/GO_0002095,caveolar macromolecular signaling complex +16.9548485,GO:0002097,http://purl.obolibrary.org/obo/GO_0002097,tRNA wobble base modification +16.9548485,GO:0002122,http://purl.obolibrary.org/obo/GO_0002122,fear-induced aggressive behavior +16.9548485,GO:0002170,http://purl.obolibrary.org/obo/GO_0002170,high-affinity IgA receptor activity +16.9548485,GO:0002206,http://purl.obolibrary.org/obo/GO_0002206,gene conversion of immunoglobulin genes +16.9548485,GO:0002210,http://purl.obolibrary.org/obo/GO_0002210,behavioral response to wounding +16.9548485,GO:0002215,http://purl.obolibrary.org/obo/GO_0002215,defense response to nematode +16.9548485,GO:0002235,http://purl.obolibrary.org/obo/GO_0002235,detection of unfolded protein +16.9548485,GO:0002242,http://purl.obolibrary.org/obo/GO_0002242,defense response to parasitic plant +16.9548485,GO:0002261,http://purl.obolibrary.org/obo/GO_0002261,mucosal lymphocyte homeostasis +16.9548485,GO:0002281,http://purl.obolibrary.org/obo/GO_0002281,macrophage activation involved in immune response +16.9548485,GO:0002282,http://purl.obolibrary.org/obo/GO_0002282,microglial cell activation involved in immune response +16.9548485,GO:0002326,http://purl.obolibrary.org/obo/GO_0002326,B cell lineage commitment +16.9548485,GO:0002358,http://purl.obolibrary.org/obo/GO_0002358,B cell homeostatic proliferation +16.9548485,GO:0002360,http://purl.obolibrary.org/obo/GO_0002360,T cell lineage commitment +16.9548485,GO:0002381,http://purl.obolibrary.org/obo/GO_0002381,immunoglobulin production involved in immunoglobulin-mediated immune response +16.9548485,GO:0002420,http://purl.obolibrary.org/obo/GO_0002420,natural killer cell mediated cytotoxicity directed against tumor cell target +16.9548485,GO:0002423,http://purl.obolibrary.org/obo/GO_0002423,natural killer cell mediated immune response to tumor cell +16.9548485,GO:0002426,http://purl.obolibrary.org/obo/GO_0002426,immunoglobulin production in mucosal tissue +16.9548485,GO:0002430,http://purl.obolibrary.org/obo/GO_0002430,complement receptor mediated signaling pathway +16.9548485,GO:0002442,http://purl.obolibrary.org/obo/GO_0002442,serotonin secretion involved in inflammatory response +16.9548485,GO:0002455,http://purl.obolibrary.org/obo/GO_0002455,humoral immune response mediated by circulating immunoglobulin +16.9548485,GO:0002459,http://purl.obolibrary.org/obo/GO_0002459,adaptive immune response based on somatic recombination of immune receptors built from leucine-rich repeat domains +16.9548485,GO:0002532,http://purl.obolibrary.org/obo/GO_0002532,production of molecular mediator involved in inflammatory response +16.9548485,GO:0002541,http://purl.obolibrary.org/obo/GO_0002541,activation of plasma proteins involved in acute inflammatory response +16.9548485,GO:0002554,http://purl.obolibrary.org/obo/GO_0002554,serotonin secretion by platelet +16.9548485,GO:0002560,http://purl.obolibrary.org/obo/GO_0002560,basophil mediated immunity +16.9548485,GO:0002565,http://purl.obolibrary.org/obo/GO_0002565,somatic diversification of immune receptors via gene conversion +16.9548485,GO:0002634,http://purl.obolibrary.org/obo/GO_0002634,regulation of germinal center formation +16.9548485,GO:0002645,http://purl.obolibrary.org/obo/GO_0002645,positive regulation of tolerance induction +16.9548485,GO:0002652,http://purl.obolibrary.org/obo/GO_0002652,regulation of tolerance induction dependent upon immune response +16.9548485,GO:0002658,http://purl.obolibrary.org/obo/GO_0002658,regulation of peripheral tolerance induction +16.9548485,GO:0002679,http://purl.obolibrary.org/obo/GO_0002679,respiratory burst involved in defense response +16.9548485,GO:0002713,http://purl.obolibrary.org/obo/GO_0002713,negative regulation of B cell mediated immunity +16.9548485,GO:0002714,http://purl.obolibrary.org/obo/GO_0002714,positive regulation of B cell mediated immunity +16.9548485,GO:0002716,http://purl.obolibrary.org/obo/GO_0002716,negative regulation of natural killer cell mediated immunity +16.9548485,GO:0002720,http://purl.obolibrary.org/obo/GO_0002720,positive regulation of cytokine production involved in immune response +16.9548485,GO:0002726,http://purl.obolibrary.org/obo/GO_0002726,positive regulation of T cell cytokine production +16.9548485,GO:0002727,http://purl.obolibrary.org/obo/GO_0002727,regulation of natural killer cell cytokine production +16.9548485,GO:0002769,http://purl.obolibrary.org/obo/GO_0002769,natural killer cell inhibitory signaling pathway +16.9548485,GO:0002771,http://purl.obolibrary.org/obo/GO_0002771,inhibitory killer cell immunoglobulin-like receptor signaling pathway +16.9548485,GO:0002778,http://purl.obolibrary.org/obo/GO_0002778,antibacterial peptide production +16.9548485,GO:0002794,http://purl.obolibrary.org/obo/GO_0002794,regulation of antimicrobial peptide secretion +16.9548485,GO:0002825,http://purl.obolibrary.org/obo/GO_0002825,regulation of T-helper 1 type immune response +16.9548485,GO:0002830,http://purl.obolibrary.org/obo/GO_0002830,positive regulation of type 2 immune response +16.9548485,GO:0002890,http://purl.obolibrary.org/obo/GO_0002890,negative regulation of immunoglobulin mediated immune response +16.9548485,GO:0002891,http://purl.obolibrary.org/obo/GO_0002891,positive regulation of immunoglobulin mediated immune response +16.9548485,GO:0002894,http://purl.obolibrary.org/obo/GO_0002894,positive regulation of type II hypersensitivity +16.9548485,GO:0002923,http://purl.obolibrary.org/obo/GO_0002923,regulation of humoral immune response mediated by circulating immunoglobulin +16.9548485,GO:0003053,http://purl.obolibrary.org/obo/GO_0003053,circadian regulation of heart rate +16.9548485,GO:0003057,http://purl.obolibrary.org/obo/GO_0003057,regulation of the force of heart contraction by chemical signal +16.9548485,GO:0003108,http://purl.obolibrary.org/obo/GO_0003108,negative regulation of the force of heart contraction by chemical signal +16.9548485,GO:0003171,http://purl.obolibrary.org/obo/GO_0003171,atrioventricular valve development +16.9548485,GO:0003174,http://purl.obolibrary.org/obo/GO_0003174,mitral valve development +16.9548485,GO:0003185,http://purl.obolibrary.org/obo/GO_0003185,sinoatrial valve morphogenesis +16.9548485,GO:0003186,http://purl.obolibrary.org/obo/GO_0003186,tricuspid valve morphogenesis +16.9548485,GO:0003205,http://purl.obolibrary.org/obo/GO_0003205,cardiac chamber development +16.9548485,GO:0003208,http://purl.obolibrary.org/obo/GO_0003208,cardiac ventricle morphogenesis +16.9548485,GO:0003215,http://purl.obolibrary.org/obo/GO_0003215,cardiac right ventricle morphogenesis +16.9548485,GO:0003254,http://purl.obolibrary.org/obo/GO_0003254,regulation of membrane depolarization +16.9548485,GO:0003281,http://purl.obolibrary.org/obo/GO_0003281,ventricular septum development +16.9548485,GO:0003298,http://purl.obolibrary.org/obo/GO_0003298,physiological muscle hypertrophy +16.9548485,GO:0003300,http://purl.obolibrary.org/obo/GO_0003300,cardiac muscle hypertrophy +16.9548485,GO:0003322,http://purl.obolibrary.org/obo/GO_0003322,pancreatic A cell development +16.9548485,GO:0003342,http://purl.obolibrary.org/obo/GO_0003342,proepicardium development +16.9548485,GO:0003430,http://purl.obolibrary.org/obo/GO_0003430,growth plate cartilage chondrocyte growth +16.9548485,GO:0003832,http://purl.obolibrary.org/obo/GO_0003832,beta-alanyl-dopamine hydrolase activity +16.9548485,GO:0003845,http://purl.obolibrary.org/obo/GO_0003845,11-beta-hydroxysteroid dehydrogenase [NAD(P)] activity +16.9548485,GO:0003852,http://purl.obolibrary.org/obo/GO_0003852,2-isopropylmalate synthase activity +16.9548485,GO:0003863,http://purl.obolibrary.org/obo/GO_0003863,3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity +16.9548485,GO:0003939,http://purl.obolibrary.org/obo/GO_0003939,L-iditol 2-dehydrogenase activity +16.9548485,GO:0003956,http://purl.obolibrary.org/obo/GO_0003956,NAD(P)+-protein-arginine ADP-ribosyltransferase activity +16.9548485,GO:0003961,http://purl.obolibrary.org/obo/GO_0003961,O-acetylhomoserine aminocarboxypropyltransferase activity +16.9548485,GO:0004079,http://purl.obolibrary.org/obo/GO_0004079,biotin-[methylmalonyl-CoA-carboxytransferase] ligase activity +16.9548485,GO:0004081,http://purl.obolibrary.org/obo/GO_0004081,bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity +16.9548485,GO:0004158,http://purl.obolibrary.org/obo/GO_0004158,dihydroorotate oxidase activity +16.9548485,GO:0004160,http://purl.obolibrary.org/obo/GO_0004160,dihydroxy-acid dehydratase activity +16.9548485,GO:0004166,http://purl.obolibrary.org/obo/GO_0004166,dolichyl-phosphate alpha-N-acetylglucosaminyltransferase activity +16.9548485,GO:0004198,http://purl.obolibrary.org/obo/GO_0004198,calcium-dependent cysteine-type endopeptidase activity +16.9548485,GO:0004298,http://purl.obolibrary.org/obo/GO_0004298,threonine-type endopeptidase activity +16.9548485,GO:0004446,http://purl.obolibrary.org/obo/GO_0004446,inositol-hexakisphosphate phosphatase activity +16.9548485,GO:0004450,http://purl.obolibrary.org/obo/GO_0004450,isocitrate dehydrogenase (NADP+) activity +16.9548485,GO:0004486,http://purl.obolibrary.org/obo/GO_0004486,methylenetetrahydrofolate dehydrogenase [NAD(P)+] activity +16.9548485,GO:0004495,http://purl.obolibrary.org/obo/GO_0004495,mevaldate reductase activity +16.9548485,GO:0004534,http://purl.obolibrary.org/obo/GO_0004534,5'-3' exoribonuclease activity +16.9548485,GO:0004577,http://purl.obolibrary.org/obo/GO_0004577,N-acetylglucosaminyldiphosphodolichol N-acetylglucosaminyltransferase activity +16.9548485,GO:0004639,http://purl.obolibrary.org/obo/GO_0004639,phosphoribosylaminoimidazolesuccinocarboxamide synthase activity +16.9548485,GO:0004728,http://purl.obolibrary.org/obo/GO_0004728,none +16.9548485,GO:0004730,http://purl.obolibrary.org/obo/GO_0004730,pseudouridylate synthase activity +16.9548485,GO:0004777,http://purl.obolibrary.org/obo/GO_0004777,succinate-semialdehyde dehydrogenase (NAD+) activity +16.9548485,GO:0004778,http://purl.obolibrary.org/obo/GO_0004778,succinyl-CoA hydrolase activity +16.9548485,GO:0004780,http://purl.obolibrary.org/obo/GO_0004780,sulfate adenylyltransferase (ADP) activity +16.9548485,GO:0004809,http://purl.obolibrary.org/obo/GO_0004809,tRNA (guanine-N2-)-methyltransferase activity +16.9548485,GO:0004869,http://purl.obolibrary.org/obo/GO_0004869,cysteine-type endopeptidase inhibitor activity +16.9548485,GO:0004884,http://purl.obolibrary.org/obo/GO_0004884,none +16.9548485,GO:0004952,http://purl.obolibrary.org/obo/GO_0004952,dopamine neurotransmitter receptor activity +16.9548485,GO:0005034,http://purl.obolibrary.org/obo/GO_0005034,osmosensor activity +16.9548485,GO:0005056,http://purl.obolibrary.org/obo/GO_0005056,tiggrin receptor activity +16.9548485,GO:0005089,http://purl.obolibrary.org/obo/GO_0005089,none +16.9548485,GO:0005275,http://purl.obolibrary.org/obo/GO_0005275,amine transmembrane transporter activity +16.9548485,GO:0005345,http://purl.obolibrary.org/obo/GO_0005345,purine nucleobase transmembrane transporter activity +16.9548485,GO:0005365,http://purl.obolibrary.org/obo/GO_0005365,myo-inositol transmembrane transporter activity +16.9548485,GO:0005507,http://purl.obolibrary.org/obo/GO_0005507,copper ion binding +16.9548485,GO:0005606,http://purl.obolibrary.org/obo/GO_0005606,laminin-1 complex +16.9548485,GO:0005607,http://purl.obolibrary.org/obo/GO_0005607,laminin-2 complex +16.9548485,GO:0005610,http://purl.obolibrary.org/obo/GO_0005610,laminin-5 complex +16.9548485,GO:0005672,http://purl.obolibrary.org/obo/GO_0005672,transcription factor TFIIA complex +16.9548485,GO:0005674,http://purl.obolibrary.org/obo/GO_0005674,transcription factor TFIIF complex +16.9548485,GO:0005675,http://purl.obolibrary.org/obo/GO_0005675,transcription factor TFIIH holo complex +16.9548485,GO:0005689,http://purl.obolibrary.org/obo/GO_0005689,U12-type spliceosomal complex +16.9548485,GO:0005712,http://purl.obolibrary.org/obo/GO_0005712,chiasma +16.9548485,GO:0005847,http://purl.obolibrary.org/obo/GO_0005847,mRNA cleavage and polyadenylation specificity factor complex +16.9548485,GO:0005849,http://purl.obolibrary.org/obo/GO_0005849,mRNA cleavage factor complex +16.9548485,GO:0005851,http://purl.obolibrary.org/obo/GO_0005851,eukaryotic translation initiation factor 2B complex +16.9548485,GO:0005859,http://purl.obolibrary.org/obo/GO_0005859,muscle myosin complex +16.9548485,GO:0005900,http://purl.obolibrary.org/obo/GO_0005900,oncostatin-M receptor complex +16.9548485,GO:0005920,http://purl.obolibrary.org/obo/GO_0005920,smooth septate junction +16.9548485,GO:0005940,http://purl.obolibrary.org/obo/GO_0005940,septin ring +16.9548485,GO:0005945,http://purl.obolibrary.org/obo/GO_0005945,6-phosphofructokinase complex +16.9548485,GO:0005965,http://purl.obolibrary.org/obo/GO_0005965,protein farnesyltransferase complex +16.9548485,GO:0005990,http://purl.obolibrary.org/obo/GO_0005990,lactose catabolic process +16.9548485,GO:0006001,http://purl.obolibrary.org/obo/GO_0006001,fructose catabolic process +16.9548485,GO:0006005,http://purl.obolibrary.org/obo/GO_0006005,L-fucose biosynthetic process +16.9548485,GO:0006037,http://purl.obolibrary.org/obo/GO_0006037,cell wall chitin metabolic process +16.9548485,GO:0006038,http://purl.obolibrary.org/obo/GO_0006038,cell wall chitin biosynthetic process +16.9548485,GO:0006043,http://purl.obolibrary.org/obo/GO_0006043,glucosamine catabolic process +16.9548485,GO:0006068,http://purl.obolibrary.org/obo/GO_0006068,ethanol catabolic process +16.9548485,GO:0006075,http://purl.obolibrary.org/obo/GO_0006075,(1->3)-beta-D-glucan biosynthetic process +16.9548485,GO:0006120,http://purl.obolibrary.org/obo/GO_0006120,"mitochondrial electron transport, NADH to ubiquinone" +16.9548485,GO:0006170,http://purl.obolibrary.org/obo/GO_0006170,dAMP biosynthetic process +16.9548485,GO:0006181,http://purl.obolibrary.org/obo/GO_0006181,dGMP biosynthetic process +16.9548485,GO:0006189,http://purl.obolibrary.org/obo/GO_0006189,'de novo' IMP biosynthetic process +16.9548485,GO:0006208,http://purl.obolibrary.org/obo/GO_0006208,pyrimidine nucleobase catabolic process +16.9548485,GO:0006212,http://purl.obolibrary.org/obo/GO_0006212,uracil catabolic process +16.9548485,GO:0006216,http://purl.obolibrary.org/obo/GO_0006216,cytidine catabolic process +16.9548485,GO:0006218,http://purl.obolibrary.org/obo/GO_0006218,uridine catabolic process +16.9548485,GO:0006225,http://purl.obolibrary.org/obo/GO_0006225,UDP biosynthetic process +16.9548485,GO:0006226,http://purl.obolibrary.org/obo/GO_0006226,dUMP biosynthetic process +16.9548485,GO:0006240,http://purl.obolibrary.org/obo/GO_0006240,dCDP biosynthetic process +16.9548485,GO:0006307,http://purl.obolibrary.org/obo/GO_0006307,DNA dealkylation involved in DNA repair +16.9548485,GO:0006337,http://purl.obolibrary.org/obo/GO_0006337,nucleosome disassembly +16.9548485,GO:0006354,http://purl.obolibrary.org/obo/GO_0006354,"DNA-templated transcription, elongation" +16.9548485,GO:0006379,http://purl.obolibrary.org/obo/GO_0006379,mRNA cleavage +16.9548485,GO:0006423,http://purl.obolibrary.org/obo/GO_0006423,cysteinyl-tRNA aminoacylation +16.9548485,GO:0006491,http://purl.obolibrary.org/obo/GO_0006491,N-glycan processing +16.9548485,GO:0006533,http://purl.obolibrary.org/obo/GO_0006533,aspartate catabolic process +16.9548485,GO:0006668,http://purl.obolibrary.org/obo/GO_0006668,sphinganine-1-phosphate metabolic process +16.9548485,GO:0006673,http://purl.obolibrary.org/obo/GO_0006673,inositol phosphoceramide metabolic process +16.9548485,GO:0006685,http://purl.obolibrary.org/obo/GO_0006685,sphingomyelin catabolic process +16.9548485,GO:0006713,http://purl.obolibrary.org/obo/GO_0006713,glucocorticoid catabolic process +16.9548485,GO:0006786,http://purl.obolibrary.org/obo/GO_0006786,heme C biosynthetic process +16.9548485,GO:0006791,http://purl.obolibrary.org/obo/GO_0006791,sulfur utilization +16.9548485,GO:0006792,http://purl.obolibrary.org/obo/GO_0006792,regulation of sulfur utilization +16.9548485,GO:0006798,http://purl.obolibrary.org/obo/GO_0006798,polyphosphate catabolic process +16.9548485,GO:0006856,http://purl.obolibrary.org/obo/GO_0006856,eye pigment precursor transport +16.9548485,GO:0006878,http://purl.obolibrary.org/obo/GO_0006878,cellular copper ion homeostasis +16.9548485,GO:0006957,http://purl.obolibrary.org/obo/GO_0006957,"complement activation, alternative pathway" +16.9548485,GO:0006990,http://purl.obolibrary.org/obo/GO_0006990,positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response +16.9548485,GO:0007008,http://purl.obolibrary.org/obo/GO_0007008,outer mitochondrial membrane organization +16.9548485,GO:0007014,http://purl.obolibrary.org/obo/GO_0007014,actin ubiquitination +16.9548485,GO:0007037,http://purl.obolibrary.org/obo/GO_0007037,none +16.9548485,GO:0007040,http://purl.obolibrary.org/obo/GO_0007040,lysosome organization +16.9548485,GO:0007060,http://purl.obolibrary.org/obo/GO_0007060,male meiosis chromosome segregation +16.9548485,GO:0007072,http://purl.obolibrary.org/obo/GO_0007072,positive regulation of transcription involved in exit from mitosis +16.9548485,GO:0007116,http://purl.obolibrary.org/obo/GO_0007116,regulation of cell budding +16.9548485,GO:0007136,http://purl.obolibrary.org/obo/GO_0007136,meiotic prophase II +16.9548485,GO:0007156,http://purl.obolibrary.org/obo/GO_0007156,homophilic cell adhesion via plasma membrane adhesion molecules +16.9548485,GO:0007168,http://purl.obolibrary.org/obo/GO_0007168,receptor guanylyl cyclase signaling pathway +16.9548485,GO:0007187,http://purl.obolibrary.org/obo/GO_0007187,"G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger" +16.9548485,GO:0007188,http://purl.obolibrary.org/obo/GO_0007188,adenylate cyclase-modulating G protein-coupled receptor signaling pathway +16.9548485,GO:0007189,http://purl.obolibrary.org/obo/GO_0007189,adenylate cyclase-activating G protein-coupled receptor signaling pathway +16.9548485,GO:0007202,http://purl.obolibrary.org/obo/GO_0007202,activation of phospholipase C activity +16.9548485,GO:0007210,http://purl.obolibrary.org/obo/GO_0007210,serotonin receptor signaling pathway +16.9548485,GO:0007211,http://purl.obolibrary.org/obo/GO_0007211,octopamine or tyramine signaling pathway +16.9548485,GO:0007227,http://purl.obolibrary.org/obo/GO_0007227,signal transduction downstream of smoothened +16.9548485,GO:0007282,http://purl.obolibrary.org/obo/GO_0007282,cystoblast division +16.9548485,GO:0007285,http://purl.obolibrary.org/obo/GO_0007285,primary spermatocyte growth +16.9548485,GO:0007289,http://purl.obolibrary.org/obo/GO_0007289,spermatid nucleus differentiation +16.9548485,GO:0007376,http://purl.obolibrary.org/obo/GO_0007376,cephalic furrow formation +16.9548485,GO:0007377,http://purl.obolibrary.org/obo/GO_0007377,germ-band extension +16.9548485,GO:0007400,http://purl.obolibrary.org/obo/GO_0007400,neuroblast fate determination +16.9548485,GO:0007406,http://purl.obolibrary.org/obo/GO_0007406,negative regulation of neuroblast proliferation +16.9548485,GO:0007407,http://purl.obolibrary.org/obo/GO_0007407,neuroblast activation +16.9548485,GO:0007437,http://purl.obolibrary.org/obo/GO_0007437,adult salivary gland morphogenesis +16.9548485,GO:0007444,http://purl.obolibrary.org/obo/GO_0007444,imaginal disc development +16.9548485,GO:0007468,http://purl.obolibrary.org/obo/GO_0007468,none +16.9548485,GO:0007488,http://purl.obolibrary.org/obo/GO_0007488,histoblast morphogenesis +16.9548485,GO:0007493,http://purl.obolibrary.org/obo/GO_0007493,endodermal cell fate determination +16.9548485,GO:0007501,http://purl.obolibrary.org/obo/GO_0007501,mesodermal cell fate specification +16.9548485,GO:0007503,http://purl.obolibrary.org/obo/GO_0007503,fat body development +16.9548485,GO:0007542,http://purl.obolibrary.org/obo/GO_0007542,"primary sex determination, germ-line" +16.9548485,GO:0007594,http://purl.obolibrary.org/obo/GO_0007594,puparial adhesion +16.9548485,GO:0007597,http://purl.obolibrary.org/obo/GO_0007597,"blood coagulation, intrinsic pathway" +16.9548485,GO:0008301,http://purl.obolibrary.org/obo/GO_0008301,"DNA binding, bending" +16.9548485,GO:0008377,http://purl.obolibrary.org/obo/GO_0008377,light-induced release of internally sequestered calcium ion +16.9548485,GO:0008386,http://purl.obolibrary.org/obo/GO_0008386,cholesterol monooxygenase (side-chain-cleaving) activity +16.9548485,GO:0008425,http://purl.obolibrary.org/obo/GO_0008425,"2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity" +16.9548485,GO:0008465,http://purl.obolibrary.org/obo/GO_0008465,glycerate dehydrogenase activity +16.9548485,GO:0008489,http://purl.obolibrary.org/obo/GO_0008489,"UDP-galactose:glucosylceramide beta-1,4-galactosyltransferase activity" +16.9548485,GO:0008496,http://purl.obolibrary.org/obo/GO_0008496,"mannan endo-1,6-alpha-mannosidase activity" +16.9548485,GO:0008518,http://purl.obolibrary.org/obo/GO_0008518,folate:anion antiporter activity +16.9548485,GO:0008545,http://purl.obolibrary.org/obo/GO_0008545,JUN kinase kinase activity +16.9548485,GO:0008555,http://purl.obolibrary.org/obo/GO_0008555,none +16.9548485,GO:0008579,http://purl.obolibrary.org/obo/GO_0008579,JUN kinase phosphatase activity +16.9548485,GO:0008586,http://purl.obolibrary.org/obo/GO_0008586,imaginal disc-derived wing vein morphogenesis +16.9548485,GO:0008592,http://purl.obolibrary.org/obo/GO_0008592,regulation of Toll signaling pathway +16.9548485,GO:0008599,http://purl.obolibrary.org/obo/GO_0008599,none +16.9548485,GO:0008607,http://purl.obolibrary.org/obo/GO_0008607,phosphorylase kinase regulator activity +16.9548485,GO:0008618,http://purl.obolibrary.org/obo/GO_0008618,7-methylguanosine metabolic process +16.9548485,GO:0008625,http://purl.obolibrary.org/obo/GO_0008625,extrinsic apoptotic signaling pathway via death domain receptors +16.9548485,GO:0008631,http://purl.obolibrary.org/obo/GO_0008631,intrinsic apoptotic signaling pathway in response to oxidative stress +16.9548485,GO:0008678,http://purl.obolibrary.org/obo/GO_0008678,2-deoxy-D-gluconate 3-dehydrogenase activity +16.9548485,GO:0008685,http://purl.obolibrary.org/obo/GO_0008685,"2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity" +16.9548485,GO:0008688,http://purl.obolibrary.org/obo/GO_0008688,3-(3-hydroxyphenyl)propionate hydroxylase activity +16.9548485,GO:0008707,http://purl.obolibrary.org/obo/GO_0008707,4-phytase activity +16.9548485,GO:0008719,http://purl.obolibrary.org/obo/GO_0008719,dihydroneopterin triphosphate 2'-epimerase activity +16.9548485,GO:0008727,http://purl.obolibrary.org/obo/GO_0008727,GDP-mannose mannosyl hydrolase activity +16.9548485,GO:0008738,http://purl.obolibrary.org/obo/GO_0008738,L-fuculose-phosphate aldolase activity +16.9548485,GO:0008759,http://purl.obolibrary.org/obo/GO_0008759,UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase activity +16.9548485,GO:0008765,http://purl.obolibrary.org/obo/GO_0008765,"UDP-N-acetylmuramoylalanyl-D-glutamate-2,6-diaminopimelate ligase activity" +16.9548485,GO:0008789,http://purl.obolibrary.org/obo/GO_0008789,altronate dehydratase activity +16.9548485,GO:0008807,http://purl.obolibrary.org/obo/GO_0008807,carboxyvinyl-carboxyphosphonate phosphorylmutase activity +16.9548485,GO:0008814,http://purl.obolibrary.org/obo/GO_0008814,citrate CoA-transferase activity +16.9548485,GO:0008833,http://purl.obolibrary.org/obo/GO_0008833,deoxyribonuclease IV (phage-T4-induced) activity +16.9548485,GO:0008835,http://purl.obolibrary.org/obo/GO_0008835,diaminohydroxyphosphoribosylaminopyrimidine deaminase activity +16.9548485,GO:0008838,http://purl.obolibrary.org/obo/GO_0008838,diaminopropionate ammonia-lyase activity +16.9548485,GO:0008855,http://purl.obolibrary.org/obo/GO_0008855,exodeoxyribonuclease VII activity +16.9548485,GO:0008867,http://purl.obolibrary.org/obo/GO_0008867,galactarate dehydratase activity +16.9548485,GO:0008872,http://purl.obolibrary.org/obo/GO_0008872,glucarate dehydratase activity +16.9548485,GO:0008888,http://purl.obolibrary.org/obo/GO_0008888,glycerol dehydrogenase [NAD+] activity +16.9548485,GO:0008911,http://purl.obolibrary.org/obo/GO_0008911,lactaldehyde dehydrogenase activity +16.9548485,GO:0008921,http://purl.obolibrary.org/obo/GO_0008921,"lipopolysaccharide-1,6-galactosyltransferase activity" +16.9548485,GO:0008990,http://purl.obolibrary.org/obo/GO_0008990,rRNA (guanine-N2-)-methyltransferase activity +16.9548485,GO:0009013,http://purl.obolibrary.org/obo/GO_0009013,succinate-semialdehyde dehydrogenase [NAD(P)+] activity +16.9548485,GO:0009015,http://purl.obolibrary.org/obo/GO_0009015,N-succinylarginine dihydrolase activity +16.9548485,GO:0009026,http://purl.obolibrary.org/obo/GO_0009026,tagaturonate reductase activity +16.9548485,GO:0009029,http://purl.obolibrary.org/obo/GO_0009029,tetraacyldisaccharide 4'-kinase activity +16.9548485,GO:0009093,http://purl.obolibrary.org/obo/GO_0009093,cysteine catabolic process +16.9548485,GO:0009186,http://purl.obolibrary.org/obo/GO_0009186,deoxyribonucleoside diphosphate metabolic process +16.9548485,GO:0009189,http://purl.obolibrary.org/obo/GO_0009189,deoxyribonucleoside diphosphate biosynthetic process +16.9548485,GO:0009196,http://purl.obolibrary.org/obo/GO_0009196,pyrimidine deoxyribonucleoside diphosphate metabolic process +16.9548485,GO:0009197,http://purl.obolibrary.org/obo/GO_0009197,pyrimidine deoxyribonucleoside diphosphate biosynthetic process +16.9548485,GO:0009223,http://purl.obolibrary.org/obo/GO_0009223,pyrimidine deoxyribonucleotide catabolic process +16.9548485,GO:0009224,http://purl.obolibrary.org/obo/GO_0009224,CMP biosynthetic process +16.9548485,GO:0009248,http://purl.obolibrary.org/obo/GO_0009248,K antigen biosynthetic process +16.9548485,GO:0009305,http://purl.obolibrary.org/obo/GO_0009305,protein biotinylation +16.9548485,GO:0009307,http://purl.obolibrary.org/obo/GO_0009307,DNA restriction-modification system +16.9548485,GO:0009346,http://purl.obolibrary.org/obo/GO_0009346,ATP-independent citrate lyase complex +16.9548485,GO:0009349,http://purl.obolibrary.org/obo/GO_0009349,riboflavin synthase complex +16.9548485,GO:0009356,http://purl.obolibrary.org/obo/GO_0009356,aminodeoxychorismate synthase complex +16.9548485,GO:0009400,http://purl.obolibrary.org/obo/GO_0009400,none +16.9548485,GO:0009401,http://purl.obolibrary.org/obo/GO_0009401,phosphoenolpyruvate-dependent sugar phosphotransferase system +16.9548485,GO:0009407,http://purl.obolibrary.org/obo/GO_0009407,toxin catabolic process +16.9548485,GO:0009422,http://purl.obolibrary.org/obo/GO_0009422,bacterial-type flagellum hook-filament junction +16.9548485,GO:0009436,http://purl.obolibrary.org/obo/GO_0009436,glyoxylate catabolic process +16.9548485,GO:0009447,http://purl.obolibrary.org/obo/GO_0009447,putrescine catabolic process +16.9548485,GO:0009486,http://purl.obolibrary.org/obo/GO_0009486,cytochrome bo3 ubiquinol oxidase activity +16.9548485,GO:0009506,http://purl.obolibrary.org/obo/GO_0009506,plasmodesma +16.9548485,GO:0009511,http://purl.obolibrary.org/obo/GO_0009511,plasmodesmatal endoplasmic reticulum +16.9548485,GO:0009516,http://purl.obolibrary.org/obo/GO_0009516,leucoplast +16.9548485,GO:0009522,http://purl.obolibrary.org/obo/GO_0009522,photosystem I +16.9548485,GO:0009537,http://purl.obolibrary.org/obo/GO_0009537,proplastid +16.9548485,GO:0009544,http://purl.obolibrary.org/obo/GO_0009544,chloroplast ATP synthase complex +16.9548485,GO:0009563,http://purl.obolibrary.org/obo/GO_0009563,synergid differentiation +16.9548485,GO:0009645,http://purl.obolibrary.org/obo/GO_0009645,response to low light intensity stimulus +16.9548485,GO:0009702,http://purl.obolibrary.org/obo/GO_0009702,L-arabinokinase activity +16.9548485,GO:0009758,http://purl.obolibrary.org/obo/GO_0009758,carbohydrate utilization +16.9548485,GO:0009766,http://purl.obolibrary.org/obo/GO_0009766,none +16.9548485,GO:0009778,http://purl.obolibrary.org/obo/GO_0009778,cyclic photosynthetic phosphorylation +16.9548485,GO:0009787,http://purl.obolibrary.org/obo/GO_0009787,regulation of abscisic acid-activated signaling pathway +16.9548485,GO:0009800,http://purl.obolibrary.org/obo/GO_0009800,cinnamic acid biosynthetic process +16.9548485,GO:0009873,http://purl.obolibrary.org/obo/GO_0009873,ethylene-activated signaling pathway +16.9548485,GO:0009923,http://purl.obolibrary.org/obo/GO_0009923,fatty acid elongase complex +16.9548485,GO:0009934,http://purl.obolibrary.org/obo/GO_0009934,regulation of meristem structural organization +16.9548485,GO:0009943,http://purl.obolibrary.org/obo/GO_0009943,adaxial/abaxial axis specification +16.9548485,GO:0009972,http://purl.obolibrary.org/obo/GO_0009972,cytidine deamination +16.9548485,GO:0009996,http://purl.obolibrary.org/obo/GO_0009996,negative regulation of cell fate specification +16.9548485,GO:0010018,http://purl.obolibrary.org/obo/GO_0010018,far-red light signaling pathway +16.9548485,GO:0010024,http://purl.obolibrary.org/obo/GO_0010024,phytochromobilin biosynthetic process +16.9548485,GO:0010047,http://purl.obolibrary.org/obo/GO_0010047,fruit dehiscence +16.9548485,GO:0010051,http://purl.obolibrary.org/obo/GO_0010051,xylem and phloem pattern formation +16.9548485,GO:0010055,http://purl.obolibrary.org/obo/GO_0010055,atrichoblast differentiation +16.9548485,GO:0010070,http://purl.obolibrary.org/obo/GO_0010070,zygote asymmetric cell division +16.9548485,GO:0010080,http://purl.obolibrary.org/obo/GO_0010080,regulation of floral meristem growth +16.9548485,GO:0010091,http://purl.obolibrary.org/obo/GO_0010091,trichome branching +16.9548485,GO:0010095,http://purl.obolibrary.org/obo/GO_0010095,specification of petal identity +16.9548485,GO:0010098,http://purl.obolibrary.org/obo/GO_0010098,suspensor development +16.9548485,GO:0010157,http://purl.obolibrary.org/obo/GO_0010157,response to chlorate +16.9548485,GO:0010159,http://purl.obolibrary.org/obo/GO_0010159,specification of animal organ position +16.9548485,GO:0010160,http://purl.obolibrary.org/obo/GO_0010160,formation of animal organ boundary +16.9548485,GO:0010190,http://purl.obolibrary.org/obo/GO_0010190,cytochrome b6f complex assembly +16.9548485,GO:0010196,http://purl.obolibrary.org/obo/GO_0010196,nonphotochemical quenching +16.9548485,GO:0010207,http://purl.obolibrary.org/obo/GO_0010207,photosystem II assembly +16.9548485,GO:0010246,http://purl.obolibrary.org/obo/GO_0010246,rhamnogalacturonan I biosynthetic process +16.9548485,GO:0010253,http://purl.obolibrary.org/obo/GO_0010253,UDP-rhamnose biosynthetic process +16.9548485,GO:0010265,http://purl.obolibrary.org/obo/GO_0010265,SCF complex assembly +16.9548485,GO:0010274,http://purl.obolibrary.org/obo/GO_0010274,hydrotropism +16.9548485,GO:0010312,http://purl.obolibrary.org/obo/GO_0010312,detoxification of zinc ion +16.9548485,GO:0010327,http://purl.obolibrary.org/obo/GO_0010327,acetyl CoA:(Z)-3-hexen-1-ol acetyltransferase activity +16.9548485,GO:0010329,http://purl.obolibrary.org/obo/GO_0010329,auxin efflux transmembrane transporter activity +16.9548485,GO:0010335,http://purl.obolibrary.org/obo/GO_0010335,response to non-ionic osmotic stress +16.9548485,GO:0010337,http://purl.obolibrary.org/obo/GO_0010337,regulation of salicylic acid metabolic process +16.9548485,GO:0010359,http://purl.obolibrary.org/obo/GO_0010359,regulation of anion channel activity +16.9548485,GO:0010421,http://purl.obolibrary.org/obo/GO_0010421,hydrogen peroxide-mediated programmed cell death +16.9548485,GO:0010422,http://purl.obolibrary.org/obo/GO_0010422,regulation of brassinosteroid biosynthetic process +16.9548485,GO:0010433,http://purl.obolibrary.org/obo/GO_0010433,bract morphogenesis +16.9548485,GO:0010434,http://purl.obolibrary.org/obo/GO_0010434,bract formation +16.9548485,GO:0010436,http://purl.obolibrary.org/obo/GO_0010436,carotenoid dioxygenase activity +16.9548485,GO:0010448,http://purl.obolibrary.org/obo/GO_0010448,vegetative meristem growth +16.9548485,GO:0010455,http://purl.obolibrary.org/obo/GO_0010455,positive regulation of cell fate commitment +16.9548485,GO:0010480,http://purl.obolibrary.org/obo/GO_0010480,microsporocyte differentiation +16.9548485,GO:0010497,http://purl.obolibrary.org/obo/GO_0010497,plasmodesmata-mediated intercellular transport +16.9548485,GO:0010568,http://purl.obolibrary.org/obo/GO_0010568,regulation of budding cell apical bud growth +16.9548485,GO:0010569,http://purl.obolibrary.org/obo/GO_0010569,regulation of double-strand break repair via homologous recombination +16.9548485,GO:0010571,http://purl.obolibrary.org/obo/GO_0010571,positive regulation of nuclear cell cycle DNA replication +16.9548485,GO:0010582,http://purl.obolibrary.org/obo/GO_0010582,floral meristem determinacy +16.9548485,GO:0010586,http://purl.obolibrary.org/obo/GO_0010586,miRNA metabolic process +16.9548485,GO:0010595,http://purl.obolibrary.org/obo/GO_0010595,positive regulation of endothelial cell migration +16.9548485,GO:0010611,http://purl.obolibrary.org/obo/GO_0010611,regulation of cardiac muscle hypertrophy +16.9548485,GO:0010613,http://purl.obolibrary.org/obo/GO_0010613,positive regulation of cardiac muscle hypertrophy +16.9548485,GO:0010626,http://purl.obolibrary.org/obo/GO_0010626,negative regulation of Schwann cell proliferation +16.9548485,GO:0010634,http://purl.obolibrary.org/obo/GO_0010634,positive regulation of epithelial cell migration +16.9548485,GO:0010636,http://purl.obolibrary.org/obo/GO_0010636,positive regulation of mitochondrial fusion +16.9548485,GO:0010719,http://purl.obolibrary.org/obo/GO_0010719,negative regulation of epithelial to mesenchymal transition +16.9548485,GO:0010732,http://purl.obolibrary.org/obo/GO_0010732,regulation of protein glutathionylation +16.9548485,GO:0010738,http://purl.obolibrary.org/obo/GO_0010738,regulation of protein kinase A signaling +16.9548485,GO:0010742,http://purl.obolibrary.org/obo/GO_0010742,macrophage derived foam cell differentiation +16.9548485,GO:0010756,http://purl.obolibrary.org/obo/GO_0010756,positive regulation of plasminogen activation +16.9548485,GO:0010757,http://purl.obolibrary.org/obo/GO_0010757,negative regulation of plasminogen activation +16.9548485,GO:0010759,http://purl.obolibrary.org/obo/GO_0010759,positive regulation of macrophage chemotaxis +16.9548485,GO:0010760,http://purl.obolibrary.org/obo/GO_0010760,negative regulation of macrophage chemotaxis +16.9548485,GO:0010763,http://purl.obolibrary.org/obo/GO_0010763,positive regulation of fibroblast migration +16.9548485,GO:0010764,http://purl.obolibrary.org/obo/GO_0010764,negative regulation of fibroblast migration +16.9548485,GO:0010811,http://purl.obolibrary.org/obo/GO_0010811,positive regulation of cell-substrate adhesion +16.9548485,GO:0010812,http://purl.obolibrary.org/obo/GO_0010812,negative regulation of cell-substrate adhesion +16.9548485,GO:0010825,http://purl.obolibrary.org/obo/GO_0010825,positive regulation of centrosome duplication +16.9548485,GO:0010831,http://purl.obolibrary.org/obo/GO_0010831,positive regulation of myotube differentiation +16.9548485,GO:0010833,http://purl.obolibrary.org/obo/GO_0010833,telomere maintenance via telomere lengthening +16.9548485,GO:0010835,http://purl.obolibrary.org/obo/GO_0010835,regulation of protein ADP-ribosylation +16.9548485,GO:0010838,http://purl.obolibrary.org/obo/GO_0010838,positive regulation of keratinocyte proliferation +16.9548485,GO:0010842,http://purl.obolibrary.org/obo/GO_0010842,retina layer formation +16.9548485,GO:0010848,http://purl.obolibrary.org/obo/GO_0010848,regulation of chromatin disassembly +16.9548485,GO:0010863,http://purl.obolibrary.org/obo/GO_0010863,positive regulation of phospholipase C activity +16.9548485,GO:0010865,http://purl.obolibrary.org/obo/GO_0010865,stipule development +16.9548485,GO:0010866,http://purl.obolibrary.org/obo/GO_0010866,regulation of triglyceride biosynthetic process +16.9548485,GO:0010885,http://purl.obolibrary.org/obo/GO_0010885,regulation of cholesterol storage +16.9548485,GO:0010896,http://purl.obolibrary.org/obo/GO_0010896,regulation of triglyceride catabolic process +16.9548485,GO:0010898,http://purl.obolibrary.org/obo/GO_0010898,positive regulation of triglyceride catabolic process +16.9548485,GO:0010913,http://purl.obolibrary.org/obo/GO_0010913,regulation of sterigmatocystin biosynthetic process +16.9548485,GO:0010919,http://purl.obolibrary.org/obo/GO_0010919,regulation of inositol phosphate biosynthetic process +16.9548485,GO:0010943,http://purl.obolibrary.org/obo/GO_0010943,NADPH pyrophosphatase activity +16.9548485,GO:0010945,http://purl.obolibrary.org/obo/GO_0010945,CoA pyrophosphatase activity +16.9548485,GO:0010961,http://purl.obolibrary.org/obo/GO_0010961,cellular magnesium ion homeostasis +16.9548485,GO:0010971,http://purl.obolibrary.org/obo/GO_0010971,positive regulation of G2/M transition of mitotic cell cycle +16.9548485,GO:0014006,http://purl.obolibrary.org/obo/GO_0014006,regulation of microglia differentiation +16.9548485,GO:0014021,http://purl.obolibrary.org/obo/GO_0014021,secondary neural tube formation +16.9548485,GO:0014035,http://purl.obolibrary.org/obo/GO_0014035,neural crest cell fate determination +16.9548485,GO:0014040,http://purl.obolibrary.org/obo/GO_0014040,positive regulation of Schwann cell differentiation +16.9548485,GO:0014043,http://purl.obolibrary.org/obo/GO_0014043,negative regulation of neuron maturation +16.9548485,GO:0014048,http://purl.obolibrary.org/obo/GO_0014048,regulation of glutamate secretion +16.9548485,GO:0014068,http://purl.obolibrary.org/obo/GO_0014068,positive regulation of phosphatidylinositol 3-kinase signaling +16.9548485,GO:0014702,http://purl.obolibrary.org/obo/GO_0014702,free sarcoplasmic reticulum membrane +16.9548485,GO:0014731,http://purl.obolibrary.org/obo/GO_0014731,spectrin-associated cytoskeleton +16.9548485,GO:0014738,http://purl.obolibrary.org/obo/GO_0014738,regulation of muscle hyperplasia +16.9548485,GO:0014745,http://purl.obolibrary.org/obo/GO_0014745,negative regulation of muscle adaptation +16.9548485,GO:0014825,http://purl.obolibrary.org/obo/GO_0014825,stomach fundus smooth muscle contraction +16.9548485,GO:0014828,http://purl.obolibrary.org/obo/GO_0014828,distal stomach smooth muscle contraction +16.9548485,GO:0014833,http://purl.obolibrary.org/obo/GO_0014833,skeletal muscle satellite stem cell asymmetric division +16.9548485,GO:0014847,http://purl.obolibrary.org/obo/GO_0014847,proximal stomach smooth muscle contraction +16.9548485,GO:0014864,http://purl.obolibrary.org/obo/GO_0014864,detection of muscle activity +16.9548485,GO:0014872,http://purl.obolibrary.org/obo/GO_0014872,myoblast division +16.9548485,GO:0014895,http://purl.obolibrary.org/obo/GO_0014895,smooth muscle hypertrophy +16.9548485,GO:0014904,http://purl.obolibrary.org/obo/GO_0014904,myotube cell development +16.9548485,GO:0014911,http://purl.obolibrary.org/obo/GO_0014911,positive regulation of smooth muscle cell migration +16.9548485,GO:0014912,http://purl.obolibrary.org/obo/GO_0014912,negative regulation of smooth muscle cell migration +16.9548485,GO:0014916,http://purl.obolibrary.org/obo/GO_0014916,regulation of lung blood pressure +16.9548485,GO:0015018,http://purl.obolibrary.org/obo/GO_0015018,galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase activity +16.9548485,GO:0015024,http://purl.obolibrary.org/obo/GO_0015024,glucuronate-2-sulfatase activity +16.9548485,GO:0015080,http://purl.obolibrary.org/obo/GO_0015080,silver ion transmembrane transporter activity +16.9548485,GO:0015086,http://purl.obolibrary.org/obo/GO_0015086,cadmium ion transmembrane transporter activity +16.9548485,GO:0015095,http://purl.obolibrary.org/obo/GO_0015095,magnesium ion transmembrane transporter activity +16.9548485,GO:0015117,http://purl.obolibrary.org/obo/GO_0015117,thiosulfate transmembrane transporter activity +16.9548485,GO:0015151,http://purl.obolibrary.org/obo/GO_0015151,alpha-glucoside transmembrane transporter activity +16.9548485,GO:0015159,http://purl.obolibrary.org/obo/GO_0015159,polysaccharide transmembrane transporter activity +16.9548485,GO:0015174,http://purl.obolibrary.org/obo/GO_0015174,basic amino acid transmembrane transporter activity +16.9548485,GO:0015181,http://purl.obolibrary.org/obo/GO_0015181,none +16.9548485,GO:0015208,http://purl.obolibrary.org/obo/GO_0015208,guanine transmembrane transporter activity +16.9548485,GO:0015220,http://purl.obolibrary.org/obo/GO_0015220,choline transmembrane transporter activity +16.9548485,GO:0015234,http://purl.obolibrary.org/obo/GO_0015234,thiamine transmembrane transporter activity +16.9548485,GO:0015238,http://purl.obolibrary.org/obo/GO_0015238,none +16.9548485,GO:0015298,http://purl.obolibrary.org/obo/GO_0015298,solute:cation antiporter activity +16.9548485,GO:0015347,http://purl.obolibrary.org/obo/GO_0015347,sodium-independent organic anion transmembrane transporter activity +16.9548485,GO:0015407,http://purl.obolibrary.org/obo/GO_0015407,ABC-type monosaccharide transporter activity +16.9548485,GO:0015412,http://purl.obolibrary.org/obo/GO_0015412,ABC-type molybdate transporter activity +16.9548485,GO:0015416,http://purl.obolibrary.org/obo/GO_0015416,ABC-type phosphonate transporter activity +16.9548485,GO:0015424,http://purl.obolibrary.org/obo/GO_0015424,ABC-type amino acid transporter activity +16.9548485,GO:0015434,http://purl.obolibrary.org/obo/GO_0015434,ABC-type cadmium transporter activity +16.9548485,GO:0015445,http://purl.obolibrary.org/obo/GO_0015445,P-type silver transporter activity +16.9548485,GO:0015462,http://purl.obolibrary.org/obo/GO_0015462,ABC-type protein transporter activity +16.9548485,GO:0015491,http://purl.obolibrary.org/obo/GO_0015491,cation:cation antiporter activity +16.9548485,GO:0015567,http://purl.obolibrary.org/obo/GO_0015567,alkane transmembrane transporter activity +16.9548485,GO:0015573,http://purl.obolibrary.org/obo/GO_0015573,beta-glucoside transmembrane transporter activity +16.9548485,GO:0015574,http://purl.obolibrary.org/obo/GO_0015574,trehalose transmembrane transporter activity +16.9548485,GO:0015576,http://purl.obolibrary.org/obo/GO_0015576,sorbitol transmembrane transporter activity +16.9548485,GO:0015578,http://purl.obolibrary.org/obo/GO_0015578,mannose transmembrane transporter activity +16.9548485,GO:0015604,http://purl.obolibrary.org/obo/GO_0015604,none +16.9548485,GO:0015692,http://purl.obolibrary.org/obo/GO_0015692,lead ion transport +16.9548485,GO:0015699,http://purl.obolibrary.org/obo/GO_0015699,antimonite transport +16.9548485,GO:0015710,http://purl.obolibrary.org/obo/GO_0015710,tellurite transport +16.9548485,GO:0015726,http://purl.obolibrary.org/obo/GO_0015726,L-idonate transmembrane transport +16.9548485,GO:0015775,http://purl.obolibrary.org/obo/GO_0015775,beta-glucan transport +16.9548485,GO:0015799,http://purl.obolibrary.org/obo/GO_0015799,propanediol transport +16.9548485,GO:0015814,http://purl.obolibrary.org/obo/GO_0015814,p-aminobenzoyl-glutamate transport +16.9548485,GO:0015835,http://purl.obolibrary.org/obo/GO_0015835,peptidoglycan transport +16.9548485,GO:0015900,http://purl.obolibrary.org/obo/GO_0015900,benomyl transport +16.9548485,GO:0015902,http://purl.obolibrary.org/obo/GO_0015902,carbonyl cyanide m-chlorophenylhydrazone transport +16.9548485,GO:0015956,http://purl.obolibrary.org/obo/GO_0015956,bis(5'-nucleosidyl) oligophosphate metabolic process +16.9548485,GO:0015959,http://purl.obolibrary.org/obo/GO_0015959,diadenosine polyphosphate metabolic process +16.9548485,GO:0015993,http://purl.obolibrary.org/obo/GO_0015993,none +16.9548485,GO:0016014,http://purl.obolibrary.org/obo/GO_0016014,dystrobrevin complex +16.9548485,GO:0016024,http://purl.obolibrary.org/obo/GO_0016024,CDP-diacylglycerol biosynthetic process +16.9548485,GO:0016029,http://purl.obolibrary.org/obo/GO_0016029,subrhabdomeral cisterna +16.9548485,GO:0016036,http://purl.obolibrary.org/obo/GO_0016036,cellular response to phosphate starvation +16.9548485,GO:0016038,http://purl.obolibrary.org/obo/GO_0016038,absorption of visible light +16.9548485,GO:0016039,http://purl.obolibrary.org/obo/GO_0016039,absorption of UV light +16.9548485,GO:0016045,http://purl.obolibrary.org/obo/GO_0016045,detection of bacterium +16.9548485,GO:0016078,http://purl.obolibrary.org/obo/GO_0016078,tRNA catabolic process +16.9548485,GO:0016082,http://purl.obolibrary.org/obo/GO_0016082,synaptic vesicle priming +16.9548485,GO:0016084,http://purl.obolibrary.org/obo/GO_0016084,myostimulatory hormone activity +16.9548485,GO:0016158,http://purl.obolibrary.org/obo/GO_0016158,3-phytase activity +16.9548485,GO:0016175,http://purl.obolibrary.org/obo/GO_0016175,superoxide-generating NAD(P)H oxidase activity +16.9548485,GO:0016230,http://purl.obolibrary.org/obo/GO_0016230,sphingomyelin phosphodiesterase activator activity +16.9548485,GO:0016309,http://purl.obolibrary.org/obo/GO_0016309,1-phosphatidylinositol-5-phosphate 4-kinase activity +16.9548485,GO:0016338,http://purl.obolibrary.org/obo/GO_0016338,calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules +16.9548485,GO:0016344,http://purl.obolibrary.org/obo/GO_0016344,meiotic chromosome movement towards spindle pole +16.9548485,GO:0016426,http://purl.obolibrary.org/obo/GO_0016426,tRNA (adenine) methyltransferase activity +16.9548485,GO:0016429,http://purl.obolibrary.org/obo/GO_0016429,tRNA (adenine-N1-)-methyltransferase activity +16.9548485,GO:0016435,http://purl.obolibrary.org/obo/GO_0016435,rRNA (guanine) methyltransferase activity +16.9548485,GO:0016443,http://purl.obolibrary.org/obo/GO_0016443,bidentate ribonuclease III activity +16.9548485,GO:0016495,http://purl.obolibrary.org/obo/GO_0016495,C-X3-C chemokine receptor activity +16.9548485,GO:0016518,http://purl.obolibrary.org/obo/GO_0016518,interleukin-14 receptor activity +16.9548485,GO:0016531,http://purl.obolibrary.org/obo/GO_0016531,copper chaperone activity +16.9548485,GO:0016532,http://purl.obolibrary.org/obo/GO_0016532,superoxide dismutase copper chaperone activity +16.9548485,GO:0016560,http://purl.obolibrary.org/obo/GO_0016560,"protein import into peroxisome matrix, docking" +16.9548485,GO:0016598,http://purl.obolibrary.org/obo/GO_0016598,protein arginylation +16.9548485,GO:0016600,http://purl.obolibrary.org/obo/GO_0016600,flotillin complex +16.9548485,GO:0016606,http://purl.obolibrary.org/obo/GO_0016606,LYSP100-associated nuclear domain +16.9548485,GO:0016640,http://purl.obolibrary.org/obo/GO_0016640,"oxidoreductase activity, acting on the CH-NH2 group of donors, cytochrome as acceptor" +16.9548485,GO:0016697,http://purl.obolibrary.org/obo/GO_0016697,"oxidoreductase activity, acting on hydrogen as donor, cytochrome as acceptor" +16.9548485,GO:0016819,http://purl.obolibrary.org/obo/GO_0016819,"hydrolase activity, acting on acid anhydrides, in sulfonyl-containing anhydrides" +16.9548485,GO:0016828,http://purl.obolibrary.org/obo/GO_0016828,"hydrolase activity, acting on acid sulfur-sulfur bonds" +16.9548485,GO:0016971,http://purl.obolibrary.org/obo/GO_0016971,flavin-linked sulfhydryl oxidase activity +16.9548485,GO:0016994,http://purl.obolibrary.org/obo/GO_0016994,precorrin-6A reductase activity +16.9548485,GO:0017005,http://purl.obolibrary.org/obo/GO_0017005,3'-tyrosyl-DNA phosphodiesterase activity +16.9548485,GO:0017015,http://purl.obolibrary.org/obo/GO_0017015,regulation of transforming growth factor beta receptor signaling pathway +16.9548485,GO:0017089,http://purl.obolibrary.org/obo/GO_0017089,glycolipid transfer activity +16.9548485,GO:0017105,http://purl.obolibrary.org/obo/GO_0017105,acyl-CoA delta11-desaturase activity +16.9548485,GO:0017121,http://purl.obolibrary.org/obo/GO_0017121,plasma membrane phospholipid scrambling +16.9548485,GO:0017133,http://purl.obolibrary.org/obo/GO_0017133,mitochondrial electron transfer flavoprotein complex +16.9548485,GO:0017177,http://purl.obolibrary.org/obo/GO_0017177,glucosidase II complex +16.9548485,GO:0018033,http://purl.obolibrary.org/obo/GO_0018033,protein C-terminal amidation +16.9548485,GO:0018064,http://purl.obolibrary.org/obo/GO_0018064,protein-L-histidine N-tele-methyltransferase activity +16.9548485,GO:0018110,http://purl.obolibrary.org/obo/GO_0018110,histone arginine kinase activity +16.9548485,GO:0018196,http://purl.obolibrary.org/obo/GO_0018196,peptidyl-asparagine modification +16.9548485,GO:0018249,http://purl.obolibrary.org/obo/GO_0018249,protein dehydration +16.9548485,GO:0018279,http://purl.obolibrary.org/obo/GO_0018279,protein N-linked glycosylation via asparagine +16.9548485,GO:0018364,http://purl.obolibrary.org/obo/GO_0018364,peptidyl-glutamine methylation +16.9548485,GO:0018365,http://purl.obolibrary.org/obo/GO_0018365,protein-serine epimerase activity +16.9548485,GO:0018410,http://purl.obolibrary.org/obo/GO_0018410,C-terminal protein amino acid modification +16.9548485,GO:0018445,http://purl.obolibrary.org/obo/GO_0018445,prothoracicotrophic hormone activity +16.9548485,GO:0018447,http://purl.obolibrary.org/obo/GO_0018447,chloral hydrate dehydrogenase activity +16.9548485,GO:0018459,http://purl.obolibrary.org/obo/GO_0018459,carveol dehydrogenase activity +16.9548485,GO:0018460,http://purl.obolibrary.org/obo/GO_0018460,cyclohexanol dehydrogenase activity +16.9548485,GO:0018474,http://purl.obolibrary.org/obo/GO_0018474,2-carboxybenzaldehyde dehydrogenase activity +16.9548485,GO:0018493,http://purl.obolibrary.org/obo/GO_0018493,formylmethanofuran dehydrogenase activity +16.9548485,GO:0018494,http://purl.obolibrary.org/obo/GO_0018494,carvone reductase activity +16.9548485,GO:0018510,http://purl.obolibrary.org/obo/GO_0018510,phloroglucinol reductase activity +16.9548485,GO:0018526,http://purl.obolibrary.org/obo/GO_0018526,2-aminobenzoyl-CoA reductase activity +16.9548485,GO:0018547,http://purl.obolibrary.org/obo/GO_0018547,nitroglycerin reductase activity +16.9548485,GO:0018549,http://purl.obolibrary.org/obo/GO_0018549,methanethiol oxidase activity +16.9548485,GO:0018554,http://purl.obolibrary.org/obo/GO_0018554,"1,2-dihydroxynaphthalene dioxygenase activity" +16.9548485,GO:0018581,http://purl.obolibrary.org/obo/GO_0018581,"hydroxyquinol 1,2-dioxygenase activity" +16.9548485,GO:0018618,http://purl.obolibrary.org/obo/GO_0018618,"anthranilate 1,2-dioxygenase (deaminating, decarboxylating) activity" +16.9548485,GO:0018619,http://purl.obolibrary.org/obo/GO_0018619,"benzene 1,2-dioxygenase activity" +16.9548485,GO:0018620,http://purl.obolibrary.org/obo/GO_0018620,"phthalate 4,5-dioxygenase activity" +16.9548485,GO:0018637,http://purl.obolibrary.org/obo/GO_0018637,1-hydroxy-2-naphthoate hydroxylase activity +16.9548485,GO:0018665,http://purl.obolibrary.org/obo/GO_0018665,4-hydroxyphenylacetate 1-monooxygenase activity +16.9548485,GO:0018668,http://purl.obolibrary.org/obo/GO_0018668,3-hydroxybenzoate 4-monooxygenase activity +16.9548485,GO:0018675,http://purl.obolibrary.org/obo/GO_0018675,(S)-limonene 6-monooxygenase activity +16.9548485,GO:0018693,http://purl.obolibrary.org/obo/GO_0018693,ethylbenzene hydroxylase activity +16.9548485,GO:0018694,http://purl.obolibrary.org/obo/GO_0018694,p-cymene methyl hydroxylase activity +16.9548485,GO:0018706,http://purl.obolibrary.org/obo/GO_0018706,pyrogallol hydroxytransferase activity +16.9548485,GO:0018720,http://purl.obolibrary.org/obo/GO_0018720,phenol kinase activity +16.9548485,GO:0018741,http://purl.obolibrary.org/obo/GO_0018741,alkyl sulfatase activity +16.9548485,GO:0018742,http://purl.obolibrary.org/obo/GO_0018742,epoxide hydrolase B activity +16.9548485,GO:0018773,http://purl.obolibrary.org/obo/GO_0018773,acetylpyruvate hydrolase activity +16.9548485,GO:0018811,http://purl.obolibrary.org/obo/GO_0018811,cyclohex-1-ene-1-carboxyl-CoA hydratase activity +16.9548485,GO:0018824,http://purl.obolibrary.org/obo/GO_0018824,(hydroxyamino)benzene mutase activity +16.9548485,GO:0018830,http://purl.obolibrary.org/obo/GO_0018830,gamma-hexachlorocyclohexane dehydrochlorinase activity +16.9548485,GO:0018881,http://purl.obolibrary.org/obo/GO_0018881,bromoxynil metabolic process +16.9548485,GO:0018890,http://purl.obolibrary.org/obo/GO_0018890,cyanamide metabolic process +16.9548485,GO:0018891,http://purl.obolibrary.org/obo/GO_0018891,cyclohexanol metabolic process +16.9548485,GO:0018899,http://purl.obolibrary.org/obo/GO_0018899,"1,2-dichloroethane metabolic process" +16.9548485,GO:0018926,http://purl.obolibrary.org/obo/GO_0018926,methanesulfonic acid metabolic process +16.9548485,GO:0018928,http://purl.obolibrary.org/obo/GO_0018928,methyl ethyl ketone metabolic process +16.9548485,GO:0018954,http://purl.obolibrary.org/obo/GO_0018954,pentaerythritol tetranitrate metabolic process +16.9548485,GO:0019037,http://purl.obolibrary.org/obo/GO_0019037,viral assembly intermediate +16.9548485,GO:0019042,http://purl.obolibrary.org/obo/GO_0019042,viral latency +16.9548485,GO:0019099,http://purl.obolibrary.org/obo/GO_0019099,female germ-line sex determination +16.9548485,GO:0019163,http://purl.obolibrary.org/obo/GO_0019163,pyridoxamine-phosphate transaminase activity +16.9548485,GO:0019166,http://purl.obolibrary.org/obo/GO_0019166,trans-2-enoyl-CoA reductase (NADPH) activity +16.9548485,GO:0019168,http://purl.obolibrary.org/obo/GO_0019168,2-octaprenylphenol hydroxylase activity +16.9548485,GO:0019191,http://purl.obolibrary.org/obo/GO_0019191,cellobiose transmembrane transporter activity +16.9548485,GO:0019255,http://purl.obolibrary.org/obo/GO_0019255,glucose 1-phosphate metabolic process +16.9548485,GO:0019264,http://purl.obolibrary.org/obo/GO_0019264,glycine biosynthetic process from serine +16.9548485,GO:0019276,http://purl.obolibrary.org/obo/GO_0019276,UDP-N-acetylgalactosamine metabolic process +16.9548485,GO:0019285,http://purl.obolibrary.org/obo/GO_0019285,glycine betaine biosynthetic process from choline +16.9548485,GO:0019297,http://purl.obolibrary.org/obo/GO_0019297,coenzyme B metabolic process +16.9548485,GO:0019298,http://purl.obolibrary.org/obo/GO_0019298,coenzyme B biosynthetic process +16.9548485,GO:0019306,http://purl.obolibrary.org/obo/GO_0019306,GDP-D-rhamnose biosynthetic process +16.9548485,GO:0019309,http://purl.obolibrary.org/obo/GO_0019309,mannose catabolic process +16.9548485,GO:0019310,http://purl.obolibrary.org/obo/GO_0019310,inositol catabolic process +16.9548485,GO:0019314,http://purl.obolibrary.org/obo/GO_0019314,D-allose metabolic process +16.9548485,GO:0019317,http://purl.obolibrary.org/obo/GO_0019317,fucose catabolic process +16.9548485,GO:0019324,http://purl.obolibrary.org/obo/GO_0019324,L-lyxose metabolic process +16.9548485,GO:0019331,http://purl.obolibrary.org/obo/GO_0019331,"anaerobic respiration, using ammonium as electron donor" +16.9548485,GO:0019339,http://purl.obolibrary.org/obo/GO_0019339,parathion catabolic process +16.9548485,GO:0019404,http://purl.obolibrary.org/obo/GO_0019404,galactitol catabolic process +16.9548485,GO:0019407,http://purl.obolibrary.org/obo/GO_0019407,hexitol catabolic process +16.9548485,GO:0019472,http://purl.obolibrary.org/obo/GO_0019472,4-hydroxyproline biosynthetic process +16.9548485,GO:0019484,http://purl.obolibrary.org/obo/GO_0019484,beta-alanine catabolic process +16.9548485,GO:0019489,http://purl.obolibrary.org/obo/GO_0019489,methylgallate metabolic process +16.9548485,GO:0019497,http://purl.obolibrary.org/obo/GO_0019497,hexachlorocyclohexane metabolic process +16.9548485,GO:0019509,http://purl.obolibrary.org/obo/GO_0019509,L-methionine salvage from methylthioadenosine +16.9548485,GO:0019523,http://purl.obolibrary.org/obo/GO_0019523,L-idonate metabolic process +16.9548485,GO:0019609,http://purl.obolibrary.org/obo/GO_0019609,3-hydroxyphenylacetate metabolic process +16.9548485,GO:0019633,http://purl.obolibrary.org/obo/GO_0019633,shikimate catabolic process +16.9548485,GO:0019635,http://purl.obolibrary.org/obo/GO_0019635,2-aminoethylphosphonate catabolic process +16.9548485,GO:0019636,http://purl.obolibrary.org/obo/GO_0019636,phosphonoacetate metabolic process +16.9548485,GO:0019667,http://purl.obolibrary.org/obo/GO_0019667,anaerobic L-alanine catabolic process +16.9548485,GO:0019740,http://purl.obolibrary.org/obo/GO_0019740,nitrogen utilization +16.9548485,GO:0019777,http://purl.obolibrary.org/obo/GO_0019777,Atg12 transferase activity +16.9548485,GO:0019780,http://purl.obolibrary.org/obo/GO_0019780,FAT10 activating enzyme activity +16.9548485,GO:0021501,http://purl.obolibrary.org/obo/GO_0021501,prechordal plate formation +16.9548485,GO:0021513,http://purl.obolibrary.org/obo/GO_0021513,spinal cord dorsal/ventral patterning +16.9548485,GO:0021523,http://purl.obolibrary.org/obo/GO_0021523,somatic motor neuron differentiation +16.9548485,GO:0021524,http://purl.obolibrary.org/obo/GO_0021524,visceral motor neuron differentiation +16.9548485,GO:0021538,http://purl.obolibrary.org/obo/GO_0021538,epithalamus development +16.9548485,GO:0021576,http://purl.obolibrary.org/obo/GO_0021576,hindbrain formation +16.9548485,GO:0021588,http://purl.obolibrary.org/obo/GO_0021588,cerebellum formation +16.9548485,GO:0021593,http://purl.obolibrary.org/obo/GO_0021593,rhombomere morphogenesis +16.9548485,GO:0021602,http://purl.obolibrary.org/obo/GO_0021602,cranial nerve morphogenesis +16.9548485,GO:0021630,http://purl.obolibrary.org/obo/GO_0021630,olfactory nerve maturation +16.9548485,GO:0021631,http://purl.obolibrary.org/obo/GO_0021631,optic nerve morphogenesis +16.9548485,GO:0021739,http://purl.obolibrary.org/obo/GO_0021739,mesencephalic trigeminal nucleus development +16.9548485,GO:0021759,http://purl.obolibrary.org/obo/GO_0021759,globus pallidus development +16.9548485,GO:0021773,http://purl.obolibrary.org/obo/GO_0021773,striatal medium spiny neuron differentiation +16.9548485,GO:0021781,http://purl.obolibrary.org/obo/GO_0021781,glial cell fate commitment +16.9548485,GO:0021794,http://purl.obolibrary.org/obo/GO_0021794,thalamus development +16.9548485,GO:0021863,http://purl.obolibrary.org/obo/GO_0021863,forebrain neuroblast differentiation +16.9548485,GO:0021870,http://purl.obolibrary.org/obo/GO_0021870,Cajal-Retzius cell differentiation +16.9548485,GO:0021889,http://purl.obolibrary.org/obo/GO_0021889,olfactory bulb interneuron differentiation +16.9548485,GO:0021896,http://purl.obolibrary.org/obo/GO_0021896,forebrain astrocyte differentiation +16.9548485,GO:0021988,http://purl.obolibrary.org/obo/GO_0021988,olfactory lobe development +16.9548485,GO:0022006,http://purl.obolibrary.org/obo/GO_0022006,zona limitans intrathalamica formation +16.9548485,GO:0022009,http://purl.obolibrary.org/obo/GO_0022009,central nervous system vasculogenesis +16.9548485,GO:0022028,http://purl.obolibrary.org/obo/GO_0022028,tangential migration from the subventricular zone to the olfactory bulb +16.9548485,GO:0022608,http://purl.obolibrary.org/obo/GO_0022608,multicellular organism adhesion +16.9548485,GO:0022609,http://purl.obolibrary.org/obo/GO_0022609,multicellular organism adhesion to substrate +16.9548485,GO:0022615,http://purl.obolibrary.org/obo/GO_0022615,protein to membrane docking +16.9548485,GO:0022624,http://purl.obolibrary.org/obo/GO_0022624,proteasome accessory complex +16.9548485,GO:0022625,http://purl.obolibrary.org/obo/GO_0022625,cytosolic large ribosomal subunit +16.9548485,GO:0022628,http://purl.obolibrary.org/obo/GO_0022628,chloroplast large ribosomal subunit +16.9548485,GO:0022629,http://purl.obolibrary.org/obo/GO_0022629,chloroplast small ribosomal subunit +16.9548485,GO:0022828,http://purl.obolibrary.org/obo/GO_0022828,phosphorylation-gated channel activity +16.9548485,GO:0022849,http://purl.obolibrary.org/obo/GO_0022849,glutamate-gated calcium ion channel activity +16.9548485,GO:0022870,http://purl.obolibrary.org/obo/GO_0022870,protein-N(PI)-phosphohistidine-mannose phosphotransferase system transporter activity +16.9548485,GO:0023016,http://purl.obolibrary.org/obo/GO_0023016,none +16.9548485,GO:0023058,http://purl.obolibrary.org/obo/GO_0023058,adaptation of signaling pathway +16.9548485,GO:0030007,http://purl.obolibrary.org/obo/GO_0030007,cellular potassium ion homeostasis +16.9548485,GO:0030015,http://purl.obolibrary.org/obo/GO_0030015,CCR4-NOT core complex +16.9548485,GO:0030033,http://purl.obolibrary.org/obo/GO_0030033,microvillus assembly +16.9548485,GO:0030077,http://purl.obolibrary.org/obo/GO_0030077,plasma membrane light-harvesting complex +16.9548485,GO:0030078,http://purl.obolibrary.org/obo/GO_0030078,"light-harvesting complex, core complex" +16.9548485,GO:0030128,http://purl.obolibrary.org/obo/GO_0030128,clathrin coat of endocytic vesicle +16.9548485,GO:0030242,http://purl.obolibrary.org/obo/GO_0030242,autophagy of peroxisome +16.9548485,GO:0030255,http://purl.obolibrary.org/obo/GO_0030255,protein secretion by the type IV secretion system +16.9548485,GO:0030283,http://purl.obolibrary.org/obo/GO_0030283,testosterone dehydrogenase [NAD(P)] activity +16.9548485,GO:0030285,http://purl.obolibrary.org/obo/GO_0030285,integral component of synaptic vesicle membrane +16.9548485,GO:0030287,http://purl.obolibrary.org/obo/GO_0030287,cell wall-bounded periplasmic space +16.9548485,GO:0030288,http://purl.obolibrary.org/obo/GO_0030288,outer membrane-bounded periplasmic space +16.9548485,GO:0030297,http://purl.obolibrary.org/obo/GO_0030297,transmembrane receptor protein tyrosine kinase activator activity +16.9548485,GO:0030298,http://purl.obolibrary.org/obo/GO_0030298,receptor signaling protein tyrosine kinase activator activity +16.9548485,GO:0030329,http://purl.obolibrary.org/obo/GO_0030329,prenylcysteine metabolic process +16.9548485,GO:0030351,http://purl.obolibrary.org/obo/GO_0030351,"inositol-1,3,4,5,6-pentakisphosphate 3-phosphatase activity" +16.9548485,GO:0030373,http://purl.obolibrary.org/obo/GO_0030373,high molecular weight B cell growth factor receptor activity +16.9548485,GO:0030392,http://purl.obolibrary.org/obo/GO_0030392,fructosamine catabolic process +16.9548485,GO:0030474,http://purl.obolibrary.org/obo/GO_0030474,spindle pole body duplication +16.9548485,GO:0030490,http://purl.obolibrary.org/obo/GO_0030490,maturation of SSU-rRNA +16.9548485,GO:0030502,http://purl.obolibrary.org/obo/GO_0030502,negative regulation of bone mineralization +16.9548485,GO:0030513,http://purl.obolibrary.org/obo/GO_0030513,positive regulation of BMP signaling pathway +16.9548485,GO:0030517,http://purl.obolibrary.org/obo/GO_0030517,negative regulation of axon extension +16.9548485,GO:0030580,http://purl.obolibrary.org/obo/GO_0030580,quinone cofactor methyltransferase activity +16.9548485,GO:0030661,http://purl.obolibrary.org/obo/GO_0030661,chitosome membrane +16.9548485,GO:0030676,http://purl.obolibrary.org/obo/GO_0030676,none +16.9548485,GO:0030689,http://purl.obolibrary.org/obo/GO_0030689,Noc complex +16.9548485,GO:0030707,http://purl.obolibrary.org/obo/GO_0030707,ovarian follicle cell development +16.9548485,GO:0030716,http://purl.obolibrary.org/obo/GO_0030716,oocyte fate determination +16.9548485,GO:0030719,http://purl.obolibrary.org/obo/GO_0030719,P granule organization +16.9548485,GO:0030740,http://purl.obolibrary.org/obo/GO_0030740,inositol 3-methyltransferase activity +16.9548485,GO:0030741,http://purl.obolibrary.org/obo/GO_0030741,inositol 1-methyltransferase activity +16.9548485,GO:0030744,http://purl.obolibrary.org/obo/GO_0030744,luteolin O-methyltransferase activity +16.9548485,GO:0030749,http://purl.obolibrary.org/obo/GO_0030749,loganate O-methyltransferase activity +16.9548485,GO:0030751,http://purl.obolibrary.org/obo/GO_0030751,licodione 2'-O-methyltransferase activity +16.9548485,GO:0030753,http://purl.obolibrary.org/obo/GO_0030753,8-hydroxyfuranocoumarin 8-O-methyltransferase activity +16.9548485,GO:0030757,http://purl.obolibrary.org/obo/GO_0030757,3-methylquercitin 7-O-methyltransferase activity +16.9548485,GO:0030763,http://purl.obolibrary.org/obo/GO_0030763,isobutyraldoxime O-methyltransferase activity +16.9548485,GO:0030767,http://purl.obolibrary.org/obo/GO_0030767,3-hydroxyanthranilate 4-C-methyltransferase activity +16.9548485,GO:0030768,http://purl.obolibrary.org/obo/GO_0030768,"16-methoxy-2,3-dihydro-3-hydroxytabersonine N-methyltransferase activity" +16.9548485,GO:0030771,http://purl.obolibrary.org/obo/GO_0030771,N-benzoyl-4-hydroxyanthranilate 4-O-methyltransferase activity +16.9548485,GO:0030772,http://purl.obolibrary.org/obo/GO_0030772,tryptophan 2-C-methyltransferase activity +16.9548485,GO:0030774,http://purl.obolibrary.org/obo/GO_0030774,anthranilate N-methyltransferase activity +16.9548485,GO:0030778,http://purl.obolibrary.org/obo/GO_0030778,columbamine O-methyltransferase activity +16.9548485,GO:0030785,http://purl.obolibrary.org/obo/GO_0030785,[ribulose-bisphosphate carboxylase]-lysine N-methyltransferase activity +16.9548485,GO:0030793,http://purl.obolibrary.org/obo/GO_0030793,3'-demethylstaurosporine O-methyltransferase activity +16.9548485,GO:0030806,http://purl.obolibrary.org/obo/GO_0030806,none +16.9548485,GO:0030821,http://purl.obolibrary.org/obo/GO_0030821,none +16.9548485,GO:0030853,http://purl.obolibrary.org/obo/GO_0030853,negative regulation of granulocyte differentiation +16.9548485,GO:0030913,http://purl.obolibrary.org/obo/GO_0030913,paranodal junction assembly +16.9548485,GO:0030947,http://purl.obolibrary.org/obo/GO_0030947,regulation of vascular endothelial growth factor receptor signaling pathway +16.9548485,GO:0030949,http://purl.obolibrary.org/obo/GO_0030949,positive regulation of vascular endothelial growth factor receptor signaling pathway +16.9548485,GO:0030954,http://purl.obolibrary.org/obo/GO_0030954,astral microtubule nucleation +16.9548485,GO:0030997,http://purl.obolibrary.org/obo/GO_0030997,regulation of centriole-centriole cohesion +16.9548485,GO:0031055,http://purl.obolibrary.org/obo/GO_0031055,chromatin remodeling at centromere +16.9548485,GO:0031077,http://purl.obolibrary.org/obo/GO_0031077,post-embryonic camera-type eye development +16.9548485,GO:0031084,http://purl.obolibrary.org/obo/GO_0031084,BLOC-2 complex +16.9548485,GO:0031085,http://purl.obolibrary.org/obo/GO_0031085,BLOC-3 complex +16.9548485,GO:0031106,http://purl.obolibrary.org/obo/GO_0031106,septin ring organization +16.9548485,GO:0031115,http://purl.obolibrary.org/obo/GO_0031115,negative regulation of microtubule polymerization +16.9548485,GO:0031132,http://purl.obolibrary.org/obo/GO_0031132,serine 3-dehydrogenase activity +16.9548485,GO:0031156,http://purl.obolibrary.org/obo/GO_0031156,regulation of sorocarp development +16.9548485,GO:0031160,http://purl.obolibrary.org/obo/GO_0031160,spore wall +16.9548485,GO:0031170,http://purl.obolibrary.org/obo/GO_0031170,ferricrocin metabolic process +16.9548485,GO:0031171,http://purl.obolibrary.org/obo/GO_0031171,ferricrocin biosynthetic process +16.9548485,GO:0031263,http://purl.obolibrary.org/obo/GO_0031263,none +16.9548485,GO:0031285,http://purl.obolibrary.org/obo/GO_0031285,regulation of sorocarp stalk cell differentiation +16.9548485,GO:0031286,http://purl.obolibrary.org/obo/GO_0031286,negative regulation of sorocarp stalk cell differentiation +16.9548485,GO:0031319,http://purl.obolibrary.org/obo/GO_0031319,detection of cAMP +16.9548485,GO:0031336,http://purl.obolibrary.org/obo/GO_0031336,negative regulation of sulfur amino acid metabolic process +16.9548485,GO:0031360,http://purl.obolibrary.org/obo/GO_0031360,intrinsic component of thylakoid membrane +16.9548485,GO:0031361,http://purl.obolibrary.org/obo/GO_0031361,integral component of thylakoid membrane +16.9548485,GO:0031372,http://purl.obolibrary.org/obo/GO_0031372,UBC13-MMS2 complex +16.9548485,GO:0031389,http://purl.obolibrary.org/obo/GO_0031389,Rad17 RFC-like complex +16.9548485,GO:0031390,http://purl.obolibrary.org/obo/GO_0031390,Ctf18 RFC-like complex +16.9548485,GO:0031391,http://purl.obolibrary.org/obo/GO_0031391,Elg1 RFC-like complex +16.9548485,GO:0031393,http://purl.obolibrary.org/obo/GO_0031393,negative regulation of prostaglandin biosynthetic process +16.9548485,GO:0031429,http://purl.obolibrary.org/obo/GO_0031429,box H/ACA snoRNP complex +16.9548485,GO:0031431,http://purl.obolibrary.org/obo/GO_0031431,Dbf4-dependent protein kinase complex +16.9548485,GO:0031462,http://purl.obolibrary.org/obo/GO_0031462,Cul2-RING ubiquitin ligase complex +16.9548485,GO:0031475,http://purl.obolibrary.org/obo/GO_0031475,myosin V complex +16.9548485,GO:0031477,http://purl.obolibrary.org/obo/GO_0031477,myosin VII complex +16.9548485,GO:0031478,http://purl.obolibrary.org/obo/GO_0031478,myosin VIII complex +16.9548485,GO:0031484,http://purl.obolibrary.org/obo/GO_0031484,myosin XIV complex +16.9548485,GO:0031500,http://purl.obolibrary.org/obo/GO_0031500,Tea1 cell-end complex +16.9548485,GO:0031506,http://purl.obolibrary.org/obo/GO_0031506,cell wall glycoprotein biosynthetic process +16.9548485,GO:0031535,http://purl.obolibrary.org/obo/GO_0031535,plus-end directed microtubule sliding +16.9548485,GO:0031536,http://purl.obolibrary.org/obo/GO_0031536,positive regulation of exit from mitosis +16.9548485,GO:0031590,http://purl.obolibrary.org/obo/GO_0031590,wybutosine metabolic process +16.9548485,GO:0031591,http://purl.obolibrary.org/obo/GO_0031591,wybutosine biosynthetic process +16.9548485,GO:0031653,http://purl.obolibrary.org/obo/GO_0031653,heat dissipation +16.9548485,GO:0031676,http://purl.obolibrary.org/obo/GO_0031676,plasma membrane-derived thylakoid membrane +16.9548485,GO:0031679,http://purl.obolibrary.org/obo/GO_0031679,NADH dehydrogenase (plastoquinone) activity +16.9548485,GO:0031911,http://purl.obolibrary.org/obo/GO_0031911,cytoproct +16.9548485,GO:0031912,http://purl.obolibrary.org/obo/GO_0031912,oral apparatus +16.9548485,GO:0031916,http://purl.obolibrary.org/obo/GO_0031916,regulation of synaptic metaplasticity +16.9548485,GO:0031920,http://purl.obolibrary.org/obo/GO_0031920,pyridoxal transport +16.9548485,GO:0031953,http://purl.obolibrary.org/obo/GO_0031953,negative regulation of protein autophosphorylation +16.9548485,GO:0031957,http://purl.obolibrary.org/obo/GO_0031957,very long-chain fatty acid-CoA ligase activity +16.9548485,GO:0031959,http://purl.obolibrary.org/obo/GO_0031959,mineralocorticoid receptor signaling pathway +16.9548485,GO:0031964,http://purl.obolibrary.org/obo/GO_0031964,beta-alanyl-histamine hydrolase activity +16.9548485,GO:0031986,http://purl.obolibrary.org/obo/GO_0031986,proteinoplast +16.9548485,GO:0032007,http://purl.obolibrary.org/obo/GO_0032007,negative regulation of TOR signaling +16.9548485,GO:0032008,http://purl.obolibrary.org/obo/GO_0032008,positive regulation of TOR signaling +16.9548485,GO:0032011,http://purl.obolibrary.org/obo/GO_0032011,ARF protein signal transduction +16.9548485,GO:0032055,http://purl.obolibrary.org/obo/GO_0032055,negative regulation of translation in response to stress +16.9548485,GO:0032057,http://purl.obolibrary.org/obo/GO_0032057,negative regulation of translational initiation in response to stress +16.9548485,GO:0032116,http://purl.obolibrary.org/obo/GO_0032116,SMC loading complex +16.9548485,GO:0032149,http://purl.obolibrary.org/obo/GO_0032149,response to rhamnose +16.9548485,GO:0032185,http://purl.obolibrary.org/obo/GO_0032185,septin cytoskeleton organization +16.9548485,GO:0032199,http://purl.obolibrary.org/obo/GO_0032199,reverse transcription involved in RNA-mediated transposition +16.9548485,GO:0032201,http://purl.obolibrary.org/obo/GO_0032201,telomere maintenance via semi-conservative replication +16.9548485,GO:0032205,http://purl.obolibrary.org/obo/GO_0032205,negative regulation of telomere maintenance +16.9548485,GO:0032240,http://purl.obolibrary.org/obo/GO_0032240,negative regulation of nucleobase-containing compound transport +16.9548485,GO:0032241,http://purl.obolibrary.org/obo/GO_0032241,positive regulation of nucleobase-containing compound transport +16.9548485,GO:0032243,http://purl.obolibrary.org/obo/GO_0032243,negative regulation of nucleoside transport +16.9548485,GO:0032244,http://purl.obolibrary.org/obo/GO_0032244,positive regulation of nucleoside transport +16.9548485,GO:0032247,http://purl.obolibrary.org/obo/GO_0032247,negative regulation of purine nucleoside transport +16.9548485,GO:0032248,http://purl.obolibrary.org/obo/GO_0032248,positive regulation of purine nucleoside transport +16.9548485,GO:0032250,http://purl.obolibrary.org/obo/GO_0032250,negative regulation of adenosine transport +16.9548485,GO:0032251,http://purl.obolibrary.org/obo/GO_0032251,positive regulation of adenosine transport +16.9548485,GO:0032281,http://purl.obolibrary.org/obo/GO_0032281,AMPA glutamate receptor complex +16.9548485,GO:0032290,http://purl.obolibrary.org/obo/GO_0032290,peripheral nervous system myelin formation +16.9548485,GO:0032298,http://purl.obolibrary.org/obo/GO_0032298,positive regulation of DNA-dependent DNA replication initiation +16.9548485,GO:0032305,http://purl.obolibrary.org/obo/GO_0032305,positive regulation of icosanoid secretion +16.9548485,GO:0032308,http://purl.obolibrary.org/obo/GO_0032308,positive regulation of prostaglandin secretion +16.9548485,GO:0032311,http://purl.obolibrary.org/obo/GO_0032311,angiogenin-PRI complex +16.9548485,GO:0032322,http://purl.obolibrary.org/obo/GO_0032322,ubiquinone catabolic process +16.9548485,GO:0032351,http://purl.obolibrary.org/obo/GO_0032351,negative regulation of hormone metabolic process +16.9548485,GO:0032353,http://purl.obolibrary.org/obo/GO_0032353,negative regulation of hormone biosynthetic process +16.9548485,GO:0032377,http://purl.obolibrary.org/obo/GO_0032377,regulation of intracellular lipid transport +16.9548485,GO:0032380,http://purl.obolibrary.org/obo/GO_0032380,regulation of intracellular sterol transport +16.9548485,GO:0032397,http://purl.obolibrary.org/obo/GO_0032397,activating MHC class I receptor activity +16.9548485,GO:0032440,http://purl.obolibrary.org/obo/GO_0032440,2-alkenal reductase [NAD(P)+] activity +16.9548485,GO:0032458,http://purl.obolibrary.org/obo/GO_0032458,slow endocytic recycling +16.9548485,GO:0032459,http://purl.obolibrary.org/obo/GO_0032459,regulation of protein oligomerization +16.9548485,GO:0032472,http://purl.obolibrary.org/obo/GO_0032472,Golgi calcium ion transport +16.9548485,GO:0032490,http://purl.obolibrary.org/obo/GO_0032490,detection of molecule of bacterial origin +16.9548485,GO:0032497,http://purl.obolibrary.org/obo/GO_0032497,detection of lipopolysaccharide +16.9548485,GO:0032509,http://purl.obolibrary.org/obo/GO_0032509,endosome transport via multivesicular body sorting pathway +16.9548485,GO:0032513,http://purl.obolibrary.org/obo/GO_0032513,none +16.9548485,GO:0032527,http://purl.obolibrary.org/obo/GO_0032527,protein exit from endoplasmic reticulum +16.9548485,GO:0032528,http://purl.obolibrary.org/obo/GO_0032528,microvillus organization +16.9548485,GO:0032530,http://purl.obolibrary.org/obo/GO_0032530,regulation of microvillus organization +16.9548485,GO:0032532,http://purl.obolibrary.org/obo/GO_0032532,regulation of microvillus length +16.9548485,GO:0032572,http://purl.obolibrary.org/obo/GO_0032572,response to menaquinone +16.9548485,GO:0032575,http://purl.obolibrary.org/obo/GO_0032575,none +16.9548485,GO:0032603,http://purl.obolibrary.org/obo/GO_0032603,fractalkine production +16.9548485,GO:0032627,http://purl.obolibrary.org/obo/GO_0032627,interleukin-23 production +16.9548485,GO:0032639,http://purl.obolibrary.org/obo/GO_0032639,TRAIL production +16.9548485,GO:0032654,http://purl.obolibrary.org/obo/GO_0032654,regulation of interleukin-11 production +16.9548485,GO:0032671,http://purl.obolibrary.org/obo/GO_0032671,regulation of interleukin-27 production +16.9548485,GO:0032672,http://purl.obolibrary.org/obo/GO_0032672,regulation of interleukin-3 production +16.9548485,GO:0032687,http://purl.obolibrary.org/obo/GO_0032687,negative regulation of interferon-alpha production +16.9548485,GO:0032698,http://purl.obolibrary.org/obo/GO_0032698,negative regulation of interleukin-15 production +16.9548485,GO:0032714,http://purl.obolibrary.org/obo/GO_0032714,negative regulation of interleukin-5 production +16.9548485,GO:0032718,http://purl.obolibrary.org/obo/GO_0032718,negative regulation of interleukin-9 production +16.9548485,GO:0032723,http://purl.obolibrary.org/obo/GO_0032723,positive regulation of connective tissue growth factor production +16.9548485,GO:0032724,http://purl.obolibrary.org/obo/GO_0032724,positive regulation of fractalkine production +16.9548485,GO:0032727,http://purl.obolibrary.org/obo/GO_0032727,positive regulation of interferon-alpha production +16.9548485,GO:0032731,http://purl.obolibrary.org/obo/GO_0032731,positive regulation of interleukin-1 beta production +16.9548485,GO:0032733,http://purl.obolibrary.org/obo/GO_0032733,positive regulation of interleukin-10 production +16.9548485,GO:0032802,http://purl.obolibrary.org/obo/GO_0032802,low-density lipoprotein particle receptor catabolic process +16.9548485,GO:0032803,http://purl.obolibrary.org/obo/GO_0032803,regulation of low-density lipoprotein particle receptor catabolic process +16.9548485,GO:0032804,http://purl.obolibrary.org/obo/GO_0032804,negative regulation of low-density lipoprotein particle receptor catabolic process +16.9548485,GO:0032819,http://purl.obolibrary.org/obo/GO_0032819,positive regulation of natural killer cell proliferation +16.9548485,GO:0032824,http://purl.obolibrary.org/obo/GO_0032824,negative regulation of natural killer cell differentiation +16.9548485,GO:0032825,http://purl.obolibrary.org/obo/GO_0032825,positive regulation of natural killer cell differentiation +16.9548485,GO:0032887,http://purl.obolibrary.org/obo/GO_0032887,regulation of spindle elongation +16.9548485,GO:0032901,http://purl.obolibrary.org/obo/GO_0032901,positive regulation of neurotrophin production +16.9548485,GO:0032936,http://purl.obolibrary.org/obo/GO_0032936,SREBP-SCAP complex +16.9548485,GO:0032938,http://purl.obolibrary.org/obo/GO_0032938,negative regulation of translation in response to oxidative stress +16.9548485,GO:0032952,http://purl.obolibrary.org/obo/GO_0032952,regulation of (1->3)-beta-D-glucan metabolic process +16.9548485,GO:0032953,http://purl.obolibrary.org/obo/GO_0032953,regulation of (1->3)-beta-D-glucan biosynthetic process +16.9548485,GO:0032959,http://purl.obolibrary.org/obo/GO_0032959,inositol trisphosphate biosynthetic process +16.9548485,GO:0032969,http://purl.obolibrary.org/obo/GO_0032969,endosomal scaffold complex +16.9548485,GO:0032977,http://purl.obolibrary.org/obo/GO_0032977,membrane insertase activity +16.9548485,GO:0032986,http://purl.obolibrary.org/obo/GO_0032986,protein-DNA complex disassembly +16.9548485,GO:0033029,http://purl.obolibrary.org/obo/GO_0033029,regulation of neutrophil apoptotic process +16.9548485,GO:0033031,http://purl.obolibrary.org/obo/GO_0033031,positive regulation of neutrophil apoptotic process +16.9548485,GO:0033032,http://purl.obolibrary.org/obo/GO_0033032,regulation of myeloid cell apoptotic process +16.9548485,GO:0033034,http://purl.obolibrary.org/obo/GO_0033034,positive regulation of myeloid cell apoptotic process +16.9548485,GO:0033053,http://purl.obolibrary.org/obo/GO_0033053,D-glutamine metabolic process +16.9548485,GO:0033062,http://purl.obolibrary.org/obo/GO_0033062,Rhp55-Rhp57 complex +16.9548485,GO:0033100,http://purl.obolibrary.org/obo/GO_0033100,NuA3 histone acetyltransferase complex +16.9548485,GO:0033102,http://purl.obolibrary.org/obo/GO_0033102,acidocalcisome membrane +16.9548485,GO:0033104,http://purl.obolibrary.org/obo/GO_0033104,type VI protein secretion system complex +16.9548485,GO:0033113,http://purl.obolibrary.org/obo/GO_0033113,cyanelle membrane +16.9548485,GO:0033115,http://purl.obolibrary.org/obo/GO_0033115,cyanelle thylakoid membrane +16.9548485,GO:0033116,http://purl.obolibrary.org/obo/GO_0033116,endoplasmic reticulum-Golgi intermediate compartment membrane +16.9548485,GO:0033122,http://purl.obolibrary.org/obo/GO_0033122,negative regulation of purine nucleotide catabolic process +16.9548485,GO:0033210,http://purl.obolibrary.org/obo/GO_0033210,leptin-mediated signaling pathway +16.9548485,GO:0033211,http://purl.obolibrary.org/obo/GO_0033211,adiponectin-activated signaling pathway +16.9548485,GO:0033245,http://purl.obolibrary.org/obo/GO_0033245,negative regulation of penicillin metabolic process +16.9548485,GO:0033252,http://purl.obolibrary.org/obo/GO_0033252,regulation of beta-lactamase activity +16.9548485,GO:0033256,http://purl.obolibrary.org/obo/GO_0033256,I-kappaB/NF-kappaB complex +16.9548485,GO:0033262,http://purl.obolibrary.org/obo/GO_0033262,regulation of nuclear cell cycle DNA replication +16.9548485,GO:0033271,http://purl.obolibrary.org/obo/GO_0033271,myo-inositol phosphate transport +16.9548485,GO:0033272,http://purl.obolibrary.org/obo/GO_0033272,myo-inositol hexakisphosphate transport +16.9548485,GO:0033283,http://purl.obolibrary.org/obo/GO_0033283,ATPase-coupled organic acid transmembrane transporter activity +16.9548485,GO:0033284,http://purl.obolibrary.org/obo/GO_0033284,ATPase-coupled carboxylic acid transmembrane transporter activity +16.9548485,GO:0033336,http://purl.obolibrary.org/obo/GO_0033336,caudal fin development +16.9548485,GO:0033338,http://purl.obolibrary.org/obo/GO_0033338,medial fin development +16.9548485,GO:0033339,http://purl.obolibrary.org/obo/GO_0033339,pectoral fin development +16.9548485,GO:0033348,http://purl.obolibrary.org/obo/GO_0033348,tetrose biosynthetic process +16.9548485,GO:0033349,http://purl.obolibrary.org/obo/GO_0033349,apiose metabolic process +16.9548485,GO:0033350,http://purl.obolibrary.org/obo/GO_0033350,apiose biosynthetic process +16.9548485,GO:0033357,http://purl.obolibrary.org/obo/GO_0033357,L-arabinose biosynthetic process +16.9548485,GO:0033366,http://purl.obolibrary.org/obo/GO_0033366,protein localization to secretory granule +16.9548485,GO:0033383,http://purl.obolibrary.org/obo/GO_0033383,geranyl diphosphate metabolic process +16.9548485,GO:0033384,http://purl.obolibrary.org/obo/GO_0033384,geranyl diphosphate biosynthetic process +16.9548485,GO:0033478,http://purl.obolibrary.org/obo/GO_0033478,UDP-rhamnose metabolic process +16.9548485,GO:0033485,http://purl.obolibrary.org/obo/GO_0033485,cyanidin 3-O-glucoside biosynthetic process +16.9548485,GO:0033497,http://purl.obolibrary.org/obo/GO_0033497,sinapate biosynthetic process +16.9548485,GO:0033511,http://purl.obolibrary.org/obo/GO_0033511,luteolin biosynthetic process +16.9548485,GO:0033534,http://purl.obolibrary.org/obo/GO_0033534,verbascose biosynthetic process +16.9548485,GO:0033552,http://purl.obolibrary.org/obo/GO_0033552,response to vitamin B3 +16.9548485,GO:0033562,http://purl.obolibrary.org/obo/GO_0033562,co-transcriptional gene silencing by RNA interference machinery +16.9548485,GO:0033566,http://purl.obolibrary.org/obo/GO_0033566,gamma-tubulin complex localization +16.9548485,GO:0033567,http://purl.obolibrary.org/obo/GO_0033567,"DNA replication, Okazaki fragment processing" +16.9548485,GO:0033604,http://purl.obolibrary.org/obo/GO_0033604,negative regulation of catecholamine secretion +16.9548485,GO:0033670,http://purl.obolibrary.org/obo/GO_0033670,regulation of NAD+ kinase activity +16.9548485,GO:0033685,http://purl.obolibrary.org/obo/GO_0033685,negative regulation of luteinizing hormone secretion +16.9548485,GO:0033690,http://purl.obolibrary.org/obo/GO_0033690,positive regulation of osteoblast proliferation +16.9548485,GO:0033726,http://purl.obolibrary.org/obo/GO_0033726,aldehyde ferredoxin oxidoreductase activity +16.9548485,GO:0033734,http://purl.obolibrary.org/obo/GO_0033734,(R)-benzylsuccinyl-CoA dehydrogenase activity +16.9548485,GO:0033737,http://purl.obolibrary.org/obo/GO_0033737,1-pyrroline dehydrogenase activity +16.9548485,GO:0033744,http://purl.obolibrary.org/obo/GO_0033744,L-methionine:thioredoxin-disulfide S-oxidoreductase activity +16.9548485,GO:0033748,http://purl.obolibrary.org/obo/GO_0033748,hydrogenase (acceptor) activity +16.9548485,GO:0033759,http://purl.obolibrary.org/obo/GO_0033759,flavone synthase activity +16.9548485,GO:0033775,http://purl.obolibrary.org/obo/GO_0033775,deoxysarpagine hydroxylase activity +16.9548485,GO:0033778,http://purl.obolibrary.org/obo/GO_0033778,7alpha-hydroxycholest-4-en-3-one 12alpha-hydroxylase activity +16.9548485,GO:0033782,http://purl.obolibrary.org/obo/GO_0033782,24-hydroxycholesterol 7alpha-hydroxylase activity +16.9548485,GO:0033789,http://purl.obolibrary.org/obo/GO_0033789,phenylacetyl-CoA dehydrogenase activity +16.9548485,GO:0033801,http://purl.obolibrary.org/obo/GO_0033801,vitexin 2''-O-rhamnoside 7-O-methyltransferase activity +16.9548485,GO:0033803,http://purl.obolibrary.org/obo/GO_0033803,kaempferol 4'-O-methyltransferase activity +16.9548485,GO:0033810,http://purl.obolibrary.org/obo/GO_0033810,anthocyanin 5-O-glucoside 6'''-O-malonyltransferase activity +16.9548485,GO:0033825,http://purl.obolibrary.org/obo/GO_0033825,oligosaccharide 4-alpha-D-glucosyltransferase activity +16.9548485,GO:0033827,http://purl.obolibrary.org/obo/GO_0033827,"high-mannose-oligosaccharide beta-1,4-N-acetylglucosaminyltransferase activity" +16.9548485,GO:0033829,http://purl.obolibrary.org/obo/GO_0033829,O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase activity +16.9548485,GO:0033834,http://purl.obolibrary.org/obo/GO_0033834,kaempferol 3-O-galactosyltransferase activity +16.9548485,GO:0033835,http://purl.obolibrary.org/obo/GO_0033835,flavanone 7-O-glucoside 2''-O-beta-L-rhamnosyltransferase activity +16.9548485,GO:0033836,http://purl.obolibrary.org/obo/GO_0033836,flavonol 7-O-beta-glucosyltransferase activity +16.9548485,GO:0033853,http://purl.obolibrary.org/obo/GO_0033853,aspartate-prephenate aminotransferase activity +16.9548485,GO:0033861,http://purl.obolibrary.org/obo/GO_0033861,negative regulation of NAD(P)H oxidase activity +16.9548485,GO:0033863,http://purl.obolibrary.org/obo/GO_0033863,"ribose 1,5-bisphosphate phosphokinase activity" +16.9548485,GO:0033864,http://purl.obolibrary.org/obo/GO_0033864,positive regulation of NAD(P)H oxidase activity +16.9548485,GO:0033868,http://purl.obolibrary.org/obo/GO_0033868,none +16.9548485,GO:0033880,http://purl.obolibrary.org/obo/GO_0033880,phenylacetyl-CoA hydrolase activity +16.9548485,GO:0033882,http://purl.obolibrary.org/obo/GO_0033882,choloyl-CoA hydrolase activity +16.9548485,GO:0033886,http://purl.obolibrary.org/obo/GO_0033886,cellulose-polysulfatase activity +16.9548485,GO:0033888,http://purl.obolibrary.org/obo/GO_0033888,chondro-6-sulfatase activity +16.9548485,GO:0033902,http://purl.obolibrary.org/obo/GO_0033902,rRNA endonuclease activity +16.9548485,GO:0033906,http://purl.obolibrary.org/obo/GO_0033906,hyaluronoglucuronidase activity +16.9548485,GO:0033913,http://purl.obolibrary.org/obo/GO_0033913,"glucan endo-1,2-beta-glucosidase activity" +16.9548485,GO:0033923,http://purl.obolibrary.org/obo/GO_0033923,"glucan 1,6-alpha-isomaltosidase activity" +16.9548485,GO:0033927,http://purl.obolibrary.org/obo/GO_0033927,"glucan 1,4-alpha-maltohexaosidase activity" +16.9548485,GO:0033954,http://purl.obolibrary.org/obo/GO_0033954,alpha-neoagaro-oligosaccharide hydrolase activity +16.9548485,GO:0033962,http://purl.obolibrary.org/obo/GO_0033962,P-body assembly +16.9548485,GO:0033969,http://purl.obolibrary.org/obo/GO_0033969,gamma-glutamyl-gamma-aminobutyrate hydrolase activity +16.9548485,GO:0033985,http://purl.obolibrary.org/obo/GO_0033985,acidocalcisome lumen +16.9548485,GO:0033989,http://purl.obolibrary.org/obo/GO_0033989,"3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA hydratase activity" +16.9548485,GO:0034003,http://purl.obolibrary.org/obo/GO_0034003,vetispiradiene synthase activity +16.9548485,GO:0034017,http://purl.obolibrary.org/obo/GO_0034017,trans-2-decenoyl-acyl-carrier-protein isomerase activity +16.9548485,GO:0034018,http://purl.obolibrary.org/obo/GO_0034018,ascopyrone tautomerase activity +16.9548485,GO:0034023,http://purl.obolibrary.org/obo/GO_0034023,5-(carboxyamino)imidazole ribonucleotide mutase activity +16.9548485,GO:0034024,http://purl.obolibrary.org/obo/GO_0034024,glutamate-putrescine ligase activity +16.9548485,GO:0034043,http://purl.obolibrary.org/obo/GO_0034043,5-hydroxymethyluracil DNA N-glycosylase activity +16.9548485,GO:0034045,http://purl.obolibrary.org/obo/GO_0034045,phagophore assembly site membrane +16.9548485,GO:0034082,http://purl.obolibrary.org/obo/GO_0034082,type II polyketide synthase complex +16.9548485,GO:0034083,http://purl.obolibrary.org/obo/GO_0034083,type III polyketide synthase complex +16.9548485,GO:0034086,http://purl.obolibrary.org/obo/GO_0034086,maintenance of sister chromatid cohesion +16.9548485,GO:0034099,http://purl.obolibrary.org/obo/GO_0034099,luminal surveillance complex +16.9548485,GO:0034144,http://purl.obolibrary.org/obo/GO_0034144,negative regulation of toll-like receptor 4 signaling pathway +16.9548485,GO:0034150,http://purl.obolibrary.org/obo/GO_0034150,toll-like receptor 6 signaling pathway +16.9548485,GO:0034155,http://purl.obolibrary.org/obo/GO_0034155,regulation of toll-like receptor 7 signaling pathway +16.9548485,GO:0034163,http://purl.obolibrary.org/obo/GO_0034163,regulation of toll-like receptor 9 signaling pathway +16.9548485,GO:0034164,http://purl.obolibrary.org/obo/GO_0034164,negative regulation of toll-like receptor 9 signaling pathway +16.9548485,GO:0034192,http://purl.obolibrary.org/obo/GO_0034192,D-galactonate metabolic process +16.9548485,GO:0034193,http://purl.obolibrary.org/obo/GO_0034193,L-galactonate metabolic process +16.9548485,GO:0034199,http://purl.obolibrary.org/obo/GO_0034199,activation of protein kinase A activity +16.9548485,GO:0034203,http://purl.obolibrary.org/obo/GO_0034203,glycolipid translocation +16.9548485,GO:0034207,http://purl.obolibrary.org/obo/GO_0034207,steroid acetylation +16.9548485,GO:0034209,http://purl.obolibrary.org/obo/GO_0034209,sterol acetylation +16.9548485,GO:0034224,http://purl.obolibrary.org/obo/GO_0034224,cellular response to zinc ion starvation +16.9548485,GO:0034247,http://purl.obolibrary.org/obo/GO_0034247,snoRNA splicing +16.9548485,GO:0034251,http://purl.obolibrary.org/obo/GO_0034251,regulation of cellular amide catabolic process +16.9548485,GO:0034252,http://purl.obolibrary.org/obo/GO_0034252,negative regulation of cellular amide catabolic process +16.9548485,GO:0034254,http://purl.obolibrary.org/obo/GO_0034254,regulation of urea catabolic process +16.9548485,GO:0034267,http://purl.obolibrary.org/obo/GO_0034267,discadenine metabolic process +16.9548485,GO:0034268,http://purl.obolibrary.org/obo/GO_0034268,discadenine biosynthetic process +16.9548485,GO:0034297,http://purl.obolibrary.org/obo/GO_0034297,oidium formation +16.9548485,GO:0034317,http://purl.obolibrary.org/obo/GO_0034317,nicotinic acid riboside kinase activity +16.9548485,GO:0034343,http://purl.obolibrary.org/obo/GO_0034343,type III interferon production +16.9548485,GO:0034344,http://purl.obolibrary.org/obo/GO_0034344,regulation of type III interferon production +16.9548485,GO:0034348,http://purl.obolibrary.org/obo/GO_0034348,type III interferon receptor activity +16.9548485,GO:0034355,http://purl.obolibrary.org/obo/GO_0034355,NAD salvage +16.9548485,GO:0034374,http://purl.obolibrary.org/obo/GO_0034374,low-density lipoprotein particle remodeling +16.9548485,GO:0034380,http://purl.obolibrary.org/obo/GO_0034380,high-density lipoprotein particle assembly +16.9548485,GO:0034419,http://purl.obolibrary.org/obo/GO_0034419,none +16.9548485,GO:0034420,http://purl.obolibrary.org/obo/GO_0034420,co-translational protein acetylation +16.9548485,GO:0034425,http://purl.obolibrary.org/obo/GO_0034425,etioplast envelope +16.9548485,GO:0034442,http://purl.obolibrary.org/obo/GO_0034442,regulation of lipoprotein oxidation +16.9548485,GO:0034446,http://purl.obolibrary.org/obo/GO_0034446,substrate adhesion-dependent cell spreading +16.9548485,GO:0034447,http://purl.obolibrary.org/obo/GO_0034447,very-low-density lipoprotein particle clearance +16.9548485,GO:0034453,http://purl.obolibrary.org/obo/GO_0034453,microtubule anchoring +16.9548485,GO:0034455,http://purl.obolibrary.org/obo/GO_0034455,t-UTP complex +16.9548485,GO:0034466,http://purl.obolibrary.org/obo/GO_0034466,chromaffin granule lumen +16.9548485,GO:0034478,http://purl.obolibrary.org/obo/GO_0034478,phosphatidylglycerol catabolic process +16.9548485,GO:0034494,http://purl.obolibrary.org/obo/GO_0034494,microneme lumen +16.9548485,GO:0034499,http://purl.obolibrary.org/obo/GO_0034499,late endosome to Golgi transport +16.9548485,GO:0034508,http://purl.obolibrary.org/obo/GO_0034508,centromere complex assembly +16.9548485,GO:0034551,http://purl.obolibrary.org/obo/GO_0034551,mitochondrial respiratory chain complex III assembly +16.9548485,GO:0034553,http://purl.obolibrary.org/obo/GO_0034553,mitochondrial respiratory chain complex II assembly +16.9548485,GO:0034591,http://purl.obolibrary.org/obo/GO_0034591,rhoptry lumen +16.9548485,GO:0034597,http://purl.obolibrary.org/obo/GO_0034597,"phosphatidylinositol-4,5-bisphosphate 4-phosphatase activity" +16.9548485,GO:0034606,http://purl.obolibrary.org/obo/GO_0034606,response to hermaphrodite contact +16.9548485,GO:0034607,http://purl.obolibrary.org/obo/GO_0034607,turning behavior involved in mating +16.9548485,GO:0034615,http://purl.obolibrary.org/obo/GO_0034615,GCH1 complex +16.9548485,GO:0034659,http://purl.obolibrary.org/obo/GO_0034659,isopropylmalate transport +16.9548485,GO:0034683,http://purl.obolibrary.org/obo/GO_0034683,integrin alphav-beta3 complex +16.9548485,GO:0034692,http://purl.obolibrary.org/obo/GO_0034692,E.F.G complex +16.9548485,GO:0034758,http://purl.obolibrary.org/obo/GO_0034758,positive regulation of iron ion transport +16.9548485,GO:0034824,http://purl.obolibrary.org/obo/GO_0034824,citronellyl-CoA dehydrogenase activity +16.9548485,GO:0034842,http://purl.obolibrary.org/obo/GO_0034842,thiophene-2-carboxylate-CoA ligase activity +16.9548485,GO:0034877,http://purl.obolibrary.org/obo/GO_0034877,isonicotinate dehydrogenase activity +16.9548485,GO:0034970,http://purl.obolibrary.org/obo/GO_0034970,histone H3-R2 methylation +16.9548485,GO:0034971,http://purl.obolibrary.org/obo/GO_0034971,histone H3-R17 methylation +16.9548485,GO:0034982,http://purl.obolibrary.org/obo/GO_0034982,mitochondrial protein processing +16.9548485,GO:0035020,http://purl.obolibrary.org/obo/GO_0035020,regulation of Rac protein signal transduction +16.9548485,GO:0035022,http://purl.obolibrary.org/obo/GO_0035022,positive regulation of Rac protein signal transduction +16.9548485,GO:0035050,http://purl.obolibrary.org/obo/GO_0035050,embryonic heart tube development +16.9548485,GO:0035082,http://purl.obolibrary.org/obo/GO_0035082,axoneme assembly +16.9548485,GO:0035096,http://purl.obolibrary.org/obo/GO_0035096,larval midgut cell programmed cell death +16.9548485,GO:0035115,http://purl.obolibrary.org/obo/GO_0035115,embryonic forelimb morphogenesis +16.9548485,GO:0035136,http://purl.obolibrary.org/obo/GO_0035136,forelimb morphogenesis +16.9548485,GO:0035139,http://purl.obolibrary.org/obo/GO_0035139,pelvic fin morphogenesis +16.9548485,GO:0035151,http://purl.obolibrary.org/obo/GO_0035151,"regulation of tube size, open tracheal system" +16.9548485,GO:0035152,http://purl.obolibrary.org/obo/GO_0035152,"regulation of tube architecture, open tracheal system" +16.9548485,GO:0035158,http://purl.obolibrary.org/obo/GO_0035158,"regulation of tube diameter, open tracheal system" +16.9548485,GO:0035159,http://purl.obolibrary.org/obo/GO_0035159,"regulation of tube length, open tracheal system" +16.9548485,GO:0035166,http://purl.obolibrary.org/obo/GO_0035166,post-embryonic hemopoiesis +16.9548485,GO:0035167,http://purl.obolibrary.org/obo/GO_0035167,larval lymph gland hemopoiesis +16.9548485,GO:0035190,http://purl.obolibrary.org/obo/GO_0035190,syncytial nuclear migration +16.9548485,GO:0035214,http://purl.obolibrary.org/obo/GO_0035214,eye-antennal disc development +16.9548485,GO:0035253,http://purl.obolibrary.org/obo/GO_0035253,ciliary rootlet +16.9548485,GO:0035271,http://purl.obolibrary.org/obo/GO_0035271,ring gland development +16.9548485,GO:0035281,http://purl.obolibrary.org/obo/GO_0035281,pre-miRNA export from nucleus +16.9548485,GO:0035302,http://purl.obolibrary.org/obo/GO_0035302,ecdysteroid 25-hydroxylase activity +16.9548485,GO:0035364,http://purl.obolibrary.org/obo/GO_0035364,thymine transport +16.9548485,GO:0035435,http://purl.obolibrary.org/obo/GO_0035435,phosphate ion transmembrane transport +16.9548485,GO:0035443,http://purl.obolibrary.org/obo/GO_0035443,tripeptide transmembrane transport +16.9548485,GO:0035495,http://purl.obolibrary.org/obo/GO_0035495,regulation of SNARE complex disassembly +16.9548485,GO:0035511,http://purl.obolibrary.org/obo/GO_0035511,oxidative DNA demethylation +16.9548485,GO:0035619,http://purl.obolibrary.org/obo/GO_0035619,root hair tip +16.9548485,GO:0035621,http://purl.obolibrary.org/obo/GO_0035621,ER to Golgi ceramide transport +16.9548485,GO:0035622,http://purl.obolibrary.org/obo/GO_0035622,intrahepatic bile duct development +16.9548485,GO:0035633,http://purl.obolibrary.org/obo/GO_0035633,maintenance of blood-brain barrier +16.9548485,GO:0035646,http://purl.obolibrary.org/obo/GO_0035646,endosome to melanosome transport +16.9548485,GO:0035649,http://purl.obolibrary.org/obo/GO_0035649,Nrd1 complex +16.9548485,GO:0035661,http://purl.obolibrary.org/obo/GO_0035661,MyD88-dependent toll-like receptor 2 signaling pathway +16.9548485,GO:0035668,http://purl.obolibrary.org/obo/GO_0035668,TRAM-dependent toll-like receptor signaling pathway +16.9548485,GO:0035700,http://purl.obolibrary.org/obo/GO_0035700,astrocyte chemotaxis +16.9548485,GO:0035714,http://purl.obolibrary.org/obo/GO_0035714,cellular response to nitrogen dioxide +16.9548485,GO:0035722,http://purl.obolibrary.org/obo/GO_0035722,interleukin-12-mediated signaling pathway +16.9548485,GO:0035798,http://purl.obolibrary.org/obo/GO_0035798,2-alkenal reductase (NADP+) activity +16.9548485,GO:0035808,http://purl.obolibrary.org/obo/GO_0035808,meiotic recombination initiation complex +16.9548485,GO:0035832,http://purl.obolibrary.org/obo/GO_0035832,berbamunine metabolic process +16.9548485,GO:0035833,http://purl.obolibrary.org/obo/GO_0035833,berbamunine biosynthetic process +16.9548485,GO:0035841,http://purl.obolibrary.org/obo/GO_0035841,new growing cell tip +16.9548485,GO:0035844,http://purl.obolibrary.org/obo/GO_0035844,cloaca development +16.9548485,GO:0035850,http://purl.obolibrary.org/obo/GO_0035850,epithelial cell differentiation involved in kidney development +16.9548485,GO:0035865,http://purl.obolibrary.org/obo/GO_0035865,cellular response to potassium ion +16.9548485,GO:0035870,http://purl.obolibrary.org/obo/GO_0035870,dITP diphosphatase activity +16.9548485,GO:0035888,http://purl.obolibrary.org/obo/GO_0035888,isoguanine deaminase activity +16.9548485,GO:0035901,http://purl.obolibrary.org/obo/GO_0035901,cellular response to isolation stress +16.9548485,GO:0035963,http://purl.obolibrary.org/obo/GO_0035963,cellular response to interleukin-13 +16.9548485,GO:0035964,http://purl.obolibrary.org/obo/GO_0035964,COPI-coated vesicle budding +16.9548485,GO:0036006,http://purl.obolibrary.org/obo/GO_0036006,cellular response to macrophage colony-stimulating factor stimulus +16.9548485,GO:0036013,http://purl.obolibrary.org/obo/GO_0036013,cyanelle outer membrane +16.9548485,GO:0036018,http://purl.obolibrary.org/obo/GO_0036018,cellular response to erythropoietin +16.9548485,GO:0036028,http://purl.obolibrary.org/obo/GO_0036028,protein C inhibitor-thrombin complex +16.9548485,GO:0036059,http://purl.obolibrary.org/obo/GO_0036059,nephrocyte diaphragm assembly +16.9548485,GO:0036092,http://purl.obolibrary.org/obo/GO_0036092,phosphatidylinositol-3-phosphate biosynthetic process +16.9548485,GO:0036146,http://purl.obolibrary.org/obo/GO_0036146,cellular response to mycotoxin +16.9548485,GO:0036181,http://purl.obolibrary.org/obo/GO_0036181,protein localization to linear element +16.9548485,GO:0036182,http://purl.obolibrary.org/obo/GO_0036182,asperthecin metabolic process +16.9548485,GO:0036184,http://purl.obolibrary.org/obo/GO_0036184,asperthecin biosynthetic process +16.9548485,GO:0036196,http://purl.obolibrary.org/obo/GO_0036196,zymosterol metabolic process +16.9548485,GO:0036197,http://purl.obolibrary.org/obo/GO_0036197,zymosterol biosynthetic process +16.9548485,GO:0036202,http://purl.obolibrary.org/obo/GO_0036202,"ent-cassa-12,15-diene 11-hydroxylase activity" +16.9548485,GO:0036203,http://purl.obolibrary.org/obo/GO_0036203,taxoid 14-beta-hydroxylase activity +16.9548485,GO:0036207,http://purl.obolibrary.org/obo/GO_0036207,none +16.9548485,GO:0036212,http://purl.obolibrary.org/obo/GO_0036212,contractile ring maintenance +16.9548485,GO:0036250,http://purl.obolibrary.org/obo/GO_0036250,peroxisome transport along microtubule +16.9548485,GO:0036262,http://purl.obolibrary.org/obo/GO_0036262,granulysin production +16.9548485,GO:0036288,http://purl.obolibrary.org/obo/GO_0036288,response to ximelagatran +16.9548485,GO:0036317,http://purl.obolibrary.org/obo/GO_0036317,tyrosyl-RNA phosphodiesterase activity +16.9548485,GO:0036366,http://purl.obolibrary.org/obo/GO_0036366,transforming growth factor beta3 activation +16.9548485,GO:0036385,http://purl.obolibrary.org/obo/GO_0036385,nucleoid DNA packaging +16.9548485,GO:0036389,http://purl.obolibrary.org/obo/GO_0036389,bacterial pre-replicative complex +16.9548485,GO:0036398,http://purl.obolibrary.org/obo/GO_0036398,TCR signalosome +16.9548485,GO:0036409,http://purl.obolibrary.org/obo/GO_0036409,histone H3-K14 acetyltransferase complex +16.9548485,GO:0036410,http://purl.obolibrary.org/obo/GO_0036410,Mst2 histone acetyltransferase complex +16.9548485,GO:0036462,http://purl.obolibrary.org/obo/GO_0036462,TRAIL-activated apoptotic signaling pathway +16.9548485,GO:0036467,http://purl.obolibrary.org/obo/GO_0036467,5-hydroxy-L-tryptophan decarboxylase activity +16.9548485,GO:0036477,http://purl.obolibrary.org/obo/GO_0036477,somatodendritic compartment +16.9548485,GO:0036490,http://purl.obolibrary.org/obo/GO_0036490,regulation of translation in response to endoplasmic reticulum stress +16.9548485,GO:0036491,http://purl.obolibrary.org/obo/GO_0036491,regulation of translation initiation in response to endoplasmic reticulum stress +16.9548485,GO:0036492,http://purl.obolibrary.org/obo/GO_0036492,eiF2alpha phosphorylation in response to endoplasmic reticulum stress +16.9548485,GO:0038006,http://purl.obolibrary.org/obo/GO_0038006,netrin receptor activity involved in chemoattraction +16.9548485,GO:0038026,http://purl.obolibrary.org/obo/GO_0038026,reelin-mediated signaling pathway +16.9548485,GO:0038065,http://purl.obolibrary.org/obo/GO_0038065,collagen-activated signaling pathway +16.9548485,GO:0038104,http://purl.obolibrary.org/obo/GO_0038104,nodal receptor complex +16.9548485,GO:0038111,http://purl.obolibrary.org/obo/GO_0038111,interleukin-7-mediated signaling pathway +16.9548485,GO:0038123,http://purl.obolibrary.org/obo/GO_0038123,toll-like receptor TLR1:TLR2 signaling pathway +16.9548485,GO:0038135,http://purl.obolibrary.org/obo/GO_0038135,ERBB2-ERBB4 signaling pathway +16.9548485,GO:0038142,http://purl.obolibrary.org/obo/GO_0038142,EGFR:ERBB2 complex +16.9548485,GO:0038143,http://purl.obolibrary.org/obo/GO_0038143,ERBB3:ERBB2 complex +16.9548485,GO:0038155,http://purl.obolibrary.org/obo/GO_0038155,interleukin-23-mediated signaling pathway +16.9548485,GO:0038166,http://purl.obolibrary.org/obo/GO_0038166,angiotensin-activated signaling pathway +16.9548485,GO:0038189,http://purl.obolibrary.org/obo/GO_0038189,neuropilin signaling pathway +16.9548485,GO:0038196,http://purl.obolibrary.org/obo/GO_0038196,type III interferon signaling pathway +16.9548485,GO:0038200,http://purl.obolibrary.org/obo/GO_0038200,ethylene receptor histidine kinase activity +16.9548485,GO:0039006,http://purl.obolibrary.org/obo/GO_0039006,pronephric nephron tubule formation +16.9548485,GO:0039526,http://purl.obolibrary.org/obo/GO_0039526,modulation by virus of host apoptotic process +16.9548485,GO:0039531,http://purl.obolibrary.org/obo/GO_0039531,regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway +16.9548485,GO:0039535,http://purl.obolibrary.org/obo/GO_0039535,regulation of RIG-I signaling pathway +16.9548485,GO:0039624,http://purl.obolibrary.org/obo/GO_0039624,viral outer capsid +16.9548485,GO:0039632,http://purl.obolibrary.org/obo/GO_0039632,RNA translocase activity involved in viral RNA genome packaging +16.9548485,GO:0039633,http://purl.obolibrary.org/obo/GO_0039633,killing by virus of host cell +16.9548485,GO:0039708,http://purl.obolibrary.org/obo/GO_0039708,nuclear capsid assembly +16.9548485,GO:0039718,http://purl.obolibrary.org/obo/GO_0039718,double membrane vesicle viral factory +16.9548485,GO:0040018,http://purl.obolibrary.org/obo/GO_0040018,positive regulation of multicellular organism growth +16.9548485,GO:0040021,http://purl.obolibrary.org/obo/GO_0040021,hermaphrodite germ-line sex determination +16.9548485,GO:0040027,http://purl.obolibrary.org/obo/GO_0040027,negative regulation of vulval development +16.9548485,GO:0040031,http://purl.obolibrary.org/obo/GO_0040031,snRNA modification +16.9548485,GO:0042036,http://purl.obolibrary.org/obo/GO_0042036,none +16.9548485,GO:0042090,http://purl.obolibrary.org/obo/GO_0042090,none +16.9548485,GO:0042108,http://purl.obolibrary.org/obo/GO_0042108,none +16.9548485,GO:0042173,http://purl.obolibrary.org/obo/GO_0042173,regulation of sporulation resulting in formation of a cellular spore +16.9548485,GO:0042174,http://purl.obolibrary.org/obo/GO_0042174,negative regulation of sporulation resulting in formation of a cellular spore +16.9548485,GO:0042253,http://purl.obolibrary.org/obo/GO_0042253,none +16.9548485,GO:0042274,http://purl.obolibrary.org/obo/GO_0042274,ribosomal small subunit biogenesis +16.9548485,GO:0042275,http://purl.obolibrary.org/obo/GO_0042275,error-free postreplication DNA repair +16.9548485,GO:0042284,http://purl.obolibrary.org/obo/GO_0042284,sphingolipid delta-4 desaturase activity +16.9548485,GO:0042333,http://purl.obolibrary.org/obo/GO_0042333,chemotaxis to oxidizable substrate +16.9548485,GO:0042342,http://purl.obolibrary.org/obo/GO_0042342,cyanogenic glycoside catabolic process +16.9548485,GO:0042344,http://purl.obolibrary.org/obo/GO_0042344,indole glucosinolate catabolic process +16.9548485,GO:0042355,http://purl.obolibrary.org/obo/GO_0042355,L-fucose catabolic process +16.9548485,GO:0042370,http://purl.obolibrary.org/obo/GO_0042370,thiamine diphosphate dephosphorylation +16.9548485,GO:0042382,http://purl.obolibrary.org/obo/GO_0042382,paraspeckles +16.9548485,GO:0042444,http://purl.obolibrary.org/obo/GO_0042444,phenylethylamine biosynthetic process +16.9548485,GO:0042469,http://purl.obolibrary.org/obo/GO_0042469,versicolorin reductase activity +16.9548485,GO:0042506,http://purl.obolibrary.org/obo/GO_0042506,none +16.9548485,GO:0042516,http://purl.obolibrary.org/obo/GO_0042516,none +16.9548485,GO:0042517,http://purl.obolibrary.org/obo/GO_0042517,none +16.9548485,GO:0042538,http://purl.obolibrary.org/obo/GO_0042538,hyperosmotic salinity response +16.9548485,GO:0042539,http://purl.obolibrary.org/obo/GO_0042539,hypotonic salinity response +16.9548485,GO:0042544,http://purl.obolibrary.org/obo/GO_0042544,melibiose biosynthetic process +16.9548485,GO:0042580,http://purl.obolibrary.org/obo/GO_0042580,mannosome +16.9548485,GO:0042667,http://purl.obolibrary.org/obo/GO_0042667,auditory receptor cell fate specification +16.9548485,GO:0042699,http://purl.obolibrary.org/obo/GO_0042699,follicle-stimulating hormone signaling pathway +16.9548485,GO:0042700,http://purl.obolibrary.org/obo/GO_0042700,luteinizing hormone signaling pathway +16.9548485,GO:0042717,http://purl.obolibrary.org/obo/GO_0042717,plasma membrane-derived chromatophore membrane +16.9548485,GO:0042720,http://purl.obolibrary.org/obo/GO_0042720,mitochondrial inner membrane peptidase complex +16.9548485,GO:0042745,http://purl.obolibrary.org/obo/GO_0042745,circadian sleep/wake cycle +16.9548485,GO:0042753,http://purl.obolibrary.org/obo/GO_0042753,positive regulation of circadian rhythm +16.9548485,GO:0042775,http://purl.obolibrary.org/obo/GO_0042775,mitochondrial ATP synthesis coupled electron transport +16.9548485,GO:0042776,http://purl.obolibrary.org/obo/GO_0042776,mitochondrial ATP synthesis coupled proton transport +16.9548485,GO:0042799,http://purl.obolibrary.org/obo/GO_0042799,histone methyltransferase activity (H4-K20 specific) +16.9548485,GO:0042814,http://purl.obolibrary.org/obo/GO_0042814,monopolar cell growth +16.9548485,GO:0042820,http://purl.obolibrary.org/obo/GO_0042820,vitamin B6 catabolic process +16.9548485,GO:0042838,http://purl.obolibrary.org/obo/GO_0042838,D-glucarate catabolic process +16.9548485,GO:0042841,http://purl.obolibrary.org/obo/GO_0042841,D-glucuronate biosynthetic process +16.9548485,GO:0042847,http://purl.obolibrary.org/obo/GO_0042847,sorbose biosynthetic process +16.9548485,GO:0042849,http://purl.obolibrary.org/obo/GO_0042849,L-sorbose biosynthetic process +16.9548485,GO:0042853,http://purl.obolibrary.org/obo/GO_0042853,L-alanine catabolic process +16.9548485,GO:0042870,http://purl.obolibrary.org/obo/GO_0042870,D-glucarate transmembrane transport +16.9548485,GO:0042875,http://purl.obolibrary.org/obo/GO_0042875,D-galactonate transmembrane transport +16.9548485,GO:0042884,http://purl.obolibrary.org/obo/GO_0042884,microcin transport +16.9548485,GO:0042889,http://purl.obolibrary.org/obo/GO_0042889,3-phenylpropionic acid transport +16.9548485,GO:0042909,http://purl.obolibrary.org/obo/GO_0042909,acridine transport +16.9548485,GO:0042931,http://purl.obolibrary.org/obo/GO_0042931,enterobactin transmembrane transporter activity +16.9548485,GO:0042949,http://purl.obolibrary.org/obo/GO_0042949,arbutin transport +16.9548485,GO:0042955,http://purl.obolibrary.org/obo/GO_0042955,dextrin transport +16.9548485,GO:0042984,http://purl.obolibrary.org/obo/GO_0042984,regulation of amyloid precursor protein biosynthetic process +16.9548485,GO:0043006,http://purl.obolibrary.org/obo/GO_0043006,activation of phospholipase A2 activity by calcium-mediated signaling +16.9548485,GO:0043032,http://purl.obolibrary.org/obo/GO_0043032,positive regulation of macrophage activation +16.9548485,GO:0043045,http://purl.obolibrary.org/obo/GO_0043045,DNA methylation involved in embryo development +16.9548485,GO:0043048,http://purl.obolibrary.org/obo/GO_0043048,dolichyl monophosphate biosynthetic process +16.9548485,GO:0043059,http://purl.obolibrary.org/obo/GO_0043059,regulation of forward locomotion +16.9548485,GO:0043116,http://purl.obolibrary.org/obo/GO_0043116,negative regulation of vascular permeability +16.9548485,GO:0043123,http://purl.obolibrary.org/obo/GO_0043123,positive regulation of I-kappaB kinase/NF-kappaB signaling +16.9548485,GO:0043135,http://purl.obolibrary.org/obo/GO_0043135,5-phosphoribosyl 1-pyrophosphate pyrophosphatase activity +16.9548485,GO:0043144,http://purl.obolibrary.org/obo/GO_0043144,sno(s)RNA processing +16.9548485,GO:0043172,http://purl.obolibrary.org/obo/GO_0043172,none +16.9548485,GO:0043179,http://purl.obolibrary.org/obo/GO_0043179,rhythmic excitation +16.9548485,GO:0043219,http://purl.obolibrary.org/obo/GO_0043219,lateral loop +16.9548485,GO:0043297,http://purl.obolibrary.org/obo/GO_0043297,apical junction assembly +16.9548485,GO:0043302,http://purl.obolibrary.org/obo/GO_0043302,positive regulation of leukocyte degranulation +16.9548485,GO:0043315,http://purl.obolibrary.org/obo/GO_0043315,positive regulation of neutrophil degranulation +16.9548485,GO:0043321,http://purl.obolibrary.org/obo/GO_0043321,regulation of natural killer cell degranulation +16.9548485,GO:0043334,http://purl.obolibrary.org/obo/GO_0043334,"2-hexaprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity" +16.9548485,GO:0043338,http://purl.obolibrary.org/obo/GO_0043338,"CTP:2,3-di-O-geranylgeranyl-sn-glycero-1-phosphate cytidyltransferase activity" +16.9548485,GO:0043362,http://purl.obolibrary.org/obo/GO_0043362,nucleate erythrocyte maturation +16.9548485,GO:0043380,http://purl.obolibrary.org/obo/GO_0043380,regulation of memory T cell differentiation +16.9548485,GO:0043441,http://purl.obolibrary.org/obo/GO_0043441,acetoacetic acid biosynthetic process +16.9548485,GO:0043442,http://purl.obolibrary.org/obo/GO_0043442,acetoacetic acid catabolic process +16.9548485,GO:0043482,http://purl.obolibrary.org/obo/GO_0043482,cellular pigment accumulation +16.9548485,GO:0043485,http://purl.obolibrary.org/obo/GO_0043485,endosome to pigment granule transport +16.9548485,GO:0043490,http://purl.obolibrary.org/obo/GO_0043490,malate-aspartate shuttle +16.9548485,GO:0043509,http://purl.obolibrary.org/obo/GO_0043509,activin A complex +16.9548485,GO:0043514,http://purl.obolibrary.org/obo/GO_0043514,interleukin-12 complex +16.9548485,GO:0043520,http://purl.obolibrary.org/obo/GO_0043520,regulation of myosin II filament assembly +16.9548485,GO:0043521,http://purl.obolibrary.org/obo/GO_0043521,regulation of myosin II filament disassembly +16.9548485,GO:0043538,http://purl.obolibrary.org/obo/GO_0043538,regulation of actin phosphorylation +16.9548485,GO:0043556,http://purl.obolibrary.org/obo/GO_0043556,regulation of translation in response to oxidative stress +16.9548485,GO:0043596,http://purl.obolibrary.org/obo/GO_0043596,nuclear replication fork +16.9548485,GO:0043629,http://purl.obolibrary.org/obo/GO_0043629,ncRNA polyadenylation +16.9548485,GO:0043723,http://purl.obolibrary.org/obo/GO_0043723,"2,5-diamino-6-ribitylamino-4(3H)-pyrimidinone 5'-phosphate deaminase activity" +16.9548485,GO:0043725,http://purl.obolibrary.org/obo/GO_0043725,none +16.9548485,GO:0043738,http://purl.obolibrary.org/obo/GO_0043738,reduced coenzyme F420 dehydrogenase activity +16.9548485,GO:0043743,http://purl.obolibrary.org/obo/GO_0043743,LPPG:FO 2-phospho-L-lactate transferase activity +16.9548485,GO:0043755,http://purl.obolibrary.org/obo/GO_0043755,alpha-ribazole phosphatase activity +16.9548485,GO:0043756,http://purl.obolibrary.org/obo/GO_0043756,adenosylcobinamide hydrolase activity +16.9548485,GO:0043757,http://purl.obolibrary.org/obo/GO_0043757,adenosylcobinamide-phosphate synthase activity +16.9548485,GO:0043761,http://purl.obolibrary.org/obo/GO_0043761,archaetidylserine synthase activity +16.9548485,GO:0043764,http://purl.obolibrary.org/obo/GO_0043764,none +16.9548485,GO:0043772,http://purl.obolibrary.org/obo/GO_0043772,acyl-phosphate glycerol-3-phosphate acyltransferase activity +16.9548485,GO:0043777,http://purl.obolibrary.org/obo/GO_0043777,cobalt-precorrin-7 C15-methyltransferase activity +16.9548485,GO:0043783,http://purl.obolibrary.org/obo/GO_0043783,"oxidoreductase activity, acting on metal ions, flavin as acceptor" +16.9548485,GO:0043784,http://purl.obolibrary.org/obo/GO_0043784,"cob(II)yrinic acid a,c-diamide reductase activity" +16.9548485,GO:0043792,http://purl.obolibrary.org/obo/GO_0043792,enamidase activity +16.9548485,GO:0043793,http://purl.obolibrary.org/obo/GO_0043793,beta-ribofuranosylaminobenzene 5'-phosphate synthase activity +16.9548485,GO:0043806,http://purl.obolibrary.org/obo/GO_0043806,keto acid formate lyase activity +16.9548485,GO:0043808,http://purl.obolibrary.org/obo/GO_0043808,lyso-ornithine lipid acyltransferase activity +16.9548485,GO:0043811,http://purl.obolibrary.org/obo/GO_0043811,phosphate:acyl-[acyl carrier protein] acyltransferase activity +16.9548485,GO:0043815,http://purl.obolibrary.org/obo/GO_0043815,phosphoribosylglycinamide formyltransferase 2 activity +16.9548485,GO:0043823,http://purl.obolibrary.org/obo/GO_0043823,spheroidene monooxygenase activity +16.9548485,GO:0043862,http://purl.obolibrary.org/obo/GO_0043862,arginine:agmatine antiporter activity +16.9548485,GO:0043884,http://purl.obolibrary.org/obo/GO_0043884,CO-methylating acetyl-CoA synthase activity +16.9548485,GO:0043889,http://purl.obolibrary.org/obo/GO_0043889,(S)-3-O-geranylgeranylglyceryl phosphate synthase activity +16.9548485,GO:0043892,http://purl.obolibrary.org/obo/GO_0043892,methylglyoxal reductase (NADPH-dependent) activity +16.9548485,GO:0043898,http://purl.obolibrary.org/obo/GO_0043898,"2,3-dihydroxybiphenyl 1,2-dioxygenase activity" +16.9548485,GO:0043899,http://purl.obolibrary.org/obo/GO_0043899,phosphoserine:homoserine phosphotransferase activity +16.9548485,GO:0043911,http://purl.obolibrary.org/obo/GO_0043911,D-lysine transaminase activity +16.9548485,GO:0043918,http://purl.obolibrary.org/obo/GO_0043918,cadaverine aminopropyltransferase activity +16.9548485,GO:0043919,http://purl.obolibrary.org/obo/GO_0043919,agmatine aminopropyltransferase activity +16.9548485,GO:0043952,http://purl.obolibrary.org/obo/GO_0043952,protein transport by the Sec complex +16.9548485,GO:0043974,http://purl.obolibrary.org/obo/GO_0043974,histone H3-K27 acetylation +16.9548485,GO:0043991,http://purl.obolibrary.org/obo/GO_0043991,histone H2B-S14 phosphorylation +16.9548485,GO:0044004,http://purl.obolibrary.org/obo/GO_0044004,none +16.9548485,GO:0044013,http://purl.obolibrary.org/obo/GO_0044013,H2B histone acetyltransferase activity +16.9548485,GO:0044101,http://purl.obolibrary.org/obo/GO_0044101,(R)-citramalyl-CoA lyase activity +16.9548485,GO:0044204,http://purl.obolibrary.org/obo/GO_0044204,host cell nuclear matrix +16.9548485,GO:0044326,http://purl.obolibrary.org/obo/GO_0044326,dendritic spine neck +16.9548485,GO:0044355,http://purl.obolibrary.org/obo/GO_0044355,clearance of foreign intracellular DNA +16.9548485,GO:0044392,http://purl.obolibrary.org/obo/GO_0044392,peptidyl-lysine malonylation +16.9548485,GO:0044528,http://purl.obolibrary.org/obo/GO_0044528,regulation of mitochondrial mRNA stability +16.9548485,GO:0044532,http://purl.obolibrary.org/obo/GO_0044532,modulation of apoptotic process in other organism +16.9548485,GO:0044566,http://purl.obolibrary.org/obo/GO_0044566,chondrocyte activation +16.9548485,GO:0044569,http://purl.obolibrary.org/obo/GO_0044569,[Ni-Fe] hydrogenase complex +16.9548485,GO:0044570,http://purl.obolibrary.org/obo/GO_0044570,starch utilization system complex +16.9548485,GO:0044578,http://purl.obolibrary.org/obo/GO_0044578,butyryl-CoA biosynthetic process +16.9548485,GO:0044592,http://purl.obolibrary.org/obo/GO_0044592,response to pullulan +16.9548485,GO:0044606,http://purl.obolibrary.org/obo/GO_0044606,phosphocholine hydrolase activity +16.9548485,GO:0044611,http://purl.obolibrary.org/obo/GO_0044611,nuclear pore inner ring +16.9548485,GO:0044653,http://purl.obolibrary.org/obo/GO_0044653,dextrin alpha-glucosidase activity +16.9548485,GO:0044659,http://purl.obolibrary.org/obo/GO_0044659,viral release from host cell by cytolysis +16.9548485,GO:0044661,http://purl.obolibrary.org/obo/GO_0044661,none +16.9548485,GO:0044672,http://purl.obolibrary.org/obo/GO_0044672,acetyl-CoA decarbonylase/synthase-carbon monoxide dehydrogenase complex +16.9548485,GO:0044685,http://purl.obolibrary.org/obo/GO_0044685,tetrahydromethanopterin-dependent serine hydroxymethyltransferase activity +16.9548485,GO:0044690,http://purl.obolibrary.org/obo/GO_0044690,none +16.9548485,GO:0044776,http://purl.obolibrary.org/obo/GO_0044776,"DNA polymerase III, core complex" +16.9548485,GO:0044878,http://purl.obolibrary.org/obo/GO_0044878,mitotic cytokinesis checkpoint signaling +16.9548485,GO:0045008,http://purl.obolibrary.org/obo/GO_0045008,depyrimidination +16.9548485,GO:0045018,http://purl.obolibrary.org/obo/GO_0045018,"retrograde transport, vacuole to Golgi" +16.9548485,GO:0045041,http://purl.obolibrary.org/obo/GO_0045041,protein import into mitochondrial intermembrane space +16.9548485,GO:0045047,http://purl.obolibrary.org/obo/GO_0045047,protein targeting to ER +16.9548485,GO:0045070,http://purl.obolibrary.org/obo/GO_0045070,positive regulation of viral genome replication +16.9548485,GO:0045074,http://purl.obolibrary.org/obo/GO_0045074,none +16.9548485,GO:0045112,http://purl.obolibrary.org/obo/GO_0045112,integrin biosynthetic process +16.9548485,GO:0045140,http://purl.obolibrary.org/obo/GO_0045140,inositol phosphoceramide synthase activity +16.9548485,GO:0045178,http://purl.obolibrary.org/obo/GO_0045178,basal part of cell +16.9548485,GO:0045188,http://purl.obolibrary.org/obo/GO_0045188,"regulation of circadian sleep/wake cycle, non-REM sleep" +16.9548485,GO:0045213,http://purl.obolibrary.org/obo/GO_0045213,neurotransmitter receptor metabolic process +16.9548485,GO:0045250,http://purl.obolibrary.org/obo/GO_0045250,cytosolic pyruvate dehydrogenase complex +16.9548485,GO:0045301,http://purl.obolibrary.org/obo/GO_0045301,tRNA-(2-methylthio-N-6-(cis-hydroxy)isopentenyl adenosine)-hydroxylase activity +16.9548485,GO:0045338,http://purl.obolibrary.org/obo/GO_0045338,farnesyl diphosphate metabolic process +16.9548485,GO:0045360,http://purl.obolibrary.org/obo/GO_0045360,none +16.9548485,GO:0045414,http://purl.obolibrary.org/obo/GO_0045414,none +16.9548485,GO:0045423,http://purl.obolibrary.org/obo/GO_0045423,none +16.9548485,GO:0045465,http://purl.obolibrary.org/obo/GO_0045465,R8 cell differentiation +16.9548485,GO:0045485,http://purl.obolibrary.org/obo/GO_0045485,omega-6 fatty acid desaturase activity +16.9548485,GO:0045494,http://purl.obolibrary.org/obo/GO_0045494,photoreceptor cell maintenance +16.9548485,GO:0045542,http://purl.obolibrary.org/obo/GO_0045542,positive regulation of cholesterol biosynthetic process +16.9548485,GO:0045544,http://purl.obolibrary.org/obo/GO_0045544,gibberellin 20-oxidase activity +16.9548485,GO:0045549,http://purl.obolibrary.org/obo/GO_0045549,9-cis-epoxycarotenoid dioxygenase activity +16.9548485,GO:0045570,http://purl.obolibrary.org/obo/GO_0045570,regulation of imaginal disc growth +16.9548485,GO:0045579,http://purl.obolibrary.org/obo/GO_0045579,positive regulation of B cell differentiation +16.9548485,GO:0045581,http://purl.obolibrary.org/obo/GO_0045581,negative regulation of T cell differentiation +16.9548485,GO:0045589,http://purl.obolibrary.org/obo/GO_0045589,regulation of regulatory T cell differentiation +16.9548485,GO:0045602,http://purl.obolibrary.org/obo/GO_0045602,negative regulation of endothelial cell differentiation +16.9548485,GO:0045603,http://purl.obolibrary.org/obo/GO_0045603,positive regulation of endothelial cell differentiation +16.9548485,GO:0045605,http://purl.obolibrary.org/obo/GO_0045605,negative regulation of epidermal cell differentiation +16.9548485,GO:0045610,http://purl.obolibrary.org/obo/GO_0045610,regulation of hemocyte differentiation +16.9548485,GO:0045617,http://purl.obolibrary.org/obo/GO_0045617,negative regulation of keratinocyte differentiation +16.9548485,GO:0045625,http://purl.obolibrary.org/obo/GO_0045625,regulation of T-helper 1 cell differentiation +16.9548485,GO:0045628,http://purl.obolibrary.org/obo/GO_0045628,regulation of T-helper 2 cell differentiation +16.9548485,GO:0045631,http://purl.obolibrary.org/obo/GO_0045631,regulation of mechanoreceptor differentiation +16.9548485,GO:0045632,http://purl.obolibrary.org/obo/GO_0045632,negative regulation of mechanoreceptor differentiation +16.9548485,GO:0045648,http://purl.obolibrary.org/obo/GO_0045648,positive regulation of erythrocyte differentiation +16.9548485,GO:0045650,http://purl.obolibrary.org/obo/GO_0045650,negative regulation of macrophage differentiation +16.9548485,GO:0045657,http://purl.obolibrary.org/obo/GO_0045657,positive regulation of monocyte differentiation +16.9548485,GO:0045659,http://purl.obolibrary.org/obo/GO_0045659,negative regulation of neutrophil differentiation +16.9548485,GO:0045678,http://purl.obolibrary.org/obo/GO_0045678,positive regulation of R7 cell differentiation +16.9548485,GO:0045723,http://purl.obolibrary.org/obo/GO_0045723,positive regulation of fatty acid biosynthetic process +16.9548485,GO:0045724,http://purl.obolibrary.org/obo/GO_0045724,positive regulation of cilium assembly +16.9548485,GO:0045725,http://purl.obolibrary.org/obo/GO_0045725,positive regulation of glycogen biosynthetic process +16.9548485,GO:0045728,http://purl.obolibrary.org/obo/GO_0045728,respiratory burst after phagocytosis +16.9548485,GO:0045733,http://purl.obolibrary.org/obo/GO_0045733,acetate catabolic process +16.9548485,GO:0045751,http://purl.obolibrary.org/obo/GO_0045751,negative regulation of Toll signaling pathway +16.9548485,GO:0045815,http://purl.obolibrary.org/obo/GO_0045815,epigenetic maintenance of chromatin in transcription-competent conformation +16.9548485,GO:0045822,http://purl.obolibrary.org/obo/GO_0045822,negative regulation of heart contraction +16.9548485,GO:0045829,http://purl.obolibrary.org/obo/GO_0045829,negative regulation of isotype switching +16.9548485,GO:0045848,http://purl.obolibrary.org/obo/GO_0045848,positive regulation of nitrogen utilization +16.9548485,GO:0045874,http://purl.obolibrary.org/obo/GO_0045874,positive regulation of sevenless signaling pathway +16.9548485,GO:0045876,http://purl.obolibrary.org/obo/GO_0045876,positive regulation of sister chromatid cohesion +16.9548485,GO:0045908,http://purl.obolibrary.org/obo/GO_0045908,none +16.9548485,GO:0045953,http://purl.obolibrary.org/obo/GO_0045953,negative regulation of natural killer cell mediated cytotoxicity +16.9548485,GO:0045956,http://purl.obolibrary.org/obo/GO_0045956,positive regulation of calcium ion-dependent exocytosis +16.9548485,GO:0046006,http://purl.obolibrary.org/obo/GO_0046006,regulation of activated T cell proliferation +16.9548485,GO:0046029,http://purl.obolibrary.org/obo/GO_0046029,mannitol dehydrogenase activity +16.9548485,GO:0046035,http://purl.obolibrary.org/obo/GO_0046035,CMP metabolic process +16.9548485,GO:0046047,http://purl.obolibrary.org/obo/GO_0046047,TTP catabolic process +16.9548485,GO:0046048,http://purl.obolibrary.org/obo/GO_0046048,UDP metabolic process +16.9548485,GO:0046052,http://purl.obolibrary.org/obo/GO_0046052,UTP catabolic process +16.9548485,GO:0046062,http://purl.obolibrary.org/obo/GO_0046062,dCDP metabolic process +16.9548485,GO:0046063,http://purl.obolibrary.org/obo/GO_0046063,dCMP metabolic process +16.9548485,GO:0046064,http://purl.obolibrary.org/obo/GO_0046064,dCMP biosynthetic process +16.9548485,GO:0046071,http://purl.obolibrary.org/obo/GO_0046071,dGTP biosynthetic process +16.9548485,GO:0046078,http://purl.obolibrary.org/obo/GO_0046078,dUMP metabolic process +16.9548485,GO:0046091,http://purl.obolibrary.org/obo/GO_0046091,deoxyadenosine biosynthetic process +16.9548485,GO:0046097,http://purl.obolibrary.org/obo/GO_0046097,deoxyuridine biosynthetic process +16.9548485,GO:0046111,http://purl.obolibrary.org/obo/GO_0046111,xanthine biosynthetic process +16.9548485,GO:0046118,http://purl.obolibrary.org/obo/GO_0046118,7-methylguanosine biosynthetic process +16.9548485,GO:0046150,http://purl.obolibrary.org/obo/GO_0046150,melanin catabolic process +16.9548485,GO:0046162,http://purl.obolibrary.org/obo/GO_0046162,heme C metabolic process +16.9548485,GO:0046167,http://purl.obolibrary.org/obo/GO_0046167,glycerol-3-phosphate biosynthetic process +16.9548485,GO:0046171,http://purl.obolibrary.org/obo/GO_0046171,octanol biosynthetic process +16.9548485,GO:0046186,http://purl.obolibrary.org/obo/GO_0046186,acetaldehyde biosynthetic process +16.9548485,GO:0046188,http://purl.obolibrary.org/obo/GO_0046188,methane catabolic process +16.9548485,GO:0046196,http://purl.obolibrary.org/obo/GO_0046196,4-nitrophenol catabolic process +16.9548485,GO:0046221,http://purl.obolibrary.org/obo/GO_0046221,pyridine catabolic process +16.9548485,GO:0046244,http://purl.obolibrary.org/obo/GO_0046244,salicylic acid catabolic process +16.9548485,GO:0046251,http://purl.obolibrary.org/obo/GO_0046251,limonene catabolic process +16.9548485,GO:0046252,http://purl.obolibrary.org/obo/GO_0046252,toluene biosynthetic process +16.9548485,GO:0046279,http://purl.obolibrary.org/obo/GO_0046279,"3,4-dihydroxybenzoate biosynthetic process" +16.9548485,GO:0046338,http://purl.obolibrary.org/obo/GO_0046338,phosphatidylethanolamine catabolic process +16.9548485,GO:0046341,http://purl.obolibrary.org/obo/GO_0046341,CDP-diacylglycerol metabolic process +16.9548485,GO:0046360,http://purl.obolibrary.org/obo/GO_0046360,2-oxobutyrate biosynthetic process +16.9548485,GO:0046375,http://purl.obolibrary.org/obo/GO_0046375,K antigen metabolic process +16.9548485,GO:0046382,http://purl.obolibrary.org/obo/GO_0046382,GDP-D-rhamnose metabolic process +16.9548485,GO:0046389,http://purl.obolibrary.org/obo/GO_0046389,deoxyribose 5-phosphate metabolic process +16.9548485,GO:0046392,http://purl.obolibrary.org/obo/GO_0046392,galactarate catabolic process +16.9548485,GO:0046397,http://purl.obolibrary.org/obo/GO_0046397,galacturonate catabolic process +16.9548485,GO:0046418,http://purl.obolibrary.org/obo/GO_0046418,nopaline metabolic process +16.9548485,GO:0046426,http://purl.obolibrary.org/obo/GO_0046426,negative regulation of receptor signaling pathway via JAK-STAT +16.9548485,GO:0046428,http://purl.obolibrary.org/obo/GO_0046428,"1,4-dihydroxy-2-naphthoate octaprenyltransferase activity" +16.9548485,GO:0046433,http://purl.obolibrary.org/obo/GO_0046433,2-aminoethylphosphonate metabolic process +16.9548485,GO:0046481,http://purl.obolibrary.org/obo/GO_0046481,digalactosyldiacylglycerol synthase activity +16.9548485,GO:0046516,http://purl.obolibrary.org/obo/GO_0046516,hypusine metabolic process +16.9548485,GO:0046528,http://purl.obolibrary.org/obo/GO_0046528,imaginal disc fusion +16.9548485,GO:0046534,http://purl.obolibrary.org/obo/GO_0046534,positive regulation of photoreceptor cell differentiation +16.9548485,GO:0046546,http://purl.obolibrary.org/obo/GO_0046546,development of primary male sexual characteristics +16.9548485,GO:0046547,http://purl.obolibrary.org/obo/GO_0046547,trans-aconitate 3-methyltransferase activity +16.9548485,GO:0046558,http://purl.obolibrary.org/obo/GO_0046558,"arabinan endo-1,5-alpha-L-arabinosidase activity" +16.9548485,GO:0046565,http://purl.obolibrary.org/obo/GO_0046565,3-dehydroshikimate dehydratase activity +16.9548485,GO:0046572,http://purl.obolibrary.org/obo/GO_0046572,versicolorin B synthase activity +16.9548485,GO:0046576,http://purl.obolibrary.org/obo/GO_0046576,rhamnogalacturonan alpha-L-rhamnopyranosyl-(1->4)-alpha-D-galactopyranosyluronide lyase activity +16.9548485,GO:0046577,http://purl.obolibrary.org/obo/GO_0046577,long-chain-alcohol oxidase activity +16.9548485,GO:0046579,http://purl.obolibrary.org/obo/GO_0046579,positive regulation of Ras protein signal transduction +16.9548485,GO:0046584,http://purl.obolibrary.org/obo/GO_0046584,enniatin metabolic process +16.9548485,GO:0046585,http://purl.obolibrary.org/obo/GO_0046585,enniatin biosynthetic process +16.9548485,GO:0046600,http://purl.obolibrary.org/obo/GO_0046600,negative regulation of centriole replication +16.9548485,GO:0046601,http://purl.obolibrary.org/obo/GO_0046601,positive regulation of centriole replication +16.9548485,GO:0046602,http://purl.obolibrary.org/obo/GO_0046602,regulation of mitotic centrosome separation +16.9548485,GO:0046607,http://purl.obolibrary.org/obo/GO_0046607,positive regulation of centrosome cycle +16.9548485,GO:0046621,http://purl.obolibrary.org/obo/GO_0046621,negative regulation of organ growth +16.9548485,GO:0046622,http://purl.obolibrary.org/obo/GO_0046622,positive regulation of organ growth +16.9548485,GO:0046731,http://purl.obolibrary.org/obo/GO_0046731,none +16.9548485,GO:0046739,http://purl.obolibrary.org/obo/GO_0046739,transport of virus in multicellular host +16.9548485,GO:0046740,http://purl.obolibrary.org/obo/GO_0046740,"transport of virus in host, cell to cell" +16.9548485,GO:0046809,http://purl.obolibrary.org/obo/GO_0046809,replication compartment +16.9548485,GO:0046824,http://purl.obolibrary.org/obo/GO_0046824,positive regulation of nucleocytoplasmic transport +16.9548485,GO:0046839,http://purl.obolibrary.org/obo/GO_0046839,phospholipid dephosphorylation +16.9548485,GO:0046844,http://purl.obolibrary.org/obo/GO_0046844,chorion micropyle formation +16.9548485,GO:0046847,http://purl.obolibrary.org/obo/GO_0046847,filopodium assembly +16.9548485,GO:0046914,http://purl.obolibrary.org/obo/GO_0046914,transition metal ion binding +16.9548485,GO:0046941,http://purl.obolibrary.org/obo/GO_0046941,azetidine-2-carboxylic acid acetyltransferase activity +16.9548485,GO:0046952,http://purl.obolibrary.org/obo/GO_0046952,ketone body catabolic process +16.9548485,GO:0046994,http://purl.obolibrary.org/obo/GO_0046994,"oxidoreductase activity, acting on hydrogen as donor, with a quinone or similar compound as acceptor" +16.9548485,GO:0047004,http://purl.obolibrary.org/obo/GO_0047004,UDP-N-acetylglucosamine 6-dehydrogenase activity +16.9548485,GO:0047035,http://purl.obolibrary.org/obo/GO_0047035,testosterone dehydrogenase (NAD+) activity +16.9548485,GO:0047036,http://purl.obolibrary.org/obo/GO_0047036,codeinone reductase (NADPH) activity +16.9548485,GO:0047046,http://purl.obolibrary.org/obo/GO_0047046,homoisocitrate dehydrogenase activity +16.9548485,GO:0047063,http://purl.obolibrary.org/obo/GO_0047063,none +16.9548485,GO:0047067,http://purl.obolibrary.org/obo/GO_0047067,hydrogen:quinone oxidoreductase activity +16.9548485,GO:0047068,http://purl.obolibrary.org/obo/GO_0047068,"N5,N10-methenyltetrahydromethanopterin hydrogenase activity" +16.9548485,GO:0047080,http://purl.obolibrary.org/obo/GO_0047080,deoxyuridine 2'-dioxygenase activity +16.9548485,GO:0047083,http://purl.obolibrary.org/obo/GO_0047083,5-O-(4-coumaroyl)-D-quinate 3'-monooxygenase activity +16.9548485,GO:0047096,http://purl.obolibrary.org/obo/GO_0047096,"androst-4-ene-3,17-dione monooxygenase activity" +16.9548485,GO:0047102,http://purl.obolibrary.org/obo/GO_0047102,aminomuconate-semialdehyde dehydrogenase activity +16.9548485,GO:0047107,http://purl.obolibrary.org/obo/GO_0047107,gamma-guanidinobutyraldehyde dehydrogenase activity +16.9548485,GO:0047110,http://purl.obolibrary.org/obo/GO_0047110,phenylglyoxylate dehydrogenase (acylating) activity +16.9548485,GO:0047121,http://purl.obolibrary.org/obo/GO_0047121,isoquinoline 1-oxidoreductase activity +16.9548485,GO:0047125,http://purl.obolibrary.org/obo/GO_0047125,delta1-piperideine-2-carboxylate reductase activity +16.9548485,GO:0047136,http://purl.obolibrary.org/obo/GO_0047136,4-(dimethylamino)phenylazoxybenzene reductase activity +16.9548485,GO:0047139,http://purl.obolibrary.org/obo/GO_0047139,glutathione-homocystine transhydrogenase activity +16.9548485,GO:0047144,http://purl.obolibrary.org/obo/GO_0047144,2-acylglycerol-3-phosphate O-acyltransferase activity +16.9548485,GO:0047175,http://purl.obolibrary.org/obo/GO_0047175,galactosylacylglycerol O-acyltransferase activity +16.9548485,GO:0047176,http://purl.obolibrary.org/obo/GO_0047176,beta-glucogallin-tetrakisgalloylglucose O-galloyltransferase activity +16.9548485,GO:0047181,http://purl.obolibrary.org/obo/GO_0047181,tetrahydroxybenzophenone synthase activity +16.9548485,GO:0047186,http://purl.obolibrary.org/obo/GO_0047186,N-acetylneuraminate 7-O(or 9-O)-acetyltransferase activity +16.9548485,GO:0047224,http://purl.obolibrary.org/obo/GO_0047224,"acetylgalactosaminyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity" +16.9548485,GO:0047231,http://purl.obolibrary.org/obo/GO_0047231,pyridoxine 5'-O-beta-D-glucosyltransferase activity +16.9548485,GO:0047239,http://purl.obolibrary.org/obo/GO_0047239,hydroxymandelonitrile glucosyltransferase activity +16.9548485,GO:0047244,http://purl.obolibrary.org/obo/GO_0047244,N-acetylglucosaminyldiphosphoundecaprenol N-acetyl-beta-D-mannosaminyltransferase activity +16.9548485,GO:0047245,http://purl.obolibrary.org/obo/GO_0047245,N-acetylglucosaminyldiphosphoundecaprenol glucosyltransferase activity +16.9548485,GO:0047246,http://purl.obolibrary.org/obo/GO_0047246,luteolin-7-O-glucuronide 7-O-glucuronosyltransferase activity +16.9548485,GO:0047250,http://purl.obolibrary.org/obo/GO_0047250,4-hydroxybenzoate 4-O-beta-D-glucosyltransferase activity +16.9548485,GO:0047258,http://purl.obolibrary.org/obo/GO_0047258,sphingosine beta-galactosyltransferase activity +16.9548485,GO:0047261,http://purl.obolibrary.org/obo/GO_0047261,steroid N-acetylglucosaminyltransferase activity +16.9548485,GO:0047274,http://purl.obolibrary.org/obo/GO_0047274,galactinol-sucrose galactosyltransferase activity +16.9548485,GO:0047279,http://purl.obolibrary.org/obo/GO_0047279,sn-glycerol-3-phosphate 1-galactosyltransferase activity +16.9548485,GO:0047282,http://purl.obolibrary.org/obo/GO_0047282,dTDP-dihydrostreptose-streptidine-6-phosphate dihydrostreptosyltransferase activity +16.9548485,GO:0047288,http://purl.obolibrary.org/obo/GO_0047288,monosialoganglioside sialyltransferase activity +16.9548485,GO:0047290,http://purl.obolibrary.org/obo/GO_0047290,"(alpha-N-acetylneuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl-galactosaminide 6-alpha-sialyltransferase activity" +16.9548485,GO:0047298,http://purl.obolibrary.org/obo/GO_0047298,(S)-3-amino-2-methylpropionate transaminase activity +16.9548485,GO:0047299,http://purl.obolibrary.org/obo/GO_0047299,tryptophan-phenylpyruvate transaminase activity +16.9548485,GO:0047315,http://purl.obolibrary.org/obo/GO_0047315,kynurenine-glyoxylate transaminase activity +16.9548485,GO:0047329,http://purl.obolibrary.org/obo/GO_0047329,phosphoramidate-hexose phosphotransferase activity +16.9548485,GO:0047331,http://purl.obolibrary.org/obo/GO_0047331,diphosphate-glycerol phosphotransferase activity +16.9548485,GO:0047332,http://purl.obolibrary.org/obo/GO_0047332,diphosphate-serine phosphotransferase activity +16.9548485,GO:0047333,http://purl.obolibrary.org/obo/GO_0047333,dihydrostreptomycin-6-phosphate 3'-alpha-kinase activity +16.9548485,GO:0047347,http://purl.obolibrary.org/obo/GO_0047347,aldose-1-phosphate nucleotidyltransferase activity +16.9548485,GO:0047352,http://purl.obolibrary.org/obo/GO_0047352,adenylylsulfate-ammonia adenylyltransferase activity +16.9548485,GO:0047378,http://purl.obolibrary.org/obo/GO_0047378,acetylalkylglycerol acetylhydrolase activity +16.9548485,GO:0047393,http://purl.obolibrary.org/obo/GO_0047393,"glycerol-1,2-cyclic-phosphate 2-phosphodiesterase activity" +16.9548485,GO:0047398,http://purl.obolibrary.org/obo/GO_0047398,dolichylphosphate-mannose phosphodiesterase activity +16.9548485,GO:0047399,http://purl.obolibrary.org/obo/GO_0047399,glucose-1-phospho-D-mannosylglycoprotein phosphodiesterase activity +16.9548485,GO:0047401,http://purl.obolibrary.org/obo/GO_0047401,trithionate hydrolase activity +16.9548485,GO:0047402,http://purl.obolibrary.org/obo/GO_0047402,protein-glucosylgalactosylhydroxylysine glucosidase activity +16.9548485,GO:0047405,http://purl.obolibrary.org/obo/GO_0047405,pyrimidine-5'-nucleotide nucleosidase activity +16.9548485,GO:0047411,http://purl.obolibrary.org/obo/GO_0047411,2-(acetamidomethylene)succinate hydrolase activity +16.9548485,GO:0047414,http://purl.obolibrary.org/obo/GO_0047414,2-(hydroxymethyl)-3-(acetamidomethylene)succinate hydrolase activity +16.9548485,GO:0047423,http://purl.obolibrary.org/obo/GO_0047423,N-methylhydantoinase (ATP-hydrolyzing) activity +16.9548485,GO:0047425,http://purl.obolibrary.org/obo/GO_0047425,1-pyrroline-4-hydroxy-2-carboxylate deaminase activity +16.9548485,GO:0047428,http://purl.obolibrary.org/obo/GO_0047428,arylacetonitrilase activity +16.9548485,GO:0047432,http://purl.obolibrary.org/obo/GO_0047432,"2,2-dialkylglycine decarboxylase (pyruvate) activity" +16.9548485,GO:0047435,http://purl.obolibrary.org/obo/GO_0047435,5-guanidino-2-oxopentanoate decarboxylase activity +16.9548485,GO:0047444,http://purl.obolibrary.org/obo/GO_0047444,N-acylneuraminate-9-phosphate synthase activity +16.9548485,GO:0047446,http://purl.obolibrary.org/obo/GO_0047446,(1-hydroxycyclohexan-1-yl)acetyl-CoA lyase activity +16.9548485,GO:0047448,http://purl.obolibrary.org/obo/GO_0047448,5-dehydro-4-deoxyglucarate dehydratase activity +16.9548485,GO:0047454,http://purl.obolibrary.org/obo/GO_0047454,phaseollidin hydratase activity +16.9548485,GO:0047455,http://purl.obolibrary.org/obo/GO_0047455,16-alpha-hydroxyprogesterone dehydratase activity +16.9548485,GO:0047458,http://purl.obolibrary.org/obo/GO_0047458,beta-pyrazolylalanine synthase activity +16.9548485,GO:0047459,http://purl.obolibrary.org/obo/GO_0047459,3-aminobutyryl-CoA ammonia-lyase activity +16.9548485,GO:0047463,http://purl.obolibrary.org/obo/GO_0047463,2-aminohexano-6-lactam racemase activity +16.9548485,GO:0047466,http://purl.obolibrary.org/obo/GO_0047466,"2-chloro-4-carboxymethylenebut-2-en-1,4-olide isomerase activity" +16.9548485,GO:0047480,http://purl.obolibrary.org/obo/GO_0047480,UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity +16.9548485,GO:0047487,http://purl.obolibrary.org/obo/GO_0047487,oligogalacturonide lyase activity +16.9548485,GO:0047489,http://purl.obolibrary.org/obo/GO_0047489,pectate disaccharide-lyase activity +16.9548485,GO:0047491,http://purl.obolibrary.org/obo/GO_0047491,poly(alpha-L-guluronate) lyase activity +16.9548485,GO:0047501,http://purl.obolibrary.org/obo/GO_0047501,(+)-neomenthol dehydrogenase activity +16.9548485,GO:0047506,http://purl.obolibrary.org/obo/GO_0047506,(deoxy)adenylate kinase activity +16.9548485,GO:0047511,http://purl.obolibrary.org/obo/GO_0047511,(S)-methylmalonyl-CoA hydrolase activity +16.9548485,GO:0047516,http://purl.obolibrary.org/obo/GO_0047516,"1,3-propanediol dehydrogenase activity" +16.9548485,GO:0047520,http://purl.obolibrary.org/obo/GO_0047520,11-cis-retinyl-palmitate hydrolase activity +16.9548485,GO:0047529,http://purl.obolibrary.org/obo/GO_0047529,"2,3-dimethylmalate lyase activity" +16.9548485,GO:0047539,http://purl.obolibrary.org/obo/GO_0047539,2-deoxyglucosidase activity +16.9548485,GO:0047553,http://purl.obolibrary.org/obo/GO_0047553,2-oxoglutarate synthase activity +16.9548485,GO:0047556,http://purl.obolibrary.org/obo/GO_0047556,"3,4-dihydroxyphthalate decarboxylase activity" +16.9548485,GO:0047561,http://purl.obolibrary.org/obo/GO_0047561,3-hydroxyanthranilate oxidase activity +16.9548485,GO:0047564,http://purl.obolibrary.org/obo/GO_0047564,3-hydroxycyclohexanone dehydrogenase activity +16.9548485,GO:0047567,http://purl.obolibrary.org/obo/GO_0047567,3-methyleneoxindole reductase activity +16.9548485,GO:0047571,http://purl.obolibrary.org/obo/GO_0047571,3-oxosteroid 1-dehydrogenase activity +16.9548485,GO:0047574,http://purl.obolibrary.org/obo/GO_0047574,4-acetamidobutyryl-CoA deacetylase activity +16.9548485,GO:0047585,http://purl.obolibrary.org/obo/GO_0047585,4-pyridoxolactonase activity +16.9548485,GO:0047600,http://purl.obolibrary.org/obo/GO_0047600,abequosyltransferase activity +16.9548485,GO:0047601,http://purl.obolibrary.org/obo/GO_0047601,acetate kinase (diphosphate) activity +16.9548485,GO:0047625,http://purl.obolibrary.org/obo/GO_0047625,adenosylmethionine cyclotransferase activity +16.9548485,GO:0047627,http://purl.obolibrary.org/obo/GO_0047627,adenylylsulfatase activity +16.9548485,GO:0047647,http://purl.obolibrary.org/obo/GO_0047647,alkylacetylglycerophosphatase activity +16.9548485,GO:0047649,http://purl.obolibrary.org/obo/GO_0047649,alkylglycerol kinase activity +16.9548485,GO:0047651,http://purl.obolibrary.org/obo/GO_0047651,alkylhalidase activity +16.9548485,GO:0047652,http://purl.obolibrary.org/obo/GO_0047652,allantoate deiminase activity +16.9548485,GO:0047659,http://purl.obolibrary.org/obo/GO_0047659,"alpha-santonin 1,2-reductase activity" +16.9548485,GO:0047666,http://purl.obolibrary.org/obo/GO_0047666,ammonia kinase activity +16.9548485,GO:0047670,http://purl.obolibrary.org/obo/GO_0047670,anhydrotetracycline monooxygenase activity +16.9548485,GO:0047671,http://purl.obolibrary.org/obo/GO_0047671,anthranilate adenylyltransferase activity +16.9548485,GO:0047674,http://purl.obolibrary.org/obo/GO_0047674,apiose 1-reductase activity +16.9548485,GO:0047691,http://purl.obolibrary.org/obo/GO_0047691,aspulvinone dimethylallyltransferase activity +16.9548485,GO:0047698,http://purl.obolibrary.org/obo/GO_0047698,beta-alanyl-CoA ammonia-lyase activity +16.9548485,GO:0047707,http://purl.obolibrary.org/obo/GO_0047707,biotin-CoA ligase activity +16.9548485,GO:0047709,http://purl.obolibrary.org/obo/GO_0047709,bis(2-ethylhexyl)phthalate esterase activity +16.9548485,GO:0047729,http://purl.obolibrary.org/obo/GO_0047729,carnitine decarboxylase activity +16.9548485,GO:0047754,http://purl.obolibrary.org/obo/GO_0047754,choline sulfotransferase activity +16.9548485,GO:0047765,http://purl.obolibrary.org/obo/GO_0047765,caldesmon-phosphatase activity +16.9548485,GO:0047773,http://purl.obolibrary.org/obo/GO_0047773,carnitinamidase activity +16.9548485,GO:0047774,http://purl.obolibrary.org/obo/GO_0047774,cis-2-enoyl-CoA reductase (NADPH) activity +16.9548485,GO:0047776,http://purl.obolibrary.org/obo/GO_0047776,citramalate lyase activity +16.9548485,GO:0047780,http://purl.obolibrary.org/obo/GO_0047780,citrate dehydratase activity +16.9548485,GO:0047783,http://purl.obolibrary.org/obo/GO_0047783,corticosterone 18-monooxygenase activity +16.9548485,GO:0047801,http://purl.obolibrary.org/obo/GO_0047801,L-cysteine:2-oxoglutarate aminotransferase activity +16.9548485,GO:0047802,http://purl.obolibrary.org/obo/GO_0047802,cysteine-conjugate transaminase activity +16.9548485,GO:0047806,http://purl.obolibrary.org/obo/GO_0047806,cytochrome-c3 hydrogenase activity +16.9548485,GO:0047808,http://purl.obolibrary.org/obo/GO_0047808,D(-)-tartrate dehydratase activity +16.9548485,GO:0047814,http://purl.obolibrary.org/obo/GO_0047814,D-arabinokinase activity +16.9548485,GO:0047817,http://purl.obolibrary.org/obo/GO_0047817,D-arginase activity +16.9548485,GO:0047820,http://purl.obolibrary.org/obo/GO_0047820,D-glutamate cyclase activity +16.9548485,GO:0047830,http://purl.obolibrary.org/obo/GO_0047830,D-octopine dehydrogenase activity +16.9548485,GO:0047867,http://purl.obolibrary.org/obo/GO_0047867,dimethylmalate dehydrogenase activity +16.9548485,GO:0047886,http://purl.obolibrary.org/obo/GO_0047886,farnesol dehydrogenase activity +16.9548485,GO:0047887,http://purl.obolibrary.org/obo/GO_0047887,farnesyl diphosphate kinase activity +16.9548485,GO:0047906,http://purl.obolibrary.org/obo/GO_0047906,fucosterol-epoxide lyase activity +16.9548485,GO:0047908,http://purl.obolibrary.org/obo/GO_0047908,fusarinine-C ornithinesterase activity +16.9548485,GO:0047917,http://purl.obolibrary.org/obo/GO_0047917,GDP-glucosidase activity +16.9548485,GO:0047926,http://purl.obolibrary.org/obo/GO_0047926,geranyl-diphosphate cyclase activity +16.9548485,GO:0047933,http://purl.obolibrary.org/obo/GO_0047933,"glucose-1,6-bisphosphate synthase activity" +16.9548485,GO:0047934,http://purl.obolibrary.org/obo/GO_0047934,glucose 1-dehydrogenase (NAD+) activity +16.9548485,GO:0047935,http://purl.obolibrary.org/obo/GO_0047935,glucose 1-dehydrogenase (NADP+) activity +16.9548485,GO:0047946,http://purl.obolibrary.org/obo/GO_0047946,glutamine N-acyltransferase activity +16.9548485,GO:0047959,http://purl.obolibrary.org/obo/GO_0047959,glycine dehydrogenase (cytochrome) activity +16.9548485,GO:0047978,http://purl.obolibrary.org/obo/GO_0047978,hexadecanol dehydrogenase activity +16.9548485,GO:0047989,http://purl.obolibrary.org/obo/GO_0047989,hydroxybutyrate-dimer hydrolase activity +16.9548485,GO:0047996,http://purl.obolibrary.org/obo/GO_0047996,hydroxyphytanate oxidase activity +16.9548485,GO:0047997,http://purl.obolibrary.org/obo/GO_0047997,hydroxypyruvate decarboxylase activity +16.9548485,GO:0048022,http://purl.obolibrary.org/obo/GO_0048022,negative regulation of melanin biosynthetic process +16.9548485,GO:0048036,http://purl.obolibrary.org/obo/GO_0048036,central complex development +16.9548485,GO:0048072,http://purl.obolibrary.org/obo/GO_0048072,compound eye pigmentation +16.9548485,GO:0048079,http://purl.obolibrary.org/obo/GO_0048079,regulation of cuticle pigmentation +16.9548485,GO:0048096,http://purl.obolibrary.org/obo/GO_0048096,none +16.9548485,GO:0048134,http://purl.obolibrary.org/obo/GO_0048134,germ-line cyst formation +16.9548485,GO:0048136,http://purl.obolibrary.org/obo/GO_0048136,male germ-line cyst formation +16.9548485,GO:0048137,http://purl.obolibrary.org/obo/GO_0048137,spermatocyte division +16.9548485,GO:0048146,http://purl.obolibrary.org/obo/GO_0048146,positive regulation of fibroblast proliferation +16.9548485,GO:0048152,http://purl.obolibrary.org/obo/GO_0048152,none +16.9548485,GO:0048227,http://purl.obolibrary.org/obo/GO_0048227,plasma membrane to endosome transport +16.9548485,GO:0048260,http://purl.obolibrary.org/obo/GO_0048260,positive regulation of receptor-mediated endocytosis +16.9548485,GO:0048280,http://purl.obolibrary.org/obo/GO_0048280,vesicle fusion with Golgi apparatus +16.9548485,GO:0048311,http://purl.obolibrary.org/obo/GO_0048311,mitochondrion distribution +16.9548485,GO:0048314,http://purl.obolibrary.org/obo/GO_0048314,embryo sac morphogenesis +16.9548485,GO:0048315,http://purl.obolibrary.org/obo/GO_0048315,conidium formation +16.9548485,GO:0048342,http://purl.obolibrary.org/obo/GO_0048342,paraxial mesodermal cell differentiation +16.9548485,GO:0048383,http://purl.obolibrary.org/obo/GO_0048383,mesectoderm development +16.9548485,GO:0048385,http://purl.obolibrary.org/obo/GO_0048385,regulation of retinoic acid receptor signaling pathway +16.9548485,GO:0048455,http://purl.obolibrary.org/obo/GO_0048455,stamen formation +16.9548485,GO:0048462,http://purl.obolibrary.org/obo/GO_0048462,carpel formation +16.9548485,GO:0048465,http://purl.obolibrary.org/obo/GO_0048465,corolla development +16.9548485,GO:0048466,http://purl.obolibrary.org/obo/GO_0048466,androecium development +16.9548485,GO:0048480,http://purl.obolibrary.org/obo/GO_0048480,stigma development +16.9548485,GO:0048491,http://purl.obolibrary.org/obo/GO_0048491,retrograde synaptic vesicle transport +16.9548485,GO:0048506,http://purl.obolibrary.org/obo/GO_0048506,regulation of timing of meristematic phase transition +16.9548485,GO:0048510,http://purl.obolibrary.org/obo/GO_0048510,regulation of timing of transition from vegetative to reproductive phase +16.9548485,GO:0048544,http://purl.obolibrary.org/obo/GO_0048544,recognition of pollen +16.9548485,GO:0048549,http://purl.obolibrary.org/obo/GO_0048549,positive regulation of pinocytosis +16.9548485,GO:0048550,http://purl.obolibrary.org/obo/GO_0048550,negative regulation of pinocytosis +16.9548485,GO:0048579,http://purl.obolibrary.org/obo/GO_0048579,"negative regulation of long-day photoperiodism, flowering" +16.9548485,GO:0048586,http://purl.obolibrary.org/obo/GO_0048586,"regulation of long-day photoperiodism, flowering" +16.9548485,GO:0048587,http://purl.obolibrary.org/obo/GO_0048587,"regulation of short-day photoperiodism, flowering" +16.9548485,GO:0048630,http://purl.obolibrary.org/obo/GO_0048630,skeletal muscle tissue growth +16.9548485,GO:0048661,http://purl.obolibrary.org/obo/GO_0048661,positive regulation of smooth muscle cell proliferation +16.9548485,GO:0048714,http://purl.obolibrary.org/obo/GO_0048714,positive regulation of oligodendrocyte differentiation +16.9548485,GO:0048728,http://purl.obolibrary.org/obo/GO_0048728,proboscis development +16.9548485,GO:0048741,http://purl.obolibrary.org/obo/GO_0048741,skeletal muscle fiber development +16.9548485,GO:0048756,http://purl.obolibrary.org/obo/GO_0048756,sieve cell differentiation +16.9548485,GO:0048757,http://purl.obolibrary.org/obo/GO_0048757,pigment granule maturation +16.9548485,GO:0048766,http://purl.obolibrary.org/obo/GO_0048766,root hair initiation +16.9548485,GO:0048773,http://purl.obolibrary.org/obo/GO_0048773,erythrophore differentiation +16.9548485,GO:0048791,http://purl.obolibrary.org/obo/GO_0048791,calcium ion-regulated exocytosis of neurotransmitter +16.9548485,GO:0048796,http://purl.obolibrary.org/obo/GO_0048796,swim bladder maturation +16.9548485,GO:0048797,http://purl.obolibrary.org/obo/GO_0048797,swim bladder formation +16.9548485,GO:0048800,http://purl.obolibrary.org/obo/GO_0048800,antennal morphogenesis +16.9548485,GO:0048837,http://purl.obolibrary.org/obo/GO_0048837,sorocarp sorus development +16.9548485,GO:0048850,http://purl.obolibrary.org/obo/GO_0048850,hypophysis morphogenesis +16.9548485,GO:0048855,http://purl.obolibrary.org/obo/GO_0048855,adenohypophysis morphogenesis +16.9548485,GO:0048885,http://purl.obolibrary.org/obo/GO_0048885,neuromast deposition +16.9548485,GO:0048916,http://purl.obolibrary.org/obo/GO_0048916,posterior lateral line development +16.9548485,GO:0050003,http://purl.obolibrary.org/obo/GO_0050003,deoxycytidylate C-methyltransferase activity +16.9548485,GO:0050006,http://purl.obolibrary.org/obo/GO_0050006,isomaltulose synthase activity +16.9548485,GO:0050024,http://purl.obolibrary.org/obo/GO_0050024,L-galactonolactone oxidase activity +16.9548485,GO:0050028,http://purl.obolibrary.org/obo/GO_0050028,L-lysine-lactamase activity +16.9548485,GO:0050031,http://purl.obolibrary.org/obo/GO_0050031,L-pipecolate oxidase activity +16.9548485,GO:0050032,http://purl.obolibrary.org/obo/GO_0050032,L-rhamnonate dehydratase activity +16.9548485,GO:0050039,http://purl.obolibrary.org/obo/GO_0050039,lactaldehyde reductase (NADPH) activity +16.9548485,GO:0050043,http://purl.obolibrary.org/obo/GO_0050043,lactate racemase activity +16.9548485,GO:0050047,http://purl.obolibrary.org/obo/GO_0050047,"leucine 2,3-aminomutase activity" +16.9548485,GO:0050057,http://purl.obolibrary.org/obo/GO_0050057,linamarin synthase activity +16.9548485,GO:0050061,http://purl.obolibrary.org/obo/GO_0050061,long-chain-aldehyde dehydrogenase activity +16.9548485,GO:0050064,http://purl.obolibrary.org/obo/GO_0050064,luteolin 7-O-glucuronosyltransferase activity +16.9548485,GO:0050068,http://purl.obolibrary.org/obo/GO_0050068,lysine carbamoyltransferase activity +16.9548485,GO:0050069,http://purl.obolibrary.org/obo/GO_0050069,lysine dehydrogenase activity +16.9548485,GO:0050071,http://purl.obolibrary.org/obo/GO_0050071,lysyltransferase activity +16.9548485,GO:0050082,http://purl.obolibrary.org/obo/GO_0050082,maltose phosphorylase activity +16.9548485,GO:0050094,http://purl.obolibrary.org/obo/GO_0050094,methionine-glyoxylate transaminase activity +16.9548485,GO:0050099,http://purl.obolibrary.org/obo/GO_0050099,methylglutamate dehydrogenase activity +16.9548485,GO:0050122,http://purl.obolibrary.org/obo/GO_0050122,N-acylhexosamine oxidase activity +16.9548485,GO:0050123,http://purl.obolibrary.org/obo/GO_0050123,N-acylmannosamine 1-dehydrogenase activity +16.9548485,GO:0050135,http://purl.obolibrary.org/obo/GO_0050135,NAD(P)+ nucleosidase activity +16.9548485,GO:0050147,http://purl.obolibrary.org/obo/GO_0050147,nucleoside ribosyltransferase activity +16.9548485,GO:0050154,http://purl.obolibrary.org/obo/GO_0050154,opheline kinase activity +16.9548485,GO:0050158,http://purl.obolibrary.org/obo/GO_0050158,orotate reductase (NADPH) activity +16.9548485,GO:0050173,http://purl.obolibrary.org/obo/GO_0050173,phenylalanine adenylyltransferase activity +16.9548485,GO:0050176,http://purl.obolibrary.org/obo/GO_0050176,phenylalanine N-acetyltransferase activity +16.9548485,GO:0050180,http://purl.obolibrary.org/obo/GO_0050180,phloretin hydrolase activity +16.9548485,GO:0050181,http://purl.obolibrary.org/obo/GO_0050181,phorbol-diester hydrolase activity +16.9548485,GO:0050183,http://purl.obolibrary.org/obo/GO_0050183,phosphatidylcholine 12-monooxygenase activity +16.9548485,GO:0050195,http://purl.obolibrary.org/obo/GO_0050195,phosphoribokinase activity +16.9548485,GO:0050202,http://purl.obolibrary.org/obo/GO_0050202,octopamine dehydratase activity +16.9548485,GO:0050209,http://purl.obolibrary.org/obo/GO_0050209,polyvinyl-alcohol oxidase activity +16.9548485,GO:0050225,http://purl.obolibrary.org/obo/GO_0050225,pseudouridine kinase activity +16.9548485,GO:0050235,http://purl.obolibrary.org/obo/GO_0050235,pyridoxal 4-dehydrogenase activity +16.9548485,GO:0050244,http://purl.obolibrary.org/obo/GO_0050244,pyruvate oxidase (CoA-acetylating) activity +16.9548485,GO:0050258,http://purl.obolibrary.org/obo/GO_0050258,riboflavinase activity +16.9548485,GO:0050270,http://purl.obolibrary.org/obo/GO_0050270,S-adenosylhomocysteine deaminase activity +16.9548485,GO:0050273,http://purl.obolibrary.org/obo/GO_0050273,S-succinylglutathione hydrolase activity +16.9548485,GO:0050276,http://purl.obolibrary.org/obo/GO_0050276,scyllo-inosamine 4-kinase activity +16.9548485,GO:0050287,http://purl.obolibrary.org/obo/GO_0050287,sorbose 5-dehydrogenase (NADP+) activity +16.9548485,GO:0050290,http://purl.obolibrary.org/obo/GO_0050290,sphingomyelin phosphodiesterase D activity +16.9548485,GO:0050332,http://purl.obolibrary.org/obo/GO_0050332,thiamine pyridinylase activity +16.9548485,GO:0050348,http://purl.obolibrary.org/obo/GO_0050348,trehalose O-mycolyltransferase activity +16.9548485,GO:0050350,http://purl.obolibrary.org/obo/GO_0050350,trihydroxystilbene synthase activity +16.9548485,GO:0050353,http://purl.obolibrary.org/obo/GO_0050353,trimethyllysine dioxygenase activity +16.9548485,GO:0050386,http://purl.obolibrary.org/obo/GO_0050386,ureidosuccinase activity +16.9548485,GO:0050402,http://purl.obolibrary.org/obo/GO_0050402,"xylono-1,4-lactonase activity" +16.9548485,GO:0050420,http://purl.obolibrary.org/obo/GO_0050420,maltose synthase activity +16.9548485,GO:0050423,http://purl.obolibrary.org/obo/GO_0050423,thiamine oxidase activity +16.9548485,GO:0050446,http://purl.obolibrary.org/obo/GO_0050446,azobenzene reductase activity +16.9548485,GO:0050462,http://purl.obolibrary.org/obo/GO_0050462,N-acetylneuraminate synthase activity +16.9548485,GO:0050467,http://purl.obolibrary.org/obo/GO_0050467,pentalenene synthase activity +16.9548485,GO:0050469,http://purl.obolibrary.org/obo/GO_0050469,sabinene-hydrate synthase activity +16.9548485,GO:0050472,http://purl.obolibrary.org/obo/GO_0050472,zeatin reductase activity +16.9548485,GO:0050477,http://purl.obolibrary.org/obo/GO_0050477,acyl-lysine deacylase activity +16.9548485,GO:0050479,http://purl.obolibrary.org/obo/GO_0050479,glyceryl-ether monooxygenase activity +16.9548485,GO:0050498,http://purl.obolibrary.org/obo/GO_0050498,"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, with 2-oxoglutarate as one donor, and the other dehydrogenated" +16.9548485,GO:0050499,http://purl.obolibrary.org/obo/GO_0050499,"oxidoreductase activity, acting on phosphorus or arsenic in donors, with NAD(P)+ as acceptor" +16.9548485,GO:0050519,http://purl.obolibrary.org/obo/GO_0050519,holo-citrate lyase synthase activity +16.9548485,GO:0050520,http://purl.obolibrary.org/obo/GO_0050520,phosphatidylcholine synthase activity +16.9548485,GO:0050527,http://purl.obolibrary.org/obo/GO_0050527,poly(3-hydroxyoctanoate) depolymerase activity +16.9548485,GO:0050539,http://purl.obolibrary.org/obo/GO_0050539,maleimide hydrolase activity +16.9548485,GO:0050582,http://purl.obolibrary.org/obo/GO_0050582,xylitol oxidase activity +16.9548485,GO:0050589,http://purl.obolibrary.org/obo/GO_0050589,leucocyanidin oxygenase activity +16.9548485,GO:0050595,http://purl.obolibrary.org/obo/GO_0050595,7-deoxyloganin 7-hydroxylase activity +16.9548485,GO:0050596,http://purl.obolibrary.org/obo/GO_0050596,vinorine hydroxylase activity +16.9548485,GO:0050598,http://purl.obolibrary.org/obo/GO_0050598,taxane 13-alpha-hydroxylase activity +16.9548485,GO:0050599,http://purl.obolibrary.org/obo/GO_0050599,deacetoxycephalosporin-C synthase activity +16.9548485,GO:0050609,http://purl.obolibrary.org/obo/GO_0050609,phosphonate dehydrogenase activity +16.9548485,GO:0050615,http://purl.obolibrary.org/obo/GO_0050615,"1,2-dihydrovomilenine reductase activity" +16.9548485,GO:0050619,http://purl.obolibrary.org/obo/GO_0050619,phytochromobilin:ferredoxin oxidoreductase activity +16.9548485,GO:0050624,http://purl.obolibrary.org/obo/GO_0050624,vomilenine reductase activity +16.9548485,GO:0050629,http://purl.obolibrary.org/obo/GO_0050629,tetrachloroethene reductive dehalogenase activity +16.9548485,GO:0050635,http://purl.obolibrary.org/obo/GO_0050635,acridone synthase activity +16.9548485,GO:0050639,http://purl.obolibrary.org/obo/GO_0050639,10-hydroxytaxane O-acetyltransferase activity +16.9548485,GO:0050642,http://purl.obolibrary.org/obo/GO_0050642,2-alpha-hydroxytaxane 2-O-benzoyltransferase activity +16.9548485,GO:0050669,http://purl.obolibrary.org/obo/GO_0050669,negative regulation of homocysteine metabolic process +16.9548485,GO:0050685,http://purl.obolibrary.org/obo/GO_0050685,positive regulation of mRNA processing +16.9548485,GO:0050711,http://purl.obolibrary.org/obo/GO_0050711,none +16.9548485,GO:0050713,http://purl.obolibrary.org/obo/GO_0050713,none +16.9548485,GO:0050774,http://purl.obolibrary.org/obo/GO_0050774,negative regulation of dendrite morphogenesis +16.9548485,GO:0050775,http://purl.obolibrary.org/obo/GO_0050775,positive regulation of dendrite morphogenesis +16.9548485,GO:0050784,http://purl.obolibrary.org/obo/GO_0050784,cocaine catabolic process +16.9548485,GO:0050787,http://purl.obolibrary.org/obo/GO_0050787,detoxification of mercury ion +16.9548485,GO:0050829,http://purl.obolibrary.org/obo/GO_0050829,defense response to Gram-negative bacterium +16.9548485,GO:0050830,http://purl.obolibrary.org/obo/GO_0050830,defense response to Gram-positive bacterium +16.9548485,GO:0050843,http://purl.obolibrary.org/obo/GO_0050843,S-adenosylmethionine catabolic process +16.9548485,GO:0050859,http://purl.obolibrary.org/obo/GO_0050859,negative regulation of B cell receptor signaling pathway +16.9548485,GO:0050861,http://purl.obolibrary.org/obo/GO_0050861,positive regulation of B cell receptor signaling pathway +16.9548485,GO:0050899,http://purl.obolibrary.org/obo/GO_0050899,nitrile catabolic process +16.9548485,GO:0050910,http://purl.obolibrary.org/obo/GO_0050910,detection of mechanical stimulus involved in sensory perception of sound +16.9548485,GO:0050926,http://purl.obolibrary.org/obo/GO_0050926,regulation of positive chemotaxis +16.9548485,GO:0050927,http://purl.obolibrary.org/obo/GO_0050927,positive regulation of positive chemotaxis +16.9548485,GO:0050930,http://purl.obolibrary.org/obo/GO_0050930,induction of positive chemotaxis +16.9548485,GO:0050952,http://purl.obolibrary.org/obo/GO_0050952,sensory perception of electrical stimulus +16.9548485,GO:0050962,http://purl.obolibrary.org/obo/GO_0050962,detection of light stimulus involved in sensory perception +16.9548485,GO:0050996,http://purl.obolibrary.org/obo/GO_0050996,positive regulation of lipid catabolic process +16.9548485,GO:0051006,http://purl.obolibrary.org/obo/GO_0051006,positive regulation of lipoprotein lipase activity +16.9548485,GO:0051024,http://purl.obolibrary.org/obo/GO_0051024,none +16.9548485,GO:0051025,http://purl.obolibrary.org/obo/GO_0051025,none +16.9548485,GO:0051078,http://purl.obolibrary.org/obo/GO_0051078,meiotic nuclear membrane disassembly +16.9548485,GO:0051105,http://purl.obolibrary.org/obo/GO_0051105,regulation of DNA ligation +16.9548485,GO:0051122,http://purl.obolibrary.org/obo/GO_0051122,hepoxilin biosynthetic process +16.9548485,GO:0051127,http://purl.obolibrary.org/obo/GO_0051127,positive regulation of actin nucleation +16.9548485,GO:0051136,http://purl.obolibrary.org/obo/GO_0051136,regulation of NK T cell differentiation +16.9548485,GO:0051152,http://purl.obolibrary.org/obo/GO_0051152,positive regulation of smooth muscle cell differentiation +16.9548485,GO:0051167,http://purl.obolibrary.org/obo/GO_0051167,xylulose 5-phosphate metabolic process +16.9548485,GO:0051202,http://purl.obolibrary.org/obo/GO_0051202,phytochromobilin metabolic process +16.9548485,GO:0051229,http://purl.obolibrary.org/obo/GO_0051229,meiotic spindle disassembly +16.9548485,GO:0051283,http://purl.obolibrary.org/obo/GO_0051283,negative regulation of sequestering of calcium ion +16.9548485,GO:0051285,http://purl.obolibrary.org/obo/GO_0051285,cell cortex of cell tip +16.9548485,GO:0051300,http://purl.obolibrary.org/obo/GO_0051300,spindle pole body organization +16.9548485,GO:0051330,http://purl.obolibrary.org/obo/GO_0051330,meiotic G1 phase +16.9548485,GO:0051365,http://purl.obolibrary.org/obo/GO_0051365,cellular response to potassium ion starvation +16.9548485,GO:0051410,http://purl.obolibrary.org/obo/GO_0051410,detoxification of nitrogen compound +16.9548485,GO:0051418,http://purl.obolibrary.org/obo/GO_0051418,microtubule nucleation by microtubule organizing center +16.9548485,GO:0051463,http://purl.obolibrary.org/obo/GO_0051463,negative regulation of cortisol secretion +16.9548485,GO:0051490,http://purl.obolibrary.org/obo/GO_0051490,negative regulation of filopodium assembly +16.9548485,GO:0051501,http://purl.obolibrary.org/obo/GO_0051501,diterpene phytoalexin metabolic process +16.9548485,GO:0051502,http://purl.obolibrary.org/obo/GO_0051502,diterpene phytoalexin biosynthetic process +16.9548485,GO:0051512,http://purl.obolibrary.org/obo/GO_0051512,positive regulation of unidimensional cell growth +16.9548485,GO:0051516,http://purl.obolibrary.org/obo/GO_0051516,regulation of bipolar cell growth +16.9548485,GO:0051518,http://purl.obolibrary.org/obo/GO_0051518,positive regulation of bipolar cell growth +16.9548485,GO:0051519,http://purl.obolibrary.org/obo/GO_0051519,activation of bipolar cell growth +16.9548485,GO:0051573,http://purl.obolibrary.org/obo/GO_0051573,negative regulation of histone H3-K9 methylation +16.9548485,GO:0051574,http://purl.obolibrary.org/obo/GO_0051574,positive regulation of histone H3-K9 methylation +16.9548485,GO:0051582,http://purl.obolibrary.org/obo/GO_0051582,positive regulation of neurotransmitter uptake +16.9548485,GO:0051596,http://purl.obolibrary.org/obo/GO_0051596,methylglyoxal catabolic process +16.9548485,GO:0051613,http://purl.obolibrary.org/obo/GO_0051613,positive regulation of serotonin uptake +16.9548485,GO:0051666,http://purl.obolibrary.org/obo/GO_0051666,actin cortical patch localization +16.9548485,GO:0051698,http://purl.obolibrary.org/obo/GO_0051698,saccharopine oxidase activity +16.9548485,GO:0051709,http://purl.obolibrary.org/obo/GO_0051709,regulation of killing of cells of other organism +16.9548485,GO:0051715,http://purl.obolibrary.org/obo/GO_0051715,cytolysis in other organism +16.9548485,GO:0051730,http://purl.obolibrary.org/obo/GO_0051730,GTP-dependent polyribonucleotide 5'-hydroxyl-kinase activity +16.9548485,GO:0051734,http://purl.obolibrary.org/obo/GO_0051734,polynucleotide kinase activity +16.9548485,GO:0051753,http://purl.obolibrary.org/obo/GO_0051753,mannan synthase activity +16.9548485,GO:0051770,http://purl.obolibrary.org/obo/GO_0051770,positive regulation of nitric-oxide synthase biosynthetic process +16.9548485,GO:0051801,http://purl.obolibrary.org/obo/GO_0051801,cytolysis in other organism involved in symbiotic interaction +16.9548485,GO:0051818,http://purl.obolibrary.org/obo/GO_0051818,disruption of cells of other organism involved in symbiotic interaction +16.9548485,GO:0051883,http://purl.obolibrary.org/obo/GO_0051883,killing of cells in other organism involved in symbiotic interaction +16.9548485,GO:0051895,http://purl.obolibrary.org/obo/GO_0051895,negative regulation of focal adhesion assembly +16.9548485,GO:0051898,http://purl.obolibrary.org/obo/GO_0051898,negative regulation of protein kinase B signaling +16.9548485,GO:0051947,http://purl.obolibrary.org/obo/GO_0051947,regulation of gamma-aminobutyric acid uptake involved in transmission of nerve impulse +16.9548485,GO:0051964,http://purl.obolibrary.org/obo/GO_0051964,negative regulation of synapse assembly +16.9548485,GO:0051969,http://purl.obolibrary.org/obo/GO_0051969,regulation of transmission of nerve impulse +16.9548485,GO:0052150,http://purl.obolibrary.org/obo/GO_0052150,modulation by symbiont of host apoptotic process +16.9548485,GO:0052325,http://purl.obolibrary.org/obo/GO_0052325,cell wall pectin biosynthetic process +16.9548485,GO:0052433,http://purl.obolibrary.org/obo/GO_0052433,none +16.9548485,GO:0052606,http://purl.obolibrary.org/obo/GO_0052606,chlorophyllide a oxygenase activity +16.9548485,GO:0052623,http://purl.obolibrary.org/obo/GO_0052623,ADP dimethylallyltransferase activity +16.9548485,GO:0052624,http://purl.obolibrary.org/obo/GO_0052624,"2-phytyl-1,4-naphthoquinone methyltransferase activity" +16.9548485,GO:0052641,http://purl.obolibrary.org/obo/GO_0052641,benzoic acid glucosyltransferase activity +16.9548485,GO:0052671,http://purl.obolibrary.org/obo/GO_0052671,geranylgeraniol kinase activity +16.9548485,GO:0052696,http://purl.obolibrary.org/obo/GO_0052696,flavonoid glucuronidation +16.9548485,GO:0052702,http://purl.obolibrary.org/obo/GO_0052702,cellular modified histidine catabolic process +16.9548485,GO:0052726,http://purl.obolibrary.org/obo/GO_0052726,"inositol-1,3,4-trisphosphate 5-kinase activity" +16.9548485,GO:0052732,http://purl.obolibrary.org/obo/GO_0052732,phosphoethanolamine phosphatase activity +16.9548485,GO:0052751,http://purl.obolibrary.org/obo/GO_0052751,GDP-mannose hydrolase activity +16.9548485,GO:0052762,http://purl.obolibrary.org/obo/GO_0052762,gellan lyase activity +16.9548485,GO:0052802,http://purl.obolibrary.org/obo/GO_0052802,nitroimidazole metabolic process +16.9548485,GO:0052806,http://purl.obolibrary.org/obo/GO_0052806,sulfite reductase (coenzyme F420) activity +16.9548485,GO:0052808,http://purl.obolibrary.org/obo/GO_0052808,reduced coenzyme F420:NADP+ oxidoreductase activity +16.9548485,GO:0052809,http://purl.obolibrary.org/obo/GO_0052809,acharan sulfate lyase activity +16.9548485,GO:0052825,http://purl.obolibrary.org/obo/GO_0052825,"inositol-1,3,4,5,6-pentakisphosphate 1-phosphatase activity" +16.9548485,GO:0052828,http://purl.obolibrary.org/obo/GO_0052828,"inositol-3,4-bisphosphate 4-phosphatase activity" +16.9548485,GO:0052881,http://purl.obolibrary.org/obo/GO_0052881,4-hydroxyphenylacetate 3-monooxygenase activity +16.9548485,GO:0052906,http://purl.obolibrary.org/obo/GO_0052906,tRNA (guanine(37)-N(1))-methyltransferase activity +16.9548485,GO:0052927,http://purl.obolibrary.org/obo/GO_0052927,CTP:tRNA cytidylyltransferase activity +16.9548485,GO:0055004,http://purl.obolibrary.org/obo/GO_0055004,atrial cardiac myofibril assembly +16.9548485,GO:0055008,http://purl.obolibrary.org/obo/GO_0055008,cardiac muscle tissue morphogenesis +16.9548485,GO:0055010,http://purl.obolibrary.org/obo/GO_0055010,ventricular cardiac muscle tissue morphogenesis +16.9548485,GO:0055011,http://purl.obolibrary.org/obo/GO_0055011,atrial cardiac muscle cell differentiation +16.9548485,GO:0055058,http://purl.obolibrary.org/obo/GO_0055058,symmetric neuroblast division +16.9548485,GO:0055077,http://purl.obolibrary.org/obo/GO_0055077,gap junction hemi-channel activity +16.9548485,GO:0055115,http://purl.obolibrary.org/obo/GO_0055115,entry into diapause +16.9548485,GO:0060006,http://purl.obolibrary.org/obo/GO_0060006,angular vestibuloocular reflex +16.9548485,GO:0060068,http://purl.obolibrary.org/obo/GO_0060068,vagina development +16.9548485,GO:0060091,http://purl.obolibrary.org/obo/GO_0060091,kinocilium +16.9548485,GO:0060132,http://purl.obolibrary.org/obo/GO_0060132,prolactin secreting cell development +16.9548485,GO:0060135,http://purl.obolibrary.org/obo/GO_0060135,maternal process involved in female pregnancy +16.9548485,GO:0060143,http://purl.obolibrary.org/obo/GO_0060143,positive regulation of syncytium formation by plasma membrane fusion +16.9548485,GO:0060214,http://purl.obolibrary.org/obo/GO_0060214,endocardium formation +16.9548485,GO:0060234,http://purl.obolibrary.org/obo/GO_0060234,neuroblast delamination +16.9548485,GO:0060268,http://purl.obolibrary.org/obo/GO_0060268,negative regulation of respiratory burst +16.9548485,GO:0060282,http://purl.obolibrary.org/obo/GO_0060282,positive regulation of oocyte development +16.9548485,GO:0060292,http://purl.obolibrary.org/obo/GO_0060292,long-term synaptic depression +16.9548485,GO:0060303,http://purl.obolibrary.org/obo/GO_0060303,regulation of nucleosome density +16.9548485,GO:0060317,http://purl.obolibrary.org/obo/GO_0060317,cardiac epithelial to mesenchymal transition +16.9548485,GO:0060330,http://purl.obolibrary.org/obo/GO_0060330,regulation of response to interferon-gamma +16.9548485,GO:0060342,http://purl.obolibrary.org/obo/GO_0060342,photoreceptor inner segment membrane +16.9548485,GO:0060365,http://purl.obolibrary.org/obo/GO_0060365,coronal suture morphogenesis +16.9548485,GO:0060378,http://purl.obolibrary.org/obo/GO_0060378,regulation of brood size +16.9548485,GO:0060379,http://purl.obolibrary.org/obo/GO_0060379,cardiac muscle cell myoblast differentiation +16.9548485,GO:0060389,http://purl.obolibrary.org/obo/GO_0060389,pathway-restricted SMAD protein phosphorylation +16.9548485,GO:0060412,http://purl.obolibrary.org/obo/GO_0060412,ventricular septum morphogenesis +16.9548485,GO:0060413,http://purl.obolibrary.org/obo/GO_0060413,atrial septum morphogenesis +16.9548485,GO:0060422,http://purl.obolibrary.org/obo/GO_0060422,peptidyl-dipeptidase inhibitor activity +16.9548485,GO:0060426,http://purl.obolibrary.org/obo/GO_0060426,lung vasculature development +16.9548485,GO:0060427,http://purl.obolibrary.org/obo/GO_0060427,lung connective tissue development +16.9548485,GO:0060439,http://purl.obolibrary.org/obo/GO_0060439,trachea morphogenesis +16.9548485,GO:0060463,http://purl.obolibrary.org/obo/GO_0060463,lung lobe morphogenesis +16.9548485,GO:0060467,http://purl.obolibrary.org/obo/GO_0060467,negative regulation of fertilization +16.9548485,GO:0060480,http://purl.obolibrary.org/obo/GO_0060480,lung goblet cell differentiation +16.9548485,GO:0060532,http://purl.obolibrary.org/obo/GO_0060532,bronchus cartilage development +16.9548485,GO:0060568,http://purl.obolibrary.org/obo/GO_0060568,regulation of peptide hormone processing +16.9548485,GO:0060584,http://purl.obolibrary.org/obo/GO_0060584,regulation of prostaglandin-endoperoxide synthase activity +16.9548485,GO:0060594,http://purl.obolibrary.org/obo/GO_0060594,mammary gland specification +16.9548485,GO:0060611,http://purl.obolibrary.org/obo/GO_0060611,mammary gland fat development +16.9548485,GO:0060638,http://purl.obolibrary.org/obo/GO_0060638,mesenchymal-epithelial cell signaling +16.9548485,GO:0060644,http://purl.obolibrary.org/obo/GO_0060644,mammary gland epithelial cell differentiation +16.9548485,GO:0060674,http://purl.obolibrary.org/obo/GO_0060674,placenta blood vessel development +16.9548485,GO:0060676,http://purl.obolibrary.org/obo/GO_0060676,ureteric bud formation +16.9548485,GO:0060688,http://purl.obolibrary.org/obo/GO_0060688,regulation of morphogenesis of a branching structure +16.9548485,GO:0060699,http://purl.obolibrary.org/obo/GO_0060699,regulation of endoribonuclease activity +16.9548485,GO:0060755,http://purl.obolibrary.org/obo/GO_0060755,negative regulation of mast cell chemotaxis +16.9548485,GO:0060760,http://purl.obolibrary.org/obo/GO_0060760,positive regulation of response to cytokine stimulus +16.9548485,GO:0060772,http://purl.obolibrary.org/obo/GO_0060772,leaf phyllotactic patterning +16.9548485,GO:0060816,http://purl.obolibrary.org/obo/GO_0060816,random inactivation of X chromosome +16.9548485,GO:0060848,http://purl.obolibrary.org/obo/GO_0060848,endothelial cell fate determination +16.9548485,GO:0060854,http://purl.obolibrary.org/obo/GO_0060854,branching involved in lymph vessel morphogenesis +16.9548485,GO:0060866,http://purl.obolibrary.org/obo/GO_0060866,leaf abscission +16.9548485,GO:0060876,http://purl.obolibrary.org/obo/GO_0060876,semicircular canal formation +16.9548485,GO:0060903,http://purl.obolibrary.org/obo/GO_0060903,positive regulation of meiosis I +16.9548485,GO:0060926,http://purl.obolibrary.org/obo/GO_0060926,cardiac pacemaker cell development +16.9548485,GO:0060945,http://purl.obolibrary.org/obo/GO_0060945,cardiac neuron differentiation +16.9548485,GO:0060959,http://purl.obolibrary.org/obo/GO_0060959,cardiac neuron development +16.9548485,GO:0060965,http://purl.obolibrary.org/obo/GO_0060965,negative regulation of gene silencing by miRNA +16.9548485,GO:0060982,http://purl.obolibrary.org/obo/GO_0060982,coronary artery morphogenesis +16.9548485,GO:0060999,http://purl.obolibrary.org/obo/GO_0060999,positive regulation of dendritic spine development +16.9548485,GO:0061000,http://purl.obolibrary.org/obo/GO_0061000,negative regulation of dendritic spine development +16.9548485,GO:0061002,http://purl.obolibrary.org/obo/GO_0061002,negative regulation of dendritic spine morphogenesis +16.9548485,GO:0061003,http://purl.obolibrary.org/obo/GO_0061003,positive regulation of dendritic spine morphogenesis +16.9548485,GO:0061026,http://purl.obolibrary.org/obo/GO_0061026,cardiac muscle tissue regeneration +16.9548485,GO:0061027,http://purl.obolibrary.org/obo/GO_0061027,umbilical cord development +16.9548485,GO:0061064,http://purl.obolibrary.org/obo/GO_0061064,negative regulation of nematode larval development +16.9548485,GO:0061065,http://purl.obolibrary.org/obo/GO_0061065,regulation of dauer larval development +16.9548485,GO:0061070,http://purl.obolibrary.org/obo/GO_0061070,female urethra development +16.9548485,GO:0061078,http://purl.obolibrary.org/obo/GO_0061078,positive regulation of prostaglandin secretion involved in immune response +16.9548485,GO:0061087,http://purl.obolibrary.org/obo/GO_0061087,positive regulation of histone H3-K27 methylation +16.9548485,GO:0061091,http://purl.obolibrary.org/obo/GO_0061091,regulation of phospholipid translocation +16.9548485,GO:0061102,http://purl.obolibrary.org/obo/GO_0061102,stomach neuroendocrine cell differentiation +16.9548485,GO:0061110,http://purl.obolibrary.org/obo/GO_0061110,dense core granule biogenesis +16.9548485,GO:0061145,http://purl.obolibrary.org/obo/GO_0061145,lung smooth muscle development +16.9548485,GO:0061190,http://purl.obolibrary.org/obo/GO_0061190,regulation of sclerotome development +16.9548485,GO:0061262,http://purl.obolibrary.org/obo/GO_0061262,mesonephric renal vesicle formation +16.9548485,GO:0061318,http://purl.obolibrary.org/obo/GO_0061318,renal filtration cell differentiation +16.9548485,GO:0061319,http://purl.obolibrary.org/obo/GO_0061319,nephrocyte differentiation +16.9548485,GO:0061332,http://purl.obolibrary.org/obo/GO_0061332,Malpighian tubule bud morphogenesis +16.9548485,GO:0061360,http://purl.obolibrary.org/obo/GO_0061360,optic chiasma development +16.9548485,GO:0061365,http://purl.obolibrary.org/obo/GO_0061365,positive regulation of triglyceride lipase activity +16.9548485,GO:0061377,http://purl.obolibrary.org/obo/GO_0061377,mammary gland lobule development +16.9548485,GO:0061418,http://purl.obolibrary.org/obo/GO_0061418,regulation of transcription from RNA polymerase II promoter in response to hypoxia +16.9548485,GO:0061430,http://purl.obolibrary.org/obo/GO_0061430,bone trabecula morphogenesis +16.9548485,GO:0061467,http://purl.obolibrary.org/obo/GO_0061467,none +16.9548485,GO:0061468,http://purl.obolibrary.org/obo/GO_0061468,karyomere +16.9548485,GO:0061490,http://purl.obolibrary.org/obo/GO_0061490,none +16.9548485,GO:0061528,http://purl.obolibrary.org/obo/GO_0061528,aspartate secretion +16.9548485,GO:0061551,http://purl.obolibrary.org/obo/GO_0061551,trigeminal ganglion development +16.9548485,GO:0061559,http://purl.obolibrary.org/obo/GO_0061559,cranial ganglion morphogenesis +16.9548485,GO:0061561,http://purl.obolibrary.org/obo/GO_0061561,trigeminal ganglion formation +16.9548485,GO:0061566,http://purl.obolibrary.org/obo/GO_0061566,CMP phosphorylation +16.9548485,GO:0061567,http://purl.obolibrary.org/obo/GO_0061567,dCMP phosphorylation +16.9548485,GO:0061574,http://purl.obolibrary.org/obo/GO_0061574,ASAP complex +16.9548485,GO:0061575,http://purl.obolibrary.org/obo/GO_0061575,cyclin-dependent protein serine/threonine kinase activator activity +16.9548485,GO:0061578,http://purl.obolibrary.org/obo/GO_0061578,Lys63-specific deubiquitinase activity +16.9548485,GO:0061583,http://purl.obolibrary.org/obo/GO_0061583,colon epithelial cell chemotaxis +16.9548485,GO:0061609,http://purl.obolibrary.org/obo/GO_0061609,fructose-1-phosphate aldolase activity +16.9548485,GO:0061642,http://purl.obolibrary.org/obo/GO_0061642,chemoattraction of axon +16.9548485,GO:0061651,http://purl.obolibrary.org/obo/GO_0061651,Atg12 conjugating enzyme activity +16.9548485,GO:0061661,http://purl.obolibrary.org/obo/GO_0061661,FAT10 ligase activity +16.9548485,GO:0061662,http://purl.obolibrary.org/obo/GO_0061662,ISG15 ligase activity +16.9548485,GO:0061669,http://purl.obolibrary.org/obo/GO_0061669,spontaneous neurotransmitter secretion +16.9548485,GO:0061715,http://purl.obolibrary.org/obo/GO_0061715,miRNA 2'-O-methylation +16.9548485,GO:0061746,http://purl.obolibrary.org/obo/GO_0061746,none +16.9548485,GO:0065001,http://purl.obolibrary.org/obo/GO_0065001,specification of axis polarity +16.9548485,GO:0070036,http://purl.obolibrary.org/obo/GO_0070036,none +16.9548485,GO:0070096,http://purl.obolibrary.org/obo/GO_0070096,mitochondrial outer membrane translocase complex assembly +16.9548485,GO:0070104,http://purl.obolibrary.org/obo/GO_0070104,negative regulation of interleukin-6-mediated signaling pathway +16.9548485,GO:0070105,http://purl.obolibrary.org/obo/GO_0070105,positive regulation of interleukin-6-mediated signaling pathway +16.9548485,GO:0070130,http://purl.obolibrary.org/obo/GO_0070130,negative regulation of mitochondrial translation +16.9548485,GO:0070165,http://purl.obolibrary.org/obo/GO_0070165,positive regulation of adiponectin secretion +16.9548485,GO:0070219,http://purl.obolibrary.org/obo/GO_0070219,cellular sulfide ion homeostasis +16.9548485,GO:0070225,http://purl.obolibrary.org/obo/GO_0070225,sulfide dehydrogenase activity +16.9548485,GO:0070229,http://purl.obolibrary.org/obo/GO_0070229,negative regulation of lymphocyte apoptotic process +16.9548485,GO:0070230,http://purl.obolibrary.org/obo/GO_0070230,positive regulation of lymphocyte apoptotic process +16.9548485,GO:0070233,http://purl.obolibrary.org/obo/GO_0070233,negative regulation of T cell apoptotic process +16.9548485,GO:0070296,http://purl.obolibrary.org/obo/GO_0070296,sarcoplasmic reticulum calcium ion transport +16.9548485,GO:0070311,http://purl.obolibrary.org/obo/GO_0070311,nucleosomal methylation activator complex +16.9548485,GO:0070316,http://purl.obolibrary.org/obo/GO_0070316,regulation of G0 to G1 transition +16.9548485,GO:0070317,http://purl.obolibrary.org/obo/GO_0070317,negative regulation of G0 to G1 transition +16.9548485,GO:0070347,http://purl.obolibrary.org/obo/GO_0070347,regulation of brown fat cell proliferation +16.9548485,GO:0070368,http://purl.obolibrary.org/obo/GO_0070368,positive regulation of hepatocyte differentiation +16.9548485,GO:0070373,http://purl.obolibrary.org/obo/GO_0070373,negative regulation of ERK1 and ERK2 cascade +16.9548485,GO:0070374,http://purl.obolibrary.org/obo/GO_0070374,positive regulation of ERK1 and ERK2 cascade +16.9548485,GO:0070384,http://purl.obolibrary.org/obo/GO_0070384,Harderian gland development +16.9548485,GO:0070385,http://purl.obolibrary.org/obo/GO_0070385,egasyn-beta-glucuronidase complex +16.9548485,GO:0070442,http://purl.obolibrary.org/obo/GO_0070442,integrin alphaIIb-beta3 complex +16.9548485,GO:0070467,http://purl.obolibrary.org/obo/GO_0070467,RC-1 DNA recombination complex +16.9548485,GO:0070475,http://purl.obolibrary.org/obo/GO_0070475,rRNA base methylation +16.9548485,GO:0070516,http://purl.obolibrary.org/obo/GO_0070516,CAK-ERCC2 complex +16.9548485,GO:0070524,http://purl.obolibrary.org/obo/GO_0070524,11-beta-hydroxysteroid dehydrogenase (NADP+) activity +16.9548485,GO:0070544,http://purl.obolibrary.org/obo/GO_0070544,histone H3-K36 demethylation +16.9548485,GO:0070590,http://purl.obolibrary.org/obo/GO_0070590,spore wall biogenesis +16.9548485,GO:0070595,http://purl.obolibrary.org/obo/GO_0070595,(1->3)-alpha-glucan metabolic process +16.9548485,GO:0070596,http://purl.obolibrary.org/obo/GO_0070596,(1->3)-alpha-glucan biosynthetic process +16.9548485,GO:0070629,http://purl.obolibrary.org/obo/GO_0070629,(1->4)-alpha-glucan metabolic process +16.9548485,GO:0070635,http://purl.obolibrary.org/obo/GO_0070635,nicotinamide riboside hydrolase activity +16.9548485,GO:0070639,http://purl.obolibrary.org/obo/GO_0070639,vitamin D2 metabolic process +16.9548485,GO:0070645,http://purl.obolibrary.org/obo/GO_0070645,Ubisch body +16.9548485,GO:0070655,http://purl.obolibrary.org/obo/GO_0070655,mechanosensory epithelium regeneration +16.9548485,GO:0070657,http://purl.obolibrary.org/obo/GO_0070657,neuromast regeneration +16.9548485,GO:0070668,http://purl.obolibrary.org/obo/GO_0070668,positive regulation of mast cell proliferation +16.9548485,GO:0070674,http://purl.obolibrary.org/obo/GO_0070674,hypoxanthine dehydrogenase activity +16.9548485,GO:0070682,http://purl.obolibrary.org/obo/GO_0070682,proteasome regulatory particle assembly +16.9548485,GO:0070743,http://purl.obolibrary.org/obo/GO_0070743,interleukin-23 complex +16.9548485,GO:0070744,http://purl.obolibrary.org/obo/GO_0070744,interleukin-27 complex +16.9548485,GO:0070754,http://purl.obolibrary.org/obo/GO_0070754,regulation of interleukin-35 production +16.9548485,GO:0070762,http://purl.obolibrary.org/obo/GO_0070762,nuclear pore transmembrane ring +16.9548485,GO:0070774,http://purl.obolibrary.org/obo/GO_0070774,phytoceramidase activity +16.9548485,GO:0070776,http://purl.obolibrary.org/obo/GO_0070776,MOZ/MORF histone acetyltransferase complex +16.9548485,GO:0070780,http://purl.obolibrary.org/obo/GO_0070780,dihydrosphingosine-1-phosphate phosphatase activity +16.9548485,GO:0070782,http://purl.obolibrary.org/obo/GO_0070782,phosphatidylserine exposure on apoptotic cell surface +16.9548485,GO:0070785,http://purl.obolibrary.org/obo/GO_0070785,negative regulation of growth of unicellular organism as a thread of attached cells +16.9548485,GO:0070790,http://purl.obolibrary.org/obo/GO_0070790,phialide development +16.9548485,GO:0070796,http://purl.obolibrary.org/obo/GO_0070796,regulation of cleistothecium development +16.9548485,GO:0070820,http://purl.obolibrary.org/obo/GO_0070820,tertiary granule +16.9548485,GO:0070846,http://purl.obolibrary.org/obo/GO_0070846,Hsp90 deacetylation +16.9548485,GO:0070850,http://purl.obolibrary.org/obo/GO_0070850,TACC/TOG complex +16.9548485,GO:0070864,http://purl.obolibrary.org/obo/GO_0070864,sperm individualization complex +16.9548485,GO:0070875,http://purl.obolibrary.org/obo/GO_0070875,positive regulation of glycogen metabolic process +16.9548485,GO:0070930,http://purl.obolibrary.org/obo/GO_0070930,trans-translation-dependent protein tagging +16.9548485,GO:0070933,http://purl.obolibrary.org/obo/GO_0070933,histone H4 deacetylation +16.9548485,GO:0070985,http://purl.obolibrary.org/obo/GO_0070985,transcription factor TFIIK complex +16.9548485,GO:0070998,http://purl.obolibrary.org/obo/GO_0070998,sensory perception of gravity +16.9548485,GO:0071085,http://purl.obolibrary.org/obo/GO_0071085,alphaIIb-beta3 integrin-CD9 complex +16.9548485,GO:0071151,http://purl.obolibrary.org/obo/GO_0071151,none +16.9548485,GO:0071157,http://purl.obolibrary.org/obo/GO_0071157,none +16.9548485,GO:0071172,http://purl.obolibrary.org/obo/GO_0071172,dihydromonapterin reductase activity +16.9548485,GO:0071221,http://purl.obolibrary.org/obo/GO_0071221,cellular response to bacterial lipopeptide +16.9548485,GO:0071247,http://purl.obolibrary.org/obo/GO_0071247,cellular response to chromate +16.9548485,GO:0071250,http://purl.obolibrary.org/obo/GO_0071250,cellular response to nitrite +16.9548485,GO:0071261,http://purl.obolibrary.org/obo/GO_0071261,Ssh1 translocon complex +16.9548485,GO:0071262,http://purl.obolibrary.org/obo/GO_0071262,regulation of translational initiation in response to starvation +16.9548485,GO:0071267,http://purl.obolibrary.org/obo/GO_0071267,L-methionine salvage +16.9548485,GO:0071273,http://purl.obolibrary.org/obo/GO_0071273,morphine catabolic process +16.9548485,GO:0071274,http://purl.obolibrary.org/obo/GO_0071274,isoquinoline alkaloid catabolic process +16.9548485,GO:0071277,http://purl.obolibrary.org/obo/GO_0071277,cellular response to calcium ion +16.9548485,GO:0071288,http://purl.obolibrary.org/obo/GO_0071288,cellular response to mercury ion +16.9548485,GO:0071301,http://purl.obolibrary.org/obo/GO_0071301,cellular response to vitamin B1 +16.9548485,GO:0071313,http://purl.obolibrary.org/obo/GO_0071313,cellular response to caffeine +16.9548485,GO:0071353,http://purl.obolibrary.org/obo/GO_0071353,cellular response to interleukin-4 +16.9548485,GO:0071392,http://purl.obolibrary.org/obo/GO_0071392,cellular response to estradiol stimulus +16.9548485,GO:0071400,http://purl.obolibrary.org/obo/GO_0071400,cellular response to oleic acid +16.9548485,GO:0071405,http://purl.obolibrary.org/obo/GO_0071405,cellular response to methanol +16.9548485,GO:0071411,http://purl.obolibrary.org/obo/GO_0071411,cellular response to fluoxetine +16.9548485,GO:0071412,http://purl.obolibrary.org/obo/GO_0071412,cellular response to genistein +16.9548485,GO:0071413,http://purl.obolibrary.org/obo/GO_0071413,cellular response to hydroxyisoflavone +16.9548485,GO:0071415,http://purl.obolibrary.org/obo/GO_0071415,cellular response to purine-containing compound +16.9548485,GO:0071421,http://purl.obolibrary.org/obo/GO_0071421,manganese ion transmembrane transport +16.9548485,GO:0071447,http://purl.obolibrary.org/obo/GO_0071447,cellular response to hydroperoxide +16.9548485,GO:0071448,http://purl.obolibrary.org/obo/GO_0071448,cellular response to alkyl hydroperoxide +16.9548485,GO:0071452,http://purl.obolibrary.org/obo/GO_0071452,cellular response to singlet oxygen +16.9548485,GO:0071461,http://purl.obolibrary.org/obo/GO_0071461,cellular response to redox state +16.9548485,GO:0071465,http://purl.obolibrary.org/obo/GO_0071465,cellular response to desiccation +16.9548485,GO:0071466,http://purl.obolibrary.org/obo/GO_0071466,cellular response to xenobiotic stimulus +16.9548485,GO:0071469,http://purl.obolibrary.org/obo/GO_0071469,cellular response to alkaline pH +16.9548485,GO:0071490,http://purl.obolibrary.org/obo/GO_0071490,cellular response to far red light +16.9548485,GO:0071494,http://purl.obolibrary.org/obo/GO_0071494,cellular response to UV-C +16.9548485,GO:0071522,http://purl.obolibrary.org/obo/GO_0071522,ureidoglycine aminohydrolase activity +16.9548485,GO:0071560,http://purl.obolibrary.org/obo/GO_0071560,cellular response to transforming growth factor beta stimulus +16.9548485,GO:0071595,http://purl.obolibrary.org/obo/GO_0071595,Nem1-Spo7 phosphatase complex +16.9548485,GO:0071606,http://purl.obolibrary.org/obo/GO_0071606,chemokine (C-C motif) ligand 4 production +16.9548485,GO:0071610,http://purl.obolibrary.org/obo/GO_0071610,chemokine (C-C motif) ligand 1 production +16.9548485,GO:0071623,http://purl.obolibrary.org/obo/GO_0071623,negative regulation of granulocyte chemotaxis +16.9548485,GO:0071658,http://purl.obolibrary.org/obo/GO_0071658,regulation of IP-10 production +16.9548485,GO:0071671,http://purl.obolibrary.org/obo/GO_0071671,regulation of smooth muscle cell chemotaxis +16.9548485,GO:0071679,http://purl.obolibrary.org/obo/GO_0071679,commissural neuron axon guidance +16.9548485,GO:0071686,http://purl.obolibrary.org/obo/GO_0071686,none +16.9548485,GO:0071730,http://purl.obolibrary.org/obo/GO_0071730,beak formation +16.9548485,GO:0071755,http://purl.obolibrary.org/obo/GO_0071755,IgM B cell receptor complex +16.9548485,GO:0071862,http://purl.obolibrary.org/obo/GO_0071862,none +16.9548485,GO:0071896,http://purl.obolibrary.org/obo/GO_0071896,protein localization to adherens junction +16.9548485,GO:0071911,http://purl.obolibrary.org/obo/GO_0071911,synchronous neurotransmitter secretion +16.9548485,GO:0071918,http://purl.obolibrary.org/obo/GO_0071918,urea transmembrane transport +16.9548485,GO:0071919,http://purl.obolibrary.org/obo/GO_0071919,G-quadruplex DNA formation +16.9548485,GO:0071927,http://purl.obolibrary.org/obo/GO_0071927,octopamine signaling pathway +16.9548485,GO:0071948,http://purl.obolibrary.org/obo/GO_0071948,activation-induced B cell apoptotic process +16.9548485,GO:0071955,http://purl.obolibrary.org/obo/GO_0071955,recycling endosome to Golgi transport +16.9548485,GO:0071985,http://purl.obolibrary.org/obo/GO_0071985,multivesicular body sorting pathway +16.9548485,GO:0071988,http://purl.obolibrary.org/obo/GO_0071988,protein localization to spindle pole body +16.9548485,GO:0071994,http://purl.obolibrary.org/obo/GO_0071994,phytochelatin transmembrane transport +16.9548485,GO:0071995,http://purl.obolibrary.org/obo/GO_0071995,phytochelatin import into vacuole +16.9548485,GO:0072003,http://purl.obolibrary.org/obo/GO_0072003,kidney rudiment formation +16.9548485,GO:0072010,http://purl.obolibrary.org/obo/GO_0072010,glomerular epithelium development +16.9548485,GO:0072044,http://purl.obolibrary.org/obo/GO_0072044,collecting duct development +16.9548485,GO:0072093,http://purl.obolibrary.org/obo/GO_0072093,metanephric renal vesicle formation +16.9548485,GO:0072105,http://purl.obolibrary.org/obo/GO_0072105,ureteric peristalsis +16.9548485,GO:0072116,http://purl.obolibrary.org/obo/GO_0072116,pronephros formation +16.9548485,GO:0072124,http://purl.obolibrary.org/obo/GO_0072124,regulation of glomerular mesangial cell proliferation +16.9548485,GO:0072131,http://purl.obolibrary.org/obo/GO_0072131,kidney mesenchyme morphogenesis +16.9548485,GO:0072133,http://purl.obolibrary.org/obo/GO_0072133,metanephric mesenchyme morphogenesis +16.9548485,GO:0072142,http://purl.obolibrary.org/obo/GO_0072142,juxtaglomerulus cell development +16.9548485,GO:0072172,http://purl.obolibrary.org/obo/GO_0072172,mesonephric tubule formation +16.9548485,GO:0072177,http://purl.obolibrary.org/obo/GO_0072177,mesonephric duct development +16.9548485,GO:0072179,http://purl.obolibrary.org/obo/GO_0072179,nephric duct formation +16.9548485,GO:0072191,http://purl.obolibrary.org/obo/GO_0072191,ureter smooth muscle development +16.9548485,GO:0072311,http://purl.obolibrary.org/obo/GO_0072311,glomerular epithelial cell differentiation +16.9548485,GO:0072345,http://purl.obolibrary.org/obo/GO_0072345,NAADP-sensitive calcium-release channel activity +16.9548485,GO:0072355,http://purl.obolibrary.org/obo/GO_0072355,histone H3-T3 phosphorylation +16.9548485,GO:0072359,http://purl.obolibrary.org/obo/GO_0072359,circulatory system development +16.9548485,GO:0072370,http://purl.obolibrary.org/obo/GO_0072370,histone H2A-S121 phosphorylation +16.9548485,GO:0072395,http://purl.obolibrary.org/obo/GO_0072395,none +16.9548485,GO:0072508,http://purl.obolibrary.org/obo/GO_0072508,trivalent inorganic cation homeostasis +16.9548485,GO:0072530,http://purl.obolibrary.org/obo/GO_0072530,purine-containing compound transmembrane transport +16.9548485,GO:0072543,http://purl.obolibrary.org/obo/GO_0072543,none +16.9548485,GO:0072554,http://purl.obolibrary.org/obo/GO_0072554,blood vessel lumenization +16.9548485,GO:0072557,http://purl.obolibrary.org/obo/GO_0072557,IPAF inflammasome complex +16.9548485,GO:0072599,http://purl.obolibrary.org/obo/GO_0072599,establishment of protein localization to endoplasmic reticulum +16.9548485,GO:0072632,http://purl.obolibrary.org/obo/GO_0072632,none +16.9548485,GO:0072635,http://purl.obolibrary.org/obo/GO_0072635,interleukin-31 production +16.9548485,GO:0072639,http://purl.obolibrary.org/obo/GO_0072639,interleukin-33 production +16.9548485,GO:0072646,http://purl.obolibrary.org/obo/GO_0072646,none +16.9548485,GO:0072695,http://purl.obolibrary.org/obo/GO_0072695,regulation of DNA recombination at telomere +16.9548485,GO:0072722,http://purl.obolibrary.org/obo/GO_0072722,response to amitrole +16.9548485,GO:0072734,http://purl.obolibrary.org/obo/GO_0072734,cellular response to staurosporine +16.9548485,GO:0072736,http://purl.obolibrary.org/obo/GO_0072736,cellular response to tert-butyl hydroperoxide +16.9548485,GO:0072738,http://purl.obolibrary.org/obo/GO_0072738,cellular response to diamide +16.9548485,GO:0072742,http://purl.obolibrary.org/obo/GO_0072742,SAGA complex localization to transcription regulatory region +16.9548485,GO:0072746,http://purl.obolibrary.org/obo/GO_0072746,cellular response to tetracycline +16.9548485,GO:0072749,http://purl.obolibrary.org/obo/GO_0072749,cellular response to cytochalasin B +16.9548485,GO:0072759,http://purl.obolibrary.org/obo/GO_0072759,cellular response to topoisomerase inhibitor +16.9548485,GO:0075262,http://purl.obolibrary.org/obo/GO_0075262,negative regulation of spore-bearing organ development +16.9548485,GO:0075267,http://purl.obolibrary.org/obo/GO_0075267,aecium development +16.9548485,GO:0075279,http://purl.obolibrary.org/obo/GO_0075279,uredinium development +16.9548485,GO:0075313,http://purl.obolibrary.org/obo/GO_0075313,basidium development +16.9548485,GO:0075318,http://purl.obolibrary.org/obo/GO_0075318,regulation of ascus development +16.9548485,GO:0080041,http://purl.obolibrary.org/obo/GO_0080041,ADP-ribose pyrophosphohydrolase activity +16.9548485,GO:0080043,http://purl.obolibrary.org/obo/GO_0080043,quercetin 3-O-glucosyltransferase activity +16.9548485,GO:0080045,http://purl.obolibrary.org/obo/GO_0080045,quercetin 3'-O-glucosyltransferase activity +16.9548485,GO:0080048,http://purl.obolibrary.org/obo/GO_0080048,GDP-D-glucose phosphorylase activity +16.9548485,GO:0080049,http://purl.obolibrary.org/obo/GO_0080049,"L-gulono-1,4-lactone dehydrogenase activity" +16.9548485,GO:0080081,http://purl.obolibrary.org/obo/GO_0080081,4-methylumbelliferyl-beta-D-glucopyranoside beta-glucosidase activity +16.9548485,GO:0080100,http://purl.obolibrary.org/obo/GO_0080100,L-glutamine:2-oxoglutarate aminotransferase activity +16.9548485,GO:0080130,http://purl.obolibrary.org/obo/GO_0080130,L-phenylalanine:2-oxoglutarate aminotransferase activity +16.9548485,GO:0080133,http://purl.obolibrary.org/obo/GO_0080133,midchain alkane hydroxylase activity +16.9548485,GO:0080142,http://purl.obolibrary.org/obo/GO_0080142,regulation of salicylic acid biosynthetic process +16.9548485,GO:0080143,http://purl.obolibrary.org/obo/GO_0080143,regulation of amino acid export +16.9548485,GO:0080150,http://purl.obolibrary.org/obo/GO_0080150,S-adenosyl-L-methionine:benzoic acid carboxyl methyl transferase activity +16.9548485,GO:0080159,http://purl.obolibrary.org/obo/GO_0080159,zygote elongation +16.9548485,GO:0080170,http://purl.obolibrary.org/obo/GO_0080170,hydrogen peroxide transmembrane transport +16.9548485,GO:0080171,http://purl.obolibrary.org/obo/GO_0080171,lytic vacuole organization +16.9548485,GO:0086004,http://purl.obolibrary.org/obo/GO_0086004,regulation of cardiac muscle cell contraction +16.9548485,GO:0086042,http://purl.obolibrary.org/obo/GO_0086042,cardiac muscle cell-cardiac muscle cell adhesion +16.9548485,GO:0090016,http://purl.obolibrary.org/obo/GO_0090016,regulation of leaflet formation +16.9548485,GO:0090017,http://purl.obolibrary.org/obo/GO_0090017,anterior neural plate formation +16.9548485,GO:0090018,http://purl.obolibrary.org/obo/GO_0090018,posterior neural plate formation +16.9548485,GO:0090024,http://purl.obolibrary.org/obo/GO_0090024,negative regulation of neutrophil chemotaxis +16.9548485,GO:0090026,http://purl.obolibrary.org/obo/GO_0090026,positive regulation of monocyte chemotaxis +16.9548485,GO:0090031,http://purl.obolibrary.org/obo/GO_0090031,positive regulation of steroid hormone biosynthetic process +16.9548485,GO:0090058,http://purl.obolibrary.org/obo/GO_0090058,metaxylem development +16.9548485,GO:0090064,http://purl.obolibrary.org/obo/GO_0090064,activation of microtubule nucleation +16.9548485,GO:0090070,http://purl.obolibrary.org/obo/GO_0090070,positive regulation of ribosome biogenesis +16.9548485,GO:0090100,http://purl.obolibrary.org/obo/GO_0090100,positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway +16.9548485,GO:0090103,http://purl.obolibrary.org/obo/GO_0090103,cochlea morphogenesis +16.9548485,GO:0090119,http://purl.obolibrary.org/obo/GO_0090119,vesicle-mediated cholesterol transport +16.9548485,GO:0090120,http://purl.obolibrary.org/obo/GO_0090120,lysosome to ER cholesterol transport +16.9548485,GO:0090124,http://purl.obolibrary.org/obo/GO_0090124,N-4 methylation of cytosine +16.9548485,GO:0090128,http://purl.obolibrary.org/obo/GO_0090128,regulation of synapse maturation +16.9548485,GO:0090139,http://purl.obolibrary.org/obo/GO_0090139,mitochondrial DNA packaging +16.9548485,GO:0090148,http://purl.obolibrary.org/obo/GO_0090148,membrane fission +16.9548485,GO:0090185,http://purl.obolibrary.org/obo/GO_0090185,negative regulation of kidney development +16.9548485,GO:0090197,http://purl.obolibrary.org/obo/GO_0090197,none +16.9548485,GO:0090198,http://purl.obolibrary.org/obo/GO_0090198,none +16.9548485,GO:0090204,http://purl.obolibrary.org/obo/GO_0090204,protein localization to nuclear pore +16.9548485,GO:0090205,http://purl.obolibrary.org/obo/GO_0090205,positive regulation of cholesterol metabolic process +16.9548485,GO:0090221,http://purl.obolibrary.org/obo/GO_0090221,mitotic spindle-templated microtubule nucleation +16.9548485,GO:0090258,http://purl.obolibrary.org/obo/GO_0090258,negative regulation of mitochondrial fission +16.9548485,GO:0090261,http://purl.obolibrary.org/obo/GO_0090261,positive regulation of inclusion body assembly +16.9548485,GO:0090262,http://purl.obolibrary.org/obo/GO_0090262,regulation of transcription-coupled nucleotide-excision repair +16.9548485,GO:0090293,http://purl.obolibrary.org/obo/GO_0090293,nitrogen catabolite regulation of transcription +16.9548485,GO:0090295,http://purl.obolibrary.org/obo/GO_0090295,nitrogen catabolite repression of transcription +16.9548485,GO:0090324,http://purl.obolibrary.org/obo/GO_0090324,negative regulation of oxidative phosphorylation +16.9548485,GO:0090336,http://purl.obolibrary.org/obo/GO_0090336,positive regulation of brown fat cell differentiation +16.9548485,GO:0090364,http://purl.obolibrary.org/obo/GO_0090364,regulation of proteasome assembly +16.9548485,GO:0090369,http://purl.obolibrary.org/obo/GO_0090369,ornithine carbamoyltransferase inhibitor activity +16.9548485,GO:0090370,http://purl.obolibrary.org/obo/GO_0090370,negative regulation of cholesterol efflux +16.9548485,GO:0090428,http://purl.obolibrary.org/obo/GO_0090428,perianth development +16.9548485,GO:0090435,http://purl.obolibrary.org/obo/GO_0090435,protein localization to nuclear envelope +16.9548485,GO:0090487,http://purl.obolibrary.org/obo/GO_0090487,secondary metabolite catabolic process +16.9548485,GO:0090501,http://purl.obolibrary.org/obo/GO_0090501,RNA phosphodiester bond hydrolysis +16.9548485,GO:0090550,http://purl.obolibrary.org/obo/GO_0090550,response to molybdenum starvation +16.9548485,GO:0090551,http://purl.obolibrary.org/obo/GO_0090551,response to manganese starvation +16.9548485,GO:0090556,http://purl.obolibrary.org/obo/GO_0090556,phosphatidylserine floppase activity +16.9548485,GO:0090592,http://purl.obolibrary.org/obo/GO_0090592,DNA synthesis involved in DNA replication +16.9548485,GO:0090600,http://purl.obolibrary.org/obo/GO_0090600,"alpha-1,3-glucosidase activity" +16.9548485,GO:0090604,http://purl.obolibrary.org/obo/GO_0090604,surface biofilm formation +16.9548485,GO:0090612,http://purl.obolibrary.org/obo/GO_0090612,cAMP deaminase activity +16.9548485,GO:0090616,http://purl.obolibrary.org/obo/GO_0090616,mitochondrial mRNA 3'-end processing +16.9548485,GO:0090637,http://purl.obolibrary.org/obo/GO_0090637,inner dense plaque of desmosome +16.9548485,GO:0090647,http://purl.obolibrary.org/obo/GO_0090647,modulation of age-related behavioral decline +16.9548485,GO:0090670,http://purl.obolibrary.org/obo/GO_0090670,RNA localization to Cajal body +16.9548485,GO:0090671,http://purl.obolibrary.org/obo/GO_0090671,telomerase RNA localization to Cajal body +16.9548485,GO:0090685,http://purl.obolibrary.org/obo/GO_0090685,RNA localization to nucleus +16.9548485,GO:0097010,http://purl.obolibrary.org/obo/GO_0097010,eukaryotic translation initiation factor 4F complex assembly +16.9548485,GO:0097032,http://purl.obolibrary.org/obo/GO_0097032,none +16.9548485,GO:0097033,http://purl.obolibrary.org/obo/GO_0097033,none +16.9548485,GO:0097040,http://purl.obolibrary.org/obo/GO_0097040,phthiocerol biosynthetic process +16.9548485,GO:0097041,http://purl.obolibrary.org/obo/GO_0097041,phenolic phthiocerol biosynthetic process +16.9548485,GO:0097052,http://purl.obolibrary.org/obo/GO_0097052,L-kynurenine metabolic process +16.9548485,GO:0097062,http://purl.obolibrary.org/obo/GO_0097062,dendritic spine maintenance +16.9548485,GO:0097075,http://purl.obolibrary.org/obo/GO_0097075,interferon regulatory factor 3-interferon regulatory factor 7 complex +16.9548485,GO:0097091,http://purl.obolibrary.org/obo/GO_0097091,synaptic vesicle clustering +16.9548485,GO:0097095,http://purl.obolibrary.org/obo/GO_0097095,frontonasal suture morphogenesis +16.9548485,GO:0097104,http://purl.obolibrary.org/obo/GO_0097104,postsynaptic membrane assembly +16.9548485,GO:0097123,http://purl.obolibrary.org/obo/GO_0097123,cyclin A1-CDK2 complex +16.9548485,GO:0097132,http://purl.obolibrary.org/obo/GO_0097132,cyclin D2-CDK6 complex +16.9548485,GO:0097134,http://purl.obolibrary.org/obo/GO_0097134,cyclin E1-CDK2 complex +16.9548485,GO:0097138,http://purl.obolibrary.org/obo/GO_0097138,BAD-BCL-2 complex +16.9548485,GO:0097167,http://purl.obolibrary.org/obo/GO_0097167,circadian regulation of translation +16.9548485,GO:0097188,http://purl.obolibrary.org/obo/GO_0097188,dentin mineralization +16.9548485,GO:0097195,http://purl.obolibrary.org/obo/GO_0097195,pilomotor reflex +16.9548485,GO:0097198,http://purl.obolibrary.org/obo/GO_0097198,histone H3-K36 trimethylation +16.9548485,GO:0097222,http://purl.obolibrary.org/obo/GO_0097222,mitochondrial mRNA polyadenylation +16.9548485,GO:0097231,http://purl.obolibrary.org/obo/GO_0097231,cell motility in response to calcium ion +16.9548485,GO:0097242,http://purl.obolibrary.org/obo/GO_0097242,amyloid-beta clearance +16.9548485,GO:0097250,http://purl.obolibrary.org/obo/GO_0097250,mitochondrial respirasome assembly +16.9548485,GO:0097275,http://purl.obolibrary.org/obo/GO_0097275,cellular ammonium homeostasis +16.9548485,GO:0097283,http://purl.obolibrary.org/obo/GO_0097283,keratinocyte apoptotic process +16.9548485,GO:0097292,http://purl.obolibrary.org/obo/GO_0097292,XMP metabolic process +16.9548485,GO:0097293,http://purl.obolibrary.org/obo/GO_0097293,XMP biosynthetic process +16.9548485,GO:0097308,http://purl.obolibrary.org/obo/GO_0097308,cellular response to farnesol +16.9548485,GO:0097319,http://purl.obolibrary.org/obo/GO_0097319,none +16.9548485,GO:0097376,http://purl.obolibrary.org/obo/GO_0097376,interneuron axon guidance +16.9548485,GO:0097392,http://purl.obolibrary.org/obo/GO_0097392,chemokine (C-X-C motif) ligand 16 production +16.9548485,GO:0097395,http://purl.obolibrary.org/obo/GO_0097395,response to interleukin-32 +16.9548485,GO:0097407,http://purl.obolibrary.org/obo/GO_0097407,Bunina body +16.9548485,GO:0097415,http://purl.obolibrary.org/obo/GO_0097415,cortical Lewy body +16.9548485,GO:0097432,http://purl.obolibrary.org/obo/GO_0097432,hippocampal pyramidal neuron differentiation +16.9548485,GO:0097436,http://purl.obolibrary.org/obo/GO_0097436,entry into dormancy +16.9548485,GO:0097495,http://purl.obolibrary.org/obo/GO_0097495,H-NS-Hha complex +16.9548485,GO:0097499,http://purl.obolibrary.org/obo/GO_0097499,protein localization to non-motile cilium +16.9548485,GO:0097525,http://purl.obolibrary.org/obo/GO_0097525,spliceosomal snRNP complex +16.9548485,GO:0097538,http://purl.obolibrary.org/obo/GO_0097538,ciliary necklace +16.9548485,GO:0097605,http://purl.obolibrary.org/obo/GO_0097605,none +16.9548485,GO:0097620,http://purl.obolibrary.org/obo/GO_0097620,(R)-mandelate dehydrogenase activity +16.9548485,GO:0097657,http://purl.obolibrary.org/obo/GO_0097657,"3',5'-nucleotide bisphosphate phosphatase activity" +16.9548485,GO:0097669,http://purl.obolibrary.org/obo/GO_0097669,SCF-Skp2 ubiquitin ligase complex +16.9548485,GO:0097679,http://purl.obolibrary.org/obo/GO_0097679,none +16.9548485,GO:0097730,http://purl.obolibrary.org/obo/GO_0097730,non-motile cilium +16.9548485,GO:0097732,http://purl.obolibrary.org/obo/GO_0097732,9+2 non-motile cilium +16.9548485,GO:0098501,http://purl.obolibrary.org/obo/GO_0098501,polynucleotide dephosphorylation +16.9548485,GO:0098502,http://purl.obolibrary.org/obo/GO_0098502,DNA dephosphorylation +16.9548485,GO:0098521,http://purl.obolibrary.org/obo/GO_0098521,inhibitory neuromuscular junction +16.9548485,GO:0098536,http://purl.obolibrary.org/obo/GO_0098536,deuterosome +16.9548485,GO:0098543,http://purl.obolibrary.org/obo/GO_0098543,detection of other organism +16.9548485,GO:0098554,http://purl.obolibrary.org/obo/GO_0098554,cytoplasmic side of endoplasmic reticulum membrane +16.9548485,GO:0098563,http://purl.obolibrary.org/obo/GO_0098563,intrinsic component of synaptic vesicle membrane +16.9548485,GO:0098576,http://purl.obolibrary.org/obo/GO_0098576,lumenal side of membrane +16.9548485,GO:0098653,http://purl.obolibrary.org/obo/GO_0098653,centromere clustering +16.9548485,GO:0098654,http://purl.obolibrary.org/obo/GO_0098654,CENP-A recruiting complex +16.9548485,GO:0098700,http://purl.obolibrary.org/obo/GO_0098700,neurotransmitter loading into synaptic vesicle +16.9548485,GO:0098704,http://purl.obolibrary.org/obo/GO_0098704,carbohydrate import across plasma membrane +16.9548485,GO:0098708,http://purl.obolibrary.org/obo/GO_0098708,glucose import across plasma membrane +16.9548485,GO:0098723,http://purl.obolibrary.org/obo/GO_0098723,skeletal muscle myofibril +16.9548485,GO:0098745,http://purl.obolibrary.org/obo/GO_0098745,Dcp1-Dcp2 complex +16.9548485,GO:0098757,http://purl.obolibrary.org/obo/GO_0098757,cellular response to interleukin-21 +16.9548485,GO:0098759,http://purl.obolibrary.org/obo/GO_0098759,cellular response to interleukin-8 +16.9548485,GO:0098768,http://purl.obolibrary.org/obo/GO_0098768,meiotic prometaphase I +16.9548485,GO:0098775,http://purl.obolibrary.org/obo/GO_0098775,curli assembly +16.9548485,GO:0098815,http://purl.obolibrary.org/obo/GO_0098815,modulation of excitatory postsynaptic potential +16.9548485,GO:0098845,http://purl.obolibrary.org/obo/GO_0098845,postsynaptic endosome +16.9548485,GO:0098846,http://purl.obolibrary.org/obo/GO_0098846,podocyte foot +16.9548485,GO:0098848,http://purl.obolibrary.org/obo/GO_0098848,alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase activity +16.9548485,GO:0099046,http://purl.obolibrary.org/obo/GO_0099046,clearance of foreign intracellular nucleic acids +16.9548485,GO:0099120,http://purl.obolibrary.org/obo/GO_0099120,socially cooperative development +16.9548485,GO:0099544,http://purl.obolibrary.org/obo/GO_0099544,perisynaptic space +16.9548485,GO:0099605,http://purl.obolibrary.org/obo/GO_0099605,regulation of action potential firing rate +16.9548485,GO:0106120,http://purl.obolibrary.org/obo/GO_0106120,positive regulation of sterol biosynthetic process +16.9548485,GO:0110112,http://purl.obolibrary.org/obo/GO_0110112,regulation of lipid transporter activity +16.9548485,GO:0120014,http://purl.obolibrary.org/obo/GO_0120014,phospholipid transfer activity +16.9548485,GO:0120082,http://purl.obolibrary.org/obo/GO_0120082,smooth endoplasmic reticulum cisterna +16.9548485,GO:0120127,http://purl.obolibrary.org/obo/GO_0120127,response to zinc ion starvation +16.9548485,GO:0140328,http://purl.obolibrary.org/obo/GO_0140328,floppase activity +16.9548485,GO:0140597,http://purl.obolibrary.org/obo/GO_0140597,protein carrier chaperone +16.9548485,GO:0150118,http://purl.obolibrary.org/obo/GO_0150118,negative regulation of cell-substrate junction organization +16.9548485,GO:1900006,http://purl.obolibrary.org/obo/GO_1900006,positive regulation of dendrite development +16.9548485,GO:1900024,http://purl.obolibrary.org/obo/GO_1900024,regulation of substrate adhesion-dependent cell spreading +16.9548485,GO:1900029,http://purl.obolibrary.org/obo/GO_1900029,positive regulation of ruffle assembly +16.9548485,GO:1900032,http://purl.obolibrary.org/obo/GO_1900032,regulation of trichome patterning +16.9548485,GO:1900034,http://purl.obolibrary.org/obo/GO_1900034,regulation of cellular response to heat +16.9548485,GO:1900049,http://purl.obolibrary.org/obo/GO_1900049,regulation of histone exchange +16.9548485,GO:1900059,http://purl.obolibrary.org/obo/GO_1900059,positive regulation of sulfate assimilation +16.9548485,GO:1900065,http://purl.obolibrary.org/obo/GO_1900065,regulation of ethanol catabolic process +16.9548485,GO:1900076,http://purl.obolibrary.org/obo/GO_1900076,regulation of cellular response to insulin stimulus +16.9548485,GO:1900084,http://purl.obolibrary.org/obo/GO_1900084,regulation of peptidyl-tyrosine autophosphorylation +16.9548485,GO:1900085,http://purl.obolibrary.org/obo/GO_1900085,negative regulation of peptidyl-tyrosine autophosphorylation +16.9548485,GO:1900113,http://purl.obolibrary.org/obo/GO_1900113,negative regulation of histone H3-K9 trimethylation +16.9548485,GO:1900114,http://purl.obolibrary.org/obo/GO_1900114,positive regulation of histone H3-K9 trimethylation +16.9548485,GO:1900115,http://purl.obolibrary.org/obo/GO_1900115,extracellular regulation of signal transduction +16.9548485,GO:1900122,http://purl.obolibrary.org/obo/GO_1900122,positive regulation of receptor binding +16.9548485,GO:1900131,http://purl.obolibrary.org/obo/GO_1900131,negative regulation of lipid binding +16.9548485,GO:1900151,http://purl.obolibrary.org/obo/GO_1900151,"regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay" +16.9548485,GO:1900161,http://purl.obolibrary.org/obo/GO_1900161,regulation of phospholipid scramblase activity +16.9548485,GO:1900166,http://purl.obolibrary.org/obo/GO_1900166,regulation of glial cell-derived neurotrophic factor production +16.9548485,GO:1900179,http://purl.obolibrary.org/obo/GO_1900179,positive regulation of aflatoxin biosynthetic process +16.9548485,GO:1900195,http://purl.obolibrary.org/obo/GO_1900195,positive regulation of oocyte maturation +16.9548485,GO:1900197,http://purl.obolibrary.org/obo/GO_1900197,negative regulation of penicillin biosynthetic process +16.9548485,GO:1900209,http://purl.obolibrary.org/obo/GO_1900209,negative regulation of cardiolipin metabolic process +16.9548485,GO:1900243,http://purl.obolibrary.org/obo/GO_1900243,negative regulation of synaptic vesicle endocytosis +16.9548485,GO:1900269,http://purl.obolibrary.org/obo/GO_1900269,negative regulation of reverse transcription +16.9548485,GO:1900429,http://purl.obolibrary.org/obo/GO_1900429,negative regulation of filamentous growth of a population of unicellular organisms +16.9548485,GO:1900452,http://purl.obolibrary.org/obo/GO_1900452,regulation of long-term synaptic depression +16.9548485,GO:1900454,http://purl.obolibrary.org/obo/GO_1900454,positive regulation of long-term synaptic depression +16.9548485,GO:1900480,http://purl.obolibrary.org/obo/GO_1900480,regulation of diacylglycerol biosynthetic process +16.9548485,GO:1900481,http://purl.obolibrary.org/obo/GO_1900481,negative regulation of diacylglycerol biosynthetic process +16.9548485,GO:1900506,http://purl.obolibrary.org/obo/GO_1900506,regulation of iron-sulfur-molybdenum cofactor assembly +16.9548485,GO:1900507,http://purl.obolibrary.org/obo/GO_1900507,negative regulation of iron-sulfur-molybdenum cofactor assembly +16.9548485,GO:1900555,http://purl.obolibrary.org/obo/GO_1900555,emericellamide metabolic process +16.9548485,GO:1900557,http://purl.obolibrary.org/obo/GO_1900557,emericellamide biosynthetic process +16.9548485,GO:1900558,http://purl.obolibrary.org/obo/GO_1900558,austinol metabolic process +16.9548485,GO:1900560,http://purl.obolibrary.org/obo/GO_1900560,austinol biosynthetic process +16.9548485,GO:1900561,http://purl.obolibrary.org/obo/GO_1900561,dehydroaustinol metabolic process +16.9548485,GO:1900563,http://purl.obolibrary.org/obo/GO_1900563,dehydroaustinol biosynthetic process +16.9548485,GO:1900573,http://purl.obolibrary.org/obo/GO_1900573,emodin metabolic process +16.9548485,GO:1900635,http://purl.obolibrary.org/obo/GO_1900635,heptadecane metabolic process +16.9548485,GO:1900684,http://purl.obolibrary.org/obo/GO_1900684,negative regulation of fumonisin biosynthetic process +16.9548485,GO:1900685,http://purl.obolibrary.org/obo/GO_1900685,positive regulation of fumonisin biosynthetic process +16.9548485,GO:1900689,http://purl.obolibrary.org/obo/GO_1900689,regulation of gliotoxin biosynthetic process +16.9548485,GO:1900706,http://purl.obolibrary.org/obo/GO_1900706,positive regulation of siderophore biosynthetic process +16.9548485,GO:1900719,http://purl.obolibrary.org/obo/GO_1900719,regulation of uterine smooth muscle relaxation +16.9548485,GO:1900733,http://purl.obolibrary.org/obo/GO_1900733,negative regulation of polyketide biosynthetic process +16.9548485,GO:1900744,http://purl.obolibrary.org/obo/GO_1900744,regulation of p38MAPK cascade +16.9548485,GO:1900754,http://purl.obolibrary.org/obo/GO_1900754,4-hydroxyphenylacetate transport +16.9548485,GO:1900760,http://purl.obolibrary.org/obo/GO_1900760,negative regulation of sterigmatocystin biosynthetic process +16.9548485,GO:1900824,http://purl.obolibrary.org/obo/GO_1900824,positive regulation of ergot alkaloid biosynthetic process +16.9548485,GO:1900996,http://purl.obolibrary.org/obo/GO_1900996,benzene catabolic process +16.9548485,GO:1900997,http://purl.obolibrary.org/obo/GO_1900997,benzene biosynthetic process +16.9548485,GO:1901010,http://purl.obolibrary.org/obo/GO_1901010,(S)-reticuline metabolic process +16.9548485,GO:1901012,http://purl.obolibrary.org/obo/GO_1901012,(S)-reticuline biosynthetic process +16.9548485,GO:1901029,http://purl.obolibrary.org/obo/GO_1901029,negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway +16.9548485,GO:1901030,http://purl.obolibrary.org/obo/GO_1901030,positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway +16.9548485,GO:1901032,http://purl.obolibrary.org/obo/GO_1901032,negative regulation of response to reactive oxygen species +16.9548485,GO:1901038,http://purl.obolibrary.org/obo/GO_1901038,cyanidin 3-O-glucoside metabolic process +16.9548485,GO:1901054,http://purl.obolibrary.org/obo/GO_1901054,sarcosine biosynthetic process +16.9548485,GO:1901104,http://purl.obolibrary.org/obo/GO_1901104,tetracenomycin C metabolic process +16.9548485,GO:1901106,http://purl.obolibrary.org/obo/GO_1901106,tetracenomycin C biosynthetic process +16.9548485,GO:1901128,http://purl.obolibrary.org/obo/GO_1901128,gentamycin metabolic process +16.9548485,GO:1901130,http://purl.obolibrary.org/obo/GO_1901130,gentamycin biosynthetic process +16.9548485,GO:1901140,http://purl.obolibrary.org/obo/GO_1901140,p-coumaryl alcohol transport +16.9548485,GO:1901153,http://purl.obolibrary.org/obo/GO_1901153,paromomycin metabolic process +16.9548485,GO:1901155,http://purl.obolibrary.org/obo/GO_1901155,paromomycin biosynthetic process +16.9548485,GO:1901161,http://purl.obolibrary.org/obo/GO_1901161,primary amino compound catabolic process +16.9548485,GO:1901167,http://purl.obolibrary.org/obo/GO_1901167,3-chlorocatechol metabolic process +16.9548485,GO:1901207,http://purl.obolibrary.org/obo/GO_1901207,regulation of heart looping +16.9548485,GO:1901258,http://purl.obolibrary.org/obo/GO_1901258,positive regulation of macrophage colony-stimulating factor production +16.9548485,GO:1901289,http://purl.obolibrary.org/obo/GO_1901289,succinyl-CoA catabolic process +16.9548485,GO:1901290,http://purl.obolibrary.org/obo/GO_1901290,succinyl-CoA biosynthetic process +16.9548485,GO:1901309,http://purl.obolibrary.org/obo/GO_1901309,negative regulation of sterol regulatory element binding protein cleavage +16.9548485,GO:1901330,http://purl.obolibrary.org/obo/GO_1901330,negative regulation of odontoblast differentiation +16.9548485,GO:1901331,http://purl.obolibrary.org/obo/GO_1901331,positive regulation of odontoblast differentiation +16.9548485,GO:1901339,http://purl.obolibrary.org/obo/GO_1901339,regulation of store-operated calcium channel activity +16.9548485,GO:1901373,http://purl.obolibrary.org/obo/GO_1901373,lipid hydroperoxide transport +16.9548485,GO:1901377,http://purl.obolibrary.org/obo/GO_1901377,organic heteropentacyclic compound catabolic process +16.9548485,GO:1901386,http://purl.obolibrary.org/obo/GO_1901386,negative regulation of voltage-gated calcium channel activity +16.9548485,GO:1901405,http://purl.obolibrary.org/obo/GO_1901405,negative regulation of tetrapyrrole catabolic process +16.9548485,GO:1901407,http://purl.obolibrary.org/obo/GO_1901407,regulation of phosphorylation of RNA polymerase II C-terminal domain +16.9548485,GO:1901409,http://purl.obolibrary.org/obo/GO_1901409,positive regulation of phosphorylation of RNA polymerase II C-terminal domain +16.9548485,GO:1901419,http://purl.obolibrary.org/obo/GO_1901419,regulation of response to alcohol +16.9548485,GO:1901434,http://purl.obolibrary.org/obo/GO_1901434,regulation of toluene catabolic process +16.9548485,GO:1901438,http://purl.obolibrary.org/obo/GO_1901438,negative regulation of toluene metabolic process +16.9548485,GO:1901439,http://purl.obolibrary.org/obo/GO_1901439,positive regulation of toluene metabolic process +16.9548485,GO:1901466,http://purl.obolibrary.org/obo/GO_1901466,regulation of ferulate catabolic process +16.9548485,GO:1901474,http://purl.obolibrary.org/obo/GO_1901474,azole transmembrane transporter activity +16.9548485,GO:1901492,http://purl.obolibrary.org/obo/GO_1901492,positive regulation of lymphangiogenesis +16.9548485,GO:1901522,http://purl.obolibrary.org/obo/GO_1901522,positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus +16.9548485,GO:1901536,http://purl.obolibrary.org/obo/GO_1901536,negative regulation of DNA demethylation +16.9548485,GO:1901538,http://purl.obolibrary.org/obo/GO_1901538,changes to DNA methylation involved in embryo development +16.9548485,GO:1901569,http://purl.obolibrary.org/obo/GO_1901569,fatty acid derivative catabolic process +16.9548485,GO:1901596,http://purl.obolibrary.org/obo/GO_1901596,response to reversine +16.9548485,GO:1901624,http://purl.obolibrary.org/obo/GO_1901624,negative regulation of lymphocyte chemotaxis +16.9548485,GO:1901662,http://purl.obolibrary.org/obo/GO_1901662,quinone catabolic process +16.9548485,GO:1901665,http://purl.obolibrary.org/obo/GO_1901665,negative regulation of NAD+ ADP-ribosyltransferase activity +16.9548485,GO:1901670,http://purl.obolibrary.org/obo/GO_1901670,negative regulation of superoxide dismutase activity +16.9548485,GO:1901679,http://purl.obolibrary.org/obo/GO_1901679,nucleotide transmembrane transport +16.9548485,GO:1901710,http://purl.obolibrary.org/obo/GO_1901710,regulation of homoserine biosynthetic process +16.9548485,GO:1901713,http://purl.obolibrary.org/obo/GO_1901713,negative regulation of urea catabolic process +16.9548485,GO:1901722,http://purl.obolibrary.org/obo/GO_1901722,regulation of cell proliferation involved in kidney development +16.9548485,GO:1901741,http://purl.obolibrary.org/obo/GO_1901741,positive regulation of myoblast fusion +16.9548485,GO:1901764,http://purl.obolibrary.org/obo/GO_1901764,phosphinothricin metabolic process +16.9548485,GO:1901766,http://purl.obolibrary.org/obo/GO_1901766,phosphinothricin biosynthetic process +16.9548485,GO:1901788,http://purl.obolibrary.org/obo/GO_1901788,benzoyl-CoA catabolic process +16.9548485,GO:1901828,http://purl.obolibrary.org/obo/GO_1901828,zeaxanthin bis(beta-D-glucoside) metabolic process +16.9548485,GO:1901830,http://purl.obolibrary.org/obo/GO_1901830,zeaxanthin bis(beta-D-glucoside) biosynthetic process +16.9548485,GO:1901831,http://purl.obolibrary.org/obo/GO_1901831,all-trans-neoxanthin metabolic process +16.9548485,GO:1901833,http://purl.obolibrary.org/obo/GO_1901833,all-trans-neoxanthin biosynthetic process +16.9548485,GO:1901894,http://purl.obolibrary.org/obo/GO_1901894,regulation of ATPase-coupled calcium transmembrane transporter activity +16.9548485,GO:1901895,http://purl.obolibrary.org/obo/GO_1901895,negative regulation of ATPase-coupled calcium transmembrane transporter activity +16.9548485,GO:1901958,http://purl.obolibrary.org/obo/GO_1901958,negative regulation of cutin biosynthetic process +16.9548485,GO:1901965,http://purl.obolibrary.org/obo/GO_1901965,endoplasmic reticulum to chloroplast transport +16.9548485,GO:1901980,http://purl.obolibrary.org/obo/GO_1901980,positive regulation of inward rectifier potassium channel activity +16.9548485,GO:1902044,http://purl.obolibrary.org/obo/GO_1902044,regulation of Fas signaling pathway +16.9548485,GO:1902047,http://purl.obolibrary.org/obo/GO_1902047,polyamine transmembrane transport +16.9548485,GO:1902058,http://purl.obolibrary.org/obo/GO_1902058,regulation of sporocarp development involved in sexual reproduction +16.9548485,GO:1902061,http://purl.obolibrary.org/obo/GO_1902061,betaine aldehyde metabolic process +16.9548485,GO:1902112,http://purl.obolibrary.org/obo/GO_1902112,cellular response to diethyl maleate +16.9548485,GO:1902183,http://purl.obolibrary.org/obo/GO_1902183,regulation of shoot apical meristem development +16.9548485,GO:1902217,http://purl.obolibrary.org/obo/GO_1902217,erythrocyte apoptotic process +16.9548485,GO:1902244,http://purl.obolibrary.org/obo/GO_1902244,cis-abienol metabolic process +16.9548485,GO:1902246,http://purl.obolibrary.org/obo/GO_1902246,cis-abienol biosynthetic process +16.9548485,GO:1902294,http://purl.obolibrary.org/obo/GO_1902294,cell cycle DNA replication termination +16.9548485,GO:1902326,http://purl.obolibrary.org/obo/GO_1902326,positive regulation of chlorophyll biosynthetic process +16.9548485,GO:1902340,http://purl.obolibrary.org/obo/GO_1902340,negative regulation of chromosome condensation +16.9548485,GO:1902342,http://purl.obolibrary.org/obo/GO_1902342,xylitol export +16.9548485,GO:1902350,http://purl.obolibrary.org/obo/GO_1902350,cellular response to chloroquine +16.9548485,GO:1902370,http://purl.obolibrary.org/obo/GO_1902370,regulation of tRNA catabolic process +16.9548485,GO:1902395,http://purl.obolibrary.org/obo/GO_1902395,regulation of 1-deoxy-D-xylulose-5-phosphate synthase activity +16.9548485,GO:1902407,http://purl.obolibrary.org/obo/GO_1902407,assembly of actomyosin apparatus involved in mitotic cytokinesis +16.9548485,GO:1902415,http://purl.obolibrary.org/obo/GO_1902415,regulation of mRNA binding +16.9548485,GO:1902430,http://purl.obolibrary.org/obo/GO_1902430,negative regulation of amyloid-beta formation +16.9548485,GO:1902448,http://purl.obolibrary.org/obo/GO_1902448,positive regulation of shade avoidance +16.9548485,GO:1902457,http://purl.obolibrary.org/obo/GO_1902457,negative regulation of stomatal opening +16.9548485,GO:1902458,http://purl.obolibrary.org/obo/GO_1902458,positive regulation of stomatal opening +16.9548485,GO:1902464,http://purl.obolibrary.org/obo/GO_1902464,regulation of histone H3-K27 trimethylation +16.9548485,GO:1902466,http://purl.obolibrary.org/obo/GO_1902466,positive regulation of histone H3-K27 trimethylation +16.9548485,GO:1902501,http://purl.obolibrary.org/obo/GO_1902501,lysosomal HOPS complex +16.9548485,GO:1902503,http://purl.obolibrary.org/obo/GO_1902503,adenylyltransferase complex +16.9548485,GO:1902510,http://purl.obolibrary.org/obo/GO_1902510,regulation of apoptotic DNA fragmentation +16.9548485,GO:1902513,http://purl.obolibrary.org/obo/GO_1902513,regulation of organelle transport along microtubule +16.9548485,GO:1902522,http://purl.obolibrary.org/obo/GO_1902522,response to 4'-epidoxorubicin +16.9548485,GO:1902568,http://purl.obolibrary.org/obo/GO_1902568,positive regulation of eosinophil activation +16.9548485,GO:1902586,http://purl.obolibrary.org/obo/GO_1902586,multi-organism intercellular transport +16.9548485,GO:1902606,http://purl.obolibrary.org/obo/GO_1902606,regulation of large conductance calcium-activated potassium channel activity +16.9548485,GO:1902618,http://purl.obolibrary.org/obo/GO_1902618,cellular response to fluoride +16.9548485,GO:1902690,http://purl.obolibrary.org/obo/GO_1902690,positive regulation of NAD metabolic process +16.9548485,GO:1902716,http://purl.obolibrary.org/obo/GO_1902716,cell cortex of growing cell tip +16.9548485,GO:1902740,http://purl.obolibrary.org/obo/GO_1902740,none +16.9548485,GO:1902741,http://purl.obolibrary.org/obo/GO_1902741,none +16.9548485,GO:1902747,http://purl.obolibrary.org/obo/GO_1902747,negative regulation of lens fiber cell differentiation +16.9548485,GO:1902751,http://purl.obolibrary.org/obo/GO_1902751,positive regulation of cell cycle G2/M phase transition +16.9548485,GO:1902761,http://purl.obolibrary.org/obo/GO_1902761,positive regulation of chondrocyte development +16.9548485,GO:1902767,http://purl.obolibrary.org/obo/GO_1902767,isoprenoid biosynthetic process via mevalonate +16.9548485,GO:1902768,http://purl.obolibrary.org/obo/GO_1902768,isoprenoid biosynthetic process via 1-deoxy-D-xylulose 5-phosphate +16.9548485,GO:1902770,http://purl.obolibrary.org/obo/GO_1902770,negative regulation of choline O-acetyltransferase activity +16.9548485,GO:1902771,http://purl.obolibrary.org/obo/GO_1902771,positive regulation of choline O-acetyltransferase activity +16.9548485,GO:1902774,http://purl.obolibrary.org/obo/GO_1902774,late endosome to lysosome transport +16.9548485,GO:1902804,http://purl.obolibrary.org/obo/GO_1902804,negative regulation of synaptic vesicle transport +16.9548485,GO:1902805,http://purl.obolibrary.org/obo/GO_1902805,positive regulation of synaptic vesicle transport +16.9548485,GO:1902863,http://purl.obolibrary.org/obo/GO_1902863,regulation of embryonic camera-type eye development +16.9548485,GO:1902889,http://purl.obolibrary.org/obo/GO_1902889,protein localization to spindle microtubule +16.9548485,GO:1902913,http://purl.obolibrary.org/obo/GO_1902913,positive regulation of neuroepithelial cell differentiation +16.9548485,GO:1902914,http://purl.obolibrary.org/obo/GO_1902914,regulation of protein polyubiquitination +16.9548485,GO:1902933,http://purl.obolibrary.org/obo/GO_1902933,isopentenol metabolic process +16.9548485,GO:1902934,http://purl.obolibrary.org/obo/GO_1902934,isopentenol biosynthetic process +16.9548485,GO:1902947,http://purl.obolibrary.org/obo/GO_1902947,regulation of tau-protein kinase activity +16.9548485,GO:1902975,http://purl.obolibrary.org/obo/GO_1902975,mitotic DNA replication initiation +16.9548485,GO:1902992,http://purl.obolibrary.org/obo/GO_1902992,negative regulation of amyloid precursor protein catabolic process +16.9548485,GO:1902994,http://purl.obolibrary.org/obo/GO_1902994,regulation of phospholipid efflux +16.9548485,GO:1902998,http://purl.obolibrary.org/obo/GO_1902998,positive regulation of neurofibrillary tangle assembly +16.9548485,GO:1903003,http://purl.obolibrary.org/obo/GO_1903003,positive regulation of protein deubiquitination +16.9548485,GO:1903012,http://purl.obolibrary.org/obo/GO_1903012,positive regulation of bone development +16.9548485,GO:1903017,http://purl.obolibrary.org/obo/GO_1903017,positive regulation of exo-alpha-sialidase activity +16.9548485,GO:1903040,http://purl.obolibrary.org/obo/GO_1903040,exon-exon junction complex assembly +16.9548485,GO:1903043,http://purl.obolibrary.org/obo/GO_1903043,positive regulation of chondrocyte hypertrophy +16.9548485,GO:1903055,http://purl.obolibrary.org/obo/GO_1903055,positive regulation of extracellular matrix organization +16.9548485,GO:1903064,http://purl.obolibrary.org/obo/GO_1903064,positive regulation of reverse cholesterol transport +16.9548485,GO:1903073,http://purl.obolibrary.org/obo/GO_1903073,negative regulation of death-inducing signaling complex assembly +16.9548485,GO:1903078,http://purl.obolibrary.org/obo/GO_1903078,positive regulation of protein localization to plasma membrane +16.9548485,GO:1903084,http://purl.obolibrary.org/obo/GO_1903084,protein localization to condensed nuclear chromosome +16.9548485,GO:1903123,http://purl.obolibrary.org/obo/GO_1903123,regulation of thioredoxin peroxidase activity +16.9548485,GO:1903143,http://purl.obolibrary.org/obo/GO_1903143,adrenomedullin receptor complex +16.9548485,GO:1903167,http://purl.obolibrary.org/obo/GO_1903167,regulation of pyrroline-5-carboxylate reductase activity +16.9548485,GO:1903174,http://purl.obolibrary.org/obo/GO_1903174,fatty alcohol catabolic process +16.9548485,GO:1903188,http://purl.obolibrary.org/obo/GO_1903188,positive regulation of vitellogenesis +16.9548485,GO:1903195,http://purl.obolibrary.org/obo/GO_1903195,regulation of L-dopa biosynthetic process +16.9548485,GO:1903198,http://purl.obolibrary.org/obo/GO_1903198,regulation of L-dopa decarboxylase activity +16.9548485,GO:1903202,http://purl.obolibrary.org/obo/GO_1903202,negative regulation of oxidative stress-induced cell death +16.9548485,GO:1903218,http://purl.obolibrary.org/obo/GO_1903218,regulation of malate dehydrogenase (decarboxylating) (NADP+) activity +16.9548485,GO:1903256,http://purl.obolibrary.org/obo/GO_1903256,selenoneine metabolic process +16.9548485,GO:1903257,http://purl.obolibrary.org/obo/GO_1903257,selenoneine biosynthetic process +16.9548485,GO:1903283,http://purl.obolibrary.org/obo/GO_1903283,negative regulation of glutathione peroxidase activity +16.9548485,GO:1903284,http://purl.obolibrary.org/obo/GO_1903284,positive regulation of glutathione peroxidase activity +16.9548485,GO:1903286,http://purl.obolibrary.org/obo/GO_1903286,regulation of potassium ion import +16.9548485,GO:1903315,http://purl.obolibrary.org/obo/GO_1903315,negative regulation of nitrogen cycle metabolic process +16.9548485,GO:1903331,http://purl.obolibrary.org/obo/GO_1903331,positive regulation of iron-sulfur cluster assembly +16.9548485,GO:1903337,http://purl.obolibrary.org/obo/GO_1903337,positive regulation of vacuolar transport +16.9548485,GO:1903343,http://purl.obolibrary.org/obo/GO_1903343,positive regulation of meiotic DNA double-strand break formation +16.9548485,GO:1903369,http://purl.obolibrary.org/obo/GO_1903369,negative regulation of foraging behavior +16.9548485,GO:1903379,http://purl.obolibrary.org/obo/GO_1903379,regulation of mitotic chromosome condensation +16.9548485,GO:1903392,http://purl.obolibrary.org/obo/GO_1903392,negative regulation of adherens junction organization +16.9548485,GO:1903413,http://purl.obolibrary.org/obo/GO_1903413,cellular response to bile acid +16.9548485,GO:1903422,http://purl.obolibrary.org/obo/GO_1903422,negative regulation of synaptic vesicle recycling +16.9548485,GO:1903424,http://purl.obolibrary.org/obo/GO_1903424,fluoride transmembrane transport +16.9548485,GO:1903430,http://purl.obolibrary.org/obo/GO_1903430,negative regulation of cell maturation +16.9548485,GO:1903431,http://purl.obolibrary.org/obo/GO_1903431,positive regulation of cell maturation +16.9548485,GO:1903440,http://purl.obolibrary.org/obo/GO_1903440,amylin receptor complex +16.9548485,GO:1903456,http://purl.obolibrary.org/obo/GO_1903456,"positive regulation of androst-4-ene-3,17-dione biosynthetic process" +16.9548485,GO:1903463,http://purl.obolibrary.org/obo/GO_1903463,regulation of mitotic cell cycle DNA replication +16.9548485,GO:1903465,http://purl.obolibrary.org/obo/GO_1903465,positive regulation of mitotic cell cycle DNA replication +16.9548485,GO:1903466,http://purl.obolibrary.org/obo/GO_1903466,regulation of mitotic DNA replication initiation +16.9548485,GO:1903468,http://purl.obolibrary.org/obo/GO_1903468,positive regulation of DNA replication initiation +16.9548485,GO:1903535,http://purl.obolibrary.org/obo/GO_1903535,negative regulation of lactose biosynthetic process +16.9548485,GO:1903546,http://purl.obolibrary.org/obo/GO_1903546,protein localization to photoreceptor outer segment +16.9548485,GO:1903591,http://purl.obolibrary.org/obo/GO_1903591,negative regulation of lysozyme activity +16.9548485,GO:1903598,http://purl.obolibrary.org/obo/GO_1903598,positive regulation of gap junction assembly +16.9548485,GO:1903608,http://purl.obolibrary.org/obo/GO_1903608,protein localization to cytoplasmic stress granule +16.9548485,GO:1903614,http://purl.obolibrary.org/obo/GO_1903614,negative regulation of protein tyrosine phosphatase activity +16.9548485,GO:1903619,http://purl.obolibrary.org/obo/GO_1903619,negative regulation of transdifferentiation +16.9548485,GO:1903623,http://purl.obolibrary.org/obo/GO_1903623,negative regulation of RNA polymerase III activity +16.9548485,GO:1903627,http://purl.obolibrary.org/obo/GO_1903627,regulation of dUTP diphosphatase activity +16.9548485,GO:1903628,http://purl.obolibrary.org/obo/GO_1903628,negative regulation of dUTP diphosphatase activity +16.9548485,GO:1903647,http://purl.obolibrary.org/obo/GO_1903647,negative regulation of chlorophyll catabolic process +16.9548485,GO:1903651,http://purl.obolibrary.org/obo/GO_1903651,positive regulation of cytoplasmic transport +16.9548485,GO:1903665,http://purl.obolibrary.org/obo/GO_1903665,negative regulation of asexual reproduction +16.9548485,GO:1903671,http://purl.obolibrary.org/obo/GO_1903671,negative regulation of sprouting angiogenesis +16.9548485,GO:1903675,http://purl.obolibrary.org/obo/GO_1903675,negative regulation of cap-dependent translational initiation +16.9548485,GO:1903700,http://purl.obolibrary.org/obo/GO_1903700,caecum development +16.9548485,GO:1903716,http://purl.obolibrary.org/obo/GO_1903716,guanine transmembrane transport +16.9548485,GO:1903724,http://purl.obolibrary.org/obo/GO_1903724,positive regulation of centriole elongation +16.9548485,GO:1903768,http://purl.obolibrary.org/obo/GO_1903768,taste receptor complex +16.9548485,GO:1903775,http://purl.obolibrary.org/obo/GO_1903775,regulation of DNA double-strand break processing +16.9548485,GO:1903778,http://purl.obolibrary.org/obo/GO_1903778,protein localization to vacuolar membrane +16.9548485,GO:1903799,http://purl.obolibrary.org/obo/GO_1903799,negative regulation of production of miRNAs involved in gene silencing by miRNA +16.9548485,GO:1903800,http://purl.obolibrary.org/obo/GO_1903800,positive regulation of production of miRNAs involved in gene silencing by miRNA +16.9548485,GO:1903818,http://purl.obolibrary.org/obo/GO_1903818,positive regulation of voltage-gated potassium channel activity +16.9548485,GO:1903829,http://purl.obolibrary.org/obo/GO_1903829,positive regulation of protein localization +16.9548485,GO:1903844,http://purl.obolibrary.org/obo/GO_1903844,regulation of cellular response to transforming growth factor beta stimulus +16.9548485,GO:1903863,http://purl.obolibrary.org/obo/GO_1903863,P granule assembly +16.9548485,GO:1903910,http://purl.obolibrary.org/obo/GO_1903910,negative regulation of receptor clustering +16.9548485,GO:1903918,http://purl.obolibrary.org/obo/GO_1903918,regulation of actin filament severing +16.9548485,GO:1903928,http://purl.obolibrary.org/obo/GO_1903928,cellular response to cyanide +16.9548485,GO:1903932,http://purl.obolibrary.org/obo/GO_1903932,regulation of DNA primase activity +16.9548485,GO:1903936,http://purl.obolibrary.org/obo/GO_1903936,cellular response to sodium arsenite +16.9548485,GO:1903960,http://purl.obolibrary.org/obo/GO_1903960,negative regulation of anion transmembrane transport +16.9548485,GO:1904026,http://purl.obolibrary.org/obo/GO_1904026,regulation of collagen fibril organization +16.9548485,GO:1904035,http://purl.obolibrary.org/obo/GO_1904035,regulation of epithelial cell apoptotic process +16.9548485,GO:1904056,http://purl.obolibrary.org/obo/GO_1904056,positive regulation of cholangiocyte proliferation +16.9548485,GO:1904077,http://purl.obolibrary.org/obo/GO_1904077,negative regulation of estrogen biosynthetic process +16.9548485,GO:1904078,http://purl.obolibrary.org/obo/GO_1904078,positive regulation of estrogen biosynthetic process +16.9548485,GO:1904093,http://purl.obolibrary.org/obo/GO_1904093,negative regulation of autophagic cell death +16.9548485,GO:1904096,http://purl.obolibrary.org/obo/GO_1904096,protein tyrosine phosphatase complex +16.9548485,GO:1904101,http://purl.obolibrary.org/obo/GO_1904101,response to acadesine +16.9548485,GO:1904121,http://purl.obolibrary.org/obo/GO_1904121,phosphatidylethanolamine transfer activity +16.9548485,GO:1904176,http://purl.obolibrary.org/obo/GO_1904176,carbon phosphorus lyase complex +16.9548485,GO:1904183,http://purl.obolibrary.org/obo/GO_1904183,negative regulation of pyruvate dehydrogenase activity +16.9548485,GO:1904185,http://purl.obolibrary.org/obo/GO_1904185,equatorial microtubule organizing center assembly +16.9548485,GO:1904205,http://purl.obolibrary.org/obo/GO_1904205,negative regulation of skeletal muscle hypertrophy +16.9548485,GO:1904209,http://purl.obolibrary.org/obo/GO_1904209,none +16.9548485,GO:1904217,http://purl.obolibrary.org/obo/GO_1904217,regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity +16.9548485,GO:1904218,http://purl.obolibrary.org/obo/GO_1904218,negative regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity +16.9548485,GO:1904224,http://purl.obolibrary.org/obo/GO_1904224,negative regulation of glucuronosyltransferase activity +16.9548485,GO:1904270,http://purl.obolibrary.org/obo/GO_1904270,pyroptosome complex assembly +16.9548485,GO:1904277,http://purl.obolibrary.org/obo/GO_1904277,negative regulation of wax biosynthetic process +16.9548485,GO:1904331,http://purl.obolibrary.org/obo/GO_1904331,regulation of error-prone translesion synthesis +16.9548485,GO:1904335,http://purl.obolibrary.org/obo/GO_1904335,regulation of ductus arteriosus closure +16.9548485,GO:1904340,http://purl.obolibrary.org/obo/GO_1904340,positive regulation of dopaminergic neuron differentiation +16.9548485,GO:1904360,http://purl.obolibrary.org/obo/GO_1904360,negative regulation of spore germination +16.9548485,GO:1904363,http://purl.obolibrary.org/obo/GO_1904363,negative regulation of calcitonin secretion +16.9548485,GO:1904364,http://purl.obolibrary.org/obo/GO_1904364,positive regulation of calcitonin secretion +16.9548485,GO:1904375,http://purl.obolibrary.org/obo/GO_1904375,regulation of protein localization to cell periphery +16.9548485,GO:1904383,http://purl.obolibrary.org/obo/GO_1904383,response to sodium phosphate +16.9548485,GO:1904387,http://purl.obolibrary.org/obo/GO_1904387,cellular response to L-phenylalanine derivative +16.9548485,GO:1904418,http://purl.obolibrary.org/obo/GO_1904418,regulation of telomeric loop formation +16.9548485,GO:1904451,http://purl.obolibrary.org/obo/GO_1904451,regulation of potassium:proton exchanging ATPase activity +16.9548485,GO:1904474,http://purl.obolibrary.org/obo/GO_1904474,cellular response to L-dopa +16.9548485,GO:1904515,http://purl.obolibrary.org/obo/GO_1904515,positive regulation of TORC2 signaling +16.9548485,GO:1904577,http://purl.obolibrary.org/obo/GO_1904577,cellular response to tunicamycin +16.9548485,GO:1904579,http://purl.obolibrary.org/obo/GO_1904579,cellular response to thapsigargin +16.9548485,GO:1904602,http://purl.obolibrary.org/obo/GO_1904602,serotonin-activated cation-selective channel complex +16.9548485,GO:1904608,http://purl.obolibrary.org/obo/GO_1904608,response to monosodium L-glutamate +16.9548485,GO:1904617,http://purl.obolibrary.org/obo/GO_1904617,negative regulation of actin binding +16.9548485,GO:1904618,http://purl.obolibrary.org/obo/GO_1904618,positive regulation of actin binding +16.9548485,GO:1904637,http://purl.obolibrary.org/obo/GO_1904637,cellular response to ionomycin +16.9548485,GO:1904646,http://purl.obolibrary.org/obo/GO_1904646,cellular response to amyloid-beta +16.9548485,GO:1904648,http://purl.obolibrary.org/obo/GO_1904648,cellular response to rotenone +16.9548485,GO:1904686,http://purl.obolibrary.org/obo/GO_1904686,regulation of mitotic spindle disassembly +16.9548485,GO:1904689,http://purl.obolibrary.org/obo/GO_1904689,negative regulation of cytoplasmic translational initiation +16.9548485,GO:1904697,http://purl.obolibrary.org/obo/GO_1904697,regulation of acinar cell proliferation +16.9548485,GO:1904734,http://purl.obolibrary.org/obo/GO_1904734,positive regulation of electron transfer activity +16.9548485,GO:1904753,http://purl.obolibrary.org/obo/GO_1904753,negative regulation of vascular associated smooth muscle cell migration +16.9548485,GO:1904774,http://purl.obolibrary.org/obo/GO_1904774,negative regulation of ubiquinone biosynthetic process +16.9548485,GO:1904804,http://purl.obolibrary.org/obo/GO_1904804,none +16.9548485,GO:1904808,http://purl.obolibrary.org/obo/GO_1904808,positive regulation of protein oxidation +16.9548485,GO:1904823,http://purl.obolibrary.org/obo/GO_1904823,purine nucleobase transmembrane transport +16.9548485,GO:1904824,http://purl.obolibrary.org/obo/GO_1904824,anaphase-promoting complex assembly +16.9548485,GO:1904825,http://purl.obolibrary.org/obo/GO_1904825,protein localization to microtubule plus-end +16.9548485,GO:1904827,http://purl.obolibrary.org/obo/GO_1904827,negative regulation of hydrogen sulfide biosynthetic process +16.9548485,GO:1904828,http://purl.obolibrary.org/obo/GO_1904828,positive regulation of hydrogen sulfide biosynthetic process +16.9548485,GO:1904832,http://purl.obolibrary.org/obo/GO_1904832,negative regulation of removal of superoxide radicals +16.9548485,GO:1904845,http://purl.obolibrary.org/obo/GO_1904845,cellular response to L-glutamine +16.9548485,GO:1904875,http://purl.obolibrary.org/obo/GO_1904875,regulation of DNA ligase activity +16.9548485,GO:1904881,http://purl.obolibrary.org/obo/GO_1904881,cellular response to hydrogen sulfide +16.9548485,GO:1904887,http://purl.obolibrary.org/obo/GO_1904887,Wnt signalosome assembly +16.9548485,GO:1904889,http://purl.obolibrary.org/obo/GO_1904889,regulation of excitatory synapse assembly +16.9548485,GO:1904956,http://purl.obolibrary.org/obo/GO_1904956,regulation of midbrain dopaminergic neuron differentiation +16.9548485,GO:1904960,http://purl.obolibrary.org/obo/GO_1904960,positive regulation of cytochrome-c oxidase activity +16.9548485,GO:1905214,http://purl.obolibrary.org/obo/GO_1905214,regulation of RNA binding +16.9548485,GO:1905330,http://purl.obolibrary.org/obo/GO_1905330,regulation of morphogenesis of an epithelium +16.9548485,GO:1905428,http://purl.obolibrary.org/obo/GO_1905428,regulation of plant organ formation +16.9548485,GO:1905476,http://purl.obolibrary.org/obo/GO_1905476,negative regulation of protein localization to membrane +16.9548485,GO:1905477,http://purl.obolibrary.org/obo/GO_1905477,positive regulation of protein localization to membrane +16.9548485,GO:1905522,http://purl.obolibrary.org/obo/GO_1905522,negative regulation of macrophage migration +16.9548485,GO:1905523,http://purl.obolibrary.org/obo/GO_1905523,positive regulation of macrophage migration +16.9548485,GO:1905546,http://purl.obolibrary.org/obo/GO_1905546,cellular response to phenylpropanoid +16.9548485,GO:1905651,http://purl.obolibrary.org/obo/GO_1905651,regulation of artery morphogenesis +16.9548485,GO:1905725,http://purl.obolibrary.org/obo/GO_1905725,protein localization to microtubule end +16.9548485,GO:1905809,http://purl.obolibrary.org/obo/GO_1905809,negative regulation of synapse organization +16.9548485,GO:1905820,http://purl.obolibrary.org/obo/GO_1905820,positive regulation of chromosome separation +16.9548485,GO:1905936,http://purl.obolibrary.org/obo/GO_1905936,regulation of germ cell proliferation +16.9548485,GO:1905957,http://purl.obolibrary.org/obo/GO_1905957,regulation of cellular response to alcohol +16.9548485,GO:1990021,http://purl.obolibrary.org/obo/GO_1990021,Schaffer axon collateral +16.9548485,GO:1990024,http://purl.obolibrary.org/obo/GO_1990024,C bouton +16.9548485,GO:1990032,http://purl.obolibrary.org/obo/GO_1990032,parallel fiber +16.9548485,GO:1990042,http://purl.obolibrary.org/obo/GO_1990042,glycerol dehydrogenase [NAD(P)+] activity +16.9548485,GO:1990052,http://purl.obolibrary.org/obo/GO_1990052,ER to chloroplast lipid transport +16.9548485,GO:1990066,http://purl.obolibrary.org/obo/GO_1990066,energy quenching +16.9548485,GO:1990071,http://purl.obolibrary.org/obo/GO_1990071,TRAPPII protein complex +16.9548485,GO:1990075,http://purl.obolibrary.org/obo/GO_1990075,periciliary membrane compartment +16.9548485,GO:1990078,http://purl.obolibrary.org/obo/GO_1990078,replication inhibiting complex +16.9548485,GO:1990084,http://purl.obolibrary.org/obo/GO_1990084,DnaA-Dps complex +16.9548485,GO:1990107,http://purl.obolibrary.org/obo/GO_1990107,thiazole synthase activity +16.9548485,GO:1990136,http://purl.obolibrary.org/obo/GO_1990136,linoleate 9S-lipoxygenase activity +16.9548485,GO:1990193,http://purl.obolibrary.org/obo/GO_1990193,BtuCD complex +16.9548485,GO:1990199,http://purl.obolibrary.org/obo/GO_1990199,MsbA transporter complex +16.9548485,GO:1990221,http://purl.obolibrary.org/obo/GO_1990221,L-cysteine desulfurase complex +16.9548485,GO:1990228,http://purl.obolibrary.org/obo/GO_1990228,sulfurtransferase complex +16.9548485,GO:1990258,http://purl.obolibrary.org/obo/GO_1990258,histone glutamine methylation +16.9548485,GO:1990296,http://purl.obolibrary.org/obo/GO_1990296,none +16.9548485,GO:1990298,http://purl.obolibrary.org/obo/GO_1990298,bub1-bub3 complex +16.9548485,GO:1990329,http://purl.obolibrary.org/obo/GO_1990329,IscS-TusA complex +16.9548485,GO:1990345,http://purl.obolibrary.org/obo/GO_1990345,none +16.9548485,GO:1990350,http://purl.obolibrary.org/obo/GO_1990350,glucose transporter complex +16.9548485,GO:1990385,http://purl.obolibrary.org/obo/GO_1990385,meiotic spindle midzone +16.9548485,GO:1990417,http://purl.obolibrary.org/obo/GO_1990417,snoRNA release from pre-rRNA +16.9548485,GO:1990500,http://purl.obolibrary.org/obo/GO_1990500,eif4e-cup complex +16.9548485,GO:1990508,http://purl.obolibrary.org/obo/GO_1990508,CKM complex +16.9548485,GO:1990512,http://purl.obolibrary.org/obo/GO_1990512,Cry-Per complex +16.9548485,GO:1990513,http://purl.obolibrary.org/obo/GO_1990513,CLOCK-BMAL transcription complex +16.9548485,GO:1990532,http://purl.obolibrary.org/obo/GO_1990532,stress response to nickel ion +16.9548485,GO:1990538,http://purl.obolibrary.org/obo/GO_1990538,xylan O-acetyltransferase activity +16.9548485,GO:1990565,http://purl.obolibrary.org/obo/GO_1990565,HSP90-CDC37 chaperone complex +16.9548485,GO:1990571,http://purl.obolibrary.org/obo/GO_1990571,meiotic centromere clustering +16.9548485,GO:1990597,http://purl.obolibrary.org/obo/GO_1990597,AIP1-IRE1 complex +16.9548485,GO:1990609,http://purl.obolibrary.org/obo/GO_1990609,glutamate-cysteine ligase regulator activity +16.9548485,GO:1990621,http://purl.obolibrary.org/obo/GO_1990621,ESCRT IV complex +16.9548485,GO:1990626,http://purl.obolibrary.org/obo/GO_1990626,mitochondrial outer membrane fusion +16.9548485,GO:1990629,http://purl.obolibrary.org/obo/GO_1990629,phospholamban complex +16.9548485,GO:1990646,http://purl.obolibrary.org/obo/GO_1990646,cellular response to prolactin +16.9548485,GO:1990676,http://purl.obolibrary.org/obo/GO_1990676,Golgi trans cisterna membrane +16.9548485,GO:1990706,http://purl.obolibrary.org/obo/GO_1990706,MAD1 complex +16.9548485,GO:1990712,http://purl.obolibrary.org/obo/GO_1990712,HFE-transferrin receptor complex +16.9548485,GO:1990716,http://purl.obolibrary.org/obo/GO_1990716,axonemal central apparatus +16.9548485,GO:1990732,http://purl.obolibrary.org/obo/GO_1990732,pyrenoid +16.9548485,GO:1990738,http://purl.obolibrary.org/obo/GO_1990738,pseudouridine 5'-phosphatase activity +16.9548485,GO:1990743,http://purl.obolibrary.org/obo/GO_1990743,protein sialylation +16.9548485,GO:1990788,http://purl.obolibrary.org/obo/GO_1990788,GLI-SUFU complex +16.9548485,GO:1990794,http://purl.obolibrary.org/obo/GO_1990794,basolateral part of cell +16.9548485,GO:1990805,http://purl.obolibrary.org/obo/GO_1990805,central cylinder +16.9548485,GO:1990811,http://purl.obolibrary.org/obo/GO_1990811,MWP complex +16.9548485,GO:1990821,http://purl.obolibrary.org/obo/GO_1990821,none +16.9548485,GO:1990850,http://purl.obolibrary.org/obo/GO_1990850,H-gal-GP complex +16.9548485,GO:1990858,http://purl.obolibrary.org/obo/GO_1990858,cellular response to lectin +16.9548485,GO:1990909,http://purl.obolibrary.org/obo/GO_1990909,Wnt signalosome +16.9548485,GO:2000025,http://purl.obolibrary.org/obo/GO_2000025,regulation of leaf formation +16.9548485,GO:2000039,http://purl.obolibrary.org/obo/GO_2000039,regulation of trichome morphogenesis +16.9548485,GO:2000042,http://purl.obolibrary.org/obo/GO_2000042,negative regulation of double-strand break repair via homologous recombination +16.9548485,GO:2000047,http://purl.obolibrary.org/obo/GO_2000047,regulation of cell-cell adhesion mediated by cadherin +16.9548485,GO:2000050,http://purl.obolibrary.org/obo/GO_2000050,regulation of non-canonical Wnt signaling pathway +16.9548485,GO:2000070,http://purl.obolibrary.org/obo/GO_2000070,regulation of response to water deprivation +16.9548485,GO:2000105,http://purl.obolibrary.org/obo/GO_2000105,positive regulation of DNA-dependent DNA replication +16.9548485,GO:2000107,http://purl.obolibrary.org/obo/GO_2000107,negative regulation of leukocyte apoptotic process +16.9548485,GO:2000178,http://purl.obolibrary.org/obo/GO_2000178,negative regulation of neural precursor cell proliferation +16.9548485,GO:2000193,http://purl.obolibrary.org/obo/GO_2000193,positive regulation of fatty acid transport +16.9548485,GO:2000221,http://purl.obolibrary.org/obo/GO_2000221,negative regulation of pseudohyphal growth +16.9548485,GO:2000235,http://purl.obolibrary.org/obo/GO_2000235,regulation of tRNA processing +16.9548485,GO:2000254,http://purl.obolibrary.org/obo/GO_2000254,regulation of male germ cell proliferation +16.9548485,GO:2000269,http://purl.obolibrary.org/obo/GO_2000269,regulation of fibroblast apoptotic process +16.9548485,GO:2000271,http://purl.obolibrary.org/obo/GO_2000271,positive regulation of fibroblast apoptotic process +16.9548485,GO:2000302,http://purl.obolibrary.org/obo/GO_2000302,positive regulation of synaptic vesicle exocytosis +16.9548485,GO:2000316,http://purl.obolibrary.org/obo/GO_2000316,regulation of T-helper 17 type immune response +16.9548485,GO:2000319,http://purl.obolibrary.org/obo/GO_2000319,regulation of T-helper 17 cell differentiation +16.9548485,GO:2000335,http://purl.obolibrary.org/obo/GO_2000335,regulation of endothelial microparticle formation +16.9548485,GO:2000338,http://purl.obolibrary.org/obo/GO_2000338,regulation of chemokine (C-X-C motif) ligand 1 production +16.9548485,GO:2000343,http://purl.obolibrary.org/obo/GO_2000343,positive regulation of chemokine (C-X-C motif) ligand 2 production +16.9548485,GO:2000347,http://purl.obolibrary.org/obo/GO_2000347,positive regulation of hepatocyte proliferation +16.9548485,GO:2000355,http://purl.obolibrary.org/obo/GO_2000355,negative regulation of ovarian follicle development +16.9548485,GO:2000395,http://purl.obolibrary.org/obo/GO_2000395,regulation of ubiquitin-dependent endocytosis +16.9548485,GO:2000396,http://purl.obolibrary.org/obo/GO_2000396,negative regulation of ubiquitin-dependent endocytosis +16.9548485,GO:2000403,http://purl.obolibrary.org/obo/GO_2000403,positive regulation of lymphocyte migration +16.9548485,GO:2000406,http://purl.obolibrary.org/obo/GO_2000406,positive regulation of T cell migration +16.9548485,GO:2000488,http://purl.obolibrary.org/obo/GO_2000488,positive regulation of brassinosteroid biosynthetic process +16.9548485,GO:2000490,http://purl.obolibrary.org/obo/GO_2000490,negative regulation of hepatic stellate cell activation +16.9548485,GO:2000508,http://purl.obolibrary.org/obo/GO_2000508,regulation of dendritic cell chemotaxis +16.9548485,GO:2000517,http://purl.obolibrary.org/obo/GO_2000517,regulation of T-helper 1 cell activation +16.9548485,GO:2000537,http://purl.obolibrary.org/obo/GO_2000537,regulation of B cell chemotaxis +16.9548485,GO:2000550,http://purl.obolibrary.org/obo/GO_2000550,negative regulation of B cell chemotaxis +16.9548485,GO:2000574,http://purl.obolibrary.org/obo/GO_2000574,none +16.9548485,GO:2000609,http://purl.obolibrary.org/obo/GO_2000609,regulation of thyroid hormone generation +16.9548485,GO:2000637,http://purl.obolibrary.org/obo/GO_2000637,positive regulation of gene silencing by miRNA +16.9548485,GO:2000639,http://purl.obolibrary.org/obo/GO_2000639,negative regulation of SREBP signaling pathway +16.9548485,GO:2000645,http://purl.obolibrary.org/obo/GO_2000645,negative regulation of receptor catabolic process +16.9548485,GO:2000652,http://purl.obolibrary.org/obo/GO_2000652,regulation of secondary cell wall biogenesis +16.9548485,GO:2000653,http://purl.obolibrary.org/obo/GO_2000653,regulation of genetic imprinting +16.9548485,GO:2000667,http://purl.obolibrary.org/obo/GO_2000667,none +16.9548485,GO:2000674,http://purl.obolibrary.org/obo/GO_2000674,regulation of type B pancreatic cell apoptotic process +16.9548485,GO:2000766,http://purl.obolibrary.org/obo/GO_2000766,negative regulation of cytoplasmic translation +16.9548485,GO:2000780,http://purl.obolibrary.org/obo/GO_2000780,negative regulation of double-strand break repair +16.9548485,GO:2000781,http://purl.obolibrary.org/obo/GO_2000781,positive regulation of double-strand break repair +16.9548485,GO:2000840,http://purl.obolibrary.org/obo/GO_2000840,regulation of dehydroepiandrosterone secretion +16.9548485,GO:2000847,http://purl.obolibrary.org/obo/GO_2000847,negative regulation of corticosteroid hormone secretion +16.9548485,GO:2000850,http://purl.obolibrary.org/obo/GO_2000850,negative regulation of glucocorticoid secretion +16.9548485,GO:2000863,http://purl.obolibrary.org/obo/GO_2000863,positive regulation of estrogen secretion +16.9548485,GO:2000866,http://purl.obolibrary.org/obo/GO_2000866,positive regulation of estradiol secretion +16.9548485,GO:2000900,http://purl.obolibrary.org/obo/GO_2000900,cyclodextrin metabolic process +16.9548485,GO:2000942,http://purl.obolibrary.org/obo/GO_2000942,regulation of amylopectin metabolic process +16.9548485,GO:2000980,http://purl.obolibrary.org/obo/GO_2000980,regulation of inner ear receptor cell differentiation +16.9548485,GO:2000981,http://purl.obolibrary.org/obo/GO_2000981,negative regulation of inner ear receptor cell differentiation +16.9548485,GO:2000997,http://purl.obolibrary.org/obo/GO_2000997,regulation of cellulose catabolic process +16.9548485,GO:2001003,http://purl.obolibrary.org/obo/GO_2001003,regulation of pectin catabolic process +16.9548485,GO:2001007,http://purl.obolibrary.org/obo/GO_2001007,negative regulation of cellulose biosynthetic process +16.9548485,GO:2001008,http://purl.obolibrary.org/obo/GO_2001008,positive regulation of cellulose biosynthetic process +16.9548485,GO:2001034,http://purl.obolibrary.org/obo/GO_2001034,positive regulation of double-strand break repair via nonhomologous end joining +16.9548485,GO:2001044,http://purl.obolibrary.org/obo/GO_2001044,regulation of integrin-mediated signaling pathway +16.9548485,GO:2001045,http://purl.obolibrary.org/obo/GO_2001045,negative regulation of integrin-mediated signaling pathway +16.9548485,GO:2001102,http://purl.obolibrary.org/obo/GO_2001102,hexasaccharide transport +16.9548485,GO:2001103,http://purl.obolibrary.org/obo/GO_2001103,maltohexaose transport +16.9548485,GO:2001117,http://purl.obolibrary.org/obo/GO_2001117,tetrahydromethanopterin metabolic process +16.9548485,GO:2001118,http://purl.obolibrary.org/obo/GO_2001118,tetrahydromethanopterin biosynthetic process +16.9548485,GO:2001144,http://purl.obolibrary.org/obo/GO_2001144,"regulation of phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity" +16.9548485,GO:2001151,http://purl.obolibrary.org/obo/GO_2001151,regulation of renal water transport +16.9548485,GO:2001160,http://purl.obolibrary.org/obo/GO_2001160,regulation of histone H3-K79 methylation +16.9548485,GO:2001166,http://purl.obolibrary.org/obo/GO_2001166,regulation of histone H2B ubiquitination +16.9548485,GO:2001214,http://purl.obolibrary.org/obo/GO_2001214,positive regulation of vasculogenesis +16.9548485,GO:2001224,http://purl.obolibrary.org/obo/GO_2001224,positive regulation of neuron migration +16.9548485,GO:2001235,http://purl.obolibrary.org/obo/GO_2001235,positive regulation of apoptotic signaling pathway +16.9548485,GO:2001237,http://purl.obolibrary.org/obo/GO_2001237,negative regulation of extrinsic apoptotic signaling pathway +16.9548485,GO:2001273,http://purl.obolibrary.org/obo/GO_2001273,none +16.9548485,GO:2001287,http://purl.obolibrary.org/obo/GO_2001287,negative regulation of caveolin-mediated endocytosis +16.9548485,GO:2001304,http://purl.obolibrary.org/obo/GO_2001304,lipoxin B4 metabolic process +16.9548485,GO:2001306,http://purl.obolibrary.org/obo/GO_2001306,lipoxin B4 biosynthetic process +16.9548485,HP:0000054,http://purl.obolibrary.org/obo/HP_0000054,Micropenis +16.9548485,HP:0000086,http://purl.obolibrary.org/obo/HP_0000086,Ectopic kidney +16.9548485,HP:0000089,http://purl.obolibrary.org/obo/HP_0000089,Renal hypoplasia +16.9548485,HP:0000114,http://purl.obolibrary.org/obo/HP_0000114,Proximal tubulopathy +16.9548485,HP:0000160,http://purl.obolibrary.org/obo/HP_0000160,Narrow mouth +16.9548485,HP:0000185,http://purl.obolibrary.org/obo/HP_0000185,Cleft soft palate +16.9548485,HP:0000212,http://purl.obolibrary.org/obo/HP_0000212,Gingival overgrowth +16.9548485,HP:0000253,http://purl.obolibrary.org/obo/HP_0000253,Progressive microcephaly +16.9548485,HP:0000267,http://purl.obolibrary.org/obo/HP_0000267,Cranial asymmetry +16.9548485,HP:0000317,http://purl.obolibrary.org/obo/HP_0000317,Facial myokymia +16.9548485,HP:0000369,http://purl.obolibrary.org/obo/HP_0000369,Low-set ears +16.9548485,HP:0000384,http://purl.obolibrary.org/obo/HP_0000384,Preauricular skin tag +16.9548485,HP:0000400,http://purl.obolibrary.org/obo/HP_0000400,Macrotia +16.9548485,HP:0000402,http://purl.obolibrary.org/obo/HP_0000402,Stenosis of the external auditory canal +16.9548485,HP:0000408,http://purl.obolibrary.org/obo/HP_0000408,Progressive sensorineural hearing impairment +16.9548485,HP:0000453,http://purl.obolibrary.org/obo/HP_0000453,Choanal atresia +16.9548485,HP:0000473,http://purl.obolibrary.org/obo/HP_0000473,Torticollis +16.9548485,HP:0000475,http://purl.obolibrary.org/obo/HP_0000475,Broad neck +16.9548485,HP:0000490,http://purl.obolibrary.org/obo/HP_0000490,Deeply set eye +16.9548485,HP:0000499,http://purl.obolibrary.org/obo/HP_0000499,Abnormal eyelash morphology +16.9548485,HP:0000510,http://purl.obolibrary.org/obo/HP_0000510,Rod-cone dystrophy +16.9548485,HP:0000523,http://purl.obolibrary.org/obo/HP_0000523,Subcapsular cataract +16.9548485,HP:0000543,http://purl.obolibrary.org/obo/HP_0000543,Optic disc pallor +16.9548485,HP:0000565,http://purl.obolibrary.org/obo/HP_0000565,Esotropia +16.9548485,HP:0000582,http://purl.obolibrary.org/obo/HP_0000582,Upslanted palpebral fissure +16.9548485,HP:0000603,http://purl.obolibrary.org/obo/HP_0000603,Central scotoma +16.9548485,HP:0000622,http://purl.obolibrary.org/obo/HP_0000622,Blurred vision +16.9548485,HP:0000659,http://purl.obolibrary.org/obo/HP_0000659,Peters anomaly +16.9548485,HP:0000689,http://purl.obolibrary.org/obo/HP_0000689,Dental malocclusion +16.9548485,HP:0000690,http://purl.obolibrary.org/obo/HP_0000690,Agenesis of maxillary lateral incisor +16.9548485,HP:0000738,http://purl.obolibrary.org/obo/HP_0000738,Hallucinations +16.9548485,HP:0000772,http://purl.obolibrary.org/obo/HP_0000772,Abnormality of the ribs +16.9548485,HP:0000773,http://purl.obolibrary.org/obo/HP_0000773,Short ribs +16.9548485,HP:0000774,http://purl.obolibrary.org/obo/HP_0000774,Narrow chest +16.9548485,HP:0000796,http://purl.obolibrary.org/obo/HP_0000796,Urethral obstruction +16.9548485,HP:0000799,http://purl.obolibrary.org/obo/HP_0000799,Renal steatosis +16.9548485,HP:0000803,http://purl.obolibrary.org/obo/HP_0000803,Renal cortical cysts +16.9548485,HP:0000848,http://purl.obolibrary.org/obo/HP_0000848,Increased circulating renin level +16.9548485,HP:0000882,http://purl.obolibrary.org/obo/HP_0000882,Hypoplastic scapulae +16.9548485,HP:0000938,http://purl.obolibrary.org/obo/HP_0000938,Osteopenia +16.9548485,HP:0000973,http://purl.obolibrary.org/obo/HP_0000973,Cutis laxa +16.9548485,HP:0000974,http://purl.obolibrary.org/obo/HP_0000974,Hyperextensible skin +16.9548485,HP:0000995,http://purl.obolibrary.org/obo/HP_0000995,Melanocytic nevus +16.9548485,HP:0001030,http://purl.obolibrary.org/obo/HP_0001030,Fragile skin +16.9548485,HP:0001034,http://purl.obolibrary.org/obo/HP_0001034,Hypermelanotic macule +16.9548485,HP:0001036,http://purl.obolibrary.org/obo/HP_0001036,Parakeratosis +16.9548485,HP:0001056,http://purl.obolibrary.org/obo/HP_0001056,Milia +16.9548485,HP:0001083,http://purl.obolibrary.org/obo/HP_0001083,Ectopia lentis +16.9548485,HP:0001104,http://purl.obolibrary.org/obo/HP_0001104,Macular hypoplasia +16.9548485,HP:0001123,http://purl.obolibrary.org/obo/HP_0001123,Visual field defect +16.9548485,HP:0001144,http://purl.obolibrary.org/obo/HP_0001144,Orbital cyst +16.9548485,HP:0001171,http://purl.obolibrary.org/obo/HP_0001171,Split hand +16.9548485,HP:0001271,http://purl.obolibrary.org/obo/HP_0001271,Polyneuropathy +16.9548485,HP:0001284,http://purl.obolibrary.org/obo/HP_0001284,Areflexia +16.9548485,HP:0001311,http://purl.obolibrary.org/obo/HP_0001311,Abnormal nervous system electrophysiology +16.9548485,HP:0001319,http://purl.obolibrary.org/obo/HP_0001319,Neonatal hypotonia +16.9548485,HP:0001334,http://purl.obolibrary.org/obo/HP_0001334,Communicating hydrocephalus +16.9548485,HP:0001362,http://purl.obolibrary.org/obo/HP_0001362,Calvarial skull defect +16.9548485,HP:0001382,http://purl.obolibrary.org/obo/HP_0001382,Joint hypermobility +16.9548485,HP:0001386,http://purl.obolibrary.org/obo/HP_0001386,Joint swelling +16.9548485,HP:0001388,http://purl.obolibrary.org/obo/HP_0001388,Joint laxity +16.9548485,HP:0001410,http://purl.obolibrary.org/obo/HP_0001410,Decreased liver function +16.9548485,HP:0001417,http://purl.obolibrary.org/obo/HP_0001417,X-linked inheritance +16.9548485,HP:0001423,http://purl.obolibrary.org/obo/HP_0001423,X-linked dominant inheritance +16.9548485,HP:0001466,http://purl.obolibrary.org/obo/HP_0001466,Contiguous gene syndrome +16.9548485,HP:0001480,http://purl.obolibrary.org/obo/HP_0001480,Freckling +16.9548485,HP:0001520,http://purl.obolibrary.org/obo/HP_0001520,Large for gestational age +16.9548485,HP:0001531,http://purl.obolibrary.org/obo/HP_0001531,Failure to thrive in infancy +16.9548485,HP:0001586,http://purl.obolibrary.org/obo/HP_0001586,Vesicovaginal fistula +16.9548485,HP:0001611,http://purl.obolibrary.org/obo/HP_0001611,Nasal speech +16.9548485,HP:0001631,http://purl.obolibrary.org/obo/HP_0001631,Atrial septal defect +16.9548485,HP:0001674,http://purl.obolibrary.org/obo/HP_0001674,Complete atrioventricular canal defect +16.9548485,HP:0001678,http://purl.obolibrary.org/obo/HP_0001678,Atrioventricular block +16.9548485,HP:0001697,http://purl.obolibrary.org/obo/HP_0001697,Abnormal pericardium morphology +16.9548485,HP:0001698,http://purl.obolibrary.org/obo/HP_0001698,Pericardial effusion +16.9548485,HP:0001808,http://purl.obolibrary.org/obo/HP_0001808,Fragile nails +16.9548485,HP:0001838,http://purl.obolibrary.org/obo/HP_0001838,Rocker bottom foot +16.9548485,HP:0001839,http://purl.obolibrary.org/obo/HP_0001839,Split foot +16.9548485,HP:0001891,http://purl.obolibrary.org/obo/HP_0001891,Iron deficiency anemia +16.9548485,HP:0001908,http://purl.obolibrary.org/obo/HP_0001908,Hypoplastic anemia +16.9548485,HP:0001946,http://purl.obolibrary.org/obo/HP_0001946,Ketosis +16.9548485,HP:0001953,http://purl.obolibrary.org/obo/HP_0001953,Diabetic ketoacidosis +16.9548485,HP:0001956,http://purl.obolibrary.org/obo/HP_0001956,Truncal obesity +16.9548485,HP:0001963,http://purl.obolibrary.org/obo/HP_0001963,Abnormal speech discrimination +16.9548485,HP:0002000,http://purl.obolibrary.org/obo/HP_0002000,Short columella +16.9548485,HP:0002006,http://purl.obolibrary.org/obo/HP_0002006,Facial cleft +16.9548485,HP:0002049,http://purl.obolibrary.org/obo/HP_0002049,Proximal renal tubular acidosis +16.9548485,HP:0002061,http://purl.obolibrary.org/obo/HP_0002061,Lower limb spasticity +16.9548485,HP:0002070,http://purl.obolibrary.org/obo/HP_0002070,Limb ataxia +16.9548485,HP:0002078,http://purl.obolibrary.org/obo/HP_0002078,Truncal ataxia +16.9548485,HP:0002123,http://purl.obolibrary.org/obo/HP_0002123,Generalized myoclonic seizure +16.9548485,HP:0002176,http://purl.obolibrary.org/obo/HP_0002176,Spinal cord compression +16.9548485,HP:0002191,http://purl.obolibrary.org/obo/HP_0002191,Progressive spasticity +16.9548485,HP:0002205,http://purl.obolibrary.org/obo/HP_0002205,Recurrent respiratory infections +16.9548485,HP:0002211,http://purl.obolibrary.org/obo/HP_0002211,White forelock +16.9548485,HP:0002275,http://purl.obolibrary.org/obo/HP_0002275,Poor motor coordination +16.9548485,HP:0002283,http://purl.obolibrary.org/obo/HP_0002283,Global brain atrophy +16.9548485,HP:0002308,http://purl.obolibrary.org/obo/HP_0002308,Arnold-Chiari malformation +16.9548485,HP:0002375,http://purl.obolibrary.org/obo/HP_0002375,Hypokinesia +16.9548485,HP:0002376,http://purl.obolibrary.org/obo/HP_0002376,Developmental regression +16.9548485,HP:0002406,http://purl.obolibrary.org/obo/HP_0002406,Limb dysmetria +16.9548485,HP:0002444,http://purl.obolibrary.org/obo/HP_0002444,Hypothalamic hamartoma +16.9548485,HP:0002448,http://purl.obolibrary.org/obo/HP_0002448,Progressive encephalopathy +16.9548485,HP:0002460,http://purl.obolibrary.org/obo/HP_0002460,Distal muscle weakness +16.9548485,HP:0002465,http://purl.obolibrary.org/obo/HP_0002465,Poor speech +16.9548485,HP:0002480,http://purl.obolibrary.org/obo/HP_0002480,Hepatic encephalopathy +16.9548485,HP:0002521,http://purl.obolibrary.org/obo/HP_0002521,Hypsarrhythmia +16.9548485,HP:0002527,http://purl.obolibrary.org/obo/HP_0002527,Falls +16.9548485,HP:0002530,http://purl.obolibrary.org/obo/HP_0002530,Axial dystonia +16.9548485,HP:0002575,http://purl.obolibrary.org/obo/HP_0002575,Tracheoesophageal fistula +16.9548485,HP:0002634,http://purl.obolibrary.org/obo/HP_0002634,Arteriosclerosis +16.9548485,HP:0002690,http://purl.obolibrary.org/obo/HP_0002690,Large sella turcica +16.9548485,HP:0002744,http://purl.obolibrary.org/obo/HP_0002744,Bilateral cleft lip and palate +16.9548485,HP:0002747,http://purl.obolibrary.org/obo/HP_0002747,Respiratory insufficiency due to muscle weakness +16.9548485,HP:0002751,http://purl.obolibrary.org/obo/HP_0002751,Kyphoscoliosis +16.9548485,HP:0002753,http://purl.obolibrary.org/obo/HP_0002753,Thin bony cortex +16.9548485,HP:0002758,http://purl.obolibrary.org/obo/HP_0002758,Osteoarthritis +16.9548485,HP:0002777,http://purl.obolibrary.org/obo/HP_0002777,Tracheal stenosis +16.9548485,HP:0002816,http://purl.obolibrary.org/obo/HP_0002816,Genu recurvatum +16.9548485,HP:0002846,http://purl.obolibrary.org/obo/HP_0002846,Abnormal B cell morphology +16.9548485,HP:0002944,http://purl.obolibrary.org/obo/HP_0002944,Thoracolumbar scoliosis +16.9548485,HP:0002953,http://purl.obolibrary.org/obo/HP_0002953,Vertebral compression fracture +16.9548485,HP:0002955,http://purl.obolibrary.org/obo/HP_0002955,Granulomatosis +16.9548485,HP:0003005,http://purl.obolibrary.org/obo/HP_0003005,Ganglioneuroma +16.9548485,HP:0003048,http://purl.obolibrary.org/obo/HP_0003048,Radial head subluxation +16.9548485,HP:0003067,http://purl.obolibrary.org/obo/HP_0003067,Madelung deformity +16.9548485,HP:0003083,http://purl.obolibrary.org/obo/HP_0003083,Dislocated radial head +16.9548485,HP:0003127,http://purl.obolibrary.org/obo/HP_0003127,Hypocalciuria +16.9548485,HP:0003201,http://purl.obolibrary.org/obo/HP_0003201,Rhabdomyolysis +16.9548485,HP:0003265,http://purl.obolibrary.org/obo/HP_0003265,Neonatal hyperbilirubinemia +16.9548485,HP:0003273,http://purl.obolibrary.org/obo/HP_0003273,Hip contracture +16.9548485,HP:0003304,http://purl.obolibrary.org/obo/HP_0003304,Spondylolysis +16.9548485,HP:0003326,http://purl.obolibrary.org/obo/HP_0003326,Myalgia +16.9548485,HP:0003429,http://purl.obolibrary.org/obo/HP_0003429,CNS hypomyelination +16.9548485,HP:0003587,http://purl.obolibrary.org/obo/HP_0003587,Insidious onset +16.9548485,HP:0003621,http://purl.obolibrary.org/obo/HP_0003621,Juvenile onset +16.9548485,HP:0003623,http://purl.obolibrary.org/obo/HP_0003623,Neonatal onset +16.9548485,HP:0003677,http://purl.obolibrary.org/obo/HP_0003677,Slowly progressive +16.9548485,HP:0003679,http://purl.obolibrary.org/obo/HP_0003679,Pace of progression +16.9548485,HP:0003701,http://purl.obolibrary.org/obo/HP_0003701,Proximal muscle weakness +16.9548485,HP:0003761,http://purl.obolibrary.org/obo/HP_0003761,Calcinosis +16.9548485,HP:0003765,http://purl.obolibrary.org/obo/HP_0003765,Psoriasiform dermatitis +16.9548485,HP:0003819,http://purl.obolibrary.org/obo/HP_0003819,Death in childhood +16.9548485,HP:0004320,http://purl.obolibrary.org/obo/HP_0004320,Vaginal fistula +16.9548485,HP:0004334,http://purl.obolibrary.org/obo/HP_0004334,Dermal atrophy +16.9548485,HP:0004375,http://purl.obolibrary.org/obo/HP_0004375,Neoplasm of the nervous system +16.9548485,HP:0004376,http://purl.obolibrary.org/obo/HP_0004376,Neuroblastic tumor +16.9548485,HP:0004381,http://purl.obolibrary.org/obo/HP_0004381,Supravalvular aortic stenosis +16.9548485,HP:0004396,http://purl.obolibrary.org/obo/HP_0004396,Poor appetite +16.9548485,HP:0004502,http://purl.obolibrary.org/obo/HP_0004502,Bilateral choanal atresia +16.9548485,HP:0004841,http://purl.obolibrary.org/obo/HP_0004841,Reduced factor XII activity +16.9548485,HP:0004904,http://purl.obolibrary.org/obo/HP_0004904,Maturity-onset diabetes of the young +16.9548485,HP:0004923,http://purl.obolibrary.org/obo/HP_0004923,Hyperphenylalaninemia +16.9548485,HP:0004936,http://purl.obolibrary.org/obo/HP_0004936,Venous thrombosis +16.9548485,HP:0004952,http://purl.obolibrary.org/obo/HP_0004952,Pulmonary arteriovenous fistulas +16.9548485,HP:0005144,http://purl.obolibrary.org/obo/HP_0005144,Ventricular septal hypertrophy +16.9548485,HP:0005146,http://purl.obolibrary.org/obo/HP_0005146,Cardiac valve calcification +16.9548485,HP:0005230,http://purl.obolibrary.org/obo/HP_0005230,Biliary tract obstruction +16.9548485,HP:0005528,http://purl.obolibrary.org/obo/HP_0005528,Bone marrow hypocellularity +16.9548485,HP:0005562,http://purl.obolibrary.org/obo/HP_0005562,Multiple renal cysts +16.9548485,HP:0005684,http://purl.obolibrary.org/obo/HP_0005684,Distal arthrogryposis +16.9548485,HP:0005716,http://purl.obolibrary.org/obo/HP_0005716,Lethal skeletal dysplasia +16.9548485,HP:0005775,http://purl.obolibrary.org/obo/HP_0005775,Multiple skeletal anomalies +16.9548485,HP:0005905,http://purl.obolibrary.org/obo/HP_0005905,Abnormal cervical curvature +16.9548485,HP:0005974,http://purl.obolibrary.org/obo/HP_0005974,Episodic ketoacidosis +16.9548485,HP:0005999,http://purl.obolibrary.org/obo/HP_0005999,Ureteral atresia +16.9548485,HP:0006089,http://purl.obolibrary.org/obo/HP_0006089,Palmar hyperhidrosis +16.9548485,HP:0006380,http://purl.obolibrary.org/obo/HP_0006380,Knee flexion contracture +16.9548485,HP:0006510,http://purl.obolibrary.org/obo/HP_0006510,Chronic pulmonary obstruction +16.9548485,HP:0006516,http://purl.obolibrary.org/obo/HP_0006516,Hypersensitivity pneumonitis +16.9548485,HP:0006548,http://purl.obolibrary.org/obo/HP_0006548,Pulmonary arteriovenous malformation +16.9548485,HP:0006560,http://purl.obolibrary.org/obo/HP_0006560,Biliary hyperplasia +16.9548485,HP:0006747,http://purl.obolibrary.org/obo/HP_0006747,Ganglioneuroblastoma +16.9548485,HP:0006755,http://purl.obolibrary.org/obo/HP_0006755,Cutaneous leiomyosarcoma +16.9548485,HP:0006880,http://purl.obolibrary.org/obo/HP_0006880,Cerebellar hemangioblastoma +16.9548485,HP:0006882,http://purl.obolibrary.org/obo/HP_0006882,Severe hydrocephalus +16.9548485,HP:0007011,http://purl.obolibrary.org/obo/HP_0007011,Fourth cranial nerve palsy +16.9548485,HP:0007024,http://purl.obolibrary.org/obo/HP_0007024,Pseudobulbar paralysis +16.9548485,HP:0007034,http://purl.obolibrary.org/obo/HP_0007034,Generalized hyperreflexia +16.9548485,HP:0007108,http://purl.obolibrary.org/obo/HP_0007108,Demyelinating peripheral neuropathy +16.9548485,HP:0007112,http://purl.obolibrary.org/obo/HP_0007112,Temporal cortical atrophy +16.9548485,HP:0007185,http://purl.obolibrary.org/obo/HP_0007185,Loss of consciousness +16.9548485,HP:0007193,http://purl.obolibrary.org/obo/HP_0007193,Bilateral tonic-clonic seizure on awakening +16.9548485,HP:0007221,http://purl.obolibrary.org/obo/HP_0007221,Progressive truncal ataxia +16.9548485,HP:0007270,http://purl.obolibrary.org/obo/HP_0007270,Atypical absence seizure +16.9548485,HP:0007333,http://purl.obolibrary.org/obo/HP_0007333,Hypoplasia of the frontal lobes +16.9548485,HP:0007334,http://purl.obolibrary.org/obo/HP_0007334,Bilateral tonic-clonic seizure with focal onset +16.9548485,HP:0007607,http://purl.obolibrary.org/obo/HP_0007607,Hypohidrotic ectodermal dysplasia +16.9548485,HP:0007641,http://purl.obolibrary.org/obo/HP_0007641,Dyschromatopsia +16.9548485,HP:0007676,http://purl.obolibrary.org/obo/HP_0007676,Hypoplasia of the iris +16.9548485,HP:0007678,http://purl.obolibrary.org/obo/HP_0007678,Lacrimal duct stenosis +16.9548485,HP:0007834,http://purl.obolibrary.org/obo/HP_0007834,Progressive cataract +16.9548485,HP:0007858,http://purl.obolibrary.org/obo/HP_0007858,Chorioretinal lacunae +16.9548485,HP:0007875,http://purl.obolibrary.org/obo/HP_0007875,Congenital blindness +16.9548485,HP:0007942,http://purl.obolibrary.org/obo/HP_0007942,Internal ophthalmoplegia +16.9548485,HP:0007994,http://purl.obolibrary.org/obo/HP_0007994,Peripheral visual field loss +16.9548485,HP:0008035,http://purl.obolibrary.org/obo/HP_0008035,Retinitis pigmentosa inversa +16.9548485,HP:0008112,http://purl.obolibrary.org/obo/HP_0008112,Plantar flexion contractures +16.9548485,HP:0008288,http://purl.obolibrary.org/obo/HP_0008288,Nonketotic hyperglycinemia +16.9548485,HP:0008341,http://purl.obolibrary.org/obo/HP_0008341,Distal renal tubular acidosis +16.9548485,HP:0008398,http://purl.obolibrary.org/obo/HP_0008398,Hypoplastic fifth fingernail +16.9548485,HP:0008404,http://purl.obolibrary.org/obo/HP_0008404,Nail dystrophy +16.9548485,HP:0008496,http://purl.obolibrary.org/obo/HP_0008496,Multiple rows of eyelashes +16.9548485,HP:0008527,http://purl.obolibrary.org/obo/HP_0008527,Congenital sensorineural hearing impairment +16.9548485,HP:0008551,http://purl.obolibrary.org/obo/HP_0008551,Microtia +16.9548485,HP:0008619,http://purl.obolibrary.org/obo/HP_0008619,Bilateral sensorineural hearing impairment +16.9548485,HP:0008639,http://purl.obolibrary.org/obo/HP_0008639,Gonadal hypoplasia +16.9548485,HP:0008660,http://purl.obolibrary.org/obo/HP_0008660,Renotubular dysgenesis +16.9548485,HP:0008743,http://purl.obolibrary.org/obo/HP_0008743,Coronal hypospadias +16.9548485,HP:0008850,http://purl.obolibrary.org/obo/HP_0008850,Severe postnatal growth retardation +16.9548485,HP:0008897,http://purl.obolibrary.org/obo/HP_0008897,Postnatal growth retardation +16.9548485,HP:0008936,http://purl.obolibrary.org/obo/HP_0008936,Muscular hypotonia of the trunk +16.9548485,HP:0009063,http://purl.obolibrary.org/obo/HP_0009063,Progressive distal muscle weakness +16.9548485,HP:0009729,http://purl.obolibrary.org/obo/HP_0009729,Cardiac rhabdomyoma +16.9548485,HP:0009734,http://purl.obolibrary.org/obo/HP_0009734,Optic nerve glioma +16.9548485,HP:0009737,http://purl.obolibrary.org/obo/HP_0009737,Lisch nodules +16.9548485,HP:0009743,http://purl.obolibrary.org/obo/HP_0009743,Distichiasis +16.9548485,HP:0009756,http://purl.obolibrary.org/obo/HP_0009756,Popliteal pterygium +16.9548485,HP:0009794,http://purl.obolibrary.org/obo/HP_0009794,Branchial anomaly +16.9548485,HP:0009796,http://purl.obolibrary.org/obo/HP_0009796,Branchial cyst +16.9548485,HP:0009831,http://purl.obolibrary.org/obo/HP_0009831,Mononeuropathy +16.9548485,HP:0009900,http://purl.obolibrary.org/obo/HP_0009900,Unilateral deafness +16.9548485,HP:0009920,http://purl.obolibrary.org/obo/HP_0009920,Nevus of Ota +16.9548485,HP:0009921,http://purl.obolibrary.org/obo/HP_0009921,Duane anomaly +16.9548485,HP:0010307,http://purl.obolibrary.org/obo/HP_0010307,Stridor +16.9548485,HP:0010518,http://purl.obolibrary.org/obo/HP_0010518,Thyroglossal cyst +16.9548485,HP:0010532,http://purl.obolibrary.org/obo/HP_0010532,Paroxysmal vertigo +16.9548485,HP:0010541,http://purl.obolibrary.org/obo/HP_0010541,Cutis gyrata of scalp +16.9548485,HP:0010543,http://purl.obolibrary.org/obo/HP_0010543,Opsoclonus +16.9548485,HP:0010562,http://purl.obolibrary.org/obo/HP_0010562,Keloids +16.9548485,HP:0010609,http://purl.obolibrary.org/obo/HP_0010609,Skin tags +16.9548485,HP:0010615,http://purl.obolibrary.org/obo/HP_0010615,Angiofibromas +16.9548485,HP:0010722,http://purl.obolibrary.org/obo/HP_0010722,Asymmetry of the ears +16.9548485,HP:0010780,http://purl.obolibrary.org/obo/HP_0010780,Hyperacusis +16.9548485,HP:0010796,http://purl.obolibrary.org/obo/HP_0010796,Brainstem glioma +16.9548485,HP:0010797,http://purl.obolibrary.org/obo/HP_0010797,Hemangioblastoma +16.9548485,HP:0010815,http://purl.obolibrary.org/obo/HP_0010815,Nevus sebaceous +16.9548485,HP:0010817,http://purl.obolibrary.org/obo/HP_0010817,Linear nevus sebaceous +16.9548485,HP:0010818,http://purl.obolibrary.org/obo/HP_0010818,Generalized tonic seizure +16.9548485,HP:0010819,http://purl.obolibrary.org/obo/HP_0010819,Atonic seizure +16.9548485,HP:0010871,http://purl.obolibrary.org/obo/HP_0010871,Sensory ataxia +16.9548485,HP:0010883,http://purl.obolibrary.org/obo/HP_0010883,Aortic valve atresia +16.9548485,HP:0010884,http://purl.obolibrary.org/obo/HP_0010884,Acromelia +16.9548485,HP:0010891,http://purl.obolibrary.org/obo/HP_0010891,Morbus Scheuermann +16.9548485,HP:0010892,http://purl.obolibrary.org/obo/HP_0010892,Abnormal circulating branched chain amino acid concentration +16.9548485,HP:0010910,http://purl.obolibrary.org/obo/HP_0010910,Hypervalinemia +16.9548485,HP:0010914,http://purl.obolibrary.org/obo/HP_0010914,Abnormal circulating valine concentration +16.9548485,HP:0010920,http://purl.obolibrary.org/obo/HP_0010920,Zonular cataract +16.9548485,HP:0010921,http://purl.obolibrary.org/obo/HP_0010921,Coralliform cataract +16.9548485,HP:0010985,http://purl.obolibrary.org/obo/HP_0010985,Gonosomal inheritance +16.9548485,HP:0010989,http://purl.obolibrary.org/obo/HP_0010989,Abnormality of the intrinsic pathway +16.9548485,HP:0011008,http://purl.obolibrary.org/obo/HP_0011008,Temporal pattern +16.9548485,HP:0011068,http://purl.obolibrary.org/obo/HP_0011068,Odontoma +16.9548485,HP:0011100,http://purl.obolibrary.org/obo/HP_0011100,Intestinal atresia +16.9548485,HP:0011105,http://purl.obolibrary.org/obo/HP_0011105,Hypervolemia +16.9548485,HP:0011106,http://purl.obolibrary.org/obo/HP_0011106,Hypovolemia +16.9548485,HP:0011120,http://purl.obolibrary.org/obo/HP_0011120,Concave nasal ridge +16.9548485,HP:0011126,http://purl.obolibrary.org/obo/HP_0011126,Nephroptosis +16.9548485,HP:0011169,http://purl.obolibrary.org/obo/HP_0011169,Generalized clonic seizure +16.9548485,HP:0011172,http://purl.obolibrary.org/obo/HP_0011172,Complex febrile seizure +16.9548485,HP:0011331,http://purl.obolibrary.org/obo/HP_0011331,Hemifacial atrophy +16.9548485,HP:0011400,http://purl.obolibrary.org/obo/HP_0011400,Abnormal CNS myelination +16.9548485,HP:0011462,http://purl.obolibrary.org/obo/HP_0011462,Young adult onset +16.9548485,HP:0011468,http://purl.obolibrary.org/obo/HP_0011468,Facial tics +16.9548485,HP:0011483,http://purl.obolibrary.org/obo/HP_0011483,Anterior synechiae of the anterior chamber +16.9548485,HP:0011672,http://purl.obolibrary.org/obo/HP_0011672,Cardiac myxoma +16.9548485,HP:0011703,http://purl.obolibrary.org/obo/HP_0011703,Sinus tachycardia +16.9548485,HP:0011713,http://purl.obolibrary.org/obo/HP_0011713,Left bundle branch block +16.9548485,HP:0011736,http://purl.obolibrary.org/obo/HP_0011736,Primary hyperaldosteronism +16.9548485,HP:0011763,http://purl.obolibrary.org/obo/HP_0011763,Pituitary carcinoma +16.9548485,HP:0011838,http://purl.obolibrary.org/obo/HP_0011838,Sclerodactyly +16.9548485,HP:0011857,http://purl.obolibrary.org/obo/HP_0011857,Plasmacytoma +16.9548485,HP:0011886,http://purl.obolibrary.org/obo/HP_0011886,Hyphema +16.9548485,HP:0011968,http://purl.obolibrary.org/obo/HP_0011968,Feeding difficulties +16.9548485,HP:0012035,http://purl.obolibrary.org/obo/HP_0012035,Steatocystoma multiplex +16.9548485,HP:0012063,http://purl.obolibrary.org/obo/HP_0012063,Aneurysmal bone cyst +16.9548485,HP:0012096,http://purl.obolibrary.org/obo/HP_0012096,Intracranial epidermoid cyst +16.9548485,HP:0012108,http://purl.obolibrary.org/obo/HP_0012108,Open angle glaucoma +16.9548485,HP:0012109,http://purl.obolibrary.org/obo/HP_0012109,Angle closure glaucoma +16.9548485,HP:0012117,http://purl.obolibrary.org/obo/HP_0012117,Hyperalbuminemia +16.9548485,HP:0012122,http://purl.obolibrary.org/obo/HP_0012122,Anterior uveitis +16.9548485,HP:0012151,http://purl.obolibrary.org/obo/HP_0012151,Hemothorax +16.9548485,HP:0012181,http://purl.obolibrary.org/obo/HP_0012181,Entrapment neuropathy +16.9548485,HP:0012190,http://purl.obolibrary.org/obo/HP_0012190,T-cell lymphoma +16.9548485,HP:0012203,http://purl.obolibrary.org/obo/HP_0012203,Onychomycosis +16.9548485,HP:0012231,http://purl.obolibrary.org/obo/HP_0012231,Exudative retinal detachment +16.9548485,HP:0012232,http://purl.obolibrary.org/obo/HP_0012232,Shortened QT interval +16.9548485,HP:0012309,http://purl.obolibrary.org/obo/HP_0012309,Cutaneous amyloidosis +16.9548485,HP:0012385,http://purl.obolibrary.org/obo/HP_0012385,Camptodactyly +16.9548485,HP:0012456,http://purl.obolibrary.org/obo/HP_0012456,Medial arterial calcification +16.9548485,HP:0012473,http://purl.obolibrary.org/obo/HP_0012473,Tongue atrophy +16.9548485,HP:0012489,http://purl.obolibrary.org/obo/HP_0012489,Suprasellar arachnoid cyst +16.9548485,HP:0012508,http://purl.obolibrary.org/obo/HP_0012508,Metamorphopsia +16.9548485,HP:0012514,http://purl.obolibrary.org/obo/HP_0012514,Lower limb pain +16.9548485,HP:0012516,http://purl.obolibrary.org/obo/HP_0012516,Tetralogy of Fallot with pulmonary atresia +16.9548485,HP:0012520,http://purl.obolibrary.org/obo/HP_0012520,Dilation of Virchow-Robin spaces +16.9548485,HP:0012533,http://purl.obolibrary.org/obo/HP_0012533,Allodynia +16.9548485,HP:0012585,http://purl.obolibrary.org/obo/HP_0012585,Renal atrophy +16.9548485,HP:0012618,http://purl.obolibrary.org/obo/HP_0012618,Urachal cyst +16.9548485,HP:0012626,http://purl.obolibrary.org/obo/HP_0012626,Stage 4 chronic kidney disease +16.9548485,HP:0012627,http://purl.obolibrary.org/obo/HP_0012627,Pseudoexfoliation +16.9548485,HP:0012636,http://purl.obolibrary.org/obo/HP_0012636,Retinal vein occlusion +16.9548485,HP:0012641,http://purl.obolibrary.org/obo/HP_0012641,Decreased intracranial pressure +16.9548485,HP:0012642,http://purl.obolibrary.org/obo/HP_0012642,Cerebellar agenesis +16.9548485,HP:0012714,http://purl.obolibrary.org/obo/HP_0012714,Severe hearing impairment +16.9548485,HP:0012715,http://purl.obolibrary.org/obo/HP_0012715,Profound hearing impairment +16.9548485,HP:0012721,http://purl.obolibrary.org/obo/HP_0012721,Venous malformation +16.9548485,HP:0012741,http://purl.obolibrary.org/obo/HP_0012741,Unilateral cryptorchidism +16.9548485,HP:0012803,http://purl.obolibrary.org/obo/HP_0012803,Anisometropia +16.9548485,HP:0012851,http://purl.obolibrary.org/obo/HP_0012851,Colonic stenosis +16.9548485,HP:0012871,http://purl.obolibrary.org/obo/HP_0012871,Varicocele +16.9548485,HP:0020154,http://purl.obolibrary.org/obo/HP_0020154,Nevus comedonicus +16.9548485,HP:0025066,http://purl.obolibrary.org/obo/HP_0025066,Decreased mean corpuscular volume +16.9548485,HP:0025127,http://purl.obolibrary.org/obo/HP_0025127,Actinic keratosis +16.9548485,HP:0025190,http://purl.obolibrary.org/obo/HP_0025190,Bilateral tonic-clonic seizure with generalized onset +16.9548485,HP:0025238,http://purl.obolibrary.org/obo/HP_0025238,Foot pain +16.9548485,HP:0025246,http://purl.obolibrary.org/obo/HP_0025246,Trichilemmal cyst +16.9548485,HP:0025250,http://purl.obolibrary.org/obo/HP_0025250,Closed comedo +16.9548485,HP:0025272,http://purl.obolibrary.org/obo/HP_0025272,Melasma +16.9548485,HP:0025281,http://purl.obolibrary.org/obo/HP_0025281,Sharp +16.9548485,HP:0025314,http://purl.obolibrary.org/obo/HP_0025314,Choroidal nevus +16.9548485,HP:0025317,http://purl.obolibrary.org/obo/HP_0025317,Cubitus varus +16.9548485,HP:0025500,http://purl.obolibrary.org/obo/HP_0025500,Class II obesity +16.9548485,HP:0025501,http://purl.obolibrary.org/obo/HP_0025501,Class III obesity +16.9548485,HP:0025502,http://purl.obolibrary.org/obo/HP_0025502,Overweight +16.9548485,HP:0025511,http://purl.obolibrary.org/obo/HP_0025511,Nevus sebaceus +16.9548485,HP:0025519,http://purl.obolibrary.org/obo/HP_0025519,Multiple biliary hamartomas +16.9548485,HP:0025530,http://purl.obolibrary.org/obo/HP_0025530,Xanthomas of the palmar creases +16.9548485,HP:0025572,http://purl.obolibrary.org/obo/HP_0025572,Punctal stenosis +16.9548485,HP:0025584,http://purl.obolibrary.org/obo/HP_0025584,Hypotropia +16.9548485,HP:0025637,http://purl.obolibrary.org/obo/HP_0025637,Vasospasm +16.9548485,HP:0025643,http://purl.obolibrary.org/obo/HP_0025643,Tarlov cyst +16.9548485,HP:0030071,http://purl.obolibrary.org/obo/HP_0030071,Medulloepithelioma +16.9548485,HP:0030148,http://purl.obolibrary.org/obo/HP_0030148,Heart murmur +16.9548485,HP:0030150,http://purl.obolibrary.org/obo/HP_0030150,Plasmacytosis +16.9548485,HP:0030217,http://purl.obolibrary.org/obo/HP_0030217,Limb apraxia +16.9548485,HP:0030322,http://purl.obolibrary.org/obo/HP_0030322,Vertebral artery hypoplasia +16.9548485,HP:0030350,http://purl.obolibrary.org/obo/HP_0030350,Erythematous papule +16.9548485,HP:0030360,http://purl.obolibrary.org/obo/HP_0030360,Large cell lung carcinoma +16.9548485,HP:0030394,http://purl.obolibrary.org/obo/HP_0030394,Fallopian tube carcinoma +16.9548485,HP:0030406,http://purl.obolibrary.org/obo/HP_0030406,Primary peritoneal carcinoma +16.9548485,HP:0030409,http://purl.obolibrary.org/obo/HP_0030409,Renal transitional cell carcinoma +16.9548485,HP:0030413,http://purl.obolibrary.org/obo/HP_0030413,Squamous cell carcinoma of the tongue +16.9548485,HP:0030418,http://purl.obolibrary.org/obo/HP_0030418,Vulvar melanoma +16.9548485,HP:0030431,http://purl.obolibrary.org/obo/HP_0030431,Osteochondroma +16.9548485,HP:0030432,http://purl.obolibrary.org/obo/HP_0030432,Chondroblastoma +16.9548485,HP:0030434,http://purl.obolibrary.org/obo/HP_0030434,Pilomatrixoma +16.9548485,HP:0030451,http://purl.obolibrary.org/obo/HP_0030451,Mesenteric cyst +16.9548485,HP:0030508,http://purl.obolibrary.org/obo/HP_0030508,Retinal cavernous hemangioma +16.9548485,HP:0030649,http://purl.obolibrary.org/obo/HP_0030649,Pericentral +16.9548485,HP:0030651,http://purl.obolibrary.org/obo/HP_0030651,Multifocal +16.9548485,HP:0030693,http://purl.obolibrary.org/obo/HP_0030693,Supratentorial neoplasm +16.9548485,HP:0030715,http://purl.obolibrary.org/obo/HP_0030715,Bronchial atresia +16.9548485,HP:0030727,http://purl.obolibrary.org/obo/HP_0030727,Intracranial neurenteric cyst +16.9548485,HP:0030746,http://purl.obolibrary.org/obo/HP_0030746,Intraventricular hemorrhage +16.9548485,HP:0030815,http://purl.obolibrary.org/obo/HP_0030815,Lipoma of the tongue +16.9548485,HP:0030828,http://purl.obolibrary.org/obo/HP_0030828,Wheezing +16.9548485,HP:0030838,http://purl.obolibrary.org/obo/HP_0030838,Hip pain +16.9548485,HP:0030854,http://purl.obolibrary.org/obo/HP_0030854,Scleral staphyloma +16.9548485,HP:0030955,http://purl.obolibrary.org/obo/HP_0030955,Alcoholism +16.9548485,HP:0030961,http://purl.obolibrary.org/obo/HP_0030961,Microspherophakia +16.9548485,HP:0031021,http://purl.obolibrary.org/obo/HP_0031021,Squamous Papilloma +16.9548485,HP:0031188,http://purl.obolibrary.org/obo/HP_0031188,Genital edema +16.9548485,HP:0031273,http://purl.obolibrary.org/obo/HP_0031273,Shock +16.9548485,HP:0031274,http://purl.obolibrary.org/obo/HP_0031274,Hypovolemic shock +16.9548485,HP:0031292,http://purl.obolibrary.org/obo/HP_0031292,Cutaneous abscess +16.9548485,HP:0031313,http://purl.obolibrary.org/obo/HP_0031313,Abdominal aortic calcification +16.9548485,HP:0031350,http://purl.obolibrary.org/obo/HP_0031350,Cardiac sarcoma +16.9548485,HP:0031354,http://purl.obolibrary.org/obo/HP_0031354,Sleep onset insomnia +16.9548485,HP:0031364,http://purl.obolibrary.org/obo/HP_0031364,Ecchymosis +16.9548485,HP:0031375,http://purl.obolibrary.org/obo/HP_0031375,Refractory +16.9548485,HP:0031459,http://purl.obolibrary.org/obo/HP_0031459,Soft tissue neoplasm +16.9548485,HP:0031494,http://purl.obolibrary.org/obo/HP_0031494,Ovarian mucinous tumor +16.9548485,HP:0031500,http://purl.obolibrary.org/obo/HP_0031500,Abdominal mass +16.9548485,HP:0031522,http://purl.obolibrary.org/obo/HP_0031522,Cervical clear cell adenocarcinoma +16.9548485,HP:0031844,http://purl.obolibrary.org/obo/HP_0031844,Euphoria +16.9548485,HP:0031868,http://purl.obolibrary.org/obo/HP_0031868,Optic ataxia +16.9548485,HP:0031931,http://purl.obolibrary.org/obo/HP_0031931,Ocular flutter +16.9548485,HP:0031951,http://purl.obolibrary.org/obo/HP_0031951,Nocturnal seizures +16.9548485,HP:0031952,http://purl.obolibrary.org/obo/HP_0031952,Neurogenic claudication +16.9548485,HP:0032005,http://purl.obolibrary.org/obo/HP_0032005,Hemidystonia +16.9548485,HP:0032011,http://purl.obolibrary.org/obo/HP_0032011,Heterophoria +16.9548485,HP:0032148,http://purl.obolibrary.org/obo/HP_0032148,Episodic pain +16.9548485,HP:0032186,http://purl.obolibrary.org/obo/HP_0032186,Anal neoplasm +16.9548485,HP:0032231,http://purl.obolibrary.org/obo/HP_0032231,Hypochromia +16.9548485,HP:0032301,http://purl.obolibrary.org/obo/HP_0032301,Genital warts +16.9548485,HP:0032310,http://purl.obolibrary.org/obo/HP_0032310,Granulocytosis +16.9548485,HP:0032445,http://purl.obolibrary.org/obo/HP_0032445,Pulmonary cyst +16.9548485,HP:0032547,http://purl.obolibrary.org/obo/HP_0032547,Low intraocular pressure +16.9548485,HP:0032632,http://purl.obolibrary.org/obo/HP_0032632,Renal papillary necrosis +16.9548485,HP:0032786,http://purl.obolibrary.org/obo/HP_0032786,Migrating focal seizure +16.9548485,HP:0032794,http://purl.obolibrary.org/obo/HP_0032794,Myoclonic seizure +16.9548485,HP:0032860,http://purl.obolibrary.org/obo/HP_0032860,Generalized non-convulsive status epilepticus without coma +16.9548485,HP:0032948,http://purl.obolibrary.org/obo/HP_0032948,Renal interstitial fibrosis +16.9548485,HP:0033001,http://purl.obolibrary.org/obo/HP_0033001,Laryngeal papilloma +16.9548485,HP:0033031,http://purl.obolibrary.org/obo/HP_0033031,Hyperpyrexia +16.9548485,HP:0033041,http://purl.obolibrary.org/obo/HP_0033041,Cytokine storm +16.9548485,HP:0040021,http://purl.obolibrary.org/obo/HP_0040021,Radial deviation of the thumb +16.9548485,HP:0040129,http://purl.obolibrary.org/obo/HP_0040129,Abnormal nerve conduction velocity +16.9548485,HP:0040148,http://purl.obolibrary.org/obo/HP_0040148,Cortical myoclonus +16.9548485,HP:0040197,http://purl.obolibrary.org/obo/HP_0040197,Encephalomalacia +16.9548485,HP:0040264,http://purl.obolibrary.org/obo/HP_0040264,Jaw pain +16.9548485,HP:0040278,http://purl.obolibrary.org/obo/HP_0040278,Prolactinoma +16.9548485,HP:0040292,http://purl.obolibrary.org/obo/HP_0040292,Left hemiplegia +16.9548485,HP:0040315,http://purl.obolibrary.org/obo/HP_0040315,Tongue edema +16.9548485,HP:0100259,http://purl.obolibrary.org/obo/HP_0100259,Postaxial polydactyly +16.9548485,HP:0100318,http://purl.obolibrary.org/obo/HP_0100318,Lafora bodies +16.9548485,HP:0100495,http://purl.obolibrary.org/obo/HP_0100495,Mastocytosis +16.9548485,HP:0100537,http://purl.obolibrary.org/obo/HP_0100537,Fasciitis +16.9548485,HP:0100574,http://purl.obolibrary.org/obo/HP_0100574,Biliary tract neoplasm +16.9548485,HP:0100617,http://purl.obolibrary.org/obo/HP_0100617,Testicular seminoma +16.9548485,HP:0100662,http://purl.obolibrary.org/obo/HP_0100662,Chondritis +16.9548485,HP:0100665,http://purl.obolibrary.org/obo/HP_0100665,Angioedema +16.9548485,HP:0100710,http://purl.obolibrary.org/obo/HP_0100710,Impulsivity +16.9548485,HP:0100724,http://purl.obolibrary.org/obo/HP_0100724,Hypercoagulability +16.9548485,HP:0100727,http://purl.obolibrary.org/obo/HP_0100727,Histiocytosis +16.9548485,HP:0100729,http://purl.obolibrary.org/obo/HP_0100729,Large face +16.9548485,HP:0100730,http://purl.obolibrary.org/obo/HP_0100730,Bronchogenic cyst +16.9548485,HP:0100739,http://purl.obolibrary.org/obo/HP_0100739,Bulimia +16.9548485,HP:0100742,http://purl.obolibrary.org/obo/HP_0100742,Vascular neoplasm +16.9548485,HP:0100778,http://purl.obolibrary.org/obo/HP_0100778,Cryoglobulinemia +16.9548485,HP:0100785,http://purl.obolibrary.org/obo/HP_0100785,Insomnia +16.9548485,HP:0100814,http://purl.obolibrary.org/obo/HP_0100814,Blue nevus +16.9548485,HP:0100819,http://purl.obolibrary.org/obo/HP_0100819,Intestinal fistula +16.9548485,HP:0100832,http://purl.obolibrary.org/obo/HP_0100832,Vitreous floaters +16.9548485,HP:0100833,http://purl.obolibrary.org/obo/HP_0100833,Neoplasm of the small intestine +16.9548485,HP:0100842,http://purl.obolibrary.org/obo/HP_0100842,Septo-optic dysplasia +16.9548485,HP:0100881,http://purl.obolibrary.org/obo/HP_0100881,Congenital mesoblastic nephroma +16.9548485,HP:0100890,http://purl.obolibrary.org/obo/HP_0100890,Cyst of the ductus choledochus +16.9548485,HP:0200022,http://purl.obolibrary.org/obo/HP_0200022,Choroid plexus papilloma +16.9548485,HP:0200136,http://purl.obolibrary.org/obo/HP_0200136,Oral-pharyngeal dysphagia +16.9548485,HP:0410003,http://purl.obolibrary.org/obo/HP_0410003,Cleft maxillary alveolus +16.9548485,HP:0410133,http://purl.obolibrary.org/obo/HP_0410133,Chronic idiopathic urticaria +16.9548485,HP:0410281,http://purl.obolibrary.org/obo/HP_0410281,Dyspepsia +16.9548485,HP:0500089,http://purl.obolibrary.org/obo/HP_0500089,Optic nerve sheath meningioma +16.9548485,HP:0500167,http://purl.obolibrary.org/obo/HP_0500167,Hypergastrinemia +16.9548485,MONDO:0000022,http://purl.obolibrary.org/obo/MONDO_0000022,nocturnal enuresis +16.9548485,MONDO:0000232,http://purl.obolibrary.org/obo/MONDO_0000232,Flinders island spotted fever +16.9548485,MONDO:0000245,http://purl.obolibrary.org/obo/MONDO_0000245,tinea imbricata +16.9548485,MONDO:0000301,http://purl.obolibrary.org/obo/MONDO_0000301,ophthalmomyiasis +16.9548485,MONDO:0000332,http://purl.obolibrary.org/obo/MONDO_0000332,sennetsu fever +16.9548485,MONDO:0000407,http://purl.obolibrary.org/obo/MONDO_0000407,malignant pleural solitary fibrous tumor +16.9548485,MONDO:0000672,http://purl.obolibrary.org/obo/MONDO_0000672,form agnosia +16.9548485,MONDO:0000674,http://purl.obolibrary.org/obo/MONDO_0000674,mirror agnosia +16.9548485,MONDO:0000680,http://purl.obolibrary.org/obo/MONDO_0000680,astereognosia +16.9548485,MONDO:0000715,http://purl.obolibrary.org/obo/MONDO_0000715,lymph node adenoid cystic carcinoma +16.9548485,MONDO:0000750,http://purl.obolibrary.org/obo/MONDO_0000750,dental abscess +16.9548485,MONDO:0000882,http://purl.obolibrary.org/obo/MONDO_0000882,myeloid and lymphoid neoplasms associated with PDGFRA rearrangement +16.9548485,MONDO:0000904,http://purl.obolibrary.org/obo/MONDO_0000904,complex cortical dysplasia with other brain malformations +16.9548485,MONDO:0000908,http://purl.obolibrary.org/obo/MONDO_0000908,arrhythmogenic right ventricular dysplasia 13 +16.9548485,MONDO:0000910,http://purl.obolibrary.org/obo/MONDO_0000910,retinitis pigmentosa 6 +16.9548485,MONDO:0000939,http://purl.obolibrary.org/obo/MONDO_0000939,intracranial abscess +16.9548485,MONDO:0000954,http://purl.obolibrary.org/obo/MONDO_0000954,Meckel diverticulum cancer +16.9548485,MONDO:0000974,http://purl.obolibrary.org/obo/MONDO_0000974,axillary lipoma +16.9548485,MONDO:0000981,http://purl.obolibrary.org/obo/MONDO_0000981,Histoplasma pericarditis +16.9548485,MONDO:0001001,http://purl.obolibrary.org/obo/MONDO_0001001,baritosis +16.9548485,MONDO:0001006,http://purl.obolibrary.org/obo/MONDO_0001006,glaucomatous atrophy of optic disc +16.9548485,MONDO:0001024,http://purl.obolibrary.org/obo/MONDO_0001024,pneumonic plague +16.9548485,MONDO:0001032,http://purl.obolibrary.org/obo/MONDO_0001032,Mooren ulcer +16.9548485,MONDO:0001035,http://purl.obolibrary.org/obo/MONDO_0001035,hypopyon ulcer +16.9548485,MONDO:0001054,http://purl.obolibrary.org/obo/MONDO_0001054,double pterygium +16.9548485,MONDO:0001057,http://purl.obolibrary.org/obo/MONDO_0001057,malignant gastric granular cell tumor +16.9548485,MONDO:0001078,http://purl.obolibrary.org/obo/MONDO_0001078,tropical sprue +16.9548485,MONDO:0001090,http://purl.obolibrary.org/obo/MONDO_0001090,acute anterolateral myocardial infarction +16.9548485,MONDO:0001101,http://purl.obolibrary.org/obo/MONDO_0001101,fat necrosis of breast +16.9548485,MONDO:0001123,http://purl.obolibrary.org/obo/MONDO_0001123,chronic sphenoidal sinusitis +16.9548485,MONDO:0001132,http://purl.obolibrary.org/obo/MONDO_0001132,sexual sadism disorder +16.9548485,MONDO:0001135,http://purl.obolibrary.org/obo/MONDO_0001135,voyeurism +16.9548485,MONDO:0001139,http://purl.obolibrary.org/obo/MONDO_0001139,sexual masochism disorder +16.9548485,MONDO:0001146,http://purl.obolibrary.org/obo/MONDO_0001146,fourth cranial nerve palsy +16.9548485,MONDO:0001148,http://purl.obolibrary.org/obo/MONDO_0001148,iliac vein thrombophlebitis +16.9548485,MONDO:0001155,http://purl.obolibrary.org/obo/MONDO_0001155,gastrojejunal ulcer +16.9548485,MONDO:0001169,http://purl.obolibrary.org/obo/MONDO_0001169,spastic monoplegia +16.9548485,MONDO:0001184,http://purl.obolibrary.org/obo/MONDO_0001184,chronic rapidly progressive glomerulonephritis +16.9548485,MONDO:0001185,http://purl.obolibrary.org/obo/MONDO_0001185,dissociative amnesia +16.9548485,MONDO:0001191,http://purl.obolibrary.org/obo/MONDO_0001191,hirudiniasis +16.9548485,MONDO:0001197,http://purl.obolibrary.org/obo/MONDO_0001197,qualitative platelet defect +16.9548485,MONDO:0001229,http://purl.obolibrary.org/obo/MONDO_0001229,small intestine diverticulitis +16.9548485,MONDO:0001255,http://purl.obolibrary.org/obo/MONDO_0001255,ventilation pneumonitis +16.9548485,MONDO:0001263,http://purl.obolibrary.org/obo/MONDO_0001263,histoplasmosis retinitis +16.9548485,MONDO:0001271,http://purl.obolibrary.org/obo/MONDO_0001271,lens subluxation +16.9548485,MONDO:0001276,http://purl.obolibrary.org/obo/MONDO_0001276,expressive language disorder +16.9548485,MONDO:0001284,http://purl.obolibrary.org/obo/MONDO_0001284,endometriosis of intestine +16.9548485,MONDO:0001288,http://purl.obolibrary.org/obo/MONDO_0001288,endometriosis of rectovaginal septum and vagina +16.9548485,MONDO:0001295,http://purl.obolibrary.org/obo/MONDO_0001295,idiopathic peripheral autonomic neuropathy +16.9548485,MONDO:0001351,http://purl.obolibrary.org/obo/MONDO_0001351,uterine adnexa cancer +16.9548485,MONDO:0001372,http://purl.obolibrary.org/obo/MONDO_0001372,bladder neck cancer +16.9548485,MONDO:0001399,http://purl.obolibrary.org/obo/MONDO_0001399,ureter leiomyoma +16.9548485,MONDO:0001434,http://purl.obolibrary.org/obo/MONDO_0001434,inflammatory spondylopathy +16.9548485,MONDO:0001454,http://purl.obolibrary.org/obo/MONDO_0001454,Blessig's cysts +16.9548485,MONDO:0001471,http://purl.obolibrary.org/obo/MONDO_0001471,histoplasmosis meningitis +16.9548485,MONDO:0001506,http://purl.obolibrary.org/obo/MONDO_0001506,prostatocystitis +16.9548485,MONDO:0001562,http://purl.obolibrary.org/obo/MONDO_0001562,displacement of cardia through esophageal hiatus +16.9548485,MONDO:0001580,http://purl.obolibrary.org/obo/MONDO_0001580,lacrimal duct cancer +16.9548485,MONDO:0001604,http://purl.obolibrary.org/obo/MONDO_0001604,lagophthalmos +16.9548485,MONDO:0001611,http://purl.obolibrary.org/obo/MONDO_0001611,phlegmonous dacryocystitis +16.9548485,MONDO:0001624,http://purl.obolibrary.org/obo/MONDO_0001624,acute sphenoidal sinusitis +16.9548485,MONDO:0001663,http://purl.obolibrary.org/obo/MONDO_0001663,hole retinal cyst +16.9548485,MONDO:0001681,http://purl.obolibrary.org/obo/MONDO_0001681,diphtheritic cystitis +16.9548485,MONDO:0001714,http://purl.obolibrary.org/obo/MONDO_0001714,bejel +16.9548485,MONDO:0001715,http://purl.obolibrary.org/obo/MONDO_0001715,basilar artery occlusion +16.9548485,MONDO:0001720,http://purl.obolibrary.org/obo/MONDO_0001720,gonococcal synovitis +16.9548485,MONDO:0001747,http://purl.obolibrary.org/obo/MONDO_0001747,tibial collateral ligament bursitis +16.9548485,MONDO:0001749,http://purl.obolibrary.org/obo/MONDO_0001749,cortical senile cataract +16.9548485,MONDO:0001758,http://purl.obolibrary.org/obo/MONDO_0001758,paranasal sinus sarcoma +16.9548485,MONDO:0001777,http://purl.obolibrary.org/obo/MONDO_0001777,acute gonococcal cystitis +16.9548485,MONDO:0001783,http://purl.obolibrary.org/obo/MONDO_0001783,endometrial stromal nodule +16.9548485,MONDO:0001787,http://purl.obolibrary.org/obo/MONDO_0001787,hepatic infarction +16.9548485,MONDO:0001788,http://purl.obolibrary.org/obo/MONDO_0001788,nutmeg liver +16.9548485,MONDO:0001802,http://purl.obolibrary.org/obo/MONDO_0001802,acute tympanitis +16.9548485,MONDO:0001816,http://purl.obolibrary.org/obo/MONDO_0001816,scleroperikeratitis +16.9548485,MONDO:0001838,http://purl.obolibrary.org/obo/MONDO_0001838,acute gonococcal prostatitis +16.9548485,MONDO:0001916,http://purl.obolibrary.org/obo/MONDO_0001916,gastrointestinal tularemia +16.9548485,MONDO:0001936,http://purl.obolibrary.org/obo/MONDO_0001936,brawny scleritis +16.9548485,MONDO:0001939,http://purl.obolibrary.org/obo/MONDO_0001939,skin epithelioid hemangioma +16.9548485,MONDO:0001949,http://purl.obolibrary.org/obo/MONDO_0001949,acute thyroiditis +16.9548485,MONDO:0001952,http://purl.obolibrary.org/obo/MONDO_0001952,parietal lobe cancer +16.9548485,MONDO:0001955,http://purl.obolibrary.org/obo/MONDO_0001955,protozoal dysentery +16.9548485,MONDO:0001964,http://purl.obolibrary.org/obo/MONDO_0001964,chronic tubotympanic suppurative otitis media +16.9548485,MONDO:0001995,http://purl.obolibrary.org/obo/MONDO_0001995,sphenoid sinus squamous cell carcinoma +16.9548485,MONDO:0002006,http://purl.obolibrary.org/obo/MONDO_0002006,serous labyrinthitis +16.9548485,MONDO:0002063,http://purl.obolibrary.org/obo/MONDO_0002063,breast papillomatosis +16.9548485,MONDO:0002139,http://purl.obolibrary.org/obo/MONDO_0002139,sigmoid disease +16.9548485,MONDO:0002159,http://purl.obolibrary.org/obo/MONDO_0002159,fallopian tube leiomyosarcoma +16.9548485,MONDO:0002172,http://purl.obolibrary.org/obo/MONDO_0002172,otosalpingitis +16.9548485,MONDO:0002194,http://purl.obolibrary.org/obo/MONDO_0002194,vestibular papilloma +16.9548485,MONDO:0002197,http://purl.obolibrary.org/obo/MONDO_0002197,minor vestibular glands adenoma +16.9548485,MONDO:0002199,http://purl.obolibrary.org/obo/MONDO_0002199,benign mixed tumor of the vulva +16.9548485,MONDO:0002223,http://purl.obolibrary.org/obo/MONDO_0002223,ovarian malignant mesothelioma +16.9548485,MONDO:0002239,http://purl.obolibrary.org/obo/MONDO_0002239,post-surgical hypoinsulinemia +16.9548485,MONDO:0002262,http://purl.obolibrary.org/obo/MONDO_0002262,capillary lymphangioma +16.9548485,MONDO:0002306,http://purl.obolibrary.org/obo/MONDO_0002306,angular blepharoconjunctivitis +16.9548485,MONDO:0002330,http://purl.obolibrary.org/obo/MONDO_0002330,alcoholic psychosis +16.9548485,MONDO:0002336,http://purl.obolibrary.org/obo/MONDO_0002336,inflammatory and toxic neuropathy +16.9548485,MONDO:0002362,http://purl.obolibrary.org/obo/MONDO_0002362,serous surface papilloma +16.9548485,MONDO:0002371,http://purl.obolibrary.org/obo/MONDO_0002371,breast pericanalicular fibroadenoma +16.9548485,MONDO:0002437,http://purl.obolibrary.org/obo/MONDO_0002437,dehydration polycythemia +16.9548485,MONDO:0002451,http://purl.obolibrary.org/obo/MONDO_0002451,benign prostate phyllodes tumor +16.9548485,MONDO:0002535,http://purl.obolibrary.org/obo/MONDO_0002535,verrucous papilloma +16.9548485,MONDO:0002587,http://purl.obolibrary.org/obo/MONDO_0002587,encapsulated thymoma +16.9548485,MONDO:0002590,http://purl.obolibrary.org/obo/MONDO_0002590,combined thymoma +16.9548485,MONDO:0002641,http://purl.obolibrary.org/obo/MONDO_0002641,subclavian artery aneurysm +16.9548485,MONDO:0002646,http://purl.obolibrary.org/obo/MONDO_0002646,viral laryngitis +16.9548485,MONDO:0002653,http://purl.obolibrary.org/obo/MONDO_0002653,Paget disease of the penis +16.9548485,MONDO:0002705,http://purl.obolibrary.org/obo/MONDO_0002705,breast mucinous cystadenocarcinoma +16.9548485,MONDO:0002716,http://purl.obolibrary.org/obo/MONDO_0002716,childhood spinal cord tumor +16.9548485,MONDO:0002934,http://purl.obolibrary.org/obo/MONDO_0002934,intravascular angioleiomyoma +16.9548485,MONDO:0002936,http://purl.obolibrary.org/obo/MONDO_0002936,scrotum basal cell carcinoma +16.9548485,MONDO:0002940,http://purl.obolibrary.org/obo/MONDO_0002940,anal margin basal cell carcinoma +16.9548485,MONDO:0002965,http://purl.obolibrary.org/obo/MONDO_0002965,parovarian cyst +16.9548485,MONDO:0003025,http://purl.obolibrary.org/obo/MONDO_0003025,conventional angiosarcoma +16.9548485,MONDO:0003120,http://purl.obolibrary.org/obo/MONDO_0003120,mixed testicular germ cell cancer +16.9548485,MONDO:0003187,http://purl.obolibrary.org/obo/MONDO_0003187,Bartholin gland adenoid cystic carcinoma +16.9548485,MONDO:0003245,http://purl.obolibrary.org/obo/MONDO_0003245,aflatoxin-related hepatocellular carcinoma +16.9548485,MONDO:0003261,http://purl.obolibrary.org/obo/MONDO_0003261,papillary meningioma of the cerebellum +16.9548485,MONDO:0003292,http://purl.obolibrary.org/obo/MONDO_0003292,anus leiomyoma +16.9548485,MONDO:0003301,http://purl.obolibrary.org/obo/MONDO_0003301,dartoic leiomyoma +16.9548485,MONDO:0003350,http://purl.obolibrary.org/obo/MONDO_0003350,granular cell leiomyosarcoma +16.9548485,MONDO:0003399,http://purl.obolibrary.org/obo/MONDO_0003399,pineal region yolk sac tumor +16.9548485,MONDO:0003401,http://purl.obolibrary.org/obo/MONDO_0003401,central nervous system endodermal sinus tumor +16.9548485,MONDO:0003458,http://purl.obolibrary.org/obo/MONDO_0003458,uterine corpus adenofibroma +16.9548485,MONDO:0003461,http://purl.obolibrary.org/obo/MONDO_0003461,fallopian tube serous adenofibroma +16.9548485,MONDO:0003470,http://purl.obolibrary.org/obo/MONDO_0003470,cellular ependymoma +16.9548485,MONDO:0003480,http://purl.obolibrary.org/obo/MONDO_0003480,pineal region dysgerminoma +16.9548485,MONDO:0003515,http://purl.obolibrary.org/obo/MONDO_0003515,fallopian tube teratoma +16.9548485,MONDO:0003542,http://purl.obolibrary.org/obo/MONDO_0003542,dental pulp calcification +16.9548485,MONDO:0003600,http://purl.obolibrary.org/obo/MONDO_0003600,cutaneous liposarcoma +16.9548485,MONDO:0003602,http://purl.obolibrary.org/obo/MONDO_0003602,intracranial liposarcoma +16.9548485,MONDO:0003616,http://purl.obolibrary.org/obo/MONDO_0003616,salpingitis isthmica nodosa +16.9548485,MONDO:0003618,http://purl.obolibrary.org/obo/MONDO_0003618,pyosalpinx +16.9548485,MONDO:0003672,http://purl.obolibrary.org/obo/MONDO_0003672,posterior myocardial infarction +16.9548485,MONDO:0003678,http://purl.obolibrary.org/obo/MONDO_0003678,silent myocardial infarction +16.9548485,MONDO:0003687,http://purl.obolibrary.org/obo/MONDO_0003687,endocardium cancer +16.9548485,MONDO:0003697,http://purl.obolibrary.org/obo/MONDO_0003697,non-invasive verrucous carcinoma of the penis +16.9548485,MONDO:0003727,http://purl.obolibrary.org/obo/MONDO_0003727,animal phobia +16.9548485,MONDO:0003743,http://purl.obolibrary.org/obo/MONDO_0003743,heart malignant hemangiopericytoma +16.9548485,MONDO:0003748,http://purl.obolibrary.org/obo/MONDO_0003748,flying phobia +16.9548485,MONDO:0003752,http://purl.obolibrary.org/obo/MONDO_0003752,frontal sinus Schneiderian papilloma +16.9548485,MONDO:0003769,http://purl.obolibrary.org/obo/MONDO_0003769,herpetic gastritis +16.9548485,MONDO:0003776,http://purl.obolibrary.org/obo/MONDO_0003776,renal pelvis inverted papilloma +16.9548485,MONDO:0003777,http://purl.obolibrary.org/obo/MONDO_0003777,renal pelvis urothelial papilloma +16.9548485,MONDO:0003852,http://purl.obolibrary.org/obo/MONDO_0003852,ovarian solid teratoma +16.9548485,MONDO:0003863,http://purl.obolibrary.org/obo/MONDO_0003863,malignant melanocytic neoplasm of the peripheral nerve sheath +16.9548485,MONDO:0003868,http://purl.obolibrary.org/obo/MONDO_0003868,anterior foramen magnum meningioma +16.9548485,MONDO:0003882,http://purl.obolibrary.org/obo/MONDO_0003882,central nervous system fibrosarcoma +16.9548485,MONDO:0003891,http://purl.obolibrary.org/obo/MONDO_0003891,bladder signet ring cell adenocarcinoma +16.9548485,MONDO:0003892,http://purl.obolibrary.org/obo/MONDO_0003892,acinar lung adenocarcinoma +16.9548485,MONDO:0003910,http://purl.obolibrary.org/obo/MONDO_0003910,mixed cell uveal melanoma +16.9548485,MONDO:0003926,http://purl.obolibrary.org/obo/MONDO_0003926,neurilemmoma of the pleura +16.9548485,MONDO:0003935,http://purl.obolibrary.org/obo/MONDO_0003935,oncocytic breast carcinoma +16.9548485,MONDO:0003946,http://purl.obolibrary.org/obo/MONDO_0003946,vaginal villous adenoma +16.9548485,MONDO:0003952,http://purl.obolibrary.org/obo/MONDO_0003952,adult central nervous system choriocarcinoma +16.9548485,MONDO:0003953,http://purl.obolibrary.org/obo/MONDO_0003953,pediatric CNS choriocarcinoma +16.9548485,MONDO:0003971,http://purl.obolibrary.org/obo/MONDO_0003971,gastric pylorus carcinoma +16.9548485,MONDO:0003979,http://purl.obolibrary.org/obo/MONDO_0003979,intrahepatic bile duct cystadenoma +16.9548485,MONDO:0003990,http://purl.obolibrary.org/obo/MONDO_0003990,malignant breast myoepithelioma +16.9548485,MONDO:0003991,http://purl.obolibrary.org/obo/MONDO_0003991,villoglandular endometrial endometrioid adenocarcinoma +16.9548485,MONDO:0004012,http://purl.obolibrary.org/obo/MONDO_0004012,adult botryoid rhabdomyosarcoma +16.9548485,MONDO:0004024,http://purl.obolibrary.org/obo/MONDO_0004024,spinal cord neuroblastoma +16.9548485,MONDO:0004043,http://purl.obolibrary.org/obo/MONDO_0004043,ureter inverted papilloma +16.9548485,MONDO:0004044,http://purl.obolibrary.org/obo/MONDO_0004044,ureter urothelial papilloma +16.9548485,MONDO:0004049,http://purl.obolibrary.org/obo/MONDO_0004049,combat disorder +16.9548485,MONDO:0004082,http://purl.obolibrary.org/obo/MONDO_0004082,childhood immature teratoma of ovary +16.9548485,MONDO:0004086,http://purl.obolibrary.org/obo/MONDO_0004086,ciliary body epithelioid cell melanoma +16.9548485,MONDO:0004088,http://purl.obolibrary.org/obo/MONDO_0004088,cervical basaloid carcinoma +16.9548485,MONDO:0004090,http://purl.obolibrary.org/obo/MONDO_0004090,vulvar basaloid squamous cell carcinoma +16.9548485,MONDO:0004091,http://purl.obolibrary.org/obo/MONDO_0004091,skin basaloid carcinoma +16.9548485,MONDO:0004094,http://purl.obolibrary.org/obo/MONDO_0004094,multiple skull base meningioma +16.9548485,MONDO:0004103,http://purl.obolibrary.org/obo/MONDO_0004103,tall cell variant thyroid gland papillary carcinoma +16.9548485,MONDO:0004135,http://purl.obolibrary.org/obo/MONDO_0004135,subacute lymphocytic thyroiditis +16.9548485,MONDO:0004142,http://purl.obolibrary.org/obo/MONDO_0004142,lung combined large cell neuroendocrine carcinoma +16.9548485,MONDO:0004188,http://purl.obolibrary.org/obo/MONDO_0004188,iris spindle cell melanoma +16.9548485,MONDO:0004199,http://purl.obolibrary.org/obo/MONDO_0004199,vulvar keratinizing squamous cell carcinoma +16.9548485,MONDO:0004214,http://purl.obolibrary.org/obo/MONDO_0004214,ovarian endometrioid cystadenofibroma +16.9548485,MONDO:0004287,http://purl.obolibrary.org/obo/MONDO_0004287,pancreatic foamy gland adenocarcinoma +16.9548485,MONDO:0004292,http://purl.obolibrary.org/obo/MONDO_0004292,supraglottis verrucous carcinoma +16.9548485,MONDO:0004313,http://purl.obolibrary.org/obo/MONDO_0004313,gasserian ganglion meningioma +16.9548485,MONDO:0004314,http://purl.obolibrary.org/obo/MONDO_0004314,malignant cutaneous granular cell skin tumor +16.9548485,MONDO:0004316,http://purl.obolibrary.org/obo/MONDO_0004316,acantholytic squamous cell skin carcinoma +16.9548485,MONDO:0004318,http://purl.obolibrary.org/obo/MONDO_0004318,pulmonary type ovarian small cell carcinoma +16.9548485,MONDO:0004353,http://purl.obolibrary.org/obo/MONDO_0004353,extrahepatic biliary papillomatosis +16.9548485,MONDO:0004381,http://purl.obolibrary.org/obo/MONDO_0004381,pancreatic intraductal papillary-mucinous neoplasm with low grade dysplasia +16.9548485,MONDO:0004384,http://purl.obolibrary.org/obo/MONDO_0004384,maxillary sinus inverted papilloma +16.9548485,MONDO:0004385,http://purl.obolibrary.org/obo/MONDO_0004385,adult xanthogranuloma +16.9548485,MONDO:0004393,http://purl.obolibrary.org/obo/MONDO_0004393,mixed astrocytoma-ependymoma +16.9548485,MONDO:0004396,http://purl.obolibrary.org/obo/MONDO_0004396,cervical spinal canal and spinal cord meningioma +16.9548485,MONDO:0004414,http://purl.obolibrary.org/obo/MONDO_0004414,tamoxifen-related endometrial lesion +16.9548485,MONDO:0004436,http://purl.obolibrary.org/obo/MONDO_0004436,ovarian myxoid liposarcoma +16.9548485,MONDO:0004448,http://purl.obolibrary.org/obo/MONDO_0004448,frontal sinus inverted papilloma +16.9548485,MONDO:0004450,http://purl.obolibrary.org/obo/MONDO_0004450,carotid artery occlusion +16.9548485,MONDO:0004455,http://purl.obolibrary.org/obo/MONDO_0004455,classic congenital mesoblastic nephroma +16.9548485,MONDO:0004456,http://purl.obolibrary.org/obo/MONDO_0004456,cocaine abuse +16.9548485,MONDO:0004457,http://purl.obolibrary.org/obo/MONDO_0004457,maxillary sinus Schneiderian papilloma +16.9548485,MONDO:0004461,http://purl.obolibrary.org/obo/MONDO_0004461,vaginal tubulovillous adenoma +16.9548485,MONDO:0004462,http://purl.obolibrary.org/obo/MONDO_0004462,extrahepatic bile duct cystadenoma +16.9548485,MONDO:0004504,http://purl.obolibrary.org/obo/MONDO_0004504,penile urethral cancer +16.9548485,MONDO:0004507,http://purl.obolibrary.org/obo/MONDO_0004507,atypical breast papilloma +16.9548485,MONDO:0004511,http://purl.obolibrary.org/obo/MONDO_0004511,lower clivus meningioma +16.9548485,MONDO:0004516,http://purl.obolibrary.org/obo/MONDO_0004516,bulbomembranous urethral cancer +16.9548485,MONDO:0004528,http://purl.obolibrary.org/obo/MONDO_0004528,lymph node palisaded myofibroblastoma +16.9548485,MONDO:0004534,http://purl.obolibrary.org/obo/MONDO_0004534,microglandular adenosis of breast +16.9548485,MONDO:0004551,http://purl.obolibrary.org/obo/MONDO_0004551,Meckel diverticulitis +16.9548485,MONDO:0004554,http://purl.obolibrary.org/obo/MONDO_0004554,childhood kidney angiomyolipoma +16.9548485,MONDO:0004563,http://purl.obolibrary.org/obo/MONDO_0004563,physiological polycythemia +16.9548485,MONDO:0004568,http://purl.obolibrary.org/obo/MONDO_0004568,paralytic ileus +16.9548485,MONDO:0004578,http://purl.obolibrary.org/obo/MONDO_0004578,flat retinoschisis +16.9548485,MONDO:0004585,http://purl.obolibrary.org/obo/MONDO_0004585,polyhydramnios +16.9548485,MONDO:0004601,http://purl.obolibrary.org/obo/MONDO_0004601,ulcer of lower limbs +16.9548485,MONDO:0004607,http://purl.obolibrary.org/obo/MONDO_0004607,vallecula cancer +16.9548485,MONDO:0004615,http://purl.obolibrary.org/obo/MONDO_0004615,upper gum cancer +16.9548485,MONDO:0004642,http://purl.obolibrary.org/obo/MONDO_0004642,tonsillar pillar cancer +16.9548485,MONDO:0004661,http://purl.obolibrary.org/obo/MONDO_0004661,trachea carcinoma in situ +16.9548485,MONDO:0004662,http://purl.obolibrary.org/obo/MONDO_0004662,heterophyiasis +16.9548485,MONDO:0004672,http://purl.obolibrary.org/obo/MONDO_0004672,fasciolopsiasis +16.9548485,MONDO:0004677,http://purl.obolibrary.org/obo/MONDO_0004677,tinea nigra +16.9548485,MONDO:0004690,http://purl.obolibrary.org/obo/MONDO_0004690,tonsillar fossa cancer +16.9548485,MONDO:0004754,http://purl.obolibrary.org/obo/MONDO_0004754,rectal prolapse +16.9548485,MONDO:0004812,http://purl.obolibrary.org/obo/MONDO_0004812,acute dacryoadenitis +16.9548485,MONDO:0004876,http://purl.obolibrary.org/obo/MONDO_0004876,myocardial stunning +16.9548485,MONDO:0004895,http://purl.obolibrary.org/obo/MONDO_0004895,accommodative esotropia +16.9548485,MONDO:0004951,http://purl.obolibrary.org/obo/MONDO_0004951,susceptibility to HIV infection +16.9548485,MONDO:0004962,http://purl.obolibrary.org/obo/MONDO_0004962,stage II endometrioid carcinoma +16.9548485,MONDO:0005099,http://purl.obolibrary.org/obo/MONDO_0005099,subarachnoid hemorrhage +16.9548485,MONDO:0005118,http://purl.obolibrary.org/obo/MONDO_0005118,human granulocytic ehrlichiosis +16.9548485,MONDO:0005120,http://purl.obolibrary.org/obo/MONDO_0005120,Drosophila C virus infection +16.9548485,MONDO:0005126,http://purl.obolibrary.org/obo/MONDO_0005126,tuberculoid leprosy +16.9548485,MONDO:0005175,http://purl.obolibrary.org/obo/MONDO_0005175,aggressive insulitis +16.9548485,MONDO:0005176,http://purl.obolibrary.org/obo/MONDO_0005176,benign insulitis +16.9548485,MONDO:0005250,http://purl.obolibrary.org/obo/MONDO_0005250,placental villitis +16.9548485,MONDO:0005310,http://purl.obolibrary.org/obo/MONDO_0005310,atrial flutter +16.9548485,MONDO:0005326,http://purl.obolibrary.org/obo/MONDO_0005326,sunburn +16.9548485,MONDO:0005355,http://purl.obolibrary.org/obo/MONDO_0005355,coronary restenosis +16.9548485,MONDO:0005414,http://purl.obolibrary.org/obo/MONDO_0005414,treatment-refractory schizophrenia +16.9548485,MONDO:0005531,http://purl.obolibrary.org/obo/MONDO_0005531,morphine dependence +16.9548485,MONDO:0005640,http://purl.obolibrary.org/obo/MONDO_0005640,akinetic mutism +16.9548485,MONDO:0005655,http://purl.obolibrary.org/obo/MONDO_0005655,ascaridiasis +16.9548485,MONDO:0005695,http://purl.obolibrary.org/obo/MONDO_0005695,central nervous system AIDS arteritis +16.9548485,MONDO:0005716,http://purl.obolibrary.org/obo/MONDO_0005716,contagious pleuropneumonia +16.9548485,MONDO:0005729,http://purl.obolibrary.org/obo/MONDO_0005729,dicrocoeliasis +16.9548485,MONDO:0005734,http://purl.obolibrary.org/obo/MONDO_0005734,dourine +16.9548485,MONDO:0005748,http://purl.obolibrary.org/obo/MONDO_0005748,enzootic pneumonia of calves +16.9548485,MONDO:0005776,http://purl.obolibrary.org/obo/MONDO_0005776,gnathomiasis +16.9548485,MONDO:0005791,http://purl.obolibrary.org/obo/MONDO_0005791,herpangina +16.9548485,MONDO:0005792,http://purl.obolibrary.org/obo/MONDO_0005792,herpes simplex virus gingivostomatitis +16.9548485,MONDO:0005870,http://purl.obolibrary.org/obo/MONDO_0005870,necatoriasis +16.9548485,MONDO:0005925,http://purl.obolibrary.org/obo/MONDO_0005925,pneumonic pasteurellosis +16.9548485,MONDO:0005929,http://purl.obolibrary.org/obo/MONDO_0005929,postpartum depression +16.9548485,MONDO:0005977,http://purl.obolibrary.org/obo/MONDO_0005977,tabes dorsalis +16.9548485,MONDO:0005995,http://purl.obolibrary.org/obo/MONDO_0005995,trichostrongylosis +16.9548485,MONDO:0006093,http://purl.obolibrary.org/obo/MONDO_0006093,ascending colon neuroendocrine tumor G1 +16.9548485,MONDO:0006141,http://purl.obolibrary.org/obo/MONDO_0006141,cervical villoglandular adenocarcinoma +16.9548485,MONDO:0006144,http://purl.obolibrary.org/obo/MONDO_0006144,cervical Wilms tumor +16.9548485,MONDO:0006150,http://purl.obolibrary.org/obo/MONDO_0006150,colon Burkitt lymphoma +16.9548485,MONDO:0006200,http://purl.obolibrary.org/obo/MONDO_0006200,epithelioid cell uveal melanoma +16.9548485,MONDO:0006201,http://purl.obolibrary.org/obo/MONDO_0006201,ethmoid sinus adenoid cystic carcinoma +16.9548485,MONDO:0006207,http://purl.obolibrary.org/obo/MONDO_0006207,fallopian tube carcinosarcoma +16.9548485,MONDO:0006281,http://purl.obolibrary.org/obo/MONDO_0006281,lung signet ring cell carcinoma +16.9548485,MONDO:0006326,http://purl.obolibrary.org/obo/MONDO_0006326,ocular melanoma with extraocular extension +16.9548485,MONDO:0006348,http://purl.obolibrary.org/obo/MONDO_0006348,pancreatic small cell neuroendocrine carcinoma +16.9548485,MONDO:0006417,http://purl.obolibrary.org/obo/MONDO_0006417,small intestinal diffuse large B-cell lymphoma +16.9548485,MONDO:0006421,http://purl.obolibrary.org/obo/MONDO_0006421,small intestinal tubular adenoma +16.9548485,MONDO:0006487,http://purl.obolibrary.org/obo/MONDO_0006487,vaginal adenoid cystic carcinoma +16.9548485,MONDO:0006488,http://purl.obolibrary.org/obo/MONDO_0006488,vaginal carcinosarcoma +16.9548485,MONDO:0006531,http://purl.obolibrary.org/obo/MONDO_0006531,cholesteatoma of attic +16.9548485,MONDO:0006556,http://purl.obolibrary.org/obo/MONDO_0006556,hand dermatosis +16.9548485,MONDO:0006561,http://purl.obolibrary.org/obo/MONDO_0006561,eyelid hypopigmentation +16.9548485,MONDO:0006569,http://purl.obolibrary.org/obo/MONDO_0006569,leg dermatosis +16.9548485,MONDO:0006576,http://purl.obolibrary.org/obo/MONDO_0006576,Ludwig's angina +16.9548485,MONDO:0006652,http://purl.obolibrary.org/obo/MONDO_0006652,anterolateral myocardial infarction +16.9548485,MONDO:0006735,http://purl.obolibrary.org/obo/MONDO_0006735,duodenogastric reflux +16.9548485,MONDO:0006762,http://purl.obolibrary.org/obo/MONDO_0006762,freemartinism +16.9548485,MONDO:0006880,http://purl.obolibrary.org/obo/MONDO_0006880,oral leukoedema +16.9548485,MONDO:0006891,http://purl.obolibrary.org/obo/MONDO_0006891,partial motor epilepsy +16.9548485,MONDO:0006917,http://purl.obolibrary.org/obo/MONDO_0006917,posterior cerebral artery infarction +16.9548485,MONDO:0007005,http://purl.obolibrary.org/obo/MONDO_0007005,ulcerative proctosigmoiditis +16.9548485,MONDO:0007007,http://purl.obolibrary.org/obo/MONDO_0007007,Ureaplasma urethritis +16.9548485,MONDO:0007009,http://purl.obolibrary.org/obo/MONDO_0007009,ureterolithiasis +16.9548485,MONDO:0007036,http://purl.obolibrary.org/obo/MONDO_0007036,Achard syndrome +16.9548485,MONDO:0007046,http://purl.obolibrary.org/obo/MONDO_0007046,hereditary papulotranslucent acrokeratoderma +16.9548485,MONDO:0007074,http://purl.obolibrary.org/obo/MONDO_0007074,ainhum +16.9548485,MONDO:0007094,http://purl.obolibrary.org/obo/MONDO_0007094,amelogenesis imperfecta type 1A +16.9548485,MONDO:0007106,http://purl.obolibrary.org/obo/MONDO_0007106,anal sphincter dysplasia +16.9548485,MONDO:0007110,http://purl.obolibrary.org/obo/MONDO_0007110,Diamond-Blackfan anemia 1 +16.9548485,MONDO:0007116,http://purl.obolibrary.org/obo/MONDO_0007116,hereditary neurocutaneous angioma +16.9548485,MONDO:0007121,http://purl.obolibrary.org/obo/MONDO_0007121,"aniridia, microcornea, and spontaneously Reabsorbed cataract" +16.9548485,MONDO:0007156,http://purl.obolibrary.org/obo/MONDO_0007156,"arthritis, sacroiliac" +16.9548485,MONDO:0007184,http://purl.obolibrary.org/obo/MONDO_0007184,"alopecia, androgenetic, 1" +16.9548485,MONDO:0007200,http://purl.obolibrary.org/obo/MONDO_0007200,blepharonasofacial malformation syndrome +16.9548485,MONDO:0007204,http://purl.obolibrary.org/obo/MONDO_0007204,Cole-Carpenter syndrome 1 +16.9548485,MONDO:0007213,http://purl.obolibrary.org/obo/MONDO_0007213,Ballard syndrome +16.9548485,MONDO:0007215,http://purl.obolibrary.org/obo/MONDO_0007215,brachydactyly type A1 +16.9548485,MONDO:0007217,http://purl.obolibrary.org/obo/MONDO_0007217,brachydactyly type A3 +16.9548485,MONDO:0007234,http://purl.obolibrary.org/obo/MONDO_0007234,branchial myoclonus with spastic paraparesis and cerebellar ataxia +16.9548485,MONDO:0007236,http://purl.obolibrary.org/obo/MONDO_0007236,branchiootorenal syndrome 1 +16.9548485,MONDO:0007245,http://purl.obolibrary.org/obo/MONDO_0007245,neurofibromatosis type 6 +16.9548485,MONDO:0007283,http://purl.obolibrary.org/obo/MONDO_0007283,cataract 42 +16.9548485,MONDO:0007288,http://purl.obolibrary.org/obo/MONDO_0007288,cataract 6 multiple types +16.9548485,MONDO:0007290,http://purl.obolibrary.org/obo/MONDO_0007290,cataract 5 multiple types +16.9548485,MONDO:0007302,http://purl.obolibrary.org/obo/MONDO_0007302,cervical hypertrichosis with underlying kyphoscoliosis +16.9548485,MONDO:0007320,http://purl.obolibrary.org/obo/MONDO_0007320,chondrocalcinosis due to apatite crystal deposition +16.9548485,MONDO:0007384,http://purl.obolibrary.org/obo/MONDO_0007384,congenital trigeminal anesthesia +16.9548485,MONDO:0007387,http://purl.obolibrary.org/obo/MONDO_0007387,Cornelia de Lange syndrome 1 +16.9548485,MONDO:0007392,http://purl.obolibrary.org/obo/MONDO_0007392,coxoauricular syndrome +16.9548485,MONDO:0007396,http://purl.obolibrary.org/obo/MONDO_0007396,"dysostosis, Stanescu type" +16.9548485,MONDO:0007399,http://purl.obolibrary.org/obo/MONDO_0007399,TWIST1-related craniosynostosis +16.9548485,MONDO:0007420,http://purl.obolibrary.org/obo/MONDO_0007420,autosomal dominant deafness - onychodystrophy syndrome +16.9548485,MONDO:0007463,http://purl.obolibrary.org/obo/MONDO_0007463,distal osteosclerosis +16.9548485,MONDO:0007504,http://purl.obolibrary.org/obo/MONDO_0007504,thickened earlobes-conductive deafness syndrome +16.9548485,MONDO:0007512,http://purl.obolibrary.org/obo/MONDO_0007512,ectodermal dysplasia syndrome with distinctive facial appearance and preaxial polydactyly of feet +16.9548485,MONDO:0007549,http://purl.obolibrary.org/obo/MONDO_0007549,generalized dominant dystrophic epidermolysis bullosa +16.9548485,MONDO:0007646,http://purl.obolibrary.org/obo/MONDO_0007646,Gamstorp-Wohlfart syndrome +16.9548485,MONDO:0007662,http://purl.obolibrary.org/obo/MONDO_0007662,anterior segment dysgenesis 4 +16.9548485,MONDO:0007666,http://purl.obolibrary.org/obo/MONDO_0007666,glaucoma-sleep apnea syndrome +16.9548485,MONDO:0007679,http://purl.obolibrary.org/obo/MONDO_0007679,GMS syndrome +16.9548485,MONDO:0007729,http://purl.obolibrary.org/obo/MONDO_0007729,developmental dysplasia of the hip 1 +16.9548485,MONDO:0007730,http://purl.obolibrary.org/obo/MONDO_0007730,histiocytic dermatoarthritis +16.9548485,MONDO:0007757,http://purl.obolibrary.org/obo/MONDO_0007757,hyperkeratosis-hyperpigmentation syndrome +16.9548485,MONDO:0007778,http://purl.obolibrary.org/obo/MONDO_0007778,none +16.9548485,MONDO:0007805,http://purl.obolibrary.org/obo/MONDO_0007805,hypotrichosis 2 +16.9548485,MONDO:0007806,http://purl.obolibrary.org/obo/MONDO_0007806,hypotrichosis 4 +16.9548485,MONDO:0007808,http://purl.obolibrary.org/obo/MONDO_0007808,ichthyosis hystrix of Curth-Macklin +16.9548485,MONDO:0007830,http://purl.obolibrary.org/obo/MONDO_0007830,insensitivity to pain with hyperplastic Myelinopathy +16.9548485,MONDO:0007842,http://purl.obolibrary.org/obo/MONDO_0007842,Ehlers-Danlos syndrome type 11 +16.9548485,MONDO:0007850,http://purl.obolibrary.org/obo/MONDO_0007850,autosomal dominant keratitis-ichthyosis-deafness syndrome +16.9548485,MONDO:0007852,http://purl.obolibrary.org/obo/MONDO_0007852,palmoplantar keratoderma-deafness syndrome +16.9548485,MONDO:0007865,http://purl.obolibrary.org/obo/MONDO_0007865,knuckle pads +16.9548485,MONDO:0007868,http://purl.obolibrary.org/obo/MONDO_0007868,hyperekplexia 1 +16.9548485,MONDO:0007894,http://purl.obolibrary.org/obo/MONDO_0007894,Leri pleonosteosis +16.9548485,MONDO:0007903,http://purl.obolibrary.org/obo/MONDO_0007903,Li-Fraumeni syndrome 1 +16.9548485,MONDO:0007904,http://purl.obolibrary.org/obo/MONDO_0007904,median nodule of the upper lip +16.9548485,MONDO:0007955,http://purl.obolibrary.org/obo/MONDO_0007955,Meckel diverticulum +16.9548485,MONDO:0007999,http://purl.obolibrary.org/obo/MONDO_0007999,holoprosencephaly 2 +16.9548485,MONDO:0008021,http://purl.obolibrary.org/obo/MONDO_0008021,Cowden syndrome 1 +16.9548485,MONDO:0008046,http://purl.obolibrary.org/obo/MONDO_0008046,autosomal dominant myoglobinuria +16.9548485,MONDO:0008052,http://purl.obolibrary.org/obo/MONDO_0008052,myopathy with storage of glycoproteins and Glycosaminoglycans +16.9548485,MONDO:0008058,http://purl.obolibrary.org/obo/MONDO_0008058,cylindrical spirals myopathy +16.9548485,MONDO:0008135,http://purl.obolibrary.org/obo/MONDO_0008135,optic atrophy 13 with retinal and foveal abnormalities +16.9548485,MONDO:0008139,http://purl.obolibrary.org/obo/MONDO_0008139,OSLAM syndrome +16.9548485,MONDO:0008188,http://purl.obolibrary.org/obo/MONDO_0008188,"papillomatosis, confluent and reticulated" +16.9548485,MONDO:0008189,http://purl.obolibrary.org/obo/MONDO_0008189,"papillomatosis, florid, of nipple" +16.9548485,MONDO:0008192,http://purl.obolibrary.org/obo/MONDO_0008192,paragangliomas 1 +16.9548485,MONDO:0008198,http://purl.obolibrary.org/obo/MONDO_0008198,parietal foramina with cleidocranial dysplasia +16.9548485,MONDO:0008240,http://purl.obolibrary.org/obo/MONDO_0008240,6-phosphogluconolactonase deficiency +16.9548485,MONDO:0008289,http://purl.obolibrary.org/obo/MONDO_0008289,brain small vessel disease 1 with or without ocular anomalies +16.9548485,MONDO:0008320,http://purl.obolibrary.org/obo/MONDO_0008320,Protrusio acetabuli +16.9548485,MONDO:0008349,http://purl.obolibrary.org/obo/MONDO_0008349,"pulmonic stenosis, atrial septal defect, and unique electrocardiographic abnormalities" +16.9548485,MONDO:0008350,http://purl.obolibrary.org/obo/MONDO_0008350,pulmonic stenosis and deafness +16.9548485,MONDO:0008353,http://purl.obolibrary.org/obo/MONDO_0008353,pruritic urticarial papules and plaques of pregnancy +16.9548485,MONDO:0008357,http://purl.obolibrary.org/obo/MONDO_0008357,radial hypoplasia-triphalangeal thumbs-hypospadias-maxillary diastema syndrome +16.9548485,MONDO:0008363,http://purl.obolibrary.org/obo/MONDO_0008363,raindrop hypopigmentation +16.9548485,MONDO:0008379,http://purl.obolibrary.org/obo/MONDO_0008379,retinitis pigmentosa 10 +16.9548485,MONDO:0008386,http://purl.obolibrary.org/obo/MONDO_0008386,Axenfeld-Rieger syndrome type 1 +16.9548485,MONDO:0008387,http://purl.obolibrary.org/obo/MONDO_0008387,ring dermoid of cornea +16.9548485,MONDO:0008393,http://purl.obolibrary.org/obo/MONDO_0008393,Rubinstein-Taybi syndrome due to CREBBP mutations +16.9548485,MONDO:0008407,http://purl.obolibrary.org/obo/MONDO_0008407,"neurogenic scapuloperoneal syndrome, Kaeser type" +16.9548485,MONDO:0008445,http://purl.obolibrary.org/obo/MONDO_0008445,delayed speech-facial asymmetry-strabismus-ear lobe creases syndrome +16.9548485,MONDO:0008460,http://purl.obolibrary.org/obo/MONDO_0008460,splenogonadal fusion-limb defects-micrognathia syndrome +16.9548485,MONDO:0008464,http://purl.obolibrary.org/obo/MONDO_0008464,split hand-foot malformation 1 +16.9548485,MONDO:0008467,http://purl.obolibrary.org/obo/MONDO_0008467,Czeizel-Losonci syndrome +16.9548485,MONDO:0008474,http://purl.obolibrary.org/obo/MONDO_0008474,"spondyloepiphyseal dysplasia tarda, autosomal dominant" +16.9548485,MONDO:0008478,http://purl.obolibrary.org/obo/MONDO_0008478,"spondylometaphyseal dysplasia, Schmidt type" +16.9548485,MONDO:0008490,http://purl.obolibrary.org/obo/MONDO_0008490,"otospondylomegaepiphyseal dysplasia, autosomal dominant" +16.9548485,MONDO:0008512,http://purl.obolibrary.org/obo/MONDO_0008512,syndactyly type 1 +16.9548485,MONDO:0008519,http://purl.obolibrary.org/obo/MONDO_0008519,multiple synostoses syndrome 1 +16.9548485,MONDO:0008543,http://purl.obolibrary.org/obo/MONDO_0008543,tetralogy of fallot and glaucoma +16.9548485,MONDO:0008553,http://purl.obolibrary.org/obo/MONDO_0008553,platelet-type bleeding disorder 17 +16.9548485,MONDO:0008556,http://purl.obolibrary.org/obo/MONDO_0008556,"thrombocytopenia, cyclic" +16.9548485,MONDO:0008618,http://purl.obolibrary.org/obo/MONDO_0008618,"mesomelic dwarfism, Reinhardt-Pfeiffer type" +16.9548485,MONDO:0008624,http://purl.obolibrary.org/obo/MONDO_0008624,Upington disease +16.9548485,MONDO:0008664,http://purl.obolibrary.org/obo/MONDO_0008664,none +16.9548485,MONDO:0008666,http://purl.obolibrary.org/obo/MONDO_0008666,volvulus of midgut +16.9548485,MONDO:0008677,http://purl.obolibrary.org/obo/MONDO_0008677,widow's peak +16.9548485,MONDO:0008719,http://purl.obolibrary.org/obo/MONDO_0008719,"acrorenal syndrome, autosomal recessive" +16.9548485,MONDO:0008726,http://purl.obolibrary.org/obo/MONDO_0008726,Antley-Bixler syndrome with genital anomalies and disordered steroidogenesis +16.9548485,MONDO:0008738,http://purl.obolibrary.org/obo/MONDO_0008738,"aganglionosis, total intestinal" +16.9548485,MONDO:0008742,http://purl.obolibrary.org/obo/MONDO_0008742,autosomal dominant severe congenital neutropenia +16.9548485,MONDO:0008749,http://purl.obolibrary.org/obo/MONDO_0008749,pseudohypoparathyroidism type 2 +16.9548485,MONDO:0008798,http://purl.obolibrary.org/obo/MONDO_0008798,nonsyndromic congenital nail disorder 4 +16.9548485,MONDO:0008799,http://purl.obolibrary.org/obo/MONDO_0008799,anophthalmia/microphthalmia-esophageal atresia syndrome +16.9548485,MONDO:0008808,http://purl.obolibrary.org/obo/MONDO_0008808,aplasia cutis congenita-intestinal lymphangiectasia syndrome +16.9548485,MONDO:0008833,http://purl.obolibrary.org/obo/MONDO_0008833,renal-hepatic-pancreatic dysplasia 1 +16.9548485,MONDO:0008839,http://purl.obolibrary.org/obo/MONDO_0008839,ataxia-microcephaly-cataract syndrome +16.9548485,MONDO:0008841,http://purl.obolibrary.org/obo/MONDO_0008841,ataxia-telangiectasia with generalized skin pigmentation and early death +16.9548485,MONDO:0008864,http://purl.obolibrary.org/obo/MONDO_0008864,Biemond syndrome type 2 +16.9548485,MONDO:0008880,http://purl.obolibrary.org/obo/MONDO_0008880,Bowen syndrome of multiple malformations +16.9548485,MONDO:0008890,http://purl.obolibrary.org/obo/MONDO_0008890,progressive bulbar palsy +16.9548485,MONDO:0008902,http://purl.obolibrary.org/obo/MONDO_0008902,camptodactyly-ichthyosis syndrome +16.9548485,MONDO:0008936,http://purl.obolibrary.org/obo/MONDO_0008936,cerebellar ataxia and neurosensory deafness +16.9548485,MONDO:0008953,http://purl.obolibrary.org/obo/MONDO_0008953,peroxisome biogenesis disorder 1A (Zellweger) +16.9548485,MONDO:0008968,http://purl.obolibrary.org/obo/MONDO_0008968,"cholestasis with gallstone, ataxia, and visual disturbance" +16.9548485,MONDO:0009036,http://purl.obolibrary.org/obo/MONDO_0009036,"cardiocranial syndrome, Pfeiffer type" +16.9548485,MONDO:0009038,http://purl.obolibrary.org/obo/MONDO_0009038,craniosynostosis-fibular aplasia syndrome +16.9548485,MONDO:0009060,http://purl.obolibrary.org/obo/MONDO_0009060,cystic disease of lung +16.9548485,MONDO:0009064,http://purl.obolibrary.org/obo/MONDO_0009064,ocular cystinosis +16.9548485,MONDO:0009075,http://purl.obolibrary.org/obo/MONDO_0009075,Dandy-Walker malformation-postaxial polydactyly syndrome +16.9548485,MONDO:0009076,http://purl.obolibrary.org/obo/MONDO_0009076,autosomal recessive nonsyndromic deafness 1A +16.9548485,MONDO:0009086,http://purl.obolibrary.org/obo/MONDO_0009086,deafness-small bowel diverticulosis-neuropathy syndrome +16.9548485,MONDO:0009089,http://purl.obolibrary.org/obo/MONDO_0009089,deafness-oligodontia syndrome +16.9548485,MONDO:0009097,http://purl.obolibrary.org/obo/MONDO_0009097,"persistent hyperplastic primary vitreous, autosomal recessive" +16.9548485,MONDO:0009132,http://purl.obolibrary.org/obo/MONDO_0009132,dysautonomia-like disorder +16.9548485,MONDO:0009158,http://purl.obolibrary.org/obo/MONDO_0009158,"Ehlers-Danlos syndrome, fibronectinemic type" +16.9548485,MONDO:0009182,http://purl.obolibrary.org/obo/MONDO_0009182,junctional epidermolysis bullosa Herlitz type +16.9548485,MONDO:0009195,http://purl.obolibrary.org/obo/MONDO_0009195,erythema of acral regions +16.9548485,MONDO:0009204,http://purl.obolibrary.org/obo/MONDO_0009204,lethal faciocardiomelic dysplasia +16.9548485,MONDO:0009222,http://purl.obolibrary.org/obo/MONDO_0009222,Gollop-Wolfgang complex +16.9548485,MONDO:0009243,http://purl.obolibrary.org/obo/MONDO_0009243,Fraser-like syndrome +16.9548485,MONDO:0009277,http://purl.obolibrary.org/obo/MONDO_0009277,glaucoma 3A +16.9548485,MONDO:0009314,http://purl.obolibrary.org/obo/MONDO_0009314,none +16.9548485,MONDO:0009325,http://purl.obolibrary.org/obo/MONDO_0009325,none +16.9548485,MONDO:0009335,http://purl.obolibrary.org/obo/MONDO_0009335,"hemolytic uremic syndrome, atypical, susceptibility to, 1" +16.9548485,MONDO:0009337,http://purl.obolibrary.org/obo/MONDO_0009337,Hennekam lymphangiectasia-lymphedema syndrome 1 +16.9548485,MONDO:0009339,http://purl.obolibrary.org/obo/MONDO_0009339,congenital bile acid synthesis defect 2 +16.9548485,MONDO:0009346,http://purl.obolibrary.org/obo/MONDO_0009346,histidinuria due to a renal tubular defect +16.9548485,MONDO:0009362,http://purl.obolibrary.org/obo/MONDO_0009362,growth delay-hydrocephaly-lung hypoplasia syndrome +16.9548485,MONDO:0009390,http://purl.obolibrary.org/obo/MONDO_0009390,hyperlysinuria with hyperammonemia +16.9548485,MONDO:0009399,http://purl.obolibrary.org/obo/MONDO_0009399,"hyperphosphatemia, polyuria, and seizures" +16.9548485,MONDO:0009402,http://purl.obolibrary.org/obo/MONDO_0009402,acrofrontofacionasal dysostosis 2 +16.9548485,MONDO:0009403,http://purl.obolibrary.org/obo/MONDO_0009403,hypertelorism and tetralogy of fallot +16.9548485,MONDO:0009422,http://purl.obolibrary.org/obo/MONDO_0009422,hypohidrosis with abnormal palmar dermal Ridges +16.9548485,MONDO:0009427,http://purl.obolibrary.org/obo/MONDO_0009427,none +16.9548485,MONDO:0009433,http://purl.obolibrary.org/obo/MONDO_0009433,hypoplastic left heart syndrome 1 +16.9548485,MONDO:0009439,http://purl.obolibrary.org/obo/MONDO_0009439,autosomal recessive congenital ichthyosis 2 +16.9548485,MONDO:0009441,http://purl.obolibrary.org/obo/MONDO_0009441,autosomal recessive congenital ichthyosis 1 +16.9548485,MONDO:0009442,http://purl.obolibrary.org/obo/MONDO_0009442,ichthyosis congenita with biliary atresia +16.9548485,MONDO:0009461,http://purl.obolibrary.org/obo/MONDO_0009461,male infertility due to large-headed multiflagellar polyploid spermatozoa +16.9548485,MONDO:0009463,http://purl.obolibrary.org/obo/MONDO_0009463,"internal carotid arteries, hypoplasia of" +16.9548485,MONDO:0009487,http://purl.obolibrary.org/obo/MONDO_0009487,keratoconus and congenital hip dysplasia +16.9548485,MONDO:0009502,http://purl.obolibrary.org/obo/MONDO_0009502,pyruvate dehydrogenase E2 deficiency +16.9548485,MONDO:0009507,http://purl.obolibrary.org/obo/MONDO_0009507,Lambert syndrome +16.9548485,MONDO:0009508,http://purl.obolibrary.org/obo/MONDO_0009508,Lambotte syndrome +16.9548485,MONDO:0009511,http://purl.obolibrary.org/obo/MONDO_0009511,"Larsen-like syndrome, B3GAT3 type" +16.9548485,MONDO:0009524,http://purl.obolibrary.org/obo/MONDO_0009524,intellectual disability-spasticity-ectrodactyly syndrome +16.9548485,MONDO:0009525,http://purl.obolibrary.org/obo/MONDO_0009525,split hand-foot malformation 3 +16.9548485,MONDO:0009540,http://purl.obolibrary.org/obo/MONDO_0009540,chronic mucocutaneous candidiasis due to lymphokine deficiency +16.9548485,MONDO:0009550,http://purl.obolibrary.org/obo/MONDO_0009550,renal hypomagnesemia 3 +16.9548485,MONDO:0009555,http://purl.obolibrary.org/obo/MONDO_0009555,malocclusion and short stature +16.9548485,MONDO:0009557,http://purl.obolibrary.org/obo/MONDO_0009557,mandibuloacral dysplasia with type A lipodystrophy +16.9548485,MONDO:0009558,http://purl.obolibrary.org/obo/MONDO_0009558,Treacher Collins syndrome 3 +16.9548485,MONDO:0009572,http://purl.obolibrary.org/obo/MONDO_0009572,autosomal recessive familial Mediterranean fever +16.9548485,MONDO:0009585,http://purl.obolibrary.org/obo/MONDO_0009585,encephalopathy due to beta-mercaptolactate-cysteine disulfiduria +16.9548485,MONDO:0009592,http://purl.obolibrary.org/obo/MONDO_0009592,metaphyseal acroscyphodysplasia +16.9548485,MONDO:0009600,http://purl.obolibrary.org/obo/MONDO_0009600,"metaphyseal dysplasia, anetoderma, and optic atrophy" +16.9548485,MONDO:0009606,http://purl.obolibrary.org/obo/MONDO_0009606,methemoglobinemia due to deficiency of methemoglobin reductase +16.9548485,MONDO:0009620,http://purl.obolibrary.org/obo/MONDO_0009620,Say-Barber-Miller syndrome +16.9548485,MONDO:0009640,http://purl.obolibrary.org/obo/MONDO_0009640,none +16.9548485,MONDO:0009679,http://purl.obolibrary.org/obo/MONDO_0009679,arthrogryposis due to muscular dystrophy +16.9548485,MONDO:0009680,http://purl.obolibrary.org/obo/MONDO_0009680,congenital muscular dystrophy-infantile cataract-hypogonadism syndrome +16.9548485,MONDO:0009739,http://purl.obolibrary.org/obo/MONDO_0009739,none +16.9548485,MONDO:0009765,http://purl.obolibrary.org/obo/MONDO_0009765,ocular myopathy with curare sensitivity +16.9548485,MONDO:0009766,http://purl.obolibrary.org/obo/MONDO_0009766,oculocerebral hypopigmentation syndrome of Preus +16.9548485,MONDO:0009816,http://purl.obolibrary.org/obo/MONDO_0009816,autosomal recessive osteopetrosis 2 +16.9548485,MONDO:0009836,http://purl.obolibrary.org/obo/MONDO_0009836,"pancreatitis, sclerosing cholangitis, and sicca complex" +16.9548485,MONDO:0009838,http://purl.obolibrary.org/obo/MONDO_0009838,Parana hard-skin syndrome +16.9548485,MONDO:0009859,http://purl.obolibrary.org/obo/MONDO_0009859,PHAVER syndrome +16.9548485,MONDO:0009868,http://purl.obolibrary.org/obo/MONDO_0009868,glycogen storage disease IXb +16.9548485,MONDO:0009870,http://purl.obolibrary.org/obo/MONDO_0009870,pili torti +16.9548485,MONDO:0009873,http://purl.obolibrary.org/obo/MONDO_0009873,pilodental dysplasia-refractive errors syndrome +16.9548485,MONDO:0009890,http://purl.obolibrary.org/obo/MONDO_0009890,Gillessen-Kaesbach-Nishimura syndrome +16.9548485,MONDO:0009905,http://purl.obolibrary.org/obo/MONDO_0009905,urban-Rogers-Meyer syndrome +16.9548485,MONDO:0009907,http://purl.obolibrary.org/obo/MONDO_0009907,Prepapillary vascular loops +16.9548485,MONDO:0009917,http://purl.obolibrary.org/obo/MONDO_0009917,autosomal recessive pseudohypoaldosteronism type 1 +16.9548485,MONDO:0009921,http://purl.obolibrary.org/obo/MONDO_0009921,holoprosencephaly-postaxial polydactyly syndrome +16.9548485,MONDO:0009936,http://purl.obolibrary.org/obo/MONDO_0009936,familial primary pulmonary hypoplasia +16.9548485,MONDO:0009947,http://purl.obolibrary.org/obo/MONDO_0009947,glutathione synthetase deficiency with 5-oxoprolinuria +16.9548485,MONDO:0009959,http://purl.obolibrary.org/obo/MONDO_0009959,peroxisome biogenesis disorder type 3B +16.9548485,MONDO:0009963,http://purl.obolibrary.org/obo/MONDO_0009963,Ulbright-Hodes syndrome +16.9548485,MONDO:0009976,http://purl.obolibrary.org/obo/MONDO_0009976,retinal degeneration and epilepsy +16.9548485,MONDO:0009996,http://purl.obolibrary.org/obo/MONDO_0009996,"rhizomelic syndrome, Urbach type" +16.9548485,MONDO:0010017,http://purl.obolibrary.org/obo/MONDO_0010017,sea-blue histiocyte syndrome +16.9548485,MONDO:0010054,http://purl.obolibrary.org/obo/MONDO_0010054,spinal muscular atrophy with intellectual disability +16.9548485,MONDO:0010061,http://purl.obolibrary.org/obo/MONDO_0010061,autosomal recessive cerebellar ataxia-blindness-deafness syndrome +16.9548485,MONDO:0010067,http://purl.obolibrary.org/obo/MONDO_0010067,splenoportal vascular anomalies +16.9548485,MONDO:0010099,http://purl.obolibrary.org/obo/MONDO_0010099,Tay-Sachs disease AB variant +16.9548485,MONDO:0010111,http://purl.obolibrary.org/obo/MONDO_0010111,odontotrichomelic syndrome +16.9548485,MONDO:0010115,http://purl.obolibrary.org/obo/MONDO_0010115,thoracic dysplasia-hydrocephalus syndrome +16.9548485,MONDO:0010116,http://purl.obolibrary.org/obo/MONDO_0010116,thoracomelic dysplasia +16.9548485,MONDO:0010119,http://purl.obolibrary.org/obo/MONDO_0010119,none +16.9548485,MONDO:0010129,http://purl.obolibrary.org/obo/MONDO_0010129,thymic-renal-anal-lung dysplasia +16.9548485,MONDO:0010153,http://purl.obolibrary.org/obo/MONDO_0010153,trichoodontoonychial dysplasia +16.9548485,MONDO:0010158,http://purl.obolibrary.org/obo/MONDO_0010158,T-substance anomaly +16.9548485,MONDO:0010173,http://purl.obolibrary.org/obo/MONDO_0010173,Mayer-Rokitansky-Kuster-Hauser syndrome type 1 +16.9548485,MONDO:0010174,http://purl.obolibrary.org/obo/MONDO_0010174,Valinemia +16.9548485,MONDO:0010175,http://purl.obolibrary.org/obo/MONDO_0010175,van Bogaert-Hozay syndrome +16.9548485,MONDO:0010183,http://purl.obolibrary.org/obo/MONDO_0010183,methylmalonic aciduria and homocystinuria type cblF +16.9548485,MONDO:0010206,http://purl.obolibrary.org/obo/MONDO_0010206,hypotrichosis 8 +16.9548485,MONDO:0010219,http://purl.obolibrary.org/obo/MONDO_0010219,xylosidase deficiency +16.9548485,MONDO:0010259,http://purl.obolibrary.org/obo/MONDO_0010259,retinitis pigmentosa 24 +16.9548485,MONDO:0010261,http://purl.obolibrary.org/obo/MONDO_0010261,"microphthalmia, syndromic 2" +16.9548485,MONDO:0010262,http://purl.obolibrary.org/obo/MONDO_0010262,"hypotonia, congenital nystagmus, ataxia, and abnormal auditory brainstem responses" +16.9548485,MONDO:0010318,http://purl.obolibrary.org/obo/MONDO_0010318,FG syndrome 4 +16.9548485,MONDO:0010320,http://purl.obolibrary.org/obo/MONDO_0010320,retinitis pigmentosa 23 +16.9548485,MONDO:0010349,http://purl.obolibrary.org/obo/MONDO_0010349,ovarian dysgenesis 2 +16.9548485,MONDO:0010367,http://purl.obolibrary.org/obo/MONDO_0010367,SHOX-related short stature +16.9548485,MONDO:0010374,http://purl.obolibrary.org/obo/MONDO_0010374,retinitis pigmentosa 34 +16.9548485,MONDO:0010380,http://purl.obolibrary.org/obo/MONDO_0010380,"cataract, ataxia, short stature, and intellectual disability" +16.9548485,MONDO:0010381,http://purl.obolibrary.org/obo/MONDO_0010381,Tn polyagglutination syndrome +16.9548485,MONDO:0010460,http://purl.obolibrary.org/obo/MONDO_0010460,syndromic X-linked intellectual disability 17 +16.9548485,MONDO:0010465,http://purl.obolibrary.org/obo/MONDO_0010465,Kabuki syndrome 2 +16.9548485,MONDO:0010471,http://purl.obolibrary.org/obo/MONDO_0010471,Cornelia de Lange syndrome 5 +16.9548485,MONDO:0010472,http://purl.obolibrary.org/obo/MONDO_0010472,"developmental and epileptic encephalopathy, 36" +16.9548485,MONDO:0010477,http://purl.obolibrary.org/obo/MONDO_0010477,"blepharophimosis - intellectual disability syndrome, MKB type" +16.9548485,MONDO:0010478,http://purl.obolibrary.org/obo/MONDO_0010478,SLC35A2-CDG +16.9548485,MONDO:0010479,http://purl.obolibrary.org/obo/MONDO_0010479,Charcot-Marie-Tooth disease X-linked dominant 6 +16.9548485,MONDO:0010507,http://purl.obolibrary.org/obo/MONDO_0010507,Xq25 microduplication syndrome +16.9548485,MONDO:0010512,http://purl.obolibrary.org/obo/MONDO_0010512,"intellectual disability, X-linked, syndromic, bain type" +16.9548485,MONDO:0010539,http://purl.obolibrary.org/obo/MONDO_0010539,X-linked mandibulofacial dysostosis +16.9548485,MONDO:0010540,http://purl.obolibrary.org/obo/MONDO_0010540,"bullous dystrophy, macular type" +16.9548485,MONDO:0010544,http://purl.obolibrary.org/obo/MONDO_0010544,cataract 40 +16.9548485,MONDO:0010597,http://purl.obolibrary.org/obo/MONDO_0010597,glutamyl ribose-5-phosphate storage disease +16.9548485,MONDO:0010617,http://purl.obolibrary.org/obo/MONDO_0010617,male hypergonadotropic hypogonadism-intellectual disability-skeletal anomalies syndrome +16.9548485,MONDO:0010623,http://purl.obolibrary.org/obo/MONDO_0010623,ichthyosis and male hypogonadism +16.9548485,MONDO:0010671,http://purl.obolibrary.org/obo/MONDO_0010671,"microphthalmia, syndromic 1" +16.9548485,MONDO:0010737,http://purl.obolibrary.org/obo/MONDO_0010737,"spondyloepiphyseal dysplasia tarda, X-linked" +16.9548485,MONDO:0010745,http://purl.obolibrary.org/obo/MONDO_0010745,beta-thalassemia-X-linked thrombocytopenia syndrome +16.9548485,MONDO:0010761,http://purl.obolibrary.org/obo/MONDO_0010761,retinitis pigmentosa Y-linked +16.9548485,MONDO:0010784,http://purl.obolibrary.org/obo/MONDO_0010784,chloramphenicol toxicity +16.9548485,MONDO:0010786,http://purl.obolibrary.org/obo/MONDO_0010786,chronic diarrhea with villous atrophy +16.9548485,MONDO:0010791,http://purl.obolibrary.org/obo/MONDO_0010791,"myoglobinuria, recurrent" +16.9548485,MONDO:0010796,http://purl.obolibrary.org/obo/MONDO_0010796,"Parkinson disease, mitochondrial" +16.9548485,MONDO:0010814,http://purl.obolibrary.org/obo/MONDO_0010814,chondrodysplasia-pseudohermaphroditism syndrome +16.9548485,MONDO:0010815,http://purl.obolibrary.org/obo/MONDO_0010815,spondyloepiphyseal dysplasia tarda with characteristic facies +16.9548485,MONDO:0010867,http://purl.obolibrary.org/obo/MONDO_0010867,PARC syndrome +16.9548485,MONDO:0010869,http://purl.obolibrary.org/obo/MONDO_0010869,motor neuron disease with dementia and ophthalmoplegia +16.9548485,MONDO:0010901,http://purl.obolibrary.org/obo/MONDO_0010901,HEC syndrome +16.9548485,MONDO:0010903,http://purl.obolibrary.org/obo/MONDO_0010903,"craniosynostosis, Adelaide type" +16.9548485,MONDO:0010921,http://purl.obolibrary.org/obo/MONDO_0010921,nasal dermoid cyst +16.9548485,MONDO:0010955,http://purl.obolibrary.org/obo/MONDO_0010955,ectodermal dysplasia with intellectual disability and syndactyly +16.9548485,MONDO:0010961,http://purl.obolibrary.org/obo/MONDO_0010961,obesity due to prohormone convertase I deficiency +16.9548485,MONDO:0010967,http://purl.obolibrary.org/obo/MONDO_0010967,autosomal recessive nonsyndromic deafness 7 +16.9548485,MONDO:0010970,http://purl.obolibrary.org/obo/MONDO_0010970,"cardiac malformation, cleft lip/palate, microcephaly, and digital anomalies" +16.9548485,MONDO:0010987,http://purl.obolibrary.org/obo/MONDO_0010987,autosomal recessive nonsyndromic deafness 8 +16.9548485,MONDO:0011012,http://purl.obolibrary.org/obo/MONDO_0011012,African iron overload +16.9548485,MONDO:0011034,http://purl.obolibrary.org/obo/MONDO_0011034,odontomicronychial dysplasia +16.9548485,MONDO:0011055,http://purl.obolibrary.org/obo/MONDO_0011055,distal monosomy 10p +16.9548485,MONDO:0011065,http://purl.obolibrary.org/obo/MONDO_0011065,Hunter-McAlpine craniosynostosis +16.9548485,MONDO:0011069,http://purl.obolibrary.org/obo/MONDO_0011069,"cervical ribs, Sprengel anomaly, anal atresia, and urethral obstruction" +16.9548485,MONDO:0011088,http://purl.obolibrary.org/obo/MONDO_0011088,congenital myasthenic syndrome 1A +16.9548485,MONDO:0011093,http://purl.obolibrary.org/obo/MONDO_0011093,mucopolysaccharidosis type 9 +16.9548485,MONDO:0011123,http://purl.obolibrary.org/obo/MONDO_0011123,type 1 diabetes mellitus 15 +16.9548485,MONDO:0011154,http://purl.obolibrary.org/obo/MONDO_0011154,"acrofacial dysostosis, Palagonia type" +16.9548485,MONDO:0011155,http://purl.obolibrary.org/obo/MONDO_0011155,vacuolar Neuromyopathy +16.9548485,MONDO:0011160,http://purl.obolibrary.org/obo/MONDO_0011160,autosomal recessive nonsyndromic deafness 15 +16.9548485,MONDO:0011174,http://purl.obolibrary.org/obo/MONDO_0011174,hyperzincemia with functional zinc depletion +16.9548485,MONDO:0011183,http://purl.obolibrary.org/obo/MONDO_0011183,"Paget disease of bone 2, early-onset" +16.9548485,MONDO:0011188,http://purl.obolibrary.org/obo/MONDO_0011188,arrhythmogenic right ventricular dysplasia 3 +16.9548485,MONDO:0011191,http://purl.obolibrary.org/obo/MONDO_0011191,capillary infantile hemangioma +16.9548485,MONDO:0011195,http://purl.obolibrary.org/obo/MONDO_0011195,Usher syndrome type 1E +16.9548485,MONDO:0011198,http://purl.obolibrary.org/obo/MONDO_0011198,"spondyloepimetaphyseal dysplasia, Missouri type" +16.9548485,MONDO:0011239,http://purl.obolibrary.org/obo/MONDO_0011239,colobomatous macrophthalmia-microcornea syndrome +16.9548485,MONDO:0011249,http://purl.obolibrary.org/obo/MONDO_0011249,torsion dystonia with onset in infancy +16.9548485,MONDO:0011254,http://purl.obolibrary.org/obo/MONDO_0011254,"brachydactyly, intraventricular septal defect, and deafness" +16.9548485,MONDO:0011258,http://purl.obolibrary.org/obo/MONDO_0011258,branchiootic syndrome 1 +16.9548485,MONDO:0011290,http://purl.obolibrary.org/obo/MONDO_0011290,"dislocated elbows, bowed tibias, scoliosis, deafness, cataract, microcephaly, and intellectual disability" +16.9548485,MONDO:0011302,http://purl.obolibrary.org/obo/MONDO_0011302,type 1 diabetes mellitus 17 +16.9548485,MONDO:0011303,http://purl.obolibrary.org/obo/MONDO_0011303,focal segmental glomerulosclerosis 1 +16.9548485,MONDO:0011341,http://purl.obolibrary.org/obo/MONDO_0011341,"microcephaly, facial abnormalities, micromelia, and intellectual disability" +16.9548485,MONDO:0011362,http://purl.obolibrary.org/obo/MONDO_0011362,"myopathy, myofibrillar, 9, with early respiratory failure" +16.9548485,MONDO:0011364,http://purl.obolibrary.org/obo/MONDO_0011364,autosomal recessive nonsyndromic deafness 16 +16.9548485,MONDO:0011387,http://purl.obolibrary.org/obo/MONDO_0011387,"psoriasis 4, susceptibility to" +16.9548485,MONDO:0011423,http://purl.obolibrary.org/obo/MONDO_0011423,autosomal recessive limb-girdle muscular dystrophy type 2E +16.9548485,MONDO:0011428,http://purl.obolibrary.org/obo/MONDO_0011428,"ectrodactyly, ectodermal dysplasia, and cleft lip-palate syndrome 3" +16.9548485,MONDO:0011446,http://purl.obolibrary.org/obo/MONDO_0011446,"myoclonic epilepsy, congenital deafness, macular dystrophy, and psychiatric disorders" +16.9548485,MONDO:0011452,http://purl.obolibrary.org/obo/MONDO_0011452,hypotrichosis 7 +16.9548485,MONDO:0011461,http://purl.obolibrary.org/obo/MONDO_0011461,"generalized epilepsy with febrile seizures plus, type 2" +16.9548485,MONDO:0011478,http://purl.obolibrary.org/obo/MONDO_0011478,"growth and developintellectual disability, ocular ptosis, cardiac defect, and anal atresia" +16.9548485,MONDO:0011480,http://purl.obolibrary.org/obo/MONDO_0011480,autosomal dominant nonsyndromic deafness 20 +16.9548485,MONDO:0011486,http://purl.obolibrary.org/obo/MONDO_0011486,congenital muscular dystrophy 1B +16.9548485,MONDO:0011487,http://purl.obolibrary.org/obo/MONDO_0011487,Huntington disease-like 3 +16.9548485,MONDO:0011505,http://purl.obolibrary.org/obo/MONDO_0011505,familial hypobetalipoproteinemia 2 +16.9548485,MONDO:0011511,http://purl.obolibrary.org/obo/MONDO_0011511,"clavicular hypoplasia, zygomatic arch hypoplasia, and micrognathia" +16.9548485,MONDO:0011527,http://purl.obolibrary.org/obo/MONDO_0011527,Charcot-Marie-Tooth disease type 4E +16.9548485,MONDO:0011544,http://purl.obolibrary.org/obo/MONDO_0011544,paragangliomas 3 +16.9548485,MONDO:0011553,http://purl.obolibrary.org/obo/MONDO_0011553,autosomal recessive nonsyndromic deafness 26 +16.9548485,MONDO:0011569,http://purl.obolibrary.org/obo/MONDO_0011569,Charcot-Marie-Tooth disease type 2B1 +16.9548485,MONDO:0011577,http://purl.obolibrary.org/obo/MONDO_0011577,"myopathy, proximal, and ophthalmoplegia" +16.9548485,MONDO:0011588,http://purl.obolibrary.org/obo/MONDO_0011588,platelet-type bleeding disorder 12 +16.9548485,MONDO:0011606,http://purl.obolibrary.org/obo/MONDO_0011606,baby rattle pelvis dysplasia +16.9548485,MONDO:0011617,http://purl.obolibrary.org/obo/MONDO_0011617,"arthropathy, erosive" +16.9548485,MONDO:0011636,http://purl.obolibrary.org/obo/MONDO_0011636,Diamond-Blackfan anemia 2 +16.9548485,MONDO:0011642,http://purl.obolibrary.org/obo/MONDO_0011642,carnitine acetyltransferase deficiency +16.9548485,MONDO:0011645,http://purl.obolibrary.org/obo/MONDO_0011645,none +16.9548485,MONDO:0011660,http://purl.obolibrary.org/obo/MONDO_0011660,autosomal dominant nonsyndromic deafness 22 +16.9548485,MONDO:0011664,http://purl.obolibrary.org/obo/MONDO_0011664,immunodeficiency due to CD25 deficiency +16.9548485,MONDO:0011677,http://purl.obolibrary.org/obo/MONDO_0011677,Megarbane syndrome +16.9548485,MONDO:0011678,http://purl.obolibrary.org/obo/MONDO_0011678,homozygous 11P15-p14 deletion syndrome +16.9548485,MONDO:0011683,http://purl.obolibrary.org/obo/MONDO_0011683,oculocutaneous albinism type 4 +16.9548485,MONDO:0011687,http://purl.obolibrary.org/obo/MONDO_0011687,Charcot-Marie-Tooth disease axonal type 2F +16.9548485,MONDO:0011712,http://purl.obolibrary.org/obo/MONDO_0011712,van der Woude syndrome 2 +16.9548485,MONDO:0011722,http://purl.obolibrary.org/obo/MONDO_0011722,intellectual disability-obesity-prognathism-eye and skin anomalies syndrome +16.9548485,MONDO:0011734,http://purl.obolibrary.org/obo/MONDO_0011734,Cardioneuromyopathy with hyaline masses and nemaline rods +16.9548485,MONDO:0011738,http://purl.obolibrary.org/obo/MONDO_0011738,bilateral frontoparietal polymicrogyria +16.9548485,MONDO:0011761,http://purl.obolibrary.org/obo/MONDO_0011761,autosomal dominant nonsyndromic deafness 21 +16.9548485,MONDO:0011762,http://purl.obolibrary.org/obo/MONDO_0011762,autosomal recessive nonsyndromic deafness 22 +16.9548485,MONDO:0011772,http://purl.obolibrary.org/obo/MONDO_0011772,B4GALT1-CDG +16.9548485,MONDO:0011779,http://purl.obolibrary.org/obo/MONDO_0011779,"laryngeal atresia, encephalocele, and limb deformities" +16.9548485,MONDO:0011787,http://purl.obolibrary.org/obo/MONDO_0011787,autosomal recessive limb-girdle muscular dystrophy type 2I +16.9548485,MONDO:0011832,http://purl.obolibrary.org/obo/MONDO_0011832,autosomal dominant nonsyndromic deafness 44 +16.9548485,MONDO:0011834,http://purl.obolibrary.org/obo/MONDO_0011834,spinocerebellar ataxia type 18 +16.9548485,MONDO:0011838,http://purl.obolibrary.org/obo/MONDO_0011838,Bothnia retinal dystrophy +16.9548485,MONDO:0011843,http://purl.obolibrary.org/obo/MONDO_0011843,hypertrophic cardiomyopathy 25 +16.9548485,MONDO:0011862,http://purl.obolibrary.org/obo/MONDO_0011862,hereditary spastic paraplegia 24 +16.9548485,MONDO:0011893,http://purl.obolibrary.org/obo/MONDO_0011893,autosomal dominant nonsyndromic deafness 52 +16.9548485,MONDO:0011897,http://purl.obolibrary.org/obo/MONDO_0011897,leukoencephalopathy-ataxia-hypodontia-hypomyelination syndrome +16.9548485,MONDO:0011911,http://purl.obolibrary.org/obo/MONDO_0011911,craniolenticulosutural dysplasia +16.9548485,MONDO:0011920,http://purl.obolibrary.org/obo/MONDO_0011920,autosomal dominant nonsyndromic deafness 48 +16.9548485,MONDO:0011936,http://purl.obolibrary.org/obo/MONDO_0011936,microphthalmia with brain and digit anomalies +16.9548485,MONDO:0011939,http://purl.obolibrary.org/obo/MONDO_0011939,Spondyloenchondrodysplasia with immune dysregulation +16.9548485,MONDO:0011974,http://purl.obolibrary.org/obo/MONDO_0011974,retinitis pigmentosa 7 +16.9548485,MONDO:0011978,http://purl.obolibrary.org/obo/MONDO_0011978,CoQ-responsive OXPHOS deficiency +16.9548485,MONDO:0011985,http://purl.obolibrary.org/obo/MONDO_0011985,hyper-IgM syndrome type 4 +16.9548485,MONDO:0011987,http://purl.obolibrary.org/obo/MONDO_0011987,cone-rod dystrophy 13 +16.9548485,MONDO:0011988,http://purl.obolibrary.org/obo/MONDO_0011988,neutrophil immunodeficiency syndrome +16.9548485,MONDO:0012005,http://purl.obolibrary.org/obo/MONDO_0012005,"growth failure, microcephaly, intellectual disability, cataracts, large joint contractures, osteoporosis, cortical dysplasia, and cerebellar atrophy" +16.9548485,MONDO:0012024,http://purl.obolibrary.org/obo/MONDO_0012024,retinitis pigmentosa 26 +16.9548485,MONDO:0012038,http://purl.obolibrary.org/obo/MONDO_0012038,speech-sound disorder +16.9548485,MONDO:0012046,http://purl.obolibrary.org/obo/MONDO_0012046,"congenital corneal opacities, cornea guttata, and corectopia" +16.9548485,MONDO:0012049,http://purl.obolibrary.org/obo/MONDO_0012049,orofaciodigital syndrome VII +16.9548485,MONDO:0012056,http://purl.obolibrary.org/obo/MONDO_0012056,Leber congenital amaurosis 9 +16.9548485,MONDO:0012076,http://purl.obolibrary.org/obo/MONDO_0012076,"midface hypoplasia, obesity, developmental delay, and neonatal hypotonia" +16.9548485,MONDO:0012096,http://purl.obolibrary.org/obo/MONDO_0012096,Charcot-Marie-Tooth disease axonal type 2L +16.9548485,MONDO:0012117,http://purl.obolibrary.org/obo/MONDO_0012117,ALG9-CDG +16.9548485,MONDO:0012123,http://purl.obolibrary.org/obo/MONDO_0012123,congenital disorder of glycosylation type 1E +16.9548485,MONDO:0012129,http://purl.obolibrary.org/obo/MONDO_0012129,"leukoencephalopathy, arthritis, colitis, and hypogammaglobulinema" +16.9548485,MONDO:0012131,http://purl.obolibrary.org/obo/MONDO_0012131,"metaphyseal undermodeling, spondylar dysplasia, and overgrowth" +16.9548485,MONDO:0012160,http://purl.obolibrary.org/obo/MONDO_0012160,spondylometaphyseal dysplasia-cone-rod dystrophy syndrome +16.9548485,MONDO:0012161,http://purl.obolibrary.org/obo/MONDO_0012161,susceptibility to respiratory infections associated with CD8alpha chain mutation +16.9548485,MONDO:0012180,http://purl.obolibrary.org/obo/MONDO_0012180,arrhythmogenic right ventricular dysplasia 9 +16.9548485,MONDO:0012209,http://purl.obolibrary.org/obo/MONDO_0012209,branchiogenic deafness syndrome +16.9548485,MONDO:0012211,http://purl.obolibrary.org/obo/MONDO_0012211,MPDU1-CDG +16.9548485,MONDO:0012213,http://purl.obolibrary.org/obo/MONDO_0012213,hereditary spastic paraplegia 26 +16.9548485,MONDO:0012235,http://purl.obolibrary.org/obo/MONDO_0012235,autosomal recessive spinocerebellar ataxia 7 +16.9548485,MONDO:0012240,http://purl.obolibrary.org/obo/MONDO_0012240,nemaline myopathy 4 +16.9548485,MONDO:0012243,http://purl.obolibrary.org/obo/MONDO_0012243,"B-cell immunodeficiency, distal limb anomalies, and urogenital malformations" +16.9548485,MONDO:0012256,http://purl.obolibrary.org/obo/MONDO_0012256,hereditary spastic paraplegia 28 +16.9548485,MONDO:0012288,http://purl.obolibrary.org/obo/MONDO_0012288,iridogoniodysgenesis and skeletal anomalies +16.9548485,MONDO:0012293,http://purl.obolibrary.org/obo/MONDO_0012293,autosomal recessive nonsyndromic deafness 23 +16.9548485,MONDO:0012315,http://purl.obolibrary.org/obo/MONDO_0012315,distal 10q deletion syndrome +16.9548485,MONDO:0012325,http://purl.obolibrary.org/obo/MONDO_0012325,Nguyen syndrome +16.9548485,MONDO:0012333,http://purl.obolibrary.org/obo/MONDO_0012333,autosomal recessive nonsyndromic deafness 53 +16.9548485,MONDO:0012354,http://purl.obolibrary.org/obo/MONDO_0012354,platelet-type bleeding disorder 8 +16.9548485,MONDO:0012355,http://purl.obolibrary.org/obo/MONDO_0012355,autosomal recessive nonsyndromic deafness 28 +16.9548485,MONDO:0012363,http://purl.obolibrary.org/obo/MONDO_0012363,retinitis pigmentosa 32 +16.9548485,MONDO:0012364,http://purl.obolibrary.org/obo/MONDO_0012364,dilated cardiomyopathy 1Q +16.9548485,MONDO:0012374,http://purl.obolibrary.org/obo/MONDO_0012374,"brachyphalangy, polydactyly, and tibial aplasia/hypoplasia" +16.9548485,MONDO:0012390,http://purl.obolibrary.org/obo/MONDO_0012390,"arthrogryposis multiplex with deafness, inguinal hernias, and early death" +16.9548485,MONDO:0012393,http://purl.obolibrary.org/obo/MONDO_0012393,congenital brain dysgenesis due to glutamine synthetase deficiency +16.9548485,MONDO:0012397,http://purl.obolibrary.org/obo/MONDO_0012397,"brachydactyly, coloboma, and anterior segment dysgenesis" +16.9548485,MONDO:0012400,http://purl.obolibrary.org/obo/MONDO_0012400,cortical dysplasia-focal epilepsy syndrome +16.9548485,MONDO:0012410,http://purl.obolibrary.org/obo/MONDO_0012410,Finnish upper limb-onset distal myopathy +16.9548485,MONDO:0012411,http://purl.obolibrary.org/obo/MONDO_0012411,giant axonal neuropathy 2 +16.9548485,MONDO:0012412,http://purl.obolibrary.org/obo/MONDO_0012412,complement component 7 deficiency +16.9548485,MONDO:0012413,http://purl.obolibrary.org/obo/MONDO_0012413,syndromic microphthalmia type 5 +16.9548485,MONDO:0012434,http://purl.obolibrary.org/obo/MONDO_0012434,arrhythmogenic right ventricular dysplasia 10 +16.9548485,MONDO:0012438,http://purl.obolibrary.org/obo/MONDO_0012438,pontocerebellar hypoplasia type 5 +16.9548485,MONDO:0012446,http://purl.obolibrary.org/obo/MONDO_0012446,seborrhea-like dermatitis with psoriasiform elements +16.9548485,MONDO:0012447,http://purl.obolibrary.org/obo/MONDO_0012447,synpolydactyly type 3 +16.9548485,MONDO:0012451,http://purl.obolibrary.org/obo/MONDO_0012451,"esophagitis, eosinophilic, 1" +16.9548485,MONDO:0012460,http://purl.obolibrary.org/obo/MONDO_0012460,autosomal recessive nonsyndromic deafness 67 +16.9548485,MONDO:0012463,http://purl.obolibrary.org/obo/MONDO_0012463,retinitis pigmentosa 35 +16.9548485,MONDO:0012477,http://purl.obolibrary.org/obo/MONDO_0012477,retinitis pigmentosa 33 +16.9548485,MONDO:0012497,http://purl.obolibrary.org/obo/MONDO_0012497,congenital stationary night blindness autosomal dominant 3 +16.9548485,MONDO:0012501,http://purl.obolibrary.org/obo/MONDO_0012501,mutagen sensitivity +16.9548485,MONDO:0012523,http://purl.obolibrary.org/obo/MONDO_0012523,retinitis pigmentosa 36 +16.9548485,MONDO:0012538,http://purl.obolibrary.org/obo/MONDO_0012538,nemaline myopathy 7 +16.9548485,MONDO:0012564,http://purl.obolibrary.org/obo/MONDO_0012564,Polyosteolysis-hyperostosis syndrome +16.9548485,MONDO:0012592,http://purl.obolibrary.org/obo/MONDO_0012592,osteogenesis imperfecta type 11 +16.9548485,MONDO:0012623,http://purl.obolibrary.org/obo/MONDO_0012623,"intellectual disability, autosomal recessive 4" +16.9548485,MONDO:0012625,http://purl.obolibrary.org/obo/MONDO_0012625,retinitis pigmentosa 37 +16.9548485,MONDO:0012635,http://purl.obolibrary.org/obo/MONDO_0012635,COG8-CDG +16.9548485,MONDO:0012639,http://purl.obolibrary.org/obo/MONDO_0012639,hereditary spastic paraplegia 18 +16.9548485,MONDO:0012641,http://purl.obolibrary.org/obo/MONDO_0012641,"restless legs syndrome, susceptibility to, 5" +16.9548485,MONDO:0012652,http://purl.obolibrary.org/obo/MONDO_0012652,autosomal recessive limb-girdle muscular dystrophy type 2L +16.9548485,MONDO:0012662,http://purl.obolibrary.org/obo/MONDO_0012662,Usher syndrome type 2D +16.9548485,MONDO:0012680,http://purl.obolibrary.org/obo/MONDO_0012680,nephronophthisis 7 +16.9548485,MONDO:0012691,http://purl.obolibrary.org/obo/MONDO_0012691,LEOPARD syndrome 2 +16.9548485,MONDO:0012704,http://purl.obolibrary.org/obo/MONDO_0012704,dilated cardiomyopathy 1X +16.9548485,MONDO:0012713,http://purl.obolibrary.org/obo/MONDO_0012713,"spondylometaphyseal dysplasia, East African type" +16.9548485,MONDO:0012716,http://purl.obolibrary.org/obo/MONDO_0012716,"spondyloepiphyseal dysplasia, Cantu type" +16.9548485,MONDO:0012723,http://purl.obolibrary.org/obo/MONDO_0012723,Leber congenital amaurosis 10 +16.9548485,MONDO:0012734,http://purl.obolibrary.org/obo/MONDO_0012734,SERKAL syndrome +16.9548485,MONDO:0012740,http://purl.obolibrary.org/obo/MONDO_0012740,"chromosome 22q11.2 deletion syndrome, distal" +16.9548485,MONDO:0012747,http://purl.obolibrary.org/obo/MONDO_0012747,glycogen storage disease due to aldolase A deficiency +16.9548485,MONDO:0012749,http://purl.obolibrary.org/obo/MONDO_0012749,"mesomelic dysplasia, camera type" +16.9548485,MONDO:0012755,http://purl.obolibrary.org/obo/MONDO_0012755,episodic ataxia type 7 +16.9548485,MONDO:0012761,http://purl.obolibrary.org/obo/MONDO_0012761,chromosome 3q29 microduplication syndrome +16.9548485,MONDO:0012762,http://purl.obolibrary.org/obo/MONDO_0012762,catecholaminergic polymorphic ventricular tachycardia 2 +16.9548485,MONDO:0012768,http://purl.obolibrary.org/obo/MONDO_0012768,"prostate cancer, hereditary, 11" +16.9548485,MONDO:0012773,http://purl.obolibrary.org/obo/MONDO_0012773,Hunter-Macdonald syndrome +16.9548485,MONDO:0012807,http://purl.obolibrary.org/obo/MONDO_0012807,epidermolysis bullosa simplex with pyloric atresia +16.9548485,MONDO:0012813,http://purl.obolibrary.org/obo/MONDO_0012813,retinitis pigmentosa 29 +16.9548485,MONDO:0012859,http://purl.obolibrary.org/obo/MONDO_0012859,autosomal recessive osteopetrosis 7 +16.9548485,MONDO:0012861,http://purl.obolibrary.org/obo/MONDO_0012861,premature ovarian failure 6 +16.9548485,MONDO:0012878,http://purl.obolibrary.org/obo/MONDO_0012878,Cowden syndrome 2 +16.9548485,MONDO:0012907,http://purl.obolibrary.org/obo/MONDO_0012907,blindness - scoliosis - arachnodactyly syndrome +16.9548485,MONDO:0012919,http://purl.obolibrary.org/obo/MONDO_0012919,type 1 diabetes mellitus 20 +16.9548485,MONDO:0012920,http://purl.obolibrary.org/obo/MONDO_0012920,type 1 diabetes mellitus 21 +16.9548485,MONDO:0012938,http://purl.obolibrary.org/obo/MONDO_0012938,Diamond-Blackfan anemia 7 +16.9548485,MONDO:0012983,http://purl.obolibrary.org/obo/MONDO_0012983,cone-rod dystrophy 12 +16.9548485,MONDO:0012993,http://purl.obolibrary.org/obo/MONDO_0012993,dyschromatosis universalis hereditaria 2 +16.9548485,MONDO:0013004,http://purl.obolibrary.org/obo/MONDO_0013004,"hypotonia, seizures, and precocious puberty" +16.9548485,MONDO:0013015,http://purl.obolibrary.org/obo/MONDO_0013015,Brugada syndrome 5 +16.9548485,MONDO:0013035,http://purl.obolibrary.org/obo/MONDO_0013035,orofaciodigital syndrome XI +16.9548485,MONDO:0013036,http://purl.obolibrary.org/obo/MONDO_0013036,Zechi-Ceide syndrome +16.9548485,MONDO:0013054,http://purl.obolibrary.org/obo/MONDO_0013054,"microcephaly, growth retardation, cataract, hearing loss, and unusual appearance" +16.9548485,MONDO:0013077,http://purl.obolibrary.org/obo/MONDO_0013077,Santos syndrome +16.9548485,MONDO:0013101,http://purl.obolibrary.org/obo/MONDO_0013101,"basal cell carcinoma, susceptibility to, 2" +16.9548485,MONDO:0013111,http://purl.obolibrary.org/obo/MONDO_0013111,acute infantile liver failure due to synthesis defect of mtDNA-encoded proteins +16.9548485,MONDO:0013118,http://purl.obolibrary.org/obo/MONDO_0013118,Nijmegen breakage syndrome-like disorder +16.9548485,MONDO:0013119,http://purl.obolibrary.org/obo/MONDO_0013119,autosomal recessive nonsyndromic deafness 77 +16.9548485,MONDO:0013142,http://purl.obolibrary.org/obo/MONDO_0013142,"neuropathy, hereditary sensory and autonomic, type 2B" +16.9548485,MONDO:0013145,http://purl.obolibrary.org/obo/MONDO_0013145,Brugada syndrome 6 +16.9548485,MONDO:0013146,http://purl.obolibrary.org/obo/MONDO_0013146,Brugada syndrome 7 +16.9548485,MONDO:0013148,http://purl.obolibrary.org/obo/MONDO_0013148,Brugada syndrome 8 +16.9548485,MONDO:0013169,http://purl.obolibrary.org/obo/MONDO_0013169,chromosome 5p13 duplication syndrome +16.9548485,MONDO:0013170,http://purl.obolibrary.org/obo/MONDO_0013170,"cutis laxa with severe pulmonary, gastrointestinal and urinary anomalies" +16.9548485,MONDO:0013172,http://purl.obolibrary.org/obo/MONDO_0013172,polymicrogyria with optic nerve hypoplasia +16.9548485,MONDO:0013179,http://purl.obolibrary.org/obo/MONDO_0013179,hereditary spastic paraplegia 44 +16.9548485,MONDO:0013188,http://purl.obolibrary.org/obo/MONDO_0013188,"cerebellar ataxia, intellectual disability, and dysequilibrium syndrome 3" +16.9548485,MONDO:0013210,http://purl.obolibrary.org/obo/MONDO_0013210,autosomal recessive nonsyndromic deafness 25 +16.9548485,MONDO:0013224,http://purl.obolibrary.org/obo/MONDO_0013224,rhabdoid tumor predisposition syndrome 2 +16.9548485,MONDO:0013226,http://purl.obolibrary.org/obo/MONDO_0013226,combined immunodeficiency with faciooculoskeletal anomalies +16.9548485,MONDO:0013246,http://purl.obolibrary.org/obo/MONDO_0013246,"fatty liver disease, nonalcoholic, susceptibility to, 2" +16.9548485,MONDO:0013263,http://purl.obolibrary.org/obo/MONDO_0013263,retinitis pigmentosa 54 +16.9548485,MONDO:0013267,http://purl.obolibrary.org/obo/MONDO_0013267,distal 16p11.2 microdeletion syndrome +16.9548485,MONDO:0013268,http://purl.obolibrary.org/obo/MONDO_0013268,frontonasal dysplasia with alopecia and genital anomaly +16.9548485,MONDO:0013281,http://purl.obolibrary.org/obo/MONDO_0013281,COG4-CDG +16.9548485,MONDO:0013305,http://purl.obolibrary.org/obo/MONDO_0013305,autosomal dominant nonsyndromic deafness 51 +16.9548485,MONDO:0013306,http://purl.obolibrary.org/obo/MONDO_0013306,combined oxidative phosphorylation defect type 7 +16.9548485,MONDO:0013312,http://purl.obolibrary.org/obo/MONDO_0013312,retinitis pigmentosa 55 +16.9548485,MONDO:0013320,http://purl.obolibrary.org/obo/MONDO_0013320,chromosome 16p12.2-p11.2 deletion syndrome +16.9548485,MONDO:0013322,http://purl.obolibrary.org/obo/MONDO_0013322,"epilepsy, familial adult myoclonic, 3" +16.9548485,MONDO:0013323,http://purl.obolibrary.org/obo/MONDO_0013323,cranioectodermal dysplasia 2 +16.9548485,MONDO:0013328,http://purl.obolibrary.org/obo/MONDO_0013328,retinitis pigmentosa 58 +16.9548485,MONDO:0013330,http://purl.obolibrary.org/obo/MONDO_0013330,agenesis of the corpus callosum and congenital lymphedema +16.9548485,MONDO:0013337,http://purl.obolibrary.org/obo/MONDO_0013337,"neuropathy, hereditary sensory and autonomic, type 1C" +16.9548485,MONDO:0013349,http://purl.obolibrary.org/obo/MONDO_0013349,ALG11-CDG +16.9548485,MONDO:0013354,http://purl.obolibrary.org/obo/MONDO_0013354,spastic ataxia 4 +16.9548485,MONDO:0013358,http://purl.obolibrary.org/obo/MONDO_0013358,Seckel syndrome 4 +16.9548485,MONDO:0013368,http://purl.obolibrary.org/obo/MONDO_0013368,mammary-digital-nail syndrome +16.9548485,MONDO:0013370,http://purl.obolibrary.org/obo/MONDO_0013370,long QT syndrome 6 +16.9548485,MONDO:0013388,http://purl.obolibrary.org/obo/MONDO_0013388,"developmental and epileptic encephalopathy, 11" +16.9548485,MONDO:0013413,http://purl.obolibrary.org/obo/MONDO_0013413,retinitis pigmentosa 45 +16.9548485,MONDO:0013416,http://purl.obolibrary.org/obo/MONDO_0013416,age related macular degeneration 8 +16.9548485,MONDO:0013425,http://purl.obolibrary.org/obo/MONDO_0013425,retinitis pigmentosa 20 +16.9548485,MONDO:0013430,http://purl.obolibrary.org/obo/MONDO_0013430,Meier-Gorlin syndrome 3 +16.9548485,MONDO:0013440,http://purl.obolibrary.org/obo/MONDO_0013440,autosomal recessive limb-girdle muscular dystrophy type 2P +16.9548485,MONDO:0013442,http://purl.obolibrary.org/obo/MONDO_0013442,nephronophthisis 12 +16.9548485,MONDO:0013446,http://purl.obolibrary.org/obo/MONDO_0013446,Leber congenital amaurosis 6 +16.9548485,MONDO:0013449,http://purl.obolibrary.org/obo/MONDO_0013449,Leber congenital amaurosis 7 +16.9548485,MONDO:0013453,http://purl.obolibrary.org/obo/MONDO_0013453,Leber congenital amaurosis 8 +16.9548485,MONDO:0013459,http://purl.obolibrary.org/obo/MONDO_0013459,osteogenesis imperfecta type 10 +16.9548485,MONDO:0013469,http://purl.obolibrary.org/obo/MONDO_0013469,retinitis pigmentosa 38 +16.9548485,MONDO:0013473,http://purl.obolibrary.org/obo/MONDO_0013473,"Hirschsprung disease, cardiac defects, and autonomic dysfunction" +16.9548485,MONDO:0013474,http://purl.obolibrary.org/obo/MONDO_0013474,hypertrophic cardiomyopathy 17 +16.9548485,MONDO:0013486,http://purl.obolibrary.org/obo/MONDO_0013486,spinocerebellar ataxia type 32 +16.9548485,MONDO:0013489,http://purl.obolibrary.org/obo/MONDO_0013489,autosomal recessive nonsyndromic deafness 89 +16.9548485,MONDO:0013542,http://purl.obolibrary.org/obo/MONDO_0013542,Moyamoya disease 5 +16.9548485,MONDO:0013551,http://purl.obolibrary.org/obo/MONDO_0013551,hereditary spastic paraplegia 47 +16.9548485,MONDO:0013553,http://purl.obolibrary.org/obo/MONDO_0013553,immunodeficiency-centromeric instability-facial anomalies syndrome 2 +16.9548485,MONDO:0013569,http://purl.obolibrary.org/obo/MONDO_0013569,short-rib thoracic dysplasia 7 with or without polydactyly +16.9548485,MONDO:0013573,http://purl.obolibrary.org/obo/MONDO_0013573,cranioectodermal dysplasia 3 +16.9548485,MONDO:0013587,http://purl.obolibrary.org/obo/MONDO_0013587,glycogen storage disease due to lactate dehydrogenase H-subunit deficiency +16.9548485,MONDO:0013588,http://purl.obolibrary.org/obo/MONDO_0013588,Perrault syndrome 3 +16.9548485,MONDO:0013593,http://purl.obolibrary.org/obo/MONDO_0013593,autosomal dominant nonsyndromic deafness 64 +16.9548485,MONDO:0013602,http://purl.obolibrary.org/obo/MONDO_0013602,paragangliomas 5 +16.9548485,MONDO:0013606,http://purl.obolibrary.org/obo/MONDO_0013606,Hermansky-Pudlak syndrome 9 +16.9548485,MONDO:0013620,http://purl.obolibrary.org/obo/MONDO_0013620,congenital myasthenic syndrome 16 +16.9548485,MONDO:0013628,http://purl.obolibrary.org/obo/MONDO_0013628,hyperphosphatasia with intellectual disability syndrome 3 +16.9548485,MONDO:0013641,http://purl.obolibrary.org/obo/MONDO_0013641,Warburg micro syndrome 2 +16.9548485,MONDO:0013646,http://purl.obolibrary.org/obo/MONDO_0013646,chromosome 8q21.11 deletion syndrome +16.9548485,MONDO:0013690,http://purl.obolibrary.org/obo/MONDO_0013690,Pitt-Hopkins-like syndrome 2 +16.9548485,MONDO:0013716,http://purl.obolibrary.org/obo/MONDO_0013716,"aortic aneurysm, familial abdominal, 4" +16.9548485,MONDO:0013737,http://purl.obolibrary.org/obo/MONDO_0013737,hereditary spastic paraplegia 46 +16.9548485,MONDO:0013746,http://purl.obolibrary.org/obo/MONDO_0013746,ventricular septal defect 1 +16.9548485,MONDO:0013748,http://purl.obolibrary.org/obo/MONDO_0013748,ventricular septal defect 2 +16.9548485,MONDO:0013755,http://purl.obolibrary.org/obo/MONDO_0013755,PYCR1-related de Barsy syndrome +16.9548485,MONDO:0013756,http://purl.obolibrary.org/obo/MONDO_0013756,"hypertrophic osteoarthropathy, primary, autosomal recessive, 2" +16.9548485,MONDO:0013758,http://purl.obolibrary.org/obo/MONDO_0013758,Charcot-Marie-Tooth disease dominant intermediate E +16.9548485,MONDO:0013812,http://purl.obolibrary.org/obo/MONDO_0013812,Baraitser-winter syndrome 2 +16.9548485,MONDO:0013819,http://purl.obolibrary.org/obo/MONDO_0013819,"intellectual disability, autosomal dominant 14" +16.9548485,MONDO:0013823,http://purl.obolibrary.org/obo/MONDO_0013823,autosomal dominant nonsyndromic deafness 4B +16.9548485,MONDO:0013828,http://purl.obolibrary.org/obo/MONDO_0013828,hyperekplexia 2 +16.9548485,MONDO:0013859,http://purl.obolibrary.org/obo/MONDO_0013859,cataract 38 +16.9548485,MONDO:0013866,http://purl.obolibrary.org/obo/MONDO_0013866,neuronal ceroid lipofuscinosis 11 +16.9548485,MONDO:0013867,http://purl.obolibrary.org/obo/MONDO_0013867,brown-Vialetto-van Laere syndrome 2 +16.9548485,MONDO:0013883,http://purl.obolibrary.org/obo/MONDO_0013883,congenital myasthenic syndrome 13 +16.9548485,MONDO:0013899,http://purl.obolibrary.org/obo/MONDO_0013899,Weill-Marchesani syndrome 3 +16.9548485,MONDO:0013905,http://purl.obolibrary.org/obo/MONDO_0013905,autosomal recessive spinocerebellar ataxia 13 +16.9548485,MONDO:0013914,http://purl.obolibrary.org/obo/MONDO_0013914,hypogonadotropic hypogonadism 12 with or without anosmia +16.9548485,MONDO:0013917,http://purl.obolibrary.org/obo/MONDO_0013917,nephronophthisis 15 +16.9548485,MONDO:0013937,http://purl.obolibrary.org/obo/MONDO_0013937,peroxisome biogenesis disorder 6B +16.9548485,MONDO:0013941,http://purl.obolibrary.org/obo/MONDO_0013941,metaphyseal chondromatosis with D-2-hydroxyglutaric aciduria +16.9548485,MONDO:0013967,http://purl.obolibrary.org/obo/MONDO_0013967,peroxisome biogenesis disorder 14B +16.9548485,MONDO:0013972,http://purl.obolibrary.org/obo/MONDO_0013972,Perrault syndrome 2 +16.9548485,MONDO:0013991,http://purl.obolibrary.org/obo/MONDO_0013991,obesity due to congenital leptin deficiency +16.9548485,MONDO:0014015,http://purl.obolibrary.org/obo/MONDO_0014015,hereditary spastic paraplegia 56 +16.9548485,MONDO:0014018,http://purl.obolibrary.org/obo/MONDO_0014018,hereditary spastic paraplegia 54 +16.9548485,MONDO:0014020,http://purl.obolibrary.org/obo/MONDO_0014020,hereditary spastic paraplegia 55 +16.9548485,MONDO:0014024,http://purl.obolibrary.org/obo/MONDO_0014024,hereditary spastic paraplegia 43 +16.9548485,MONDO:0014048,http://purl.obolibrary.org/obo/MONDO_0014048,Cowden syndrome 6 +16.9548485,MONDO:0014052,http://purl.obolibrary.org/obo/MONDO_0014052,congenital myasthenic syndrome 8 +16.9548485,MONDO:0014070,http://purl.obolibrary.org/obo/MONDO_0014070,oculocutaneous albinism type 7 +16.9548485,MONDO:0014079,http://purl.obolibrary.org/obo/MONDO_0014079,"restless legs syndrome, susceptibility to, 8" +16.9548485,MONDO:0014092,http://purl.obolibrary.org/obo/MONDO_0014092,schizophrenia 18 +16.9548485,MONDO:0014127,http://purl.obolibrary.org/obo/MONDO_0014127,oculocutaneous albinism type 5 +16.9548485,MONDO:0014139,http://purl.obolibrary.org/obo/MONDO_0014139,"Ehlers-Danlos syndrome, progeroid type, 2" +16.9548485,MONDO:0014142,http://purl.obolibrary.org/obo/MONDO_0014142,autosomal recessive limb-girdle muscular dystrophy type 2T +16.9548485,MONDO:0014157,http://purl.obolibrary.org/obo/MONDO_0014157,mandibular hypoplasia-deafness-progeroid syndrome +16.9548485,MONDO:0014174,http://purl.obolibrary.org/obo/MONDO_0014174,renal-hepatic-pancreatic dysplasia 2 +16.9548485,MONDO:0014207,http://purl.obolibrary.org/obo/MONDO_0014207,age related macular degeneration 14 +16.9548485,MONDO:0014213,http://purl.obolibrary.org/obo/MONDO_0014213,intellectual disability-feeding difficulties-developmental delay-microcephaly syndrome +16.9548485,MONDO:0014222,http://purl.obolibrary.org/obo/MONDO_0014222,immunodeficiency 14 +16.9548485,MONDO:0014234,http://purl.obolibrary.org/obo/MONDO_0014234,reticulate acropigmentation of Kitamura +16.9548485,MONDO:0014255,http://purl.obolibrary.org/obo/MONDO_0014255,complement factor b deficiency +16.9548485,MONDO:0014262,http://purl.obolibrary.org/obo/MONDO_0014262,Rienhoff syndrome +16.9548485,MONDO:0014269,http://purl.obolibrary.org/obo/MONDO_0014269,combined oxidative phosphorylation deficiency 19 +16.9548485,MONDO:0014274,http://purl.obolibrary.org/obo/MONDO_0014274,L-ferritin deficiency +16.9548485,MONDO:0014281,http://purl.obolibrary.org/obo/MONDO_0014281,"cholangiocarcinoma, susceptibility to" +16.9548485,MONDO:0014297,http://purl.obolibrary.org/obo/MONDO_0014297,Joubert syndrome 22 +16.9548485,MONDO:0014299,http://purl.obolibrary.org/obo/MONDO_0014299,schwannomatosis 2 +16.9548485,MONDO:0014305,http://purl.obolibrary.org/obo/MONDO_0014305,hereditary spastic paraplegia 63 +16.9548485,MONDO:0014332,http://purl.obolibrary.org/obo/MONDO_0014332,hyperammonemic encephalopathy due to carbonic anhydrase VA deficiency +16.9548485,MONDO:0014349,http://purl.obolibrary.org/obo/MONDO_0014349,pontocerebellar hypoplasia type 10 +16.9548485,MONDO:0014357,http://purl.obolibrary.org/obo/MONDO_0014357,"intellectual disability, autosomal dominant 24" +16.9548485,MONDO:0014382,http://purl.obolibrary.org/obo/MONDO_0014382,tall stature-intellectual disability-facial dysmorphism syndrome +16.9548485,MONDO:0014394,http://purl.obolibrary.org/obo/MONDO_0014394,Diamond-Blackfan anemia 13 +16.9548485,MONDO:0014435,http://purl.obolibrary.org/obo/MONDO_0014435,Bardet-Biedl syndrome 7 +16.9548485,MONDO:0014437,http://purl.obolibrary.org/obo/MONDO_0014437,Bardet-Biedl syndrome 9 +16.9548485,MONDO:0014444,http://purl.obolibrary.org/obo/MONDO_0014444,Bardet-Biedl syndrome 16 +16.9548485,MONDO:0014455,http://purl.obolibrary.org/obo/MONDO_0014455,cataract-growth hormone deficiency-sensory neuropathy-sensorineural hearing loss-skeletal dysplasia syndrome +16.9548485,MONDO:0014460,http://purl.obolibrary.org/obo/MONDO_0014460,nail and teeth abnormalities-marginal palmoplantar keratoderma-oral hyperpigmentation syndrome +16.9548485,MONDO:0014468,http://purl.obolibrary.org/obo/MONDO_0014468,congenital myasthenic syndrome 7 +16.9548485,MONDO:0014510,http://purl.obolibrary.org/obo/MONDO_0014510,fatty acyl-CoA reductase 1 deficiency +16.9548485,MONDO:0014511,http://purl.obolibrary.org/obo/MONDO_0014511,Charcot-Marie-Tooth disease axonal type 2S +16.9548485,MONDO:0014513,http://purl.obolibrary.org/obo/MONDO_0014513,nemaline myopathy 10 +16.9548485,MONDO:0014518,http://purl.obolibrary.org/obo/MONDO_0014518,platelet-type bleeding disorder 19 +16.9548485,MONDO:0014529,http://purl.obolibrary.org/obo/MONDO_0014529,cerebellar-facial-dental syndrome +16.9548485,MONDO:0014537,http://purl.obolibrary.org/obo/MONDO_0014537,nephronophthisis 19 +16.9548485,MONDO:0014550,http://purl.obolibrary.org/obo/MONDO_0014550,long QT syndrome 15 +16.9548485,MONDO:0014551,http://purl.obolibrary.org/obo/MONDO_0014551,short stature with nonspecific skeletal abnormalities +16.9548485,MONDO:0014557,http://purl.obolibrary.org/obo/MONDO_0014557,ataxia - oculomotor apraxia type 4 +16.9548485,MONDO:0014558,http://purl.obolibrary.org/obo/MONDO_0014558,autosomal dominant intellectual disability-craniofacial anomalies-cardiac defects syndrome +16.9548485,MONDO:0014563,http://purl.obolibrary.org/obo/MONDO_0014563,mitochondrial short-chain Enoyl-Coa hydratase 1 deficiency +16.9548485,MONDO:0014571,http://purl.obolibrary.org/obo/MONDO_0014571,optic atrophy 9 +16.9548485,MONDO:0014573,http://purl.obolibrary.org/obo/MONDO_0014573,Cole-Carpenter syndrome 2 +16.9548485,MONDO:0014588,http://purl.obolibrary.org/obo/MONDO_0014588,congenital myasthenic syndrome 11 +16.9548485,MONDO:0014601,http://purl.obolibrary.org/obo/MONDO_0014601,autosomal recessive spinocerebellar ataxia 20 +16.9548485,MONDO:0014621,http://purl.obolibrary.org/obo/MONDO_0014621,Brugada syndrome 9 +16.9548485,MONDO:0014627,http://purl.obolibrary.org/obo/MONDO_0014627,dystonia 27 +16.9548485,MONDO:0014631,http://purl.obolibrary.org/obo/MONDO_0014631,"hypomagnesemia, seizures, and intellectual disability" +16.9548485,MONDO:0014645,http://purl.obolibrary.org/obo/MONDO_0014645,BENTA disease +16.9548485,MONDO:0014646,http://purl.obolibrary.org/obo/MONDO_0014646,Zimmermann-Laband syndrome 2 +16.9548485,MONDO:0014648,http://purl.obolibrary.org/obo/MONDO_0014648,Al-Raqad syndrome +16.9548485,MONDO:0014708,http://purl.obolibrary.org/obo/MONDO_0014708,ring chromosome 14 +16.9548485,MONDO:0014717,http://purl.obolibrary.org/obo/MONDO_0014717,early-onset Lafora body disease +16.9548485,MONDO:0014719,http://purl.obolibrary.org/obo/MONDO_0014719,"developmental and epileptic encephalopathy, 35" +16.9548485,MONDO:0014725,http://purl.obolibrary.org/obo/MONDO_0014725,spastic tetraplegia-thin corpus callosum-progressive postnatal microcephaly syndrome +16.9548485,MONDO:0014727,http://purl.obolibrary.org/obo/MONDO_0014727,immunodeficiency 45 +16.9548485,MONDO:0014729,http://purl.obolibrary.org/obo/MONDO_0014729,hereditary spastic paraplegia 75 +16.9548485,MONDO:0014737,http://purl.obolibrary.org/obo/MONDO_0014737,dehydrated hereditary stomatocytosis 2 +16.9548485,MONDO:0014739,http://purl.obolibrary.org/obo/MONDO_0014739,autosomal recessive nonsyndromic deafness 97 +16.9548485,MONDO:0014744,http://purl.obolibrary.org/obo/MONDO_0014744,acute infantile liver failure-cerebellar ataxia-peripheral sensory motor neuropathy syndrome +16.9548485,MONDO:0014748,http://purl.obolibrary.org/obo/MONDO_0014748,progressive spondyloepimetaphyseal dysplasia-short stature-short fourth metatarsals-intellectual disability syndrome +16.9548485,MONDO:0014804,http://purl.obolibrary.org/obo/MONDO_0014804,sideroblastic anemia 3 +16.9548485,MONDO:0014819,http://purl.obolibrary.org/obo/MONDO_0014819,autosomal dominant Robinow syndrome 3 +16.9548485,MONDO:0014827,http://purl.obolibrary.org/obo/MONDO_0014827,autosomal recessive spastic paraplegia type 76 +16.9548485,MONDO:0014835,http://purl.obolibrary.org/obo/MONDO_0014835,"striatal degeneration, autosomal dominant 2" +16.9548485,MONDO:0014844,http://purl.obolibrary.org/obo/MONDO_0014844,premature ovarian failure 12 +16.9548485,MONDO:0014848,http://purl.obolibrary.org/obo/MONDO_0014848,TELO2-related intellectual disability-neurodevelopmental disorder +16.9548485,MONDO:0014857,http://purl.obolibrary.org/obo/MONDO_0014857,"neurodevelopmental disorder with or without anomalies of the brain, eye, or heart" +16.9548485,MONDO:0014877,http://purl.obolibrary.org/obo/MONDO_0014877,"myopathy, distal, 5" +16.9548485,MONDO:0014923,http://purl.obolibrary.org/obo/MONDO_0014923,peeling skin syndrome 5 +16.9548485,MONDO:0014936,http://purl.obolibrary.org/obo/MONDO_0014936,ZTTK syndrome +16.9548485,MONDO:0014946,http://purl.obolibrary.org/obo/MONDO_0014946,Sifrim-Hitz-Weiss syndrome +16.9548485,MONDO:0014953,http://purl.obolibrary.org/obo/MONDO_0014953,gnb5-related intellectual disability-cardiac arrhythmia syndrome +16.9548485,MONDO:0014980,http://purl.obolibrary.org/obo/MONDO_0014980,cone-rod dystrophy and hearing loss +16.9548485,MONDO:0015014,http://purl.obolibrary.org/obo/MONDO_0015014,"coloboma, osteopetrosis, microphthalmia, macrocephaly, albinism, and deafness" +16.9548485,MONDO:0015022,http://purl.obolibrary.org/obo/MONDO_0015022,intellectual developmental disorder with dysmorphic facies and ptosis +16.9548485,MONDO:0015034,http://purl.obolibrary.org/obo/MONDO_0015034,lissencephaly with cerebellar hypoplasia type A +16.9548485,MONDO:0015054,http://purl.obolibrary.org/obo/MONDO_0015054,hereditary angioedema type 2 +16.9548485,MONDO:0015056,http://purl.obolibrary.org/obo/MONDO_0015056,acquired angioedema type 1 +16.9548485,MONDO:0015169,http://purl.obolibrary.org/obo/MONDO_0015169,chronic diarrhea due to glucoamylase deficiency +16.9548485,MONDO:0015241,http://purl.obolibrary.org/obo/MONDO_0015241,arthrogryposis-like syndrome +16.9548485,MONDO:0015283,http://purl.obolibrary.org/obo/MONDO_0015283,maternally-inherited cardiomyopathy and hearing loss +16.9548485,MONDO:0015293,http://purl.obolibrary.org/obo/MONDO_0015293,segmental outgrowth-lipomatosis-arteriovenous malformation-epidermal nevus syndrome +16.9548485,MONDO:0015371,http://purl.obolibrary.org/obo/MONDO_0015371,linear atrophoderma of Moulin +16.9548485,MONDO:0015388,http://purl.obolibrary.org/obo/MONDO_0015388,polyrrhinia +16.9548485,MONDO:0015393,http://purl.obolibrary.org/obo/MONDO_0015393,nasal ganglioglioma +16.9548485,MONDO:0015396,http://purl.obolibrary.org/obo/MONDO_0015396,congenital laryngeal cyst +16.9548485,MONDO:0015416,http://purl.obolibrary.org/obo/MONDO_0015416,Tessier number 5 facial cleft +16.9548485,MONDO:0015430,http://purl.obolibrary.org/obo/MONDO_0015430,ring chromosome 1 +16.9548485,MONDO:0015441,http://purl.obolibrary.org/obo/MONDO_0015441,ring chromosome 7 +16.9548485,MONDO:0015443,http://purl.obolibrary.org/obo/MONDO_0015443,chromosome 8-derived supernumerary ring/marker +16.9548485,MONDO:0015449,http://purl.obolibrary.org/obo/MONDO_0015449,criss-cross heart +16.9548485,MONDO:0015463,http://purl.obolibrary.org/obo/MONDO_0015463,craniodigital syndrome-intellectual disability syndrome +16.9548485,MONDO:0015532,http://purl.obolibrary.org/obo/MONDO_0015532,generalized eruptive histiocytosis +16.9548485,MONDO:0015533,http://purl.obolibrary.org/obo/MONDO_0015533,benign cephalic histiocytosis +16.9548485,MONDO:0015556,http://purl.obolibrary.org/obo/MONDO_0015556,nodular urticaria pigmentosa +16.9548485,MONDO:0015557,http://purl.obolibrary.org/obo/MONDO_0015557,Smouldering systemic mastocytosis +16.9548485,MONDO:0015583,http://purl.obolibrary.org/obo/MONDO_0015583,2p21 microdeletion syndrome +16.9548485,MONDO:0015585,http://purl.obolibrary.org/obo/MONDO_0015585,cryptogenic late-onset epileptic spasms +16.9548485,MONDO:0015689,http://purl.obolibrary.org/obo/MONDO_0015689,myeloid neoplasm associated with PDGFRA rearrangement +16.9548485,MONDO:0015690,http://purl.obolibrary.org/obo/MONDO_0015690,myeloid neoplasm associated with PDGFRB rearrangement +16.9548485,MONDO:0015704,http://purl.obolibrary.org/obo/MONDO_0015704,familial scaphocephaly syndrome +16.9548485,MONDO:0015726,http://purl.obolibrary.org/obo/MONDO_0015726,distal trisomy 14q +16.9548485,MONDO:0015746,http://purl.obolibrary.org/obo/MONDO_0015746,male infertility due to globozoospermia +16.9548485,MONDO:0015808,http://purl.obolibrary.org/obo/MONDO_0015808,folliculotropic mycosis fungoides +16.9548485,MONDO:0015824,http://purl.obolibrary.org/obo/MONDO_0015824,oculomaxillofacial dysostosis +16.9548485,MONDO:0015907,http://purl.obolibrary.org/obo/MONDO_0015907,epimetaphyseal skeletal dysplasia +16.9548485,MONDO:0016013,http://purl.obolibrary.org/obo/MONDO_0016013,fetal methylmercury syndrome +16.9548485,MONDO:0016020,http://purl.obolibrary.org/obo/MONDO_0016020,frontal encephalocele +16.9548485,MONDO:0016050,http://purl.obolibrary.org/obo/MONDO_0016050,thiamine-responsive encephalopathy +16.9548485,MONDO:0016078,http://purl.obolibrary.org/obo/MONDO_0016078,congenital systemic arteriovenous fistula +16.9548485,MONDO:0016080,http://purl.obolibrary.org/obo/MONDO_0016080,congenital bronchobiliary fistula +16.9548485,MONDO:0016083,http://purl.obolibrary.org/obo/MONDO_0016083,FLOTCH syndrome +16.9548485,MONDO:0016087,http://purl.obolibrary.org/obo/MONDO_0016087,progressive non-infectious anterior vertebral fusion +16.9548485,MONDO:0016091,http://purl.obolibrary.org/obo/MONDO_0016091,adult Krabbe disease +16.9548485,MONDO:0016204,http://purl.obolibrary.org/obo/MONDO_0016204,idiopathic copper-associated cirrhosis +16.9548485,MONDO:0016305,http://purl.obolibrary.org/obo/MONDO_0016305,atypical pantothenate kinase-associated neurodegeneration +16.9548485,MONDO:0016311,http://purl.obolibrary.org/obo/MONDO_0016311,Bockenheimer syndrome +16.9548485,MONDO:0016319,http://purl.obolibrary.org/obo/MONDO_0016319,congenital insensitivity to pain with hyperhidrosis +16.9548485,MONDO:0016368,http://purl.obolibrary.org/obo/MONDO_0016368,Rothmund-Thomson syndrome type 1 +16.9548485,MONDO:0016369,http://purl.obolibrary.org/obo/MONDO_0016369,Rothmund-Thomson syndrome type 2 +16.9548485,MONDO:0016429,http://purl.obolibrary.org/obo/MONDO_0016429,Marburg acute multiple sclerosis +16.9548485,MONDO:0016437,http://purl.obolibrary.org/obo/MONDO_0016437,late-onset focal dermal elastosis +16.9548485,MONDO:0016448,http://purl.obolibrary.org/obo/MONDO_0016448,pseudoxanthoma elasticum-like papillary dermal elastolysis +16.9548485,MONDO:0016476,http://purl.obolibrary.org/obo/MONDO_0016476,Beckwith-Wiedemann syndrome due to CDKN1C mutation +16.9548485,MONDO:0016492,http://purl.obolibrary.org/obo/MONDO_0016492,beta-thalassemia with other manifestations +16.9548485,MONDO:0016504,http://purl.obolibrary.org/obo/MONDO_0016504,primary unilateral adrenal hyperplasia +16.9548485,MONDO:0016506,http://purl.obolibrary.org/obo/MONDO_0016506,ectopic aldosterone-producing tumor +16.9548485,MONDO:0016514,http://purl.obolibrary.org/obo/MONDO_0016514,epidermolysis bullosa simplex with anodontia/hypodontia +16.9548485,MONDO:0016520,http://purl.obolibrary.org/obo/MONDO_0016520,isolated Klippel-Feil syndrome +16.9548485,MONDO:0016528,http://purl.obolibrary.org/obo/MONDO_0016528,limb body wall complex +16.9548485,MONDO:0016561,http://purl.obolibrary.org/obo/MONDO_0016561,1q44 microdeletion syndrome +16.9548485,MONDO:0016597,http://purl.obolibrary.org/obo/MONDO_0016597,none +16.9548485,MONDO:0016601,http://purl.obolibrary.org/obo/MONDO_0016601,adult-onset citrullinemia type I +16.9548485,MONDO:0016638,http://purl.obolibrary.org/obo/MONDO_0016638,familial hypodysfibrinogenemia +16.9548485,MONDO:0016640,http://purl.obolibrary.org/obo/MONDO_0016640,none +16.9548485,MONDO:0016652,http://purl.obolibrary.org/obo/MONDO_0016652,2q31.1 microdeletion syndrome +16.9548485,MONDO:0016653,http://purl.obolibrary.org/obo/MONDO_0016653,2q33.1 microdeletion syndrome +16.9548485,MONDO:0016661,http://purl.obolibrary.org/obo/MONDO_0016661,infantile onset panniculitis with uveitis and systemic granulomatosis +16.9548485,MONDO:0016670,http://purl.obolibrary.org/obo/MONDO_0016670,sickle cell-hemoglobin d disease syndrome +16.9548485,MONDO:0016765,http://purl.obolibrary.org/obo/MONDO_0016765,19p13.12 microdeletion syndrome +16.9548485,MONDO:0016773,http://purl.obolibrary.org/obo/MONDO_0016773,atrophic lichen planus +16.9548485,MONDO:0016815,http://purl.obolibrary.org/obo/MONDO_0016815,Leigh syndrome with leukodystrophy +16.9548485,MONDO:0016833,http://purl.obolibrary.org/obo/MONDO_0016833,14q12 microdeletion syndrome +16.9548485,MONDO:0016835,http://purl.obolibrary.org/obo/MONDO_0016835,14q11.2 microduplication syndrome +16.9548485,MONDO:0016882,http://purl.obolibrary.org/obo/MONDO_0016882,partial deletion of chromosome 20 +16.9548485,MONDO:0016897,http://purl.obolibrary.org/obo/MONDO_0016897,partial deletion of the short arm of chromosome 19 +16.9548485,MONDO:0016909,http://purl.obolibrary.org/obo/MONDO_0016909,partial monosomy of the long arm of chromosome 10 +16.9548485,MONDO:0016912,http://purl.obolibrary.org/obo/MONDO_0016912,partial deletion of the long arm of chromosome 14 +16.9548485,MONDO:0016918,http://purl.obolibrary.org/obo/MONDO_0016918,partial deletion of the long arm of chromosome 20 +16.9548485,MONDO:0016944,http://purl.obolibrary.org/obo/MONDO_0016944,partial duplication of the short arm of chromosome 7 +16.9548485,MONDO:0016976,http://purl.obolibrary.org/obo/MONDO_0016976,well-differentiated thymic neuroendocrine carcinoma +16.9548485,MONDO:0016978,http://purl.obolibrary.org/obo/MONDO_0016978,poorly differentiated thymic neuroendocrine carcinoma +16.9548485,MONDO:0016992,http://purl.obolibrary.org/obo/MONDO_0016992,none +16.9548485,MONDO:0017032,http://purl.obolibrary.org/obo/MONDO_0017032,primary interstitial lung disease in childhood and adulthood due to alveolar structure disorder +16.9548485,MONDO:0017065,http://purl.obolibrary.org/obo/MONDO_0017065,lumbosacral spina bifida aperta +16.9548485,MONDO:0017072,http://purl.obolibrary.org/obo/MONDO_0017072,lumbosacral spina bifida cystica +16.9548485,MONDO:0017084,http://purl.obolibrary.org/obo/MONDO_0017084,leptomyelolipoma +16.9548485,MONDO:0017093,http://purl.obolibrary.org/obo/MONDO_0017093,unilateral focal polymicrogyria +16.9548485,MONDO:0017106,http://purl.obolibrary.org/obo/MONDO_0017106,retrocerebellar cyst +16.9548485,MONDO:0017116,http://purl.obolibrary.org/obo/MONDO_0017116,congenital communicating hydrocephalus +16.9548485,MONDO:0017153,http://purl.obolibrary.org/obo/MONDO_0017153,pulmonary arterial hypertension associated with HIV infection +16.9548485,MONDO:0017155,http://purl.obolibrary.org/obo/MONDO_0017155,pulmonary arterial hypertension associated with schistosomiasis +16.9548485,MONDO:0017201,http://purl.obolibrary.org/obo/MONDO_0017201,Spasmus nutans +16.9548485,MONDO:0017212,http://purl.obolibrary.org/obo/MONDO_0017212,paraneoplastic uveitis +16.9548485,MONDO:0017231,http://purl.obolibrary.org/obo/MONDO_0017231,erythropoietic uroporphyria associated with myeloid malignancy +16.9548485,MONDO:0017250,http://purl.obolibrary.org/obo/MONDO_0017250,congenital pulmonary airway malformation type 2 +16.9548485,MONDO:0017283,http://purl.obolibrary.org/obo/MONDO_0017283,facial dysmorphism-developmental delay-behavioral abnormalities syndrome due to 10p11.21p12.31 microdeletion +16.9548485,MONDO:0017301,http://purl.obolibrary.org/obo/MONDO_0017301,pericardial and diaphragmatic defect +16.9548485,MONDO:0017327,http://purl.obolibrary.org/obo/MONDO_0017327,primary non-gestational choriocarcinoma of ovary +16.9548485,MONDO:0017329,http://purl.obolibrary.org/obo/MONDO_0017329,familial vesicoureteral reflux +16.9548485,MONDO:0017331,http://purl.obolibrary.org/obo/MONDO_0017331,Pilotto syndrome +16.9548485,MONDO:0017333,http://purl.obolibrary.org/obo/MONDO_0017333,hypomyelinating leukodystrophy with or without oligondontia and/or hypogonadism +16.9548485,MONDO:0017352,http://purl.obolibrary.org/obo/MONDO_0017352,disorder of glutamine metabolism +16.9548485,MONDO:0017354,http://purl.obolibrary.org/obo/MONDO_0017354,infantile glycine encephalopathy +16.9548485,MONDO:0017381,http://purl.obolibrary.org/obo/MONDO_0017381,congenital herpes simplex virus infection +16.9548485,MONDO:0017391,http://purl.obolibrary.org/obo/MONDO_0017391,Grayson-Wilbrandt corneal dystrophy +16.9548485,MONDO:0017428,http://purl.obolibrary.org/obo/MONDO_0017428,congenital deformities of fingers +16.9548485,MONDO:0017430,http://purl.obolibrary.org/obo/MONDO_0017430,non-syndromic congenital joint dislocations +16.9548485,MONDO:0017452,http://purl.obolibrary.org/obo/MONDO_0017452,non-syndromic brachydactyly of toes +16.9548485,MONDO:0017457,http://purl.obolibrary.org/obo/MONDO_0017457,Preaxial polydactyly of toes +16.9548485,MONDO:0017471,http://purl.obolibrary.org/obo/MONDO_0017471,congenital patella dislocation +16.9548485,MONDO:0017493,http://purl.obolibrary.org/obo/MONDO_0017493,"fibular hemimelia, bilateral" +16.9548485,MONDO:0017589,http://purl.obolibrary.org/obo/MONDO_0017589,follicular cholangitis and pancreatitis +16.9548485,MONDO:0017601,http://purl.obolibrary.org/obo/MONDO_0017601,diffuse large B-cell lymphoma with chronic inflammation +16.9548485,MONDO:0017630,http://purl.obolibrary.org/obo/MONDO_0017630,X-linked complicated spastic paraplegia type 1 +16.9548485,MONDO:0017694,http://purl.obolibrary.org/obo/MONDO_0017694,"glycogen storage disease due to acid maltase deficiency, infantile onset" +16.9548485,MONDO:0017788,http://purl.obolibrary.org/obo/MONDO_0017788,contractures - webbed neck - micrognathia - hypoplastic nipples syndrome +16.9548485,MONDO:0017792,http://purl.obolibrary.org/obo/MONDO_0017792,7p22.1 microduplication syndrome +16.9548485,MONDO:0017830,http://purl.obolibrary.org/obo/MONDO_0017830,severe Canavan disease +16.9548485,MONDO:0017832,http://purl.obolibrary.org/obo/MONDO_0017832,mycobacterium xenopi infection +16.9548485,MONDO:0017926,http://purl.obolibrary.org/obo/MONDO_0017926,multiple paragangliomas associated with polycythemia +16.9548485,MONDO:0017927,http://purl.obolibrary.org/obo/MONDO_0017927,severe lateral tibial bowing with short stature +16.9548485,MONDO:0017936,http://purl.obolibrary.org/obo/MONDO_0017936,benign Samaritan congenital myopathy +16.9548485,MONDO:0018009,http://purl.obolibrary.org/obo/MONDO_0018009,non-hypoproteinemic hypertrophic gastropathy +16.9548485,MONDO:0018098,http://purl.obolibrary.org/obo/MONDO_0018098,autosomal dominant limb-girdle muscular dystrophy type 1E (DES) +16.9548485,MONDO:0018101,http://purl.obolibrary.org/obo/MONDO_0018101,familial primary hypomagnesemia with normocalciuria and normocalcemia +16.9548485,MONDO:0018112,http://purl.obolibrary.org/obo/MONDO_0018112,isolated scaphocephaly +16.9548485,MONDO:0018138,http://purl.obolibrary.org/obo/MONDO_0018138,ocular albinism with congenital sensorineural deafness +16.9548485,MONDO:0018141,http://purl.obolibrary.org/obo/MONDO_0018141,"pyruvate carboxylase deficiency, infantile form" +16.9548485,MONDO:0018142,http://purl.obolibrary.org/obo/MONDO_0018142,"pyruvate carboxylase deficiency, severe neonatal type" +16.9548485,MONDO:0018143,http://purl.obolibrary.org/obo/MONDO_0018143,"pyruvate carboxylase deficiency, benign type" +16.9548485,MONDO:0018147,http://purl.obolibrary.org/obo/MONDO_0018147,idiopathic macular telangiectasia type 3 +16.9548485,MONDO:0018167,http://purl.obolibrary.org/obo/MONDO_0018167,primary essential cutis verticis gyrata +16.9548485,MONDO:0018189,http://purl.obolibrary.org/obo/MONDO_0018189,autosomal recessive cerebellar ataxia - pyramidal signs - nystagmus - oculomotor apraxia syndrome +16.9548485,MONDO:0018192,http://purl.obolibrary.org/obo/MONDO_0018192,paratesticular adenocarcinoma +16.9548485,MONDO:0018218,http://purl.obolibrary.org/obo/MONDO_0018218,autosomal recessive cerebral atrophy +16.9548485,MONDO:0018256,http://purl.obolibrary.org/obo/MONDO_0018256,acute myeloid leukemia with t(8;16)(p11;p13) translocation +16.9548485,MONDO:0018261,http://purl.obolibrary.org/obo/MONDO_0018261,Nevada syndrome +16.9548485,MONDO:0018264,http://purl.obolibrary.org/obo/MONDO_0018264,oculocutaneous albinism type 6 +16.9548485,MONDO:0018268,http://purl.obolibrary.org/obo/MONDO_0018268,Medich giant platelet syndrome +16.9548485,MONDO:0018278,http://purl.obolibrary.org/obo/MONDO_0018278,congenital muscular dystrophy with intellectual disability +16.9548485,MONDO:0018281,http://purl.obolibrary.org/obo/MONDO_0018281,congenital muscular dystrophy with hyperlaxity +16.9548485,MONDO:0018321,http://purl.obolibrary.org/obo/MONDO_0018321,atypical juvenile parkinsonism +16.9548485,MONDO:0018337,http://purl.obolibrary.org/obo/MONDO_0018337,severe neonatal lactic acidosis due to NFS1-ISD11 complex deficiency +16.9548485,MONDO:0018339,http://purl.obolibrary.org/obo/MONDO_0018339,PrP systemic amyloidosis +16.9548485,MONDO:0018346,http://purl.obolibrary.org/obo/MONDO_0018346,ferro-cerebro-cutaneous syndrome +16.9548485,MONDO:0018361,http://purl.obolibrary.org/obo/MONDO_0018361,neonatal scleroderma +16.9548485,MONDO:0018468,http://purl.obolibrary.org/obo/MONDO_0018468,proton-pump inhibitor-responsive esophageal eosinophilia +16.9548485,MONDO:0018471,http://purl.obolibrary.org/obo/MONDO_0018471,generalized eruptive keratoacanthoma +16.9548485,MONDO:0018483,http://purl.obolibrary.org/obo/MONDO_0018483,secondary pulmonary alveolar proteinosis +16.9548485,MONDO:0018485,http://purl.obolibrary.org/obo/MONDO_0018485,"glycogen storage disease due to acid maltase deficiency, late-onset" +16.9548485,MONDO:0018490,http://purl.obolibrary.org/obo/MONDO_0018490,cono-spondylar dysplasia +16.9548485,MONDO:0018594,http://purl.obolibrary.org/obo/MONDO_0018594,secondary polyarteritis nodosa +16.9548485,MONDO:0018603,http://purl.obolibrary.org/obo/MONDO_0018603,interstitial lung disease due to SP-C deficiency +16.9548485,MONDO:0018620,http://purl.obolibrary.org/obo/MONDO_0018620,hypothalamic adipsic hypernatraemia syndrome +16.9548485,MONDO:0018633,http://purl.obolibrary.org/obo/MONDO_0018633,20q11.2 microdeletion syndrome +16.9548485,MONDO:0018643,http://purl.obolibrary.org/obo/MONDO_0018643,susceptibility to localized juvenile periodontitis +16.9548485,MONDO:0018645,http://purl.obolibrary.org/obo/MONDO_0018645,IgG4-related sclerosing cholangitis +16.9548485,MONDO:0018653,http://purl.obolibrary.org/obo/MONDO_0018653,Polymerase proofreading-related adenomatous polyposis +16.9548485,MONDO:0018672,http://purl.obolibrary.org/obo/MONDO_0018672,IgG4-related aortitis +16.9548485,MONDO:0018679,http://purl.obolibrary.org/obo/MONDO_0018679,primary cutaneous plasmacytosis +16.9548485,MONDO:0018684,http://purl.obolibrary.org/obo/MONDO_0018684,idiopathic neonatal atrial flutter +16.9548485,MONDO:0018692,http://purl.obolibrary.org/obo/MONDO_0018692,variably protease-sensitive prionopathy +16.9548485,MONDO:0018717,http://purl.obolibrary.org/obo/MONDO_0018717,mixed cystic lymphatic malformation +16.9548485,MONDO:0018756,http://purl.obolibrary.org/obo/MONDO_0018756,euthyroid Graves orbitopathy +16.9548485,MONDO:0018765,http://purl.obolibrary.org/obo/MONDO_0018765,cryptogenic multifocal ulcerous stenosing enteritis +16.9548485,MONDO:0018774,http://purl.obolibrary.org/obo/MONDO_0018774,erythrokeratodermia-cardiomyopathy syndrome +16.9548485,MONDO:0018818,http://purl.obolibrary.org/obo/MONDO_0018818,facial diplegia with paresthesias +16.9548485,MONDO:0018844,http://purl.obolibrary.org/obo/MONDO_0018844,urachal cyst +16.9548485,MONDO:0018946,http://purl.obolibrary.org/obo/MONDO_0018946,rhombencephalosynapsis +16.9548485,MONDO:0018962,http://purl.obolibrary.org/obo/MONDO_0018962,common mesentery +16.9548485,MONDO:0018968,http://purl.obolibrary.org/obo/MONDO_0018968,iniencephaly +16.9548485,MONDO:0018974,http://purl.obolibrary.org/obo/MONDO_0018974,paraneoplastic pemphigus +16.9548485,MONDO:0018976,http://purl.obolibrary.org/obo/MONDO_0018976,schisis association +16.9548485,MONDO:0019014,http://purl.obolibrary.org/obo/MONDO_0019014,none +16.9548485,MONDO:0019034,http://purl.obolibrary.org/obo/MONDO_0019034,accessory pancreas +16.9548485,MONDO:0019146,http://purl.obolibrary.org/obo/MONDO_0019146,inherited susceptibility to mycobacterial diseases +16.9548485,MONDO:0019177,http://purl.obolibrary.org/obo/MONDO_0019177,odontoleukodystrophy +16.9548485,MONDO:0019195,http://purl.obolibrary.org/obo/MONDO_0019195,hereditary inclusion body myopathy-joint contractures-ophthalmoplegia syndrome +16.9548485,MONDO:0019201,http://purl.obolibrary.org/obo/MONDO_0019201,thyrotoxic periodic paralysis +16.9548485,MONDO:0019211,http://purl.obolibrary.org/obo/MONDO_0019211,isolated congenital anonychia +16.9548485,MONDO:0019267,http://purl.obolibrary.org/obo/MONDO_0019267,vitamin B12-unresponsive methylmalonic acidemia type mut- +16.9548485,MONDO:0019309,http://purl.obolibrary.org/obo/MONDO_0019309,late-onset junctional epidermolysis bullosa +16.9548485,MONDO:0019319,http://purl.obolibrary.org/obo/MONDO_0019319,verrucous nevus +16.9548485,MONDO:0019325,http://purl.obolibrary.org/obo/MONDO_0019325,phakomatosis cesioflammea +16.9548485,MONDO:0019357,http://purl.obolibrary.org/obo/MONDO_0019357,congenital narrowing of cervical spinal canal +16.9548485,MONDO:0019406,http://purl.obolibrary.org/obo/MONDO_0019406,craniofacial conodysplasia +16.9548485,MONDO:0019408,http://purl.obolibrary.org/obo/MONDO_0019408,Astley-Kendall dysplasia +16.9548485,MONDO:0019446,http://purl.obolibrary.org/obo/MONDO_0019446,localized lichen myxedematosus +16.9548485,MONDO:0019478,http://purl.obolibrary.org/obo/MONDO_0019478,adult nodular lymphocyte predominant Hodgkin lymphoma +16.9548485,MONDO:0019484,http://purl.obolibrary.org/obo/MONDO_0019484,hypothalamic hamartomas with gelastic seizures +16.9548485,MONDO:0019487,http://purl.obolibrary.org/obo/MONDO_0019487,epilepsy with myoclonic absences +16.9548485,MONDO:0019523,http://purl.obolibrary.org/obo/MONDO_0019523,none +16.9548485,MONDO:0019550,http://purl.obolibrary.org/obo/MONDO_0019550,hereditary motor and sensory neuropathy with acrodystrophy +16.9548485,MONDO:0019572,http://purl.obolibrary.org/obo/MONDO_0019572,autosomal recessive cutis laxa type 1 +16.9548485,MONDO:0019606,http://purl.obolibrary.org/obo/MONDO_0019606,simple cryoglobulinemia +16.9548485,MONDO:0019666,http://purl.obolibrary.org/obo/MONDO_0019666,"spondyloepimetaphyseal dysplasia, PAPSS2 type" +16.9548485,MONDO:0019679,http://purl.obolibrary.org/obo/MONDO_0019679,brachydactyly type A7 +16.9548485,MONDO:0019739,http://purl.obolibrary.org/obo/MONDO_0019739,atypical hemolytic-uremic syndrome with anti-factor H antibodies +16.9548485,MONDO:0019763,http://purl.obolibrary.org/obo/MONDO_0019763,laryngotracheoesophageal cleft type 3 +16.9548485,MONDO:0019775,http://purl.obolibrary.org/obo/MONDO_0019775,Chudley-Lowry-Hoar syndrome +16.9548485,MONDO:0019777,http://purl.obolibrary.org/obo/MONDO_0019777,Carpenter-Waziri syndrome +16.9548485,MONDO:0019826,http://purl.obolibrary.org/obo/MONDO_0019826,abnormal origin or aberrant course of coronary artery +16.9548485,MONDO:0019829,http://purl.obolibrary.org/obo/MONDO_0019829,congenital anomaly of superior vena cava +16.9548485,MONDO:0019831,http://purl.obolibrary.org/obo/MONDO_0019831,congenital anomaly of the coronary sinus +16.9548485,MONDO:0019858,http://purl.obolibrary.org/obo/MONDO_0019858,idiopathic congenital hypothyroidism +16.9548485,MONDO:0019860,http://purl.obolibrary.org/obo/MONDO_0019860,thyroid hemiagenesis +16.9548485,MONDO:0019866,http://purl.obolibrary.org/obo/MONDO_0019866,mosaic trisomy 5 +16.9548485,MONDO:0019868,http://purl.obolibrary.org/obo/MONDO_0019868,mosaic trisomy 10 +16.9548485,MONDO:0019873,http://purl.obolibrary.org/obo/MONDO_0019873,4p16.3 microduplication syndrome +16.9548485,MONDO:0019879,http://purl.obolibrary.org/obo/MONDO_0019879,distal trisomy 4q +16.9548485,MONDO:0019881,http://purl.obolibrary.org/obo/MONDO_0019881,distal trisomy 6q +16.9548485,MONDO:0019922,http://purl.obolibrary.org/obo/MONDO_0019922,paternal uniparental disomy of chromosome 7 +16.9548485,MONDO:0019953,http://purl.obolibrary.org/obo/MONDO_0019953,mega-cisterna magna +16.9548485,MONDO:0019955,http://purl.obolibrary.org/obo/MONDO_0019955,GRFoma +16.9548485,MONDO:0019979,http://purl.obolibrary.org/obo/MONDO_0019979,"renal hypoplasia, unilateral" +16.9548485,MONDO:0019994,http://purl.obolibrary.org/obo/MONDO_0019994,maternal uniparental disomy of chromosome 13 +16.9548485,MONDO:0020303,http://purl.obolibrary.org/obo/MONDO_0020303,Angelman syndrome due to paternal uniparental disomy of chromosome 15 +16.9548485,MONDO:0020353,http://purl.obolibrary.org/obo/MONDO_0020353,von Hippel anomaly +16.9548485,MONDO:0020354,http://purl.obolibrary.org/obo/MONDO_0020354,coloboma of choroid and retina +16.9548485,MONDO:0020424,http://purl.obolibrary.org/obo/MONDO_0020424,intramural coronary arterial course +16.9548485,MONDO:0020434,http://purl.obolibrary.org/obo/MONDO_0020434,"atrial septal defect, ostium secundum type" +16.9548485,MONDO:0020436,http://purl.obolibrary.org/obo/MONDO_0020436,"atrial septal defect, sinus venosus type" +16.9548485,MONDO:0020438,http://purl.obolibrary.org/obo/MONDO_0020438,atrial septal aneurysm +16.9548485,MONDO:0020445,http://purl.obolibrary.org/obo/MONDO_0020445,agenesis of the superior vena cava +16.9548485,MONDO:0020452,http://purl.obolibrary.org/obo/MONDO_0020452,inferior vena cava interruption +16.9548485,MONDO:0020459,http://purl.obolibrary.org/obo/MONDO_0020459,unstable hemoglobin disease +16.9548485,MONDO:0020469,http://purl.obolibrary.org/obo/MONDO_0020469,"48,XYYY syndrome" +16.9548485,MONDO:0020475,http://purl.obolibrary.org/obo/MONDO_0020475,dermotrichic syndrome +16.9548485,MONDO:0020478,http://purl.obolibrary.org/obo/MONDO_0020478,Leber plus disease +16.9548485,MONDO:0020496,http://purl.obolibrary.org/obo/MONDO_0020496,familial porencephaly +16.9548485,MONDO:0020504,http://purl.obolibrary.org/obo/MONDO_0020504,genetic recurrent myoglobinuria +16.9548485,MONDO:0020522,http://purl.obolibrary.org/obo/MONDO_0020522,Ehlers-Danlos syndrome type 7B +16.9548485,MONDO:0020523,http://purl.obolibrary.org/obo/MONDO_0020523,familial parathyroid adenoma +16.9548485,MONDO:0020532,http://purl.obolibrary.org/obo/MONDO_0020532,spirillary rat-bite fever +16.9548485,MONDO:0020538,http://purl.obolibrary.org/obo/MONDO_0020538,malignant dysgerminomatous germ cell tumor of ovary +16.9548485,MONDO:0020603,http://purl.obolibrary.org/obo/MONDO_0020603,X-linked chondrodysplasia punctata 2 +16.9548485,MONDO:0020682,http://purl.obolibrary.org/obo/MONDO_0020682,"Ehlers-Danlos syndrome, progeroid type 1" +16.9548485,MONDO:0020697,http://purl.obolibrary.org/obo/MONDO_0020697,lung epithelial-myoepithelial carcinoma +16.9548485,MONDO:0020751,http://purl.obolibrary.org/obo/MONDO_0020751,orthostatic hypotension 2 +16.9548485,MONDO:0020774,http://purl.obolibrary.org/obo/MONDO_0020774,Menke-Hennekam syndrome +16.9548485,MONDO:0020795,http://purl.obolibrary.org/obo/MONDO_0020795,Silver-Russell syndrome 5 +16.9548485,MONDO:0020840,http://purl.obolibrary.org/obo/MONDO_0020840,pulmonary alveolar proteinosis with hypogammaglobulinemia +16.9548485,MONDO:0020983,http://purl.obolibrary.org/obo/MONDO_0020983,myocardial rupture +16.9548485,MONDO:0021010,http://purl.obolibrary.org/obo/MONDO_0021010,skin lymphangiosarcoma +16.9548485,MONDO:0021011,http://purl.obolibrary.org/obo/MONDO_0021011,hereditary progressive chorea without dementia +16.9548485,MONDO:0021018,http://purl.obolibrary.org/obo/MONDO_0021018,autosomal dominant limb-girdle muscular dystrophy type 1D (DNAJB6) +16.9548485,MONDO:0021056,http://purl.obolibrary.org/obo/MONDO_0021056,familial adenomatous polyposis 1 +16.9548485,MONDO:0021175,http://purl.obolibrary.org/obo/MONDO_0021175,herpetic vulvovaginitis +16.9548485,MONDO:0021289,http://purl.obolibrary.org/obo/MONDO_0021289,carcinoma in situ of cecum +16.9548485,MONDO:0021290,http://purl.obolibrary.org/obo/MONDO_0021290,carcinoma in situ of appendix +16.9548485,MONDO:0021299,http://purl.obolibrary.org/obo/MONDO_0021299,carcinoma in situ of extrahepatic bile duct +16.9548485,MONDO:0021404,http://purl.obolibrary.org/obo/MONDO_0021404,polyp of sphenoidal sinus +16.9548485,MONDO:0021408,http://purl.obolibrary.org/obo/MONDO_0021408,polyp of frontal sinus +16.9548485,MONDO:0021443,http://purl.obolibrary.org/obo/MONDO_0021443,benign neoplasm of lymph node +16.9548485,MONDO:0021479,http://purl.obolibrary.org/obo/MONDO_0021479,benign neoplasm of oropharynx +16.9548485,MONDO:0021480,http://purl.obolibrary.org/obo/MONDO_0021480,benign neoplasm of soft palate +16.9548485,MONDO:0021518,http://purl.obolibrary.org/obo/MONDO_0021518,benign neoplasm of hard palate +16.9548485,MONDO:0021528,http://purl.obolibrary.org/obo/MONDO_0021528,benign neoplasm of male breast +16.9548485,MONDO:0021655,http://purl.obolibrary.org/obo/MONDO_0021655,secondary catabolic mucinosis of skin +16.9548485,MONDO:0021668,http://purl.obolibrary.org/obo/MONDO_0021668,none +16.9548485,MONDO:0021723,http://purl.obolibrary.org/obo/MONDO_0021723,vaginismus +16.9548485,MONDO:0021761,http://purl.obolibrary.org/obo/MONDO_0021761,acral dysostosis dyserythropoiesis syndrome +16.9548485,MONDO:0021808,http://purl.obolibrary.org/obo/MONDO_0021808,acute cholinergic dysautonomia +16.9548485,MONDO:0021918,http://purl.obolibrary.org/obo/MONDO_0021918,arena syndrome +16.9548485,MONDO:0022007,http://purl.obolibrary.org/obo/MONDO_0022007,water intoxication +16.9548485,MONDO:0022055,http://purl.obolibrary.org/obo/MONDO_0022055,Calabro syndrome +16.9548485,MONDO:0022060,http://purl.obolibrary.org/obo/MONDO_0022060,calloso-genital dysplasia +16.9548485,MONDO:0022321,http://purl.obolibrary.org/obo/MONDO_0022321,2-methylacetoacetyl CoA thiolase deficiency +16.9548485,MONDO:0022398,http://purl.obolibrary.org/obo/MONDO_0022398,aglossia and situs inversus +16.9548485,MONDO:0022401,http://purl.obolibrary.org/obo/MONDO_0022401,agyria pachygyria polymicrogyria +16.9548485,MONDO:0022413,http://purl.obolibrary.org/obo/MONDO_0022413,Albright-like syndrome +16.9548485,MONDO:0022612,http://purl.obolibrary.org/obo/MONDO_0022612,Brunsting-Perry syndrome +16.9548485,MONDO:0022653,http://purl.obolibrary.org/obo/MONDO_0022653,cardiomyopathy due to anthracyclines +16.9548485,MONDO:0022675,http://purl.obolibrary.org/obo/MONDO_0022675,cataract skeletal anomalies +16.9548485,MONDO:0022737,http://purl.obolibrary.org/obo/MONDO_0022737,choroideremia hypopituitarism +16.9548485,MONDO:0022752,http://purl.obolibrary.org/obo/MONDO_0022752,chromosome 16p13.3 deletion syndrome +16.9548485,MONDO:0022769,http://purl.obolibrary.org/obo/MONDO_0022769,ciliary dyskinesia-bronchiectasis +16.9548485,MONDO:0022822,http://purl.obolibrary.org/obo/MONDO_0022822,congenital cardiovascular shunt +16.9548485,MONDO:0022900,http://purl.obolibrary.org/obo/MONDO_0022900,athyreotic congenital hypothyroidism +16.9548485,MONDO:0022908,http://purl.obolibrary.org/obo/MONDO_0022908,cutis gyratum acanthosis nigricans craniosynostosis +16.9548485,MONDO:0022953,http://purl.obolibrary.org/obo/MONDO_0022953,delta-1-pyrroline-5-carboxylate dehydrogenase deficiency +16.9548485,MONDO:0022991,http://purl.obolibrary.org/obo/MONDO_0022991,diploid-triploid mosaicism +16.9548485,MONDO:0023000,http://purl.obolibrary.org/obo/MONDO_0023000,dobrow syndrome +16.9548485,MONDO:0023119,http://purl.obolibrary.org/obo/MONDO_0023119,familial myelofibrosis +16.9548485,MONDO:0023142,http://purl.obolibrary.org/obo/MONDO_0023142,fetal brain disruption sequence +16.9548485,MONDO:0023186,http://purl.obolibrary.org/obo/MONDO_0023186,Fraser Jequier Chen syndrome +16.9548485,MONDO:0023199,http://purl.obolibrary.org/obo/MONDO_0023199,frontonasal dysplasia phocomelic upper limbs +16.9548485,MONDO:0024171,http://purl.obolibrary.org/obo/MONDO_0024171,radio-digito-facial dysplasia +16.9548485,MONDO:0024275,http://purl.obolibrary.org/obo/MONDO_0024275,amebic dysentery +16.9548485,MONDO:0024381,http://purl.obolibrary.org/obo/MONDO_0024381,"circadian rhythm sleep disorder, jet lag type" +16.9548485,MONDO:0024455,http://purl.obolibrary.org/obo/MONDO_0024455,autosomal dominant Robinow syndrome 1 +16.9548485,MONDO:0024465,http://purl.obolibrary.org/obo/MONDO_0024465,"surfactant metabolism dysfunction, pulmonary, 2" +16.9548485,MONDO:0024473,http://purl.obolibrary.org/obo/MONDO_0024473,Astrakhan spotted fever +16.9548485,MONDO:0024506,http://purl.obolibrary.org/obo/MONDO_0024506,Adams-Oliver syndrome 1 +16.9548485,MONDO:0024537,http://purl.obolibrary.org/obo/MONDO_0024537,Brown-Vialetto-van Laere syndrome 1 +16.9548485,MONDO:0024542,http://purl.obolibrary.org/obo/MONDO_0024542,"cerebellar ataxia, intellectual disability, and dysequilibrium syndrome 1" +16.9548485,MONDO:0024545,http://purl.obolibrary.org/obo/MONDO_0024545,Miyoshi muscular dystrophy 1 +16.9548485,MONDO:0024546,http://purl.obolibrary.org/obo/MONDO_0024546,"hypertrophic osteoarthropathy, primary, autosomal recessive, 1" +16.9548485,MONDO:0024652,http://purl.obolibrary.org/obo/MONDO_0024652,embryonic cyst of fallopian tube +16.9548485,MONDO:0024950,http://purl.obolibrary.org/obo/MONDO_0024950,horse disease +16.9548485,MONDO:0024982,http://purl.obolibrary.org/obo/MONDO_0024982,"salmonella infections, animal" +16.9548485,MONDO:0025095,http://purl.obolibrary.org/obo/MONDO_0025095,"malaria, avian" +16.9548485,MONDO:0025100,http://purl.obolibrary.org/obo/MONDO_0025100,"mastitis, bovine" +16.9548485,MONDO:0025129,http://purl.obolibrary.org/obo/MONDO_0025129,swine erysipelas +16.9548485,MONDO:0025163,http://purl.obolibrary.org/obo/MONDO_0025163,white heifer disease +16.9548485,MONDO:0025376,http://purl.obolibrary.org/obo/MONDO_0025376,African horse sickness +16.9548485,MONDO:0025488,http://purl.obolibrary.org/obo/MONDO_0025488,"leukemia, feline" +16.9548485,MONDO:0025505,http://purl.obolibrary.org/obo/MONDO_0025505,mink viral enteritis +16.9548485,MONDO:0025512,http://purl.obolibrary.org/obo/MONDO_0025512,type II hypersensitivity reaction disease +16.9548485,MONDO:0026782,http://purl.obolibrary.org/obo/MONDO_0026782,"chondrodysplasia punctata 2, X-linked dominant" +16.9548485,MONDO:0030010,http://purl.obolibrary.org/obo/MONDO_0030010,hypogonadotropic hypogonadism 25 with anosmia +16.9548485,MONDO:0030018,http://purl.obolibrary.org/obo/MONDO_0030018,autoinflammation with episodic fever and lymphadenopathy +16.9548485,MONDO:0030032,http://purl.obolibrary.org/obo/MONDO_0030032,"chromosome 17q11.2 duplication syndrome, 1.4-mb" +16.9548485,MONDO:0030045,http://purl.obolibrary.org/obo/MONDO_0030045,Liberfarb syndrome +16.9548485,MONDO:0030065,http://purl.obolibrary.org/obo/MONDO_0030065,"agenesis of corpus callosum, cardiac, ocular, and genital syndrome" +16.9548485,MONDO:0030074,http://purl.obolibrary.org/obo/MONDO_0030074,spondylometaphyseal dysplasia with corneal dystrophy +16.9548485,MONDO:0030105,http://purl.obolibrary.org/obo/MONDO_0030105,galactosemia 4 +16.9548485,MONDO:0030118,http://purl.obolibrary.org/obo/MONDO_0030118,silver-russell syndrome 4 +16.9548485,MONDO:0030705,http://purl.obolibrary.org/obo/MONDO_0030705,Trichomonas prostatitis +16.9548485,MONDO:0030706,http://purl.obolibrary.org/obo/MONDO_0030706,Trichomonas cystitis +16.9548485,MONDO:0032526,http://purl.obolibrary.org/obo/MONDO_0032526,spinocerebellar ataxia 48 +16.9548485,MONDO:0032564,http://purl.obolibrary.org/obo/MONDO_0032564,hennekam lymphangiectasia-lymphedema syndrome 3 +16.9548485,MONDO:0032566,http://purl.obolibrary.org/obo/MONDO_0032566,squalene synthase deficiency +16.9548485,MONDO:0032579,http://purl.obolibrary.org/obo/MONDO_0032579,warburg-cinotti syndrome +16.9548485,MONDO:0032648,http://purl.obolibrary.org/obo/MONDO_0032648,mega-corpus-callosum syndrome with cerebellar hypoplasia and cortical malformations +16.9548485,MONDO:0032649,http://purl.obolibrary.org/obo/MONDO_0032649,hypotrichosis 14 +16.9548485,MONDO:0032655,http://purl.obolibrary.org/obo/MONDO_0032655,visual impairment and progressive phthisis bulbi +16.9548485,MONDO:0032756,http://purl.obolibrary.org/obo/MONDO_0032756,long qt syndrome 8 +16.9548485,MONDO:0032941,http://purl.obolibrary.org/obo/MONDO_0032941,myopia 27 +16.9548485,MONDO:0033007,http://purl.obolibrary.org/obo/MONDO_0033007,Galloway-Mowat syndrome 3 +16.9548485,MONDO:0033203,http://purl.obolibrary.org/obo/MONDO_0033203,nephrotic syndrome 14 +16.9548485,MONDO:0033211,http://purl.obolibrary.org/obo/MONDO_0033211,diencephalic-mesencephalic junction dysplasia syndrome +16.9548485,MONDO:0033282,http://purl.obolibrary.org/obo/MONDO_0033282,multiple mitochondrial dysfunctions syndrome 5 +16.9548485,MONDO:0033479,http://purl.obolibrary.org/obo/MONDO_0033479,spinocerebellar ataxia 44 +16.9548485,MONDO:0034041,http://purl.obolibrary.org/obo/MONDO_0034041,congenital axonal neuropathy with encephalopathy +16.9548485,MONDO:0034212,http://purl.obolibrary.org/obo/MONDO_0034212,methotrexate toxicity +16.9548485,MONDO:0036781,http://purl.obolibrary.org/obo/MONDO_0036781,benign axillary neoplasm +16.9548485,MONDO:0037746,http://purl.obolibrary.org/obo/MONDO_0037746,malignant vaginal mixed epithelial and mesenchymal neoplasm +16.9548485,MONDO:0041095,http://purl.obolibrary.org/obo/MONDO_0041095,malignant otitis externa caused by Pseudomonas aeruginosa +16.9548485,MONDO:0041154,http://purl.obolibrary.org/obo/MONDO_0041154,disease of neck of urinary bladder +16.9548485,MONDO:0041295,http://purl.obolibrary.org/obo/MONDO_0041295,acute papillary necrosis +16.9548485,MONDO:0041752,http://purl.obolibrary.org/obo/MONDO_0041752,paucibacillary leprosy +16.9548485,MONDO:0041903,http://purl.obolibrary.org/obo/MONDO_0041903,gonococcal infection of joint +16.9548485,MONDO:0042370,http://purl.obolibrary.org/obo/MONDO_0042370,Yersinia enterocolitica infectious disease +16.9548485,MONDO:0042705,http://purl.obolibrary.org/obo/MONDO_0042705,prostatic malacoplakia associated with prostatic abscess +16.9548485,MONDO:0042915,http://purl.obolibrary.org/obo/MONDO_0042915,Schmitt-Gillenwater-Kelly syndrome +16.9548485,MONDO:0043195,http://purl.obolibrary.org/obo/MONDO_0043195,rubinstein taybi like syndrome +16.9548485,MONDO:0043206,http://purl.obolibrary.org/obo/MONDO_0043206,trichostasis spinulosa +16.9548485,MONDO:0043264,http://purl.obolibrary.org/obo/MONDO_0043264,post-traumatic epilepsy +16.9548485,MONDO:0043346,http://purl.obolibrary.org/obo/MONDO_0043346,progressive transformation of germinal centers +16.9548485,MONDO:0043775,http://purl.obolibrary.org/obo/MONDO_0043775,respiratory paralysis +16.9548485,MONDO:0043988,http://purl.obolibrary.org/obo/MONDO_0043988,zoster sine herpete +16.9548485,MONDO:0044213,http://purl.obolibrary.org/obo/MONDO_0044213,acute idiopathic urticaria +16.9548485,MONDO:0044302,http://purl.obolibrary.org/obo/MONDO_0044302,"congenital heart defects, dysmorphic facial features, and intellectual developmental disorder" +16.9548485,MONDO:0044314,http://purl.obolibrary.org/obo/MONDO_0044314,retinitis pigmentosa 78 +16.9548485,MONDO:0044315,http://purl.obolibrary.org/obo/MONDO_0044315,craniosynostosis 7 +16.9548485,MONDO:0044318,http://purl.obolibrary.org/obo/MONDO_0044318,intellectual developmental disorder with gastrointestinal difficulties and high pain threshold +16.9548485,MONDO:0044333,http://purl.obolibrary.org/obo/MONDO_0044333,alcohol-induced Wernicke-Korsakoff's syndrome +16.9548485,MONDO:0044342,http://purl.obolibrary.org/obo/MONDO_0044342,thoracic disc degenerative disorder +16.9548485,MONDO:0044355,http://purl.obolibrary.org/obo/MONDO_0044355,isolated sternocostoclavicular hyperostosis +16.9548485,MONDO:0044718,http://purl.obolibrary.org/obo/MONDO_0044718,alkaline ceramidase 3 deficiency +16.9548485,MONDO:0044738,http://purl.obolibrary.org/obo/MONDO_0044738,Gabriele de Vries syndrome +16.9548485,MONDO:0044748,http://purl.obolibrary.org/obo/MONDO_0044748,anaplasmosis in cattle +16.9548485,MONDO:0044776,http://purl.obolibrary.org/obo/MONDO_0044776,premature ovarian failure 10 +16.9548485,MONDO:0044777,http://purl.obolibrary.org/obo/MONDO_0044777,premature ovarian failure 14 +16.9548485,MONDO:0044797,http://purl.obolibrary.org/obo/MONDO_0044797,desmoplastic nevus +16.9548485,MONDO:0044800,http://purl.obolibrary.org/obo/MONDO_0044800,desmoplastic spitz nevus +16.9548485,MONDO:0044816,http://purl.obolibrary.org/obo/MONDO_0044816,familial idiopathic torsion dystonia +16.9548485,MONDO:0044912,http://purl.obolibrary.org/obo/MONDO_0044912,metastatic malignant neoplasm in the spinal cord +16.9548485,MONDO:0044956,http://purl.obolibrary.org/obo/MONDO_0044956,paranasal sinus mucoepidermoid carcinoma +16.9548485,MONDO:0045023,http://purl.obolibrary.org/obo/MONDO_0045023,acquired adrenogenital syndrome +16.9548485,MONDO:0045035,http://purl.obolibrary.org/obo/MONDO_0045035,opportunistic infectious +16.9548485,MONDO:0045060,http://purl.obolibrary.org/obo/MONDO_0045060,intraductal cribriform breast adenocarcinoma +16.9548485,MONDO:0054561,http://purl.obolibrary.org/obo/MONDO_0054561,anauxetic dysplasia 2 +16.9548485,MONDO:0054588,http://purl.obolibrary.org/obo/MONDO_0054588,Noonan syndrome-like disorder with loose anagen hair 2 +16.9548485,MONDO:0054637,http://purl.obolibrary.org/obo/MONDO_0054637,Noonan syndrome-like disorder with loose anagen hair 1 +16.9548485,MONDO:0054737,http://purl.obolibrary.org/obo/MONDO_0054737,Fraser syndrome 1 +16.9548485,MONDO:0054780,http://purl.obolibrary.org/obo/MONDO_0054780,elliptocytosis 3 +16.9548485,MONDO:0054831,http://purl.obolibrary.org/obo/MONDO_0054831,Coffin-Siris syndrome 7 +16.9548485,MONDO:0054838,http://purl.obolibrary.org/obo/MONDO_0054838,"cardiomyopathy, familial hypertrophic 27" +16.9548485,MONDO:0054865,http://purl.obolibrary.org/obo/MONDO_0054865,encephalopathy due to mitochondrial and peroxisomal fission defect +16.9548485,MONDO:0054868,http://purl.obolibrary.org/obo/MONDO_0054868,meconium ileus +16.9548485,MONDO:0056816,http://purl.obolibrary.org/obo/MONDO_0056816,vulvar neuroendocrine carcinoma +16.9548485,MONDO:0060490,http://purl.obolibrary.org/obo/MONDO_0060490,"neurodevelopmental disorder with microcephaly, hypotonia, and variable brain anomalies" +16.9548485,MONDO:0060502,http://purl.obolibrary.org/obo/MONDO_0060502,"neurodevelopmental disorder with progressive microcephaly, spasticity, and brain anomalies" +16.9548485,MONDO:0060564,http://purl.obolibrary.org/obo/MONDO_0060564,HELIX syndrome +16.9548485,MONDO:0060578,http://purl.obolibrary.org/obo/MONDO_0060578,"neurodevelopmental disorder, mitochondrial, with abnormal movements and lactic acidosis, with or without seizures" +16.9548485,MONDO:0060593,http://purl.obolibrary.org/obo/MONDO_0060593,actn3 deficiency +16.9548485,MONDO:0060596,http://purl.obolibrary.org/obo/MONDO_0060596,neurodevelopmental disorder with dysmorphic facies and distal limb anomalies +16.9548485,MONDO:0060690,http://purl.obolibrary.org/obo/MONDO_0060690,phenytoin toxicity +16.9548485,MONDO:0060712,http://purl.obolibrary.org/obo/MONDO_0060712,"developmental delay, intellectual disability, obesity, and dysmorphic features" +16.9548485,MONDO:0060713,http://purl.obolibrary.org/obo/MONDO_0060713,"deafness, congenital heart defects, and posterior embryotoxon" +16.9548485,MONDO:0100005,http://purl.obolibrary.org/obo/MONDO_0100005,primary mast cell activation syndrome +16.9548485,MONDO:0100013,http://purl.obolibrary.org/obo/MONDO_0100013,paratenonitis with tendinosis +16.9548485,MONDO:0100040,http://purl.obolibrary.org/obo/MONDO_0100040,FOXG1 disorder +16.9548485,MONDO:0100058,http://purl.obolibrary.org/obo/MONDO_0100058,hypervalinemia and hyperleucine-isoleucinemia +16.9548485,MONDO:0100089,http://purl.obolibrary.org/obo/MONDO_0100089,GATA1-Related X-Linked Cytopenia +16.9548485,MONDO:0100104,http://purl.obolibrary.org/obo/MONDO_0100104,fetal akinesia deformation sequence 4 +16.9548485,MONDO:0100121,http://purl.obolibrary.org/obo/MONDO_0100121,"SCN4A-related myopathy, autosomal recessive" +16.9548485,MONDO:0100259,http://purl.obolibrary.org/obo/MONDO_0100259,peroxisome biogenesis disorder due to PEX1 defect +16.9548485,MONDO:0100264,http://purl.obolibrary.org/obo/MONDO_0100264,peroxisome biogenesis disorder due to PEX10 defect +16.9548485,MONDO:0100266,http://purl.obolibrary.org/obo/MONDO_0100266,peroxisome biogenesis disorder due to PEX12 defect +16.9548485,MONDO:0100275,http://purl.obolibrary.org/obo/MONDO_0100275,fatty acyl-CoA reductase defects +16.9548485,MONDO:0100276,http://purl.obolibrary.org/obo/MONDO_0100276,disorder of defective peroxisomal and mitochondrial fission +16.9548485,MONDO:0100279,http://purl.obolibrary.org/obo/MONDO_0100279,peroxisome biogenesis disorder due to PEX11B defect +16.9548485,MONDO:0700084,http://purl.obolibrary.org/obo/MONDO_0700084,myopathy caused by varation in GMPPB +16.9548485,MOP:0000028,http://purl.obolibrary.org/obo/MOP_0000028,none +16.9548485,MOP:0000095,http://purl.obolibrary.org/obo/MOP_0000095,none +16.9548485,MOP:0000163,http://purl.obolibrary.org/obo/MOP_0000163,none +16.9548485,MOP:0000169,http://purl.obolibrary.org/obo/MOP_0000169,none +16.9548485,MOP:0000290,http://purl.obolibrary.org/obo/MOP_0000290,none +16.9548485,MOP:0000368,http://purl.obolibrary.org/obo/MOP_0000368,none +16.9548485,MOP:0000500,http://purl.obolibrary.org/obo/MOP_0000500,none +16.9548485,MOP:0000557,http://purl.obolibrary.org/obo/MOP_0000557,none +16.9548485,MOP:0000559,http://purl.obolibrary.org/obo/MOP_0000559,none +16.9548485,MOP:0000596,http://purl.obolibrary.org/obo/MOP_0000596,none +16.9548485,MOP:0000597,http://purl.obolibrary.org/obo/MOP_0000597,none +16.9548485,MOP:0000787,http://purl.obolibrary.org/obo/MOP_0000787,none +16.9548485,MOP:0000798,http://purl.obolibrary.org/obo/MOP_0000798,none +16.9548485,MOP:0000802,http://purl.obolibrary.org/obo/MOP_0000802,none +16.9548485,MOP:0001030,http://purl.obolibrary.org/obo/MOP_0001030,none +16.9548485,MOP:0004290,http://purl.obolibrary.org/obo/MOP_0004290,none +16.9548485,MOP:0005093,http://purl.obolibrary.org/obo/MOP_0005093,none +16.9548485,MOP:0005370,http://purl.obolibrary.org/obo/MOP_0005370,none +16.9548485,NCBITaxon:10001,http://purl.obolibrary.org/obo/NCBITaxon_10001,none +16.9548485,NCBITaxon:1000587,http://purl.obolibrary.org/obo/NCBITaxon_1000587,none +16.9548485,NCBITaxon:1000670,http://purl.obolibrary.org/obo/NCBITaxon_1000670,none +16.9548485,NCBITaxon:10008,http://purl.obolibrary.org/obo/NCBITaxon_10008,none +16.9548485,NCBITaxon:10009,http://purl.obolibrary.org/obo/NCBITaxon_10009,none +16.9548485,NCBITaxon:1001062,http://purl.obolibrary.org/obo/NCBITaxon_1001062,none +16.9548485,NCBITaxon:1001080,http://purl.obolibrary.org/obo/NCBITaxon_1001080,none +16.9548485,NCBITaxon:1001081,http://purl.obolibrary.org/obo/NCBITaxon_1001081,none +16.9548485,NCBITaxon:1001341,http://purl.obolibrary.org/obo/NCBITaxon_1001341,none +16.9548485,NCBITaxon:1002079,http://purl.obolibrary.org/obo/NCBITaxon_1002079,none +16.9548485,NCBITaxon:100215,http://purl.obolibrary.org/obo/NCBITaxon_100215,none +16.9548485,NCBITaxon:1002900,http://purl.obolibrary.org/obo/NCBITaxon_1002900,none +16.9548485,NCBITaxon:1003268,http://purl.obolibrary.org/obo/NCBITaxon_1003268,none +16.9548485,NCBITaxon:1003275,http://purl.obolibrary.org/obo/NCBITaxon_1003275,none +16.9548485,NCBITaxon:10033,http://purl.obolibrary.org/obo/NCBITaxon_10033,none +16.9548485,NCBITaxon:1003876,http://purl.obolibrary.org/obo/NCBITaxon_1003876,none +16.9548485,NCBITaxon:1003891,http://purl.obolibrary.org/obo/NCBITaxon_1003891,none +16.9548485,NCBITaxon:1003967,http://purl.obolibrary.org/obo/NCBITaxon_1003967,none +16.9548485,NCBITaxon:1003968,http://purl.obolibrary.org/obo/NCBITaxon_1003968,none +16.9548485,NCBITaxon:1004153,http://purl.obolibrary.org/obo/NCBITaxon_1004153,none +16.9548485,NCBITaxon:100454,http://purl.obolibrary.org/obo/NCBITaxon_100454,none +16.9548485,NCBITaxon:100599,http://purl.obolibrary.org/obo/NCBITaxon_100599,none +16.9548485,NCBITaxon:100601,http://purl.obolibrary.org/obo/NCBITaxon_100601,none +16.9548485,NCBITaxon:1006584,http://purl.obolibrary.org/obo/NCBITaxon_1006584,none +16.9548485,NCBITaxon:1006585,http://purl.obolibrary.org/obo/NCBITaxon_1006585,none +16.9548485,NCBITaxon:1006586,http://purl.obolibrary.org/obo/NCBITaxon_1006586,none +16.9548485,NCBITaxon:1006621,http://purl.obolibrary.org/obo/NCBITaxon_1006621,none +16.9548485,NCBITaxon:100673,http://purl.obolibrary.org/obo/NCBITaxon_100673,none +16.9548485,NCBITaxon:100786,http://purl.obolibrary.org/obo/NCBITaxon_100786,none +16.9548485,NCBITaxon:100897,http://purl.obolibrary.org/obo/NCBITaxon_100897,none +16.9548485,NCBITaxon:1009552,http://purl.obolibrary.org/obo/NCBITaxon_1009552,none +16.9548485,NCBITaxon:10100,http://purl.obolibrary.org/obo/NCBITaxon_10100,none +16.9548485,NCBITaxon:101007,http://purl.obolibrary.org/obo/NCBITaxon_101007,none +16.9548485,NCBITaxon:1010667,http://purl.obolibrary.org/obo/NCBITaxon_1010667,none +16.9548485,NCBITaxon:1010668,http://purl.obolibrary.org/obo/NCBITaxon_1010668,none +16.9548485,NCBITaxon:1010670,http://purl.obolibrary.org/obo/NCBITaxon_1010670,none +16.9548485,NCBITaxon:1010795,http://purl.obolibrary.org/obo/NCBITaxon_1010795,none +16.9548485,NCBITaxon:1010799,http://purl.obolibrary.org/obo/NCBITaxon_1010799,none +16.9548485,NCBITaxon:101146,http://purl.obolibrary.org/obo/NCBITaxon_101146,none +16.9548485,NCBITaxon:101155,http://purl.obolibrary.org/obo/NCBITaxon_101155,none +16.9548485,NCBITaxon:101159,http://purl.obolibrary.org/obo/NCBITaxon_101159,none +16.9548485,NCBITaxon:10118,http://purl.obolibrary.org/obo/NCBITaxon_10118,none +16.9548485,NCBITaxon:10120,http://purl.obolibrary.org/obo/NCBITaxon_10120,none +16.9548485,NCBITaxon:10126,http://purl.obolibrary.org/obo/NCBITaxon_10126,none +16.9548485,NCBITaxon:10127,http://purl.obolibrary.org/obo/NCBITaxon_10127,none +16.9548485,NCBITaxon:101281,http://purl.obolibrary.org/obo/NCBITaxon_101281,none +16.9548485,NCBITaxon:10133,http://purl.obolibrary.org/obo/NCBITaxon_10133,none +16.9548485,NCBITaxon:101364,http://purl.obolibrary.org/obo/NCBITaxon_101364,none +16.9548485,NCBITaxon:10147,http://purl.obolibrary.org/obo/NCBITaxon_10147,none +16.9548485,NCBITaxon:10148,http://purl.obolibrary.org/obo/NCBITaxon_10148,none +16.9548485,NCBITaxon:10149,http://purl.obolibrary.org/obo/NCBITaxon_10149,none +16.9548485,NCBITaxon:10155,http://purl.obolibrary.org/obo/NCBITaxon_10155,none +16.9548485,NCBITaxon:1016,http://purl.obolibrary.org/obo/NCBITaxon_1016,none +16.9548485,NCBITaxon:101670,http://purl.obolibrary.org/obo/NCBITaxon_101670,none +16.9548485,NCBITaxon:101671,http://purl.obolibrary.org/obo/NCBITaxon_101671,none +16.9548485,NCBITaxon:1016852,http://purl.obolibrary.org/obo/NCBITaxon_1016852,none +16.9548485,NCBITaxon:1016853,http://purl.obolibrary.org/obo/NCBITaxon_1016853,none +16.9548485,NCBITaxon:101716,http://purl.obolibrary.org/obo/NCBITaxon_101716,none +16.9548485,NCBITaxon:10182,http://purl.obolibrary.org/obo/NCBITaxon_10182,none +16.9548485,NCBITaxon:10183,http://purl.obolibrary.org/obo/NCBITaxon_10183,none +16.9548485,NCBITaxon:101840,http://purl.obolibrary.org/obo/NCBITaxon_101840,none +16.9548485,NCBITaxon:10206,http://purl.obolibrary.org/obo/NCBITaxon_10206,none +16.9548485,NCBITaxon:1021,http://purl.obolibrary.org/obo/NCBITaxon_1021,none +16.9548485,NCBITaxon:102210,http://purl.obolibrary.org/obo/NCBITaxon_102210,none +16.9548485,NCBITaxon:102294,http://purl.obolibrary.org/obo/NCBITaxon_102294,none +16.9548485,NCBITaxon:10250,http://purl.obolibrary.org/obo/NCBITaxon_10250,none +16.9548485,NCBITaxon:102745,http://purl.obolibrary.org/obo/NCBITaxon_102745,none +16.9548485,NCBITaxon:1027467,http://purl.obolibrary.org/obo/NCBITaxon_1027467,none +16.9548485,NCBITaxon:102749,http://purl.obolibrary.org/obo/NCBITaxon_102749,none +16.9548485,NCBITaxon:1027632,http://purl.obolibrary.org/obo/NCBITaxon_1027632,none +16.9548485,NCBITaxon:102782,http://purl.obolibrary.org/obo/NCBITaxon_102782,none +16.9548485,NCBITaxon:102784,http://purl.obolibrary.org/obo/NCBITaxon_102784,none +16.9548485,NCBITaxon:102786,http://purl.obolibrary.org/obo/NCBITaxon_102786,none +16.9548485,NCBITaxon:1027869,http://purl.obolibrary.org/obo/NCBITaxon_1027869,none +16.9548485,NCBITaxon:102793,http://purl.obolibrary.org/obo/NCBITaxon_102793,H5N1 subtype +16.9548485,NCBITaxon:1027947,http://purl.obolibrary.org/obo/NCBITaxon_1027947,none +16.9548485,NCBITaxon:102809,http://purl.obolibrary.org/obo/NCBITaxon_102809,none +16.9548485,NCBITaxon:102813,http://purl.obolibrary.org/obo/NCBITaxon_102813,none +16.9548485,NCBITaxon:1029718,http://purl.obolibrary.org/obo/NCBITaxon_1029718,none +16.9548485,NCBITaxon:1030595,http://purl.obolibrary.org/obo/NCBITaxon_1030595,none +16.9548485,NCBITaxon:1033718,http://purl.obolibrary.org/obo/NCBITaxon_1033718,none +16.9548485,NCBITaxon:103388,http://purl.obolibrary.org/obo/NCBITaxon_103388,none +16.9548485,NCBITaxon:103389,http://purl.obolibrary.org/obo/NCBITaxon_103389,none +16.9548485,NCBITaxon:1034377,http://purl.obolibrary.org/obo/NCBITaxon_1034377,none +16.9548485,NCBITaxon:103485,http://purl.obolibrary.org/obo/NCBITaxon_103485,none +16.9548485,NCBITaxon:103603,http://purl.obolibrary.org/obo/NCBITaxon_103603,none +16.9548485,NCBITaxon:1036680,http://purl.obolibrary.org/obo/NCBITaxon_1036680,none +16.9548485,NCBITaxon:1036747,http://purl.obolibrary.org/obo/NCBITaxon_1036747,none +16.9548485,NCBITaxon:1037529,http://purl.obolibrary.org/obo/NCBITaxon_1037529,none +16.9548485,NCBITaxon:103775,http://purl.obolibrary.org/obo/NCBITaxon_103775,none +16.9548485,NCBITaxon:1038053,http://purl.obolibrary.org/obo/NCBITaxon_1038053,none +16.9548485,NCBITaxon:1038082,http://purl.obolibrary.org/obo/NCBITaxon_1038082,none +16.9548485,NCBITaxon:103826,http://purl.obolibrary.org/obo/NCBITaxon_103826,Thelazia +16.9548485,NCBITaxon:103828,http://purl.obolibrary.org/obo/NCBITaxon_103828,Thelaziidae +16.9548485,NCBITaxon:103829,http://purl.obolibrary.org/obo/NCBITaxon_103829,Thelazioidea +16.9548485,NCBITaxon:103931,http://purl.obolibrary.org/obo/NCBITaxon_103931,none +16.9548485,NCBITaxon:10398,http://purl.obolibrary.org/obo/NCBITaxon_10398,none +16.9548485,NCBITaxon:104174,http://purl.obolibrary.org/obo/NCBITaxon_104174,none +16.9548485,NCBITaxon:104175,http://purl.obolibrary.org/obo/NCBITaxon_104175,none +16.9548485,NCBITaxon:1043184,http://purl.obolibrary.org/obo/NCBITaxon_1043184,none +16.9548485,NCBITaxon:10432,http://purl.obolibrary.org/obo/NCBITaxon_10432,none +16.9548485,NCBITaxon:104391,http://purl.obolibrary.org/obo/NCBITaxon_104391,none +16.9548485,NCBITaxon:104423,http://purl.obolibrary.org/obo/NCBITaxon_104423,none +16.9548485,NCBITaxon:104425,http://purl.obolibrary.org/obo/NCBITaxon_104425,none +16.9548485,NCBITaxon:104465,http://purl.obolibrary.org/obo/NCBITaxon_104465,none +16.9548485,NCBITaxon:1046056,http://purl.obolibrary.org/obo/NCBITaxon_1046056,none +16.9548485,NCBITaxon:104696,http://purl.obolibrary.org/obo/NCBITaxon_104696,none +16.9548485,NCBITaxon:104737,http://purl.obolibrary.org/obo/NCBITaxon_104737,none +16.9548485,NCBITaxon:10474,http://purl.obolibrary.org/obo/NCBITaxon_10474,none +16.9548485,NCBITaxon:10475,http://purl.obolibrary.org/obo/NCBITaxon_10475,none +16.9548485,NCBITaxon:1048437,http://purl.obolibrary.org/obo/NCBITaxon_1048437,none +16.9548485,NCBITaxon:1048854,http://purl.obolibrary.org/obo/NCBITaxon_1048854,none +16.9548485,NCBITaxon:1048855,http://purl.obolibrary.org/obo/NCBITaxon_1048855,none +16.9548485,NCBITaxon:104901,http://purl.obolibrary.org/obo/NCBITaxon_104901,none +16.9548485,NCBITaxon:105135,http://purl.obolibrary.org/obo/NCBITaxon_105135,none +16.9548485,NCBITaxon:1051663,http://purl.obolibrary.org/obo/NCBITaxon_1051663,none +16.9548485,NCBITaxon:1051671,http://purl.obolibrary.org/obo/NCBITaxon_1051671,none +16.9548485,NCBITaxon:10527,http://purl.obolibrary.org/obo/NCBITaxon_10527,none +16.9548485,NCBITaxon:1052815,http://purl.obolibrary.org/obo/NCBITaxon_1052815,none +16.9548485,NCBITaxon:10530,http://purl.obolibrary.org/obo/NCBITaxon_10530,none +16.9548485,NCBITaxon:1055323,http://purl.obolibrary.org/obo/NCBITaxon_1055323,none +16.9548485,NCBITaxon:1055537,http://purl.obolibrary.org/obo/NCBITaxon_1055537,none +16.9548485,NCBITaxon:1055538,http://purl.obolibrary.org/obo/NCBITaxon_1055538,none +16.9548485,NCBITaxon:1055750,http://purl.obolibrary.org/obo/NCBITaxon_1055750,none +16.9548485,NCBITaxon:1055883,http://purl.obolibrary.org/obo/NCBITaxon_1055883,none +16.9548485,NCBITaxon:10563,http://purl.obolibrary.org/obo/NCBITaxon_10563,none +16.9548485,NCBITaxon:1056491,http://purl.obolibrary.org/obo/NCBITaxon_1056491,none +16.9548485,NCBITaxon:1056492,http://purl.obolibrary.org/obo/NCBITaxon_1056492,none +16.9548485,NCBITaxon:105749,http://purl.obolibrary.org/obo/NCBITaxon_105749,none +16.9548485,NCBITaxon:105756,http://purl.obolibrary.org/obo/NCBITaxon_105756,none +16.9548485,NCBITaxon:10589,http://purl.obolibrary.org/obo/NCBITaxon_10589,none +16.9548485,NCBITaxon:10606,http://purl.obolibrary.org/obo/NCBITaxon_10606,none +16.9548485,NCBITaxon:10610,http://purl.obolibrary.org/obo/NCBITaxon_10610,none +16.9548485,NCBITaxon:10615,http://purl.obolibrary.org/obo/NCBITaxon_10615,none +16.9548485,NCBITaxon:106221,http://purl.obolibrary.org/obo/NCBITaxon_106221,none +16.9548485,NCBITaxon:106230,http://purl.obolibrary.org/obo/NCBITaxon_106230,none +16.9548485,NCBITaxon:106231,http://purl.obolibrary.org/obo/NCBITaxon_106231,none +16.9548485,NCBITaxon:106246,http://purl.obolibrary.org/obo/NCBITaxon_106246,none +16.9548485,NCBITaxon:10626,http://purl.obolibrary.org/obo/NCBITaxon_10626,none +16.9548485,NCBITaxon:106263,http://purl.obolibrary.org/obo/NCBITaxon_106263,none +16.9548485,NCBITaxon:10630,http://purl.obolibrary.org/obo/NCBITaxon_10630,none +16.9548485,NCBITaxon:10632,http://purl.obolibrary.org/obo/NCBITaxon_10632,none +16.9548485,NCBITaxon:10663,http://purl.obolibrary.org/obo/NCBITaxon_10663,none +16.9548485,NCBITaxon:106633,http://purl.obolibrary.org/obo/NCBITaxon_106633,none +16.9548485,NCBITaxon:106663,http://purl.obolibrary.org/obo/NCBITaxon_106663,none +16.9548485,NCBITaxon:106692,http://purl.obolibrary.org/obo/NCBITaxon_106692,none +16.9548485,NCBITaxon:1068608,http://purl.obolibrary.org/obo/NCBITaxon_1068608,none +16.9548485,NCBITaxon:1068873,http://purl.obolibrary.org/obo/NCBITaxon_1068873,none +16.9548485,NCBITaxon:1068916,http://purl.obolibrary.org/obo/NCBITaxon_1068916,none +16.9548485,NCBITaxon:1069495,http://purl.obolibrary.org/obo/NCBITaxon_1069495,none +16.9548485,NCBITaxon:106965,http://purl.obolibrary.org/obo/NCBITaxon_106965,none +16.9548485,NCBITaxon:107020,http://purl.obolibrary.org/obo/NCBITaxon_107020,none +16.9548485,NCBITaxon:1070248,http://purl.obolibrary.org/obo/NCBITaxon_1070248,none +16.9548485,NCBITaxon:1071488,http://purl.obolibrary.org/obo/NCBITaxon_1071488,none +16.9548485,NCBITaxon:10723,http://purl.obolibrary.org/obo/NCBITaxon_10723,none +16.9548485,NCBITaxon:10724,http://purl.obolibrary.org/obo/NCBITaxon_10724,none +16.9548485,NCBITaxon:1072672,http://purl.obolibrary.org/obo/NCBITaxon_1072672,none +16.9548485,NCBITaxon:107273,http://purl.obolibrary.org/obo/NCBITaxon_107273,none +16.9548485,NCBITaxon:107283,http://purl.obolibrary.org/obo/NCBITaxon_107283,none +16.9548485,NCBITaxon:1073986,http://purl.obolibrary.org/obo/NCBITaxon_1073986,none +16.9548485,NCBITaxon:107412,http://purl.obolibrary.org/obo/NCBITaxon_107412,none +16.9548485,NCBITaxon:10752,http://purl.obolibrary.org/obo/NCBITaxon_10752,none +16.9548485,NCBITaxon:1075313,http://purl.obolibrary.org/obo/NCBITaxon_1075313,none +16.9548485,NCBITaxon:10755,http://purl.obolibrary.org/obo/NCBITaxon_10755,none +16.9548485,NCBITaxon:107764,http://purl.obolibrary.org/obo/NCBITaxon_107764,none +16.9548485,NCBITaxon:1077906,http://purl.obolibrary.org/obo/NCBITaxon_1077906,none +16.9548485,NCBITaxon:1077907,http://purl.obolibrary.org/obo/NCBITaxon_1077907,none +16.9548485,NCBITaxon:107804,http://purl.obolibrary.org/obo/NCBITaxon_107804,none +16.9548485,NCBITaxon:10785,http://purl.obolibrary.org/obo/NCBITaxon_10785,none +16.9548485,NCBITaxon:1078947,http://purl.obolibrary.org/obo/NCBITaxon_1078947,none +16.9548485,NCBITaxon:108089,http://purl.obolibrary.org/obo/NCBITaxon_108089,none +16.9548485,NCBITaxon:108092,http://purl.obolibrary.org/obo/NCBITaxon_108092,none +16.9548485,NCBITaxon:1081702,http://purl.obolibrary.org/obo/NCBITaxon_1081702,none +16.9548485,NCBITaxon:1085534,http://purl.obolibrary.org/obo/NCBITaxon_1085534,none +16.9548485,NCBITaxon:1085684,http://purl.obolibrary.org/obo/NCBITaxon_1085684,none +16.9548485,NCBITaxon:1086047,http://purl.obolibrary.org/obo/NCBITaxon_1086047,none +16.9548485,NCBITaxon:1086557,http://purl.obolibrary.org/obo/NCBITaxon_1086557,none +16.9548485,NCBITaxon:10871,http://purl.obolibrary.org/obo/NCBITaxon_10871,none +16.9548485,NCBITaxon:10872,http://purl.obolibrary.org/obo/NCBITaxon_10872,none +16.9548485,NCBITaxon:10884,http://purl.obolibrary.org/obo/NCBITaxon_10884,none +16.9548485,NCBITaxon:10885,http://purl.obolibrary.org/obo/NCBITaxon_10885,none +16.9548485,NCBITaxon:108853,http://purl.obolibrary.org/obo/NCBITaxon_108853,none +16.9548485,NCBITaxon:108854,http://purl.obolibrary.org/obo/NCBITaxon_108854,none +16.9548485,NCBITaxon:108855,http://purl.obolibrary.org/obo/NCBITaxon_108855,none +16.9548485,NCBITaxon:10886,http://purl.obolibrary.org/obo/NCBITaxon_10886,none +16.9548485,NCBITaxon:1089445,http://purl.obolibrary.org/obo/NCBITaxon_1089445,none +16.9548485,NCBITaxon:1090,http://purl.obolibrary.org/obo/NCBITaxon_1090,none +16.9548485,NCBITaxon:10906,http://purl.obolibrary.org/obo/NCBITaxon_10906,none +16.9548485,NCBITaxon:1090926,http://purl.obolibrary.org/obo/NCBITaxon_1090926,none +16.9548485,NCBITaxon:109168,http://purl.obolibrary.org/obo/NCBITaxon_109168,none +16.9548485,NCBITaxon:109203,http://purl.obolibrary.org/obo/NCBITaxon_109203,none +16.9548485,NCBITaxon:1092564,http://purl.obolibrary.org/obo/NCBITaxon_1092564,none +16.9548485,NCBITaxon:10933,http://purl.obolibrary.org/obo/NCBITaxon_10933,none +16.9548485,NCBITaxon:1093773,http://purl.obolibrary.org/obo/NCBITaxon_1093773,none +16.9548485,NCBITaxon:109427,http://purl.obolibrary.org/obo/NCBITaxon_109427,none +16.9548485,NCBITaxon:1094386,http://purl.obolibrary.org/obo/NCBITaxon_1094386,none +16.9548485,NCBITaxon:1094387,http://purl.obolibrary.org/obo/NCBITaxon_1094387,none +16.9548485,NCBITaxon:1094388,http://purl.obolibrary.org/obo/NCBITaxon_1094388,none +16.9548485,NCBITaxon:1094389,http://purl.obolibrary.org/obo/NCBITaxon_1094389,none +16.9548485,NCBITaxon:109476,http://purl.obolibrary.org/obo/NCBITaxon_109476,none +16.9548485,NCBITaxon:1094895,http://purl.obolibrary.org/obo/NCBITaxon_1094895,none +16.9548485,NCBITaxon:1095085,http://purl.obolibrary.org/obo/NCBITaxon_1095085,none +16.9548485,NCBITaxon:1095086,http://purl.obolibrary.org/obo/NCBITaxon_1095086,none +16.9548485,NCBITaxon:1095390,http://purl.obolibrary.org/obo/NCBITaxon_1095390,none +16.9548485,NCBITaxon:1095705,http://purl.obolibrary.org/obo/NCBITaxon_1095705,none +16.9548485,NCBITaxon:1095708,http://purl.obolibrary.org/obo/NCBITaxon_1095708,none +16.9548485,NCBITaxon:1095709,http://purl.obolibrary.org/obo/NCBITaxon_1095709,none +16.9548485,NCBITaxon:1095757,http://purl.obolibrary.org/obo/NCBITaxon_1095757,none +16.9548485,NCBITaxon:10978,http://purl.obolibrary.org/obo/NCBITaxon_10978,none +16.9548485,NCBITaxon:109961,http://purl.obolibrary.org/obo/NCBITaxon_109961,none +16.9548485,NCBITaxon:109965,http://purl.obolibrary.org/obo/NCBITaxon_109965,none +16.9548485,NCBITaxon:1099820,http://purl.obolibrary.org/obo/NCBITaxon_1099820,none +16.9548485,NCBITaxon:110010,http://purl.obolibrary.org/obo/NCBITaxon_110010,none +16.9548485,NCBITaxon:11005,http://purl.obolibrary.org/obo/NCBITaxon_11005,none +16.9548485,NCBITaxon:110071,http://purl.obolibrary.org/obo/NCBITaxon_110071,none +16.9548485,NCBITaxon:110118,http://purl.obolibrary.org/obo/NCBITaxon_110118,none +16.9548485,NCBITaxon:110158,http://purl.obolibrary.org/obo/NCBITaxon_110158,none +16.9548485,NCBITaxon:11032,http://purl.obolibrary.org/obo/NCBITaxon_11032,none +16.9548485,NCBITaxon:11043,http://purl.obolibrary.org/obo/NCBITaxon_11043,none +16.9548485,NCBITaxon:11044,http://purl.obolibrary.org/obo/NCBITaxon_11044,none +16.9548485,NCBITaxon:1107,http://purl.obolibrary.org/obo/NCBITaxon_1107,none +16.9548485,NCBITaxon:1107371,http://purl.obolibrary.org/obo/NCBITaxon_1107371,none +16.9548485,NCBITaxon:11087,http://purl.obolibrary.org/obo/NCBITaxon_11087,none +16.9548485,NCBITaxon:1108865,http://purl.obolibrary.org/obo/NCBITaxon_1108865,none +16.9548485,NCBITaxon:1109717,http://purl.obolibrary.org/obo/NCBITaxon_1109717,none +16.9548485,NCBITaxon:1109721,http://purl.obolibrary.org/obo/NCBITaxon_1109721,none +16.9548485,NCBITaxon:1110384,http://purl.obolibrary.org/obo/NCBITaxon_1110384,none +16.9548485,NCBITaxon:1110385,http://purl.obolibrary.org/obo/NCBITaxon_1110385,none +16.9548485,NCBITaxon:1110693,http://purl.obolibrary.org/obo/NCBITaxon_1110693,none +16.9548485,NCBITaxon:111166,http://purl.obolibrary.org/obo/NCBITaxon_111166,none +16.9548485,NCBITaxon:111168,http://purl.obolibrary.org/obo/NCBITaxon_111168,none +16.9548485,NCBITaxon:1112814,http://purl.obolibrary.org/obo/NCBITaxon_1112814,none +16.9548485,NCBITaxon:111468,http://purl.obolibrary.org/obo/NCBITaxon_111468,none +16.9548485,NCBITaxon:111520,http://purl.obolibrary.org/obo/NCBITaxon_111520,Penaeoidea +16.9548485,NCBITaxon:1115478,http://purl.obolibrary.org/obo/NCBITaxon_1115478,none +16.9548485,NCBITaxon:1115539,http://purl.obolibrary.org/obo/NCBITaxon_1115539,none +16.9548485,NCBITaxon:11193,http://purl.obolibrary.org/obo/NCBITaxon_11193,none +16.9548485,NCBITaxon:112144,http://purl.obolibrary.org/obo/NCBITaxon_112144,none +16.9548485,NCBITaxon:112177,http://purl.obolibrary.org/obo/NCBITaxon_112177,none +16.9548485,NCBITaxon:11224,http://purl.obolibrary.org/obo/NCBITaxon_11224,none +16.9548485,NCBITaxon:11226,http://purl.obolibrary.org/obo/NCBITaxon_11226,none +16.9548485,NCBITaxon:11233,http://purl.obolibrary.org/obo/NCBITaxon_11233,none +16.9548485,NCBITaxon:1123754,http://purl.obolibrary.org/obo/NCBITaxon_1123754,none +16.9548485,NCBITaxon:1123958,http://purl.obolibrary.org/obo/NCBITaxon_1123958,none +16.9548485,NCBITaxon:1123963,http://purl.obolibrary.org/obo/NCBITaxon_1123963,none +16.9548485,NCBITaxon:1123964,http://purl.obolibrary.org/obo/NCBITaxon_1123964,none +16.9548485,NCBITaxon:1124179,http://purl.obolibrary.org/obo/NCBITaxon_1124179,none +16.9548485,NCBITaxon:1124577,http://purl.obolibrary.org/obo/NCBITaxon_1124577,none +16.9548485,NCBITaxon:1124584,http://purl.obolibrary.org/obo/NCBITaxon_1124584,none +16.9548485,NCBITaxon:1124654,http://purl.obolibrary.org/obo/NCBITaxon_1124654,none +16.9548485,NCBITaxon:11249,http://purl.obolibrary.org/obo/NCBITaxon_11249,none +16.9548485,NCBITaxon:112497,http://purl.obolibrary.org/obo/NCBITaxon_112497,none +16.9548485,NCBITaxon:112543,http://purl.obolibrary.org/obo/NCBITaxon_112543,none +16.9548485,NCBITaxon:1125653,http://purl.obolibrary.org/obo/NCBITaxon_1125653,none +16.9548485,NCBITaxon:1125764,http://purl.obolibrary.org/obo/NCBITaxon_1125764,none +16.9548485,NCBITaxon:1126237,http://purl.obolibrary.org/obo/NCBITaxon_1126237,none +16.9548485,NCBITaxon:11269,http://purl.obolibrary.org/obo/NCBITaxon_11269,none +16.9548485,NCBITaxon:1128073,http://purl.obolibrary.org/obo/NCBITaxon_1128073,none +16.9548485,NCBITaxon:1128131,http://purl.obolibrary.org/obo/NCBITaxon_1128131,none +16.9548485,NCBITaxon:112816,http://purl.obolibrary.org/obo/NCBITaxon_112816,none +16.9548485,NCBITaxon:1129035,http://purl.obolibrary.org/obo/NCBITaxon_1129035,none +16.9548485,NCBITaxon:1129191,http://purl.obolibrary.org/obo/NCBITaxon_1129191,none +16.9548485,NCBITaxon:1129545,http://purl.obolibrary.org/obo/NCBITaxon_1129545,none +16.9548485,NCBITaxon:1129546,http://purl.obolibrary.org/obo/NCBITaxon_1129546,none +16.9548485,NCBITaxon:11296,http://purl.obolibrary.org/obo/NCBITaxon_11296,none +16.9548485,NCBITaxon:1129782,http://purl.obolibrary.org/obo/NCBITaxon_1129782,none +16.9548485,NCBITaxon:11300,http://purl.obolibrary.org/obo/NCBITaxon_11300,none +16.9548485,NCBITaxon:1131624,http://purl.obolibrary.org/obo/NCBITaxon_1131624,none +16.9548485,NCBITaxon:1134285,http://purl.obolibrary.org/obo/NCBITaxon_1134285,none +16.9548485,NCBITaxon:1136790,http://purl.obolibrary.org/obo/NCBITaxon_1136790,none +16.9548485,NCBITaxon:1137801,http://purl.obolibrary.org/obo/NCBITaxon_1137801,none +16.9548485,NCBITaxon:1138489,http://purl.obolibrary.org/obo/NCBITaxon_1138489,none +16.9548485,NCBITaxon:1141132,http://purl.obolibrary.org/obo/NCBITaxon_1141132,none +16.9548485,NCBITaxon:1141526,http://purl.obolibrary.org/obo/NCBITaxon_1141526,none +16.9548485,NCBITaxon:1141624,http://purl.obolibrary.org/obo/NCBITaxon_1141624,none +16.9548485,NCBITaxon:1141722,http://purl.obolibrary.org/obo/NCBITaxon_1141722,none +16.9548485,NCBITaxon:114233,http://purl.obolibrary.org/obo/NCBITaxon_114233,none +16.9548485,NCBITaxon:1143701,http://purl.obolibrary.org/obo/NCBITaxon_1143701,none +16.9548485,NCBITaxon:114430,http://purl.obolibrary.org/obo/NCBITaxon_114430,none +16.9548485,NCBITaxon:114867,http://purl.obolibrary.org/obo/NCBITaxon_114867,none +16.9548485,NCBITaxon:114871,http://purl.obolibrary.org/obo/NCBITaxon_114871,none +16.9548485,NCBITaxon:114894,http://purl.obolibrary.org/obo/NCBITaxon_114894,none +16.9548485,NCBITaxon:114907,http://purl.obolibrary.org/obo/NCBITaxon_114907,none +16.9548485,NCBITaxon:114910,http://purl.obolibrary.org/obo/NCBITaxon_114910,none +16.9548485,NCBITaxon:115075,http://purl.obolibrary.org/obo/NCBITaxon_115075,none +16.9548485,NCBITaxon:1150861,http://purl.obolibrary.org/obo/NCBITaxon_1150861,none +16.9548485,NCBITaxon:1151247,http://purl.obolibrary.org/obo/NCBITaxon_1151247,none +16.9548485,NCBITaxon:115467,http://purl.obolibrary.org/obo/NCBITaxon_115467,none +16.9548485,NCBITaxon:115581,http://purl.obolibrary.org/obo/NCBITaxon_115581,none +16.9548485,NCBITaxon:115587,http://purl.obolibrary.org/obo/NCBITaxon_115587,none +16.9548485,NCBITaxon:115588,http://purl.obolibrary.org/obo/NCBITaxon_115588,none +16.9548485,NCBITaxon:1156720,http://purl.obolibrary.org/obo/NCBITaxon_1156720,none +16.9548485,NCBITaxon:115694,http://purl.obolibrary.org/obo/NCBITaxon_115694,none +16.9548485,NCBITaxon:115711,http://purl.obolibrary.org/obo/NCBITaxon_115711,none +16.9548485,NCBITaxon:1157339,http://purl.obolibrary.org/obo/NCBITaxon_1157339,none +16.9548485,NCBITaxon:115856,http://purl.obolibrary.org/obo/NCBITaxon_115856,none +16.9548485,NCBITaxon:1158979,http://purl.obolibrary.org/obo/NCBITaxon_1158979,none +16.9548485,NCBITaxon:1159195,http://purl.obolibrary.org/obo/NCBITaxon_1159195,none +16.9548485,NCBITaxon:1159933,http://purl.obolibrary.org/obo/NCBITaxon_1159933,none +16.9548485,NCBITaxon:116124,http://purl.obolibrary.org/obo/NCBITaxon_116124,none +16.9548485,NCBITaxon:116151,http://purl.obolibrary.org/obo/NCBITaxon_116151,none +16.9548485,NCBITaxon:11622,http://purl.obolibrary.org/obo/NCBITaxon_11622,none +16.9548485,NCBITaxon:1162219,http://purl.obolibrary.org/obo/NCBITaxon_1162219,none +16.9548485,NCBITaxon:1162221,http://purl.obolibrary.org/obo/NCBITaxon_1162221,none +16.9548485,NCBITaxon:1162292,http://purl.obolibrary.org/obo/NCBITaxon_1162292,none +16.9548485,NCBITaxon:11627,http://purl.obolibrary.org/obo/NCBITaxon_11627,none +16.9548485,NCBITaxon:1162729,http://purl.obolibrary.org/obo/NCBITaxon_1162729,none +16.9548485,NCBITaxon:1163,http://purl.obolibrary.org/obo/NCBITaxon_1163,none +16.9548485,NCBITaxon:1163386,http://purl.obolibrary.org/obo/NCBITaxon_1163386,none +16.9548485,NCBITaxon:1163720,http://purl.obolibrary.org/obo/NCBITaxon_1163720,none +16.9548485,NCBITaxon:116556,http://purl.obolibrary.org/obo/NCBITaxon_116556,none +16.9548485,NCBITaxon:11663,http://purl.obolibrary.org/obo/NCBITaxon_11663,none +16.9548485,NCBITaxon:116670,http://purl.obolibrary.org/obo/NCBITaxon_116670,none +16.9548485,NCBITaxon:116674,http://purl.obolibrary.org/obo/NCBITaxon_116674,none +16.9548485,NCBITaxon:1167310,http://purl.obolibrary.org/obo/NCBITaxon_1167310,none +16.9548485,NCBITaxon:11686,http://purl.obolibrary.org/obo/NCBITaxon_11686,none +16.9548485,NCBITaxon:116905,http://purl.obolibrary.org/obo/NCBITaxon_116905,none +16.9548485,NCBITaxon:116906,http://purl.obolibrary.org/obo/NCBITaxon_116906,none +16.9548485,NCBITaxon:116911,http://purl.obolibrary.org/obo/NCBITaxon_116911,none +16.9548485,NCBITaxon:116934,http://purl.obolibrary.org/obo/NCBITaxon_116934,none +16.9548485,NCBITaxon:1170427,http://purl.obolibrary.org/obo/NCBITaxon_1170427,none +16.9548485,NCBITaxon:117126,http://purl.obolibrary.org/obo/NCBITaxon_117126,none +16.9548485,NCBITaxon:11720,http://purl.obolibrary.org/obo/NCBITaxon_11720,none +16.9548485,NCBITaxon:1172196,http://purl.obolibrary.org/obo/NCBITaxon_1172196,none +16.9548485,NCBITaxon:1173703,http://purl.obolibrary.org/obo/NCBITaxon_1173703,none +16.9548485,NCBITaxon:1173749,http://purl.obolibrary.org/obo/NCBITaxon_1173749,none +16.9548485,NCBITaxon:1175235,http://purl.obolibrary.org/obo/NCBITaxon_1175235,none +16.9548485,NCBITaxon:1175848,http://purl.obolibrary.org/obo/NCBITaxon_1175848,none +16.9548485,NCBITaxon:1176145,http://purl.obolibrary.org/obo/NCBITaxon_1176145,none +16.9548485,NCBITaxon:1176357,http://purl.obolibrary.org/obo/NCBITaxon_1176357,none +16.9548485,NCBITaxon:1176358,http://purl.obolibrary.org/obo/NCBITaxon_1176358,none +16.9548485,NCBITaxon:1176361,http://purl.obolibrary.org/obo/NCBITaxon_1176361,none +16.9548485,NCBITaxon:1177191,http://purl.obolibrary.org/obo/NCBITaxon_1177191,none +16.9548485,NCBITaxon:117747,http://purl.obolibrary.org/obo/NCBITaxon_117747,none +16.9548485,NCBITaxon:1177633,http://purl.obolibrary.org/obo/NCBITaxon_1177633,none +16.9548485,NCBITaxon:117851,http://purl.obolibrary.org/obo/NCBITaxon_117851,none +16.9548485,NCBITaxon:117942,http://purl.obolibrary.org/obo/NCBITaxon_117942,none +16.9548485,NCBITaxon:1182968,http://purl.obolibrary.org/obo/NCBITaxon_1182968,none +16.9548485,NCBITaxon:11847,http://purl.obolibrary.org/obo/NCBITaxon_11847,none +16.9548485,NCBITaxon:11859,http://purl.obolibrary.org/obo/NCBITaxon_11859,none +16.9548485,NCBITaxon:118632,http://purl.obolibrary.org/obo/NCBITaxon_118632,none +16.9548485,NCBITaxon:11881,http://purl.obolibrary.org/obo/NCBITaxon_11881,none +16.9548485,NCBITaxon:11882,http://purl.obolibrary.org/obo/NCBITaxon_11882,none +16.9548485,NCBITaxon:1188812,http://purl.obolibrary.org/obo/NCBITaxon_1188812,none +16.9548485,NCBITaxon:118889,http://purl.obolibrary.org/obo/NCBITaxon_118889,none +16.9548485,NCBITaxon:1189587,http://purl.obolibrary.org/obo/NCBITaxon_1189587,none +16.9548485,NCBITaxon:11915,http://purl.obolibrary.org/obo/NCBITaxon_11915,none +16.9548485,NCBITaxon:119171,http://purl.obolibrary.org/obo/NCBITaxon_119171,none +16.9548485,NCBITaxon:119195,http://purl.obolibrary.org/obo/NCBITaxon_119195,none +16.9548485,NCBITaxon:1192194,http://purl.obolibrary.org/obo/NCBITaxon_1192194,none +16.9548485,NCBITaxon:119230,http://purl.obolibrary.org/obo/NCBITaxon_119230,none +16.9548485,NCBITaxon:119258,http://purl.obolibrary.org/obo/NCBITaxon_119258,none +16.9548485,NCBITaxon:1193146,http://purl.obolibrary.org/obo/NCBITaxon_1193146,none +16.9548485,NCBITaxon:1195084,http://purl.obolibrary.org/obo/NCBITaxon_1195084,none +16.9548485,NCBITaxon:1195378,http://purl.obolibrary.org/obo/NCBITaxon_1195378,none +16.9548485,NCBITaxon:119563,http://purl.obolibrary.org/obo/NCBITaxon_119563,none +16.9548485,NCBITaxon:119564,http://purl.obolibrary.org/obo/NCBITaxon_119564,none +16.9548485,NCBITaxon:1195796,http://purl.obolibrary.org/obo/NCBITaxon_1195796,none +16.9548485,NCBITaxon:119670,http://purl.obolibrary.org/obo/NCBITaxon_119670,none +16.9548485,NCBITaxon:11971,http://purl.obolibrary.org/obo/NCBITaxon_11971,none +16.9548485,NCBITaxon:1197314,http://purl.obolibrary.org/obo/NCBITaxon_1197314,none +16.9548485,NCBITaxon:11978,http://purl.obolibrary.org/obo/NCBITaxon_11978,Feline calicivirus +16.9548485,NCBITaxon:1198137,http://purl.obolibrary.org/obo/NCBITaxon_1198137,none +16.9548485,NCBITaxon:1198140,http://purl.obolibrary.org/obo/NCBITaxon_1198140,none +16.9548485,NCBITaxon:1198146,http://purl.obolibrary.org/obo/NCBITaxon_1198146,none +16.9548485,NCBITaxon:1198147,http://purl.obolibrary.org/obo/NCBITaxon_1198147,none +16.9548485,NCBITaxon:1198450,http://purl.obolibrary.org/obo/NCBITaxon_1198450,none +16.9548485,NCBITaxon:119852,http://purl.obolibrary.org/obo/NCBITaxon_119852,none +16.9548485,NCBITaxon:119950,http://purl.obolibrary.org/obo/NCBITaxon_119950,none +16.9548485,NCBITaxon:1200308,http://purl.obolibrary.org/obo/NCBITaxon_1200308,none +16.9548485,NCBITaxon:1200310,http://purl.obolibrary.org/obo/NCBITaxon_1200310,none +16.9548485,NCBITaxon:12008,http://purl.obolibrary.org/obo/NCBITaxon_12008,none +16.9548485,NCBITaxon:120090,http://purl.obolibrary.org/obo/NCBITaxon_120090,none +16.9548485,NCBITaxon:1204718,http://purl.obolibrary.org/obo/NCBITaxon_1204718,none +16.9548485,NCBITaxon:120497,http://purl.obolibrary.org/obo/NCBITaxon_120497,none +16.9548485,NCBITaxon:12052,http://purl.obolibrary.org/obo/NCBITaxon_12052,none +16.9548485,NCBITaxon:1206566,http://purl.obolibrary.org/obo/NCBITaxon_1206566,none +16.9548485,NCBITaxon:12067,http://purl.obolibrary.org/obo/NCBITaxon_12067,none +16.9548485,NCBITaxon:1207926,http://purl.obolibrary.org/obo/NCBITaxon_1207926,none +16.9548485,NCBITaxon:12081,http://purl.obolibrary.org/obo/NCBITaxon_12081,none +16.9548485,NCBITaxon:120844,http://purl.obolibrary.org/obo/NCBITaxon_120844,none +16.9548485,NCBITaxon:12089,http://purl.obolibrary.org/obo/NCBITaxon_12089,Coxsackievirus A24 +16.9548485,NCBITaxon:120961,http://purl.obolibrary.org/obo/NCBITaxon_120961,none +16.9548485,NCBITaxon:121155,http://purl.obolibrary.org/obo/NCBITaxon_121155,none +16.9548485,NCBITaxon:1211648,http://purl.obolibrary.org/obo/NCBITaxon_1211648,none +16.9548485,NCBITaxon:121276,http://purl.obolibrary.org/obo/NCBITaxon_121276,none +16.9548485,NCBITaxon:1212803,http://purl.obolibrary.org/obo/NCBITaxon_1212803,none +16.9548485,NCBITaxon:12131,http://purl.obolibrary.org/obo/NCBITaxon_12131,none +16.9548485,NCBITaxon:12132,http://purl.obolibrary.org/obo/NCBITaxon_12132,none +16.9548485,NCBITaxon:1213268,http://purl.obolibrary.org/obo/NCBITaxon_1213268,none +16.9548485,NCBITaxon:121429,http://purl.obolibrary.org/obo/NCBITaxon_121429,none +16.9548485,NCBITaxon:121474,http://purl.obolibrary.org/obo/NCBITaxon_121474,none +16.9548485,NCBITaxon:121561,http://purl.obolibrary.org/obo/NCBITaxon_121561,none +16.9548485,NCBITaxon:121566,http://purl.obolibrary.org/obo/NCBITaxon_121566,none +16.9548485,NCBITaxon:121568,http://purl.obolibrary.org/obo/NCBITaxon_121568,none +16.9548485,NCBITaxon:12157,http://purl.obolibrary.org/obo/NCBITaxon_12157,none +16.9548485,NCBITaxon:121572,http://purl.obolibrary.org/obo/NCBITaxon_121572,none +16.9548485,NCBITaxon:121573,http://purl.obolibrary.org/obo/NCBITaxon_121573,none +16.9548485,NCBITaxon:121577,http://purl.obolibrary.org/obo/NCBITaxon_121577,none +16.9548485,NCBITaxon:121579,http://purl.obolibrary.org/obo/NCBITaxon_121579,none +16.9548485,NCBITaxon:121584,http://purl.obolibrary.org/obo/NCBITaxon_121584,none +16.9548485,NCBITaxon:121585,http://purl.obolibrary.org/obo/NCBITaxon_121585,none +16.9548485,NCBITaxon:121588,http://purl.obolibrary.org/obo/NCBITaxon_121588,none +16.9548485,NCBITaxon:1216926,http://purl.obolibrary.org/obo/NCBITaxon_1216926,none +16.9548485,NCBITaxon:1217998,http://purl.obolibrary.org/obo/NCBITaxon_1217998,none +16.9548485,NCBITaxon:1218010,http://purl.obolibrary.org/obo/NCBITaxon_1218010,none +16.9548485,NCBITaxon:121820,http://purl.obolibrary.org/obo/NCBITaxon_121820,none +16.9548485,NCBITaxon:1218727,http://purl.obolibrary.org/obo/NCBITaxon_1218727,none +16.9548485,NCBITaxon:1219376,http://purl.obolibrary.org/obo/NCBITaxon_1219376,none +16.9548485,NCBITaxon:1219876,http://purl.obolibrary.org/obo/NCBITaxon_1219876,none +16.9548485,NCBITaxon:1219877,http://purl.obolibrary.org/obo/NCBITaxon_1219877,none +16.9548485,NCBITaxon:12200,http://purl.obolibrary.org/obo/NCBITaxon_12200,none +16.9548485,NCBITaxon:122094,http://purl.obolibrary.org/obo/NCBITaxon_122094,none +16.9548485,NCBITaxon:12220,http://purl.obolibrary.org/obo/NCBITaxon_12220,none +16.9548485,NCBITaxon:122260,http://purl.obolibrary.org/obo/NCBITaxon_122260,none +16.9548485,NCBITaxon:122303,http://purl.obolibrary.org/obo/NCBITaxon_122303,none +16.9548485,NCBITaxon:122354,http://purl.obolibrary.org/obo/NCBITaxon_122354,Mansonella ozzardi +16.9548485,NCBITaxon:12243,http://purl.obolibrary.org/obo/NCBITaxon_12243,none +16.9548485,NCBITaxon:1227356,http://purl.obolibrary.org/obo/NCBITaxon_1227356,none +16.9548485,NCBITaxon:1227357,http://purl.obolibrary.org/obo/NCBITaxon_1227357,none +16.9548485,NCBITaxon:1227558,http://purl.obolibrary.org/obo/NCBITaxon_1227558,none +16.9548485,NCBITaxon:122809,http://purl.obolibrary.org/obo/NCBITaxon_122809,none +16.9548485,NCBITaxon:1229186,http://purl.obolibrary.org/obo/NCBITaxon_1229186,none +16.9548485,NCBITaxon:12298,http://purl.obolibrary.org/obo/NCBITaxon_12298,none +16.9548485,NCBITaxon:12299,http://purl.obolibrary.org/obo/NCBITaxon_12299,none +16.9548485,NCBITaxon:1230141,http://purl.obolibrary.org/obo/NCBITaxon_1230141,none +16.9548485,NCBITaxon:1230646,http://purl.obolibrary.org/obo/NCBITaxon_1230646,none +16.9548485,NCBITaxon:12310,http://purl.obolibrary.org/obo/NCBITaxon_12310,none +16.9548485,NCBITaxon:1231296,http://purl.obolibrary.org/obo/NCBITaxon_1231296,none +16.9548485,NCBITaxon:1231360,http://purl.obolibrary.org/obo/NCBITaxon_1231360,none +16.9548485,NCBITaxon:1232138,http://purl.obolibrary.org/obo/NCBITaxon_1232138,none +16.9548485,NCBITaxon:1233167,http://purl.obolibrary.org/obo/NCBITaxon_1233167,none +16.9548485,NCBITaxon:1233320,http://purl.obolibrary.org/obo/NCBITaxon_1233320,none +16.9548485,NCBITaxon:1233735,http://purl.obolibrary.org/obo/NCBITaxon_1233735,none +16.9548485,NCBITaxon:1234273,http://purl.obolibrary.org/obo/NCBITaxon_1234273,none +16.9548485,NCBITaxon:1234358,http://purl.obolibrary.org/obo/NCBITaxon_1234358,none +16.9548485,NCBITaxon:1234428,http://purl.obolibrary.org/obo/NCBITaxon_1234428,none +16.9548485,NCBITaxon:123484,http://purl.obolibrary.org/obo/NCBITaxon_123484,none +16.9548485,NCBITaxon:1237118,http://purl.obolibrary.org/obo/NCBITaxon_1237118,none +16.9548485,NCBITaxon:123736,http://purl.obolibrary.org/obo/NCBITaxon_123736,Oestrus +16.9548485,NCBITaxon:123758,http://purl.obolibrary.org/obo/NCBITaxon_123758,none +16.9548485,NCBITaxon:1238455,http://purl.obolibrary.org/obo/NCBITaxon_1238455,none +16.9548485,NCBITaxon:1239034,http://purl.obolibrary.org/obo/NCBITaxon_1239034,none +16.9548485,NCBITaxon:1240730,http://purl.obolibrary.org/obo/NCBITaxon_1240730,none +16.9548485,NCBITaxon:124132,http://purl.obolibrary.org/obo/NCBITaxon_124132,none +16.9548485,NCBITaxon:1242273,http://purl.obolibrary.org/obo/NCBITaxon_1242273,none +16.9548485,NCBITaxon:124286,http://purl.obolibrary.org/obo/NCBITaxon_124286,none +16.9548485,NCBITaxon:1246650,http://purl.obolibrary.org/obo/NCBITaxon_1246650,none +16.9548485,NCBITaxon:124690,http://purl.obolibrary.org/obo/NCBITaxon_124690,none +16.9548485,NCBITaxon:124756,http://purl.obolibrary.org/obo/NCBITaxon_124756,none +16.9548485,NCBITaxon:1247836,http://purl.obolibrary.org/obo/NCBITaxon_1247836,none +16.9548485,NCBITaxon:1248396,http://purl.obolibrary.org/obo/NCBITaxon_1248396,none +16.9548485,NCBITaxon:124939,http://purl.obolibrary.org/obo/NCBITaxon_124939,none +16.9548485,NCBITaxon:1249501,http://purl.obolibrary.org/obo/NCBITaxon_1249501,none +16.9548485,NCBITaxon:124952,http://purl.obolibrary.org/obo/NCBITaxon_124952,none +16.9548485,NCBITaxon:1250633,http://purl.obolibrary.org/obo/NCBITaxon_1250633,none +16.9548485,NCBITaxon:12557,http://purl.obolibrary.org/obo/NCBITaxon_12557,none +16.9548485,NCBITaxon:1256869,http://purl.obolibrary.org/obo/NCBITaxon_1256869,none +16.9548485,NCBITaxon:1262391,http://purl.obolibrary.org/obo/NCBITaxon_1262391,none +16.9548485,NCBITaxon:126288,http://purl.obolibrary.org/obo/NCBITaxon_126288,none +16.9548485,NCBITaxon:126295,http://purl.obolibrary.org/obo/NCBITaxon_126295,none +16.9548485,NCBITaxon:126395,http://purl.obolibrary.org/obo/NCBITaxon_126395,none +16.9548485,NCBITaxon:126396,http://purl.obolibrary.org/obo/NCBITaxon_126396,none +16.9548485,NCBITaxon:1264898,http://purl.obolibrary.org/obo/NCBITaxon_1264898,none +16.9548485,NCBITaxon:1265748,http://purl.obolibrary.org/obo/NCBITaxon_1265748,none +16.9548485,NCBITaxon:1266458,http://purl.obolibrary.org/obo/NCBITaxon_1266458,none +16.9548485,NCBITaxon:1266626,http://purl.obolibrary.org/obo/NCBITaxon_1266626,none +16.9548485,NCBITaxon:1266728,http://purl.obolibrary.org/obo/NCBITaxon_1266728,none +16.9548485,NCBITaxon:1266870,http://purl.obolibrary.org/obo/NCBITaxon_1266870,none +16.9548485,NCBITaxon:126757,http://purl.obolibrary.org/obo/NCBITaxon_126757,none +16.9548485,NCBITaxon:1267585,http://purl.obolibrary.org/obo/NCBITaxon_1267585,none +16.9548485,NCBITaxon:1269772,http://purl.obolibrary.org/obo/NCBITaxon_1269772,none +16.9548485,NCBITaxon:1269773,http://purl.obolibrary.org/obo/NCBITaxon_1269773,none +16.9548485,NCBITaxon:126985,http://purl.obolibrary.org/obo/NCBITaxon_126985,none +16.9548485,NCBITaxon:1272023,http://purl.obolibrary.org/obo/NCBITaxon_1272023,none +16.9548485,NCBITaxon:1272141,http://purl.obolibrary.org/obo/NCBITaxon_1272141,none +16.9548485,NCBITaxon:1272945,http://purl.obolibrary.org/obo/NCBITaxon_1272945,none +16.9548485,NCBITaxon:1272949,http://purl.obolibrary.org/obo/NCBITaxon_1272949,none +16.9548485,NCBITaxon:1272952,http://purl.obolibrary.org/obo/NCBITaxon_1272952,none +16.9548485,NCBITaxon:1272958,http://purl.obolibrary.org/obo/NCBITaxon_1272958,none +16.9548485,NCBITaxon:1272959,http://purl.obolibrary.org/obo/NCBITaxon_1272959,none +16.9548485,NCBITaxon:1272960,http://purl.obolibrary.org/obo/NCBITaxon_1272960,none +16.9548485,NCBITaxon:1272961,http://purl.obolibrary.org/obo/NCBITaxon_1272961,none +16.9548485,NCBITaxon:1273159,http://purl.obolibrary.org/obo/NCBITaxon_1273159,none +16.9548485,NCBITaxon:127322,http://purl.obolibrary.org/obo/NCBITaxon_127322,none +16.9548485,NCBITaxon:1273450,http://purl.obolibrary.org/obo/NCBITaxon_1273450,none +16.9548485,NCBITaxon:127441,http://purl.obolibrary.org/obo/NCBITaxon_127441,none +16.9548485,NCBITaxon:12750,http://purl.obolibrary.org/obo/NCBITaxon_12750,none +16.9548485,NCBITaxon:12760,http://purl.obolibrary.org/obo/NCBITaxon_12760,none +16.9548485,NCBITaxon:1279082,http://purl.obolibrary.org/obo/NCBITaxon_1279082,none +16.9548485,NCBITaxon:1279182,http://purl.obolibrary.org/obo/NCBITaxon_1279182,none +16.9548485,NCBITaxon:12795,http://purl.obolibrary.org/obo/NCBITaxon_12795,none +16.9548485,NCBITaxon:128122,http://purl.obolibrary.org/obo/NCBITaxon_128122,none +16.9548485,NCBITaxon:128125,http://purl.obolibrary.org/obo/NCBITaxon_128125,none +16.9548485,NCBITaxon:1282797,http://purl.obolibrary.org/obo/NCBITaxon_1282797,none +16.9548485,NCBITaxon:12830,http://purl.obolibrary.org/obo/NCBITaxon_12830,none +16.9548485,NCBITaxon:1283294,http://purl.obolibrary.org/obo/NCBITaxon_1283294,none +16.9548485,NCBITaxon:128411,http://purl.obolibrary.org/obo/NCBITaxon_128411,none +16.9548485,NCBITaxon:1285466,http://purl.obolibrary.org/obo/NCBITaxon_1285466,none +16.9548485,NCBITaxon:1286140,http://purl.obolibrary.org/obo/NCBITaxon_1286140,none +16.9548485,NCBITaxon:128708,http://purl.obolibrary.org/obo/NCBITaxon_128708,none +16.9548485,NCBITaxon:1287635,http://purl.obolibrary.org/obo/NCBITaxon_1287635,none +16.9548485,NCBITaxon:1287636,http://purl.obolibrary.org/obo/NCBITaxon_1287636,none +16.9548485,NCBITaxon:1287637,http://purl.obolibrary.org/obo/NCBITaxon_1287637,none +16.9548485,NCBITaxon:12881,http://purl.obolibrary.org/obo/NCBITaxon_12881,none +16.9548485,NCBITaxon:128827,http://purl.obolibrary.org/obo/NCBITaxon_128827,Erysipelotrichaceae +16.9548485,NCBITaxon:12884,http://purl.obolibrary.org/obo/NCBITaxon_12884,none +16.9548485,NCBITaxon:129007,http://purl.obolibrary.org/obo/NCBITaxon_129007,none +16.9548485,NCBITaxon:129030,http://purl.obolibrary.org/obo/NCBITaxon_129030,none +16.9548485,NCBITaxon:12905,http://purl.obolibrary.org/obo/NCBITaxon_12905,none +16.9548485,NCBITaxon:12922,http://purl.obolibrary.org/obo/NCBITaxon_12922,none +16.9548485,NCBITaxon:129247,http://purl.obolibrary.org/obo/NCBITaxon_129247,none +16.9548485,NCBITaxon:129258,http://purl.obolibrary.org/obo/NCBITaxon_129258,none +16.9548485,NCBITaxon:1293360,http://purl.obolibrary.org/obo/NCBITaxon_1293360,none +16.9548485,NCBITaxon:1293363,http://purl.obolibrary.org/obo/NCBITaxon_1293363,none +16.9548485,NCBITaxon:1293497,http://purl.obolibrary.org/obo/NCBITaxon_1293497,none +16.9548485,NCBITaxon:1293498,http://purl.obolibrary.org/obo/NCBITaxon_1293498,none +16.9548485,NCBITaxon:1293499,http://purl.obolibrary.org/obo/NCBITaxon_1293499,none +16.9548485,NCBITaxon:1294177,http://purl.obolibrary.org/obo/NCBITaxon_1294177,none +16.9548485,NCBITaxon:129429,http://purl.obolibrary.org/obo/NCBITaxon_129429,none +16.9548485,NCBITaxon:129430,http://purl.obolibrary.org/obo/NCBITaxon_129430,none +16.9548485,NCBITaxon:129435,http://purl.obolibrary.org/obo/NCBITaxon_129435,none +16.9548485,NCBITaxon:1295009,http://purl.obolibrary.org/obo/NCBITaxon_1295009,none +16.9548485,NCBITaxon:1295012,http://purl.obolibrary.org/obo/NCBITaxon_1295012,none +16.9548485,NCBITaxon:1295014,http://purl.obolibrary.org/obo/NCBITaxon_1295014,none +16.9548485,NCBITaxon:1296573,http://purl.obolibrary.org/obo/NCBITaxon_1296573,none +16.9548485,NCBITaxon:12967,http://purl.obolibrary.org/obo/NCBITaxon_12967,Blastocystis +16.9548485,NCBITaxon:1297377,http://purl.obolibrary.org/obo/NCBITaxon_1297377,none +16.9548485,NCBITaxon:129772,http://purl.obolibrary.org/obo/NCBITaxon_129772,none +16.9548485,NCBITaxon:12979,http://purl.obolibrary.org/obo/NCBITaxon_12979,none +16.9548485,NCBITaxon:129862,http://purl.obolibrary.org/obo/NCBITaxon_129862,none +16.9548485,NCBITaxon:1298633,http://purl.obolibrary.org/obo/NCBITaxon_1298633,none +16.9548485,NCBITaxon:1298971,http://purl.obolibrary.org/obo/NCBITaxon_1298971,none +16.9548485,NCBITaxon:129910,http://purl.obolibrary.org/obo/NCBITaxon_129910,none +16.9548485,NCBITaxon:129918,http://purl.obolibrary.org/obo/NCBITaxon_129918,none +16.9548485,NCBITaxon:12992,http://purl.obolibrary.org/obo/NCBITaxon_12992,none +16.9548485,NCBITaxon:129920,http://purl.obolibrary.org/obo/NCBITaxon_129920,none +16.9548485,NCBITaxon:1299312,http://purl.obolibrary.org/obo/NCBITaxon_1299312,none +16.9548485,NCBITaxon:1299319,http://purl.obolibrary.org/obo/NCBITaxon_1299319,none +16.9548485,NCBITaxon:1299429,http://purl.obolibrary.org/obo/NCBITaxon_1299429,none +16.9548485,NCBITaxon:129954,http://purl.obolibrary.org/obo/NCBITaxon_129954,none +16.9548485,NCBITaxon:129955,http://purl.obolibrary.org/obo/NCBITaxon_129955,none +16.9548485,NCBITaxon:1303862,http://purl.obolibrary.org/obo/NCBITaxon_1303862,none +16.9548485,NCBITaxon:130500,http://purl.obolibrary.org/obo/NCBITaxon_130500,none +16.9548485,NCBITaxon:1306162,http://purl.obolibrary.org/obo/NCBITaxon_1306162,none +16.9548485,NCBITaxon:13063,http://purl.obolibrary.org/obo/NCBITaxon_13063,none +16.9548485,NCBITaxon:13064,http://purl.obolibrary.org/obo/NCBITaxon_13064,none +16.9548485,NCBITaxon:1306931,http://purl.obolibrary.org/obo/NCBITaxon_1306931,none +16.9548485,NCBITaxon:1307430,http://purl.obolibrary.org/obo/NCBITaxon_1307430,none +16.9548485,NCBITaxon:1307774,http://purl.obolibrary.org/obo/NCBITaxon_1307774,none +16.9548485,NCBITaxon:1307775,http://purl.obolibrary.org/obo/NCBITaxon_1307775,none +16.9548485,NCBITaxon:1307958,http://purl.obolibrary.org/obo/NCBITaxon_1307958,none +16.9548485,NCBITaxon:1309,http://purl.obolibrary.org/obo/NCBITaxon_1309,none +16.9548485,NCBITaxon:13095,http://purl.obolibrary.org/obo/NCBITaxon_13095,none +16.9548485,NCBITaxon:13124,http://purl.obolibrary.org/obo/NCBITaxon_13124,none +16.9548485,NCBITaxon:131275,http://purl.obolibrary.org/obo/NCBITaxon_131275,none +16.9548485,NCBITaxon:1312865,http://purl.obolibrary.org/obo/NCBITaxon_1312865,none +16.9548485,NCBITaxon:1312876,http://purl.obolibrary.org/obo/NCBITaxon_1312876,none +16.9548485,NCBITaxon:1313091,http://purl.obolibrary.org/obo/NCBITaxon_1313091,none +16.9548485,NCBITaxon:1313341,http://purl.obolibrary.org/obo/NCBITaxon_1313341,none +16.9548485,NCBITaxon:1314972,http://purl.obolibrary.org/obo/NCBITaxon_1314972,none +16.9548485,NCBITaxon:1314974,http://purl.obolibrary.org/obo/NCBITaxon_1314974,none +16.9548485,NCBITaxon:1315725,http://purl.obolibrary.org/obo/NCBITaxon_1315725,none +16.9548485,NCBITaxon:131578,http://purl.obolibrary.org/obo/NCBITaxon_131578,none +16.9548485,NCBITaxon:1316647,http://purl.obolibrary.org/obo/NCBITaxon_1316647,none +16.9548485,NCBITaxon:1316739,http://purl.obolibrary.org/obo/NCBITaxon_1316739,none +16.9548485,NCBITaxon:1321391,http://purl.obolibrary.org/obo/NCBITaxon_1321391,none +16.9548485,NCBITaxon:132200,http://purl.obolibrary.org/obo/NCBITaxon_132200,none +16.9548485,NCBITaxon:132243,http://purl.obolibrary.org/obo/NCBITaxon_132243,none +16.9548485,NCBITaxon:13259,http://purl.obolibrary.org/obo/NCBITaxon_13259,none +16.9548485,NCBITaxon:1327941,http://purl.obolibrary.org/obo/NCBITaxon_1327941,none +16.9548485,NCBITaxon:1328272,http://purl.obolibrary.org/obo/NCBITaxon_1328272,none +16.9548485,NCBITaxon:1328294,http://purl.obolibrary.org/obo/NCBITaxon_1328294,none +16.9548485,NCBITaxon:13289,http://purl.obolibrary.org/obo/NCBITaxon_13289,none +16.9548485,NCBITaxon:132962,http://purl.obolibrary.org/obo/NCBITaxon_132962,none +16.9548485,NCBITaxon:1330067,http://purl.obolibrary.org/obo/NCBITaxon_1330067,none +16.9548485,NCBITaxon:1330068,http://purl.obolibrary.org/obo/NCBITaxon_1330068,none +16.9548485,NCBITaxon:1330326,http://purl.obolibrary.org/obo/NCBITaxon_1330326,none +16.9548485,NCBITaxon:1330520,http://purl.obolibrary.org/obo/NCBITaxon_1330520,none +16.9548485,NCBITaxon:1330524,http://purl.obolibrary.org/obo/NCBITaxon_1330524,none +16.9548485,NCBITaxon:1330539,http://purl.obolibrary.org/obo/NCBITaxon_1330539,none +16.9548485,NCBITaxon:1330543,http://purl.obolibrary.org/obo/NCBITaxon_1330543,none +16.9548485,NCBITaxon:1331674,http://purl.obolibrary.org/obo/NCBITaxon_1331674,none +16.9548485,NCBITaxon:1331744,http://purl.obolibrary.org/obo/NCBITaxon_1331744,none +16.9548485,NCBITaxon:133184,http://purl.obolibrary.org/obo/NCBITaxon_133184,none +16.9548485,NCBITaxon:1332245,http://purl.obolibrary.org/obo/NCBITaxon_1332245,none +16.9548485,NCBITaxon:1332248,http://purl.obolibrary.org/obo/NCBITaxon_1332248,none +16.9548485,NCBITaxon:1332734,http://purl.obolibrary.org/obo/NCBITaxon_1332734,none +16.9548485,NCBITaxon:13337,http://purl.obolibrary.org/obo/NCBITaxon_13337,none +16.9548485,NCBITaxon:13340,http://purl.obolibrary.org/obo/NCBITaxon_13340,none +16.9548485,NCBITaxon:13344,http://purl.obolibrary.org/obo/NCBITaxon_13344,none +16.9548485,NCBITaxon:1335584,http://purl.obolibrary.org/obo/NCBITaxon_1335584,none +16.9548485,NCBITaxon:1335588,http://purl.obolibrary.org/obo/NCBITaxon_1335588,none +16.9548485,NCBITaxon:133572,http://purl.obolibrary.org/obo/NCBITaxon_133572,none +16.9548485,NCBITaxon:1336288,http://purl.obolibrary.org/obo/NCBITaxon_1336288,none +16.9548485,NCBITaxon:1337645,http://purl.obolibrary.org/obo/NCBITaxon_1337645,none +16.9548485,NCBITaxon:13378,http://purl.obolibrary.org/obo/NCBITaxon_13378,none +16.9548485,NCBITaxon:13390,http://purl.obolibrary.org/obo/NCBITaxon_13390,none +16.9548485,NCBITaxon:13394,http://purl.obolibrary.org/obo/NCBITaxon_13394,none +16.9548485,NCBITaxon:133975,http://purl.obolibrary.org/obo/NCBITaxon_133975,none +16.9548485,NCBITaxon:133990,http://purl.obolibrary.org/obo/NCBITaxon_133990,none +16.9548485,NCBITaxon:133995,http://purl.obolibrary.org/obo/NCBITaxon_133995,none +16.9548485,NCBITaxon:134000,http://purl.obolibrary.org/obo/NCBITaxon_134000,none +16.9548485,NCBITaxon:13406,http://purl.obolibrary.org/obo/NCBITaxon_13406,none +16.9548485,NCBITaxon:1341197,http://purl.obolibrary.org/obo/NCBITaxon_1341197,none +16.9548485,NCBITaxon:13418,http://purl.obolibrary.org/obo/NCBITaxon_13418,none +16.9548485,NCBITaxon:13426,http://purl.obolibrary.org/obo/NCBITaxon_13426,none +16.9548485,NCBITaxon:13427,http://purl.obolibrary.org/obo/NCBITaxon_13427,none +16.9548485,NCBITaxon:134374,http://purl.obolibrary.org/obo/NCBITaxon_134374,none +16.9548485,NCBITaxon:1343920,http://purl.obolibrary.org/obo/NCBITaxon_1343920,none +16.9548485,NCBITaxon:13440,http://purl.obolibrary.org/obo/NCBITaxon_13440,none +16.9548485,NCBITaxon:13448,http://purl.obolibrary.org/obo/NCBITaxon_13448,none +16.9548485,NCBITaxon:13450,http://purl.obolibrary.org/obo/NCBITaxon_13450,none +16.9548485,NCBITaxon:1345662,http://purl.obolibrary.org/obo/NCBITaxon_1345662,none +16.9548485,NCBITaxon:13468,http://purl.obolibrary.org/obo/NCBITaxon_13468,none +16.9548485,NCBITaxon:13476,http://purl.obolibrary.org/obo/NCBITaxon_13476,none +16.9548485,NCBITaxon:1347832,http://purl.obolibrary.org/obo/NCBITaxon_1347832,none +16.9548485,NCBITaxon:1348153,http://purl.obolibrary.org/obo/NCBITaxon_1348153,none +16.9548485,NCBITaxon:1348439,http://purl.obolibrary.org/obo/NCBITaxon_1348439,none +16.9548485,NCBITaxon:1349410,http://purl.obolibrary.org/obo/NCBITaxon_1349410,none +16.9548485,NCBITaxon:134999,http://purl.obolibrary.org/obo/NCBITaxon_134999,none +16.9548485,NCBITaxon:1350214,http://purl.obolibrary.org/obo/NCBITaxon_1350214,none +16.9548485,NCBITaxon:1352510,http://purl.obolibrary.org/obo/NCBITaxon_1352510,none +16.9548485,NCBITaxon:1352511,http://purl.obolibrary.org/obo/NCBITaxon_1352511,none +16.9548485,NCBITaxon:1354727,http://purl.obolibrary.org/obo/NCBITaxon_1354727,none +16.9548485,NCBITaxon:135523,http://purl.obolibrary.org/obo/NCBITaxon_135523,none +16.9548485,NCBITaxon:1355437,http://purl.obolibrary.org/obo/NCBITaxon_1355437,none +16.9548485,NCBITaxon:135575,http://purl.obolibrary.org/obo/NCBITaxon_135575,none +16.9548485,NCBITaxon:135587,http://purl.obolibrary.org/obo/NCBITaxon_135587,none +16.9548485,NCBITaxon:135617,http://purl.obolibrary.org/obo/NCBITaxon_135617,none +16.9548485,NCBITaxon:135620,http://purl.obolibrary.org/obo/NCBITaxon_135620,none +16.9548485,NCBITaxon:13567,http://purl.obolibrary.org/obo/NCBITaxon_13567,none +16.9548485,NCBITaxon:13605,http://purl.obolibrary.org/obo/NCBITaxon_13605,none +16.9548485,NCBITaxon:136138,http://purl.obolibrary.org/obo/NCBITaxon_136138,none +16.9548485,NCBITaxon:136202,http://purl.obolibrary.org/obo/NCBITaxon_136202,none +16.9548485,NCBITaxon:136217,http://purl.obolibrary.org/obo/NCBITaxon_136217,none +16.9548485,NCBITaxon:1365474,http://purl.obolibrary.org/obo/NCBITaxon_1365474,none +16.9548485,NCBITaxon:13659,http://purl.obolibrary.org/obo/NCBITaxon_13659,none +16.9548485,NCBITaxon:1365975,http://purl.obolibrary.org/obo/NCBITaxon_1365975,none +16.9548485,NCBITaxon:13665,http://purl.obolibrary.org/obo/NCBITaxon_13665,none +16.9548485,NCBITaxon:136693,http://purl.obolibrary.org/obo/NCBITaxon_136693,none +16.9548485,NCBITaxon:1367218,http://purl.obolibrary.org/obo/NCBITaxon_1367218,none +16.9548485,NCBITaxon:136846,http://purl.obolibrary.org/obo/NCBITaxon_136846,none +16.9548485,NCBITaxon:1368616,http://purl.obolibrary.org/obo/NCBITaxon_1368616,none +16.9548485,NCBITaxon:13691,http://purl.obolibrary.org/obo/NCBITaxon_13691,none +16.9548485,NCBITaxon:13695,http://purl.obolibrary.org/obo/NCBITaxon_13695,none +16.9548485,NCBITaxon:13696,http://purl.obolibrary.org/obo/NCBITaxon_13696,none +16.9548485,NCBITaxon:137062,http://purl.obolibrary.org/obo/NCBITaxon_137062,none +16.9548485,NCBITaxon:137078,http://purl.obolibrary.org/obo/NCBITaxon_137078,none +16.9548485,NCBITaxon:13745,http://purl.obolibrary.org/obo/NCBITaxon_13745,none +16.9548485,NCBITaxon:13746,http://purl.obolibrary.org/obo/NCBITaxon_13746,none +16.9548485,NCBITaxon:13749,http://purl.obolibrary.org/obo/NCBITaxon_13749,none +16.9548485,NCBITaxon:13753,http://purl.obolibrary.org/obo/NCBITaxon_13753,none +16.9548485,NCBITaxon:137614,http://purl.obolibrary.org/obo/NCBITaxon_137614,none +16.9548485,NCBITaxon:137615,http://purl.obolibrary.org/obo/NCBITaxon_137615,none +16.9548485,NCBITaxon:137729,http://purl.obolibrary.org/obo/NCBITaxon_137729,none +16.9548485,NCBITaxon:13778,http://purl.obolibrary.org/obo/NCBITaxon_13778,none +16.9548485,NCBITaxon:1378,http://purl.obolibrary.org/obo/NCBITaxon_1378,none +16.9548485,NCBITaxon:137887,http://purl.obolibrary.org/obo/NCBITaxon_137887,none +16.9548485,NCBITaxon:138063,http://purl.obolibrary.org/obo/NCBITaxon_138063,none +16.9548485,NCBITaxon:13809,http://purl.obolibrary.org/obo/NCBITaxon_13809,none +16.9548485,NCBITaxon:13810,http://purl.obolibrary.org/obo/NCBITaxon_13810,none +16.9548485,NCBITaxon:13811,http://purl.obolibrary.org/obo/NCBITaxon_13811,none +16.9548485,NCBITaxon:1382700,http://purl.obolibrary.org/obo/NCBITaxon_1382700,none +16.9548485,NCBITaxon:1383052,http://purl.obolibrary.org/obo/NCBITaxon_1383052,none +16.9548485,NCBITaxon:1383893,http://purl.obolibrary.org/obo/NCBITaxon_1383893,none +16.9548485,NCBITaxon:1384631,http://purl.obolibrary.org/obo/NCBITaxon_1384631,none +16.9548485,NCBITaxon:138676,http://purl.obolibrary.org/obo/NCBITaxon_138676,none +16.9548485,NCBITaxon:1391223,http://purl.obolibrary.org/obo/NCBITaxon_1391223,none +16.9548485,NCBITaxon:1392619,http://purl.obolibrary.org/obo/NCBITaxon_1392619,none +16.9548485,NCBITaxon:1392620,http://purl.obolibrary.org/obo/NCBITaxon_1392620,none +16.9548485,NCBITaxon:139276,http://purl.obolibrary.org/obo/NCBITaxon_139276,none +16.9548485,NCBITaxon:1392847,http://purl.obolibrary.org/obo/NCBITaxon_1392847,none +16.9548485,NCBITaxon:1392849,http://purl.obolibrary.org/obo/NCBITaxon_1392849,none +16.9548485,NCBITaxon:1392868,http://purl.obolibrary.org/obo/NCBITaxon_1392868,none +16.9548485,NCBITaxon:139475,http://purl.obolibrary.org/obo/NCBITaxon_139475,none +16.9548485,NCBITaxon:1394984,http://purl.obolibrary.org/obo/NCBITaxon_1394984,none +16.9548485,NCBITaxon:1394985,http://purl.obolibrary.org/obo/NCBITaxon_1394985,none +16.9548485,NCBITaxon:1395525,http://purl.obolibrary.org/obo/NCBITaxon_1395525,none +16.9548485,NCBITaxon:1398917,http://purl.obolibrary.org/obo/NCBITaxon_1398917,none +16.9548485,NCBITaxon:1399770,http://purl.obolibrary.org/obo/NCBITaxon_1399770,Entomophthoromycetes +16.9548485,NCBITaxon:1400526,http://purl.obolibrary.org/obo/NCBITaxon_1400526,none +16.9548485,NCBITaxon:140095,http://purl.obolibrary.org/obo/NCBITaxon_140095,none +16.9548485,NCBITaxon:1401315,http://purl.obolibrary.org/obo/NCBITaxon_1401315,none +16.9548485,NCBITaxon:1401449,http://purl.obolibrary.org/obo/NCBITaxon_1401449,none +16.9548485,NCBITaxon:1403016,http://purl.obolibrary.org/obo/NCBITaxon_1403016,none +16.9548485,NCBITaxon:1403565,http://purl.obolibrary.org/obo/NCBITaxon_1403565,none +16.9548485,NCBITaxon:1405654,http://purl.obolibrary.org/obo/NCBITaxon_1405654,none +16.9548485,NCBITaxon:1406134,http://purl.obolibrary.org/obo/NCBITaxon_1406134,none +16.9548485,NCBITaxon:1406136,http://purl.obolibrary.org/obo/NCBITaxon_1406136,none +16.9548485,NCBITaxon:1406344,http://purl.obolibrary.org/obo/NCBITaxon_1406344,none +16.9548485,NCBITaxon:1406975,http://purl.obolibrary.org/obo/NCBITaxon_1406975,none +16.9548485,NCBITaxon:1409,http://purl.obolibrary.org/obo/NCBITaxon_1409,none +16.9548485,NCBITaxon:140916,http://purl.obolibrary.org/obo/NCBITaxon_140916,none +16.9548485,NCBITaxon:1410467,http://purl.obolibrary.org/obo/NCBITaxon_1410467,none +16.9548485,NCBITaxon:141190,http://purl.obolibrary.org/obo/NCBITaxon_141190,none +16.9548485,NCBITaxon:141191,http://purl.obolibrary.org/obo/NCBITaxon_141191,none +16.9548485,NCBITaxon:1411991,http://purl.obolibrary.org/obo/NCBITaxon_1411991,none +16.9548485,NCBITaxon:141215,http://purl.obolibrary.org/obo/NCBITaxon_141215,none +16.9548485,NCBITaxon:141411,http://purl.obolibrary.org/obo/NCBITaxon_141411,none +16.9548485,NCBITaxon:1414644,http://purl.obolibrary.org/obo/NCBITaxon_1414644,none +16.9548485,NCBITaxon:1416745,http://purl.obolibrary.org/obo/NCBITaxon_1416745,none +16.9548485,NCBITaxon:1417304,http://purl.obolibrary.org/obo/NCBITaxon_1417304,none +16.9548485,NCBITaxon:1417305,http://purl.obolibrary.org/obo/NCBITaxon_1417305,none +16.9548485,NCBITaxon:1418033,http://purl.obolibrary.org/obo/NCBITaxon_1418033,none +16.9548485,NCBITaxon:141864,http://purl.obolibrary.org/obo/NCBITaxon_141864,none +16.9548485,NCBITaxon:1419188,http://purl.obolibrary.org/obo/NCBITaxon_1419188,none +16.9548485,NCBITaxon:141948,http://purl.obolibrary.org/obo/NCBITaxon_141948,none +16.9548485,NCBITaxon:141999,http://purl.obolibrary.org/obo/NCBITaxon_141999,none +16.9548485,NCBITaxon:1424279,http://purl.obolibrary.org/obo/NCBITaxon_1424279,none +16.9548485,NCBITaxon:1424280,http://purl.obolibrary.org/obo/NCBITaxon_1424280,none +16.9548485,NCBITaxon:142475,http://purl.obolibrary.org/obo/NCBITaxon_142475,none +16.9548485,NCBITaxon:142580,http://purl.obolibrary.org/obo/NCBITaxon_142580,none +16.9548485,NCBITaxon:1427149,http://purl.obolibrary.org/obo/NCBITaxon_1427149,none +16.9548485,NCBITaxon:1427151,http://purl.obolibrary.org/obo/NCBITaxon_1427151,none +16.9548485,NCBITaxon:1427476,http://purl.obolibrary.org/obo/NCBITaxon_1427476,none +16.9548485,NCBITaxon:1428460,http://purl.obolibrary.org/obo/NCBITaxon_1428460,none +16.9548485,NCBITaxon:1428581,http://purl.obolibrary.org/obo/NCBITaxon_1428581,none +16.9548485,NCBITaxon:1428582,http://purl.obolibrary.org/obo/NCBITaxon_1428582,none +16.9548485,NCBITaxon:142933,http://purl.obolibrary.org/obo/NCBITaxon_142933,none +16.9548485,NCBITaxon:1430885,http://purl.obolibrary.org/obo/NCBITaxon_1430885,none +16.9548485,NCBITaxon:1431395,http://purl.obolibrary.org/obo/NCBITaxon_1431395,none +16.9548485,NCBITaxon:1431460,http://purl.obolibrary.org/obo/NCBITaxon_1431460,none +16.9548485,NCBITaxon:1431464,http://purl.obolibrary.org/obo/NCBITaxon_1431464,none +16.9548485,NCBITaxon:143310,http://purl.obolibrary.org/obo/NCBITaxon_143310,none +16.9548485,NCBITaxon:1433129,http://purl.obolibrary.org/obo/NCBITaxon_1433129,none +16.9548485,NCBITaxon:143331,http://purl.obolibrary.org/obo/NCBITaxon_143331,none +16.9548485,NCBITaxon:143350,http://purl.obolibrary.org/obo/NCBITaxon_143350,none +16.9548485,NCBITaxon:143352,http://purl.obolibrary.org/obo/NCBITaxon_143352,none +16.9548485,NCBITaxon:1434728,http://purl.obolibrary.org/obo/NCBITaxon_1434728,none +16.9548485,NCBITaxon:143645,http://purl.obolibrary.org/obo/NCBITaxon_143645,none +16.9548485,NCBITaxon:14366,http://purl.obolibrary.org/obo/NCBITaxon_14366,none +16.9548485,NCBITaxon:1436890,http://purl.obolibrary.org/obo/NCBITaxon_1436890,none +16.9548485,NCBITaxon:1436892,http://purl.obolibrary.org/obo/NCBITaxon_1436892,none +16.9548485,NCBITaxon:1437064,http://purl.obolibrary.org/obo/NCBITaxon_1437064,none +16.9548485,NCBITaxon:143921,http://purl.obolibrary.org/obo/NCBITaxon_143921,none +16.9548485,NCBITaxon:143958,http://purl.obolibrary.org/obo/NCBITaxon_143958,none +16.9548485,NCBITaxon:143959,http://purl.obolibrary.org/obo/NCBITaxon_143959,none +16.9548485,NCBITaxon:143999,http://purl.obolibrary.org/obo/NCBITaxon_143999,none +16.9548485,NCBITaxon:144006,http://purl.obolibrary.org/obo/NCBITaxon_144006,none +16.9548485,NCBITaxon:144011,http://purl.obolibrary.org/obo/NCBITaxon_144011,none +16.9548485,NCBITaxon:1440829,http://purl.obolibrary.org/obo/NCBITaxon_1440829,none +16.9548485,NCBITaxon:1443282,http://purl.obolibrary.org/obo/NCBITaxon_1443282,none +16.9548485,NCBITaxon:1443641,http://purl.obolibrary.org/obo/NCBITaxon_1443641,none +16.9548485,NCBITaxon:1443642,http://purl.obolibrary.org/obo/NCBITaxon_1443642,none +16.9548485,NCBITaxon:1443949,http://purl.obolibrary.org/obo/NCBITaxon_1443949,none +16.9548485,NCBITaxon:144561,http://purl.obolibrary.org/obo/NCBITaxon_144561,none +16.9548485,NCBITaxon:1445963,http://purl.obolibrary.org/obo/NCBITaxon_1445963,none +16.9548485,NCBITaxon:1445964,http://purl.obolibrary.org/obo/NCBITaxon_1445964,none +16.9548485,NCBITaxon:1446746,http://purl.obolibrary.org/obo/NCBITaxon_1446746,none +16.9548485,NCBITaxon:1446755,http://purl.obolibrary.org/obo/NCBITaxon_1446755,none +16.9548485,NCBITaxon:144752,http://purl.obolibrary.org/obo/NCBITaxon_144752,none +16.9548485,NCBITaxon:1452720,http://purl.obolibrary.org/obo/NCBITaxon_1452720,none +16.9548485,NCBITaxon:1453403,http://purl.obolibrary.org/obo/NCBITaxon_1453403,none +16.9548485,NCBITaxon:1453404,http://purl.obolibrary.org/obo/NCBITaxon_1453404,none +16.9548485,NCBITaxon:1453407,http://purl.obolibrary.org/obo/NCBITaxon_1453407,none +16.9548485,NCBITaxon:145398,http://purl.obolibrary.org/obo/NCBITaxon_145398,none +16.9548485,NCBITaxon:1454551,http://purl.obolibrary.org/obo/NCBITaxon_1454551,none +16.9548485,NCBITaxon:145527,http://purl.obolibrary.org/obo/NCBITaxon_145527,none +16.9548485,NCBITaxon:1456752,http://purl.obolibrary.org/obo/NCBITaxon_1456752,none +16.9548485,NCBITaxon:1457166,http://purl.obolibrary.org/obo/NCBITaxon_1457166,none +16.9548485,NCBITaxon:145791,http://purl.obolibrary.org/obo/NCBITaxon_145791,none +16.9548485,NCBITaxon:145793,http://purl.obolibrary.org/obo/NCBITaxon_145793,none +16.9548485,NCBITaxon:1458186,http://purl.obolibrary.org/obo/NCBITaxon_1458186,none +16.9548485,NCBITaxon:1462430,http://purl.obolibrary.org/obo/NCBITaxon_1462430,none +16.9548485,NCBITaxon:1462614,http://purl.obolibrary.org/obo/NCBITaxon_1462614,none +16.9548485,NCBITaxon:1463139,http://purl.obolibrary.org/obo/NCBITaxon_1463139,none +16.9548485,NCBITaxon:1463143,http://purl.obolibrary.org/obo/NCBITaxon_1463143,none +16.9548485,NCBITaxon:1464778,http://purl.obolibrary.org/obo/NCBITaxon_1464778,none +16.9548485,NCBITaxon:146712,http://purl.obolibrary.org/obo/NCBITaxon_146712,none +16.9548485,NCBITaxon:146807,http://purl.obolibrary.org/obo/NCBITaxon_146807,none +16.9548485,NCBITaxon:1468425,http://purl.obolibrary.org/obo/NCBITaxon_1468425,none +16.9548485,NCBITaxon:1468427,http://purl.obolibrary.org/obo/NCBITaxon_1468427,none +16.9548485,NCBITaxon:1468430,http://purl.obolibrary.org/obo/NCBITaxon_1468430,none +16.9548485,NCBITaxon:147045,http://purl.obolibrary.org/obo/NCBITaxon_147045,none +16.9548485,NCBITaxon:147129,http://purl.obolibrary.org/obo/NCBITaxon_147129,none +16.9548485,NCBITaxon:1471398,http://purl.obolibrary.org/obo/NCBITaxon_1471398,none +16.9548485,NCBITaxon:147243,http://purl.obolibrary.org/obo/NCBITaxon_147243,none +16.9548485,NCBITaxon:147306,http://purl.obolibrary.org/obo/NCBITaxon_147306,none +16.9548485,NCBITaxon:147366,http://purl.obolibrary.org/obo/NCBITaxon_147366,none +16.9548485,NCBITaxon:147376,http://purl.obolibrary.org/obo/NCBITaxon_147376,none +16.9548485,NCBITaxon:147385,http://purl.obolibrary.org/obo/NCBITaxon_147385,none +16.9548485,NCBITaxon:1474867,http://purl.obolibrary.org/obo/NCBITaxon_1474867,none +16.9548485,NCBITaxon:147539,http://purl.obolibrary.org/obo/NCBITaxon_147539,none +16.9548485,NCBITaxon:147597,http://purl.obolibrary.org/obo/NCBITaxon_147597,none +16.9548485,NCBITaxon:1476390,http://purl.obolibrary.org/obo/NCBITaxon_1476390,none +16.9548485,NCBITaxon:1476487,http://purl.obolibrary.org/obo/NCBITaxon_1476487,none +16.9548485,NCBITaxon:1476584,http://purl.obolibrary.org/obo/NCBITaxon_1476584,none +16.9548485,NCBITaxon:1477528,http://purl.obolibrary.org/obo/NCBITaxon_1477528,none +16.9548485,NCBITaxon:1478275,http://purl.obolibrary.org/obo/NCBITaxon_1478275,none +16.9548485,NCBITaxon:147830,http://purl.obolibrary.org/obo/NCBITaxon_147830,none +16.9548485,NCBITaxon:1479610,http://purl.obolibrary.org/obo/NCBITaxon_1479610,none +16.9548485,NCBITaxon:1481463,http://purl.obolibrary.org/obo/NCBITaxon_1481463,none +16.9548485,NCBITaxon:1481723,http://purl.obolibrary.org/obo/NCBITaxon_1481723,none +16.9548485,NCBITaxon:1482319,http://purl.obolibrary.org/obo/NCBITaxon_1482319,none +16.9548485,NCBITaxon:1484030,http://purl.obolibrary.org/obo/NCBITaxon_1484030,none +16.9548485,NCBITaxon:1484570,http://purl.obolibrary.org/obo/NCBITaxon_1484570,none +16.9548485,NCBITaxon:1484573,http://purl.obolibrary.org/obo/NCBITaxon_1484573,none +16.9548485,NCBITaxon:1486046,http://purl.obolibrary.org/obo/NCBITaxon_1486046,none +16.9548485,NCBITaxon:148684,http://purl.obolibrary.org/obo/NCBITaxon_148684,none +16.9548485,NCBITaxon:1487592,http://purl.obolibrary.org/obo/NCBITaxon_1487592,none +16.9548485,NCBITaxon:1489102,http://purl.obolibrary.org/obo/NCBITaxon_1489102,none +16.9548485,NCBITaxon:1489311,http://purl.obolibrary.org/obo/NCBITaxon_1489311,none +16.9548485,NCBITaxon:1489615,http://purl.obolibrary.org/obo/NCBITaxon_1489615,none +16.9548485,NCBITaxon:1489829,http://purl.obolibrary.org/obo/NCBITaxon_1489829,none +16.9548485,NCBITaxon:1489830,http://purl.obolibrary.org/obo/NCBITaxon_1489830,none +16.9548485,NCBITaxon:1489906,http://purl.obolibrary.org/obo/NCBITaxon_1489906,none +16.9548485,NCBITaxon:1489928,http://purl.obolibrary.org/obo/NCBITaxon_1489928,none +16.9548485,NCBITaxon:1490019,http://purl.obolibrary.org/obo/NCBITaxon_1490019,none +16.9548485,NCBITaxon:1490227,http://purl.obolibrary.org/obo/NCBITaxon_1490227,none +16.9548485,NCBITaxon:1491491,http://purl.obolibrary.org/obo/NCBITaxon_1491491,none +16.9548485,NCBITaxon:149371,http://purl.obolibrary.org/obo/NCBITaxon_149371,none +16.9548485,NCBITaxon:149459,http://purl.obolibrary.org/obo/NCBITaxon_149459,none +16.9548485,NCBITaxon:1494663,http://purl.obolibrary.org/obo/NCBITaxon_1494663,none +16.9548485,NCBITaxon:1494668,http://purl.obolibrary.org/obo/NCBITaxon_1494668,none +16.9548485,NCBITaxon:1495316,http://purl.obolibrary.org/obo/NCBITaxon_1495316,none +16.9548485,NCBITaxon:1495866,http://purl.obolibrary.org/obo/NCBITaxon_1495866,none +16.9548485,NCBITaxon:149618,http://purl.obolibrary.org/obo/NCBITaxon_149618,none +16.9548485,NCBITaxon:149715,http://purl.obolibrary.org/obo/NCBITaxon_149715,none +16.9548485,NCBITaxon:1498431,http://purl.obolibrary.org/obo/NCBITaxon_1498431,none +16.9548485,NCBITaxon:1498435,http://purl.obolibrary.org/obo/NCBITaxon_1498435,none +16.9548485,NCBITaxon:1498436,http://purl.obolibrary.org/obo/NCBITaxon_1498436,none +16.9548485,NCBITaxon:1499985,http://purl.obolibrary.org/obo/NCBITaxon_1499985,none +16.9548485,NCBITaxon:1499987,http://purl.obolibrary.org/obo/NCBITaxon_1499987,none +16.9548485,NCBITaxon:150176,http://purl.obolibrary.org/obo/NCBITaxon_150176,none +16.9548485,NCBITaxon:1502216,http://purl.obolibrary.org/obo/NCBITaxon_1502216,none +16.9548485,NCBITaxon:1502217,http://purl.obolibrary.org/obo/NCBITaxon_1502217,none +16.9548485,NCBITaxon:150372,http://purl.obolibrary.org/obo/NCBITaxon_150372,none +16.9548485,NCBITaxon:150421,http://purl.obolibrary.org/obo/NCBITaxon_150421,none +16.9548485,NCBITaxon:1508595,http://purl.obolibrary.org/obo/NCBITaxon_1508595,none +16.9548485,NCBITaxon:1508635,http://purl.obolibrary.org/obo/NCBITaxon_1508635,none +16.9548485,NCBITaxon:15105,http://purl.obolibrary.org/obo/NCBITaxon_15105,none +16.9548485,NCBITaxon:151077,http://purl.obolibrary.org/obo/NCBITaxon_151077,none +16.9548485,NCBITaxon:1511732,http://purl.obolibrary.org/obo/NCBITaxon_1511732,none +16.9548485,NCBITaxon:151180,http://purl.obolibrary.org/obo/NCBITaxon_151180,none +16.9548485,NCBITaxon:1511804,http://purl.obolibrary.org/obo/NCBITaxon_1511804,none +16.9548485,NCBITaxon:151181,http://purl.obolibrary.org/obo/NCBITaxon_151181,none +16.9548485,NCBITaxon:1511810,http://purl.obolibrary.org/obo/NCBITaxon_1511810,none +16.9548485,NCBITaxon:1511855,http://purl.obolibrary.org/obo/NCBITaxon_1511855,none +16.9548485,NCBITaxon:1511856,http://purl.obolibrary.org/obo/NCBITaxon_1511856,none +16.9548485,NCBITaxon:1511893,http://purl.obolibrary.org/obo/NCBITaxon_1511893,none +16.9548485,NCBITaxon:1511895,http://purl.obolibrary.org/obo/NCBITaxon_1511895,none +16.9548485,NCBITaxon:1511899,http://purl.obolibrary.org/obo/NCBITaxon_1511899,none +16.9548485,NCBITaxon:1511905,http://purl.obolibrary.org/obo/NCBITaxon_1511905,none +16.9548485,NCBITaxon:1511914,http://purl.obolibrary.org/obo/NCBITaxon_1511914,none +16.9548485,NCBITaxon:151233,http://purl.obolibrary.org/obo/NCBITaxon_151233,none +16.9548485,NCBITaxon:1513188,http://purl.obolibrary.org/obo/NCBITaxon_1513188,none +16.9548485,NCBITaxon:1513256,http://purl.obolibrary.org/obo/NCBITaxon_1513256,none +16.9548485,NCBITaxon:1513263,http://purl.obolibrary.org/obo/NCBITaxon_1513263,none +16.9548485,NCBITaxon:1513295,http://purl.obolibrary.org/obo/NCBITaxon_1513295,none +16.9548485,NCBITaxon:1513296,http://purl.obolibrary.org/obo/NCBITaxon_1513296,none +16.9548485,NCBITaxon:1513298,http://purl.obolibrary.org/obo/NCBITaxon_1513298,none +16.9548485,NCBITaxon:1513460,http://purl.obolibrary.org/obo/NCBITaxon_1513460,none +16.9548485,NCBITaxon:1513521,http://purl.obolibrary.org/obo/NCBITaxon_1513521,none +16.9548485,NCBITaxon:1513530,http://purl.obolibrary.org/obo/NCBITaxon_1513530,none +16.9548485,NCBITaxon:15170,http://purl.obolibrary.org/obo/NCBITaxon_15170,none +16.9548485,NCBITaxon:1518574,http://purl.obolibrary.org/obo/NCBITaxon_1518574,none +16.9548485,NCBITaxon:1518575,http://purl.obolibrary.org/obo/NCBITaxon_1518575,none +16.9548485,NCBITaxon:152053,http://purl.obolibrary.org/obo/NCBITaxon_152053,none +16.9548485,NCBITaxon:1520783,http://purl.obolibrary.org/obo/NCBITaxon_1520783,none +16.9548485,NCBITaxon:1520784,http://purl.obolibrary.org/obo/NCBITaxon_1520784,none +16.9548485,NCBITaxon:1521258,http://purl.obolibrary.org/obo/NCBITaxon_1521258,none +16.9548485,NCBITaxon:152265,http://purl.obolibrary.org/obo/NCBITaxon_152265,none +16.9548485,NCBITaxon:152461,http://purl.obolibrary.org/obo/NCBITaxon_152461,none +16.9548485,NCBITaxon:1524962,http://purl.obolibrary.org/obo/NCBITaxon_1524962,none +16.9548485,NCBITaxon:1525,http://purl.obolibrary.org/obo/NCBITaxon_1525,none +16.9548485,NCBITaxon:152601,http://purl.obolibrary.org/obo/NCBITaxon_152601,none +16.9548485,NCBITaxon:1532884,http://purl.obolibrary.org/obo/NCBITaxon_1532884,none +16.9548485,NCBITaxon:15367,http://purl.obolibrary.org/obo/NCBITaxon_15367,none +16.9548485,NCBITaxon:1538065,http://purl.obolibrary.org/obo/NCBITaxon_1538065,none +16.9548485,NCBITaxon:1538066,http://purl.obolibrary.org/obo/NCBITaxon_1538066,none +16.9548485,NCBITaxon:1538067,http://purl.obolibrary.org/obo/NCBITaxon_1538067,none +16.9548485,NCBITaxon:153845,http://purl.obolibrary.org/obo/NCBITaxon_153845,none +16.9548485,NCBITaxon:154130,http://purl.obolibrary.org/obo/NCBITaxon_154130,none +16.9548485,NCBITaxon:154334,http://purl.obolibrary.org/obo/NCBITaxon_154334,none +16.9548485,NCBITaxon:1545379,http://purl.obolibrary.org/obo/NCBITaxon_1545379,none +16.9548485,NCBITaxon:1545895,http://purl.obolibrary.org/obo/NCBITaxon_1545895,none +16.9548485,NCBITaxon:1545900,http://purl.obolibrary.org/obo/NCBITaxon_1545900,none +16.9548485,NCBITaxon:154606,http://purl.obolibrary.org/obo/NCBITaxon_154606,none +16.9548485,NCBITaxon:15492,http://purl.obolibrary.org/obo/NCBITaxon_15492,none +16.9548485,NCBITaxon:155124,http://purl.obolibrary.org/obo/NCBITaxon_155124,none +16.9548485,NCBITaxon:155493,http://purl.obolibrary.org/obo/NCBITaxon_155493,none +16.9548485,NCBITaxon:155891,http://purl.obolibrary.org/obo/NCBITaxon_155891,none +16.9548485,NCBITaxon:1561069,http://purl.obolibrary.org/obo/NCBITaxon_1561069,none +16.9548485,NCBITaxon:1561072,http://purl.obolibrary.org/obo/NCBITaxon_1561072,none +16.9548485,NCBITaxon:156278,http://purl.obolibrary.org/obo/NCBITaxon_156278,none +16.9548485,NCBITaxon:1563254,http://purl.obolibrary.org/obo/NCBITaxon_1563254,none +16.9548485,NCBITaxon:156330,http://purl.obolibrary.org/obo/NCBITaxon_156330,none +16.9548485,NCBITaxon:156337,http://purl.obolibrary.org/obo/NCBITaxon_156337,none +16.9548485,NCBITaxon:1564048,http://purl.obolibrary.org/obo/NCBITaxon_1564048,none +16.9548485,NCBITaxon:156973,http://purl.obolibrary.org/obo/NCBITaxon_156973,none +16.9548485,NCBITaxon:156986,http://purl.obolibrary.org/obo/NCBITaxon_156986,none +16.9548485,NCBITaxon:157018,http://purl.obolibrary.org/obo/NCBITaxon_157018,none +16.9548485,NCBITaxon:157052,http://purl.obolibrary.org/obo/NCBITaxon_157052,none +16.9548485,NCBITaxon:157293,http://purl.obolibrary.org/obo/NCBITaxon_157293,none +16.9548485,NCBITaxon:157731,http://purl.obolibrary.org/obo/NCBITaxon_157731,none +16.9548485,NCBITaxon:157897,http://purl.obolibrary.org/obo/NCBITaxon_157897,none +16.9548485,NCBITaxon:158309,http://purl.obolibrary.org/obo/NCBITaxon_158309,none +16.9548485,NCBITaxon:158330,http://purl.obolibrary.org/obo/NCBITaxon_158330,none +16.9548485,NCBITaxon:158345,http://purl.obolibrary.org/obo/NCBITaxon_158345,none +16.9548485,NCBITaxon:158363,http://purl.obolibrary.org/obo/NCBITaxon_158363,none +16.9548485,NCBITaxon:158364,http://purl.obolibrary.org/obo/NCBITaxon_158364,none +16.9548485,NCBITaxon:158366,http://purl.obolibrary.org/obo/NCBITaxon_158366,none +16.9548485,NCBITaxon:158391,http://purl.obolibrary.org/obo/NCBITaxon_158391,none +16.9548485,NCBITaxon:158427,http://purl.obolibrary.org/obo/NCBITaxon_158427,none +16.9548485,NCBITaxon:158429,http://purl.obolibrary.org/obo/NCBITaxon_158429,none +16.9548485,NCBITaxon:158478,http://purl.obolibrary.org/obo/NCBITaxon_158478,none +16.9548485,NCBITaxon:158555,http://purl.obolibrary.org/obo/NCBITaxon_158555,none +16.9548485,NCBITaxon:159076,http://purl.obolibrary.org/obo/NCBITaxon_159076,none +16.9548485,NCBITaxon:159143,http://purl.obolibrary.org/obo/NCBITaxon_159143,none +16.9548485,NCBITaxon:159152,http://purl.obolibrary.org/obo/NCBITaxon_159152,none +16.9548485,NCBITaxon:15956,http://purl.obolibrary.org/obo/NCBITaxon_15956,Phleum +16.9548485,NCBITaxon:15958,http://purl.obolibrary.org/obo/NCBITaxon_15958,none +16.9548485,NCBITaxon:159954,http://purl.obolibrary.org/obo/NCBITaxon_159954,none +16.9548485,NCBITaxon:160140,http://purl.obolibrary.org/obo/NCBITaxon_160140,none +16.9548485,NCBITaxon:160141,http://purl.obolibrary.org/obo/NCBITaxon_160141,none +16.9548485,NCBITaxon:160389,http://purl.obolibrary.org/obo/NCBITaxon_160389,none +16.9548485,NCBITaxon:160529,http://purl.obolibrary.org/obo/NCBITaxon_160529,none +16.9548485,NCBITaxon:160732,http://purl.obolibrary.org/obo/NCBITaxon_160732,none +16.9548485,NCBITaxon:160733,http://purl.obolibrary.org/obo/NCBITaxon_160733,none +16.9548485,NCBITaxon:160753,http://purl.obolibrary.org/obo/NCBITaxon_160753,none +16.9548485,NCBITaxon:160766,http://purl.obolibrary.org/obo/NCBITaxon_160766,none +16.9548485,NCBITaxon:160797,http://purl.obolibrary.org/obo/NCBITaxon_160797,none +16.9548485,NCBITaxon:160844,http://purl.obolibrary.org/obo/NCBITaxon_160844,none +16.9548485,NCBITaxon:160909,http://purl.obolibrary.org/obo/NCBITaxon_160909,none +16.9548485,NCBITaxon:1609961,http://purl.obolibrary.org/obo/NCBITaxon_1609961,none +16.9548485,NCBITaxon:161109,http://purl.obolibrary.org/obo/NCBITaxon_161109,none +16.9548485,NCBITaxon:16123,http://purl.obolibrary.org/obo/NCBITaxon_16123,none +16.9548485,NCBITaxon:161701,http://purl.obolibrary.org/obo/NCBITaxon_161701,none +16.9548485,NCBITaxon:162064,http://purl.obolibrary.org/obo/NCBITaxon_162064,none +16.9548485,NCBITaxon:162161,http://purl.obolibrary.org/obo/NCBITaxon_162161,none +16.9548485,NCBITaxon:1623287,http://purl.obolibrary.org/obo/NCBITaxon_1623287,none +16.9548485,NCBITaxon:1623305,http://purl.obolibrary.org/obo/NCBITaxon_1623305,none +16.9548485,NCBITaxon:162331,http://purl.obolibrary.org/obo/NCBITaxon_162331,none +16.9548485,NCBITaxon:162716,http://purl.obolibrary.org/obo/NCBITaxon_162716,none +16.9548485,NCBITaxon:163127,http://purl.obolibrary.org/obo/NCBITaxon_163127,none +16.9548485,NCBITaxon:163128,http://purl.obolibrary.org/obo/NCBITaxon_163128,none +16.9548485,NCBITaxon:163344,http://purl.obolibrary.org/obo/NCBITaxon_163344,none +16.9548485,NCBITaxon:163347,http://purl.obolibrary.org/obo/NCBITaxon_163347,none +16.9548485,NCBITaxon:163470,http://purl.obolibrary.org/obo/NCBITaxon_163470,none +16.9548485,NCBITaxon:163471,http://purl.obolibrary.org/obo/NCBITaxon_163471,none +16.9548485,NCBITaxon:163715,http://purl.obolibrary.org/obo/NCBITaxon_163715,none +16.9548485,NCBITaxon:163730,http://purl.obolibrary.org/obo/NCBITaxon_163730,none +16.9548485,NCBITaxon:16376,http://purl.obolibrary.org/obo/NCBITaxon_16376,none +16.9548485,NCBITaxon:1639121,http://purl.obolibrary.org/obo/NCBITaxon_1639121,none +16.9548485,NCBITaxon:1644056,http://purl.obolibrary.org/obo/NCBITaxon_1644056,none +16.9548485,NCBITaxon:1644060,http://purl.obolibrary.org/obo/NCBITaxon_1644060,none +16.9548485,NCBITaxon:1644061,http://purl.obolibrary.org/obo/NCBITaxon_1644061,none +16.9548485,NCBITaxon:164646,http://purl.obolibrary.org/obo/NCBITaxon_164646,none +16.9548485,NCBITaxon:164648,http://purl.obolibrary.org/obo/NCBITaxon_164648,none +16.9548485,NCBITaxon:1647999,http://purl.obolibrary.org/obo/NCBITaxon_1647999,none +16.9548485,NCBITaxon:1648014,http://purl.obolibrary.org/obo/NCBITaxon_1648014,none +16.9548485,NCBITaxon:1648015,http://purl.obolibrary.org/obo/NCBITaxon_1648015,none +16.9548485,NCBITaxon:1648025,http://purl.obolibrary.org/obo/NCBITaxon_1648025,none +16.9548485,NCBITaxon:1648035,http://purl.obolibrary.org/obo/NCBITaxon_1648035,none +16.9548485,NCBITaxon:164831,http://purl.obolibrary.org/obo/NCBITaxon_164831,none +16.9548485,NCBITaxon:164858,http://purl.obolibrary.org/obo/NCBITaxon_164858,none +16.9548485,NCBITaxon:164925,http://purl.obolibrary.org/obo/NCBITaxon_164925,none +16.9548485,NCBITaxon:1652550,http://purl.obolibrary.org/obo/NCBITaxon_1652550,none +16.9548485,NCBITaxon:165305,http://purl.obolibrary.org/obo/NCBITaxon_165305,none +16.9548485,NCBITaxon:165440,http://purl.obolibrary.org/obo/NCBITaxon_165440,none +16.9548485,NCBITaxon:165696,http://purl.obolibrary.org/obo/NCBITaxon_165696,none +16.9548485,NCBITaxon:165820,http://purl.obolibrary.org/obo/NCBITaxon_165820,none +16.9548485,NCBITaxon:1659749,http://purl.obolibrary.org/obo/NCBITaxon_1659749,none +16.9548485,NCBITaxon:1659765,http://purl.obolibrary.org/obo/NCBITaxon_1659765,none +16.9548485,NCBITaxon:166009,http://purl.obolibrary.org/obo/NCBITaxon_166009,none +16.9548485,NCBITaxon:16614,http://purl.obolibrary.org/obo/NCBITaxon_16614,none +16.9548485,NCBITaxon:166235,http://purl.obolibrary.org/obo/NCBITaxon_166235,none +16.9548485,NCBITaxon:166261,http://purl.obolibrary.org/obo/NCBITaxon_166261,none +16.9548485,NCBITaxon:166331,http://purl.obolibrary.org/obo/NCBITaxon_166331,none +16.9548485,NCBITaxon:166384,http://purl.obolibrary.org/obo/NCBITaxon_166384,none +16.9548485,NCBITaxon:166781,http://purl.obolibrary.org/obo/NCBITaxon_166781,none +16.9548485,NCBITaxon:166783,http://purl.obolibrary.org/obo/NCBITaxon_166783,none +16.9548485,NCBITaxon:16680,http://purl.obolibrary.org/obo/NCBITaxon_16680,none +16.9548485,NCBITaxon:166840,http://purl.obolibrary.org/obo/NCBITaxon_166840,none +16.9548485,NCBITaxon:166842,http://purl.obolibrary.org/obo/NCBITaxon_166842,none +16.9548485,NCBITaxon:167021,http://purl.obolibrary.org/obo/NCBITaxon_167021,none +16.9548485,NCBITaxon:1670439,http://purl.obolibrary.org/obo/NCBITaxon_1670439,none +16.9548485,NCBITaxon:167128,http://purl.obolibrary.org/obo/NCBITaxon_167128,none +16.9548485,NCBITaxon:167325,http://purl.obolibrary.org/obo/NCBITaxon_167325,none +16.9548485,NCBITaxon:167478,http://purl.obolibrary.org/obo/NCBITaxon_167478,none +16.9548485,NCBITaxon:167493,http://purl.obolibrary.org/obo/NCBITaxon_167493,none +16.9548485,NCBITaxon:16751,http://purl.obolibrary.org/obo/NCBITaxon_16751,none +16.9548485,NCBITaxon:16752,http://purl.obolibrary.org/obo/NCBITaxon_16752,none +16.9548485,NCBITaxon:167634,http://purl.obolibrary.org/obo/NCBITaxon_167634,none +16.9548485,NCBITaxon:167927,http://purl.obolibrary.org/obo/NCBITaxon_167927,none +16.9548485,NCBITaxon:168090,http://purl.obolibrary.org/obo/NCBITaxon_168090,none +16.9548485,NCBITaxon:168100,http://purl.obolibrary.org/obo/NCBITaxon_168100,none +16.9548485,NCBITaxon:168182,http://purl.obolibrary.org/obo/NCBITaxon_168182,none +16.9548485,NCBITaxon:168712,http://purl.obolibrary.org/obo/NCBITaxon_168712,none +16.9548485,NCBITaxon:168716,http://purl.obolibrary.org/obo/NCBITaxon_168716,none +16.9548485,NCBITaxon:168757,http://purl.obolibrary.org/obo/NCBITaxon_168757,none +16.9548485,NCBITaxon:168807,http://purl.obolibrary.org/obo/NCBITaxon_168807,none +16.9548485,NCBITaxon:168927,http://purl.obolibrary.org/obo/NCBITaxon_168927,none +16.9548485,NCBITaxon:168934,http://purl.obolibrary.org/obo/NCBITaxon_168934,none +16.9548485,NCBITaxon:16896,http://purl.obolibrary.org/obo/NCBITaxon_16896,none +16.9548485,NCBITaxon:169255,http://purl.obolibrary.org/obo/NCBITaxon_169255,none +16.9548485,NCBITaxon:169447,http://purl.obolibrary.org/obo/NCBITaxon_169447,none +16.9548485,NCBITaxon:169521,http://purl.obolibrary.org/obo/NCBITaxon_169521,none +16.9548485,NCBITaxon:169632,http://purl.obolibrary.org/obo/NCBITaxon_169632,none +16.9548485,NCBITaxon:169644,http://purl.obolibrary.org/obo/NCBITaxon_169644,none +16.9548485,NCBITaxon:169663,http://purl.obolibrary.org/obo/NCBITaxon_169663,none +16.9548485,NCBITaxon:169700,http://purl.obolibrary.org/obo/NCBITaxon_169700,none +16.9548485,NCBITaxon:169865,http://purl.obolibrary.org/obo/NCBITaxon_169865,none +16.9548485,NCBITaxon:169938,http://purl.obolibrary.org/obo/NCBITaxon_169938,none +16.9548485,NCBITaxon:1699517,http://purl.obolibrary.org/obo/NCBITaxon_1699517,none +16.9548485,NCBITaxon:1699523,http://purl.obolibrary.org/obo/NCBITaxon_1699523,none +16.9548485,NCBITaxon:17047,http://purl.obolibrary.org/obo/NCBITaxon_17047,none +16.9548485,NCBITaxon:1705105,http://purl.obolibrary.org/obo/NCBITaxon_1705105,none +16.9548485,NCBITaxon:170526,http://purl.obolibrary.org/obo/NCBITaxon_170526,none +16.9548485,NCBITaxon:170527,http://purl.obolibrary.org/obo/NCBITaxon_170527,none +16.9548485,NCBITaxon:170896,http://purl.obolibrary.org/obo/NCBITaxon_170896,none +16.9548485,NCBITaxon:170945,http://purl.obolibrary.org/obo/NCBITaxon_170945,none +16.9548485,NCBITaxon:170949,http://purl.obolibrary.org/obo/NCBITaxon_170949,none +16.9548485,NCBITaxon:170974,http://purl.obolibrary.org/obo/NCBITaxon_170974,none +16.9548485,NCBITaxon:170975,http://purl.obolibrary.org/obo/NCBITaxon_170975,none +16.9548485,NCBITaxon:171264,http://purl.obolibrary.org/obo/NCBITaxon_171264,none +16.9548485,NCBITaxon:171414,http://purl.obolibrary.org/obo/NCBITaxon_171414,none +16.9548485,NCBITaxon:171550,http://purl.obolibrary.org/obo/NCBITaxon_171550,none +16.9548485,NCBITaxon:1716,http://purl.obolibrary.org/obo/NCBITaxon_1716,Corynebacterium +16.9548485,NCBITaxon:171899,http://purl.obolibrary.org/obo/NCBITaxon_171899,none +16.9548485,NCBITaxon:172130,http://purl.obolibrary.org/obo/NCBITaxon_172130,none +16.9548485,NCBITaxon:172131,http://purl.obolibrary.org/obo/NCBITaxon_172131,none +16.9548485,NCBITaxon:172297,http://purl.obolibrary.org/obo/NCBITaxon_172297,none +16.9548485,NCBITaxon:172317,http://purl.obolibrary.org/obo/NCBITaxon_172317,none +16.9548485,NCBITaxon:1723665,http://purl.obolibrary.org/obo/NCBITaxon_1723665,none +16.9548485,NCBITaxon:172864,http://purl.obolibrary.org/obo/NCBITaxon_172864,none +16.9548485,NCBITaxon:1728962,http://purl.obolibrary.org/obo/NCBITaxon_1728962,none +16.9548485,NCBITaxon:172907,http://purl.obolibrary.org/obo/NCBITaxon_172907,none +16.9548485,NCBITaxon:172911,http://purl.obolibrary.org/obo/NCBITaxon_172911,none +16.9548485,NCBITaxon:172918,http://purl.obolibrary.org/obo/NCBITaxon_172918,none +16.9548485,NCBITaxon:173078,http://purl.obolibrary.org/obo/NCBITaxon_173078,none +16.9548485,NCBITaxon:1732200,http://purl.obolibrary.org/obo/NCBITaxon_1732200,none +16.9548485,NCBITaxon:173322,http://purl.obolibrary.org/obo/NCBITaxon_173322,none +16.9548485,NCBITaxon:173351,http://purl.obolibrary.org/obo/NCBITaxon_173351,none +16.9548485,NCBITaxon:173387,http://purl.obolibrary.org/obo/NCBITaxon_173387,none +16.9548485,NCBITaxon:173539,http://purl.obolibrary.org/obo/NCBITaxon_173539,none +16.9548485,NCBITaxon:173647,http://purl.obolibrary.org/obo/NCBITaxon_173647,none +16.9548485,NCBITaxon:173684,http://purl.obolibrary.org/obo/NCBITaxon_173684,none +16.9548485,NCBITaxon:174214,http://purl.obolibrary.org/obo/NCBITaxon_174214,none +16.9548485,NCBITaxon:174686,http://purl.obolibrary.org/obo/NCBITaxon_174686,none +16.9548485,NCBITaxon:174815,http://purl.obolibrary.org/obo/NCBITaxon_174815,none +16.9548485,NCBITaxon:1752860,http://purl.obolibrary.org/obo/NCBITaxon_1752860,none +16.9548485,NCBITaxon:175568,http://purl.obolibrary.org/obo/NCBITaxon_175568,none +16.9548485,NCBITaxon:175790,http://purl.obolibrary.org/obo/NCBITaxon_175790,none +16.9548485,NCBITaxon:176044,http://purl.obolibrary.org/obo/NCBITaxon_176044,none +16.9548485,NCBITaxon:1775411,http://purl.obolibrary.org/obo/NCBITaxon_1775411,none +16.9548485,NCBITaxon:1779149,http://purl.obolibrary.org/obo/NCBITaxon_1779149,none +16.9548485,NCBITaxon:1779151,http://purl.obolibrary.org/obo/NCBITaxon_1779151,none +16.9548485,NCBITaxon:1779154,http://purl.obolibrary.org/obo/NCBITaxon_1779154,none +16.9548485,NCBITaxon:1779155,http://purl.obolibrary.org/obo/NCBITaxon_1779155,none +16.9548485,NCBITaxon:1779162,http://purl.obolibrary.org/obo/NCBITaxon_1779162,none +16.9548485,NCBITaxon:178295,http://purl.obolibrary.org/obo/NCBITaxon_178295,none +16.9548485,NCBITaxon:1783234,http://purl.obolibrary.org/obo/NCBITaxon_1783234,none +16.9548485,NCBITaxon:178836,http://purl.obolibrary.org/obo/NCBITaxon_178836,none +16.9548485,NCBITaxon:178837,http://purl.obolibrary.org/obo/NCBITaxon_178837,none +16.9548485,NCBITaxon:178838,http://purl.obolibrary.org/obo/NCBITaxon_178838,none +16.9548485,NCBITaxon:179104,http://purl.obolibrary.org/obo/NCBITaxon_179104,none +16.9548485,NCBITaxon:180118,http://purl.obolibrary.org/obo/NCBITaxon_180118,none +16.9548485,NCBITaxon:1802340,http://purl.obolibrary.org/obo/NCBITaxon_1802340,none +16.9548485,NCBITaxon:180246,http://purl.obolibrary.org/obo/NCBITaxon_180246,none +16.9548485,NCBITaxon:1802790,http://purl.obolibrary.org/obo/NCBITaxon_1802790,none +16.9548485,NCBITaxon:180399,http://purl.obolibrary.org/obo/NCBITaxon_180399,none +16.9548485,NCBITaxon:1804621,http://purl.obolibrary.org/obo/NCBITaxon_1804621,none +16.9548485,NCBITaxon:1804622,http://purl.obolibrary.org/obo/NCBITaxon_1804622,none +16.9548485,NCBITaxon:181082,http://purl.obolibrary.org/obo/NCBITaxon_181082,none +16.9548485,NCBITaxon:181084,http://purl.obolibrary.org/obo/NCBITaxon_181084,none +16.9548485,NCBITaxon:181211,http://purl.obolibrary.org/obo/NCBITaxon_181211,none +16.9548485,NCBITaxon:181212,http://purl.obolibrary.org/obo/NCBITaxon_181212,none +16.9548485,NCBITaxon:1813,http://purl.obolibrary.org/obo/NCBITaxon_1813,none +16.9548485,NCBITaxon:181858,http://purl.obolibrary.org/obo/NCBITaxon_181858,none +16.9548485,NCBITaxon:1819629,http://purl.obolibrary.org/obo/NCBITaxon_1819629,none +16.9548485,NCBITaxon:182083,http://purl.obolibrary.org/obo/NCBITaxon_182083,none +16.9548485,NCBITaxon:182229,http://purl.obolibrary.org/obo/NCBITaxon_182229,none +16.9548485,NCBITaxon:182371,http://purl.obolibrary.org/obo/NCBITaxon_182371,none +16.9548485,NCBITaxon:182801,http://purl.obolibrary.org/obo/NCBITaxon_182801,none +16.9548485,NCBITaxon:182802,http://purl.obolibrary.org/obo/NCBITaxon_182802,none +16.9548485,NCBITaxon:182985,http://purl.obolibrary.org/obo/NCBITaxon_182985,none +16.9548485,NCBITaxon:1831,http://purl.obolibrary.org/obo/NCBITaxon_1831,none +16.9548485,NCBITaxon:183190,http://purl.obolibrary.org/obo/NCBITaxon_183190,none +16.9548485,NCBITaxon:183218,http://purl.obolibrary.org/obo/NCBITaxon_183218,none +16.9548485,NCBITaxon:183407,http://purl.obolibrary.org/obo/NCBITaxon_183407,none +16.9548485,NCBITaxon:183652,http://purl.obolibrary.org/obo/NCBITaxon_183652,none +16.9548485,NCBITaxon:183653,http://purl.obolibrary.org/obo/NCBITaxon_183653,none +16.9548485,NCBITaxon:183719,http://purl.obolibrary.org/obo/NCBITaxon_183719,none +16.9548485,NCBITaxon:183925,http://purl.obolibrary.org/obo/NCBITaxon_183925,none +16.9548485,NCBITaxon:183939,http://purl.obolibrary.org/obo/NCBITaxon_183939,none +16.9548485,NCBITaxon:184162,http://purl.obolibrary.org/obo/NCBITaxon_184162,none +16.9548485,NCBITaxon:184169,http://purl.obolibrary.org/obo/NCBITaxon_184169,none +16.9548485,NCBITaxon:184208,http://purl.obolibrary.org/obo/NCBITaxon_184208,none +16.9548485,NCBITaxon:184610,http://purl.obolibrary.org/obo/NCBITaxon_184610,none +16.9548485,NCBITaxon:185152,http://purl.obolibrary.org/obo/NCBITaxon_185152,none +16.9548485,NCBITaxon:185579,http://purl.obolibrary.org/obo/NCBITaxon_185579,none +16.9548485,NCBITaxon:185580,http://purl.obolibrary.org/obo/NCBITaxon_185580,none +16.9548485,NCBITaxon:185692,http://purl.obolibrary.org/obo/NCBITaxon_185692,none +16.9548485,NCBITaxon:185694,http://purl.obolibrary.org/obo/NCBITaxon_185694,none +16.9548485,NCBITaxon:185751,http://purl.obolibrary.org/obo/NCBITaxon_185751,none +16.9548485,NCBITaxon:185756,http://purl.obolibrary.org/obo/NCBITaxon_185756,none +16.9548485,NCBITaxon:185810,http://purl.obolibrary.org/obo/NCBITaxon_185810,none +16.9548485,NCBITaxon:185816,http://purl.obolibrary.org/obo/NCBITaxon_185816,none +16.9548485,NCBITaxon:185880,http://purl.obolibrary.org/obo/NCBITaxon_185880,none +16.9548485,NCBITaxon:185896,http://purl.obolibrary.org/obo/NCBITaxon_185896,none +16.9548485,NCBITaxon:185902,http://purl.obolibrary.org/obo/NCBITaxon_185902,none +16.9548485,NCBITaxon:186029,http://purl.obolibrary.org/obo/NCBITaxon_186029,none +16.9548485,NCBITaxon:186187,http://purl.obolibrary.org/obo/NCBITaxon_186187,none +16.9548485,NCBITaxon:186272,http://purl.obolibrary.org/obo/NCBITaxon_186272,none +16.9548485,NCBITaxon:186332,http://purl.obolibrary.org/obo/NCBITaxon_186332,none +16.9548485,NCBITaxon:186333,http://purl.obolibrary.org/obo/NCBITaxon_186333,none +16.9548485,NCBITaxon:186540,http://purl.obolibrary.org/obo/NCBITaxon_186540,Sudan ebolavirus +16.9548485,NCBITaxon:186614,http://purl.obolibrary.org/obo/NCBITaxon_186614,none +16.9548485,NCBITaxon:186642,http://purl.obolibrary.org/obo/NCBITaxon_186642,none +16.9548485,NCBITaxon:186643,http://purl.obolibrary.org/obo/NCBITaxon_186643,none +16.9548485,NCBITaxon:186665,http://purl.obolibrary.org/obo/NCBITaxon_186665,none +16.9548485,NCBITaxon:186666,http://purl.obolibrary.org/obo/NCBITaxon_186666,none +16.9548485,NCBITaxon:1866852,http://purl.obolibrary.org/obo/NCBITaxon_1866852,none +16.9548485,NCBITaxon:186771,http://purl.obolibrary.org/obo/NCBITaxon_186771,none +16.9548485,NCBITaxon:186782,http://purl.obolibrary.org/obo/NCBITaxon_186782,none +16.9548485,NCBITaxon:186807,http://purl.obolibrary.org/obo/NCBITaxon_186807,none +16.9548485,NCBITaxon:186814,http://purl.obolibrary.org/obo/NCBITaxon_186814,none +16.9548485,NCBITaxon:1871466,http://purl.obolibrary.org/obo/NCBITaxon_1871466,none +16.9548485,NCBITaxon:187213,http://purl.obolibrary.org/obo/NCBITaxon_187213,none +16.9548485,NCBITaxon:187348,http://purl.obolibrary.org/obo/NCBITaxon_187348,none +16.9548485,NCBITaxon:1876,http://purl.obolibrary.org/obo/NCBITaxon_1876,none +16.9548485,NCBITaxon:187978,http://purl.obolibrary.org/obo/NCBITaxon_187978,none +16.9548485,NCBITaxon:188087,http://purl.obolibrary.org/obo/NCBITaxon_188087,none +16.9548485,NCBITaxon:1884454,http://purl.obolibrary.org/obo/NCBITaxon_1884454,none +16.9548485,NCBITaxon:1884640,http://purl.obolibrary.org/obo/NCBITaxon_1884640,none +16.9548485,NCBITaxon:188478,http://purl.obolibrary.org/obo/NCBITaxon_188478,none +16.9548485,NCBITaxon:188550,http://purl.obolibrary.org/obo/NCBITaxon_188550,Raphignathae +16.9548485,NCBITaxon:188703,http://purl.obolibrary.org/obo/NCBITaxon_188703,none +16.9548485,NCBITaxon:188763,http://purl.obolibrary.org/obo/NCBITaxon_188763,none +16.9548485,NCBITaxon:188930,http://purl.obolibrary.org/obo/NCBITaxon_188930,none +16.9548485,NCBITaxon:1890428,http://purl.obolibrary.org/obo/NCBITaxon_1890428,none +16.9548485,NCBITaxon:1890432,http://purl.obolibrary.org/obo/NCBITaxon_1890432,none +16.9548485,NCBITaxon:1891762,http://purl.obolibrary.org/obo/NCBITaxon_1891762,Human polyomavirus 1 +16.9548485,NCBITaxon:1891763,http://purl.obolibrary.org/obo/NCBITaxon_1891763,none +16.9548485,NCBITaxon:1891765,http://purl.obolibrary.org/obo/NCBITaxon_1891765,none +16.9548485,NCBITaxon:1892252,http://purl.obolibrary.org/obo/NCBITaxon_1892252,none +16.9548485,NCBITaxon:189256,http://purl.obolibrary.org/obo/NCBITaxon_189256,none +16.9548485,NCBITaxon:189258,http://purl.obolibrary.org/obo/NCBITaxon_189258,none +16.9548485,NCBITaxon:189314,http://purl.obolibrary.org/obo/NCBITaxon_189314,none +16.9548485,NCBITaxon:189330,http://purl.obolibrary.org/obo/NCBITaxon_189330,none +16.9548485,NCBITaxon:189641,http://purl.obolibrary.org/obo/NCBITaxon_189641,none +16.9548485,NCBITaxon:189791,http://purl.obolibrary.org/obo/NCBITaxon_189791,none +16.9548485,NCBITaxon:1898022,http://purl.obolibrary.org/obo/NCBITaxon_1898022,none +16.9548485,NCBITaxon:189919,http://purl.obolibrary.org/obo/NCBITaxon_189919,none +16.9548485,NCBITaxon:190064,http://purl.obolibrary.org/obo/NCBITaxon_190064,none +16.9548485,NCBITaxon:190065,http://purl.obolibrary.org/obo/NCBITaxon_190065,none +16.9548485,NCBITaxon:19027,http://purl.obolibrary.org/obo/NCBITaxon_19027,none +16.9548485,NCBITaxon:190276,http://purl.obolibrary.org/obo/NCBITaxon_190276,none +16.9548485,NCBITaxon:1903410,http://purl.obolibrary.org/obo/NCBITaxon_1903410,Pectobacteriaceae +16.9548485,NCBITaxon:190563,http://purl.obolibrary.org/obo/NCBITaxon_190563,none +16.9548485,NCBITaxon:190564,http://purl.obolibrary.org/obo/NCBITaxon_190564,none +16.9548485,NCBITaxon:1908689,http://purl.obolibrary.org/obo/NCBITaxon_1908689,none +16.9548485,NCBITaxon:1908796,http://purl.obolibrary.org/obo/NCBITaxon_1908796,none +16.9548485,NCBITaxon:1908800,http://purl.obolibrary.org/obo/NCBITaxon_1908800,none +16.9548485,NCBITaxon:191,http://purl.obolibrary.org/obo/NCBITaxon_191,none +16.9548485,NCBITaxon:191069,http://purl.obolibrary.org/obo/NCBITaxon_191069,none +16.9548485,NCBITaxon:1910950,http://purl.obolibrary.org/obo/NCBITaxon_1910950,none +16.9548485,NCBITaxon:1910954,http://purl.obolibrary.org/obo/NCBITaxon_1910954,none +16.9548485,NCBITaxon:1910975,http://purl.obolibrary.org/obo/NCBITaxon_1910975,none +16.9548485,NCBITaxon:1910993,http://purl.obolibrary.org/obo/NCBITaxon_1910993,none +16.9548485,NCBITaxon:1910999,http://purl.obolibrary.org/obo/NCBITaxon_1910999,none +16.9548485,NCBITaxon:1911006,http://purl.obolibrary.org/obo/NCBITaxon_1911006,none +16.9548485,NCBITaxon:1911603,http://purl.obolibrary.org/obo/NCBITaxon_1911603,none +16.9548485,NCBITaxon:1911605,http://purl.obolibrary.org/obo/NCBITaxon_1911605,none +16.9548485,NCBITaxon:191288,http://purl.obolibrary.org/obo/NCBITaxon_191288,none +16.9548485,NCBITaxon:191289,http://purl.obolibrary.org/obo/NCBITaxon_191289,none +16.9548485,NCBITaxon:1913651,http://purl.obolibrary.org/obo/NCBITaxon_1913651,none +16.9548485,NCBITaxon:1914019,http://purl.obolibrary.org/obo/NCBITaxon_1914019,none +16.9548485,NCBITaxon:1914293,http://purl.obolibrary.org/obo/NCBITaxon_1914293,none +16.9548485,NCBITaxon:1914295,http://purl.obolibrary.org/obo/NCBITaxon_1914295,none +16.9548485,NCBITaxon:191870,http://purl.obolibrary.org/obo/NCBITaxon_191870,none +16.9548485,NCBITaxon:1920660,http://purl.obolibrary.org/obo/NCBITaxon_1920660,none +16.9548485,NCBITaxon:1920753,http://purl.obolibrary.org/obo/NCBITaxon_1920753,none +16.9548485,NCBITaxon:1920755,http://purl.obolibrary.org/obo/NCBITaxon_1920755,none +16.9548485,NCBITaxon:1920860,http://purl.obolibrary.org/obo/NCBITaxon_1920860,none +16.9548485,NCBITaxon:1920861,http://purl.obolibrary.org/obo/NCBITaxon_1920861,none +16.9548485,NCBITaxon:1921004,http://purl.obolibrary.org/obo/NCBITaxon_1921004,none +16.9548485,NCBITaxon:1921407,http://purl.obolibrary.org/obo/NCBITaxon_1921407,none +16.9548485,NCBITaxon:1921411,http://purl.obolibrary.org/obo/NCBITaxon_1921411,none +16.9548485,NCBITaxon:1921433,http://purl.obolibrary.org/obo/NCBITaxon_1921433,none +16.9548485,NCBITaxon:1921546,http://purl.obolibrary.org/obo/NCBITaxon_1921546,none +16.9548485,NCBITaxon:1921547,http://purl.obolibrary.org/obo/NCBITaxon_1921547,none +16.9548485,NCBITaxon:192380,http://purl.obolibrary.org/obo/NCBITaxon_192380,none +16.9548485,NCBITaxon:192381,http://purl.obolibrary.org/obo/NCBITaxon_192381,none +16.9548485,NCBITaxon:192413,http://purl.obolibrary.org/obo/NCBITaxon_192413,none +16.9548485,NCBITaxon:192415,http://purl.obolibrary.org/obo/NCBITaxon_192415,none +16.9548485,NCBITaxon:192444,http://purl.obolibrary.org/obo/NCBITaxon_192444,none +16.9548485,NCBITaxon:1925802,http://purl.obolibrary.org/obo/NCBITaxon_1925802,none +16.9548485,NCBITaxon:1925803,http://purl.obolibrary.org/obo/NCBITaxon_1925803,none +16.9548485,NCBITaxon:1927082,http://purl.obolibrary.org/obo/NCBITaxon_1927082,none +16.9548485,NCBITaxon:1927096,http://purl.obolibrary.org/obo/NCBITaxon_1927096,none +16.9548485,NCBITaxon:192847,http://purl.obolibrary.org/obo/NCBITaxon_192847,none +16.9548485,NCBITaxon:192852,http://purl.obolibrary.org/obo/NCBITaxon_192852,none +16.9548485,NCBITaxon:192944,http://purl.obolibrary.org/obo/NCBITaxon_192944,none +16.9548485,NCBITaxon:1931080,http://purl.obolibrary.org/obo/NCBITaxon_1931080,none +16.9548485,NCBITaxon:193234,http://purl.obolibrary.org/obo/NCBITaxon_193234,none +16.9548485,NCBITaxon:193297,http://purl.obolibrary.org/obo/NCBITaxon_193297,none +16.9548485,NCBITaxon:1933183,http://purl.obolibrary.org/obo/NCBITaxon_1933183,none +16.9548485,NCBITaxon:193351,http://purl.obolibrary.org/obo/NCBITaxon_193351,none +16.9548485,NCBITaxon:194286,http://purl.obolibrary.org/obo/NCBITaxon_194286,none +16.9548485,NCBITaxon:194443,http://purl.obolibrary.org/obo/NCBITaxon_194443,none +16.9548485,NCBITaxon:194550,http://purl.obolibrary.org/obo/NCBITaxon_194550,none +16.9548485,NCBITaxon:1945560,http://purl.obolibrary.org/obo/NCBITaxon_1945560,none +16.9548485,NCBITaxon:1945561,http://purl.obolibrary.org/obo/NCBITaxon_1945561,none +16.9548485,NCBITaxon:1945562,http://purl.obolibrary.org/obo/NCBITaxon_1945562,none +16.9548485,NCBITaxon:1945563,http://purl.obolibrary.org/obo/NCBITaxon_1945563,none +16.9548485,NCBITaxon:195291,http://purl.obolibrary.org/obo/NCBITaxon_195291,none +16.9548485,NCBITaxon:1954379,http://purl.obolibrary.org/obo/NCBITaxon_1954379,none +16.9548485,NCBITaxon:195477,http://purl.obolibrary.org/obo/NCBITaxon_195477,none +16.9548485,NCBITaxon:195735,http://purl.obolibrary.org/obo/NCBITaxon_195735,none +16.9548485,NCBITaxon:196095,http://purl.obolibrary.org/obo/NCBITaxon_196095,none +16.9548485,NCBITaxon:1961148,http://purl.obolibrary.org/obo/NCBITaxon_1961148,none +16.9548485,NCBITaxon:1961150,http://purl.obolibrary.org/obo/NCBITaxon_1961150,none +16.9548485,NCBITaxon:1963087,http://purl.obolibrary.org/obo/NCBITaxon_1963087,none +16.9548485,NCBITaxon:1963271,http://purl.obolibrary.org/obo/NCBITaxon_1963271,none +16.9548485,NCBITaxon:1964463,http://purl.obolibrary.org/obo/NCBITaxon_1964463,none +16.9548485,NCBITaxon:196477,http://purl.obolibrary.org/obo/NCBITaxon_196477,none +16.9548485,NCBITaxon:1965385,http://purl.obolibrary.org/obo/NCBITaxon_1965385,none +16.9548485,NCBITaxon:1970189,http://purl.obolibrary.org/obo/NCBITaxon_1970189,none +16.9548485,NCBITaxon:197112,http://purl.obolibrary.org/obo/NCBITaxon_197112,none +16.9548485,NCBITaxon:197159,http://purl.obolibrary.org/obo/NCBITaxon_197159,none +16.9548485,NCBITaxon:1972571,http://purl.obolibrary.org/obo/NCBITaxon_1972571,none +16.9548485,NCBITaxon:1972579,http://purl.obolibrary.org/obo/NCBITaxon_1972579,none +16.9548485,NCBITaxon:1972597,http://purl.obolibrary.org/obo/NCBITaxon_1972597,none +16.9548485,NCBITaxon:1972616,http://purl.obolibrary.org/obo/NCBITaxon_1972616,none +16.9548485,NCBITaxon:1972619,http://purl.obolibrary.org/obo/NCBITaxon_1972619,none +16.9548485,NCBITaxon:197780,http://purl.obolibrary.org/obo/NCBITaxon_197780,none +16.9548485,NCBITaxon:1978538,http://purl.obolibrary.org/obo/NCBITaxon_1978538,none +16.9548485,NCBITaxon:1979751,http://purl.obolibrary.org/obo/NCBITaxon_1979751,none +16.9548485,NCBITaxon:1980455,http://purl.obolibrary.org/obo/NCBITaxon_1980455,none +16.9548485,NCBITaxon:1980466,http://purl.obolibrary.org/obo/NCBITaxon_1980466,none +16.9548485,NCBITaxon:1980473,http://purl.obolibrary.org/obo/NCBITaxon_1980473,none +16.9548485,NCBITaxon:1980484,http://purl.obolibrary.org/obo/NCBITaxon_1980484,none +16.9548485,NCBITaxon:1980488,http://purl.obolibrary.org/obo/NCBITaxon_1980488,none +16.9548485,NCBITaxon:1980495,http://purl.obolibrary.org/obo/NCBITaxon_1980495,none +16.9548485,NCBITaxon:1980520,http://purl.obolibrary.org/obo/NCBITaxon_1980520,none +16.9548485,NCBITaxon:1980533,http://purl.obolibrary.org/obo/NCBITaxon_1980533,none +16.9548485,NCBITaxon:1980535,http://purl.obolibrary.org/obo/NCBITaxon_1980535,none +16.9548485,NCBITaxon:1980546,http://purl.obolibrary.org/obo/NCBITaxon_1980546,none +16.9548485,NCBITaxon:1980918,http://purl.obolibrary.org/obo/NCBITaxon_1980918,none +16.9548485,NCBITaxon:1982581,http://purl.obolibrary.org/obo/NCBITaxon_1982581,none +16.9548485,NCBITaxon:1985285,http://purl.obolibrary.org/obo/NCBITaxon_1985285,none +16.9548485,NCBITaxon:1985354,http://purl.obolibrary.org/obo/NCBITaxon_1985354,none +16.9548485,NCBITaxon:1985363,http://purl.obolibrary.org/obo/NCBITaxon_1985363,none +16.9548485,NCBITaxon:1985384,http://purl.obolibrary.org/obo/NCBITaxon_1985384,none +16.9548485,NCBITaxon:1985406,http://purl.obolibrary.org/obo/NCBITaxon_1985406,none +16.9548485,NCBITaxon:1985695,http://purl.obolibrary.org/obo/NCBITaxon_1985695,none +16.9548485,NCBITaxon:1985708,http://purl.obolibrary.org/obo/NCBITaxon_1985708,none +16.9548485,NCBITaxon:1986024,http://purl.obolibrary.org/obo/NCBITaxon_1986024,none +16.9548485,NCBITaxon:1987013,http://purl.obolibrary.org/obo/NCBITaxon_1987013,none +16.9548485,NCBITaxon:198722,http://purl.obolibrary.org/obo/NCBITaxon_198722,none +16.9548485,NCBITaxon:198723,http://purl.obolibrary.org/obo/NCBITaxon_198723,none +16.9548485,NCBITaxon:198794,http://purl.obolibrary.org/obo/NCBITaxon_198794,none +16.9548485,NCBITaxon:1987989,http://purl.obolibrary.org/obo/NCBITaxon_1987989,none +16.9548485,NCBITaxon:1988037,http://purl.obolibrary.org/obo/NCBITaxon_1988037,none +16.9548485,NCBITaxon:198833,http://purl.obolibrary.org/obo/NCBITaxon_198833,none +16.9548485,NCBITaxon:199361,http://purl.obolibrary.org/obo/NCBITaxon_199361,none +16.9548485,NCBITaxon:1993639,http://purl.obolibrary.org/obo/NCBITaxon_1993639,none +16.9548485,NCBITaxon:2003651,http://purl.obolibrary.org/obo/NCBITaxon_2003651,none +16.9548485,NCBITaxon:200402,http://purl.obolibrary.org/obo/NCBITaxon_200402,none +16.9548485,NCBITaxon:2005520,http://purl.obolibrary.org/obo/NCBITaxon_2005520,none +16.9548485,NCBITaxon:2005699,http://purl.obolibrary.org/obo/NCBITaxon_2005699,none +16.9548485,NCBITaxon:2005700,http://purl.obolibrary.org/obo/NCBITaxon_2005700,none +16.9548485,NCBITaxon:200604,http://purl.obolibrary.org/obo/NCBITaxon_200604,none +16.9548485,NCBITaxon:200666,http://purl.obolibrary.org/obo/NCBITaxon_200666,none +16.9548485,NCBITaxon:200677,http://purl.obolibrary.org/obo/NCBITaxon_200677,none +16.9548485,NCBITaxon:2009276,http://purl.obolibrary.org/obo/NCBITaxon_2009276,none +16.9548485,NCBITaxon:201006,http://purl.obolibrary.org/obo/NCBITaxon_201006,none +16.9548485,NCBITaxon:2011082,http://purl.obolibrary.org/obo/NCBITaxon_2011082,none +16.9548485,NCBITaxon:201333,http://purl.obolibrary.org/obo/NCBITaxon_201333,none +16.9548485,NCBITaxon:201430,http://purl.obolibrary.org/obo/NCBITaxon_201430,none +16.9548485,NCBITaxon:201431,http://purl.obolibrary.org/obo/NCBITaxon_201431,none +16.9548485,NCBITaxon:201437,http://purl.obolibrary.org/obo/NCBITaxon_201437,none +16.9548485,NCBITaxon:201438,http://purl.obolibrary.org/obo/NCBITaxon_201438,none +16.9548485,NCBITaxon:201489,http://purl.obolibrary.org/obo/NCBITaxon_201489,none +16.9548485,NCBITaxon:2014984,http://purl.obolibrary.org/obo/NCBITaxon_2014984,none +16.9548485,NCBITaxon:2017693,http://purl.obolibrary.org/obo/NCBITaxon_2017693,none +16.9548485,NCBITaxon:202273,http://purl.obolibrary.org/obo/NCBITaxon_202273,none +16.9548485,NCBITaxon:2024004,http://purl.obolibrary.org/obo/NCBITaxon_2024004,none +16.9548485,NCBITaxon:2024747,http://purl.obolibrary.org/obo/NCBITaxon_2024747,none +16.9548485,NCBITaxon:202496,http://purl.obolibrary.org/obo/NCBITaxon_202496,none +16.9548485,NCBITaxon:2028207,http://purl.obolibrary.org/obo/NCBITaxon_2028207,none +16.9548485,NCBITaxon:2028214,http://purl.obolibrary.org/obo/NCBITaxon_2028214,none +16.9548485,NCBITaxon:203015,http://purl.obolibrary.org/obo/NCBITaxon_203015,none +16.9548485,NCBITaxon:2030446,http://purl.obolibrary.org/obo/NCBITaxon_2030446,none +16.9548485,NCBITaxon:2031165,http://purl.obolibrary.org/obo/NCBITaxon_2031165,none +16.9548485,NCBITaxon:204037,http://purl.obolibrary.org/obo/NCBITaxon_204037,none +16.9548485,NCBITaxon:204073,http://purl.obolibrary.org/obo/NCBITaxon_204073,none +16.9548485,NCBITaxon:204090,http://purl.obolibrary.org/obo/NCBITaxon_204090,none +16.9548485,NCBITaxon:204122,http://purl.obolibrary.org/obo/NCBITaxon_204122,none +16.9548485,NCBITaxon:2043421,http://purl.obolibrary.org/obo/NCBITaxon_2043421,none +16.9548485,NCBITaxon:204458,http://purl.obolibrary.org/obo/NCBITaxon_204458,none +16.9548485,NCBITaxon:2044735,http://purl.obolibrary.org/obo/NCBITaxon_2044735,none +16.9548485,NCBITaxon:2045300,http://purl.obolibrary.org/obo/NCBITaxon_2045300,none +16.9548485,NCBITaxon:20483,http://purl.obolibrary.org/obo/NCBITaxon_20483,none +16.9548485,NCBITaxon:204922,http://purl.obolibrary.org/obo/NCBITaxon_204922,none +16.9548485,NCBITaxon:205124,http://purl.obolibrary.org/obo/NCBITaxon_205124,none +16.9548485,NCBITaxon:205567,http://purl.obolibrary.org/obo/NCBITaxon_205567,none +16.9548485,NCBITaxon:205741,http://purl.obolibrary.org/obo/NCBITaxon_205741,none +16.9548485,NCBITaxon:205935,http://purl.obolibrary.org/obo/NCBITaxon_205935,none +16.9548485,NCBITaxon:2059720,http://purl.obolibrary.org/obo/NCBITaxon_2059720,none +16.9548485,NCBITaxon:2060,http://purl.obolibrary.org/obo/NCBITaxon_2060,none +16.9548485,NCBITaxon:2060084,http://purl.obolibrary.org/obo/NCBITaxon_2060084,none +16.9548485,NCBITaxon:206122,http://purl.obolibrary.org/obo/NCBITaxon_206122,none +16.9548485,NCBITaxon:206152,http://purl.obolibrary.org/obo/NCBITaxon_206152,none +16.9548485,NCBITaxon:206153,http://purl.obolibrary.org/obo/NCBITaxon_206153,none +16.9548485,NCBITaxon:206350,http://purl.obolibrary.org/obo/NCBITaxon_206350,none +16.9548485,NCBITaxon:206376,http://purl.obolibrary.org/obo/NCBITaxon_206376,none +16.9548485,NCBITaxon:206377,http://purl.obolibrary.org/obo/NCBITaxon_206377,none +16.9548485,NCBITaxon:2072364,http://purl.obolibrary.org/obo/NCBITaxon_2072364,none +16.9548485,NCBITaxon:2072739,http://purl.obolibrary.org/obo/NCBITaxon_2072739,none +16.9548485,NCBITaxon:208293,http://purl.obolibrary.org/obo/NCBITaxon_208293,none +16.9548485,NCBITaxon:208513,http://purl.obolibrary.org/obo/NCBITaxon_208513,none +16.9548485,NCBITaxon:2086,http://purl.obolibrary.org/obo/NCBITaxon_2086,none +16.9548485,NCBITaxon:208663,http://purl.obolibrary.org/obo/NCBITaxon_208663,none +16.9548485,NCBITaxon:208895,http://purl.obolibrary.org/obo/NCBITaxon_208895,none +16.9548485,NCBITaxon:208899,http://purl.obolibrary.org/obo/NCBITaxon_208899,none +16.9548485,NCBITaxon:209055,http://purl.obolibrary.org/obo/NCBITaxon_209055,none +16.9548485,NCBITaxon:209056,http://purl.obolibrary.org/obo/NCBITaxon_209056,none +16.9548485,NCBITaxon:209067,http://purl.obolibrary.org/obo/NCBITaxon_209067,none +16.9548485,NCBITaxon:209069,http://purl.obolibrary.org/obo/NCBITaxon_209069,none +16.9548485,NCBITaxon:209122,http://purl.obolibrary.org/obo/NCBITaxon_209122,none +16.9548485,NCBITaxon:209150,http://purl.obolibrary.org/obo/NCBITaxon_209150,none +16.9548485,NCBITaxon:209286,http://purl.obolibrary.org/obo/NCBITaxon_209286,none +16.9548485,NCBITaxon:209663,http://purl.obolibrary.org/obo/NCBITaxon_209663,none +16.9548485,NCBITaxon:209678,http://purl.obolibrary.org/obo/NCBITaxon_209678,none +16.9548485,NCBITaxon:209983,http://purl.obolibrary.org/obo/NCBITaxon_209983,none +16.9548485,NCBITaxon:210572,http://purl.obolibrary.org/obo/NCBITaxon_210572,none +16.9548485,NCBITaxon:210587,http://purl.obolibrary.org/obo/NCBITaxon_210587,none +16.9548485,NCBITaxon:210608,http://purl.obolibrary.org/obo/NCBITaxon_210608,none +16.9548485,NCBITaxon:210609,http://purl.obolibrary.org/obo/NCBITaxon_210609,none +16.9548485,NCBITaxon:210633,http://purl.obolibrary.org/obo/NCBITaxon_210633,none +16.9548485,NCBITaxon:21101,http://purl.obolibrary.org/obo/NCBITaxon_21101,none +16.9548485,NCBITaxon:211203,http://purl.obolibrary.org/obo/NCBITaxon_211203,none +16.9548485,NCBITaxon:211204,http://purl.obolibrary.org/obo/NCBITaxon_211204,none +16.9548485,NCBITaxon:211401,http://purl.obolibrary.org/obo/NCBITaxon_211401,none +16.9548485,NCBITaxon:211587,http://purl.obolibrary.org/obo/NCBITaxon_211587,none +16.9548485,NCBITaxon:211923,http://purl.obolibrary.org/obo/NCBITaxon_211923,none +16.9548485,NCBITaxon:211924,http://purl.obolibrary.org/obo/NCBITaxon_211924,none +16.9548485,NCBITaxon:212219,http://purl.obolibrary.org/obo/NCBITaxon_212219,none +16.9548485,NCBITaxon:212320,http://purl.obolibrary.org/obo/NCBITaxon_212320,none +16.9548485,NCBITaxon:212424,http://purl.obolibrary.org/obo/NCBITaxon_212424,none +16.9548485,NCBITaxon:213113,http://purl.obolibrary.org/obo/NCBITaxon_213113,none +16.9548485,NCBITaxon:213119,http://purl.obolibrary.org/obo/NCBITaxon_213119,none +16.9548485,NCBITaxon:213121,http://purl.obolibrary.org/obo/NCBITaxon_213121,none +16.9548485,NCBITaxon:213386,http://purl.obolibrary.org/obo/NCBITaxon_213386,none +16.9548485,NCBITaxon:213387,http://purl.obolibrary.org/obo/NCBITaxon_213387,none +16.9548485,NCBITaxon:213422,http://purl.obolibrary.org/obo/NCBITaxon_213422,none +16.9548485,NCBITaxon:213598,http://purl.obolibrary.org/obo/NCBITaxon_213598,none +16.9548485,NCBITaxon:214002,http://purl.obolibrary.org/obo/NCBITaxon_214002,none +16.9548485,NCBITaxon:214068,http://purl.obolibrary.org/obo/NCBITaxon_214068,none +16.9548485,NCBITaxon:214693,http://purl.obolibrary.org/obo/NCBITaxon_214693,none +16.9548485,NCBITaxon:214908,http://purl.obolibrary.org/obo/NCBITaxon_214908,none +16.9548485,NCBITaxon:214909,http://purl.obolibrary.org/obo/NCBITaxon_214909,none +16.9548485,NCBITaxon:214929,http://purl.obolibrary.org/obo/NCBITaxon_214929,none +16.9548485,NCBITaxon:214933,http://purl.obolibrary.org/obo/NCBITaxon_214933,none +16.9548485,NCBITaxon:2153468,http://purl.obolibrary.org/obo/NCBITaxon_2153468,none +16.9548485,NCBITaxon:215399,http://purl.obolibrary.org/obo/NCBITaxon_215399,none +16.9548485,NCBITaxon:215680,http://purl.obolibrary.org/obo/NCBITaxon_215680,none +16.9548485,NCBITaxon:21571,http://purl.obolibrary.org/obo/NCBITaxon_21571,none +16.9548485,NCBITaxon:2158,http://purl.obolibrary.org/obo/NCBITaxon_2158,none +16.9548485,NCBITaxon:2159,http://purl.obolibrary.org/obo/NCBITaxon_2159,none +16.9548485,NCBITaxon:215988,http://purl.obolibrary.org/obo/NCBITaxon_215988,none +16.9548485,NCBITaxon:216109,http://purl.obolibrary.org/obo/NCBITaxon_216109,none +16.9548485,NCBITaxon:216110,http://purl.obolibrary.org/obo/NCBITaxon_216110,none +16.9548485,NCBITaxon:2161741,http://purl.obolibrary.org/obo/NCBITaxon_2161741,none +16.9548485,NCBITaxon:21621,http://purl.obolibrary.org/obo/NCBITaxon_21621,none +16.9548485,NCBITaxon:216281,http://purl.obolibrary.org/obo/NCBITaxon_216281,none +16.9548485,NCBITaxon:216285,http://purl.obolibrary.org/obo/NCBITaxon_216285,Trochoidea +16.9548485,NCBITaxon:216303,http://purl.obolibrary.org/obo/NCBITaxon_216303,none +16.9548485,NCBITaxon:216335,http://purl.obolibrary.org/obo/NCBITaxon_216335,none +16.9548485,NCBITaxon:216722,http://purl.obolibrary.org/obo/NCBITaxon_216722,none +16.9548485,NCBITaxon:216770,http://purl.obolibrary.org/obo/NCBITaxon_216770,none +16.9548485,NCBITaxon:216772,http://purl.obolibrary.org/obo/NCBITaxon_216772,none +16.9548485,NCBITaxon:216779,http://purl.obolibrary.org/obo/NCBITaxon_216779,none +16.9548485,NCBITaxon:216795,http://purl.obolibrary.org/obo/NCBITaxon_216795,none +16.9548485,NCBITaxon:2169529,http://purl.obolibrary.org/obo/NCBITaxon_2169529,none +16.9548485,NCBITaxon:2169531,http://purl.obolibrary.org/obo/NCBITaxon_2169531,none +16.9548485,NCBITaxon:2169536,http://purl.obolibrary.org/obo/NCBITaxon_2169536,none +16.9548485,NCBITaxon:2169570,http://purl.obolibrary.org/obo/NCBITaxon_2169570,none +16.9548485,NCBITaxon:2169646,http://purl.obolibrary.org/obo/NCBITaxon_2169646,none +16.9548485,NCBITaxon:2169661,http://purl.obolibrary.org/obo/NCBITaxon_2169661,none +16.9548485,NCBITaxon:2169971,http://purl.obolibrary.org/obo/NCBITaxon_2169971,Visna-maedi virus +16.9548485,NCBITaxon:2170063,http://purl.obolibrary.org/obo/NCBITaxon_2170063,none +16.9548485,NCBITaxon:217033,http://purl.obolibrary.org/obo/NCBITaxon_217033,none +16.9548485,NCBITaxon:217040,http://purl.obolibrary.org/obo/NCBITaxon_217040,none +16.9548485,NCBITaxon:217056,http://purl.obolibrary.org/obo/NCBITaxon_217056,none +16.9548485,NCBITaxon:217062,http://purl.obolibrary.org/obo/NCBITaxon_217062,none +16.9548485,NCBITaxon:217164,http://purl.obolibrary.org/obo/NCBITaxon_217164,none +16.9548485,NCBITaxon:217509,http://purl.obolibrary.org/obo/NCBITaxon_217509,none +16.9548485,NCBITaxon:218102,http://purl.obolibrary.org/obo/NCBITaxon_218102,none +16.9548485,NCBITaxon:218103,http://purl.obolibrary.org/obo/NCBITaxon_218103,none +16.9548485,NCBITaxon:21819,http://purl.obolibrary.org/obo/NCBITaxon_21819,none +16.9548485,NCBITaxon:218282,http://purl.obolibrary.org/obo/NCBITaxon_218282,none +16.9548485,NCBITaxon:218680,http://purl.obolibrary.org/obo/NCBITaxon_218680,none +16.9548485,NCBITaxon:218824,http://purl.obolibrary.org/obo/NCBITaxon_218824,none +16.9548485,NCBITaxon:219095,http://purl.obolibrary.org/obo/NCBITaxon_219095,none +16.9548485,NCBITaxon:219118,http://purl.obolibrary.org/obo/NCBITaxon_219118,none +16.9548485,NCBITaxon:219129,http://purl.obolibrary.org/obo/NCBITaxon_219129,none +16.9548485,NCBITaxon:21922,http://purl.obolibrary.org/obo/NCBITaxon_21922,none +16.9548485,NCBITaxon:219323,http://purl.obolibrary.org/obo/NCBITaxon_219323,none +16.9548485,NCBITaxon:219327,http://purl.obolibrary.org/obo/NCBITaxon_219327,none +16.9548485,NCBITaxon:219408,http://purl.obolibrary.org/obo/NCBITaxon_219408,none +16.9548485,NCBITaxon:219420,http://purl.obolibrary.org/obo/NCBITaxon_219420,none +16.9548485,NCBITaxon:219430,http://purl.obolibrary.org/obo/NCBITaxon_219430,none +16.9548485,NCBITaxon:219586,http://purl.obolibrary.org/obo/NCBITaxon_219586,none +16.9548485,NCBITaxon:2206,http://purl.obolibrary.org/obo/NCBITaxon_2206,none +16.9548485,NCBITaxon:2207,http://purl.obolibrary.org/obo/NCBITaxon_2207,none +16.9548485,NCBITaxon:220712,http://purl.obolibrary.org/obo/NCBITaxon_220712,none +16.9548485,NCBITaxon:220713,http://purl.obolibrary.org/obo/NCBITaxon_220713,none +16.9548485,NCBITaxon:221204,http://purl.obolibrary.org/obo/NCBITaxon_221204,none +16.9548485,NCBITaxon:221383,http://purl.obolibrary.org/obo/NCBITaxon_221383,none +16.9548485,NCBITaxon:221538,http://purl.obolibrary.org/obo/NCBITaxon_221538,none +16.9548485,NCBITaxon:221542,http://purl.obolibrary.org/obo/NCBITaxon_221542,none +16.9548485,NCBITaxon:221543,http://purl.obolibrary.org/obo/NCBITaxon_221543,none +16.9548485,NCBITaxon:221903,http://purl.obolibrary.org/obo/NCBITaxon_221903,none +16.9548485,NCBITaxon:221905,http://purl.obolibrary.org/obo/NCBITaxon_221905,none +16.9548485,NCBITaxon:222073,http://purl.obolibrary.org/obo/NCBITaxon_222073,none +16.9548485,NCBITaxon:222075,http://purl.obolibrary.org/obo/NCBITaxon_222075,none +16.9548485,NCBITaxon:222078,http://purl.obolibrary.org/obo/NCBITaxon_222078,none +16.9548485,NCBITaxon:222079,http://purl.obolibrary.org/obo/NCBITaxon_222079,none +16.9548485,NCBITaxon:222431,http://purl.obolibrary.org/obo/NCBITaxon_222431,none +16.9548485,NCBITaxon:222450,http://purl.obolibrary.org/obo/NCBITaxon_222450,none +16.9548485,NCBITaxon:222456,http://purl.obolibrary.org/obo/NCBITaxon_222456,none +16.9548485,NCBITaxon:222458,http://purl.obolibrary.org/obo/NCBITaxon_222458,none +16.9548485,NCBITaxon:222465,http://purl.obolibrary.org/obo/NCBITaxon_222465,none +16.9548485,NCBITaxon:222466,http://purl.obolibrary.org/obo/NCBITaxon_222466,none +16.9548485,NCBITaxon:222473,http://purl.obolibrary.org/obo/NCBITaxon_222473,none +16.9548485,NCBITaxon:222474,http://purl.obolibrary.org/obo/NCBITaxon_222474,none +16.9548485,NCBITaxon:222476,http://purl.obolibrary.org/obo/NCBITaxon_222476,none +16.9548485,NCBITaxon:222713,http://purl.obolibrary.org/obo/NCBITaxon_222713,none +16.9548485,NCBITaxon:2231389,http://purl.obolibrary.org/obo/NCBITaxon_2231389,none +16.9548485,NCBITaxon:2231397,http://purl.obolibrary.org/obo/NCBITaxon_2231397,none +16.9548485,NCBITaxon:223282,http://purl.obolibrary.org/obo/NCBITaxon_223282,none +16.9548485,NCBITaxon:223284,http://purl.obolibrary.org/obo/NCBITaxon_223284,none +16.9548485,NCBITaxon:223289,http://purl.obolibrary.org/obo/NCBITaxon_223289,none +16.9548485,NCBITaxon:223306,http://purl.obolibrary.org/obo/NCBITaxon_223306,none +16.9548485,NCBITaxon:223308,http://purl.obolibrary.org/obo/NCBITaxon_223308,none +16.9548485,NCBITaxon:223310,http://purl.obolibrary.org/obo/NCBITaxon_223310,none +16.9548485,NCBITaxon:223313,http://purl.obolibrary.org/obo/NCBITaxon_223313,none +16.9548485,NCBITaxon:223330,http://purl.obolibrary.org/obo/NCBITaxon_223330,none +16.9548485,NCBITaxon:223341,http://purl.obolibrary.org/obo/NCBITaxon_223341,none +16.9548485,NCBITaxon:223342,http://purl.obolibrary.org/obo/NCBITaxon_223342,none +16.9548485,NCBITaxon:2233521,http://purl.obolibrary.org/obo/NCBITaxon_2233521,none +16.9548485,NCBITaxon:2234,http://purl.obolibrary.org/obo/NCBITaxon_2234,none +16.9548485,NCBITaxon:2234004,http://purl.obolibrary.org/obo/NCBITaxon_2234004,none +16.9548485,NCBITaxon:223566,http://purl.obolibrary.org/obo/NCBITaxon_223566,none +16.9548485,NCBITaxon:223567,http://purl.obolibrary.org/obo/NCBITaxon_223567,none +16.9548485,NCBITaxon:2237,http://purl.obolibrary.org/obo/NCBITaxon_2237,none +16.9548485,NCBITaxon:223729,http://purl.obolibrary.org/obo/NCBITaxon_223729,none +16.9548485,NCBITaxon:223730,http://purl.obolibrary.org/obo/NCBITaxon_223730,none +16.9548485,NCBITaxon:223784,http://purl.obolibrary.org/obo/NCBITaxon_223784,none +16.9548485,NCBITaxon:223792,http://purl.obolibrary.org/obo/NCBITaxon_223792,none +16.9548485,NCBITaxon:224219,http://purl.obolibrary.org/obo/NCBITaxon_224219,none +16.9548485,NCBITaxon:224591,http://purl.obolibrary.org/obo/NCBITaxon_224591,none +16.9548485,NCBITaxon:224860,http://purl.obolibrary.org/obo/NCBITaxon_224860,none +16.9548485,NCBITaxon:225191,http://purl.obolibrary.org/obo/NCBITaxon_225191,none +16.9548485,NCBITaxon:225404,http://purl.obolibrary.org/obo/NCBITaxon_225404,none +16.9548485,NCBITaxon:225727,http://purl.obolibrary.org/obo/NCBITaxon_225727,none +16.9548485,NCBITaxon:225728,http://purl.obolibrary.org/obo/NCBITaxon_225728,none +16.9548485,NCBITaxon:225842,http://purl.obolibrary.org/obo/NCBITaxon_225842,none +16.9548485,NCBITaxon:226574,http://purl.obolibrary.org/obo/NCBITaxon_226574,none +16.9548485,NCBITaxon:2266,http://purl.obolibrary.org/obo/NCBITaxon_2266,none +16.9548485,NCBITaxon:226679,http://purl.obolibrary.org/obo/NCBITaxon_226679,none +16.9548485,NCBITaxon:2267,http://purl.obolibrary.org/obo/NCBITaxon_2267,none +16.9548485,NCBITaxon:2268852,http://purl.obolibrary.org/obo/NCBITaxon_2268852,none +16.9548485,NCBITaxon:227286,http://purl.obolibrary.org/obo/NCBITaxon_227286,none +16.9548485,NCBITaxon:227330,http://purl.obolibrary.org/obo/NCBITaxon_227330,none +16.9548485,NCBITaxon:227332,http://purl.obolibrary.org/obo/NCBITaxon_227332,none +16.9548485,NCBITaxon:227334,http://purl.obolibrary.org/obo/NCBITaxon_227334,none +16.9548485,NCBITaxon:227527,http://purl.obolibrary.org/obo/NCBITaxon_227527,none +16.9548485,NCBITaxon:2276,http://purl.obolibrary.org/obo/NCBITaxon_2276,none +16.9548485,NCBITaxon:227731,http://purl.obolibrary.org/obo/NCBITaxon_227731,none +16.9548485,NCBITaxon:228183,http://purl.obolibrary.org/obo/NCBITaxon_228183,none +16.9548485,NCBITaxon:228196,http://purl.obolibrary.org/obo/NCBITaxon_228196,none +16.9548485,NCBITaxon:228330,http://purl.obolibrary.org/obo/NCBITaxon_228330,none +16.9548485,NCBITaxon:228407,http://purl.obolibrary.org/obo/NCBITaxon_228407,none +16.9548485,NCBITaxon:228581,http://purl.obolibrary.org/obo/NCBITaxon_228581,none +16.9548485,NCBITaxon:228650,http://purl.obolibrary.org/obo/NCBITaxon_228650,none +16.9548485,NCBITaxon:229032,http://purl.obolibrary.org/obo/NCBITaxon_229032,none +16.9548485,NCBITaxon:2291027,http://purl.obolibrary.org/obo/NCBITaxon_2291027,none +16.9548485,NCBITaxon:22922,http://purl.obolibrary.org/obo/NCBITaxon_22922,none +16.9548485,NCBITaxon:229289,http://purl.obolibrary.org/obo/NCBITaxon_229289,none +16.9548485,NCBITaxon:229290,http://purl.obolibrary.org/obo/NCBITaxon_229290,none +16.9548485,NCBITaxon:229636,http://purl.obolibrary.org/obo/NCBITaxon_229636,none +16.9548485,NCBITaxon:22994,http://purl.obolibrary.org/obo/NCBITaxon_22994,none +16.9548485,NCBITaxon:2301110,http://purl.obolibrary.org/obo/NCBITaxon_2301110,none +16.9548485,NCBITaxon:2301118,http://purl.obolibrary.org/obo/NCBITaxon_2301118,none +16.9548485,NCBITaxon:2304098,http://purl.obolibrary.org/obo/NCBITaxon_2304098,none +16.9548485,NCBITaxon:230653,http://purl.obolibrary.org/obo/NCBITaxon_230653,none +16.9548485,NCBITaxon:23097,http://purl.obolibrary.org/obo/NCBITaxon_23097,none +16.9548485,NCBITaxon:23109,http://purl.obolibrary.org/obo/NCBITaxon_23109,none +16.9548485,NCBITaxon:23121,http://purl.obolibrary.org/obo/NCBITaxon_23121,none +16.9548485,NCBITaxon:231212,http://purl.obolibrary.org/obo/NCBITaxon_231212,none +16.9548485,NCBITaxon:23129,http://purl.obolibrary.org/obo/NCBITaxon_23129,none +16.9548485,NCBITaxon:23138,http://purl.obolibrary.org/obo/NCBITaxon_23138,none +16.9548485,NCBITaxon:2315720,http://purl.obolibrary.org/obo/NCBITaxon_2315720,Trochida +16.9548485,NCBITaxon:2315726,http://purl.obolibrary.org/obo/NCBITaxon_2315726,none +16.9548485,NCBITaxon:2316020,http://purl.obolibrary.org/obo/NCBITaxon_2316020,none +16.9548485,NCBITaxon:231913,http://purl.obolibrary.org/obo/NCBITaxon_231913,none +16.9548485,NCBITaxon:23199,http://purl.obolibrary.org/obo/NCBITaxon_23199,none +16.9548485,NCBITaxon:23224,http://purl.obolibrary.org/obo/NCBITaxon_23224,none +16.9548485,NCBITaxon:232316,http://purl.obolibrary.org/obo/NCBITaxon_232316,none +16.9548485,NCBITaxon:23238,http://purl.obolibrary.org/obo/NCBITaxon_23238,none +16.9548485,NCBITaxon:232382,http://purl.obolibrary.org/obo/NCBITaxon_232382,none +16.9548485,NCBITaxon:232384,http://purl.obolibrary.org/obo/NCBITaxon_232384,none +16.9548485,NCBITaxon:232508,http://purl.obolibrary.org/obo/NCBITaxon_232508,none +16.9548485,NCBITaxon:232523,http://purl.obolibrary.org/obo/NCBITaxon_232523,none +16.9548485,NCBITaxon:232649,http://purl.obolibrary.org/obo/NCBITaxon_232649,none +16.9548485,NCBITaxon:232892,http://purl.obolibrary.org/obo/NCBITaxon_232892,none +16.9548485,NCBITaxon:232893,http://purl.obolibrary.org/obo/NCBITaxon_232893,none +16.9548485,NCBITaxon:233309,http://purl.obolibrary.org/obo/NCBITaxon_233309,none +16.9548485,NCBITaxon:233744,http://purl.obolibrary.org/obo/NCBITaxon_233744,none +16.9548485,NCBITaxon:23461,http://purl.obolibrary.org/obo/NCBITaxon_23461,none +16.9548485,NCBITaxon:235541,http://purl.obolibrary.org/obo/NCBITaxon_235541,none +16.9548485,NCBITaxon:235900,http://purl.obolibrary.org/obo/NCBITaxon_235900,none +16.9548485,NCBITaxon:236347,http://purl.obolibrary.org/obo/NCBITaxon_236347,none +16.9548485,NCBITaxon:236614,http://purl.obolibrary.org/obo/NCBITaxon_236614,none +16.9548485,NCBITaxon:236807,http://purl.obolibrary.org/obo/NCBITaxon_236807,none +16.9548485,NCBITaxon:236915,http://purl.obolibrary.org/obo/NCBITaxon_236915,none +16.9548485,NCBITaxon:236919,http://purl.obolibrary.org/obo/NCBITaxon_236919,none +16.9548485,NCBITaxon:236950,http://purl.obolibrary.org/obo/NCBITaxon_236950,none +16.9548485,NCBITaxon:237399,http://purl.obolibrary.org/obo/NCBITaxon_237399,none +16.9548485,NCBITaxon:238031,http://purl.obolibrary.org/obo/NCBITaxon_238031,none +16.9548485,NCBITaxon:238032,http://purl.obolibrary.org/obo/NCBITaxon_238032,none +16.9548485,NCBITaxon:238071,http://purl.obolibrary.org/obo/NCBITaxon_238071,none +16.9548485,NCBITaxon:238102,http://purl.obolibrary.org/obo/NCBITaxon_238102,none +16.9548485,NCBITaxon:238634,http://purl.obolibrary.org/obo/NCBITaxon_238634,none +16.9548485,NCBITaxon:239093,http://purl.obolibrary.org/obo/NCBITaxon_239093,none +16.9548485,NCBITaxon:239239,http://purl.obolibrary.org/obo/NCBITaxon_239239,none +16.9548485,NCBITaxon:239760,http://purl.obolibrary.org/obo/NCBITaxon_239760,none +16.9548485,NCBITaxon:240158,http://purl.obolibrary.org/obo/NCBITaxon_240158,none +16.9548485,NCBITaxon:240279,http://purl.obolibrary.org/obo/NCBITaxon_240279,none +16.9548485,NCBITaxon:240891,http://purl.obolibrary.org/obo/NCBITaxon_240891,none +16.9548485,NCBITaxon:241436,http://purl.obolibrary.org/obo/NCBITaxon_241436,none +16.9548485,NCBITaxon:241595,http://purl.obolibrary.org/obo/NCBITaxon_241595,none +16.9548485,NCBITaxon:241651,http://purl.obolibrary.org/obo/NCBITaxon_241651,none +16.9548485,NCBITaxon:241779,http://purl.obolibrary.org/obo/NCBITaxon_241779,none +16.9548485,NCBITaxon:241785,http://purl.obolibrary.org/obo/NCBITaxon_241785,none +16.9548485,NCBITaxon:241797,http://purl.obolibrary.org/obo/NCBITaxon_241797,none +16.9548485,NCBITaxon:24208,http://purl.obolibrary.org/obo/NCBITaxon_24208,none +16.9548485,NCBITaxon:242159,http://purl.obolibrary.org/obo/NCBITaxon_242159,none +16.9548485,NCBITaxon:242562,http://purl.obolibrary.org/obo/NCBITaxon_242562,none +16.9548485,NCBITaxon:242626,http://purl.obolibrary.org/obo/NCBITaxon_242626,none +16.9548485,NCBITaxon:242720,http://purl.obolibrary.org/obo/NCBITaxon_242720,none +16.9548485,NCBITaxon:242978,http://purl.obolibrary.org/obo/NCBITaxon_242978,none +16.9548485,NCBITaxon:2433,http://purl.obolibrary.org/obo/NCBITaxon_2433,none +16.9548485,NCBITaxon:243560,http://purl.obolibrary.org/obo/NCBITaxon_243560,none +16.9548485,NCBITaxon:243706,http://purl.obolibrary.org/obo/NCBITaxon_243706,none +16.9548485,NCBITaxon:243707,http://purl.obolibrary.org/obo/NCBITaxon_243707,none +16.9548485,NCBITaxon:243741,http://purl.obolibrary.org/obo/NCBITaxon_243741,none +16.9548485,NCBITaxon:243963,http://purl.obolibrary.org/obo/NCBITaxon_243963,none +16.9548485,NCBITaxon:243964,http://purl.obolibrary.org/obo/NCBITaxon_243964,none +16.9548485,NCBITaxon:244050,http://purl.obolibrary.org/obo/NCBITaxon_244050,none +16.9548485,NCBITaxon:244320,http://purl.obolibrary.org/obo/NCBITaxon_244320,none +16.9548485,NCBITaxon:244367,http://purl.obolibrary.org/obo/NCBITaxon_244367,none +16.9548485,NCBITaxon:244427,http://purl.obolibrary.org/obo/NCBITaxon_244427,none +16.9548485,NCBITaxon:244428,http://purl.obolibrary.org/obo/NCBITaxon_244428,none +16.9548485,NCBITaxon:244589,http://purl.obolibrary.org/obo/NCBITaxon_244589,none +16.9548485,NCBITaxon:24646,http://purl.obolibrary.org/obo/NCBITaxon_24646,none +16.9548485,NCBITaxon:246742,http://purl.obolibrary.org/obo/NCBITaxon_246742,none +16.9548485,NCBITaxon:247726,http://purl.obolibrary.org/obo/NCBITaxon_247726,none +16.9548485,NCBITaxon:247727,http://purl.obolibrary.org/obo/NCBITaxon_247727,none +16.9548485,NCBITaxon:248054,http://purl.obolibrary.org/obo/NCBITaxon_248054,none +16.9548485,NCBITaxon:248056,http://purl.obolibrary.org/obo/NCBITaxon_248056,none +16.9548485,NCBITaxon:248058,http://purl.obolibrary.org/obo/NCBITaxon_248058,none +16.9548485,NCBITaxon:248137,http://purl.obolibrary.org/obo/NCBITaxon_248137,none +16.9548485,NCBITaxon:248141,http://purl.obolibrary.org/obo/NCBITaxon_248141,none +16.9548485,NCBITaxon:248142,http://purl.obolibrary.org/obo/NCBITaxon_248142,none +16.9548485,NCBITaxon:248485,http://purl.obolibrary.org/obo/NCBITaxon_248485,none +16.9548485,NCBITaxon:2486285,http://purl.obolibrary.org/obo/NCBITaxon_2486285,none +16.9548485,NCBITaxon:248746,http://purl.obolibrary.org/obo/NCBITaxon_248746,none +16.9548485,NCBITaxon:248983,http://purl.obolibrary.org/obo/NCBITaxon_248983,none +16.9548485,NCBITaxon:24945,http://purl.obolibrary.org/obo/NCBITaxon_24945,none +16.9548485,NCBITaxon:24952,http://purl.obolibrary.org/obo/NCBITaxon_24952,none +16.9548485,NCBITaxon:24955,http://purl.obolibrary.org/obo/NCBITaxon_24955,none +16.9548485,NCBITaxon:24956,http://purl.obolibrary.org/obo/NCBITaxon_24956,none +16.9548485,NCBITaxon:2497438,http://purl.obolibrary.org/obo/NCBITaxon_2497438,none +16.9548485,NCBITaxon:2498844,http://purl.obolibrary.org/obo/NCBITaxon_2498844,none +16.9548485,NCBITaxon:2499237,http://purl.obolibrary.org/obo/NCBITaxon_2499237,none +16.9548485,NCBITaxon:2501366,http://purl.obolibrary.org/obo/NCBITaxon_2501366,none +16.9548485,NCBITaxon:2501379,http://purl.obolibrary.org/obo/NCBITaxon_2501379,none +16.9548485,NCBITaxon:2505929,http://purl.obolibrary.org/obo/NCBITaxon_2505929,none +16.9548485,NCBITaxon:2509195,http://purl.obolibrary.org/obo/NCBITaxon_2509195,none +16.9548485,NCBITaxon:2509196,http://purl.obolibrary.org/obo/NCBITaxon_2509196,none +16.9548485,NCBITaxon:2509475,http://purl.obolibrary.org/obo/NCBITaxon_2509475,none +16.9548485,NCBITaxon:2509483,http://purl.obolibrary.org/obo/NCBITaxon_2509483,none +16.9548485,NCBITaxon:2509496,http://purl.obolibrary.org/obo/NCBITaxon_2509496,none +16.9548485,NCBITaxon:2509509,http://purl.obolibrary.org/obo/NCBITaxon_2509509,none +16.9548485,NCBITaxon:251698,http://purl.obolibrary.org/obo/NCBITaxon_251698,none +16.9548485,NCBITaxon:251701,http://purl.obolibrary.org/obo/NCBITaxon_251701,none +16.9548485,NCBITaxon:251752,http://purl.obolibrary.org/obo/NCBITaxon_251752,none +16.9548485,NCBITaxon:251753,http://purl.obolibrary.org/obo/NCBITaxon_251753,none +16.9548485,NCBITaxon:251754,http://purl.obolibrary.org/obo/NCBITaxon_251754,none +16.9548485,NCBITaxon:251774,http://purl.obolibrary.org/obo/NCBITaxon_251774,none +16.9548485,NCBITaxon:252166,http://purl.obolibrary.org/obo/NCBITaxon_252166,none +16.9548485,NCBITaxon:25227,http://purl.obolibrary.org/obo/NCBITaxon_25227,none +16.9548485,NCBITaxon:252602,http://purl.obolibrary.org/obo/NCBITaxon_252602,none +16.9548485,NCBITaxon:252610,http://purl.obolibrary.org/obo/NCBITaxon_252610,none +16.9548485,NCBITaxon:252907,http://purl.obolibrary.org/obo/NCBITaxon_252907,none +16.9548485,NCBITaxon:253151,http://purl.obolibrary.org/obo/NCBITaxon_253151,none +16.9548485,NCBITaxon:253152,http://purl.obolibrary.org/obo/NCBITaxon_253152,none +16.9548485,NCBITaxon:253702,http://purl.obolibrary.org/obo/NCBITaxon_253702,none +16.9548485,NCBITaxon:254252,http://purl.obolibrary.org/obo/NCBITaxon_254252,none +16.9548485,NCBITaxon:254361,http://purl.obolibrary.org/obo/NCBITaxon_254361,none +16.9548485,NCBITaxon:2546211,http://purl.obolibrary.org/obo/NCBITaxon_2546211,none +16.9548485,NCBITaxon:254792,http://purl.obolibrary.org/obo/NCBITaxon_254792,none +16.9548485,NCBITaxon:2547934,http://purl.obolibrary.org/obo/NCBITaxon_2547934,Blastocystidae +16.9548485,NCBITaxon:255204,http://purl.obolibrary.org/obo/NCBITaxon_255204,none +16.9548485,NCBITaxon:255431,http://purl.obolibrary.org/obo/NCBITaxon_255431,none +16.9548485,NCBITaxon:255477,http://purl.obolibrary.org/obo/NCBITaxon_255477,none +16.9548485,NCBITaxon:255520,http://purl.obolibrary.org/obo/NCBITaxon_255520,none +16.9548485,NCBITaxon:2555566,http://purl.obolibrary.org/obo/NCBITaxon_2555566,none +16.9548485,NCBITaxon:255726,http://purl.obolibrary.org/obo/NCBITaxon_255726,none +16.9548485,NCBITaxon:2558200,http://purl.obolibrary.org/obo/NCBITaxon_2558200,none +16.9548485,NCBITaxon:2560097,http://purl.obolibrary.org/obo/NCBITaxon_2560097,none +16.9548485,NCBITaxon:2560169,http://purl.obolibrary.org/obo/NCBITaxon_2560169,none +16.9548485,NCBITaxon:2560258,http://purl.obolibrary.org/obo/NCBITaxon_2560258,none +16.9548485,NCBITaxon:2560294,http://purl.obolibrary.org/obo/NCBITaxon_2560294,none +16.9548485,NCBITaxon:2560296,http://purl.obolibrary.org/obo/NCBITaxon_2560296,none +16.9548485,NCBITaxon:2560343,http://purl.obolibrary.org/obo/NCBITaxon_2560343,none +16.9548485,NCBITaxon:2560467,http://purl.obolibrary.org/obo/NCBITaxon_2560467,none +16.9548485,NCBITaxon:2560477,http://purl.obolibrary.org/obo/NCBITaxon_2560477,none +16.9548485,NCBITaxon:2560535,http://purl.obolibrary.org/obo/NCBITaxon_2560535,none +16.9548485,NCBITaxon:2560741,http://purl.obolibrary.org/obo/NCBITaxon_2560741,none +16.9548485,NCBITaxon:2560750,http://purl.obolibrary.org/obo/NCBITaxon_2560750,none +16.9548485,NCBITaxon:2560824,http://purl.obolibrary.org/obo/NCBITaxon_2560824,none +16.9548485,NCBITaxon:2560828,http://purl.obolibrary.org/obo/NCBITaxon_2560828,none +16.9548485,NCBITaxon:256103,http://purl.obolibrary.org/obo/NCBITaxon_256103,none +16.9548485,NCBITaxon:256591,http://purl.obolibrary.org/obo/NCBITaxon_256591,none +16.9548485,NCBITaxon:2570567,http://purl.obolibrary.org/obo/NCBITaxon_2570567,none +16.9548485,NCBITaxon:2572559,http://purl.obolibrary.org/obo/NCBITaxon_2572559,none +16.9548485,NCBITaxon:2572560,http://purl.obolibrary.org/obo/NCBITaxon_2572560,none +16.9548485,NCBITaxon:257490,http://purl.obolibrary.org/obo/NCBITaxon_257490,none +16.9548485,NCBITaxon:257491,http://purl.obolibrary.org/obo/NCBITaxon_257491,none +16.9548485,NCBITaxon:2576765,http://purl.obolibrary.org/obo/NCBITaxon_2576765,none +16.9548485,NCBITaxon:258255,http://purl.obolibrary.org/obo/NCBITaxon_258255,none +16.9548485,NCBITaxon:2582693,http://purl.obolibrary.org/obo/NCBITaxon_2582693,none +16.9548485,NCBITaxon:2583835,http://purl.obolibrary.org/obo/NCBITaxon_2583835,none +16.9548485,NCBITaxon:2596745,http://purl.obolibrary.org/obo/NCBITaxon_2596745,none +16.9548485,NCBITaxon:259931,http://purl.obolibrary.org/obo/NCBITaxon_259931,none +16.9548485,NCBITaxon:25996,http://purl.obolibrary.org/obo/NCBITaxon_25996,none +16.9548485,NCBITaxon:26019,http://purl.obolibrary.org/obo/NCBITaxon_26019,none +16.9548485,NCBITaxon:260375,http://purl.obolibrary.org/obo/NCBITaxon_260375,none +16.9548485,NCBITaxon:260379,http://purl.obolibrary.org/obo/NCBITaxon_260379,none +16.9548485,NCBITaxon:2604748,http://purl.obolibrary.org/obo/NCBITaxon_2604748,none +16.9548485,NCBITaxon:260531,http://purl.obolibrary.org/obo/NCBITaxon_260531,none +16.9548485,NCBITaxon:260656,http://purl.obolibrary.org/obo/NCBITaxon_260656,none +16.9548485,NCBITaxon:260909,http://purl.obolibrary.org/obo/NCBITaxon_260909,none +16.9548485,NCBITaxon:2609958,http://purl.obolibrary.org/obo/NCBITaxon_2609958,none +16.9548485,NCBITaxon:2609959,http://purl.obolibrary.org/obo/NCBITaxon_2609959,none +16.9548485,NCBITaxon:261055,http://purl.obolibrary.org/obo/NCBITaxon_261055,none +16.9548485,NCBITaxon:2614656,http://purl.obolibrary.org/obo/NCBITaxon_2614656,none +16.9548485,NCBITaxon:261517,http://purl.obolibrary.org/obo/NCBITaxon_261517,none +16.9548485,NCBITaxon:2617518,http://purl.obolibrary.org/obo/NCBITaxon_2617518,none +16.9548485,NCBITaxon:261786,http://purl.obolibrary.org/obo/NCBITaxon_261786,none +16.9548485,NCBITaxon:261973,http://purl.obolibrary.org/obo/NCBITaxon_261973,none +16.9548485,NCBITaxon:261974,http://purl.obolibrary.org/obo/NCBITaxon_261974,none +16.9548485,NCBITaxon:262307,http://purl.obolibrary.org/obo/NCBITaxon_262307,none +16.9548485,NCBITaxon:262397,http://purl.obolibrary.org/obo/NCBITaxon_262397,none +16.9548485,NCBITaxon:2625894,http://purl.obolibrary.org/obo/NCBITaxon_2625894,none +16.9548485,NCBITaxon:2627105,http://purl.obolibrary.org/obo/NCBITaxon_2627105,none +16.9548485,NCBITaxon:262791,http://purl.obolibrary.org/obo/NCBITaxon_262791,none +16.9548485,NCBITaxon:263002,http://purl.obolibrary.org/obo/NCBITaxon_263002,none +16.9548485,NCBITaxon:263066,http://purl.obolibrary.org/obo/NCBITaxon_263066,none +16.9548485,NCBITaxon:263515,http://purl.obolibrary.org/obo/NCBITaxon_263515,none +16.9548485,NCBITaxon:263595,http://purl.obolibrary.org/obo/NCBITaxon_263595,none +16.9548485,NCBITaxon:2640191,http://purl.obolibrary.org/obo/NCBITaxon_2640191,none +16.9548485,NCBITaxon:26468,http://purl.obolibrary.org/obo/NCBITaxon_26468,none +16.9548485,NCBITaxon:265316,http://purl.obolibrary.org/obo/NCBITaxon_265316,none +16.9548485,NCBITaxon:265318,http://purl.obolibrary.org/obo/NCBITaxon_265318,none +16.9548485,NCBITaxon:265488,http://purl.obolibrary.org/obo/NCBITaxon_265488,none +16.9548485,NCBITaxon:265535,http://purl.obolibrary.org/obo/NCBITaxon_265535,none +16.9548485,NCBITaxon:2657428,http://purl.obolibrary.org/obo/NCBITaxon_2657428,none +16.9548485,NCBITaxon:265874,http://purl.obolibrary.org/obo/NCBITaxon_265874,none +16.9548485,NCBITaxon:266004,http://purl.obolibrary.org/obo/NCBITaxon_266004,none +16.9548485,NCBITaxon:2662056,http://purl.obolibrary.org/obo/NCBITaxon_2662056,Retaria +16.9548485,NCBITaxon:267094,http://purl.obolibrary.org/obo/NCBITaxon_267094,none +16.9548485,NCBITaxon:267285,http://purl.obolibrary.org/obo/NCBITaxon_267285,none +16.9548485,NCBITaxon:267893,http://purl.obolibrary.org/obo/NCBITaxon_267893,none +16.9548485,NCBITaxon:2682239,http://purl.obolibrary.org/obo/NCBITaxon_2682239,none +16.9548485,NCBITaxon:2682468,http://purl.obolibrary.org/obo/NCBITaxon_2682468,none +16.9548485,NCBITaxon:2683660,http://purl.obolibrary.org/obo/NCBITaxon_2683660,none +16.9548485,NCBITaxon:2685852,http://purl.obolibrary.org/obo/NCBITaxon_2685852,none +16.9548485,NCBITaxon:268757,http://purl.obolibrary.org/obo/NCBITaxon_268757,none +16.9548485,NCBITaxon:268758,http://purl.obolibrary.org/obo/NCBITaxon_268758,none +16.9548485,NCBITaxon:268958,http://purl.obolibrary.org/obo/NCBITaxon_268958,none +16.9548485,NCBITaxon:2691354,http://purl.obolibrary.org/obo/NCBITaxon_2691354,none +16.9548485,NCBITaxon:2691357,http://purl.obolibrary.org/obo/NCBITaxon_2691357,none +16.9548485,NCBITaxon:269213,http://purl.obolibrary.org/obo/NCBITaxon_269213,none +16.9548485,NCBITaxon:269447,http://purl.obolibrary.org/obo/NCBITaxon_269447,none +16.9548485,NCBITaxon:26949,http://purl.obolibrary.org/obo/NCBITaxon_26949,none +16.9548485,NCBITaxon:269638,http://purl.obolibrary.org/obo/NCBITaxon_269638,none +16.9548485,NCBITaxon:270150,http://purl.obolibrary.org/obo/NCBITaxon_270150,none +16.9548485,NCBITaxon:2704063,http://purl.obolibrary.org/obo/NCBITaxon_2704063,none +16.9548485,NCBITaxon:2704112,http://purl.obolibrary.org/obo/NCBITaxon_2704112,none +16.9548485,NCBITaxon:2704119,http://purl.obolibrary.org/obo/NCBITaxon_2704119,none +16.9548485,NCBITaxon:270536,http://purl.obolibrary.org/obo/NCBITaxon_270536,none +16.9548485,NCBITaxon:270544,http://purl.obolibrary.org/obo/NCBITaxon_270544,none +16.9548485,NCBITaxon:270545,http://purl.obolibrary.org/obo/NCBITaxon_270545,none +16.9548485,NCBITaxon:270546,http://purl.obolibrary.org/obo/NCBITaxon_270546,none +16.9548485,NCBITaxon:270904,http://purl.obolibrary.org/obo/NCBITaxon_270904,none +16.9548485,NCBITaxon:271083,http://purl.obolibrary.org/obo/NCBITaxon_271083,none +16.9548485,NCBITaxon:271108,http://purl.obolibrary.org/obo/NCBITaxon_271108,none +16.9548485,NCBITaxon:271510,http://purl.obolibrary.org/obo/NCBITaxon_271510,none +16.9548485,NCBITaxon:271511,http://purl.obolibrary.org/obo/NCBITaxon_271511,none +16.9548485,NCBITaxon:271757,http://purl.obolibrary.org/obo/NCBITaxon_271757,none +16.9548485,NCBITaxon:271931,http://purl.obolibrary.org/obo/NCBITaxon_271931,none +16.9548485,NCBITaxon:271932,http://purl.obolibrary.org/obo/NCBITaxon_271932,none +16.9548485,NCBITaxon:2720871,http://purl.obolibrary.org/obo/NCBITaxon_2720871,Aspergillus subgen. Circumdati +16.9548485,NCBITaxon:27223,http://purl.obolibrary.org/obo/NCBITaxon_27223,none +16.9548485,NCBITaxon:27228,http://purl.obolibrary.org/obo/NCBITaxon_27228,none +16.9548485,NCBITaxon:272317,http://purl.obolibrary.org/obo/NCBITaxon_272317,none +16.9548485,NCBITaxon:27254,http://purl.obolibrary.org/obo/NCBITaxon_27254,none +16.9548485,NCBITaxon:27257,http://purl.obolibrary.org/obo/NCBITaxon_27257,none +16.9548485,NCBITaxon:272787,http://purl.obolibrary.org/obo/NCBITaxon_272787,none +16.9548485,NCBITaxon:27314,http://purl.obolibrary.org/obo/NCBITaxon_27314,none +16.9548485,NCBITaxon:2731649,http://purl.obolibrary.org/obo/NCBITaxon_2731649,none +16.9548485,NCBITaxon:27320,http://purl.obolibrary.org/obo/NCBITaxon_27320,none +16.9548485,NCBITaxon:2732090,http://purl.obolibrary.org/obo/NCBITaxon_2732090,none +16.9548485,NCBITaxon:2732093,http://purl.obolibrary.org/obo/NCBITaxon_2732093,none +16.9548485,NCBITaxon:2732094,http://purl.obolibrary.org/obo/NCBITaxon_2732094,none +16.9548485,NCBITaxon:2732410,http://purl.obolibrary.org/obo/NCBITaxon_2732410,none +16.9548485,NCBITaxon:2732411,http://purl.obolibrary.org/obo/NCBITaxon_2732411,none +16.9548485,NCBITaxon:2732448,http://purl.obolibrary.org/obo/NCBITaxon_2732448,none +16.9548485,NCBITaxon:2732449,http://purl.obolibrary.org/obo/NCBITaxon_2732449,none +16.9548485,NCBITaxon:2732451,http://purl.obolibrary.org/obo/NCBITaxon_2732451,none +16.9548485,NCBITaxon:2732881,http://purl.obolibrary.org/obo/NCBITaxon_2732881,none +16.9548485,NCBITaxon:2732902,http://purl.obolibrary.org/obo/NCBITaxon_2732902,none +16.9548485,NCBITaxon:2732910,http://purl.obolibrary.org/obo/NCBITaxon_2732910,none +16.9548485,NCBITaxon:2733228,http://purl.obolibrary.org/obo/NCBITaxon_2733228,none +16.9548485,NCBITaxon:2733237,http://purl.obolibrary.org/obo/NCBITaxon_2733237,none +16.9548485,NCBITaxon:2733246,http://purl.obolibrary.org/obo/NCBITaxon_2733246,none +16.9548485,NCBITaxon:2733253,http://purl.obolibrary.org/obo/NCBITaxon_2733253,none +16.9548485,NCBITaxon:2733365,http://purl.obolibrary.org/obo/NCBITaxon_2733365,none +16.9548485,NCBITaxon:273345,http://purl.obolibrary.org/obo/NCBITaxon_273345,none +16.9548485,NCBITaxon:273348,http://purl.obolibrary.org/obo/NCBITaxon_273348,none +16.9548485,NCBITaxon:273355,http://purl.obolibrary.org/obo/NCBITaxon_273355,none +16.9548485,NCBITaxon:2734351,http://purl.obolibrary.org/obo/NCBITaxon_2734351,none +16.9548485,NCBITaxon:2734373,http://purl.obolibrary.org/obo/NCBITaxon_2734373,none +16.9548485,NCBITaxon:2734399,http://purl.obolibrary.org/obo/NCBITaxon_2734399,none +16.9548485,NCBITaxon:2734406,http://purl.obolibrary.org/obo/NCBITaxon_2734406,none +16.9548485,NCBITaxon:2734408,http://purl.obolibrary.org/obo/NCBITaxon_2734408,none +16.9548485,NCBITaxon:2734434,http://purl.obolibrary.org/obo/NCBITaxon_2734434,none +16.9548485,NCBITaxon:2734436,http://purl.obolibrary.org/obo/NCBITaxon_2734436,none +16.9548485,NCBITaxon:2734438,http://purl.obolibrary.org/obo/NCBITaxon_2734438,none +16.9548485,NCBITaxon:2734440,http://purl.obolibrary.org/obo/NCBITaxon_2734440,none +16.9548485,NCBITaxon:2734446,http://purl.obolibrary.org/obo/NCBITaxon_2734446,none +16.9548485,NCBITaxon:2734450,http://purl.obolibrary.org/obo/NCBITaxon_2734450,none +16.9548485,NCBITaxon:2734453,http://purl.obolibrary.org/obo/NCBITaxon_2734453,none +16.9548485,NCBITaxon:2734465,http://purl.obolibrary.org/obo/NCBITaxon_2734465,none +16.9548485,NCBITaxon:2734471,http://purl.obolibrary.org/obo/NCBITaxon_2734471,none +16.9548485,NCBITaxon:2734472,http://purl.obolibrary.org/obo/NCBITaxon_2734472,none +16.9548485,NCBITaxon:2734481,http://purl.obolibrary.org/obo/NCBITaxon_2734481,none +16.9548485,NCBITaxon:2734486,http://purl.obolibrary.org/obo/NCBITaxon_2734486,none +16.9548485,NCBITaxon:2734597,http://purl.obolibrary.org/obo/NCBITaxon_2734597,none +16.9548485,NCBITaxon:2734600,http://purl.obolibrary.org/obo/NCBITaxon_2734600,none +16.9548485,NCBITaxon:273795,http://purl.obolibrary.org/obo/NCBITaxon_273795,none +16.9548485,NCBITaxon:2741927,http://purl.obolibrary.org/obo/NCBITaxon_2741927,none +16.9548485,NCBITaxon:2743698,http://purl.obolibrary.org/obo/NCBITaxon_2743698,none +16.9548485,NCBITaxon:2743704,http://purl.obolibrary.org/obo/NCBITaxon_2743704,none +16.9548485,NCBITaxon:2743705,http://purl.obolibrary.org/obo/NCBITaxon_2743705,none +16.9548485,NCBITaxon:2743707,http://purl.obolibrary.org/obo/NCBITaxon_2743707,none +16.9548485,NCBITaxon:2743731,http://purl.obolibrary.org/obo/NCBITaxon_2743731,none +16.9548485,NCBITaxon:27439,http://purl.obolibrary.org/obo/NCBITaxon_27439,none +16.9548485,NCBITaxon:27471,http://purl.obolibrary.org/obo/NCBITaxon_27471,none +16.9548485,NCBITaxon:2747211,http://purl.obolibrary.org/obo/NCBITaxon_2747211,none +16.9548485,NCBITaxon:2747323,http://purl.obolibrary.org/obo/NCBITaxon_2747323,none +16.9548485,NCBITaxon:2747334,http://purl.obolibrary.org/obo/NCBITaxon_2747334,none +16.9548485,NCBITaxon:274795,http://purl.obolibrary.org/obo/NCBITaxon_274795,none +16.9548485,NCBITaxon:2749931,http://purl.obolibrary.org/obo/NCBITaxon_2749931,none +16.9548485,NCBITaxon:27549,http://purl.obolibrary.org/obo/NCBITaxon_27549,none +16.9548485,NCBITaxon:27567,http://purl.obolibrary.org/obo/NCBITaxon_27567,none +16.9548485,NCBITaxon:2759629,http://purl.obolibrary.org/obo/NCBITaxon_2759629,none +16.9548485,NCBITaxon:2768097,http://purl.obolibrary.org/obo/NCBITaxon_2768097,none +16.9548485,NCBITaxon:27681,http://purl.obolibrary.org/obo/NCBITaxon_27681,none +16.9548485,NCBITaxon:276836,http://purl.obolibrary.org/obo/NCBITaxon_276836,none +16.9548485,NCBITaxon:27699,http://purl.obolibrary.org/obo/NCBITaxon_27699,none +16.9548485,NCBITaxon:27706,http://purl.obolibrary.org/obo/NCBITaxon_27706,none +16.9548485,NCBITaxon:27707,http://purl.obolibrary.org/obo/NCBITaxon_27707,none +16.9548485,NCBITaxon:27762,http://purl.obolibrary.org/obo/NCBITaxon_27762,none +16.9548485,NCBITaxon:27769,http://purl.obolibrary.org/obo/NCBITaxon_27769,none +16.9548485,NCBITaxon:277993,http://purl.obolibrary.org/obo/NCBITaxon_277993,none +16.9548485,NCBITaxon:278075,http://purl.obolibrary.org/obo/NCBITaxon_278075,none +16.9548485,NCBITaxon:278169,http://purl.obolibrary.org/obo/NCBITaxon_278169,none +16.9548485,NCBITaxon:27834,http://purl.obolibrary.org/obo/NCBITaxon_27834,none +16.9548485,NCBITaxon:27997,http://purl.obolibrary.org/obo/NCBITaxon_27997,none +16.9548485,NCBITaxon:280092,http://purl.obolibrary.org/obo/NCBITaxon_280092,none +16.9548485,NCBITaxon:28017,http://purl.obolibrary.org/obo/NCBITaxon_28017,none +16.9548485,NCBITaxon:28033,http://purl.obolibrary.org/obo/NCBITaxon_28033,none +16.9548485,NCBITaxon:280756,http://purl.obolibrary.org/obo/NCBITaxon_280756,none +16.9548485,NCBITaxon:2808,http://purl.obolibrary.org/obo/NCBITaxon_2808,none +16.9548485,NCBITaxon:281075,http://purl.obolibrary.org/obo/NCBITaxon_281075,none +16.9548485,NCBITaxon:2811,http://purl.obolibrary.org/obo/NCBITaxon_2811,none +16.9548485,NCBITaxon:28138,http://purl.obolibrary.org/obo/NCBITaxon_28138,none +16.9548485,NCBITaxon:28139,http://purl.obolibrary.org/obo/NCBITaxon_28139,none +16.9548485,NCBITaxon:2815258,http://purl.obolibrary.org/obo/NCBITaxon_2815258,none +16.9548485,NCBITaxon:281668,http://purl.obolibrary.org/obo/NCBITaxon_281668,none +16.9548485,NCBITaxon:2821314,http://purl.obolibrary.org/obo/NCBITaxon_2821314,none +16.9548485,NCBITaxon:2821832,http://purl.obolibrary.org/obo/NCBITaxon_2821832,none +16.9548485,NCBITaxon:2822797,http://purl.obolibrary.org/obo/NCBITaxon_2822797,none +16.9548485,NCBITaxon:282291,http://purl.obolibrary.org/obo/NCBITaxon_282291,none +16.9548485,NCBITaxon:282358,http://purl.obolibrary.org/obo/NCBITaxon_282358,none +16.9548485,NCBITaxon:282359,http://purl.obolibrary.org/obo/NCBITaxon_282359,none +16.9548485,NCBITaxon:28253,http://purl.obolibrary.org/obo/NCBITaxon_28253,none +16.9548485,NCBITaxon:282712,http://purl.obolibrary.org/obo/NCBITaxon_282712,none +16.9548485,NCBITaxon:2829815,http://purl.obolibrary.org/obo/NCBITaxon_2829815,none +16.9548485,NCBITaxon:283062,http://purl.obolibrary.org/obo/NCBITaxon_283062,none +16.9548485,NCBITaxon:28311,http://purl.obolibrary.org/obo/NCBITaxon_28311,none +16.9548485,NCBITaxon:283210,http://purl.obolibrary.org/obo/NCBITaxon_283210,none +16.9548485,NCBITaxon:28329,http://purl.obolibrary.org/obo/NCBITaxon_28329,none +16.9548485,NCBITaxon:28332,http://purl.obolibrary.org/obo/NCBITaxon_28332,none +16.9548485,NCBITaxon:283494,http://purl.obolibrary.org/obo/NCBITaxon_283494,none +16.9548485,NCBITaxon:2835889,http://purl.obolibrary.org/obo/NCBITaxon_2835889,none +16.9548485,NCBITaxon:283600,http://purl.obolibrary.org/obo/NCBITaxon_283600,none +16.9548485,NCBITaxon:283601,http://purl.obolibrary.org/obo/NCBITaxon_283601,none +16.9548485,NCBITaxon:2836337,http://purl.obolibrary.org/obo/NCBITaxon_2836337,none +16.9548485,NCBITaxon:2836342,http://purl.obolibrary.org/obo/NCBITaxon_2836342,none +16.9548485,NCBITaxon:28376,http://purl.obolibrary.org/obo/NCBITaxon_28376,none +16.9548485,NCBITaxon:283775,http://purl.obolibrary.org/obo/NCBITaxon_283775,none +16.9548485,NCBITaxon:283876,http://purl.obolibrary.org/obo/NCBITaxon_283876,none +16.9548485,NCBITaxon:283976,http://purl.obolibrary.org/obo/NCBITaxon_283976,none +16.9548485,NCBITaxon:2841720,http://purl.obolibrary.org/obo/NCBITaxon_2841720,none +16.9548485,NCBITaxon:2843011,http://purl.obolibrary.org/obo/NCBITaxon_2843011,none +16.9548485,NCBITaxon:284473,http://purl.obolibrary.org/obo/NCBITaxon_284473,none +16.9548485,NCBITaxon:2844866,http://purl.obolibrary.org/obo/NCBITaxon_2844866,none +16.9548485,NCBITaxon:284517,http://purl.obolibrary.org/obo/NCBITaxon_284517,none +16.9548485,NCBITaxon:28478,http://purl.obolibrary.org/obo/NCBITaxon_28478,none +16.9548485,NCBITaxon:285662,http://purl.obolibrary.org/obo/NCBITaxon_285662,none +16.9548485,NCBITaxon:285664,http://purl.obolibrary.org/obo/NCBITaxon_285664,none +16.9548485,NCBITaxon:2857,http://purl.obolibrary.org/obo/NCBITaxon_2857,none +16.9548485,NCBITaxon:28589,http://purl.obolibrary.org/obo/NCBITaxon_28589,none +16.9548485,NCBITaxon:285966,http://purl.obolibrary.org/obo/NCBITaxon_285966,none +16.9548485,NCBITaxon:28622,http://purl.obolibrary.org/obo/NCBITaxon_28622,none +16.9548485,NCBITaxon:28635,http://purl.obolibrary.org/obo/NCBITaxon_28635,none +16.9548485,NCBITaxon:286443,http://purl.obolibrary.org/obo/NCBITaxon_286443,none +16.9548485,NCBITaxon:286472,http://purl.obolibrary.org/obo/NCBITaxon_286472,none +16.9548485,NCBITaxon:286699,http://purl.obolibrary.org/obo/NCBITaxon_286699,none +16.9548485,NCBITaxon:28683,http://purl.obolibrary.org/obo/NCBITaxon_28683,none +16.9548485,NCBITaxon:286921,http://purl.obolibrary.org/obo/NCBITaxon_286921,none +16.9548485,NCBITaxon:286986,http://purl.obolibrary.org/obo/NCBITaxon_286986,none +16.9548485,NCBITaxon:287131,http://purl.obolibrary.org/obo/NCBITaxon_287131,none +16.9548485,NCBITaxon:28744,http://purl.obolibrary.org/obo/NCBITaxon_28744,none +16.9548485,NCBITaxon:28745,http://purl.obolibrary.org/obo/NCBITaxon_28745,none +16.9548485,NCBITaxon:28757,http://purl.obolibrary.org/obo/NCBITaxon_28757,none +16.9548485,NCBITaxon:28838,http://purl.obolibrary.org/obo/NCBITaxon_28838,none +16.9548485,NCBITaxon:288400,http://purl.obolibrary.org/obo/NCBITaxon_288400,none +16.9548485,NCBITaxon:288514,http://purl.obolibrary.org/obo/NCBITaxon_288514,none +16.9548485,NCBITaxon:288536,http://purl.obolibrary.org/obo/NCBITaxon_288536,none +16.9548485,NCBITaxon:288550,http://purl.obolibrary.org/obo/NCBITaxon_288550,none +16.9548485,NCBITaxon:288554,http://purl.obolibrary.org/obo/NCBITaxon_288554,none +16.9548485,NCBITaxon:288556,http://purl.obolibrary.org/obo/NCBITaxon_288556,none +16.9548485,NCBITaxon:288905,http://purl.obolibrary.org/obo/NCBITaxon_288905,none +16.9548485,NCBITaxon:289280,http://purl.obolibrary.org/obo/NCBITaxon_289280,none +16.9548485,NCBITaxon:28997,http://purl.obolibrary.org/obo/NCBITaxon_28997,none +16.9548485,NCBITaxon:290,http://purl.obolibrary.org/obo/NCBITaxon_290,none +16.9548485,NCBITaxon:29007,http://purl.obolibrary.org/obo/NCBITaxon_29007,none +16.9548485,NCBITaxon:290110,http://purl.obolibrary.org/obo/NCBITaxon_290110,none +16.9548485,NCBITaxon:29029,http://purl.obolibrary.org/obo/NCBITaxon_29029,none +16.9548485,NCBITaxon:29056,http://purl.obolibrary.org/obo/NCBITaxon_29056,none +16.9548485,NCBITaxon:29058,http://purl.obolibrary.org/obo/NCBITaxon_29058,none +16.9548485,NCBITaxon:290646,http://purl.obolibrary.org/obo/NCBITaxon_290646,none +16.9548485,NCBITaxon:290931,http://purl.obolibrary.org/obo/NCBITaxon_290931,none +16.9548485,NCBITaxon:290984,http://purl.obolibrary.org/obo/NCBITaxon_290984,none +16.9548485,NCBITaxon:29110,http://purl.obolibrary.org/obo/NCBITaxon_29110,none +16.9548485,NCBITaxon:29111,http://purl.obolibrary.org/obo/NCBITaxon_29111,none +16.9548485,NCBITaxon:291114,http://purl.obolibrary.org/obo/NCBITaxon_291114,none +16.9548485,NCBITaxon:291286,http://purl.obolibrary.org/obo/NCBITaxon_291286,none +16.9548485,NCBITaxon:29178,http://purl.obolibrary.org/obo/NCBITaxon_29178,Foraminifera +16.9548485,NCBITaxon:291793,http://purl.obolibrary.org/obo/NCBITaxon_291793,none +16.9548485,NCBITaxon:291892,http://purl.obolibrary.org/obo/NCBITaxon_291892,none +16.9548485,NCBITaxon:292479,http://purl.obolibrary.org/obo/NCBITaxon_292479,none +16.9548485,NCBITaxon:292917,http://purl.obolibrary.org/obo/NCBITaxon_292917,none +16.9548485,NCBITaxon:29330,http://purl.obolibrary.org/obo/NCBITaxon_29330,none +16.9548485,NCBITaxon:293473,http://purl.obolibrary.org/obo/NCBITaxon_293473,none +16.9548485,NCBITaxon:293495,http://purl.obolibrary.org/obo/NCBITaxon_293495,none +16.9548485,NCBITaxon:293504,http://purl.obolibrary.org/obo/NCBITaxon_293504,none +16.9548485,NCBITaxon:293912,http://purl.obolibrary.org/obo/NCBITaxon_293912,none +16.9548485,NCBITaxon:2942,http://purl.obolibrary.org/obo/NCBITaxon_2942,none +16.9548485,NCBITaxon:2943,http://purl.obolibrary.org/obo/NCBITaxon_2943,none +16.9548485,NCBITaxon:2944,http://purl.obolibrary.org/obo/NCBITaxon_2944,none +16.9548485,NCBITaxon:2953,http://purl.obolibrary.org/obo/NCBITaxon_2953,none +16.9548485,NCBITaxon:29564,http://purl.obolibrary.org/obo/NCBITaxon_29564,none +16.9548485,NCBITaxon:2960,http://purl.obolibrary.org/obo/NCBITaxon_2960,none +16.9548485,NCBITaxon:29607,http://purl.obolibrary.org/obo/NCBITaxon_29607,none +16.9548485,NCBITaxon:29635,http://purl.obolibrary.org/obo/NCBITaxon_29635,none +16.9548485,NCBITaxon:296559,http://purl.obolibrary.org/obo/NCBITaxon_296559,none +16.9548485,NCBITaxon:29710,http://purl.obolibrary.org/obo/NCBITaxon_29710,none +16.9548485,NCBITaxon:297249,http://purl.obolibrary.org/obo/NCBITaxon_297249,none +16.9548485,NCBITaxon:29780,http://purl.obolibrary.org/obo/NCBITaxon_29780,none +16.9548485,NCBITaxon:29811,http://purl.obolibrary.org/obo/NCBITaxon_29811,none +16.9548485,NCBITaxon:29827,http://purl.obolibrary.org/obo/NCBITaxon_29827,none +16.9548485,NCBITaxon:29828,http://purl.obolibrary.org/obo/NCBITaxon_29828,none +16.9548485,NCBITaxon:29859,http://purl.obolibrary.org/obo/NCBITaxon_29859,none +16.9548485,NCBITaxon:29901,http://purl.obolibrary.org/obo/NCBITaxon_29901,none +16.9548485,NCBITaxon:299362,http://purl.obolibrary.org/obo/NCBITaxon_299362,none +16.9548485,NCBITaxon:299648,http://purl.obolibrary.org/obo/NCBITaxon_299648,none +16.9548485,NCBITaxon:29966,http://purl.obolibrary.org/obo/NCBITaxon_29966,none +16.9548485,NCBITaxon:299666,http://purl.obolibrary.org/obo/NCBITaxon_299666,none +16.9548485,NCBITaxon:29967,http://purl.obolibrary.org/obo/NCBITaxon_29967,none +16.9548485,NCBITaxon:299683,http://purl.obolibrary.org/obo/NCBITaxon_299683,none +16.9548485,NCBITaxon:299757,http://purl.obolibrary.org/obo/NCBITaxon_299757,none +16.9548485,NCBITaxon:29993,http://purl.obolibrary.org/obo/NCBITaxon_29993,none +16.9548485,NCBITaxon:300124,http://purl.obolibrary.org/obo/NCBITaxon_300124,none +16.9548485,NCBITaxon:30017,http://purl.obolibrary.org/obo/NCBITaxon_30017,none +16.9548485,NCBITaxon:30024,http://purl.obolibrary.org/obo/NCBITaxon_30024,none +16.9548485,NCBITaxon:30026,http://purl.obolibrary.org/obo/NCBITaxon_30026,none +16.9548485,NCBITaxon:30031,http://purl.obolibrary.org/obo/NCBITaxon_30031,none +16.9548485,NCBITaxon:30039,http://purl.obolibrary.org/obo/NCBITaxon_30039,none +16.9548485,NCBITaxon:300879,http://purl.obolibrary.org/obo/NCBITaxon_300879,none +16.9548485,NCBITaxon:3010,http://purl.obolibrary.org/obo/NCBITaxon_3010,none +16.9548485,NCBITaxon:3011,http://purl.obolibrary.org/obo/NCBITaxon_3011,none +16.9548485,NCBITaxon:301453,http://purl.obolibrary.org/obo/NCBITaxon_301453,none +16.9548485,NCBITaxon:301915,http://purl.obolibrary.org/obo/NCBITaxon_301915,none +16.9548485,NCBITaxon:302099,http://purl.obolibrary.org/obo/NCBITaxon_302099,none +16.9548485,NCBITaxon:30225,http://purl.obolibrary.org/obo/NCBITaxon_30225,none +16.9548485,NCBITaxon:30262,http://purl.obolibrary.org/obo/NCBITaxon_30262,none +16.9548485,NCBITaxon:302911,http://purl.obolibrary.org/obo/NCBITaxon_302911,none +16.9548485,NCBITaxon:30335,http://purl.obolibrary.org/obo/NCBITaxon_30335,none +16.9548485,NCBITaxon:3035,http://purl.obolibrary.org/obo/NCBITaxon_3035,none +16.9548485,NCBITaxon:30366,http://purl.obolibrary.org/obo/NCBITaxon_30366,none +16.9548485,NCBITaxon:303926,http://purl.obolibrary.org/obo/NCBITaxon_303926,none +16.9548485,NCBITaxon:303996,http://purl.obolibrary.org/obo/NCBITaxon_303996,none +16.9548485,NCBITaxon:304399,http://purl.obolibrary.org/obo/NCBITaxon_304399,none +16.9548485,NCBITaxon:30444,http://purl.obolibrary.org/obo/NCBITaxon_30444,none +16.9548485,NCBITaxon:30447,http://purl.obolibrary.org/obo/NCBITaxon_30447,none +16.9548485,NCBITaxon:30448,http://purl.obolibrary.org/obo/NCBITaxon_30448,none +16.9548485,NCBITaxon:30483,http://purl.obolibrary.org/obo/NCBITaxon_30483,none +16.9548485,NCBITaxon:30527,http://purl.obolibrary.org/obo/NCBITaxon_30527,none +16.9548485,NCBITaxon:305558,http://purl.obolibrary.org/obo/NCBITaxon_305558,none +16.9548485,NCBITaxon:305559,http://purl.obolibrary.org/obo/NCBITaxon_305559,none +16.9548485,NCBITaxon:305587,http://purl.obolibrary.org/obo/NCBITaxon_305587,none +16.9548485,NCBITaxon:305609,http://purl.obolibrary.org/obo/NCBITaxon_305609,none +16.9548485,NCBITaxon:305785,http://purl.obolibrary.org/obo/NCBITaxon_305785,none +16.9548485,NCBITaxon:305976,http://purl.obolibrary.org/obo/NCBITaxon_305976,none +16.9548485,NCBITaxon:306028,http://purl.obolibrary.org/obo/NCBITaxon_306028,none +16.9548485,NCBITaxon:306029,http://purl.obolibrary.org/obo/NCBITaxon_306029,none +16.9548485,NCBITaxon:306124,http://purl.obolibrary.org/obo/NCBITaxon_306124,none +16.9548485,NCBITaxon:306483,http://purl.obolibrary.org/obo/NCBITaxon_306483,none +16.9548485,NCBITaxon:307044,http://purl.obolibrary.org/obo/NCBITaxon_307044,none +16.9548485,NCBITaxon:3071,http://purl.obolibrary.org/obo/NCBITaxon_3071,none +16.9548485,NCBITaxon:307241,http://purl.obolibrary.org/obo/NCBITaxon_307241,none +16.9548485,NCBITaxon:307265,http://purl.obolibrary.org/obo/NCBITaxon_307265,none +16.9548485,NCBITaxon:307502,http://purl.obolibrary.org/obo/NCBITaxon_307502,none +16.9548485,NCBITaxon:307583,http://purl.obolibrary.org/obo/NCBITaxon_307583,none +16.9548485,NCBITaxon:307623,http://purl.obolibrary.org/obo/NCBITaxon_307623,none +16.9548485,NCBITaxon:30769,http://purl.obolibrary.org/obo/NCBITaxon_30769,none +16.9548485,NCBITaxon:307997,http://purl.obolibrary.org/obo/NCBITaxon_307997,none +16.9548485,NCBITaxon:30828,http://purl.obolibrary.org/obo/NCBITaxon_30828,none +16.9548485,NCBITaxon:30851,http://purl.obolibrary.org/obo/NCBITaxon_30851,none +16.9548485,NCBITaxon:3086,http://purl.obolibrary.org/obo/NCBITaxon_3086,none +16.9548485,NCBITaxon:30862,http://purl.obolibrary.org/obo/NCBITaxon_30862,none +16.9548485,NCBITaxon:308660,http://purl.obolibrary.org/obo/NCBITaxon_308660,none +16.9548485,NCBITaxon:30875,http://purl.obolibrary.org/obo/NCBITaxon_30875,none +16.9548485,NCBITaxon:30876,http://purl.obolibrary.org/obo/NCBITaxon_30876,none +16.9548485,NCBITaxon:308911,http://purl.obolibrary.org/obo/NCBITaxon_308911,none +16.9548485,NCBITaxon:309000,http://purl.obolibrary.org/obo/NCBITaxon_309000,none +16.9548485,NCBITaxon:309001,http://purl.obolibrary.org/obo/NCBITaxon_309001,none +16.9548485,NCBITaxon:30918,http://purl.obolibrary.org/obo/NCBITaxon_30918,none +16.9548485,NCBITaxon:309576,http://purl.obolibrary.org/obo/NCBITaxon_309576,none +16.9548485,NCBITaxon:30988,http://purl.obolibrary.org/obo/NCBITaxon_30988,none +16.9548485,NCBITaxon:309910,http://purl.obolibrary.org/obo/NCBITaxon_309910,none +16.9548485,NCBITaxon:30992,http://purl.obolibrary.org/obo/NCBITaxon_30992,none +16.9548485,NCBITaxon:30993,http://purl.obolibrary.org/obo/NCBITaxon_30993,none +16.9548485,NCBITaxon:309934,http://purl.obolibrary.org/obo/NCBITaxon_309934,none +16.9548485,NCBITaxon:309979,http://purl.obolibrary.org/obo/NCBITaxon_309979,none +16.9548485,NCBITaxon:30998,http://purl.obolibrary.org/obo/NCBITaxon_30998,none +16.9548485,NCBITaxon:310103,http://purl.obolibrary.org/obo/NCBITaxon_310103,none +16.9548485,NCBITaxon:31017,http://purl.obolibrary.org/obo/NCBITaxon_31017,none +16.9548485,NCBITaxon:310426,http://purl.obolibrary.org/obo/NCBITaxon_310426,none +16.9548485,NCBITaxon:310748,http://purl.obolibrary.org/obo/NCBITaxon_310748,none +16.9548485,NCBITaxon:31091,http://purl.obolibrary.org/obo/NCBITaxon_31091,none +16.9548485,NCBITaxon:311220,http://purl.obolibrary.org/obo/NCBITaxon_311220,none +16.9548485,NCBITaxon:311329,http://purl.obolibrary.org/obo/NCBITaxon_311329,none +16.9548485,NCBITaxon:311330,http://purl.obolibrary.org/obo/NCBITaxon_311330,none +16.9548485,NCBITaxon:311453,http://purl.obolibrary.org/obo/NCBITaxon_311453,none +16.9548485,NCBITaxon:311474,http://purl.obolibrary.org/obo/NCBITaxon_311474,none +16.9548485,NCBITaxon:311479,http://purl.obolibrary.org/obo/NCBITaxon_311479,none +16.9548485,NCBITaxon:311552,http://purl.obolibrary.org/obo/NCBITaxon_311552,none +16.9548485,NCBITaxon:311778,http://purl.obolibrary.org/obo/NCBITaxon_311778,none +16.9548485,NCBITaxon:311780,http://purl.obolibrary.org/obo/NCBITaxon_311780,none +16.9548485,NCBITaxon:312274,http://purl.obolibrary.org/obo/NCBITaxon_312274,none +16.9548485,NCBITaxon:312275,http://purl.obolibrary.org/obo/NCBITaxon_312275,none +16.9548485,NCBITaxon:3128,http://purl.obolibrary.org/obo/NCBITaxon_3128,none +16.9548485,NCBITaxon:3129,http://purl.obolibrary.org/obo/NCBITaxon_3129,none +16.9548485,NCBITaxon:31291,http://purl.obolibrary.org/obo/NCBITaxon_31291,none +16.9548485,NCBITaxon:31294,http://purl.obolibrary.org/obo/NCBITaxon_31294,none +16.9548485,NCBITaxon:31295,http://purl.obolibrary.org/obo/NCBITaxon_31295,none +16.9548485,NCBITaxon:31299,http://purl.obolibrary.org/obo/NCBITaxon_31299,none +16.9548485,NCBITaxon:312998,http://purl.obolibrary.org/obo/NCBITaxon_312998,none +16.9548485,NCBITaxon:3131,http://purl.obolibrary.org/obo/NCBITaxon_3131,none +16.9548485,NCBITaxon:3132,http://purl.obolibrary.org/obo/NCBITaxon_3132,none +16.9548485,NCBITaxon:313250,http://purl.obolibrary.org/obo/NCBITaxon_313250,none +16.9548485,NCBITaxon:3133,http://purl.obolibrary.org/obo/NCBITaxon_3133,none +16.9548485,NCBITaxon:31334,http://purl.obolibrary.org/obo/NCBITaxon_31334,none +16.9548485,NCBITaxon:31335,http://purl.obolibrary.org/obo/NCBITaxon_31335,none +16.9548485,NCBITaxon:3134,http://purl.obolibrary.org/obo/NCBITaxon_3134,none +16.9548485,NCBITaxon:3136,http://purl.obolibrary.org/obo/NCBITaxon_3136,none +16.9548485,NCBITaxon:31380,http://purl.obolibrary.org/obo/NCBITaxon_31380,none +16.9548485,NCBITaxon:31395,http://purl.obolibrary.org/obo/NCBITaxon_31395,none +16.9548485,NCBITaxon:31396,http://purl.obolibrary.org/obo/NCBITaxon_31396,none +16.9548485,NCBITaxon:313966,http://purl.obolibrary.org/obo/NCBITaxon_313966,none +16.9548485,NCBITaxon:31399,http://purl.obolibrary.org/obo/NCBITaxon_31399,none +16.9548485,NCBITaxon:314001,http://purl.obolibrary.org/obo/NCBITaxon_314001,none +16.9548485,NCBITaxon:31427,http://purl.obolibrary.org/obo/NCBITaxon_31427,none +16.9548485,NCBITaxon:31428,http://purl.obolibrary.org/obo/NCBITaxon_31428,none +16.9548485,NCBITaxon:31429,http://purl.obolibrary.org/obo/NCBITaxon_31429,none +16.9548485,NCBITaxon:314538,http://purl.obolibrary.org/obo/NCBITaxon_314538,none +16.9548485,NCBITaxon:31470,http://purl.obolibrary.org/obo/NCBITaxon_31470,none +16.9548485,NCBITaxon:3148,http://purl.obolibrary.org/obo/NCBITaxon_3148,none +16.9548485,NCBITaxon:31530,http://purl.obolibrary.org/obo/NCBITaxon_31530,none +16.9548485,NCBITaxon:31535,http://purl.obolibrary.org/obo/NCBITaxon_31535,none +16.9548485,NCBITaxon:315361,http://purl.obolibrary.org/obo/NCBITaxon_315361,none +16.9548485,NCBITaxon:315362,http://purl.obolibrary.org/obo/NCBITaxon_315362,none +16.9548485,NCBITaxon:31544,http://purl.obolibrary.org/obo/NCBITaxon_31544,none +16.9548485,NCBITaxon:31548,http://purl.obolibrary.org/obo/NCBITaxon_31548,none +16.9548485,NCBITaxon:31588,http://purl.obolibrary.org/obo/NCBITaxon_31588,none +16.9548485,NCBITaxon:316,http://purl.obolibrary.org/obo/NCBITaxon_316,none +16.9548485,NCBITaxon:316164,http://purl.obolibrary.org/obo/NCBITaxon_316164,none +16.9548485,NCBITaxon:316166,http://purl.obolibrary.org/obo/NCBITaxon_316166,none +16.9548485,NCBITaxon:3164,http://purl.obolibrary.org/obo/NCBITaxon_3164,none +16.9548485,NCBITaxon:31640,http://purl.obolibrary.org/obo/NCBITaxon_31640,none +16.9548485,NCBITaxon:31655,http://purl.obolibrary.org/obo/NCBITaxon_31655,none +16.9548485,NCBITaxon:31669,http://purl.obolibrary.org/obo/NCBITaxon_31669,none +16.9548485,NCBITaxon:31670,http://purl.obolibrary.org/obo/NCBITaxon_31670,none +16.9548485,NCBITaxon:31704,http://purl.obolibrary.org/obo/NCBITaxon_31704,Coxsackievirus A16 +16.9548485,NCBITaxon:317594,http://purl.obolibrary.org/obo/NCBITaxon_317594,none +16.9548485,NCBITaxon:317595,http://purl.obolibrary.org/obo/NCBITaxon_317595,none +16.9548485,NCBITaxon:317611,http://purl.obolibrary.org/obo/NCBITaxon_317611,none +16.9548485,NCBITaxon:317657,http://purl.obolibrary.org/obo/NCBITaxon_317657,none +16.9548485,NCBITaxon:317856,http://purl.obolibrary.org/obo/NCBITaxon_317856,none +16.9548485,NCBITaxon:317926,http://purl.obolibrary.org/obo/NCBITaxon_317926,none +16.9548485,NCBITaxon:318117,http://purl.obolibrary.org/obo/NCBITaxon_318117,none +16.9548485,NCBITaxon:3183,http://purl.obolibrary.org/obo/NCBITaxon_3183,none +16.9548485,NCBITaxon:318408,http://purl.obolibrary.org/obo/NCBITaxon_318408,none +16.9548485,NCBITaxon:318410,http://purl.obolibrary.org/obo/NCBITaxon_318410,none +16.9548485,NCBITaxon:3185,http://purl.obolibrary.org/obo/NCBITaxon_3185,none +16.9548485,NCBITaxon:318846,http://purl.obolibrary.org/obo/NCBITaxon_318846,none +16.9548485,NCBITaxon:318852,http://purl.obolibrary.org/obo/NCBITaxon_318852,none +16.9548485,NCBITaxon:319068,http://purl.obolibrary.org/obo/NCBITaxon_319068,none +16.9548485,NCBITaxon:319071,http://purl.obolibrary.org/obo/NCBITaxon_319071,none +16.9548485,NCBITaxon:3199,http://purl.obolibrary.org/obo/NCBITaxon_3199,none +16.9548485,NCBITaxon:3200,http://purl.obolibrary.org/obo/NCBITaxon_3200,none +16.9548485,NCBITaxon:320025,http://purl.obolibrary.org/obo/NCBITaxon_320025,none +16.9548485,NCBITaxon:320028,http://purl.obolibrary.org/obo/NCBITaxon_320028,none +16.9548485,NCBITaxon:320029,http://purl.obolibrary.org/obo/NCBITaxon_320029,none +16.9548485,NCBITaxon:32011,http://purl.obolibrary.org/obo/NCBITaxon_32011,none +16.9548485,NCBITaxon:32032,http://purl.obolibrary.org/obo/NCBITaxon_32032,none +16.9548485,NCBITaxon:32062,http://purl.obolibrary.org/obo/NCBITaxon_32062,none +16.9548485,NCBITaxon:32066,http://purl.obolibrary.org/obo/NCBITaxon_32066,Fusobacteria +16.9548485,NCBITaxon:320917,http://purl.obolibrary.org/obo/NCBITaxon_320917,none +16.9548485,NCBITaxon:321373,http://purl.obolibrary.org/obo/NCBITaxon_321373,none +16.9548485,NCBITaxon:321374,http://purl.obolibrary.org/obo/NCBITaxon_321374,none +16.9548485,NCBITaxon:322,http://purl.obolibrary.org/obo/NCBITaxon_322,none +16.9548485,NCBITaxon:32203,http://purl.obolibrary.org/obo/NCBITaxon_32203,none +16.9548485,NCBITaxon:32205,http://purl.obolibrary.org/obo/NCBITaxon_32205,none +16.9548485,NCBITaxon:32207,http://purl.obolibrary.org/obo/NCBITaxon_32207,none +16.9548485,NCBITaxon:322613,http://purl.obolibrary.org/obo/NCBITaxon_322613,none +16.9548485,NCBITaxon:323,http://purl.obolibrary.org/obo/NCBITaxon_323,none +16.9548485,NCBITaxon:32301,http://purl.obolibrary.org/obo/NCBITaxon_32301,none +16.9548485,NCBITaxon:323202,http://purl.obolibrary.org/obo/NCBITaxon_323202,none +16.9548485,NCBITaxon:323203,http://purl.obolibrary.org/obo/NCBITaxon_323203,none +16.9548485,NCBITaxon:323266,http://purl.obolibrary.org/obo/NCBITaxon_323266,none +16.9548485,NCBITaxon:3233,http://purl.obolibrary.org/obo/NCBITaxon_3233,none +16.9548485,NCBITaxon:323362,http://purl.obolibrary.org/obo/NCBITaxon_323362,none +16.9548485,NCBITaxon:323374,http://purl.obolibrary.org/obo/NCBITaxon_323374,none +16.9548485,NCBITaxon:323382,http://purl.obolibrary.org/obo/NCBITaxon_323382,none +16.9548485,NCBITaxon:32345,http://purl.obolibrary.org/obo/NCBITaxon_32345,none +16.9548485,NCBITaxon:32349,http://purl.obolibrary.org/obo/NCBITaxon_32349,none +16.9548485,NCBITaxon:32361,http://purl.obolibrary.org/obo/NCBITaxon_32361,none +16.9548485,NCBITaxon:32362,http://purl.obolibrary.org/obo/NCBITaxon_32362,none +16.9548485,NCBITaxon:32374,http://purl.obolibrary.org/obo/NCBITaxon_32374,none +16.9548485,NCBITaxon:32375,http://purl.obolibrary.org/obo/NCBITaxon_32375,none +16.9548485,NCBITaxon:324084,http://purl.obolibrary.org/obo/NCBITaxon_324084,none +16.9548485,NCBITaxon:32417,http://purl.obolibrary.org/obo/NCBITaxon_32417,none +16.9548485,NCBITaxon:324901,http://purl.obolibrary.org/obo/NCBITaxon_324901,none +16.9548485,NCBITaxon:32512,http://purl.obolibrary.org/obo/NCBITaxon_32512,none +16.9548485,NCBITaxon:3254,http://purl.obolibrary.org/obo/NCBITaxon_3254,none +16.9548485,NCBITaxon:3255,http://purl.obolibrary.org/obo/NCBITaxon_3255,none +16.9548485,NCBITaxon:3256,http://purl.obolibrary.org/obo/NCBITaxon_3256,none +16.9548485,NCBITaxon:32560,http://purl.obolibrary.org/obo/NCBITaxon_32560,none +16.9548485,NCBITaxon:3257,http://purl.obolibrary.org/obo/NCBITaxon_3257,none +16.9548485,NCBITaxon:32621,http://purl.obolibrary.org/obo/NCBITaxon_32621,none +16.9548485,NCBITaxon:32623,http://purl.obolibrary.org/obo/NCBITaxon_32623,none +16.9548485,NCBITaxon:32627,http://purl.obolibrary.org/obo/NCBITaxon_32627,none +16.9548485,NCBITaxon:326811,http://purl.obolibrary.org/obo/NCBITaxon_326811,none +16.9548485,NCBITaxon:327263,http://purl.obolibrary.org/obo/NCBITaxon_327263,none +16.9548485,NCBITaxon:3275,http://purl.obolibrary.org/obo/NCBITaxon_3275,none +16.9548485,NCBITaxon:327761,http://purl.obolibrary.org/obo/NCBITaxon_327761,none +16.9548485,NCBITaxon:327762,http://purl.obolibrary.org/obo/NCBITaxon_327762,none +16.9548485,NCBITaxon:3278,http://purl.obolibrary.org/obo/NCBITaxon_3278,none +16.9548485,NCBITaxon:328622,http://purl.obolibrary.org/obo/NCBITaxon_328622,none +16.9548485,NCBITaxon:329032,http://purl.obolibrary.org/obo/NCBITaxon_329032,none +16.9548485,NCBITaxon:329048,http://purl.obolibrary.org/obo/NCBITaxon_329048,none +16.9548485,NCBITaxon:329116,http://purl.obolibrary.org/obo/NCBITaxon_329116,none +16.9548485,NCBITaxon:329158,http://purl.obolibrary.org/obo/NCBITaxon_329158,none +16.9548485,NCBITaxon:329380,http://purl.obolibrary.org/obo/NCBITaxon_329380,none +16.9548485,NCBITaxon:3296,http://purl.obolibrary.org/obo/NCBITaxon_3296,none +16.9548485,NCBITaxon:3297,http://purl.obolibrary.org/obo/NCBITaxon_3297,none +16.9548485,NCBITaxon:33001,http://purl.obolibrary.org/obo/NCBITaxon_33001,none +16.9548485,NCBITaxon:33038,http://purl.obolibrary.org/obo/NCBITaxon_33038,none +16.9548485,NCBITaxon:330395,http://purl.obolibrary.org/obo/NCBITaxon_330395,none +16.9548485,NCBITaxon:33042,http://purl.obolibrary.org/obo/NCBITaxon_33042,none +16.9548485,NCBITaxon:33067,http://purl.obolibrary.org/obo/NCBITaxon_33067,none +16.9548485,NCBITaxon:33070,http://purl.obolibrary.org/obo/NCBITaxon_33070,none +16.9548485,NCBITaxon:3308,http://purl.obolibrary.org/obo/NCBITaxon_3308,none +16.9548485,NCBITaxon:330887,http://purl.obolibrary.org/obo/NCBITaxon_330887,none +16.9548485,NCBITaxon:3309,http://purl.obolibrary.org/obo/NCBITaxon_3309,none +16.9548485,NCBITaxon:33093,http://purl.obolibrary.org/obo/NCBITaxon_33093,none +16.9548485,NCBITaxon:330947,http://purl.obolibrary.org/obo/NCBITaxon_330947,none +16.9548485,NCBITaxon:3310,http://purl.obolibrary.org/obo/NCBITaxon_3310,none +16.9548485,NCBITaxon:331202,http://purl.obolibrary.org/obo/NCBITaxon_331202,none +16.9548485,NCBITaxon:331625,http://purl.obolibrary.org/obo/NCBITaxon_331625,none +16.9548485,NCBITaxon:3319,http://purl.obolibrary.org/obo/NCBITaxon_3319,none +16.9548485,NCBITaxon:33196,http://purl.obolibrary.org/obo/NCBITaxon_33196,none +16.9548485,NCBITaxon:331975,http://purl.obolibrary.org/obo/NCBITaxon_331975,none +16.9548485,NCBITaxon:33198,http://purl.obolibrary.org/obo/NCBITaxon_33198,none +16.9548485,NCBITaxon:33202,http://purl.obolibrary.org/obo/NCBITaxon_33202,none +16.9548485,NCBITaxon:332112,http://purl.obolibrary.org/obo/NCBITaxon_332112,none +16.9548485,NCBITaxon:3325,http://purl.obolibrary.org/obo/NCBITaxon_3325,none +16.9548485,NCBITaxon:33266,http://purl.obolibrary.org/obo/NCBITaxon_33266,none +16.9548485,NCBITaxon:33269,http://purl.obolibrary.org/obo/NCBITaxon_33269,none +16.9548485,NCBITaxon:33312,http://purl.obolibrary.org/obo/NCBITaxon_33312,none +16.9548485,NCBITaxon:333344,http://purl.obolibrary.org/obo/NCBITaxon_333344,none +16.9548485,NCBITaxon:33359,http://purl.obolibrary.org/obo/NCBITaxon_33359,none +16.9548485,NCBITaxon:333669,http://purl.obolibrary.org/obo/NCBITaxon_333669,none +16.9548485,NCBITaxon:33367,http://purl.obolibrary.org/obo/NCBITaxon_33367,none +16.9548485,NCBITaxon:33372,http://purl.obolibrary.org/obo/NCBITaxon_33372,none +16.9548485,NCBITaxon:333759,http://purl.obolibrary.org/obo/NCBITaxon_333759,none +16.9548485,NCBITaxon:333764,http://purl.obolibrary.org/obo/NCBITaxon_333764,none +16.9548485,NCBITaxon:333771,http://purl.obolibrary.org/obo/NCBITaxon_333771,none +16.9548485,NCBITaxon:333772,http://purl.obolibrary.org/obo/NCBITaxon_333772,none +16.9548485,NCBITaxon:3339,http://purl.obolibrary.org/obo/NCBITaxon_3339,none +16.9548485,NCBITaxon:333928,http://purl.obolibrary.org/obo/NCBITaxon_333928,none +16.9548485,NCBITaxon:333929,http://purl.obolibrary.org/obo/NCBITaxon_333929,none +16.9548485,NCBITaxon:333933,http://purl.obolibrary.org/obo/NCBITaxon_333933,none +16.9548485,NCBITaxon:33407,http://purl.obolibrary.org/obo/NCBITaxon_33407,none +16.9548485,NCBITaxon:33408,http://purl.obolibrary.org/obo/NCBITaxon_33408,none +16.9548485,NCBITaxon:33416,http://purl.obolibrary.org/obo/NCBITaxon_33416,none +16.9548485,NCBITaxon:334204,http://purl.obolibrary.org/obo/NCBITaxon_334204,none +16.9548485,NCBITaxon:334205,http://purl.obolibrary.org/obo/NCBITaxon_334205,none +16.9548485,NCBITaxon:334211,http://purl.obolibrary.org/obo/NCBITaxon_334211,none +16.9548485,NCBITaxon:334514,http://purl.obolibrary.org/obo/NCBITaxon_334514,none +16.9548485,NCBITaxon:334900,http://purl.obolibrary.org/obo/NCBITaxon_334900,none +16.9548485,NCBITaxon:334904,http://purl.obolibrary.org/obo/NCBITaxon_334904,none +16.9548485,NCBITaxon:335187,http://purl.obolibrary.org/obo/NCBITaxon_335187,none +16.9548485,NCBITaxon:33527,http://purl.obolibrary.org/obo/NCBITaxon_33527,none +16.9548485,NCBITaxon:33528,http://purl.obolibrary.org/obo/NCBITaxon_33528,none +16.9548485,NCBITaxon:335399,http://purl.obolibrary.org/obo/NCBITaxon_335399,none +16.9548485,NCBITaxon:3358,http://purl.obolibrary.org/obo/NCBITaxon_3358,none +16.9548485,NCBITaxon:335911,http://purl.obolibrary.org/obo/NCBITaxon_335911,none +16.9548485,NCBITaxon:335928,http://purl.obolibrary.org/obo/NCBITaxon_335928,none +16.9548485,NCBITaxon:3363,http://purl.obolibrary.org/obo/NCBITaxon_3363,none +16.9548485,NCBITaxon:33656,http://purl.obolibrary.org/obo/NCBITaxon_33656,none +16.9548485,NCBITaxon:336629,http://purl.obolibrary.org/obo/NCBITaxon_336629,none +16.9548485,NCBITaxon:33710,http://purl.obolibrary.org/obo/NCBITaxon_33710,none +16.9548485,NCBITaxon:33713,http://purl.obolibrary.org/obo/NCBITaxon_33713,none +16.9548485,NCBITaxon:337229,http://purl.obolibrary.org/obo/NCBITaxon_337229,none +16.9548485,NCBITaxon:33747,http://purl.obolibrary.org/obo/NCBITaxon_33747,none +16.9548485,NCBITaxon:337669,http://purl.obolibrary.org/obo/NCBITaxon_337669,none +16.9548485,NCBITaxon:337737,http://purl.obolibrary.org/obo/NCBITaxon_337737,none +16.9548485,NCBITaxon:337738,http://purl.obolibrary.org/obo/NCBITaxon_337738,none +16.9548485,NCBITaxon:337760,http://purl.obolibrary.org/obo/NCBITaxon_337760,none +16.9548485,NCBITaxon:337761,http://purl.obolibrary.org/obo/NCBITaxon_337761,none +16.9548485,NCBITaxon:337822,http://purl.obolibrary.org/obo/NCBITaxon_337822,none +16.9548485,NCBITaxon:33825,http://purl.obolibrary.org/obo/NCBITaxon_33825,none +16.9548485,NCBITaxon:338324,http://purl.obolibrary.org/obo/NCBITaxon_338324,none +16.9548485,NCBITaxon:33836,http://purl.obolibrary.org/obo/NCBITaxon_33836,none +16.9548485,NCBITaxon:33837,http://purl.obolibrary.org/obo/NCBITaxon_33837,none +16.9548485,NCBITaxon:33846,http://purl.obolibrary.org/obo/NCBITaxon_33846,none +16.9548485,NCBITaxon:33847,http://purl.obolibrary.org/obo/NCBITaxon_33847,none +16.9548485,NCBITaxon:338478,http://purl.obolibrary.org/obo/NCBITaxon_338478,none +16.9548485,NCBITaxon:33851,http://purl.obolibrary.org/obo/NCBITaxon_33851,none +16.9548485,NCBITaxon:33852,http://purl.obolibrary.org/obo/NCBITaxon_33852,none +16.9548485,NCBITaxon:338561,http://purl.obolibrary.org/obo/NCBITaxon_338561,none +16.9548485,NCBITaxon:338713,http://purl.obolibrary.org/obo/NCBITaxon_338713,none +16.9548485,NCBITaxon:338781,http://purl.obolibrary.org/obo/NCBITaxon_338781,none +16.9548485,NCBITaxon:3394,http://purl.obolibrary.org/obo/NCBITaxon_3394,none +16.9548485,NCBITaxon:3395,http://purl.obolibrary.org/obo/NCBITaxon_3395,none +16.9548485,NCBITaxon:340080,http://purl.obolibrary.org/obo/NCBITaxon_340080,none +16.9548485,NCBITaxon:340196,http://purl.obolibrary.org/obo/NCBITaxon_340196,none +16.9548485,NCBITaxon:34037,http://purl.obolibrary.org/obo/NCBITaxon_34037,none +16.9548485,NCBITaxon:34038,http://purl.obolibrary.org/obo/NCBITaxon_34038,none +16.9548485,NCBITaxon:340896,http://purl.obolibrary.org/obo/NCBITaxon_340896,none +16.9548485,NCBITaxon:341034,http://purl.obolibrary.org/obo/NCBITaxon_341034,none +16.9548485,NCBITaxon:341049,http://purl.obolibrary.org/obo/NCBITaxon_341049,none +16.9548485,NCBITaxon:341085,http://purl.obolibrary.org/obo/NCBITaxon_341085,none +16.9548485,NCBITaxon:34109,http://purl.obolibrary.org/obo/NCBITaxon_34109,none +16.9548485,NCBITaxon:341111,http://purl.obolibrary.org/obo/NCBITaxon_341111,none +16.9548485,NCBITaxon:3424,http://purl.obolibrary.org/obo/NCBITaxon_3424,none +16.9548485,NCBITaxon:342424,http://purl.obolibrary.org/obo/NCBITaxon_342424,none +16.9548485,NCBITaxon:342428,http://purl.obolibrary.org/obo/NCBITaxon_342428,none +16.9548485,NCBITaxon:34316,http://purl.obolibrary.org/obo/NCBITaxon_34316,none +16.9548485,NCBITaxon:3434,http://purl.obolibrary.org/obo/NCBITaxon_3434,none +16.9548485,NCBITaxon:343462,http://purl.obolibrary.org/obo/NCBITaxon_343462,none +16.9548485,NCBITaxon:3435,http://purl.obolibrary.org/obo/NCBITaxon_3435,none +16.9548485,NCBITaxon:343563,http://purl.obolibrary.org/obo/NCBITaxon_343563,none +16.9548485,NCBITaxon:343580,http://purl.obolibrary.org/obo/NCBITaxon_343580,none +16.9548485,NCBITaxon:34366,http://purl.obolibrary.org/obo/NCBITaxon_34366,none +16.9548485,NCBITaxon:34374,http://purl.obolibrary.org/obo/NCBITaxon_34374,none +16.9548485,NCBITaxon:34379,http://purl.obolibrary.org/obo/NCBITaxon_34379,none +16.9548485,NCBITaxon:343848,http://purl.obolibrary.org/obo/NCBITaxon_343848,none +16.9548485,NCBITaxon:343870,http://purl.obolibrary.org/obo/NCBITaxon_343870,none +16.9548485,NCBITaxon:34399,http://purl.obolibrary.org/obo/NCBITaxon_34399,none +16.9548485,NCBITaxon:344593,http://purl.obolibrary.org/obo/NCBITaxon_344593,none +16.9548485,NCBITaxon:34481,http://purl.obolibrary.org/obo/NCBITaxon_34481,none +16.9548485,NCBITaxon:34484,http://purl.obolibrary.org/obo/NCBITaxon_34484,none +16.9548485,NCBITaxon:344905,http://purl.obolibrary.org/obo/NCBITaxon_344905,none +16.9548485,NCBITaxon:344970,http://purl.obolibrary.org/obo/NCBITaxon_344970,none +16.9548485,NCBITaxon:345201,http://purl.obolibrary.org/obo/NCBITaxon_345201,none +16.9548485,NCBITaxon:34527,http://purl.obolibrary.org/obo/NCBITaxon_34527,none +16.9548485,NCBITaxon:3458,http://purl.obolibrary.org/obo/NCBITaxon_3458,none +16.9548485,NCBITaxon:34585,http://purl.obolibrary.org/obo/NCBITaxon_34585,none +16.9548485,NCBITaxon:3459,http://purl.obolibrary.org/obo/NCBITaxon_3459,none +16.9548485,NCBITaxon:345921,http://purl.obolibrary.org/obo/NCBITaxon_345921,none +16.9548485,NCBITaxon:34598,http://purl.obolibrary.org/obo/NCBITaxon_34598,none +16.9548485,NCBITaxon:346,http://purl.obolibrary.org/obo/NCBITaxon_346,none +16.9548485,NCBITaxon:346250,http://purl.obolibrary.org/obo/NCBITaxon_346250,none +16.9548485,NCBITaxon:34634,http://purl.obolibrary.org/obo/NCBITaxon_34634,none +16.9548485,NCBITaxon:34635,http://purl.obolibrary.org/obo/NCBITaxon_34635,none +16.9548485,NCBITaxon:346472,http://purl.obolibrary.org/obo/NCBITaxon_346472,none +16.9548485,NCBITaxon:34652,http://purl.obolibrary.org/obo/NCBITaxon_34652,none +16.9548485,NCBITaxon:346646,http://purl.obolibrary.org/obo/NCBITaxon_346646,none +16.9548485,NCBITaxon:34672,http://purl.obolibrary.org/obo/NCBITaxon_34672,none +16.9548485,NCBITaxon:34675,http://purl.obolibrary.org/obo/NCBITaxon_34675,none +16.9548485,NCBITaxon:34677,http://purl.obolibrary.org/obo/NCBITaxon_34677,none +16.9548485,NCBITaxon:346881,http://purl.obolibrary.org/obo/NCBITaxon_346881,none +16.9548485,NCBITaxon:346882,http://purl.obolibrary.org/obo/NCBITaxon_346882,none +16.9548485,NCBITaxon:34696,http://purl.obolibrary.org/obo/NCBITaxon_34696,none +16.9548485,NCBITaxon:347327,http://purl.obolibrary.org/obo/NCBITaxon_347327,none +16.9548485,NCBITaxon:347426,http://purl.obolibrary.org/obo/NCBITaxon_347426,none +16.9548485,NCBITaxon:34754,http://purl.obolibrary.org/obo/NCBITaxon_34754,none +16.9548485,NCBITaxon:34780,http://purl.obolibrary.org/obo/NCBITaxon_34780,none +16.9548485,NCBITaxon:348008,http://purl.obolibrary.org/obo/NCBITaxon_348008,none +16.9548485,NCBITaxon:348011,http://purl.obolibrary.org/obo/NCBITaxon_348011,none +16.9548485,NCBITaxon:348012,http://purl.obolibrary.org/obo/NCBITaxon_348012,none +16.9548485,NCBITaxon:348014,http://purl.obolibrary.org/obo/NCBITaxon_348014,none +16.9548485,NCBITaxon:348058,http://purl.obolibrary.org/obo/NCBITaxon_348058,none +16.9548485,NCBITaxon:34821,http://purl.obolibrary.org/obo/NCBITaxon_34821,none +16.9548485,NCBITaxon:348296,http://purl.obolibrary.org/obo/NCBITaxon_348296,none +16.9548485,NCBITaxon:3483,http://purl.obolibrary.org/obo/NCBITaxon_3483,none +16.9548485,NCBITaxon:348386,http://purl.obolibrary.org/obo/NCBITaxon_348386,unclassified Lentivirus +16.9548485,NCBITaxon:34869,http://purl.obolibrary.org/obo/NCBITaxon_34869,none +16.9548485,NCBITaxon:34878,http://purl.obolibrary.org/obo/NCBITaxon_34878,none +16.9548485,NCBITaxon:34991,http://purl.obolibrary.org/obo/NCBITaxon_34991,none +16.9548485,NCBITaxon:349944,http://purl.obolibrary.org/obo/NCBITaxon_349944,none +16.9548485,NCBITaxon:3500,http://purl.obolibrary.org/obo/NCBITaxon_3500,none +16.9548485,NCBITaxon:35076,http://purl.obolibrary.org/obo/NCBITaxon_35076,none +16.9548485,NCBITaxon:350832,http://purl.obolibrary.org/obo/NCBITaxon_350832,none +16.9548485,NCBITaxon:351,http://purl.obolibrary.org/obo/NCBITaxon_351,none +16.9548485,NCBITaxon:351047,http://purl.obolibrary.org/obo/NCBITaxon_351047,none +16.9548485,NCBITaxon:351054,http://purl.obolibrary.org/obo/NCBITaxon_351054,none +16.9548485,NCBITaxon:351071,http://purl.obolibrary.org/obo/NCBITaxon_351071,none +16.9548485,NCBITaxon:35140,http://purl.obolibrary.org/obo/NCBITaxon_35140,none +16.9548485,NCBITaxon:3515,http://purl.obolibrary.org/obo/NCBITaxon_3515,none +16.9548485,NCBITaxon:352,http://purl.obolibrary.org/obo/NCBITaxon_352,none +16.9548485,NCBITaxon:352472,http://purl.obolibrary.org/obo/NCBITaxon_352472,none +16.9548485,NCBITaxon:352476,http://purl.obolibrary.org/obo/NCBITaxon_352476,none +16.9548485,NCBITaxon:352479,http://purl.obolibrary.org/obo/NCBITaxon_352479,none +16.9548485,NCBITaxon:35248,http://purl.obolibrary.org/obo/NCBITaxon_35248,none +16.9548485,NCBITaxon:35255,http://purl.obolibrary.org/obo/NCBITaxon_35255,none +16.9548485,NCBITaxon:35292,http://purl.obolibrary.org/obo/NCBITaxon_35292,none +16.9548485,NCBITaxon:35319,http://purl.obolibrary.org/obo/NCBITaxon_35319,none +16.9548485,NCBITaxon:35330,http://purl.obolibrary.org/obo/NCBITaxon_35330,none +16.9548485,NCBITaxon:35336,http://purl.obolibrary.org/obo/NCBITaxon_35336,none +16.9548485,NCBITaxon:3537,http://purl.obolibrary.org/obo/NCBITaxon_3537,none +16.9548485,NCBITaxon:3540,http://purl.obolibrary.org/obo/NCBITaxon_3540,none +16.9548485,NCBITaxon:354074,http://purl.obolibrary.org/obo/NCBITaxon_354074,none +16.9548485,NCBITaxon:354259,http://purl.obolibrary.org/obo/NCBITaxon_354259,none +16.9548485,NCBITaxon:35426,http://purl.obolibrary.org/obo/NCBITaxon_35426,none +16.9548485,NCBITaxon:35429,http://purl.obolibrary.org/obo/NCBITaxon_35429,none +16.9548485,NCBITaxon:35436,http://purl.obolibrary.org/obo/NCBITaxon_35436,none +16.9548485,NCBITaxon:35491,http://purl.obolibrary.org/obo/NCBITaxon_35491,none +16.9548485,NCBITaxon:35509,http://purl.obolibrary.org/obo/NCBITaxon_35509,none +16.9548485,NCBITaxon:3554,http://purl.obolibrary.org/obo/NCBITaxon_3554,none +16.9548485,NCBITaxon:3558,http://purl.obolibrary.org/obo/NCBITaxon_3558,none +16.9548485,NCBITaxon:35584,http://purl.obolibrary.org/obo/NCBITaxon_35584,none +16.9548485,NCBITaxon:3561,http://purl.obolibrary.org/obo/NCBITaxon_3561,none +16.9548485,NCBITaxon:356113,http://purl.obolibrary.org/obo/NCBITaxon_356113,none +16.9548485,NCBITaxon:356255,http://purl.obolibrary.org/obo/NCBITaxon_356255,none +16.9548485,NCBITaxon:35658,http://purl.obolibrary.org/obo/NCBITaxon_35658,none +16.9548485,NCBITaxon:3571,http://purl.obolibrary.org/obo/NCBITaxon_3571,none +16.9548485,NCBITaxon:35715,http://purl.obolibrary.org/obo/NCBITaxon_35715,none +16.9548485,NCBITaxon:357352,http://purl.obolibrary.org/obo/NCBITaxon_357352,none +16.9548485,NCBITaxon:357688,http://purl.obolibrary.org/obo/NCBITaxon_357688,none +16.9548485,NCBITaxon:35800,http://purl.obolibrary.org/obo/NCBITaxon_35800,none +16.9548485,NCBITaxon:358008,http://purl.obolibrary.org/obo/NCBITaxon_358008,none +16.9548485,NCBITaxon:35823,http://purl.obolibrary.org/obo/NCBITaxon_35823,none +16.9548485,NCBITaxon:359294,http://purl.obolibrary.org/obo/NCBITaxon_359294,none +16.9548485,NCBITaxon:359302,http://purl.obolibrary.org/obo/NCBITaxon_359302,none +16.9548485,NCBITaxon:360393,http://purl.obolibrary.org/obo/NCBITaxon_360393,none +16.9548485,NCBITaxon:360988,http://purl.obolibrary.org/obo/NCBITaxon_360988,none +16.9548485,NCBITaxon:36152,http://purl.obolibrary.org/obo/NCBITaxon_36152,none +16.9548485,NCBITaxon:36164,http://purl.obolibrary.org/obo/NCBITaxon_36164,none +16.9548485,NCBITaxon:361697,http://purl.obolibrary.org/obo/NCBITaxon_361697,none +16.9548485,NCBITaxon:361698,http://purl.obolibrary.org/obo/NCBITaxon_361698,none +16.9548485,NCBITaxon:361736,http://purl.obolibrary.org/obo/NCBITaxon_361736,none +16.9548485,NCBITaxon:3621,http://purl.obolibrary.org/obo/NCBITaxon_3621,none +16.9548485,NCBITaxon:36211,http://purl.obolibrary.org/obo/NCBITaxon_36211,none +16.9548485,NCBITaxon:362398,http://purl.obolibrary.org/obo/NCBITaxon_362398,none +16.9548485,NCBITaxon:3625,http://purl.obolibrary.org/obo/NCBITaxon_3625,none +16.9548485,NCBITaxon:36252,http://purl.obolibrary.org/obo/NCBITaxon_36252,none +16.9548485,NCBITaxon:36256,http://purl.obolibrary.org/obo/NCBITaxon_36256,none +16.9548485,NCBITaxon:36257,http://purl.obolibrary.org/obo/NCBITaxon_36257,none +16.9548485,NCBITaxon:3627,http://purl.obolibrary.org/obo/NCBITaxon_3627,none +16.9548485,NCBITaxon:3630,http://purl.obolibrary.org/obo/NCBITaxon_3630,none +16.9548485,NCBITaxon:36319,http://purl.obolibrary.org/obo/NCBITaxon_36319,none +16.9548485,NCBITaxon:36320,http://purl.obolibrary.org/obo/NCBITaxon_36320,none +16.9548485,NCBITaxon:36321,http://purl.obolibrary.org/obo/NCBITaxon_36321,none +16.9548485,NCBITaxon:36357,http://purl.obolibrary.org/obo/NCBITaxon_36357,none +16.9548485,NCBITaxon:36400,http://purl.obolibrary.org/obo/NCBITaxon_36400,none +16.9548485,NCBITaxon:36408,http://purl.obolibrary.org/obo/NCBITaxon_36408,none +16.9548485,NCBITaxon:36411,http://purl.obolibrary.org/obo/NCBITaxon_36411,none +16.9548485,NCBITaxon:364320,http://purl.obolibrary.org/obo/NCBITaxon_364320,none +16.9548485,NCBITaxon:36458,http://purl.obolibrary.org/obo/NCBITaxon_36458,none +16.9548485,NCBITaxon:364606,http://purl.obolibrary.org/obo/NCBITaxon_364606,none +16.9548485,NCBITaxon:36479,http://purl.obolibrary.org/obo/NCBITaxon_36479,none +16.9548485,NCBITaxon:3653,http://purl.obolibrary.org/obo/NCBITaxon_3653,none +16.9548485,NCBITaxon:3655,http://purl.obolibrary.org/obo/NCBITaxon_3655,none +16.9548485,NCBITaxon:3659,http://purl.obolibrary.org/obo/NCBITaxon_3659,none +16.9548485,NCBITaxon:36590,http://purl.obolibrary.org/obo/NCBITaxon_36590,none +16.9548485,NCBITaxon:366617,http://purl.obolibrary.org/obo/NCBITaxon_366617,none +16.9548485,NCBITaxon:3669,http://purl.obolibrary.org/obo/NCBITaxon_3669,none +16.9548485,NCBITaxon:36697,http://purl.obolibrary.org/obo/NCBITaxon_36697,none +16.9548485,NCBITaxon:3670,http://purl.obolibrary.org/obo/NCBITaxon_3670,none +16.9548485,NCBITaxon:36751,http://purl.obolibrary.org/obo/NCBITaxon_36751,none +16.9548485,NCBITaxon:36776,http://purl.obolibrary.org/obo/NCBITaxon_36776,none +16.9548485,NCBITaxon:367859,http://purl.obolibrary.org/obo/NCBITaxon_367859,none +16.9548485,NCBITaxon:367861,http://purl.obolibrary.org/obo/NCBITaxon_367861,none +16.9548485,NCBITaxon:367865,http://purl.obolibrary.org/obo/NCBITaxon_367865,none +16.9548485,NCBITaxon:367866,http://purl.obolibrary.org/obo/NCBITaxon_367866,none +16.9548485,NCBITaxon:367877,http://purl.obolibrary.org/obo/NCBITaxon_367877,none +16.9548485,NCBITaxon:36797,http://purl.obolibrary.org/obo/NCBITaxon_36797,none +16.9548485,NCBITaxon:368616,http://purl.obolibrary.org/obo/NCBITaxon_368616,none +16.9548485,NCBITaxon:36882,http://purl.obolibrary.org/obo/NCBITaxon_36882,none +16.9548485,NCBITaxon:369177,http://purl.obolibrary.org/obo/NCBITaxon_369177,none +16.9548485,NCBITaxon:369629,http://purl.obolibrary.org/obo/NCBITaxon_369629,none +16.9548485,NCBITaxon:369638,http://purl.obolibrary.org/obo/NCBITaxon_369638,none +16.9548485,NCBITaxon:369710,http://purl.obolibrary.org/obo/NCBITaxon_369710,none +16.9548485,NCBITaxon:36998,http://purl.obolibrary.org/obo/NCBITaxon_36998,none +16.9548485,NCBITaxon:36999,http://purl.obolibrary.org/obo/NCBITaxon_36999,none +16.9548485,NCBITaxon:37000,http://purl.obolibrary.org/obo/NCBITaxon_37000,none +16.9548485,NCBITaxon:37006,http://purl.obolibrary.org/obo/NCBITaxon_37006,none +16.9548485,NCBITaxon:37017,http://purl.obolibrary.org/obo/NCBITaxon_37017,none +16.9548485,NCBITaxon:37022,http://purl.obolibrary.org/obo/NCBITaxon_37022,none +16.9548485,NCBITaxon:37026,http://purl.obolibrary.org/obo/NCBITaxon_37026,none +16.9548485,NCBITaxon:370547,http://purl.obolibrary.org/obo/NCBITaxon_370547,none +16.9548485,NCBITaxon:370549,http://purl.obolibrary.org/obo/NCBITaxon_370549,none +16.9548485,NCBITaxon:370624,http://purl.obolibrary.org/obo/NCBITaxon_370624,none +16.9548485,NCBITaxon:370978,http://purl.obolibrary.org/obo/NCBITaxon_370978,none +16.9548485,NCBITaxon:37108,http://purl.obolibrary.org/obo/NCBITaxon_37108,none +16.9548485,NCBITaxon:3711,http://purl.obolibrary.org/obo/NCBITaxon_3711,none +16.9548485,NCBITaxon:371109,http://purl.obolibrary.org/obo/NCBITaxon_371109,none +16.9548485,NCBITaxon:37111,http://purl.obolibrary.org/obo/NCBITaxon_37111,none +16.9548485,NCBITaxon:37112,http://purl.obolibrary.org/obo/NCBITaxon_37112,none +16.9548485,NCBITaxon:37116,http://purl.obolibrary.org/obo/NCBITaxon_37116,none +16.9548485,NCBITaxon:37125,http://purl.obolibrary.org/obo/NCBITaxon_37125,none +16.9548485,NCBITaxon:37138,http://purl.obolibrary.org/obo/NCBITaxon_37138,none +16.9548485,NCBITaxon:37140,http://purl.obolibrary.org/obo/NCBITaxon_37140,none +16.9548485,NCBITaxon:371401,http://purl.obolibrary.org/obo/NCBITaxon_371401,none +16.9548485,NCBITaxon:371833,http://purl.obolibrary.org/obo/NCBITaxon_371833,none +16.9548485,NCBITaxon:37190,http://purl.obolibrary.org/obo/NCBITaxon_37190,none +16.9548485,NCBITaxon:3720,http://purl.obolibrary.org/obo/NCBITaxon_3720,none +16.9548485,NCBITaxon:37200,http://purl.obolibrary.org/obo/NCBITaxon_37200,none +16.9548485,NCBITaxon:37297,http://purl.obolibrary.org/obo/NCBITaxon_37297,none +16.9548485,NCBITaxon:37299,http://purl.obolibrary.org/obo/NCBITaxon_37299,none +16.9548485,NCBITaxon:373045,http://purl.obolibrary.org/obo/NCBITaxon_373045,none +16.9548485,NCBITaxon:373053,http://purl.obolibrary.org/obo/NCBITaxon_373053,none +16.9548485,NCBITaxon:373307,http://purl.obolibrary.org/obo/NCBITaxon_373307,none +16.9548485,NCBITaxon:373436,http://purl.obolibrary.org/obo/NCBITaxon_373436,none +16.9548485,NCBITaxon:37348,http://purl.obolibrary.org/obo/NCBITaxon_37348,none +16.9548485,NCBITaxon:373548,http://purl.obolibrary.org/obo/NCBITaxon_373548,none +16.9548485,NCBITaxon:373861,http://purl.obolibrary.org/obo/NCBITaxon_373861,none +16.9548485,NCBITaxon:3741,http://purl.obolibrary.org/obo/NCBITaxon_3741,none +16.9548485,NCBITaxon:374448,http://purl.obolibrary.org/obo/NCBITaxon_374448,none +16.9548485,NCBITaxon:3746,http://purl.obolibrary.org/obo/NCBITaxon_3746,none +16.9548485,NCBITaxon:37478,http://purl.obolibrary.org/obo/NCBITaxon_37478,none +16.9548485,NCBITaxon:374840,http://purl.obolibrary.org/obo/NCBITaxon_374840,none +16.9548485,NCBITaxon:37495,http://purl.obolibrary.org/obo/NCBITaxon_37495,none +16.9548485,NCBITaxon:3750,http://purl.obolibrary.org/obo/NCBITaxon_3750,Malus domestica +16.9548485,NCBITaxon:37500,http://purl.obolibrary.org/obo/NCBITaxon_37500,none +16.9548485,NCBITaxon:375200,http://purl.obolibrary.org/obo/NCBITaxon_375200,none +16.9548485,NCBITaxon:375201,http://purl.obolibrary.org/obo/NCBITaxon_375201,none +16.9548485,NCBITaxon:375202,http://purl.obolibrary.org/obo/NCBITaxon_375202,none +16.9548485,NCBITaxon:37521,http://purl.obolibrary.org/obo/NCBITaxon_37521,none +16.9548485,NCBITaxon:37536,http://purl.obolibrary.org/obo/NCBITaxon_37536,none +16.9548485,NCBITaxon:375548,http://purl.obolibrary.org/obo/NCBITaxon_375548,none +16.9548485,NCBITaxon:375590,http://purl.obolibrary.org/obo/NCBITaxon_375590,none +16.9548485,NCBITaxon:376147,http://purl.obolibrary.org/obo/NCBITaxon_376147,none +16.9548485,NCBITaxon:376148,http://purl.obolibrary.org/obo/NCBITaxon_376148,none +16.9548485,NCBITaxon:376266,http://purl.obolibrary.org/obo/NCBITaxon_376266,none +16.9548485,NCBITaxon:37638,http://purl.obolibrary.org/obo/NCBITaxon_37638,none +16.9548485,NCBITaxon:3766,http://purl.obolibrary.org/obo/NCBITaxon_3766,none +16.9548485,NCBITaxon:37665,http://purl.obolibrary.org/obo/NCBITaxon_37665,none +16.9548485,NCBITaxon:376916,http://purl.obolibrary.org/obo/NCBITaxon_376916,Chiromyiformes +16.9548485,NCBITaxon:376917,http://purl.obolibrary.org/obo/NCBITaxon_376917,Lorisiformes +16.9548485,NCBITaxon:3773,http://purl.obolibrary.org/obo/NCBITaxon_3773,none +16.9548485,NCBITaxon:377301,http://purl.obolibrary.org/obo/NCBITaxon_377301,none +16.9548485,NCBITaxon:3774,http://purl.obolibrary.org/obo/NCBITaxon_3774,none +16.9548485,NCBITaxon:377587,http://purl.obolibrary.org/obo/NCBITaxon_377587,none +16.9548485,NCBITaxon:377618,http://purl.obolibrary.org/obo/NCBITaxon_377618,none +16.9548485,NCBITaxon:37796,http://purl.obolibrary.org/obo/NCBITaxon_37796,none +16.9548485,NCBITaxon:37806,http://purl.obolibrary.org/obo/NCBITaxon_37806,none +16.9548485,NCBITaxon:378099,http://purl.obolibrary.org/obo/NCBITaxon_378099,none +16.9548485,NCBITaxon:378100,http://purl.obolibrary.org/obo/NCBITaxon_378100,none +16.9548485,NCBITaxon:37814,http://purl.obolibrary.org/obo/NCBITaxon_37814,none +16.9548485,NCBITaxon:37840,http://purl.obolibrary.org/obo/NCBITaxon_37840,none +16.9548485,NCBITaxon:37849,http://purl.obolibrary.org/obo/NCBITaxon_37849,none +16.9548485,NCBITaxon:378506,http://purl.obolibrary.org/obo/NCBITaxon_378506,none +16.9548485,NCBITaxon:378799,http://purl.obolibrary.org/obo/NCBITaxon_378799,none +16.9548485,NCBITaxon:37914,http://purl.obolibrary.org/obo/NCBITaxon_37914,none +16.9548485,NCBITaxon:37948,http://purl.obolibrary.org/obo/NCBITaxon_37948,none +16.9548485,NCBITaxon:37954,http://purl.obolibrary.org/obo/NCBITaxon_37954,none +16.9548485,NCBITaxon:37957,http://purl.obolibrary.org/obo/NCBITaxon_37957,none +16.9548485,NCBITaxon:37986,http://purl.obolibrary.org/obo/NCBITaxon_37986,none +16.9548485,NCBITaxon:37991,http://purl.obolibrary.org/obo/NCBITaxon_37991,none +16.9548485,NCBITaxon:379963,http://purl.obolibrary.org/obo/NCBITaxon_379963,none +16.9548485,NCBITaxon:38009,http://purl.obolibrary.org/obo/NCBITaxon_38009,none +16.9548485,NCBITaxon:380178,http://purl.obolibrary.org/obo/NCBITaxon_380178,none +16.9548485,NCBITaxon:380432,http://purl.obolibrary.org/obo/NCBITaxon_380432,none +16.9548485,NCBITaxon:380440,http://purl.obolibrary.org/obo/NCBITaxon_380440,none +16.9548485,NCBITaxon:38061,http://purl.obolibrary.org/obo/NCBITaxon_38061,none +16.9548485,NCBITaxon:380669,http://purl.obolibrary.org/obo/NCBITaxon_380669,none +16.9548485,NCBITaxon:38142,http://purl.obolibrary.org/obo/NCBITaxon_38142,None +16.9548485,NCBITaxon:3815,http://purl.obolibrary.org/obo/NCBITaxon_3815,none +16.9548485,NCBITaxon:3817,http://purl.obolibrary.org/obo/NCBITaxon_3817,none +16.9548485,NCBITaxon:38171,http://purl.obolibrary.org/obo/NCBITaxon_38171,none +16.9548485,NCBITaxon:382381,http://purl.obolibrary.org/obo/NCBITaxon_382381,none +16.9548485,NCBITaxon:38251,http://purl.obolibrary.org/obo/NCBITaxon_38251,none +16.9548485,NCBITaxon:3831,http://purl.obolibrary.org/obo/NCBITaxon_3831,none +16.9548485,NCBITaxon:3836,http://purl.obolibrary.org/obo/NCBITaxon_3836,none +16.9548485,NCBITaxon:383622,http://purl.obolibrary.org/obo/NCBITaxon_383622,none +16.9548485,NCBITaxon:383693,http://purl.obolibrary.org/obo/NCBITaxon_383693,none +16.9548485,NCBITaxon:3839,http://purl.obolibrary.org/obo/NCBITaxon_3839,none +16.9548485,NCBITaxon:383947,http://purl.obolibrary.org/obo/NCBITaxon_383947,none +16.9548485,NCBITaxon:38408,http://purl.obolibrary.org/obo/NCBITaxon_38408,none +16.9548485,NCBITaxon:38410,http://purl.obolibrary.org/obo/NCBITaxon_38410,none +16.9548485,NCBITaxon:384324,http://purl.obolibrary.org/obo/NCBITaxon_384324,none +16.9548485,NCBITaxon:38447,http://purl.obolibrary.org/obo/NCBITaxon_38447,none +16.9548485,NCBITaxon:385388,http://purl.obolibrary.org/obo/NCBITaxon_385388,none +16.9548485,NCBITaxon:385534,http://purl.obolibrary.org/obo/NCBITaxon_385534,none +16.9548485,NCBITaxon:38577,http://purl.obolibrary.org/obo/NCBITaxon_38577,none +16.9548485,NCBITaxon:386212,http://purl.obolibrary.org/obo/NCBITaxon_386212,none +16.9548485,NCBITaxon:3863,http://purl.obolibrary.org/obo/NCBITaxon_3863,none +16.9548485,NCBITaxon:386585,http://purl.obolibrary.org/obo/NCBITaxon_386585,none +16.9548485,NCBITaxon:38675,http://purl.obolibrary.org/obo/NCBITaxon_38675,none +16.9548485,NCBITaxon:38677,http://purl.obolibrary.org/obo/NCBITaxon_38677,none +16.9548485,NCBITaxon:38721,http://purl.obolibrary.org/obo/NCBITaxon_38721,none +16.9548485,NCBITaxon:38730,http://purl.obolibrary.org/obo/NCBITaxon_38730,none +16.9548485,NCBITaxon:387423,http://purl.obolibrary.org/obo/NCBITaxon_387423,none +16.9548485,NCBITaxon:38748,http://purl.obolibrary.org/obo/NCBITaxon_38748,none +16.9548485,NCBITaxon:387621,http://purl.obolibrary.org/obo/NCBITaxon_387621,none +16.9548485,NCBITaxon:387934,http://purl.obolibrary.org/obo/NCBITaxon_387934,none +16.9548485,NCBITaxon:388038,http://purl.obolibrary.org/obo/NCBITaxon_388038,none +16.9548485,NCBITaxon:388283,http://purl.obolibrary.org/obo/NCBITaxon_388283,none +16.9548485,NCBITaxon:38834,http://purl.obolibrary.org/obo/NCBITaxon_38834,none +16.9548485,NCBITaxon:388795,http://purl.obolibrary.org/obo/NCBITaxon_388795,none +16.9548485,NCBITaxon:388875,http://purl.obolibrary.org/obo/NCBITaxon_388875,none +16.9548485,NCBITaxon:388908,http://purl.obolibrary.org/obo/NCBITaxon_388908,none +16.9548485,NCBITaxon:38940,http://purl.obolibrary.org/obo/NCBITaxon_38940,none +16.9548485,NCBITaxon:38948,http://purl.obolibrary.org/obo/NCBITaxon_38948,none +16.9548485,NCBITaxon:389481,http://purl.obolibrary.org/obo/NCBITaxon_389481,none +16.9548485,NCBITaxon:3898,http://purl.obolibrary.org/obo/NCBITaxon_3898,none +16.9548485,NCBITaxon:39002,http://purl.obolibrary.org/obo/NCBITaxon_39002,none +16.9548485,NCBITaxon:39031,http://purl.obolibrary.org/obo/NCBITaxon_39031,none +16.9548485,NCBITaxon:390348,http://purl.obolibrary.org/obo/NCBITaxon_390348,none +16.9548485,NCBITaxon:39058,http://purl.obolibrary.org/obo/NCBITaxon_39058,none +16.9548485,NCBITaxon:390844,http://purl.obolibrary.org/obo/NCBITaxon_390844,none +16.9548485,NCBITaxon:39114,http://purl.obolibrary.org/obo/NCBITaxon_39114,none +16.9548485,NCBITaxon:39149,http://purl.obolibrary.org/obo/NCBITaxon_39149,none +16.9548485,NCBITaxon:39169,http://purl.obolibrary.org/obo/NCBITaxon_39169,none +16.9548485,NCBITaxon:39174,http://purl.obolibrary.org/obo/NCBITaxon_39174,none +16.9548485,NCBITaxon:39215,http://purl.obolibrary.org/obo/NCBITaxon_39215,none +16.9548485,NCBITaxon:39233,http://purl.obolibrary.org/obo/NCBITaxon_39233,none +16.9548485,NCBITaxon:39251,http://purl.obolibrary.org/obo/NCBITaxon_39251,none +16.9548485,NCBITaxon:39256,http://purl.obolibrary.org/obo/NCBITaxon_39256,none +16.9548485,NCBITaxon:39257,http://purl.obolibrary.org/obo/NCBITaxon_39257,none +16.9548485,NCBITaxon:392761,http://purl.obolibrary.org/obo/NCBITaxon_392761,none +16.9548485,NCBITaxon:3935,http://purl.obolibrary.org/obo/NCBITaxon_3935,none +16.9548485,NCBITaxon:39420,http://purl.obolibrary.org/obo/NCBITaxon_39420,none +16.9548485,NCBITaxon:39534,http://purl.obolibrary.org/obo/NCBITaxon_39534,none +16.9548485,NCBITaxon:395349,http://purl.obolibrary.org/obo/NCBITaxon_395349,none +16.9548485,NCBITaxon:3954,http://purl.obolibrary.org/obo/NCBITaxon_3954,none +16.9548485,NCBITaxon:39550,http://purl.obolibrary.org/obo/NCBITaxon_39550,none +16.9548485,NCBITaxon:3958,http://purl.obolibrary.org/obo/NCBITaxon_3958,none +16.9548485,NCBITaxon:39588,http://purl.obolibrary.org/obo/NCBITaxon_39588,none +16.9548485,NCBITaxon:39609,http://purl.obolibrary.org/obo/NCBITaxon_39609,none +16.9548485,NCBITaxon:3963,http://purl.obolibrary.org/obo/NCBITaxon_3963,none +16.9548485,NCBITaxon:396343,http://purl.obolibrary.org/obo/NCBITaxon_396343,none +16.9548485,NCBITaxon:39677,http://purl.obolibrary.org/obo/NCBITaxon_39677,none +16.9548485,NCBITaxon:39699,http://purl.obolibrary.org/obo/NCBITaxon_39699,none +16.9548485,NCBITaxon:39709,http://purl.obolibrary.org/obo/NCBITaxon_39709,none +16.9548485,NCBITaxon:397190,http://purl.obolibrary.org/obo/NCBITaxon_397190,none +16.9548485,NCBITaxon:3985,http://purl.obolibrary.org/obo/NCBITaxon_3985,none +16.9548485,NCBITaxon:399177,http://purl.obolibrary.org/obo/NCBITaxon_399177,none +16.9548485,NCBITaxon:39944,http://purl.obolibrary.org/obo/NCBITaxon_39944,Caprine alphaherpesvirus 1 +16.9548485,NCBITaxon:39946,http://purl.obolibrary.org/obo/NCBITaxon_39946,none +16.9548485,NCBITaxon:39970,http://purl.obolibrary.org/obo/NCBITaxon_39970,none +16.9548485,NCBITaxon:39971,http://purl.obolibrary.org/obo/NCBITaxon_39971,none +16.9548485,NCBITaxon:39992,http://purl.obolibrary.org/obo/NCBITaxon_39992,none +16.9548485,NCBITaxon:400054,http://purl.obolibrary.org/obo/NCBITaxon_400054,none +16.9548485,NCBITaxon:400102,http://purl.obolibrary.org/obo/NCBITaxon_400102,none +16.9548485,NCBITaxon:40037,http://purl.obolibrary.org/obo/NCBITaxon_40037,none +16.9548485,NCBITaxon:400395,http://purl.obolibrary.org/obo/NCBITaxon_400395,none +16.9548485,NCBITaxon:40057,http://purl.obolibrary.org/obo/NCBITaxon_40057,none +16.9548485,NCBITaxon:400570,http://purl.obolibrary.org/obo/NCBITaxon_400570,Quailpox virus +16.9548485,NCBITaxon:40080,http://purl.obolibrary.org/obo/NCBITaxon_40080,none +16.9548485,NCBITaxon:40111,http://purl.obolibrary.org/obo/NCBITaxon_40111,none +16.9548485,NCBITaxon:40138,http://purl.obolibrary.org/obo/NCBITaxon_40138,none +16.9548485,NCBITaxon:4014,http://purl.obolibrary.org/obo/NCBITaxon_4014,none +16.9548485,NCBITaxon:40140,http://purl.obolibrary.org/obo/NCBITaxon_40140,none +16.9548485,NCBITaxon:402688,http://purl.obolibrary.org/obo/NCBITaxon_402688,none +16.9548485,NCBITaxon:40270,http://purl.obolibrary.org/obo/NCBITaxon_40270,none +16.9548485,NCBITaxon:40289,http://purl.obolibrary.org/obo/NCBITaxon_40289,none +16.9548485,NCBITaxon:4030,http://purl.obolibrary.org/obo/NCBITaxon_4030,none +16.9548485,NCBITaxon:40306,http://purl.obolibrary.org/obo/NCBITaxon_40306,none +16.9548485,NCBITaxon:40354,http://purl.obolibrary.org/obo/NCBITaxon_40354,none +16.9548485,NCBITaxon:40360,http://purl.obolibrary.org/obo/NCBITaxon_40360,none +16.9548485,NCBITaxon:403651,http://purl.obolibrary.org/obo/NCBITaxon_403651,none +16.9548485,NCBITaxon:40367,http://purl.obolibrary.org/obo/NCBITaxon_40367,none +16.9548485,NCBITaxon:40368,http://purl.obolibrary.org/obo/NCBITaxon_40368,none +16.9548485,NCBITaxon:40374,http://purl.obolibrary.org/obo/NCBITaxon_40374,none +16.9548485,NCBITaxon:40380,http://purl.obolibrary.org/obo/NCBITaxon_40380,none +16.9548485,NCBITaxon:404314,http://purl.obolibrary.org/obo/NCBITaxon_404314,none +16.9548485,NCBITaxon:40436,http://purl.obolibrary.org/obo/NCBITaxon_40436,none +16.9548485,NCBITaxon:4044,http://purl.obolibrary.org/obo/NCBITaxon_4044,none +16.9548485,NCBITaxon:40498,http://purl.obolibrary.org/obo/NCBITaxon_40498,none +16.9548485,NCBITaxon:405002,http://purl.obolibrary.org/obo/NCBITaxon_405002,none +16.9548485,NCBITaxon:4051,http://purl.obolibrary.org/obo/NCBITaxon_4051,none +16.9548485,NCBITaxon:40522,http://purl.obolibrary.org/obo/NCBITaxon_40522,none +16.9548485,NCBITaxon:40538,http://purl.obolibrary.org/obo/NCBITaxon_40538,none +16.9548485,NCBITaxon:40539,http://purl.obolibrary.org/obo/NCBITaxon_40539,none +16.9548485,NCBITaxon:40544,http://purl.obolibrary.org/obo/NCBITaxon_40544,none +16.9548485,NCBITaxon:405585,http://purl.obolibrary.org/obo/NCBITaxon_405585,none +16.9548485,NCBITaxon:40562,http://purl.obolibrary.org/obo/NCBITaxon_40562,none +16.9548485,NCBITaxon:40564,http://purl.obolibrary.org/obo/NCBITaxon_40564,none +16.9548485,NCBITaxon:4057,http://purl.obolibrary.org/obo/NCBITaxon_4057,none +16.9548485,NCBITaxon:405757,http://purl.obolibrary.org/obo/NCBITaxon_405757,none +16.9548485,NCBITaxon:40576,http://purl.obolibrary.org/obo/NCBITaxon_40576,none +16.9548485,NCBITaxon:40588,http://purl.obolibrary.org/obo/NCBITaxon_40588,none +16.9548485,NCBITaxon:4059,http://purl.obolibrary.org/obo/NCBITaxon_4059,none +16.9548485,NCBITaxon:40631,http://purl.obolibrary.org/obo/NCBITaxon_40631,none +16.9548485,NCBITaxon:406421,http://purl.obolibrary.org/obo/NCBITaxon_406421,none +16.9548485,NCBITaxon:4065,http://purl.obolibrary.org/obo/NCBITaxon_4065,none +16.9548485,NCBITaxon:40679,http://purl.obolibrary.org/obo/NCBITaxon_40679,none +16.9548485,NCBITaxon:407032,http://purl.obolibrary.org/obo/NCBITaxon_407032,none +16.9548485,NCBITaxon:407257,http://purl.obolibrary.org/obo/NCBITaxon_407257,none +16.9548485,NCBITaxon:408339,http://purl.obolibrary.org/obo/NCBITaxon_408339,none +16.9548485,NCBITaxon:409189,http://purl.obolibrary.org/obo/NCBITaxon_409189,none +16.9548485,NCBITaxon:40919,http://purl.obolibrary.org/obo/NCBITaxon_40919,none +16.9548485,NCBITaxon:40948,http://purl.obolibrary.org/obo/NCBITaxon_40948,none +16.9548485,NCBITaxon:40958,http://purl.obolibrary.org/obo/NCBITaxon_40958,none +16.9548485,NCBITaxon:41020,http://purl.obolibrary.org/obo/NCBITaxon_41020,none +16.9548485,NCBITaxon:41021,http://purl.obolibrary.org/obo/NCBITaxon_41021,none +16.9548485,NCBITaxon:410829,http://purl.obolibrary.org/obo/NCBITaxon_410829,none +16.9548485,NCBITaxon:4111,http://purl.obolibrary.org/obo/NCBITaxon_4111,none +16.9548485,NCBITaxon:411152,http://purl.obolibrary.org/obo/NCBITaxon_411152,none +16.9548485,NCBITaxon:41142,http://purl.obolibrary.org/obo/NCBITaxon_41142,none +16.9548485,NCBITaxon:41150,http://purl.obolibrary.org/obo/NCBITaxon_41150,none +16.9548485,NCBITaxon:411579,http://purl.obolibrary.org/obo/NCBITaxon_411579,none +16.9548485,NCBITaxon:41166,http://purl.obolibrary.org/obo/NCBITaxon_41166,none +16.9548485,NCBITaxon:411679,http://purl.obolibrary.org/obo/NCBITaxon_411679,none +16.9548485,NCBITaxon:4122,http://purl.obolibrary.org/obo/NCBITaxon_4122,none +16.9548485,NCBITaxon:41225,http://purl.obolibrary.org/obo/NCBITaxon_41225,none +16.9548485,NCBITaxon:41227,http://purl.obolibrary.org/obo/NCBITaxon_41227,none +16.9548485,NCBITaxon:41243,http://purl.obolibrary.org/obo/NCBITaxon_41243,none +16.9548485,NCBITaxon:41247,http://purl.obolibrary.org/obo/NCBITaxon_41247,none +16.9548485,NCBITaxon:41266,http://purl.obolibrary.org/obo/NCBITaxon_41266,none +16.9548485,NCBITaxon:41268,http://purl.obolibrary.org/obo/NCBITaxon_41268,none +16.9548485,NCBITaxon:412697,http://purl.obolibrary.org/obo/NCBITaxon_412697,none +16.9548485,NCBITaxon:4130,http://purl.obolibrary.org/obo/NCBITaxon_4130,none +16.9548485,NCBITaxon:4137,http://purl.obolibrary.org/obo/NCBITaxon_4137,none +16.9548485,NCBITaxon:41377,http://purl.obolibrary.org/obo/NCBITaxon_41377,none +16.9548485,NCBITaxon:414290,http://purl.obolibrary.org/obo/NCBITaxon_414290,none +16.9548485,NCBITaxon:41438,http://purl.obolibrary.org/obo/NCBITaxon_41438,none +16.9548485,NCBITaxon:414527,http://purl.obolibrary.org/obo/NCBITaxon_414527,none +16.9548485,NCBITaxon:41469,http://purl.obolibrary.org/obo/NCBITaxon_41469,none +16.9548485,NCBITaxon:4147,http://purl.obolibrary.org/obo/NCBITaxon_4147,none +16.9548485,NCBITaxon:4150,http://purl.obolibrary.org/obo/NCBITaxon_4150,none +16.9548485,NCBITaxon:4152,http://purl.obolibrary.org/obo/NCBITaxon_4152,none +16.9548485,NCBITaxon:415757,http://purl.obolibrary.org/obo/NCBITaxon_415757,none +16.9548485,NCBITaxon:41589,http://purl.obolibrary.org/obo/NCBITaxon_41589,none +16.9548485,NCBITaxon:416048,http://purl.obolibrary.org/obo/NCBITaxon_416048,none +16.9548485,NCBITaxon:41634,http://purl.obolibrary.org/obo/NCBITaxon_41634,none +16.9548485,NCBITaxon:416406,http://purl.obolibrary.org/obo/NCBITaxon_416406,none +16.9548485,NCBITaxon:41687,http://purl.obolibrary.org/obo/NCBITaxon_41687,Scedosporium +16.9548485,NCBITaxon:417010,http://purl.obolibrary.org/obo/NCBITaxon_417010,none +16.9548485,NCBITaxon:4173,http://purl.obolibrary.org/obo/NCBITaxon_4173,none +16.9548485,NCBITaxon:4180,http://purl.obolibrary.org/obo/NCBITaxon_4180,none +16.9548485,NCBITaxon:4181,http://purl.obolibrary.org/obo/NCBITaxon_4181,none +16.9548485,NCBITaxon:41850,http://purl.obolibrary.org/obo/NCBITaxon_41850,none +16.9548485,NCBITaxon:41851,http://purl.obolibrary.org/obo/NCBITaxon_41851,none +16.9548485,NCBITaxon:418662,http://purl.obolibrary.org/obo/NCBITaxon_418662,none +16.9548485,NCBITaxon:418663,http://purl.obolibrary.org/obo/NCBITaxon_418663,none +16.9548485,NCBITaxon:418919,http://purl.obolibrary.org/obo/NCBITaxon_418919,none +16.9548485,NCBITaxon:418920,http://purl.obolibrary.org/obo/NCBITaxon_418920,none +16.9548485,NCBITaxon:42007,http://purl.obolibrary.org/obo/NCBITaxon_42007,none +16.9548485,NCBITaxon:42027,http://purl.obolibrary.org/obo/NCBITaxon_42027,none +16.9548485,NCBITaxon:42028,http://purl.obolibrary.org/obo/NCBITaxon_42028,none +16.9548485,NCBITaxon:42054,http://purl.obolibrary.org/obo/NCBITaxon_42054,none +16.9548485,NCBITaxon:42058,http://purl.obolibrary.org/obo/NCBITaxon_42058,none +16.9548485,NCBITaxon:42061,http://purl.obolibrary.org/obo/NCBITaxon_42061,none +16.9548485,NCBITaxon:42169,http://purl.obolibrary.org/obo/NCBITaxon_42169,none +16.9548485,NCBITaxon:421748,http://purl.obolibrary.org/obo/NCBITaxon_421748,none +16.9548485,NCBITaxon:42216,http://purl.obolibrary.org/obo/NCBITaxon_42216,none +16.9548485,NCBITaxon:422240,http://purl.obolibrary.org/obo/NCBITaxon_422240,none +16.9548485,NCBITaxon:42289,http://purl.obolibrary.org/obo/NCBITaxon_42289,none +16.9548485,NCBITaxon:4231,http://purl.obolibrary.org/obo/NCBITaxon_4231,none +16.9548485,NCBITaxon:423302,http://purl.obolibrary.org/obo/NCBITaxon_423302,none +16.9548485,NCBITaxon:423303,http://purl.obolibrary.org/obo/NCBITaxon_423303,none +16.9548485,NCBITaxon:42336,http://purl.obolibrary.org/obo/NCBITaxon_42336,none +16.9548485,NCBITaxon:42367,http://purl.obolibrary.org/obo/NCBITaxon_42367,none +16.9548485,NCBITaxon:4239,http://purl.obolibrary.org/obo/NCBITaxon_4239,none +16.9548485,NCBITaxon:42395,http://purl.obolibrary.org/obo/NCBITaxon_42395,none +16.9548485,NCBITaxon:42449,http://purl.obolibrary.org/obo/NCBITaxon_42449,none +16.9548485,NCBITaxon:424553,http://purl.obolibrary.org/obo/NCBITaxon_424553,none +16.9548485,NCBITaxon:424561,http://purl.obolibrary.org/obo/NCBITaxon_424561,none +16.9548485,NCBITaxon:424566,http://purl.obolibrary.org/obo/NCBITaxon_424566,none +16.9548485,NCBITaxon:424569,http://purl.obolibrary.org/obo/NCBITaxon_424569,none +16.9548485,NCBITaxon:4246,http://purl.obolibrary.org/obo/NCBITaxon_4246,none +16.9548485,NCBITaxon:424679,http://purl.obolibrary.org/obo/NCBITaxon_424679,none +16.9548485,NCBITaxon:42481,http://purl.obolibrary.org/obo/NCBITaxon_42481,none +16.9548485,NCBITaxon:424944,http://purl.obolibrary.org/obo/NCBITaxon_424944,none +16.9548485,NCBITaxon:42598,http://purl.obolibrary.org/obo/NCBITaxon_42598,none +16.9548485,NCBITaxon:42610,http://purl.obolibrary.org/obo/NCBITaxon_42610,none +16.9548485,NCBITaxon:426105,http://purl.obolibrary.org/obo/NCBITaxon_426105,none +16.9548485,NCBITaxon:42619,http://purl.obolibrary.org/obo/NCBITaxon_42619,none +16.9548485,NCBITaxon:42620,http://purl.obolibrary.org/obo/NCBITaxon_42620,none +16.9548485,NCBITaxon:426262,http://purl.obolibrary.org/obo/NCBITaxon_426262,none +16.9548485,NCBITaxon:4264,http://purl.obolibrary.org/obo/NCBITaxon_4264,none +16.9548485,NCBITaxon:4265,http://purl.obolibrary.org/obo/NCBITaxon_4265,none +16.9548485,NCBITaxon:42655,http://purl.obolibrary.org/obo/NCBITaxon_42655,none +16.9548485,NCBITaxon:426787,http://purl.obolibrary.org/obo/NCBITaxon_426787,none +16.9548485,NCBITaxon:426789,http://purl.obolibrary.org/obo/NCBITaxon_426789,none +16.9548485,NCBITaxon:426790,http://purl.obolibrary.org/obo/NCBITaxon_426790,none +16.9548485,NCBITaxon:4270,http://purl.obolibrary.org/obo/NCBITaxon_4270,none +16.9548485,NCBITaxon:42718,http://purl.obolibrary.org/obo/NCBITaxon_42718,none +16.9548485,NCBITaxon:42719,http://purl.obolibrary.org/obo/NCBITaxon_42719,none +16.9548485,NCBITaxon:42721,http://purl.obolibrary.org/obo/NCBITaxon_42721,none +16.9548485,NCBITaxon:427316,http://purl.obolibrary.org/obo/NCBITaxon_427316,none +16.9548485,NCBITaxon:427343,http://purl.obolibrary.org/obo/NCBITaxon_427343,none +16.9548485,NCBITaxon:4274,http://purl.obolibrary.org/obo/NCBITaxon_4274,none +16.9548485,NCBITaxon:4275,http://purl.obolibrary.org/obo/NCBITaxon_4275,none +16.9548485,NCBITaxon:42757,http://purl.obolibrary.org/obo/NCBITaxon_42757,none +16.9548485,NCBITaxon:42759,http://purl.obolibrary.org/obo/NCBITaxon_42759,none +16.9548485,NCBITaxon:42760,http://purl.obolibrary.org/obo/NCBITaxon_42760,none +16.9548485,NCBITaxon:427636,http://purl.obolibrary.org/obo/NCBITaxon_427636,none +16.9548485,NCBITaxon:4280,http://purl.obolibrary.org/obo/NCBITaxon_4280,none +16.9548485,NCBITaxon:4281,http://purl.obolibrary.org/obo/NCBITaxon_4281,none +16.9548485,NCBITaxon:42813,http://purl.obolibrary.org/obo/NCBITaxon_42813,none +16.9548485,NCBITaxon:42814,http://purl.obolibrary.org/obo/NCBITaxon_42814,none +16.9548485,NCBITaxon:42822,http://purl.obolibrary.org/obo/NCBITaxon_42822,none +16.9548485,NCBITaxon:42823,http://purl.obolibrary.org/obo/NCBITaxon_42823,none +16.9548485,NCBITaxon:42857,http://purl.obolibrary.org/obo/NCBITaxon_42857,none +16.9548485,NCBITaxon:429130,http://purl.obolibrary.org/obo/NCBITaxon_429130,none +16.9548485,NCBITaxon:43052,http://purl.obolibrary.org/obo/NCBITaxon_43052,none +16.9548485,NCBITaxon:4306,http://purl.obolibrary.org/obo/NCBITaxon_4306,none +16.9548485,NCBITaxon:430710,http://purl.obolibrary.org/obo/NCBITaxon_430710,none +16.9548485,NCBITaxon:43198,http://purl.obolibrary.org/obo/NCBITaxon_43198,none +16.9548485,NCBITaxon:432027,http://purl.obolibrary.org/obo/NCBITaxon_432027,none +16.9548485,NCBITaxon:4321,http://purl.obolibrary.org/obo/NCBITaxon_4321,none +16.9548485,NCBITaxon:4322,http://purl.obolibrary.org/obo/NCBITaxon_4322,none +16.9548485,NCBITaxon:432330,http://purl.obolibrary.org/obo/NCBITaxon_432330,none +16.9548485,NCBITaxon:43277,http://purl.obolibrary.org/obo/NCBITaxon_43277,none +16.9548485,NCBITaxon:43278,http://purl.obolibrary.org/obo/NCBITaxon_43278,none +16.9548485,NCBITaxon:43288,http://purl.obolibrary.org/obo/NCBITaxon_43288,none +16.9548485,NCBITaxon:43301,http://purl.obolibrary.org/obo/NCBITaxon_43301,none +16.9548485,NCBITaxon:433128,http://purl.obolibrary.org/obo/NCBITaxon_433128,none +16.9548485,NCBITaxon:433351,http://purl.obolibrary.org/obo/NCBITaxon_433351,none +16.9548485,NCBITaxon:433352,http://purl.obolibrary.org/obo/NCBITaxon_433352,none +16.9548485,NCBITaxon:43338,http://purl.obolibrary.org/obo/NCBITaxon_43338,none +16.9548485,NCBITaxon:433688,http://purl.obolibrary.org/obo/NCBITaxon_433688,none +16.9548485,NCBITaxon:434257,http://purl.obolibrary.org/obo/NCBITaxon_434257,none +16.9548485,NCBITaxon:434491,http://purl.obolibrary.org/obo/NCBITaxon_434491,none +16.9548485,NCBITaxon:43470,http://purl.obolibrary.org/obo/NCBITaxon_43470,none +16.9548485,NCBITaxon:4350,http://purl.obolibrary.org/obo/NCBITaxon_4350,none +16.9548485,NCBITaxon:435151,http://purl.obolibrary.org/obo/NCBITaxon_435151,none +16.9548485,NCBITaxon:43523,http://purl.obolibrary.org/obo/NCBITaxon_43523,none +16.9548485,NCBITaxon:435298,http://purl.obolibrary.org/obo/NCBITaxon_435298,none +16.9548485,NCBITaxon:4353,http://purl.obolibrary.org/obo/NCBITaxon_4353,none +16.9548485,NCBITaxon:43540,http://purl.obolibrary.org/obo/NCBITaxon_43540,none +16.9548485,NCBITaxon:43541,http://purl.obolibrary.org/obo/NCBITaxon_43541,none +16.9548485,NCBITaxon:43542,http://purl.obolibrary.org/obo/NCBITaxon_43542,none +16.9548485,NCBITaxon:43557,http://purl.obolibrary.org/obo/NCBITaxon_43557,none +16.9548485,NCBITaxon:435719,http://purl.obolibrary.org/obo/NCBITaxon_435719,none +16.9548485,NCBITaxon:435732,http://purl.obolibrary.org/obo/NCBITaxon_435732,none +16.9548485,NCBITaxon:43599,http://purl.obolibrary.org/obo/NCBITaxon_43599,none +16.9548485,NCBITaxon:4366,http://purl.obolibrary.org/obo/NCBITaxon_4366,none +16.9548485,NCBITaxon:43698,http://purl.obolibrary.org/obo/NCBITaxon_43698,none +16.9548485,NCBITaxon:43699,http://purl.obolibrary.org/obo/NCBITaxon_43699,none +16.9548485,NCBITaxon:43700,http://purl.obolibrary.org/obo/NCBITaxon_43700,none +16.9548485,NCBITaxon:43718,http://purl.obolibrary.org/obo/NCBITaxon_43718,none +16.9548485,NCBITaxon:4372,http://purl.obolibrary.org/obo/NCBITaxon_4372,none +16.9548485,NCBITaxon:43739,http://purl.obolibrary.org/obo/NCBITaxon_43739,none +16.9548485,NCBITaxon:438045,http://purl.obolibrary.org/obo/NCBITaxon_438045,none +16.9548485,NCBITaxon:4381,http://purl.obolibrary.org/obo/NCBITaxon_4381,none +16.9548485,NCBITaxon:43818,http://purl.obolibrary.org/obo/NCBITaxon_43818,none +16.9548485,NCBITaxon:4382,http://purl.obolibrary.org/obo/NCBITaxon_4382,none +16.9548485,NCBITaxon:43832,http://purl.obolibrary.org/obo/NCBITaxon_43832,none +16.9548485,NCBITaxon:43838,http://purl.obolibrary.org/obo/NCBITaxon_43838,none +16.9548485,NCBITaxon:43848,http://purl.obolibrary.org/obo/NCBITaxon_43848,none +16.9548485,NCBITaxon:43866,http://purl.obolibrary.org/obo/NCBITaxon_43866,none +16.9548485,NCBITaxon:43874,http://purl.obolibrary.org/obo/NCBITaxon_43874,none +16.9548485,NCBITaxon:43899,http://purl.obolibrary.org/obo/NCBITaxon_43899,none +16.9548485,NCBITaxon:439016,http://purl.obolibrary.org/obo/NCBITaxon_439016,none +16.9548485,NCBITaxon:43902,http://purl.obolibrary.org/obo/NCBITaxon_43902,none +16.9548485,NCBITaxon:43913,http://purl.obolibrary.org/obo/NCBITaxon_43913,Chrysomyinae +16.9548485,NCBITaxon:439421,http://purl.obolibrary.org/obo/NCBITaxon_439421,none +16.9548485,NCBITaxon:439422,http://purl.obolibrary.org/obo/NCBITaxon_439422,none +16.9548485,NCBITaxon:439424,http://purl.obolibrary.org/obo/NCBITaxon_439424,none +16.9548485,NCBITaxon:439426,http://purl.obolibrary.org/obo/NCBITaxon_439426,none +16.9548485,NCBITaxon:439491,http://purl.obolibrary.org/obo/NCBITaxon_439491,none +16.9548485,NCBITaxon:43953,http://purl.obolibrary.org/obo/NCBITaxon_43953,none +16.9548485,NCBITaxon:4401,http://purl.obolibrary.org/obo/NCBITaxon_4401,none +16.9548485,NCBITaxon:4402,http://purl.obolibrary.org/obo/NCBITaxon_4402,none +16.9548485,NCBITaxon:44023,http://purl.obolibrary.org/obo/NCBITaxon_44023,none +16.9548485,NCBITaxon:440266,http://purl.obolibrary.org/obo/NCBITaxon_440266,none +16.9548485,NCBITaxon:440949,http://purl.obolibrary.org/obo/NCBITaxon_440949,none +16.9548485,NCBITaxon:441895,http://purl.obolibrary.org/obo/NCBITaxon_441895,none +16.9548485,NCBITaxon:441999,http://purl.obolibrary.org/obo/NCBITaxon_441999,none +16.9548485,NCBITaxon:44200,http://purl.obolibrary.org/obo/NCBITaxon_44200,none +16.9548485,NCBITaxon:44201,http://purl.obolibrary.org/obo/NCBITaxon_44201,none +16.9548485,NCBITaxon:44260,http://purl.obolibrary.org/obo/NCBITaxon_44260,none +16.9548485,NCBITaxon:442624,http://purl.obolibrary.org/obo/NCBITaxon_442624,none +16.9548485,NCBITaxon:4427,http://purl.obolibrary.org/obo/NCBITaxon_4427,none +16.9548485,NCBITaxon:443751,http://purl.obolibrary.org/obo/NCBITaxon_443751,none +16.9548485,NCBITaxon:443787,http://purl.obolibrary.org/obo/NCBITaxon_443787,none +16.9548485,NCBITaxon:444634,http://purl.obolibrary.org/obo/NCBITaxon_444634,none +16.9548485,NCBITaxon:444635,http://purl.obolibrary.org/obo/NCBITaxon_444635,none +16.9548485,NCBITaxon:44482,http://purl.obolibrary.org/obo/NCBITaxon_44482,none +16.9548485,NCBITaxon:44483,http://purl.obolibrary.org/obo/NCBITaxon_44483,none +16.9548485,NCBITaxon:44484,http://purl.obolibrary.org/obo/NCBITaxon_44484,none +16.9548485,NCBITaxon:44485,http://purl.obolibrary.org/obo/NCBITaxon_44485,none +16.9548485,NCBITaxon:445227,http://purl.obolibrary.org/obo/NCBITaxon_445227,none +16.9548485,NCBITaxon:4455,http://purl.obolibrary.org/obo/NCBITaxon_4455,none +16.9548485,NCBITaxon:4456,http://purl.obolibrary.org/obo/NCBITaxon_4456,none +16.9548485,NCBITaxon:44596,http://purl.obolibrary.org/obo/NCBITaxon_44596,none +16.9548485,NCBITaxon:4460,http://purl.obolibrary.org/obo/NCBITaxon_4460,none +16.9548485,NCBITaxon:44639,http://purl.obolibrary.org/obo/NCBITaxon_44639,none +16.9548485,NCBITaxon:44640,http://purl.obolibrary.org/obo/NCBITaxon_44640,none +16.9548485,NCBITaxon:447134,http://purl.obolibrary.org/obo/NCBITaxon_447134,Myodes +16.9548485,NCBITaxon:447171,http://purl.obolibrary.org/obo/NCBITaxon_447171,none +16.9548485,NCBITaxon:4473,http://purl.obolibrary.org/obo/NCBITaxon_4473,none +16.9548485,NCBITaxon:449102,http://purl.obolibrary.org/obo/NCBITaxon_449102,none +16.9548485,NCBITaxon:44981,http://purl.obolibrary.org/obo/NCBITaxon_44981,none +16.9548485,NCBITaxon:44982,http://purl.obolibrary.org/obo/NCBITaxon_44982,none +16.9548485,NCBITaxon:45031,http://purl.obolibrary.org/obo/NCBITaxon_45031,none +16.9548485,NCBITaxon:45032,http://purl.obolibrary.org/obo/NCBITaxon_45032,none +16.9548485,NCBITaxon:450634,http://purl.obolibrary.org/obo/NCBITaxon_450634,none +16.9548485,NCBITaxon:45121,http://purl.obolibrary.org/obo/NCBITaxon_45121,none +16.9548485,NCBITaxon:451274,http://purl.obolibrary.org/obo/NCBITaxon_451274,none +16.9548485,NCBITaxon:4513,http://purl.obolibrary.org/obo/NCBITaxon_4513,none +16.9548485,NCBITaxon:45132,http://purl.obolibrary.org/obo/NCBITaxon_45132,none +16.9548485,NCBITaxon:451460,http://purl.obolibrary.org/obo/NCBITaxon_451460,none +16.9548485,NCBITaxon:451511,http://purl.obolibrary.org/obo/NCBITaxon_451511,none +16.9548485,NCBITaxon:451711,http://purl.obolibrary.org/obo/NCBITaxon_451711,none +16.9548485,NCBITaxon:451827,http://purl.obolibrary.org/obo/NCBITaxon_451827,none +16.9548485,NCBITaxon:45224,http://purl.obolibrary.org/obo/NCBITaxon_45224,none +16.9548485,NCBITaxon:452332,http://purl.obolibrary.org/obo/NCBITaxon_452332,none +16.9548485,NCBITaxon:452334,http://purl.obolibrary.org/obo/NCBITaxon_452334,none +16.9548485,NCBITaxon:452562,http://purl.obolibrary.org/obo/NCBITaxon_452562,none +16.9548485,NCBITaxon:453460,http://purl.obolibrary.org/obo/NCBITaxon_453460,none +16.9548485,NCBITaxon:453461,http://purl.obolibrary.org/obo/NCBITaxon_453461,none +16.9548485,NCBITaxon:45350,http://purl.obolibrary.org/obo/NCBITaxon_45350,none +16.9548485,NCBITaxon:45376,http://purl.obolibrary.org/obo/NCBITaxon_45376,none +16.9548485,NCBITaxon:4538,http://purl.obolibrary.org/obo/NCBITaxon_4538,none +16.9548485,NCBITaxon:45382,http://purl.obolibrary.org/obo/NCBITaxon_45382,none +16.9548485,NCBITaxon:45383,http://purl.obolibrary.org/obo/NCBITaxon_45383,none +16.9548485,NCBITaxon:45408,http://purl.obolibrary.org/obo/NCBITaxon_45408,none +16.9548485,NCBITaxon:45455,http://purl.obolibrary.org/obo/NCBITaxon_45455,none +16.9548485,NCBITaxon:454594,http://purl.obolibrary.org/obo/NCBITaxon_454594,none +16.9548485,NCBITaxon:4546,http://purl.obolibrary.org/obo/NCBITaxon_4546,none +16.9548485,NCBITaxon:45476,http://purl.obolibrary.org/obo/NCBITaxon_45476,none +16.9548485,NCBITaxon:45618,http://purl.obolibrary.org/obo/NCBITaxon_45618,none +16.9548485,NCBITaxon:456390,http://purl.obolibrary.org/obo/NCBITaxon_456390,none +16.9548485,NCBITaxon:457382,http://purl.obolibrary.org/obo/NCBITaxon_457382,none +16.9548485,NCBITaxon:45768,http://purl.obolibrary.org/obo/NCBITaxon_45768,none +16.9548485,NCBITaxon:458580,http://purl.obolibrary.org/obo/NCBITaxon_458580,none +16.9548485,NCBITaxon:459081,http://purl.obolibrary.org/obo/NCBITaxon_459081,none +16.9548485,NCBITaxon:459104,http://purl.obolibrary.org/obo/NCBITaxon_459104,none +16.9548485,NCBITaxon:45926,http://purl.obolibrary.org/obo/NCBITaxon_45926,none +16.9548485,NCBITaxon:46002,http://purl.obolibrary.org/obo/NCBITaxon_46002,none +16.9548485,NCBITaxon:460363,http://purl.obolibrary.org/obo/NCBITaxon_460363,none +16.9548485,NCBITaxon:460364,http://purl.obolibrary.org/obo/NCBITaxon_460364,none +16.9548485,NCBITaxon:46059,http://purl.obolibrary.org/obo/NCBITaxon_46059,none +16.9548485,NCBITaxon:46070,http://purl.obolibrary.org/obo/NCBITaxon_46070,none +16.9548485,NCBITaxon:46108,http://purl.obolibrary.org/obo/NCBITaxon_46108,none +16.9548485,NCBITaxon:461281,http://purl.obolibrary.org/obo/NCBITaxon_461281,none +16.9548485,NCBITaxon:46207,http://purl.obolibrary.org/obo/NCBITaxon_46207,none +16.9548485,NCBITaxon:46218,http://purl.obolibrary.org/obo/NCBITaxon_46218,none +16.9548485,NCBITaxon:4622,http://purl.obolibrary.org/obo/NCBITaxon_4622,none +16.9548485,NCBITaxon:46226,http://purl.obolibrary.org/obo/NCBITaxon_46226,none +16.9548485,NCBITaxon:46245,http://purl.obolibrary.org/obo/NCBITaxon_46245,none +16.9548485,NCBITaxon:462590,http://purl.obolibrary.org/obo/NCBITaxon_462590,none +16.9548485,NCBITaxon:46266,http://purl.obolibrary.org/obo/NCBITaxon_46266,none +16.9548485,NCBITaxon:4630,http://purl.obolibrary.org/obo/NCBITaxon_4630,none +16.9548485,NCBITaxon:4631,http://purl.obolibrary.org/obo/NCBITaxon_4631,none +16.9548485,NCBITaxon:46324,http://purl.obolibrary.org/obo/NCBITaxon_46324,none +16.9548485,NCBITaxon:46334,http://purl.obolibrary.org/obo/NCBITaxon_46334,none +16.9548485,NCBITaxon:46339,http://purl.obolibrary.org/obo/NCBITaxon_46339,none +16.9548485,NCBITaxon:463391,http://purl.obolibrary.org/obo/NCBITaxon_463391,none +16.9548485,NCBITaxon:463392,http://purl.obolibrary.org/obo/NCBITaxon_463392,none +16.9548485,NCBITaxon:46366,http://purl.obolibrary.org/obo/NCBITaxon_46366,none +16.9548485,NCBITaxon:46406,http://purl.obolibrary.org/obo/NCBITaxon_46406,none +16.9548485,NCBITaxon:46414,http://purl.obolibrary.org/obo/NCBITaxon_46414,none +16.9548485,NCBITaxon:46456,http://purl.obolibrary.org/obo/NCBITaxon_46456,none +16.9548485,NCBITaxon:464925,http://purl.obolibrary.org/obo/NCBITaxon_464925,none +16.9548485,NCBITaxon:4652,http://purl.obolibrary.org/obo/NCBITaxon_4652,none +16.9548485,NCBITaxon:4653,http://purl.obolibrary.org/obo/NCBITaxon_4653,none +16.9548485,NCBITaxon:46593,http://purl.obolibrary.org/obo/NCBITaxon_46593,none +16.9548485,NCBITaxon:466143,http://purl.obolibrary.org/obo/NCBITaxon_466143,none +16.9548485,NCBITaxon:466144,http://purl.obolibrary.org/obo/NCBITaxon_466144,none +16.9548485,NCBITaxon:466215,http://purl.obolibrary.org/obo/NCBITaxon_466215,none +16.9548485,NCBITaxon:466216,http://purl.obolibrary.org/obo/NCBITaxon_466216,none +16.9548485,NCBITaxon:46711,http://purl.obolibrary.org/obo/NCBITaxon_46711,none +16.9548485,NCBITaxon:4675,http://purl.obolibrary.org/obo/NCBITaxon_4675,none +16.9548485,NCBITaxon:46756,http://purl.obolibrary.org/obo/NCBITaxon_46756,none +16.9548485,NCBITaxon:46786,http://purl.obolibrary.org/obo/NCBITaxon_46786,none +16.9548485,NCBITaxon:46792,http://purl.obolibrary.org/obo/NCBITaxon_46792,none +16.9548485,NCBITaxon:46795,http://purl.obolibrary.org/obo/NCBITaxon_46795,none +16.9548485,NCBITaxon:46800,http://purl.obolibrary.org/obo/NCBITaxon_46800,none +16.9548485,NCBITaxon:46823,http://purl.obolibrary.org/obo/NCBITaxon_46823,none +16.9548485,NCBITaxon:46840,http://purl.obolibrary.org/obo/NCBITaxon_46840,none +16.9548485,NCBITaxon:46874,http://purl.obolibrary.org/obo/NCBITaxon_46874,none +16.9548485,NCBITaxon:46891,http://purl.obolibrary.org/obo/NCBITaxon_46891,none +16.9548485,NCBITaxon:469,http://purl.obolibrary.org/obo/NCBITaxon_469,Acinetobacter +16.9548485,NCBITaxon:46916,http://purl.obolibrary.org/obo/NCBITaxon_46916,none +16.9548485,NCBITaxon:46922,http://purl.obolibrary.org/obo/NCBITaxon_46922,none +16.9548485,NCBITaxon:46925,http://purl.obolibrary.org/obo/NCBITaxon_46925,none +16.9548485,NCBITaxon:46962,http://purl.obolibrary.org/obo/NCBITaxon_46962,none +16.9548485,NCBITaxon:4697,http://purl.obolibrary.org/obo/NCBITaxon_4697,none +16.9548485,NCBITaxon:46977,http://purl.obolibrary.org/obo/NCBITaxon_46977,none +16.9548485,NCBITaxon:46984,http://purl.obolibrary.org/obo/NCBITaxon_46984,none +16.9548485,NCBITaxon:46988,http://purl.obolibrary.org/obo/NCBITaxon_46988,none +16.9548485,NCBITaxon:469895,http://purl.obolibrary.org/obo/NCBITaxon_469895,none +16.9548485,NCBITaxon:47005,http://purl.obolibrary.org/obo/NCBITaxon_47005,none +16.9548485,NCBITaxon:470341,http://purl.obolibrary.org/obo/NCBITaxon_470341,none +16.9548485,NCBITaxon:47048,http://purl.obolibrary.org/obo/NCBITaxon_47048,none +16.9548485,NCBITaxon:470681,http://purl.obolibrary.org/obo/NCBITaxon_470681,none +16.9548485,NCBITaxon:471279,http://purl.obolibrary.org/obo/NCBITaxon_471279,none +16.9548485,NCBITaxon:471498,http://purl.obolibrary.org/obo/NCBITaxon_471498,none +16.9548485,NCBITaxon:47230,http://purl.obolibrary.org/obo/NCBITaxon_47230,none +16.9548485,NCBITaxon:4724,http://purl.obolibrary.org/obo/NCBITaxon_4724,none +16.9548485,NCBITaxon:4725,http://purl.obolibrary.org/obo/NCBITaxon_4725,none +16.9548485,NCBITaxon:472760,http://purl.obolibrary.org/obo/NCBITaxon_472760,none +16.9548485,NCBITaxon:472887,http://purl.obolibrary.org/obo/NCBITaxon_472887,none +16.9548485,NCBITaxon:47301,http://purl.obolibrary.org/obo/NCBITaxon_47301,none +16.9548485,NCBITaxon:47364,http://purl.obolibrary.org/obo/NCBITaxon_47364,none +16.9548485,NCBITaxon:473783,http://purl.obolibrary.org/obo/NCBITaxon_473783,none +16.9548485,NCBITaxon:473784,http://purl.obolibrary.org/obo/NCBITaxon_473784,none +16.9548485,NCBITaxon:47465,http://purl.obolibrary.org/obo/NCBITaxon_47465,none +16.9548485,NCBITaxon:474993,http://purl.obolibrary.org/obo/NCBITaxon_474993,none +16.9548485,NCBITaxon:474995,http://purl.obolibrary.org/obo/NCBITaxon_474995,none +16.9548485,NCBITaxon:475199,http://purl.obolibrary.org/obo/NCBITaxon_475199,none +16.9548485,NCBITaxon:47523,http://purl.obolibrary.org/obo/NCBITaxon_47523,none +16.9548485,NCBITaxon:47526,http://purl.obolibrary.org/obo/NCBITaxon_47526,none +16.9548485,NCBITaxon:475327,http://purl.obolibrary.org/obo/NCBITaxon_475327,none +16.9548485,NCBITaxon:47571,http://purl.obolibrary.org/obo/NCBITaxon_47571,none +16.9548485,NCBITaxon:47578,http://purl.obolibrary.org/obo/NCBITaxon_47578,none +16.9548485,NCBITaxon:475861,http://purl.obolibrary.org/obo/NCBITaxon_475861,none +16.9548485,NCBITaxon:47766,http://purl.obolibrary.org/obo/NCBITaxon_47766,none +16.9548485,NCBITaxon:47833,http://purl.obolibrary.org/obo/NCBITaxon_47833,none +16.9548485,NCBITaxon:478550,http://purl.obolibrary.org/obo/NCBITaxon_478550,none +16.9548485,NCBITaxon:47877,http://purl.obolibrary.org/obo/NCBITaxon_47877,none +16.9548485,NCBITaxon:47899,http://purl.obolibrary.org/obo/NCBITaxon_47899,none +16.9548485,NCBITaxon:479,http://purl.obolibrary.org/obo/NCBITaxon_479,none +16.9548485,NCBITaxon:479148,http://purl.obolibrary.org/obo/NCBITaxon_479148,none +16.9548485,NCBITaxon:479149,http://purl.obolibrary.org/obo/NCBITaxon_479149,none +16.9548485,NCBITaxon:47965,http://purl.obolibrary.org/obo/NCBITaxon_47965,none +16.9548485,NCBITaxon:479705,http://purl.obolibrary.org/obo/NCBITaxon_479705,none +16.9548485,NCBITaxon:479885,http://purl.obolibrary.org/obo/NCBITaxon_479885,none +16.9548485,NCBITaxon:479886,http://purl.obolibrary.org/obo/NCBITaxon_479886,none +16.9548485,NCBITaxon:48005,http://purl.obolibrary.org/obo/NCBITaxon_48005,none +16.9548485,NCBITaxon:480214,http://purl.obolibrary.org/obo/NCBITaxon_480214,none +16.9548485,NCBITaxon:4805,http://purl.obolibrary.org/obo/NCBITaxon_4805,none +16.9548485,NCBITaxon:480662,http://purl.obolibrary.org/obo/NCBITaxon_480662,none +16.9548485,NCBITaxon:480663,http://purl.obolibrary.org/obo/NCBITaxon_480663,none +16.9548485,NCBITaxon:48084,http://purl.obolibrary.org/obo/NCBITaxon_48084,none +16.9548485,NCBITaxon:48085,http://purl.obolibrary.org/obo/NCBITaxon_48085,none +16.9548485,NCBITaxon:48110,http://purl.obolibrary.org/obo/NCBITaxon_48110,none +16.9548485,NCBITaxon:48134,http://purl.obolibrary.org/obo/NCBITaxon_48134,none +16.9548485,NCBITaxon:481632,http://purl.obolibrary.org/obo/NCBITaxon_481632,none +16.9548485,NCBITaxon:481851,http://purl.obolibrary.org/obo/NCBITaxon_481851,none +16.9548485,NCBITaxon:481886,http://purl.obolibrary.org/obo/NCBITaxon_481886,none +16.9548485,NCBITaxon:48209,http://purl.obolibrary.org/obo/NCBITaxon_48209,none +16.9548485,NCBITaxon:48303,http://purl.obolibrary.org/obo/NCBITaxon_48303,none +16.9548485,NCBITaxon:48338,http://purl.obolibrary.org/obo/NCBITaxon_48338,none +16.9548485,NCBITaxon:48347,http://purl.obolibrary.org/obo/NCBITaxon_48347,none +16.9548485,NCBITaxon:48385,http://purl.obolibrary.org/obo/NCBITaxon_48385,none +16.9548485,NCBITaxon:484894,http://purl.obolibrary.org/obo/NCBITaxon_484894,none +16.9548485,NCBITaxon:484895,http://purl.obolibrary.org/obo/NCBITaxon_484895,none +16.9548485,NCBITaxon:48497,http://purl.obolibrary.org/obo/NCBITaxon_48497,none +16.9548485,NCBITaxon:48533,http://purl.obolibrary.org/obo/NCBITaxon_48533,none +16.9548485,NCBITaxon:4857,http://purl.obolibrary.org/obo/NCBITaxon_4857,Entomophthorales +16.9548485,NCBITaxon:485722,http://purl.obolibrary.org/obo/NCBITaxon_485722,none +16.9548485,NCBITaxon:48595,http://purl.obolibrary.org/obo/NCBITaxon_48595,none +16.9548485,NCBITaxon:48611,http://purl.obolibrary.org/obo/NCBITaxon_48611,none +16.9548485,NCBITaxon:486189,http://purl.obolibrary.org/obo/NCBITaxon_486189,none +16.9548485,NCBITaxon:486191,http://purl.obolibrary.org/obo/NCBITaxon_486191,none +16.9548485,NCBITaxon:486494,http://purl.obolibrary.org/obo/NCBITaxon_486494,none +16.9548485,NCBITaxon:48668,http://purl.obolibrary.org/obo/NCBITaxon_48668,none +16.9548485,NCBITaxon:486728,http://purl.obolibrary.org/obo/NCBITaxon_486728,none +16.9548485,NCBITaxon:48704,http://purl.obolibrary.org/obo/NCBITaxon_48704,none +16.9548485,NCBITaxon:48705,http://purl.obolibrary.org/obo/NCBITaxon_48705,none +16.9548485,NCBITaxon:487098,http://purl.obolibrary.org/obo/NCBITaxon_487098,none +16.9548485,NCBITaxon:487102,http://purl.obolibrary.org/obo/NCBITaxon_487102,none +16.9548485,NCBITaxon:4875,http://purl.obolibrary.org/obo/NCBITaxon_4875,none +16.9548485,NCBITaxon:48831,http://purl.obolibrary.org/obo/NCBITaxon_48831,none +16.9548485,NCBITaxon:48892,http://purl.obolibrary.org/obo/NCBITaxon_48892,none +16.9548485,NCBITaxon:48910,http://purl.obolibrary.org/obo/NCBITaxon_48910,none +16.9548485,NCBITaxon:48911,http://purl.obolibrary.org/obo/NCBITaxon_48911,none +16.9548485,NCBITaxon:490055,http://purl.obolibrary.org/obo/NCBITaxon_490055,none +16.9548485,NCBITaxon:490056,http://purl.obolibrary.org/obo/NCBITaxon_490056,none +16.9548485,NCBITaxon:490370,http://purl.obolibrary.org/obo/NCBITaxon_490370,none +16.9548485,NCBITaxon:4908,http://purl.obolibrary.org/obo/NCBITaxon_4908,none +16.9548485,NCBITaxon:49112,http://purl.obolibrary.org/obo/NCBITaxon_49112,none +16.9548485,NCBITaxon:491294,http://purl.obolibrary.org/obo/NCBITaxon_491294,none +16.9548485,NCBITaxon:4917,http://purl.obolibrary.org/obo/NCBITaxon_4917,none +16.9548485,NCBITaxon:491933,http://purl.obolibrary.org/obo/NCBITaxon_491933,none +16.9548485,NCBITaxon:49201,http://purl.obolibrary.org/obo/NCBITaxon_49201,none +16.9548485,NCBITaxon:49220,http://purl.obolibrary.org/obo/NCBITaxon_49220,none +16.9548485,NCBITaxon:49353,http://purl.obolibrary.org/obo/NCBITaxon_49353,none +16.9548485,NCBITaxon:493929,http://purl.obolibrary.org/obo/NCBITaxon_493929,none +16.9548485,NCBITaxon:4943,http://purl.obolibrary.org/obo/NCBITaxon_4943,none +16.9548485,NCBITaxon:494651,http://purl.obolibrary.org/obo/NCBITaxon_494651,none +16.9548485,NCBITaxon:4948,http://purl.obolibrary.org/obo/NCBITaxon_4948,none +16.9548485,NCBITaxon:495130,http://purl.obolibrary.org/obo/NCBITaxon_495130,none +16.9548485,NCBITaxon:495146,http://purl.obolibrary.org/obo/NCBITaxon_495146,none +16.9548485,NCBITaxon:49562,http://purl.obolibrary.org/obo/NCBITaxon_49562,none +16.9548485,NCBITaxon:4962,http://purl.obolibrary.org/obo/NCBITaxon_4962,none +16.9548485,NCBITaxon:49647,http://purl.obolibrary.org/obo/NCBITaxon_49647,none +16.9548485,NCBITaxon:49674,http://purl.obolibrary.org/obo/NCBITaxon_49674,none +16.9548485,NCBITaxon:497004,http://purl.obolibrary.org/obo/NCBITaxon_497004,none +16.9548485,NCBITaxon:49835,http://purl.obolibrary.org/obo/NCBITaxon_49835,none +16.9548485,NCBITaxon:498803,http://purl.obolibrary.org/obo/NCBITaxon_498803,none +16.9548485,NCBITaxon:49928,http://purl.obolibrary.org/obo/NCBITaxon_49928,none +16.9548485,NCBITaxon:49959,http://purl.obolibrary.org/obo/NCBITaxon_49959,none +16.9548485,NCBITaxon:50007,http://purl.obolibrary.org/obo/NCBITaxon_50007,none +16.9548485,NCBITaxon:500324,http://purl.obolibrary.org/obo/NCBITaxon_500324,none +16.9548485,NCBITaxon:500392,http://purl.obolibrary.org/obo/NCBITaxon_500392,none +16.9548485,NCBITaxon:500654,http://purl.obolibrary.org/obo/NCBITaxon_500654,none +16.9548485,NCBITaxon:501328,http://purl.obolibrary.org/obo/NCBITaxon_501328,none +16.9548485,NCBITaxon:5014,http://purl.obolibrary.org/obo/NCBITaxon_5014,Dothideales +16.9548485,NCBITaxon:50190,http://purl.obolibrary.org/obo/NCBITaxon_50190,none +16.9548485,NCBITaxon:5021,http://purl.obolibrary.org/obo/NCBITaxon_5021,none +16.9548485,NCBITaxon:502104,http://purl.obolibrary.org/obo/NCBITaxon_502104,none +16.9548485,NCBITaxon:50230,http://purl.obolibrary.org/obo/NCBITaxon_50230,none +16.9548485,NCBITaxon:50237,http://purl.obolibrary.org/obo/NCBITaxon_50237,none +16.9548485,NCBITaxon:502965,http://purl.obolibrary.org/obo/NCBITaxon_502965,none +16.9548485,NCBITaxon:502969,http://purl.obolibrary.org/obo/NCBITaxon_502969,none +16.9548485,NCBITaxon:503006,http://purl.obolibrary.org/obo/NCBITaxon_503006,none +16.9548485,NCBITaxon:503396,http://purl.obolibrary.org/obo/NCBITaxon_503396,none +16.9548485,NCBITaxon:503397,http://purl.obolibrary.org/obo/NCBITaxon_503397,none +16.9548485,NCBITaxon:50350,http://purl.obolibrary.org/obo/NCBITaxon_50350,none +16.9548485,NCBITaxon:50351,http://purl.obolibrary.org/obo/NCBITaxon_50351,none +16.9548485,NCBITaxon:50356,http://purl.obolibrary.org/obo/NCBITaxon_50356,none +16.9548485,NCBITaxon:50384,http://purl.obolibrary.org/obo/NCBITaxon_50384,none +16.9548485,NCBITaxon:5040,http://purl.obolibrary.org/obo/NCBITaxon_5040,none +16.9548485,NCBITaxon:50439,http://purl.obolibrary.org/obo/NCBITaxon_50439,none +16.9548485,NCBITaxon:504455,http://purl.obolibrary.org/obo/NCBITaxon_504455,none +16.9548485,NCBITaxon:50553,http://purl.obolibrary.org/obo/NCBITaxon_50553,none +16.9548485,NCBITaxon:50581,http://purl.obolibrary.org/obo/NCBITaxon_50581,none +16.9548485,NCBITaxon:50630,http://purl.obolibrary.org/obo/NCBITaxon_50630,none +16.9548485,NCBITaxon:50633,http://purl.obolibrary.org/obo/NCBITaxon_50633,none +16.9548485,NCBITaxon:50634,http://purl.obolibrary.org/obo/NCBITaxon_50634,none +16.9548485,NCBITaxon:507,http://purl.obolibrary.org/obo/NCBITaxon_507,none +16.9548485,NCBITaxon:507442,http://purl.obolibrary.org/obo/NCBITaxon_507442,none +16.9548485,NCBITaxon:507510,http://purl.obolibrary.org/obo/NCBITaxon_507510,none +16.9548485,NCBITaxon:50803,http://purl.obolibrary.org/obo/NCBITaxon_50803,none +16.9548485,NCBITaxon:508692,http://purl.obolibrary.org/obo/NCBITaxon_508692,none +16.9548485,NCBITaxon:508748,http://purl.obolibrary.org/obo/NCBITaxon_508748,none +16.9548485,NCBITaxon:509154,http://purl.obolibrary.org/obo/NCBITaxon_509154,none +16.9548485,NCBITaxon:50937,http://purl.obolibrary.org/obo/NCBITaxon_50937,none +16.9548485,NCBITaxon:50948,http://purl.obolibrary.org/obo/NCBITaxon_50948,none +16.9548485,NCBITaxon:5098,http://purl.obolibrary.org/obo/NCBITaxon_5098,none +16.9548485,NCBITaxon:51005,http://purl.obolibrary.org/obo/NCBITaxon_51005,none +16.9548485,NCBITaxon:5103,http://purl.obolibrary.org/obo/NCBITaxon_5103,none +16.9548485,NCBITaxon:5104,http://purl.obolibrary.org/obo/NCBITaxon_5104,none +16.9548485,NCBITaxon:51088,http://purl.obolibrary.org/obo/NCBITaxon_51088,none +16.9548485,NCBITaxon:5117,http://purl.obolibrary.org/obo/NCBITaxon_5117,none +16.9548485,NCBITaxon:511755,http://purl.obolibrary.org/obo/NCBITaxon_511755,none +16.9548485,NCBITaxon:512088,http://purl.obolibrary.org/obo/NCBITaxon_512088,none +16.9548485,NCBITaxon:51242,http://purl.obolibrary.org/obo/NCBITaxon_51242,none +16.9548485,NCBITaxon:512792,http://purl.obolibrary.org/obo/NCBITaxon_512792,none +16.9548485,NCBITaxon:51313,http://purl.obolibrary.org/obo/NCBITaxon_51313,none +16.9548485,NCBITaxon:51319,http://purl.obolibrary.org/obo/NCBITaxon_51319,none +16.9548485,NCBITaxon:51344,http://purl.obolibrary.org/obo/NCBITaxon_51344,none +16.9548485,NCBITaxon:51345,http://purl.obolibrary.org/obo/NCBITaxon_51345,none +16.9548485,NCBITaxon:51346,http://purl.obolibrary.org/obo/NCBITaxon_51346,none +16.9548485,NCBITaxon:51377,http://purl.obolibrary.org/obo/NCBITaxon_51377,none +16.9548485,NCBITaxon:51502,http://purl.obolibrary.org/obo/NCBITaxon_51502,none +16.9548485,NCBITaxon:51516,http://purl.obolibrary.org/obo/NCBITaxon_51516,none +16.9548485,NCBITaxon:51517,http://purl.obolibrary.org/obo/NCBITaxon_51517,none +16.9548485,NCBITaxon:51518,http://purl.obolibrary.org/obo/NCBITaxon_51518,none +16.9548485,NCBITaxon:515320,http://purl.obolibrary.org/obo/NCBITaxon_515320,none +16.9548485,NCBITaxon:515575,http://purl.obolibrary.org/obo/NCBITaxon_515575,none +16.9548485,NCBITaxon:515598,http://purl.obolibrary.org/obo/NCBITaxon_515598,none +16.9548485,NCBITaxon:515656,http://purl.obolibrary.org/obo/NCBITaxon_515656,none +16.9548485,NCBITaxon:515657,http://purl.obolibrary.org/obo/NCBITaxon_515657,none +16.9548485,NCBITaxon:51679,http://purl.obolibrary.org/obo/NCBITaxon_51679,none +16.9548485,NCBITaxon:517361,http://purl.obolibrary.org/obo/NCBITaxon_517361,none +16.9548485,NCBITaxon:51763,http://purl.obolibrary.org/obo/NCBITaxon_51763,none +16.9548485,NCBITaxon:51768,http://purl.obolibrary.org/obo/NCBITaxon_51768,none +16.9548485,NCBITaxon:51797,http://purl.obolibrary.org/obo/NCBITaxon_51797,none +16.9548485,NCBITaxon:518105,http://purl.obolibrary.org/obo/NCBITaxon_518105,none +16.9548485,NCBITaxon:51945,http://purl.obolibrary.org/obo/NCBITaxon_51945,none +16.9548485,NCBITaxon:519498,http://purl.obolibrary.org/obo/NCBITaxon_519498,none +16.9548485,NCBITaxon:51961,http://purl.obolibrary.org/obo/NCBITaxon_51961,none +16.9548485,NCBITaxon:52176,http://purl.obolibrary.org/obo/NCBITaxon_52176,none +16.9548485,NCBITaxon:52181,http://purl.obolibrary.org/obo/NCBITaxon_52181,none +16.9548485,NCBITaxon:52182,http://purl.obolibrary.org/obo/NCBITaxon_52182,none +16.9548485,NCBITaxon:522915,http://purl.obolibrary.org/obo/NCBITaxon_522915,none +16.9548485,NCBITaxon:523093,http://purl.obolibrary.org/obo/NCBITaxon_523093,none +16.9548485,NCBITaxon:523149,http://purl.obolibrary.org/obo/NCBITaxon_523149,none +16.9548485,NCBITaxon:523164,http://purl.obolibrary.org/obo/NCBITaxon_523164,none +16.9548485,NCBITaxon:523174,http://purl.obolibrary.org/obo/NCBITaxon_523174,none +16.9548485,NCBITaxon:52370,http://purl.obolibrary.org/obo/NCBITaxon_52370,none +16.9548485,NCBITaxon:523708,http://purl.obolibrary.org/obo/NCBITaxon_523708,none +16.9548485,NCBITaxon:523710,http://purl.obolibrary.org/obo/NCBITaxon_523710,none +16.9548485,NCBITaxon:523711,http://purl.obolibrary.org/obo/NCBITaxon_523711,none +16.9548485,NCBITaxon:523908,http://purl.obolibrary.org/obo/NCBITaxon_523908,none +16.9548485,NCBITaxon:523959,http://purl.obolibrary.org/obo/NCBITaxon_523959,none +16.9548485,NCBITaxon:524135,http://purl.obolibrary.org/obo/NCBITaxon_524135,none +16.9548485,NCBITaxon:524136,http://purl.obolibrary.org/obo/NCBITaxon_524136,none +16.9548485,NCBITaxon:525281,http://purl.obolibrary.org/obo/NCBITaxon_525281,none +16.9548485,NCBITaxon:5254,http://purl.obolibrary.org/obo/NCBITaxon_5254,none +16.9548485,NCBITaxon:5259,http://purl.obolibrary.org/obo/NCBITaxon_5259,none +16.9548485,NCBITaxon:5260,http://purl.obolibrary.org/obo/NCBITaxon_5260,none +16.9548485,NCBITaxon:52617,http://purl.obolibrary.org/obo/NCBITaxon_52617,none +16.9548485,NCBITaxon:526524,http://purl.obolibrary.org/obo/NCBITaxon_526524,Erysipelotrichia +16.9548485,NCBITaxon:526525,http://purl.obolibrary.org/obo/NCBITaxon_526525,Erysipelotrichales +16.9548485,NCBITaxon:52655,http://purl.obolibrary.org/obo/NCBITaxon_52655,none +16.9548485,NCBITaxon:52657,http://purl.obolibrary.org/obo/NCBITaxon_52657,none +16.9548485,NCBITaxon:52723,http://purl.obolibrary.org/obo/NCBITaxon_52723,none +16.9548485,NCBITaxon:5277,http://purl.obolibrary.org/obo/NCBITaxon_5277,none +16.9548485,NCBITaxon:5279,http://purl.obolibrary.org/obo/NCBITaxon_5279,none +16.9548485,NCBITaxon:52798,http://purl.obolibrary.org/obo/NCBITaxon_52798,none +16.9548485,NCBITaxon:52811,http://purl.obolibrary.org/obo/NCBITaxon_52811,none +16.9548485,NCBITaxon:52812,http://purl.obolibrary.org/obo/NCBITaxon_52812,none +16.9548485,NCBITaxon:52813,http://purl.obolibrary.org/obo/NCBITaxon_52813,none +16.9548485,NCBITaxon:5285,http://purl.obolibrary.org/obo/NCBITaxon_5285,none +16.9548485,NCBITaxon:529680,http://purl.obolibrary.org/obo/NCBITaxon_529680,none +16.9548485,NCBITaxon:53009,http://purl.obolibrary.org/obo/NCBITaxon_53009,none +16.9548485,NCBITaxon:530166,http://purl.obolibrary.org/obo/NCBITaxon_530166,none +16.9548485,NCBITaxon:53064,http://purl.obolibrary.org/obo/NCBITaxon_53064,none +16.9548485,NCBITaxon:53158,http://purl.obolibrary.org/obo/NCBITaxon_53158,none +16.9548485,NCBITaxon:5322,http://purl.obolibrary.org/obo/NCBITaxon_5322,none +16.9548485,NCBITaxon:53392,http://purl.obolibrary.org/obo/NCBITaxon_53392,none +16.9548485,NCBITaxon:53394,http://purl.obolibrary.org/obo/NCBITaxon_53394,none +16.9548485,NCBITaxon:5340,http://purl.obolibrary.org/obo/NCBITaxon_5340,none +16.9548485,NCBITaxon:53402,http://purl.obolibrary.org/obo/NCBITaxon_53402,none +16.9548485,NCBITaxon:5345,http://purl.obolibrary.org/obo/NCBITaxon_5345,none +16.9548485,NCBITaxon:53454,http://purl.obolibrary.org/obo/NCBITaxon_53454,none +16.9548485,NCBITaxon:53472,http://purl.obolibrary.org/obo/NCBITaxon_53472,none +16.9548485,NCBITaxon:53481,http://purl.obolibrary.org/obo/NCBITaxon_53481,none +16.9548485,NCBITaxon:53506,http://purl.obolibrary.org/obo/NCBITaxon_53506,none +16.9548485,NCBITaxon:5351,http://purl.obolibrary.org/obo/NCBITaxon_5351,none +16.9548485,NCBITaxon:53527,http://purl.obolibrary.org/obo/NCBITaxon_53527,Culex +16.9548485,NCBITaxon:536081,http://purl.obolibrary.org/obo/NCBITaxon_536081,none +16.9548485,NCBITaxon:5368,http://purl.obolibrary.org/obo/NCBITaxon_5368,none +16.9548485,NCBITaxon:53684,http://purl.obolibrary.org/obo/NCBITaxon_53684,none +16.9548485,NCBITaxon:537009,http://purl.obolibrary.org/obo/NCBITaxon_537009,none +16.9548485,NCBITaxon:53702,http://purl.obolibrary.org/obo/NCBITaxon_53702,none +16.9548485,NCBITaxon:53720,http://purl.obolibrary.org/obo/NCBITaxon_53720,none +16.9548485,NCBITaxon:5375,http://purl.obolibrary.org/obo/NCBITaxon_5375,none +16.9548485,NCBITaxon:538120,http://purl.obolibrary.org/obo/NCBITaxon_538120,none +16.9548485,NCBITaxon:538626,http://purl.obolibrary.org/obo/NCBITaxon_538626,none +16.9548485,NCBITaxon:538998,http://purl.obolibrary.org/obo/NCBITaxon_538998,none +16.9548485,NCBITaxon:538999,http://purl.obolibrary.org/obo/NCBITaxon_538999,none +16.9548485,NCBITaxon:539000,http://purl.obolibrary.org/obo/NCBITaxon_539000,none +16.9548485,NCBITaxon:539002,http://purl.obolibrary.org/obo/NCBITaxon_539002,none +16.9548485,NCBITaxon:53907,http://purl.obolibrary.org/obo/NCBITaxon_53907,none +16.9548485,NCBITaxon:539738,http://purl.obolibrary.org/obo/NCBITaxon_539738,none +16.9548485,NCBITaxon:53993,http://purl.obolibrary.org/obo/NCBITaxon_53993,none +16.9548485,NCBITaxon:540030,http://purl.obolibrary.org/obo/NCBITaxon_540030,none +16.9548485,NCBITaxon:5401,http://purl.obolibrary.org/obo/NCBITaxon_5401,none +16.9548485,NCBITaxon:54075,http://purl.obolibrary.org/obo/NCBITaxon_54075,none +16.9548485,NCBITaxon:540992,http://purl.obolibrary.org/obo/NCBITaxon_540992,none +16.9548485,NCBITaxon:540993,http://purl.obolibrary.org/obo/NCBITaxon_540993,none +16.9548485,NCBITaxon:540994,http://purl.obolibrary.org/obo/NCBITaxon_540994,none +16.9548485,NCBITaxon:54111,http://purl.obolibrary.org/obo/NCBITaxon_54111,none +16.9548485,NCBITaxon:54282,http://purl.obolibrary.org/obo/NCBITaxon_54282,none +16.9548485,NCBITaxon:542838,http://purl.obolibrary.org/obo/NCBITaxon_542838,none +16.9548485,NCBITaxon:54288,http://purl.obolibrary.org/obo/NCBITaxon_54288,none +16.9548485,NCBITaxon:543876,http://purl.obolibrary.org/obo/NCBITaxon_543876,none +16.9548485,NCBITaxon:54452,http://purl.obolibrary.org/obo/NCBITaxon_54452,none +16.9548485,NCBITaxon:544571,http://purl.obolibrary.org/obo/NCBITaxon_544571,none +16.9548485,NCBITaxon:544680,http://purl.obolibrary.org/obo/NCBITaxon_544680,none +16.9548485,NCBITaxon:544686,http://purl.obolibrary.org/obo/NCBITaxon_544686,none +16.9548485,NCBITaxon:5453,http://purl.obolibrary.org/obo/NCBITaxon_5453,none +16.9548485,NCBITaxon:545366,http://purl.obolibrary.org/obo/NCBITaxon_545366,none +16.9548485,NCBITaxon:545419,http://purl.obolibrary.org/obo/NCBITaxon_545419,none +16.9548485,NCBITaxon:545932,http://purl.obolibrary.org/obo/NCBITaxon_545932,none +16.9548485,NCBITaxon:546530,http://purl.obolibrary.org/obo/NCBITaxon_546530,none +16.9548485,NCBITaxon:547467,http://purl.obolibrary.org/obo/NCBITaxon_547467,none +16.9548485,NCBITaxon:54806,http://purl.obolibrary.org/obo/NCBITaxon_54806,none +16.9548485,NCBITaxon:548266,http://purl.obolibrary.org/obo/NCBITaxon_548266,none +16.9548485,NCBITaxon:548267,http://purl.obolibrary.org/obo/NCBITaxon_548267,none +16.9548485,NCBITaxon:54829,http://purl.obolibrary.org/obo/NCBITaxon_54829,none +16.9548485,NCBITaxon:548908,http://purl.obolibrary.org/obo/NCBITaxon_548908,none +16.9548485,NCBITaxon:54898,http://purl.obolibrary.org/obo/NCBITaxon_54898,none +16.9548485,NCBITaxon:54905,http://purl.obolibrary.org/obo/NCBITaxon_54905,none +16.9548485,NCBITaxon:549205,http://purl.obolibrary.org/obo/NCBITaxon_549205,none +16.9548485,NCBITaxon:54973,http://purl.obolibrary.org/obo/NCBITaxon_54973,none +16.9548485,NCBITaxon:55056,http://purl.obolibrary.org/obo/NCBITaxon_55056,none +16.9548485,NCBITaxon:55057,http://purl.obolibrary.org/obo/NCBITaxon_55057,Mamestra brassicae +16.9548485,NCBITaxon:55098,http://purl.obolibrary.org/obo/NCBITaxon_55098,none +16.9548485,NCBITaxon:551224,http://purl.obolibrary.org/obo/NCBITaxon_551224,none +16.9548485,NCBITaxon:55136,http://purl.obolibrary.org/obo/NCBITaxon_55136,none +16.9548485,NCBITaxon:55199,http://purl.obolibrary.org/obo/NCBITaxon_55199,none +16.9548485,NCBITaxon:552509,http://purl.obolibrary.org/obo/NCBITaxon_552509,none +16.9548485,NCBITaxon:552531,http://purl.obolibrary.org/obo/NCBITaxon_552531,none +16.9548485,NCBITaxon:5531,http://purl.obolibrary.org/obo/NCBITaxon_5531,none +16.9548485,NCBITaxon:5533,http://purl.obolibrary.org/obo/NCBITaxon_5533,none +16.9548485,NCBITaxon:553633,http://purl.obolibrary.org/obo/NCBITaxon_553633,none +16.9548485,NCBITaxon:553678,http://purl.obolibrary.org/obo/NCBITaxon_553678,none +16.9548485,NCBITaxon:55386,http://purl.obolibrary.org/obo/NCBITaxon_55386,none +16.9548485,NCBITaxon:554065,http://purl.obolibrary.org/obo/NCBITaxon_554065,none +16.9548485,NCBITaxon:55452,http://purl.obolibrary.org/obo/NCBITaxon_55452,none +16.9548485,NCBITaxon:5550,http://purl.obolibrary.org/obo/NCBITaxon_5550,Trichophyton +16.9548485,NCBITaxon:55512,http://purl.obolibrary.org/obo/NCBITaxon_55512,none +16.9548485,NCBITaxon:555339,http://purl.obolibrary.org/obo/NCBITaxon_555339,none +16.9548485,NCBITaxon:555355,http://purl.obolibrary.org/obo/NCBITaxon_555355,none +16.9548485,NCBITaxon:55571,http://purl.obolibrary.org/obo/NCBITaxon_55571,none +16.9548485,NCBITaxon:55577,http://purl.obolibrary.org/obo/NCBITaxon_55577,none +16.9548485,NCBITaxon:556181,http://purl.obolibrary.org/obo/NCBITaxon_556181,none +16.9548485,NCBITaxon:55675,http://purl.obolibrary.org/obo/NCBITaxon_55675,none +16.9548485,NCBITaxon:5569,http://purl.obolibrary.org/obo/NCBITaxon_5569,none +16.9548485,NCBITaxon:556926,http://purl.obolibrary.org/obo/NCBITaxon_556926,none +16.9548485,NCBITaxon:556998,http://purl.obolibrary.org/obo/NCBITaxon_556998,none +16.9548485,NCBITaxon:557018,http://purl.obolibrary.org/obo/NCBITaxon_557018,none +16.9548485,NCBITaxon:55727,http://purl.obolibrary.org/obo/NCBITaxon_55727,none +16.9548485,NCBITaxon:55730,http://purl.obolibrary.org/obo/NCBITaxon_55730,none +16.9548485,NCBITaxon:557419,http://purl.obolibrary.org/obo/NCBITaxon_557419,none +16.9548485,NCBITaxon:55748,http://purl.obolibrary.org/obo/NCBITaxon_55748,none +16.9548485,NCBITaxon:55749,http://purl.obolibrary.org/obo/NCBITaxon_55749,none +16.9548485,NCBITaxon:55805,http://purl.obolibrary.org/obo/NCBITaxon_55805,none +16.9548485,NCBITaxon:55806,http://purl.obolibrary.org/obo/NCBITaxon_55806,none +16.9548485,NCBITaxon:55808,http://purl.obolibrary.org/obo/NCBITaxon_55808,none +16.9548485,NCBITaxon:5581,http://purl.obolibrary.org/obo/NCBITaxon_5581,none +16.9548485,NCBITaxon:55830,http://purl.obolibrary.org/obo/NCBITaxon_55830,none +16.9548485,NCBITaxon:558541,http://purl.obolibrary.org/obo/NCBITaxon_558541,none +16.9548485,NCBITaxon:5587,http://purl.obolibrary.org/obo/NCBITaxon_5587,Rhinocladiella +16.9548485,NCBITaxon:55881,http://purl.obolibrary.org/obo/NCBITaxon_55881,none +16.9548485,NCBITaxon:559129,http://purl.obolibrary.org/obo/NCBITaxon_559129,none +16.9548485,NCBITaxon:559300,http://purl.obolibrary.org/obo/NCBITaxon_559300,none +16.9548485,NCBITaxon:55950,http://purl.obolibrary.org/obo/NCBITaxon_55950,none +16.9548485,NCBITaxon:5597,http://purl.obolibrary.org/obo/NCBITaxon_5597,Scedosporium boydii +16.9548485,NCBITaxon:559878,http://purl.obolibrary.org/obo/NCBITaxon_559878,none +16.9548485,NCBITaxon:56016,http://purl.obolibrary.org/obo/NCBITaxon_56016,none +16.9548485,NCBITaxon:5605,http://purl.obolibrary.org/obo/NCBITaxon_5605,none +16.9548485,NCBITaxon:561366,http://purl.obolibrary.org/obo/NCBITaxon_561366,none +16.9548485,NCBITaxon:561576,http://purl.obolibrary.org/obo/NCBITaxon_561576,none +16.9548485,NCBITaxon:561993,http://purl.obolibrary.org/obo/NCBITaxon_561993,none +16.9548485,NCBITaxon:5620,http://purl.obolibrary.org/obo/NCBITaxon_5620,none +16.9548485,NCBITaxon:56201,http://purl.obolibrary.org/obo/NCBITaxon_56201,none +16.9548485,NCBITaxon:56202,http://purl.obolibrary.org/obo/NCBITaxon_56202,none +16.9548485,NCBITaxon:56204,http://purl.obolibrary.org/obo/NCBITaxon_56204,none +16.9548485,NCBITaxon:56210,http://purl.obolibrary.org/obo/NCBITaxon_56210,Calomys callosus +16.9548485,NCBITaxon:56214,http://purl.obolibrary.org/obo/NCBITaxon_56214,none +16.9548485,NCBITaxon:56219,http://purl.obolibrary.org/obo/NCBITaxon_56219,none +16.9548485,NCBITaxon:56232,http://purl.obolibrary.org/obo/NCBITaxon_56232,none +16.9548485,NCBITaxon:56247,http://purl.obolibrary.org/obo/NCBITaxon_56247,none +16.9548485,NCBITaxon:56259,http://purl.obolibrary.org/obo/NCBITaxon_56259,none +16.9548485,NCBITaxon:563180,http://purl.obolibrary.org/obo/NCBITaxon_563180,none +16.9548485,NCBITaxon:564289,http://purl.obolibrary.org/obo/NCBITaxon_564289,none +16.9548485,NCBITaxon:564644,http://purl.obolibrary.org/obo/NCBITaxon_564644,none +16.9548485,NCBITaxon:564874,http://purl.obolibrary.org/obo/NCBITaxon_564874,none +16.9548485,NCBITaxon:56494,http://purl.obolibrary.org/obo/NCBITaxon_56494,none +16.9548485,NCBITaxon:56524,http://purl.obolibrary.org/obo/NCBITaxon_56524,none +16.9548485,NCBITaxon:56534,http://purl.obolibrary.org/obo/NCBITaxon_56534,none +16.9548485,NCBITaxon:565537,http://purl.obolibrary.org/obo/NCBITaxon_565537,none +16.9548485,NCBITaxon:565685,http://purl.obolibrary.org/obo/NCBITaxon_565685,none +16.9548485,NCBITaxon:565827,http://purl.obolibrary.org/obo/NCBITaxon_565827,none +16.9548485,NCBITaxon:565967,http://purl.obolibrary.org/obo/NCBITaxon_565967,none +16.9548485,NCBITaxon:565994,http://purl.obolibrary.org/obo/NCBITaxon_565994,none +16.9548485,NCBITaxon:566028,http://purl.obolibrary.org/obo/NCBITaxon_566028,none +16.9548485,NCBITaxon:56621,http://purl.obolibrary.org/obo/NCBITaxon_56621,none +16.9548485,NCBITaxon:56632,http://purl.obolibrary.org/obo/NCBITaxon_56632,none +16.9548485,NCBITaxon:566568,http://purl.obolibrary.org/obo/NCBITaxon_566568,none +16.9548485,NCBITaxon:56688,http://purl.obolibrary.org/obo/NCBITaxon_56688,none +16.9548485,NCBITaxon:56740,http://purl.obolibrary.org/obo/NCBITaxon_56740,none +16.9548485,NCBITaxon:56741,http://purl.obolibrary.org/obo/NCBITaxon_56741,none +16.9548485,NCBITaxon:56804,http://purl.obolibrary.org/obo/NCBITaxon_56804,none +16.9548485,NCBITaxon:56893,http://purl.obolibrary.org/obo/NCBITaxon_56893,none +16.9548485,NCBITaxon:569643,http://purl.obolibrary.org/obo/NCBITaxon_569643,none +16.9548485,NCBITaxon:570415,http://purl.obolibrary.org/obo/NCBITaxon_570415,none +16.9548485,NCBITaxon:57060,http://purl.obolibrary.org/obo/NCBITaxon_57060,none +16.9548485,NCBITaxon:570831,http://purl.obolibrary.org/obo/NCBITaxon_570831,none +16.9548485,NCBITaxon:57138,http://purl.obolibrary.org/obo/NCBITaxon_57138,none +16.9548485,NCBITaxon:571644,http://purl.obolibrary.org/obo/NCBITaxon_571644,none +16.9548485,NCBITaxon:572239,http://purl.obolibrary.org/obo/NCBITaxon_572239,none +16.9548485,NCBITaxon:572511,http://purl.obolibrary.org/obo/NCBITaxon_572511,none +16.9548485,NCBITaxon:572729,http://purl.obolibrary.org/obo/NCBITaxon_572729,none +16.9548485,NCBITaxon:57278,http://purl.obolibrary.org/obo/NCBITaxon_57278,none +16.9548485,NCBITaxon:57287,http://purl.obolibrary.org/obo/NCBITaxon_57287,none +16.9548485,NCBITaxon:573,http://purl.obolibrary.org/obo/NCBITaxon_573,Klebsiella pneumoniae +16.9548485,NCBITaxon:57381,http://purl.obolibrary.org/obo/NCBITaxon_57381,none +16.9548485,NCBITaxon:574057,http://purl.obolibrary.org/obo/NCBITaxon_574057,none +16.9548485,NCBITaxon:574521,http://purl.obolibrary.org/obo/NCBITaxon_574521,none +16.9548485,NCBITaxon:574890,http://purl.obolibrary.org/obo/NCBITaxon_574890,none +16.9548485,NCBITaxon:57493,http://purl.obolibrary.org/obo/NCBITaxon_57493,none +16.9548485,NCBITaxon:57503,http://purl.obolibrary.org/obo/NCBITaxon_57503,none +16.9548485,NCBITaxon:57512,http://purl.obolibrary.org/obo/NCBITaxon_57512,none +16.9548485,NCBITaxon:576791,http://purl.obolibrary.org/obo/NCBITaxon_576791,none +16.9548485,NCBITaxon:5770,http://purl.obolibrary.org/obo/NCBITaxon_5770,none +16.9548485,NCBITaxon:577125,http://purl.obolibrary.org/obo/NCBITaxon_577125,none +16.9548485,NCBITaxon:577237,http://purl.obolibrary.org/obo/NCBITaxon_577237,none +16.9548485,NCBITaxon:577238,http://purl.obolibrary.org/obo/NCBITaxon_577238,none +16.9548485,NCBITaxon:577246,http://purl.obolibrary.org/obo/NCBITaxon_577246,none +16.9548485,NCBITaxon:57729,http://purl.obolibrary.org/obo/NCBITaxon_57729,none +16.9548485,NCBITaxon:577666,http://purl.obolibrary.org/obo/NCBITaxon_577666,none +16.9548485,NCBITaxon:57769,http://purl.obolibrary.org/obo/NCBITaxon_57769,none +16.9548485,NCBITaxon:57770,http://purl.obolibrary.org/obo/NCBITaxon_57770,none +16.9548485,NCBITaxon:57829,http://purl.obolibrary.org/obo/NCBITaxon_57829,none +16.9548485,NCBITaxon:578305,http://purl.obolibrary.org/obo/NCBITaxon_578305,none +16.9548485,NCBITaxon:57834,http://purl.obolibrary.org/obo/NCBITaxon_57834,none +16.9548485,NCBITaxon:578833,http://purl.obolibrary.org/obo/NCBITaxon_578833,none +16.9548485,NCBITaxon:57890,http://purl.obolibrary.org/obo/NCBITaxon_57890,none +16.9548485,NCBITaxon:57971,http://purl.obolibrary.org/obo/NCBITaxon_57971,none +16.9548485,NCBITaxon:5802,http://purl.obolibrary.org/obo/NCBITaxon_5802,Eimeria tenella +16.9548485,NCBITaxon:580254,http://purl.obolibrary.org/obo/NCBITaxon_580254,none +16.9548485,NCBITaxon:580596,http://purl.obolibrary.org/obo/NCBITaxon_580596,none +16.9548485,NCBITaxon:581387,http://purl.obolibrary.org/obo/NCBITaxon_581387,none +16.9548485,NCBITaxon:58139,http://purl.obolibrary.org/obo/NCBITaxon_58139,none +16.9548485,NCBITaxon:58143,http://purl.obolibrary.org/obo/NCBITaxon_58143,none +16.9548485,NCBITaxon:58147,http://purl.obolibrary.org/obo/NCBITaxon_58147,none +16.9548485,NCBITaxon:58154,http://purl.obolibrary.org/obo/NCBITaxon_58154,none +16.9548485,NCBITaxon:58155,http://purl.obolibrary.org/obo/NCBITaxon_58155,none +16.9548485,NCBITaxon:58166,http://purl.obolibrary.org/obo/NCBITaxon_58166,none +16.9548485,NCBITaxon:58219,http://purl.obolibrary.org/obo/NCBITaxon_58219,none +16.9548485,NCBITaxon:58291,http://purl.obolibrary.org/obo/NCBITaxon_58291,none +16.9548485,NCBITaxon:58306,http://purl.obolibrary.org/obo/NCBITaxon_58306,none +16.9548485,NCBITaxon:58308,http://purl.obolibrary.org/obo/NCBITaxon_58308,none +16.9548485,NCBITaxon:58326,http://purl.obolibrary.org/obo/NCBITaxon_58326,none +16.9548485,NCBITaxon:584723,http://purl.obolibrary.org/obo/NCBITaxon_584723,none +16.9548485,NCBITaxon:585056,http://purl.obolibrary.org/obo/NCBITaxon_585056,none +16.9548485,NCBITaxon:585070,http://purl.obolibrary.org/obo/NCBITaxon_585070,none +16.9548485,NCBITaxon:58518,http://purl.obolibrary.org/obo/NCBITaxon_58518,none +16.9548485,NCBITaxon:585983,http://purl.obolibrary.org/obo/NCBITaxon_585983,none +16.9548485,NCBITaxon:586029,http://purl.obolibrary.org/obo/NCBITaxon_586029,none +16.9548485,NCBITaxon:58610,http://purl.obolibrary.org/obo/NCBITaxon_58610,none +16.9548485,NCBITaxon:58621,http://purl.obolibrary.org/obo/NCBITaxon_58621,none +16.9548485,NCBITaxon:586423,http://purl.obolibrary.org/obo/NCBITaxon_586423,none +16.9548485,NCBITaxon:5865,http://purl.obolibrary.org/obo/NCBITaxon_5865,Babesia bovis +16.9548485,NCBITaxon:587370,http://purl.obolibrary.org/obo/NCBITaxon_587370,none +16.9548485,NCBITaxon:5884,http://purl.obolibrary.org/obo/NCBITaxon_5884,none +16.9548485,NCBITaxon:588520,http://purl.obolibrary.org/obo/NCBITaxon_588520,none +16.9548485,NCBITaxon:588576,http://purl.obolibrary.org/obo/NCBITaxon_588576,none +16.9548485,NCBITaxon:58859,http://purl.obolibrary.org/obo/NCBITaxon_58859,none +16.9548485,NCBITaxon:588786,http://purl.obolibrary.org/obo/NCBITaxon_588786,none +16.9548485,NCBITaxon:589449,http://purl.obolibrary.org/obo/NCBITaxon_589449,none +16.9548485,NCBITaxon:589918,http://purl.obolibrary.org/obo/NCBITaxon_589918,none +16.9548485,NCBITaxon:589919,http://purl.obolibrary.org/obo/NCBITaxon_589919,none +16.9548485,NCBITaxon:590118,http://purl.obolibrary.org/obo/NCBITaxon_590118,none +16.9548485,NCBITaxon:591324,http://purl.obolibrary.org/obo/NCBITaxon_591324,none +16.9548485,NCBITaxon:591325,http://purl.obolibrary.org/obo/NCBITaxon_591325,none +16.9548485,NCBITaxon:59171,http://purl.obolibrary.org/obo/NCBITaxon_59171,none +16.9548485,NCBITaxon:591932,http://purl.obolibrary.org/obo/NCBITaxon_591932,none +16.9548485,NCBITaxon:592207,http://purl.obolibrary.org/obo/NCBITaxon_592207,none +16.9548485,NCBITaxon:59234,http://purl.obolibrary.org/obo/NCBITaxon_59234,none +16.9548485,NCBITaxon:59263,http://purl.obolibrary.org/obo/NCBITaxon_59263,Toxascaris +16.9548485,NCBITaxon:59306,http://purl.obolibrary.org/obo/NCBITaxon_59306,none +16.9548485,NCBITaxon:59323,http://purl.obolibrary.org/obo/NCBITaxon_59323,none +16.9548485,NCBITaxon:5935,http://purl.obolibrary.org/obo/NCBITaxon_5935,none +16.9548485,NCBITaxon:59428,http://purl.obolibrary.org/obo/NCBITaxon_59428,none +16.9548485,NCBITaxon:59430,http://purl.obolibrary.org/obo/NCBITaxon_59430,none +16.9548485,NCBITaxon:59488,http://purl.obolibrary.org/obo/NCBITaxon_59488,none +16.9548485,NCBITaxon:59492,http://purl.obolibrary.org/obo/NCBITaxon_59492,none +16.9548485,NCBITaxon:59500,http://purl.obolibrary.org/obo/NCBITaxon_59500,none +16.9548485,NCBITaxon:595217,http://purl.obolibrary.org/obo/NCBITaxon_595217,none +16.9548485,NCBITaxon:595218,http://purl.obolibrary.org/obo/NCBITaxon_595218,none +16.9548485,NCBITaxon:59678,http://purl.obolibrary.org/obo/NCBITaxon_59678,none +16.9548485,NCBITaxon:596956,http://purl.obolibrary.org/obo/NCBITaxon_596956,none +16.9548485,NCBITaxon:596957,http://purl.obolibrary.org/obo/NCBITaxon_596957,none +16.9548485,NCBITaxon:59786,http://purl.obolibrary.org/obo/NCBITaxon_59786,none +16.9548485,NCBITaxon:59855,http://purl.obolibrary.org/obo/NCBITaxon_59855,none +16.9548485,NCBITaxon:59857,http://purl.obolibrary.org/obo/NCBITaxon_59857,none +16.9548485,NCBITaxon:59895,http://purl.obolibrary.org/obo/NCBITaxon_59895,none +16.9548485,NCBITaxon:599,http://purl.obolibrary.org/obo/NCBITaxon_599,none +16.9548485,NCBITaxon:59935,http://purl.obolibrary.org/obo/NCBITaxon_59935,none +16.9548485,NCBITaxon:59973,http://purl.obolibrary.org/obo/NCBITaxon_59973,none +16.9548485,NCBITaxon:60135,http://purl.obolibrary.org/obo/NCBITaxon_60135,none +16.9548485,NCBITaxon:60217,http://purl.obolibrary.org/obo/NCBITaxon_60217,none +16.9548485,NCBITaxon:603431,http://purl.obolibrary.org/obo/NCBITaxon_603431,none +16.9548485,NCBITaxon:60355,http://purl.obolibrary.org/obo/NCBITaxon_60355,none +16.9548485,NCBITaxon:60494,http://purl.obolibrary.org/obo/NCBITaxon_60494,none +16.9548485,NCBITaxon:6059,http://purl.obolibrary.org/obo/NCBITaxon_6059,none +16.9548485,NCBITaxon:6060,http://purl.obolibrary.org/obo/NCBITaxon_6060,none +16.9548485,NCBITaxon:6061,http://purl.obolibrary.org/obo/NCBITaxon_6061,none +16.9548485,NCBITaxon:60629,http://purl.obolibrary.org/obo/NCBITaxon_60629,none +16.9548485,NCBITaxon:60711,http://purl.obolibrary.org/obo/NCBITaxon_60711,none +16.9548485,NCBITaxon:60714,http://purl.obolibrary.org/obo/NCBITaxon_60714,none +16.9548485,NCBITaxon:607660,http://purl.obolibrary.org/obo/NCBITaxon_607660,Ponginae +16.9548485,NCBITaxon:60810,http://purl.obolibrary.org/obo/NCBITaxon_60810,none +16.9548485,NCBITaxon:60879,http://purl.obolibrary.org/obo/NCBITaxon_60879,none +16.9548485,NCBITaxon:610258,http://purl.obolibrary.org/obo/NCBITaxon_610258,none +16.9548485,NCBITaxon:6109,http://purl.obolibrary.org/obo/NCBITaxon_6109,none +16.9548485,NCBITaxon:61134,http://purl.obolibrary.org/obo/NCBITaxon_61134,none +16.9548485,NCBITaxon:61170,http://purl.obolibrary.org/obo/NCBITaxon_61170,none +16.9548485,NCBITaxon:611790,http://purl.obolibrary.org/obo/NCBITaxon_611790,none +16.9548485,NCBITaxon:611792,http://purl.obolibrary.org/obo/NCBITaxon_611792,none +16.9548485,NCBITaxon:613035,http://purl.obolibrary.org/obo/NCBITaxon_613035,none +16.9548485,NCBITaxon:613062,http://purl.obolibrary.org/obo/NCBITaxon_613062,none +16.9548485,NCBITaxon:6137,http://purl.obolibrary.org/obo/NCBITaxon_6137,none +16.9548485,NCBITaxon:61384,http://purl.obolibrary.org/obo/NCBITaxon_61384,none +16.9548485,NCBITaxon:61426,http://purl.obolibrary.org/obo/NCBITaxon_61426,none +16.9548485,NCBITaxon:614641,http://purl.obolibrary.org/obo/NCBITaxon_614641,none +16.9548485,NCBITaxon:61508,http://purl.obolibrary.org/obo/NCBITaxon_61508,none +16.9548485,NCBITaxon:61845,http://purl.obolibrary.org/obo/NCBITaxon_61845,none +16.9548485,NCBITaxon:61846,http://purl.obolibrary.org/obo/NCBITaxon_61846,none +16.9548485,NCBITaxon:61855,http://purl.obolibrary.org/obo/NCBITaxon_61855,none +16.9548485,NCBITaxon:61896,http://purl.obolibrary.org/obo/NCBITaxon_61896,none +16.9548485,NCBITaxon:6196,http://purl.obolibrary.org/obo/NCBITaxon_6196,none +16.9548485,NCBITaxon:61964,http://purl.obolibrary.org/obo/NCBITaxon_61964,none +16.9548485,NCBITaxon:6197,http://purl.obolibrary.org/obo/NCBITaxon_6197,none +16.9548485,NCBITaxon:62025,http://purl.obolibrary.org/obo/NCBITaxon_62025,none +16.9548485,NCBITaxon:62031,http://purl.obolibrary.org/obo/NCBITaxon_62031,none +16.9548485,NCBITaxon:622458,http://purl.obolibrary.org/obo/NCBITaxon_622458,none +16.9548485,NCBITaxon:6232,http://purl.obolibrary.org/obo/NCBITaxon_6232,none +16.9548485,NCBITaxon:624134,http://purl.obolibrary.org/obo/NCBITaxon_624134,none +16.9548485,NCBITaxon:624272,http://purl.obolibrary.org/obo/NCBITaxon_624272,none +16.9548485,NCBITaxon:6253,http://purl.obolibrary.org/obo/NCBITaxon_6253,none +16.9548485,NCBITaxon:6258,http://purl.obolibrary.org/obo/NCBITaxon_6258,Baylisascaris +16.9548485,NCBITaxon:626244,http://purl.obolibrary.org/obo/NCBITaxon_626244,none +16.9548485,NCBITaxon:626531,http://purl.obolibrary.org/obo/NCBITaxon_626531,none +16.9548485,NCBITaxon:62916,http://purl.obolibrary.org/obo/NCBITaxon_62916,none +16.9548485,NCBITaxon:629350,http://purl.obolibrary.org/obo/NCBITaxon_629350,none +16.9548485,NCBITaxon:629395,http://purl.obolibrary.org/obo/NCBITaxon_629395,none +16.9548485,NCBITaxon:629725,http://purl.obolibrary.org/obo/NCBITaxon_629725,none +16.9548485,NCBITaxon:629726,http://purl.obolibrary.org/obo/NCBITaxon_629726,none +16.9548485,NCBITaxon:63072,http://purl.obolibrary.org/obo/NCBITaxon_63072,none +16.9548485,NCBITaxon:63076,http://purl.obolibrary.org/obo/NCBITaxon_63076,none +16.9548485,NCBITaxon:63077,http://purl.obolibrary.org/obo/NCBITaxon_63077,none +16.9548485,NCBITaxon:63084,http://purl.obolibrary.org/obo/NCBITaxon_63084,none +16.9548485,NCBITaxon:63086,http://purl.obolibrary.org/obo/NCBITaxon_63086,none +16.9548485,NCBITaxon:63348,http://purl.obolibrary.org/obo/NCBITaxon_63348,none +16.9548485,NCBITaxon:6338,http://purl.obolibrary.org/obo/NCBITaxon_6338,none +16.9548485,NCBITaxon:63399,http://purl.obolibrary.org/obo/NCBITaxon_63399,none +16.9548485,NCBITaxon:634469,http://purl.obolibrary.org/obo/NCBITaxon_634469,none +16.9548485,NCBITaxon:63459,http://purl.obolibrary.org/obo/NCBITaxon_63459,none +16.9548485,NCBITaxon:6348,http://purl.obolibrary.org/obo/NCBITaxon_6348,none +16.9548485,NCBITaxon:63602,http://purl.obolibrary.org/obo/NCBITaxon_63602,none +16.9548485,NCBITaxon:63671,http://purl.obolibrary.org/obo/NCBITaxon_63671,Turbinidae +16.9548485,NCBITaxon:63672,http://purl.obolibrary.org/obo/NCBITaxon_63672,Turbo +16.9548485,NCBITaxon:63710,http://purl.obolibrary.org/obo/NCBITaxon_63710,none +16.9548485,NCBITaxon:6375,http://purl.obolibrary.org/obo/NCBITaxon_6375,none +16.9548485,NCBITaxon:637851,http://purl.obolibrary.org/obo/NCBITaxon_637851,none +16.9548485,NCBITaxon:637852,http://purl.obolibrary.org/obo/NCBITaxon_637852,none +16.9548485,NCBITaxon:63801,http://purl.obolibrary.org/obo/NCBITaxon_63801,none +16.9548485,NCBITaxon:6388,http://purl.obolibrary.org/obo/NCBITaxon_6388,none +16.9548485,NCBITaxon:6392,http://purl.obolibrary.org/obo/NCBITaxon_6392,none +16.9548485,NCBITaxon:640620,http://purl.obolibrary.org/obo/NCBITaxon_640620,none +16.9548485,NCBITaxon:640628,http://purl.obolibrary.org/obo/NCBITaxon_640628,Poinae +16.9548485,NCBITaxon:640843,http://purl.obolibrary.org/obo/NCBITaxon_640843,none +16.9548485,NCBITaxon:64092,http://purl.obolibrary.org/obo/NCBITaxon_64092,none +16.9548485,NCBITaxon:64142,http://purl.obolibrary.org/obo/NCBITaxon_64142,none +16.9548485,NCBITaxon:641818,http://purl.obolibrary.org/obo/NCBITaxon_641818,none +16.9548485,NCBITaxon:642248,http://purl.obolibrary.org/obo/NCBITaxon_642248,none +16.9548485,NCBITaxon:64233,http://purl.obolibrary.org/obo/NCBITaxon_64233,none +16.9548485,NCBITaxon:64295,http://purl.obolibrary.org/obo/NCBITaxon_64295,none +16.9548485,NCBITaxon:64298,http://purl.obolibrary.org/obo/NCBITaxon_64298,none +16.9548485,NCBITaxon:64306,http://purl.obolibrary.org/obo/NCBITaxon_64306,none +16.9548485,NCBITaxon:64307,http://purl.obolibrary.org/obo/NCBITaxon_64307,none +16.9548485,NCBITaxon:64308,http://purl.obolibrary.org/obo/NCBITaxon_64308,none +16.9548485,NCBITaxon:64309,http://purl.obolibrary.org/obo/NCBITaxon_64309,none +16.9548485,NCBITaxon:64319,http://purl.obolibrary.org/obo/NCBITaxon_64319,none +16.9548485,NCBITaxon:643345,http://purl.obolibrary.org/obo/NCBITaxon_643345,none +16.9548485,NCBITaxon:643366,http://purl.obolibrary.org/obo/NCBITaxon_643366,none +16.9548485,NCBITaxon:643380,http://purl.obolibrary.org/obo/NCBITaxon_643380,none +16.9548485,NCBITaxon:643422,http://purl.obolibrary.org/obo/NCBITaxon_643422,none +16.9548485,NCBITaxon:643449,http://purl.obolibrary.org/obo/NCBITaxon_643449,none +16.9548485,NCBITaxon:643453,http://purl.obolibrary.org/obo/NCBITaxon_643453,none +16.9548485,NCBITaxon:644,http://purl.obolibrary.org/obo/NCBITaxon_644,Aeromonas hydrophila +16.9548485,NCBITaxon:645516,http://purl.obolibrary.org/obo/NCBITaxon_645516,none +16.9548485,NCBITaxon:64607,http://purl.obolibrary.org/obo/NCBITaxon_64607,none +16.9548485,NCBITaxon:648801,http://purl.obolibrary.org/obo/NCBITaxon_648801,none +16.9548485,NCBITaxon:649382,http://purl.obolibrary.org/obo/NCBITaxon_649382,none +16.9548485,NCBITaxon:649509,http://purl.obolibrary.org/obo/NCBITaxon_649509,none +16.9548485,NCBITaxon:64953,http://purl.obolibrary.org/obo/NCBITaxon_64953,none +16.9548485,NCBITaxon:650039,http://purl.obolibrary.org/obo/NCBITaxon_650039,none +16.9548485,NCBITaxon:65021,http://purl.obolibrary.org/obo/NCBITaxon_65021,none +16.9548485,NCBITaxon:650419,http://purl.obolibrary.org/obo/NCBITaxon_650419,none +16.9548485,NCBITaxon:651680,http://purl.obolibrary.org/obo/NCBITaxon_651680,none +16.9548485,NCBITaxon:651777,http://purl.obolibrary.org/obo/NCBITaxon_651777,none +16.9548485,NCBITaxon:65210,http://purl.obolibrary.org/obo/NCBITaxon_65210,none +16.9548485,NCBITaxon:6540,http://purl.obolibrary.org/obo/NCBITaxon_6540,none +16.9548485,NCBITaxon:65463,http://purl.obolibrary.org/obo/NCBITaxon_65463,none +16.9548485,NCBITaxon:65464,http://purl.obolibrary.org/obo/NCBITaxon_65464,none +16.9548485,NCBITaxon:654824,http://purl.obolibrary.org/obo/NCBITaxon_654824,none +16.9548485,NCBITaxon:65495,http://purl.obolibrary.org/obo/NCBITaxon_65495,none +16.9548485,NCBITaxon:655076,http://purl.obolibrary.org/obo/NCBITaxon_655076,none +16.9548485,NCBITaxon:6552,http://purl.obolibrary.org/obo/NCBITaxon_6552,none +16.9548485,NCBITaxon:6553,http://purl.obolibrary.org/obo/NCBITaxon_6553,none +16.9548485,NCBITaxon:655439,http://purl.obolibrary.org/obo/NCBITaxon_655439,none +16.9548485,NCBITaxon:655603,http://purl.obolibrary.org/obo/NCBITaxon_655603,none +16.9548485,NCBITaxon:655837,http://purl.obolibrary.org/obo/NCBITaxon_655837,none +16.9548485,NCBITaxon:656520,http://purl.obolibrary.org/obo/NCBITaxon_656520,none +16.9548485,NCBITaxon:657186,http://purl.obolibrary.org/obo/NCBITaxon_657186,none +16.9548485,NCBITaxon:657187,http://purl.obolibrary.org/obo/NCBITaxon_657187,none +16.9548485,NCBITaxon:657292,http://purl.obolibrary.org/obo/NCBITaxon_657292,none +16.9548485,NCBITaxon:65772,http://purl.obolibrary.org/obo/NCBITaxon_65772,none +16.9548485,NCBITaxon:6581,http://purl.obolibrary.org/obo/NCBITaxon_6581,none +16.9548485,NCBITaxon:658419,http://purl.obolibrary.org/obo/NCBITaxon_658419,none +16.9548485,NCBITaxon:65842,http://purl.obolibrary.org/obo/NCBITaxon_65842,none +16.9548485,NCBITaxon:65964,http://purl.obolibrary.org/obo/NCBITaxon_65964,none +16.9548485,NCBITaxon:65966,http://purl.obolibrary.org/obo/NCBITaxon_65966,none +16.9548485,NCBITaxon:659660,http://purl.obolibrary.org/obo/NCBITaxon_659660,none +16.9548485,NCBITaxon:66013,http://purl.obolibrary.org/obo/NCBITaxon_66013,none +16.9548485,NCBITaxon:66017,http://purl.obolibrary.org/obo/NCBITaxon_66017,none +16.9548485,NCBITaxon:66057,http://purl.obolibrary.org/obo/NCBITaxon_66057,none +16.9548485,NCBITaxon:660954,http://purl.obolibrary.org/obo/NCBITaxon_660954,none +16.9548485,NCBITaxon:66295,http://purl.obolibrary.org/obo/NCBITaxon_66295,none +16.9548485,NCBITaxon:66387,http://purl.obolibrary.org/obo/NCBITaxon_66387,none +16.9548485,NCBITaxon:664255,http://purl.obolibrary.org/obo/NCBITaxon_664255,none +16.9548485,NCBITaxon:664256,http://purl.obolibrary.org/obo/NCBITaxon_664256,none +16.9548485,NCBITaxon:664785,http://purl.obolibrary.org/obo/NCBITaxon_664785,none +16.9548485,NCBITaxon:664980,http://purl.obolibrary.org/obo/NCBITaxon_664980,none +16.9548485,NCBITaxon:6650,http://purl.obolibrary.org/obo/NCBITaxon_6650,none +16.9548485,NCBITaxon:6651,http://purl.obolibrary.org/obo/NCBITaxon_6651,none +16.9548485,NCBITaxon:66514,http://purl.obolibrary.org/obo/NCBITaxon_66514,none +16.9548485,NCBITaxon:66515,http://purl.obolibrary.org/obo/NCBITaxon_66515,none +16.9548485,NCBITaxon:6652,http://purl.obolibrary.org/obo/NCBITaxon_6652,none +16.9548485,NCBITaxon:66524,http://purl.obolibrary.org/obo/NCBITaxon_66524,none +16.9548485,NCBITaxon:6659,http://purl.obolibrary.org/obo/NCBITaxon_6659,none +16.9548485,NCBITaxon:6660,http://purl.obolibrary.org/obo/NCBITaxon_6660,none +16.9548485,NCBITaxon:66656,http://purl.obolibrary.org/obo/NCBITaxon_66656,none +16.9548485,NCBITaxon:66661,http://purl.obolibrary.org/obo/NCBITaxon_66661,none +16.9548485,NCBITaxon:66662,http://purl.obolibrary.org/obo/NCBITaxon_66662,none +16.9548485,NCBITaxon:666859,http://purl.obolibrary.org/obo/NCBITaxon_666859,none +16.9548485,NCBITaxon:6672,http://purl.obolibrary.org/obo/NCBITaxon_6672,none +16.9548485,NCBITaxon:6679,http://purl.obolibrary.org/obo/NCBITaxon_6679,none +16.9548485,NCBITaxon:66801,http://purl.obolibrary.org/obo/NCBITaxon_66801,none +16.9548485,NCBITaxon:6684,http://purl.obolibrary.org/obo/NCBITaxon_6684,Dendrobranchiata +16.9548485,NCBITaxon:668403,http://purl.obolibrary.org/obo/NCBITaxon_668403,none +16.9548485,NCBITaxon:668750,http://purl.obolibrary.org/obo/NCBITaxon_668750,none +16.9548485,NCBITaxon:668994,http://purl.obolibrary.org/obo/NCBITaxon_668994,none +16.9548485,NCBITaxon:66911,http://purl.obolibrary.org/obo/NCBITaxon_66911,none +16.9548485,NCBITaxon:66919,http://purl.obolibrary.org/obo/NCBITaxon_66919,none +16.9548485,NCBITaxon:669377,http://purl.obolibrary.org/obo/NCBITaxon_669377,none +16.9548485,NCBITaxon:670200,http://purl.obolibrary.org/obo/NCBITaxon_670200,none +16.9548485,NCBITaxon:6704,http://purl.obolibrary.org/obo/NCBITaxon_6704,none +16.9548485,NCBITaxon:6705,http://purl.obolibrary.org/obo/NCBITaxon_6705,none +16.9548485,NCBITaxon:6707,http://purl.obolibrary.org/obo/NCBITaxon_6707,none +16.9548485,NCBITaxon:670883,http://purl.obolibrary.org/obo/NCBITaxon_670883,none +16.9548485,NCBITaxon:671095,http://purl.obolibrary.org/obo/NCBITaxon_671095,none +16.9548485,NCBITaxon:671126,http://purl.obolibrary.org/obo/NCBITaxon_671126,none +16.9548485,NCBITaxon:6725,http://purl.obolibrary.org/obo/NCBITaxon_6725,none +16.9548485,NCBITaxon:6726,http://purl.obolibrary.org/obo/NCBITaxon_6726,none +16.9548485,NCBITaxon:6728,http://purl.obolibrary.org/obo/NCBITaxon_6728,none +16.9548485,NCBITaxon:6730,http://purl.obolibrary.org/obo/NCBITaxon_6730,none +16.9548485,NCBITaxon:6731,http://purl.obolibrary.org/obo/NCBITaxon_6731,none +16.9548485,NCBITaxon:6734,http://purl.obolibrary.org/obo/NCBITaxon_6734,none +16.9548485,NCBITaxon:6746,http://purl.obolibrary.org/obo/NCBITaxon_6746,none +16.9548485,NCBITaxon:6749,http://purl.obolibrary.org/obo/NCBITaxon_6749,none +16.9548485,NCBITaxon:674953,http://purl.obolibrary.org/obo/NCBITaxon_674953,none +16.9548485,NCBITaxon:674976,http://purl.obolibrary.org/obo/NCBITaxon_674976,none +16.9548485,NCBITaxon:674980,http://purl.obolibrary.org/obo/NCBITaxon_674980,none +16.9548485,NCBITaxon:67517,http://purl.obolibrary.org/obo/NCBITaxon_67517,none +16.9548485,NCBITaxon:675437,http://purl.obolibrary.org/obo/NCBITaxon_675437,none +16.9548485,NCBITaxon:6757,http://purl.obolibrary.org/obo/NCBITaxon_6757,Portunidae +16.9548485,NCBITaxon:6760,http://purl.obolibrary.org/obo/NCBITaxon_6760,Scylla +16.9548485,NCBITaxon:67603,http://purl.obolibrary.org/obo/NCBITaxon_67603,none +16.9548485,NCBITaxon:6761,http://purl.obolibrary.org/obo/NCBITaxon_6761,none +16.9548485,NCBITaxon:6778,http://purl.obolibrary.org/obo/NCBITaxon_6778,none +16.9548485,NCBITaxon:6779,http://purl.obolibrary.org/obo/NCBITaxon_6779,none +16.9548485,NCBITaxon:67937,http://purl.obolibrary.org/obo/NCBITaxon_67937,none +16.9548485,NCBITaxon:6796,http://purl.obolibrary.org/obo/NCBITaxon_6796,none +16.9548485,NCBITaxon:679668,http://purl.obolibrary.org/obo/NCBITaxon_679668,none +16.9548485,NCBITaxon:68287,http://purl.obolibrary.org/obo/NCBITaxon_68287,none +16.9548485,NCBITaxon:68295,http://purl.obolibrary.org/obo/NCBITaxon_68295,none +16.9548485,NCBITaxon:683158,http://purl.obolibrary.org/obo/NCBITaxon_683158,none +16.9548485,NCBITaxon:683179,http://purl.obolibrary.org/obo/NCBITaxon_683179,none +16.9548485,NCBITaxon:683832,http://purl.obolibrary.org/obo/NCBITaxon_683832,none +16.9548485,NCBITaxon:6840,http://purl.obolibrary.org/obo/NCBITaxon_6840,none +16.9548485,NCBITaxon:685037,http://purl.obolibrary.org/obo/NCBITaxon_685037,none +16.9548485,NCBITaxon:68510,http://purl.obolibrary.org/obo/NCBITaxon_68510,none +16.9548485,NCBITaxon:685171,http://purl.obolibrary.org/obo/NCBITaxon_685171,none +16.9548485,NCBITaxon:685450,http://purl.obolibrary.org/obo/NCBITaxon_685450,none +16.9548485,NCBITaxon:686262,http://purl.obolibrary.org/obo/NCBITaxon_686262,none +16.9548485,NCBITaxon:688540,http://purl.obolibrary.org/obo/NCBITaxon_688540,none +16.9548485,NCBITaxon:6886,http://purl.obolibrary.org/obo/NCBITaxon_6886,none +16.9548485,NCBITaxon:689456,http://purl.obolibrary.org/obo/NCBITaxon_689456,none +16.9548485,NCBITaxon:6895,http://purl.obolibrary.org/obo/NCBITaxon_6895,none +16.9548485,NCBITaxon:689704,http://purl.obolibrary.org/obo/NCBITaxon_689704,none +16.9548485,NCBITaxon:69073,http://purl.obolibrary.org/obo/NCBITaxon_69073,none +16.9548485,NCBITaxon:69195,http://purl.obolibrary.org/obo/NCBITaxon_69195,none +16.9548485,NCBITaxon:69196,http://purl.obolibrary.org/obo/NCBITaxon_69196,none +16.9548485,NCBITaxon:692066,http://purl.obolibrary.org/obo/NCBITaxon_692066,none +16.9548485,NCBITaxon:6923,http://purl.obolibrary.org/obo/NCBITaxon_6923,none +16.9548485,NCBITaxon:69243,http://purl.obolibrary.org/obo/NCBITaxon_69243,none +16.9548485,NCBITaxon:69245,http://purl.obolibrary.org/obo/NCBITaxon_69245,none +16.9548485,NCBITaxon:6925,http://purl.obolibrary.org/obo/NCBITaxon_6925,none +16.9548485,NCBITaxon:69277,http://purl.obolibrary.org/obo/NCBITaxon_69277,none +16.9548485,NCBITaxon:693058,http://purl.obolibrary.org/obo/NCBITaxon_693058,none +16.9548485,NCBITaxon:693419,http://purl.obolibrary.org/obo/NCBITaxon_693419,none +16.9548485,NCBITaxon:6936,http://purl.obolibrary.org/obo/NCBITaxon_6936,Argasidae +16.9548485,NCBITaxon:693657,http://purl.obolibrary.org/obo/NCBITaxon_693657,none +16.9548485,NCBITaxon:693763,http://purl.obolibrary.org/obo/NCBITaxon_693763,none +16.9548485,NCBITaxon:693998,http://purl.obolibrary.org/obo/NCBITaxon_693998,none +16.9548485,NCBITaxon:69433,http://purl.obolibrary.org/obo/NCBITaxon_69433,none +16.9548485,NCBITaxon:694447,http://purl.obolibrary.org/obo/NCBITaxon_694447,none +16.9548485,NCBITaxon:694448,http://purl.obolibrary.org/obo/NCBITaxon_694448,none +16.9548485,NCBITaxon:694581,http://purl.obolibrary.org/obo/NCBITaxon_694581,none +16.9548485,NCBITaxon:695121,http://purl.obolibrary.org/obo/NCBITaxon_695121,none +16.9548485,NCBITaxon:69614,http://purl.obolibrary.org/obo/NCBITaxon_69614,none +16.9548485,NCBITaxon:696215,http://purl.obolibrary.org/obo/NCBITaxon_696215,none +16.9548485,NCBITaxon:696859,http://purl.obolibrary.org/obo/NCBITaxon_696859,none +16.9548485,NCBITaxon:699182,http://purl.obolibrary.org/obo/NCBITaxon_699182,none +16.9548485,NCBITaxon:69987,http://purl.obolibrary.org/obo/NCBITaxon_69987,none +16.9548485,NCBITaxon:70004,http://purl.obolibrary.org/obo/NCBITaxon_70004,none +16.9548485,NCBITaxon:70012,http://purl.obolibrary.org/obo/NCBITaxon_70012,none +16.9548485,NCBITaxon:70013,http://purl.obolibrary.org/obo/NCBITaxon_70013,none +16.9548485,NCBITaxon:7003,http://purl.obolibrary.org/obo/NCBITaxon_7003,none +16.9548485,NCBITaxon:70134,http://purl.obolibrary.org/obo/NCBITaxon_70134,none +16.9548485,NCBITaxon:70177,http://purl.obolibrary.org/obo/NCBITaxon_70177,none +16.9548485,NCBITaxon:702,http://purl.obolibrary.org/obo/NCBITaxon_702,none +16.9548485,NCBITaxon:70230,http://purl.obolibrary.org/obo/NCBITaxon_70230,none +16.9548485,NCBITaxon:702396,http://purl.obolibrary.org/obo/NCBITaxon_702396,none +16.9548485,NCBITaxon:702397,http://purl.obolibrary.org/obo/NCBITaxon_702397,none +16.9548485,NCBITaxon:70244,http://purl.obolibrary.org/obo/NCBITaxon_70244,none +16.9548485,NCBITaxon:7033,http://purl.obolibrary.org/obo/NCBITaxon_7033,none +16.9548485,NCBITaxon:703914,http://purl.obolibrary.org/obo/NCBITaxon_703914,none +16.9548485,NCBITaxon:70424,http://purl.obolibrary.org/obo/NCBITaxon_70424,none +16.9548485,NCBITaxon:70595,http://purl.obolibrary.org/obo/NCBITaxon_70595,none +16.9548485,NCBITaxon:70596,http://purl.obolibrary.org/obo/NCBITaxon_70596,none +16.9548485,NCBITaxon:706497,http://purl.obolibrary.org/obo/NCBITaxon_706497,none +16.9548485,NCBITaxon:706622,http://purl.obolibrary.org/obo/NCBITaxon_706622,none +16.9548485,NCBITaxon:70664,http://purl.obolibrary.org/obo/NCBITaxon_70664,none +16.9548485,NCBITaxon:70666,http://purl.obolibrary.org/obo/NCBITaxon_70666,none +16.9548485,NCBITaxon:70733,http://purl.obolibrary.org/obo/NCBITaxon_70733,none +16.9548485,NCBITaxon:707878,http://purl.obolibrary.org/obo/NCBITaxon_707878,none +16.9548485,NCBITaxon:70823,http://purl.obolibrary.org/obo/NCBITaxon_70823,none +16.9548485,NCBITaxon:70831,http://purl.obolibrary.org/obo/NCBITaxon_70831,none +16.9548485,NCBITaxon:70868,http://purl.obolibrary.org/obo/NCBITaxon_70868,none +16.9548485,NCBITaxon:70876,http://purl.obolibrary.org/obo/NCBITaxon_70876,none +16.9548485,NCBITaxon:7089,http://purl.obolibrary.org/obo/NCBITaxon_7089,none +16.9548485,NCBITaxon:7090,http://purl.obolibrary.org/obo/NCBITaxon_7090,none +16.9548485,NCBITaxon:7091,http://purl.obolibrary.org/obo/NCBITaxon_7091,Bombyx mori +16.9548485,NCBITaxon:71000,http://purl.obolibrary.org/obo/NCBITaxon_71000,none +16.9548485,NCBITaxon:7113,http://purl.obolibrary.org/obo/NCBITaxon_7113,none +16.9548485,NCBITaxon:7114,http://purl.obolibrary.org/obo/NCBITaxon_7114,none +16.9548485,NCBITaxon:7115,http://purl.obolibrary.org/obo/NCBITaxon_7115,none +16.9548485,NCBITaxon:71187,http://purl.obolibrary.org/obo/NCBITaxon_71187,none +16.9548485,NCBITaxon:71195,http://purl.obolibrary.org/obo/NCBITaxon_71195,none +16.9548485,NCBITaxon:7126,http://purl.obolibrary.org/obo/NCBITaxon_7126,none +16.9548485,NCBITaxon:71286,http://purl.obolibrary.org/obo/NCBITaxon_71286,none +16.9548485,NCBITaxon:71367,http://purl.obolibrary.org/obo/NCBITaxon_71367,none +16.9548485,NCBITaxon:71377,http://purl.obolibrary.org/obo/NCBITaxon_71377,none +16.9548485,NCBITaxon:71378,http://purl.obolibrary.org/obo/NCBITaxon_71378,none +16.9548485,NCBITaxon:71379,http://purl.obolibrary.org/obo/NCBITaxon_71379,none +16.9548485,NCBITaxon:713912,http://purl.obolibrary.org/obo/NCBITaxon_713912,none +16.9548485,NCBITaxon:71402,http://purl.obolibrary.org/obo/NCBITaxon_71402,none +16.9548485,NCBITaxon:7141,http://purl.obolibrary.org/obo/NCBITaxon_7141,none +16.9548485,NCBITaxon:714200,http://purl.obolibrary.org/obo/NCBITaxon_714200,none +16.9548485,NCBITaxon:7143,http://purl.obolibrary.org/obo/NCBITaxon_7143,none +16.9548485,NCBITaxon:71439,http://purl.obolibrary.org/obo/NCBITaxon_71439,none +16.9548485,NCBITaxon:71472,http://purl.obolibrary.org/obo/NCBITaxon_71472,none +16.9548485,NCBITaxon:71477,http://purl.obolibrary.org/obo/NCBITaxon_71477,none +16.9548485,NCBITaxon:71478,http://purl.obolibrary.org/obo/NCBITaxon_71478,none +16.9548485,NCBITaxon:714962,http://purl.obolibrary.org/obo/NCBITaxon_714962,none +16.9548485,NCBITaxon:71523,http://purl.obolibrary.org/obo/NCBITaxon_71523,none +16.9548485,NCBITaxon:715341,http://purl.obolibrary.org/obo/NCBITaxon_715341,none +16.9548485,NCBITaxon:71548,http://purl.obolibrary.org/obo/NCBITaxon_71548,none +16.9548485,NCBITaxon:7155,http://purl.obolibrary.org/obo/NCBITaxon_7155,none +16.9548485,NCBITaxon:7158,http://purl.obolibrary.org/obo/NCBITaxon_7158,none +16.9548485,NCBITaxon:715845,http://purl.obolibrary.org/obo/NCBITaxon_715845,none +16.9548485,NCBITaxon:71586,http://purl.obolibrary.org/obo/NCBITaxon_71586,none +16.9548485,NCBITaxon:71587,http://purl.obolibrary.org/obo/NCBITaxon_71587,none +16.9548485,NCBITaxon:71611,http://purl.obolibrary.org/obo/NCBITaxon_71611,none +16.9548485,NCBITaxon:71633,http://purl.obolibrary.org/obo/NCBITaxon_71633,none +16.9548485,NCBITaxon:71680,http://purl.obolibrary.org/obo/NCBITaxon_71680,none +16.9548485,NCBITaxon:717364,http://purl.obolibrary.org/obo/NCBITaxon_717364,none +16.9548485,NCBITaxon:7176,http://purl.obolibrary.org/obo/NCBITaxon_7176,none +16.9548485,NCBITaxon:71778,http://purl.obolibrary.org/obo/NCBITaxon_71778,none +16.9548485,NCBITaxon:717848,http://purl.obolibrary.org/obo/NCBITaxon_717848,none +16.9548485,NCBITaxon:7180,http://purl.obolibrary.org/obo/NCBITaxon_7180,Haemagogus +16.9548485,NCBITaxon:71814,http://purl.obolibrary.org/obo/NCBITaxon_71814,none +16.9548485,NCBITaxon:71817,http://purl.obolibrary.org/obo/NCBITaxon_71817,none +16.9548485,NCBITaxon:7182,http://purl.obolibrary.org/obo/NCBITaxon_7182,none +16.9548485,NCBITaxon:718255,http://purl.obolibrary.org/obo/NCBITaxon_718255,none +16.9548485,NCBITaxon:71941,http://purl.obolibrary.org/obo/NCBITaxon_71941,none +16.9548485,NCBITaxon:71947,http://purl.obolibrary.org/obo/NCBITaxon_71947,none +16.9548485,NCBITaxon:72000,http://purl.obolibrary.org/obo/NCBITaxon_72000,none +16.9548485,NCBITaxon:72012,http://purl.obolibrary.org/obo/NCBITaxon_72012,none +16.9548485,NCBITaxon:72035,http://purl.obolibrary.org/obo/NCBITaxon_72035,none +16.9548485,NCBITaxon:72056,http://purl.obolibrary.org/obo/NCBITaxon_72056,none +16.9548485,NCBITaxon:720584,http://purl.obolibrary.org/obo/NCBITaxon_720584,none +16.9548485,NCBITaxon:72063,http://purl.obolibrary.org/obo/NCBITaxon_72063,none +16.9548485,NCBITaxon:72095,http://purl.obolibrary.org/obo/NCBITaxon_72095,none +16.9548485,NCBITaxon:72098,http://purl.obolibrary.org/obo/NCBITaxon_72098,none +16.9548485,NCBITaxon:721032,http://purl.obolibrary.org/obo/NCBITaxon_721032,none +16.9548485,NCBITaxon:721157,http://purl.obolibrary.org/obo/NCBITaxon_721157,none +16.9548485,NCBITaxon:72142,http://purl.obolibrary.org/obo/NCBITaxon_72142,none +16.9548485,NCBITaxon:72171,http://purl.obolibrary.org/obo/NCBITaxon_72171,none +16.9548485,NCBITaxon:72173,http://purl.obolibrary.org/obo/NCBITaxon_72173,none +16.9548485,NCBITaxon:72178,http://purl.obolibrary.org/obo/NCBITaxon_72178,none +16.9548485,NCBITaxon:72179,http://purl.obolibrary.org/obo/NCBITaxon_72179,none +16.9548485,NCBITaxon:72186,http://purl.obolibrary.org/obo/NCBITaxon_72186,none +16.9548485,NCBITaxon:7219,http://purl.obolibrary.org/obo/NCBITaxon_7219,none +16.9548485,NCBITaxon:72201,http://purl.obolibrary.org/obo/NCBITaxon_72201,none +16.9548485,NCBITaxon:72232,http://purl.obolibrary.org/obo/NCBITaxon_72232,none +16.9548485,NCBITaxon:72275,http://purl.obolibrary.org/obo/NCBITaxon_72275,none +16.9548485,NCBITaxon:72316,http://purl.obolibrary.org/obo/NCBITaxon_72316,none +16.9548485,NCBITaxon:723663,http://purl.obolibrary.org/obo/NCBITaxon_723663,none +16.9548485,NCBITaxon:723794,http://purl.obolibrary.org/obo/NCBITaxon_723794,none +16.9548485,NCBITaxon:72403,http://purl.obolibrary.org/obo/NCBITaxon_72403,none +16.9548485,NCBITaxon:72430,http://purl.obolibrary.org/obo/NCBITaxon_72430,none +16.9548485,NCBITaxon:72446,http://purl.obolibrary.org/obo/NCBITaxon_72446,none +16.9548485,NCBITaxon:7249,http://purl.obolibrary.org/obo/NCBITaxon_7249,none +16.9548485,NCBITaxon:72495,http://purl.obolibrary.org/obo/NCBITaxon_72495,none +16.9548485,NCBITaxon:72629,http://purl.obolibrary.org/obo/NCBITaxon_72629,none +16.9548485,NCBITaxon:7269,http://purl.obolibrary.org/obo/NCBITaxon_7269,none +16.9548485,NCBITaxon:7270,http://purl.obolibrary.org/obo/NCBITaxon_7270,none +16.9548485,NCBITaxon:72766,http://purl.obolibrary.org/obo/NCBITaxon_72766,none +16.9548485,NCBITaxon:72771,http://purl.obolibrary.org/obo/NCBITaxon_72771,none +16.9548485,NCBITaxon:72773,http://purl.obolibrary.org/obo/NCBITaxon_72773,none +16.9548485,NCBITaxon:72779,http://purl.obolibrary.org/obo/NCBITaxon_72779,none +16.9548485,NCBITaxon:7280,http://purl.obolibrary.org/obo/NCBITaxon_7280,none +16.9548485,NCBITaxon:72801,http://purl.obolibrary.org/obo/NCBITaxon_72801,none +16.9548485,NCBITaxon:7283,http://purl.obolibrary.org/obo/NCBITaxon_7283,none +16.9548485,NCBITaxon:7298,http://purl.obolibrary.org/obo/NCBITaxon_7298,none +16.9548485,NCBITaxon:73028,http://purl.obolibrary.org/obo/NCBITaxon_73028,none +16.9548485,NCBITaxon:73031,http://purl.obolibrary.org/obo/NCBITaxon_73031,none +16.9548485,NCBITaxon:730330,http://purl.obolibrary.org/obo/NCBITaxon_730330,none +16.9548485,NCBITaxon:73038,http://purl.obolibrary.org/obo/NCBITaxon_73038,none +16.9548485,NCBITaxon:73117,http://purl.obolibrary.org/obo/NCBITaxon_73117,none +16.9548485,NCBITaxon:73156,http://purl.obolibrary.org/obo/NCBITaxon_73156,none +16.9548485,NCBITaxon:73345,http://purl.obolibrary.org/obo/NCBITaxon_73345,none +16.9548485,NCBITaxon:73379,http://purl.obolibrary.org/obo/NCBITaxon_73379,none +16.9548485,NCBITaxon:7384,http://purl.obolibrary.org/obo/NCBITaxon_7384,none +16.9548485,NCBITaxon:7405,http://purl.obolibrary.org/obo/NCBITaxon_7405,none +16.9548485,NCBITaxon:74094,http://purl.obolibrary.org/obo/NCBITaxon_74094,none +16.9548485,NCBITaxon:740972,http://purl.obolibrary.org/obo/NCBITaxon_740972,Tritrichomonadida +16.9548485,NCBITaxon:740973,http://purl.obolibrary.org/obo/NCBITaxon_740973,Dientamoebidae +16.9548485,NCBITaxon:74138,http://purl.obolibrary.org/obo/NCBITaxon_74138,none +16.9548485,NCBITaxon:742163,http://purl.obolibrary.org/obo/NCBITaxon_742163,none +16.9548485,NCBITaxon:742314,http://purl.obolibrary.org/obo/NCBITaxon_742314,none +16.9548485,NCBITaxon:742695,http://purl.obolibrary.org/obo/NCBITaxon_742695,none +16.9548485,NCBITaxon:742712,http://purl.obolibrary.org/obo/NCBITaxon_742712,none +16.9548485,NCBITaxon:743685,http://purl.obolibrary.org/obo/NCBITaxon_743685,none +16.9548485,NCBITaxon:743813,http://purl.obolibrary.org/obo/NCBITaxon_743813,none +16.9548485,NCBITaxon:743961,http://purl.obolibrary.org/obo/NCBITaxon_743961,none +16.9548485,NCBITaxon:745089,http://purl.obolibrary.org/obo/NCBITaxon_745089,none +16.9548485,NCBITaxon:745090,http://purl.obolibrary.org/obo/NCBITaxon_745090,none +16.9548485,NCBITaxon:745387,http://purl.obolibrary.org/obo/NCBITaxon_745387,none +16.9548485,NCBITaxon:746033,http://purl.obolibrary.org/obo/NCBITaxon_746033,none +16.9548485,NCBITaxon:74790,http://purl.obolibrary.org/obo/NCBITaxon_74790,none +16.9548485,NCBITaxon:748148,http://purl.obolibrary.org/obo/NCBITaxon_748148,none +16.9548485,NCBITaxon:748171,http://purl.obolibrary.org/obo/NCBITaxon_748171,none +16.9548485,NCBITaxon:7485,http://purl.obolibrary.org/obo/NCBITaxon_7485,none +16.9548485,NCBITaxon:748797,http://purl.obolibrary.org/obo/NCBITaxon_748797,none +16.9548485,NCBITaxon:748798,http://purl.obolibrary.org/obo/NCBITaxon_748798,none +16.9548485,NCBITaxon:748860,http://purl.obolibrary.org/obo/NCBITaxon_748860,none +16.9548485,NCBITaxon:749194,http://purl.obolibrary.org/obo/NCBITaxon_749194,none +16.9548485,NCBITaxon:749550,http://purl.obolibrary.org/obo/NCBITaxon_749550,none +16.9548485,NCBITaxon:7499,http://purl.obolibrary.org/obo/NCBITaxon_7499,none +16.9548485,NCBITaxon:75042,http://purl.obolibrary.org/obo/NCBITaxon_75042,none +16.9548485,NCBITaxon:751755,http://purl.obolibrary.org/obo/NCBITaxon_751755,none +16.9548485,NCBITaxon:75309,http://purl.obolibrary.org/obo/NCBITaxon_75309,none +16.9548485,NCBITaxon:75320,http://purl.obolibrary.org/obo/NCBITaxon_75320,none +16.9548485,NCBITaxon:7533,http://purl.obolibrary.org/obo/NCBITaxon_7533,none +16.9548485,NCBITaxon:75335,http://purl.obolibrary.org/obo/NCBITaxon_75335,none +16.9548485,NCBITaxon:75347,http://purl.obolibrary.org/obo/NCBITaxon_75347,none +16.9548485,NCBITaxon:75348,http://purl.obolibrary.org/obo/NCBITaxon_75348,none +16.9548485,NCBITaxon:75365,http://purl.obolibrary.org/obo/NCBITaxon_75365,none +16.9548485,NCBITaxon:754351,http://purl.obolibrary.org/obo/NCBITaxon_754351,none +16.9548485,NCBITaxon:75448,http://purl.obolibrary.org/obo/NCBITaxon_75448,none +16.9548485,NCBITaxon:756280,http://purl.obolibrary.org/obo/NCBITaxon_756280,none +16.9548485,NCBITaxon:75641,http://purl.obolibrary.org/obo/NCBITaxon_75641,none +16.9548485,NCBITaxon:75914,http://purl.obolibrary.org/obo/NCBITaxon_75914,none +16.9548485,NCBITaxon:7592,http://purl.obolibrary.org/obo/NCBITaxon_7592,none +16.9548485,NCBITaxon:759353,http://purl.obolibrary.org/obo/NCBITaxon_759353,none +16.9548485,NCBITaxon:759390,http://purl.obolibrary.org/obo/NCBITaxon_759390,none +16.9548485,NCBITaxon:75984,http://purl.obolibrary.org/obo/NCBITaxon_75984,none +16.9548485,NCBITaxon:75989,http://purl.obolibrary.org/obo/NCBITaxon_75989,none +16.9548485,NCBITaxon:761062,http://purl.obolibrary.org/obo/NCBITaxon_761062,none +16.9548485,NCBITaxon:761193,http://purl.obolibrary.org/obo/NCBITaxon_761193,none +16.9548485,NCBITaxon:76176,http://purl.obolibrary.org/obo/NCBITaxon_76176,none +16.9548485,NCBITaxon:763077,http://purl.obolibrary.org/obo/NCBITaxon_763077,none +16.9548485,NCBITaxon:76339,http://purl.obolibrary.org/obo/NCBITaxon_76339,none +16.9548485,NCBITaxon:76340,http://purl.obolibrary.org/obo/NCBITaxon_76340,none +16.9548485,NCBITaxon:763460,http://purl.obolibrary.org/obo/NCBITaxon_763460,none +16.9548485,NCBITaxon:763552,http://purl.obolibrary.org/obo/NCBITaxon_763552,none +16.9548485,NCBITaxon:764099,http://purl.obolibrary.org/obo/NCBITaxon_764099,none +16.9548485,NCBITaxon:764100,http://purl.obolibrary.org/obo/NCBITaxon_764100,none +16.9548485,NCBITaxon:764112,http://purl.obolibrary.org/obo/NCBITaxon_764112,none +16.9548485,NCBITaxon:765052,http://purl.obolibrary.org/obo/NCBITaxon_765052,none +16.9548485,NCBITaxon:765056,http://purl.obolibrary.org/obo/NCBITaxon_765056,none +16.9548485,NCBITaxon:76593,http://purl.obolibrary.org/obo/NCBITaxon_76593,none +16.9548485,NCBITaxon:76784,http://purl.obolibrary.org/obo/NCBITaxon_76784,none +16.9548485,NCBITaxon:76785,http://purl.obolibrary.org/obo/NCBITaxon_76785,none +16.9548485,NCBITaxon:76831,http://purl.obolibrary.org/obo/NCBITaxon_76831,none +16.9548485,NCBITaxon:7687,http://purl.obolibrary.org/obo/NCBITaxon_7687,none +16.9548485,NCBITaxon:76892,http://purl.obolibrary.org/obo/NCBITaxon_76892,none +16.9548485,NCBITaxon:7691,http://purl.obolibrary.org/obo/NCBITaxon_7691,none +16.9548485,NCBITaxon:76913,http://purl.obolibrary.org/obo/NCBITaxon_76913,none +16.9548485,NCBITaxon:76917,http://purl.obolibrary.org/obo/NCBITaxon_76917,none +16.9548485,NCBITaxon:76926,http://purl.obolibrary.org/obo/NCBITaxon_76926,none +16.9548485,NCBITaxon:76932,http://purl.obolibrary.org/obo/NCBITaxon_76932,none +16.9548485,NCBITaxon:7694,http://purl.obolibrary.org/obo/NCBITaxon_7694,none +16.9548485,NCBITaxon:76958,http://purl.obolibrary.org/obo/NCBITaxon_76958,none +16.9548485,NCBITaxon:7701,http://purl.obolibrary.org/obo/NCBITaxon_7701,none +16.9548485,NCBITaxon:77028,http://purl.obolibrary.org/obo/NCBITaxon_77028,none +16.9548485,NCBITaxon:77043,http://purl.obolibrary.org/obo/NCBITaxon_77043,none +16.9548485,NCBITaxon:77046,http://purl.obolibrary.org/obo/NCBITaxon_77046,none +16.9548485,NCBITaxon:77071,http://purl.obolibrary.org/obo/NCBITaxon_77071,none +16.9548485,NCBITaxon:77128,http://purl.obolibrary.org/obo/NCBITaxon_77128,none +16.9548485,NCBITaxon:77206,http://purl.obolibrary.org/obo/NCBITaxon_77206,none +16.9548485,NCBITaxon:77244,http://purl.obolibrary.org/obo/NCBITaxon_77244,none +16.9548485,NCBITaxon:77245,http://purl.obolibrary.org/obo/NCBITaxon_77245,none +16.9548485,NCBITaxon:7727,http://purl.obolibrary.org/obo/NCBITaxon_7727,none +16.9548485,NCBITaxon:77521,http://purl.obolibrary.org/obo/NCBITaxon_77521,none +16.9548485,NCBITaxon:77663,http://purl.obolibrary.org/obo/NCBITaxon_77663,none +16.9548485,NCBITaxon:77730,http://purl.obolibrary.org/obo/NCBITaxon_77730,none +16.9548485,NCBITaxon:77841,http://purl.obolibrary.org/obo/NCBITaxon_77841,none +16.9548485,NCBITaxon:78060,http://purl.obolibrary.org/obo/NCBITaxon_78060,none +16.9548485,NCBITaxon:7826,http://purl.obolibrary.org/obo/NCBITaxon_7826,none +16.9548485,NCBITaxon:78375,http://purl.obolibrary.org/obo/NCBITaxon_78375,none +16.9548485,NCBITaxon:78376,http://purl.obolibrary.org/obo/NCBITaxon_78376,none +16.9548485,NCBITaxon:78377,http://purl.obolibrary.org/obo/NCBITaxon_78377,none +16.9548485,NCBITaxon:78516,http://purl.obolibrary.org/obo/NCBITaxon_78516,none +16.9548485,NCBITaxon:78589,http://purl.obolibrary.org/obo/NCBITaxon_78589,none +16.9548485,NCBITaxon:78706,http://purl.obolibrary.org/obo/NCBITaxon_78706,none +16.9548485,NCBITaxon:7879,http://purl.obolibrary.org/obo/NCBITaxon_7879,none +16.9548485,NCBITaxon:7884,http://purl.obolibrary.org/obo/NCBITaxon_7884,none +16.9548485,NCBITaxon:78842,http://purl.obolibrary.org/obo/NCBITaxon_78842,none +16.9548485,NCBITaxon:7885,http://purl.obolibrary.org/obo/NCBITaxon_7885,none +16.9548485,NCBITaxon:78899,http://purl.obolibrary.org/obo/NCBITaxon_78899,none +16.9548485,NCBITaxon:78904,http://purl.obolibrary.org/obo/NCBITaxon_78904,none +16.9548485,NCBITaxon:78912,http://purl.obolibrary.org/obo/NCBITaxon_78912,none +16.9548485,NCBITaxon:78913,http://purl.obolibrary.org/obo/NCBITaxon_78913,none +16.9548485,NCBITaxon:7925,http://purl.obolibrary.org/obo/NCBITaxon_7925,none +16.9548485,NCBITaxon:7926,http://purl.obolibrary.org/obo/NCBITaxon_7926,none +16.9548485,NCBITaxon:7927,http://purl.obolibrary.org/obo/NCBITaxon_7927,none +16.9548485,NCBITaxon:79338,http://purl.obolibrary.org/obo/NCBITaxon_79338,none +16.9548485,NCBITaxon:795080,http://purl.obolibrary.org/obo/NCBITaxon_795080,none +16.9548485,NCBITaxon:795125,http://purl.obolibrary.org/obo/NCBITaxon_795125,none +16.9548485,NCBITaxon:795126,http://purl.obolibrary.org/obo/NCBITaxon_795126,none +16.9548485,NCBITaxon:7958,http://purl.obolibrary.org/obo/NCBITaxon_7958,none +16.9548485,NCBITaxon:7959,http://purl.obolibrary.org/obo/NCBITaxon_7959,none +16.9548485,NCBITaxon:7961,http://purl.obolibrary.org/obo/NCBITaxon_7961,Cyprinus +16.9548485,NCBITaxon:7962,http://purl.obolibrary.org/obo/NCBITaxon_7962,Cyprinus carpio +16.9548485,NCBITaxon:7963,http://purl.obolibrary.org/obo/NCBITaxon_7963,none +16.9548485,NCBITaxon:7965,http://purl.obolibrary.org/obo/NCBITaxon_7965,none +16.9548485,NCBITaxon:79700,http://purl.obolibrary.org/obo/NCBITaxon_79700,none +16.9548485,NCBITaxon:79707,http://purl.obolibrary.org/obo/NCBITaxon_79707,none +16.9548485,NCBITaxon:798072,http://purl.obolibrary.org/obo/NCBITaxon_798072,none +16.9548485,NCBITaxon:7982,http://purl.obolibrary.org/obo/NCBITaxon_7982,none +16.9548485,NCBITaxon:7983,http://purl.obolibrary.org/obo/NCBITaxon_7983,none +16.9548485,NCBITaxon:7986,http://purl.obolibrary.org/obo/NCBITaxon_7986,none +16.9548485,NCBITaxon:7987,http://purl.obolibrary.org/obo/NCBITaxon_7987,none +16.9548485,NCBITaxon:7996,http://purl.obolibrary.org/obo/NCBITaxon_7996,Ictaluridae +16.9548485,NCBITaxon:8000,http://purl.obolibrary.org/obo/NCBITaxon_8000,none +16.9548485,NCBITaxon:8022,http://purl.obolibrary.org/obo/NCBITaxon_8022,Oncorhynchus mykiss +16.9548485,NCBITaxon:80276,http://purl.obolibrary.org/obo/NCBITaxon_80276,none +16.9548485,NCBITaxon:8028,http://purl.obolibrary.org/obo/NCBITaxon_8028,Salmo +16.9548485,NCBITaxon:8033,http://purl.obolibrary.org/obo/NCBITaxon_8033,none +16.9548485,NCBITaxon:80368,http://purl.obolibrary.org/obo/NCBITaxon_80368,none +16.9548485,NCBITaxon:8039,http://purl.obolibrary.org/obo/NCBITaxon_8039,none +16.9548485,NCBITaxon:80628,http://purl.obolibrary.org/obo/NCBITaxon_80628,none +16.9548485,NCBITaxon:80634,http://purl.obolibrary.org/obo/NCBITaxon_80634,none +16.9548485,NCBITaxon:80635,http://purl.obolibrary.org/obo/NCBITaxon_80635,none +16.9548485,NCBITaxon:80669,http://purl.obolibrary.org/obo/NCBITaxon_80669,none +16.9548485,NCBITaxon:8078,http://purl.obolibrary.org/obo/NCBITaxon_8078,none +16.9548485,NCBITaxon:8083,http://purl.obolibrary.org/obo/NCBITaxon_8083,none +16.9548485,NCBITaxon:8098,http://purl.obolibrary.org/obo/NCBITaxon_8098,none +16.9548485,NCBITaxon:81047,http://purl.obolibrary.org/obo/NCBITaxon_81047,none +16.9548485,NCBITaxon:81084,http://purl.obolibrary.org/obo/NCBITaxon_81084,none +16.9548485,NCBITaxon:81093,http://purl.obolibrary.org/obo/NCBITaxon_81093,none +16.9548485,NCBITaxon:81099,http://purl.obolibrary.org/obo/NCBITaxon_81099,none +16.9548485,NCBITaxon:81390,http://purl.obolibrary.org/obo/NCBITaxon_81390,none +16.9548485,NCBITaxon:81426,http://purl.obolibrary.org/obo/NCBITaxon_81426,none +16.9548485,NCBITaxon:8160,http://purl.obolibrary.org/obo/NCBITaxon_8160,none +16.9548485,NCBITaxon:8163,http://purl.obolibrary.org/obo/NCBITaxon_8163,none +16.9548485,NCBITaxon:8164,http://purl.obolibrary.org/obo/NCBITaxon_8164,none +16.9548485,NCBITaxon:81687,http://purl.obolibrary.org/obo/NCBITaxon_81687,none +16.9548485,NCBITaxon:8172,http://purl.obolibrary.org/obo/NCBITaxon_8172,none +16.9548485,NCBITaxon:81832,http://purl.obolibrary.org/obo/NCBITaxon_81832,none +16.9548485,NCBITaxon:81934,http://purl.obolibrary.org/obo/NCBITaxon_81934,none +16.9548485,NCBITaxon:81936,http://purl.obolibrary.org/obo/NCBITaxon_81936,none +16.9548485,NCBITaxon:81952,http://purl.obolibrary.org/obo/NCBITaxon_81952,none +16.9548485,NCBITaxon:81957,http://purl.obolibrary.org/obo/NCBITaxon_81957,none +16.9548485,NCBITaxon:82224,http://purl.obolibrary.org/obo/NCBITaxon_82224,none +16.9548485,NCBITaxon:82383,http://purl.obolibrary.org/obo/NCBITaxon_82383,none +16.9548485,NCBITaxon:82384,http://purl.obolibrary.org/obo/NCBITaxon_82384,none +16.9548485,NCBITaxon:8243,http://purl.obolibrary.org/obo/NCBITaxon_8243,none +16.9548485,NCBITaxon:8244,http://purl.obolibrary.org/obo/NCBITaxon_8244,none +16.9548485,NCBITaxon:8245,http://purl.obolibrary.org/obo/NCBITaxon_8245,none +16.9548485,NCBITaxon:8253,http://purl.obolibrary.org/obo/NCBITaxon_8253,none +16.9548485,NCBITaxon:8254,http://purl.obolibrary.org/obo/NCBITaxon_8254,none +16.9548485,NCBITaxon:8255,http://purl.obolibrary.org/obo/NCBITaxon_8255,none +16.9548485,NCBITaxon:8256,http://purl.obolibrary.org/obo/NCBITaxon_8256,none +16.9548485,NCBITaxon:82596,http://purl.obolibrary.org/obo/NCBITaxon_82596,none +16.9548485,NCBITaxon:82599,http://purl.obolibrary.org/obo/NCBITaxon_82599,none +16.9548485,NCBITaxon:82600,http://purl.obolibrary.org/obo/NCBITaxon_82600,none +16.9548485,NCBITaxon:8261,http://purl.obolibrary.org/obo/NCBITaxon_8261,none +16.9548485,NCBITaxon:82616,http://purl.obolibrary.org/obo/NCBITaxon_82616,none +16.9548485,NCBITaxon:82617,http://purl.obolibrary.org/obo/NCBITaxon_82617,none +16.9548485,NCBITaxon:8262,http://purl.obolibrary.org/obo/NCBITaxon_8262,none +16.9548485,NCBITaxon:82639,http://purl.obolibrary.org/obo/NCBITaxon_82639,none +16.9548485,NCBITaxon:8274,http://purl.obolibrary.org/obo/NCBITaxon_8274,none +16.9548485,NCBITaxon:82791,http://purl.obolibrary.org/obo/NCBITaxon_82791,none +16.9548485,NCBITaxon:82821,http://purl.obolibrary.org/obo/NCBITaxon_82821,none +16.9548485,NCBITaxon:82885,http://purl.obolibrary.org/obo/NCBITaxon_82885,none +16.9548485,NCBITaxon:82886,http://purl.obolibrary.org/obo/NCBITaxon_82886,none +16.9548485,NCBITaxon:82888,http://purl.obolibrary.org/obo/NCBITaxon_82888,none +16.9548485,NCBITaxon:82986,http://purl.obolibrary.org/obo/NCBITaxon_82986,none +16.9548485,NCBITaxon:83138,http://purl.obolibrary.org/obo/NCBITaxon_83138,Anystina +16.9548485,NCBITaxon:8314,http://purl.obolibrary.org/obo/NCBITaxon_8314,none +16.9548485,NCBITaxon:83141,http://purl.obolibrary.org/obo/NCBITaxon_83141,Parasitengona +16.9548485,NCBITaxon:83145,http://purl.obolibrary.org/obo/NCBITaxon_83145,Eleutherengona +16.9548485,NCBITaxon:83146,http://purl.obolibrary.org/obo/NCBITaxon_83146,none +16.9548485,NCBITaxon:8329,http://purl.obolibrary.org/obo/NCBITaxon_8329,none +16.9548485,NCBITaxon:83373,http://purl.obolibrary.org/obo/NCBITaxon_83373,none +16.9548485,NCBITaxon:83530,http://purl.obolibrary.org/obo/NCBITaxon_83530,none +16.9548485,NCBITaxon:83558,http://purl.obolibrary.org/obo/NCBITaxon_83558,Chlamydia pneumoniae +16.9548485,NCBITaxon:83607,http://purl.obolibrary.org/obo/NCBITaxon_83607,none +16.9548485,NCBITaxon:83618,http://purl.obolibrary.org/obo/NCBITaxon_83618,none +16.9548485,NCBITaxon:8362,http://purl.obolibrary.org/obo/NCBITaxon_8362,none +16.9548485,NCBITaxon:83698,http://purl.obolibrary.org/obo/NCBITaxon_83698,none +16.9548485,NCBITaxon:837,http://purl.obolibrary.org/obo/NCBITaxon_837,none +16.9548485,NCBITaxon:83753,http://purl.obolibrary.org/obo/NCBITaxon_83753,none +16.9548485,NCBITaxon:83755,http://purl.obolibrary.org/obo/NCBITaxon_83755,none +16.9548485,NCBITaxon:83905,http://purl.obolibrary.org/obo/NCBITaxon_83905,none +16.9548485,NCBITaxon:83906,http://purl.obolibrary.org/obo/NCBITaxon_83906,none +16.9548485,NCBITaxon:83913,http://purl.obolibrary.org/obo/NCBITaxon_83913,none +16.9548485,NCBITaxon:84113,http://purl.obolibrary.org/obo/NCBITaxon_84113,none +16.9548485,NCBITaxon:84224,http://purl.obolibrary.org/obo/NCBITaxon_84224,none +16.9548485,NCBITaxon:843,http://purl.obolibrary.org/obo/NCBITaxon_843,none +16.9548485,NCBITaxon:84318,http://purl.obolibrary.org/obo/NCBITaxon_84318,none +16.9548485,NCBITaxon:84322,http://purl.obolibrary.org/obo/NCBITaxon_84322,none +16.9548485,NCBITaxon:84323,http://purl.obolibrary.org/obo/NCBITaxon_84323,none +16.9548485,NCBITaxon:84328,http://purl.obolibrary.org/obo/NCBITaxon_84328,none +16.9548485,NCBITaxon:84329,http://purl.obolibrary.org/obo/NCBITaxon_84329,none +16.9548485,NCBITaxon:84395,http://purl.obolibrary.org/obo/NCBITaxon_84395,none +16.9548485,NCBITaxon:84396,http://purl.obolibrary.org/obo/NCBITaxon_84396,none +16.9548485,NCBITaxon:84406,http://purl.obolibrary.org/obo/NCBITaxon_84406,none +16.9548485,NCBITaxon:84566,http://purl.obolibrary.org/obo/NCBITaxon_84566,none +16.9548485,NCBITaxon:84645,http://purl.obolibrary.org/obo/NCBITaxon_84645,none +16.9548485,NCBITaxon:84683,http://purl.obolibrary.org/obo/NCBITaxon_84683,none +16.9548485,NCBITaxon:8469,http://purl.obolibrary.org/obo/NCBITaxon_8469,none +16.9548485,NCBITaxon:84804,http://purl.obolibrary.org/obo/NCBITaxon_84804,none +16.9548485,NCBITaxon:84860,http://purl.obolibrary.org/obo/NCBITaxon_84860,none +16.9548485,NCBITaxon:84967,http://purl.obolibrary.org/obo/NCBITaxon_84967,none +16.9548485,NCBITaxon:84968,http://purl.obolibrary.org/obo/NCBITaxon_84968,none +16.9548485,NCBITaxon:84980,http://purl.obolibrary.org/obo/NCBITaxon_84980,none +16.9548485,NCBITaxon:84992,http://purl.obolibrary.org/obo/NCBITaxon_84992,none +16.9548485,NCBITaxon:84993,http://purl.obolibrary.org/obo/NCBITaxon_84993,none +16.9548485,NCBITaxon:84994,http://purl.obolibrary.org/obo/NCBITaxon_84994,none +16.9548485,NCBITaxon:85018,http://purl.obolibrary.org/obo/NCBITaxon_85018,none +16.9548485,NCBITaxon:85028,http://purl.obolibrary.org/obo/NCBITaxon_85028,none +16.9548485,NCBITaxon:85029,http://purl.obolibrary.org/obo/NCBITaxon_85029,none +16.9548485,NCBITaxon:8516,http://purl.obolibrary.org/obo/NCBITaxon_8516,Iguana +16.9548485,NCBITaxon:8523,http://purl.obolibrary.org/obo/NCBITaxon_8523,none +16.9548485,NCBITaxon:85249,http://purl.obolibrary.org/obo/NCBITaxon_85249,none +16.9548485,NCBITaxon:85281,http://purl.obolibrary.org/obo/NCBITaxon_85281,none +16.9548485,NCBITaxon:85713,http://purl.obolibrary.org/obo/NCBITaxon_85713,none +16.9548485,NCBITaxon:85753,http://purl.obolibrary.org/obo/NCBITaxon_85753,none +16.9548485,NCBITaxon:857645,http://purl.obolibrary.org/obo/NCBITaxon_857645,none +16.9548485,NCBITaxon:85817,http://purl.obolibrary.org/obo/NCBITaxon_85817,none +16.9548485,NCBITaxon:858326,http://purl.obolibrary.org/obo/NCBITaxon_858326,none +16.9548485,NCBITaxon:858511,http://purl.obolibrary.org/obo/NCBITaxon_858511,none +16.9548485,NCBITaxon:859914,http://purl.obolibrary.org/obo/NCBITaxon_859914,none +16.9548485,NCBITaxon:86004,http://purl.obolibrary.org/obo/NCBITaxon_86004,none +16.9548485,NCBITaxon:860684,http://purl.obolibrary.org/obo/NCBITaxon_860684,none +16.9548485,NCBITaxon:8612,http://purl.obolibrary.org/obo/NCBITaxon_8612,none +16.9548485,NCBITaxon:861906,http://purl.obolibrary.org/obo/NCBITaxon_861906,none +16.9548485,NCBITaxon:862141,http://purl.obolibrary.org/obo/NCBITaxon_862141,none +16.9548485,NCBITaxon:8627,http://purl.obolibrary.org/obo/NCBITaxon_8627,none +16.9548485,NCBITaxon:862943,http://purl.obolibrary.org/obo/NCBITaxon_862943,none +16.9548485,NCBITaxon:864698,http://purl.obolibrary.org/obo/NCBITaxon_864698,none +16.9548485,NCBITaxon:864699,http://purl.obolibrary.org/obo/NCBITaxon_864699,none +16.9548485,NCBITaxon:86502,http://purl.obolibrary.org/obo/NCBITaxon_86502,none +16.9548485,NCBITaxon:86519,http://purl.obolibrary.org/obo/NCBITaxon_86519,none +16.9548485,NCBITaxon:86520,http://purl.obolibrary.org/obo/NCBITaxon_86520,none +16.9548485,NCBITaxon:86600,http://purl.obolibrary.org/obo/NCBITaxon_86600,none +16.9548485,NCBITaxon:86620,http://purl.obolibrary.org/obo/NCBITaxon_86620,none +16.9548485,NCBITaxon:86649,http://purl.obolibrary.org/obo/NCBITaxon_86649,none +16.9548485,NCBITaxon:866787,http://purl.obolibrary.org/obo/NCBITaxon_866787,none +16.9548485,NCBITaxon:869562,http://purl.obolibrary.org/obo/NCBITaxon_869562,none +16.9548485,NCBITaxon:869673,http://purl.obolibrary.org/obo/NCBITaxon_869673,none +16.9548485,NCBITaxon:870588,http://purl.obolibrary.org/obo/NCBITaxon_870588,none +16.9548485,NCBITaxon:87155,http://purl.obolibrary.org/obo/NCBITaxon_87155,none +16.9548485,NCBITaxon:87156,http://purl.obolibrary.org/obo/NCBITaxon_87156,none +16.9548485,NCBITaxon:871658,http://purl.obolibrary.org/obo/NCBITaxon_871658,none +16.9548485,NCBITaxon:872127,http://purl.obolibrary.org/obo/NCBITaxon_872127,none +16.9548485,NCBITaxon:87301,http://purl.obolibrary.org/obo/NCBITaxon_87301,none +16.9548485,NCBITaxon:874455,http://purl.obolibrary.org/obo/NCBITaxon_874455,none +16.9548485,NCBITaxon:875323,http://purl.obolibrary.org/obo/NCBITaxon_875323,none +16.9548485,NCBITaxon:87753,http://purl.obolibrary.org/obo/NCBITaxon_87753,none +16.9548485,NCBITaxon:877883,http://purl.obolibrary.org/obo/NCBITaxon_877883,none +16.9548485,NCBITaxon:878260,http://purl.obolibrary.org/obo/NCBITaxon_878260,none +16.9548485,NCBITaxon:87862,http://purl.obolibrary.org/obo/NCBITaxon_87862,none +16.9548485,NCBITaxon:87874,http://purl.obolibrary.org/obo/NCBITaxon_87874,none +16.9548485,NCBITaxon:879026,http://purl.obolibrary.org/obo/NCBITaxon_879026,none +16.9548485,NCBITaxon:879186,http://purl.obolibrary.org/obo/NCBITaxon_879186,none +16.9548485,NCBITaxon:879624,http://purl.obolibrary.org/obo/NCBITaxon_879624,none +16.9548485,NCBITaxon:88028,http://purl.obolibrary.org/obo/NCBITaxon_88028,none +16.9548485,NCBITaxon:88029,http://purl.obolibrary.org/obo/NCBITaxon_88029,Semnopithecus entellus +16.9548485,NCBITaxon:88061,http://purl.obolibrary.org/obo/NCBITaxon_88061,none +16.9548485,NCBITaxon:881252,http://purl.obolibrary.org/obo/NCBITaxon_881252,none +16.9548485,NCBITaxon:88130,http://purl.obolibrary.org/obo/NCBITaxon_88130,none +16.9548485,NCBITaxon:882754,http://purl.obolibrary.org/obo/NCBITaxon_882754,none +16.9548485,NCBITaxon:882768,http://purl.obolibrary.org/obo/NCBITaxon_882768,none +16.9548485,NCBITaxon:88347,http://purl.obolibrary.org/obo/NCBITaxon_88347,none +16.9548485,NCBITaxon:88450,http://purl.obolibrary.org/obo/NCBITaxon_88450,none +16.9548485,NCBITaxon:886583,http://purl.obolibrary.org/obo/NCBITaxon_886583,none +16.9548485,NCBITaxon:88661,http://purl.obolibrary.org/obo/NCBITaxon_88661,none +16.9548485,NCBITaxon:88664,http://purl.obolibrary.org/obo/NCBITaxon_88664,none +16.9548485,NCBITaxon:886694,http://purl.obolibrary.org/obo/NCBITaxon_886694,none +16.9548485,NCBITaxon:886730,http://purl.obolibrary.org/obo/NCBITaxon_886730,none +16.9548485,NCBITaxon:886790,http://purl.obolibrary.org/obo/NCBITaxon_886790,none +16.9548485,NCBITaxon:886921,http://purl.obolibrary.org/obo/NCBITaxon_886921,none +16.9548485,NCBITaxon:88694,http://purl.obolibrary.org/obo/NCBITaxon_88694,none +16.9548485,NCBITaxon:887122,http://purl.obolibrary.org/obo/NCBITaxon_887122,none +16.9548485,NCBITaxon:88723,http://purl.obolibrary.org/obo/NCBITaxon_88723,none +16.9548485,NCBITaxon:88729,http://purl.obolibrary.org/obo/NCBITaxon_88729,none +16.9548485,NCBITaxon:88733,http://purl.obolibrary.org/obo/NCBITaxon_88733,none +16.9548485,NCBITaxon:88774,http://purl.obolibrary.org/obo/NCBITaxon_88774,none +16.9548485,NCBITaxon:887827,http://purl.obolibrary.org/obo/NCBITaxon_887827,none +16.9548485,NCBITaxon:889203,http://purl.obolibrary.org/obo/NCBITaxon_889203,none +16.9548485,NCBITaxon:889872,http://purl.obolibrary.org/obo/NCBITaxon_889872,none +16.9548485,NCBITaxon:89013,http://purl.obolibrary.org/obo/NCBITaxon_89013,none +16.9548485,NCBITaxon:8910,http://purl.obolibrary.org/obo/NCBITaxon_8910,none +16.9548485,NCBITaxon:89118,http://purl.obolibrary.org/obo/NCBITaxon_89118,none +16.9548485,NCBITaxon:89119,http://purl.obolibrary.org/obo/NCBITaxon_89119,none +16.9548485,NCBITaxon:89120,http://purl.obolibrary.org/obo/NCBITaxon_89120,none +16.9548485,NCBITaxon:89121,http://purl.obolibrary.org/obo/NCBITaxon_89121,none +16.9548485,NCBITaxon:891380,http://purl.obolibrary.org/obo/NCBITaxon_891380,none +16.9548485,NCBITaxon:89150,http://purl.obolibrary.org/obo/NCBITaxon_89150,none +16.9548485,NCBITaxon:89151,http://purl.obolibrary.org/obo/NCBITaxon_89151,none +16.9548485,NCBITaxon:891970,http://purl.obolibrary.org/obo/NCBITaxon_891970,none +16.9548485,NCBITaxon:891971,http://purl.obolibrary.org/obo/NCBITaxon_891971,none +16.9548485,NCBITaxon:89404,http://purl.obolibrary.org/obo/NCBITaxon_89404,none +16.9548485,NCBITaxon:8948,http://purl.obolibrary.org/obo/NCBITaxon_8948,none +16.9548485,NCBITaxon:8955,http://purl.obolibrary.org/obo/NCBITaxon_8955,none +16.9548485,NCBITaxon:89623,http://purl.obolibrary.org/obo/NCBITaxon_89623,none +16.9548485,NCBITaxon:8968,http://purl.obolibrary.org/obo/NCBITaxon_8968,none +16.9548485,NCBITaxon:89734,http://purl.obolibrary.org/obo/NCBITaxon_89734,none +16.9548485,NCBITaxon:89887,http://purl.obolibrary.org/obo/NCBITaxon_89887,none +16.9548485,NCBITaxon:904679,http://purl.obolibrary.org/obo/NCBITaxon_904679,none +16.9548485,NCBITaxon:904722,http://purl.obolibrary.org/obo/NCBITaxon_904722,none +16.9548485,NCBITaxon:90643,http://purl.obolibrary.org/obo/NCBITaxon_90643,none +16.9548485,NCBITaxon:90707,http://purl.obolibrary.org/obo/NCBITaxon_90707,none +16.9548485,NCBITaxon:90723,http://purl.obolibrary.org/obo/NCBITaxon_90723,none +16.9548485,NCBITaxon:908133,http://purl.obolibrary.org/obo/NCBITaxon_908133,none +16.9548485,NCBITaxon:908873,http://purl.obolibrary.org/obo/NCBITaxon_908873,none +16.9548485,NCBITaxon:911296,http://purl.obolibrary.org/obo/NCBITaxon_911296,none +16.9548485,NCBITaxon:911345,http://purl.obolibrary.org/obo/NCBITaxon_911345,none +16.9548485,NCBITaxon:911352,http://purl.obolibrary.org/obo/NCBITaxon_911352,none +16.9548485,NCBITaxon:911660,http://purl.obolibrary.org/obo/NCBITaxon_911660,none +16.9548485,NCBITaxon:91202,http://purl.obolibrary.org/obo/NCBITaxon_91202,none +16.9548485,NCBITaxon:912033,http://purl.obolibrary.org/obo/NCBITaxon_912033,none +16.9548485,NCBITaxon:912034,http://purl.obolibrary.org/obo/NCBITaxon_912034,none +16.9548485,NCBITaxon:91372,http://purl.obolibrary.org/obo/NCBITaxon_91372,none +16.9548485,NCBITaxon:914301,http://purl.obolibrary.org/obo/NCBITaxon_914301,none +16.9548485,NCBITaxon:91718,http://purl.obolibrary.org/obo/NCBITaxon_91718,none +16.9548485,NCBITaxon:91730,http://purl.obolibrary.org/obo/NCBITaxon_91730,none +16.9548485,NCBITaxon:91731,http://purl.obolibrary.org/obo/NCBITaxon_91731,none +16.9548485,NCBITaxon:91760,http://purl.obolibrary.org/obo/NCBITaxon_91760,none +16.9548485,NCBITaxon:91804,http://purl.obolibrary.org/obo/NCBITaxon_91804,none +16.9548485,NCBITaxon:91811,http://purl.obolibrary.org/obo/NCBITaxon_91811,none +16.9548485,NCBITaxon:91828,http://purl.obolibrary.org/obo/NCBITaxon_91828,none +16.9548485,NCBITaxon:9183,http://purl.obolibrary.org/obo/NCBITaxon_9183,none +16.9548485,NCBITaxon:91851,http://purl.obolibrary.org/obo/NCBITaxon_91851,none +16.9548485,NCBITaxon:920,http://purl.obolibrary.org/obo/NCBITaxon_920,none +16.9548485,NCBITaxon:92005,http://purl.obolibrary.org/obo/NCBITaxon_92005,none +16.9548485,NCBITaxon:92088,http://purl.obolibrary.org/obo/NCBITaxon_92088,Trombiculoidea +16.9548485,NCBITaxon:9220,http://purl.obolibrary.org/obo/NCBITaxon_9220,none +16.9548485,NCBITaxon:92203,http://purl.obolibrary.org/obo/NCBITaxon_92203,none +16.9548485,NCBITaxon:92251,http://purl.obolibrary.org/obo/NCBITaxon_92251,Trombiculidae +16.9548485,NCBITaxon:92437,http://purl.obolibrary.org/obo/NCBITaxon_92437,none +16.9548485,NCBITaxon:92562,http://purl.obolibrary.org/obo/NCBITaxon_92562,none +16.9548485,NCBITaxon:92609,http://purl.obolibrary.org/obo/NCBITaxon_92609,none +16.9548485,NCBITaxon:9278,http://purl.obolibrary.org/obo/NCBITaxon_9278,none +16.9548485,NCBITaxon:928299,http://purl.obolibrary.org/obo/NCBITaxon_928299,none +16.9548485,NCBITaxon:9288,http://purl.obolibrary.org/obo/NCBITaxon_9288,none +16.9548485,NCBITaxon:92905,http://purl.obolibrary.org/obo/NCBITaxon_92905,none +16.9548485,NCBITaxon:929585,http://purl.obolibrary.org/obo/NCBITaxon_929585,none +16.9548485,NCBITaxon:929715,http://purl.obolibrary.org/obo/NCBITaxon_929715,none +16.9548485,NCBITaxon:929766,http://purl.obolibrary.org/obo/NCBITaxon_929766,none +16.9548485,NCBITaxon:929767,http://purl.obolibrary.org/obo/NCBITaxon_929767,none +16.9548485,NCBITaxon:929768,http://purl.obolibrary.org/obo/NCBITaxon_929768,none +16.9548485,NCBITaxon:9298,http://purl.obolibrary.org/obo/NCBITaxon_9298,none +16.9548485,NCBITaxon:9300,http://purl.obolibrary.org/obo/NCBITaxon_9300,none +16.9548485,NCBITaxon:930272,http://purl.obolibrary.org/obo/NCBITaxon_930272,none +16.9548485,NCBITaxon:930275,http://purl.obolibrary.org/obo/NCBITaxon_930275,none +16.9548485,NCBITaxon:9309,http://purl.obolibrary.org/obo/NCBITaxon_9309,Potorous +16.9548485,NCBITaxon:930965,http://purl.obolibrary.org/obo/NCBITaxon_930965,none +16.9548485,NCBITaxon:9310,http://purl.obolibrary.org/obo/NCBITaxon_9310,none +16.9548485,NCBITaxon:93124,http://purl.obolibrary.org/obo/NCBITaxon_93124,none +16.9548485,NCBITaxon:932069,http://purl.obolibrary.org/obo/NCBITaxon_932069,none +16.9548485,NCBITaxon:932073,http://purl.obolibrary.org/obo/NCBITaxon_932073,none +16.9548485,NCBITaxon:933,http://purl.obolibrary.org/obo/NCBITaxon_933,none +16.9548485,NCBITaxon:933992,http://purl.obolibrary.org/obo/NCBITaxon_933992,none +16.9548485,NCBITaxon:93465,http://purl.obolibrary.org/obo/NCBITaxon_93465,none +16.9548485,NCBITaxon:93484,http://purl.obolibrary.org/obo/NCBITaxon_93484,none +16.9548485,NCBITaxon:93504,http://purl.obolibrary.org/obo/NCBITaxon_93504,none +16.9548485,NCBITaxon:935473,http://purl.obolibrary.org/obo/NCBITaxon_935473,none +16.9548485,NCBITaxon:935582,http://purl.obolibrary.org/obo/NCBITaxon_935582,none +16.9548485,NCBITaxon:936005,http://purl.obolibrary.org/obo/NCBITaxon_936005,none +16.9548485,NCBITaxon:936149,http://purl.obolibrary.org/obo/NCBITaxon_936149,none +16.9548485,NCBITaxon:936386,http://purl.obolibrary.org/obo/NCBITaxon_936386,none +16.9548485,NCBITaxon:9365,http://purl.obolibrary.org/obo/NCBITaxon_9365,Erinaceus europaeus +16.9548485,NCBITaxon:93694,http://purl.obolibrary.org/obo/NCBITaxon_93694,none +16.9548485,NCBITaxon:937388,http://purl.obolibrary.org/obo/NCBITaxon_937388,none +16.9548485,NCBITaxon:93758,http://purl.obolibrary.org/obo/NCBITaxon_93758,none +16.9548485,NCBITaxon:93815,http://purl.obolibrary.org/obo/NCBITaxon_93815,none +16.9548485,NCBITaxon:938276,http://purl.obolibrary.org/obo/NCBITaxon_938276,none +16.9548485,NCBITaxon:938388,http://purl.obolibrary.org/obo/NCBITaxon_938388,none +16.9548485,NCBITaxon:93976,http://purl.obolibrary.org/obo/NCBITaxon_93976,none +16.9548485,NCBITaxon:9399,http://purl.obolibrary.org/obo/NCBITaxon_9399,none +16.9548485,NCBITaxon:940665,http://purl.obolibrary.org/obo/NCBITaxon_940665,none +16.9548485,NCBITaxon:9409,http://purl.obolibrary.org/obo/NCBITaxon_9409,none +16.9548485,NCBITaxon:9410,http://purl.obolibrary.org/obo/NCBITaxon_9410,none +16.9548485,NCBITaxon:9411,http://purl.obolibrary.org/obo/NCBITaxon_9411,none +16.9548485,NCBITaxon:941442,http://purl.obolibrary.org/obo/NCBITaxon_941442,none +16.9548485,NCBITaxon:941984,http://purl.obolibrary.org/obo/NCBITaxon_941984,none +16.9548485,NCBITaxon:94233,http://purl.obolibrary.org/obo/NCBITaxon_94233,none +16.9548485,NCBITaxon:94243,http://purl.obolibrary.org/obo/NCBITaxon_94243,none +16.9548485,NCBITaxon:942710,http://purl.obolibrary.org/obo/NCBITaxon_942710,none +16.9548485,NCBITaxon:942712,http://purl.obolibrary.org/obo/NCBITaxon_942712,none +16.9548485,NCBITaxon:942731,http://purl.obolibrary.org/obo/NCBITaxon_942731,none +16.9548485,NCBITaxon:943083,http://purl.obolibrary.org/obo/NCBITaxon_943083,none +16.9548485,NCBITaxon:9432,http://purl.obolibrary.org/obo/NCBITaxon_9432,none +16.9548485,NCBITaxon:943272,http://purl.obolibrary.org/obo/NCBITaxon_943272,none +16.9548485,NCBITaxon:943689,http://purl.obolibrary.org/obo/NCBITaxon_943689,none +16.9548485,NCBITaxon:943926,http://purl.obolibrary.org/obo/NCBITaxon_943926,none +16.9548485,NCBITaxon:944994,http://purl.obolibrary.org/obo/NCBITaxon_944994,none +16.9548485,NCBITaxon:944996,http://purl.obolibrary.org/obo/NCBITaxon_944996,none +16.9548485,NCBITaxon:94571,http://purl.obolibrary.org/obo/NCBITaxon_94571,none +16.9548485,NCBITaxon:94572,http://purl.obolibrary.org/obo/NCBITaxon_94572,none +16.9548485,NCBITaxon:945765,http://purl.obolibrary.org/obo/NCBITaxon_945765,none +16.9548485,NCBITaxon:94579,http://purl.obolibrary.org/obo/NCBITaxon_94579,none +16.9548485,NCBITaxon:9459,http://purl.obolibrary.org/obo/NCBITaxon_9459,none +16.9548485,NCBITaxon:945960,http://purl.obolibrary.org/obo/NCBITaxon_945960,none +16.9548485,NCBITaxon:94604,http://purl.obolibrary.org/obo/NCBITaxon_94604,none +16.9548485,NCBITaxon:9461,http://purl.obolibrary.org/obo/NCBITaxon_9461,none +16.9548485,NCBITaxon:946565,http://purl.obolibrary.org/obo/NCBITaxon_946565,none +16.9548485,NCBITaxon:9469,http://purl.obolibrary.org/obo/NCBITaxon_9469,none +16.9548485,NCBITaxon:946985,http://purl.obolibrary.org/obo/NCBITaxon_946985,none +16.9548485,NCBITaxon:94701,http://purl.obolibrary.org/obo/NCBITaxon_94701,none +16.9548485,NCBITaxon:94702,http://purl.obolibrary.org/obo/NCBITaxon_94702,none +16.9548485,NCBITaxon:947036,http://purl.obolibrary.org/obo/NCBITaxon_947036,none +16.9548485,NCBITaxon:947522,http://purl.obolibrary.org/obo/NCBITaxon_947522,none +16.9548485,NCBITaxon:9480,http://purl.obolibrary.org/obo/NCBITaxon_9480,none +16.9548485,NCBITaxon:9486,http://purl.obolibrary.org/obo/NCBITaxon_9486,Saguinus +16.9548485,NCBITaxon:948611,http://purl.obolibrary.org/obo/NCBITaxon_948611,none +16.9548485,NCBITaxon:94964,http://purl.obolibrary.org/obo/NCBITaxon_94964,none +16.9548485,NCBITaxon:9505,http://purl.obolibrary.org/obo/NCBITaxon_9505,none +16.9548485,NCBITaxon:9506,http://purl.obolibrary.org/obo/NCBITaxon_9506,none +16.9548485,NCBITaxon:95119,http://purl.obolibrary.org/obo/NCBITaxon_95119,none +16.9548485,NCBITaxon:95134,http://purl.obolibrary.org/obo/NCBITaxon_95134,none +16.9548485,NCBITaxon:95166,http://purl.obolibrary.org/obo/NCBITaxon_95166,none +16.9548485,NCBITaxon:95167,http://purl.obolibrary.org/obo/NCBITaxon_95167,none +16.9548485,NCBITaxon:95179,http://purl.obolibrary.org/obo/NCBITaxon_95179,none +16.9548485,NCBITaxon:9518,http://purl.obolibrary.org/obo/NCBITaxon_9518,none +16.9548485,NCBITaxon:95186,http://purl.obolibrary.org/obo/NCBITaxon_95186,none +16.9548485,NCBITaxon:95188,http://purl.obolibrary.org/obo/NCBITaxon_95188,none +16.9548485,NCBITaxon:9531,http://purl.obolibrary.org/obo/NCBITaxon_9531,none +16.9548485,NCBITaxon:9537,http://purl.obolibrary.org/obo/NCBITaxon_9537,none +16.9548485,NCBITaxon:9545,http://purl.obolibrary.org/obo/NCBITaxon_9545,Macaca nemestrina +16.9548485,NCBITaxon:95452,http://purl.obolibrary.org/obo/NCBITaxon_95452,none +16.9548485,NCBITaxon:95453,http://purl.obolibrary.org/obo/NCBITaxon_95453,none +16.9548485,NCBITaxon:95961,http://purl.obolibrary.org/obo/NCBITaxon_95961,none +16.9548485,NCBITaxon:95962,http://purl.obolibrary.org/obo/NCBITaxon_95962,none +16.9548485,NCBITaxon:9599,http://purl.obolibrary.org/obo/NCBITaxon_9599,Pongo +16.9548485,NCBITaxon:9600,http://purl.obolibrary.org/obo/NCBITaxon_9600,Pongo pygmaeus +16.9548485,NCBITaxon:9601,http://purl.obolibrary.org/obo/NCBITaxon_9601,Pongo abelii +16.9548485,NCBITaxon:963,http://purl.obolibrary.org/obo/NCBITaxon_963,none +16.9548485,NCBITaxon:9632,http://purl.obolibrary.org/obo/NCBITaxon_9632,none +16.9548485,NCBITaxon:9639,http://purl.obolibrary.org/obo/NCBITaxon_9639,none +16.9548485,NCBITaxon:96453,http://purl.obolibrary.org/obo/NCBITaxon_96453,none +16.9548485,NCBITaxon:96674,http://purl.obolibrary.org/obo/NCBITaxon_96674,none +16.9548485,NCBITaxon:970,http://purl.obolibrary.org/obo/NCBITaxon_970,none +16.9548485,NCBITaxon:97213,http://purl.obolibrary.org/obo/NCBITaxon_97213,none +16.9548485,NCBITaxon:9740,http://purl.obolibrary.org/obo/NCBITaxon_9740,none +16.9548485,NCBITaxon:97457,http://purl.obolibrary.org/obo/NCBITaxon_97457,none +16.9548485,NCBITaxon:97749,http://purl.obolibrary.org/obo/NCBITaxon_97749,none +16.9548485,NCBITaxon:9780,http://purl.obolibrary.org/obo/NCBITaxon_9780,None +16.9548485,NCBITaxon:979227,http://purl.obolibrary.org/obo/NCBITaxon_979227,none +16.9548485,NCBITaxon:9800,http://purl.obolibrary.org/obo/NCBITaxon_9800,none +16.9548485,NCBITaxon:98005,http://purl.obolibrary.org/obo/NCBITaxon_98005,none +16.9548485,NCBITaxon:9801,http://purl.obolibrary.org/obo/NCBITaxon_9801,none +16.9548485,NCBITaxon:980634,http://purl.obolibrary.org/obo/NCBITaxon_980634,none +16.9548485,NCBITaxon:980680,http://purl.obolibrary.org/obo/NCBITaxon_980680,none +16.9548485,NCBITaxon:980879,http://purl.obolibrary.org/obo/NCBITaxon_980879,none +16.9548485,NCBITaxon:980880,http://purl.obolibrary.org/obo/NCBITaxon_980880,none +16.9548485,NCBITaxon:980909,http://purl.obolibrary.org/obo/NCBITaxon_980909,none +16.9548485,NCBITaxon:981070,http://purl.obolibrary.org/obo/NCBITaxon_981070,none +16.9548485,NCBITaxon:981403,http://purl.obolibrary.org/obo/NCBITaxon_981403,none +16.9548485,NCBITaxon:981671,http://purl.obolibrary.org/obo/NCBITaxon_981671,none +16.9548485,NCBITaxon:9827,http://purl.obolibrary.org/obo/NCBITaxon_9827,Tayassuidae +16.9548485,NCBITaxon:98309,http://purl.obolibrary.org/obo/NCBITaxon_98309,none +16.9548485,NCBITaxon:98310,http://purl.obolibrary.org/obo/NCBITaxon_98310,none +16.9548485,NCBITaxon:983307,http://purl.obolibrary.org/obo/NCBITaxon_983307,none +16.9548485,NCBITaxon:983542,http://purl.obolibrary.org/obo/NCBITaxon_983542,none +16.9548485,NCBITaxon:983547,http://purl.obolibrary.org/obo/NCBITaxon_983547,none +16.9548485,NCBITaxon:9837,http://purl.obolibrary.org/obo/NCBITaxon_9837,Camelus bactrianus +16.9548485,NCBITaxon:985001,http://purl.obolibrary.org/obo/NCBITaxon_985001,none +16.9548485,NCBITaxon:98504,http://purl.obolibrary.org/obo/NCBITaxon_98504,none +16.9548485,NCBITaxon:985779,http://purl.obolibrary.org/obo/NCBITaxon_985779,none +16.9548485,NCBITaxon:985781,http://purl.obolibrary.org/obo/NCBITaxon_985781,none +16.9548485,NCBITaxon:986141,http://purl.obolibrary.org/obo/NCBITaxon_986141,none +16.9548485,NCBITaxon:986143,http://purl.obolibrary.org/obo/NCBITaxon_986143,none +16.9548485,NCBITaxon:9871,http://purl.obolibrary.org/obo/NCBITaxon_9871,none +16.9548485,NCBITaxon:9881,http://purl.obolibrary.org/obo/NCBITaxon_9881,none +16.9548485,NCBITaxon:9893,http://purl.obolibrary.org/obo/NCBITaxon_9893,none +16.9548485,NCBITaxon:9894,http://purl.obolibrary.org/obo/NCBITaxon_9894,none +16.9548485,NCBITaxon:990280,http://purl.obolibrary.org/obo/NCBITaxon_990280,none +16.9548485,NCBITaxon:99055,http://purl.obolibrary.org/obo/NCBITaxon_99055,none +16.9548485,NCBITaxon:99110,http://purl.obolibrary.org/obo/NCBITaxon_99110,none +16.9548485,NCBITaxon:9918,http://purl.obolibrary.org/obo/NCBITaxon_9918,none +16.9548485,NCBITaxon:991902,http://purl.obolibrary.org/obo/NCBITaxon_991902,none +16.9548485,NCBITaxon:991913,http://purl.obolibrary.org/obo/NCBITaxon_991913,none +16.9548485,NCBITaxon:99220,http://purl.obolibrary.org/obo/NCBITaxon_99220,none +16.9548485,NCBITaxon:99295,http://purl.obolibrary.org/obo/NCBITaxon_99295,none +16.9548485,NCBITaxon:9933,http://purl.obolibrary.org/obo/NCBITaxon_9933,none +16.9548485,NCBITaxon:994384,http://purl.obolibrary.org/obo/NCBITaxon_994384,none +16.9548485,NCBITaxon:994385,http://purl.obolibrary.org/obo/NCBITaxon_994385,none +16.9548485,NCBITaxon:9948,http://purl.obolibrary.org/obo/NCBITaxon_9948,none +16.9548485,NCBITaxon:995019,http://purl.obolibrary.org/obo/NCBITaxon_995019,none +16.9548485,NCBITaxon:99599,http://purl.obolibrary.org/obo/NCBITaxon_99599,none +16.9548485,NCBITaxon:9969,http://purl.obolibrary.org/obo/NCBITaxon_9969,Syncerus +16.9548485,NCBITaxon:9970,http://purl.obolibrary.org/obo/NCBITaxon_9970,none +16.9548485,NCBITaxon:9971,http://purl.obolibrary.org/obo/NCBITaxon_9971,none +16.9548485,NCBITaxon:99839,http://purl.obolibrary.org/obo/NCBITaxon_99839,none +16.9548485,NCBITaxon:998446,http://purl.obolibrary.org/obo/NCBITaxon_998446,none +16.9548485,NCBITaxon:999288,http://purl.obolibrary.org/obo/NCBITaxon_999288,none +16.9548485,NCBITaxon:999361,http://purl.obolibrary.org/obo/NCBITaxon_999361,none +16.9548485,NCBITaxon:999635,http://purl.obolibrary.org/obo/NCBITaxon_999635,none +16.9548485,NCBITaxon:999642,http://purl.obolibrary.org/obo/NCBITaxon_999642,none +16.9548485,NCBITaxon:9997,http://purl.obolibrary.org/obo/NCBITaxon_9997,none +16.9548485,NCBITaxon:999883,http://purl.obolibrary.org/obo/NCBITaxon_999883,none +16.9548485,PR:000000218,http://purl.obolibrary.org/obo/PR_000000218,activin/inhibin beta C chain +16.9548485,PR:000000219,http://purl.obolibrary.org/obo/PR_000000219,activin/inhibin beta E chain +16.9548485,PR:000000483,http://purl.obolibrary.org/obo/PR_000000483,none +16.9548485,PR:000000672,http://purl.obolibrary.org/obo/PR_000000672,cation channel sperm-associated protein subunit beta +16.9548485,PR:000001149,http://purl.obolibrary.org/obo/PR_000001149,G-protein coupled receptor 157 +16.9548485,PR:000001229,http://purl.obolibrary.org/obo/PR_000001229,interleukin-1 receptor antagonist protein isoform 2 +16.9548485,PR:000001253,http://purl.obolibrary.org/obo/PR_000001253,none +16.9548485,PR:000001519,http://purl.obolibrary.org/obo/PR_000001519,G-protein coupled receptor 176 +16.9548485,PR:000001542,http://purl.obolibrary.org/obo/PR_000001542,P2Y purinoceptor 8 +16.9548485,PR:000001652,http://purl.obolibrary.org/obo/PR_000001652,putative P2Y purinoceptor 10 +16.9548485,PR:000001695,http://purl.obolibrary.org/obo/PR_000001695,none +16.9548485,PR:000002147,http://purl.obolibrary.org/obo/PR_000002147,CD14 molecule isoform 1 cleaved 2 soluble form +16.9548485,PR:000002987,http://purl.obolibrary.org/obo/PR_000002987,zinc finger protein Pegasus +16.9548485,PR:000003147,http://purl.obolibrary.org/obo/PR_000003147,furin isoform 1 +16.9548485,PR:000003148,http://purl.obolibrary.org/obo/PR_000003148,none +16.9548485,PR:000003253,http://purl.obolibrary.org/obo/PR_000003253,antithrombin-III isoform 1 +16.9548485,PR:000003254,http://purl.obolibrary.org/obo/PR_000003254,none +16.9548485,PR:000003297,http://purl.obolibrary.org/obo/PR_000003297,lymphocyte antigen 96 isoform 1 +16.9548485,PR:000003298,http://purl.obolibrary.org/obo/PR_000003298,"lymphocyte antigen 96 isoform 1, signal peptide removed glycosylated form" +16.9548485,PR:000003299,http://purl.obolibrary.org/obo/PR_000003299,"lymphocyte antigen 96 isoform 1, signal peptide removed N-glycosylated 1" +16.9548485,PR:000003329,http://purl.obolibrary.org/obo/PR_000003329,collagen alpha-1(III) chain isoform 1 +16.9548485,PR:000003330,http://purl.obolibrary.org/obo/PR_000003330,none +16.9548485,PR:000003346,http://purl.obolibrary.org/obo/PR_000003346,collagen alpha-1(V) chain isoform 1 +16.9548485,PR:000003347,http://purl.obolibrary.org/obo/PR_000003347,none +16.9548485,PR:000003358,http://purl.obolibrary.org/obo/PR_000003358,collagen alpha-2(VI) chain isoform 1 +16.9548485,PR:000003359,http://purl.obolibrary.org/obo/PR_000003359,none +16.9548485,PR:000003374,http://purl.obolibrary.org/obo/PR_000003374,collagen alpha-2(I) chain isoform 1 +16.9548485,PR:000003375,http://purl.obolibrary.org/obo/PR_000003375,none +16.9548485,PR:000003508,http://purl.obolibrary.org/obo/PR_000003508,CREB-binding protein/histone acetyltransferase KAT6B (human) +16.9548485,PR:000003509,http://purl.obolibrary.org/obo/PR_000003509,histone acetyltransferase KAT6B/CREB-binding protein (human) +16.9548485,PR:000003524,http://purl.obolibrary.org/obo/PR_000003524,arylacetamide deacetylase-like 4 +16.9548485,PR:000003649,http://purl.obolibrary.org/obo/PR_000003649,2-phosphoxylose phosphatase 1 +16.9548485,PR:000003787,http://purl.obolibrary.org/obo/PR_000003787,ADP-dependent glucokinase +16.9548485,PR:000003815,http://purl.obolibrary.org/obo/PR_000003815,"Arf-GAP with GTPase, ANK repeat and PH domain-containing protein 11" +16.9548485,PR:000003873,http://purl.obolibrary.org/obo/PR_000003873,beta/gamma crystallin domain-containing protein 2 +16.9548485,PR:000003888,http://purl.obolibrary.org/obo/PR_000003888,A-kinase anchor protein 14 +16.9548485,PR:000003953,http://purl.obolibrary.org/obo/PR_000003953,alpha-ketoglutarate-dependent dioxygenase alkB homolog 6 +16.9548485,PR:000004125,http://purl.obolibrary.org/obo/PR_000004125,protein APCDD1-like +16.9548485,PR:000004162,http://purl.obolibrary.org/obo/PR_000004162,apolipoprotein L5 +16.9548485,PR:000004299,http://purl.obolibrary.org/obo/PR_000004299,protein ARMCX6 +16.9548485,PR:000004350,http://purl.obolibrary.org/obo/PR_000004350,ankyrin repeat and SOCS box protein 18 +16.9548485,PR:000004462,http://purl.obolibrary.org/obo/PR_000004462,"ATP synthase subunit f, mitochondrial" +16.9548485,PR:000004491,http://purl.obolibrary.org/obo/PR_000004491,V-type proton ATPase subunit G 3 +16.9548485,PR:000004537,http://purl.obolibrary.org/obo/PR_000004537,none +16.9548485,PR:000004552,http://purl.obolibrary.org/obo/PR_000004552,none +16.9548485,PR:000004579,http://purl.obolibrary.org/obo/PR_000004579,none +16.9548485,PR:000004584,http://purl.obolibrary.org/obo/PR_000004584,"beta-1,3-galactosyltransferase 2" +16.9548485,PR:000004597,http://purl.obolibrary.org/obo/PR_000004597,"UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7" +16.9548485,PR:000004603,http://purl.obolibrary.org/obo/PR_000004603,"beta-1,4-N-acetylgalactosaminyltransferase 3" +16.9548485,PR:000004608,http://purl.obolibrary.org/obo/PR_000004608,"beta-1,4-galactosyltransferase 4" +16.9548485,PR:000004628,http://purl.obolibrary.org/obo/PR_000004628,B melanoma antigen 5 +16.9548485,PR:000004697,http://purl.obolibrary.org/obo/PR_000004697,Bcl-2-like protein 15 +16.9548485,PR:000004711,http://purl.obolibrary.org/obo/PR_000004711,putative BCoR-like protein 2 +16.9548485,PR:000004875,http://purl.obolibrary.org/obo/PR_000004875,complement C1q subcomponent subunit A +16.9548485,PR:000004940,http://purl.obolibrary.org/obo/PR_000004940,VWFA and cache domain-containing protein 1 +16.9548485,PR:000005091,http://purl.obolibrary.org/obo/PR_000005091,protein chibby homolog 3 +16.9548485,PR:000005094,http://purl.obolibrary.org/obo/PR_000005094,protein CC2D2B +16.9548485,PR:000005181,http://purl.obolibrary.org/obo/PR_000005181,cytidine and dCMP deaminase domain-containing protein 1 +16.9548485,PR:000005287,http://purl.obolibrary.org/obo/PR_000005287,CMT1A duplicated region transcript 15 protein +16.9548485,PR:000005332,http://purl.obolibrary.org/obo/PR_000005332,centromere protein L +16.9548485,PR:000005369,http://purl.obolibrary.org/obo/PR_000005369,carboxylesterase 4A +16.9548485,PR:000005401,http://purl.obolibrary.org/obo/PR_000005401,chondroadherin-like protein +16.9548485,PR:000005548,http://purl.obolibrary.org/obo/PR_000005548,claudin-20 +16.9548485,PR:000005563,http://purl.obolibrary.org/obo/PR_000005563,C-type lectin domain family 18 member C +16.9548485,PR:000005675,http://purl.obolibrary.org/obo/PR_000005675,contactin-associated protein-like 3B +16.9548485,PR:000005704,http://purl.obolibrary.org/obo/PR_000005704,collagen alpha-1(XX) chain +16.9548485,PR:000005711,http://purl.obolibrary.org/obo/PR_000005711,collagen alpha-1(XXVIII) chain +16.9548485,PR:000005790,http://purl.obolibrary.org/obo/PR_000005790,"cytochrome c oxidase subunit 7B2, mitochondrial" +16.9548485,PR:000005864,http://purl.obolibrary.org/obo/PR_000005864,protein CREG2 +16.9548485,PR:000005949,http://purl.obolibrary.org/obo/PR_000005949,casein kinase I isoform gamma-3 +16.9548485,PR:000005991,http://purl.obolibrary.org/obo/PR_000005991,cTAGE family member 4 +16.9548485,PR:000006038,http://purl.obolibrary.org/obo/PR_000006038,CTTNBP2 N-terminal-like protein +16.9548485,PR:000006131,http://purl.obolibrary.org/obo/PR_000006131,cytochrome P450 3A43 +16.9548485,PR:000006175,http://purl.obolibrary.org/obo/PR_000006175,none +16.9548485,PR:000006195,http://purl.obolibrary.org/obo/PR_000006195,none +16.9548485,PR:000006225,http://purl.obolibrary.org/obo/PR_000006225,none +16.9548485,PR:000006226,http://purl.obolibrary.org/obo/PR_000006226,none +16.9548485,PR:000006230,http://purl.obolibrary.org/obo/PR_000006230,none +16.9548485,PR:000006235,http://purl.obolibrary.org/obo/PR_000006235,none +16.9548485,PR:000006244,http://purl.obolibrary.org/obo/PR_000006244,none +16.9548485,PR:000006268,http://purl.obolibrary.org/obo/PR_000006268,diacylglycerol lipase-alpha +16.9548485,PR:000006354,http://purl.obolibrary.org/obo/PR_000006354,D-dopachrome decarboxylase-like protein +16.9548485,PR:000006367,http://purl.obolibrary.org/obo/PR_000006367,ATP-dependent RNA helicase DDX50 +16.9548485,PR:000006398,http://purl.obolibrary.org/obo/PR_000006398,beta-defensin 121 +16.9548485,PR:000006401,http://purl.obolibrary.org/obo/PR_000006401,beta-defensin 125 +16.9548485,PR:000006407,http://purl.obolibrary.org/obo/PR_000006407,beta-defensin 131A +16.9548485,PR:000006408,http://purl.obolibrary.org/obo/PR_000006408,beta-defensin 132 +16.9548485,PR:000006411,http://purl.obolibrary.org/obo/PR_000006411,beta-defensin 135 +16.9548485,PR:000006698,http://purl.obolibrary.org/obo/PR_000006698,Down syndrome critical region protein 10 +16.9548485,PR:000006705,http://purl.obolibrary.org/obo/PR_000006705,dermatan-sulfate epimerase-like protein +16.9548485,PR:000006787,http://purl.obolibrary.org/obo/PR_000006787,dysferlin-interacting protein 1 +16.9548485,PR:000006813,http://purl.obolibrary.org/obo/PR_000006813,none +16.9548485,PR:000006827,http://purl.obolibrary.org/obo/PR_000006827,none +16.9548485,PR:000006846,http://purl.obolibrary.org/obo/PR_000006846,none +16.9548485,PR:000006956,http://purl.obolibrary.org/obo/PR_000006956,eukaryotic translation initiation factor 1b +16.9548485,PR:000007005,http://purl.obolibrary.org/obo/PR_000007005,eukaryotic translation initiation factor 5A-1-like +16.9548485,PR:000007149,http://purl.obolibrary.org/obo/PR_000007149,epidermal growth factor receptor kinase substrate 8-like protein 2 +16.9548485,PR:000007226,http://purl.obolibrary.org/obo/PR_000007226,ETS translocation variant 3-like protein +16.9548485,PR:000007231,http://purl.obolibrary.org/obo/PR_000007231,protein EURL +16.9548485,PR:000007279,http://purl.obolibrary.org/obo/PR_000007279,none +16.9548485,PR:000007326,http://purl.obolibrary.org/obo/PR_000007326,fumarylacetoacetate hydrolase domain-containing protein 2B +16.9548485,PR:000007339,http://purl.obolibrary.org/obo/PR_000007339,Fanconi anemia group M protein +16.9548485,PR:000007367,http://purl.obolibrary.org/obo/PR_000007367,fibrosin-1-like protein +16.9548485,PR:000007371,http://purl.obolibrary.org/obo/PR_000007371,dynein regulatory complex subunit 6 +16.9548485,PR:000007386,http://purl.obolibrary.org/obo/PR_000007386,F-box/LRR-repeat protein 8 +16.9548485,PR:000007414,http://purl.obolibrary.org/obo/PR_000007414,F-box only protein 46 +16.9548485,PR:000007416,http://purl.obolibrary.org/obo/PR_000007416,F-box only protein 48 +16.9548485,PR:000007429,http://purl.obolibrary.org/obo/PR_000007429,F-box/WD repeat-containing protein 9 +16.9548485,PR:000007430,http://purl.obolibrary.org/obo/PR_000007430,high affinity immunoglobulin alpha and immunoglobulin mu Fc receptor +16.9548485,PR:000007461,http://purl.obolibrary.org/obo/PR_000007461,Fer-1-like protein 6 +16.9548485,PR:000007652,http://purl.obolibrary.org/obo/PR_000007652,protein FRA10AC1 +16.9548485,PR:000007661,http://purl.obolibrary.org/obo/PR_000007661,none +16.9548485,PR:000007663,http://purl.obolibrary.org/obo/PR_000007663,protein FRG2-like-1 +16.9548485,PR:000007681,http://purl.obolibrary.org/obo/PR_000007681,FSD1-like protein +16.9548485,PR:000007800,http://purl.obolibrary.org/obo/PR_000007800,G antigen 4 +16.9548485,PR:000007804,http://purl.obolibrary.org/obo/PR_000007804,G antigen 2D +16.9548485,PR:000007831,http://purl.obolibrary.org/obo/PR_000007831,polypeptide N-acetylgalactosaminyltransferase-like protein 2 +16.9548485,PR:000008075,http://purl.obolibrary.org/obo/PR_000008075,mannose-1-phosphate guanyltransferase alpha +16.9548485,PR:000008185,http://purl.obolibrary.org/obo/PR_000008185,protein GPR108 +16.9548485,PR:000008274,http://purl.obolibrary.org/obo/PR_000008274,glycine/arginine-rich protein 1 +16.9548485,PR:000008326,http://purl.obolibrary.org/obo/PR_000008326,general transcription factor 3C polypeptide 2 +16.9548485,PR:000008394,http://purl.obolibrary.org/obo/PR_000008394,none +16.9548485,PR:000008397,http://purl.obolibrary.org/obo/PR_000008397,none +16.9548485,PR:000008413,http://purl.obolibrary.org/obo/PR_000008413,none +16.9548485,PR:000008415,http://purl.obolibrary.org/obo/PR_000008415,histone H2A-Bbd type 2/3 +16.9548485,PR:000008422,http://purl.obolibrary.org/obo/PR_000008422,histone H2B type F-M +16.9548485,PR:000008423,http://purl.obolibrary.org/obo/PR_000008423,histone H2B type F-S +16.9548485,PR:000008514,http://purl.obolibrary.org/obo/PR_000008514,homocysteine-responsive endoplasmic reticulum-resident ubiquitin-like domain member 2 protein +16.9548485,PR:000008581,http://purl.obolibrary.org/obo/PR_000008581,histone H2A type 1-C +16.9548485,PR:000008587,http://purl.obolibrary.org/obo/PR_000008587,histone H2B type 1-B +16.9548485,PR:000008588,http://purl.obolibrary.org/obo/PR_000008588,histone H2B type 1-D +16.9548485,PR:000008590,http://purl.obolibrary.org/obo/PR_000008590,histone H2B type 1-J +16.9548485,PR:000008597,http://purl.obolibrary.org/obo/PR_000008597,histone H2A type 2-C +16.9548485,PR:000008599,http://purl.obolibrary.org/obo/PR_000008599,histone H2B type 2-F +16.9548485,PR:000008651,http://purl.obolibrary.org/obo/PR_000008651,jupiter microtubule associated homolog 2 +16.9548485,PR:000008659,http://purl.obolibrary.org/obo/PR_000008659,heterogeneous nuclear ribonucleoprotein A1-like 2 +16.9548485,PR:000008792,http://purl.obolibrary.org/obo/PR_000008792,heat shock factor 2-binding protein +16.9548485,PR:000008859,http://purl.obolibrary.org/obo/PR_000008859,none +16.9548485,PR:000008867,http://purl.obolibrary.org/obo/PR_000008867,none +16.9548485,PR:000008887,http://purl.obolibrary.org/obo/PR_000008887,isocitrate dehydrogenase [NADP] cytoplasmic +16.9548485,PR:000008900,http://purl.obolibrary.org/obo/PR_000008900,immediate early response gene 5-like protein +16.9548485,PR:000008903,http://purl.obolibrary.org/obo/PR_000008903,interferon alpha-inducible protein 27-like protein 1 +16.9548485,PR:000008904,http://purl.obolibrary.org/obo/PR_000008904,interferon alpha-inducible protein 27-like protein 2 +16.9548485,PR:000008932,http://purl.obolibrary.org/obo/PR_000008932,intraflagellar transport protein 140 +16.9548485,PR:000009039,http://purl.obolibrary.org/obo/PR_000009039,indolethylamine N-methyltransferase +16.9548485,PR:000009151,http://purl.obolibrary.org/obo/PR_000009151,inter-alpha-trypsin inhibitor heavy chain H5-like protein +16.9548485,PR:000009161,http://purl.obolibrary.org/obo/PR_000009161,"inositol 1,4,5-trisphosphate receptor-interacting protein" +16.9548485,PR:000009162,http://purl.obolibrary.org/obo/PR_000009162,"inositol 1,4,5-trisphosphate receptor-interacting protein-like 1" +16.9548485,PR:000009181,http://purl.obolibrary.org/obo/PR_000009181,none +16.9548485,PR:000009188,http://purl.obolibrary.org/obo/PR_000009188,none +16.9548485,PR:000009236,http://purl.obolibrary.org/obo/PR_000009236,kidney-associated antigen 1 +16.9548485,PR:000009388,http://purl.obolibrary.org/obo/PR_000009388,kelch-like protein 26 +16.9548485,PR:000009395,http://purl.obolibrary.org/obo/PR_000009395,kelch-like protein 33 +16.9548485,PR:000009399,http://purl.obolibrary.org/obo/PR_000009399,kelch-like protein 38 +16.9548485,PR:000009421,http://purl.obolibrary.org/obo/PR_000009421,inactive serine protease 54 +16.9548485,PR:000009505,http://purl.obolibrary.org/obo/PR_000009505,keratin-associated protein 1-3 +16.9548485,PR:000009506,http://purl.obolibrary.org/obo/PR_000009506,keratin-associated protein 1-5 +16.9548485,PR:000009507,http://purl.obolibrary.org/obo/PR_000009507,keratin-associated protein 10-1 +16.9548485,PR:000009510,http://purl.obolibrary.org/obo/PR_000009510,keratin-associated protein 10-12 +16.9548485,PR:000009512,http://purl.obolibrary.org/obo/PR_000009512,keratin-associated protein 10-3 +16.9548485,PR:000009520,http://purl.obolibrary.org/obo/PR_000009520,keratin-associated protein 12-1 +16.9548485,PR:000009522,http://purl.obolibrary.org/obo/PR_000009522,keratin-associated protein 12-3 +16.9548485,PR:000009524,http://purl.obolibrary.org/obo/PR_000009524,keratin-associated protein 13-1 +16.9548485,PR:000009526,http://purl.obolibrary.org/obo/PR_000009526,keratin-associated protein 13-3 +16.9548485,PR:000009530,http://purl.obolibrary.org/obo/PR_000009530,keratin-associated protein 19-1 +16.9548485,PR:000009539,http://purl.obolibrary.org/obo/PR_000009539,keratin-associated protein 2-2 +16.9548485,PR:000009542,http://purl.obolibrary.org/obo/PR_000009542,keratin-associated protein 20-1 +16.9548485,PR:000009545,http://purl.obolibrary.org/obo/PR_000009545,keratin-associated protein 21-1 +16.9548485,PR:000009555,http://purl.obolibrary.org/obo/PR_000009555,keratin-associated protein 3-2 +16.9548485,PR:000009563,http://purl.obolibrary.org/obo/PR_000009563,keratin-associated protein 4-5 +16.9548485,PR:000009565,http://purl.obolibrary.org/obo/PR_000009565,keratin-associated protein 4-7 +16.9548485,PR:000009567,http://purl.obolibrary.org/obo/PR_000009567,keratin-associated protein 5-1 +16.9548485,PR:000009570,http://purl.obolibrary.org/obo/PR_000009570,keratin-associated protein 5-2 +16.9548485,PR:000009573,http://purl.obolibrary.org/obo/PR_000009573,keratin-associated protein 5-5 +16.9548485,PR:000009574,http://purl.obolibrary.org/obo/PR_000009574,keratin-associated protein 5-6 +16.9548485,PR:000009575,http://purl.obolibrary.org/obo/PR_000009575,keratin-associated protein 5-7 +16.9548485,PR:000009608,http://purl.obolibrary.org/obo/PR_000009608,none +16.9548485,PR:000009610,http://purl.obolibrary.org/obo/PR_000009610,none +16.9548485,PR:000009634,http://purl.obolibrary.org/obo/PR_000009634,none +16.9548485,PR:000009638,http://purl.obolibrary.org/obo/PR_000009638,none +16.9548485,PR:000009663,http://purl.obolibrary.org/obo/PR_000009663,LanC-like protein 3 +16.9548485,PR:000009697,http://purl.obolibrary.org/obo/PR_000009697,lebercilin-like protein +16.9548485,PR:000009708,http://purl.obolibrary.org/obo/PR_000009708,late cornified envelope protein 2D +16.9548485,PR:000009716,http://purl.obolibrary.org/obo/PR_000009716,late cornified envelope protein 6A +16.9548485,PR:000009735,http://purl.obolibrary.org/obo/PR_000009735,lactase-like protein +16.9548485,PR:000009841,http://purl.obolibrary.org/obo/PR_000009841,lipase member N +16.9548485,PR:000009846,http://purl.obolibrary.org/obo/PR_000009846,meiosis regulator and mRNA stability factor 1 +16.9548485,PR:000010070,http://purl.obolibrary.org/obo/PR_000010070,melanoma-associated antigen B5 +16.9548485,PR:000010087,http://purl.obolibrary.org/obo/PR_000010087,protein mago nashi homolog 2 +16.9548485,PR:000010156,http://purl.obolibrary.org/obo/PR_000010156,MAPK-interacting and spindle-stabilizing protein-like +16.9548485,PR:000010235,http://purl.obolibrary.org/obo/PR_000010235,"methylmalonyl-CoA epimerase, mitochondrial" +16.9548485,PR:000010301,http://purl.obolibrary.org/obo/PR_000010301,mediator of RNA polymerase II transcription subunit 29 +16.9548485,PR:000010344,http://purl.obolibrary.org/obo/PR_000010344,alpha N-terminal protein methyltransferase 1B +16.9548485,PR:000010346,http://purl.obolibrary.org/obo/PR_000010346,tRNA N(3)-methylcytidine methyltransferase METTL2A +16.9548485,PR:000010347,http://purl.obolibrary.org/obo/PR_000010347,tRNA N(3)-methylcytidine methyltransferase METTL2B +16.9548485,PR:000010363,http://purl.obolibrary.org/obo/PR_000010363,microfibrillar-associated protein 3-like +16.9548485,PR:000010383,http://purl.obolibrary.org/obo/PR_000010383,"alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase C" +16.9548485,PR:000010411,http://purl.obolibrary.org/obo/PR_000010411,mesoderm induction early response protein 2 +16.9548485,PR:000010495,http://purl.obolibrary.org/obo/PR_000010495,multiple myeloma tumor-associated protein 2 +16.9548485,PR:000010506,http://purl.obolibrary.org/obo/PR_000010506,MOB kinase activator 3A +16.9548485,PR:000010530,http://purl.obolibrary.org/obo/PR_000010530,"ATP synthase subunit ATP5MJ, mitochondrial" +16.9548485,PR:000010542,http://purl.obolibrary.org/obo/PR_000010542,MPN domain-containing protein +16.9548485,PR:000010564,http://purl.obolibrary.org/obo/PR_000010564,MRG/MORF4L-binding protein +16.9548485,PR:000010575,http://purl.obolibrary.org/obo/PR_000010575,"39S ribosomal protein L13, mitochondrial" +16.9548485,PR:000010580,http://purl.obolibrary.org/obo/PR_000010580,"39S ribosomal protein L18, mitochondrial" +16.9548485,PR:000010582,http://purl.obolibrary.org/obo/PR_000010582,"39S ribosomal protein L2, mitochondrial" +16.9548485,PR:000010585,http://purl.obolibrary.org/obo/PR_000010585,"39S ribosomal protein L22, mitochondrial" +16.9548485,PR:000010586,http://purl.obolibrary.org/obo/PR_000010586,"39S ribosomal protein L23, mitochondrial" +16.9548485,PR:000010587,http://purl.obolibrary.org/obo/PR_000010587,"39S ribosomal protein L24, mitochondrial" +16.9548485,PR:000010589,http://purl.obolibrary.org/obo/PR_000010589,"39S ribosomal protein L28, mitochondrial" +16.9548485,PR:000010591,http://purl.obolibrary.org/obo/PR_000010591,"39S ribosomal protein L30, mitochondrial" +16.9548485,PR:000010595,http://purl.obolibrary.org/obo/PR_000010595,"39S ribosomal protein L35, mitochondrial" +16.9548485,PR:000010601,http://purl.obolibrary.org/obo/PR_000010601,"39S ribosomal protein L40, mitochondrial" +16.9548485,PR:000010604,http://purl.obolibrary.org/obo/PR_000010604,"39S ribosomal protein L43, mitochondrial" +16.9548485,PR:000010606,http://purl.obolibrary.org/obo/PR_000010606,"39S ribosomal protein L45, mitochondrial" +16.9548485,PR:000010611,http://purl.obolibrary.org/obo/PR_000010611,"39S ribosomal protein L50, mitochondrial" +16.9548485,PR:000010618,http://purl.obolibrary.org/obo/PR_000010618,"28S ribosomal protein S10, mitochondrial" +16.9548485,PR:000010624,http://purl.obolibrary.org/obo/PR_000010624,"28S ribosomal protein S17, mitochondrial" +16.9548485,PR:000010629,http://purl.obolibrary.org/obo/PR_000010629,"28S ribosomal protein S21, mitochondrial" +16.9548485,PR:000010632,http://purl.obolibrary.org/obo/PR_000010632,"28S ribosomal protein S24, mitochondrial" +16.9548485,PR:000010638,http://purl.obolibrary.org/obo/PR_000010638,"28S ribosomal protein S31, mitochondrial" +16.9548485,PR:000010639,http://purl.obolibrary.org/obo/PR_000010639,"28S ribosomal protein S33, mitochondrial" +16.9548485,PR:000010654,http://purl.obolibrary.org/obo/PR_000010654,membrane-spanning 4-domains subfamily A member 14 +16.9548485,PR:000010659,http://purl.obolibrary.org/obo/PR_000010659,membrane-spanning 4-domains subfamily A member 5 +16.9548485,PR:000010661,http://purl.obolibrary.org/obo/PR_000010661,membrane-spanning 4-domains subfamily A member 6E +16.9548485,PR:000010696,http://purl.obolibrary.org/obo/PR_000010696,metallothionein-1B +16.9548485,PR:000010697,http://purl.obolibrary.org/obo/PR_000010697,metallothionein-1E +16.9548485,PR:000010698,http://purl.obolibrary.org/obo/PR_000010698,metallothionein-1F +16.9548485,PR:000010703,http://purl.obolibrary.org/obo/PR_000010703,metallothionein-1X +16.9548485,PR:000010726,http://purl.obolibrary.org/obo/PR_000010726,5-formyltetrahydrofolate cyclo-ligase MTHFS +16.9548485,PR:000010813,http://purl.obolibrary.org/obo/PR_000010813,N-cym protein +16.9548485,PR:000010843,http://purl.obolibrary.org/obo/PR_000010843,"myosin light chain 2, lymphocyte-specific" +16.9548485,PR:000010908,http://purl.obolibrary.org/obo/PR_000010908,none +16.9548485,PR:000010913,http://purl.obolibrary.org/obo/PR_000010913,none +16.9548485,PR:000010920,http://purl.obolibrary.org/obo/PR_000010920,none +16.9548485,PR:000010939,http://purl.obolibrary.org/obo/PR_000010939,NEDD4-binding protein 2-like 1 +16.9548485,PR:000010952,http://purl.obolibrary.org/obo/PR_000010952,NAC-alpha domain-containing protein 1 +16.9548485,PR:000011206,http://purl.obolibrary.org/obo/PR_000011206,NHS-like protein 2 +16.9548485,PR:000011228,http://purl.obolibrary.org/obo/PR_000011228,sodium/potassium-transporting ATPase subunit beta-1-interacting protein 3 +16.9548485,PR:000011268,http://purl.obolibrary.org/obo/PR_000011268,"NACHT, LRR and PYD domains-containing protein 13" +16.9548485,PR:000011348,http://purl.obolibrary.org/obo/PR_000011348,NIPA-like protein 3 +16.9548485,PR:000011447,http://purl.obolibrary.org/obo/PR_000011447,non-structural maintenance of chromosomes element 1 +16.9548485,PR:000011498,http://purl.obolibrary.org/obo/PR_000011498,nucleoside diphosphate-linked moiety X motif 8 +16.9548485,PR:000011556,http://purl.obolibrary.org/obo/PR_000011556,none +16.9548485,PR:000011565,http://purl.obolibrary.org/obo/PR_000011565,none +16.9548485,PR:000011567,http://purl.obolibrary.org/obo/PR_000011567,none +16.9548485,PR:000011613,http://purl.obolibrary.org/obo/PR_000011613,"2-oxoglutarate dehydrogenase-like, mitochondrial" +16.9548485,PR:000011713,http://purl.obolibrary.org/obo/PR_000011713,olfactory receptor 14J1 +16.9548485,PR:000011716,http://purl.obolibrary.org/obo/PR_000011716,olfactory receptor 1A2 +16.9548485,PR:000011726,http://purl.obolibrary.org/obo/PR_000011726,olfactory receptor 1G1 +16.9548485,PR:000011727,http://purl.obolibrary.org/obo/PR_000011727,olfactory receptor 1I1 +16.9548485,PR:000011737,http://purl.obolibrary.org/obo/PR_000011737,olfactory receptor 1M1 +16.9548485,PR:000011745,http://purl.obolibrary.org/obo/PR_000011745,olfactory receptor 2A2 +16.9548485,PR:000011753,http://purl.obolibrary.org/obo/PR_000011753,olfactory receptor 2AG2 +16.9548485,PR:000011755,http://purl.obolibrary.org/obo/PR_000011755,olfactory receptor 2AP1 +16.9548485,PR:000011765,http://purl.obolibrary.org/obo/PR_000011765,olfactory receptor 2F2 +16.9548485,PR:000011769,http://purl.obolibrary.org/obo/PR_000011769,olfactory receptor 2H1 +16.9548485,PR:000011801,http://purl.obolibrary.org/obo/PR_000011801,olfactory receptor 2W3 +16.9548485,PR:000011807,http://purl.obolibrary.org/obo/PR_000011807,putative olfactory receptor 3A4 +16.9548485,PR:000011855,http://purl.obolibrary.org/obo/PR_000011855,olfactory receptor 4X1 +16.9548485,PR:000011860,http://purl.obolibrary.org/obo/PR_000011860,olfactory receptor 51B2 +16.9548485,PR:000011984,http://purl.obolibrary.org/obo/PR_000011984,olfactory receptor 6X1 +16.9548485,PR:000011988,http://purl.obolibrary.org/obo/PR_000011988,olfactory receptor 7A5 +16.9548485,PR:000011992,http://purl.obolibrary.org/obo/PR_000011992,olfactory receptor 7D4 +16.9548485,PR:000012016,http://purl.obolibrary.org/obo/PR_000012016,olfactory receptor 8S1 +16.9548485,PR:000012058,http://purl.obolibrary.org/obo/PR_000012058,oxidative stress-induced growth inhibitor 2 +16.9548485,PR:000012121,http://purl.obolibrary.org/obo/PR_000012121,none +16.9548485,PR:000012185,http://purl.obolibrary.org/obo/PR_000012185,none +16.9548485,PR:000012198,http://purl.obolibrary.org/obo/PR_000012198,prolyl 4-hydroxylase subunit alpha-3 +16.9548485,PR:000012308,http://purl.obolibrary.org/obo/PR_000012308,prostate and testis expressed protein 2 +16.9548485,PR:000012309,http://purl.obolibrary.org/obo/PR_000012309,prostate and testis expressed protein 3 +16.9548485,PR:000012361,http://purl.obolibrary.org/obo/PR_000012361,protocadherin alpha-2 +16.9548485,PR:000012372,http://purl.obolibrary.org/obo/PR_000012372,protocadherin beta-10 +16.9548485,PR:000012375,http://purl.obolibrary.org/obo/PR_000012375,protocadherin beta-13 +16.9548485,PR:000012376,http://purl.obolibrary.org/obo/PR_000012376,protocadherin beta-14 +16.9548485,PR:000012377,http://purl.obolibrary.org/obo/PR_000012377,protocadherin beta-15 +16.9548485,PR:000012383,http://purl.obolibrary.org/obo/PR_000012383,protocadherin beta-6 +16.9548485,PR:000012385,http://purl.obolibrary.org/obo/PR_000012385,protocadherin beta-8 +16.9548485,PR:000012387,http://purl.obolibrary.org/obo/PR_000012387,protocadherin gamma-A1 +16.9548485,PR:000012388,http://purl.obolibrary.org/obo/PR_000012388,protocadherin gamma-A10 +16.9548485,PR:000012396,http://purl.obolibrary.org/obo/PR_000012396,protocadherin gamma-A7 +16.9548485,PR:000012397,http://purl.obolibrary.org/obo/PR_000012397,protocadherin gamma-A8 +16.9548485,PR:000012429,http://purl.obolibrary.org/obo/PR_000012429,protein PCOTH +16.9548485,PR:000012660,http://purl.obolibrary.org/obo/PR_000012660,phosphorylase b kinase regulatory subunit beta +16.9548485,PR:000012677,http://purl.obolibrary.org/obo/PR_000012677,phytanoyl-CoA hydroxylase-interacting protein-like +16.9548485,PR:000012702,http://purl.obolibrary.org/obo/PR_000012702,GPI ethanolamine phosphate transferase 3 +16.9548485,PR:000012710,http://purl.obolibrary.org/obo/PR_000012710,phosphatidylinositol-glycan biosynthesis class W protein +16.9548485,PR:000012820,http://purl.obolibrary.org/obo/PR_000012820,PLAC8-like protein 1 +16.9548485,PR:000012858,http://purl.obolibrary.org/obo/PR_000012858,putative protein PLEKHA9 +16.9548485,PR:000012920,http://purl.obolibrary.org/obo/PR_000012920,postmeiotic segregation increased 2-like protein 5 +16.9548485,PR:000012933,http://purl.obolibrary.org/obo/PR_000012933,paraneoplastic antigen-like protein 6A +16.9548485,PR:000012953,http://purl.obolibrary.org/obo/PR_000012953,podocan +16.9548485,PR:000012996,http://purl.obolibrary.org/obo/PR_000012996,DNA-directed RNA polymerase II subunit RPB11-b1 +16.9548485,PR:000013007,http://purl.obolibrary.org/obo/PR_000013007,DNA-directed RNA polymerase III subunit RPC7-like +16.9548485,PR:000013012,http://purl.obolibrary.org/obo/PR_000013012,nuclear envelope pore membrane protein POM 121C +16.9548485,PR:000013064,http://purl.obolibrary.org/obo/PR_000013064,phosphopantothenoylcysteine decarboxylase +16.9548485,PR:000013086,http://purl.obolibrary.org/obo/PR_000013086,peptidyl-prolyl cis-trans isomerase-like 4 +16.9548485,PR:000013128,http://purl.obolibrary.org/obo/PR_000013128,protein phosphatase 1 regulatory subunit 3E +16.9548485,PR:000013178,http://purl.obolibrary.org/obo/PR_000013178,photoreceptor disk component PRCD +16.9548485,PR:000013204,http://purl.obolibrary.org/obo/PR_000013204,"protein preY, mitochondrial" +16.9548485,PR:000013224,http://purl.obolibrary.org/obo/PR_000013224,cAMP-dependent protein kinase catalytic subunit gamma +16.9548485,PR:000013281,http://purl.obolibrary.org/obo/PR_000013281,pre-mRNA-splicing factor 38B +16.9548485,PR:000013304,http://purl.obolibrary.org/obo/PR_000013304,proline-rich protein 18 +16.9548485,PR:000013338,http://purl.obolibrary.org/obo/PR_000013338,proactivator polypeptide-like 1 +16.9548485,PR:000013500,http://purl.obolibrary.org/obo/PR_000013500,pseudouridylate synthase 7-like protein +16.9548485,PR:000013501,http://purl.obolibrary.org/obo/PR_000013501,tRNA pseudouridine synthase-like 1 +16.9548485,PR:000013531,http://purl.obolibrary.org/obo/PR_000013531,none +16.9548485,PR:000013535,http://purl.obolibrary.org/obo/PR_000013535,putative 2-oxo-4-hydroxy-4-carboxy-5-ureidoimidazoline decarboxylase +16.9548485,PR:000013550,http://purl.obolibrary.org/obo/PR_000013550,none +16.9548485,PR:000013566,http://purl.obolibrary.org/obo/PR_000013566,glutaminyl-peptide cyclotransferase-like protein +16.9548485,PR:000013674,http://purl.obolibrary.org/obo/PR_000013674,RAD51-associated protein 2 +16.9548485,PR:000013755,http://purl.obolibrary.org/obo/PR_000013755,Ras-GEF domain-containing family member 1C +16.9548485,PR:000013825,http://purl.obolibrary.org/obo/PR_000013825,recombining binding protein suppressor of hairless-like protein +16.9548485,PR:000013915,http://purl.obolibrary.org/obo/PR_000013915,ret finger protein-like 2 +16.9548485,PR:000013934,http://purl.obolibrary.org/obo/PR_000013934,tRNA methyltransferase 10 homolog B +16.9548485,PR:000013993,http://purl.obolibrary.org/obo/PR_000013993,RIB43A-like with coiled-coils protein 2 +16.9548485,PR:000014017,http://purl.obolibrary.org/obo/PR_000014017,Ras and Rab interactor-like protein +16.9548485,PR:000014039,http://purl.obolibrary.org/obo/PR_000014039,E3 ubiquitin-protein transferase RMND5A +16.9548485,PR:000014045,http://purl.obolibrary.org/obo/PR_000014045,ribonuclease-like protein 13 +16.9548485,PR:000014051,http://purl.obolibrary.org/obo/PR_000014051,ribonuclease 8 +16.9548485,PR:000014093,http://purl.obolibrary.org/obo/PR_000014093,RING finger protein 150 +16.9548485,PR:000014096,http://purl.obolibrary.org/obo/PR_000014096,E3 ubiquitin ligase RNF157 +16.9548485,PR:000014098,http://purl.obolibrary.org/obo/PR_000014098,E3 ubiquitin-protein ligase RNF165 +16.9548485,PR:000014111,http://purl.obolibrary.org/obo/PR_000014111,E3 ubiquitin-protein ligase RNF186 +16.9548485,PR:000014119,http://purl.obolibrary.org/obo/PR_000014119,RING finger protein 212 +16.9548485,PR:000014124,http://purl.obolibrary.org/obo/PR_000014124,ORC ubiquitin ligase 1 +16.9548485,PR:000014138,http://purl.obolibrary.org/obo/PR_000014138,RING finger protein 44 +16.9548485,PR:000014148,http://purl.obolibrary.org/obo/PR_000014148,aminopeptidase RNPEPL1 +16.9548485,PR:000014159,http://purl.obolibrary.org/obo/PR_000014159,ropporin-1B +16.9548485,PR:000014198,http://purl.obolibrary.org/obo/PR_000014198,60S ribosomal protein L18a +16.9548485,PR:000014207,http://purl.obolibrary.org/obo/PR_000014207,60S ribosomal protein L26-like 1 +16.9548485,PR:000014226,http://purl.obolibrary.org/obo/PR_000014226,60S ribosomal protein L39-like +16.9548485,PR:000014279,http://purl.obolibrary.org/obo/PR_000014279,"40S ribosomal protein S4, Y isoform 2" +16.9548485,PR:000014288,http://purl.obolibrary.org/obo/PR_000014288,ribosomal protein S6 kinase delta-1 +16.9548485,PR:000014313,http://purl.obolibrary.org/obo/PR_000014313,ribosomal RNA-processing protein 7 homolog A +16.9548485,PR:000014328,http://purl.obolibrary.org/obo/PR_000014328,radial spoke head protein 4 homolog A +16.9548485,PR:000014423,http://purl.obolibrary.org/obo/PR_000014423,protein S100-Z +16.9548485,PR:000014512,http://purl.obolibrary.org/obo/PR_000014512,secretoglobin family 2B member 2 +16.9548485,PR:000014580,http://purl.obolibrary.org/obo/PR_000014580,SEC14-like protein 5 +16.9548485,PR:000014668,http://purl.obolibrary.org/obo/PR_000014668,secretion-regulating guanine nucleotide exchange factor +16.9548485,PR:000014704,http://purl.obolibrary.org/obo/PR_000014704,serpin E3 +16.9548485,PR:000014767,http://purl.obolibrary.org/obo/PR_000014767,vesicle transport protein SFT2A +16.9548485,PR:000014789,http://purl.obolibrary.org/obo/PR_000014789,serine/threonine kinase-like domain-containing protein STKLD1 +16.9548485,PR:000014844,http://purl.obolibrary.org/obo/PR_000014844,protein shisa-4 +16.9548485,PR:000014852,http://purl.obolibrary.org/obo/PR_000014852,E3 ubiquitin-protein ligase SHPRH +16.9548485,PR:000014984,http://purl.obolibrary.org/obo/PR_000014984,solute carrier family 22 member 15 +16.9548485,PR:000015102,http://purl.obolibrary.org/obo/PR_000015102,solute carrier family 35 member E2A +16.9548485,PR:000015108,http://purl.obolibrary.org/obo/PR_000015108,solute carrier family 35 member F4 +16.9548485,PR:000015182,http://purl.obolibrary.org/obo/PR_000015182,orphan sodium- and chloride-dependent neurotransmitter transporter NTT5 +16.9548485,PR:000015203,http://purl.obolibrary.org/obo/PR_000015203,protein SLC7A6OS +16.9548485,PR:000015439,http://purl.obolibrary.org/obo/PR_000015439,nuclear body protein SP140-like protein +16.9548485,PR:000015471,http://purl.obolibrary.org/obo/PR_000015471,sperm protein associated with the nucleus on the X chromosome N2 +16.9548485,PR:000015497,http://purl.obolibrary.org/obo/PR_000015497,spermatogenesis-associated protein 9 +16.9548485,PR:000015515,http://purl.obolibrary.org/obo/PR_000015515,protein chibby homolog 2 +16.9548485,PR:000015544,http://purl.obolibrary.org/obo/PR_000015544,Kunitz-type protease inhibitor 3 +16.9548485,PR:000015549,http://purl.obolibrary.org/obo/PR_000015549,BPI fold-containing family A member 3 +16.9548485,PR:000015552,http://purl.obolibrary.org/obo/PR_000015552,protein spinster homolog 3 +16.9548485,PR:000015579,http://purl.obolibrary.org/obo/PR_000015579,small proline-rich protein 2G +16.9548485,PR:000015673,http://purl.obolibrary.org/obo/PR_000015673,putative protein SSX6 +16.9548485,PR:000015674,http://purl.obolibrary.org/obo/PR_000015674,protein SSX7 +16.9548485,PR:000015692,http://purl.obolibrary.org/obo/PR_000015692,"alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6" +16.9548485,PR:000015699,http://purl.obolibrary.org/obo/PR_000015699,"alpha-2,8-sialyltransferase 8E" +16.9548485,PR:000015700,http://purl.obolibrary.org/obo/PR_000015700,"alpha-2,8-sialyltransferase 8F" +16.9548485,PR:000015708,http://purl.obolibrary.org/obo/PR_000015708,putative STAG3-like protein 4 +16.9548485,PR:000015838,http://purl.obolibrary.org/obo/PR_000015838,STAGA complex 65 subunit gamma +16.9548485,PR:000015888,http://purl.obolibrary.org/obo/PR_000015888,synaptopodin 2-like protein +16.9548485,PR:000015930,http://purl.obolibrary.org/obo/PR_000015930,none +16.9548485,PR:000015936,http://purl.obolibrary.org/obo/PR_000015936,none +16.9548485,PR:000015954,http://purl.obolibrary.org/obo/PR_000015954,none +16.9548485,PR:000015957,http://purl.obolibrary.org/obo/PR_000015957,none +16.9548485,PR:000015959,http://purl.obolibrary.org/obo/PR_000015959,none +16.9548485,PR:000015962,http://purl.obolibrary.org/obo/PR_000015962,solute carrier family 26 member 10 +16.9548485,PR:000015970,http://purl.obolibrary.org/obo/PR_000015970,none +16.9548485,PR:000015974,http://purl.obolibrary.org/obo/PR_000015974,none +16.9548485,PR:000015980,http://purl.obolibrary.org/obo/PR_000015980,none +16.9548485,PR:000015985,http://purl.obolibrary.org/obo/PR_000015985,none +16.9548485,PR:000015997,http://purl.obolibrary.org/obo/PR_000015997,none +16.9548485,PR:000016023,http://purl.obolibrary.org/obo/PR_000016023,TATA box-binding protein-associated factor RNA polymerase I subunit D +16.9548485,PR:000016032,http://purl.obolibrary.org/obo/PR_000016032,TAF6-like RNA polymerase II p300/CBP-associated factor-associated factor 65 kDa subunit 6L +16.9548485,PR:000016073,http://purl.obolibrary.org/obo/PR_000016073,taste receptor type 2 member 41 +16.9548485,PR:000016074,http://purl.obolibrary.org/obo/PR_000016074,taste receptor type 2 member 42 +16.9548485,PR:000016075,http://purl.obolibrary.org/obo/PR_000016075,taste receptor type 2 member 43 +16.9548485,PR:000016083,http://purl.obolibrary.org/obo/PR_000016083,taste receptor type 2 member 50 +16.9548485,PR:000016096,http://purl.obolibrary.org/obo/PR_000016096,TBC1 domain family member 12 +16.9548485,PR:000016097,http://purl.obolibrary.org/obo/PR_000016097,TBC1 domain family member 13 +16.9548485,PR:000016107,http://purl.obolibrary.org/obo/PR_000016107,TBC1 domain family member 22B +16.9548485,PR:000016122,http://purl.obolibrary.org/obo/PR_000016122,TBC1 domain family member 8B +16.9548485,PR:000016123,http://purl.obolibrary.org/obo/PR_000016123,TBC1 domain family member 9 +16.9548485,PR:000016162,http://purl.obolibrary.org/obo/PR_000016162,transcription elongation factor A protein-like 3 +16.9548485,PR:000016164,http://purl.obolibrary.org/obo/PR_000016164,transcription elongation factor A protein-like 5 +16.9548485,PR:000016181,http://purl.obolibrary.org/obo/PR_000016181,transcription factor 23 +16.9548485,PR:000016202,http://purl.obolibrary.org/obo/PR_000016202,T-complex protein 11-like protein 1 +16.9548485,PR:000016251,http://purl.obolibrary.org/obo/PR_000016251,testis-expressed protein 13A +16.9548485,PR:000016252,http://purl.obolibrary.org/obo/PR_000016252,testis-expressed protein 13B +16.9548485,PR:000016257,http://purl.obolibrary.org/obo/PR_000016257,protein TEX261 +16.9548485,PR:000016302,http://purl.obolibrary.org/obo/PR_000016302,thyroid adenoma-associated protein +16.9548485,PR:000016331,http://purl.obolibrary.org/obo/PR_000016331,tigger transposable element-derived protein 1 +16.9548485,PR:000016333,http://purl.obolibrary.org/obo/PR_000016333,tigger transposable element-derived protein 3 +16.9548485,PR:000016334,http://purl.obolibrary.org/obo/PR_000016334,tigger transposable element-derived protein 4 +16.9548485,PR:000016336,http://purl.obolibrary.org/obo/PR_000016336,tigger transposable element-derived protein 6 +16.9548485,PR:000016401,http://purl.obolibrary.org/obo/PR_000016401,transmembrane emp24 domain-containing protein 1 +16.9548485,PR:000016413,http://purl.obolibrary.org/obo/PR_000016413,transmembrane protein 150A +16.9548485,PR:000016561,http://purl.obolibrary.org/obo/PR_000016561,tumor protein p53-inducible protein 13 +16.9548485,PR:000016590,http://purl.obolibrary.org/obo/PR_000016590,tumor protein p63-regulated gene 1-like protein +16.9548485,PR:000016718,http://purl.obolibrary.org/obo/PR_000016718,"elongation factor Ts, mitochondrial" +16.9548485,PR:000016733,http://purl.obolibrary.org/obo/PR_000016733,translin-associated factor X-interacting protein 1 +16.9548485,PR:000016742,http://purl.obolibrary.org/obo/PR_000016742,tetraspanin-16 +16.9548485,PR:000016789,http://purl.obolibrary.org/obo/PR_000016789,tubulin polyglutamylase TTLL11 +16.9548485,PR:000016848,http://purl.obolibrary.org/obo/PR_000016848,DNA-directed RNA polymerase I subunit RPA43 +16.9548485,PR:000016887,http://purl.obolibrary.org/obo/PR_000016887,none +16.9548485,PR:000016897,http://purl.obolibrary.org/obo/PR_000016897,none +16.9548485,PR:000016905,http://purl.obolibrary.org/obo/PR_000016905,none +16.9548485,PR:000016907,http://purl.obolibrary.org/obo/PR_000016907,none +16.9548485,PR:000016916,http://purl.obolibrary.org/obo/PR_000016916,none +16.9548485,PR:000016919,http://purl.obolibrary.org/obo/PR_000016919,none +16.9548485,PR:000016938,http://purl.obolibrary.org/obo/PR_000016938,none +16.9548485,PR:000016949,http://purl.obolibrary.org/obo/PR_000016949,UDP-N-acetylhexosamine pyrophosphorylase-like protein 1 +16.9548485,PR:000016968,http://purl.obolibrary.org/obo/PR_000016968,E3 ubiquitin-protein ligase E3D +16.9548485,PR:000016986,http://purl.obolibrary.org/obo/PR_000016986,ubiquitin-conjugating enzyme E2 R2 +16.9548485,PR:000017020,http://purl.obolibrary.org/obo/PR_000017020,UBX domain-containing protein 2B +16.9548485,PR:000017129,http://purl.obolibrary.org/obo/PR_000017129,cytochrome b-c1 complex subunit 8 +16.9548485,PR:000017154,http://purl.obolibrary.org/obo/PR_000017154,ubiquitin carboxyl-terminal hydrolase 17-like protein 6 +16.9548485,PR:000017182,http://purl.obolibrary.org/obo/PR_000017182,ubiquitin carboxyl-terminal hydrolase 43 +16.9548485,PR:000017201,http://purl.obolibrary.org/obo/PR_000017201,U3 small nucleolar RNA-associated protein 14 homolog A +16.9548485,PR:000017202,http://purl.obolibrary.org/obo/PR_000017202,U3 small nucleolar RNA-associated protein 14 homolog C +16.9548485,PR:000017214,http://purl.obolibrary.org/obo/PR_000017214,UV radiation resistance-associated gene protein +16.9548485,PR:000017221,http://purl.obolibrary.org/obo/PR_000017221,none +16.9548485,PR:000017229,http://purl.obolibrary.org/obo/PR_000017229,none +16.9548485,PR:000017241,http://purl.obolibrary.org/obo/PR_000017241,none +16.9548485,PR:000017265,http://purl.obolibrary.org/obo/PR_000017265,synaptic vesicle membrane protein VAT-1-like +16.9548485,PR:000017309,http://purl.obolibrary.org/obo/PR_000017309,vomeronasal type-1 receptor 2 +16.9548485,PR:000017311,http://purl.obolibrary.org/obo/PR_000017311,vomeronasal type-1 receptor 4 +16.9548485,PR:000017312,http://purl.obolibrary.org/obo/PR_000017312,vomeronasal type-1 receptor 5 +16.9548485,PR:000017366,http://purl.obolibrary.org/obo/PR_000017366,none +16.9548485,PR:000017383,http://purl.obolibrary.org/obo/PR_000017383,methyltransferase-like protein 27 +16.9548485,PR:000017407,http://purl.obolibrary.org/obo/PR_000017407,protein WFDC11 +16.9548485,PR:000017411,http://purl.obolibrary.org/obo/PR_000017411,protein WFDC9 +16.9548485,PR:000017416,http://purl.obolibrary.org/obo/PR_000017416,"WASP-associated protein with actin, membranes and microtubules-like protein 1" +16.9548485,PR:000017482,http://purl.obolibrary.org/obo/PR_000017482,XK-related protein 3 +16.9548485,PR:000017484,http://purl.obolibrary.org/obo/PR_000017484,XK-related protein 5 +16.9548485,PR:000017489,http://purl.obolibrary.org/obo/PR_000017489,XK-related protein 2 +16.9548485,PR:000017492,http://purl.obolibrary.org/obo/PR_000017492,skin-specific protein 32 +16.9548485,PR:000017577,http://purl.obolibrary.org/obo/PR_000017577,zinc finger and BTB domain-containing protein 37 +16.9548485,PR:000017582,http://purl.obolibrary.org/obo/PR_000017582,zinc finger and BTB domain-containing protein 41 +16.9548485,PR:000017584,http://purl.obolibrary.org/obo/PR_000017584,zinc finger and BTB domain-containing protein 43 +16.9548485,PR:000017586,http://purl.obolibrary.org/obo/PR_000017586,zinc finger and BTB domain-containing protein 45 +16.9548485,PR:000017633,http://purl.obolibrary.org/obo/PR_000017633,zinc finger protein 14 homolog +16.9548485,PR:000017646,http://purl.obolibrary.org/obo/PR_000017646,zinc finger protein 62 +16.9548485,PR:000017678,http://purl.obolibrary.org/obo/PR_000017678,zinc finger matrin-type protein 1 +16.9548485,PR:000017679,http://purl.obolibrary.org/obo/PR_000017679,zinc finger matrin-type protein 2 +16.9548485,PR:000017682,http://purl.obolibrary.org/obo/PR_000017682,zinc finger matrin-type protein 5 +16.9548485,PR:000017686,http://purl.obolibrary.org/obo/PR_000017686,zinc finger MYM-type protein 1 +16.9548485,PR:000017691,http://purl.obolibrary.org/obo/PR_000017691,zinc finger MYM-type protein 6 +16.9548485,PR:000017697,http://purl.obolibrary.org/obo/PR_000017697,zinc finger protein 101 +16.9548485,PR:000017698,http://purl.obolibrary.org/obo/PR_000017698,zinc finger protein 107 +16.9548485,PR:000017699,http://purl.obolibrary.org/obo/PR_000017699,zinc finger protein 114 +16.9548485,PR:000017705,http://purl.obolibrary.org/obo/PR_000017705,zinc finger protein 132 +16.9548485,PR:000017707,http://purl.obolibrary.org/obo/PR_000017707,zinc finger protein 134 +16.9548485,PR:000017708,http://purl.obolibrary.org/obo/PR_000017708,zinc finger protein 135 +16.9548485,PR:000017710,http://purl.obolibrary.org/obo/PR_000017710,putative zinc finger protein 137 +16.9548485,PR:000017719,http://purl.obolibrary.org/obo/PR_000017719,zinc finger protein 154 +16.9548485,PR:000017720,http://purl.obolibrary.org/obo/PR_000017720,zinc finger protein 155 +16.9548485,PR:000017721,http://purl.obolibrary.org/obo/PR_000017721,zinc finger protein 157 +16.9548485,PR:000017730,http://purl.obolibrary.org/obo/PR_000017730,zinc finger protein 177 +16.9548485,PR:000017732,http://purl.obolibrary.org/obo/PR_000017732,zinc finger protein 180 +16.9548485,PR:000017741,http://purl.obolibrary.org/obo/PR_000017741,zinc finger protein 195 +16.9548485,PR:000017742,http://purl.obolibrary.org/obo/PR_000017742,zinc finger protein 197 +16.9548485,PR:000017745,http://purl.obolibrary.org/obo/PR_000017745,zinc finger protein 200 +16.9548485,PR:000017747,http://purl.obolibrary.org/obo/PR_000017747,zinc finger protein 205 +16.9548485,PR:000017749,http://purl.obolibrary.org/obo/PR_000017749,zinc finger protein 208 +16.9548485,PR:000017767,http://purl.obolibrary.org/obo/PR_000017767,zinc finger protein 230 +16.9548485,PR:000017782,http://purl.obolibrary.org/obo/PR_000017782,zinc finger protein 254 +16.9548485,PR:000017788,http://purl.obolibrary.org/obo/PR_000017788,zinc finger protein 263 +16.9548485,PR:000017794,http://purl.obolibrary.org/obo/PR_000017794,zinc finger protein 273 +16.9548485,PR:000017797,http://purl.obolibrary.org/obo/PR_000017797,zinc finger protein 276 +16.9548485,PR:000017807,http://purl.obolibrary.org/obo/PR_000017807,zinc finger protein 284 +16.9548485,PR:000017810,http://purl.obolibrary.org/obo/PR_000017810,zinc finger protein 287 +16.9548485,PR:000017813,http://purl.obolibrary.org/obo/PR_000017813,zinc finger protein 296 +16.9548485,PR:000017815,http://purl.obolibrary.org/obo/PR_000017815,zinc finger protein 30 +16.9548485,PR:000017820,http://purl.obolibrary.org/obo/PR_000017820,zinc finger protein 317 +16.9548485,PR:000017821,http://purl.obolibrary.org/obo/PR_000017821,zinc finger protein 318 +16.9548485,PR:000017827,http://purl.obolibrary.org/obo/PR_000017827,zinc finger and SCAN domain-containing protein 31 +16.9548485,PR:000017828,http://purl.obolibrary.org/obo/PR_000017828,zinc finger protein 324A +16.9548485,PR:000017834,http://purl.obolibrary.org/obo/PR_000017834,zinc finger protein 333 +16.9548485,PR:000017835,http://purl.obolibrary.org/obo/PR_000017835,zinc finger protein 334 +16.9548485,PR:000017842,http://purl.obolibrary.org/obo/PR_000017842,zinc finger protein 343 +16.9548485,PR:000017851,http://purl.obolibrary.org/obo/PR_000017851,zinc finger protein 358 +16.9548485,PR:000017866,http://purl.obolibrary.org/obo/PR_000017866,zinc finger protein 396 +16.9548485,PR:000017880,http://purl.obolibrary.org/obo/PR_000017880,zinc finger protein 418 +16.9548485,PR:000017887,http://purl.obolibrary.org/obo/PR_000017887,zinc finger protein 429 +16.9548485,PR:000017898,http://purl.obolibrary.org/obo/PR_000017898,zinc finger protein 440 +16.9548485,PR:000017899,http://purl.obolibrary.org/obo/PR_000017899,zinc finger protein 441 +16.9548485,PR:000017902,http://purl.obolibrary.org/obo/PR_000017902,zinc finger protein 444 +16.9548485,PR:000017904,http://purl.obolibrary.org/obo/PR_000017904,zinc finger protein 446 +16.9548485,PR:000017919,http://purl.obolibrary.org/obo/PR_000017919,zinc finger protein 479 +16.9548485,PR:000017920,http://purl.obolibrary.org/obo/PR_000017920,zinc finger protein 48 +16.9548485,PR:000017922,http://purl.obolibrary.org/obo/PR_000017922,zinc finger protein 483 +16.9548485,PR:000017930,http://purl.obolibrary.org/obo/PR_000017930,zinc finger protein 492 +16.9548485,PR:000017932,http://purl.obolibrary.org/obo/PR_000017932,zinc finger protein 496 +16.9548485,PR:000017934,http://purl.obolibrary.org/obo/PR_000017934,zinc finger and SCAN domain-containing protein 25 +16.9548485,PR:000017941,http://purl.obolibrary.org/obo/PR_000017941,zinc finger and BTB domain-containing protein 49 +16.9548485,PR:000017942,http://purl.obolibrary.org/obo/PR_000017942,zinc finger protein 510 +16.9548485,PR:000017950,http://purl.obolibrary.org/obo/PR_000017950,zinc finger protein 518A +16.9548485,PR:000017957,http://purl.obolibrary.org/obo/PR_000017957,zinc finger protein 527 +16.9548485,PR:000017965,http://purl.obolibrary.org/obo/PR_000017965,putative zinc finger protein 542 +16.9548485,PR:000017976,http://purl.obolibrary.org/obo/PR_000017976,zinc finger protein 555 +16.9548485,PR:000018005,http://purl.obolibrary.org/obo/PR_000018005,zinc finger protein 583 +16.9548485,PR:000018013,http://purl.obolibrary.org/obo/PR_000018013,zinc finger protein 593 +16.9548485,PR:000018027,http://purl.obolibrary.org/obo/PR_000018027,zinc finger protein 611 +16.9548485,PR:000018028,http://purl.obolibrary.org/obo/PR_000018028,zinc finger protein 613 +16.9548485,PR:000018030,http://purl.obolibrary.org/obo/PR_000018030,zinc finger protein 615 +16.9548485,PR:000018032,http://purl.obolibrary.org/obo/PR_000018032,zinc finger protein 618 +16.9548485,PR:000018045,http://purl.obolibrary.org/obo/PR_000018045,zinc finger protein 638 +16.9548485,PR:000018056,http://purl.obolibrary.org/obo/PR_000018056,zinc finger protein 653 +16.9548485,PR:000018060,http://purl.obolibrary.org/obo/PR_000018060,zinc finger protein 658B +16.9548485,PR:000018065,http://purl.obolibrary.org/obo/PR_000018065,zinc finger protein 664 +16.9548485,PR:000018070,http://purl.obolibrary.org/obo/PR_000018070,zinc finger protein 670 +16.9548485,PR:000018072,http://purl.obolibrary.org/obo/PR_000018072,zinc finger protein 672 +16.9548485,PR:000018074,http://purl.obolibrary.org/obo/PR_000018074,zinc finger protein 674 +16.9548485,PR:000018076,http://purl.obolibrary.org/obo/PR_000018076,zinc finger protein 676 +16.9548485,PR:000018089,http://purl.obolibrary.org/obo/PR_000018089,zinc finger protein 691 +16.9548485,PR:000018096,http://purl.obolibrary.org/obo/PR_000018096,zinc finger protein 70 +16.9548485,PR:000018105,http://purl.obolibrary.org/obo/PR_000018105,zinc finger protein 706 +16.9548485,PR:000018120,http://purl.obolibrary.org/obo/PR_000018120,zinc finger protein 737 +16.9548485,PR:000018136,http://purl.obolibrary.org/obo/PR_000018136,zinc finger protein 768 +16.9548485,PR:000018145,http://purl.obolibrary.org/obo/PR_000018145,zinc finger protein 777 +16.9548485,PR:000018146,http://purl.obolibrary.org/obo/PR_000018146,zinc finger protein 778 +16.9548485,PR:000018148,http://purl.obolibrary.org/obo/PR_000018148,zinc finger protein 780B +16.9548485,PR:000018155,http://purl.obolibrary.org/obo/PR_000018155,zinc finger protein 787 +16.9548485,PR:000018162,http://purl.obolibrary.org/obo/PR_000018162,zinc finger protein 793 +16.9548485,PR:000018174,http://purl.obolibrary.org/obo/PR_000018174,zinc finger protein 816 +16.9548485,PR:000018180,http://purl.obolibrary.org/obo/PR_000018180,zinc finger protein 829 +16.9548485,PR:000018186,http://purl.obolibrary.org/obo/PR_000018186,zinc finger protein 836 +16.9548485,PR:000018193,http://purl.obolibrary.org/obo/PR_000018193,zinc finger protein 845 +16.9548485,PR:000018199,http://purl.obolibrary.org/obo/PR_000018199,zinc finger protein 92 +16.9548485,PR:000018202,http://purl.obolibrary.org/obo/PR_000018202,zinc finger protein 99 +16.9548485,PR:000018225,http://purl.obolibrary.org/obo/PR_000018225,zinc finger and SCAN domain-containing protein 2 +16.9548485,PR:000018226,http://purl.obolibrary.org/obo/PR_000018226,zinc finger and SCAN domain-containing protein 20 +16.9548485,PR:000018228,http://purl.obolibrary.org/obo/PR_000018228,zinc finger and SCAN domain-containing protein 22 +16.9548485,PR:000018233,http://purl.obolibrary.org/obo/PR_000018233,zinc finger and SCAN domain-containing protein 5B +16.9548485,PR:000018236,http://purl.obolibrary.org/obo/PR_000018236,protein zwilch +16.9548485,PR:000018241,http://purl.obolibrary.org/obo/PR_000018241,protein zyg-11 homolog B +16.9548485,PR:000018248,http://purl.obolibrary.org/obo/PR_000018248,none +16.9548485,PR:000018301,http://purl.obolibrary.org/obo/PR_000018301,none +16.9548485,PR:000018441,http://purl.obolibrary.org/obo/PR_000018441,none +16.9548485,PR:000018455,http://purl.obolibrary.org/obo/PR_000018455,none +16.9548485,PR:000018459,http://purl.obolibrary.org/obo/PR_000018459,none +16.9548485,PR:000018476,http://purl.obolibrary.org/obo/PR_000018476,none +16.9548485,PR:000018661,http://purl.obolibrary.org/obo/PR_000018661,none +16.9548485,PR:000019689,http://purl.obolibrary.org/obo/PR_000019689,none +16.9548485,PR:000020890,http://purl.obolibrary.org/obo/PR_000020890,none +16.9548485,PR:000021168,http://purl.obolibrary.org/obo/PR_000021168,none +16.9548485,PR:000021414,http://purl.obolibrary.org/obo/PR_000021414,none +16.9548485,PR:000021466,http://purl.obolibrary.org/obo/PR_000021466,none +16.9548485,PR:000021542,http://purl.obolibrary.org/obo/PR_000021542,none +16.9548485,PR:000021670,http://purl.obolibrary.org/obo/PR_000021670,none +16.9548485,PR:000021940,http://purl.obolibrary.org/obo/PR_000021940,"lymphocyte antigen 96 isoform 1, signal peptide removed form" +16.9548485,PR:000022022,http://purl.obolibrary.org/obo/PR_000022022,none +16.9548485,PR:000022023,http://purl.obolibrary.org/obo/PR_000022023,none +16.9548485,PR:000022079,http://purl.obolibrary.org/obo/PR_000022079,none +16.9548485,PR:000022084,http://purl.obolibrary.org/obo/PR_000022084,none +16.9548485,PR:000022087,http://purl.obolibrary.org/obo/PR_000022087,none +16.9548485,PR:000022090,http://purl.obolibrary.org/obo/PR_000022090,none +16.9548485,PR:000022097,http://purl.obolibrary.org/obo/PR_000022097,none +16.9548485,PR:000022137,http://purl.obolibrary.org/obo/PR_000022137,none +16.9548485,PR:000022149,http://purl.obolibrary.org/obo/PR_000022149,none +16.9548485,PR:000022162,http://purl.obolibrary.org/obo/PR_000022162,none +16.9548485,PR:000022167,http://purl.obolibrary.org/obo/PR_000022167,none +16.9548485,PR:000022179,http://purl.obolibrary.org/obo/PR_000022179,none +16.9548485,PR:000022183,http://purl.obolibrary.org/obo/PR_000022183,none +16.9548485,PR:000022218,http://purl.obolibrary.org/obo/PR_000022218,none +16.9548485,PR:000022221,http://purl.obolibrary.org/obo/PR_000022221,none +16.9548485,PR:000022244,http://purl.obolibrary.org/obo/PR_000022244,none +16.9548485,PR:000022251,http://purl.obolibrary.org/obo/PR_000022251,none +16.9548485,PR:000022267,http://purl.obolibrary.org/obo/PR_000022267,none +16.9548485,PR:000022271,http://purl.obolibrary.org/obo/PR_000022271,none +16.9548485,PR:000022286,http://purl.obolibrary.org/obo/PR_000022286,none +16.9548485,PR:000022288,http://purl.obolibrary.org/obo/PR_000022288,none +16.9548485,PR:000022306,http://purl.obolibrary.org/obo/PR_000022306,none +16.9548485,PR:000022356,http://purl.obolibrary.org/obo/PR_000022356,none +16.9548485,PR:000022370,http://purl.obolibrary.org/obo/PR_000022370,none +16.9548485,PR:000022387,http://purl.obolibrary.org/obo/PR_000022387,none +16.9548485,PR:000022399,http://purl.obolibrary.org/obo/PR_000022399,none +16.9548485,PR:000022405,http://purl.obolibrary.org/obo/PR_000022405,none +16.9548485,PR:000022409,http://purl.obolibrary.org/obo/PR_000022409,none +16.9548485,PR:000022415,http://purl.obolibrary.org/obo/PR_000022415,transcriptional regulatory protein DcuR +16.9548485,PR:000022416,http://purl.obolibrary.org/obo/PR_000022416,sensor protein dcuS +16.9548485,PR:000022440,http://purl.obolibrary.org/obo/PR_000022440,none +16.9548485,PR:000022449,http://purl.obolibrary.org/obo/PR_000022449,none +16.9548485,PR:000022456,http://purl.obolibrary.org/obo/PR_000022456,none +16.9548485,PR:000022457,http://purl.obolibrary.org/obo/PR_000022457,none +16.9548485,PR:000022474,http://purl.obolibrary.org/obo/PR_000022474,none +16.9548485,PR:000022484,http://purl.obolibrary.org/obo/PR_000022484,none +16.9548485,PR:000022490,http://purl.obolibrary.org/obo/PR_000022490,none +16.9548485,PR:000022501,http://purl.obolibrary.org/obo/PR_000022501,none +16.9548485,PR:000022537,http://purl.obolibrary.org/obo/PR_000022537,none +16.9548485,PR:000022538,http://purl.obolibrary.org/obo/PR_000022538,none +16.9548485,PR:000022543,http://purl.obolibrary.org/obo/PR_000022543,none +16.9548485,PR:000022547,http://purl.obolibrary.org/obo/PR_000022547,none +16.9548485,PR:000022552,http://purl.obolibrary.org/obo/PR_000022552,DNA-binding transcriptional activator EvgA +16.9548485,PR:000022558,http://purl.obolibrary.org/obo/PR_000022558,none +16.9548485,PR:000022604,http://purl.obolibrary.org/obo/PR_000022604,none +16.9548485,PR:000022611,http://purl.obolibrary.org/obo/PR_000022611,none +16.9548485,PR:000022613,http://purl.obolibrary.org/obo/PR_000022613,none +16.9548485,PR:000022615,http://purl.obolibrary.org/obo/PR_000022615,none +16.9548485,PR:000022628,http://purl.obolibrary.org/obo/PR_000022628,none +16.9548485,PR:000022629,http://purl.obolibrary.org/obo/PR_000022629,none +16.9548485,PR:000022650,http://purl.obolibrary.org/obo/PR_000022650,none +16.9548485,PR:000022658,http://purl.obolibrary.org/obo/PR_000022658,none +16.9548485,PR:000022661,http://purl.obolibrary.org/obo/PR_000022661,none +16.9548485,PR:000022678,http://purl.obolibrary.org/obo/PR_000022678,none +16.9548485,PR:000022681,http://purl.obolibrary.org/obo/PR_000022681,none +16.9548485,PR:000022698,http://purl.obolibrary.org/obo/PR_000022698,none +16.9548485,PR:000022713,http://purl.obolibrary.org/obo/PR_000022713,none +16.9548485,PR:000022728,http://purl.obolibrary.org/obo/PR_000022728,none +16.9548485,PR:000022751,http://purl.obolibrary.org/obo/PR_000022751,none +16.9548485,PR:000022769,http://purl.obolibrary.org/obo/PR_000022769,none +16.9548485,PR:000022807,http://purl.obolibrary.org/obo/PR_000022807,none +16.9548485,PR:000022809,http://purl.obolibrary.org/obo/PR_000022809,none +16.9548485,PR:000022824,http://purl.obolibrary.org/obo/PR_000022824,none +16.9548485,PR:000022847,http://purl.obolibrary.org/obo/PR_000022847,none +16.9548485,PR:000022854,http://purl.obolibrary.org/obo/PR_000022854,none +16.9548485,PR:000022875,http://purl.obolibrary.org/obo/PR_000022875,none +16.9548485,PR:000022888,http://purl.obolibrary.org/obo/PR_000022888,none +16.9548485,PR:000022900,http://purl.obolibrary.org/obo/PR_000022900,none +16.9548485,PR:000022918,http://purl.obolibrary.org/obo/PR_000022918,none +16.9548485,PR:000022945,http://purl.obolibrary.org/obo/PR_000022945,none +16.9548485,PR:000022959,http://purl.obolibrary.org/obo/PR_000022959,none +16.9548485,PR:000022962,http://purl.obolibrary.org/obo/PR_000022962,none +16.9548485,PR:000022996,http://purl.obolibrary.org/obo/PR_000022996,none +16.9548485,PR:000023001,http://purl.obolibrary.org/obo/PR_000023001,none +16.9548485,PR:000023007,http://purl.obolibrary.org/obo/PR_000023007,none +16.9548485,PR:000023008,http://purl.obolibrary.org/obo/PR_000023008,none +16.9548485,PR:000023015,http://purl.obolibrary.org/obo/PR_000023015,none +16.9548485,PR:000023019,http://purl.obolibrary.org/obo/PR_000023019,none +16.9548485,PR:000023023,http://purl.obolibrary.org/obo/PR_000023023,none +16.9548485,PR:000023028,http://purl.obolibrary.org/obo/PR_000023028,none +16.9548485,PR:000023059,http://purl.obolibrary.org/obo/PR_000023059,none +16.9548485,PR:000023076,http://purl.obolibrary.org/obo/PR_000023076,none +16.9548485,PR:000023086,http://purl.obolibrary.org/obo/PR_000023086,none +16.9548485,PR:000023113,http://purl.obolibrary.org/obo/PR_000023113,none +16.9548485,PR:000023124,http://purl.obolibrary.org/obo/PR_000023124,none +16.9548485,PR:000023135,http://purl.obolibrary.org/obo/PR_000023135,none +16.9548485,PR:000023141,http://purl.obolibrary.org/obo/PR_000023141,none +16.9548485,PR:000023179,http://purl.obolibrary.org/obo/PR_000023179,none +16.9548485,PR:000023181,http://purl.obolibrary.org/obo/PR_000023181,none +16.9548485,PR:000023185,http://purl.obolibrary.org/obo/PR_000023185,none +16.9548485,PR:000023187,http://purl.obolibrary.org/obo/PR_000023187,none +16.9548485,PR:000023189,http://purl.obolibrary.org/obo/PR_000023189,none +16.9548485,PR:000023192,http://purl.obolibrary.org/obo/PR_000023192,none +16.9548485,PR:000023196,http://purl.obolibrary.org/obo/PR_000023196,none +16.9548485,PR:000023230,http://purl.obolibrary.org/obo/PR_000023230,none +16.9548485,PR:000023249,http://purl.obolibrary.org/obo/PR_000023249,none +16.9548485,PR:000023276,http://purl.obolibrary.org/obo/PR_000023276,none +16.9548485,PR:000023278,http://purl.obolibrary.org/obo/PR_000023278,none +16.9548485,PR:000023300,http://purl.obolibrary.org/obo/PR_000023300,none +16.9548485,PR:000023310,http://purl.obolibrary.org/obo/PR_000023310,none +16.9548485,PR:000023320,http://purl.obolibrary.org/obo/PR_000023320,none +16.9548485,PR:000023321,http://purl.obolibrary.org/obo/PR_000023321,none +16.9548485,PR:000023347,http://purl.obolibrary.org/obo/PR_000023347,none +16.9548485,PR:000023349,http://purl.obolibrary.org/obo/PR_000023349,none +16.9548485,PR:000023352,http://purl.obolibrary.org/obo/PR_000023352,none +16.9548485,PR:000023358,http://purl.obolibrary.org/obo/PR_000023358,nitrate/nitrite sensor protein NarQ +16.9548485,PR:000023361,http://purl.obolibrary.org/obo/PR_000023361,none +16.9548485,PR:000023367,http://purl.obolibrary.org/obo/PR_000023367,none +16.9548485,PR:000023378,http://purl.obolibrary.org/obo/PR_000023378,none +16.9548485,PR:000023388,http://purl.obolibrary.org/obo/PR_000023388,none +16.9548485,PR:000023416,http://purl.obolibrary.org/obo/PR_000023416,none +16.9548485,PR:000023440,http://purl.obolibrary.org/obo/PR_000023440,none +16.9548485,PR:000023441,http://purl.obolibrary.org/obo/PR_000023441,none +16.9548485,PR:000023502,http://purl.obolibrary.org/obo/PR_000023502,none +16.9548485,PR:000023507,http://purl.obolibrary.org/obo/PR_000023507,none +16.9548485,PR:000023518,http://purl.obolibrary.org/obo/PR_000023518,none +16.9548485,PR:000023531,http://purl.obolibrary.org/obo/PR_000023531,none +16.9548485,PR:000023532,http://purl.obolibrary.org/obo/PR_000023532,none +16.9548485,PR:000023535,http://purl.obolibrary.org/obo/PR_000023535,none +16.9548485,PR:000023536,http://purl.obolibrary.org/obo/PR_000023536,none +16.9548485,PR:000023537,http://purl.obolibrary.org/obo/PR_000023537,none +16.9548485,PR:000023538,http://purl.obolibrary.org/obo/PR_000023538,none +16.9548485,PR:000023547,http://purl.obolibrary.org/obo/PR_000023547,none +16.9548485,PR:000023558,http://purl.obolibrary.org/obo/PR_000023558,none +16.9548485,PR:000023586,http://purl.obolibrary.org/obo/PR_000023586,none +16.9548485,PR:000023605,http://purl.obolibrary.org/obo/PR_000023605,none +16.9548485,PR:000023612,http://purl.obolibrary.org/obo/PR_000023612,none +16.9548485,PR:000023618,http://purl.obolibrary.org/obo/PR_000023618,none +16.9548485,PR:000023645,http://purl.obolibrary.org/obo/PR_000023645,none +16.9548485,PR:000023653,http://purl.obolibrary.org/obo/PR_000023653,none +16.9548485,PR:000023658,http://purl.obolibrary.org/obo/PR_000023658,none +16.9548485,PR:000023667,http://purl.obolibrary.org/obo/PR_000023667,sensor protein QseC +16.9548485,PR:000023695,http://purl.obolibrary.org/obo/PR_000023695,none +16.9548485,PR:000023703,http://purl.obolibrary.org/obo/PR_000023703,none +16.9548485,PR:000023728,http://purl.obolibrary.org/obo/PR_000023728,none +16.9548485,PR:000023746,http://purl.obolibrary.org/obo/PR_000023746,none +16.9548485,PR:000023747,http://purl.obolibrary.org/obo/PR_000023747,none +16.9548485,PR:000023757,http://purl.obolibrary.org/obo/PR_000023757,none +16.9548485,PR:000023758,http://purl.obolibrary.org/obo/PR_000023758,none +16.9548485,PR:000023763,http://purl.obolibrary.org/obo/PR_000023763,none +16.9548485,PR:000023768,http://purl.obolibrary.org/obo/PR_000023768,none +16.9548485,PR:000023770,http://purl.obolibrary.org/obo/PR_000023770,none +16.9548485,PR:000023771,http://purl.obolibrary.org/obo/PR_000023771,none +16.9548485,PR:000023772,http://purl.obolibrary.org/obo/PR_000023772,none +16.9548485,PR:000023773,http://purl.obolibrary.org/obo/PR_000023773,none +16.9548485,PR:000023777,http://purl.obolibrary.org/obo/PR_000023777,none +16.9548485,PR:000023809,http://purl.obolibrary.org/obo/PR_000023809,none +16.9548485,PR:000023813,http://purl.obolibrary.org/obo/PR_000023813,none +16.9548485,PR:000023827,http://purl.obolibrary.org/obo/PR_000023827,none +16.9548485,PR:000023835,http://purl.obolibrary.org/obo/PR_000023835,none +16.9548485,PR:000023840,http://purl.obolibrary.org/obo/PR_000023840,none +16.9548485,PR:000023843,http://purl.obolibrary.org/obo/PR_000023843,none +16.9548485,PR:000023856,http://purl.obolibrary.org/obo/PR_000023856,none +16.9548485,PR:000023948,http://purl.obolibrary.org/obo/PR_000023948,none +16.9548485,PR:000023986,http://purl.obolibrary.org/obo/PR_000023986,none +16.9548485,PR:000024062,http://purl.obolibrary.org/obo/PR_000024062,none +16.9548485,PR:000024064,http://purl.obolibrary.org/obo/PR_000024064,none +16.9548485,PR:000024093,http://purl.obolibrary.org/obo/PR_000024093,none +16.9548485,PR:000024116,http://purl.obolibrary.org/obo/PR_000024116,none +16.9548485,PR:000024127,http://purl.obolibrary.org/obo/PR_000024127,none +16.9548485,PR:000024138,http://purl.obolibrary.org/obo/PR_000024138,none +16.9548485,PR:000024144,http://purl.obolibrary.org/obo/PR_000024144,none +16.9548485,PR:000024164,http://purl.obolibrary.org/obo/PR_000024164,none +16.9548485,PR:000024166,http://purl.obolibrary.org/obo/PR_000024166,none +16.9548485,PR:000024173,http://purl.obolibrary.org/obo/PR_000024173,none +16.9548485,PR:000024178,http://purl.obolibrary.org/obo/PR_000024178,none +16.9548485,PR:000024189,http://purl.obolibrary.org/obo/PR_000024189,none +16.9548485,PR:000024193,http://purl.obolibrary.org/obo/PR_000024193,none +16.9548485,PR:000024206,http://purl.obolibrary.org/obo/PR_000024206,none +16.9548485,PR:000024220,http://purl.obolibrary.org/obo/PR_000024220,none +16.9548485,PR:000024229,http://purl.obolibrary.org/obo/PR_000024229,none +16.9548485,PR:000024233,http://purl.obolibrary.org/obo/PR_000024233,none +16.9548485,PR:000024240,http://purl.obolibrary.org/obo/PR_000024240,none +16.9548485,PR:000024243,http://purl.obolibrary.org/obo/PR_000024243,none +16.9548485,PR:000024246,http://purl.obolibrary.org/obo/PR_000024246,cell division protein ZapB +16.9548485,PR:000024250,http://purl.obolibrary.org/obo/PR_000024250,none +16.9548485,PR:000024253,http://purl.obolibrary.org/obo/PR_000024253,none +16.9548485,PR:000024258,http://purl.obolibrary.org/obo/PR_000024258,none +16.9548485,PR:000024838,http://purl.obolibrary.org/obo/PR_000024838,putative heat shock protein HSP 90-beta 2 +16.9548485,PR:000025005,http://purl.obolibrary.org/obo/PR_000025005,none +16.9548485,PR:000025101,http://purl.obolibrary.org/obo/PR_000025101,sensor-like histidine kinase GlrK +16.9548485,PR:000025109,http://purl.obolibrary.org/obo/PR_000025109,transcriptional regulatory protein GlrR +16.9548485,PR:000025477,http://purl.obolibrary.org/obo/PR_000025477,none +16.9548485,PR:000025495,http://purl.obolibrary.org/obo/PR_000025495,none +16.9548485,PR:000025568,http://purl.obolibrary.org/obo/PR_000025568,amyloid-beta precursor protein sequence variant T714A (human) +16.9548485,PR:000025602,http://purl.obolibrary.org/obo/PR_000025602,amyloid-beta precursor protein sequence variant E693del (human) +16.9548485,PR:000025663,http://purl.obolibrary.org/obo/PR_000025663,none +16.9548485,PR:000025664,http://purl.obolibrary.org/obo/PR_000025664,none +16.9548485,PR:000027110,http://purl.obolibrary.org/obo/PR_000027110,double-stranded RNA-activated factor 1 complex +16.9548485,PR:000027503,http://purl.obolibrary.org/obo/PR_000027503,none +16.9548485,PR:000028459,http://purl.obolibrary.org/obo/PR_000028459,none +16.9548485,PR:000028860,http://purl.obolibrary.org/obo/PR_000028860,none +16.9548485,PR:000029056,http://purl.obolibrary.org/obo/PR_000029056,none +16.9548485,PR:000029091,http://purl.obolibrary.org/obo/PR_000029091,uncharacterized aarF domain-containing protein kinase 5 +16.9548485,PR:000029133,http://purl.obolibrary.org/obo/PR_000029133,putative phosphatidylinositol 4-kinase alpha-like protein P2 +16.9548485,PR:000029134,http://purl.obolibrary.org/obo/PR_000029134,protein pitchfork +16.9548485,PR:000029138,http://purl.obolibrary.org/obo/PR_000029138,uncharacterized serine/threonine-protein kinase SBK3 +16.9548485,PR:000029183,http://purl.obolibrary.org/obo/PR_000029183,none +16.9548485,PR:000029240,http://purl.obolibrary.org/obo/PR_000029240,none +16.9548485,PR:000029271,http://purl.obolibrary.org/obo/PR_000029271,ankyrin repeat domain-containing protein 36B +16.9548485,PR:000029276,http://purl.obolibrary.org/obo/PR_000029276,ankyrin repeat domain-containing protein 39 +16.9548485,PR:000029281,http://purl.obolibrary.org/obo/PR_000029281,armadillo repeat-containing protein 6 +16.9548485,PR:000029282,http://purl.obolibrary.org/obo/PR_000029282,armadillo repeat-containing protein 7 +16.9548485,PR:000029292,http://purl.obolibrary.org/obo/PR_000029292,phospholipid-transporting ATPase IK +16.9548485,PR:000029304,http://purl.obolibrary.org/obo/PR_000029304,BSD domain-containing protein 1 +16.9548485,PR:000029310,http://purl.obolibrary.org/obo/PR_000029310,coiled-coil domain-containing protein 110 +16.9548485,PR:000029313,http://purl.obolibrary.org/obo/PR_000029313,coiled-coil domain-containing protein 124 +16.9548485,PR:000029322,http://purl.obolibrary.org/obo/PR_000029322,"coiled-coil domain-containing protein 90B, mitochondrial" +16.9548485,PR:000029324,http://purl.obolibrary.org/obo/PR_000029324,coiled-coil domain-containing protein 18 +16.9548485,PR:000029330,http://purl.obolibrary.org/obo/PR_000029330,coiled-coil domain-containing protein 43 +16.9548485,PR:000029338,http://purl.obolibrary.org/obo/PR_000029338,G patch domain-containing protein 11 +16.9548485,PR:000029339,http://purl.obolibrary.org/obo/PR_000029339,coiled-coil domain-containing protein 82 +16.9548485,PR:000029341,http://purl.obolibrary.org/obo/PR_000029341,coiled-coil domain-containing protein 87 +16.9548485,PR:000029345,http://purl.obolibrary.org/obo/PR_000029345,coiled-coil domain-containing protein 97 +16.9548485,PR:000029354,http://purl.obolibrary.org/obo/PR_000029354,centrosomal protein of 95 kDa +16.9548485,PR:000029374,http://purl.obolibrary.org/obo/PR_000029374,DDB1- and CUL4-associated factor 12-like protein 1 +16.9548485,PR:000029405,http://purl.obolibrary.org/obo/PR_000029405,DENN domain-containing protein 5B +16.9548485,PR:000029433,http://purl.obolibrary.org/obo/PR_000029433,DPY30 domain-containing protein 2 +16.9548485,PR:000029437,http://purl.obolibrary.org/obo/PR_000029437,EF-hand calcium-binding domain-containing protein 3 +16.9548485,PR:000029438,http://purl.obolibrary.org/obo/PR_000029438,EF-hand calcium-binding domain-containing protein 5 +16.9548485,PR:000029443,http://purl.obolibrary.org/obo/PR_000029443,EH domain-binding protein 1-like protein 1 +16.9548485,PR:000029447,http://purl.obolibrary.org/obo/PR_000029447,ER membrane protein complex subunit 4 +16.9548485,PR:000029451,http://purl.obolibrary.org/obo/PR_000029451,refilin-B +16.9548485,PR:000029455,http://purl.obolibrary.org/obo/PR_000029455,protein FAM117B +16.9548485,PR:000029456,http://purl.obolibrary.org/obo/PR_000029456,protein FAM118B +16.9548485,PR:000029462,http://purl.obolibrary.org/obo/PR_000029462,reticulophagy regulator 3 +16.9548485,PR:000029466,http://purl.obolibrary.org/obo/PR_000029466,protein FAM181B +16.9548485,PR:000029467,http://purl.obolibrary.org/obo/PR_000029467,Golgi apparatus membrane protein TVP23 homolog C +16.9548485,PR:000029469,http://purl.obolibrary.org/obo/PR_000029469,spermatogenesis-associated protein 31D1 +16.9548485,PR:000029470,http://purl.obolibrary.org/obo/PR_000029470,protein FAM91A1 +16.9548485,PR:000029480,http://purl.obolibrary.org/obo/PR_000029480,transmembrane protein 255A +16.9548485,PR:000029481,http://purl.obolibrary.org/obo/PR_000029481,transmembrane protein 255B +16.9548485,PR:000029482,http://purl.obolibrary.org/obo/PR_000029482,protein FAM76B +16.9548485,PR:000029510,http://purl.obolibrary.org/obo/PR_000029510,ceramide-1-phosphate transfer protein +16.9548485,PR:000029529,http://purl.obolibrary.org/obo/PR_000029529,histone H2B type 1-C/E/F/G/I +16.9548485,PR:000029580,http://purl.obolibrary.org/obo/PR_000029580,kelch domain-containing protein 4 +16.9548485,PR:000029597,http://purl.obolibrary.org/obo/PR_000029597,G-protein coupled receptor-associated protein LMBRD2 +16.9548485,PR:000029599,http://purl.obolibrary.org/obo/PR_000029599,leucine-rich repeat-containing protein 40 +16.9548485,PR:000029604,http://purl.obolibrary.org/obo/PR_000029604,leucine-rich repeat-containing protein 57 +16.9548485,PR:000029615,http://purl.obolibrary.org/obo/PR_000029615,LysM and putative peptidoglycan-binding domain-containing protein 1 +16.9548485,PR:000029616,http://purl.obolibrary.org/obo/PR_000029616,LysM and putative peptidoglycan-binding domain-containing protein 2 +16.9548485,PR:000029618,http://purl.obolibrary.org/obo/PR_000029618,Mpv17-like protein 2 +16.9548485,PR:000029640,http://purl.obolibrary.org/obo/PR_000029640,mitotic-spindle organizing protein 2B +16.9548485,PR:000029659,http://purl.obolibrary.org/obo/PR_000029659,protein NOXP20 +16.9548485,PR:000029678,http://purl.obolibrary.org/obo/PR_000029678,pleckstrin homology domain-containing family J member 1 +16.9548485,PR:000029694,http://purl.obolibrary.org/obo/PR_000029694,PRAME family member 12 +16.9548485,PR:000029719,http://purl.obolibrary.org/obo/PR_000029719,RANBP2-like and GRIP domain-containing protein 5/6 +16.9548485,PR:000029720,http://purl.obolibrary.org/obo/PR_000029720,RANBP2-like and GRIP domain-containing protein 8 +16.9548485,PR:000029732,http://purl.obolibrary.org/obo/PR_000029732,RWD domain-containing protein 4 +16.9548485,PR:000029740,http://purl.obolibrary.org/obo/PR_000029740,putative sodium-coupled neutral amino acid transporter 10 +16.9548485,PR:000029773,http://purl.obolibrary.org/obo/PR_000029773,ankyrin repeat domain-containing protein SOWAHB +16.9548485,PR:000029795,http://purl.obolibrary.org/obo/PR_000029795,transmembrane protein 104 +16.9548485,PR:000029798,http://purl.obolibrary.org/obo/PR_000029798,transmembrane protein 139 +16.9548485,PR:000029801,http://purl.obolibrary.org/obo/PR_000029801,endosomal/lysosomal potassium channel TMEM175 +16.9548485,PR:000029804,http://purl.obolibrary.org/obo/PR_000029804,transmembrane protein 209 +16.9548485,PR:000029805,http://purl.obolibrary.org/obo/PR_000029805,transmembrane protein 214 +16.9548485,PR:000029836,http://purl.obolibrary.org/obo/PR_000029836,tetratricopeptide repeat protein 38 +16.9548485,PR:000029842,http://purl.obolibrary.org/obo/PR_000029842,ubiquitin domain-containing protein UBFD1 +16.9548485,PR:000029851,http://purl.obolibrary.org/obo/PR_000029851,V-set and immunoglobulin domain-containing protein 10 +16.9548485,PR:000029857,http://purl.obolibrary.org/obo/PR_000029857,WD repeat-containing protein 20 +16.9548485,PR:000029871,http://purl.obolibrary.org/obo/PR_000029871,WD repeat-containing protein 88 +16.9548485,PR:000029886,http://purl.obolibrary.org/obo/PR_000029886,zinc finger CCCH domain-containing protein 18 +16.9548485,PR:000029892,http://purl.obolibrary.org/obo/PR_000029892,abscission/NoCut checkpoint regulator +16.9548485,PR:000030202,http://purl.obolibrary.org/obo/PR_000030202,tetratricopeptide repeat protein 27 +16.9548485,PR:000030205,http://purl.obolibrary.org/obo/PR_000030205,fibronectin type III domain-containing protein 7 +16.9548485,PR:000030218,http://purl.obolibrary.org/obo/PR_000030218,EF-hand calcium-binding domain-containing protein 1 +16.9548485,PR:000030225,http://purl.obolibrary.org/obo/PR_000030225,putative G antigen family E member 3 +16.9548485,PR:000030231,http://purl.obolibrary.org/obo/PR_000030231,testis-expressed protein 29 +16.9548485,PR:000030232,http://purl.obolibrary.org/obo/PR_000030232,coiled-coil domain-containing protein 77 +16.9548485,PR:000030235,http://purl.obolibrary.org/obo/PR_000030235,"transcription termination factor 4, mitochondrial" +16.9548485,PR:000030240,http://purl.obolibrary.org/obo/PR_000030240,putative GTP-binding protein 6 +16.9548485,PR:000030252,http://purl.obolibrary.org/obo/PR_000030252,fibronectin type III domain-containing protein 9 +16.9548485,PR:000030265,http://purl.obolibrary.org/obo/PR_000030265,mitoguardin 2 +16.9548485,PR:000030269,http://purl.obolibrary.org/obo/PR_000030269,RING finger and transmembrane domain-containing protein 2 +16.9548485,PR:000030272,http://purl.obolibrary.org/obo/PR_000030272,transmembrane protein 238 +16.9548485,PR:000030276,http://purl.obolibrary.org/obo/PR_000030276,coiled-coil domain-containing protein 117 +16.9548485,PR:000030285,http://purl.obolibrary.org/obo/PR_000030285,ALK and LTK ligand 1 +16.9548485,PR:000030289,http://purl.obolibrary.org/obo/PR_000030289,WD repeat-containing protein 38 +16.9548485,PR:000030291,http://purl.obolibrary.org/obo/PR_000030291,transmembrane protein 174 +16.9548485,PR:000030297,http://purl.obolibrary.org/obo/PR_000030297,sterile alpha motif domain-containing protein 13 +16.9548485,PR:000030298,http://purl.obolibrary.org/obo/PR_000030298,WD repeat-containing protein 86 +16.9548485,PR:000030300,http://purl.obolibrary.org/obo/PR_000030300,golgin subfamily A member 6-like protein 2 +16.9548485,PR:000030311,http://purl.obolibrary.org/obo/PR_000030311,leucine-rich repeat and IQ domain-containing protein 4 +16.9548485,PR:000030314,http://purl.obolibrary.org/obo/PR_000030314,protein FAM98A +16.9548485,PR:000030322,http://purl.obolibrary.org/obo/PR_000030322,probable N-acetyltransferase 16 +16.9548485,PR:000030333,http://purl.obolibrary.org/obo/PR_000030333,WD repeat-containing and planar cell polarity effector protein fritz homolog +16.9548485,PR:000030343,http://purl.obolibrary.org/obo/PR_000030343,zinc finger CW-type PWWP domain protein 2 +16.9548485,PR:000030358,http://purl.obolibrary.org/obo/PR_000030358,transmembrane protein 125 +16.9548485,PR:000030370,http://purl.obolibrary.org/obo/PR_000030370,actin-like protein 10 +16.9548485,PR:000030383,http://purl.obolibrary.org/obo/PR_000030383,PPP2R1A-PPP2R2A-interacting phosphatase regulator 1 +16.9548485,PR:000030395,http://purl.obolibrary.org/obo/PR_000030395,leucine-rich repeat-containing protein 75B +16.9548485,PR:000030406,http://purl.obolibrary.org/obo/PR_000030406,zinc finger SWIM domain-containing protein 4 +16.9548485,PR:000030421,http://purl.obolibrary.org/obo/PR_000030421,sushi domain-containing protein 5 +16.9548485,PR:000030441,http://purl.obolibrary.org/obo/PR_000030441,nuclear pore complex-interacting protein family member B15 +16.9548485,PR:000030479,http://purl.obolibrary.org/obo/PR_000030479,"transcription elongation factor, mitochondrial" +16.9548485,PR:000030484,http://purl.obolibrary.org/obo/PR_000030484,transmembrane protein 187 +16.9548485,PR:000030509,http://purl.obolibrary.org/obo/PR_000030509,coiled-coil domain-containing protein 85A +16.9548485,PR:000030537,http://purl.obolibrary.org/obo/PR_000030537,uridine diphosphate glucose pyrophosphatase NUDT22 +16.9548485,PR:000030557,http://purl.obolibrary.org/obo/PR_000030557,transmembrane protein 178B +16.9548485,PR:000030561,http://purl.obolibrary.org/obo/PR_000030561,armadillo repeat-containing X-linked protein 4 +16.9548485,PR:000030566,http://purl.obolibrary.org/obo/PR_000030566,protein FAM183A +16.9548485,PR:000030570,http://purl.obolibrary.org/obo/PR_000030570,zinc finger CCCH domain-containing protein 13 +16.9548485,PR:000030574,http://purl.obolibrary.org/obo/PR_000030574,protein FAM189A2 +16.9548485,PR:000030593,http://purl.obolibrary.org/obo/PR_000030593,protein FAM162B +16.9548485,PR:000030595,http://purl.obolibrary.org/obo/PR_000030595,NTPase KAP family P-loop domain-containing protein 1 +16.9548485,PR:000030596,http://purl.obolibrary.org/obo/PR_000030596,protein TXNRD3NB +16.9548485,PR:000030599,http://purl.obolibrary.org/obo/PR_000030599,kelch domain-containing protein 7A +16.9548485,PR:000030609,http://purl.obolibrary.org/obo/PR_000030609,transmembrane protein 199 +16.9548485,PR:000030617,http://purl.obolibrary.org/obo/PR_000030617,none +16.9548485,PR:000030619,http://purl.obolibrary.org/obo/PR_000030619,olfactory receptor 52Z1 +16.9548485,PR:000030624,http://purl.obolibrary.org/obo/PR_000030624,occludin/ELL domain-containing protein 1 +16.9548485,PR:000030626,http://purl.obolibrary.org/obo/PR_000030626,protein FAM187B +16.9548485,PR:000030634,http://purl.obolibrary.org/obo/PR_000030634,probable helicase with zinc finger domain +16.9548485,PR:000030642,http://purl.obolibrary.org/obo/PR_000030642,protein mab-21-like 3 +16.9548485,PR:000030655,http://purl.obolibrary.org/obo/PR_000030655,coiled-coil domain-containing protein 157 +16.9548485,PR:000030657,http://purl.obolibrary.org/obo/PR_000030657,dynein regulatory complex protein 11 +16.9548485,PR:000030664,http://purl.obolibrary.org/obo/PR_000030664,protein FAM183BP +16.9548485,PR:000030688,http://purl.obolibrary.org/obo/PR_000030688,protein FAM48B1 +16.9548485,PR:000030696,http://purl.obolibrary.org/obo/PR_000030696,WSC domain-containing protein 2 +16.9548485,PR:000030710,http://purl.obolibrary.org/obo/PR_000030710,PRAME family member 4 +16.9548485,PR:000030714,http://purl.obolibrary.org/obo/PR_000030714,humanin-like 4 +16.9548485,PR:000030716,http://purl.obolibrary.org/obo/PR_000030716,store-operated calcium entry regulator STIMATE +16.9548485,PR:000030738,http://purl.obolibrary.org/obo/PR_000030738,putative ankyrin repeat domain-containing protein 20A2 +16.9548485,PR:000030748,http://purl.obolibrary.org/obo/PR_000030748,tripartite motif-containing protein 42 +16.9548485,PR:000030756,http://purl.obolibrary.org/obo/PR_000030756,transmembrane protein 82 +16.9548485,PR:000030762,http://purl.obolibrary.org/obo/PR_000030762,MAP7 domain-containing protein 2 +16.9548485,PR:000030764,http://purl.obolibrary.org/obo/PR_000030764,cysteine-rich and transmembrane domain-containing protein 1 +16.9548485,PR:000030766,http://purl.obolibrary.org/obo/PR_000030766,coiled-coil domain-containing protein 154 +16.9548485,PR:000030774,http://purl.obolibrary.org/obo/PR_000030774,maestro heat-like repeat-containing protein family member 7 +16.9548485,PR:000030782,http://purl.obolibrary.org/obo/PR_000030782,primary cilium assembly protein FAM149B1 +16.9548485,PR:000030792,http://purl.obolibrary.org/obo/PR_000030792,ribosomal RNA processing protein 36 homolog +16.9548485,PR:000030796,http://purl.obolibrary.org/obo/PR_000030796,G antigen 10 +16.9548485,PR:000030800,http://purl.obolibrary.org/obo/PR_000030800,protein FRG2-like-2 +16.9548485,PR:000030804,http://purl.obolibrary.org/obo/PR_000030804,protein FAM136A +16.9548485,PR:000030805,http://purl.obolibrary.org/obo/PR_000030805,DENN domain-containing protein 1C +16.9548485,PR:000030807,http://purl.obolibrary.org/obo/PR_000030807,stress-responsive DNAJB4-interacting membrane protein 1 +16.9548485,PR:000030808,http://purl.obolibrary.org/obo/PR_000030808,none +16.9548485,PR:000030851,http://purl.obolibrary.org/obo/PR_000030851,polypeptide N-acetylgalactosaminyltransferase 17 +16.9548485,PR:000030856,http://purl.obolibrary.org/obo/PR_000030856,methenyltetrahydrofolate synthase domain-containing protein +16.9548485,PR:000030859,http://purl.obolibrary.org/obo/PR_000030859,plasminogen-like protein A +16.9548485,PR:000030864,http://purl.obolibrary.org/obo/PR_000030864,protein FAM71B +16.9548485,PR:000030871,http://purl.obolibrary.org/obo/PR_000030871,peptidase M20 domain-containing protein 2 +16.9548485,PR:000030878,http://purl.obolibrary.org/obo/PR_000030878,electron transfer flavoprotein regulatory factor 1 +16.9548485,PR:000030886,http://purl.obolibrary.org/obo/PR_000030886,BTB/POZ domain-containing protein KCTD14 +16.9548485,PR:000030888,http://purl.obolibrary.org/obo/PR_000030888,coiled-coil domain-containing protein 28A +16.9548485,PR:000030893,http://purl.obolibrary.org/obo/PR_000030893,tetratricopeptide repeat protein 22 +16.9548485,PR:000030911,http://purl.obolibrary.org/obo/PR_000030911,protein KHNYN +16.9548485,PR:000030917,http://purl.obolibrary.org/obo/PR_000030917,protein FAM71D +16.9548485,PR:000030934,http://purl.obolibrary.org/obo/PR_000030934,ankyrin repeat domain-containing protein 42 +16.9548485,PR:000030962,http://purl.obolibrary.org/obo/PR_000030962,coiled-coil domain-containing protein 116 +16.9548485,PR:000030966,http://purl.obolibrary.org/obo/PR_000030966,triple QxxK/R motif-containing protein +16.9548485,PR:000030967,http://purl.obolibrary.org/obo/PR_000030967,pleckstrin homology domain-containing family S member 1 +16.9548485,PR:000030977,http://purl.obolibrary.org/obo/PR_000030977,insulin growth factor-like family member 4 +16.9548485,PR:000030981,http://purl.obolibrary.org/obo/PR_000030981,proton-activated chloride channel +16.9548485,PR:000030983,http://purl.obolibrary.org/obo/PR_000030983,sperm-tail PG-rich repeat-containing protein 1 +16.9548485,PR:000030990,http://purl.obolibrary.org/obo/PR_000030990,humanin-like 6 +16.9548485,PR:000030996,http://purl.obolibrary.org/obo/PR_000030996,none +16.9548485,PR:000031018,http://purl.obolibrary.org/obo/PR_000031018,spermatogenesis-associated protein 31E1 +16.9548485,PR:000031024,http://purl.obolibrary.org/obo/PR_000031024,putative serine protease 45 +16.9548485,PR:000031025,http://purl.obolibrary.org/obo/PR_000031025,aspartate beta-hydroxylase domain-containing protein 2 +16.9548485,PR:000031041,http://purl.obolibrary.org/obo/PR_000031041,protein FAM81B +16.9548485,PR:000031048,http://purl.obolibrary.org/obo/PR_000031048,transmembrane protein 14EP +16.9548485,PR:000031053,http://purl.obolibrary.org/obo/PR_000031053,protein FAM135A +16.9548485,PR:000031055,http://purl.obolibrary.org/obo/PR_000031055,putative deoxyribonuclease TATDN2 +16.9548485,PR:000031056,http://purl.obolibrary.org/obo/PR_000031056,protein FAM83C +16.9548485,PR:000031058,http://purl.obolibrary.org/obo/PR_000031058,immunoglobulin superfamily member 23 +16.9548485,PR:000031074,http://purl.obolibrary.org/obo/PR_000031074,Rhox homeobox family member 2B +16.9548485,PR:000031078,http://purl.obolibrary.org/obo/PR_000031078,adenosine deaminase domain-containing protein 2 +16.9548485,PR:000031080,http://purl.obolibrary.org/obo/PR_000031080,nuclear pore complex-interacting protein family member B3 +16.9548485,PR:000031083,http://purl.obolibrary.org/obo/PR_000031083,serine-rich and transmembrane domain-containing protein 1 +16.9548485,PR:000031099,http://purl.obolibrary.org/obo/PR_000031099,leucine-rich repeat-containing protein 9 +16.9548485,PR:000031101,http://purl.obolibrary.org/obo/PR_000031101,putative glycosyltransferase ALG1-like +16.9548485,PR:000031115,http://purl.obolibrary.org/obo/PR_000031115,protein phosphatase 1 regulatory subunit 35 +16.9548485,PR:000031120,http://purl.obolibrary.org/obo/PR_000031120,zinc finger protein 880 +16.9548485,PR:000031133,http://purl.obolibrary.org/obo/PR_000031133,CYFIP-related Rac1 interactor A +16.9548485,PR:000031151,http://purl.obolibrary.org/obo/PR_000031151,transmembrane protein 218 +16.9548485,PR:000031153,http://purl.obolibrary.org/obo/PR_000031153,IQ domain-containing protein F1 +16.9548485,PR:000031163,http://purl.obolibrary.org/obo/PR_000031163,transmembrane protein 208 +16.9548485,PR:000031170,http://purl.obolibrary.org/obo/PR_000031170,neuroblastoma breakpoint family member 4 +16.9548485,PR:000031189,http://purl.obolibrary.org/obo/PR_000031189,protein MB21D2 +16.9548485,PR:000031195,http://purl.obolibrary.org/obo/PR_000031195,protein-lysine methyltransferase METTL21C +16.9548485,PR:000031201,http://purl.obolibrary.org/obo/PR_000031201,dynein regulatory complex subunit 3 +16.9548485,PR:000031206,http://purl.obolibrary.org/obo/PR_000031206,ankyrin repeat domain-containing protein 60 +16.9548485,PR:000031207,http://purl.obolibrary.org/obo/PR_000031207,transmembrane protein 107 +16.9548485,PR:000031210,http://purl.obolibrary.org/obo/PR_000031210,zinc finger CCCH domain-containing protein 4 +16.9548485,PR:000031214,http://purl.obolibrary.org/obo/PR_000031214,protein FAM78A +16.9548485,PR:000031221,http://purl.obolibrary.org/obo/PR_000031221,THUMP domain-containing protein 2 +16.9548485,PR:000031225,http://purl.obolibrary.org/obo/PR_000031225,NXPE family member 2 +16.9548485,PR:000031238,http://purl.obolibrary.org/obo/PR_000031238,transmembrane protein 44 +16.9548485,PR:000031254,http://purl.obolibrary.org/obo/PR_000031254,transmembrane protein 170A +16.9548485,PR:000031264,http://purl.obolibrary.org/obo/PR_000031264,sterile alpha motif domain-containing protein 10 +16.9548485,PR:000031270,http://purl.obolibrary.org/obo/PR_000031270,pleckstrin homology-like domain family B member 3 +16.9548485,PR:000031274,http://purl.obolibrary.org/obo/PR_000031274,coiled-coil domain-containing protein 141 +16.9548485,PR:000031278,http://purl.obolibrary.org/obo/PR_000031278,WD repeat-containing protein 53 +16.9548485,PR:000031293,http://purl.obolibrary.org/obo/PR_000031293,dynein light chain Tctex-type 4 +16.9548485,PR:000031295,http://purl.obolibrary.org/obo/PR_000031295,cation channel sperm-associated protein subunit delta +16.9548485,PR:000031298,http://purl.obolibrary.org/obo/PR_000031298,Ral GTPase-activating protein subunit beta +16.9548485,PR:000031303,http://purl.obolibrary.org/obo/PR_000031303,leucine-rich repeat-containing protein 37A2 +16.9548485,PR:000031313,http://purl.obolibrary.org/obo/PR_000031313,retrotransposon Gag-like protein 8A +16.9548485,PR:000031314,http://purl.obolibrary.org/obo/PR_000031314,coiled-coil domain-containing protein 126 +16.9548485,PR:000031321,http://purl.obolibrary.org/obo/PR_000031321,"putative ribosome-binding factor A, mitochondrial" +16.9548485,PR:000031324,http://purl.obolibrary.org/obo/PR_000031324,ankyrin repeat domain-containing protein 36C +16.9548485,PR:000031328,http://purl.obolibrary.org/obo/PR_000031328,transmembrane protein 183B +16.9548485,PR:000031331,http://purl.obolibrary.org/obo/PR_000031331,zinc finger protein 729 +16.9548485,PR:000031332,http://purl.obolibrary.org/obo/PR_000031332,ankyrin repeat and death domain-containing protein 1A +16.9548485,PR:000031334,http://purl.obolibrary.org/obo/PR_000031334,transmembrane protein 231 +16.9548485,PR:000031337,http://purl.obolibrary.org/obo/PR_000031337,endogenous retrovirus group V member 1 Env polyprotein +16.9548485,PR:000031338,http://purl.obolibrary.org/obo/PR_000031338,Myb/SANT-like DNA-binding domain-containing protein 4 +16.9548485,PR:000031339,http://purl.obolibrary.org/obo/PR_000031339,keratin-associated protein 9-1 +16.9548485,PR:000031356,http://purl.obolibrary.org/obo/PR_000031356,PDZ domain-containing protein 9 +16.9548485,PR:000031372,http://purl.obolibrary.org/obo/PR_000031372,Ly6/PLAUR domain-containing protein 4 +16.9548485,PR:000031373,http://purl.obolibrary.org/obo/PR_000031373,transmembrane protein 150C +16.9548485,PR:000031375,http://purl.obolibrary.org/obo/PR_000031375,tetratricopeptide repeat protein 14 +16.9548485,PR:000031382,http://purl.obolibrary.org/obo/PR_000031382,transmembrane protein 39B +16.9548485,PR:000031385,http://purl.obolibrary.org/obo/PR_000031385,spermatogenesis-associated protein 25 +16.9548485,PR:000031392,http://purl.obolibrary.org/obo/PR_000031392,probable peptidyl-tRNA hydrolase PTRH1 +16.9548485,PR:000031396,http://purl.obolibrary.org/obo/PR_000031396,ankyrin repeat domain-containing protein 13A +16.9548485,PR:000031403,http://purl.obolibrary.org/obo/PR_000031403,leucine rich adaptor protein 1-like +16.9548485,PR:000031414,http://purl.obolibrary.org/obo/PR_000031414,spermatogenesis-associated protein 31A3 +16.9548485,PR:000031420,http://purl.obolibrary.org/obo/PR_000031420,rRNA maturation factor homolog +16.9548485,PR:000031426,http://purl.obolibrary.org/obo/PR_000031426,dynein regulatory complex protein 9 +16.9548485,PR:000031443,http://purl.obolibrary.org/obo/PR_000031443,ankyrin repeat domain-containing protein 30B +16.9548485,PR:000031454,http://purl.obolibrary.org/obo/PR_000031454,von Willebrand factor C domain-containing protein 2-like +16.9548485,PR:000031456,http://purl.obolibrary.org/obo/PR_000031456,ankyrin repeat domain-containing protein 33B +16.9548485,PR:000031461,http://purl.obolibrary.org/obo/PR_000031461,transmembrane protein 245 +16.9548485,PR:000031471,http://purl.obolibrary.org/obo/PR_000031471,mitoguardin 1 +16.9548485,PR:000031481,http://purl.obolibrary.org/obo/PR_000031481,THAP domain-containing protein 6 +16.9548485,PR:000031482,http://purl.obolibrary.org/obo/PR_000031482,POTE ankyrin domain family member G +16.9548485,PR:000031494,http://purl.obolibrary.org/obo/PR_000031494,DnaJ homolog subfamily C member 25 +16.9548485,PR:000031512,http://purl.obolibrary.org/obo/PR_000031512,tetratricopeptide repeat protein 39B +16.9548485,PR:000031519,http://purl.obolibrary.org/obo/PR_000031519,reticulophagy regulator 2 +16.9548485,PR:000031526,http://purl.obolibrary.org/obo/PR_000031526,protein FAM43B +16.9548485,PR:000031539,http://purl.obolibrary.org/obo/PR_000031539,coiled-coil domain-containing protein 74B +16.9548485,PR:000031547,http://purl.obolibrary.org/obo/PR_000031547,protein FAM118A +16.9548485,PR:000031562,http://purl.obolibrary.org/obo/PR_000031562,coiled-coil domain-containing protein 70 +16.9548485,PR:000031573,http://purl.obolibrary.org/obo/PR_000031573,protein FAM83E +16.9548485,PR:000031574,http://purl.obolibrary.org/obo/PR_000031574,aldo-keto reductase family 1 member B15 +16.9548485,PR:000031578,http://purl.obolibrary.org/obo/PR_000031578,Myb/SANT-like DNA-binding domain-containing protein 2 +16.9548485,PR:000031587,http://purl.obolibrary.org/obo/PR_000031587,putative sodium-coupled neutral amino acid transporter 11 +16.9548485,PR:000031589,http://purl.obolibrary.org/obo/PR_000031589,putative uncharacterized protein encoded by LINC00518 +16.9548485,PR:000031591,http://purl.obolibrary.org/obo/PR_000031591,clathrin heavy chain linker domain-containing protein 1 +16.9548485,PR:000031592,http://purl.obolibrary.org/obo/PR_000031592,phospholipid scramblase family member 5 +16.9548485,PR:000031593,http://purl.obolibrary.org/obo/PR_000031593,general transcription factor II-I repeat domain-containing protein 2B +16.9548485,PR:000031596,http://purl.obolibrary.org/obo/PR_000031596,SOSS complex subunit C +16.9548485,PR:000031608,http://purl.obolibrary.org/obo/PR_000031608,protein FAM89A +16.9548485,PR:000031609,http://purl.obolibrary.org/obo/PR_000031609,complement C1q and tumor necrosis factor-related protein 9B +16.9548485,PR:000031612,http://purl.obolibrary.org/obo/PR_000031612,Rho family-interacting cell polarization regulator 1 +16.9548485,PR:000031618,http://purl.obolibrary.org/obo/PR_000031618,protein ABHD16B +16.9548485,PR:000031620,http://purl.obolibrary.org/obo/PR_000031620,protein FAM151B +16.9548485,PR:000031627,http://purl.obolibrary.org/obo/PR_000031627,GATOR complex protein WDR59 +16.9548485,PR:000031662,http://purl.obolibrary.org/obo/PR_000031662,UPF0670 protein THEM6 +16.9548485,PR:000031664,http://purl.obolibrary.org/obo/PR_000031664,POTE ankyrin domain family member H +16.9548485,PR:000031673,http://purl.obolibrary.org/obo/PR_000031673,UBA-like domain-containing protein 1 +16.9548485,PR:000031677,http://purl.obolibrary.org/obo/PR_000031677,transmembrane protein 205 +16.9548485,PR:000031679,http://purl.obolibrary.org/obo/PR_000031679,stabilizer of axonemal microtubules 1 +16.9548485,PR:000031681,http://purl.obolibrary.org/obo/PR_000031681,WW domain-containing adapter protein with coiled-coil +16.9548485,PR:000031682,http://purl.obolibrary.org/obo/PR_000031682,glycosyltransferase 8 domain-containing protein 2 +16.9548485,PR:000031684,http://purl.obolibrary.org/obo/PR_000031684,protein FAM193B +16.9548485,PR:000031696,http://purl.obolibrary.org/obo/PR_000031696,neuroblastoma breakpoint family member 11 +16.9548485,PR:000031698,http://purl.obolibrary.org/obo/PR_000031698,protein FAM153B +16.9548485,PR:000031699,http://purl.obolibrary.org/obo/PR_000031699,protein FAM114A2 +16.9548485,PR:000031703,http://purl.obolibrary.org/obo/PR_000031703,pleckstrin homology domain-containing family G member 7 +16.9548485,PR:000031704,http://purl.obolibrary.org/obo/PR_000031704,probable E3 ubiquitin-protein ligase MARCHF10 +16.9548485,PR:000031710,http://purl.obolibrary.org/obo/PR_000031710,HEAT repeat-containing protein 4 +16.9548485,PR:000031736,http://purl.obolibrary.org/obo/PR_000031736,meiosis-specific with OB domain-containing protein +16.9548485,PR:000031738,http://purl.obolibrary.org/obo/PR_000031738,BTB/POZ domain-containing protein KCTD4 +16.9548485,PR:000031743,http://purl.obolibrary.org/obo/PR_000031743,ceramide synthase +16.9548485,PR:000031773,http://purl.obolibrary.org/obo/PR_000031773,ankyrin repeat domain-containing protein 35 +16.9548485,PR:000031779,http://purl.obolibrary.org/obo/PR_000031779,major facilitator superfamily domain-containing protein 6-like +16.9548485,PR:000031785,http://purl.obolibrary.org/obo/PR_000031785,coiled-coil domain-containing protein 13 +16.9548485,PR:000031793,http://purl.obolibrary.org/obo/PR_000031793,HAUS augmin-like complex subunit 4 +16.9548485,PR:000031818,http://purl.obolibrary.org/obo/PR_000031818,costars family protein ABRACL +16.9548485,PR:000031821,http://purl.obolibrary.org/obo/PR_000031821,protein FAM116B +16.9548485,PR:000031827,http://purl.obolibrary.org/obo/PR_000031827,ankyrin repeat domain-containing protein 20A1 +16.9548485,PR:000031842,http://purl.obolibrary.org/obo/PR_000031842,DnaJ homolog subfamily C member 16 +16.9548485,PR:000031844,http://purl.obolibrary.org/obo/PR_000031844,leucine-rich repeat-containing protein 24 +16.9548485,PR:000031855,http://purl.obolibrary.org/obo/PR_000031855,transmembrane protein 170B +16.9548485,PR:000031864,http://purl.obolibrary.org/obo/PR_000031864,NUT family member 2E +16.9548485,PR:000031866,http://purl.obolibrary.org/obo/PR_000031866,proline-rich protein 25 +16.9548485,PR:000031867,http://purl.obolibrary.org/obo/PR_000031867,PIH1 domain-containing protein 2 +16.9548485,PR:000031868,http://purl.obolibrary.org/obo/PR_000031868,BTB/POZ domain-containing protein 17 +16.9548485,PR:000031872,http://purl.obolibrary.org/obo/PR_000031872,stabilizer of axonemal microtubules 2 +16.9548485,PR:000031897,http://purl.obolibrary.org/obo/PR_000031897,izumo sperm-egg fusion protein 2 +16.9548485,PR:000031925,http://purl.obolibrary.org/obo/PR_000031925,interferon-induced protein with tetratricopeptide repeats 1B +16.9548485,PR:000031944,http://purl.obolibrary.org/obo/PR_000031944,protein FAM13C +16.9548485,PR:000031954,http://purl.obolibrary.org/obo/PR_000031954,armadillo repeat-containing protein 12 +16.9548485,PR:000031978,http://purl.obolibrary.org/obo/PR_000031978,COMM domain-containing protein 2 +16.9548485,PR:000031985,http://purl.obolibrary.org/obo/PR_000031985,zinc finger SWIM domain-containing protein 1 +16.9548485,PR:000031989,http://purl.obolibrary.org/obo/PR_000031989,ankyrin repeat domain-containing protein 18B +16.9548485,PR:000031998,http://purl.obolibrary.org/obo/PR_000031998,protein FAM171A2 +16.9548485,PR:000032000,http://purl.obolibrary.org/obo/PR_000032000,protein FAM217B +16.9548485,PR:000032016,http://purl.obolibrary.org/obo/PR_000032016,exocyst complex component 3-like protein 4 +16.9548485,PR:000032035,http://purl.obolibrary.org/obo/PR_000032035,zinc finger protein 184 +16.9548485,PR:000032046,http://purl.obolibrary.org/obo/PR_000032046,transforming growth factor-beta receptor type 3-like protein +16.9548485,PR:000032048,http://purl.obolibrary.org/obo/PR_000032048,arrestin domain-containing protein 2 +16.9548485,PR:000032049,http://purl.obolibrary.org/obo/PR_000032049,humanin-like 5 +16.9548485,PR:000032058,http://purl.obolibrary.org/obo/PR_000032058,cytochrome b561 domain-containing protein 2 +16.9548485,PR:000032059,http://purl.obolibrary.org/obo/PR_000032059,protein FAM43A +16.9548485,PR:000032066,http://purl.obolibrary.org/obo/PR_000032066,putative STAG3-like protein 1 +16.9548485,PR:000032079,http://purl.obolibrary.org/obo/PR_000032079,sperm-tail PG-rich repeat-containing protein 2 +16.9548485,PR:000032096,http://purl.obolibrary.org/obo/PR_000032096,transmembrane 4 L6 family member 18 +16.9548485,PR:000032100,http://purl.obolibrary.org/obo/PR_000032100,zinc finger C4H2 domain-containing protein +16.9548485,PR:000032112,http://purl.obolibrary.org/obo/PR_000032112,kelch repeat and BTB domain-containing protein 3 +16.9548485,PR:000032127,http://purl.obolibrary.org/obo/PR_000032127,transmembrane protein 234 +16.9548485,PR:000032132,http://purl.obolibrary.org/obo/PR_000032132,neuroblastoma breakpoint family member 6 +16.9548485,PR:000032149,http://purl.obolibrary.org/obo/PR_000032149,V-set and transmembrane domain-containing protein 5 +16.9548485,PR:000032155,http://purl.obolibrary.org/obo/PR_000032155,putative tripartite motif-containing protein 75 +16.9548485,PR:000032163,http://purl.obolibrary.org/obo/PR_000032163,R3H domain-containing protein 1 +16.9548485,PR:000032184,http://purl.obolibrary.org/obo/PR_000032184,leucine-rich repeat-containing protein 75A +16.9548485,PR:000032190,http://purl.obolibrary.org/obo/PR_000032190,transmembrane protein 62 +16.9548485,PR:000032200,http://purl.obolibrary.org/obo/PR_000032200,zinc finger C2HC domain-containing protein 1B +16.9548485,PR:000032214,http://purl.obolibrary.org/obo/PR_000032214,coiled-coil domain-containing protein 172 +16.9548485,PR:000032220,http://purl.obolibrary.org/obo/PR_000032220,DC-STAMP domain-containing protein 2 +16.9548485,PR:000032232,http://purl.obolibrary.org/obo/PR_000032232,proline-rich protein 22 +16.9548485,PR:000032248,http://purl.obolibrary.org/obo/PR_000032248,WD repeat-containing protein 47 +16.9548485,PR:000032265,http://purl.obolibrary.org/obo/PR_000032265,leucine-rich repeat-containing protein 30 +16.9548485,PR:000032278,http://purl.obolibrary.org/obo/PR_000032278,putative protein FAM157A +16.9548485,PR:000032297,http://purl.obolibrary.org/obo/PR_000032297,putative cleavage and polyadenylation specificity factor subunit 4-like protein +16.9548485,PR:000032300,http://purl.obolibrary.org/obo/PR_000032300,receptor-transporting protein 5 +16.9548485,PR:000032302,http://purl.obolibrary.org/obo/PR_000032302,keratin-like protein KRT222 +16.9548485,PR:000032316,http://purl.obolibrary.org/obo/PR_000032316,ankyrin repeat domain-containing protein 53 +16.9548485,PR:000032327,http://purl.obolibrary.org/obo/PR_000032327,leucine-rich repeat-containing protein 70 +16.9548485,PR:000032330,http://purl.obolibrary.org/obo/PR_000032330,tetratricopeptide repeat protein 9B +16.9548485,PR:000032332,http://purl.obolibrary.org/obo/PR_000032332,transmembrane protein 196 +16.9548485,PR:000032333,http://purl.obolibrary.org/obo/PR_000032333,HAUS augmin-like complex subunit 5 +16.9548485,PR:000032334,http://purl.obolibrary.org/obo/PR_000032334,leukocyte receptor cluster member 9 +16.9548485,PR:000032348,http://purl.obolibrary.org/obo/PR_000032348,cytochrome b5 domain-containing protein 1 +16.9548485,PR:000032359,http://purl.obolibrary.org/obo/PR_000032359,thioredoxin domain-containing protein 16 +16.9548485,PR:000032367,http://purl.obolibrary.org/obo/PR_000032367,NXPE family member 3 +16.9548485,PR:000032381,http://purl.obolibrary.org/obo/PR_000032381,transmembrane protein 203 +16.9548485,PR:000032394,http://purl.obolibrary.org/obo/PR_000032394,putative tripartite motif-containing protein 49B +16.9548485,PR:000032399,http://purl.obolibrary.org/obo/PR_000032399,kelch domain-containing protein 1 +16.9548485,PR:000032410,http://purl.obolibrary.org/obo/PR_000032410,alpha/beta hydrolase domain-containing protein 17C +16.9548485,PR:000032447,http://purl.obolibrary.org/obo/PR_000032447,putative malate dehydrogenase 1B +16.9548485,PR:000032477,http://purl.obolibrary.org/obo/PR_000032477,coiled-coil domain-containing protein 152 +16.9548485,PR:000032484,http://purl.obolibrary.org/obo/PR_000032484,protein FAM81A +16.9548485,PR:000032485,http://purl.obolibrary.org/obo/PR_000032485,C-type lectin domain family 2 member L +16.9548485,PR:000032490,http://purl.obolibrary.org/obo/PR_000032490,putative olfactory receptor 2B3 +16.9548485,PR:000032493,http://purl.obolibrary.org/obo/PR_000032493,protein FAM170B +16.9548485,PR:000032503,http://purl.obolibrary.org/obo/PR_000032503,C2 calcium-dependent domain-containing protein 4C +16.9548485,PR:000032504,http://purl.obolibrary.org/obo/PR_000032504,zinc finger CCCH domain-containing protein 11A +16.9548485,PR:000032506,http://purl.obolibrary.org/obo/PR_000032506,intermediate filament family orphan 2 +16.9548485,PR:000032508,http://purl.obolibrary.org/obo/PR_000032508,protein FAM176C +16.9548485,PR:000032511,http://purl.obolibrary.org/obo/PR_000032511,RNA pseudouridylate synthase domain-containing protein 2 +16.9548485,PR:000032513,http://purl.obolibrary.org/obo/PR_000032513,transmembrane protein 41A +16.9548485,PR:000032517,http://purl.obolibrary.org/obo/PR_000032517,inactive Ufm1-specific protease 1 +16.9548485,PR:000032527,http://purl.obolibrary.org/obo/PR_000032527,Mapk-regulated corepressor-interacting protein 1 +16.9548485,PR:000032539,http://purl.obolibrary.org/obo/PR_000032539,calcium channel flower homolog +16.9548485,PR:000032548,http://purl.obolibrary.org/obo/PR_000032548,Golgi apparatus membrane protein TVP23 homolog B +16.9548485,PR:000032552,http://purl.obolibrary.org/obo/PR_000032552,transmembrane protein 140 +16.9548485,PR:000032555,http://purl.obolibrary.org/obo/PR_000032555,protein FAM133A +16.9548485,PR:000032558,http://purl.obolibrary.org/obo/PR_000032558,transmembrane protein 14B +16.9548485,PR:000032562,http://purl.obolibrary.org/obo/PR_000032562,keratin-associated protein 16-1 +16.9548485,PR:000032574,http://purl.obolibrary.org/obo/PR_000032574,STEAP family member 1B +16.9548485,PR:000032576,http://purl.obolibrary.org/obo/PR_000032576,transmembrane protein 232 +16.9548485,PR:000032581,http://purl.obolibrary.org/obo/PR_000032581,protein phosphatase 1 regulatory subunit 32 +16.9548485,PR:000032588,http://purl.obolibrary.org/obo/PR_000032588,thiosulfate sulfurtransferase/rhodanese-like domain-containing protein 2 +16.9548485,PR:000032593,http://purl.obolibrary.org/obo/PR_000032593,coiled-coil domain-containing protein 15 +16.9548485,PR:000032598,http://purl.obolibrary.org/obo/PR_000032598,transmembrane protein 200C +16.9548485,PR:000032609,http://purl.obolibrary.org/obo/PR_000032609,transmembrane protein 198 +16.9548485,PR:000032620,http://purl.obolibrary.org/obo/PR_000032620,putative protein FAM157B +16.9548485,PR:000032629,http://purl.obolibrary.org/obo/PR_000032629,nuclear envelope phosphatase-regulatory subunit 1 +16.9548485,PR:000032635,http://purl.obolibrary.org/obo/PR_000032635,killer cell lectin-like receptor subfamily F member 2 +16.9548485,PR:000032639,http://purl.obolibrary.org/obo/PR_000032639,pleckstrin homology domain-containing family G member 4B +16.9548485,PR:000032647,http://purl.obolibrary.org/obo/PR_000032647,ankyrin repeat domain-containing protein 29 +16.9548485,PR:000032660,http://purl.obolibrary.org/obo/PR_000032660,protein FAM110C +16.9548485,PR:000032665,http://purl.obolibrary.org/obo/PR_000032665,putative neuroblastoma breakpoint family member 5 +16.9548485,PR:000032671,http://purl.obolibrary.org/obo/PR_000032671,testis-expressed protein 26 +16.9548485,PR:000032673,http://purl.obolibrary.org/obo/PR_000032673,low-density lipoprotein receptor class A domain-containing protein 2 +16.9548485,PR:000032691,http://purl.obolibrary.org/obo/PR_000032691,transmembrane and coiled-coil domain-containing protein 6 +16.9548485,PR:000032712,http://purl.obolibrary.org/obo/PR_000032712,none +16.9548485,PR:000032713,http://purl.obolibrary.org/obo/PR_000032713,transmembrane protein 69 +16.9548485,PR:000032730,http://purl.obolibrary.org/obo/PR_000032730,zinc finger-containing ubiquitin peptidase 1 +16.9548485,PR:000032731,http://purl.obolibrary.org/obo/PR_000032731,transmembrane and coiled-coil domain-containing protein 4 +16.9548485,PR:000032735,http://purl.obolibrary.org/obo/PR_000032735,coiled-coil domain-containing protein 96 +16.9548485,PR:000032744,http://purl.obolibrary.org/obo/PR_000032744,transmembrane protein 235 +16.9548485,PR:000032751,http://purl.obolibrary.org/obo/PR_000032751,leucine-rich repeat-containing protein 10B +16.9548485,PR:000032764,http://purl.obolibrary.org/obo/PR_000032764,transmembrane protein 251 +16.9548485,PR:000032768,http://purl.obolibrary.org/obo/PR_000032768,hemicentin-2 +16.9548485,PR:000032769,http://purl.obolibrary.org/obo/PR_000032769,glycolipid transfer protein domain-containing protein 2 +16.9548485,PR:000032779,http://purl.obolibrary.org/obo/PR_000032779,nuclear protein 2 +16.9548485,PR:000032785,http://purl.obolibrary.org/obo/PR_000032785,protein phosphatase 1 regulatory subunit 36 +16.9548485,PR:000032788,http://purl.obolibrary.org/obo/PR_000032788,CENPB DNA-binding domain-containing protein 1 +16.9548485,PR:000032828,http://purl.obolibrary.org/obo/PR_000032828,centrosomal protein CEP57L1 +16.9548485,PR:000032863,http://purl.obolibrary.org/obo/PR_000032863,none +16.9548485,PR:000032893,http://purl.obolibrary.org/obo/PR_000032893,none +16.9548485,PR:000032897,http://purl.obolibrary.org/obo/PR_000032897,none +16.9548485,PR:000032926,http://purl.obolibrary.org/obo/PR_000032926,none +16.9548485,PR:000032934,http://purl.obolibrary.org/obo/PR_000032934,none +16.9548485,PR:000032960,http://purl.obolibrary.org/obo/PR_000032960,none +16.9548485,PR:000032978,http://purl.obolibrary.org/obo/PR_000032978,none +16.9548485,PR:000032979,http://purl.obolibrary.org/obo/PR_000032979,none +16.9548485,PR:000033044,http://purl.obolibrary.org/obo/PR_000033044,none +16.9548485,PR:000033047,http://purl.obolibrary.org/obo/PR_000033047,none +16.9548485,PR:000033053,http://purl.obolibrary.org/obo/PR_000033053,none +16.9548485,PR:000033062,http://purl.obolibrary.org/obo/PR_000033062,none +16.9548485,PR:000033122,http://purl.obolibrary.org/obo/PR_000033122,none +16.9548485,PR:000033123,http://purl.obolibrary.org/obo/PR_000033123,none +16.9548485,PR:000033139,http://purl.obolibrary.org/obo/PR_000033139,none +16.9548485,PR:000033140,http://purl.obolibrary.org/obo/PR_000033140,none +16.9548485,PR:000033148,http://purl.obolibrary.org/obo/PR_000033148,none +16.9548485,PR:000033158,http://purl.obolibrary.org/obo/PR_000033158,none +16.9548485,PR:000033169,http://purl.obolibrary.org/obo/PR_000033169,none +16.9548485,PR:000033180,http://purl.obolibrary.org/obo/PR_000033180,none +16.9548485,PR:000033224,http://purl.obolibrary.org/obo/PR_000033224,none +16.9548485,PR:000033243,http://purl.obolibrary.org/obo/PR_000033243,none +16.9548485,PR:000033253,http://purl.obolibrary.org/obo/PR_000033253,none +16.9548485,PR:000033280,http://purl.obolibrary.org/obo/PR_000033280,none +16.9548485,PR:000033296,http://purl.obolibrary.org/obo/PR_000033296,none +16.9548485,PR:000033301,http://purl.obolibrary.org/obo/PR_000033301,none +16.9548485,PR:000033305,http://purl.obolibrary.org/obo/PR_000033305,none +16.9548485,PR:000033308,http://purl.obolibrary.org/obo/PR_000033308,none +16.9548485,PR:000033311,http://purl.obolibrary.org/obo/PR_000033311,none +16.9548485,PR:000033314,http://purl.obolibrary.org/obo/PR_000033314,none +16.9548485,PR:000033336,http://purl.obolibrary.org/obo/PR_000033336,none +16.9548485,PR:000033371,http://purl.obolibrary.org/obo/PR_000033371,none +16.9548485,PR:000033395,http://purl.obolibrary.org/obo/PR_000033395,none +16.9548485,PR:000033437,http://purl.obolibrary.org/obo/PR_000033437,none +16.9548485,PR:000033439,http://purl.obolibrary.org/obo/PR_000033439,none +16.9548485,PR:000033446,http://purl.obolibrary.org/obo/PR_000033446,none +16.9548485,PR:000033449,http://purl.obolibrary.org/obo/PR_000033449,none +16.9548485,PR:000033459,http://purl.obolibrary.org/obo/PR_000033459,none +16.9548485,PR:000033464,http://purl.obolibrary.org/obo/PR_000033464,none +16.9548485,PR:000033466,http://purl.obolibrary.org/obo/PR_000033466,none +16.9548485,PR:000033471,http://purl.obolibrary.org/obo/PR_000033471,none +16.9548485,PR:000033474,http://purl.obolibrary.org/obo/PR_000033474,none +16.9548485,PR:000033488,http://purl.obolibrary.org/obo/PR_000033488,none +16.9548485,PR:000033510,http://purl.obolibrary.org/obo/PR_000033510,none +16.9548485,PR:000033511,http://purl.obolibrary.org/obo/PR_000033511,none +16.9548485,PR:000033528,http://purl.obolibrary.org/obo/PR_000033528,none +16.9548485,PR:000033535,http://purl.obolibrary.org/obo/PR_000033535,none +16.9548485,PR:000033536,http://purl.obolibrary.org/obo/PR_000033536,none +16.9548485,PR:000033585,http://purl.obolibrary.org/obo/PR_000033585,none +16.9548485,PR:000033602,http://purl.obolibrary.org/obo/PR_000033602,none +16.9548485,PR:000033617,http://purl.obolibrary.org/obo/PR_000033617,none +16.9548485,PR:000033621,http://purl.obolibrary.org/obo/PR_000033621,none +16.9548485,PR:000033655,http://purl.obolibrary.org/obo/PR_000033655,none +16.9548485,PR:000033656,http://purl.obolibrary.org/obo/PR_000033656,none +16.9548485,PR:000033666,http://purl.obolibrary.org/obo/PR_000033666,none +16.9548485,PR:000033670,http://purl.obolibrary.org/obo/PR_000033670,none +16.9548485,PR:000033693,http://purl.obolibrary.org/obo/PR_000033693,none +16.9548485,PR:000033694,http://purl.obolibrary.org/obo/PR_000033694,none +16.9548485,PR:000033705,http://purl.obolibrary.org/obo/PR_000033705,none +16.9548485,PR:000033711,http://purl.obolibrary.org/obo/PR_000033711,coiled-coil domain-containing protein 32 +16.9548485,PR:000033721,http://purl.obolibrary.org/obo/PR_000033721,none +16.9548485,PR:000033743,http://purl.obolibrary.org/obo/PR_000033743,none +16.9548485,PR:000033752,http://purl.obolibrary.org/obo/PR_000033752,none +16.9548485,PR:000033754,http://purl.obolibrary.org/obo/PR_000033754,none +16.9548485,PR:000033767,http://purl.obolibrary.org/obo/PR_000033767,none +16.9548485,PR:000033768,http://purl.obolibrary.org/obo/PR_000033768,none +16.9548485,PR:000033775,http://purl.obolibrary.org/obo/PR_000033775,none +16.9548485,PR:000033785,http://purl.obolibrary.org/obo/PR_000033785,none +16.9548485,PR:000033786,http://purl.obolibrary.org/obo/PR_000033786,none +16.9548485,PR:000033792,http://purl.obolibrary.org/obo/PR_000033792,none +16.9548485,PR:000033796,http://purl.obolibrary.org/obo/PR_000033796,acetyl-CoA:oxalate CoA-transferase +16.9548485,PR:000033800,http://purl.obolibrary.org/obo/PR_000033800,none +16.9548485,PR:000033821,http://purl.obolibrary.org/obo/PR_000033821,none +16.9548485,PR:000033823,http://purl.obolibrary.org/obo/PR_000033823,none +16.9548485,PR:000033826,http://purl.obolibrary.org/obo/PR_000033826,none +16.9548485,PR:000033847,http://purl.obolibrary.org/obo/PR_000033847,protein polyglycylase TTLL10 +16.9548485,PR:000033853,http://purl.obolibrary.org/obo/PR_000033853,none +16.9548485,PR:000033881,http://purl.obolibrary.org/obo/PR_000033881,none +16.9548485,PR:000033909,http://purl.obolibrary.org/obo/PR_000033909,none +16.9548485,PR:000033912,http://purl.obolibrary.org/obo/PR_000033912,none +16.9548485,PR:000033936,http://purl.obolibrary.org/obo/PR_000033936,none +16.9548485,PR:000033941,http://purl.obolibrary.org/obo/PR_000033941,none +16.9548485,PR:000033949,http://purl.obolibrary.org/obo/PR_000033949,none +16.9548485,PR:000033957,http://purl.obolibrary.org/obo/PR_000033957,none +16.9548485,PR:000033997,http://purl.obolibrary.org/obo/PR_000033997,none +16.9548485,PR:000034018,http://purl.obolibrary.org/obo/PR_000034018,none +16.9548485,PR:000034029,http://purl.obolibrary.org/obo/PR_000034029,none +16.9548485,PR:000034042,http://purl.obolibrary.org/obo/PR_000034042,none +16.9548485,PR:000034044,http://purl.obolibrary.org/obo/PR_000034044,none +16.9548485,PR:000034063,http://purl.obolibrary.org/obo/PR_000034063,none +16.9548485,PR:000034078,http://purl.obolibrary.org/obo/PR_000034078,none +16.9548485,PR:000034088,http://purl.obolibrary.org/obo/PR_000034088,none +16.9548485,PR:000034103,http://purl.obolibrary.org/obo/PR_000034103,none +16.9548485,PR:000034126,http://purl.obolibrary.org/obo/PR_000034126,none +16.9548485,PR:000034145,http://purl.obolibrary.org/obo/PR_000034145,none +16.9548485,PR:000034148,http://purl.obolibrary.org/obo/PR_000034148,none +16.9548485,PR:000034166,http://purl.obolibrary.org/obo/PR_000034166,none +16.9548485,PR:000034194,http://purl.obolibrary.org/obo/PR_000034194,none +16.9548485,PR:000034209,http://purl.obolibrary.org/obo/PR_000034209,none +16.9548485,PR:000034211,http://purl.obolibrary.org/obo/PR_000034211,none +16.9548485,PR:000034213,http://purl.obolibrary.org/obo/PR_000034213,none +16.9548485,PR:000034224,http://purl.obolibrary.org/obo/PR_000034224,none +16.9548485,PR:000034240,http://purl.obolibrary.org/obo/PR_000034240,none +16.9548485,PR:000034251,http://purl.obolibrary.org/obo/PR_000034251,none +16.9548485,PR:000034293,http://purl.obolibrary.org/obo/PR_000034293,none +16.9548485,PR:000034300,http://purl.obolibrary.org/obo/PR_000034300,none +16.9548485,PR:000034307,http://purl.obolibrary.org/obo/PR_000034307,none +16.9548485,PR:000034326,http://purl.obolibrary.org/obo/PR_000034326,none +16.9548485,PR:000034334,http://purl.obolibrary.org/obo/PR_000034334,none +16.9548485,PR:000034348,http://purl.obolibrary.org/obo/PR_000034348,none +16.9548485,PR:000034376,http://purl.obolibrary.org/obo/PR_000034376,none +16.9548485,PR:000034403,http://purl.obolibrary.org/obo/PR_000034403,ankyrin repeat and death domain-containing protein 1B +16.9548485,PR:000034434,http://purl.obolibrary.org/obo/PR_000034434,none +16.9548485,PR:000034445,http://purl.obolibrary.org/obo/PR_000034445,none +16.9548485,PR:000034465,http://purl.obolibrary.org/obo/PR_000034465,none +16.9548485,PR:000034472,http://purl.obolibrary.org/obo/PR_000034472,none +16.9548485,PR:000034494,http://purl.obolibrary.org/obo/PR_000034494,none +16.9548485,PR:000034498,http://purl.obolibrary.org/obo/PR_000034498,none +16.9548485,PR:000034548,http://purl.obolibrary.org/obo/PR_000034548,none +16.9548485,PR:000034604,http://purl.obolibrary.org/obo/PR_000034604,none +16.9548485,PR:000034609,http://purl.obolibrary.org/obo/PR_000034609,none +16.9548485,PR:000034612,http://purl.obolibrary.org/obo/PR_000034612,none +16.9548485,PR:000034614,http://purl.obolibrary.org/obo/PR_000034614,none +16.9548485,PR:000034636,http://purl.obolibrary.org/obo/PR_000034636,none +16.9548485,PR:000034647,http://purl.obolibrary.org/obo/PR_000034647,none +16.9548485,PR:000034664,http://purl.obolibrary.org/obo/PR_000034664,none +16.9548485,PR:000034673,http://purl.obolibrary.org/obo/PR_000034673,none +16.9548485,PR:000034690,http://purl.obolibrary.org/obo/PR_000034690,none +16.9548485,PR:000034693,http://purl.obolibrary.org/obo/PR_000034693,none +16.9548485,PR:000034700,http://purl.obolibrary.org/obo/PR_000034700,none +16.9548485,PR:000034789,http://purl.obolibrary.org/obo/PR_000034789,none +16.9548485,PR:000034823,http://purl.obolibrary.org/obo/PR_000034823,none +16.9548485,PR:000034830,http://purl.obolibrary.org/obo/PR_000034830,none +16.9548485,PR:000034866,http://purl.obolibrary.org/obo/PR_000034866,none +16.9548485,PR:000034874,http://purl.obolibrary.org/obo/PR_000034874,none +16.9548485,PR:000034877,http://purl.obolibrary.org/obo/PR_000034877,none +16.9548485,PR:000034892,http://purl.obolibrary.org/obo/PR_000034892,none +16.9548485,PR:000034893,http://purl.obolibrary.org/obo/PR_000034893,none +16.9548485,PR:000034904,http://purl.obolibrary.org/obo/PR_000034904,none +16.9548485,PR:000034907,http://purl.obolibrary.org/obo/PR_000034907,none +16.9548485,PR:000034911,http://purl.obolibrary.org/obo/PR_000034911,none +16.9548485,PR:000034916,http://purl.obolibrary.org/obo/PR_000034916,none +16.9548485,PR:000034931,http://purl.obolibrary.org/obo/PR_000034931,probable tubulin polyglutamylase TTLL2 +16.9548485,PR:000034966,http://purl.obolibrary.org/obo/PR_000034966,none +16.9548485,PR:000034973,http://purl.obolibrary.org/obo/PR_000034973,none +16.9548485,PR:000034992,http://purl.obolibrary.org/obo/PR_000034992,none +16.9548485,PR:000034994,http://purl.obolibrary.org/obo/PR_000034994,none +16.9548485,PR:000035008,http://purl.obolibrary.org/obo/PR_000035008,none +16.9548485,PR:000035012,http://purl.obolibrary.org/obo/PR_000035012,none +16.9548485,PR:000035027,http://purl.obolibrary.org/obo/PR_000035027,none +16.9548485,PR:000035046,http://purl.obolibrary.org/obo/PR_000035046,none +16.9548485,PR:000035065,http://purl.obolibrary.org/obo/PR_000035065,none +16.9548485,PR:000035072,http://purl.obolibrary.org/obo/PR_000035072,none +16.9548485,PR:000035081,http://purl.obolibrary.org/obo/PR_000035081,none +16.9548485,PR:000035087,http://purl.obolibrary.org/obo/PR_000035087,none +16.9548485,PR:000035091,http://purl.obolibrary.org/obo/PR_000035091,none +16.9548485,PR:000035092,http://purl.obolibrary.org/obo/PR_000035092,none +16.9548485,PR:000035116,http://purl.obolibrary.org/obo/PR_000035116,none +16.9548485,PR:000035158,http://purl.obolibrary.org/obo/PR_000035158,none +16.9548485,PR:000035161,http://purl.obolibrary.org/obo/PR_000035161,none +16.9548485,PR:000035170,http://purl.obolibrary.org/obo/PR_000035170,none +16.9548485,PR:000035171,http://purl.obolibrary.org/obo/PR_000035171,none +16.9548485,PR:000035192,http://purl.obolibrary.org/obo/PR_000035192,none +16.9548485,PR:000035201,http://purl.obolibrary.org/obo/PR_000035201,none +16.9548485,PR:000035210,http://purl.obolibrary.org/obo/PR_000035210,none +16.9548485,PR:000035250,http://purl.obolibrary.org/obo/PR_000035250,none +16.9548485,PR:000035257,http://purl.obolibrary.org/obo/PR_000035257,none +16.9548485,PR:000035258,http://purl.obolibrary.org/obo/PR_000035258,none +16.9548485,PR:000035277,http://purl.obolibrary.org/obo/PR_000035277,none +16.9548485,PR:000035290,http://purl.obolibrary.org/obo/PR_000035290,none +16.9548485,PR:000035292,http://purl.obolibrary.org/obo/PR_000035292,none +16.9548485,PR:000035314,http://purl.obolibrary.org/obo/PR_000035314,none +16.9548485,PR:000035317,http://purl.obolibrary.org/obo/PR_000035317,none +16.9548485,PR:000035353,http://purl.obolibrary.org/obo/PR_000035353,none +16.9548485,PR:000035848,http://purl.obolibrary.org/obo/PR_000035848,none +16.9548485,PR:000036528,http://purl.obolibrary.org/obo/PR_000036528,none +16.9548485,PR:000036829,http://purl.obolibrary.org/obo/PR_000036829,none +16.9548485,PR:000036841,http://purl.obolibrary.org/obo/PR_000036841,none +16.9548485,PR:000036849,http://purl.obolibrary.org/obo/PR_000036849,CD14 molecule isoform 1 cleaved and soluble form +16.9548485,PR:000037017,http://purl.obolibrary.org/obo/PR_000037017,none +16.9548485,PR:000037318,http://purl.obolibrary.org/obo/PR_000037318,none +16.9548485,PR:000039981,http://purl.obolibrary.org/obo/PR_000039981,none +16.9548485,PR:000044439,http://purl.obolibrary.org/obo/PR_000044439,none +16.9548485,PR:000044452,http://purl.obolibrary.org/obo/PR_000044452,none +16.9548485,PR:000044453,http://purl.obolibrary.org/obo/PR_000044453,none +16.9548485,PR:000044641,http://purl.obolibrary.org/obo/PR_000044641,fumarylacetoacetate hydrolase domain-containing protein 2 +16.9548485,PR:000044717,http://purl.obolibrary.org/obo/PR_000044717,none +16.9548485,PR:000044794,http://purl.obolibrary.org/obo/PR_000044794,none +16.9548485,PR:000049734,http://purl.obolibrary.org/obo/PR_000049734,none +16.9548485,PR:000049750,http://purl.obolibrary.org/obo/PR_000049750,none +16.9548485,PR:000049757,http://purl.obolibrary.org/obo/PR_000049757,none +16.9548485,PR:000050055,http://purl.obolibrary.org/obo/PR_000050055,complement C1q and tumor necrosis factor-related protein 9 +16.9548485,PR:000050402,http://purl.obolibrary.org/obo/PR_000050402,none +16.9548485,PR:A0MEB5,http://purl.obolibrary.org/obo/PR_A0MEB5,none +16.9548485,PR:A0SVK0,http://purl.obolibrary.org/obo/PR_A0SVK0,none +16.9548485,PR:A2BIE7,http://purl.obolibrary.org/obo/PR_A2BIE7,none +16.9548485,PR:A2VDJ0,http://purl.obolibrary.org/obo/PR_A2VDJ0,transmembrane protein 131-like (human) +16.9548485,PR:A3RK75,http://purl.obolibrary.org/obo/PR_A3RK75,none +16.9548485,PR:A5Z2X3,http://purl.obolibrary.org/obo/PR_A5Z2X3,none +16.9548485,PR:A6NHQ4,http://purl.obolibrary.org/obo/PR_A6NHQ4,elongin BC and Polycomb repressive complex 2-associated protein (human) +16.9548485,PR:A7XDQ9,http://purl.obolibrary.org/obo/PR_A7XDQ9,none +16.9548485,PR:A7YDW0,http://purl.obolibrary.org/obo/PR_A7YDW0,none +16.9548485,PR:A8E7N9,http://purl.obolibrary.org/obo/PR_A8E7N9,none +16.9548485,PR:A9X4U2,http://purl.obolibrary.org/obo/PR_A9X4U2,none +16.9548485,PR:B0G143,http://purl.obolibrary.org/obo/PR_B0G143,none +16.9548485,PR:B6RSP1,http://purl.obolibrary.org/obo/PR_B6RSP1,none +16.9548485,PR:B8H358,http://purl.obolibrary.org/obo/PR_B8H358,none +16.9548485,PR:B9DHD7,http://purl.obolibrary.org/obo/PR_B9DHD7,none +16.9548485,PR:C0HJJ0,http://purl.obolibrary.org/obo/PR_C0HJJ0,none +16.9548485,PR:C0LGN2,http://purl.obolibrary.org/obo/PR_C0LGN2,none +16.9548485,PR:D2K289,http://purl.obolibrary.org/obo/PR_D2K289,none +16.9548485,PR:D2WL32,http://purl.obolibrary.org/obo/PR_D2WL32,none +16.9548485,PR:D3GKW6,http://purl.obolibrary.org/obo/PR_D3GKW6,none +16.9548485,PR:D6W196,http://purl.obolibrary.org/obo/PR_D6W196,none +16.9548485,PR:F1R8Z9,http://purl.obolibrary.org/obo/PR_F1R8Z9,none +16.9548485,PR:F4HX15,http://purl.obolibrary.org/obo/PR_F4HX15,none +16.9548485,PR:F4HX80,http://purl.obolibrary.org/obo/PR_F4HX80,none +16.9548485,PR:F4I1L3,http://purl.obolibrary.org/obo/PR_F4I1L3,none +16.9548485,PR:F4I2H7,http://purl.obolibrary.org/obo/PR_F4I2H7,none +16.9548485,PR:F4I8K2,http://purl.obolibrary.org/obo/PR_F4I8K2,none +16.9548485,PR:F4I8S3,http://purl.obolibrary.org/obo/PR_F4I8S3,none +16.9548485,PR:F4I902,http://purl.obolibrary.org/obo/PR_F4I902,none +16.9548485,PR:F4ICF4,http://purl.obolibrary.org/obo/PR_F4ICF4,none +16.9548485,PR:F4IHR4,http://purl.obolibrary.org/obo/PR_F4IHR4,none +16.9548485,PR:F4IPY2,http://purl.obolibrary.org/obo/PR_F4IPY2,none +16.9548485,PR:F4IV66,http://purl.obolibrary.org/obo/PR_F4IV66,none +16.9548485,PR:F4IVI0,http://purl.obolibrary.org/obo/PR_F4IVI0,none +16.9548485,PR:F4J117,http://purl.obolibrary.org/obo/PR_F4J117,none +16.9548485,PR:F4J3T8,http://purl.obolibrary.org/obo/PR_F4J3T8,none +16.9548485,PR:F4J6F6,http://purl.obolibrary.org/obo/PR_F4J6F6,none +16.9548485,PR:F4JAU3,http://purl.obolibrary.org/obo/PR_F4JAU3,none +16.9548485,PR:F4JCN9,http://purl.obolibrary.org/obo/PR_F4JCN9,none +16.9548485,PR:F4JH53,http://purl.obolibrary.org/obo/PR_F4JH53,none +16.9548485,PR:F4JL11,http://purl.obolibrary.org/obo/PR_F4JL11,none +16.9548485,PR:F4JN35,http://purl.obolibrary.org/obo/PR_F4JN35,none +16.9548485,PR:F4JNX2,http://purl.obolibrary.org/obo/PR_F4JNX2,none +16.9548485,PR:F4JRE0,http://purl.obolibrary.org/obo/PR_F4JRE0,none +16.9548485,PR:F4JVJ1,http://purl.obolibrary.org/obo/PR_F4JVJ1,none +16.9548485,PR:F4JY12,http://purl.obolibrary.org/obo/PR_F4JY12,none +16.9548485,PR:F4JZC2,http://purl.obolibrary.org/obo/PR_F4JZC2,none +16.9548485,PR:F4JZN6,http://purl.obolibrary.org/obo/PR_F4JZN6,none +16.9548485,PR:F4K0C4,http://purl.obolibrary.org/obo/PR_F4K0C4,none +16.9548485,PR:F4K4R6,http://purl.obolibrary.org/obo/PR_F4K4R6,none +16.9548485,PR:F4K5T2,http://purl.obolibrary.org/obo/PR_F4K5T2,none +16.9548485,PR:F4KCL7,http://purl.obolibrary.org/obo/PR_F4KCL7,none +16.9548485,PR:F4KEW8,http://purl.obolibrary.org/obo/PR_F4KEW8,none +16.9548485,PR:F4KGN5,http://purl.obolibrary.org/obo/PR_F4KGN5,none +16.9548485,PR:F4KIF3,http://purl.obolibrary.org/obo/PR_F4KIF3,none +16.9548485,PR:G4RT11,http://purl.obolibrary.org/obo/PR_G4RT11,none +16.9548485,PR:G5EE06,http://purl.obolibrary.org/obo/PR_G5EE06,none +16.9548485,PR:G5EGJ9,http://purl.obolibrary.org/obo/PR_G5EGJ9,none +16.9548485,PR:H2KZ72,http://purl.obolibrary.org/obo/PR_H2KZ72,none +16.9548485,PR:O01427,http://purl.obolibrary.org/obo/PR_O01427,none +16.9548485,PR:O02365,http://purl.obolibrary.org/obo/PR_O02365,none +16.9548485,PR:O04331,http://purl.obolibrary.org/obo/PR_O04331,none +16.9548485,PR:O04496,http://purl.obolibrary.org/obo/PR_O04496,none +16.9548485,PR:O04523,http://purl.obolibrary.org/obo/PR_O04523,none +16.9548485,PR:O04652,http://purl.obolibrary.org/obo/PR_O04652,none +16.9548485,PR:O08556,http://purl.obolibrary.org/obo/PR_O08556,none +16.9548485,PR:O09100,http://purl.obolibrary.org/obo/PR_O09100,none +16.9548485,PR:O13685,http://purl.obolibrary.org/obo/PR_O13685,none +16.9548485,PR:O13817,http://purl.obolibrary.org/obo/PR_O13817,none +16.9548485,PR:O13945,http://purl.obolibrary.org/obo/PR_O13945,none +16.9548485,PR:O14329,http://purl.obolibrary.org/obo/PR_O14329,none +16.9548485,PR:O14363,http://purl.obolibrary.org/obo/PR_O14363,none +16.9548485,PR:O15033,http://purl.obolibrary.org/obo/PR_O15033,apoptosis-resistant E3 ubiquitin protein ligase 1 (human) +16.9548485,PR:O15389,http://purl.obolibrary.org/obo/PR_O15389,sialic acid-binding Ig-like lectin 5 (human) +16.9548485,PR:O17323,http://purl.obolibrary.org/obo/PR_O17323,none +16.9548485,PR:O22059,http://purl.obolibrary.org/obo/PR_O22059,none +16.9548485,PR:O22131,http://purl.obolibrary.org/obo/PR_O22131,none +16.9548485,PR:O22588,http://purl.obolibrary.org/obo/PR_O22588,none +16.9548485,PR:O22718,http://purl.obolibrary.org/obo/PR_O22718,none +16.9548485,PR:O22874,http://purl.obolibrary.org/obo/PR_O22874,none +16.9548485,PR:O22914,http://purl.obolibrary.org/obo/PR_O22914,none +16.9548485,PR:O23087,http://purl.obolibrary.org/obo/PR_O23087,none +16.9548485,PR:O23254,http://purl.obolibrary.org/obo/PR_O23254,none +16.9548485,PR:O23299,http://purl.obolibrary.org/obo/PR_O23299,none +16.9548485,PR:O23492,http://purl.obolibrary.org/obo/PR_O23492,none +16.9548485,PR:O23714,http://purl.obolibrary.org/obo/PR_O23714,none +16.9548485,PR:O24457,http://purl.obolibrary.org/obo/PR_O24457,none +16.9548485,PR:O31743,http://purl.obolibrary.org/obo/PR_O31743,none +16.9548485,PR:O32233,http://purl.obolibrary.org/obo/PR_O32233,none +16.9548485,PR:O34527,http://purl.obolibrary.org/obo/PR_O34527,none +16.9548485,PR:O35293,http://purl.obolibrary.org/obo/PR_O35293,none +16.9548485,PR:O35972,http://purl.obolibrary.org/obo/PR_O35972,none +16.9548485,PR:O42358,http://purl.obolibrary.org/obo/PR_O42358,none +16.9548485,PR:O43092,http://purl.obolibrary.org/obo/PR_O43092,none +16.9548485,PR:O43822,http://purl.obolibrary.org/obo/PR_O43822,cilia- and flagella-associated protein 410 (human) +16.9548485,PR:O44406,http://purl.obolibrary.org/obo/PR_O44406,none +16.9548485,PR:O45539,http://purl.obolibrary.org/obo/PR_O45539,none +16.9548485,PR:O48781,http://purl.obolibrary.org/obo/PR_O48781,none +16.9548485,PR:O49286,http://purl.obolibrary.org/obo/PR_O49286,none +16.9548485,PR:O49312,http://purl.obolibrary.org/obo/PR_O49312,none +16.9548485,PR:O49326,http://purl.obolibrary.org/obo/PR_O49326,none +16.9548485,PR:O49445,http://purl.obolibrary.org/obo/PR_O49445,none +16.9548485,PR:O49499,http://purl.obolibrary.org/obo/PR_O49499,none +16.9548485,PR:O49741,http://purl.obolibrary.org/obo/PR_O49741,none +16.9548485,PR:O49839,http://purl.obolibrary.org/obo/PR_O49839,none +16.9548485,PR:O49840,http://purl.obolibrary.org/obo/PR_O49840,none +16.9548485,PR:O54689,http://purl.obolibrary.org/obo/PR_O54689,none +16.9548485,PR:O59742,http://purl.obolibrary.org/obo/PR_O59742,none +16.9548485,PR:O61365,http://purl.obolibrary.org/obo/PR_O61365,none +16.9548485,PR:O61715,http://purl.obolibrary.org/obo/PR_O61715,none +16.9548485,PR:O64470,http://purl.obolibrary.org/obo/PR_O64470,none +16.9548485,PR:O64474,http://purl.obolibrary.org/obo/PR_O64474,none +16.9548485,PR:O64519,http://purl.obolibrary.org/obo/PR_O64519,none +16.9548485,PR:O64637,http://purl.obolibrary.org/obo/PR_O64637,none +16.9548485,PR:O64702,http://purl.obolibrary.org/obo/PR_O64702,none +16.9548485,PR:O64769,http://purl.obolibrary.org/obo/PR_O64769,none +16.9548485,PR:O65271,http://purl.obolibrary.org/obo/PR_O65271,none +16.9548485,PR:O65403,http://purl.obolibrary.org/obo/PR_O65403,none +16.9548485,PR:O65688,http://purl.obolibrary.org/obo/PR_O65688,none +16.9548485,PR:O65797,http://purl.obolibrary.org/obo/PR_O65797,none +16.9548485,PR:O74536,http://purl.obolibrary.org/obo/PR_O74536,none +16.9548485,PR:O75153,http://purl.obolibrary.org/obo/PR_O75153,clustered mitochondria protein homolog (human) +16.9548485,PR:O77277,http://purl.obolibrary.org/obo/PR_O77277,none +16.9548485,PR:O80448,http://purl.obolibrary.org/obo/PR_O80448,none +16.9548485,PR:O80467,http://purl.obolibrary.org/obo/PR_O80467,none +16.9548485,PR:O80474,http://purl.obolibrary.org/obo/PR_O80474,none +16.9548485,PR:O80560,http://purl.obolibrary.org/obo/PR_O80560,none +16.9548485,PR:O80622,http://purl.obolibrary.org/obo/PR_O80622,none +16.9548485,PR:O80678,http://purl.obolibrary.org/obo/PR_O80678,none +16.9548485,PR:O80689,http://purl.obolibrary.org/obo/PR_O80689,none +16.9548485,PR:O80690,http://purl.obolibrary.org/obo/PR_O80690,none +16.9548485,PR:O80809,http://purl.obolibrary.org/obo/PR_O80809,none +16.9548485,PR:O80883,http://purl.obolibrary.org/obo/PR_O80883,none +16.9548485,PR:O80946,http://purl.obolibrary.org/obo/PR_O80946,none +16.9548485,PR:O80977,http://purl.obolibrary.org/obo/PR_O80977,none +16.9548485,PR:O81077,http://purl.obolibrary.org/obo/PR_O81077,none +16.9548485,PR:O81123,http://purl.obolibrary.org/obo/PR_O81123,none +16.9548485,PR:O81313,http://purl.obolibrary.org/obo/PR_O81313,none +16.9548485,PR:O81323,http://purl.obolibrary.org/obo/PR_O81323,none +16.9548485,PR:O81635,http://purl.obolibrary.org/obo/PR_O81635,none +16.9548485,PR:O81864,http://purl.obolibrary.org/obo/PR_O81864,none +16.9548485,PR:O81900,http://purl.obolibrary.org/obo/PR_O81900,none +16.9548485,PR:O82081,http://purl.obolibrary.org/obo/PR_O82081,none +16.9548485,PR:O82166,http://purl.obolibrary.org/obo/PR_O82166,none +16.9548485,PR:O82243,http://purl.obolibrary.org/obo/PR_O82243,none +16.9548485,PR:O82255,http://purl.obolibrary.org/obo/PR_O82255,none +16.9548485,PR:O82258,http://purl.obolibrary.org/obo/PR_O82258,none +16.9548485,PR:O82268,http://purl.obolibrary.org/obo/PR_O82268,none +16.9548485,PR:O82286,http://purl.obolibrary.org/obo/PR_O82286,none +16.9548485,PR:O82380,http://purl.obolibrary.org/obo/PR_O82380,none +16.9548485,PR:O82486,http://purl.obolibrary.org/obo/PR_O82486,none +16.9548485,PR:O82598,http://purl.obolibrary.org/obo/PR_O82598,none +16.9548485,PR:O94083,http://purl.obolibrary.org/obo/PR_O94083,none +16.9548485,PR:O94388,http://purl.obolibrary.org/obo/PR_O94388,none +16.9548485,PR:O96002,http://purl.obolibrary.org/obo/PR_O96002,none +16.9548485,PR:P00507,http://purl.obolibrary.org/obo/PR_P00507,none +16.9548485,PR:P01101,http://purl.obolibrary.org/obo/PR_P01101,none +16.9548485,PR:P02789,http://purl.obolibrary.org/obo/PR_P02789,none +16.9548485,PR:P02879,http://purl.obolibrary.org/obo/PR_P02879,none +16.9548485,PR:P04186,http://purl.obolibrary.org/obo/PR_P04186,none +16.9548485,PR:P04449,http://purl.obolibrary.org/obo/PR_P04449,none +16.9548485,PR:P04807,http://purl.obolibrary.org/obo/PR_P04807,none +16.9548485,PR:P05046,http://purl.obolibrary.org/obo/PR_P05046,none +16.9548485,PR:P05164,http://purl.obolibrary.org/obo/PR_P05164,myeloperoxidase (human) +16.9548485,PR:P05545,http://purl.obolibrary.org/obo/PR_P05545,none +16.9548485,PR:P05733,http://purl.obolibrary.org/obo/PR_P05733,none +16.9548485,PR:P05744,http://purl.obolibrary.org/obo/PR_P05744,none +16.9548485,PR:P06126,http://purl.obolibrary.org/obo/PR_P06126,T-cell surface glycoprotein CD1a (human) +16.9548485,PR:P06700,http://purl.obolibrary.org/obo/PR_P06700,none +16.9548485,PR:P06738,http://purl.obolibrary.org/obo/PR_P06738,none +16.9548485,PR:P06876,http://purl.obolibrary.org/obo/PR_P06876,none +16.9548485,PR:P07266,http://purl.obolibrary.org/obo/PR_P07266,none +16.9548485,PR:P07486,http://purl.obolibrary.org/obo/PR_P07486,none +16.9548485,PR:P07560,http://purl.obolibrary.org/obo/PR_P07560,none +16.9548485,PR:P07664,http://purl.obolibrary.org/obo/PR_P07664,none +16.9548485,PR:P07713,http://purl.obolibrary.org/obo/PR_P07713,none +16.9548485,PR:P08009,http://purl.obolibrary.org/obo/PR_P08009,none +16.9548485,PR:P08071,http://purl.obolibrary.org/obo/PR_P08071,none +16.9548485,PR:P08175,http://purl.obolibrary.org/obo/PR_P08175,none +16.9548485,PR:P08985,http://purl.obolibrary.org/obo/PR_P08985,none +16.9548485,PR:P09083,http://purl.obolibrary.org/obo/PR_P09083,none +16.9548485,PR:P0AD74,http://purl.obolibrary.org/obo/PR_P0AD74,none +16.9548485,PR:P0AF67,http://purl.obolibrary.org/obo/PR_P0AF67,none +16.9548485,PR:P0C5E2,http://purl.obolibrary.org/obo/PR_P0C5E2,none +16.9548485,PR:P0CB22,http://purl.obolibrary.org/obo/PR_P0CB22,none +16.9548485,PR:P0CG36,http://purl.obolibrary.org/obo/PR_P0CG36,cryptic family protein 1B (human) +16.9548485,PR:P0CK95,http://purl.obolibrary.org/obo/PR_P0CK95,none +16.9548485,PR:P0CT36,http://purl.obolibrary.org/obo/PR_P0CT36,none +16.9548485,PR:P0CT41,http://purl.obolibrary.org/obo/PR_P0CT41,none +16.9548485,PR:P0CT61,http://purl.obolibrary.org/obo/PR_P0CT61,none +16.9548485,PR:P0CT69,http://purl.obolibrary.org/obo/PR_P0CT69,none +16.9548485,PR:P0CT78,http://purl.obolibrary.org/obo/PR_P0CT78,none +16.9548485,PR:P0CT82,http://purl.obolibrary.org/obo/PR_P0CT82,none +16.9548485,PR:P0CW23,http://purl.obolibrary.org/obo/PR_P0CW23,A-kinase anchor protein inhibitor 1 (human) +16.9548485,PR:P0CX35,http://purl.obolibrary.org/obo/PR_P0CX35,none +16.9548485,PR:P0CX36,http://purl.obolibrary.org/obo/PR_P0CX36,none +16.9548485,PR:P0CX42,http://purl.obolibrary.org/obo/PR_P0CX42,none +16.9548485,PR:P0CX83,http://purl.obolibrary.org/obo/PR_P0CX83,none +16.9548485,PR:P0CY15,http://purl.obolibrary.org/obo/PR_P0CY15,none +16.9548485,PR:P0CY20,http://purl.obolibrary.org/obo/PR_P0CY20,none +16.9548485,PR:P0DH95,http://purl.obolibrary.org/obo/PR_P0DH95,none +16.9548485,PR:P0DKB3,http://purl.obolibrary.org/obo/PR_P0DKB3,none +16.9548485,PR:P0DKC3,http://purl.obolibrary.org/obo/PR_P0DKC3,none +16.9548485,PR:P0DKC6,http://purl.obolibrary.org/obo/PR_P0DKC6,none +16.9548485,PR:P0DMW4,http://purl.obolibrary.org/obo/PR_P0DMW4,small integral membrane protein 10-like protein 2A (human) +16.9548485,PR:P10211,http://purl.obolibrary.org/obo/PR_P10211,none +16.9548485,PR:P10591,http://purl.obolibrary.org/obo/PR_P10591,none +16.9548485,PR:P10797,http://purl.obolibrary.org/obo/PR_P10797,none +16.9548485,PR:P10798,http://purl.obolibrary.org/obo/PR_P10798,none +16.9548485,PR:P10853,http://purl.obolibrary.org/obo/PR_P10853,none +16.9548485,PR:P11633,http://purl.obolibrary.org/obo/PR_P11633,none +16.9548485,PR:P11672,http://purl.obolibrary.org/obo/PR_P11672,none +16.9548485,PR:P11746,http://purl.obolibrary.org/obo/PR_P11746,none +16.9548485,PR:P11829,http://purl.obolibrary.org/obo/PR_P11829,none +16.9548485,PR:P11980,http://purl.obolibrary.org/obo/PR_P11980,none +16.9548485,PR:P12687,http://purl.obolibrary.org/obo/PR_P12687,none +16.9548485,PR:P12887,http://purl.obolibrary.org/obo/PR_P12887,none +16.9548485,PR:P12938,http://purl.obolibrary.org/obo/PR_P12938,none +16.9548485,PR:P13022,http://purl.obolibrary.org/obo/PR_P13022,none +16.9548485,PR:P13853,http://purl.obolibrary.org/obo/PR_P13853,none +16.9548485,PR:P14204,http://purl.obolibrary.org/obo/PR_P14204,none +16.9548485,PR:P14426-1,http://purl.obolibrary.org/obo/PR_P14426-1,none +16.9548485,PR:P14743,http://purl.obolibrary.org/obo/PR_P14743,none +16.9548485,PR:P14840,http://purl.obolibrary.org/obo/PR_P14840,none +16.9548485,PR:P16070,http://purl.obolibrary.org/obo/PR_P16070,CD44 antigen (human) +16.9548485,PR:P16150,http://purl.obolibrary.org/obo/PR_P16150,leukosialin (human) +16.9548485,PR:P17542,http://purl.obolibrary.org/obo/PR_P17542,T-cell acute lymphocytic leukemia protein 1 (human) +16.9548485,PR:P17813,http://purl.obolibrary.org/obo/PR_P17813,endoglin (human) +16.9548485,PR:P17891,http://purl.obolibrary.org/obo/PR_P17891,none +16.9548485,PR:P17971,http://purl.obolibrary.org/obo/PR_P17971,none +16.9548485,PR:P18130,http://purl.obolibrary.org/obo/PR_P18130,none +16.9548485,PR:P18359,http://purl.obolibrary.org/obo/PR_P18359,none +16.9548485,PR:P18590,http://purl.obolibrary.org/obo/PR_P18590,none +16.9548485,PR:P18612,http://purl.obolibrary.org/obo/PR_P18612,none +16.9548485,PR:P19097,http://purl.obolibrary.org/obo/PR_P19097,none +16.9548485,PR:P19313,http://purl.obolibrary.org/obo/PR_P19313,none +16.9548485,PR:P20007,http://purl.obolibrary.org/obo/PR_P20007,none +16.9548485,PR:P20273,http://purl.obolibrary.org/obo/PR_P20273,B-cell receptor CD22 (human) +16.9548485,PR:P20420,http://purl.obolibrary.org/obo/PR_P20420,none +16.9548485,PR:P21757,http://purl.obolibrary.org/obo/PR_P21757,macrophage scavenger receptor types I and II (human) +16.9548485,PR:P22283,http://purl.obolibrary.org/obo/PR_P22283,none +16.9548485,PR:P23369,http://purl.obolibrary.org/obo/PR_P23369,none +16.9548485,PR:P23595,http://purl.obolibrary.org/obo/PR_P23595,none +16.9548485,PR:P23625,http://purl.obolibrary.org/obo/PR_P23625,none +16.9548485,PR:P23824,http://purl.obolibrary.org/obo/PR_P23824,none +16.9548485,PR:P24095,http://purl.obolibrary.org/obo/PR_P24095,none +16.9548485,PR:P24309,http://purl.obolibrary.org/obo/PR_P24309,none +16.9548485,PR:P24886,http://purl.obolibrary.org/obo/PR_P24886,none +16.9548485,PR:P25348,http://purl.obolibrary.org/obo/PR_P25348,none +16.9548485,PR:P25368,http://purl.obolibrary.org/obo/PR_P25368,none +16.9548485,PR:P25373,http://purl.obolibrary.org/obo/PR_P25373,none +16.9548485,PR:P25377,http://purl.obolibrary.org/obo/PR_P25377,none +16.9548485,PR:P25381,http://purl.obolibrary.org/obo/PR_P25381,none +16.9548485,PR:P25555,http://purl.obolibrary.org/obo/PR_P25555,none +16.9548485,PR:P25568,http://purl.obolibrary.org/obo/PR_P25568,none +16.9548485,PR:P25576,http://purl.obolibrary.org/obo/PR_P25576,none +16.9548485,PR:P25649,http://purl.obolibrary.org/obo/PR_P25649,none +16.9548485,PR:P25659,http://purl.obolibrary.org/obo/PR_P25659,none +16.9548485,PR:P25701,http://purl.obolibrary.org/obo/PR_P25701,none +16.9548485,PR:P25822,http://purl.obolibrary.org/obo/PR_P25822,none +16.9548485,PR:P26051,http://purl.obolibrary.org/obo/PR_P26051,none +16.9548485,PR:P27043,http://purl.obolibrary.org/obo/PR_P27043,none +16.9548485,PR:P27472,http://purl.obolibrary.org/obo/PR_P27472,none +16.9548485,PR:P28005,http://purl.obolibrary.org/obo/PR_P28005,none +16.9548485,PR:P28233,http://purl.obolibrary.org/obo/PR_P28233,none +16.9548485,PR:P28320,http://purl.obolibrary.org/obo/PR_P28320,none +16.9548485,PR:P28627,http://purl.obolibrary.org/obo/PR_P28627,none +16.9548485,PR:P28701,http://purl.obolibrary.org/obo/PR_P28701,none +16.9548485,PR:P28742,http://purl.obolibrary.org/obo/PR_P28742,none +16.9548485,PR:P28906,http://purl.obolibrary.org/obo/PR_P28906,hematopoietic progenitor cell antigen CD34 (human) +16.9548485,PR:P29539,http://purl.obolibrary.org/obo/PR_P29539,none +16.9548485,PR:P31374,http://purl.obolibrary.org/obo/PR_P31374,none +16.9548485,PR:P31755,http://purl.obolibrary.org/obo/PR_P31755,none +16.9548485,PR:P32047,http://purl.obolibrary.org/obo/PR_P32047,none +16.9548485,PR:P32266,http://purl.obolibrary.org/obo/PR_P32266,none +16.9548485,PR:P32458,http://purl.obolibrary.org/obo/PR_P32458,none +16.9548485,PR:P32490,http://purl.obolibrary.org/obo/PR_P32490,none +16.9548485,PR:P32525,http://purl.obolibrary.org/obo/PR_P32525,none +16.9548485,PR:P32572,http://purl.obolibrary.org/obo/PR_P32572,none +16.9548485,PR:P32781,http://purl.obolibrary.org/obo/PR_P32781,none +16.9548485,PR:P32857,http://purl.obolibrary.org/obo/PR_P32857,none +16.9548485,PR:P32913,http://purl.obolibrary.org/obo/PR_P32913,none +16.9548485,PR:P32961,http://purl.obolibrary.org/obo/PR_P32961,none +16.9548485,PR:P33441,http://purl.obolibrary.org/obo/PR_P33441,none +16.9548485,PR:P34078,http://purl.obolibrary.org/obo/PR_P34078,none +16.9548485,PR:P34111,http://purl.obolibrary.org/obo/PR_P34111,none +16.9548485,PR:P34112,http://purl.obolibrary.org/obo/PR_P34112,none +16.9548485,PR:P34228,http://purl.obolibrary.org/obo/PR_P34228,none +16.9548485,PR:P34374,http://purl.obolibrary.org/obo/PR_P34374,none +16.9548485,PR:P34687,http://purl.obolibrary.org/obo/PR_P34687,none +16.9548485,PR:P34758,http://purl.obolibrary.org/obo/PR_P34758,none +16.9548485,PR:P34766,http://purl.obolibrary.org/obo/PR_P34766,none +16.9548485,PR:P35181,http://purl.obolibrary.org/obo/PR_P35181,none +16.9548485,PR:P35632,http://purl.obolibrary.org/obo/PR_P35632,none +16.9548485,PR:P35719,http://purl.obolibrary.org/obo/PR_P35719,none +16.9548485,PR:P36032,http://purl.obolibrary.org/obo/PR_P36032,none +16.9548485,PR:P36076,http://purl.obolibrary.org/obo/PR_P36076,none +16.9548485,PR:P36421,http://purl.obolibrary.org/obo/PR_P36421,none +16.9548485,PR:P38115,http://purl.obolibrary.org/obo/PR_P38115,none +16.9548485,PR:P38175,http://purl.obolibrary.org/obo/PR_P38175,none +16.9548485,PR:P38244,http://purl.obolibrary.org/obo/PR_P38244,none +16.9548485,PR:P38254,http://purl.obolibrary.org/obo/PR_P38254,none +16.9548485,PR:P38255,http://purl.obolibrary.org/obo/PR_P38255,none +16.9548485,PR:P38265,http://purl.obolibrary.org/obo/PR_P38265,none +16.9548485,PR:P38308,http://purl.obolibrary.org/obo/PR_P38308,none +16.9548485,PR:P38345,http://purl.obolibrary.org/obo/PR_P38345,none +16.9548485,PR:P38347,http://purl.obolibrary.org/obo/PR_P38347,none +16.9548485,PR:P38636,http://purl.obolibrary.org/obo/PR_P38636,none +16.9548485,PR:P38839,http://purl.obolibrary.org/obo/PR_P38839,none +16.9548485,PR:P38851,http://purl.obolibrary.org/obo/PR_P38851,none +16.9548485,PR:P38913,http://purl.obolibrary.org/obo/PR_P38913,none +16.9548485,PR:P39713,http://purl.obolibrary.org/obo/PR_P39713,none +16.9548485,PR:P39719,http://purl.obolibrary.org/obo/PR_P39719,none +16.9548485,PR:P39720,http://purl.obolibrary.org/obo/PR_P39720,none +16.9548485,PR:P39929,http://purl.obolibrary.org/obo/PR_P39929,none +16.9548485,PR:P40043,http://purl.obolibrary.org/obo/PR_P40043,none +16.9548485,PR:P40085,http://purl.obolibrary.org/obo/PR_P40085,none +16.9548485,PR:P40098,http://purl.obolibrary.org/obo/PR_P40098,none +16.9548485,PR:P40160,http://purl.obolibrary.org/obo/PR_P40160,none +16.9548485,PR:P40231,http://purl.obolibrary.org/obo/PR_P40231,none +16.9548485,PR:P40357,http://purl.obolibrary.org/obo/PR_P40357,none +16.9548485,PR:P40458,http://purl.obolibrary.org/obo/PR_P40458,none +16.9548485,PR:P40499,http://purl.obolibrary.org/obo/PR_P40499,none +16.9548485,PR:P40561,http://purl.obolibrary.org/obo/PR_P40561,none +16.9548485,PR:P40792,http://purl.obolibrary.org/obo/PR_P40792,none +16.9548485,PR:P40899,http://purl.obolibrary.org/obo/PR_P40899,none +16.9548485,PR:P41056,http://purl.obolibrary.org/obo/PR_P41056,none +16.9548485,PR:P41068,http://purl.obolibrary.org/obo/PR_P41068,none +16.9548485,PR:P41800,http://purl.obolibrary.org/obo/PR_P41800,none +16.9548485,PR:P41812,http://purl.obolibrary.org/obo/PR_P41812,none +16.9548485,PR:P41829,http://purl.obolibrary.org/obo/PR_P41829,none +16.9548485,PR:P42643,http://purl.obolibrary.org/obo/PR_P42643,none +16.9548485,PR:P42743,http://purl.obolibrary.org/obo/PR_P42743,none +16.9548485,PR:P42857,http://purl.obolibrary.org/obo/PR_P42857,neuronal vesicle trafficking-associated protein 1 (human) +16.9548485,PR:P43069,http://purl.obolibrary.org/obo/PR_P43069,none +16.9548485,PR:P43298,http://purl.obolibrary.org/obo/PR_P43298,none +16.9548485,PR:P43392,http://purl.obolibrary.org/obo/PR_P43392,none +16.9548485,PR:P43550,http://purl.obolibrary.org/obo/PR_P43550,none +16.9548485,PR:P43573,http://purl.obolibrary.org/obo/PR_P43573,none +16.9548485,PR:P45897,http://purl.obolibrary.org/obo/PR_P45897,none +16.9548485,PR:P46607,http://purl.obolibrary.org/obo/PR_P46607,none +16.9548485,PR:P46690,http://purl.obolibrary.org/obo/PR_P46690,none +16.9548485,PR:P46961,http://purl.obolibrary.org/obo/PR_P46961,none +16.9548485,PR:P46988,http://purl.obolibrary.org/obo/PR_P46988,none +16.9548485,PR:P46990,http://purl.obolibrary.org/obo/PR_P46990,none +16.9548485,PR:P46993,http://purl.obolibrary.org/obo/PR_P46993,none +16.9548485,PR:P47002,http://purl.obolibrary.org/obo/PR_P47002,none +16.9548485,PR:P47169,http://purl.obolibrary.org/obo/PR_P47169,none +16.9548485,PR:P47178,http://purl.obolibrary.org/obo/PR_P47178,none +16.9548485,PR:P47737,http://purl.obolibrary.org/obo/PR_P47737,none +16.9548485,PR:P47927,http://purl.obolibrary.org/obo/PR_P47927,none +16.9548485,PR:P47980,http://purl.obolibrary.org/obo/PR_P47980,none +16.9548485,PR:P48235,http://purl.obolibrary.org/obo/PR_P48235,none +16.9548485,PR:P48412,http://purl.obolibrary.org/obo/PR_P48412,none +16.9548485,PR:P48731,http://purl.obolibrary.org/obo/PR_P48731,none +16.9548485,PR:P48785,http://purl.obolibrary.org/obo/PR_P48785,none +16.9548485,PR:P49573,http://purl.obolibrary.org/obo/PR_P49573,none +16.9548485,PR:P50278,http://purl.obolibrary.org/obo/PR_P50278,none +16.9548485,PR:P50427,http://purl.obolibrary.org/obo/PR_P50427,none +16.9548485,PR:P50896,http://purl.obolibrary.org/obo/PR_P50896,none +16.9548485,PR:P50944,http://purl.obolibrary.org/obo/PR_P50944,none +16.9548485,PR:P51401,http://purl.obolibrary.org/obo/PR_P51401,none +16.9548485,PR:P51568,http://purl.obolibrary.org/obo/PR_P51568,none +16.9548485,PR:P51681,http://purl.obolibrary.org/obo/PR_P51681,C-C chemokine receptor type 5 (human) +16.9548485,PR:P51682,http://purl.obolibrary.org/obo/PR_P51682,none +16.9548485,PR:P51684,http://purl.obolibrary.org/obo/PR_P51684,C-C chemokine receptor type 6 (human) +16.9548485,PR:P51882,http://purl.obolibrary.org/obo/PR_P51882,none +16.9548485,PR:P52302,http://purl.obolibrary.org/obo/PR_P52302,none +16.9548485,PR:P53165,http://purl.obolibrary.org/obo/PR_P53165,none +16.9548485,PR:P53169,http://purl.obolibrary.org/obo/PR_P53169,none +16.9548485,PR:P53230,http://purl.obolibrary.org/obo/PR_P53230,none +16.9548485,PR:P53311,http://purl.obolibrary.org/obo/PR_P53311,none +16.9548485,PR:P53725,http://purl.obolibrary.org/obo/PR_P53725,none +16.9548485,PR:P53799,http://purl.obolibrary.org/obo/PR_P53799,none +16.9548485,PR:P53916,http://purl.obolibrary.org/obo/PR_P53916,none +16.9548485,PR:P54194,http://purl.obolibrary.org/obo/PR_P54194,none +16.9548485,PR:P54361,http://purl.obolibrary.org/obo/PR_P54361,none +16.9548485,PR:P55097,http://purl.obolibrary.org/obo/PR_P55097,none +16.9548485,PR:P56289,http://purl.obolibrary.org/obo/PR_P56289,none +16.9548485,PR:P56567,http://purl.obolibrary.org/obo/PR_P56567,none +16.9548485,PR:P59226,http://purl.obolibrary.org/obo/PR_P59226,none +16.9548485,PR:P59289,http://purl.obolibrary.org/obo/PR_P59289,none +16.9548485,PR:P61039,http://purl.obolibrary.org/obo/PR_P61039,none +16.9548485,PR:P61073,http://purl.obolibrary.org/obo/PR_P61073,C-X-C chemokine receptor type 4 (human) +16.9548485,PR:P61361,http://purl.obolibrary.org/obo/PR_P61361,none +16.9548485,PR:P61363,http://purl.obolibrary.org/obo/PR_P61363,none +16.9548485,PR:P62158,http://purl.obolibrary.org/obo/PR_P62158,none +16.9548485,PR:P69921,http://purl.obolibrary.org/obo/PR_P69921,none +16.9548485,PR:P71032,http://purl.obolibrary.org/obo/PR_P71032,none +16.9548485,PR:P79727,http://purl.obolibrary.org/obo/PR_P79727,none +16.9548485,PR:P81900,http://purl.obolibrary.org/obo/PR_P81900,none +16.9548485,PR:P81910,http://purl.obolibrary.org/obo/PR_P81910,none +16.9548485,PR:P81917,http://purl.obolibrary.org/obo/PR_P81917,none +16.9548485,PR:P82733,http://purl.obolibrary.org/obo/PR_P82733,none +16.9548485,PR:P82769,http://purl.obolibrary.org/obo/PR_P82769,none +16.9548485,PR:P82770,http://purl.obolibrary.org/obo/PR_P82770,none +16.9548485,PR:P82775,http://purl.obolibrary.org/obo/PR_P82775,none +16.9548485,PR:P82777,http://purl.obolibrary.org/obo/PR_P82777,none +16.9548485,PR:P87131,http://purl.obolibrary.org/obo/PR_P87131,none +16.9548485,PR:P87235,http://purl.obolibrary.org/obo/PR_P87235,none +16.9548485,PR:P91623,http://purl.obolibrary.org/obo/PR_P91623,none +16.9548485,PR:P92201,http://purl.obolibrary.org/obo/PR_P92201,none +16.9548485,PR:P92961,http://purl.obolibrary.org/obo/PR_P92961,none +16.9548485,PR:P92962,http://purl.obolibrary.org/obo/PR_P92962,none +16.9548485,PR:P92980,http://purl.obolibrary.org/obo/PR_P92980,none +16.9548485,PR:P93046,http://purl.obolibrary.org/obo/PR_P93046,none +16.9548485,PR:P93825,http://purl.obolibrary.org/obo/PR_P93825,none +16.9548485,PR:P93832,http://purl.obolibrary.org/obo/PR_P93832,none +16.9548485,PR:P9WH49,http://purl.obolibrary.org/obo/PR_P9WH49,none +16.9548485,PR:P9WHH3,http://purl.obolibrary.org/obo/PR_P9WHH3,none +16.9548485,PR:Q00776,http://purl.obolibrary.org/obo/PR_Q00776,none +16.9548485,PR:Q01501,http://purl.obolibrary.org/obo/PR_Q01501,none +16.9548485,PR:Q01589,http://purl.obolibrary.org/obo/PR_Q01589,none +16.9548485,PR:Q01593,http://purl.obolibrary.org/obo/PR_Q01593,none +16.9548485,PR:Q01704,http://purl.obolibrary.org/obo/PR_Q01704,none +16.9548485,PR:Q02361,http://purl.obolibrary.org/obo/PR_Q02361,none +16.9548485,PR:Q02773,http://purl.obolibrary.org/obo/PR_Q02773,none +16.9548485,PR:Q02775,http://purl.obolibrary.org/obo/PR_Q02775,none +16.9548485,PR:Q02793,http://purl.obolibrary.org/obo/PR_Q02793,none +16.9548485,PR:Q02931,http://purl.obolibrary.org/obo/PR_Q02931,none +16.9548485,PR:Q03010,http://purl.obolibrary.org/obo/PR_Q03010,none +16.9548485,PR:Q03323,http://purl.obolibrary.org/obo/PR_Q03323,none +16.9548485,PR:Q03412,http://purl.obolibrary.org/obo/PR_Q03412,none +16.9548485,PR:Q03690,http://purl.obolibrary.org/obo/PR_Q03690,none +16.9548485,PR:Q03770,http://purl.obolibrary.org/obo/PR_Q03770,none +16.9548485,PR:Q03776,http://purl.obolibrary.org/obo/PR_Q03776,none +16.9548485,PR:Q03880,http://purl.obolibrary.org/obo/PR_Q03880,none +16.9548485,PR:Q03957,http://purl.obolibrary.org/obo/PR_Q03957,none +16.9548485,PR:Q04341,http://purl.obolibrary.org/obo/PR_Q04341,none +16.9548485,PR:Q04836,http://purl.obolibrary.org/obo/PR_Q04836,none +16.9548485,PR:Q04894,http://purl.obolibrary.org/obo/PR_Q04894,none +16.9548485,PR:Q05123,http://purl.obolibrary.org/obo/PR_Q05123,none +16.9548485,PR:Q05518,http://purl.obolibrary.org/obo/PR_Q05518,none +16.9548485,PR:Q05785,http://purl.obolibrary.org/obo/PR_Q05785,none +16.9548485,PR:Q058N4,http://purl.obolibrary.org/obo/PR_Q058N4,none +16.9548485,PR:Q06091,http://purl.obolibrary.org/obo/PR_Q06091,none +16.9548485,PR:Q06485,http://purl.obolibrary.org/obo/PR_Q06485,none +16.9548485,PR:Q06493,http://purl.obolibrary.org/obo/PR_Q06493,none +16.9548485,PR:Q06707,http://purl.obolibrary.org/obo/PR_Q06707,none +16.9548485,PR:Q06798,http://purl.obolibrary.org/obo/PR_Q06798,none +16.9548485,PR:Q08176,http://purl.obolibrary.org/obo/PR_Q08176,none +16.9548485,PR:Q08773,http://purl.obolibrary.org/obo/PR_Q08773,none +16.9548485,PR:Q08857,http://purl.obolibrary.org/obo/PR_Q08857,none +16.9548485,PR:Q08904,http://purl.obolibrary.org/obo/PR_Q08904,none +16.9548485,PR:Q08A72,http://purl.obolibrary.org/obo/PR_Q08A72,none +16.9548485,PR:Q08BY1,http://purl.obolibrary.org/obo/PR_Q08BY1,none +16.9548485,PR:Q09808,http://purl.obolibrary.org/obo/PR_Q09808,none +16.9548485,PR:Q09897,http://purl.obolibrary.org/obo/PR_Q09897,none +16.9548485,PR:Q09EF7,http://purl.obolibrary.org/obo/PR_Q09EF7,none +16.9548485,PR:Q0P426,http://purl.obolibrary.org/obo/PR_Q0P426,none +16.9548485,PR:Q0V8T6,http://purl.obolibrary.org/obo/PR_Q0V8T6,none +16.9548485,PR:Q0WMY5,http://purl.obolibrary.org/obo/PR_Q0WMY5,none +16.9548485,PR:Q0WMZ5,http://purl.obolibrary.org/obo/PR_Q0WMZ5,none +16.9548485,PR:Q0WNR6,http://purl.obolibrary.org/obo/PR_Q0WNR6,none +16.9548485,PR:Q0WP12,http://purl.obolibrary.org/obo/PR_Q0WP12,none +16.9548485,PR:Q0WPQ2,http://purl.obolibrary.org/obo/PR_Q0WPQ2,none +16.9548485,PR:Q0WPR6,http://purl.obolibrary.org/obo/PR_Q0WPR6,none +16.9548485,PR:Q0WQN9,http://purl.obolibrary.org/obo/PR_Q0WQN9,none +16.9548485,PR:Q0WRB0,http://purl.obolibrary.org/obo/PR_Q0WRB0,none +16.9548485,PR:Q0WRJ2,http://purl.obolibrary.org/obo/PR_Q0WRJ2,none +16.9548485,PR:Q0WU02,http://purl.obolibrary.org/obo/PR_Q0WU02,none +16.9548485,PR:Q0WV96,http://purl.obolibrary.org/obo/PR_Q0WV96,none +16.9548485,PR:Q0WW21,http://purl.obolibrary.org/obo/PR_Q0WW21,none +16.9548485,PR:Q10316,http://purl.obolibrary.org/obo/PR_Q10316,none +16.9548485,PR:Q10330,http://purl.obolibrary.org/obo/PR_Q10330,none +16.9548485,PR:Q10437,http://purl.obolibrary.org/obo/PR_Q10437,none +16.9548485,PR:Q10445,http://purl.obolibrary.org/obo/PR_Q10445,none +16.9548485,PR:Q10655,http://purl.obolibrary.org/obo/PR_Q10655,none +16.9548485,PR:Q12150,http://purl.obolibrary.org/obo/PR_Q12150,none +16.9548485,PR:Q12265,http://purl.obolibrary.org/obo/PR_Q12265,none +16.9548485,PR:Q12314,http://purl.obolibrary.org/obo/PR_Q12314,none +16.9548485,PR:Q12348,http://purl.obolibrary.org/obo/PR_Q12348,none +16.9548485,PR:Q12362,http://purl.obolibrary.org/obo/PR_Q12362,none +16.9548485,PR:Q12367,http://purl.obolibrary.org/obo/PR_Q12367,none +16.9548485,PR:Q12402,http://purl.obolibrary.org/obo/PR_Q12402,none +16.9548485,PR:Q12406,http://purl.obolibrary.org/obo/PR_Q12406,none +16.9548485,PR:Q12429,http://purl.obolibrary.org/obo/PR_Q12429,none +16.9548485,PR:Q12520,http://purl.obolibrary.org/obo/PR_Q12520,none +16.9548485,PR:Q12697,http://purl.obolibrary.org/obo/PR_Q12697,none +16.9548485,PR:Q147G5,http://purl.obolibrary.org/obo/PR_Q147G5,none +16.9548485,PR:Q14BA6,http://purl.obolibrary.org/obo/PR_Q14BA6,none +16.9548485,PR:Q17941,http://purl.obolibrary.org/obo/PR_Q17941,none +16.9548485,PR:Q18297,http://purl.obolibrary.org/obo/PR_Q18297,none +16.9548485,PR:Q19266,http://purl.obolibrary.org/obo/PR_Q19266,none +16.9548485,PR:Q19746,http://purl.obolibrary.org/obo/PR_Q19746,none +16.9548485,PR:Q1ED39,http://purl.obolibrary.org/obo/PR_Q1ED39,lysine-rich nucleolar protein 1 (human) +16.9548485,PR:Q1G3T1,http://purl.obolibrary.org/obo/PR_Q1G3T1,none +16.9548485,PR:Q1G7G9,http://purl.obolibrary.org/obo/PR_Q1G7G9,none +16.9548485,PR:Q1LYB6,http://purl.obolibrary.org/obo/PR_Q1LYB6,none +16.9548485,PR:Q1MTQ7,http://purl.obolibrary.org/obo/PR_Q1MTQ7,none +16.9548485,PR:Q1PE39,http://purl.obolibrary.org/obo/PR_Q1PE39,none +16.9548485,PR:Q1PER6,http://purl.obolibrary.org/obo/PR_Q1PER6,none +16.9548485,PR:Q1PET6,http://purl.obolibrary.org/obo/PR_Q1PET6,none +16.9548485,PR:Q1PEY6,http://purl.obolibrary.org/obo/PR_Q1PEY6,none +16.9548485,PR:Q1RMZ1,http://purl.obolibrary.org/obo/PR_Q1RMZ1,S-adenosylmethionine sensor upstream of mTORC1 (human) +16.9548485,PR:Q20JQ7,http://purl.obolibrary.org/obo/PR_Q20JQ7,none +16.9548485,PR:Q21017,http://purl.obolibrary.org/obo/PR_Q21017,none +16.9548485,PR:Q21642,http://purl.obolibrary.org/obo/PR_Q21642,none +16.9548485,PR:Q22036,http://purl.obolibrary.org/obo/PR_Q22036,none +16.9548485,PR:Q23027,http://purl.obolibrary.org/obo/PR_Q23027,none +16.9548485,PR:Q24133,http://purl.obolibrary.org/obo/PR_Q24133,none +16.9548485,PR:Q24491,http://purl.obolibrary.org/obo/PR_Q24491,none +16.9548485,PR:Q27575,http://purl.obolibrary.org/obo/PR_Q27575,none +16.9548485,PR:Q2FZP7,http://purl.obolibrary.org/obo/PR_Q2FZP7,none +16.9548485,PR:Q2G155,http://purl.obolibrary.org/obo/PR_Q2G155,none +16.9548485,PR:Q2IAL7,http://purl.obolibrary.org/obo/PR_Q2IAL7,none +16.9548485,PR:Q2V419,http://purl.obolibrary.org/obo/PR_Q2V419,none +16.9548485,PR:Q2VLH6,http://purl.obolibrary.org/obo/PR_Q2VLH6,none +16.9548485,PR:Q2XVR3,http://purl.obolibrary.org/obo/PR_Q2XVR3,none +16.9548485,PR:Q2YFS2,http://purl.obolibrary.org/obo/PR_Q2YFS2,none +16.9548485,PR:Q304A0,http://purl.obolibrary.org/obo/PR_Q304A0,none +16.9548485,PR:Q38819,http://purl.obolibrary.org/obo/PR_Q38819,none +16.9548485,PR:Q38860,http://purl.obolibrary.org/obo/PR_Q38860,none +16.9548485,PR:Q38909,http://purl.obolibrary.org/obo/PR_Q38909,none +16.9548485,PR:Q38945,http://purl.obolibrary.org/obo/PR_Q38945,none +16.9548485,PR:Q39067,http://purl.obolibrary.org/obo/PR_Q39067,none +16.9548485,PR:Q39138,http://purl.obolibrary.org/obo/PR_Q39138,none +16.9548485,PR:Q39183,http://purl.obolibrary.org/obo/PR_Q39183,none +16.9548485,PR:Q39203,http://purl.obolibrary.org/obo/PR_Q39203,none +16.9548485,PR:Q39253,http://purl.obolibrary.org/obo/PR_Q39253,none +16.9548485,PR:Q3E7B2,http://purl.obolibrary.org/obo/PR_Q3E7B2,none +16.9548485,PR:Q3E906,http://purl.obolibrary.org/obo/PR_Q3E906,none +16.9548485,PR:Q3E9T2,http://purl.obolibrary.org/obo/PR_Q3E9T2,none +16.9548485,PR:Q3ED65,http://purl.obolibrary.org/obo/PR_Q3ED65,none +16.9548485,PR:Q3TD16,http://purl.obolibrary.org/obo/PR_Q3TD16,none +16.9548485,PR:Q3UHD3,http://purl.obolibrary.org/obo/PR_Q3UHD3,none +16.9548485,PR:Q3UKK2,http://purl.obolibrary.org/obo/PR_Q3UKK2,none +16.9548485,PR:Q3Y4E2,http://purl.obolibrary.org/obo/PR_Q3Y4E2,none +16.9548485,PR:Q3YL57,http://purl.obolibrary.org/obo/PR_Q3YL57,none +16.9548485,PR:Q41220,http://purl.obolibrary.org/obo/PR_Q41220,none +16.9548485,PR:Q41931,http://purl.obolibrary.org/obo/PR_Q41931,none +16.9548485,PR:Q41975,http://purl.obolibrary.org/obo/PR_Q41975,none +16.9548485,PR:Q42374,http://purl.obolibrary.org/obo/PR_Q42374,none +16.9548485,PR:Q42484,http://purl.obolibrary.org/obo/PR_Q42484,none +16.9548485,PR:Q42539,http://purl.obolibrary.org/obo/PR_Q42539,none +16.9548485,PR:Q42572,http://purl.obolibrary.org/obo/PR_Q42572,none +16.9548485,PR:Q43191,http://purl.obolibrary.org/obo/PR_Q43191,none +16.9548485,PR:Q43349,http://purl.obolibrary.org/obo/PR_Q43349,none +16.9548485,PR:Q43386,http://purl.obolibrary.org/obo/PR_Q43386,none +16.9548485,PR:Q45589,http://purl.obolibrary.org/obo/PR_Q45589,none +16.9548485,PR:Q497N6,http://purl.obolibrary.org/obo/PR_Q497N6,none +16.9548485,PR:Q4ADV7,http://purl.obolibrary.org/obo/PR_Q4ADV7,guanine nucleotide exchange factor subunit RIC1 (human) +16.9548485,PR:Q4PSF4,http://purl.obolibrary.org/obo/PR_Q4PSF4,none +16.9548485,PR:Q4V3D9,http://purl.obolibrary.org/obo/PR_Q4V3D9,none +16.9548485,PR:Q502G2,http://purl.obolibrary.org/obo/PR_Q502G2,none +16.9548485,PR:Q504U0,http://purl.obolibrary.org/obo/PR_Q504U0,renal cancer differentiation gene 1 protein (human) +16.9548485,PR:Q52K88,http://purl.obolibrary.org/obo/PR_Q52K88,none +16.9548485,PR:Q54B67,http://purl.obolibrary.org/obo/PR_Q54B67,none +16.9548485,PR:Q54C49,http://purl.obolibrary.org/obo/PR_Q54C49,none +16.9548485,PR:Q54F93,http://purl.obolibrary.org/obo/PR_Q54F93,none +16.9548485,PR:Q54PQ4,http://purl.obolibrary.org/obo/PR_Q54PQ4,none +16.9548485,PR:Q54PT6,http://purl.obolibrary.org/obo/PR_Q54PT6,none +16.9548485,PR:Q54R04,http://purl.obolibrary.org/obo/PR_Q54R04,none +16.9548485,PR:Q54VG4,http://purl.obolibrary.org/obo/PR_Q54VG4,none +16.9548485,PR:Q552C6,http://purl.obolibrary.org/obo/PR_Q552C6,none +16.9548485,PR:Q554S6,http://purl.obolibrary.org/obo/PR_Q554S6,none +16.9548485,PR:Q55F37,http://purl.obolibrary.org/obo/PR_Q55F37,none +16.9548485,PR:Q561T9,http://purl.obolibrary.org/obo/PR_Q561T9,none +16.9548485,PR:Q56W08,http://purl.obolibrary.org/obo/PR_Q56W08,none +16.9548485,PR:Q56XE8,http://purl.obolibrary.org/obo/PR_Q56XE8,none +16.9548485,PR:Q56YF8,http://purl.obolibrary.org/obo/PR_Q56YF8,none +16.9548485,PR:Q56YP2,http://purl.obolibrary.org/obo/PR_Q56YP2,none +16.9548485,PR:Q56ZQ3,http://purl.obolibrary.org/obo/PR_Q56ZQ3,none +16.9548485,PR:Q58P71,http://purl.obolibrary.org/obo/PR_Q58P71,none +16.9548485,PR:Q59MA9,http://purl.obolibrary.org/obo/PR_Q59MA9,none +16.9548485,PR:Q59U10,http://purl.obolibrary.org/obo/PR_Q59U10,none +16.9548485,PR:Q59X11,http://purl.obolibrary.org/obo/PR_Q59X11,none +16.9548485,PR:Q59XQ1,http://purl.obolibrary.org/obo/PR_Q59XQ1,none +16.9548485,PR:Q5A061,http://purl.obolibrary.org/obo/PR_Q5A061,none +16.9548485,PR:Q5A687,http://purl.obolibrary.org/obo/PR_Q5A687,none +16.9548485,PR:Q5A849,http://purl.obolibrary.org/obo/PR_Q5A849,none +16.9548485,PR:Q5A8I8,http://purl.obolibrary.org/obo/PR_Q5A8I8,none +16.9548485,PR:Q5AB48,http://purl.obolibrary.org/obo/PR_Q5AB48,none +16.9548485,PR:Q5BL35,http://purl.obolibrary.org/obo/PR_Q5BL35,none +16.9548485,PR:Q5DP50,http://purl.obolibrary.org/obo/PR_Q5DP50,none +16.9548485,PR:Q5F3L9,http://purl.obolibrary.org/obo/PR_Q5F3L9,none +16.9548485,PR:Q5M731,http://purl.obolibrary.org/obo/PR_Q5M731,none +16.9548485,PR:Q5M750,http://purl.obolibrary.org/obo/PR_Q5M750,none +16.9548485,PR:Q5M7W6,http://purl.obolibrary.org/obo/PR_Q5M7W6,none +16.9548485,PR:Q5PNZ7,http://purl.obolibrary.org/obo/PR_Q5PNZ7,none +16.9548485,PR:Q5PP62,http://purl.obolibrary.org/obo/PR_Q5PP62,none +16.9548485,PR:Q5PPJ2,http://purl.obolibrary.org/obo/PR_Q5PPJ2,none +16.9548485,PR:Q5RJP9,http://purl.obolibrary.org/obo/PR_Q5RJP9,none +16.9548485,PR:Q5SW19,http://purl.obolibrary.org/obo/PR_Q5SW19,none +16.9548485,PR:Q5T0L3,http://purl.obolibrary.org/obo/PR_Q5T0L3,spermatogenesis-associated protein 46 (human) +16.9548485,PR:Q5TJ55,http://purl.obolibrary.org/obo/PR_Q5TJ55,none +16.9548485,PR:Q5U3Z3,http://purl.obolibrary.org/obo/PR_Q5U3Z3,none +16.9548485,PR:Q5VYS4,http://purl.obolibrary.org/obo/PR_Q5VYS4,mesenteric estrogen-dependent adipogenesis protein (human) +16.9548485,PR:Q5XEP9,http://purl.obolibrary.org/obo/PR_Q5XEP9,none +16.9548485,PR:Q5XF51,http://purl.obolibrary.org/obo/PR_Q5XF51,none +16.9548485,PR:Q5XJ13,http://purl.obolibrary.org/obo/PR_Q5XJ13,none +16.9548485,PR:Q5YGP7,http://purl.obolibrary.org/obo/PR_Q5YGP7,none +16.9548485,PR:Q5ZIU1,http://purl.obolibrary.org/obo/PR_Q5ZIU1,none +16.9548485,PR:Q5ZJP5,http://purl.obolibrary.org/obo/PR_Q5ZJP5,none +16.9548485,PR:Q5ZJY9,http://purl.obolibrary.org/obo/PR_Q5ZJY9,none +16.9548485,PR:Q5ZK62,http://purl.obolibrary.org/obo/PR_Q5ZK62,none +16.9548485,PR:Q60778,http://purl.obolibrary.org/obo/PR_Q60778,none +16.9548485,PR:Q60953,http://purl.obolibrary.org/obo/PR_Q60953,none +16.9548485,PR:Q61116,http://purl.obolibrary.org/obo/PR_Q61116,none +16.9548485,PR:Q61133,http://purl.obolibrary.org/obo/PR_Q61133,none +16.9548485,PR:Q61897,http://purl.obolibrary.org/obo/PR_Q61897,none +16.9548485,PR:Q62875,http://purl.obolibrary.org/obo/PR_Q62875,none +16.9548485,PR:Q62994,http://purl.obolibrary.org/obo/PR_Q62994,none +16.9548485,PR:Q63009,http://purl.obolibrary.org/obo/PR_Q63009,none +16.9548485,PR:Q63716,http://purl.obolibrary.org/obo/PR_Q63716,none +16.9548485,PR:Q63750,http://purl.obolibrary.org/obo/PR_Q63750,none +16.9548485,PR:Q63751,http://purl.obolibrary.org/obo/PR_Q63751,none +16.9548485,PR:Q64471,http://purl.obolibrary.org/obo/PR_Q64471,none +16.9548485,PR:Q64FQ2,http://purl.obolibrary.org/obo/PR_Q64FQ2,none +16.9548485,PR:Q66GI2,http://purl.obolibrary.org/obo/PR_Q66GI2,none +16.9548485,PR:Q66GN2,http://purl.obolibrary.org/obo/PR_Q66GN2,none +16.9548485,PR:Q66H35,http://purl.obolibrary.org/obo/PR_Q66H35,none +16.9548485,PR:Q67YC0,http://purl.obolibrary.org/obo/PR_Q67YC0,none +16.9548485,PR:Q67YT8,http://purl.obolibrary.org/obo/PR_Q67YT8,none +16.9548485,PR:Q67YU0,http://purl.obolibrary.org/obo/PR_Q67YU0,none +16.9548485,PR:Q680Q4,http://purl.obolibrary.org/obo/PR_Q680Q4,none +16.9548485,PR:Q681K2,http://purl.obolibrary.org/obo/PR_Q681K2,none +16.9548485,PR:Q69ZJ7,http://purl.obolibrary.org/obo/PR_Q69ZJ7,none +16.9548485,PR:Q6A332,http://purl.obolibrary.org/obo/PR_Q6A332,none +16.9548485,PR:Q6AXL4,http://purl.obolibrary.org/obo/PR_Q6AXL4,none +16.9548485,PR:Q6DGF6,http://purl.obolibrary.org/obo/PR_Q6DGF6,none +16.9548485,PR:Q6DR03,http://purl.obolibrary.org/obo/PR_Q6DR03,none +16.9548485,PR:Q6IMK0,http://purl.obolibrary.org/obo/PR_Q6IMK0,none +16.9548485,PR:Q6ISS4,http://purl.obolibrary.org/obo/PR_Q6ISS4,leukocyte-associated immunoglobulin-like receptor 2 (human) +16.9548485,PR:Q6NLH0,http://purl.obolibrary.org/obo/PR_Q6NLH0,none +16.9548485,PR:Q6NLQ3,http://purl.obolibrary.org/obo/PR_Q6NLQ3,none +16.9548485,PR:Q6NNI3,http://purl.obolibrary.org/obo/PR_Q6NNI3,none +16.9548485,PR:Q6NQB7,http://purl.obolibrary.org/obo/PR_Q6NQB7,none +16.9548485,PR:Q6NQH9,http://purl.obolibrary.org/obo/PR_Q6NQH9,none +16.9548485,PR:Q6NQJ8,http://purl.obolibrary.org/obo/PR_Q6NQJ8,none +16.9548485,PR:Q6NQK0,http://purl.obolibrary.org/obo/PR_Q6NQK0,none +16.9548485,PR:Q6P011,http://purl.obolibrary.org/obo/PR_Q6P011,none +16.9548485,PR:Q6P0I6,http://purl.obolibrary.org/obo/PR_Q6P0I6,none +16.9548485,PR:Q6P799,http://purl.obolibrary.org/obo/PR_Q6P799,none +16.9548485,PR:Q6PC29,http://purl.obolibrary.org/obo/PR_Q6PC29,none +16.9548485,PR:Q6PEI7,http://purl.obolibrary.org/obo/PR_Q6PEI7,none +16.9548485,PR:Q6PFS2,http://purl.obolibrary.org/obo/PR_Q6PFS2,none +16.9548485,PR:Q6PV67,http://purl.obolibrary.org/obo/PR_Q6PV67,none +16.9548485,PR:Q6PZ02,http://purl.obolibrary.org/obo/PR_Q6PZ02,none +16.9548485,PR:Q6Q152,http://purl.obolibrary.org/obo/PR_Q6Q152,none +16.9548485,PR:Q6Q1P4,http://purl.obolibrary.org/obo/PR_Q6Q1P4,none +16.9548485,PR:Q6R053,http://purl.obolibrary.org/obo/PR_Q6R053,none +16.9548485,PR:Q6R2K3,http://purl.obolibrary.org/obo/PR_Q6R2K3,none +16.9548485,PR:Q6X5Y6,http://purl.obolibrary.org/obo/PR_Q6X5Y6,none +16.9548485,PR:Q6ZM28,http://purl.obolibrary.org/obo/PR_Q6ZM28,none +16.9548485,PR:Q6ZWV7,http://purl.obolibrary.org/obo/PR_Q6ZWV7,none +16.9548485,PR:Q70E20,http://purl.obolibrary.org/obo/PR_Q70E20,none +16.9548485,PR:Q71N54,http://purl.obolibrary.org/obo/PR_Q71N54,none +16.9548485,PR:Q7DMA9,http://purl.obolibrary.org/obo/PR_Q7DMA9,none +16.9548485,PR:Q7G192,http://purl.obolibrary.org/obo/PR_Q7G192,none +16.9548485,PR:Q7JVA5,http://purl.obolibrary.org/obo/PR_Q7JVA5,none +16.9548485,PR:Q7PC82,http://purl.obolibrary.org/obo/PR_Q7PC82,none +16.9548485,PR:Q7RTZ2,http://purl.obolibrary.org/obo/PR_Q7RTZ2,ubiquitin carboxyl-terminal hydrolase 17-like protein 1 (human) +16.9548485,PR:Q7T394,http://purl.obolibrary.org/obo/PR_Q7T394,none +16.9548485,PR:Q7TPG6,http://purl.obolibrary.org/obo/PR_Q7TPG6,none +16.9548485,PR:Q7X6P3,http://purl.obolibrary.org/obo/PR_Q7X6P3,none +16.9548485,PR:Q7XA86,http://purl.obolibrary.org/obo/PR_Q7XA86,none +16.9548485,PR:Q7XA87,http://purl.obolibrary.org/obo/PR_Q7XA87,none +16.9548485,PR:Q7XJE6,http://purl.obolibrary.org/obo/PR_Q7XJE6,none +16.9548485,PR:Q7YSJ4,http://purl.obolibrary.org/obo/PR_Q7YSJ4,none +16.9548485,PR:Q7ZTU9,http://purl.obolibrary.org/obo/PR_Q7ZTU9,none +16.9548485,PR:Q7ZTY4,http://purl.obolibrary.org/obo/PR_Q7ZTY4,none +16.9548485,PR:Q7ZUA6,http://purl.obolibrary.org/obo/PR_Q7ZUA6,none +16.9548485,PR:Q801X6,http://purl.obolibrary.org/obo/PR_Q801X6,none +16.9548485,PR:Q80TL4,http://purl.obolibrary.org/obo/PR_Q80TL4,none +16.9548485,PR:Q810U2,http://purl.obolibrary.org/obo/PR_Q810U2,none +16.9548485,PR:Q811A2,http://purl.obolibrary.org/obo/PR_Q811A2,none +16.9548485,PR:Q84J39,http://purl.obolibrary.org/obo/PR_Q84J39,none +16.9548485,PR:Q84JB8,http://purl.obolibrary.org/obo/PR_Q84JB8,none +16.9548485,PR:Q84JK2,http://purl.obolibrary.org/obo/PR_Q84JK2,none +16.9548485,PR:Q84JW1,http://purl.obolibrary.org/obo/PR_Q84JW1,none +16.9548485,PR:Q84MB5,http://purl.obolibrary.org/obo/PR_Q84MB5,none +16.9548485,PR:Q84P23,http://purl.obolibrary.org/obo/PR_Q84P23,none +16.9548485,PR:Q84TD8,http://purl.obolibrary.org/obo/PR_Q84TD8,none +16.9548485,PR:Q84TK1,http://purl.obolibrary.org/obo/PR_Q84TK1,none +16.9548485,PR:Q84UU4,http://purl.obolibrary.org/obo/PR_Q84UU4,none +16.9548485,PR:Q84VQ4,http://purl.obolibrary.org/obo/PR_Q84VQ4,none +16.9548485,PR:Q84Y95,http://purl.obolibrary.org/obo/PR_Q84Y95,none +16.9548485,PR:Q868T3,http://purl.obolibrary.org/obo/PR_Q868T3,none +16.9548485,PR:Q869C3,http://purl.obolibrary.org/obo/PR_Q869C3,none +16.9548485,PR:Q869S9,http://purl.obolibrary.org/obo/PR_Q869S9,none +16.9548485,PR:Q86HE5,http://purl.obolibrary.org/obo/PR_Q86HE5,none +16.9548485,PR:Q86I81,http://purl.obolibrary.org/obo/PR_Q86I81,none +16.9548485,PR:Q86NG3,http://purl.obolibrary.org/obo/PR_Q86NG3,none +16.9548485,PR:Q8BQ48,http://purl.obolibrary.org/obo/PR_Q8BQ48,none +16.9548485,PR:Q8BV49,http://purl.obolibrary.org/obo/PR_Q8BV49,none +16.9548485,PR:Q8BXR5,http://purl.obolibrary.org/obo/PR_Q8BXR5,none +16.9548485,PR:Q8C4G9,http://purl.obolibrary.org/obo/PR_Q8C4G9,none +16.9548485,PR:Q8C567,http://purl.obolibrary.org/obo/PR_Q8C567,none +16.9548485,PR:Q8C5P7,http://purl.obolibrary.org/obo/PR_Q8C5P7,none +16.9548485,PR:Q8C9S8,http://purl.obolibrary.org/obo/PR_Q8C9S8,none +16.9548485,PR:Q8CH19,http://purl.obolibrary.org/obo/PR_Q8CH19,none +16.9548485,PR:Q8CHG5,http://purl.obolibrary.org/obo/PR_Q8CHG5,none +16.9548485,PR:Q8GSJ6,http://purl.obolibrary.org/obo/PR_Q8GSJ6,none +16.9548485,PR:Q8GUI6,http://purl.obolibrary.org/obo/PR_Q8GUI6,none +16.9548485,PR:Q8GWB7,http://purl.obolibrary.org/obo/PR_Q8GWB7,none +16.9548485,PR:Q8GWP5,http://purl.obolibrary.org/obo/PR_Q8GWP5,none +16.9548485,PR:Q8GWU0,http://purl.obolibrary.org/obo/PR_Q8GWU0,none +16.9548485,PR:Q8GX78,http://purl.obolibrary.org/obo/PR_Q8GX78,none +16.9548485,PR:Q8GXG6,http://purl.obolibrary.org/obo/PR_Q8GXG6,none +16.9548485,PR:Q8GXU5,http://purl.obolibrary.org/obo/PR_Q8GXU5,none +16.9548485,PR:Q8GYC1,http://purl.obolibrary.org/obo/PR_Q8GYC1,none +16.9548485,PR:Q8GYJ2,http://purl.obolibrary.org/obo/PR_Q8GYJ2,none +16.9548485,PR:Q8GYW8,http://purl.obolibrary.org/obo/PR_Q8GYW8,none +16.9548485,PR:Q8GZ13,http://purl.obolibrary.org/obo/PR_Q8GZ13,none +16.9548485,PR:Q8GZ26,http://purl.obolibrary.org/obo/PR_Q8GZ26,none +16.9548485,PR:Q8GZQ3,http://purl.obolibrary.org/obo/PR_Q8GZQ3,none +16.9548485,PR:Q8H0T6,http://purl.obolibrary.org/obo/PR_Q8H0T6,none +16.9548485,PR:Q8H0U4,http://purl.obolibrary.org/obo/PR_Q8H0U4,none +16.9548485,PR:Q8H1G3,http://purl.obolibrary.org/obo/PR_Q8H1G3,none +16.9548485,PR:Q8H7F6,http://purl.obolibrary.org/obo/PR_Q8H7F6,none +16.9548485,PR:Q8IN35,http://purl.obolibrary.org/obo/PR_Q8IN35,none +16.9548485,PR:Q8IS21,http://purl.obolibrary.org/obo/PR_Q8IS21,none +16.9548485,PR:Q8ITC7,http://purl.obolibrary.org/obo/PR_Q8ITC7,none +16.9548485,PR:Q8IZ13,http://purl.obolibrary.org/obo/PR_Q8IZ13,protein ZBED8 (human) +16.9548485,PR:Q8JH55,http://purl.obolibrary.org/obo/PR_Q8JH55,none +16.9548485,PR:Q8L3R2,http://purl.obolibrary.org/obo/PR_Q8L3R2,none +16.9548485,PR:Q8L3W1,http://purl.obolibrary.org/obo/PR_Q8L3W1,none +16.9548485,PR:Q8L5T9,http://purl.obolibrary.org/obo/PR_Q8L5T9,none +16.9548485,PR:Q8L5V0,http://purl.obolibrary.org/obo/PR_Q8L5V0,none +16.9548485,PR:Q8L6Y1,http://purl.obolibrary.org/obo/PR_Q8L6Y1,none +16.9548485,PR:Q8L735,http://purl.obolibrary.org/obo/PR_Q8L735,none +16.9548485,PR:Q8L7F9,http://purl.obolibrary.org/obo/PR_Q8L7F9,none +16.9548485,PR:Q8L7L0,http://purl.obolibrary.org/obo/PR_Q8L7L0,none +16.9548485,PR:Q8L7L8,http://purl.obolibrary.org/obo/PR_Q8L7L8,none +16.9548485,PR:Q8L8A8,http://purl.obolibrary.org/obo/PR_Q8L8A8,none +16.9548485,PR:Q8L9A0,http://purl.obolibrary.org/obo/PR_Q8L9A0,none +16.9548485,PR:Q8L9K1,http://purl.obolibrary.org/obo/PR_Q8L9K1,none +16.9548485,PR:Q8LA53,http://purl.obolibrary.org/obo/PR_Q8LA53,none +16.9548485,PR:Q8LB10,http://purl.obolibrary.org/obo/PR_Q8LB10,none +16.9548485,PR:Q8LBC0,http://purl.obolibrary.org/obo/PR_Q8LBC0,none +16.9548485,PR:Q8LBH4,http://purl.obolibrary.org/obo/PR_Q8LBH4,none +16.9548485,PR:Q8LC68,http://purl.obolibrary.org/obo/PR_Q8LC68,none +16.9548485,PR:Q8LC76,http://purl.obolibrary.org/obo/PR_Q8LC76,none +16.9548485,PR:Q8LCG7,http://purl.obolibrary.org/obo/PR_Q8LCG7,none +16.9548485,PR:Q8LD43,http://purl.obolibrary.org/obo/PR_Q8LD43,none +16.9548485,PR:Q8LD63,http://purl.obolibrary.org/obo/PR_Q8LD63,none +16.9548485,PR:Q8LDG7,http://purl.obolibrary.org/obo/PR_Q8LDG7,none +16.9548485,PR:Q8LE92,http://purl.obolibrary.org/obo/PR_Q8LE92,none +16.9548485,PR:Q8LEF6,http://purl.obolibrary.org/obo/PR_Q8LEF6,none +16.9548485,PR:Q8LG64,http://purl.obolibrary.org/obo/PR_Q8LG64,none +16.9548485,PR:Q8LG88,http://purl.obolibrary.org/obo/PR_Q8LG88,none +16.9548485,PR:Q8LGG0,http://purl.obolibrary.org/obo/PR_Q8LGG0,none +16.9548485,PR:Q8LPJ1,http://purl.obolibrary.org/obo/PR_Q8LPJ1,none +16.9548485,PR:Q8LPJ4,http://purl.obolibrary.org/obo/PR_Q8LPJ4,none +16.9548485,PR:Q8LPK0,http://purl.obolibrary.org/obo/PR_Q8LPK0,none +16.9548485,PR:Q8LPR8,http://purl.obolibrary.org/obo/PR_Q8LPR8,none +16.9548485,PR:Q8MY12,http://purl.obolibrary.org/obo/PR_Q8MY12,none +16.9548485,PR:Q8N1N2,http://purl.obolibrary.org/obo/PR_Q8N1N2,dynactin-associated protein (human) +16.9548485,PR:Q8N7I0,http://purl.obolibrary.org/obo/PR_Q8N7I0,protein GVQW1 (human) +16.9548485,PR:Q8NDB6,http://purl.obolibrary.org/obo/PR_Q8NDB6,protein FAM156A/FAM156B (human) +16.9548485,PR:Q8NEV1,http://purl.obolibrary.org/obo/PR_Q8NEV1,casein kinase II subunit alpha 3 (human) +16.9548485,PR:Q8R0W1,http://purl.obolibrary.org/obo/PR_Q8R0W1,none +16.9548485,PR:Q8R1R5,http://purl.obolibrary.org/obo/PR_Q8R1R5,none +16.9548485,PR:Q8RUD6,http://purl.obolibrary.org/obo/PR_Q8RUD6,none +16.9548485,PR:Q8RUN2,http://purl.obolibrary.org/obo/PR_Q8RUN2,none +16.9548485,PR:Q8RWE8,http://purl.obolibrary.org/obo/PR_Q8RWE8,none +16.9548485,PR:Q8RWT0,http://purl.obolibrary.org/obo/PR_Q8RWT0,none +16.9548485,PR:Q8RX87,http://purl.obolibrary.org/obo/PR_Q8RX87,none +16.9548485,PR:Q8RXA7,http://purl.obolibrary.org/obo/PR_Q8RXA7,none +16.9548485,PR:Q8RXL7,http://purl.obolibrary.org/obo/PR_Q8RXL7,none +16.9548485,PR:Q8RXW0,http://purl.obolibrary.org/obo/PR_Q8RXW0,none +16.9548485,PR:Q8RY00,http://purl.obolibrary.org/obo/PR_Q8RY00,none +16.9548485,PR:Q8RY79,http://purl.obolibrary.org/obo/PR_Q8RY79,none +16.9548485,PR:Q8RY95,http://purl.obolibrary.org/obo/PR_Q8RY95,none +16.9548485,PR:Q8S3F1,http://purl.obolibrary.org/obo/PR_Q8S3F1,none +16.9548485,PR:Q8S4Y1,http://purl.obolibrary.org/obo/PR_Q8S4Y1,none +16.9548485,PR:Q8S8F8,http://purl.obolibrary.org/obo/PR_Q8S8F8,none +16.9548485,PR:Q8S8N2,http://purl.obolibrary.org/obo/PR_Q8S8N2,none +16.9548485,PR:Q8S8P3,http://purl.obolibrary.org/obo/PR_Q8S8P3,none +16.9548485,PR:Q8S924,http://purl.obolibrary.org/obo/PR_Q8S924,none +16.9548485,PR:Q8S929,http://purl.obolibrary.org/obo/PR_Q8S929,none +16.9548485,PR:Q8S9N6,http://purl.obolibrary.org/obo/PR_Q8S9N6,none +16.9548485,PR:Q8SSQ0,http://purl.obolibrary.org/obo/PR_Q8SSQ0,none +16.9548485,PR:Q8SSQ3,http://purl.obolibrary.org/obo/PR_Q8SSQ3,none +16.9548485,PR:Q8ST66,http://purl.obolibrary.org/obo/PR_Q8ST66,none +16.9548485,PR:Q8ST83,http://purl.obolibrary.org/obo/PR_Q8ST83,none +16.9548485,PR:Q8T1C6,http://purl.obolibrary.org/obo/PR_Q8T1C6,none +16.9548485,PR:Q8T9S7,http://purl.obolibrary.org/obo/PR_Q8T9S7,none +16.9548485,PR:Q8UWJ4,http://purl.obolibrary.org/obo/PR_Q8UWJ4,none +16.9548485,PR:Q8VWI1,http://purl.obolibrary.org/obo/PR_Q8VWI1,none +16.9548485,PR:Q8VXY7,http://purl.obolibrary.org/obo/PR_Q8VXY7,none +16.9548485,PR:Q8VY00,http://purl.obolibrary.org/obo/PR_Q8VY00,none +16.9548485,PR:Q8VY78,http://purl.obolibrary.org/obo/PR_Q8VY78,none +16.9548485,PR:Q8VYA5,http://purl.obolibrary.org/obo/PR_Q8VYA5,none +16.9548485,PR:Q8VYD4,http://purl.obolibrary.org/obo/PR_Q8VYD4,none +16.9548485,PR:Q8VYL3,http://purl.obolibrary.org/obo/PR_Q8VYL3,none +16.9548485,PR:Q8VYP9,http://purl.obolibrary.org/obo/PR_Q8VYP9,none +16.9548485,PR:Q8VYW1,http://purl.obolibrary.org/obo/PR_Q8VYW1,none +16.9548485,PR:Q8VZ02,http://purl.obolibrary.org/obo/PR_Q8VZ02,none +16.9548485,PR:Q8VZ80,http://purl.obolibrary.org/obo/PR_Q8VZ80,none +16.9548485,PR:Q8VZI7,http://purl.obolibrary.org/obo/PR_Q8VZI7,none +16.9548485,PR:Q8VZS0,http://purl.obolibrary.org/obo/PR_Q8VZS0,none +16.9548485,PR:Q8W035,http://purl.obolibrary.org/obo/PR_Q8W035,none +16.9548485,PR:Q8W036,http://purl.obolibrary.org/obo/PR_Q8W036,none +16.9548485,PR:Q8W1D5,http://purl.obolibrary.org/obo/PR_Q8W1D5,none +16.9548485,PR:Q8W453,http://purl.obolibrary.org/obo/PR_Q8W453,none +16.9548485,PR:Q8W496,http://purl.obolibrary.org/obo/PR_Q8W496,none +16.9548485,PR:Q8W4I9,http://purl.obolibrary.org/obo/PR_Q8W4I9,none +16.9548485,PR:Q8W4J3,http://purl.obolibrary.org/obo/PR_Q8W4J3,none +16.9548485,PR:Q8W583,http://purl.obolibrary.org/obo/PR_Q8W583,none +16.9548485,PR:Q8W5R6,http://purl.obolibrary.org/obo/PR_Q8W5R6,none +16.9548485,PR:Q8WUE5,http://purl.obolibrary.org/obo/PR_Q8WUE5,cancer/testis antigen 55 (human) +16.9548485,PR:Q8WWB7,http://purl.obolibrary.org/obo/PR_Q8WWB7,glycosylated lysosomal membrane protein (human) +16.9548485,PR:Q90257,http://purl.obolibrary.org/obo/PR_Q90257,none +16.9548485,PR:Q90417,http://purl.obolibrary.org/obo/PR_Q90417,none +16.9548485,PR:Q90YH8,http://purl.obolibrary.org/obo/PR_Q90YH8,none +16.9548485,PR:Q920G3,http://purl.obolibrary.org/obo/PR_Q920G3,none +16.9548485,PR:Q923X5,http://purl.obolibrary.org/obo/PR_Q923X5,none +16.9548485,PR:Q93442,http://purl.obolibrary.org/obo/PR_Q93442,none +16.9548485,PR:Q93V56,http://purl.obolibrary.org/obo/PR_Q93V56,none +16.9548485,PR:Q93VJ2,http://purl.obolibrary.org/obo/PR_Q93VJ2,none +16.9548485,PR:Q93VV9,http://purl.obolibrary.org/obo/PR_Q93VV9,none +16.9548485,PR:Q93VY3,http://purl.obolibrary.org/obo/PR_Q93VY3,none +16.9548485,PR:Q93XX2,http://purl.obolibrary.org/obo/PR_Q93XX2,none +16.9548485,PR:Q93YQ3,http://purl.obolibrary.org/obo/PR_Q93YQ3,none +16.9548485,PR:Q93Z04,http://purl.obolibrary.org/obo/PR_Q93Z04,none +16.9548485,PR:Q93Z96,http://purl.obolibrary.org/obo/PR_Q93Z96,none +16.9548485,PR:Q93ZE2,http://purl.obolibrary.org/obo/PR_Q93ZE2,none +16.9548485,PR:Q93ZH0,http://purl.obolibrary.org/obo/PR_Q93ZH0,none +16.9548485,PR:Q940S0,http://purl.obolibrary.org/obo/PR_Q940S0,none +16.9548485,PR:Q940T5,http://purl.obolibrary.org/obo/PR_Q940T5,none +16.9548485,PR:Q941D1,http://purl.obolibrary.org/obo/PR_Q941D1,none +16.9548485,PR:Q944H0,http://purl.obolibrary.org/obo/PR_Q944H0,none +16.9548485,PR:Q944I4,http://purl.obolibrary.org/obo/PR_Q944I4,none +16.9548485,PR:Q944L7,http://purl.obolibrary.org/obo/PR_Q944L7,none +16.9548485,PR:Q944P7,http://purl.obolibrary.org/obo/PR_Q944P7,none +16.9548485,PR:Q945K7,http://purl.obolibrary.org/obo/PR_Q945K7,none +16.9548485,PR:Q945P1,http://purl.obolibrary.org/obo/PR_Q945P1,none +16.9548485,PR:Q946J2,http://purl.obolibrary.org/obo/PR_Q946J2,none +16.9548485,PR:Q94918,http://purl.obolibrary.org/obo/PR_Q94918,none +16.9548485,PR:Q94A28,http://purl.obolibrary.org/obo/PR_Q94A28,none +16.9548485,PR:Q94AA9,http://purl.obolibrary.org/obo/PR_Q94AA9,none +16.9548485,PR:Q94AI7,http://purl.obolibrary.org/obo/PR_Q94AI7,none +16.9548485,PR:Q94AR4,http://purl.obolibrary.org/obo/PR_Q94AR4,none +16.9548485,PR:Q94AS5,http://purl.obolibrary.org/obo/PR_Q94AS5,none +16.9548485,PR:Q94AX2,http://purl.obolibrary.org/obo/PR_Q94AX2,none +16.9548485,PR:Q94B38,http://purl.obolibrary.org/obo/PR_Q94B38,none +16.9548485,PR:Q94B74,http://purl.obolibrary.org/obo/PR_Q94B74,none +16.9548485,PR:Q94BP7,http://purl.obolibrary.org/obo/PR_Q94BP7,none +16.9548485,PR:Q94C69,http://purl.obolibrary.org/obo/PR_Q94C69,none +16.9548485,PR:Q94CD1,http://purl.obolibrary.org/obo/PR_Q94CD1,none +16.9548485,PR:Q94CF0,http://purl.obolibrary.org/obo/PR_Q94CF0,none +16.9548485,PR:Q94CK9,http://purl.obolibrary.org/obo/PR_Q94CK9,none +16.9548485,PR:Q94CL7,http://purl.obolibrary.org/obo/PR_Q94CL7,none +16.9548485,PR:Q94CL8,http://purl.obolibrary.org/obo/PR_Q94CL8,none +16.9548485,PR:Q94F30,http://purl.obolibrary.org/obo/PR_Q94F30,none +16.9548485,PR:Q94HV7,http://purl.obolibrary.org/obo/PR_Q94HV7,none +16.9548485,PR:Q94JV5,http://purl.obolibrary.org/obo/PR_Q94JV5,none +16.9548485,PR:Q94KL5,http://purl.obolibrary.org/obo/PR_Q94KL5,none +16.9548485,PR:Q95Q62,http://purl.obolibrary.org/obo/PR_Q95Q62,none +16.9548485,PR:Q96254,http://purl.obolibrary.org/obo/PR_Q96254,none +16.9548485,PR:Q966Q9,http://purl.obolibrary.org/obo/PR_Q966Q9,none +16.9548485,PR:Q96A73,http://purl.obolibrary.org/obo/PR_Q96A73,putative monooxygenase p33MONOX (human) +16.9548485,PR:Q96FZ2,http://purl.obolibrary.org/obo/PR_Q96FZ2,abasic site processing protein HMCES (human) +16.9548485,PR:Q96HJ9,http://purl.obolibrary.org/obo/PR_Q96HJ9,protein FMC1 homolog (human) +16.9548485,PR:Q96NL8,http://purl.obolibrary.org/obo/PR_Q96NL8,protein C8orf37 (human) +16.9548485,PR:Q98879,http://purl.obolibrary.org/obo/PR_Q98879,none +16.9548485,PR:Q99234,http://purl.obolibrary.org/obo/PR_Q99234,none +16.9548485,PR:Q99613,http://purl.obolibrary.org/obo/PR_Q99613,eukaryotic translation initiation factor 3 subunit C (human) +16.9548485,PR:Q99L20,http://purl.obolibrary.org/obo/PR_Q99L20,none +16.9548485,PR:Q99PE5,http://purl.obolibrary.org/obo/PR_Q99PE5,none +16.9548485,PR:Q99PE6,http://purl.obolibrary.org/obo/PR_Q99PE6,none +16.9548485,PR:Q9ASW1,http://purl.obolibrary.org/obo/PR_Q9ASW1,none +16.9548485,PR:Q9ASY9,http://purl.obolibrary.org/obo/PR_Q9ASY9,none +16.9548485,PR:Q9AUE0,http://purl.obolibrary.org/obo/PR_Q9AUE0,none +16.9548485,PR:Q9BPU3,http://purl.obolibrary.org/obo/PR_Q9BPU3,none +16.9548485,PR:Q9BVG4,http://purl.obolibrary.org/obo/PR_Q9BVG4,protein PBDC1 (human) +16.9548485,PR:Q9BZL3,http://purl.obolibrary.org/obo/PR_Q9BZL3,small integral membrane protein 3 (human) +16.9548485,PR:Q9C0C6,http://purl.obolibrary.org/obo/PR_Q9C0C6,CLOCK-interacting pacemaker (human) +16.9548485,PR:Q9C0D2,http://purl.obolibrary.org/obo/PR_Q9C0D2,centrosomal protein of 295 kDa (human) +16.9548485,PR:Q9C512,http://purl.obolibrary.org/obo/PR_Q9C512,none +16.9548485,PR:Q9C522,http://purl.obolibrary.org/obo/PR_Q9C522,none +16.9548485,PR:Q9C587,http://purl.obolibrary.org/obo/PR_Q9C587,none +16.9548485,PR:Q9C5K8,http://purl.obolibrary.org/obo/PR_Q9C5K8,none +16.9548485,PR:Q9C5P0,http://purl.obolibrary.org/obo/PR_Q9C5P0,none +16.9548485,PR:Q9C5P1,http://purl.obolibrary.org/obo/PR_Q9C5P1,none +16.9548485,PR:Q9C5X9,http://purl.obolibrary.org/obo/PR_Q9C5X9,none +16.9548485,PR:Q9C5Y4,http://purl.obolibrary.org/obo/PR_Q9C5Y4,none +16.9548485,PR:Q9C6A9,http://purl.obolibrary.org/obo/PR_Q9C6A9,none +16.9548485,PR:Q9C6Z2,http://purl.obolibrary.org/obo/PR_Q9C6Z2,none +16.9548485,PR:Q9C7F2,http://purl.obolibrary.org/obo/PR_Q9C7F2,none +16.9548485,PR:Q9C7F8,http://purl.obolibrary.org/obo/PR_Q9C7F8,none +16.9548485,PR:Q9C7P2,http://purl.obolibrary.org/obo/PR_Q9C7P2,none +16.9548485,PR:Q9C7S5,http://purl.obolibrary.org/obo/PR_Q9C7S5,none +16.9548485,PR:Q9C882,http://purl.obolibrary.org/obo/PR_Q9C882,none +16.9548485,PR:Q9C889,http://purl.obolibrary.org/obo/PR_Q9C889,none +16.9548485,PR:Q9C8E7,http://purl.obolibrary.org/obo/PR_Q9C8E7,none +16.9548485,PR:Q9C8J7,http://purl.obolibrary.org/obo/PR_Q9C8J7,none +16.9548485,PR:Q9C8Y9,http://purl.obolibrary.org/obo/PR_Q9C8Y9,none +16.9548485,PR:Q9C942,http://purl.obolibrary.org/obo/PR_Q9C942,none +16.9548485,PR:Q9C958,http://purl.obolibrary.org/obo/PR_Q9C958,none +16.9548485,PR:Q9C992,http://purl.obolibrary.org/obo/PR_Q9C992,none +16.9548485,PR:Q9C998,http://purl.obolibrary.org/obo/PR_Q9C998,none +16.9548485,PR:Q9C9C4,http://purl.obolibrary.org/obo/PR_Q9C9C4,none +16.9548485,PR:Q9C9C9,http://purl.obolibrary.org/obo/PR_Q9C9C9,none +16.9548485,PR:Q9C9D0,http://purl.obolibrary.org/obo/PR_Q9C9D0,none +16.9548485,PR:Q9C9H5,http://purl.obolibrary.org/obo/PR_Q9C9H5,none +16.9548485,PR:Q9C9M7,http://purl.obolibrary.org/obo/PR_Q9C9M7,none +16.9548485,PR:Q9C9W4,http://purl.obolibrary.org/obo/PR_Q9C9W4,none +16.9548485,PR:Q9CA28,http://purl.obolibrary.org/obo/PR_Q9CA28,none +16.9548485,PR:Q9CA75,http://purl.obolibrary.org/obo/PR_Q9CA75,none +16.9548485,PR:Q9CAC1,http://purl.obolibrary.org/obo/PR_Q9CAC1,none +16.9548485,PR:Q9CAC5,http://purl.obolibrary.org/obo/PR_Q9CAC5,none +16.9548485,PR:Q9CAH0,http://purl.obolibrary.org/obo/PR_Q9CAH0,none +16.9548485,PR:Q9CAK1,http://purl.obolibrary.org/obo/PR_Q9CAK1,none +16.9548485,PR:Q9CAZ7,http://purl.obolibrary.org/obo/PR_Q9CAZ7,none +16.9548485,PR:Q9CQL1,http://purl.obolibrary.org/obo/PR_Q9CQL1,none +16.9548485,PR:Q9D844,http://purl.obolibrary.org/obo/PR_Q9D844,none +16.9548485,PR:Q9D9R7,http://purl.obolibrary.org/obo/PR_Q9D9R7,none +16.9548485,PR:Q9DGJ3,http://purl.obolibrary.org/obo/PR_Q9DGJ3,none +16.9548485,PR:Q9EPB7,http://purl.obolibrary.org/obo/PR_Q9EPB7,none +16.9548485,PR:Q9ESP4,http://purl.obolibrary.org/obo/PR_Q9ESP4,none +16.9548485,PR:Q9FDW8,http://purl.obolibrary.org/obo/PR_Q9FDW8,none +16.9548485,PR:Q9FF80,http://purl.obolibrary.org/obo/PR_Q9FF80,none +16.9548485,PR:Q9FFH0,http://purl.obolibrary.org/obo/PR_Q9FFH0,none +16.9548485,PR:Q9FFX4,http://purl.obolibrary.org/obo/PR_Q9FFX4,none +16.9548485,PR:Q9FG00,http://purl.obolibrary.org/obo/PR_Q9FG00,none +16.9548485,PR:Q9FG08,http://purl.obolibrary.org/obo/PR_Q9FG08,none +16.9548485,PR:Q9FG87,http://purl.obolibrary.org/obo/PR_Q9FG87,none +16.9548485,PR:Q9FGL2,http://purl.obolibrary.org/obo/PR_Q9FGL2,none +16.9548485,PR:Q9FGM9,http://purl.obolibrary.org/obo/PR_Q9FGM9,none +16.9548485,PR:Q9FGQ7,http://purl.obolibrary.org/obo/PR_Q9FGQ7,none +16.9548485,PR:Q9FH51,http://purl.obolibrary.org/obo/PR_Q9FH51,none +16.9548485,PR:Q9FH54,http://purl.obolibrary.org/obo/PR_Q9FH54,none +16.9548485,PR:Q9FH80,http://purl.obolibrary.org/obo/PR_Q9FH80,none +16.9548485,PR:Q9FHI1,http://purl.obolibrary.org/obo/PR_Q9FHI1,none +16.9548485,PR:Q9FHT4,http://purl.obolibrary.org/obo/PR_Q9FHT4,none +16.9548485,PR:Q9FI27,http://purl.obolibrary.org/obo/PR_Q9FI27,none +16.9548485,PR:Q9FI46,http://purl.obolibrary.org/obo/PR_Q9FI46,none +16.9548485,PR:Q9FI53,http://purl.obolibrary.org/obo/PR_Q9FI53,none +16.9548485,PR:Q9FIA9,http://purl.obolibrary.org/obo/PR_Q9FIA9,none +16.9548485,PR:Q9FIG6,http://purl.obolibrary.org/obo/PR_Q9FIG6,none +16.9548485,PR:Q9FIX5,http://purl.obolibrary.org/obo/PR_Q9FIX5,none +16.9548485,PR:Q9FJ49,http://purl.obolibrary.org/obo/PR_Q9FJ49,none +16.9548485,PR:Q9FJF8,http://purl.obolibrary.org/obo/PR_Q9FJF8,none +16.9548485,PR:Q9FJK7,http://purl.obolibrary.org/obo/PR_Q9FJK7,none +16.9548485,PR:Q9FJM5,http://purl.obolibrary.org/obo/PR_Q9FJM5,none +16.9548485,PR:Q9FJX3,http://purl.obolibrary.org/obo/PR_Q9FJX3,none +16.9548485,PR:Q9FK43,http://purl.obolibrary.org/obo/PR_Q9FK43,none +16.9548485,PR:Q9FK59,http://purl.obolibrary.org/obo/PR_Q9FK59,none +16.9548485,PR:Q9FKB5,http://purl.obolibrary.org/obo/PR_Q9FKB5,none +16.9548485,PR:Q9FKG2,http://purl.obolibrary.org/obo/PR_Q9FKG2,none +16.9548485,PR:Q9FKS5,http://purl.obolibrary.org/obo/PR_Q9FKS5,none +16.9548485,PR:Q9FKW6,http://purl.obolibrary.org/obo/PR_Q9FKW6,none +16.9548485,PR:Q9FL87,http://purl.obolibrary.org/obo/PR_Q9FL87,none +16.9548485,PR:Q9FLB1,http://purl.obolibrary.org/obo/PR_Q9FLB1,none +16.9548485,PR:Q9FLG2,http://purl.obolibrary.org/obo/PR_Q9FLG2,none +16.9548485,PR:Q9FLI7,http://purl.obolibrary.org/obo/PR_Q9FLI7,none +16.9548485,PR:Q9FLJ2,http://purl.obolibrary.org/obo/PR_Q9FLJ2,none +16.9548485,PR:Q9FLT4,http://purl.obolibrary.org/obo/PR_Q9FLT4,none +16.9548485,PR:Q9FML2,http://purl.obolibrary.org/obo/PR_Q9FML2,none +16.9548485,PR:Q9FML4,http://purl.obolibrary.org/obo/PR_Q9FML4,none +16.9548485,PR:Q9FMM4,http://purl.obolibrary.org/obo/PR_Q9FMM4,none +16.9548485,PR:Q9FN08,http://purl.obolibrary.org/obo/PR_Q9FN08,none +16.9548485,PR:Q9FNB5,http://purl.obolibrary.org/obo/PR_Q9FNB5,none +16.9548485,PR:Q9FNE9,http://purl.obolibrary.org/obo/PR_Q9FNE9,none +16.9548485,PR:Q9FNZ4,http://purl.obolibrary.org/obo/PR_Q9FNZ4,none +16.9548485,PR:Q9FNZ5,http://purl.obolibrary.org/obo/PR_Q9FNZ5,none +16.9548485,PR:Q9FPR3,http://purl.obolibrary.org/obo/PR_Q9FPR3,none +16.9548485,PR:Q9FPW4,http://purl.obolibrary.org/obo/PR_Q9FPW4,none +16.9548485,PR:Q9FR37,http://purl.obolibrary.org/obo/PR_Q9FR37,none +16.9548485,PR:Q9FT77,http://purl.obolibrary.org/obo/PR_Q9FT77,none +16.9548485,PR:Q9FUA4,http://purl.obolibrary.org/obo/PR_Q9FUA4,none +16.9548485,PR:Q9FUT1,http://purl.obolibrary.org/obo/PR_Q9FUT1,none +16.9548485,PR:Q9FVC8,http://purl.obolibrary.org/obo/PR_Q9FVC8,none +16.9548485,PR:Q9FVQ0,http://purl.obolibrary.org/obo/PR_Q9FVQ0,none +16.9548485,PR:Q9FVQ1,http://purl.obolibrary.org/obo/PR_Q9FVQ1,none +16.9548485,PR:Q9FVQ4,http://purl.obolibrary.org/obo/PR_Q9FVQ4,none +16.9548485,PR:Q9FVU9,http://purl.obolibrary.org/obo/PR_Q9FVU9,none +16.9548485,PR:Q9FW44,http://purl.obolibrary.org/obo/PR_Q9FW44,none +16.9548485,PR:Q9FWR4,http://purl.obolibrary.org/obo/PR_Q9FWR4,none +16.9548485,PR:Q9FX43,http://purl.obolibrary.org/obo/PR_Q9FX43,none +16.9548485,PR:Q9FXA7,http://purl.obolibrary.org/obo/PR_Q9FXA7,none +16.9548485,PR:Q9FXA8,http://purl.obolibrary.org/obo/PR_Q9FXA8,none +16.9548485,PR:Q9FY82,http://purl.obolibrary.org/obo/PR_Q9FY82,none +16.9548485,PR:Q9FYC7,http://purl.obolibrary.org/obo/PR_Q9FYC7,none +16.9548485,PR:Q9FYE6,http://purl.obolibrary.org/obo/PR_Q9FYE6,none +16.9548485,PR:Q9FYQ8,http://purl.obolibrary.org/obo/PR_Q9FYQ8,none +16.9548485,PR:Q9FZ48,http://purl.obolibrary.org/obo/PR_Q9FZ48,none +16.9548485,PR:Q9FZE1,http://purl.obolibrary.org/obo/PR_Q9FZE1,none +16.9548485,PR:Q9FZK1,http://purl.obolibrary.org/obo/PR_Q9FZK1,none +16.9548485,PR:Q9GUM7,http://purl.obolibrary.org/obo/PR_Q9GUM7,none +16.9548485,PR:Q9GYV5,http://purl.obolibrary.org/obo/PR_Q9GYV5,none +16.9548485,PR:Q9GZY0,http://purl.obolibrary.org/obo/PR_Q9GZY0,nuclear RNA export factor 2 (human) +16.9548485,PR:Q9H4I9,http://purl.obolibrary.org/obo/PR_Q9H4I9,"essential MCU regulator, mitochondrial (human)" +16.9548485,PR:Q9H714,http://purl.obolibrary.org/obo/PR_Q9H714,protein associated with UVRAG as autophagy enhancer (human) +16.9548485,PR:Q9H799,http://purl.obolibrary.org/obo/PR_Q9H799,ciliogenesis and planar polarity effector 1 (human) +16.9548485,PR:Q9H993,http://purl.obolibrary.org/obo/PR_Q9H993,damage-control phosphatase ARMT1 (human) +16.9548485,PR:Q9HE09,http://purl.obolibrary.org/obo/PR_Q9HE09,none +16.9548485,PR:Q9JIA3,http://purl.obolibrary.org/obo/PR_Q9JIA3,none +16.9548485,PR:Q9LDJ3,http://purl.obolibrary.org/obo/PR_Q9LDJ3,none +16.9548485,PR:Q9LDM4,http://purl.obolibrary.org/obo/PR_Q9LDM4,none +16.9548485,PR:Q9LES2,http://purl.obolibrary.org/obo/PR_Q9LES2,none +16.9548485,PR:Q9LFN7,http://purl.obolibrary.org/obo/PR_Q9LFN7,none +16.9548485,PR:Q9LFQ0,http://purl.obolibrary.org/obo/PR_Q9LFQ0,none +16.9548485,PR:Q9LFV3,http://purl.obolibrary.org/obo/PR_Q9LFV3,none +16.9548485,PR:Q9LG02,http://purl.obolibrary.org/obo/PR_Q9LG02,none +16.9548485,PR:Q9LG11,http://purl.obolibrary.org/obo/PR_Q9LG11,none +16.9548485,PR:Q9LHF0,http://purl.obolibrary.org/obo/PR_Q9LHF0,none +16.9548485,PR:Q9LIR6,http://purl.obolibrary.org/obo/PR_Q9LIR6,none +16.9548485,PR:Q9LJB4,http://purl.obolibrary.org/obo/PR_Q9LJB4,none +16.9548485,PR:Q9LJD8,http://purl.obolibrary.org/obo/PR_Q9LJD8,none +16.9548485,PR:Q9LJH5,http://purl.obolibrary.org/obo/PR_Q9LJH5,none +16.9548485,PR:Q9LJN2,http://purl.obolibrary.org/obo/PR_Q9LJN2,none +16.9548485,PR:Q9LJR2,http://purl.obolibrary.org/obo/PR_Q9LJR2,none +16.9548485,PR:Q9LJU7,http://purl.obolibrary.org/obo/PR_Q9LJU7,none +16.9548485,PR:Q9LK50,http://purl.obolibrary.org/obo/PR_Q9LK50,none +16.9548485,PR:Q9LKJ1,http://purl.obolibrary.org/obo/PR_Q9LKJ1,none +16.9548485,PR:Q9LLC1,http://purl.obolibrary.org/obo/PR_Q9LLC1,none +16.9548485,PR:Q9LM33,http://purl.obolibrary.org/obo/PR_Q9LM33,none +16.9548485,PR:Q9LMB9,http://purl.obolibrary.org/obo/PR_Q9LMB9,none +16.9548485,PR:Q9LMT0,http://purl.obolibrary.org/obo/PR_Q9LMT0,none +16.9548485,PR:Q9LN49,http://purl.obolibrary.org/obo/PR_Q9LN49,none +16.9548485,PR:Q9LNB9,http://purl.obolibrary.org/obo/PR_Q9LNB9,none +16.9548485,PR:Q9LND0,http://purl.obolibrary.org/obo/PR_Q9LND0,none +16.9548485,PR:Q9LNI5,http://purl.obolibrary.org/obo/PR_Q9LNI5,none +16.9548485,PR:Q9LNU3,http://purl.obolibrary.org/obo/PR_Q9LNU3,none +16.9548485,PR:Q9LP51,http://purl.obolibrary.org/obo/PR_Q9LP51,none +16.9548485,PR:Q9LP77,http://purl.obolibrary.org/obo/PR_Q9LP77,none +16.9548485,PR:Q9LPL3,http://purl.obolibrary.org/obo/PR_Q9LPL3,none +16.9548485,PR:Q9LPP4,http://purl.obolibrary.org/obo/PR_Q9LPP4,none +16.9548485,PR:Q9LPW3,http://purl.obolibrary.org/obo/PR_Q9LPW3,none +16.9548485,PR:Q9LQ27,http://purl.obolibrary.org/obo/PR_Q9LQ27,none +16.9548485,PR:Q9LQK0,http://purl.obolibrary.org/obo/PR_Q9LQK0,none +16.9548485,PR:Q9LQM7,http://purl.obolibrary.org/obo/PR_Q9LQM7,none +16.9548485,PR:Q9LQP8,http://purl.obolibrary.org/obo/PR_Q9LQP8,none +16.9548485,PR:Q9LQZ7,http://purl.obolibrary.org/obo/PR_Q9LQZ7,none +16.9548485,PR:Q9LRQ8,http://purl.obolibrary.org/obo/PR_Q9LRQ8,none +16.9548485,PR:Q9LRW3,http://purl.obolibrary.org/obo/PR_Q9LRW3,none +16.9548485,PR:Q9LSB1,http://purl.obolibrary.org/obo/PR_Q9LSB1,none +16.9548485,PR:Q9LSB4,http://purl.obolibrary.org/obo/PR_Q9LSB4,none +16.9548485,PR:Q9LSJ8,http://purl.obolibrary.org/obo/PR_Q9LSJ8,none +16.9548485,PR:Q9LSQ3,http://purl.obolibrary.org/obo/PR_Q9LSQ3,none +16.9548485,PR:Q9LT69,http://purl.obolibrary.org/obo/PR_Q9LT69,none +16.9548485,PR:Q9LTS6,http://purl.obolibrary.org/obo/PR_Q9LTS6,none +16.9548485,PR:Q9LTT3,http://purl.obolibrary.org/obo/PR_Q9LTT3,none +16.9548485,PR:Q9LU33,http://purl.obolibrary.org/obo/PR_Q9LU33,none +16.9548485,PR:Q9LU39,http://purl.obolibrary.org/obo/PR_Q9LU39,none +16.9548485,PR:Q9LU41,http://purl.obolibrary.org/obo/PR_Q9LU41,none +16.9548485,PR:Q9LUA3,http://purl.obolibrary.org/obo/PR_Q9LUA3,none +16.9548485,PR:Q9LUE1,http://purl.obolibrary.org/obo/PR_Q9LUE1,none +16.9548485,PR:Q9LUJ3,http://purl.obolibrary.org/obo/PR_Q9LUJ3,none +16.9548485,PR:Q9LUJ8,http://purl.obolibrary.org/obo/PR_Q9LUJ8,none +16.9548485,PR:Q9LUV2,http://purl.obolibrary.org/obo/PR_Q9LUV2,none +16.9548485,PR:Q9LVH5,http://purl.obolibrary.org/obo/PR_Q9LVH5,none +16.9548485,PR:Q9LVJ1,http://purl.obolibrary.org/obo/PR_Q9LVJ1,none +16.9548485,PR:Q9LVS0,http://purl.obolibrary.org/obo/PR_Q9LVS0,none +16.9548485,PR:Q9LVW2,http://purl.obolibrary.org/obo/PR_Q9LVW2,none +16.9548485,PR:Q9LVY0,http://purl.obolibrary.org/obo/PR_Q9LVY0,none +16.9548485,PR:Q9LVY1,http://purl.obolibrary.org/obo/PR_Q9LVY1,none +16.9548485,PR:Q9LVY2,http://purl.obolibrary.org/obo/PR_Q9LVY2,none +16.9548485,PR:Q9LVZ3,http://purl.obolibrary.org/obo/PR_Q9LVZ3,none +16.9548485,PR:Q9LW57,http://purl.obolibrary.org/obo/PR_Q9LW57,none +16.9548485,PR:Q9LW76,http://purl.obolibrary.org/obo/PR_Q9LW76,none +16.9548485,PR:Q9LW88,http://purl.obolibrary.org/obo/PR_Q9LW88,none +16.9548485,PR:Q9LXA8,http://purl.obolibrary.org/obo/PR_Q9LXA8,none +16.9548485,PR:Q9LXD1,http://purl.obolibrary.org/obo/PR_Q9LXD1,none +16.9548485,PR:Q9LXG5,http://purl.obolibrary.org/obo/PR_Q9LXG5,none +16.9548485,PR:Q9LXL9,http://purl.obolibrary.org/obo/PR_Q9LXL9,none +16.9548485,PR:Q9LY51,http://purl.obolibrary.org/obo/PR_Q9LY51,none +16.9548485,PR:Q9LYB9,http://purl.obolibrary.org/obo/PR_Q9LYB9,none +16.9548485,PR:Q9LYC1,http://purl.obolibrary.org/obo/PR_Q9LYC1,none +16.9548485,PR:Q9LYC5,http://purl.obolibrary.org/obo/PR_Q9LYC5,none +16.9548485,PR:Q9LYD3,http://purl.obolibrary.org/obo/PR_Q9LYD3,none +16.9548485,PR:Q9LYE5,http://purl.obolibrary.org/obo/PR_Q9LYE5,none +16.9548485,PR:Q9LYN0,http://purl.obolibrary.org/obo/PR_Q9LYN0,none +16.9548485,PR:Q9LZ72,http://purl.obolibrary.org/obo/PR_Q9LZ72,none +16.9548485,PR:Q9LZ82,http://purl.obolibrary.org/obo/PR_Q9LZ82,none +16.9548485,PR:Q9LZH9,http://purl.obolibrary.org/obo/PR_Q9LZH9,none +16.9548485,PR:Q9LZP9,http://purl.obolibrary.org/obo/PR_Q9LZP9,none +16.9548485,PR:Q9LZR5,http://purl.obolibrary.org/obo/PR_Q9LZR5,none +16.9548485,PR:Q9LZT4,http://purl.obolibrary.org/obo/PR_Q9LZT4,none +16.9548485,PR:Q9M020,http://purl.obolibrary.org/obo/PR_Q9M020,none +16.9548485,PR:Q9M021,http://purl.obolibrary.org/obo/PR_Q9M021,none +16.9548485,PR:Q9M024,http://purl.obolibrary.org/obo/PR_Q9M024,none +16.9548485,PR:Q9M0D0,http://purl.obolibrary.org/obo/PR_Q9M0D0,none +16.9548485,PR:Q9M0F9,http://purl.obolibrary.org/obo/PR_Q9M0F9,none +16.9548485,PR:Q9M0N8,http://purl.obolibrary.org/obo/PR_Q9M0N8,none +16.9548485,PR:Q9M0S8,http://purl.obolibrary.org/obo/PR_Q9M0S8,none +16.9548485,PR:Q9M0V4,http://purl.obolibrary.org/obo/PR_Q9M0V4,none +16.9548485,PR:Q9M0X9,http://purl.obolibrary.org/obo/PR_Q9M0X9,none +16.9548485,PR:Q9M0Z6,http://purl.obolibrary.org/obo/PR_Q9M0Z6,none +16.9548485,PR:Q9M126,http://purl.obolibrary.org/obo/PR_Q9M126,none +16.9548485,PR:Q9M128,http://purl.obolibrary.org/obo/PR_Q9M128,none +16.9548485,PR:Q9M146,http://purl.obolibrary.org/obo/PR_Q9M146,none +16.9548485,PR:Q9M1D0,http://purl.obolibrary.org/obo/PR_Q9M1D0,none +16.9548485,PR:Q9M1E8,http://purl.obolibrary.org/obo/PR_Q9M1E8,none +16.9548485,PR:Q9M1J6,http://purl.obolibrary.org/obo/PR_Q9M1J6,none +16.9548485,PR:Q9M1K9,http://purl.obolibrary.org/obo/PR_Q9M1K9,none +16.9548485,PR:Q9M1Q9,http://purl.obolibrary.org/obo/PR_Q9M1Q9,none +16.9548485,PR:Q9M1V3,http://purl.obolibrary.org/obo/PR_Q9M1V3,none +16.9548485,PR:Q9M1X2,http://purl.obolibrary.org/obo/PR_Q9M1X2,none +16.9548485,PR:Q9M1X9,http://purl.obolibrary.org/obo/PR_Q9M1X9,none +16.9548485,PR:Q9M1Y0,http://purl.obolibrary.org/obo/PR_Q9M1Y0,none +16.9548485,PR:Q9M205,http://purl.obolibrary.org/obo/PR_Q9M205,none +16.9548485,PR:Q9M219,http://purl.obolibrary.org/obo/PR_Q9M219,none +16.9548485,PR:Q9M246,http://purl.obolibrary.org/obo/PR_Q9M246,none +16.9548485,PR:Q9M2Y9,http://purl.obolibrary.org/obo/PR_Q9M2Y9,none +16.9548485,PR:Q9M345,http://purl.obolibrary.org/obo/PR_Q9M345,none +16.9548485,PR:Q9M347,http://purl.obolibrary.org/obo/PR_Q9M347,none +16.9548485,PR:Q9M3D8,http://purl.obolibrary.org/obo/PR_Q9M3D8,none +16.9548485,PR:Q9M401,http://purl.obolibrary.org/obo/PR_Q9M401,none +16.9548485,PR:Q9M439,http://purl.obolibrary.org/obo/PR_Q9M439,none +16.9548485,PR:Q9M4A1,http://purl.obolibrary.org/obo/PR_Q9M4A1,none +16.9548485,PR:Q9M4A2,http://purl.obolibrary.org/obo/PR_Q9M4A2,none +16.9548485,PR:Q9M4T3,http://purl.obolibrary.org/obo/PR_Q9M4T3,none +16.9548485,PR:Q9M7Q5,http://purl.obolibrary.org/obo/PR_Q9M7Q5,none +16.9548485,PR:Q9M811,http://purl.obolibrary.org/obo/PR_Q9M811,none +16.9548485,PR:Q9M8U1,http://purl.obolibrary.org/obo/PR_Q9M8U1,none +16.9548485,PR:Q9M9P0,http://purl.obolibrary.org/obo/PR_Q9M9P0,none +16.9548485,PR:Q9M9P3,http://purl.obolibrary.org/obo/PR_Q9M9P3,none +16.9548485,PR:Q9M9S3,http://purl.obolibrary.org/obo/PR_Q9M9S3,none +16.9548485,PR:Q9M9V7,http://purl.obolibrary.org/obo/PR_Q9M9V7,none +16.9548485,PR:Q9M9X4,http://purl.obolibrary.org/obo/PR_Q9M9X4,none +16.9548485,PR:Q9MA79,http://purl.obolibrary.org/obo/PR_Q9MA79,none +16.9548485,PR:Q9MBH1,http://purl.obolibrary.org/obo/PR_Q9MBH1,none +16.9548485,PR:Q9P3V0,http://purl.obolibrary.org/obo/PR_Q9P3V0,none +16.9548485,PR:Q9P546,http://purl.obolibrary.org/obo/PR_Q9P546,none +16.9548485,PR:Q9P6I7,http://purl.obolibrary.org/obo/PR_Q9P6I7,none +16.9548485,PR:Q9P6M8,http://purl.obolibrary.org/obo/PR_Q9P6M8,none +16.9548485,PR:Q9P7B2,http://purl.obolibrary.org/obo/PR_Q9P7B2,none +16.9548485,PR:Q9PWL5,http://purl.obolibrary.org/obo/PR_Q9PWL5,none +16.9548485,PR:Q9QXT3,http://purl.obolibrary.org/obo/PR_Q9QXT3,none +16.9548485,PR:Q9S4W7,http://purl.obolibrary.org/obo/PR_Q9S4W7,none +16.9548485,PR:Q9S4W9,http://purl.obolibrary.org/obo/PR_Q9S4W9,none +16.9548485,PR:Q9S4X1,http://purl.obolibrary.org/obo/PR_Q9S4X1,none +16.9548485,PR:Q9S744,http://purl.obolibrary.org/obo/PR_Q9S744,none +16.9548485,PR:Q9S745,http://purl.obolibrary.org/obo/PR_Q9S745,none +16.9548485,PR:Q9S7C0,http://purl.obolibrary.org/obo/PR_Q9S7C0,none +16.9548485,PR:Q9S7L5,http://purl.obolibrary.org/obo/PR_Q9S7L5,none +16.9548485,PR:Q9S7N9,http://purl.obolibrary.org/obo/PR_Q9S7N9,none +16.9548485,PR:Q9S7Z2,http://purl.obolibrary.org/obo/PR_Q9S7Z2,none +16.9548485,PR:Q9S834,http://purl.obolibrary.org/obo/PR_Q9S834,none +16.9548485,PR:Q9S847,http://purl.obolibrary.org/obo/PR_Q9S847,none +16.9548485,PR:Q9SA05,http://purl.obolibrary.org/obo/PR_Q9SA05,none +16.9548485,PR:Q9SA51,http://purl.obolibrary.org/obo/PR_Q9SA51,none +16.9548485,PR:Q9SAA2,http://purl.obolibrary.org/obo/PR_Q9SAA2,none +16.9548485,PR:Q9SAF5,http://purl.obolibrary.org/obo/PR_Q9SAF5,none +16.9548485,PR:Q9SAG8,http://purl.obolibrary.org/obo/PR_Q9SAG8,none +16.9548485,PR:Q9SB63,http://purl.obolibrary.org/obo/PR_Q9SB63,none +16.9548485,PR:Q9SB64,http://purl.obolibrary.org/obo/PR_Q9SB64,none +16.9548485,PR:Q9SB80,http://purl.obolibrary.org/obo/PR_Q9SB80,none +16.9548485,PR:Q9SCQ6,http://purl.obolibrary.org/obo/PR_Q9SCQ6,none +16.9548485,PR:Q9SCS9,http://purl.obolibrary.org/obo/PR_Q9SCS9,none +16.9548485,PR:Q9SCU9,http://purl.obolibrary.org/obo/PR_Q9SCU9,none +16.9548485,PR:Q9SCV5,http://purl.obolibrary.org/obo/PR_Q9SCV5,none +16.9548485,PR:Q9SCV8,http://purl.obolibrary.org/obo/PR_Q9SCV8,none +16.9548485,PR:Q9SCY3,http://purl.obolibrary.org/obo/PR_Q9SCY3,none +16.9548485,PR:Q9SDM9,http://purl.obolibrary.org/obo/PR_Q9SDM9,none +16.9548485,PR:Q9SE45,http://purl.obolibrary.org/obo/PR_Q9SE45,none +16.9548485,PR:Q9SEL7,http://purl.obolibrary.org/obo/PR_Q9SEL7,none +16.9548485,PR:Q9SFD5,http://purl.obolibrary.org/obo/PR_Q9SFD5,none +16.9548485,PR:Q9SGS2,http://purl.obolibrary.org/obo/PR_Q9SGS2,none +16.9548485,PR:Q9SGU9,http://purl.obolibrary.org/obo/PR_Q9SGU9,none +16.9548485,PR:Q9SGY2,http://purl.obolibrary.org/obo/PR_Q9SGY2,none +16.9548485,PR:Q9SH31,http://purl.obolibrary.org/obo/PR_Q9SH31,none +16.9548485,PR:Q9SHF3,http://purl.obolibrary.org/obo/PR_Q9SHF3,none +16.9548485,PR:Q9SHJ6,http://purl.obolibrary.org/obo/PR_Q9SHJ6,none +16.9548485,PR:Q9SHQ9,http://purl.obolibrary.org/obo/PR_Q9SHQ9,none +16.9548485,PR:Q9SHR7,http://purl.obolibrary.org/obo/PR_Q9SHR7,none +16.9548485,PR:Q9SI38,http://purl.obolibrary.org/obo/PR_Q9SI38,none +16.9548485,PR:Q9SIA3,http://purl.obolibrary.org/obo/PR_Q9SIA3,none +16.9548485,PR:Q9SIB6,http://purl.obolibrary.org/obo/PR_Q9SIB6,none +16.9548485,PR:Q9SIH4,http://purl.obolibrary.org/obo/PR_Q9SIH4,none +16.9548485,PR:Q9SIV3,http://purl.obolibrary.org/obo/PR_Q9SIV3,none +16.9548485,PR:Q9SJ20,http://purl.obolibrary.org/obo/PR_Q9SJ20,none +16.9548485,PR:Q9SJK6,http://purl.obolibrary.org/obo/PR_Q9SJK6,none +16.9548485,PR:Q9SJP9,http://purl.obolibrary.org/obo/PR_Q9SJP9,none +16.9548485,PR:Q9SJR5,http://purl.obolibrary.org/obo/PR_Q9SJR5,none +16.9548485,PR:Q9SJU5,http://purl.obolibrary.org/obo/PR_Q9SJU5,none +16.9548485,PR:Q9SJW3,http://purl.obolibrary.org/obo/PR_Q9SJW3,none +16.9548485,PR:Q9SJW9,http://purl.obolibrary.org/obo/PR_Q9SJW9,none +16.9548485,PR:Q9SJX7,http://purl.obolibrary.org/obo/PR_Q9SJX7,none +16.9548485,PR:Q9SK82,http://purl.obolibrary.org/obo/PR_Q9SK82,none +16.9548485,PR:Q9SK92,http://purl.obolibrary.org/obo/PR_Q9SK92,none +16.9548485,PR:Q9SKB7,http://purl.obolibrary.org/obo/PR_Q9SKB7,none +16.9548485,PR:Q9SKK0,http://purl.obolibrary.org/obo/PR_Q9SKK0,none +16.9548485,PR:Q9SKK4,http://purl.obolibrary.org/obo/PR_Q9SKK4,none +16.9548485,PR:Q9SKN5,http://purl.obolibrary.org/obo/PR_Q9SKN5,none +16.9548485,PR:Q9SKP6,http://purl.obolibrary.org/obo/PR_Q9SKP6,none +16.9548485,PR:Q9SKP9,http://purl.obolibrary.org/obo/PR_Q9SKP9,none +16.9548485,PR:Q9SKT1,http://purl.obolibrary.org/obo/PR_Q9SKT1,none +16.9548485,PR:Q9SKT6,http://purl.obolibrary.org/obo/PR_Q9SKT6,none +16.9548485,PR:Q9SLA0,http://purl.obolibrary.org/obo/PR_Q9SLA0,none +16.9548485,PR:Q9SLV0,http://purl.obolibrary.org/obo/PR_Q9SLV0,none +16.9548485,PR:Q9SMW7,http://purl.obolibrary.org/obo/PR_Q9SMW7,none +16.9548485,PR:Q9SN51,http://purl.obolibrary.org/obo/PR_Q9SN51,none +16.9548485,PR:Q9SNB6,http://purl.obolibrary.org/obo/PR_Q9SNB6,none +16.9548485,PR:Q9SNE1,http://purl.obolibrary.org/obo/PR_Q9SNE1,none +16.9548485,PR:Q9SQH9,http://purl.obolibrary.org/obo/PR_Q9SQH9,none +16.9548485,PR:Q9SR96,http://purl.obolibrary.org/obo/PR_Q9SR96,none +16.9548485,PR:Q9SRQ2,http://purl.obolibrary.org/obo/PR_Q9SRQ2,none +16.9548485,PR:Q9SRQ6,http://purl.obolibrary.org/obo/PR_Q9SRQ6,none +16.9548485,PR:Q9SS31,http://purl.obolibrary.org/obo/PR_Q9SS31,none +16.9548485,PR:Q9SSA5,http://purl.obolibrary.org/obo/PR_Q9SSA5,none +16.9548485,PR:Q9SSF0,http://purl.obolibrary.org/obo/PR_Q9SSF0,none +16.9548485,PR:Q9SSG5,http://purl.obolibrary.org/obo/PR_Q9SSG5,none +16.9548485,PR:Q9SSL9,http://purl.obolibrary.org/obo/PR_Q9SSL9,none +16.9548485,PR:Q9SSM7,http://purl.obolibrary.org/obo/PR_Q9SSM7,none +16.9548485,PR:Q9SSN3,http://purl.obolibrary.org/obo/PR_Q9SSN3,none +16.9548485,PR:Q9SSW2,http://purl.obolibrary.org/obo/PR_Q9SSW2,none +16.9548485,PR:Q9STM3,http://purl.obolibrary.org/obo/PR_Q9STM3,none +16.9548485,PR:Q9STX0,http://purl.obolibrary.org/obo/PR_Q9STX0,none +16.9548485,PR:Q9SU39,http://purl.obolibrary.org/obo/PR_Q9SU39,none +16.9548485,PR:Q9SU72,http://purl.obolibrary.org/obo/PR_Q9SU72,none +16.9548485,PR:Q9SU75,http://purl.obolibrary.org/obo/PR_Q9SU75,none +16.9548485,PR:Q9SUG7,http://purl.obolibrary.org/obo/PR_Q9SUG7,none +16.9548485,PR:Q9SUL7,http://purl.obolibrary.org/obo/PR_Q9SUL7,none +16.9548485,PR:Q9SV07,http://purl.obolibrary.org/obo/PR_Q9SV07,none +16.9548485,PR:Q9SV87,http://purl.obolibrary.org/obo/PR_Q9SV87,none +16.9548485,PR:Q9SVE5,http://purl.obolibrary.org/obo/PR_Q9SVE5,none +16.9548485,PR:Q9SVS1,http://purl.obolibrary.org/obo/PR_Q9SVS1,none +16.9548485,PR:Q9SVV6,http://purl.obolibrary.org/obo/PR_Q9SVV6,none +16.9548485,PR:Q9SW21,http://purl.obolibrary.org/obo/PR_Q9SW21,none +16.9548485,PR:Q9SW63,http://purl.obolibrary.org/obo/PR_Q9SW63,none +16.9548485,PR:Q9SW97,http://purl.obolibrary.org/obo/PR_Q9SW97,none +16.9548485,PR:Q9SX27,http://purl.obolibrary.org/obo/PR_Q9SX27,none +16.9548485,PR:Q9SXJ7,http://purl.obolibrary.org/obo/PR_Q9SXJ7,none +16.9548485,PR:Q9SXS7,http://purl.obolibrary.org/obo/PR_Q9SXS7,none +16.9548485,PR:Q9SY55,http://purl.obolibrary.org/obo/PR_Q9SY55,none +16.9548485,PR:Q9SYD6,http://purl.obolibrary.org/obo/PR_Q9SYD6,none +16.9548485,PR:Q9SYG9,http://purl.obolibrary.org/obo/PR_Q9SYG9,none +16.9548485,PR:Q9SYM2,http://purl.obolibrary.org/obo/PR_Q9SYM2,none +16.9548485,PR:Q9SYP2,http://purl.obolibrary.org/obo/PR_Q9SYP2,none +16.9548485,PR:Q9SZI3,http://purl.obolibrary.org/obo/PR_Q9SZI3,none +16.9548485,PR:Q9SZR1,http://purl.obolibrary.org/obo/PR_Q9SZR1,none +16.9548485,PR:Q9SZT4,http://purl.obolibrary.org/obo/PR_Q9SZT4,none +16.9548485,PR:Q9T0J9,http://purl.obolibrary.org/obo/PR_Q9T0J9,none +16.9548485,PR:Q9T0K1,http://purl.obolibrary.org/obo/PR_Q9T0K1,none +16.9548485,PR:Q9T0P4,http://purl.obolibrary.org/obo/PR_Q9T0P4,none +16.9548485,PR:Q9U3K5,http://purl.obolibrary.org/obo/PR_Q9U3K5,none +16.9548485,PR:Q9UPV7,http://purl.obolibrary.org/obo/PR_Q9UPV7,PHD finger protein 24 (human) +16.9548485,PR:Q9UR27,http://purl.obolibrary.org/obo/PR_Q9UR27,none +16.9548485,PR:Q9URT8,http://purl.obolibrary.org/obo/PR_Q9URT8,none +16.9548485,PR:Q9URT9,http://purl.obolibrary.org/obo/PR_Q9URT9,none +16.9548485,PR:Q9USS9,http://purl.obolibrary.org/obo/PR_Q9USS9,none +16.9548485,PR:Q9USX4,http://purl.obolibrary.org/obo/PR_Q9USX4,none +16.9548485,PR:Q9UT56,http://purl.obolibrary.org/obo/PR_Q9UT56,none +16.9548485,PR:Q9UU78,http://purl.obolibrary.org/obo/PR_Q9UU78,none +16.9548485,PR:Q9UW12,http://purl.obolibrary.org/obo/PR_Q9UW12,none +16.9548485,PR:Q9V477,http://purl.obolibrary.org/obo/PR_Q9V477,none +16.9548485,PR:Q9V4Z9,http://purl.obolibrary.org/obo/PR_Q9V4Z9,none +16.9548485,PR:Q9V6H2,http://purl.obolibrary.org/obo/PR_Q9V6H2,none +16.9548485,PR:Q9V751,http://purl.obolibrary.org/obo/PR_Q9V751,none +16.9548485,PR:Q9VA37,http://purl.obolibrary.org/obo/PR_Q9VA37,none +16.9548485,PR:Q9VEX5,http://purl.obolibrary.org/obo/PR_Q9VEX5,none +16.9548485,PR:Q9VEZ5,http://purl.obolibrary.org/obo/PR_Q9VEZ5,none +16.9548485,PR:Q9VG96,http://purl.obolibrary.org/obo/PR_Q9VG96,none +16.9548485,PR:Q9VG97,http://purl.obolibrary.org/obo/PR_Q9VG97,none +16.9548485,PR:Q9VG98,http://purl.obolibrary.org/obo/PR_Q9VG98,none +16.9548485,PR:Q9VK34,http://purl.obolibrary.org/obo/PR_Q9VK34,none +16.9548485,PR:Q9VW15,http://purl.obolibrary.org/obo/PR_Q9VW15,none +16.9548485,PR:Q9W601,http://purl.obolibrary.org/obo/PR_Q9W601,none +16.9548485,PR:Q9WTT6,http://purl.obolibrary.org/obo/PR_Q9WTT6,none +16.9548485,PR:Q9XEE2,http://purl.obolibrary.org/obo/PR_Q9XEE2,none +16.9548485,PR:Q9XHV0,http://purl.obolibrary.org/obo/PR_Q9XHV0,none +16.9548485,PR:Q9XIL9,http://purl.obolibrary.org/obo/PR_Q9XIL9,none +16.9548485,PR:Q9XXS1,http://purl.obolibrary.org/obo/PR_Q9XXS1,none +16.9548485,PR:Q9XXV8,http://purl.obolibrary.org/obo/PR_Q9XXV8,none +16.9548485,PR:Q9Y0T2,http://purl.obolibrary.org/obo/PR_Q9Y0T2,none +16.9548485,PR:Q9Y286,http://purl.obolibrary.org/obo/PR_Q9Y286,sialic acid-binding Ig-like lectin 7 (human) +16.9548485,PR:Q9Y821,http://purl.obolibrary.org/obo/PR_Q9Y821,none +16.9548485,PR:Q9YHX4,http://purl.obolibrary.org/obo/PR_Q9YHX4,none +16.9548485,PR:Q9Z0D9,http://purl.obolibrary.org/obo/PR_Q9Z0D9,none +16.9548485,PR:Q9Z1B2,http://purl.obolibrary.org/obo/PR_Q9Z1B2,none +16.9548485,PR:Q9Z2Q2,http://purl.obolibrary.org/obo/PR_Q9Z2Q2,none +16.9548485,PR:Q9Z3Q9,http://purl.obolibrary.org/obo/PR_Q9Z3Q9,none +16.9548485,PR:Q9ZNS6,http://purl.obolibrary.org/obo/PR_Q9ZNS6,none +16.9548485,PR:Q9ZP16,http://purl.obolibrary.org/obo/PR_Q9ZP16,none +16.9548485,PR:Q9ZPJ8,http://purl.obolibrary.org/obo/PR_Q9ZPJ8,none +16.9548485,PR:Q9ZQ95,http://purl.obolibrary.org/obo/PR_Q9ZQ95,none +16.9548485,PR:Q9ZS51,http://purl.obolibrary.org/obo/PR_Q9ZS51,none +16.9548485,PR:Q9ZT84,http://purl.obolibrary.org/obo/PR_Q9ZT84,none +16.9548485,PR:Q9ZTA3,http://purl.obolibrary.org/obo/PR_Q9ZTA3,none +16.9548485,PR:Q9ZTP3,http://purl.obolibrary.org/obo/PR_Q9ZTP3,none +16.9548485,PR:Q9ZTW3,http://purl.obolibrary.org/obo/PR_Q9ZTW3,none +16.9548485,PR:Q9ZTX8,http://purl.obolibrary.org/obo/PR_Q9ZTX8,none +16.9548485,PR:Q9ZU38,http://purl.obolibrary.org/obo/PR_Q9ZU38,none +16.9548485,PR:Q9ZUA0,http://purl.obolibrary.org/obo/PR_Q9ZUA0,none +16.9548485,PR:Q9ZUG9,http://purl.obolibrary.org/obo/PR_Q9ZUG9,none +16.9548485,PR:Q9ZUL3,http://purl.obolibrary.org/obo/PR_Q9ZUL3,none +16.9548485,PR:Q9ZUU1,http://purl.obolibrary.org/obo/PR_Q9ZUU1,none +16.9548485,PR:Q9ZUZ0,http://purl.obolibrary.org/obo/PR_Q9ZUZ0,none +16.9548485,PR:Q9ZV02,http://purl.obolibrary.org/obo/PR_Q9ZV02,none +16.9548485,PR:Q9ZV24,http://purl.obolibrary.org/obo/PR_Q9ZV24,none +16.9548485,PR:Q9ZV52,http://purl.obolibrary.org/obo/PR_Q9ZV52,none +16.9548485,PR:Q9ZVD5,http://purl.obolibrary.org/obo/PR_Q9ZVD5,none +16.9548485,PR:Q9ZVE7,http://purl.obolibrary.org/obo/PR_Q9ZVE7,none +16.9548485,PR:Q9ZVP8,http://purl.obolibrary.org/obo/PR_Q9ZVP8,none +16.9548485,PR:Q9ZVU5,http://purl.obolibrary.org/obo/PR_Q9ZVU5,none +16.9548485,PR:Q9ZVZ9,http://purl.obolibrary.org/obo/PR_Q9ZVZ9,none +16.9548485,PR:Q9ZW16,http://purl.obolibrary.org/obo/PR_Q9ZW16,none +16.9548485,PR:Q9ZW28,http://purl.obolibrary.org/obo/PR_Q9ZW28,none +16.9548485,PR:Q9ZW30,http://purl.obolibrary.org/obo/PR_Q9ZW30,none +16.9548485,PR:Q9ZW81,http://purl.obolibrary.org/obo/PR_Q9ZW81,none +16.9548485,PR:Q9ZW86,http://purl.obolibrary.org/obo/PR_Q9ZW86,none +16.9548485,PR:Q9ZWA2,http://purl.obolibrary.org/obo/PR_Q9ZWA2,none +16.9548485,PR:Q9ZZX1,http://purl.obolibrary.org/obo/PR_Q9ZZX1,none +16.9548485,PR:W5XKT8,http://purl.obolibrary.org/obo/PR_W5XKT8,sperm acrosome membrane-associated protein 6 (human) +16.9548485,PR:X1WGX5,http://purl.obolibrary.org/obo/PR_X1WGX5,none +16.9548485,SO:0000007,http://purl.obolibrary.org/obo/SO_0000007,read_pair +16.9548485,SO:0000012,http://purl.obolibrary.org/obo/SO_0000012,scRNA_primary_transcript +16.9548485,SO:0000025,http://purl.obolibrary.org/obo/SO_0000025,symmetric_RNA_internal_loop +16.9548485,SO:0000054,http://purl.obolibrary.org/obo/SO_0000054,aneuploid +16.9548485,SO:0000060,http://purl.obolibrary.org/obo/SO_0000060,compound_chromosome_arm +16.9548485,SO:0000065,http://purl.obolibrary.org/obo/SO_0000065,free_chromosome_arm +16.9548485,SO:0000093,http://purl.obolibrary.org/obo/SO_0000093,chromoplast_gene +16.9548485,SO:0000133,http://purl.obolibrary.org/obo/SO_0000133,epigenetically_modified +16.9548485,SO:0000138,http://purl.obolibrary.org/obo/SO_0000138,gene_rearranged_at_DNA_level +16.9548485,SO:0000191,http://purl.obolibrary.org/obo/SO_0000191,interior_intron +16.9548485,SO:0000219,http://purl.obolibrary.org/obo/SO_0000219,histidine_tRNA_primary_transcript +16.9548485,SO:0000226,http://purl.obolibrary.org/obo/SO_0000226,serine_tRNA_primary_transcript +16.9548485,SO:0000288,http://purl.obolibrary.org/obo/SO_0000288,engineered_fusion_gene +16.9548485,SO:0000387,http://purl.obolibrary.org/obo/SO_0000387,RprA_RNA +16.9548485,SO:0000509,http://purl.obolibrary.org/obo/SO_0000509,D_J_C_cluster +16.9548485,SO:0000548,http://purl.obolibrary.org/obo/SO_0000548,gene_with_edited_transcript +16.9548485,SO:0000619,http://purl.obolibrary.org/obo/SO_0000619,A_box +16.9548485,SO:0000676,http://purl.obolibrary.org/obo/SO_0000676,canonical_three_prime_splice_site +16.9548485,SO:0000691,http://purl.obolibrary.org/obo/SO_0000691,cleaved_initiator_methionine +16.9548485,SO:0000741,http://purl.obolibrary.org/obo/SO_0000741,kinetoplast +16.9548485,SO:0000742,http://purl.obolibrary.org/obo/SO_0000742,maxicircle +16.9548485,SO:0000746,http://purl.obolibrary.org/obo/SO_0000746,cyanelle_sequence +16.9548485,SO:0000822,http://purl.obolibrary.org/obo/SO_0000822,cyanelle_chromosome +16.9548485,SO:0000904,http://purl.obolibrary.org/obo/SO_0000904,rearranged_at_DNA_level +16.9548485,SO:0000909,http://purl.obolibrary.org/obo/SO_0000909,supported_by_EST_or_cDNA +16.9548485,SO:0000935,http://purl.obolibrary.org/obo/SO_0000935,edited_CDS +16.9548485,SO:0000944,http://purl.obolibrary.org/obo/SO_0000944,attL_site +16.9548485,SO:0000945,http://purl.obolibrary.org/obo/SO_0000945,attR_site +16.9548485,SO:0000951,http://purl.obolibrary.org/obo/SO_0000951,eukaryotic_terminator +16.9548485,SO:0000955,http://purl.obolibrary.org/obo/SO_0000955,double_stranded_DNA_chromosome +16.9548485,SO:0000956,http://purl.obolibrary.org/obo/SO_0000956,single_stranded_DNA_chromosome +16.9548485,SO:0001008,http://purl.obolibrary.org/obo/SO_0001008,tetraloop +16.9548485,SO:0001034,http://purl.obolibrary.org/obo/SO_0001034,miRtron +16.9548485,SO:0001150,http://purl.obolibrary.org/obo/SO_0001150,beta_turn_type_six +16.9548485,SO:0001180,http://purl.obolibrary.org/obo/SO_0001180,AU_rich_element +16.9548485,SO:0001227,http://purl.obolibrary.org/obo/SO_0001227,gene_silenced_by_histone_deacetylation +16.9548485,SO:0001228,http://purl.obolibrary.org/obo/SO_0001228,dihydrouridine +16.9548485,SO:0001232,http://purl.obolibrary.org/obo/SO_0001232,ribothymidine +16.9548485,SO:0001286,http://purl.obolibrary.org/obo/SO_0001286,five_formylcytidine +16.9548485,SO:0001290,http://purl.obolibrary.org/obo/SO_0001290,N4_methylcytidine +16.9548485,SO:0001298,http://purl.obolibrary.org/obo/SO_0001298,two_prime_O_methyladenosine +16.9548485,SO:0001322,http://purl.obolibrary.org/obo/SO_0001322,seven_aminomethyl_seven_deazaguanosine +16.9548485,SO:0001336,http://purl.obolibrary.org/obo/SO_0001336,wyosine +16.9548485,SO:0001345,http://purl.obolibrary.org/obo/SO_0001345,two_prime_O_methyluridine +16.9548485,SO:0001356,http://purl.obolibrary.org/obo/SO_0001356,uridine_five_oxyacetic_acid +16.9548485,SO:0001387,http://purl.obolibrary.org/obo/SO_0001387,modified_L_alanine +16.9548485,SO:0001401,http://purl.obolibrary.org/obo/SO_0001401,modified_L_leucine +16.9548485,SO:0001416,http://purl.obolibrary.org/obo/SO_0001416,five_prime_flanking_region +16.9548485,SO:0001485,http://purl.obolibrary.org/obo/SO_0001485,Y_prime_element +16.9548485,SO:0001495,http://purl.obolibrary.org/obo/SO_0001495,centromere_DNA_Element_III +16.9548485,SO:0001512,http://purl.obolibrary.org/obo/SO_0001512,insertion_attribute +16.9548485,SO:0001517,http://purl.obolibrary.org/obo/SO_0001517,inversion_attribute +16.9548485,SO:0001519,http://purl.obolibrary.org/obo/SO_0001519,paracentric +16.9548485,SO:0001523,http://purl.obolibrary.org/obo/SO_0001523,duplication_attribute +16.9548485,SO:0001599,http://purl.obolibrary.org/obo/SO_0001599,3D_polypeptide_structure_variant +16.9548485,SO:0001601,http://purl.obolibrary.org/obo/SO_0001601,conformational_change_variant +16.9548485,SO:0001642,http://purl.obolibrary.org/obo/SO_0001642,mathematically_defined_repeat +16.9548485,SO:0001664,http://purl.obolibrary.org/obo/SO_0001664,DCE +16.9548485,SO:0001715,http://purl.obolibrary.org/obo/SO_0001715,ISRE +16.9548485,SO:0001734,http://purl.obolibrary.org/obo/SO_0001734,H3K4_methylation_site +16.9548485,SO:0001741,http://purl.obolibrary.org/obo/SO_0001741,pseudogenic_gene_segment +16.9548485,SO:0001779,http://purl.obolibrary.org/obo/SO_0001779,pedigree_specific_variant +16.9548485,SO:0001786,http://purl.obolibrary.org/obo/SO_0001786,loss_of_heterozygosity +16.9548485,SO:0001792,http://purl.obolibrary.org/obo/SO_0001792,non_coding_transcript_exon_variant +16.9548485,SO:0001801,http://purl.obolibrary.org/obo/SO_0001801,tasiRNA_primary_transcript +16.9548485,SO:0001826,http://purl.obolibrary.org/obo/SO_0001826,disruptive_inframe_deletion +16.9548485,SO:0001829,http://purl.obolibrary.org/obo/SO_0001829,mRNA_contig +16.9548485,SO:0001859,http://purl.obolibrary.org/obo/SO_0001859,STREP_motif +16.9548485,SO:0001871,http://purl.obolibrary.org/obo/SO_0001871,PCB +16.9548485,SO:0001909,http://purl.obolibrary.org/obo/SO_0001909,frameshift_elongation +16.9548485,SO:0001921,http://purl.obolibrary.org/obo/SO_0001921,mitochondrial_contig +16.9548485,SO:0001967,http://purl.obolibrary.org/obo/SO_0001967,8_oxoadenine +16.9548485,SO:0001981,http://purl.obolibrary.org/obo/SO_0001981,L_box +16.9548485,SO:0002005,http://purl.obolibrary.org/obo/SO_0002005,DSR_motif +16.9548485,SO:0002024,http://purl.obolibrary.org/obo/SO_0002024,W_region +16.9548485,SO:0002033,http://purl.obolibrary.org/obo/SO_0002033,loR +16.9548485,SO:0002044,http://purl.obolibrary.org/obo/SO_0002044,TCS_element +16.9548485,SO:0002060,http://purl.obolibrary.org/obo/SO_0002060,interchromosomal_translocation +16.9548485,SO:0002097,http://purl.obolibrary.org/obo/SO_0002097,vertebrate_immune_system_pseudogene +16.9548485,SO:0002098,http://purl.obolibrary.org/obo/SO_0002098,immunoglobulin_pseudogene +16.9548485,SO:0002107,http://purl.obolibrary.org/obo/SO_0002107,transcribed_unprocessed_pseudogene +16.9548485,SO:0002108,http://purl.obolibrary.org/obo/SO_0002108,transcribed_unitary_pseudogene +16.9548485,SO:0002115,http://purl.obolibrary.org/obo/SO_0002115,pseudogenic_transcript_with_retained_intron +16.9548485,SO:0002125,http://purl.obolibrary.org/obo/SO_0002125,IG_J_gene +16.9548485,SO:0002156,http://purl.obolibrary.org/obo/SO_0002156,CArG_box +16.9548485,SO:0005841,http://purl.obolibrary.org/obo/SO_0005841,methylation_guide_snoRNA +16.9548485,SO:1000047,http://purl.obolibrary.org/obo/SO_1000047,paracentric_inversion +16.9548485,SO:1000153,http://purl.obolibrary.org/obo/SO_1000153,inverted_insertional_duplication +16.9548485,SO:1000155,http://purl.obolibrary.org/obo/SO_1000155,interchromosomal_transposition +16.9548485,SO:1001284,http://purl.obolibrary.org/obo/SO_1001284,regulon +16.9548485,UBERON:0000024,http://purl.obolibrary.org/obo/UBERON_0000024,forelimb wing +16.9548485,UBERON:0000040,http://purl.obolibrary.org/obo/UBERON_0000040,Leydig's organ +16.9548485,UBERON:0000154,http://purl.obolibrary.org/obo/UBERON_0000154,posterior region of body +16.9548485,UBERON:0000175,http://purl.obolibrary.org/obo/UBERON_0000175,pleural effusion +16.9548485,UBERON:0000219,http://purl.obolibrary.org/obo/UBERON_0000219,vertebral foramen of atlas +16.9548485,UBERON:0000403,http://purl.obolibrary.org/obo/UBERON_0000403,scalp +16.9548485,UBERON:0001028,http://purl.obolibrary.org/obo/UBERON_0001028,diaphysis of radius +16.9548485,UBERON:0001035,http://purl.obolibrary.org/obo/UBERON_0001035,dento-alveolar joint +16.9548485,UBERON:0001080,http://purl.obolibrary.org/obo/UBERON_0001080,postzygapophysis +16.9548485,UBERON:0001239,http://purl.obolibrary.org/obo/UBERON_0001239,muscularis mucosae of large intestine +16.9548485,UBERON:0001252,http://purl.obolibrary.org/obo/UBERON_0001252,adventitia of ureter +16.9548485,UBERON:0001253,http://purl.obolibrary.org/obo/UBERON_0001253,lamina propria of ureter +16.9548485,UBERON:0001321,http://purl.obolibrary.org/obo/UBERON_0001321,obturator vein +16.9548485,UBERON:0001332,http://purl.obolibrary.org/obo/UBERON_0001332,prepuce of penis +16.9548485,UBERON:0001350,http://purl.obolibrary.org/obo/UBERON_0001350,coccyx +16.9548485,UBERON:0001402,http://purl.obolibrary.org/obo/UBERON_0001402,longissimus cervicis muscle +16.9548485,UBERON:0001408,http://purl.obolibrary.org/obo/UBERON_0001408,semispinalis cervicis +16.9548485,UBERON:0001420,http://purl.obolibrary.org/obo/UBERON_0001420,subscapular vein +16.9548485,UBERON:0001472,http://purl.obolibrary.org/obo/UBERON_0001472,vaginal venous plexus +16.9548485,UBERON:0001501,http://purl.obolibrary.org/obo/UBERON_0001501,lumbrical muscle of manus +16.9548485,UBERON:0001502,http://purl.obolibrary.org/obo/UBERON_0001502,interosseous muscle of manus +16.9548485,UBERON:0001504,http://purl.obolibrary.org/obo/UBERON_0001504,lumbrical muscle of pes +16.9548485,UBERON:0001573,http://purl.obolibrary.org/obo/UBERON_0001573,styloglossus +16.9548485,UBERON:0001748,http://purl.obolibrary.org/obo/UBERON_0001748,capsule of parathyroid gland +16.9548485,UBERON:0001838,http://purl.obolibrary.org/obo/UBERON_0001838,sublingual duct +16.9548485,UBERON:0001923,http://purl.obolibrary.org/obo/UBERON_0001923,central medial nucleus +16.9548485,UBERON:0001936,http://purl.obolibrary.org/obo/UBERON_0001936,tuberomammillary nucleus +16.9548485,UBERON:0001939,http://purl.obolibrary.org/obo/UBERON_0001939,medial mammillary nucleus +16.9548485,UBERON:0001944,http://purl.obolibrary.org/obo/UBERON_0001944,pretectal region +16.9548485,UBERON:0001946,http://purl.obolibrary.org/obo/UBERON_0001946,inferior colliculus +16.9548485,UBERON:0001947,http://purl.obolibrary.org/obo/UBERON_0001947,red nucleus +16.9548485,UBERON:0001967,http://purl.obolibrary.org/obo/UBERON_0001967,reticular lamina of epithelium +16.9548485,UBERON:0002045,http://purl.obolibrary.org/obo/UBERON_0002045,cuneate nucleus +16.9548485,UBERON:0002089,http://purl.obolibrary.org/obo/UBERON_0002089,thoracodorsal vein +16.9548485,UBERON:0002105,http://purl.obolibrary.org/obo/UBERON_0002105,vestibulo-auditory system +16.9548485,UBERON:0002109,http://purl.obolibrary.org/obo/UBERON_0002109,pair of nares +16.9548485,UBERON:0002127,http://purl.obolibrary.org/obo/UBERON_0002127,inferior olivary complex +16.9548485,UBERON:0002141,http://purl.obolibrary.org/obo/UBERON_0002141,parvocellular oculomotor nucleus +16.9548485,UBERON:0002156,http://purl.obolibrary.org/obo/UBERON_0002156,nucleus raphe magnus +16.9548485,UBERON:0002157,http://purl.obolibrary.org/obo/UBERON_0002157,nucleus raphe pallidus +16.9548485,UBERON:0002205,http://purl.obolibrary.org/obo/UBERON_0002205,manubrium of sternum +16.9548485,UBERON:0002234,http://purl.obolibrary.org/obo/UBERON_0002234,proximal phalanx of manus +16.9548485,UBERON:0002271,http://purl.obolibrary.org/obo/UBERON_0002271,periventricular zone of hypothalamus +16.9548485,UBERON:0002272,http://purl.obolibrary.org/obo/UBERON_0002272,medial zone of hypothalamus +16.9548485,UBERON:0002273,http://purl.obolibrary.org/obo/UBERON_0002273,lateral zone of hypothalamus +16.9548485,UBERON:0002276,http://purl.obolibrary.org/obo/UBERON_0002276,lamina of spiral limbus +16.9548485,UBERON:0002283,http://purl.obolibrary.org/obo/UBERON_0002283,nail matrix +16.9548485,UBERON:0002326,http://purl.obolibrary.org/obo/UBERON_0002326,lamina propria of urethra +16.9548485,UBERON:0002340,http://purl.obolibrary.org/obo/UBERON_0002340,epithelium of main bronchus +16.9548485,UBERON:0002359,http://purl.obolibrary.org/obo/UBERON_0002359,fibrous pericardium +16.9548485,UBERON:0002399,http://purl.obolibrary.org/obo/UBERON_0002399,lesser omentum +16.9548485,UBERON:0002433,http://purl.obolibrary.org/obo/UBERON_0002433,pars tuberalis of adenohypophysis +16.9548485,UBERON:0002561,http://purl.obolibrary.org/obo/UBERON_0002561,lumen of central nervous system +16.9548485,UBERON:0002591,http://purl.obolibrary.org/obo/UBERON_0002591,oral part of spinal trigeminal nucleus +16.9548485,UBERON:0002599,http://purl.obolibrary.org/obo/UBERON_0002599,medial olfactory gyrus +16.9548485,UBERON:0002601,http://purl.obolibrary.org/obo/UBERON_0002601,fasciolar gyrus +16.9548485,UBERON:0002628,http://purl.obolibrary.org/obo/UBERON_0002628,tail of caudate nucleus +16.9548485,UBERON:0002658,http://purl.obolibrary.org/obo/UBERON_0002658,medial lemniscus of midbrain +16.9548485,UBERON:0002692,http://purl.obolibrary.org/obo/UBERON_0002692,medullary raphe nuclear complex +16.9548485,UBERON:0002706,http://purl.obolibrary.org/obo/UBERON_0002706,posterior nucleus of hypothalamus +16.9548485,UBERON:0002708,http://purl.obolibrary.org/obo/UBERON_0002708,posterior periventricular nucleus +16.9548485,UBERON:0002722,http://purl.obolibrary.org/obo/UBERON_0002722,trochlear nucleus +16.9548485,UBERON:0002742,http://purl.obolibrary.org/obo/UBERON_0002742,lamina of septum pellucidum +16.9548485,UBERON:0002759,http://purl.obolibrary.org/obo/UBERON_0002759,magnocellular nucleus of medial geniculate body +16.9548485,UBERON:0002767,http://purl.obolibrary.org/obo/UBERON_0002767,inferior rostral sulcus +16.9548485,UBERON:0002773,http://purl.obolibrary.org/obo/UBERON_0002773,anterior transverse temporal gyrus +16.9548485,UBERON:0002774,http://purl.obolibrary.org/obo/UBERON_0002774,posterior transverse temporal gyrus +16.9548485,UBERON:0002786,http://purl.obolibrary.org/obo/UBERON_0002786,root of abducens nerve +16.9548485,UBERON:0002787,http://purl.obolibrary.org/obo/UBERON_0002787,decussation of trochlear nerve +16.9548485,UBERON:0002800,http://purl.obolibrary.org/obo/UBERON_0002800,spinal trigeminal tract of pons +16.9548485,UBERON:0002832,http://purl.obolibrary.org/obo/UBERON_0002832,ventral nucleus of trapezoid body +16.9548485,UBERON:0002838,http://purl.obolibrary.org/obo/UBERON_0002838,first cervical dorsal root ganglion +16.9548485,UBERON:0002840,http://purl.obolibrary.org/obo/UBERON_0002840,third cervical dorsal root ganglion +16.9548485,UBERON:0002858,http://purl.obolibrary.org/obo/UBERON_0002858,third lumbar dorsal root ganglion +16.9548485,UBERON:0002885,http://purl.obolibrary.org/obo/UBERON_0002885,accessory basal amygdaloid nucleus +16.9548485,UBERON:0002901,http://purl.obolibrary.org/obo/UBERON_0002901,posterior calcarine sulcus +16.9548485,UBERON:0002972,http://purl.obolibrary.org/obo/UBERON_0002972,centromedian nucleus of thalamus +16.9548485,UBERON:0002985,http://purl.obolibrary.org/obo/UBERON_0002985,ventral nucleus of medial geniculate body +16.9548485,UBERON:0003015,http://purl.obolibrary.org/obo/UBERON_0003015,anterior quadrangular lobule +16.9548485,UBERON:0003045,http://purl.obolibrary.org/obo/UBERON_0003045,dorsal longitudinal fasciculus +16.9548485,UBERON:0003108,http://purl.obolibrary.org/obo/UBERON_0003108,suspensorium +16.9548485,UBERON:0003218,http://purl.obolibrary.org/obo/UBERON_0003218,ovary septum +16.9548485,UBERON:0003224,http://purl.obolibrary.org/obo/UBERON_0003224,chorion syncytiotrophoblast +16.9548485,UBERON:0003284,http://purl.obolibrary.org/obo/UBERON_0003284,mesentery of midgut +16.9548485,UBERON:0003288,http://purl.obolibrary.org/obo/UBERON_0003288,meninx of midbrain +16.9548485,UBERON:0003291,http://purl.obolibrary.org/obo/UBERON_0003291,meninx of hindbrain +16.9548485,UBERON:0003308,http://purl.obolibrary.org/obo/UBERON_0003308,floor plate of telencephalon +16.9548485,UBERON:0003321,http://purl.obolibrary.org/obo/UBERON_0003321,mesenchyme of knee +16.9548485,UBERON:0003323,http://purl.obolibrary.org/obo/UBERON_0003323,mesenchyme of upper jaw +16.9548485,UBERON:0003325,http://purl.obolibrary.org/obo/UBERON_0003325,mesenchyme of pinna +16.9548485,UBERON:0003328,http://purl.obolibrary.org/obo/UBERON_0003328,mesenchyme of footplate +16.9548485,UBERON:0003362,http://purl.obolibrary.org/obo/UBERON_0003362,epithelium of endolymphatic duct +16.9548485,UBERON:0003371,http://purl.obolibrary.org/obo/UBERON_0003371,pelvic appendage bud ectoderm +16.9548485,UBERON:0003383,http://purl.obolibrary.org/obo/UBERON_0003383,cardiac muscle tissue of interventricular septum +16.9548485,UBERON:0003410,http://purl.obolibrary.org/obo/UBERON_0003410,oropharyngeal gland +16.9548485,UBERON:0003419,http://purl.obolibrary.org/obo/UBERON_0003419,mesenchyme of parotid +16.9548485,UBERON:0003435,http://purl.obolibrary.org/obo/UBERON_0003435,pedal digit nerve +16.9548485,UBERON:0003453,http://purl.obolibrary.org/obo/UBERON_0003453,large intestine Peyer's patch +16.9548485,UBERON:0003475,http://purl.obolibrary.org/obo/UBERON_0003475,ureteric vein +16.9548485,UBERON:0003506,http://purl.obolibrary.org/obo/UBERON_0003506,chest blood vessel +16.9548485,UBERON:0003539,http://purl.obolibrary.org/obo/UBERON_0003539,left lung bronchiole +16.9548485,UBERON:0003572,http://purl.obolibrary.org/obo/UBERON_0003572,chest connective tissue +16.9548485,UBERON:0003594,http://purl.obolibrary.org/obo/UBERON_0003594,pelvis connective tissue +16.9548485,UBERON:0003595,http://purl.obolibrary.org/obo/UBERON_0003595,pes connective tissue +16.9548485,UBERON:0003622,http://purl.obolibrary.org/obo/UBERON_0003622,manual digit 2 +16.9548485,UBERON:0003623,http://purl.obolibrary.org/obo/UBERON_0003623,manual digit 3 +16.9548485,UBERON:0003631,http://purl.obolibrary.org/obo/UBERON_0003631,pedal digit 1 +16.9548485,UBERON:0003634,http://purl.obolibrary.org/obo/UBERON_0003634,pedal digit 4 +16.9548485,UBERON:0003705,http://purl.obolibrary.org/obo/UBERON_0003705,Meckel's diverticulum +16.9548485,UBERON:0003865,http://purl.obolibrary.org/obo/UBERON_0003865,distal phalanx of manus +16.9548485,UBERON:0003908,http://purl.obolibrary.org/obo/UBERON_0003908,right atrioventricular canal +16.9548485,UBERON:0003941,http://purl.obolibrary.org/obo/UBERON_0003941,cerebellum anterior vermis +16.9548485,UBERON:0003954,http://purl.obolibrary.org/obo/UBERON_0003954,squamoparietal suture +16.9548485,UBERON:0003993,http://purl.obolibrary.org/obo/UBERON_0003993,interventricular foramen of CNS +16.9548485,UBERON:0004015,http://purl.obolibrary.org/obo/UBERON_0004015,embryonic-extraembryonic boundary +16.9548485,UBERON:0004055,http://purl.obolibrary.org/obo/UBERON_0004055,primitive pit +16.9548485,UBERON:0004061,http://purl.obolibrary.org/obo/UBERON_0004061,neural tube mantle layer +16.9548485,UBERON:0004078,http://purl.obolibrary.org/obo/UBERON_0004078,cerebellum vermis lobule IX +16.9548485,UBERON:0004090,http://purl.obolibrary.org/obo/UBERON_0004090,periorbital region +16.9548485,UBERON:0004096,http://purl.obolibrary.org/obo/UBERON_0004096,odontoid process of cervical vertebra 2 +16.9548485,UBERON:0004149,http://purl.obolibrary.org/obo/UBERON_0004149,ventriculo bulbo valve +16.9548485,UBERON:0004235,http://purl.obolibrary.org/obo/UBERON_0004235,mammary gland smooth muscle +16.9548485,UBERON:0004238,http://purl.obolibrary.org/obo/UBERON_0004238,spleen smooth muscle +16.9548485,UBERON:0004257,http://purl.obolibrary.org/obo/UBERON_0004257,upper leg blood vessel +16.9548485,UBERON:0004274,http://purl.obolibrary.org/obo/UBERON_0004274,lateral ventricle choroid plexus epithelium +16.9548485,UBERON:0004275,http://purl.obolibrary.org/obo/UBERON_0004275,third ventricle choroid plexus epithelium +16.9548485,UBERON:0004276,http://purl.obolibrary.org/obo/UBERON_0004276,fourth ventricle choroid plexus epithelium +16.9548485,UBERON:0004289,http://purl.obolibrary.org/obo/UBERON_0004289,radula +16.9548485,UBERON:0004337,http://purl.obolibrary.org/obo/UBERON_0004337,distal phalanx of manual digit 1 +16.9548485,UBERON:0004338,http://purl.obolibrary.org/obo/UBERON_0004338,proximal phalanx of manual digit 1 +16.9548485,UBERON:0004391,http://purl.obolibrary.org/obo/UBERON_0004391,epiphysis of first metacarpal bone +16.9548485,UBERON:0004392,http://purl.obolibrary.org/obo/UBERON_0004392,epiphysis of second metacarpal bone +16.9548485,UBERON:0004393,http://purl.obolibrary.org/obo/UBERON_0004393,epiphysis of third metacarpal bone +16.9548485,UBERON:0004395,http://purl.obolibrary.org/obo/UBERON_0004395,epiphysis of first metatarsal bone +16.9548485,UBERON:0004403,http://purl.obolibrary.org/obo/UBERON_0004403,periosteum of epiphysis +16.9548485,UBERON:0004407,http://purl.obolibrary.org/obo/UBERON_0004407,distal epiphysis of radius +16.9548485,UBERON:0004410,http://purl.obolibrary.org/obo/UBERON_0004410,distal epiphysis of fibula +16.9548485,UBERON:0004413,http://purl.obolibrary.org/obo/UBERON_0004413,proximal epiphysis of radius +16.9548485,UBERON:0004422,http://purl.obolibrary.org/obo/UBERON_0004422,proximal epiphysis of first metacarpal bone +16.9548485,UBERON:0004423,http://purl.obolibrary.org/obo/UBERON_0004423,proximal epiphysis of second metacarpal bone +16.9548485,UBERON:0004427,http://purl.obolibrary.org/obo/UBERON_0004427,proximal epiphysis of first metatarsal bone +16.9548485,UBERON:0004456,http://purl.obolibrary.org/obo/UBERON_0004456,entire sense organ system +16.9548485,UBERON:0004474,http://purl.obolibrary.org/obo/UBERON_0004474,musculature of arm +16.9548485,UBERON:0004481,http://purl.obolibrary.org/obo/UBERON_0004481,musculature of upper limb +16.9548485,UBERON:0004606,http://purl.obolibrary.org/obo/UBERON_0004606,rib 6 +16.9548485,UBERON:0004608,http://purl.obolibrary.org/obo/UBERON_0004608,rib 9 +16.9548485,UBERON:0004609,http://purl.obolibrary.org/obo/UBERON_0004609,rib 10 +16.9548485,UBERON:0004665,http://purl.obolibrary.org/obo/UBERON_0004665,muscular coat of seminal vesicle +16.9548485,UBERON:0004668,http://purl.obolibrary.org/obo/UBERON_0004668,fourth ventricle aperture +16.9548485,UBERON:0004691,http://purl.obolibrary.org/obo/UBERON_0004691,bulbourethral gland secretion +16.9548485,UBERON:0004706,http://purl.obolibrary.org/obo/UBERON_0004706,bulbus cordis +16.9548485,UBERON:0004740,http://purl.obolibrary.org/obo/UBERON_0004740,basibranchial bone +16.9548485,UBERON:0004753,http://purl.obolibrary.org/obo/UBERON_0004753,scapulocoracoid +16.9548485,UBERON:0004775,http://purl.obolibrary.org/obo/UBERON_0004775,outer renal medulla vasa recta +16.9548485,UBERON:0004776,http://purl.obolibrary.org/obo/UBERON_0004776,inner renal medulla vasa recta +16.9548485,UBERON:0004830,http://purl.obolibrary.org/obo/UBERON_0004830,respiratory system skeletal muscle +16.9548485,UBERON:0004918,http://purl.obolibrary.org/obo/UBERON_0004918,internal urethral sphincter +16.9548485,UBERON:0004931,http://purl.obolibrary.org/obo/UBERON_0004931,submucosa of descending colon +16.9548485,UBERON:0004937,http://purl.obolibrary.org/obo/UBERON_0004937,submucosa of pylorus +16.9548485,UBERON:0004947,http://purl.obolibrary.org/obo/UBERON_0004947,submucosa of right main bronchus +16.9548485,UBERON:0004949,http://purl.obolibrary.org/obo/UBERON_0004949,submucosa of main bronchus +16.9548485,UBERON:0004982,http://purl.obolibrary.org/obo/UBERON_0004982,mucosa of epiglottis +16.9548485,UBERON:0004987,http://purl.obolibrary.org/obo/UBERON_0004987,mucosa of laryngopharynx +16.9548485,UBERON:0004989,http://purl.obolibrary.org/obo/UBERON_0004989,mucosa of appendix +16.9548485,UBERON:0004994,http://purl.obolibrary.org/obo/UBERON_0004994,mucosa of fundus of stomach +16.9548485,UBERON:0005009,http://purl.obolibrary.org/obo/UBERON_0005009,mucosa of trigone of urinary bladder +16.9548485,UBERON:0005023,http://purl.obolibrary.org/obo/UBERON_0005023,mucosa of oropharynx +16.9548485,UBERON:0005034,http://purl.obolibrary.org/obo/UBERON_0005034,mucosa of right main bronchus +16.9548485,UBERON:0005035,http://purl.obolibrary.org/obo/UBERON_0005035,mucosa of left main bronchus +16.9548485,UBERON:0005044,http://purl.obolibrary.org/obo/UBERON_0005044,mucosa of pharyngotympanic tube +16.9548485,UBERON:0005063,http://purl.obolibrary.org/obo/UBERON_0005063,left ventricular compact myocardium +16.9548485,UBERON:0005076,http://purl.obolibrary.org/obo/UBERON_0005076,hindbrain-spinal cord boundary +16.9548485,UBERON:0005081,http://purl.obolibrary.org/obo/UBERON_0005081,ureter ureteric bud +16.9548485,UBERON:0005091,http://purl.obolibrary.org/obo/UBERON_0005091,left horn of sinus venosus +16.9548485,UBERON:0005093,http://purl.obolibrary.org/obo/UBERON_0005093,embryonic cement gland +16.9548485,UBERON:0005094,http://purl.obolibrary.org/obo/UBERON_0005094,beak +16.9548485,UBERON:0005099,http://purl.obolibrary.org/obo/UBERON_0005099,short descending thin limb +16.9548485,UBERON:0005105,http://purl.obolibrary.org/obo/UBERON_0005105,posterior mesonephric tubule +16.9548485,UBERON:0005144,http://purl.obolibrary.org/obo/UBERON_0005144,metanephric glomerular capillary +16.9548485,UBERON:0005159,http://purl.obolibrary.org/obo/UBERON_0005159,pyramid of medulla oblongata +16.9548485,UBERON:0005226,http://purl.obolibrary.org/obo/UBERON_0005226,pedal digit epithelium +16.9548485,UBERON:0005263,http://purl.obolibrary.org/obo/UBERON_0005263,outflow tract cardiac jelly +16.9548485,UBERON:0005269,http://purl.obolibrary.org/obo/UBERON_0005269,renal cortex vein +16.9548485,UBERON:0005277,http://purl.obolibrary.org/obo/UBERON_0005277,dorsal skin of toe +16.9548485,UBERON:0005298,http://purl.obolibrary.org/obo/UBERON_0005298,skin of clitoris +16.9548485,UBERON:0005329,http://purl.obolibrary.org/obo/UBERON_0005329,mesonephric nephron tubule +16.9548485,UBERON:0005334,http://purl.obolibrary.org/obo/UBERON_0005334,oral lamina propria +16.9548485,UBERON:0005344,http://purl.obolibrary.org/obo/UBERON_0005344,peritoneal vaginal process +16.9548485,UBERON:0005446,http://purl.obolibrary.org/obo/UBERON_0005446,foramen rotundum +16.9548485,UBERON:0005477,http://purl.obolibrary.org/obo/UBERON_0005477,stomach fundus epithelium +16.9548485,UBERON:0005626,http://purl.obolibrary.org/obo/UBERON_0005626,ventral mesogastrium +16.9548485,UBERON:0005688,http://purl.obolibrary.org/obo/UBERON_0005688,lens vesicle cavity +16.9548485,UBERON:0005705,http://purl.obolibrary.org/obo/UBERON_0005705,primary palate mesenchyme +16.9548485,UBERON:0005723,http://purl.obolibrary.org/obo/UBERON_0005723,floor plate spinal cord region +16.9548485,UBERON:0005731,http://purl.obolibrary.org/obo/UBERON_0005731,fin field +16.9548485,UBERON:0005751,http://purl.obolibrary.org/obo/UBERON_0005751,visceral layer of glomerular capsule +16.9548485,UBERON:0005787,http://purl.obolibrary.org/obo/UBERON_0005787,lamina densa of glomerular basement membrane +16.9548485,UBERON:0005816,http://purl.obolibrary.org/obo/UBERON_0005816,posterior tubercle of transverse process of cervical vertebra +16.9548485,UBERON:0005841,http://purl.obolibrary.org/obo/UBERON_0005841,cervical spinal cord dorsal column +16.9548485,UBERON:0005886,http://purl.obolibrary.org/obo/UBERON_0005886,post-hyoid pharyngeal arch skeleton +16.9548485,UBERON:0005928,http://purl.obolibrary.org/obo/UBERON_0005928,external naris +16.9548485,UBERON:0005974,http://purl.obolibrary.org/obo/UBERON_0005974,posterior cerebellomedullary cistern +16.9548485,UBERON:0006063,http://purl.obolibrary.org/obo/UBERON_0006063,cartilaginous neural arch +16.9548485,UBERON:0006079,http://purl.obolibrary.org/obo/UBERON_0006079,subdivision of spinal cord dorsal column +16.9548485,UBERON:0006100,http://purl.obolibrary.org/obo/UBERON_0006100,Brodmann (1909) area 3 +16.9548485,UBERON:0006120,http://purl.obolibrary.org/obo/UBERON_0006120,superior colliculus superficial gray layer +16.9548485,UBERON:0006144,http://purl.obolibrary.org/obo/UBERON_0006144,medial plantar digital vein +16.9548485,UBERON:0006170,http://purl.obolibrary.org/obo/UBERON_0006170,mesonephric capsule +16.9548485,UBERON:0006212,http://purl.obolibrary.org/obo/UBERON_0006212,bulbo-ventricular groove +16.9548485,UBERON:0006217,http://purl.obolibrary.org/obo/UBERON_0006217,cloacal membrane +16.9548485,UBERON:0006242,http://purl.obolibrary.org/obo/UBERON_0006242,gall bladder primordium +16.9548485,UBERON:0006253,http://purl.obolibrary.org/obo/UBERON_0006253,embryonic intraretinal space +16.9548485,UBERON:0006273,http://purl.obolibrary.org/obo/UBERON_0006273,otic pit +16.9548485,UBERON:0006275,http://purl.obolibrary.org/obo/UBERON_0006275,pericardio-peritoneal canal +16.9548485,UBERON:0006298,http://purl.obolibrary.org/obo/UBERON_0006298,submandibular gland primordium +16.9548485,UBERON:0006305,http://purl.obolibrary.org/obo/UBERON_0006305,tunica vasculosa lentis +16.9548485,UBERON:0006319,http://purl.obolibrary.org/obo/UBERON_0006319,spinal cord reticular nucleus +16.9548485,UBERON:0006326,http://purl.obolibrary.org/obo/UBERON_0006326,base of arytenoid +16.9548485,UBERON:0006327,http://purl.obolibrary.org/obo/UBERON_0006327,laryngeal extrinsic muscle +16.9548485,UBERON:0006364,http://purl.obolibrary.org/obo/UBERON_0006364,ureteric bud tip +16.9548485,UBERON:0006440,http://purl.obolibrary.org/obo/UBERON_0006440,os clitoris +16.9548485,UBERON:0006455,http://purl.obolibrary.org/obo/UBERON_0006455,seventh thoracic spinal cord segment +16.9548485,UBERON:0006464,http://purl.obolibrary.org/obo/UBERON_0006464,fifth sacral spinal cord segment +16.9548485,UBERON:0006470,http://purl.obolibrary.org/obo/UBERON_0006470,C8 segment of cervical spinal cord +16.9548485,UBERON:0006494,http://purl.obolibrary.org/obo/UBERON_0006494,apex of arytenoid +16.9548485,UBERON:0006495,http://purl.obolibrary.org/obo/UBERON_0006495,osseus cochlear canal +16.9548485,UBERON:0006583,http://purl.obolibrary.org/obo/UBERON_0006583,statocyst +16.9548485,UBERON:0006614,http://purl.obolibrary.org/obo/UBERON_0006614,aponeurosis +16.9548485,UBERON:0006634,http://purl.obolibrary.org/obo/UBERON_0006634,lingual vein +16.9548485,UBERON:0006642,http://purl.obolibrary.org/obo/UBERON_0006642,muscle layer of oviduct +16.9548485,UBERON:0006662,http://purl.obolibrary.org/obo/UBERON_0006662,musculo-phrenic vein +16.9548485,UBERON:0006665,http://purl.obolibrary.org/obo/UBERON_0006665,accessory hemiazygos vein +16.9548485,UBERON:0006775,http://purl.obolibrary.org/obo/UBERON_0006775,zone of epiphyseal plate +16.9548485,UBERON:0006776,http://purl.obolibrary.org/obo/UBERON_0006776,annular epiphysis +16.9548485,UBERON:0006795,http://purl.obolibrary.org/obo/UBERON_0006795,arthropod optic lobe +16.9548485,UBERON:0006796,http://purl.obolibrary.org/obo/UBERON_0006796,cephalopod optic lobe +16.9548485,UBERON:0006810,http://purl.obolibrary.org/obo/UBERON_0006810,olecranon +16.9548485,UBERON:0006840,http://purl.obolibrary.org/obo/UBERON_0006840,nucleus of lateral lemniscus +16.9548485,UBERON:0006851,http://purl.obolibrary.org/obo/UBERON_0006851,renal cortex peritubular capillary +16.9548485,UBERON:0006905,http://purl.obolibrary.org/obo/UBERON_0006905,mandibular process mesenchyme +16.9548485,UBERON:0006920,http://purl.obolibrary.org/obo/UBERON_0006920,esophagus squamous epithelium +16.9548485,UBERON:0006921,http://purl.obolibrary.org/obo/UBERON_0006921,stomach squamous epithelium +16.9548485,UBERON:0006924,http://purl.obolibrary.org/obo/UBERON_0006924,stomach glandular epithelium +16.9548485,UBERON:0007122,http://purl.obolibrary.org/obo/UBERON_0007122,pharyngeal pouch 1 +16.9548485,UBERON:0007136,http://purl.obolibrary.org/obo/UBERON_0007136,rectouterine fold +16.9548485,UBERON:0007151,http://purl.obolibrary.org/obo/UBERON_0007151,mitral valve leaflet +16.9548485,UBERON:0007161,http://purl.obolibrary.org/obo/UBERON_0007161,medial arcuate ligament +16.9548485,UBERON:0007171,http://purl.obolibrary.org/obo/UBERON_0007171,border of scapula +16.9548485,UBERON:0007174,http://purl.obolibrary.org/obo/UBERON_0007174,medial border of scapula +16.9548485,UBERON:0007178,http://purl.obolibrary.org/obo/UBERON_0007178,muscularis mucosae of colon +16.9548485,UBERON:0007204,http://purl.obolibrary.org/obo/UBERON_0007204,brachiocephalic vasculature +16.9548485,UBERON:0007220,http://purl.obolibrary.org/obo/UBERON_0007220,late embryonic stage +16.9548485,UBERON:0007232,http://purl.obolibrary.org/obo/UBERON_0007232,2 cell stage +16.9548485,UBERON:0007241,http://purl.obolibrary.org/obo/UBERON_0007241,tunica adventitia of vein +16.9548485,UBERON:0007242,http://purl.obolibrary.org/obo/UBERON_0007242,tunica intima of vein +16.9548485,UBERON:0007265,http://purl.obolibrary.org/obo/UBERON_0007265,intervertebral disk of axis +16.9548485,UBERON:0007269,http://purl.obolibrary.org/obo/UBERON_0007269,pectoral appendage musculature +16.9548485,UBERON:0007279,http://purl.obolibrary.org/obo/UBERON_0007279,presumptive atrioventricular canal +16.9548485,UBERON:0007316,http://purl.obolibrary.org/obo/UBERON_0007316,deep external pudendal artery +16.9548485,UBERON:0007334,http://purl.obolibrary.org/obo/UBERON_0007334,nidopallium +16.9548485,UBERON:0007352,http://purl.obolibrary.org/obo/UBERON_0007352,stria vascularis vasculature +16.9548485,UBERON:0007354,http://purl.obolibrary.org/obo/UBERON_0007354,cartilage of pharyngotympanic tube +16.9548485,UBERON:0007414,http://purl.obolibrary.org/obo/UBERON_0007414,nucleus of midbrain tegmentum +16.9548485,UBERON:0007622,http://purl.obolibrary.org/obo/UBERON_0007622,pecten oculi +16.9548485,UBERON:0007637,http://purl.obolibrary.org/obo/UBERON_0007637,hippocampus stratum lucidum +16.9548485,UBERON:0007656,http://purl.obolibrary.org/obo/UBERON_0007656,lateral recess of fourth ventricle +16.9548485,UBERON:0007729,http://purl.obolibrary.org/obo/UBERON_0007729,interphalangeal joint of manual digit 2 +16.9548485,UBERON:0007731,http://purl.obolibrary.org/obo/UBERON_0007731,interphalangeal joint of manual digit 4 +16.9548485,UBERON:0007762,http://purl.obolibrary.org/obo/UBERON_0007762,metatarsophalangeal joint of pedal digit 5 +16.9548485,UBERON:0007800,http://purl.obolibrary.org/obo/UBERON_0007800,proatlas +16.9548485,UBERON:0007805,http://purl.obolibrary.org/obo/UBERON_0007805,synsacrum +16.9548485,UBERON:0007831,http://purl.obolibrary.org/obo/UBERON_0007831,pectoral girdle skeleton +16.9548485,UBERON:0008260,http://purl.obolibrary.org/obo/UBERON_0008260,spine appendage +16.9548485,UBERON:0008275,http://purl.obolibrary.org/obo/UBERON_0008275,carapace +16.9548485,UBERON:0008283,http://purl.obolibrary.org/obo/UBERON_0008283,columnella +16.9548485,UBERON:0008341,http://purl.obolibrary.org/obo/UBERON_0008341,columella nasi +16.9548485,UBERON:0008429,http://purl.obolibrary.org/obo/UBERON_0008429,cervical vertebral foramen +16.9548485,UBERON:0008432,http://purl.obolibrary.org/obo/UBERON_0008432,thoracic vertebral foramen +16.9548485,UBERON:0008440,http://purl.obolibrary.org/obo/UBERON_0008440,webbed autopod +16.9548485,UBERON:0008442,http://purl.obolibrary.org/obo/UBERON_0008442,webbed pes +16.9548485,UBERON:0008456,http://purl.obolibrary.org/obo/UBERON_0008456,prezygapophysis of lumbar vertebra +16.9548485,UBERON:0008457,http://purl.obolibrary.org/obo/UBERON_0008457,prezygapophysis of sacral vertebra +16.9548485,UBERON:0008461,http://purl.obolibrary.org/obo/UBERON_0008461,postzygapophysis of lumbar vertebra +16.9548485,UBERON:0008583,http://purl.obolibrary.org/obo/UBERON_0008583,transverse muscle of tongue +16.9548485,UBERON:0008584,http://purl.obolibrary.org/obo/UBERON_0008584,vertical muscle of tongue +16.9548485,UBERON:0008588,http://purl.obolibrary.org/obo/UBERON_0008588,procerus +16.9548485,UBERON:0008609,http://purl.obolibrary.org/obo/UBERON_0008609,transversus menti muscle +16.9548485,UBERON:0008839,http://purl.obolibrary.org/obo/UBERON_0008839,palmar pad +16.9548485,UBERON:0008867,http://purl.obolibrary.org/obo/UBERON_0008867,trabecular network of bone +16.9548485,UBERON:0008870,http://purl.obolibrary.org/obo/UBERON_0008870,pulmonary alveolar parenchyma +16.9548485,UBERON:0008879,http://purl.obolibrary.org/obo/UBERON_0008879,ligament of pinna +16.9548485,UBERON:0008888,http://purl.obolibrary.org/obo/UBERON_0008888,vesical venous plexus +16.9548485,UBERON:0008894,http://purl.obolibrary.org/obo/UBERON_0008894,pharyngeal gill precursor +16.9548485,UBERON:0008895,http://purl.obolibrary.org/obo/UBERON_0008895,splanchnocranium +16.9548485,UBERON:0008960,http://purl.obolibrary.org/obo/UBERON_0008960,melon organ +16.9548485,UBERON:0008994,http://purl.obolibrary.org/obo/UBERON_0008994,equine glandular stomach +16.9548485,UBERON:0009024,http://purl.obolibrary.org/obo/UBERON_0009024,adrenal gland X zone +16.9548485,UBERON:0009029,http://purl.obolibrary.org/obo/UBERON_0009029,pudendal vein +16.9548485,UBERON:0009044,http://purl.obolibrary.org/obo/UBERON_0009044,pudendal venous plexus +16.9548485,UBERON:0009052,http://purl.obolibrary.org/obo/UBERON_0009052,medial nucleus of solitary tract +16.9548485,UBERON:0009065,http://purl.obolibrary.org/obo/UBERON_0009065,anterior thoracic air sac +16.9548485,UBERON:0009071,http://purl.obolibrary.org/obo/UBERON_0009071,mesobronchus +16.9548485,UBERON:0009119,http://purl.obolibrary.org/obo/UBERON_0009119,branchial basket +16.9548485,UBERON:0009125,http://purl.obolibrary.org/obo/UBERON_0009125,petrosal placode +16.9548485,UBERON:0009129,http://purl.obolibrary.org/obo/UBERON_0009129,right atrium endocardium +16.9548485,UBERON:0009138,http://purl.obolibrary.org/obo/UBERON_0009138,right common cardinal vein +16.9548485,UBERON:0009140,http://purl.obolibrary.org/obo/UBERON_0009140,right subcardinal vein +16.9548485,UBERON:0009202,http://purl.obolibrary.org/obo/UBERON_0009202,vasa recta descending limb +16.9548485,UBERON:0009291,http://purl.obolibrary.org/obo/UBERON_0009291,cartilaginous vertebral centrum +16.9548485,UBERON:0009474,http://purl.obolibrary.org/obo/UBERON_0009474,ascidian ampulla +16.9548485,UBERON:0009523,http://purl.obolibrary.org/obo/UBERON_0009523,mesenchyme of handplate +16.9548485,UBERON:0009553,http://purl.obolibrary.org/obo/UBERON_0009553,distal segment of pedal digit +16.9548485,UBERON:0009582,http://purl.obolibrary.org/obo/UBERON_0009582,spinal cord lateral wall +16.9548485,UBERON:0009583,http://purl.obolibrary.org/obo/UBERON_0009583,spinal cord mantle layer +16.9548485,UBERON:0009610,http://purl.obolibrary.org/obo/UBERON_0009610,forebrain neural plate +16.9548485,UBERON:0009636,http://purl.obolibrary.org/obo/UBERON_0009636,prechordal cartilage +16.9548485,UBERON:0009640,http://purl.obolibrary.org/obo/UBERON_0009640,hypophyseal cartilage +16.9548485,UBERON:0009718,http://purl.obolibrary.org/obo/UBERON_0009718,neurohypophyseal duct +16.9548485,UBERON:0009744,http://purl.obolibrary.org/obo/UBERON_0009744,lymph node medullary sinus +16.9548485,UBERON:0009848,http://purl.obolibrary.org/obo/UBERON_0009848,zona limitans intrathalamica +16.9548485,UBERON:0009858,http://purl.obolibrary.org/obo/UBERON_0009858,outer fibrous layer of periosteum +16.9548485,UBERON:0009862,http://purl.obolibrary.org/obo/UBERON_0009862,ascidian cerebral ganglion +16.9548485,UBERON:0009864,http://purl.obolibrary.org/obo/UBERON_0009864,ascidian neural gland +16.9548485,UBERON:0009865,http://purl.obolibrary.org/obo/UBERON_0009865,Hatschek's pit +16.9548485,UBERON:0009879,http://purl.obolibrary.org/obo/UBERON_0009879,tarsal skeleton +16.9548485,UBERON:0009960,http://purl.obolibrary.org/obo/UBERON_0009960,esophagus smooth muscle circular layer +16.9548485,UBERON:0009986,http://purl.obolibrary.org/obo/UBERON_0009986,lateral epicondyle of femur +16.9548485,UBERON:0009993,http://purl.obolibrary.org/obo/UBERON_0009993,primary chorionic villus +16.9548485,UBERON:0010032,http://purl.obolibrary.org/obo/UBERON_0010032,anterior part of tongue +16.9548485,UBERON:0010063,http://purl.obolibrary.org/obo/UBERON_0010063,tympanic cavity epithelium +16.9548485,UBERON:0010065,http://purl.obolibrary.org/obo/UBERON_0010065,auditory meatus epithelium +16.9548485,UBERON:0010066,http://purl.obolibrary.org/obo/UBERON_0010066,tympanic plate +16.9548485,UBERON:0010084,http://purl.obolibrary.org/obo/UBERON_0010084,future diaphragm +16.9548485,UBERON:0010175,http://purl.obolibrary.org/obo/UBERON_0010175,nutrient foramen vein +16.9548485,UBERON:0010197,http://purl.obolibrary.org/obo/UBERON_0010197,trunk of common carotid artery +16.9548485,UBERON:0010227,http://purl.obolibrary.org/obo/UBERON_0010227,future cardiac atrium +16.9548485,UBERON:0010279,http://purl.obolibrary.org/obo/UBERON_0010279,pericardial sinus +16.9548485,UBERON:0010293,http://purl.obolibrary.org/obo/UBERON_0010293,suprachoroid lamina +16.9548485,UBERON:0010298,http://purl.obolibrary.org/obo/UBERON_0010298,intramembranous scleral ossicle +16.9548485,UBERON:0010310,http://purl.obolibrary.org/obo/UBERON_0010310,nictitating membrane lamina +16.9548485,UBERON:0010311,http://purl.obolibrary.org/obo/UBERON_0010311,scleral sesamoid bone +16.9548485,UBERON:0010357,http://purl.obolibrary.org/obo/UBERON_0010357,secondary ossification center +16.9548485,UBERON:0010359,http://purl.obolibrary.org/obo/UBERON_0010359,pharyngeal arch mesenchyme from neural crest +16.9548485,UBERON:0010403,http://purl.obolibrary.org/obo/UBERON_0010403,brain marginal zone +16.9548485,UBERON:0010532,http://purl.obolibrary.org/obo/UBERON_0010532,primitive nephron +16.9548485,UBERON:0010534,http://purl.obolibrary.org/obo/UBERON_0010534,primitive mesonephric nephron +16.9548485,UBERON:0010737,http://purl.obolibrary.org/obo/UBERON_0010737,distal tarsal bone 4 +16.9548485,UBERON:0010747,http://purl.obolibrary.org/obo/UBERON_0010747,body of ilium +16.9548485,UBERON:0010753,http://purl.obolibrary.org/obo/UBERON_0010753,lymph node secondary follicle +16.9548485,UBERON:0010879,http://purl.obolibrary.org/obo/UBERON_0010879,tusk +16.9548485,UBERON:0010889,http://purl.obolibrary.org/obo/UBERON_0010889,ectethmoid +16.9548485,UBERON:0010892,http://purl.obolibrary.org/obo/UBERON_0010892,mesethmoid element +16.9548485,UBERON:0010950,http://purl.obolibrary.org/obo/UBERON_0010950,styloauricular muscle +16.9548485,UBERON:0010954,http://purl.obolibrary.org/obo/UBERON_0010954,ceratohyoideus muscle +16.9548485,UBERON:0011002,http://purl.obolibrary.org/obo/UBERON_0011002,articular cartilage element +16.9548485,UBERON:0011049,http://purl.obolibrary.org/obo/UBERON_0011049,uterovesical pouch +16.9548485,UBERON:0011094,http://purl.obolibrary.org/obo/UBERON_0011094,vertebra cartilage element +16.9548485,UBERON:0011131,http://purl.obolibrary.org/obo/UBERON_0011131,intermetacarpal joint +16.9548485,UBERON:0011136,http://purl.obolibrary.org/obo/UBERON_0011136,ligament of vertebral column +16.9548485,UBERON:0011159,http://purl.obolibrary.org/obo/UBERON_0011159,primary subdivision of cranial skeletal system +16.9548485,UBERON:0011176,http://purl.obolibrary.org/obo/UBERON_0011176,oval nucleus of stria terminalis +16.9548485,UBERON:0011205,http://purl.obolibrary.org/obo/UBERON_0011205,carpometacarpus +16.9548485,UBERON:0011218,http://purl.obolibrary.org/obo/UBERON_0011218,spinalis cervicis muscle +16.9548485,UBERON:0011237,http://purl.obolibrary.org/obo/UBERON_0011237,visceral fascia +16.9548485,UBERON:0011265,http://purl.obolibrary.org/obo/UBERON_0011265,carpometacarpal joint of digit 1 +16.9548485,UBERON:0011267,http://purl.obolibrary.org/obo/UBERON_0011267,quadratojugal bone +16.9548485,UBERON:0011268,http://purl.obolibrary.org/obo/UBERON_0011268,sublingua +16.9548485,UBERON:0011289,http://purl.obolibrary.org/obo/UBERON_0011289,pharyngobasilar fascia +16.9548485,UBERON:0011312,http://purl.obolibrary.org/obo/UBERON_0011312,hyoepiglottic muscle +16.9548485,UBERON:0011318,http://purl.obolibrary.org/obo/UBERON_0011318,capsule of temporomandibular joint +16.9548485,UBERON:0011366,http://purl.obolibrary.org/obo/UBERON_0011366,cleidobrachialis muscle +16.9548485,UBERON:0011374,http://purl.obolibrary.org/obo/UBERON_0011374,prepuce +16.9548485,UBERON:0011380,http://purl.obolibrary.org/obo/UBERON_0011380,female external urethral sphincter +16.9548485,UBERON:0011387,http://purl.obolibrary.org/obo/UBERON_0011387,constrictor vulvae muscle +16.9548485,UBERON:0011388,http://purl.obolibrary.org/obo/UBERON_0011388,male bulbospongiosus muscle +16.9548485,UBERON:0011509,http://purl.obolibrary.org/obo/UBERON_0011509,sphincter colli profundus muscle +16.9548485,UBERON:0011535,http://purl.obolibrary.org/obo/UBERON_0011535,chondroglossus muscle +16.9548485,UBERON:0011574,http://purl.obolibrary.org/obo/UBERON_0011574,mesonephric duct lumen +16.9548485,UBERON:0011583,http://purl.obolibrary.org/obo/UBERON_0011583,stylopodial skeleton +16.9548485,UBERON:0011621,http://purl.obolibrary.org/obo/UBERON_0011621,thyrohyoid cartilage +16.9548485,UBERON:0011626,http://purl.obolibrary.org/obo/UBERON_0011626,tympanohyoid cartilage +16.9548485,UBERON:0011627,http://purl.obolibrary.org/obo/UBERON_0011627,orbital part of frontal bone +16.9548485,UBERON:0011637,http://purl.obolibrary.org/obo/UBERON_0011637,prearticular bone +16.9548485,UBERON:0011640,http://purl.obolibrary.org/obo/UBERON_0011640,palatoglossal arch +16.9548485,UBERON:0011683,http://purl.obolibrary.org/obo/UBERON_0011683,adductor mandibulae +16.9548485,UBERON:0011686,http://purl.obolibrary.org/obo/UBERON_0011686,spiracularis muscle +16.9548485,UBERON:0011687,http://purl.obolibrary.org/obo/UBERON_0011687,levator hyomandibulae muscle +16.9548485,UBERON:0011692,http://purl.obolibrary.org/obo/UBERON_0011692,enameloid +16.9548485,UBERON:0011694,http://purl.obolibrary.org/obo/UBERON_0011694,embryo portion of umbilical artery +16.9548485,UBERON:0011784,http://purl.obolibrary.org/obo/UBERON_0011784,feather shaft +16.9548485,UBERON:0011803,http://purl.obolibrary.org/obo/UBERON_0011803,"feather bud, dermal component" +16.9548485,UBERON:0011804,http://purl.obolibrary.org/obo/UBERON_0011804,"feather bud, epidermal component" +16.9548485,UBERON:0011831,http://purl.obolibrary.org/obo/UBERON_0011831,duct of vestibular gland +16.9548485,UBERON:0011846,http://purl.obolibrary.org/obo/UBERON_0011846,acinus of sebaceous gland +16.9548485,UBERON:0011847,http://purl.obolibrary.org/obo/UBERON_0011847,acinus of parotid gland +16.9548485,UBERON:0011865,http://purl.obolibrary.org/obo/UBERON_0011865,corneal stroma collagen fibril +16.9548485,UBERON:0011904,http://purl.obolibrary.org/obo/UBERON_0011904,gastrolith +16.9548485,UBERON:0011910,http://purl.obolibrary.org/obo/UBERON_0011910,gastrocnemius externus +16.9548485,UBERON:0011917,http://purl.obolibrary.org/obo/UBERON_0011917,thalamic glomerulus +16.9548485,UBERON:0011936,http://purl.obolibrary.org/obo/UBERON_0011936,vibrissa hair bulb +16.9548485,UBERON:0011938,http://purl.obolibrary.org/obo/UBERON_0011938,vibrissa inner root sheath +16.9548485,UBERON:0011996,http://purl.obolibrary.org/obo/UBERON_0011996,pharyngeal adductor +16.9548485,UBERON:0012084,http://purl.obolibrary.org/obo/UBERON_0012084,lumen of secondary bronchus +16.9548485,UBERON:0012100,http://purl.obolibrary.org/obo/UBERON_0012100,appendicocostalis muscle +16.9548485,UBERON:0012103,http://purl.obolibrary.org/obo/UBERON_0012103,suspensory ligament of breast +16.9548485,UBERON:0012104,http://purl.obolibrary.org/obo/UBERON_0012104,sesamoid bone of the peroneus longus muscle +16.9548485,UBERON:0012110,http://purl.obolibrary.org/obo/UBERON_0012110,frontal process of zygomatic bone +16.9548485,UBERON:0012120,http://purl.obolibrary.org/obo/UBERON_0012120,vinculum of tendon +16.9548485,UBERON:0012243,http://purl.obolibrary.org/obo/UBERON_0012243,nuptial pad +16.9548485,UBERON:0012245,http://purl.obolibrary.org/obo/UBERON_0012245,silk +16.9548485,UBERON:0012249,http://purl.obolibrary.org/obo/UBERON_0012249,ectocervix +16.9548485,UBERON:0012287,http://purl.obolibrary.org/obo/UBERON_0012287,Rathkes pouch epithelium +16.9548485,UBERON:0012296,http://purl.obolibrary.org/obo/UBERON_0012296,urethral crest +16.9548485,UBERON:0012310,http://purl.obolibrary.org/obo/UBERON_0012310,deep lateral cervical lymph node +16.9548485,UBERON:0012334,http://purl.obolibrary.org/obo/UBERON_0012334,navicular bursa +16.9548485,UBERON:0012369,http://purl.obolibrary.org/obo/UBERON_0012369,longitudinal muscle layer of muscular coat +16.9548485,UBERON:0012377,http://purl.obolibrary.org/obo/UBERON_0012377,muscle layer of jejunum +16.9548485,UBERON:0012402,http://purl.obolibrary.org/obo/UBERON_0012402,small intestine smooth muscle longitudinal layer +16.9548485,UBERON:0012428,http://purl.obolibrary.org/obo/UBERON_0012428,proximal convoluted tubule brush border +16.9548485,UBERON:0012470,http://purl.obolibrary.org/obo/UBERON_0012470,wheel papilla +16.9548485,UBERON:0012504,http://purl.obolibrary.org/obo/UBERON_0012504,adventitia of esophagus +16.9548485,UBERON:0012650,http://purl.obolibrary.org/obo/UBERON_0012650,gastroduodenal junction +16.9548485,UBERON:0013074,http://purl.obolibrary.org/obo/UBERON_0013074,cornual diverticulum +16.9548485,UBERON:0013075,http://purl.obolibrary.org/obo/UBERON_0013075,venom gland duct +16.9548485,UBERON:0013148,http://purl.obolibrary.org/obo/UBERON_0013148,early midbrain vesicle +16.9548485,UBERON:0013167,http://purl.obolibrary.org/obo/UBERON_0013167,cricopharyngeal ligament +16.9548485,UBERON:0013172,http://purl.obolibrary.org/obo/UBERON_0013172,cricotracheal ligament +16.9548485,UBERON:0013190,http://purl.obolibrary.org/obo/UBERON_0013190,entotympanic bone +16.9548485,UBERON:0013198,http://purl.obolibrary.org/obo/UBERON_0013198,cocoon +16.9548485,UBERON:0013241,http://purl.obolibrary.org/obo/UBERON_0013241,embryonic urethral groove +16.9548485,UBERON:0013463,http://purl.obolibrary.org/obo/UBERON_0013463,temporal fossa +16.9548485,UBERON:0013474,http://purl.obolibrary.org/obo/UBERON_0013474,middle part of esophagus +16.9548485,UBERON:0013492,http://purl.obolibrary.org/obo/UBERON_0013492,prevertebral cervical fascia +16.9548485,UBERON:0013498,http://purl.obolibrary.org/obo/UBERON_0013498,vestibulo-cochlear VIII ganglion complex +16.9548485,UBERON:0013595,http://purl.obolibrary.org/obo/UBERON_0013595,postlateral sulcus +16.9548485,UBERON:0013656,http://purl.obolibrary.org/obo/UBERON_0013656,dulla +16.9548485,UBERON:0013679,http://purl.obolibrary.org/obo/UBERON_0013679,inner canthus of right eye +16.9548485,UBERON:0013680,http://purl.obolibrary.org/obo/UBERON_0013680,inner canthus of left eye +16.9548485,UBERON:0013691,http://purl.obolibrary.org/obo/UBERON_0013691,buttock +16.9548485,UBERON:0013692,http://purl.obolibrary.org/obo/UBERON_0013692,inframammary fold +16.9548485,UBERON:0013705,http://purl.obolibrary.org/obo/UBERON_0013705,fascia of Scarpa +16.9548485,UBERON:0013740,http://purl.obolibrary.org/obo/UBERON_0013740,wall of crypt of Lieberkuhn +16.9548485,UBERON:0013752,http://purl.obolibrary.org/obo/UBERON_0013752,diaphysis of metacarpal bone +16.9548485,UBERON:0013777,http://purl.obolibrary.org/obo/UBERON_0013777,skin of palm of manus +16.9548485,UBERON:0014277,http://purl.obolibrary.org/obo/UBERON_0014277,piriform cortex layer 1 +16.9548485,UBERON:0014385,http://purl.obolibrary.org/obo/UBERON_0014385,aryepiglottic fold +16.9548485,UBERON:0014458,http://purl.obolibrary.org/obo/UBERON_0014458,female bulbospongiosus muscle +16.9548485,UBERON:0014487,http://purl.obolibrary.org/obo/UBERON_0014487,distal phalanx of digit 5 +16.9548485,UBERON:0014491,http://purl.obolibrary.org/obo/UBERON_0014491,middle phalanx of digit 5 +16.9548485,UBERON:0014501,http://purl.obolibrary.org/obo/UBERON_0014501,proximal phalanx of digit 1 +16.9548485,UBERON:0014541,http://purl.obolibrary.org/obo/UBERON_0014541,thoracic division of spinal cord central canal +16.9548485,UBERON:0014542,http://purl.obolibrary.org/obo/UBERON_0014542,cervical division of cord spinal central canal +16.9548485,UBERON:0014544,http://purl.obolibrary.org/obo/UBERON_0014544,frontomarginal sulcus +16.9548485,UBERON:0014553,http://purl.obolibrary.org/obo/UBERON_0014553,CA3 stratum oriens +16.9548485,UBERON:0014607,http://purl.obolibrary.org/obo/UBERON_0014607,thoracic spinal cord lateral horn +16.9548485,UBERON:0014631,http://purl.obolibrary.org/obo/UBERON_0014631,dorsal gray commissure of spinal cord +16.9548485,UBERON:0014636,http://purl.obolibrary.org/obo/UBERON_0014636,thoracic spinal cord gray matter +16.9548485,UBERON:0014641,http://purl.obolibrary.org/obo/UBERON_0014641,terminal nerve root +16.9548485,UBERON:0014668,http://purl.obolibrary.org/obo/UBERON_0014668,distal interphalangeal joint of manual digit 2 +16.9548485,UBERON:0014670,http://purl.obolibrary.org/obo/UBERON_0014670,distal interphalangeal joint of manual digit 4 +16.9548485,UBERON:0014677,http://purl.obolibrary.org/obo/UBERON_0014677,distal interphalangeal joint of digit 2 +16.9548485,UBERON:0014679,http://purl.obolibrary.org/obo/UBERON_0014679,distal interphalangeal joint of digit 4 +16.9548485,UBERON:0014709,http://purl.obolibrary.org/obo/UBERON_0014709,carapace primordium +16.9548485,UBERON:0014710,http://purl.obolibrary.org/obo/UBERON_0014710,carapacial ridge +16.9548485,UBERON:0014727,http://purl.obolibrary.org/obo/UBERON_0014727,intercalated duct of salivary gland +16.9548485,UBERON:0014740,http://purl.obolibrary.org/obo/UBERON_0014740,dorsal pallium +16.9548485,UBERON:0014854,http://purl.obolibrary.org/obo/UBERON_0014854,anterior leaflet of mitral valve +16.9548485,UBERON:0014951,http://purl.obolibrary.org/obo/UBERON_0014951,proisocortex +16.9548485,UBERON:0015111,http://purl.obolibrary.org/obo/UBERON_0015111,distal tarsal bone 4 endochondral element +16.9548485,UBERON:0015155,http://purl.obolibrary.org/obo/UBERON_0015155,conjunctival space +16.9548485,UBERON:0015161,http://purl.obolibrary.org/obo/UBERON_0015161,inferior branch of oculomotor nerve +16.9548485,UBERON:0015179,http://purl.obolibrary.org/obo/UBERON_0015179,somite boundary epithelium +16.9548485,UBERON:0015213,http://purl.obolibrary.org/obo/UBERON_0015213,barnacle cement gland +16.9548485,UBERON:0015252,http://purl.obolibrary.org/obo/UBERON_0015252,coat hair follicle +16.9548485,UBERON:0015280,http://purl.obolibrary.org/obo/UBERON_0015280,pancreas left lobe +16.9548485,UBERON:0015433,http://purl.obolibrary.org/obo/UBERON_0015433,blood vessel external elastic membrane +16.9548485,UBERON:0015703,http://purl.obolibrary.org/obo/UBERON_0015703,rostrum of corpus callosum +16.9548485,UBERON:0015814,http://purl.obolibrary.org/obo/UBERON_0015814,outer ear epithelium +16.9548485,UBERON:0015828,http://purl.obolibrary.org/obo/UBERON_0015828,cerebellum ventricular layer +16.9548485,UBERON:0015840,http://purl.obolibrary.org/obo/UBERON_0015840,incisor dental lamina +16.9548485,UBERON:0015883,http://purl.obolibrary.org/obo/UBERON_0015883,gluteal lymph node +16.9548485,UBERON:0015922,http://purl.obolibrary.org/obo/UBERON_0015922,accessory mandibular lymph node +16.9548485,UBERON:0015925,http://purl.obolibrary.org/obo/UBERON_0015925,superficial intraparotid lymph node +16.9548485,UBERON:0016378,http://purl.obolibrary.org/obo/UBERON_0016378,ileocolic lymph node +16.9548485,UBERON:0016426,http://purl.obolibrary.org/obo/UBERON_0016426,proximal interphalangeal joint of little finger +16.9548485,UBERON:0016492,http://purl.obolibrary.org/obo/UBERON_0016492,foramen spinosum of sphenoid bone +16.9548485,UBERON:0016497,http://purl.obolibrary.org/obo/UBERON_0016497,epicondyle of humerus +16.9548485,UBERON:0016520,http://purl.obolibrary.org/obo/UBERON_0016520,epithelium of female urethra +16.9548485,UBERON:0016579,http://purl.obolibrary.org/obo/UBERON_0016579,lamina VIII of gray matter of spinal cord +16.9548485,UBERON:0016641,http://purl.obolibrary.org/obo/UBERON_0016641,subparafascicular nucleus +16.9548485,UBERON:0016843,http://purl.obolibrary.org/obo/UBERON_0016843,lateral nucleus of trapezoid body +16.9548485,UBERON:0016915,http://purl.obolibrary.org/obo/UBERON_0016915,vermilion +16.9548485,UBERON:0017156,http://purl.obolibrary.org/obo/UBERON_0017156,flexor cruris lateralis muscle +16.9548485,UBERON:0017164,http://purl.obolibrary.org/obo/UBERON_0017164,dorsal cloacal gland +16.9548485,UBERON:0017629,http://purl.obolibrary.org/obo/UBERON_0017629,mormyromast organ +16.9548485,UBERON:0017641,http://purl.obolibrary.org/obo/UBERON_0017641,meningeal branch of spinal nerve +16.9548485,UBERON:0018136,http://purl.obolibrary.org/obo/UBERON_0018136,maxillary fenestra +16.9548485,UBERON:0018155,http://purl.obolibrary.org/obo/UBERON_0018155,posterior incudal ligament +16.9548485,UBERON:0018238,http://purl.obolibrary.org/obo/UBERON_0018238,dorsal column nucleus +16.9548485,UBERON:0018264,http://purl.obolibrary.org/obo/UBERON_0018264,dorsal lateral ganglionic eminence +16.9548485,UBERON:0018307,http://purl.obolibrary.org/obo/UBERON_0018307,keel +16.9548485,UBERON:0018333,http://purl.obolibrary.org/obo/UBERON_0018333,labial cartilage +16.9548485,UBERON:0018341,http://purl.obolibrary.org/obo/UBERON_0018341,nasal process of premaxilla +16.9548485,UBERON:0018352,http://purl.obolibrary.org/obo/UBERON_0018352,prismatic cartilage +16.9548485,UBERON:0018379,http://purl.obolibrary.org/obo/UBERON_0018379,metacestode +16.9548485,UBERON:0018385,http://purl.obolibrary.org/obo/UBERON_0018385,metacercaria +16.9548485,UBERON:0018387,http://purl.obolibrary.org/obo/UBERON_0018387,cestode +16.9548485,UBERON:0018535,http://purl.obolibrary.org/obo/UBERON_0018535,forelimb feather +16.9548485,UBERON:0018540,http://purl.obolibrary.org/obo/UBERON_0018540,breast feather tract +16.9548485,UBERON:0018597,http://purl.obolibrary.org/obo/UBERON_0018597,upper primary canine tooth +16.9548485,UBERON:0018616,http://purl.obolibrary.org/obo/UBERON_0018616,primary upper tooth +16.9548485,UBERON:0018623,http://purl.obolibrary.org/obo/UBERON_0018623,lower secondary incisor tooth +16.9548485,UBERON:0018644,http://purl.obolibrary.org/obo/UBERON_0018644,deciduous molar tooth 1 +16.9548485,UBERON:0018688,http://purl.obolibrary.org/obo/UBERON_0018688,hindlimb feather +16.9548485,UBERON:0019241,http://purl.obolibrary.org/obo/UBERON_0019241,pedal digit 1 or 5 +16.9548485,UBERON:0019242,http://purl.obolibrary.org/obo/UBERON_0019242,"pedal digit 2, 3 or 4" +16.9548485,UBERON:0019247,http://purl.obolibrary.org/obo/UBERON_0019247,plantar skin crease +16.9548485,UBERON:0019255,http://purl.obolibrary.org/obo/UBERON_0019255,lower eyelash +16.9548485,UBERON:0019280,http://purl.obolibrary.org/obo/UBERON_0019280,rostral gyrus +16.9548485,UBERON:0019295,http://purl.obolibrary.org/obo/UBERON_0019295,caudal intralaminar nuclear group +16.9548485,UBERON:0019327,http://purl.obolibrary.org/obo/UBERON_0019327,orbital lobe of lacrimal gland +16.9548485,UBERON:0022230,http://purl.obolibrary.org/obo/UBERON_0022230,retrohippocampal region +16.9548485,UBERON:0022282,http://purl.obolibrary.org/obo/UBERON_0022282,secretion of Harderian gland +16.9548485,UBERON:0022284,http://purl.obolibrary.org/obo/UBERON_0022284,lacrimal gland bud +16.9548485,UBERON:0022326,http://purl.obolibrary.org/obo/UBERON_0022326,molecular layer of dorsal cochlear nucleus +16.9548485,UBERON:0022428,http://purl.obolibrary.org/obo/UBERON_0022428,cingulate cortex cingulum +16.9548485,UBERON:0023932,http://purl.obolibrary.org/obo/UBERON_0023932,Sommer's sector +16.9548485,UBERON:0025763,http://purl.obolibrary.org/obo/UBERON_0025763,rostral sulcus +16.9548485,UBERON:0026722,http://purl.obolibrary.org/obo/UBERON_0026722,transverse parietal sulcus +16.9548485,UBERON:0027061,http://purl.obolibrary.org/obo/UBERON_0027061,isthmus of cingulate cortex +16.9548485,UBERON:0027513,http://purl.obolibrary.org/obo/UBERON_0027513,posterior superior frontal sulcus +16.9548485,UBERON:0034704,http://purl.obolibrary.org/obo/UBERON_0034704,inflow tract of left ventricle +16.9548485,UBERON:0034710,http://purl.obolibrary.org/obo/UBERON_0034710,spinal cord ventricular layer +16.9548485,UBERON:0034717,http://purl.obolibrary.org/obo/UBERON_0034717,integumental taste bud +16.9548485,UBERON:0034726,http://purl.obolibrary.org/obo/UBERON_0034726,trunk taste bud +16.9548485,UBERON:0034938,http://purl.obolibrary.org/obo/UBERON_0034938,mucocartilage tissue +16.9548485,UBERON:0034940,http://purl.obolibrary.org/obo/UBERON_0034940,venous sinus cavity +16.9548485,UBERON:0034941,http://purl.obolibrary.org/obo/UBERON_0034941,blood sinus of vibrissa +16.9548485,UBERON:0034961,http://purl.obolibrary.org/obo/UBERON_0034961,embryonic lymph heart +16.9548485,UBERON:0035017,http://purl.obolibrary.org/obo/UBERON_0035017,nociceptor +16.9548485,UBERON:0035045,http://purl.obolibrary.org/obo/UBERON_0035045,parotid gland intralobular duct +16.9548485,UBERON:0035053,http://purl.obolibrary.org/obo/UBERON_0035053,interlobular duct of salivary gland +16.9548485,UBERON:0035100,http://purl.obolibrary.org/obo/UBERON_0035100,retractor penis magnus muscle +16.9548485,UBERON:0035103,http://purl.obolibrary.org/obo/UBERON_0035103,perineal body smooth muscle muscle tissue +16.9548485,UBERON:0035106,http://purl.obolibrary.org/obo/UBERON_0035106,raphe of perineum +16.9548485,UBERON:0035123,http://purl.obolibrary.org/obo/UBERON_0035123,palatomaxillary suture +16.9548485,UBERON:0035144,http://purl.obolibrary.org/obo/UBERON_0035144,preputial space +16.9548485,UBERON:0035154,http://purl.obolibrary.org/obo/UBERON_0035154,dorsolateral prefrontal cortex layer 2 +16.9548485,UBERON:0035155,http://purl.obolibrary.org/obo/UBERON_0035155,dorsolateral prefrontal cortex layer 3 +16.9548485,UBERON:0035566,http://purl.obolibrary.org/obo/UBERON_0035566,central pretectal nucleus +16.9548485,UBERON:0036304,http://purl.obolibrary.org/obo/UBERON_0036304,anatomical border +16.9548485,UBERON:1000005,http://purl.obolibrary.org/obo/UBERON_1000005,external ear margin +16.9548485,UBERON:1000009,http://purl.obolibrary.org/obo/UBERON_1000009,midline crest +16.9548485,UBERON:1600006,http://purl.obolibrary.org/obo/UBERON_1600006,paired fin radial element +16.9548485,UBERON:1700006,http://purl.obolibrary.org/obo/UBERON_1700006,paired fin radial cartilage +16.9548485,UBERON:2000000,http://purl.obolibrary.org/obo/UBERON_2000000,Brachet's cleft +16.9548485,UBERON:2000199,http://purl.obolibrary.org/obo/UBERON_2000199,dorsal periventricular hypothalamus +16.9548485,UBERON:2000211,http://purl.obolibrary.org/obo/UBERON_2000211,gill lamella +16.9548485,UBERON:2000232,http://purl.obolibrary.org/obo/UBERON_2000232,lateral semicircular canal primordium +16.9548485,UBERON:2000288,http://purl.obolibrary.org/obo/UBERON_2000288,supracarinalis +16.9548485,UBERON:2000307,http://purl.obolibrary.org/obo/UBERON_2000307,vestibulolateralis lobe +16.9548485,UBERON:2000324,http://purl.obolibrary.org/obo/UBERON_2000324,caudal periventricular hypothalamus +16.9548485,UBERON:2000388,http://purl.obolibrary.org/obo/UBERON_2000388,medial caudal lobe +16.9548485,UBERON:2000448,http://purl.obolibrary.org/obo/UBERON_2000448,tertiary gustatory nucleus +16.9548485,UBERON:2000452,http://purl.obolibrary.org/obo/UBERON_2000452,urohyal +16.9548485,UBERON:2000454,http://purl.obolibrary.org/obo/UBERON_2000454,ventral accessory optic nucleus +16.9548485,UBERON:2000468,http://purl.obolibrary.org/obo/UBERON_2000468,anterior crista primordium +16.9548485,UBERON:2000474,http://purl.obolibrary.org/obo/UBERON_2000474,intercalar +16.9548485,UBERON:2000549,http://purl.obolibrary.org/obo/UBERON_2000549,posttemporal +16.9548485,UBERON:2000582,http://purl.obolibrary.org/obo/UBERON_2000582,saccus dorsalis +16.9548485,UBERON:2000623,http://purl.obolibrary.org/obo/UBERON_2000623,basipterygium bone +16.9548485,UBERON:2000627,http://purl.obolibrary.org/obo/UBERON_2000627,posterior ceratohyal +16.9548485,UBERON:2000660,http://purl.obolibrary.org/obo/UBERON_2000660,epural +16.9548485,UBERON:2000725,http://purl.obolibrary.org/obo/UBERON_2000725,somite 11 +16.9548485,UBERON:2000727,http://purl.obolibrary.org/obo/UBERON_2000727,somite 17 +16.9548485,UBERON:2000734,http://purl.obolibrary.org/obo/UBERON_2000734,preural vertebra +16.9548485,UBERON:2000851,http://purl.obolibrary.org/obo/UBERON_2000851,somite 12 +16.9548485,UBERON:2000856,http://purl.obolibrary.org/obo/UBERON_2000856,somite 28 +16.9548485,UBERON:2000975,http://purl.obolibrary.org/obo/UBERON_2000975,somite 13 +16.9548485,UBERON:2000981,http://purl.obolibrary.org/obo/UBERON_2000981,somite 29 +16.9548485,UBERON:2001051,http://purl.obolibrary.org/obo/UBERON_2001051,caudal division of the internal carotid artery +16.9548485,UBERON:2001060,http://purl.obolibrary.org/obo/UBERON_2001060,basidorsal +16.9548485,UBERON:2001063,http://purl.obolibrary.org/obo/UBERON_2001063,posterior caudal vein +16.9548485,UBERON:2001143,http://purl.obolibrary.org/obo/UBERON_2001143,tooth 4V +16.9548485,UBERON:2001150,http://purl.obolibrary.org/obo/UBERON_2001150,tooth 2D +16.9548485,UBERON:2001186,http://purl.obolibrary.org/obo/UBERON_2001186,collagenous dermal stroma +16.9548485,UBERON:2001191,http://purl.obolibrary.org/obo/UBERON_2001191,supraneural 2 bone +16.9548485,UBERON:2001312,http://purl.obolibrary.org/obo/UBERON_2001312,dorsal anterior lateral line ganglion +16.9548485,UBERON:2001335,http://purl.obolibrary.org/obo/UBERON_2001335,supradorsal +16.9548485,UBERON:2001425,http://purl.obolibrary.org/obo/UBERON_2001425,basal plate cartilage +16.9548485,UBERON:2001470,http://purl.obolibrary.org/obo/UBERON_2001470,anterior lateral line +16.9548485,UBERON:2001481,http://purl.obolibrary.org/obo/UBERON_2001481,ventral anterior lateral line nerve +16.9548485,UBERON:2001511,http://purl.obolibrary.org/obo/UBERON_2001511,interhyal cartilage +16.9548485,UBERON:2001544,http://purl.obolibrary.org/obo/UBERON_2001544,sublingual cartilage +16.9548485,UBERON:2001632,http://purl.obolibrary.org/obo/UBERON_2001632,ectopterygoid tooth +16.9548485,UBERON:2001660,http://purl.obolibrary.org/obo/UBERON_2001660,basibranchial tooth +16.9548485,UBERON:2001688,http://purl.obolibrary.org/obo/UBERON_2001688,palatine cartilage +16.9548485,UBERON:2001814,http://purl.obolibrary.org/obo/UBERON_2001814,mandibular sensory canal +16.9548485,UBERON:2001865,http://purl.obolibrary.org/obo/UBERON_2001865,basibranchial 4 cartilage +16.9548485,UBERON:2001866,http://purl.obolibrary.org/obo/UBERON_2001866,basibranchial 5 cartilage +16.9548485,UBERON:2001867,http://purl.obolibrary.org/obo/UBERON_2001867,post-ceratobranchial cartilage +16.9548485,UBERON:2001918,http://purl.obolibrary.org/obo/UBERON_2001918,basibranchial 4 element +16.9548485,UBERON:2001919,http://purl.obolibrary.org/obo/UBERON_2001919,basibranchial 5 element +16.9548485,UBERON:2001992,http://purl.obolibrary.org/obo/UBERON_2001992,branched anal fin ray +16.9548485,UBERON:2002016,http://purl.obolibrary.org/obo/UBERON_2002016,pharyngobranchial 4 tooth plate +16.9548485,UBERON:2002031,http://purl.obolibrary.org/obo/UBERON_2002031,orbital foramen +16.9548485,UBERON:2002038,http://purl.obolibrary.org/obo/UBERON_2002038,basioccipital-exoccipital joint +16.9548485,UBERON:2002118,http://purl.obolibrary.org/obo/UBERON_2002118,scale radius +16.9548485,UBERON:2002120,http://purl.obolibrary.org/obo/UBERON_2002120,orbitosphenoid septum +16.9548485,UBERON:2002215,http://purl.obolibrary.org/obo/UBERON_2002215,otic vesicle protrusion +16.9548485,UBERON:2002218,http://purl.obolibrary.org/obo/UBERON_2002218,parallel fiber +16.9548485,UBERON:2002242,http://purl.obolibrary.org/obo/UBERON_2002242,scale primordium +16.9548485,UBERON:2002244,http://purl.obolibrary.org/obo/UBERON_2002244,supraoptic tract +16.9548485,UBERON:2005013,http://purl.obolibrary.org/obo/UBERON_2005013,concurrent branch afferent branchial artery +16.9548485,UBERON:2005017,http://purl.obolibrary.org/obo/UBERON_2005017,primordial midbrain channel +16.9548485,UBERON:2005031,http://purl.obolibrary.org/obo/UBERON_2005031,dorsal longitudinal vein +16.9548485,UBERON:2005036,http://purl.obolibrary.org/obo/UBERON_2005036,supraintestinal artery +16.9548485,UBERON:2005049,http://purl.obolibrary.org/obo/UBERON_2005049,prosencephalic artery +16.9548485,UBERON:2005054,http://purl.obolibrary.org/obo/UBERON_2005054,inner optic circle +16.9548485,UBERON:2005135,http://purl.obolibrary.org/obo/UBERON_2005135,primary dental epithelium +16.9548485,UBERON:2005150,http://purl.obolibrary.org/obo/UBERON_2005150,basal regeneration epithelium of regenerating fin/limb +16.9548485,UBERON:2005219,http://purl.obolibrary.org/obo/UBERON_2005219,choroid plexus vascular circuit +16.9548485,UBERON:2005304,http://purl.obolibrary.org/obo/UBERON_2005304,caudal fin blood vessel +16.9548485,UBERON:2005320,http://purl.obolibrary.org/obo/UBERON_2005320,dorsal longitudinal lymphatic vessel +16.9548485,UBERON:2005346,http://purl.obolibrary.org/obo/UBERON_2005346,extrapancreatic duct +16.9548485,UBERON:2007001,http://purl.obolibrary.org/obo/UBERON_2007001,dorso-rostral cluster +16.9548485,UBERON:2007055,http://purl.obolibrary.org/obo/UBERON_2007055,pillar of the lateral semicircular canal +16.9548485,UBERON:2007060,http://purl.obolibrary.org/obo/UBERON_2007060,dorsolateral field +16.9548485,UBERON:2100623,http://purl.obolibrary.org/obo/UBERON_2100623,basipterygium element +16.9548485,UBERON:2101586,http://purl.obolibrary.org/obo/UBERON_2101586,pectoral fin radial element +16.9548485,UBERON:2101587,http://purl.obolibrary.org/obo/UBERON_2101587,pectoral fin proximal radial element +16.9548485,UBERON:2201586,http://purl.obolibrary.org/obo/UBERON_2201586,pectoral fin radial cartilage +16.9548485,UBERON:2201587,http://purl.obolibrary.org/obo/UBERON_2201587,pectoral fin proximal radial cartilage +16.9548485,UBERON:3000002,http://purl.obolibrary.org/obo/UBERON_3000002,alary cartilage +16.9548485,UBERON:3000032,http://purl.obolibrary.org/obo/UBERON_3000032,auditory muscles +16.9548485,UBERON:3000101,http://purl.obolibrary.org/obo/UBERON_3000101,hyale +16.9548485,UBERON:3000259,http://purl.obolibrary.org/obo/UBERON_3000259,lamina inferior +16.9548485,UBERON:3000264,http://purl.obolibrary.org/obo/UBERON_3000264,lamina superior +16.9548485,UBERON:3000309,http://purl.obolibrary.org/obo/UBERON_3000309,narial muscles +16.9548485,UBERON:3000329,http://purl.obolibrary.org/obo/UBERON_3000329,oblique cartilage +16.9548485,UBERON:3000586,http://purl.obolibrary.org/obo/UBERON_3000586,superior prenasal cartilage +16.9548485,UBERON:3000601,http://purl.obolibrary.org/obo/UBERON_3000601,tectum nasi +16.9548485,UBERON:3000678,http://purl.obolibrary.org/obo/UBERON_3000678,esophageal process +16.9548485,UBERON:3000692,http://purl.obolibrary.org/obo/UBERON_3000692,pedicel +16.9548485,UBERON:3000714,http://purl.obolibrary.org/obo/UBERON_3000714,perichordal +16.9548485,UBERON:3000748,http://purl.obolibrary.org/obo/UBERON_3000748,suprascapula +16.9548485,UBERON:3000993,http://purl.obolibrary.org/obo/UBERON_3000993,otic and occipital +16.9548485,UBERON:3001003,http://purl.obolibrary.org/obo/UBERON_3001003,cloacal fold +16.9548485,UBERON:3001008,http://purl.obolibrary.org/obo/UBERON_3001008,body wart +16.9548485,UBERON:3010006,http://purl.obolibrary.org/obo/UBERON_3010006,dorsal skin texture +16.9548485,UBERON:3010010,http://purl.obolibrary.org/obo/UBERON_3010010,ventral skin texture +16.9548485,UBERON:3010087,http://purl.obolibrary.org/obo/UBERON_3010087,M. tibialis anticus longus +16.9548485,UBERON:3010103,http://purl.obolibrary.org/obo/UBERON_3010103,vocal sac glands +16.9548485,UBERON:3010106,http://purl.obolibrary.org/obo/UBERON_3010106,tympanic papilla +16.9548485,UBERON:3010142,http://purl.obolibrary.org/obo/UBERON_3010142,occipital arch +16.9548485,UBERON:3010178,http://purl.obolibrary.org/obo/UBERON_3010178,finger glands +16.9548485,UBERON:3010179,http://purl.obolibrary.org/obo/UBERON_3010179,web glands +16.9548485,UBERON:3010231,http://purl.obolibrary.org/obo/UBERON_3010231,costal folds +16.9548485,UBERON:3010417,http://purl.obolibrary.org/obo/UBERON_3010417,posterior palatine artery +16.9548485,UBERON:3010506,http://purl.obolibrary.org/obo/UBERON_3010506,postcaval vein +16.9548485,UBERON:3010523,http://purl.obolibrary.org/obo/UBERON_3010523,M. plantaris longus +16.9548485,UBERON:3010586,http://purl.obolibrary.org/obo/UBERON_3010586,vasa efferentia +16.9548485,UBERON:3010780,http://purl.obolibrary.org/obo/UBERON_3010780,pars recta +16.9548485,UBERON:3010804,http://purl.obolibrary.org/obo/UBERON_3010804,ramus ventral +16.9548485,UBERON:3010813,http://purl.obolibrary.org/obo/UBERON_3010813,vent glands +16.9548485,UBERON:3010829,http://purl.obolibrary.org/obo/UBERON_3010829,sulcus intermedius +16.9548485,UBERON:3010832,http://purl.obolibrary.org/obo/UBERON_3010832,occipital segment +16.9548485,UBERON:4000030,http://purl.obolibrary.org/obo/UBERON_4000030,oropharyngeal papilla +16.9548485,UBERON:4000102,http://purl.obolibrary.org/obo/UBERON_4000102,osteodentine +16.9548485,UBERON:4000118,http://purl.obolibrary.org/obo/UBERON_4000118,cellular bone tissue +16.9548485,UBERON:4000166,http://purl.obolibrary.org/obo/UBERON_4000166,anal fin skeleton +16.9548485,UBERON:4100119,http://purl.obolibrary.org/obo/UBERON_4100119,extratemporal bone +16.9548485,UBERON:4200055,http://purl.obolibrary.org/obo/UBERON_4200055,homocercal tail +16.9548485,UBERON:4200056,http://purl.obolibrary.org/obo/UBERON_4200056,hypocercal tail +16.9548485,UBERON:4200096,http://purl.obolibrary.org/obo/UBERON_4200096,intercondylar fossa +16.9548485,UBERON:4200169,http://purl.obolibrary.org/obo/UBERON_4200169,process 2 +16.9548485,UBERON:4200194,http://purl.obolibrary.org/obo/UBERON_4200194,intercentrum +16.9548485,UBERON:4200198,http://purl.obolibrary.org/obo/UBERON_4200198,incisor process +16.9548485,UBERON:4300029,http://purl.obolibrary.org/obo/UBERON_4300029,dermal neck joint +16.9548485,UBERON:4300082,http://purl.obolibrary.org/obo/UBERON_4300082,metapterygium element +16.9548485,UBERON:4300098,http://purl.obolibrary.org/obo/UBERON_4300098,anal fin spine 2 +16.9548485,UBERON:4300105,http://purl.obolibrary.org/obo/UBERON_4300105,caudal vertebra 1 +16.9548485,UBERON:4300128,http://purl.obolibrary.org/obo/UBERON_4300128,sacral rib +16.9548485,UBERON:4300129,http://purl.obolibrary.org/obo/UBERON_4300129,dorsal pelvic gland +16.9548485,UBERON:4300140,http://purl.obolibrary.org/obo/UBERON_4300140,mesial region +16.9548485,UBERON:4300142,http://purl.obolibrary.org/obo/UBERON_4300142,internal carotid foramen +16.9548485,UBERON:4300214,http://purl.obolibrary.org/obo/UBERON_4300214,supraneural 2 element +16.9548485,UBERON:4400000,http://purl.obolibrary.org/obo/UBERON_4400000,metapterygium cartilage +16.9548485,UBERON:4500006,http://purl.obolibrary.org/obo/UBERON_4500006,anal fin ray From 6e0375524e2cd6e11fed15d474047966cc1ca066 Mon Sep 17 00:00:00 2001 From: bsantan <70932395+bsantan@users.noreply.github.com> Date: Wed, 29 May 2024 10:47:44 -0600 Subject: [PATCH 03/20] literature comparison changes for abstract and full text --- evaluation.py | 2 +- evaluation_plots_all.py | 3 +- literature_comparison_heatmap.R | 9 +++--- test_script.sh | 5 ++-- wikipathways_idf_evaluations.py | 30 ++++++++++--------- ...hways_literature_comparison_evaluations.py | 4 +-- 6 files changed, 27 insertions(+), 26 deletions(-) diff --git a/evaluation.py b/evaluation.py index 4af5b0e7..3dddb141 100644 --- a/evaluation.py +++ b/evaluation.py @@ -310,7 +310,7 @@ def output_literature_comparison_df(output_dir,all_subgraphs_cosine_sim,search_t all_subgraphs_cosine_sim_df = pd.DataFrame.from_dict(all_subgraphs_cosine_sim, orient='columns') all_subgraphs_cosine_sim_df.to_csv(output_folder+'/literature_comparison_evaluation_' + search_type + '.csv',sep=',',index=False) - logging.info('Create literature comparison evaluation file: %s',output_folder+'/literature_comparison_evaluation.csv') + logging.info('Create literature comparison evaluation file: %s',output_folder+'/literature_comparison_evaluation_' + search_type + '.csv') return all_subgraphs_cosine_sim_df diff --git a/evaluation_plots_all.py b/evaluation_plots_all.py index 763d693e..1ab31482 100644 --- a/evaluation_plots_all.py +++ b/evaluation_plots_all.py @@ -190,5 +190,4 @@ def visualize_literature_comparison_heatmap_all_pathways(all_subgraphs_zscore_df sns.heatmap(df_matrix, fmt="g", cmap='viridis').set_title("Z-Score of Subgraphs to All Other Pathways") plt.savefig(plt_file,bbox_inches="tight") plt.close() - logging.info('Created png: %s',plt_file) - + logging.info('Created png: %s',plt_file) \ No newline at end of file diff --git a/literature_comparison_heatmap.R b/literature_comparison_heatmap.R index 074ea6b3..be6e17aa 100644 --- a/literature_comparison_heatmap.R +++ b/literature_comparison_heatmap.R @@ -17,7 +17,8 @@ library(optparse) option_list <- list( make_option(c("-i", "--input_file"), type = "character", default = NULL, help = "literature evaluation file", metavar="character"), - make_option(c("-o", "--output_directory"), type = "character", default = NULL, help = "output directory for heatmaps", metavar="character") + make_option(c("-o", "--output_directory"), type = "character", default = NULL, help = "output directory for heatmaps", metavar="character"), + make_option(c("-s", "--search_type"), type = "character", default = NULL, help = "type of literature search", metavar="character") ) opt_parse <- OptionParser(option_list=option_list) @@ -113,9 +114,9 @@ pdfOutWrapper <- function(average_data, condition) { averageHeatmapWrapper(average_data,x) }) suppressWarnings(c_heatmaps <- heatmaps[[1]] + heatmaps[[2]] + heatmaps[[3]]) - pdf(paste0(opt$output_directory,"/average_",condition,".pdf"), width = 18, height = 8) - print(paste("outputting ", condition, "heatmap at ", paste0(opt$output_directory,"/average_",condition,".pdf"))) - draw(c_heatmaps, heatmap_legend_side = "bottom", column_title = paste0("Average similarity --- ", condition)) + pdf(paste0(opt$output_directory,"/average_",condition,"_",opt$search_type,".pdf"), width = 18, height = 8) + print(paste("outputting ", condition, "heatmap at ", paste0(opt$output_directory,"/average_",condition,"_",opt$search_type,".pdf"))) + draw(c_heatmaps, heatmap_legend_side = "bottom", column_title = paste0("Average similarity --- ",opt$search_type,"_",condition)) dev.off() } diff --git a/test_script.sh b/test_script.sh index 91d0ce48..d6df04c2 100755 --- a/test_script.sh +++ b/test_script.sh @@ -34,7 +34,6 @@ #python wikipathways_converter_ablations.py --knowledge-graph pkl --input-type annotated_diagram --pfocr-urls-file True --enable-skipping True #Update call_all_pathways_wrapper.py input and output directories to include _ablation #Update wikipathways_graph_evaluations.py, wikipathways_literature_comparison_evaluations.py, with ablation=true - #Literature evaluation -python wikipathways_literature_comparison_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True #'WP4532', 'WP4535' 'WP4829', 'WP5283', -#python wikipathways_idf_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4532', 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True \ No newline at end of file +#python wikipathways_literature_comparison_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True #'WP4532', 'WP4535' 'WP4829', 'WP5283', +python wikipathways_idf_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4532', 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True diff --git a/wikipathways_idf_evaluations.py b/wikipathways_idf_evaluations.py index 98cc971e..41081500 100644 --- a/wikipathways_idf_evaluations.py +++ b/wikipathways_idf_evaluations.py @@ -18,6 +18,7 @@ from wikipathways_converter import get_wikipathways_list from constants import ( + LITERATURE_SEARCH_TYPES, WIKIPATHWAYS_SUBFOLDER ) @@ -102,7 +103,7 @@ def get_node_idf_from_label(node,g,idf_df): return idf def main(): - + # Note this search_type is not used kg_type,embedding_dimensions,weights,search_type, pdp_weight,input_type, cosine_similarity, pdp, guiding_term, input_substring,wikipathways,pfocr_urls,pfocr_urls_file,enable_skipping = generate_graphsim_arguments() input_dir = os.getcwd() + '/' + WIKIPATHWAYS_SUBFOLDER @@ -163,23 +164,24 @@ def main(): #For comparison to abstract terms ##### - literature_comparison_file = all_wikipathways_dir +'/literature_comparison/Evaluation_Files/literature_comparison_evaluation.csv' - literature_comparison_df = pd.read_csv(literature_comparison_file) + for search_type in LITERATURE_SEARCH_TYPES: + literature_comparison_file = all_wikipathways_dir +'/literature_comparison/Evaluation_Files/literature_comparison_evaluation_' + search_type + '.csv' + literature_comparison_df = pd.read_csv(literature_comparison_file) - #For appending to df - node_idfs_list = [] + #For appending to df + node_idfs_list = [] - for i in range(len(literature_comparison_df)): - term_id = literature_comparison_df.iloc[i].loc['Term_ID'] - try: - idf = idf_df.loc[idf_df['uri'] == term_id,'idf'].values[0] - except IndexError: - idf = np.nan - node_idfs_list.append(idf) + for i in range(len(literature_comparison_df)): + term_id = literature_comparison_df.iloc[i].loc['Term_ID'] + try: + idf = idf_df.loc[idf_df['uri'] == term_id,'idf'].values[0] + except IndexError: + idf = np.nan + node_idfs_list.append(idf) - literature_comparison_df['IDF'] = node_idfs_list + literature_comparison_df['IDF'] = node_idfs_list - literature_comparison_df.to_csv(all_wikipathways_dir +'/literature_comparison/Evaluation_Files/literature_comparison_evaluation_with_IDF.csv',sep=',',index=False) + literature_comparison_df.to_csv(all_wikipathways_dir +'/literature_comparison/Evaluation_Files/literature_comparison_evaluation_with_IDF_' + search_type + '.csv',sep=',',index=False) if __name__ == '__main__': main() \ No newline at end of file diff --git a/wikipathways_literature_comparison_evaluations.py b/wikipathways_literature_comparison_evaluations.py index 9b0dd584..7cee547f 100644 --- a/wikipathways_literature_comparison_evaluations.py +++ b/wikipathways_literature_comparison_evaluations.py @@ -101,13 +101,13 @@ def main(): subgraph_df = pd.read_csv(output_dir + '/CosineSimilarity/Subgraph.csv',sep='|') - all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons,kg_type,embeddings,'CosineSimilarity',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') + all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons[search_type],kg_type,embeddings,'CosineSimilarity',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') if pdp == 'true': subgraph_df = pd.read_csv(output_dir + '/PDP/Subgraph.csv',sep='|') - all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons,kg_type,embeddings,'PDP',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') + all_subgraphs_cosine_sim,embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons[search_type],kg_type,embeddings,'PDP',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') #Get original wikipathways edgelist wikipathways_subgraph_df = get_wikipathways_subgraph(s) From c41423e50ac7e36ac92ca17c39ae06e2e7bb41ee Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Mon, 19 Aug 2024 13:50:59 -0600 Subject: [PATCH 04/20] adding nourah's script for RoBERTa's embeddings --- RoBERTa.py | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 RoBERTa.py diff --git a/RoBERTa.py b/RoBERTa.py new file mode 100644 index 00000000..fa07de89 --- /dev/null +++ b/RoBERTa.py @@ -0,0 +1,57 @@ +from transformers import RobertaTokenizer, RobertaModel +import torch +from torch.nn.functional import cosine_similarity, pairwise_distance + +# Function to get embeddings +def get_embeddings(model, tokenizer, sentence): + encoded_input = tokenizer(sentence, return_tensors='pt') + with torch.no_grad(): + output = model(**encoded_input) + return output.last_hidden_state.mean(dim=1) + +# Initialize tokenizer and model +tokenizer = RobertaTokenizer.from_pretrained('roberta-base') +model = RobertaModel.from_pretrained('roberta-base') + +# Define sentences +sentence1 = "I like books." +sentence2 = "I love books." +sentence3 = "I don't like reading books." + +# Get embeddings +embeddings1 = get_embeddings(model, tokenizer, sentence1) +embeddings2 = get_embeddings(model, tokenizer, sentence2) +embeddings3 = get_embeddings(model, tokenizer, sentence3) + +# Calculate distances +print("Cosine Distance between similar sentences:", 1 - cosine_similarity(embeddings1, embeddings2).item()) +print("Cosine Distance with negation:", 1 - cosine_similarity(embeddings1, embeddings3).item()) + + +###########################################################3 + +# power transformation function for range increase + + +def modified_power_scale(x, xmin, p): + """ Scale the distance using a modified power function to amplify differences. """ + return (x - xmin) ** p + +# Constants +xmin = 0.001 # Slightly less than our minimum expected value +p = 0.25 # High power to significantly amplify differences + +# Values +distance1 = 0.007 +distance2 = 0.008 + +# Apply scaling +scaled_distance1 = modified_power_scale(distance1, xmin, p) +scaled_distance2 = modified_power_scale(distance2, xmin, p) + +print("Scaled Distance 1:", scaled_distance1) +print("Scaled Distance 2:", scaled_distance2) + + + + From 473a807c3a1b483686d52eda8835d4bfb5950e0b Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Wed, 28 Aug 2024 12:39:46 -0600 Subject: [PATCH 05/20] testing bioBERT for gene similarity --- BioBERT.py | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 BioBERT.py diff --git a/BioBERT.py b/BioBERT.py new file mode 100644 index 00000000..56b5f602 --- /dev/null +++ b/BioBERT.py @@ -0,0 +1,60 @@ +# Load model directly +from transformers import AutoTokenizer, AutoModel +import torch +from torch.nn.functional import cosine_similarity, pairwise_distance + +# Function to get embeddings +def get_embeddings(model, tokenizer, sentence): + encoded_input = tokenizer(sentence, return_tensors='pt') + with torch.no_grad(): + output = model(**encoded_input) + return output.last_hidden_state.mean(dim=1) + + + + +tokenizer = AutoTokenizer.from_pretrained("dmis-lab/biobert-v1.1") +model = AutoModel.from_pretrained("dmis-lab/biobert-v1.1") + +# Define sentences +sentence1 = "IFNG2" +sentence2 = "IFNG1" +sentence3 = "PYROXD2" + +# Get embeddings +embeddings1 = get_embeddings(model, tokenizer, sentence1) +embeddings2 = get_embeddings(model, tokenizer, sentence2) +embeddings3 = get_embeddings(model, tokenizer, sentence3) + +# Calculate distances +print("Cosine Distance between similar genes (IFNG2, IFNG1):", 1 - cosine_similarity(embeddings1, embeddings2).item()) +print("Cosine Distance between dissimilar genes (IFNG2, P53):", 1 - cosine_similarity(embeddings1, embeddings3).item()) + + +###########################################################3 + +# power transformation function for range increase + + +# def modified_power_scale(x, xmin, p): +# """ Scale the distance using a modified power function to amplify differences. """ +# return (x - xmin) ** p + +# # Constants +# xmin = 0.001 # Slightly less than our minimum expected value +# p = 0.25 # High power to significantly amplify differences + +# # Values +# distance1 = 0.007 +# distance2 = 0.008 + +# # Apply scaling +# scaled_distance1 = modified_power_scale(distance1, xmin, p) +# scaled_distance2 = modified_power_scale(distance2, xmin, p) + +# print("Scaled Distance 1:", scaled_distance1) +# print("Scaled Distance 2:", scaled_distance2) + + + + From 75df746922d7217e555805670f870f12e2e15abe Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Wed, 28 Aug 2024 12:40:05 -0600 Subject: [PATCH 06/20] testing RoBERT for gene similarity --- RoBERTa.py | 44 +++++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/RoBERTa.py b/RoBERTa.py index fa07de89..7c1e3036 100644 --- a/RoBERTa.py +++ b/RoBERTa.py @@ -13,10 +13,11 @@ def get_embeddings(model, tokenizer, sentence): tokenizer = RobertaTokenizer.from_pretrained('roberta-base') model = RobertaModel.from_pretrained('roberta-base') + # Define sentences -sentence1 = "I like books." -sentence2 = "I love books." -sentence3 = "I don't like reading books." +sentence1 = "IFNG2" +sentence2 = "IFNG1" +sentence3 = "PYROXD2" # Get embeddings embeddings1 = get_embeddings(model, tokenizer, sentence1) @@ -24,33 +25,34 @@ def get_embeddings(model, tokenizer, sentence): embeddings3 = get_embeddings(model, tokenizer, sentence3) # Calculate distances -print("Cosine Distance between similar sentences:", 1 - cosine_similarity(embeddings1, embeddings2).item()) -print("Cosine Distance with negation:", 1 - cosine_similarity(embeddings1, embeddings3).item()) +print("Cosine Distance between similar genes (IFNG2, IFNG1):", 1 - cosine_similarity(embeddings1, embeddings2).item()) +print("Cosine Distance between dissimilar genes (IFNG2, P53):", 1 - cosine_similarity(embeddings1, embeddings3).item()) + -###########################################################3 +# ###########################################################3 -# power transformation function for range increase +# # power transformation function for range increase -def modified_power_scale(x, xmin, p): - """ Scale the distance using a modified power function to amplify differences. """ - return (x - xmin) ** p +# def modified_power_scale(x, xmin, p): +# """ Scale the distance using a modified power function to amplify differences. """ +# return (x - xmin) ** p -# Constants -xmin = 0.001 # Slightly less than our minimum expected value -p = 0.25 # High power to significantly amplify differences +# # Constants +# xmin = 0.001 # Slightly less than our minimum expected value +# p = 0.25 # High power to significantly amplify differences -# Values -distance1 = 0.007 -distance2 = 0.008 +# # Values +# distance1 = 0.007 +# distance2 = 0.008 -# Apply scaling -scaled_distance1 = modified_power_scale(distance1, xmin, p) -scaled_distance2 = modified_power_scale(distance2, xmin, p) +# # Apply scaling +# scaled_distance1 = modified_power_scale(distance1, xmin, p) +# scaled_distance2 = modified_power_scale(distance2, xmin, p) -print("Scaled Distance 1:", scaled_distance1) -print("Scaled Distance 2:", scaled_distance2) +# print("Scaled Distance 1:", scaled_distance1) +# print("Scaled Distance 2:", scaled_distance2) From 96240e45f9288fb96a67c9e736c77e244a93a26c Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 3 Sep 2024 13:41:12 -0600 Subject: [PATCH 07/20] added tests for other genes --- BioBERT.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/BioBERT.py b/BioBERT.py index 56b5f602..2708b40e 100644 --- a/BioBERT.py +++ b/BioBERT.py @@ -16,9 +16,19 @@ def get_embeddings(model, tokenizer, sentence): tokenizer = AutoTokenizer.from_pretrained("dmis-lab/biobert-v1.1") model = AutoModel.from_pretrained("dmis-lab/biobert-v1.1") +# # Define sentences +# sentence1 = "SKI" +# sentence2 = "SMAD1" +# sentence3 = "PYROXD2" + +# # Define sentences +# sentence1 = "NCBI:6497" +# sentence2 = "NCBI:4086" +# sentence3 = "NCBI:84795" + # Define sentences -sentence1 = "IFNG2" -sentence2 = "IFNG1" +sentence1 = "STAT1" +sentence2 = "IFNG" sentence3 = "PYROXD2" # Get embeddings @@ -27,8 +37,8 @@ def get_embeddings(model, tokenizer, sentence): embeddings3 = get_embeddings(model, tokenizer, sentence3) # Calculate distances -print("Cosine Distance between similar genes (IFNG2, IFNG1):", 1 - cosine_similarity(embeddings1, embeddings2).item()) -print("Cosine Distance between dissimilar genes (IFNG2, P53):", 1 - cosine_similarity(embeddings1, embeddings3).item()) +print("Cosine Distance between", sentence1, "and", sentence2, ":", 1 - cosine_similarity(embeddings1, embeddings2).item()) +print("Cosine Distance between", sentence1, "and", sentence3, ":", 1 - cosine_similarity(embeddings1, embeddings3).item()) ###########################################################3 From c7f177fbd187514c683dacf788cf6cb8fbb5dc6c Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 3 Sep 2024 13:41:33 -0600 Subject: [PATCH 08/20] added tests for other genes --- RoBERTa.py | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/RoBERTa.py b/RoBERTa.py index 7c1e3036..2d2360de 100644 --- a/RoBERTa.py +++ b/RoBERTa.py @@ -14,9 +14,20 @@ def get_embeddings(model, tokenizer, sentence): model = RobertaModel.from_pretrained('roberta-base') +# # Define sentences +# sentence1 = "SKI" +# sentence2 = "SMAD1" +# sentence3 = "PYROXD2" + +# # Define sentences +# sentence1 = "NCBI:6497" +# sentence2 = "NCBI:4086" +# sentence3 = "NCBI:84795" + + # Define sentences -sentence1 = "IFNG2" -sentence2 = "IFNG1" +sentence1 = "STAT1" +sentence2 = "IFNG" sentence3 = "PYROXD2" # Get embeddings @@ -25,8 +36,8 @@ def get_embeddings(model, tokenizer, sentence): embeddings3 = get_embeddings(model, tokenizer, sentence3) # Calculate distances -print("Cosine Distance between similar genes (IFNG2, IFNG1):", 1 - cosine_similarity(embeddings1, embeddings2).item()) -print("Cosine Distance between dissimilar genes (IFNG2, P53):", 1 - cosine_similarity(embeddings1, embeddings3).item()) +print("Cosine Distance between", sentence1, "and", sentence2, ":", 1 - cosine_similarity(embeddings1, embeddings2).item()) +print("Cosine Distance between", sentence1, "and", sentence3, ":", 1 - cosine_similarity(embeddings1, embeddings3).item()) From f005f3104a8003a50ad325ed7a3bbd3fbdc15f42 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 3 Sep 2024 13:42:03 -0600 Subject: [PATCH 09/20] created test using a biomedically trained RoBERTa model --- biomed_RoBERTa.py | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 biomed_RoBERTa.py diff --git a/biomed_RoBERTa.py b/biomed_RoBERTa.py new file mode 100644 index 00000000..a7305c4c --- /dev/null +++ b/biomed_RoBERTa.py @@ -0,0 +1,45 @@ +# from transformers import AutoModel +# model = AutoModel.from_pretrained("allenai/biomed_roberta_base") + + +from transformers import RobertaTokenizer, RobertaModel +import torch +from torch.nn.functional import cosine_similarity, pairwise_distance + +# Function to get embeddings +def get_embeddings(model, tokenizer, sentence): + encoded_input = tokenizer(sentence, return_tensors='pt') + with torch.no_grad(): + output = model(**encoded_input) + return output.last_hidden_state.mean(dim=1) + +# Initialize tokenizer and model +tokenizer = RobertaTokenizer.from_pretrained('allenai/biomed_roberta_base') +model = RobertaModel.from_pretrained('allenai/biomed_roberta_base') + + +# Define sentences +sentence1 = "SKI" +sentence2 = "SMAD1" +sentence3 = "PYROXD2" + +# # Define sentences +# sentence1 = "NCBI:6497" +# sentence2 = "NCBI:4086" +# sentence3 = "NCBI:84795" + + +# # Define sentences +# sentence1 = "STAT1" +# sentence2 = "IFNG" +# sentence3 = "PYROXD2" + +# Get embeddings +embeddings1 = get_embeddings(model, tokenizer, sentence1) +embeddings2 = get_embeddings(model, tokenizer, sentence2) +embeddings3 = get_embeddings(model, tokenizer, sentence3) + +# Calculate distances +print("Cosine Distance between", sentence1, "and", sentence2, ":", 1 - cosine_similarity(embeddings1, embeddings2).item()) +print("Cosine Distance between", sentence1, "and", sentence3, ":", 1 - cosine_similarity(embeddings1, embeddings3).item()) + From b3a3f7022e226eee91b99ddf36950f90e31b1459 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Thu, 5 Sep 2024 17:49:05 -0500 Subject: [PATCH 10/20] created script for performing text embedding evaluations --- wikipathways_literature_comparison_text.py | 145 +++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 wikipathways_literature_comparison_text.py diff --git a/wikipathways_literature_comparison_text.py b/wikipathways_literature_comparison_text.py new file mode 100644 index 00000000..6442a8d9 --- /dev/null +++ b/wikipathways_literature_comparison_text.py @@ -0,0 +1,145 @@ +from inputs import * +from create_graph import create_graph +from assign_nodes import * +from evaluation import * +from create_subgraph import compare_subgraph_guiding_terms,get_wikipathways_subgraph +from graph_embeddings import Embeddings +from evaluation_plots_all import visualize_literature_comparison_boxplot_all_pathways,visualize_literature_comparison_scatterplot_all_pathways,visualize_literature_comparison_heatmap_all_pathways +from biomed_RoBERTa import get_embeddings, get_cosine_similarity +from wikipathways_converter import get_wikipathways_list +from graph_similarity_metrics import * +from constants import ( + ALL_WIKIPATHWAYS, + LITERATURE_SEARCH_TYPES, + WIKIPATHWAYS_SUBFOLDER +) + +from collections import defaultdict +from transformers import RobertaTokenizer, RobertaModel + + + +def main(): + + kg_type,embedding_dimensions,weights,search_type, pdp_weight,input_type, cosine_similarity, pdp, guiding_term, input_substring,wikipathways,pfocr_urls,pfocr_urls_file,enable_skipping = generate_graphsim_arguments() + + input_dir = os.getcwd() + '/' + WIKIPATHWAYS_SUBFOLDER + + wikipathways = get_wikipathways_list(wikipathways,pfocr_urls,pfocr_urls_file) + + all_wikipathways_dir = os.getcwd() + "/" + WIKIPATHWAYS_SUBFOLDER + + #Gets literature comparison terms for many pathways + all_pathways_comparisons = {key: {} for key in LITERATURE_SEARCH_TYPES} + for w in wikipathways: + for search_type in LITERATURE_SEARCH_TYPES: + #w_comparison_file = all_wikipathways_dir + "/literature_comparison/" + w + "_literature_comparison_Input_Nodes_.csv" + w_comparison_file = os.getcwd() + "/" + WIKIPATHWAYS_SUBFOLDER + "/literature_comparison/" + search_type + "/" + w + "_literature_comparison_Input_Nodes_.csv" + if os.path.exists(w_comparison_file): + w_comparison_df = pd.read_csv(w_comparison_file, sep = "|") + #Remove duplicates and unassigned IDs from literature comparison files + w_comparison_df = w_comparison_df.loc[w_comparison_df['term_id'] != 'none'] + w_comparison_df.drop_duplicates(subset=['term_id'], inplace=True) + + all_pathways_comparisons[search_type][w] = w_comparison_df + + + + # dict for all text embeddings to ensure that we do not repeat embedding lookup + text_embeddings = dict() + + # dict for all cosine similarities to avoid recalculating + cosine_similarities = dict() + + # Initialize tokenizer and model + tokenizer = RobertaTokenizer.from_pretrained('allenai/biomed_roberta_base') + model = RobertaModel.from_pretrained('allenai/biomed_roberta_base') + + if pdp == "true" and cosine_similarity=="true": + algorithms = ["PDP","CosineSimilarity", "Original"] + elif pdp == "true" and cosine_similarity == "false": + algorithms = ["PDP", "Original"] + else: + algorithms = ["CosineSimilarity", "Original"] + + + for search_type in LITERATURE_SEARCH_TYPES: + + literature_evaluation_comparison = [] + + for algorithm in algorithms: + + + ner_terms_all_pathways = [] + + ## Text embeddings for every term in the NER data + for wikipathway in tqdm(wikipathways): + + ner_terms = all_pathways_comparisons[search_type][wikipathway]["term"] + text_keys = text_embeddings.keys() + + for term in ner_terms: + ner_terms_all_pathways.append(term) + if term not in text_keys: + text_embeddings[term] = [get_embeddings(model, tokenizer, term),wikipathway] + + for wikipathway in tqdm(wikipathways): + + if algorithm == "Original": + output_dir = all_wikipathways_dir + '/' + wikipathway + '_output' + s = pd.read_csv(output_dir + '/_annotated_diagram_Input_Nodes_.csv',sep='|') + node_labels = unique_nodes(s[['source','target']]) + elif algorithm == "PDP": + output_dir = all_wikipathways_dir + '/' + wikipathway + '_output/PDP' + s = pd.read_csv(output_dir + '/Subgraph.csv',sep='|') + node_labels = unique_nodes(s[['S','O']]) + elif algorithm == "CosineSimilarity": + output_dir = all_wikipathways_dir + '/' + wikipathway + '_output/CosineSimilarity' + s = pd.read_csv(output_dir + '/Subgraph.csv',sep='|') + node_labels = unique_nodes(s[['S','O']]) + + text_keys = text_embeddings.keys() + + for node in node_labels: + if node not in text_keys: + text_embeddings[node] = [get_embeddings(model, tokenizer, node),wikipathway] + + for term in ner_terms_all_pathways: + combined = node + "-" + term + path_embedding = text_embeddings[node] + ner_embedding = text_embeddings[term] + if combined not in cosine_similarities.keys(): + cosine_similarities[combined] = get_cosine_similarity(path_embedding[0],ner_embedding[0]) + + literature_evaluation_comparison.append([node, term, cosine_similarities[combined], path_embedding[1], ner_embedding[1], algorithm]) + + literature_evaluation_comparison = pd.DataFrame(literature_evaluation_comparison, columns = ['Pathway_Term' , 'NER_Term', 'Cosine_Similarity','Pathway_ID','NER_ID', 'Algorithm']) + + output_folder = all_wikipathways_dir+'/literature_comparison/Evaluation_Files' + + #Check for existence of output directory + if not os.path.exists(output_folder): + os.makedirs(output_folder) + + literature_evaluation_comparison.to_csv(output_folder+'/literature_comparison_evaluation_TEXT_' + search_type + '.csv',sep=',',index=False) + logging.info('Create literature comparison evaluation file: %s',output_folder+'/literature_comparison_evaluation_TEXT_' + search_type + '.csv') + + + # if cosine_similarity == 'true': + + # subgraph_df = pd.read_csv(output_dir + '/CosineSimilarity/Subgraph.csv',sep='|') + + # all_subgraphs_cosine_sim,llm_embeddings = compare_subgraph_guiding_terms(s,subgraph_df,g,all_pathways_comparisons[search_type],kg_type,embeddings,'CosineSimilarity',emb,entity_map,wikipathway,all_subgraphs_cosine_sim,'uris') + + # #Get original wikipathways edgelist + # # wikipathways_subgraph_df = get_wikipathways_subgraph(s) + + # # all_subgraphs_cosine_sim_df = output_literature_comparison_df(all_wikipathways_dir+'/literature_comparison',all_subgraphs_cosine_sim,search_type) + + # #Get relative cosine similarity to other pathways + # all_subgraphs_zscore_df = compare_literature_terms_across_pathways(all_subgraphs_cosine_sim_df) + + + +if __name__ == '__main__': + main() From d88f28ca7ee536089cafb77e1990899d3d424311 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Thu, 5 Sep 2024 17:49:24 -0500 Subject: [PATCH 11/20] updated test script to test text embedding evaluation --- test_script.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test_script.sh b/test_script.sh index d6df04c2..b1479290 100755 --- a/test_script.sh +++ b/test_script.sh @@ -36,4 +36,7 @@ #Update wikipathways_graph_evaluations.py, wikipathways_literature_comparison_evaluations.py, with ablation=true #Literature evaluation #python wikipathways_literature_comparison_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True #'WP4532', 'WP4535' 'WP4829', 'WP5283', -python wikipathways_idf_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4532', 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True +#python wikipathways_idf_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4532', 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True + + +python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533','WP4534']" --enable-skipping True From 2b265701a839bdab3f00ac10b13b574a232e3e31 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 10 Sep 2024 12:54:16 -0500 Subject: [PATCH 12/20] adding packages to be installed to envrionment --- environment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/environment.yml b/environment.yml index 487d8562..3a962fd5 100644 --- a/environment.yml +++ b/environment.yml @@ -34,3 +34,5 @@ dependencies: - networkx==3.2.1 - requests==2.31.0 - oaklib==0.5.33 + - torch==2.4.0 + - transformers==4.44.0 From 8a0990a6b8f938794aded37f0e0108494ef717c2 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 10 Sep 2024 13:42:35 -0500 Subject: [PATCH 13/20] updated test script to include heatmap creation --- test_script.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test_script.sh b/test_script.sh index b1479290..7a17271a 100755 --- a/test_script.sh +++ b/test_script.sh @@ -39,4 +39,8 @@ #python wikipathways_idf_evaluations.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4532', 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP4856', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True -python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533','WP4534']" --enable-skipping True +## literature based NER comparison +## python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533','WP4534']" --enable-skipping True + +python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562']" --enable-skipping True +Rscript literature_comparison_heatmap.R -i ./wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation_TEXT_abstract.csv -o ./wikipathways_graphs/literature_comparison/Evaluation_Files/heatmaps From 3bdc6bfc8267f776d394a7fc4bdb97135d5b18b0 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 10 Sep 2024 13:43:40 -0500 Subject: [PATCH 14/20] updated literature comparison to use text based output --- literature_comparison_heatmap.R | 128 ++++++++++++++++++++------------ 1 file changed, 82 insertions(+), 46 deletions(-) diff --git a/literature_comparison_heatmap.R b/literature_comparison_heatmap.R index be6e17aa..95803b55 100644 --- a/literature_comparison_heatmap.R +++ b/literature_comparison_heatmap.R @@ -26,11 +26,42 @@ opt <- parse_args(opt_parse) ### Data -ner_sim <- read.csv(opt$input_file) +evaluation_df <- read.csv(opt$input_file) ## filter duplicate rows and duplicate terms -ner_sim <- ner_sim %>% - distinct( Term, Average_Cosine_Similarity,Algorithm,Pathway_ID, Compared_Pathway, .keep_all = T) + +evaluation_df <- evaluation_df %>% + distinct( Pathway_Term, NER_Term, Cosine_Similarity,Algorithm,Pathway_ID, NER_ID, .keep_all = T) + +## averagePathwayTerm computes the average similarities between each pathway term and all NER terms in a pathway +averagePathwayTerm <- function(df) { + + ## find all unique algorithms + algorithms <- unique(df$Algorithm) + + ### average over compared pathway + avg <- df %>% + group_by(Algorithm,Pathway_Term,Pathway_ID, NER_ID)%>% + summarise(Average = mean(Cosine_Similarity), .groups = "keep") + + return(avg) +} + +## averagePathwayTerm computes the average similarities between each pathway term and all NER terms in a pathway +averageNER <- function(df) { + + ## find all unique algorithms + algorithms <- unique(df$Algorithm) + + ### average over compared pathway + avg <- df %>% + group_by(Algorithm,Pathway_ID, NER_ID)%>% + summarise(Average = mean(Average), .groups = "keep") + + return(avg) +} + + averageData <- function(average_data, algorithm) { @@ -57,9 +88,9 @@ stouffers <- function(z1,z2) { return(combined_z) } -zScoreData <- function(average_data) { - z1 <- t(apply(average_data, 1,scale)) - z2 <- apply(average_data, 2,scale) +zScoreData <- function(df) { + z1 <- t(apply(df, 1,scale)) + z2 <- apply(df, 2,scale) combined_z <- sapply(1:ncol(z1), function(i) { sapply(1:nrow(z1), function(j) { @@ -67,8 +98,8 @@ zScoreData <- function(average_data) { }) }) - colnames(combined_z) <- colnames(average_data) - rownames(combined_z) <- rownames(average_data) + colnames(combined_z) <- colnames(df) + rownames(combined_z) <- rownames(df) return(combined_z) } @@ -76,16 +107,16 @@ zScoreData <- function(average_data) { -averageHeatmap <- function(average_data, algorithm) { +averageHeatmap <- function(df, algorithm) { - p1 <- Heatmap(t(average_data), + p1 <- Heatmap(t(df), name = "Average similarity \ndifference from original", row_dend_reorder = FALSE, column_dend_reorder = FALSE, show_row_dend = FALSE, show_column_dend = FALSE, - row_order = colnames(average_data), - column_order = rownames(average_data), + row_order = colnames(df), + column_order = rownames(df), show_row_names = TRUE, show_column_names =TRUE, heatmap_legend_param = list(direction = "horizontal"), @@ -97,22 +128,27 @@ averageHeatmap <- function(average_data, algorithm) { return(p1) } -averageHeatmapWrapper <- function(average_data, algorithm) { - average <- averageData(average_data, algorithm) - original <- averageData(average_data,"Original") -# new <- average - original - #difference <- average - averageData(average_data, "Original") -# zscore <- zScoreData(average) - #pdf(paste0("~/OneDrive - The University of Colorado Denver/Projects/Cartoomics/heatmaps/",algorithm,".pdf")) - p1 <- averageHeatmap(average, algorithm) - ## dev.off() - return(p1) -} +HeatmapWrapper <- function(df) { + pathway_term_avg <- averagePathwayTerm(df) + ner_pathway_avg <- averageNER(pathway_term_avg) -pdfOutWrapper <- function(average_data, condition) { - heatmaps <- lapply(c( "CosineSimilarity", "PDP", "Original"), function(x) { - averageHeatmapWrapper(average_data,x) + algorithms <- unique(ner_pathway_avg$Algorithm) + + plots <- lapply(algorithms, function(x) { + toplot <- ner_pathway_avg %>% + filter(Algorithm == x) %>% + pivot_wider(names_from = NER_ID, values_from = Average) %>% + column_to_rownames("Pathway_ID") %>% + select(-Algorithm) + averageHeatmap(toplot,x) }) + + + return(plots) +} + +pdfOutWrapper <- function(df, condition) { + heatmaps <- HeatmapWrapper(df) suppressWarnings(c_heatmaps <- heatmaps[[1]] + heatmaps[[2]] + heatmaps[[3]]) pdf(paste0(opt$output_directory,"/average_",condition,"_",opt$search_type,".pdf"), width = 18, height = 8) print(paste("outputting ", condition, "heatmap at ", paste0(opt$output_directory,"/average_",condition,"_",opt$search_type,".pdf"))) @@ -127,33 +163,33 @@ if(!dir.exists(opt$output_directory)) { ## baseline -pdfOutWrapper(ner_sim, "All_terms") +pdfOutWrapper(evaluation_df, "All_terms") -### drop terms not mapped to IDF -w_idf <- ner_sim %>% - filter(!is.na(IDF)) -pdfOutWrapper(w_idf, "no_IDF_terms") +## ### drop terms not mapped to IDF +## w_idf <- evaluation_df %>% +## filter(!is.na(IDF)) +## pdfOutWrapper(w_idf, "no_IDF_terms") -### Impute missing terms with min value and weight similarities by term -min_impute_idf <- ner_sim %>% - mutate(new_IDF = replace_na(IDF, min(IDF, na.rm = T))) %>% - mutate(Average_Cosine_Similarity = Average_Cosine_Similarity * new_IDF) -pdfOutWrapper(min_impute_idf, "IDF_weighted_impute_with_min(IDF)") +## ### Impute missing terms with min value and weight similarities by term +## min_impute_idf <- evaluation_df %>% +## mutate(new_IDF = replace_na(IDF, min(IDF, na.rm = T))) %>% +## mutate(Average_Cosine_Similarity = Average_Cosine_Similarity * new_IDF) +## pdfOutWrapper(min_impute_idf, "IDF_weighted_impute_with_min(IDF)") -### Impute missing terms with the median value and weight similarities by term -median_impute_idf <- ner_sim %>% - mutate(new_IDF = replace_na(IDF, median(IDF, na.rm = T))) %>% - mutate(Average_Cosine_Similarity = Average_Cosine_Similarity * new_IDF) -pdfOutWrapper(median_impute_idf, "IDF_weighted_impute_with_median(IDF)") +## ### Impute missing terms with the median value and weight similarities by term +## median_impute_idf <- evaluation_df %>% +## mutate(new_IDF = replace_na(IDF, median(IDF, na.rm = T))) %>% +## mutate(Average_Cosine_Similarity = Average_Cosine_Similarity * new_IDF) +## pdfOutWrapper(median_impute_idf, "IDF_weighted_impute_with_median(IDF)") -### filter those without IDF and weight similarities by term -w_idf_weighted <- ner_sim %>% - filter(!is.na(IDF)) %>% - mutate(Average_Cosine_Similarity = Average_Cosine_Similarity * IDF) +## ### filter those without IDF and weight similarities by term +## w_idf_weighted <- evaluation_df %>% +## filter(!is.na(IDF)) %>% +## mutate(Average_Cosine_Similarity = Average_Cosine_Similarity * IDF) -pdfOutWrapper(w_idf_weighted, "IDF_filtered_IDF_weighted") +## pdfOutWrapper(w_idf_weighted, "IDF_filtered_IDF_weighted") From 3e548b9acad7d91619dbfc3d1dc2b6be62ab881d Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 10 Sep 2024 14:00:15 -0500 Subject: [PATCH 15/20] testing --- test_script.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test_script.sh b/test_script.sh index 7a17271a..53c51d88 100755 --- a/test_script.sh +++ b/test_script.sh @@ -44,3 +44,4 @@ python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562']" --enable-skipping True Rscript literature_comparison_heatmap.R -i ./wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation_TEXT_abstract.csv -o ./wikipathways_graphs/literature_comparison/Evaluation_Files/heatmaps +Rscript literature_comparison_heatmap.R -i ./wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation_TEXT_full_text.csv -o ./wikipathways_graphs/literature_comparison/Evaluation_Files/heatmaps From f91961d6af2f765cff6a2e93a750992f5923f2ce Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 10 Sep 2024 14:01:06 -0500 Subject: [PATCH 16/20] fixed bug for full text --- wikipathways_literature_comparison_text.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/wikipathways_literature_comparison_text.py b/wikipathways_literature_comparison_text.py index 6442a8d9..a1aa5ae0 100644 --- a/wikipathways_literature_comparison_text.py +++ b/wikipathways_literature_comparison_text.py @@ -40,16 +40,10 @@ def main(): #Remove duplicates and unassigned IDs from literature comparison files w_comparison_df = w_comparison_df.loc[w_comparison_df['term_id'] != 'none'] w_comparison_df.drop_duplicates(subset=['term_id'], inplace=True) - all_pathways_comparisons[search_type][w] = w_comparison_df - # dict for all text embeddings to ensure that we do not repeat embedding lookup - text_embeddings = dict() - - # dict for all cosine similarities to avoid recalculating - cosine_similarities = dict() # Initialize tokenizer and model tokenizer = RobertaTokenizer.from_pretrained('allenai/biomed_roberta_base') @@ -66,9 +60,13 @@ def main(): for search_type in LITERATURE_SEARCH_TYPES: literature_evaluation_comparison = [] - - for algorithm in algorithms: + # dict for all text embeddings to ensure that we do not repeat embedding lookup + text_embeddings = dict() + # dict for all cosine similarities to avoid recalculating + cosine_similarities = dict() + + for algorithm in algorithms: ner_terms_all_pathways = [] @@ -115,12 +113,15 @@ def main(): literature_evaluation_comparison = pd.DataFrame(literature_evaluation_comparison, columns = ['Pathway_Term' , 'NER_Term', 'Cosine_Similarity','Pathway_ID','NER_ID', 'Algorithm']) + print(literature_evaluation_comparison.shape) + + output_folder = all_wikipathways_dir+'/literature_comparison/Evaluation_Files' - #Check for existence of output directory + #Check for existence of output directory if not os.path.exists(output_folder): os.makedirs(output_folder) - + literature_evaluation_comparison.to_csv(output_folder+'/literature_comparison_evaluation_TEXT_' + search_type + '.csv',sep=',',index=False) logging.info('Create literature comparison evaluation file: %s',output_folder+'/literature_comparison_evaluation_TEXT_' + search_type + '.csv') From b32c962f7897992e8ca2bc48bc86737cd1afa9a9 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Tue, 10 Sep 2024 14:21:18 -0500 Subject: [PATCH 17/20] added functions --- biomed_RoBERTa.py | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/biomed_RoBERTa.py b/biomed_RoBERTa.py index a7305c4c..bcaed6ee 100644 --- a/biomed_RoBERTa.py +++ b/biomed_RoBERTa.py @@ -1,8 +1,4 @@ -# from transformers import AutoModel -# model = AutoModel.from_pretrained("allenai/biomed_roberta_base") - - -from transformers import RobertaTokenizer, RobertaModel +# from transformers import RobertaTokenizer, RobertaModel import torch from torch.nn.functional import cosine_similarity, pairwise_distance @@ -13,15 +9,21 @@ def get_embeddings(model, tokenizer, sentence): output = model(**encoded_input) return output.last_hidden_state.mean(dim=1) -# Initialize tokenizer and model -tokenizer = RobertaTokenizer.from_pretrained('allenai/biomed_roberta_base') -model = RobertaModel.from_pretrained('allenai/biomed_roberta_base') +# function to find cosine similarity +def get_cosine_similarity(embedding1,embedding2): + return(cosine_similarity(embedding1,embedding2).item()) + +# # Initialize tokenizer and model +# tokenizer = RobertaTokenizer.from_pretrained('allenai/biomed_roberta_base') +# model = RobertaModel.from_pretrained('allenai/biomed_roberta_base') + -# Define sentences -sentence1 = "SKI" -sentence2 = "SMAD1" -sentence3 = "PYROXD2" + +# # Define sentences +# sentence1 = "SKI" +# sentence2 = "SMAD1" +# sentence3 = "PYROXD2" # # Define sentences # sentence1 = "NCBI:6497" @@ -34,12 +36,12 @@ def get_embeddings(model, tokenizer, sentence): # sentence2 = "IFNG" # sentence3 = "PYROXD2" -# Get embeddings -embeddings1 = get_embeddings(model, tokenizer, sentence1) -embeddings2 = get_embeddings(model, tokenizer, sentence2) -embeddings3 = get_embeddings(model, tokenizer, sentence3) +# # Get embeddings +# embeddings1 = get_embeddings(model, tokenizer, sentence1) +# embeddings2 = get_embeddings(model, tokenizer, sentence2) +# embeddings3 = get_embeddings(model, tokenizer, sentence3) -# Calculate distances -print("Cosine Distance between", sentence1, "and", sentence2, ":", 1 - cosine_similarity(embeddings1, embeddings2).item()) -print("Cosine Distance between", sentence1, "and", sentence3, ":", 1 - cosine_similarity(embeddings1, embeddings3).item()) +# # Calculate distances +# print("Cosine Distance between", sentence1, "and", sentence2, ":", 1 - cosine_similarity(embeddings1, embeddings2).item()) +# print("Cosine Distance between", sentence1, "and", sentence3, ":", 1 - cosine_similarity(embeddings1, embeddings3).item()) From f06b24bf9afbf2e5e3d61febd13946eccd0c8ea0 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Fri, 27 Sep 2024 10:30:18 -0600 Subject: [PATCH 18/20] updating test script to test nlp embedding based evaluation --- test_script.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test_script.sh b/test_script.sh index 53c51d88..13614073 100755 --- a/test_script.sh +++ b/test_script.sh @@ -40,8 +40,10 @@ ## literature based NER comparison -## python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533','WP4534']" --enable-skipping True +# python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533','WP4534']" --enable-skipping True -python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "[ 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4553', 'WP4562']" --enable-skipping True -Rscript literature_comparison_heatmap.R -i ./wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation_TEXT_abstract.csv -o ./wikipathways_graphs/literature_comparison/Evaluation_Files/heatmaps -Rscript literature_comparison_heatmap.R -i ./wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation_TEXT_full_text.csv -o ./wikipathways_graphs/literature_comparison/Evaluation_Files/heatmaps +python wikipathways_literature_comparison_text.py --knowledge-graph pkl --input-type annotated_diagram --wikipathways "['WP4532', 'WP4533', 'WP4534', 'WP4537', 'WP4538', 'WP4539', 'WP4542', 'WP4562', 'WP4564', 'WP4565', 'WP4760', 'WP5358', 'WP5368', 'WP5372', 'WP5373', 'WP5382', 'WP5385']" --enable-skipping True + +Rscript literature_comparison_heatmap.R -i ./wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation_TEXT_abstract.csv -o ./wikipathways_graphs/literature_comparison/Evaluation_Files/heatmaps_abstract + +Rscript literature_comparison_heatmap.R -i ./wikipathways_graphs/literature_comparison/Evaluation_Files/literature_comparison_evaluation_TEXT_full_text.csv -o ./wikipathways_graphs/literature_comparison/Evaluation_Files/heatmaps_full_text From 7686504a758127e47fccf2be41cec64e165c41d3 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Fri, 27 Sep 2024 10:30:56 -0600 Subject: [PATCH 19/20] evaluation of Cartoomics pathways based on literature embedings --- wikipathways_literature_comparison_text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wikipathways_literature_comparison_text.py b/wikipathways_literature_comparison_text.py index a1aa5ae0..d4eab78d 100644 --- a/wikipathways_literature_comparison_text.py +++ b/wikipathways_literature_comparison_text.py @@ -44,7 +44,7 @@ def main(): - + # Initialize tokenizer and model tokenizer = RobertaTokenizer.from_pretrained('allenai/biomed_roberta_base') model = RobertaModel.from_pretrained('allenai/biomed_roberta_base') From 434fd9c843deda121f9d30c54fe59d791eb400f9 Mon Sep 17 00:00:00 2001 From: lagillenwater Date: Fri, 27 Sep 2024 10:43:37 -0600 Subject: [PATCH 20/20] modified file for text input --- literature_comparison_heatmap.R | 1 + 1 file changed, 1 insertion(+) diff --git a/literature_comparison_heatmap.R b/literature_comparison_heatmap.R index 95803b55..fc86b344 100644 --- a/literature_comparison_heatmap.R +++ b/literature_comparison_heatmap.R @@ -193,3 +193,4 @@ pdfOutWrapper(evaluation_df, "All_terms") +evaluation_df %>% filter(Pathway_ID == "WP4533") %>% filter(Algorithm == "CosineSimilarity") %>% head