<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Querying Biomedical Ontologies in Natural Language using Answer Set Programming</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Halit</forename><surname>Erdogan</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Faculty of Engineering and Natural Sciences</orgName>
								<orgName type="institution">Sabancı University</orgName>
								<address>
									<settlement>İstanbul</settlement>
									<country key="TR">Turkey</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Umut</forename><surname>Oztok</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Faculty of Engineering and Natural Sciences</orgName>
								<orgName type="institution">Sabancı University</orgName>
								<address>
									<settlement>İstanbul</settlement>
									<country key="TR">Turkey</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Yelda</forename><surname>Erdem</surname></persName>
							<affiliation key="aff1">
								<orgName type="department">Research and Development Department</orgName>
								<orgName type="institution">Sanovel Pharmaceutical Inc</orgName>
								<address>
									<settlement>İstanbul</settlement>
									<country key="TR">Turkey</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Esra</forename><surname>Erdem</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Faculty of Engineering and Natural Sciences</orgName>
								<orgName type="institution">Sabancı University</orgName>
								<address>
									<settlement>İstanbul</settlement>
									<country key="TR">Turkey</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Querying Biomedical Ontologies in Natural Language using Answer Set Programming</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">76D0F03FC8B554CA8EF1D4A375898309</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T12:21+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Recent advances in health and life sciences have led to generation of a large amount of data. To facilitate access to its desired parts, such a big mass of data has been represented in structured forms, like biomedical ontologies. On the other hand, representing ontologies in a formal language, constructing them independently from each other and storing them at different locations have brought about many challenges for answering queries about the knowledge represented in these ontologies. One of the challenges for the users is to be able represent a complex query in a natural language, and get its answers in an understandable form: Currently, such queries are answered by software systems in a formal language, however, the majority of the users lack the necessary knowledge of a formal query language to represent a query; moreover, none of these systems can provide informative explanations about the answers. Another challenge is to be able to answer complex queries that require appropriate integration of relevant knowledge stored in different places and in various forms.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In this work, we address the first challenge by developing an intelligent user interface that allows users to enter biomedical queries in a natural language, and that presents the answers (possibly with explanations if requested) in a natural language. We address the second challenge by developing a rule layer over biomedical ontologies and databases, and use automated reasoners to answer queries considering relevant parts of the rule layer. The main contributions of our work can be summarized as follows:</p><p>-We introduce a controlled natural language, a subset of natural language with a restricted grammar and vocabulary, specifically for biomedical queries towards drug discovery; we call this controlled natural language as BIOQUERYCNL [4]. For instance, in this language, we can pose the following query:</p><p>"What are the genes that are targeted by the drug Epinephrine and that interact with the gene DLG4?"</p><p>-We present an algorithm that converts a biomedical query in BIOQUERYCNL into a program in answer set programming (ASP) -a formal framework to automate reasoning about knowledge [8] -making use of the parsing engine APE <ref type="bibr">[5]</ref>. Figure <ref type="figure" target="#fig_0">1</ref> shows the overall idea behind this algorithm. For instance, according to this algorithm, the query above is translated into the following ASP program:</p><p>what_be_genes(GN1) :-gene_gene(GN1,"DLG4"), drug_gene("Epinephrine",GN1).</p><p>where gene gene and drug gene are defined in a "rule layer". -Once we transform the biomedical query into an ASP program and extract the relevant part of the rule layer (also an ASP program), we can compute its answers (if exists) using a state-of-the-art ASP system, such as CLASP <ref type="bibr">[6]</ref>, DLV <ref type="bibr">[3,</ref><ref type="bibr">7]</ref> or DLVHEX [2], as described in <ref type="bibr" target="#b0">[1]</ref>. Figure <ref type="figure">2</ref> shows the overall idea behind this algo-Fig. <ref type="figure">2</ref>. Extracting and integrating knowledge from ontologies or databases that is relevant to a given query, and finding an answer to the query using an ASP system.</p><p>rithm. For instance, using CLASP, we compute the following answer to the query above: "ADRB1". -We construct an algorithm to provide minimal explanations to the answers. For instance, for "ADRB1" our algorithm provides the following minimal explanation:</p><p>the drug "Epinephrine" targets the gene "ADRB1" according to CTD and the gene "ADRB1" interacts with the gene "DLG4" according to BIOGRID.</p><p>The applicability of our methods is illustrated with some complex queries over PHARMGKB, DRUGBANK, BIOGRID, SIDER and CTD, using the ASP systems CLASP (with GRINGO), DLV and DLVHEX. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>International Workshop on Applications of Logic</head></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Fig. 1 .</head><label>1</label><figDesc>Fig. 1. Transforming a query in BIOQUERYCNL into an ASP program.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head></head><label></label><figDesc>Programming to the Semantic Web and Web Services (2008) 2. Eiter, T., G.Ianni, R.Schindlauer, H.Tompits: Effective integration of declarative rules with external evaluations for Semantic-Web reasoning. In: Proc. of ESWC (2006) 3. Eiter, T., Leone, N., Mateis, C., Pfeifer, G., Scarcello, F.: A deductive system for nonmonotonic reasoning. In: Proc. of LPNMR. pp. 364-375 (1997) 4. Erdem, E., Yeniterzi, R.: Transforming controlled natural language biomedical queries into answer set programs. In: Proc. of the Workshop on BioNLP. pp. 117-124 (2009) 5. Fuchs, N.E.: Attempto controlled english. In: Proc. of WLP. pp. 211-218 (2000) 6. Gebser, M., Kaufmann, B., Neumann, A., Schaub, T.: T.: Conflict-driven answer set solving. In: Proc. of IJCAI. pp. 386-392 (2007) 7. Leone, N., Pfeifer, G., Faber, W., Eiter, T., Gottlob, G., Perri, S., Scarcello, F.: The dlv system for knowledge representation and reasoning. ACM Trans. Comput. Log. 7(3), 499-562 (2006) 8. Lifschitz, V.: What is answer set programming? In: Proc. of AAAI (2008)</figDesc><table /></figure>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Acknowledgments. This work has been supported by TUBITAK Grant 108E229.</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">A preliminary report on answering complex queries related to drug discovery using answer set programming</title>
		<author>
			<persName><forename type="first">O</forename><surname>Bodenreider</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Z</forename><forename type="middle">H</forename><surname>Coban</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><forename type="middle">C</forename><surname>Doganay</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Erdem</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proc. of the 3rd</title>
				<meeting>of the 3rd</meeting>
		<imprint/>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
