diff --git a/examples/structureLearning/Makefile b/examples/structureLearning/Makefile index f74feb72..233386a5 100644 --- a/examples/structureLearning/Makefile +++ b/examples/structureLearning/Makefile @@ -17,7 +17,8 @@ TSRW=l2p:mu=0.0001:eta=1.0 EPOCHS=100 PROVER=dpr APR=eps=0.0001:alph=0.001 -UNNORMALIZED=--unnormalized --weightingScheme tanh +WEIGHTINGSCHEME=--weightingScheme tanh +UNNORMALIZED=--unnormalized $(WEIGHTINGSCHEME) ifeq ($(strip $(ITERS)),) ITERS=10 @@ -133,7 +134,7 @@ pre.${NAME}-test.%.solutions.txt: ${NAME}-test.examples ${NAME}_%.wam # uml_1_h22_01.wam # params.h22_01.wts post.${NAME}-test.%.solutions.txt: ${NAME}-test.examples ${NAME}_%.wam params.%.wts - java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.QueryAnswerer --programFiles ${NAME}-test.cfacts:$(word 2,$^) --queries $< --solutions $@ --prover ${PROVER} --threads ${THREADS} --apr ${APR} ${UNNORMALIZED} --params $(word 3,$^) + java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.QueryAnswerer --programFiles ${NAME}.cfacts:$(word 2,$^) --queries $< --solutions $@ --prover ${PROVER} --threads ${THREADS} --apr ${APR} ${UNNORMALIZED} --params $(word 3,$^) # make e.g. pre.uml_1-train.h22_01.solutions.txt # from e.g. uml_1-train.examples @@ -146,19 +147,19 @@ pre.${NAME}-train.%.solutions.txt: ${NAME}-train.examples ${NAME}_%.wam # uml_1_h22_01.wam # params.h22_01.wts post.${NAME}-train.%.solutions.txt: ${NAME}-train.examples ${NAME}_%.wam params.%.wts - java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.QueryAnswerer --programFiles ${NAME}-train.cfacts:$(word 2,$^) --queries $< --solutions $@ --prover ${PROVER} --threads ${THREADS} --apr ${APR} ${UNNORMALIZED} --params $(word 3,$^) + java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.QueryAnswerer --programFiles ${NAME}.cfacts:$(word 2,$^) --queries $< --solutions $@ --prover ${PROVER} --threads ${THREADS} --apr ${APR} ${UNNORMALIZED} --params $(word 3,$^) # make e.g. params.alone_01.wts # from e.g. uml_1-train.alone_01.examples.grounded params.%.wts: ${TRAIN}.%.examples.grounded - java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.Trainer --train $< --params $@ --threads ${THREADS} --srw ${TSRW} --epochs ${EPOCHS} --apr ${APR} + java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.Trainer --train $< --params $@ --threads ${THREADS} --srw ${TSRW} --epochs ${EPOCHS} --apr ${APR} ${WEIGHTINGSCHEME} # make e.g. uml_1-train.h22_01.examples.grounded # from e.g. uml_1-train.examples # uml_1_h22_01.wam ${NAME}-train.%.examples.grounded: ${NAME}-train.examples ${NAME}_%.wam - java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.Grounder --programFiles ${NAME}-train.cfacts:$(word 2,$^) --queries $< --grounded $@ --prover ${PROVER} --threads ${THREADS} --apr ${APR} + java ${JOPTS} -cp ${CP} edu.cmu.ml.proppr.Grounder --programFiles ${NAME}.cfacts:$(word 2,$^) --queries $< --grounded $@ --prover ${PROVER} --threads ${THREADS} --apr ${APR} ${WEIGHTINGSCHEME} ## Additional targets for building an executable program from gradient-generated rules: diff --git a/examples/structureLearning/scripts/avgprec.py b/examples/structureLearning/scripts/avgprec.py new file mode 100644 index 00000000..d9f976a1 --- /dev/null +++ b/examples/structureLearning/scripts/avgprec.py @@ -0,0 +1,45 @@ +import sys + +#scan thru lines like this: +#+-------------------- +#|0.00280174 0 interp(i_uncle,arthur,margaret) +#|0.00276313 1 interp(i_uncle,charles,charlotte) +#|0.00273479 1 interp(i_uncle,arthur,charlotte) +#|0.00273329 1 interp(i_uncle,arthur,colin) +#|0.0025534 0 interp(i_uncle,christopher,victoria) +#|0.00255312 0 interp(i_uncle,andrew,jennifer) +#... +# +#and find average precision + +if __name__ == "__main__": + + lastScore = 2.0 + n = 0.0 + sumPrec = 0.0 + rank = 0.0 + numPosAtThisRank = 0 + print '#%s\t%s\t%s\t%s' % ('rank','prec@r','score','example') + for line in sys.stdin: + rank += 1.0 + (scoreStr,label,goal) = line.strip().split("\t") + # a check + score = float(scoreStr) + if score > lastScore: + print 'lines out of order: this line has score > previous score:',line + sys.exit(-1) + if int(label): + if score>0: + numPosAtThisRank += 1.0 + prec = numPosAtThisRank/rank + sumPrec += prec + n += 1.0 + print '%f\t%f\t%f\t%s' % (rank,prec,score,goal) + else: + n += 1.0 + prec = 0.0 + print '%f\t%f\t%f\t%s' % (rank,prec,score,goal) + if n>0: + print '#\n#avgPrecision: ',sumPrec/n + + diff --git a/examples/structureLearning/scripts/prepareJointData.py b/examples/structureLearning/scripts/prepareJointData.py new file mode 100644 index 00000000..449dc0ff --- /dev/null +++ b/examples/structureLearning/scripts/prepareJointData.py @@ -0,0 +1,115 @@ +import sys +import re +import random +import collections + +DUPLICATE_TRAIN_AND_BACKGROUND = True + +#Generate a dataset of examples. Possible instances of a relation +#P(X,Y) are all pairs X,Y that appear as arguments of some relation. +#All possible first arguments x are used to produce a query p(x,Y), +#and all possible instances are listed as pos/neg answers to the query +#P(x,Y). + +#command-line argument is the set of relations to use as background data, +#colon-separated, the the set of relations to use as training + +rels = set('father mother husband wife son daughter brother sister uncle aunt nephew niece'.split(' ')) +trainFam = set('andrew arthur charles charlotte christine christopher colin james jennifer margaret penelope victoria'.split(' ')) +testFam = set('alfonso angela emilio francesca gina lucia marco maria pierro roberto sophia tomaso'.split(' ')) + +def asExamples(facts,instances): + print "asExamples facts:" + print "\n ".join(sorted([str(f) for f in facts])) + print "asExamples instances:" + print "\n ".join(sorted([str(i) for i in instances])) + rnd = random.Random() + rnd.seed(None) + trueYs = collections.defaultdict(set) + people = set() + for (r,x,y) in facts: + trueYs[(r,x)].add(y) + people.add(x) + result = [] + print "asExamples rels:" + for r in rels: + for x in people: + query = 'interp(i_%s,%s,Y)' % (r,x) + pos = [] + neg = [] + print r,x,trueYs[(r,x)] + for y in trueYs[(r,x)]: + pos += [('interp(i_%s,%s,%s)' % (r,x,y))] + for y in people: + if ((x,y) in instances) and (y not in trueYs[(r,x)]): + neg += [('interp(i_%s,%s,%s)' % (r,x,y))] + result += [(query,pos,neg)] + rnd.shuffle(result) + return result + +def loadKinship(fileName): + facts = set() + instances = set() + for line in open(fileName): + (dummy,rel,x,y) = line.strip().split('\t') + facts.add((rel,x,y)) + instances.add((x,y)) + return facts,instances + +def splitFacts(facts,fam,pTrain,pSkip): + examples = set() + background = set() + rnd = random.Random() + rnd.seed(None) + for (r,x,y) in facts: + if x in fam: + selectedForTrain = (rnd.random()pSkip) + if selectedForTrain: + examples.add((r,x,y)) + if selectedForBackground and (not selectedForTrain or DUPLICATE_TRAIN_AND_BACKGROUND): + background.add((r,x,y)) + return examples,background + +if __name__ == "__main__": + if len(sys.argv)!=5: + print('usage: trainStem testStem pTrain pSkip') + sys.exit(-1) + + trainStem = sys.argv[1] + testStem = sys.argv[2] + pTrain = float(sys.argv[3]) + pSkip = float(sys.argv[4]) + + facts,instances = loadKinship('kinship.cfacts') + trainExampleFacts,trainBackgroundFacts = splitFacts(facts,trainFam,pTrain,pSkip) + testExampleFacts,testBackgroundFacts = splitFacts(facts,testFam,pTrain,pSkip) + + print trainStem+".cfacts holds background facts for trainFam" + fp = open(trainStem+'.cfacts','w') + for (p,x,y) in trainBackgroundFacts: + #print 'bg',p,x,y + fp.write(('rel\t%s\t%s\t%s\n' % (p,x,y))) + fp.close() + print testStem+".cfacts holds background facts for testFam" + fp = open(testStem+'.cfacts','w') + for (p,x,y) in testBackgroundFacts: + fp.write('rel\t%s\t%s\t%s\n' % (p,x,y)) + fp.close() + + print trainStem+".trainData holds training facts for trainFam" + fp = open(trainStem+'.trainData','w') + for (q,pos,neg) in asExamples(trainExampleFacts,instances): + fp.write(q) + for px in pos: fp.write('\t+' + px) + for nx in neg: fp.write('\t-' + nx) + fp.write('\n') + fp.close() + print testStem+".testData holds training facts for testFam" + fp = open(testStem+'.testData','w') + for (q,pos,neg) in asExamples(testExampleFacts,instances): + fp.write(q) + for px in pos: fp.write('\t+' + px) + for nx in neg: fp.write('\t-' + nx) + fp.write('\n') + fp.close() diff --git a/examples/structureLearning/tmp-test.cfacts b/examples/structureLearning/tmp-test.cfacts new file mode 100644 index 00000000..6f3c2478 --- /dev/null +++ b/examples/structureLearning/tmp-test.cfacts @@ -0,0 +1,51 @@ +rel son alfonso marco +rel aunt angela alfonso +rel daughter sophia lucia +rel mother francesca angela +rel father marco alfonso +rel husband marco lucia +rel uncle tomaso sophia +rel aunt gina sophia +rel brother marco angela +rel sister sophia alfonso +rel niece sophia angela +rel wife francesca pierro +rel wife gina emilio +rel son alfonso lucia +rel sister lucia emilio +rel son marco francesca +rel niece sophia gina +rel daughter sophia marco +rel niece sophia emilio +rel mother maria emilio +rel husband roberto maria +rel uncle emilio alfonso +rel mother maria lucia +rel daughter angela pierro +rel father roberto emilio +rel aunt gina alfonso +rel wife lucia marco +rel father roberto lucia +rel wife angela tomaso +rel daughter lucia maria +rel sister angela marco +rel husband tomaso angela +rel niece sophia tomaso +rel mother francesca marco +rel mother lucia sophia +rel daughter lucia roberto +rel father marco sophia +rel brother alfonso sophia +rel husband emilio gina +rel son emilio roberto +rel father pierro angela +rel wife maria roberto +rel son marco pierro +rel father pierro marco +rel nephew alfonso tomaso +rel nephew alfonso gina +rel uncle emilio sophia +rel brother emilio lucia +rel nephew alfonso angela +rel husband pierro francesca +rel uncle tomaso alfonso diff --git a/examples/structureLearning/tmp-test.examples b/examples/structureLearning/tmp-test.examples new file mode 100644 index 00000000..ddd57a34 --- /dev/null +++ b/examples/structureLearning/tmp-test.examples @@ -0,0 +1,144 @@ +interp(i_aunt,alfonso,Y) -interp(i_aunt,alfonso,marco) -interp(i_aunt,alfonso,tomaso) -interp(i_aunt,alfonso,gina) -interp(i_aunt,alfonso,angela) -interp(i_aunt,alfonso,lucia) -interp(i_aunt,alfonso,emilio) -interp(i_aunt,alfonso,sophia) +interp(i_sister,gina,Y) -interp(i_sister,gina,alfonso) -interp(i_sister,gina,emilio) -interp(i_sister,gina,sophia) +interp(i_father,lucia,Y) -interp(i_father,lucia,marco) -interp(i_father,lucia,roberto) -interp(i_father,lucia,alfonso) -interp(i_father,lucia,emilio) -interp(i_father,lucia,sophia) -interp(i_father,lucia,maria) +interp(i_wife,alfonso,Y) -interp(i_wife,alfonso,marco) -interp(i_wife,alfonso,tomaso) -interp(i_wife,alfonso,gina) -interp(i_wife,alfonso,angela) -interp(i_wife,alfonso,lucia) -interp(i_wife,alfonso,emilio) -interp(i_wife,alfonso,sophia) +interp(i_husband,pierro,Y) +interp(i_husband,pierro,francesca) -interp(i_husband,pierro,marco) -interp(i_husband,pierro,angela) +interp(i_mother,angela,Y) -interp(i_mother,angela,marco) -interp(i_mother,angela,tomaso) -interp(i_mother,angela,pierro) -interp(i_mother,angela,alfonso) -interp(i_mother,angela,francesca) -interp(i_mother,angela,sophia) +interp(i_father,roberto,Y) +interp(i_father,roberto,lucia) +interp(i_father,roberto,emilio) -interp(i_father,roberto,maria) +interp(i_nephew,angela,Y) -interp(i_nephew,angela,marco) -interp(i_nephew,angela,tomaso) -interp(i_nephew,angela,pierro) -interp(i_nephew,angela,alfonso) -interp(i_nephew,angela,francesca) -interp(i_nephew,angela,sophia) +interp(i_niece,maria,Y) -interp(i_niece,maria,roberto) -interp(i_niece,maria,lucia) -interp(i_niece,maria,emilio) +interp(i_mother,francesca,Y) +interp(i_mother,francesca,marco) -interp(i_mother,francesca,pierro) -interp(i_mother,francesca,angela) +interp(i_aunt,tomaso,Y) -interp(i_aunt,tomaso,angela) -interp(i_aunt,tomaso,alfonso) -interp(i_aunt,tomaso,sophia) +interp(i_daughter,pierro,Y) -interp(i_daughter,pierro,marco) -interp(i_daughter,pierro,angela) -interp(i_daughter,pierro,francesca) +interp(i_wife,roberto,Y) -interp(i_wife,roberto,lucia) -interp(i_wife,roberto,emilio) -interp(i_wife,roberto,maria) +interp(i_brother,marco,Y) -interp(i_brother,marco,pierro) -interp(i_brother,marco,angela) -interp(i_brother,marco,lucia) -interp(i_brother,marco,alfonso) -interp(i_brother,marco,francesca) -interp(i_brother,marco,sophia) +interp(i_father,pierro,Y) +interp(i_father,pierro,marco) +interp(i_father,pierro,angela) -interp(i_father,pierro,francesca) +interp(i_wife,emilio,Y) -interp(i_wife,emilio,gina) -interp(i_wife,emilio,roberto) -interp(i_wife,emilio,lucia) -interp(i_wife,emilio,alfonso) -interp(i_wife,emilio,sophia) -interp(i_wife,emilio,maria) +interp(i_niece,sophia,Y) +interp(i_niece,sophia,tomaso) +interp(i_niece,sophia,angela) +interp(i_niece,sophia,emilio) -interp(i_niece,sophia,marco) -interp(i_niece,sophia,gina) -interp(i_niece,sophia,lucia) -interp(i_niece,sophia,alfonso) +interp(i_aunt,angela,Y) +interp(i_aunt,angela,alfonso) +interp(i_aunt,angela,sophia) -interp(i_aunt,angela,marco) -interp(i_aunt,angela,tomaso) -interp(i_aunt,angela,pierro) -interp(i_aunt,angela,francesca) +interp(i_aunt,sophia,Y) -interp(i_aunt,sophia,marco) -interp(i_aunt,sophia,tomaso) -interp(i_aunt,sophia,gina) -interp(i_aunt,sophia,angela) -interp(i_aunt,sophia,lucia) -interp(i_aunt,sophia,alfonso) -interp(i_aunt,sophia,emilio) +interp(i_niece,alfonso,Y) -interp(i_niece,alfonso,marco) -interp(i_niece,alfonso,tomaso) -interp(i_niece,alfonso,gina) -interp(i_niece,alfonso,angela) -interp(i_niece,alfonso,lucia) -interp(i_niece,alfonso,emilio) -interp(i_niece,alfonso,sophia) +interp(i_husband,emilio,Y) +interp(i_husband,emilio,gina) -interp(i_husband,emilio,roberto) -interp(i_husband,emilio,lucia) -interp(i_husband,emilio,alfonso) -interp(i_husband,emilio,sophia) -interp(i_husband,emilio,maria) +interp(i_son,roberto,Y) -interp(i_son,roberto,lucia) -interp(i_son,roberto,emilio) -interp(i_son,roberto,maria) +interp(i_father,gina,Y) -interp(i_father,gina,alfonso) -interp(i_father,gina,emilio) -interp(i_father,gina,sophia) +interp(i_son,marco,Y) +interp(i_son,marco,francesca) +interp(i_son,marco,pierro) -interp(i_son,marco,angela) -interp(i_son,marco,lucia) -interp(i_son,marco,alfonso) -interp(i_son,marco,sophia) +interp(i_sister,marco,Y) -interp(i_sister,marco,pierro) -interp(i_sister,marco,angela) -interp(i_sister,marco,lucia) -interp(i_sister,marco,alfonso) -interp(i_sister,marco,francesca) -interp(i_sister,marco,sophia) +interp(i_father,francesca,Y) -interp(i_father,francesca,marco) -interp(i_father,francesca,pierro) -interp(i_father,francesca,angela) +interp(i_wife,pierro,Y) -interp(i_wife,pierro,marco) -interp(i_wife,pierro,angela) -interp(i_wife,pierro,francesca) +interp(i_uncle,angela,Y) -interp(i_uncle,angela,marco) -interp(i_uncle,angela,tomaso) -interp(i_uncle,angela,pierro) -interp(i_uncle,angela,alfonso) -interp(i_uncle,angela,francesca) -interp(i_uncle,angela,sophia) +interp(i_brother,angela,Y) -interp(i_brother,angela,marco) -interp(i_brother,angela,tomaso) -interp(i_brother,angela,pierro) -interp(i_brother,angela,alfonso) -interp(i_brother,angela,francesca) -interp(i_brother,angela,sophia) +interp(i_brother,emilio,Y) +interp(i_brother,emilio,lucia) -interp(i_brother,emilio,gina) -interp(i_brother,emilio,roberto) -interp(i_brother,emilio,alfonso) -interp(i_brother,emilio,sophia) -interp(i_brother,emilio,maria) +interp(i_aunt,emilio,Y) -interp(i_aunt,emilio,gina) -interp(i_aunt,emilio,roberto) -interp(i_aunt,emilio,lucia) -interp(i_aunt,emilio,alfonso) -interp(i_aunt,emilio,sophia) -interp(i_aunt,emilio,maria) +interp(i_sister,francesca,Y) -interp(i_sister,francesca,marco) -interp(i_sister,francesca,pierro) -interp(i_sister,francesca,angela) +interp(i_son,lucia,Y) -interp(i_son,lucia,marco) -interp(i_son,lucia,roberto) -interp(i_son,lucia,alfonso) -interp(i_son,lucia,emilio) -interp(i_son,lucia,sophia) -interp(i_son,lucia,maria) +interp(i_son,sophia,Y) -interp(i_son,sophia,marco) -interp(i_son,sophia,tomaso) -interp(i_son,sophia,gina) -interp(i_son,sophia,angela) -interp(i_son,sophia,lucia) -interp(i_son,sophia,alfonso) -interp(i_son,sophia,emilio) +interp(i_niece,roberto,Y) -interp(i_niece,roberto,lucia) -interp(i_niece,roberto,emilio) -interp(i_niece,roberto,maria) +interp(i_niece,angela,Y) -interp(i_niece,angela,marco) -interp(i_niece,angela,tomaso) -interp(i_niece,angela,pierro) -interp(i_niece,angela,alfonso) -interp(i_niece,angela,francesca) -interp(i_niece,angela,sophia) +interp(i_daughter,alfonso,Y) -interp(i_daughter,alfonso,marco) -interp(i_daughter,alfonso,tomaso) -interp(i_daughter,alfonso,gina) -interp(i_daughter,alfonso,angela) -interp(i_daughter,alfonso,lucia) -interp(i_daughter,alfonso,emilio) -interp(i_daughter,alfonso,sophia) +interp(i_niece,pierro,Y) -interp(i_niece,pierro,marco) -interp(i_niece,pierro,angela) -interp(i_niece,pierro,francesca) +interp(i_niece,marco,Y) -interp(i_niece,marco,pierro) -interp(i_niece,marco,angela) -interp(i_niece,marco,lucia) -interp(i_niece,marco,alfonso) -interp(i_niece,marco,francesca) -interp(i_niece,marco,sophia) +interp(i_sister,sophia,Y) +interp(i_sister,sophia,alfonso) -interp(i_sister,sophia,marco) -interp(i_sister,sophia,tomaso) -interp(i_sister,sophia,gina) -interp(i_sister,sophia,angela) -interp(i_sister,sophia,lucia) -interp(i_sister,sophia,emilio) +interp(i_wife,gina,Y) +interp(i_wife,gina,emilio) -interp(i_wife,gina,alfonso) -interp(i_wife,gina,sophia) +interp(i_mother,lucia,Y) +interp(i_mother,lucia,alfonso) +interp(i_mother,lucia,sophia) -interp(i_mother,lucia,marco) -interp(i_mother,lucia,roberto) -interp(i_mother,lucia,emilio) -interp(i_mother,lucia,maria) +interp(i_niece,tomaso,Y) -interp(i_niece,tomaso,angela) -interp(i_niece,tomaso,alfonso) -interp(i_niece,tomaso,sophia) +interp(i_mother,tomaso,Y) -interp(i_mother,tomaso,angela) -interp(i_mother,tomaso,alfonso) -interp(i_mother,tomaso,sophia) +interp(i_brother,maria,Y) -interp(i_brother,maria,roberto) -interp(i_brother,maria,lucia) -interp(i_brother,maria,emilio) +interp(i_sister,alfonso,Y) -interp(i_sister,alfonso,marco) -interp(i_sister,alfonso,tomaso) -interp(i_sister,alfonso,gina) -interp(i_sister,alfonso,angela) -interp(i_sister,alfonso,lucia) -interp(i_sister,alfonso,emilio) -interp(i_sister,alfonso,sophia) +interp(i_son,pierro,Y) -interp(i_son,pierro,marco) -interp(i_son,pierro,angela) -interp(i_son,pierro,francesca) +interp(i_aunt,pierro,Y) -interp(i_aunt,pierro,marco) -interp(i_aunt,pierro,angela) -interp(i_aunt,pierro,francesca) +interp(i_aunt,marco,Y) -interp(i_aunt,marco,pierro) -interp(i_aunt,marco,angela) -interp(i_aunt,marco,lucia) -interp(i_aunt,marco,alfonso) -interp(i_aunt,marco,francesca) -interp(i_aunt,marco,sophia) +interp(i_aunt,francesca,Y) -interp(i_aunt,francesca,marco) -interp(i_aunt,francesca,pierro) -interp(i_aunt,francesca,angela) +interp(i_wife,sophia,Y) -interp(i_wife,sophia,marco) -interp(i_wife,sophia,tomaso) -interp(i_wife,sophia,gina) -interp(i_wife,sophia,angela) -interp(i_wife,sophia,lucia) -interp(i_wife,sophia,alfonso) -interp(i_wife,sophia,emilio) +interp(i_sister,tomaso,Y) -interp(i_sister,tomaso,angela) -interp(i_sister,tomaso,alfonso) -interp(i_sister,tomaso,sophia) +interp(i_father,tomaso,Y) -interp(i_father,tomaso,angela) -interp(i_father,tomaso,alfonso) -interp(i_father,tomaso,sophia) +interp(i_aunt,lucia,Y) -interp(i_aunt,lucia,marco) -interp(i_aunt,lucia,roberto) -interp(i_aunt,lucia,alfonso) -interp(i_aunt,lucia,emilio) -interp(i_aunt,lucia,sophia) -interp(i_aunt,lucia,maria) +interp(i_uncle,lucia,Y) -interp(i_uncle,lucia,marco) -interp(i_uncle,lucia,roberto) -interp(i_uncle,lucia,alfonso) -interp(i_uncle,lucia,emilio) -interp(i_uncle,lucia,sophia) -interp(i_uncle,lucia,maria) +interp(i_nephew,gina,Y) -interp(i_nephew,gina,alfonso) -interp(i_nephew,gina,emilio) -interp(i_nephew,gina,sophia) +interp(i_wife,maria,Y) +interp(i_wife,maria,roberto) -interp(i_wife,maria,lucia) -interp(i_wife,maria,emilio) +interp(i_son,alfonso,Y) +interp(i_son,alfonso,marco) +interp(i_son,alfonso,lucia) -interp(i_son,alfonso,tomaso) -interp(i_son,alfonso,gina) -interp(i_son,alfonso,angela) -interp(i_son,alfonso,emilio) -interp(i_son,alfonso,sophia) +interp(i_uncle,francesca,Y) -interp(i_uncle,francesca,marco) -interp(i_uncle,francesca,pierro) -interp(i_uncle,francesca,angela) +interp(i_daughter,angela,Y) +interp(i_daughter,angela,francesca) +interp(i_daughter,angela,pierro) -interp(i_daughter,angela,marco) -interp(i_daughter,angela,tomaso) -interp(i_daughter,angela,alfonso) -interp(i_daughter,angela,sophia) +interp(i_husband,alfonso,Y) -interp(i_husband,alfonso,marco) -interp(i_husband,alfonso,tomaso) -interp(i_husband,alfonso,gina) -interp(i_husband,alfonso,angela) -interp(i_husband,alfonso,lucia) -interp(i_husband,alfonso,emilio) -interp(i_husband,alfonso,sophia) +interp(i_husband,angela,Y) -interp(i_husband,angela,marco) -interp(i_husband,angela,tomaso) -interp(i_husband,angela,pierro) -interp(i_husband,angela,alfonso) -interp(i_husband,angela,francesca) -interp(i_husband,angela,sophia) +interp(i_uncle,gina,Y) -interp(i_uncle,gina,alfonso) -interp(i_uncle,gina,emilio) -interp(i_uncle,gina,sophia) +interp(i_uncle,maria,Y) -interp(i_uncle,maria,roberto) -interp(i_uncle,maria,lucia) -interp(i_uncle,maria,emilio) +interp(i_daughter,francesca,Y) -interp(i_daughter,francesca,marco) -interp(i_daughter,francesca,pierro) -interp(i_daughter,francesca,angela) +interp(i_brother,lucia,Y) -interp(i_brother,lucia,marco) -interp(i_brother,lucia,roberto) -interp(i_brother,lucia,alfonso) -interp(i_brother,lucia,emilio) -interp(i_brother,lucia,sophia) -interp(i_brother,lucia,maria) +interp(i_uncle,roberto,Y) -interp(i_uncle,roberto,lucia) -interp(i_uncle,roberto,emilio) -interp(i_uncle,roberto,maria) +interp(i_uncle,alfonso,Y) -interp(i_uncle,alfonso,marco) -interp(i_uncle,alfonso,tomaso) -interp(i_uncle,alfonso,gina) -interp(i_uncle,alfonso,angela) -interp(i_uncle,alfonso,lucia) -interp(i_uncle,alfonso,emilio) -interp(i_uncle,alfonso,sophia) +interp(i_mother,maria,Y) +interp(i_mother,maria,lucia) +interp(i_mother,maria,emilio) -interp(i_mother,maria,roberto) +interp(i_uncle,marco,Y) -interp(i_uncle,marco,pierro) -interp(i_uncle,marco,angela) -interp(i_uncle,marco,lucia) -interp(i_uncle,marco,alfonso) -interp(i_uncle,marco,francesca) -interp(i_uncle,marco,sophia) +interp(i_sister,maria,Y) -interp(i_sister,maria,roberto) -interp(i_sister,maria,lucia) -interp(i_sister,maria,emilio) +interp(i_aunt,gina,Y) +interp(i_aunt,gina,alfonso) +interp(i_aunt,gina,sophia) -interp(i_aunt,gina,emilio) +interp(i_daughter,sophia,Y) +interp(i_daughter,sophia,marco) +interp(i_daughter,sophia,lucia) -interp(i_daughter,sophia,tomaso) -interp(i_daughter,sophia,gina) -interp(i_daughter,sophia,angela) -interp(i_daughter,sophia,alfonso) -interp(i_daughter,sophia,emilio) +interp(i_mother,alfonso,Y) -interp(i_mother,alfonso,marco) -interp(i_mother,alfonso,tomaso) -interp(i_mother,alfonso,gina) -interp(i_mother,alfonso,angela) -interp(i_mother,alfonso,lucia) -interp(i_mother,alfonso,emilio) -interp(i_mother,alfonso,sophia) +interp(i_aunt,roberto,Y) -interp(i_aunt,roberto,lucia) -interp(i_aunt,roberto,emilio) -interp(i_aunt,roberto,maria) +interp(i_son,maria,Y) -interp(i_son,maria,roberto) -interp(i_son,maria,lucia) -interp(i_son,maria,emilio) +interp(i_wife,angela,Y) +interp(i_wife,angela,tomaso) -interp(i_wife,angela,marco) -interp(i_wife,angela,pierro) -interp(i_wife,angela,alfonso) -interp(i_wife,angela,francesca) -interp(i_wife,angela,sophia) +interp(i_niece,gina,Y) -interp(i_niece,gina,alfonso) -interp(i_niece,gina,emilio) -interp(i_niece,gina,sophia) +interp(i_daughter,marco,Y) -interp(i_daughter,marco,pierro) -interp(i_daughter,marco,angela) -interp(i_daughter,marco,lucia) -interp(i_daughter,marco,alfonso) -interp(i_daughter,marco,francesca) -interp(i_daughter,marco,sophia) +interp(i_nephew,lucia,Y) -interp(i_nephew,lucia,marco) -interp(i_nephew,lucia,roberto) -interp(i_nephew,lucia,alfonso) -interp(i_nephew,lucia,emilio) -interp(i_nephew,lucia,sophia) -interp(i_nephew,lucia,maria) +interp(i_husband,francesca,Y) -interp(i_husband,francesca,marco) -interp(i_husband,francesca,pierro) -interp(i_husband,francesca,angela) +interp(i_mother,marco,Y) -interp(i_mother,marco,pierro) -interp(i_mother,marco,angela) -interp(i_mother,marco,lucia) -interp(i_mother,marco,alfonso) -interp(i_mother,marco,francesca) -interp(i_mother,marco,sophia) +interp(i_mother,pierro,Y) -interp(i_mother,pierro,marco) -interp(i_mother,pierro,angela) -interp(i_mother,pierro,francesca) +interp(i_sister,emilio,Y) -interp(i_sister,emilio,gina) -interp(i_sister,emilio,roberto) -interp(i_sister,emilio,lucia) -interp(i_sister,emilio,alfonso) -interp(i_sister,emilio,sophia) -interp(i_sister,emilio,maria) +interp(i_uncle,emilio,Y) +interp(i_uncle,emilio,alfonso) +interp(i_uncle,emilio,sophia) -interp(i_uncle,emilio,gina) -interp(i_uncle,emilio,roberto) -interp(i_uncle,emilio,lucia) -interp(i_uncle,emilio,maria) +interp(i_niece,francesca,Y) -interp(i_niece,francesca,marco) -interp(i_niece,francesca,pierro) -interp(i_niece,francesca,angela) +interp(i_daughter,maria,Y) -interp(i_daughter,maria,roberto) -interp(i_daughter,maria,lucia) -interp(i_daughter,maria,emilio) +interp(i_son,gina,Y) -interp(i_son,gina,alfonso) -interp(i_son,gina,emilio) -interp(i_son,gina,sophia) +interp(i_mother,sophia,Y) -interp(i_mother,sophia,marco) -interp(i_mother,sophia,tomaso) -interp(i_mother,sophia,gina) -interp(i_mother,sophia,angela) -interp(i_mother,sophia,lucia) -interp(i_mother,sophia,alfonso) -interp(i_mother,sophia,emilio) +interp(i_husband,gina,Y) -interp(i_husband,gina,alfonso) -interp(i_husband,gina,emilio) -interp(i_husband,gina,sophia) +interp(i_brother,alfonso,Y) +interp(i_brother,alfonso,sophia) -interp(i_brother,alfonso,marco) -interp(i_brother,alfonso,tomaso) -interp(i_brother,alfonso,gina) -interp(i_brother,alfonso,angela) -interp(i_brother,alfonso,lucia) -interp(i_brother,alfonso,emilio) +interp(i_sister,roberto,Y) -interp(i_sister,roberto,lucia) -interp(i_sister,roberto,emilio) -interp(i_sister,roberto,maria) +interp(i_nephew,tomaso,Y) -interp(i_nephew,tomaso,angela) -interp(i_nephew,tomaso,alfonso) -interp(i_nephew,tomaso,sophia) +interp(i_husband,lucia,Y) -interp(i_husband,lucia,marco) -interp(i_husband,lucia,roberto) -interp(i_husband,lucia,alfonso) -interp(i_husband,lucia,emilio) -interp(i_husband,lucia,sophia) -interp(i_husband,lucia,maria) +interp(i_son,emilio,Y) +interp(i_son,emilio,roberto) +interp(i_son,emilio,maria) -interp(i_son,emilio,gina) -interp(i_son,emilio,lucia) -interp(i_son,emilio,alfonso) -interp(i_son,emilio,sophia) +interp(i_son,francesca,Y) -interp(i_son,francesca,marco) -interp(i_son,francesca,pierro) -interp(i_son,francesca,angela) +interp(i_father,maria,Y) -interp(i_father,maria,roberto) -interp(i_father,maria,lucia) -interp(i_father,maria,emilio) +interp(i_husband,tomaso,Y) +interp(i_husband,tomaso,angela) -interp(i_husband,tomaso,alfonso) -interp(i_husband,tomaso,sophia) +interp(i_sister,lucia,Y) +interp(i_sister,lucia,emilio) -interp(i_sister,lucia,marco) -interp(i_sister,lucia,roberto) -interp(i_sister,lucia,alfonso) -interp(i_sister,lucia,sophia) -interp(i_sister,lucia,maria) +interp(i_niece,lucia,Y) -interp(i_niece,lucia,marco) -interp(i_niece,lucia,roberto) -interp(i_niece,lucia,alfonso) -interp(i_niece,lucia,emilio) -interp(i_niece,lucia,sophia) -interp(i_niece,lucia,maria) +interp(i_nephew,pierro,Y) -interp(i_nephew,pierro,marco) -interp(i_nephew,pierro,angela) -interp(i_nephew,pierro,francesca) +interp(i_daughter,lucia,Y) +interp(i_daughter,lucia,roberto) +interp(i_daughter,lucia,maria) -interp(i_daughter,lucia,marco) -interp(i_daughter,lucia,alfonso) -interp(i_daughter,lucia,emilio) -interp(i_daughter,lucia,sophia) +interp(i_nephew,maria,Y) -interp(i_nephew,maria,roberto) -interp(i_nephew,maria,lucia) -interp(i_nephew,maria,emilio) +interp(i_sister,pierro,Y) -interp(i_sister,pierro,marco) -interp(i_sister,pierro,angela) -interp(i_sister,pierro,francesca) +interp(i_father,marco,Y) +interp(i_father,marco,sophia) -interp(i_father,marco,pierro) -interp(i_father,marco,angela) -interp(i_father,marco,lucia) -interp(i_father,marco,alfonso) -interp(i_father,marco,francesca) +interp(i_sister,angela,Y) +interp(i_sister,angela,marco) -interp(i_sister,angela,tomaso) -interp(i_sister,angela,pierro) -interp(i_sister,angela,alfonso) -interp(i_sister,angela,francesca) -interp(i_sister,angela,sophia) +interp(i_niece,emilio,Y) -interp(i_niece,emilio,gina) -interp(i_niece,emilio,roberto) -interp(i_niece,emilio,lucia) -interp(i_niece,emilio,alfonso) -interp(i_niece,emilio,sophia) -interp(i_niece,emilio,maria) +interp(i_husband,maria,Y) -interp(i_husband,maria,roberto) -interp(i_husband,maria,lucia) -interp(i_husband,maria,emilio) +interp(i_brother,gina,Y) -interp(i_brother,gina,alfonso) -interp(i_brother,gina,emilio) -interp(i_brother,gina,sophia) +interp(i_wife,lucia,Y) +interp(i_wife,lucia,marco) -interp(i_wife,lucia,roberto) -interp(i_wife,lucia,alfonso) -interp(i_wife,lucia,emilio) -interp(i_wife,lucia,sophia) -interp(i_wife,lucia,maria) +interp(i_nephew,sophia,Y) -interp(i_nephew,sophia,marco) -interp(i_nephew,sophia,tomaso) -interp(i_nephew,sophia,gina) -interp(i_nephew,sophia,angela) -interp(i_nephew,sophia,lucia) -interp(i_nephew,sophia,alfonso) -interp(i_nephew,sophia,emilio) +interp(i_father,sophia,Y) -interp(i_father,sophia,marco) -interp(i_father,sophia,tomaso) -interp(i_father,sophia,gina) -interp(i_father,sophia,angela) -interp(i_father,sophia,lucia) -interp(i_father,sophia,alfonso) -interp(i_father,sophia,emilio) +interp(i_aunt,maria,Y) -interp(i_aunt,maria,roberto) -interp(i_aunt,maria,lucia) -interp(i_aunt,maria,emilio) +interp(i_father,alfonso,Y) -interp(i_father,alfonso,marco) -interp(i_father,alfonso,tomaso) -interp(i_father,alfonso,gina) -interp(i_father,alfonso,angela) -interp(i_father,alfonso,lucia) -interp(i_father,alfonso,emilio) -interp(i_father,alfonso,sophia) +interp(i_nephew,marco,Y) -interp(i_nephew,marco,pierro) -interp(i_nephew,marco,angela) -interp(i_nephew,marco,lucia) -interp(i_nephew,marco,alfonso) -interp(i_nephew,marco,francesca) -interp(i_nephew,marco,sophia) +interp(i_brother,tomaso,Y) -interp(i_brother,tomaso,angela) -interp(i_brother,tomaso,alfonso) -interp(i_brother,tomaso,sophia) +interp(i_nephew,alfonso,Y) +interp(i_nephew,alfonso,gina) +interp(i_nephew,alfonso,tomaso) +interp(i_nephew,alfonso,angela) -interp(i_nephew,alfonso,marco) -interp(i_nephew,alfonso,lucia) -interp(i_nephew,alfonso,emilio) -interp(i_nephew,alfonso,sophia) +interp(i_brother,pierro,Y) -interp(i_brother,pierro,marco) -interp(i_brother,pierro,angela) -interp(i_brother,pierro,francesca) +interp(i_brother,francesca,Y) -interp(i_brother,francesca,marco) -interp(i_brother,francesca,pierro) -interp(i_brother,francesca,angela) +interp(i_uncle,pierro,Y) -interp(i_uncle,pierro,marco) -interp(i_uncle,pierro,angela) -interp(i_uncle,pierro,francesca) +interp(i_daughter,roberto,Y) -interp(i_daughter,roberto,lucia) -interp(i_daughter,roberto,emilio) -interp(i_daughter,roberto,maria) +interp(i_husband,marco,Y) +interp(i_husband,marco,lucia) -interp(i_husband,marco,pierro) -interp(i_husband,marco,angela) -interp(i_husband,marco,alfonso) -interp(i_husband,marco,francesca) -interp(i_husband,marco,sophia) +interp(i_son,angela,Y) -interp(i_son,angela,marco) -interp(i_son,angela,tomaso) -interp(i_son,angela,pierro) -interp(i_son,angela,alfonso) -interp(i_son,angela,francesca) -interp(i_son,angela,sophia) +interp(i_mother,gina,Y) -interp(i_mother,gina,alfonso) -interp(i_mother,gina,emilio) -interp(i_mother,gina,sophia) +interp(i_daughter,emilio,Y) -interp(i_daughter,emilio,gina) -interp(i_daughter,emilio,roberto) -interp(i_daughter,emilio,lucia) -interp(i_daughter,emilio,alfonso) -interp(i_daughter,emilio,sophia) -interp(i_daughter,emilio,maria) +interp(i_mother,roberto,Y) -interp(i_mother,roberto,lucia) -interp(i_mother,roberto,emilio) -interp(i_mother,roberto,maria) +interp(i_brother,roberto,Y) -interp(i_brother,roberto,lucia) -interp(i_brother,roberto,emilio) -interp(i_brother,roberto,maria) +interp(i_nephew,roberto,Y) -interp(i_nephew,roberto,lucia) -interp(i_nephew,roberto,emilio) -interp(i_nephew,roberto,maria) +interp(i_nephew,francesca,Y) -interp(i_nephew,francesca,marco) -interp(i_nephew,francesca,pierro) -interp(i_nephew,francesca,angela) +interp(i_wife,marco,Y) -interp(i_wife,marco,pierro) -interp(i_wife,marco,angela) -interp(i_wife,marco,lucia) -interp(i_wife,marco,alfonso) -interp(i_wife,marco,francesca) -interp(i_wife,marco,sophia) +interp(i_father,angela,Y) -interp(i_father,angela,marco) -interp(i_father,angela,tomaso) -interp(i_father,angela,pierro) -interp(i_father,angela,alfonso) -interp(i_father,angela,francesca) -interp(i_father,angela,sophia) +interp(i_husband,sophia,Y) -interp(i_husband,sophia,marco) -interp(i_husband,sophia,tomaso) -interp(i_husband,sophia,gina) -interp(i_husband,sophia,angela) -interp(i_husband,sophia,lucia) -interp(i_husband,sophia,alfonso) -interp(i_husband,sophia,emilio) +interp(i_daughter,tomaso,Y) -interp(i_daughter,tomaso,angela) -interp(i_daughter,tomaso,alfonso) -interp(i_daughter,tomaso,sophia) +interp(i_mother,emilio,Y) -interp(i_mother,emilio,gina) -interp(i_mother,emilio,roberto) -interp(i_mother,emilio,lucia) -interp(i_mother,emilio,alfonso) -interp(i_mother,emilio,sophia) -interp(i_mother,emilio,maria) +interp(i_father,emilio,Y) -interp(i_father,emilio,gina) -interp(i_father,emilio,roberto) -interp(i_father,emilio,lucia) -interp(i_father,emilio,alfonso) -interp(i_father,emilio,sophia) -interp(i_father,emilio,maria) +interp(i_husband,roberto,Y) +interp(i_husband,roberto,maria) -interp(i_husband,roberto,lucia) -interp(i_husband,roberto,emilio) +interp(i_wife,tomaso,Y) -interp(i_wife,tomaso,angela) -interp(i_wife,tomaso,alfonso) -interp(i_wife,tomaso,sophia) +interp(i_uncle,sophia,Y) -interp(i_uncle,sophia,marco) -interp(i_uncle,sophia,tomaso) -interp(i_uncle,sophia,gina) -interp(i_uncle,sophia,angela) -interp(i_uncle,sophia,lucia) -interp(i_uncle,sophia,alfonso) -interp(i_uncle,sophia,emilio) +interp(i_wife,francesca,Y) +interp(i_wife,francesca,pierro) -interp(i_wife,francesca,marco) -interp(i_wife,francesca,angela) +interp(i_son,tomaso,Y) -interp(i_son,tomaso,angela) -interp(i_son,tomaso,alfonso) -interp(i_son,tomaso,sophia) +interp(i_brother,sophia,Y) -interp(i_brother,sophia,marco) -interp(i_brother,sophia,tomaso) -interp(i_brother,sophia,gina) -interp(i_brother,sophia,angela) -interp(i_brother,sophia,lucia) -interp(i_brother,sophia,alfonso) -interp(i_brother,sophia,emilio) +interp(i_daughter,gina,Y) -interp(i_daughter,gina,alfonso) -interp(i_daughter,gina,emilio) -interp(i_daughter,gina,sophia) +interp(i_nephew,emilio,Y) -interp(i_nephew,emilio,gina) -interp(i_nephew,emilio,roberto) -interp(i_nephew,emilio,lucia) -interp(i_nephew,emilio,alfonso) -interp(i_nephew,emilio,sophia) -interp(i_nephew,emilio,maria) +interp(i_uncle,tomaso,Y) +interp(i_uncle,tomaso,alfonso) +interp(i_uncle,tomaso,sophia) -interp(i_uncle,tomaso,angela) diff --git a/examples/structureLearning/tmp-train.cfacts b/examples/structureLearning/tmp-train.cfacts new file mode 100644 index 00000000..c362734e --- /dev/null +++ b/examples/structureLearning/tmp-train.cfacts @@ -0,0 +1,52 @@ +rel sister victoria arthur +rel daughter jennifer andrew +rel niece charlotte charles +rel mother christine jennifer +rel mother penelope victoria +rel nephew colin margaret +rel wife penelope christopher +rel daughter charlotte james +rel aunt jennifer charlotte +rel husband christopher penelope +rel daughter victoria christopher +rel nephew colin jennifer +rel brother colin charlotte +rel nephew colin arthur +rel mother victoria charlotte +rel niece charlotte arthur +rel uncle charles colin +rel mother victoria colin +rel daughter victoria penelope +rel niece charlotte margaret +rel husband andrew christine +rel son james andrew +rel aunt margaret charlotte +rel son colin victoria +rel father james charlotte +rel son colin james +rel son james christine +rel husband charles jennifer +rel mother penelope arthur +rel daughter jennifer christine +rel father james colin +rel wife victoria james +rel uncle charles charlotte +rel son arthur penelope +rel father andrew james +rel father christopher arthur +rel father christopher victoria +rel father andrew jennifer +rel daughter charlotte victoria +rel wife christine andrew +rel husband arthur margaret +rel wife jennifer charles +rel sister charlotte colin +rel niece charlotte jennifer +rel aunt jennifer colin +rel aunt margaret colin +rel uncle arthur charlotte +rel son arthur christopher +rel husband james victoria +rel brother arthur victoria +rel brother james jennifer +rel nephew colin charles diff --git a/examples/structureLearning/tmp-train.examples b/examples/structureLearning/tmp-train.examples new file mode 100644 index 00000000..5b2a8ee9 --- /dev/null +++ b/examples/structureLearning/tmp-train.examples @@ -0,0 +1,144 @@ +interp(i_uncle,christine,Y) -interp(i_uncle,christine,james) -interp(i_uncle,christine,jennifer) -interp(i_uncle,christine,andrew) +interp(i_son,charlotte,Y) -interp(i_son,charlotte,james) -interp(i_son,charlotte,charles) -interp(i_son,charlotte,arthur) -interp(i_son,charlotte,jennifer) -interp(i_son,charlotte,margaret) -interp(i_son,charlotte,colin) -interp(i_son,charlotte,victoria) +interp(i_niece,charles,Y) -interp(i_niece,charles,charlotte) -interp(i_niece,charles,jennifer) -interp(i_niece,charles,colin) +interp(i_nephew,margaret,Y) -interp(i_nephew,margaret,charlotte) -interp(i_nephew,margaret,arthur) -interp(i_nephew,margaret,colin) +interp(i_father,jennifer,Y) -interp(i_father,jennifer,charlotte) -interp(i_father,jennifer,christine) -interp(i_father,jennifer,james) -interp(i_father,jennifer,charles) -interp(i_father,jennifer,colin) -interp(i_father,jennifer,andrew) +interp(i_husband,penelope,Y) -interp(i_husband,penelope,arthur) -interp(i_husband,penelope,christopher) -interp(i_husband,penelope,victoria) +interp(i_mother,charles,Y) -interp(i_mother,charles,charlotte) -interp(i_mother,charles,jennifer) -interp(i_mother,charles,colin) +interp(i_husband,christopher,Y) +interp(i_husband,christopher,penelope) -interp(i_husband,christopher,arthur) -interp(i_husband,christopher,victoria) +interp(i_mother,christine,Y) +interp(i_mother,christine,james) +interp(i_mother,christine,jennifer) -interp(i_mother,christine,andrew) +interp(i_husband,charlotte,Y) -interp(i_husband,charlotte,james) -interp(i_husband,charlotte,charles) -interp(i_husband,charlotte,arthur) -interp(i_husband,charlotte,jennifer) -interp(i_husband,charlotte,margaret) -interp(i_husband,charlotte,colin) -interp(i_husband,charlotte,victoria) +interp(i_brother,christine,Y) -interp(i_brother,christine,james) -interp(i_brother,christine,jennifer) -interp(i_brother,christine,andrew) +interp(i_uncle,margaret,Y) -interp(i_uncle,margaret,charlotte) -interp(i_uncle,margaret,arthur) -interp(i_uncle,margaret,colin) +interp(i_niece,charlotte,Y) +interp(i_niece,charlotte,margaret) +interp(i_niece,charlotte,arthur) +interp(i_niece,charlotte,charles) +interp(i_niece,charlotte,jennifer) -interp(i_niece,charlotte,james) -interp(i_niece,charlotte,colin) -interp(i_niece,charlotte,victoria) +interp(i_aunt,colin,Y) -interp(i_aunt,colin,charlotte) -interp(i_aunt,colin,james) -interp(i_aunt,colin,charles) -interp(i_aunt,colin,arthur) -interp(i_aunt,colin,jennifer) -interp(i_aunt,colin,margaret) -interp(i_aunt,colin,victoria) +interp(i_niece,penelope,Y) -interp(i_niece,penelope,arthur) -interp(i_niece,penelope,christopher) -interp(i_niece,penelope,victoria) +interp(i_wife,victoria,Y) +interp(i_wife,victoria,james) -interp(i_wife,victoria,charlotte) -interp(i_wife,victoria,arthur) -interp(i_wife,victoria,penelope) -interp(i_wife,victoria,colin) -interp(i_wife,victoria,christopher) +interp(i_nephew,charlotte,Y) -interp(i_nephew,charlotte,james) -interp(i_nephew,charlotte,charles) -interp(i_nephew,charlotte,arthur) -interp(i_nephew,charlotte,jennifer) -interp(i_nephew,charlotte,margaret) -interp(i_nephew,charlotte,colin) -interp(i_nephew,charlotte,victoria) +interp(i_daughter,christine,Y) -interp(i_daughter,christine,james) -interp(i_daughter,christine,jennifer) -interp(i_daughter,christine,andrew) +interp(i_son,colin,Y) +interp(i_son,colin,james) +interp(i_son,colin,victoria) -interp(i_son,colin,charlotte) -interp(i_son,colin,charles) -interp(i_son,colin,arthur) -interp(i_son,colin,jennifer) -interp(i_son,colin,margaret) +interp(i_brother,margaret,Y) -interp(i_brother,margaret,charlotte) -interp(i_brother,margaret,arthur) -interp(i_brother,margaret,colin) +interp(i_wife,penelope,Y) -interp(i_wife,penelope,arthur) -interp(i_wife,penelope,christopher) -interp(i_wife,penelope,victoria) +interp(i_son,james,Y) +interp(i_son,james,andrew) +interp(i_son,james,christine) -interp(i_son,james,charlotte) -interp(i_son,james,jennifer) -interp(i_son,james,colin) -interp(i_son,james,victoria) +interp(i_sister,andrew,Y) -interp(i_sister,andrew,christine) -interp(i_sister,andrew,james) -interp(i_sister,andrew,jennifer) +interp(i_husband,colin,Y) -interp(i_husband,colin,charlotte) -interp(i_husband,colin,james) -interp(i_husband,colin,charles) -interp(i_husband,colin,arthur) -interp(i_husband,colin,jennifer) -interp(i_husband,colin,margaret) -interp(i_husband,colin,victoria) +interp(i_sister,colin,Y) -interp(i_sister,colin,charlotte) -interp(i_sister,colin,james) -interp(i_sister,colin,charles) -interp(i_sister,colin,arthur) -interp(i_sister,colin,jennifer) -interp(i_sister,colin,margaret) -interp(i_sister,colin,victoria) +interp(i_uncle,arthur,Y) +interp(i_uncle,arthur,charlotte) +interp(i_uncle,arthur,colin) -interp(i_uncle,arthur,penelope) -interp(i_uncle,arthur,margaret) -interp(i_uncle,arthur,christopher) -interp(i_uncle,arthur,victoria) +interp(i_niece,jennifer,Y) -interp(i_niece,jennifer,charlotte) -interp(i_niece,jennifer,christine) -interp(i_niece,jennifer,james) -interp(i_niece,jennifer,charles) -interp(i_niece,jennifer,colin) -interp(i_niece,jennifer,andrew) +interp(i_father,victoria,Y) -interp(i_father,victoria,charlotte) -interp(i_father,victoria,james) -interp(i_father,victoria,arthur) -interp(i_father,victoria,penelope) -interp(i_father,victoria,colin) -interp(i_father,victoria,christopher) +interp(i_uncle,andrew,Y) -interp(i_uncle,andrew,christine) -interp(i_uncle,andrew,james) -interp(i_uncle,andrew,jennifer) +interp(i_daughter,victoria,Y) +interp(i_daughter,victoria,penelope) +interp(i_daughter,victoria,christopher) -interp(i_daughter,victoria,charlotte) -interp(i_daughter,victoria,james) -interp(i_daughter,victoria,arthur) -interp(i_daughter,victoria,colin) +interp(i_brother,charles,Y) -interp(i_brother,charles,charlotte) -interp(i_brother,charles,jennifer) -interp(i_brother,charles,colin) +interp(i_father,christine,Y) -interp(i_father,christine,james) -interp(i_father,christine,jennifer) -interp(i_father,christine,andrew) +interp(i_niece,andrew,Y) -interp(i_niece,andrew,christine) -interp(i_niece,andrew,james) -interp(i_niece,andrew,jennifer) +interp(i_nephew,jennifer,Y) -interp(i_nephew,jennifer,charlotte) -interp(i_nephew,jennifer,christine) -interp(i_nephew,jennifer,james) -interp(i_nephew,jennifer,charles) -interp(i_nephew,jennifer,colin) -interp(i_nephew,jennifer,andrew) +interp(i_aunt,christine,Y) -interp(i_aunt,christine,james) -interp(i_aunt,christine,jennifer) -interp(i_aunt,christine,andrew) +interp(i_husband,andrew,Y) +interp(i_husband,andrew,christine) -interp(i_husband,andrew,james) -interp(i_husband,andrew,jennifer) +interp(i_nephew,james,Y) -interp(i_nephew,james,charlotte) -interp(i_nephew,james,christine) -interp(i_nephew,james,jennifer) -interp(i_nephew,james,colin) -interp(i_nephew,james,andrew) -interp(i_nephew,james,victoria) +interp(i_aunt,arthur,Y) -interp(i_aunt,arthur,charlotte) -interp(i_aunt,arthur,penelope) -interp(i_aunt,arthur,margaret) -interp(i_aunt,arthur,colin) -interp(i_aunt,arthur,christopher) -interp(i_aunt,arthur,victoria) +interp(i_mother,margaret,Y) -interp(i_mother,margaret,charlotte) -interp(i_mother,margaret,arthur) -interp(i_mother,margaret,colin) +interp(i_son,jennifer,Y) -interp(i_son,jennifer,charlotte) -interp(i_son,jennifer,christine) -interp(i_son,jennifer,james) -interp(i_son,jennifer,charles) -interp(i_son,jennifer,colin) -interp(i_son,jennifer,andrew) +interp(i_son,victoria,Y) -interp(i_son,victoria,charlotte) -interp(i_son,victoria,james) -interp(i_son,victoria,arthur) -interp(i_son,victoria,penelope) -interp(i_son,victoria,colin) -interp(i_son,victoria,christopher) +interp(i_sister,margaret,Y) -interp(i_sister,margaret,charlotte) -interp(i_sister,margaret,arthur) -interp(i_sister,margaret,colin) +interp(i_mother,charlotte,Y) -interp(i_mother,charlotte,james) -interp(i_mother,charlotte,charles) -interp(i_mother,charlotte,arthur) -interp(i_mother,charlotte,jennifer) -interp(i_mother,charlotte,margaret) -interp(i_mother,charlotte,colin) -interp(i_mother,charlotte,victoria) +interp(i_brother,charlotte,Y) -interp(i_brother,charlotte,james) -interp(i_brother,charlotte,charles) -interp(i_brother,charlotte,arthur) -interp(i_brother,charlotte,jennifer) -interp(i_brother,charlotte,margaret) -interp(i_brother,charlotte,colin) -interp(i_brother,charlotte,victoria) +interp(i_daughter,margaret,Y) -interp(i_daughter,margaret,charlotte) -interp(i_daughter,margaret,arthur) -interp(i_daughter,margaret,colin) +interp(i_aunt,jennifer,Y) +interp(i_aunt,jennifer,charlotte) +interp(i_aunt,jennifer,colin) -interp(i_aunt,jennifer,christine) -interp(i_aunt,jennifer,james) -interp(i_aunt,jennifer,charles) -interp(i_aunt,jennifer,andrew) +interp(i_aunt,margaret,Y) +interp(i_aunt,margaret,charlotte) +interp(i_aunt,margaret,colin) -interp(i_aunt,margaret,arthur) +interp(i_father,james,Y) +interp(i_father,james,charlotte) +interp(i_father,james,colin) -interp(i_father,james,christine) -interp(i_father,james,jennifer) -interp(i_father,james,andrew) -interp(i_father,james,victoria) +interp(i_sister,charlotte,Y) +interp(i_sister,charlotte,colin) -interp(i_sister,charlotte,james) -interp(i_sister,charlotte,charles) -interp(i_sister,charlotte,arthur) -interp(i_sister,charlotte,jennifer) -interp(i_sister,charlotte,margaret) -interp(i_sister,charlotte,victoria) +interp(i_nephew,christine,Y) -interp(i_nephew,christine,james) -interp(i_nephew,christine,jennifer) -interp(i_nephew,christine,andrew) +interp(i_wife,christopher,Y) -interp(i_wife,christopher,arthur) -interp(i_wife,christopher,penelope) -interp(i_wife,christopher,victoria) +interp(i_father,margaret,Y) -interp(i_father,margaret,charlotte) -interp(i_father,margaret,arthur) -interp(i_father,margaret,colin) +interp(i_niece,margaret,Y) -interp(i_niece,margaret,charlotte) -interp(i_niece,margaret,arthur) -interp(i_niece,margaret,colin) +interp(i_sister,james,Y) -interp(i_sister,james,charlotte) -interp(i_sister,james,christine) -interp(i_sister,james,jennifer) -interp(i_sister,james,colin) -interp(i_sister,james,andrew) -interp(i_sister,james,victoria) +interp(i_nephew,arthur,Y) -interp(i_nephew,arthur,charlotte) -interp(i_nephew,arthur,penelope) -interp(i_nephew,arthur,margaret) -interp(i_nephew,arthur,colin) -interp(i_nephew,arthur,christopher) -interp(i_nephew,arthur,victoria) +interp(i_son,andrew,Y) -interp(i_son,andrew,christine) -interp(i_son,andrew,james) -interp(i_son,andrew,jennifer) +interp(i_mother,penelope,Y) +interp(i_mother,penelope,victoria) -interp(i_mother,penelope,arthur) -interp(i_mother,penelope,christopher) +interp(i_brother,penelope,Y) -interp(i_brother,penelope,arthur) -interp(i_brother,penelope,christopher) -interp(i_brother,penelope,victoria) +interp(i_wife,jennifer,Y) +interp(i_wife,jennifer,charles) -interp(i_wife,jennifer,charlotte) -interp(i_wife,jennifer,christine) -interp(i_wife,jennifer,james) -interp(i_wife,jennifer,colin) -interp(i_wife,jennifer,andrew) +interp(i_uncle,colin,Y) -interp(i_uncle,colin,charlotte) -interp(i_uncle,colin,james) -interp(i_uncle,colin,charles) -interp(i_uncle,colin,arthur) -interp(i_uncle,colin,jennifer) -interp(i_uncle,colin,margaret) -interp(i_uncle,colin,victoria) +interp(i_brother,victoria,Y) -interp(i_brother,victoria,charlotte) -interp(i_brother,victoria,james) -interp(i_brother,victoria,arthur) -interp(i_brother,victoria,penelope) -interp(i_brother,victoria,colin) -interp(i_brother,victoria,christopher) +interp(i_father,andrew,Y) +interp(i_father,andrew,james) +interp(i_father,andrew,jennifer) -interp(i_father,andrew,christine) +interp(i_husband,arthur,Y) +interp(i_husband,arthur,margaret) -interp(i_husband,arthur,charlotte) -interp(i_husband,arthur,penelope) -interp(i_husband,arthur,colin) -interp(i_husband,arthur,christopher) -interp(i_husband,arthur,victoria) +interp(i_aunt,andrew,Y) -interp(i_aunt,andrew,christine) -interp(i_aunt,andrew,james) -interp(i_aunt,andrew,jennifer) +interp(i_daughter,charles,Y) -interp(i_daughter,charles,charlotte) -interp(i_daughter,charles,jennifer) -interp(i_daughter,charles,colin) +interp(i_father,colin,Y) -interp(i_father,colin,charlotte) -interp(i_father,colin,james) -interp(i_father,colin,charles) -interp(i_father,colin,arthur) -interp(i_father,colin,jennifer) -interp(i_father,colin,margaret) -interp(i_father,colin,victoria) +interp(i_mother,victoria,Y) +interp(i_mother,victoria,charlotte) +interp(i_mother,victoria,colin) -interp(i_mother,victoria,james) -interp(i_mother,victoria,arthur) -interp(i_mother,victoria,penelope) -interp(i_mother,victoria,christopher) +interp(i_uncle,james,Y) -interp(i_uncle,james,charlotte) -interp(i_uncle,james,christine) -interp(i_uncle,james,jennifer) -interp(i_uncle,james,colin) -interp(i_uncle,james,andrew) -interp(i_uncle,james,victoria) +interp(i_uncle,charlotte,Y) -interp(i_uncle,charlotte,james) -interp(i_uncle,charlotte,charles) -interp(i_uncle,charlotte,arthur) -interp(i_uncle,charlotte,jennifer) -interp(i_uncle,charlotte,margaret) -interp(i_uncle,charlotte,colin) -interp(i_uncle,charlotte,victoria) +interp(i_son,penelope,Y) -interp(i_son,penelope,arthur) -interp(i_son,penelope,christopher) -interp(i_son,penelope,victoria) +interp(i_husband,jennifer,Y) -interp(i_husband,jennifer,charlotte) -interp(i_husband,jennifer,christine) -interp(i_husband,jennifer,james) -interp(i_husband,jennifer,charles) -interp(i_husband,jennifer,colin) -interp(i_husband,jennifer,andrew) +interp(i_sister,christopher,Y) -interp(i_sister,christopher,arthur) -interp(i_sister,christopher,penelope) -interp(i_sister,christopher,victoria) +interp(i_husband,james,Y) +interp(i_husband,james,victoria) -interp(i_husband,james,charlotte) -interp(i_husband,james,christine) -interp(i_husband,james,jennifer) -interp(i_husband,james,colin) -interp(i_husband,james,andrew) +interp(i_daughter,colin,Y) -interp(i_daughter,colin,charlotte) -interp(i_daughter,colin,james) -interp(i_daughter,colin,charles) -interp(i_daughter,colin,arthur) -interp(i_daughter,colin,jennifer) -interp(i_daughter,colin,margaret) -interp(i_daughter,colin,victoria) +interp(i_wife,christine,Y) +interp(i_wife,christine,andrew) -interp(i_wife,christine,james) -interp(i_wife,christine,jennifer) +interp(i_son,charles,Y) -interp(i_son,charles,charlotte) -interp(i_son,charles,jennifer) -interp(i_son,charles,colin) +interp(i_husband,victoria,Y) -interp(i_husband,victoria,charlotte) -interp(i_husband,victoria,james) -interp(i_husband,victoria,arthur) -interp(i_husband,victoria,penelope) -interp(i_husband,victoria,colin) -interp(i_husband,victoria,christopher) +interp(i_daughter,jennifer,Y) +interp(i_daughter,jennifer,andrew) +interp(i_daughter,jennifer,christine) -interp(i_daughter,jennifer,charlotte) -interp(i_daughter,jennifer,james) -interp(i_daughter,jennifer,charles) -interp(i_daughter,jennifer,colin) +interp(i_son,christine,Y) -interp(i_son,christine,james) -interp(i_son,christine,jennifer) -interp(i_son,christine,andrew) +interp(i_aunt,penelope,Y) -interp(i_aunt,penelope,arthur) -interp(i_aunt,penelope,christopher) -interp(i_aunt,penelope,victoria) +interp(i_father,arthur,Y) -interp(i_father,arthur,charlotte) -interp(i_father,arthur,penelope) -interp(i_father,arthur,margaret) -interp(i_father,arthur,colin) -interp(i_father,arthur,christopher) -interp(i_father,arthur,victoria) +interp(i_sister,jennifer,Y) -interp(i_sister,jennifer,charlotte) -interp(i_sister,jennifer,christine) -interp(i_sister,jennifer,james) -interp(i_sister,jennifer,charles) -interp(i_sister,jennifer,colin) -interp(i_sister,jennifer,andrew) +interp(i_brother,james,Y) +interp(i_brother,james,jennifer) -interp(i_brother,james,charlotte) -interp(i_brother,james,christine) -interp(i_brother,james,colin) -interp(i_brother,james,andrew) -interp(i_brother,james,victoria) +interp(i_uncle,christopher,Y) -interp(i_uncle,christopher,arthur) -interp(i_uncle,christopher,penelope) -interp(i_uncle,christopher,victoria) +interp(i_sister,penelope,Y) -interp(i_sister,penelope,arthur) -interp(i_sister,penelope,christopher) -interp(i_sister,penelope,victoria) +interp(i_husband,margaret,Y) -interp(i_husband,margaret,charlotte) -interp(i_husband,margaret,arthur) -interp(i_husband,margaret,colin) +interp(i_nephew,victoria,Y) -interp(i_nephew,victoria,charlotte) -interp(i_nephew,victoria,james) -interp(i_nephew,victoria,arthur) -interp(i_nephew,victoria,penelope) -interp(i_nephew,victoria,colin) -interp(i_nephew,victoria,christopher) +interp(i_niece,james,Y) -interp(i_niece,james,charlotte) -interp(i_niece,james,christine) -interp(i_niece,james,jennifer) -interp(i_niece,james,colin) -interp(i_niece,james,andrew) -interp(i_niece,james,victoria) +interp(i_daughter,penelope,Y) -interp(i_daughter,penelope,arthur) -interp(i_daughter,penelope,christopher) -interp(i_daughter,penelope,victoria) +interp(i_niece,christopher,Y) -interp(i_niece,christopher,arthur) -interp(i_niece,christopher,penelope) -interp(i_niece,christopher,victoria) +interp(i_niece,christine,Y) -interp(i_niece,christine,james) -interp(i_niece,christine,jennifer) -interp(i_niece,christine,andrew) +interp(i_wife,andrew,Y) -interp(i_wife,andrew,christine) -interp(i_wife,andrew,james) -interp(i_wife,andrew,jennifer) +interp(i_niece,colin,Y) -interp(i_niece,colin,charlotte) -interp(i_niece,colin,james) -interp(i_niece,colin,charles) -interp(i_niece,colin,arthur) -interp(i_niece,colin,jennifer) -interp(i_niece,colin,margaret) -interp(i_niece,colin,victoria) +interp(i_daughter,charlotte,Y) +interp(i_daughter,charlotte,james) +interp(i_daughter,charlotte,victoria) -interp(i_daughter,charlotte,charles) -interp(i_daughter,charlotte,arthur) -interp(i_daughter,charlotte,jennifer) -interp(i_daughter,charlotte,margaret) -interp(i_daughter,charlotte,colin) +interp(i_nephew,penelope,Y) -interp(i_nephew,penelope,arthur) -interp(i_nephew,penelope,christopher) -interp(i_nephew,penelope,victoria) +interp(i_brother,jennifer,Y) -interp(i_brother,jennifer,charlotte) -interp(i_brother,jennifer,christine) -interp(i_brother,jennifer,james) -interp(i_brother,jennifer,charles) -interp(i_brother,jennifer,colin) -interp(i_brother,jennifer,andrew) +interp(i_husband,christine,Y) -interp(i_husband,christine,james) -interp(i_husband,christine,jennifer) -interp(i_husband,christine,andrew) +interp(i_brother,christopher,Y) -interp(i_brother,christopher,arthur) -interp(i_brother,christopher,penelope) -interp(i_brother,christopher,victoria) +interp(i_daughter,andrew,Y) -interp(i_daughter,andrew,christine) -interp(i_daughter,andrew,james) -interp(i_daughter,andrew,jennifer) +interp(i_uncle,penelope,Y) -interp(i_uncle,penelope,arthur) -interp(i_uncle,penelope,christopher) -interp(i_uncle,penelope,victoria) +interp(i_aunt,christopher,Y) -interp(i_aunt,christopher,arthur) -interp(i_aunt,christopher,penelope) -interp(i_aunt,christopher,victoria) +interp(i_mother,colin,Y) -interp(i_mother,colin,charlotte) -interp(i_mother,colin,james) -interp(i_mother,colin,charles) -interp(i_mother,colin,arthur) -interp(i_mother,colin,jennifer) -interp(i_mother,colin,margaret) -interp(i_mother,colin,victoria) +interp(i_wife,charles,Y) -interp(i_wife,charles,charlotte) -interp(i_wife,charles,jennifer) -interp(i_wife,charles,colin) +interp(i_wife,margaret,Y) +interp(i_wife,margaret,arthur) -interp(i_wife,margaret,charlotte) -interp(i_wife,margaret,colin) +interp(i_daughter,arthur,Y) -interp(i_daughter,arthur,charlotte) -interp(i_daughter,arthur,penelope) -interp(i_daughter,arthur,margaret) -interp(i_daughter,arthur,colin) -interp(i_daughter,arthur,christopher) -interp(i_daughter,arthur,victoria) +interp(i_mother,arthur,Y) -interp(i_mother,arthur,charlotte) -interp(i_mother,arthur,penelope) -interp(i_mother,arthur,margaret) -interp(i_mother,arthur,colin) -interp(i_mother,arthur,christopher) -interp(i_mother,arthur,victoria) +interp(i_nephew,andrew,Y) -interp(i_nephew,andrew,christine) -interp(i_nephew,andrew,james) -interp(i_nephew,andrew,jennifer) +interp(i_aunt,victoria,Y) -interp(i_aunt,victoria,charlotte) -interp(i_aunt,victoria,james) -interp(i_aunt,victoria,arthur) -interp(i_aunt,victoria,penelope) -interp(i_aunt,victoria,colin) -interp(i_aunt,victoria,christopher) +interp(i_sister,victoria,Y) +interp(i_sister,victoria,arthur) -interp(i_sister,victoria,charlotte) -interp(i_sister,victoria,james) -interp(i_sister,victoria,penelope) -interp(i_sister,victoria,colin) -interp(i_sister,victoria,christopher) +interp(i_sister,christine,Y) -interp(i_sister,christine,james) -interp(i_sister,christine,jennifer) -interp(i_sister,christine,andrew) +interp(i_uncle,charles,Y) +interp(i_uncle,charles,charlotte) +interp(i_uncle,charles,colin) -interp(i_uncle,charles,jennifer) +interp(i_uncle,jennifer,Y) -interp(i_uncle,jennifer,charlotte) -interp(i_uncle,jennifer,christine) -interp(i_uncle,jennifer,james) -interp(i_uncle,jennifer,charles) -interp(i_uncle,jennifer,colin) -interp(i_uncle,jennifer,andrew) +interp(i_brother,arthur,Y) +interp(i_brother,arthur,victoria) -interp(i_brother,arthur,charlotte) -interp(i_brother,arthur,penelope) -interp(i_brother,arthur,margaret) -interp(i_brother,arthur,colin) -interp(i_brother,arthur,christopher) +interp(i_niece,arthur,Y) -interp(i_niece,arthur,charlotte) -interp(i_niece,arthur,penelope) -interp(i_niece,arthur,margaret) -interp(i_niece,arthur,colin) -interp(i_niece,arthur,christopher) -interp(i_niece,arthur,victoria) +interp(i_mother,andrew,Y) -interp(i_mother,andrew,christine) -interp(i_mother,andrew,james) -interp(i_mother,andrew,jennifer) +interp(i_son,margaret,Y) -interp(i_son,margaret,charlotte) -interp(i_son,margaret,arthur) -interp(i_son,margaret,colin) +interp(i_nephew,colin,Y) +interp(i_nephew,colin,margaret) +interp(i_nephew,colin,arthur) +interp(i_nephew,colin,charles) +interp(i_nephew,colin,jennifer) -interp(i_nephew,colin,charlotte) -interp(i_nephew,colin,james) -interp(i_nephew,colin,victoria) +interp(i_brother,andrew,Y) -interp(i_brother,andrew,christine) -interp(i_brother,andrew,james) -interp(i_brother,andrew,jennifer) +interp(i_son,christopher,Y) -interp(i_son,christopher,arthur) -interp(i_son,christopher,penelope) -interp(i_son,christopher,victoria) +interp(i_daughter,james,Y) -interp(i_daughter,james,charlotte) -interp(i_daughter,james,christine) -interp(i_daughter,james,jennifer) -interp(i_daughter,james,colin) -interp(i_daughter,james,andrew) -interp(i_daughter,james,victoria) +interp(i_wife,colin,Y) -interp(i_wife,colin,charlotte) -interp(i_wife,colin,james) -interp(i_wife,colin,charles) -interp(i_wife,colin,arthur) -interp(i_wife,colin,jennifer) -interp(i_wife,colin,margaret) -interp(i_wife,colin,victoria) +interp(i_sister,arthur,Y) -interp(i_sister,arthur,charlotte) -interp(i_sister,arthur,penelope) -interp(i_sister,arthur,margaret) -interp(i_sister,arthur,colin) -interp(i_sister,arthur,christopher) -interp(i_sister,arthur,victoria) +interp(i_mother,jennifer,Y) -interp(i_mother,jennifer,charlotte) -interp(i_mother,jennifer,christine) -interp(i_mother,jennifer,james) -interp(i_mother,jennifer,charles) -interp(i_mother,jennifer,colin) -interp(i_mother,jennifer,andrew) +interp(i_wife,james,Y) -interp(i_wife,james,charlotte) -interp(i_wife,james,christine) -interp(i_wife,james,jennifer) -interp(i_wife,james,colin) -interp(i_wife,james,andrew) -interp(i_wife,james,victoria) +interp(i_father,penelope,Y) -interp(i_father,penelope,arthur) -interp(i_father,penelope,christopher) -interp(i_father,penelope,victoria) +interp(i_aunt,charlotte,Y) -interp(i_aunt,charlotte,james) -interp(i_aunt,charlotte,charles) -interp(i_aunt,charlotte,arthur) -interp(i_aunt,charlotte,jennifer) -interp(i_aunt,charlotte,margaret) -interp(i_aunt,charlotte,colin) -interp(i_aunt,charlotte,victoria) +interp(i_wife,arthur,Y) -interp(i_wife,arthur,charlotte) -interp(i_wife,arthur,penelope) -interp(i_wife,arthur,margaret) -interp(i_wife,arthur,colin) -interp(i_wife,arthur,christopher) -interp(i_wife,arthur,victoria) +interp(i_mother,christopher,Y) -interp(i_mother,christopher,arthur) -interp(i_mother,christopher,penelope) -interp(i_mother,christopher,victoria) +interp(i_uncle,victoria,Y) -interp(i_uncle,victoria,charlotte) -interp(i_uncle,victoria,james) -interp(i_uncle,victoria,arthur) -interp(i_uncle,victoria,penelope) -interp(i_uncle,victoria,colin) -interp(i_uncle,victoria,christopher) +interp(i_son,arthur,Y) +interp(i_son,arthur,penelope) +interp(i_son,arthur,christopher) -interp(i_son,arthur,charlotte) -interp(i_son,arthur,margaret) -interp(i_son,arthur,colin) -interp(i_son,arthur,victoria) +interp(i_nephew,christopher,Y) -interp(i_nephew,christopher,arthur) -interp(i_nephew,christopher,penelope) -interp(i_nephew,christopher,victoria) +interp(i_father,charlotte,Y) -interp(i_father,charlotte,james) -interp(i_father,charlotte,charles) -interp(i_father,charlotte,arthur) -interp(i_father,charlotte,jennifer) -interp(i_father,charlotte,margaret) -interp(i_father,charlotte,colin) -interp(i_father,charlotte,victoria) +interp(i_husband,charles,Y) +interp(i_husband,charles,jennifer) -interp(i_husband,charles,charlotte) -interp(i_husband,charles,colin) +interp(i_daughter,christopher,Y) -interp(i_daughter,christopher,arthur) -interp(i_daughter,christopher,penelope) -interp(i_daughter,christopher,victoria) +interp(i_aunt,james,Y) -interp(i_aunt,james,charlotte) -interp(i_aunt,james,christine) -interp(i_aunt,james,jennifer) -interp(i_aunt,james,colin) -interp(i_aunt,james,andrew) -interp(i_aunt,james,victoria) +interp(i_wife,charlotte,Y) -interp(i_wife,charlotte,james) -interp(i_wife,charlotte,charles) -interp(i_wife,charlotte,arthur) -interp(i_wife,charlotte,jennifer) -interp(i_wife,charlotte,margaret) -interp(i_wife,charlotte,colin) -interp(i_wife,charlotte,victoria) +interp(i_nephew,charles,Y) -interp(i_nephew,charles,charlotte) -interp(i_nephew,charles,jennifer) -interp(i_nephew,charles,colin) +interp(i_father,christopher,Y) +interp(i_father,christopher,arthur) +interp(i_father,christopher,victoria) -interp(i_father,christopher,penelope) +interp(i_mother,james,Y) -interp(i_mother,james,charlotte) -interp(i_mother,james,christine) -interp(i_mother,james,jennifer) -interp(i_mother,james,colin) -interp(i_mother,james,andrew) -interp(i_mother,james,victoria) +interp(i_aunt,charles,Y) -interp(i_aunt,charles,charlotte) -interp(i_aunt,charles,jennifer) -interp(i_aunt,charles,colin) +interp(i_father,charles,Y) -interp(i_father,charles,charlotte) -interp(i_father,charles,jennifer) -interp(i_father,charles,colin) +interp(i_niece,victoria,Y) -interp(i_niece,victoria,charlotte) -interp(i_niece,victoria,james) -interp(i_niece,victoria,arthur) -interp(i_niece,victoria,penelope) -interp(i_niece,victoria,colin) -interp(i_niece,victoria,christopher) +interp(i_brother,colin,Y) +interp(i_brother,colin,charlotte) -interp(i_brother,colin,james) -interp(i_brother,colin,charles) -interp(i_brother,colin,arthur) -interp(i_brother,colin,jennifer) -interp(i_brother,colin,margaret) -interp(i_brother,colin,victoria) +interp(i_sister,charles,Y) -interp(i_sister,charles,charlotte) -interp(i_sister,charles,jennifer) -interp(i_sister,charles,colin) diff --git a/examples/structureLearning/tmp.cfacts b/examples/structureLearning/tmp.cfacts new file mode 100644 index 00000000..ea94bb25 --- /dev/null +++ b/examples/structureLearning/tmp.cfacts @@ -0,0 +1,103 @@ +rel aunt angela alfonso +rel aunt gina alfonso +rel aunt gina sophia +rel aunt jennifer charlotte +rel aunt jennifer colin +rel aunt margaret charlotte +rel aunt margaret colin +rel brother alfonso sophia +rel brother arthur victoria +rel brother colin charlotte +rel brother emilio lucia +rel brother james jennifer +rel brother marco angela +rel daughter angela pierro +rel daughter charlotte james +rel daughter charlotte victoria +rel daughter jennifer andrew +rel daughter jennifer christine +rel daughter lucia maria +rel daughter lucia roberto +rel daughter sophia lucia +rel daughter sophia marco +rel daughter victoria christopher +rel daughter victoria penelope +rel father andrew james +rel father andrew jennifer +rel father christopher arthur +rel father christopher victoria +rel father james charlotte +rel father james colin +rel father marco alfonso +rel father marco sophia +rel father pierro angela +rel father pierro marco +rel father roberto emilio +rel father roberto lucia +rel husband andrew christine +rel husband arthur margaret +rel husband charles jennifer +rel husband christopher penelope +rel husband emilio gina +rel husband james victoria +rel husband marco lucia +rel husband pierro francesca +rel husband roberto maria +rel husband tomaso angela +rel mother christine jennifer +rel mother francesca angela +rel mother francesca marco +rel mother lucia sophia +rel mother maria emilio +rel mother maria lucia +rel mother penelope arthur +rel mother penelope victoria +rel mother victoria charlotte +rel mother victoria colin +rel nephew alfonso angela +rel nephew alfonso gina +rel nephew alfonso tomaso +rel nephew colin arthur +rel nephew colin charles +rel nephew colin jennifer +rel nephew colin margaret +rel niece charlotte arthur +rel niece charlotte charles +rel niece charlotte jennifer +rel niece charlotte margaret +rel niece sophia angela +rel niece sophia emilio +rel niece sophia gina +rel niece sophia tomaso +rel sister angela marco +rel sister charlotte colin +rel sister lucia emilio +rel sister sophia alfonso +rel sister victoria arthur +rel son alfonso lucia +rel son alfonso marco +rel son arthur christopher +rel son arthur penelope +rel son colin james +rel son colin victoria +rel son emilio roberto +rel son james andrew +rel son james christine +rel son marco francesca +rel son marco pierro +rel uncle arthur charlotte +rel uncle charles charlotte +rel uncle charles colin +rel uncle emilio alfonso +rel uncle emilio sophia +rel uncle tomaso alfonso +rel uncle tomaso sophia +rel wife angela tomaso +rel wife christine andrew +rel wife francesca pierro +rel wife gina emilio +rel wife jennifer charles +rel wife lucia marco +rel wife maria roberto +rel wife penelope christopher +rel wife victoria james diff --git a/examples/structureLearning/uml_1.cfacts b/examples/structureLearning/uml_1.cfacts new file mode 100644 index 00000000..a8daf9c2 --- /dev/null +++ b/examples/structureLearning/uml_1.cfacts @@ -0,0 +1,5507 @@ +rel adjacent_to body_location_or_region body_part_organ_or_organ_component +rel adjacent_to body_location_or_region body_space_or_junction +rel adjacent_to body_part_organ_or_organ_component body_space_or_junction +rel adjacent_to body_part_organ_or_organ_component cell +rel adjacent_to body_part_organ_or_organ_component tissue +rel adjacent_to cell_component body_space_or_junction +rel adjacent_to tissue body_space_or_junction +rel analyzes diagnostic_procedure amino_acid_peptide_or_protein +rel analyzes diagnostic_procedure antibiotic +rel analyzes diagnostic_procedure biologically_active_substance +rel analyzes diagnostic_procedure biomedical_or_dental_material +rel analyzes diagnostic_procedure body_substance +rel analyzes diagnostic_procedure carbohydrate +rel analyzes diagnostic_procedure chemical +rel analyzes diagnostic_procedure chemical_viewed_functionally +rel analyzes diagnostic_procedure chemical_viewed_structurally +rel analyzes diagnostic_procedure eicosanoid +rel analyzes diagnostic_procedure element_ion_or_isotope +rel analyzes diagnostic_procedure enzyme +rel analyzes diagnostic_procedure hazardous_or_poisonous_substance +rel analyzes diagnostic_procedure hormone +rel analyzes diagnostic_procedure immunologic_factor +rel analyzes diagnostic_procedure indicator_reagent_or_diagnostic_aid +rel analyzes diagnostic_procedure inorganic_chemical +rel analyzes diagnostic_procedure lipid +rel analyzes diagnostic_procedure neuroreactive_substance_or_biogenic_amine +rel analyzes diagnostic_procedure nucleic_acid_nucleoside_or_nucleotide +rel analyzes diagnostic_procedure organic_chemical +rel analyzes diagnostic_procedure organophosphorus_compound +rel analyzes diagnostic_procedure pharmacologic_substance +rel analyzes diagnostic_procedure receptor +rel analyzes diagnostic_procedure steroid +rel analyzes diagnostic_procedure vitamin +rel analyzes laboratory_procedure amino_acid_peptide_or_protein +rel analyzes laboratory_procedure antibiotic +rel analyzes laboratory_procedure biologically_active_substance +rel analyzes laboratory_procedure biomedical_or_dental_material +rel analyzes laboratory_procedure body_substance +rel analyzes laboratory_procedure carbohydrate +rel analyzes laboratory_procedure chemical +rel analyzes laboratory_procedure chemical_viewed_functionally +rel analyzes laboratory_procedure chemical_viewed_structurally +rel analyzes laboratory_procedure eicosanoid +rel analyzes laboratory_procedure element_ion_or_isotope +rel analyzes laboratory_procedure enzyme +rel analyzes laboratory_procedure hazardous_or_poisonous_substance +rel analyzes laboratory_procedure hormone +rel analyzes laboratory_procedure immunologic_factor +rel analyzes laboratory_procedure indicator_reagent_or_diagnostic_aid +rel analyzes laboratory_procedure inorganic_chemical +rel analyzes laboratory_procedure lipid +rel analyzes laboratory_procedure neuroreactive_substance_or_biogenic_amine +rel analyzes laboratory_procedure nucleic_acid_nucleoside_or_nucleotide +rel analyzes laboratory_procedure organic_chemical +rel analyzes laboratory_procedure organophosphorus_compound +rel analyzes laboratory_procedure pharmacologic_substance +rel analyzes laboratory_procedure receptor +rel analyzes laboratory_procedure steroid +rel analyzes laboratory_procedure vitamin +rel assesses_effect_of diagnostic_procedure amino_acid_peptide_or_protein +rel assesses_effect_of diagnostic_procedure antibiotic +rel assesses_effect_of diagnostic_procedure biologically_active_substance +rel assesses_effect_of diagnostic_procedure biomedical_or_dental_material +rel assesses_effect_of diagnostic_procedure carbohydrate +rel assesses_effect_of diagnostic_procedure chemical +rel assesses_effect_of diagnostic_procedure chemical_viewed_functionally +rel assesses_effect_of diagnostic_procedure chemical_viewed_structurally +rel assesses_effect_of diagnostic_procedure eicosanoid +rel assesses_effect_of diagnostic_procedure element_ion_or_isotope +rel assesses_effect_of diagnostic_procedure enzyme +rel assesses_effect_of diagnostic_procedure hazardous_or_poisonous_substance +rel assesses_effect_of diagnostic_procedure hormone +rel assesses_effect_of diagnostic_procedure immunologic_factor +rel assesses_effect_of diagnostic_procedure indicator_reagent_or_diagnostic_aid +rel assesses_effect_of diagnostic_procedure inorganic_chemical +rel assesses_effect_of diagnostic_procedure lipid +rel assesses_effect_of diagnostic_procedure neuroreactive_substance_or_biogenic_amine +rel assesses_effect_of diagnostic_procedure nucleic_acid_nucleoside_or_nucleotide +rel assesses_effect_of diagnostic_procedure organic_chemical +rel assesses_effect_of diagnostic_procedure organophosphorus_compound +rel assesses_effect_of diagnostic_procedure pharmacologic_substance +rel assesses_effect_of diagnostic_procedure receptor +rel assesses_effect_of diagnostic_procedure steroid +rel assesses_effect_of diagnostic_procedure vitamin +rel assesses_effect_of laboratory_procedure amino_acid_peptide_or_protein +rel assesses_effect_of laboratory_procedure antibiotic +rel assesses_effect_of laboratory_procedure biologically_active_substance +rel assesses_effect_of laboratory_procedure biologic_function +rel assesses_effect_of laboratory_procedure biomedical_or_dental_material +rel assesses_effect_of laboratory_procedure carbohydrate +rel assesses_effect_of laboratory_procedure cell_function +rel assesses_effect_of laboratory_procedure cell_or_molecular_dysfunction +rel assesses_effect_of laboratory_procedure chemical +rel assesses_effect_of laboratory_procedure chemical_viewed_functionally +rel assesses_effect_of laboratory_procedure chemical_viewed_structurally +rel assesses_effect_of laboratory_procedure disease_or_syndrome +rel assesses_effect_of laboratory_procedure eicosanoid +rel assesses_effect_of laboratory_procedure element_ion_or_isotope +rel assesses_effect_of laboratory_procedure enzyme +rel assesses_effect_of laboratory_procedure experimental_model_of_disease +rel assesses_effect_of laboratory_procedure genetic_function +rel assesses_effect_of laboratory_procedure hazardous_or_poisonous_substance +rel assesses_effect_of laboratory_procedure hormone +rel assesses_effect_of laboratory_procedure immunologic_factor +rel assesses_effect_of laboratory_procedure indicator_reagent_or_diagnostic_aid +rel assesses_effect_of laboratory_procedure inorganic_chemical +rel assesses_effect_of laboratory_procedure lipid +rel assesses_effect_of laboratory_procedure mental_or_behavioral_dysfunction +rel assesses_effect_of laboratory_procedure mental_process +rel assesses_effect_of laboratory_procedure molecular_function +rel assesses_effect_of laboratory_procedure natural_phenomenon_or_process +rel assesses_effect_of laboratory_procedure neoplastic_process +rel assesses_effect_of laboratory_procedure neuroreactive_substance_or_biogenic_amine +rel assesses_effect_of laboratory_procedure nucleic_acid_nucleoside_or_nucleotide +rel assesses_effect_of laboratory_procedure organic_chemical +rel assesses_effect_of laboratory_procedure organism_function +rel assesses_effect_of laboratory_procedure organophosphorus_compound +rel assesses_effect_of laboratory_procedure organ_or_tissue_function +rel assesses_effect_of laboratory_procedure pathologic_function +rel assesses_effect_of laboratory_procedure pharmacologic_substance +rel assesses_effect_of laboratory_procedure physiologic_function +rel assesses_effect_of laboratory_procedure receptor +rel assesses_effect_of laboratory_procedure steroid +rel assesses_effect_of laboratory_procedure vitamin +rel associated_with acquired_abnormality clinical_attribute +rel associated_with acquired_abnormality organism_attribute +rel associated_with anatomical_abnormality clinical_attribute +rel associated_with anatomical_abnormality organism_attribute +rel associated_with behavior age_group +rel associated_with behavior biomedical_occupation_or_discipline +rel associated_with behavior clinical_attribute +rel associated_with behavior family_group +rel associated_with behavior geographic_area +rel associated_with behavior group +rel associated_with behavior group_attribute +rel associated_with behavior occupation_or_discipline +rel associated_with behavior organism_attribute +rel associated_with behavior patient_or_disabled_group +rel associated_with behavior population_group +rel associated_with behavior professional_or_occupational_group +rel associated_with biologically_active_substance virus +rel associated_with cell_or_molecular_dysfunction clinical_attribute +rel associated_with cell_or_molecular_dysfunction experimental_model_of_disease +rel associated_with cell_or_molecular_dysfunction organism_attribute +rel associated_with cell_or_molecular_dysfunction pathologic_function +rel associated_with clinical_attribute organism_attribute +rel associated_with congenital_abnormality clinical_attribute +rel associated_with congenital_abnormality organism_attribute +rel associated_with daily_or_recreational_activity acquired_abnormality +rel associated_with daily_or_recreational_activity anatomical_abnormality +rel associated_with daily_or_recreational_activity cell_or_molecular_dysfunction +rel associated_with daily_or_recreational_activity congenital_abnormality +rel associated_with daily_or_recreational_activity disease_or_syndrome +rel associated_with daily_or_recreational_activity experimental_model_of_disease +rel associated_with daily_or_recreational_activity injury_or_poisoning +rel associated_with daily_or_recreational_activity mental_or_behavioral_dysfunction +rel associated_with daily_or_recreational_activity neoplastic_process +rel associated_with daily_or_recreational_activity pathologic_function +rel associated_with diagnostic_procedure acquired_abnormality +rel associated_with diagnostic_procedure anatomical_abnormality +rel associated_with diagnostic_procedure cell_or_molecular_dysfunction +rel associated_with diagnostic_procedure congenital_abnormality +rel associated_with diagnostic_procedure disease_or_syndrome +rel associated_with diagnostic_procedure experimental_model_of_disease +rel associated_with diagnostic_procedure injury_or_poisoning +rel associated_with diagnostic_procedure mental_or_behavioral_dysfunction +rel associated_with diagnostic_procedure neoplastic_process +rel associated_with diagnostic_procedure pathologic_function +rel associated_with disease_or_syndrome cell_or_molecular_dysfunction +rel associated_with disease_or_syndrome clinical_attribute +rel associated_with disease_or_syndrome experimental_model_of_disease +rel associated_with disease_or_syndrome mental_or_behavioral_dysfunction +rel associated_with disease_or_syndrome neoplastic_process +rel associated_with disease_or_syndrome organism_attribute +rel associated_with disease_or_syndrome pathologic_function +rel associated_with educational_activity acquired_abnormality +rel associated_with educational_activity anatomical_abnormality +rel associated_with educational_activity cell_or_molecular_dysfunction +rel associated_with educational_activity congenital_abnormality +rel associated_with educational_activity disease_or_syndrome +rel associated_with educational_activity experimental_model_of_disease +rel associated_with educational_activity injury_or_poisoning +rel associated_with educational_activity mental_or_behavioral_dysfunction +rel associated_with educational_activity neoplastic_process +rel associated_with educational_activity pathologic_function +rel associated_with enzyme virus +rel associated_with experimental_model_of_disease clinical_attribute +rel associated_with experimental_model_of_disease organism_attribute +rel associated_with experimental_model_of_disease pathologic_function +rel associated_with finding acquired_abnormality +rel associated_with finding anatomical_abnormality +rel associated_with finding cell_or_molecular_dysfunction +rel associated_with finding congenital_abnormality +rel associated_with finding disease_or_syndrome +rel associated_with finding experimental_model_of_disease +rel associated_with finding injury_or_poisoning +rel associated_with finding mental_or_behavioral_dysfunction +rel associated_with finding neoplastic_process +rel associated_with finding pathologic_function +rel associated_with geographic_area acquired_abnormality +rel associated_with geographic_area anatomical_abnormality +rel associated_with geographic_area cell_or_molecular_dysfunction +rel associated_with geographic_area congenital_abnormality +rel associated_with geographic_area disease_or_syndrome +rel associated_with geographic_area experimental_model_of_disease +rel associated_with geographic_area injury_or_poisoning +rel associated_with geographic_area mental_or_behavioral_dysfunction +rel associated_with geographic_area neoplastic_process +rel associated_with geographic_area pathologic_function +rel associated_with governmental_or_regulatory_activity acquired_abnormality +rel associated_with governmental_or_regulatory_activity anatomical_abnormality +rel associated_with governmental_or_regulatory_activity cell_or_molecular_dysfunction +rel associated_with governmental_or_regulatory_activity congenital_abnormality +rel associated_with governmental_or_regulatory_activity disease_or_syndrome +rel associated_with governmental_or_regulatory_activity experimental_model_of_disease +rel associated_with governmental_or_regulatory_activity injury_or_poisoning +rel associated_with governmental_or_regulatory_activity mental_or_behavioral_dysfunction +rel associated_with governmental_or_regulatory_activity neoplastic_process +rel associated_with governmental_or_regulatory_activity pathologic_function +rel associated_with health_care_activity acquired_abnormality +rel associated_with health_care_activity anatomical_abnormality +rel associated_with health_care_activity cell_or_molecular_dysfunction +rel associated_with health_care_activity congenital_abnormality +rel associated_with health_care_activity disease_or_syndrome +rel associated_with health_care_activity experimental_model_of_disease +rel associated_with health_care_activity injury_or_poisoning +rel associated_with health_care_activity mental_or_behavioral_dysfunction +rel associated_with health_care_activity neoplastic_process +rel associated_with health_care_activity pathologic_function +rel associated_with hormone virus +rel associated_with immunologic_factor virus +rel associated_with individual_behavior acquired_abnormality +rel associated_with individual_behavior age_group +rel associated_with individual_behavior anatomical_abnormality +rel associated_with individual_behavior biomedical_occupation_or_discipline +rel associated_with individual_behavior cell_or_molecular_dysfunction +rel associated_with individual_behavior clinical_attribute +rel associated_with individual_behavior congenital_abnormality +rel associated_with individual_behavior disease_or_syndrome +rel associated_with individual_behavior experimental_model_of_disease +rel associated_with individual_behavior family_group +rel associated_with individual_behavior geographic_area +rel associated_with individual_behavior group +rel associated_with individual_behavior group_attribute +rel associated_with individual_behavior injury_or_poisoning +rel associated_with individual_behavior mental_or_behavioral_dysfunction +rel associated_with individual_behavior neoplastic_process +rel associated_with individual_behavior occupation_or_discipline +rel associated_with individual_behavior organism_attribute +rel associated_with individual_behavior pathologic_function +rel associated_with individual_behavior patient_or_disabled_group +rel associated_with individual_behavior population_group +rel associated_with individual_behavior professional_or_occupational_group +rel associated_with injury_or_poisoning clinical_attribute +rel associated_with injury_or_poisoning organism_attribute +rel associated_with laboratory_or_test_result acquired_abnormality +rel associated_with laboratory_or_test_result anatomical_abnormality +rel associated_with laboratory_or_test_result cell_or_molecular_dysfunction +rel associated_with laboratory_or_test_result congenital_abnormality +rel associated_with laboratory_or_test_result disease_or_syndrome +rel associated_with laboratory_or_test_result experimental_model_of_disease +rel associated_with laboratory_or_test_result injury_or_poisoning +rel associated_with laboratory_or_test_result mental_or_behavioral_dysfunction +rel associated_with laboratory_or_test_result neoplastic_process +rel associated_with laboratory_or_test_result pathologic_function +rel associated_with laboratory_procedure acquired_abnormality +rel associated_with laboratory_procedure anatomical_abnormality +rel associated_with laboratory_procedure cell_or_molecular_dysfunction +rel associated_with laboratory_procedure congenital_abnormality +rel associated_with laboratory_procedure disease_or_syndrome +rel associated_with laboratory_procedure experimental_model_of_disease +rel associated_with laboratory_procedure injury_or_poisoning +rel associated_with laboratory_procedure mental_or_behavioral_dysfunction +rel associated_with laboratory_procedure neoplastic_process +rel associated_with laboratory_procedure pathologic_function +rel associated_with mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel associated_with mental_or_behavioral_dysfunction clinical_attribute +rel associated_with mental_or_behavioral_dysfunction experimental_model_of_disease +rel associated_with mental_or_behavioral_dysfunction neoplastic_process +rel associated_with mental_or_behavioral_dysfunction organism_attribute +rel associated_with mental_or_behavioral_dysfunction pathologic_function +rel associated_with molecular_biology_research_technique acquired_abnormality +rel associated_with molecular_biology_research_technique anatomical_abnormality +rel associated_with molecular_biology_research_technique cell_or_molecular_dysfunction +rel associated_with molecular_biology_research_technique congenital_abnormality +rel associated_with molecular_biology_research_technique disease_or_syndrome +rel associated_with molecular_biology_research_technique experimental_model_of_disease +rel associated_with molecular_biology_research_technique injury_or_poisoning +rel associated_with molecular_biology_research_technique mental_or_behavioral_dysfunction +rel associated_with molecular_biology_research_technique neoplastic_process +rel associated_with molecular_biology_research_technique pathologic_function +rel associated_with neoplastic_process cell_or_molecular_dysfunction +rel associated_with neoplastic_process clinical_attribute +rel associated_with neoplastic_process experimental_model_of_disease +rel associated_with neoplastic_process organism_attribute +rel associated_with neoplastic_process pathologic_function +rel associated_with neuroreactive_substance_or_biogenic_amine virus +rel associated_with occupational_activity acquired_abnormality +rel associated_with occupational_activity anatomical_abnormality +rel associated_with occupational_activity cell_or_molecular_dysfunction +rel associated_with occupational_activity congenital_abnormality +rel associated_with occupational_activity disease_or_syndrome +rel associated_with occupational_activity experimental_model_of_disease +rel associated_with occupational_activity injury_or_poisoning +rel associated_with occupational_activity mental_or_behavioral_dysfunction +rel associated_with occupational_activity neoplastic_process +rel associated_with occupational_activity pathologic_function +rel associated_with pathologic_function clinical_attribute +rel associated_with pathologic_function organism_attribute +rel associated_with population_group acquired_abnormality +rel associated_with population_group anatomical_abnormality +rel associated_with population_group cell_or_molecular_dysfunction +rel associated_with population_group congenital_abnormality +rel associated_with population_group disease_or_syndrome +rel associated_with population_group experimental_model_of_disease +rel associated_with population_group injury_or_poisoning +rel associated_with population_group mental_or_behavioral_dysfunction +rel associated_with population_group neoplastic_process +rel associated_with population_group pathologic_function +rel associated_with receptor virus +rel associated_with research_activity acquired_abnormality +rel associated_with research_activity anatomical_abnormality +rel associated_with research_activity cell_or_molecular_dysfunction +rel associated_with research_activity congenital_abnormality +rel associated_with research_activity disease_or_syndrome +rel associated_with research_activity experimental_model_of_disease +rel associated_with research_activity injury_or_poisoning +rel associated_with research_activity mental_or_behavioral_dysfunction +rel associated_with research_activity neoplastic_process +rel associated_with research_activity pathologic_function +rel associated_with sign_or_symptom acquired_abnormality +rel associated_with sign_or_symptom anatomical_abnormality +rel associated_with sign_or_symptom cell_or_molecular_dysfunction +rel associated_with sign_or_symptom congenital_abnormality +rel associated_with sign_or_symptom disease_or_syndrome +rel associated_with sign_or_symptom experimental_model_of_disease +rel associated_with sign_or_symptom injury_or_poisoning +rel associated_with sign_or_symptom mental_or_behavioral_dysfunction +rel associated_with sign_or_symptom neoplastic_process +rel associated_with sign_or_symptom pathologic_function +rel associated_with social_behavior age_group +rel associated_with social_behavior biomedical_occupation_or_discipline +rel associated_with social_behavior clinical_attribute +rel associated_with social_behavior family_group +rel associated_with social_behavior geographic_area +rel associated_with social_behavior group +rel associated_with social_behavior group_attribute +rel associated_with social_behavior occupation_or_discipline +rel associated_with social_behavior organism_attribute +rel associated_with social_behavior patient_or_disabled_group +rel associated_with social_behavior population_group +rel associated_with social_behavior professional_or_occupational_group +rel associated_with therapeutic_or_preventive_procedure acquired_abnormality +rel associated_with therapeutic_or_preventive_procedure anatomical_abnormality +rel associated_with therapeutic_or_preventive_procedure cell_or_molecular_dysfunction +rel associated_with therapeutic_or_preventive_procedure congenital_abnormality +rel associated_with therapeutic_or_preventive_procedure disease_or_syndrome +rel associated_with therapeutic_or_preventive_procedure experimental_model_of_disease +rel associated_with therapeutic_or_preventive_procedure injury_or_poisoning +rel associated_with therapeutic_or_preventive_procedure mental_or_behavioral_dysfunction +rel associated_with therapeutic_or_preventive_procedure neoplastic_process +rel associated_with therapeutic_or_preventive_procedure pathologic_function +rel associated_with vitamin virus +rel carries_out gene_or_genome genetic_function +rel carries_out gene_or_genome molecular_function +rel carries_out health_care_related_organization diagnostic_procedure +rel carries_out health_care_related_organization educational_activity +rel carries_out health_care_related_organization governmental_or_regulatory_activity +rel carries_out health_care_related_organization health_care_activity +rel carries_out health_care_related_organization laboratory_procedure +rel carries_out health_care_related_organization molecular_biology_research_technique +rel carries_out health_care_related_organization occupational_activity +rel carries_out health_care_related_organization research_activity +rel carries_out health_care_related_organization therapeutic_or_preventive_procedure +rel carries_out organization diagnostic_procedure +rel carries_out organization educational_activity +rel carries_out organization governmental_or_regulatory_activity +rel carries_out organization health_care_activity +rel carries_out organization laboratory_procedure +rel carries_out organization molecular_biology_research_technique +rel carries_out organization occupational_activity +rel carries_out organization research_activity +rel carries_out organization therapeutic_or_preventive_procedure +rel carries_out professional_society diagnostic_procedure +rel carries_out professional_society educational_activity +rel carries_out professional_society governmental_or_regulatory_activity +rel carries_out professional_society health_care_activity +rel carries_out professional_society laboratory_procedure +rel carries_out professional_society molecular_biology_research_technique +rel carries_out professional_society occupational_activity +rel carries_out professional_society research_activity +rel carries_out professional_society therapeutic_or_preventive_procedure +rel carries_out self_help_or_relief_organization diagnostic_procedure +rel carries_out self_help_or_relief_organization educational_activity +rel carries_out self_help_or_relief_organization governmental_or_regulatory_activity +rel carries_out self_help_or_relief_organization health_care_activity +rel carries_out self_help_or_relief_organization laboratory_procedure +rel carries_out self_help_or_relief_organization molecular_biology_research_technique +rel carries_out self_help_or_relief_organization occupational_activity +rel carries_out self_help_or_relief_organization research_activity +rel carries_out self_help_or_relief_organization therapeutic_or_preventive_procedure +rel causes amino_acid_peptide_or_protein acquired_abnormality +rel causes amino_acid_peptide_or_protein anatomical_abnormality +rel causes amino_acid_peptide_or_protein cell_or_molecular_dysfunction +rel causes amino_acid_peptide_or_protein congenital_abnormality +rel causes amino_acid_peptide_or_protein disease_or_syndrome +rel causes amino_acid_peptide_or_protein experimental_model_of_disease +rel causes amino_acid_peptide_or_protein injury_or_poisoning +rel causes amino_acid_peptide_or_protein mental_or_behavioral_dysfunction +rel causes amino_acid_peptide_or_protein neoplastic_process +rel causes amino_acid_peptide_or_protein pathologic_function +rel causes antibiotic acquired_abnormality +rel causes antibiotic anatomical_abnormality +rel causes antibiotic cell_or_molecular_dysfunction +rel causes antibiotic congenital_abnormality +rel causes antibiotic disease_or_syndrome +rel causes antibiotic experimental_model_of_disease +rel causes antibiotic injury_or_poisoning +rel causes antibiotic mental_or_behavioral_dysfunction +rel causes antibiotic neoplastic_process +rel causes antibiotic pathologic_function +rel causes bacterium cell_or_molecular_dysfunction +rel causes bacterium disease_or_syndrome +rel causes bacterium experimental_model_of_disease +rel causes bacterium mental_or_behavioral_dysfunction +rel causes bacterium neoplastic_process +rel causes bacterium pathologic_function +rel causes biologically_active_substance acquired_abnormality +rel causes biologically_active_substance anatomical_abnormality +rel causes biologically_active_substance cell_or_molecular_dysfunction +rel causes biologically_active_substance congenital_abnormality +rel causes biologically_active_substance disease_or_syndrome +rel causes biologically_active_substance experimental_model_of_disease +rel causes biologically_active_substance injury_or_poisoning +rel causes biologically_active_substance mental_or_behavioral_dysfunction +rel causes biologically_active_substance neoplastic_process +rel causes biologically_active_substance pathologic_function +rel causes biomedical_or_dental_material acquired_abnormality +rel causes biomedical_or_dental_material anatomical_abnormality +rel causes biomedical_or_dental_material cell_or_molecular_dysfunction +rel causes biomedical_or_dental_material congenital_abnormality +rel causes biomedical_or_dental_material disease_or_syndrome +rel causes biomedical_or_dental_material experimental_model_of_disease +rel causes biomedical_or_dental_material injury_or_poisoning +rel causes biomedical_or_dental_material mental_or_behavioral_dysfunction +rel causes biomedical_or_dental_material neoplastic_process +rel causes biomedical_or_dental_material pathologic_function +rel causes body_substance acquired_abnormality +rel causes body_substance anatomical_abnormality +rel causes body_substance cell_or_molecular_dysfunction +rel causes body_substance congenital_abnormality +rel causes body_substance disease_or_syndrome +rel causes body_substance experimental_model_of_disease +rel causes body_substance injury_or_poisoning +rel causes body_substance mental_or_behavioral_dysfunction +rel causes body_substance neoplastic_process +rel causes body_substance pathologic_function +rel causes carbohydrate acquired_abnormality +rel causes carbohydrate anatomical_abnormality +rel causes carbohydrate cell_or_molecular_dysfunction +rel causes carbohydrate congenital_abnormality +rel causes carbohydrate disease_or_syndrome +rel causes carbohydrate experimental_model_of_disease +rel causes carbohydrate injury_or_poisoning +rel causes carbohydrate mental_or_behavioral_dysfunction +rel causes carbohydrate neoplastic_process +rel causes carbohydrate pathologic_function +rel causes chemical acquired_abnormality +rel causes chemical anatomical_abnormality +rel causes chemical cell_or_molecular_dysfunction +rel causes chemical congenital_abnormality +rel causes chemical disease_or_syndrome +rel causes chemical experimental_model_of_disease +rel causes chemical injury_or_poisoning +rel causes chemical mental_or_behavioral_dysfunction +rel causes chemical neoplastic_process +rel causes chemical pathologic_function +rel causes chemical_viewed_functionally acquired_abnormality +rel causes chemical_viewed_functionally anatomical_abnormality +rel causes chemical_viewed_functionally cell_or_molecular_dysfunction +rel causes chemical_viewed_functionally congenital_abnormality +rel causes chemical_viewed_functionally disease_or_syndrome +rel causes chemical_viewed_functionally experimental_model_of_disease +rel causes chemical_viewed_functionally injury_or_poisoning +rel causes chemical_viewed_functionally mental_or_behavioral_dysfunction +rel causes chemical_viewed_functionally neoplastic_process +rel causes chemical_viewed_functionally pathologic_function +rel causes chemical_viewed_structurally acquired_abnormality +rel causes chemical_viewed_structurally anatomical_abnormality +rel causes chemical_viewed_structurally cell_or_molecular_dysfunction +rel causes chemical_viewed_structurally congenital_abnormality +rel causes chemical_viewed_structurally disease_or_syndrome +rel causes chemical_viewed_structurally experimental_model_of_disease +rel causes chemical_viewed_structurally injury_or_poisoning +rel causes chemical_viewed_structurally mental_or_behavioral_dysfunction +rel causes chemical_viewed_structurally neoplastic_process +rel causes chemical_viewed_structurally pathologic_function +rel causes clinical_drug acquired_abnormality +rel causes clinical_drug anatomical_abnormality +rel causes clinical_drug cell_or_molecular_dysfunction +rel causes clinical_drug congenital_abnormality +rel causes clinical_drug disease_or_syndrome +rel causes clinical_drug experimental_model_of_disease +rel causes clinical_drug injury_or_poisoning +rel causes clinical_drug mental_or_behavioral_dysfunction +rel causes clinical_drug neoplastic_process +rel causes clinical_drug pathologic_function +rel causes drug_delivery_device acquired_abnormality +rel causes drug_delivery_device anatomical_abnormality +rel causes drug_delivery_device cell_or_molecular_dysfunction +rel causes drug_delivery_device congenital_abnormality +rel causes drug_delivery_device disease_or_syndrome +rel causes drug_delivery_device experimental_model_of_disease +rel causes drug_delivery_device injury_or_poisoning +rel causes drug_delivery_device mental_or_behavioral_dysfunction +rel causes drug_delivery_device neoplastic_process +rel causes drug_delivery_device pathologic_function +rel causes eicosanoid acquired_abnormality +rel causes eicosanoid anatomical_abnormality +rel causes eicosanoid cell_or_molecular_dysfunction +rel causes eicosanoid congenital_abnormality +rel causes eicosanoid disease_or_syndrome +rel causes eicosanoid experimental_model_of_disease +rel causes eicosanoid injury_or_poisoning +rel causes eicosanoid mental_or_behavioral_dysfunction +rel causes eicosanoid neoplastic_process +rel causes eicosanoid pathologic_function +rel causes element_ion_or_isotope acquired_abnormality +rel causes element_ion_or_isotope anatomical_abnormality +rel causes element_ion_or_isotope cell_or_molecular_dysfunction +rel causes element_ion_or_isotope congenital_abnormality +rel causes element_ion_or_isotope disease_or_syndrome +rel causes element_ion_or_isotope experimental_model_of_disease +rel causes element_ion_or_isotope injury_or_poisoning +rel causes element_ion_or_isotope mental_or_behavioral_dysfunction +rel causes element_ion_or_isotope neoplastic_process +rel causes element_ion_or_isotope pathologic_function +rel causes enzyme acquired_abnormality +rel causes enzyme anatomical_abnormality +rel causes enzyme cell_or_molecular_dysfunction +rel causes enzyme congenital_abnormality +rel causes enzyme disease_or_syndrome +rel causes enzyme experimental_model_of_disease +rel causes enzyme injury_or_poisoning +rel causes enzyme mental_or_behavioral_dysfunction +rel causes enzyme neoplastic_process +rel causes enzyme pathologic_function +rel causes food acquired_abnormality +rel causes food anatomical_abnormality +rel causes food cell_or_molecular_dysfunction +rel causes food congenital_abnormality +rel causes food disease_or_syndrome +rel causes food experimental_model_of_disease +rel causes food injury_or_poisoning +rel causes food mental_or_behavioral_dysfunction +rel causes food neoplastic_process +rel causes food pathologic_function +rel causes fungus cell_or_molecular_dysfunction +rel causes fungus disease_or_syndrome +rel causes fungus experimental_model_of_disease +rel causes fungus mental_or_behavioral_dysfunction +rel causes fungus neoplastic_process +rel causes fungus pathologic_function +rel causes hazardous_or_poisonous_substance acquired_abnormality +rel causes hazardous_or_poisonous_substance anatomical_abnormality +rel causes hazardous_or_poisonous_substance cell_or_molecular_dysfunction +rel causes hazardous_or_poisonous_substance congenital_abnormality +rel causes hazardous_or_poisonous_substance disease_or_syndrome +rel causes hazardous_or_poisonous_substance experimental_model_of_disease +rel causes hazardous_or_poisonous_substance injury_or_poisoning +rel causes hazardous_or_poisonous_substance mental_or_behavioral_dysfunction +rel causes hazardous_or_poisonous_substance neoplastic_process +rel causes hazardous_or_poisonous_substance pathologic_function +rel causes hormone acquired_abnormality +rel causes hormone anatomical_abnormality +rel causes hormone cell_or_molecular_dysfunction +rel causes hormone congenital_abnormality +rel causes hormone disease_or_syndrome +rel causes hormone experimental_model_of_disease +rel causes hormone injury_or_poisoning +rel causes hormone mental_or_behavioral_dysfunction +rel causes hormone neoplastic_process +rel causes hormone pathologic_function +rel causes immunologic_factor acquired_abnormality +rel causes immunologic_factor anatomical_abnormality +rel causes immunologic_factor cell_or_molecular_dysfunction +rel causes immunologic_factor congenital_abnormality +rel causes immunologic_factor disease_or_syndrome +rel causes immunologic_factor experimental_model_of_disease +rel causes immunologic_factor injury_or_poisoning +rel causes immunologic_factor mental_or_behavioral_dysfunction +rel causes immunologic_factor neoplastic_process +rel causes immunologic_factor pathologic_function +rel causes indicator_reagent_or_diagnostic_aid acquired_abnormality +rel causes indicator_reagent_or_diagnostic_aid anatomical_abnormality +rel causes indicator_reagent_or_diagnostic_aid cell_or_molecular_dysfunction +rel causes indicator_reagent_or_diagnostic_aid congenital_abnormality +rel causes indicator_reagent_or_diagnostic_aid disease_or_syndrome +rel causes indicator_reagent_or_diagnostic_aid experimental_model_of_disease +rel causes indicator_reagent_or_diagnostic_aid injury_or_poisoning +rel causes indicator_reagent_or_diagnostic_aid mental_or_behavioral_dysfunction +rel causes indicator_reagent_or_diagnostic_aid neoplastic_process +rel causes indicator_reagent_or_diagnostic_aid pathologic_function +rel causes inorganic_chemical acquired_abnormality +rel causes inorganic_chemical anatomical_abnormality +rel causes inorganic_chemical cell_or_molecular_dysfunction +rel causes inorganic_chemical congenital_abnormality +rel causes inorganic_chemical disease_or_syndrome +rel causes inorganic_chemical experimental_model_of_disease +rel causes inorganic_chemical injury_or_poisoning +rel causes inorganic_chemical mental_or_behavioral_dysfunction +rel causes inorganic_chemical neoplastic_process +rel causes inorganic_chemical pathologic_function +rel causes invertebrate cell_or_molecular_dysfunction +rel causes invertebrate disease_or_syndrome +rel causes invertebrate experimental_model_of_disease +rel causes invertebrate mental_or_behavioral_dysfunction +rel causes invertebrate neoplastic_process +rel causes invertebrate pathologic_function +rel causes lipid acquired_abnormality +rel causes lipid anatomical_abnormality +rel causes lipid cell_or_molecular_dysfunction +rel causes lipid congenital_abnormality +rel causes lipid disease_or_syndrome +rel causes lipid experimental_model_of_disease +rel causes lipid injury_or_poisoning +rel causes lipid mental_or_behavioral_dysfunction +rel causes lipid neoplastic_process +rel causes lipid pathologic_function +rel causes manufactured_object acquired_abnormality +rel causes manufactured_object anatomical_abnormality +rel causes manufactured_object cell_or_molecular_dysfunction +rel causes manufactured_object congenital_abnormality +rel causes manufactured_object disease_or_syndrome +rel causes manufactured_object experimental_model_of_disease +rel causes manufactured_object injury_or_poisoning +rel causes manufactured_object mental_or_behavioral_dysfunction +rel causes manufactured_object neoplastic_process +rel causes manufactured_object pathologic_function +rel causes medical_device acquired_abnormality +rel causes medical_device anatomical_abnormality +rel causes medical_device cell_or_molecular_dysfunction +rel causes medical_device congenital_abnormality +rel causes medical_device disease_or_syndrome +rel causes medical_device experimental_model_of_disease +rel causes medical_device injury_or_poisoning +rel causes medical_device mental_or_behavioral_dysfunction +rel causes medical_device neoplastic_process +rel causes medical_device pathologic_function +rel causes neuroreactive_substance_or_biogenic_amine acquired_abnormality +rel causes neuroreactive_substance_or_biogenic_amine anatomical_abnormality +rel causes neuroreactive_substance_or_biogenic_amine cell_or_molecular_dysfunction +rel causes neuroreactive_substance_or_biogenic_amine congenital_abnormality +rel causes neuroreactive_substance_or_biogenic_amine disease_or_syndrome +rel causes neuroreactive_substance_or_biogenic_amine experimental_model_of_disease +rel causes neuroreactive_substance_or_biogenic_amine injury_or_poisoning +rel causes neuroreactive_substance_or_biogenic_amine mental_or_behavioral_dysfunction +rel causes neuroreactive_substance_or_biogenic_amine neoplastic_process +rel causes neuroreactive_substance_or_biogenic_amine pathologic_function +rel causes nucleic_acid_nucleoside_or_nucleotide acquired_abnormality +rel causes nucleic_acid_nucleoside_or_nucleotide anatomical_abnormality +rel causes nucleic_acid_nucleoside_or_nucleotide cell_or_molecular_dysfunction +rel causes nucleic_acid_nucleoside_or_nucleotide congenital_abnormality +rel causes nucleic_acid_nucleoside_or_nucleotide disease_or_syndrome +rel causes nucleic_acid_nucleoside_or_nucleotide experimental_model_of_disease +rel causes nucleic_acid_nucleoside_or_nucleotide injury_or_poisoning +rel causes nucleic_acid_nucleoside_or_nucleotide mental_or_behavioral_dysfunction +rel causes nucleic_acid_nucleoside_or_nucleotide neoplastic_process +rel causes nucleic_acid_nucleoside_or_nucleotide pathologic_function +rel causes organic_chemical acquired_abnormality +rel causes organic_chemical anatomical_abnormality +rel causes organic_chemical cell_or_molecular_dysfunction +rel causes organic_chemical congenital_abnormality +rel causes organic_chemical disease_or_syndrome +rel causes organic_chemical experimental_model_of_disease +rel causes organic_chemical injury_or_poisoning +rel causes organic_chemical mental_or_behavioral_dysfunction +rel causes organic_chemical neoplastic_process +rel causes organic_chemical pathologic_function +rel causes organophosphorus_compound acquired_abnormality +rel causes organophosphorus_compound anatomical_abnormality +rel causes organophosphorus_compound cell_or_molecular_dysfunction +rel causes organophosphorus_compound congenital_abnormality +rel causes organophosphorus_compound disease_or_syndrome +rel causes organophosphorus_compound experimental_model_of_disease +rel causes organophosphorus_compound injury_or_poisoning +rel causes organophosphorus_compound mental_or_behavioral_dysfunction +rel causes organophosphorus_compound neoplastic_process +rel causes organophosphorus_compound pathologic_function +rel causes pharmacologic_substance acquired_abnormality +rel causes pharmacologic_substance anatomical_abnormality +rel causes pharmacologic_substance cell_or_molecular_dysfunction +rel causes pharmacologic_substance congenital_abnormality +rel causes pharmacologic_substance disease_or_syndrome +rel causes pharmacologic_substance experimental_model_of_disease +rel causes pharmacologic_substance injury_or_poisoning +rel causes pharmacologic_substance mental_or_behavioral_dysfunction +rel causes pharmacologic_substance neoplastic_process +rel causes pharmacologic_substance pathologic_function +rel causes receptor acquired_abnormality +rel causes receptor anatomical_abnormality +rel causes receptor cell_or_molecular_dysfunction +rel causes receptor congenital_abnormality +rel causes receptor disease_or_syndrome +rel causes receptor experimental_model_of_disease +rel causes receptor injury_or_poisoning +rel causes receptor mental_or_behavioral_dysfunction +rel causes receptor neoplastic_process +rel causes receptor pathologic_function +rel causes research_device acquired_abnormality +rel causes research_device anatomical_abnormality +rel causes research_device cell_or_molecular_dysfunction +rel causes research_device congenital_abnormality +rel causes research_device disease_or_syndrome +rel causes research_device experimental_model_of_disease +rel causes research_device injury_or_poisoning +rel causes research_device mental_or_behavioral_dysfunction +rel causes research_device neoplastic_process +rel causes research_device pathologic_function +rel causes rickettsia_or_chlamydia cell_or_molecular_dysfunction +rel causes rickettsia_or_chlamydia disease_or_syndrome +rel causes rickettsia_or_chlamydia experimental_model_of_disease +rel causes rickettsia_or_chlamydia mental_or_behavioral_dysfunction +rel causes rickettsia_or_chlamydia neoplastic_process +rel causes rickettsia_or_chlamydia pathologic_function +rel causes steroid acquired_abnormality +rel causes steroid anatomical_abnormality +rel causes steroid cell_or_molecular_dysfunction +rel causes steroid congenital_abnormality +rel causes steroid disease_or_syndrome +rel causes steroid experimental_model_of_disease +rel causes steroid injury_or_poisoning +rel causes steroid mental_or_behavioral_dysfunction +rel causes steroid neoplastic_process +rel causes steroid pathologic_function +rel causes substance acquired_abnormality +rel causes substance anatomical_abnormality +rel causes substance cell_or_molecular_dysfunction +rel causes substance congenital_abnormality +rel causes substance disease_or_syndrome +rel causes substance experimental_model_of_disease +rel causes substance injury_or_poisoning +rel causes substance mental_or_behavioral_dysfunction +rel causes substance neoplastic_process +rel causes substance pathologic_function +rel causes virus cell_or_molecular_dysfunction +rel causes virus disease_or_syndrome +rel causes virus experimental_model_of_disease +rel causes virus mental_or_behavioral_dysfunction +rel causes virus neoplastic_process +rel causes virus pathologic_function +rel causes vitamin acquired_abnormality +rel causes vitamin anatomical_abnormality +rel causes vitamin cell_or_molecular_dysfunction +rel causes vitamin congenital_abnormality +rel causes vitamin disease_or_syndrome +rel causes vitamin experimental_model_of_disease +rel causes vitamin injury_or_poisoning +rel causes vitamin mental_or_behavioral_dysfunction +rel causes vitamin neoplastic_process +rel causes vitamin pathologic_function +rel complicates acquired_abnormality anatomical_abnormality +rel complicates acquired_abnormality congenital_abnormality +rel complicates anatomical_abnormality acquired_abnormality +rel complicates anatomical_abnormality congenital_abnormality +rel complicates antibiotic acquired_abnormality +rel complicates antibiotic anatomical_abnormality +rel complicates antibiotic biologic_function +rel complicates antibiotic cell_function +rel complicates antibiotic cell_or_molecular_dysfunction +rel complicates antibiotic congenital_abnormality +rel complicates antibiotic disease_or_syndrome +rel complicates antibiotic experimental_model_of_disease +rel complicates antibiotic genetic_function +rel complicates antibiotic injury_or_poisoning +rel complicates antibiotic mental_or_behavioral_dysfunction +rel complicates antibiotic mental_process +rel complicates antibiotic molecular_function +rel complicates antibiotic neoplastic_process +rel complicates antibiotic organism_function +rel complicates antibiotic organ_or_tissue_function +rel complicates antibiotic pathologic_function +rel complicates antibiotic physiologic_function +rel complicates biologically_active_substance acquired_abnormality +rel complicates biologically_active_substance anatomical_abnormality +rel complicates biologically_active_substance biologic_function +rel complicates biologically_active_substance cell_function +rel complicates biologically_active_substance cell_or_molecular_dysfunction +rel complicates biologically_active_substance congenital_abnormality +rel complicates biologically_active_substance disease_or_syndrome +rel complicates biologically_active_substance experimental_model_of_disease +rel complicates biologically_active_substance genetic_function +rel complicates biologically_active_substance injury_or_poisoning +rel complicates biologically_active_substance mental_or_behavioral_dysfunction +rel complicates biologically_active_substance mental_process +rel complicates biologically_active_substance molecular_function +rel complicates biologically_active_substance neoplastic_process +rel complicates biologically_active_substance organism_function +rel complicates biologically_active_substance organ_or_tissue_function +rel complicates biologically_active_substance pathologic_function +rel complicates biologically_active_substance physiologic_function +rel complicates cell_or_molecular_dysfunction acquired_abnormality +rel complicates cell_or_molecular_dysfunction anatomical_abnormality +rel complicates cell_or_molecular_dysfunction congenital_abnormality +rel complicates cell_or_molecular_dysfunction disease_or_syndrome +rel complicates cell_or_molecular_dysfunction experimental_model_of_disease +rel complicates cell_or_molecular_dysfunction injury_or_poisoning +rel complicates cell_or_molecular_dysfunction mental_or_behavioral_dysfunction +rel complicates cell_or_molecular_dysfunction neoplastic_process +rel complicates cell_or_molecular_dysfunction pathologic_function +rel complicates congenital_abnormality acquired_abnormality +rel complicates congenital_abnormality anatomical_abnormality +rel complicates disease_or_syndrome acquired_abnormality +rel complicates disease_or_syndrome anatomical_abnormality +rel complicates disease_or_syndrome cell_or_molecular_dysfunction +rel complicates disease_or_syndrome congenital_abnormality +rel complicates disease_or_syndrome experimental_model_of_disease +rel complicates disease_or_syndrome injury_or_poisoning +rel complicates disease_or_syndrome mental_or_behavioral_dysfunction +rel complicates disease_or_syndrome neoplastic_process +rel complicates disease_or_syndrome pathologic_function +rel complicates enzyme acquired_abnormality +rel complicates enzyme anatomical_abnormality +rel complicates enzyme biologic_function +rel complicates enzyme cell_function +rel complicates enzyme cell_or_molecular_dysfunction +rel complicates enzyme congenital_abnormality +rel complicates enzyme disease_or_syndrome +rel complicates enzyme experimental_model_of_disease +rel complicates enzyme genetic_function +rel complicates enzyme injury_or_poisoning +rel complicates enzyme mental_or_behavioral_dysfunction +rel complicates enzyme mental_process +rel complicates enzyme molecular_function +rel complicates enzyme neoplastic_process +rel complicates enzyme organism_function +rel complicates enzyme organ_or_tissue_function +rel complicates enzyme pathologic_function +rel complicates enzyme physiologic_function +rel complicates experimental_model_of_disease acquired_abnormality +rel complicates experimental_model_of_disease anatomical_abnormality +rel complicates experimental_model_of_disease cell_or_molecular_dysfunction +rel complicates experimental_model_of_disease congenital_abnormality +rel complicates experimental_model_of_disease disease_or_syndrome +rel complicates experimental_model_of_disease injury_or_poisoning +rel complicates experimental_model_of_disease mental_or_behavioral_dysfunction +rel complicates experimental_model_of_disease neoplastic_process +rel complicates experimental_model_of_disease pathologic_function +rel complicates hazardous_or_poisonous_substance acquired_abnormality +rel complicates hazardous_or_poisonous_substance anatomical_abnormality +rel complicates hazardous_or_poisonous_substance biologic_function +rel complicates hazardous_or_poisonous_substance cell_function +rel complicates hazardous_or_poisonous_substance cell_or_molecular_dysfunction +rel complicates hazardous_or_poisonous_substance congenital_abnormality +rel complicates hazardous_or_poisonous_substance disease_or_syndrome +rel complicates hazardous_or_poisonous_substance experimental_model_of_disease +rel complicates hazardous_or_poisonous_substance genetic_function +rel complicates hazardous_or_poisonous_substance injury_or_poisoning +rel complicates hazardous_or_poisonous_substance mental_or_behavioral_dysfunction +rel complicates hazardous_or_poisonous_substance mental_process +rel complicates hazardous_or_poisonous_substance molecular_function +rel complicates hazardous_or_poisonous_substance neoplastic_process +rel complicates hazardous_or_poisonous_substance organism_function +rel complicates hazardous_or_poisonous_substance organ_or_tissue_function +rel complicates hazardous_or_poisonous_substance pathologic_function +rel complicates hazardous_or_poisonous_substance physiologic_function +rel complicates hormone acquired_abnormality +rel complicates hormone anatomical_abnormality +rel complicates hormone biologic_function +rel complicates hormone cell_function +rel complicates hormone cell_or_molecular_dysfunction +rel complicates hormone congenital_abnormality +rel complicates hormone disease_or_syndrome +rel complicates hormone experimental_model_of_disease +rel complicates hormone genetic_function +rel complicates hormone injury_or_poisoning +rel complicates hormone mental_or_behavioral_dysfunction +rel complicates hormone mental_process +rel complicates hormone molecular_function +rel complicates hormone neoplastic_process +rel complicates hormone organism_function +rel complicates hormone organ_or_tissue_function +rel complicates hormone pathologic_function +rel complicates hormone physiologic_function +rel complicates immunologic_factor acquired_abnormality +rel complicates immunologic_factor anatomical_abnormality +rel complicates immunologic_factor biologic_function +rel complicates immunologic_factor cell_function +rel complicates immunologic_factor cell_or_molecular_dysfunction +rel complicates immunologic_factor congenital_abnormality +rel complicates immunologic_factor disease_or_syndrome +rel complicates immunologic_factor experimental_model_of_disease +rel complicates immunologic_factor genetic_function +rel complicates immunologic_factor injury_or_poisoning +rel complicates immunologic_factor mental_or_behavioral_dysfunction +rel complicates immunologic_factor mental_process +rel complicates immunologic_factor molecular_function +rel complicates immunologic_factor neoplastic_process +rel complicates immunologic_factor organism_function +rel complicates immunologic_factor organ_or_tissue_function +rel complicates immunologic_factor pathologic_function +rel complicates immunologic_factor physiologic_function +rel complicates injury_or_poisoning acquired_abnormality +rel complicates injury_or_poisoning anatomical_abnormality +rel complicates injury_or_poisoning cell_or_molecular_dysfunction +rel complicates injury_or_poisoning congenital_abnormality +rel complicates injury_or_poisoning disease_or_syndrome +rel complicates injury_or_poisoning experimental_model_of_disease +rel complicates injury_or_poisoning mental_or_behavioral_dysfunction +rel complicates injury_or_poisoning neoplastic_process +rel complicates injury_or_poisoning pathologic_function +rel complicates mental_or_behavioral_dysfunction acquired_abnormality +rel complicates mental_or_behavioral_dysfunction anatomical_abnormality +rel complicates mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel complicates mental_or_behavioral_dysfunction congenital_abnormality +rel complicates mental_or_behavioral_dysfunction disease_or_syndrome +rel complicates mental_or_behavioral_dysfunction experimental_model_of_disease +rel complicates mental_or_behavioral_dysfunction injury_or_poisoning +rel complicates mental_or_behavioral_dysfunction neoplastic_process +rel complicates mental_or_behavioral_dysfunction pathologic_function +rel complicates neoplastic_process acquired_abnormality +rel complicates neoplastic_process anatomical_abnormality +rel complicates neoplastic_process cell_or_molecular_dysfunction +rel complicates neoplastic_process congenital_abnormality +rel complicates neoplastic_process disease_or_syndrome +rel complicates neoplastic_process experimental_model_of_disease +rel complicates neoplastic_process injury_or_poisoning +rel complicates neoplastic_process mental_or_behavioral_dysfunction +rel complicates neoplastic_process pathologic_function +rel complicates neuroreactive_substance_or_biogenic_amine acquired_abnormality +rel complicates neuroreactive_substance_or_biogenic_amine anatomical_abnormality +rel complicates neuroreactive_substance_or_biogenic_amine biologic_function +rel complicates neuroreactive_substance_or_biogenic_amine cell_function +rel complicates neuroreactive_substance_or_biogenic_amine cell_or_molecular_dysfunction +rel complicates neuroreactive_substance_or_biogenic_amine congenital_abnormality +rel complicates neuroreactive_substance_or_biogenic_amine disease_or_syndrome +rel complicates neuroreactive_substance_or_biogenic_amine experimental_model_of_disease +rel complicates neuroreactive_substance_or_biogenic_amine genetic_function +rel complicates neuroreactive_substance_or_biogenic_amine injury_or_poisoning +rel complicates neuroreactive_substance_or_biogenic_amine mental_or_behavioral_dysfunction +rel complicates neuroreactive_substance_or_biogenic_amine mental_process +rel complicates neuroreactive_substance_or_biogenic_amine molecular_function +rel complicates neuroreactive_substance_or_biogenic_amine neoplastic_process +rel complicates neuroreactive_substance_or_biogenic_amine organism_function +rel complicates neuroreactive_substance_or_biogenic_amine organ_or_tissue_function +rel complicates neuroreactive_substance_or_biogenic_amine pathologic_function +rel complicates neuroreactive_substance_or_biogenic_amine physiologic_function +rel complicates pathologic_function acquired_abnormality +rel complicates pathologic_function anatomical_abnormality +rel complicates pathologic_function cell_or_molecular_dysfunction +rel complicates pathologic_function congenital_abnormality +rel complicates pathologic_function disease_or_syndrome +rel complicates pathologic_function experimental_model_of_disease +rel complicates pathologic_function injury_or_poisoning +rel complicates pathologic_function mental_or_behavioral_dysfunction +rel complicates pathologic_function neoplastic_process +rel complicates pharmacologic_substance acquired_abnormality +rel complicates pharmacologic_substance anatomical_abnormality +rel complicates pharmacologic_substance biologic_function +rel complicates pharmacologic_substance cell_function +rel complicates pharmacologic_substance cell_or_molecular_dysfunction +rel complicates pharmacologic_substance congenital_abnormality +rel complicates pharmacologic_substance disease_or_syndrome +rel complicates pharmacologic_substance experimental_model_of_disease +rel complicates pharmacologic_substance genetic_function +rel complicates pharmacologic_substance injury_or_poisoning +rel complicates pharmacologic_substance mental_or_behavioral_dysfunction +rel complicates pharmacologic_substance mental_process +rel complicates pharmacologic_substance molecular_function +rel complicates pharmacologic_substance neoplastic_process +rel complicates pharmacologic_substance organism_function +rel complicates pharmacologic_substance organ_or_tissue_function +rel complicates pharmacologic_substance pathologic_function +rel complicates pharmacologic_substance physiologic_function +rel complicates receptor acquired_abnormality +rel complicates receptor anatomical_abnormality +rel complicates receptor biologic_function +rel complicates receptor cell_function +rel complicates receptor cell_or_molecular_dysfunction +rel complicates receptor congenital_abnormality +rel complicates receptor disease_or_syndrome +rel complicates receptor experimental_model_of_disease +rel complicates receptor genetic_function +rel complicates receptor injury_or_poisoning +rel complicates receptor mental_or_behavioral_dysfunction +rel complicates receptor mental_process +rel complicates receptor molecular_function +rel complicates receptor neoplastic_process +rel complicates receptor organism_function +rel complicates receptor organ_or_tissue_function +rel complicates receptor pathologic_function +rel complicates receptor physiologic_function +rel complicates therapeutic_or_preventive_procedure biologic_function +rel complicates therapeutic_or_preventive_procedure cell_function +rel complicates therapeutic_or_preventive_procedure cell_or_molecular_dysfunction +rel complicates therapeutic_or_preventive_procedure disease_or_syndrome +rel complicates therapeutic_or_preventive_procedure experimental_model_of_disease +rel complicates therapeutic_or_preventive_procedure genetic_function +rel complicates therapeutic_or_preventive_procedure mental_or_behavioral_dysfunction +rel complicates therapeutic_or_preventive_procedure mental_process +rel complicates therapeutic_or_preventive_procedure molecular_function +rel complicates therapeutic_or_preventive_procedure neoplastic_process +rel complicates therapeutic_or_preventive_procedure organism_function +rel complicates therapeutic_or_preventive_procedure organ_or_tissue_function +rel complicates therapeutic_or_preventive_procedure pathologic_function +rel complicates therapeutic_or_preventive_procedure physiologic_function +rel complicates vitamin acquired_abnormality +rel complicates vitamin anatomical_abnormality +rel complicates vitamin biologic_function +rel complicates vitamin cell_function +rel complicates vitamin cell_or_molecular_dysfunction +rel complicates vitamin congenital_abnormality +rel complicates vitamin disease_or_syndrome +rel complicates vitamin experimental_model_of_disease +rel complicates vitamin genetic_function +rel complicates vitamin injury_or_poisoning +rel complicates vitamin mental_or_behavioral_dysfunction +rel complicates vitamin mental_process +rel complicates vitamin molecular_function +rel complicates vitamin neoplastic_process +rel complicates vitamin organism_function +rel complicates vitamin organ_or_tissue_function +rel complicates vitamin pathologic_function +rel complicates vitamin physiologic_function +rel conceptually_related_to disease_or_syndrome experimental_model_of_disease +rel conceptually_related_to individual_behavior idea_or_concept +rel conceptual_part_of body_location_or_region body_system +rel conceptual_part_of body_location_or_region fully_formed_anatomical_structure +rel conceptual_part_of body_part_organ_or_organ_component body_system +rel conceptual_part_of body_space_or_junction body_system +rel conceptual_part_of body_space_or_junction fully_formed_anatomical_structure +rel conceptual_part_of body_substance body_system +rel conceptual_part_of body_system fully_formed_anatomical_structure +rel conceptual_part_of cell body_system +rel conceptual_part_of cell_component body_system +rel conceptual_part_of idea_or_concept behavior +rel conceptual_part_of intellectual_product diagnostic_procedure +rel conceptual_part_of organism_function temporal_concept +rel conceptual_part_of organ_or_tissue_function temporal_concept +rel conceptual_part_of quantitative_concept therapeutic_or_preventive_procedure +rel conceptual_part_of temporal_concept cell_function +rel conceptual_part_of temporal_concept organism_function +rel conceptual_part_of temporal_concept organ_or_tissue_function +rel conceptual_part_of tissue body_system +rel connected_to body_part_organ_or_organ_component body_space_or_junction +rel connected_to body_part_organ_or_organ_component body_substance +rel connected_to body_part_organ_or_organ_component tissue +rel connected_to body_space_or_junction tissue +rel consists_of body_part_organ_or_organ_component body_substance +rel consists_of body_substance amino_acid_peptide_or_protein +rel consists_of body_substance carbohydrate +rel consists_of body_substance eicosanoid +rel consists_of body_substance lipid +rel consists_of body_substance nucleic_acid_nucleoside_or_nucleotide +rel consists_of body_substance organic_chemical +rel consists_of body_substance organophosphorus_compound +rel consists_of body_substance steroid +rel contains body_part_organ_or_organ_component body_substance +rel contains body_space_or_junction body_part_organ_or_organ_component +rel contains body_space_or_junction body_substance +rel contains body_space_or_junction tissue +rel contains cell body_substance +rel contains cell_component body_substance +rel contains drug_delivery_device clinical_drug +rel contains embryonic_structure body_substance +rel contains fully_formed_anatomical_structure body_substance +rel contains gene_or_genome body_substance +rel contains tissue body_substance +rel co-occurs_with acquired_abnormality anatomical_abnormality +rel co-occurs_with acquired_abnormality injury_or_poisoning +rel co-occurs_with cell_function genetic_function +rel co-occurs_with cell_function molecular_function +rel co-occurs_with cell_function physiologic_function +rel co-occurs_with cell_or_molecular_dysfunction acquired_abnormality +rel co-occurs_with cell_or_molecular_dysfunction anatomical_abnormality +rel co-occurs_with cell_or_molecular_dysfunction congenital_abnormality +rel co-occurs_with cell_or_molecular_dysfunction experimental_model_of_disease +rel co-occurs_with cell_or_molecular_dysfunction injury_or_poisoning +rel co-occurs_with cell_or_molecular_dysfunction pathologic_function +rel co-occurs_with congenital_abnormality acquired_abnormality +rel co-occurs_with congenital_abnormality anatomical_abnormality +rel co-occurs_with disease_or_syndrome acquired_abnormality +rel co-occurs_with disease_or_syndrome anatomical_abnormality +rel co-occurs_with disease_or_syndrome cell_or_molecular_dysfunction +rel co-occurs_with disease_or_syndrome congenital_abnormality +rel co-occurs_with disease_or_syndrome experimental_model_of_disease +rel co-occurs_with disease_or_syndrome injury_or_poisoning +rel co-occurs_with disease_or_syndrome mental_or_behavioral_dysfunction +rel co-occurs_with disease_or_syndrome neoplastic_process +rel co-occurs_with disease_or_syndrome pathologic_function +rel co-occurs_with experimental_model_of_disease acquired_abnormality +rel co-occurs_with experimental_model_of_disease anatomical_abnormality +rel co-occurs_with experimental_model_of_disease congenital_abnormality +rel co-occurs_with experimental_model_of_disease injury_or_poisoning +rel co-occurs_with experimental_model_of_disease pathologic_function +rel co-occurs_with genetic_function physiologic_function +rel co-occurs_with laboratory_or_test_result finding +rel co-occurs_with laboratory_or_test_result sign_or_symptom +rel co-occurs_with mental_or_behavioral_dysfunction acquired_abnormality +rel co-occurs_with mental_or_behavioral_dysfunction anatomical_abnormality +rel co-occurs_with mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel co-occurs_with mental_or_behavioral_dysfunction congenital_abnormality +rel co-occurs_with mental_or_behavioral_dysfunction experimental_model_of_disease +rel co-occurs_with mental_or_behavioral_dysfunction injury_or_poisoning +rel co-occurs_with mental_or_behavioral_dysfunction neoplastic_process +rel co-occurs_with mental_or_behavioral_dysfunction pathologic_function +rel co-occurs_with mental_process cell_function +rel co-occurs_with mental_process genetic_function +rel co-occurs_with mental_process molecular_function +rel co-occurs_with mental_process organ_or_tissue_function +rel co-occurs_with mental_process physiologic_function +rel co-occurs_with molecular_function genetic_function +rel co-occurs_with molecular_function physiologic_function +rel co-occurs_with neoplastic_process acquired_abnormality +rel co-occurs_with neoplastic_process anatomical_abnormality +rel co-occurs_with neoplastic_process cell_or_molecular_dysfunction +rel co-occurs_with neoplastic_process congenital_abnormality +rel co-occurs_with neoplastic_process experimental_model_of_disease +rel co-occurs_with neoplastic_process injury_or_poisoning +rel co-occurs_with neoplastic_process pathologic_function +rel co-occurs_with organism_function cell_function +rel co-occurs_with organism_function genetic_function +rel co-occurs_with organism_function mental_process +rel co-occurs_with organism_function molecular_function +rel co-occurs_with organism_function organ_or_tissue_function +rel co-occurs_with organism_function physiologic_function +rel co-occurs_with organ_or_tissue_function cell_function +rel co-occurs_with organ_or_tissue_function genetic_function +rel co-occurs_with organ_or_tissue_function molecular_function +rel co-occurs_with organ_or_tissue_function physiologic_function +rel co-occurs_with pathologic_function acquired_abnormality +rel co-occurs_with pathologic_function anatomical_abnormality +rel co-occurs_with pathologic_function congenital_abnormality +rel co-occurs_with pathologic_function injury_or_poisoning +rel co-occurs_with sign_or_symptom finding +rel degree_of cell_or_molecular_dysfunction disease_or_syndrome +rel degree_of cell_or_molecular_dysfunction experimental_model_of_disease +rel degree_of cell_or_molecular_dysfunction mental_or_behavioral_dysfunction +rel degree_of cell_or_molecular_dysfunction neoplastic_process +rel degree_of cell_or_molecular_dysfunction pathologic_function +rel degree_of clinical_attribute organism_attribute +rel degree_of disease_or_syndrome cell_or_molecular_dysfunction +rel degree_of disease_or_syndrome experimental_model_of_disease +rel degree_of disease_or_syndrome mental_or_behavioral_dysfunction +rel degree_of disease_or_syndrome neoplastic_process +rel degree_of disease_or_syndrome pathologic_function +rel degree_of experimental_model_of_disease cell_or_molecular_dysfunction +rel degree_of experimental_model_of_disease disease_or_syndrome +rel degree_of experimental_model_of_disease mental_or_behavioral_dysfunction +rel degree_of experimental_model_of_disease neoplastic_process +rel degree_of experimental_model_of_disease pathologic_function +rel degree_of mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel degree_of mental_or_behavioral_dysfunction disease_or_syndrome +rel degree_of mental_or_behavioral_dysfunction experimental_model_of_disease +rel degree_of mental_or_behavioral_dysfunction neoplastic_process +rel degree_of mental_or_behavioral_dysfunction pathologic_function +rel degree_of mental_process organism_function +rel degree_of neoplastic_process cell_or_molecular_dysfunction +rel degree_of neoplastic_process disease_or_syndrome +rel degree_of neoplastic_process experimental_model_of_disease +rel degree_of neoplastic_process mental_or_behavioral_dysfunction +rel degree_of neoplastic_process pathologic_function +rel degree_of organism_attribute clinical_attribute +rel degree_of organism_function mental_process +rel degree_of pathologic_function cell_or_molecular_dysfunction +rel degree_of pathologic_function disease_or_syndrome +rel degree_of pathologic_function experimental_model_of_disease +rel degree_of pathologic_function mental_or_behavioral_dysfunction +rel degree_of pathologic_function neoplastic_process +rel derivative_of body_substance tissue +rel developmental_form_of embryonic_structure body_part_organ_or_organ_component +rel developmental_form_of embryonic_structure cell +rel developmental_form_of embryonic_structure tissue +rel developmental_form_of tissue body_part_organ_or_organ_component +rel diagnoses antibiotic cell_or_molecular_dysfunction +rel diagnoses antibiotic disease_or_syndrome +rel diagnoses antibiotic experimental_model_of_disease +rel diagnoses antibiotic mental_or_behavioral_dysfunction +rel diagnoses antibiotic neoplastic_process +rel diagnoses antibiotic pathologic_function +rel diagnoses diagnostic_procedure acquired_abnormality +rel diagnoses diagnostic_procedure anatomical_abnormality +rel diagnoses diagnostic_procedure cell_or_molecular_dysfunction +rel diagnoses diagnostic_procedure congenital_abnormality +rel diagnoses diagnostic_procedure disease_or_syndrome +rel diagnoses diagnostic_procedure experimental_model_of_disease +rel diagnoses diagnostic_procedure injury_or_poisoning +rel diagnoses diagnostic_procedure mental_or_behavioral_dysfunction +rel diagnoses diagnostic_procedure neoplastic_process +rel diagnoses diagnostic_procedure pathologic_function +rel diagnoses laboratory_procedure acquired_abnormality +rel diagnoses laboratory_procedure anatomical_abnormality +rel diagnoses laboratory_procedure cell_or_molecular_dysfunction +rel diagnoses laboratory_procedure congenital_abnormality +rel diagnoses laboratory_procedure disease_or_syndrome +rel diagnoses laboratory_procedure experimental_model_of_disease +rel diagnoses laboratory_procedure injury_or_poisoning +rel diagnoses laboratory_procedure mental_or_behavioral_dysfunction +rel diagnoses laboratory_procedure neoplastic_process +rel diagnoses laboratory_procedure pathologic_function +rel diagnoses pharmacologic_substance cell_or_molecular_dysfunction +rel diagnoses pharmacologic_substance disease_or_syndrome +rel diagnoses pharmacologic_substance experimental_model_of_disease +rel diagnoses pharmacologic_substance mental_or_behavioral_dysfunction +rel diagnoses pharmacologic_substance neoplastic_process +rel diagnoses pharmacologic_substance pathologic_function +rel diagnoses professional_or_occupational_group cell_or_molecular_dysfunction +rel diagnoses professional_or_occupational_group disease_or_syndrome +rel diagnoses professional_or_occupational_group experimental_model_of_disease +rel diagnoses professional_or_occupational_group mental_or_behavioral_dysfunction +rel diagnoses professional_or_occupational_group neoplastic_process +rel diagnoses professional_or_occupational_group pathologic_function +rel diagnoses sign_or_symptom acquired_abnormality +rel diagnoses sign_or_symptom anatomical_abnormality +rel diagnoses sign_or_symptom cell_or_molecular_dysfunction +rel diagnoses sign_or_symptom congenital_abnormality +rel diagnoses sign_or_symptom disease_or_syndrome +rel diagnoses sign_or_symptom experimental_model_of_disease +rel diagnoses sign_or_symptom injury_or_poisoning +rel diagnoses sign_or_symptom mental_or_behavioral_dysfunction +rel diagnoses sign_or_symptom neoplastic_process +rel diagnoses sign_or_symptom pathologic_function +rel disrupts antibiotic body_part_organ_or_organ_component +rel disrupts antibiotic cell +rel disrupts antibiotic cell_component +rel disrupts antibiotic cell_function +rel disrupts antibiotic embryonic_structure +rel disrupts antibiotic fully_formed_anatomical_structure +rel disrupts antibiotic gene_or_genome +rel disrupts antibiotic genetic_function +rel disrupts antibiotic mental_process +rel disrupts antibiotic molecular_function +rel disrupts antibiotic organism_function +rel disrupts antibiotic organ_or_tissue_function +rel disrupts antibiotic physiologic_function +rel disrupts antibiotic tissue +rel disrupts biologically_active_substance body_part_organ_or_organ_component +rel disrupts biologically_active_substance cell +rel disrupts biologically_active_substance cell_component +rel disrupts biologically_active_substance cell_function +rel disrupts biologically_active_substance embryonic_structure +rel disrupts biologically_active_substance fully_formed_anatomical_structure +rel disrupts biologically_active_substance gene_or_genome +rel disrupts biologically_active_substance genetic_function +rel disrupts biologically_active_substance mental_process +rel disrupts biologically_active_substance molecular_function +rel disrupts biologically_active_substance organism_function +rel disrupts biologically_active_substance organ_or_tissue_function +rel disrupts biologically_active_substance physiologic_function +rel disrupts biologically_active_substance tissue +rel disrupts enzyme body_part_organ_or_organ_component +rel disrupts enzyme cell +rel disrupts enzyme cell_component +rel disrupts enzyme cell_function +rel disrupts enzyme embryonic_structure +rel disrupts enzyme fully_formed_anatomical_structure +rel disrupts enzyme gene_or_genome +rel disrupts enzyme genetic_function +rel disrupts enzyme mental_process +rel disrupts enzyme molecular_function +rel disrupts enzyme organism_function +rel disrupts enzyme organ_or_tissue_function +rel disrupts enzyme physiologic_function +rel disrupts enzyme tissue +rel disrupts hazardous_or_poisonous_substance body_part_organ_or_organ_component +rel disrupts hazardous_or_poisonous_substance cell +rel disrupts hazardous_or_poisonous_substance cell_component +rel disrupts hazardous_or_poisonous_substance cell_function +rel disrupts hazardous_or_poisonous_substance embryonic_structure +rel disrupts hazardous_or_poisonous_substance fully_formed_anatomical_structure +rel disrupts hazardous_or_poisonous_substance gene_or_genome +rel disrupts hazardous_or_poisonous_substance genetic_function +rel disrupts hazardous_or_poisonous_substance mental_process +rel disrupts hazardous_or_poisonous_substance molecular_function +rel disrupts hazardous_or_poisonous_substance organism_function +rel disrupts hazardous_or_poisonous_substance organ_or_tissue_function +rel disrupts hazardous_or_poisonous_substance physiologic_function +rel disrupts hazardous_or_poisonous_substance tissue +rel disrupts hormone body_part_organ_or_organ_component +rel disrupts hormone cell +rel disrupts hormone cell_component +rel disrupts hormone cell_function +rel disrupts hormone embryonic_structure +rel disrupts hormone fully_formed_anatomical_structure +rel disrupts hormone gene_or_genome +rel disrupts hormone genetic_function +rel disrupts hormone mental_process +rel disrupts hormone molecular_function +rel disrupts hormone organism_function +rel disrupts hormone organ_or_tissue_function +rel disrupts hormone physiologic_function +rel disrupts hormone tissue +rel disrupts immunologic_factor body_part_organ_or_organ_component +rel disrupts immunologic_factor cell +rel disrupts immunologic_factor cell_component +rel disrupts immunologic_factor cell_function +rel disrupts immunologic_factor embryonic_structure +rel disrupts immunologic_factor fully_formed_anatomical_structure +rel disrupts immunologic_factor gene_or_genome +rel disrupts immunologic_factor genetic_function +rel disrupts immunologic_factor mental_process +rel disrupts immunologic_factor molecular_function +rel disrupts immunologic_factor organism_function +rel disrupts immunologic_factor organ_or_tissue_function +rel disrupts immunologic_factor physiologic_function +rel disrupts immunologic_factor tissue +rel disrupts injury_or_poisoning body_part_organ_or_organ_component +rel disrupts injury_or_poisoning cell +rel disrupts injury_or_poisoning cell_component +rel disrupts injury_or_poisoning cell_function +rel disrupts injury_or_poisoning embryonic_structure +rel disrupts injury_or_poisoning fully_formed_anatomical_structure +rel disrupts injury_or_poisoning gene_or_genome +rel disrupts injury_or_poisoning genetic_function +rel disrupts injury_or_poisoning mental_process +rel disrupts injury_or_poisoning molecular_function +rel disrupts injury_or_poisoning organism_function +rel disrupts injury_or_poisoning organ_or_tissue_function +rel disrupts injury_or_poisoning physiologic_function +rel disrupts injury_or_poisoning tissue +rel disrupts neuroreactive_substance_or_biogenic_amine body_part_organ_or_organ_component +rel disrupts neuroreactive_substance_or_biogenic_amine cell +rel disrupts neuroreactive_substance_or_biogenic_amine cell_component +rel disrupts neuroreactive_substance_or_biogenic_amine cell_function +rel disrupts neuroreactive_substance_or_biogenic_amine embryonic_structure +rel disrupts neuroreactive_substance_or_biogenic_amine fully_formed_anatomical_structure +rel disrupts neuroreactive_substance_or_biogenic_amine gene_or_genome +rel disrupts neuroreactive_substance_or_biogenic_amine genetic_function +rel disrupts neuroreactive_substance_or_biogenic_amine mental_process +rel disrupts neuroreactive_substance_or_biogenic_amine molecular_function +rel disrupts neuroreactive_substance_or_biogenic_amine organism_function +rel disrupts neuroreactive_substance_or_biogenic_amine organ_or_tissue_function +rel disrupts neuroreactive_substance_or_biogenic_amine physiologic_function +rel disrupts neuroreactive_substance_or_biogenic_amine tissue +rel disrupts pharmacologic_substance body_part_organ_or_organ_component +rel disrupts pharmacologic_substance cell +rel disrupts pharmacologic_substance cell_component +rel disrupts pharmacologic_substance cell_function +rel disrupts pharmacologic_substance embryonic_structure +rel disrupts pharmacologic_substance fully_formed_anatomical_structure +rel disrupts pharmacologic_substance gene_or_genome +rel disrupts pharmacologic_substance genetic_function +rel disrupts pharmacologic_substance mental_process +rel disrupts pharmacologic_substance molecular_function +rel disrupts pharmacologic_substance organism_function +rel disrupts pharmacologic_substance organ_or_tissue_function +rel disrupts pharmacologic_substance physiologic_function +rel disrupts pharmacologic_substance tissue +rel disrupts receptor body_part_organ_or_organ_component +rel disrupts receptor cell +rel disrupts receptor cell_component +rel disrupts receptor cell_function +rel disrupts receptor embryonic_structure +rel disrupts receptor fully_formed_anatomical_structure +rel disrupts receptor gene_or_genome +rel disrupts receptor genetic_function +rel disrupts receptor mental_process +rel disrupts receptor molecular_function +rel disrupts receptor organism_function +rel disrupts receptor organ_or_tissue_function +rel disrupts receptor physiologic_function +rel disrupts receptor tissue +rel disrupts vitamin body_part_organ_or_organ_component +rel disrupts vitamin cell +rel disrupts vitamin cell_component +rel disrupts vitamin cell_function +rel disrupts vitamin embryonic_structure +rel disrupts vitamin fully_formed_anatomical_structure +rel disrupts vitamin gene_or_genome +rel disrupts vitamin genetic_function +rel disrupts vitamin mental_process +rel disrupts vitamin molecular_function +rel disrupts vitamin organism_function +rel disrupts vitamin organ_or_tissue_function +rel disrupts vitamin physiologic_function +rel disrupts vitamin tissue +rel evaluation_of finding biologic_function +rel evaluation_of finding cell_function +rel evaluation_of finding cell_or_molecular_dysfunction +rel evaluation_of finding clinical_attribute +rel evaluation_of finding disease_or_syndrome +rel evaluation_of finding experimental_model_of_disease +rel evaluation_of finding genetic_function +rel evaluation_of finding mental_or_behavioral_dysfunction +rel evaluation_of finding mental_process +rel evaluation_of finding molecular_function +rel evaluation_of finding neoplastic_process +rel evaluation_of finding organism_attribute +rel evaluation_of finding organism_function +rel evaluation_of finding organ_or_tissue_function +rel evaluation_of finding pathologic_function +rel evaluation_of finding physiologic_function +rel evaluation_of laboratory_or_test_result biologic_function +rel evaluation_of laboratory_or_test_result cell_function +rel evaluation_of laboratory_or_test_result cell_or_molecular_dysfunction +rel evaluation_of laboratory_or_test_result clinical_attribute +rel evaluation_of laboratory_or_test_result disease_or_syndrome +rel evaluation_of laboratory_or_test_result experimental_model_of_disease +rel evaluation_of laboratory_or_test_result genetic_function +rel evaluation_of laboratory_or_test_result mental_or_behavioral_dysfunction +rel evaluation_of laboratory_or_test_result mental_process +rel evaluation_of laboratory_or_test_result molecular_function +rel evaluation_of laboratory_or_test_result neoplastic_process +rel evaluation_of laboratory_or_test_result organism_attribute +rel evaluation_of laboratory_or_test_result organism_function +rel evaluation_of laboratory_or_test_result organ_or_tissue_function +rel evaluation_of laboratory_or_test_result pathologic_function +rel evaluation_of laboratory_or_test_result physiologic_function +rel evaluation_of qualitative_concept activity +rel evaluation_of qualitative_concept behavior +rel evaluation_of qualitative_concept daily_or_recreational_activity +rel evaluation_of qualitative_concept diagnostic_procedure +rel evaluation_of qualitative_concept educational_activity +rel evaluation_of qualitative_concept governmental_or_regulatory_activity +rel evaluation_of qualitative_concept health_care_activity +rel evaluation_of qualitative_concept individual_behavior +rel evaluation_of qualitative_concept laboratory_procedure +rel evaluation_of qualitative_concept machine_activity +rel evaluation_of qualitative_concept molecular_biology_research_technique +rel evaluation_of qualitative_concept occupational_activity +rel evaluation_of qualitative_concept research_activity +rel evaluation_of qualitative_concept social_behavior +rel evaluation_of qualitative_concept therapeutic_or_preventive_procedure +rel evaluation_of sign_or_symptom biologic_function +rel evaluation_of sign_or_symptom cell_function +rel evaluation_of sign_or_symptom cell_or_molecular_dysfunction +rel evaluation_of sign_or_symptom clinical_attribute +rel evaluation_of sign_or_symptom disease_or_syndrome +rel evaluation_of sign_or_symptom experimental_model_of_disease +rel evaluation_of sign_or_symptom genetic_function +rel evaluation_of sign_or_symptom mental_or_behavioral_dysfunction +rel evaluation_of sign_or_symptom mental_process +rel evaluation_of sign_or_symptom molecular_function +rel evaluation_of sign_or_symptom neoplastic_process +rel evaluation_of sign_or_symptom organism_attribute +rel evaluation_of sign_or_symptom organism_function +rel evaluation_of sign_or_symptom organ_or_tissue_function +rel evaluation_of sign_or_symptom pathologic_function +rel evaluation_of sign_or_symptom physiologic_function +rel exhibits age_group behavior +rel exhibits age_group individual_behavior +rel exhibits age_group social_behavior +rel exhibits amphibian behavior +rel exhibits amphibian individual_behavior +rel exhibits amphibian social_behavior +rel exhibits animal behavior +rel exhibits animal individual_behavior +rel exhibits animal social_behavior +rel exhibits bird behavior +rel exhibits bird individual_behavior +rel exhibits bird social_behavior +rel exhibits family_group behavior +rel exhibits family_group individual_behavior +rel exhibits family_group social_behavior +rel exhibits fish behavior +rel exhibits fish individual_behavior +rel exhibits fish social_behavior +rel exhibits group behavior +rel exhibits group individual_behavior +rel exhibits group social_behavior +rel exhibits human behavior +rel exhibits human individual_behavior +rel exhibits human social_behavior +rel exhibits invertebrate behavior +rel exhibits invertebrate individual_behavior +rel exhibits invertebrate social_behavior +rel exhibits mammal behavior +rel exhibits mammal individual_behavior +rel exhibits mammal social_behavior +rel exhibits patient_or_disabled_group behavior +rel exhibits patient_or_disabled_group individual_behavior +rel exhibits patient_or_disabled_group social_behavior +rel exhibits population_group behavior +rel exhibits population_group individual_behavior +rel exhibits population_group social_behavior +rel exhibits professional_or_occupational_group behavior +rel exhibits professional_or_occupational_group individual_behavior +rel exhibits professional_or_occupational_group social_behavior +rel exhibits reptile behavior +rel exhibits reptile individual_behavior +rel exhibits reptile social_behavior +rel exhibits vertebrate behavior +rel exhibits vertebrate individual_behavior +rel exhibits vertebrate social_behavior +rel indicates immunologic_factor bacterium +rel indicates immunologic_factor cell_or_molecular_dysfunction +rel indicates immunologic_factor disease_or_syndrome +rel indicates immunologic_factor experimental_model_of_disease +rel indicates immunologic_factor mental_or_behavioral_dysfunction +rel indicates immunologic_factor neoplastic_process +rel indicates immunologic_factor pathologic_function +rel indicates immunologic_factor rickettsia_or_chlamydia +rel indicates immunologic_factor virus +rel indicates laboratory_or_test_result acquired_abnormality +rel indicates laboratory_or_test_result anatomical_abnormality +rel indicates laboratory_or_test_result biologic_function +rel indicates laboratory_or_test_result cell_function +rel indicates laboratory_or_test_result cell_or_molecular_dysfunction +rel indicates laboratory_or_test_result congenital_abnormality +rel indicates laboratory_or_test_result disease_or_syndrome +rel indicates laboratory_or_test_result experimental_model_of_disease +rel indicates laboratory_or_test_result genetic_function +rel indicates laboratory_or_test_result injury_or_poisoning +rel indicates laboratory_or_test_result mental_or_behavioral_dysfunction +rel indicates laboratory_or_test_result mental_process +rel indicates laboratory_or_test_result molecular_function +rel indicates laboratory_or_test_result neoplastic_process +rel indicates laboratory_or_test_result organism_function +rel indicates laboratory_or_test_result organ_or_tissue_function +rel indicates laboratory_or_test_result pathologic_function +rel indicates laboratory_or_test_result physiologic_function +rel ingredient_of amino_acid_peptide_or_protein clinical_drug +rel ingredient_of antibiotic clinical_drug +rel ingredient_of biologically_active_substance clinical_drug +rel ingredient_of biomedical_or_dental_material clinical_drug +rel ingredient_of body_substance clinical_drug +rel ingredient_of carbohydrate clinical_drug +rel ingredient_of chemical clinical_drug +rel ingredient_of chemical_viewed_functionally clinical_drug +rel ingredient_of chemical_viewed_structurally clinical_drug +rel ingredient_of eicosanoid clinical_drug +rel ingredient_of element_ion_or_isotope clinical_drug +rel ingredient_of enzyme clinical_drug +rel ingredient_of food clinical_drug +rel ingredient_of hazardous_or_poisonous_substance clinical_drug +rel ingredient_of hormone clinical_drug +rel ingredient_of immunologic_factor clinical_drug +rel ingredient_of indicator_reagent_or_diagnostic_aid clinical_drug +rel ingredient_of inorganic_chemical clinical_drug +rel ingredient_of lipid clinical_drug +rel ingredient_of neuroreactive_substance_or_biogenic_amine clinical_drug +rel ingredient_of nucleic_acid_nucleoside_or_nucleotide clinical_drug +rel ingredient_of organic_chemical clinical_drug +rel ingredient_of organophosphorus_compound clinical_drug +rel ingredient_of pharmacologic_substance clinical_drug +rel ingredient_of receptor clinical_drug +rel ingredient_of steroid clinical_drug +rel ingredient_of substance clinical_drug +rel ingredient_of vitamin clinical_drug +rel interacts_with age_group group +rel interacts_with age_group patient_or_disabled_group +rel interacts_with alga amphibian +rel interacts_with alga animal +rel interacts_with alga archaeon +rel interacts_with alga bacterium +rel interacts_with alga bird +rel interacts_with alga fish +rel interacts_with alga fungus +rel interacts_with alga human +rel interacts_with alga invertebrate +rel interacts_with alga mammal +rel interacts_with alga organism +rel interacts_with alga reptile +rel interacts_with alga rickettsia_or_chlamydia +rel interacts_with alga vertebrate +rel interacts_with alga virus +rel interacts_with amino_acid_peptide_or_protein antibiotic +rel interacts_with amino_acid_peptide_or_protein biologically_active_substance +rel interacts_with amino_acid_peptide_or_protein biomedical_or_dental_material +rel interacts_with amino_acid_peptide_or_protein carbohydrate +rel interacts_with amino_acid_peptide_or_protein chemical +rel interacts_with amino_acid_peptide_or_protein chemical_viewed_functionally +rel interacts_with amino_acid_peptide_or_protein eicosanoid +rel interacts_with amino_acid_peptide_or_protein element_ion_or_isotope +rel interacts_with amino_acid_peptide_or_protein enzyme +rel interacts_with amino_acid_peptide_or_protein hazardous_or_poisonous_substance +rel interacts_with amino_acid_peptide_or_protein hormone +rel interacts_with amino_acid_peptide_or_protein immunologic_factor +rel interacts_with amino_acid_peptide_or_protein indicator_reagent_or_diagnostic_aid +rel interacts_with amino_acid_peptide_or_protein inorganic_chemical +rel interacts_with amino_acid_peptide_or_protein lipid +rel interacts_with amino_acid_peptide_or_protein neuroreactive_substance_or_biogenic_amine +rel interacts_with amino_acid_peptide_or_protein pharmacologic_substance +rel interacts_with amino_acid_peptide_or_protein receptor +rel interacts_with amino_acid_peptide_or_protein steroid +rel interacts_with amino_acid_peptide_or_protein vitamin +rel interacts_with amphibian archaeon +rel interacts_with amphibian bird +rel interacts_with amphibian fish +rel interacts_with amphibian human +rel interacts_with amphibian mammal +rel interacts_with amphibian organism +rel interacts_with amphibian reptile +rel interacts_with animal amphibian +rel interacts_with animal archaeon +rel interacts_with animal bird +rel interacts_with animal fish +rel interacts_with animal human +rel interacts_with animal invertebrate +rel interacts_with animal mammal +rel interacts_with animal organism +rel interacts_with animal reptile +rel interacts_with animal vertebrate +rel interacts_with antibiotic biologically_active_substance +rel interacts_with antibiotic biomedical_or_dental_material +rel interacts_with antibiotic chemical +rel interacts_with antibiotic enzyme +rel interacts_with antibiotic hazardous_or_poisonous_substance +rel interacts_with antibiotic hormone +rel interacts_with antibiotic immunologic_factor +rel interacts_with antibiotic indicator_reagent_or_diagnostic_aid +rel interacts_with antibiotic neuroreactive_substance_or_biogenic_amine +rel interacts_with antibiotic receptor +rel interacts_with antibiotic vitamin +rel interacts_with archaeon organism +rel interacts_with bacterium amphibian +rel interacts_with bacterium animal +rel interacts_with bacterium archaeon +rel interacts_with bacterium bird +rel interacts_with bacterium fish +rel interacts_with bacterium human +rel interacts_with bacterium invertebrate +rel interacts_with bacterium mammal +rel interacts_with bacterium organism +rel interacts_with bacterium reptile +rel interacts_with bacterium vertebrate +rel interacts_with biologically_active_substance chemical +rel interacts_with biologically_active_substance enzyme +rel interacts_with biologically_active_substance hazardous_or_poisonous_substance +rel interacts_with biologically_active_substance hormone +rel interacts_with biologically_active_substance immunologic_factor +rel interacts_with biologically_active_substance indicator_reagent_or_diagnostic_aid +rel interacts_with biologically_active_substance neuroreactive_substance_or_biogenic_amine +rel interacts_with biologically_active_substance receptor +rel interacts_with biologically_active_substance vitamin +rel interacts_with biomedical_or_dental_material biologically_active_substance +rel interacts_with biomedical_or_dental_material chemical +rel interacts_with biomedical_or_dental_material enzyme +rel interacts_with biomedical_or_dental_material hazardous_or_poisonous_substance +rel interacts_with biomedical_or_dental_material hormone +rel interacts_with biomedical_or_dental_material immunologic_factor +rel interacts_with biomedical_or_dental_material indicator_reagent_or_diagnostic_aid +rel interacts_with biomedical_or_dental_material neuroreactive_substance_or_biogenic_amine +rel interacts_with biomedical_or_dental_material receptor +rel interacts_with biomedical_or_dental_material vitamin +rel interacts_with bird archaeon +rel interacts_with bird fish +rel interacts_with bird human +rel interacts_with bird mammal +rel interacts_with bird organism +rel interacts_with bird reptile +rel interacts_with carbohydrate antibiotic +rel interacts_with carbohydrate biologically_active_substance +rel interacts_with carbohydrate biomedical_or_dental_material +rel interacts_with carbohydrate chemical +rel interacts_with carbohydrate chemical_viewed_functionally +rel interacts_with carbohydrate eicosanoid +rel interacts_with carbohydrate element_ion_or_isotope +rel interacts_with carbohydrate enzyme +rel interacts_with carbohydrate hazardous_or_poisonous_substance +rel interacts_with carbohydrate hormone +rel interacts_with carbohydrate immunologic_factor +rel interacts_with carbohydrate indicator_reagent_or_diagnostic_aid +rel interacts_with carbohydrate inorganic_chemical +rel interacts_with carbohydrate lipid +rel interacts_with carbohydrate neuroreactive_substance_or_biogenic_amine +rel interacts_with carbohydrate pharmacologic_substance +rel interacts_with carbohydrate receptor +rel interacts_with carbohydrate steroid +rel interacts_with carbohydrate vitamin +rel interacts_with chemical_viewed_functionally antibiotic +rel interacts_with chemical_viewed_functionally biologically_active_substance +rel interacts_with chemical_viewed_functionally biomedical_or_dental_material +rel interacts_with chemical_viewed_functionally chemical +rel interacts_with chemical_viewed_functionally enzyme +rel interacts_with chemical_viewed_functionally hazardous_or_poisonous_substance +rel interacts_with chemical_viewed_functionally hormone +rel interacts_with chemical_viewed_functionally immunologic_factor +rel interacts_with chemical_viewed_functionally indicator_reagent_or_diagnostic_aid +rel interacts_with chemical_viewed_functionally neuroreactive_substance_or_biogenic_amine +rel interacts_with chemical_viewed_functionally pharmacologic_substance +rel interacts_with chemical_viewed_functionally receptor +rel interacts_with chemical_viewed_functionally vitamin +rel interacts_with chemical_viewed_structurally amino_acid_peptide_or_protein +rel interacts_with chemical_viewed_structurally antibiotic +rel interacts_with chemical_viewed_structurally biologically_active_substance +rel interacts_with chemical_viewed_structurally biomedical_or_dental_material +rel interacts_with chemical_viewed_structurally carbohydrate +rel interacts_with chemical_viewed_structurally chemical +rel interacts_with chemical_viewed_structurally chemical_viewed_functionally +rel interacts_with chemical_viewed_structurally eicosanoid +rel interacts_with chemical_viewed_structurally element_ion_or_isotope +rel interacts_with chemical_viewed_structurally enzyme +rel interacts_with chemical_viewed_structurally hazardous_or_poisonous_substance +rel interacts_with chemical_viewed_structurally hormone +rel interacts_with chemical_viewed_structurally immunologic_factor +rel interacts_with chemical_viewed_structurally indicator_reagent_or_diagnostic_aid +rel interacts_with chemical_viewed_structurally inorganic_chemical +rel interacts_with chemical_viewed_structurally lipid +rel interacts_with chemical_viewed_structurally neuroreactive_substance_or_biogenic_amine +rel interacts_with chemical_viewed_structurally nucleic_acid_nucleoside_or_nucleotide +rel interacts_with chemical_viewed_structurally organic_chemical +rel interacts_with chemical_viewed_structurally organophosphorus_compound +rel interacts_with chemical_viewed_structurally pharmacologic_substance +rel interacts_with chemical_viewed_structurally receptor +rel interacts_with chemical_viewed_structurally steroid +rel interacts_with chemical_viewed_structurally vitamin +rel interacts_with eicosanoid antibiotic +rel interacts_with eicosanoid biologically_active_substance +rel interacts_with eicosanoid biomedical_or_dental_material +rel interacts_with eicosanoid chemical +rel interacts_with eicosanoid chemical_viewed_functionally +rel interacts_with eicosanoid element_ion_or_isotope +rel interacts_with eicosanoid enzyme +rel interacts_with eicosanoid hazardous_or_poisonous_substance +rel interacts_with eicosanoid hormone +rel interacts_with eicosanoid immunologic_factor +rel interacts_with eicosanoid indicator_reagent_or_diagnostic_aid +rel interacts_with eicosanoid inorganic_chemical +rel interacts_with eicosanoid neuroreactive_substance_or_biogenic_amine +rel interacts_with eicosanoid pharmacologic_substance +rel interacts_with eicosanoid receptor +rel interacts_with eicosanoid vitamin +rel interacts_with element_ion_or_isotope antibiotic +rel interacts_with element_ion_or_isotope biologically_active_substance +rel interacts_with element_ion_or_isotope biomedical_or_dental_material +rel interacts_with element_ion_or_isotope chemical +rel interacts_with element_ion_or_isotope chemical_viewed_functionally +rel interacts_with element_ion_or_isotope enzyme +rel interacts_with element_ion_or_isotope hazardous_or_poisonous_substance +rel interacts_with element_ion_or_isotope hormone +rel interacts_with element_ion_or_isotope immunologic_factor +rel interacts_with element_ion_or_isotope indicator_reagent_or_diagnostic_aid +rel interacts_with element_ion_or_isotope inorganic_chemical +rel interacts_with element_ion_or_isotope neuroreactive_substance_or_biogenic_amine +rel interacts_with element_ion_or_isotope pharmacologic_substance +rel interacts_with element_ion_or_isotope receptor +rel interacts_with element_ion_or_isotope vitamin +rel interacts_with enzyme chemical +rel interacts_with enzyme hazardous_or_poisonous_substance +rel interacts_with enzyme immunologic_factor +rel interacts_with enzyme indicator_reagent_or_diagnostic_aid +rel interacts_with enzyme receptor +rel interacts_with enzyme vitamin +rel interacts_with family_group age_group +rel interacts_with family_group group +rel interacts_with family_group patient_or_disabled_group +rel interacts_with fish archaeon +rel interacts_with fish human +rel interacts_with fish mammal +rel interacts_with fish organism +rel interacts_with fish reptile +rel interacts_with fungus amphibian +rel interacts_with fungus animal +rel interacts_with fungus archaeon +rel interacts_with fungus bacterium +rel interacts_with fungus bird +rel interacts_with fungus fish +rel interacts_with fungus human +rel interacts_with fungus invertebrate +rel interacts_with fungus mammal +rel interacts_with fungus organism +rel interacts_with fungus reptile +rel interacts_with fungus rickettsia_or_chlamydia +rel interacts_with fungus vertebrate +rel interacts_with fungus virus +rel interacts_with hazardous_or_poisonous_substance chemical +rel interacts_with hormone chemical +rel interacts_with hormone enzyme +rel interacts_with hormone hazardous_or_poisonous_substance +rel interacts_with hormone immunologic_factor +rel interacts_with hormone indicator_reagent_or_diagnostic_aid +rel interacts_with hormone receptor +rel interacts_with hormone vitamin +rel interacts_with human archaeon +rel interacts_with human organism +rel interacts_with immunologic_factor chemical +rel interacts_with immunologic_factor hazardous_or_poisonous_substance +rel interacts_with immunologic_factor indicator_reagent_or_diagnostic_aid +rel interacts_with immunologic_factor receptor +rel interacts_with indicator_reagent_or_diagnostic_aid chemical +rel interacts_with indicator_reagent_or_diagnostic_aid hazardous_or_poisonous_substance +rel interacts_with inorganic_chemical antibiotic +rel interacts_with inorganic_chemical biologically_active_substance +rel interacts_with inorganic_chemical biomedical_or_dental_material +rel interacts_with inorganic_chemical chemical +rel interacts_with inorganic_chemical chemical_viewed_functionally +rel interacts_with inorganic_chemical enzyme +rel interacts_with inorganic_chemical hazardous_or_poisonous_substance +rel interacts_with inorganic_chemical hormone +rel interacts_with inorganic_chemical immunologic_factor +rel interacts_with inorganic_chemical indicator_reagent_or_diagnostic_aid +rel interacts_with inorganic_chemical neuroreactive_substance_or_biogenic_amine +rel interacts_with inorganic_chemical pharmacologic_substance +rel interacts_with inorganic_chemical receptor +rel interacts_with inorganic_chemical vitamin +rel interacts_with invertebrate amphibian +rel interacts_with invertebrate archaeon +rel interacts_with invertebrate bird +rel interacts_with invertebrate fish +rel interacts_with invertebrate human +rel interacts_with invertebrate mammal +rel interacts_with invertebrate organism +rel interacts_with invertebrate reptile +rel interacts_with invertebrate vertebrate +rel interacts_with lipid antibiotic +rel interacts_with lipid biologically_active_substance +rel interacts_with lipid biomedical_or_dental_material +rel interacts_with lipid chemical +rel interacts_with lipid chemical_viewed_functionally +rel interacts_with lipid eicosanoid +rel interacts_with lipid element_ion_or_isotope +rel interacts_with lipid enzyme +rel interacts_with lipid hazardous_or_poisonous_substance +rel interacts_with lipid hormone +rel interacts_with lipid immunologic_factor +rel interacts_with lipid indicator_reagent_or_diagnostic_aid +rel interacts_with lipid inorganic_chemical +rel interacts_with lipid neuroreactive_substance_or_biogenic_amine +rel interacts_with lipid pharmacologic_substance +rel interacts_with lipid receptor +rel interacts_with lipid steroid +rel interacts_with lipid vitamin +rel interacts_with mammal archaeon +rel interacts_with mammal human +rel interacts_with mammal organism +rel interacts_with neuroreactive_substance_or_biogenic_amine chemical +rel interacts_with neuroreactive_substance_or_biogenic_amine enzyme +rel interacts_with neuroreactive_substance_or_biogenic_amine hazardous_or_poisonous_substance +rel interacts_with neuroreactive_substance_or_biogenic_amine hormone +rel interacts_with neuroreactive_substance_or_biogenic_amine immunologic_factor +rel interacts_with neuroreactive_substance_or_biogenic_amine indicator_reagent_or_diagnostic_aid +rel interacts_with neuroreactive_substance_or_biogenic_amine receptor +rel interacts_with neuroreactive_substance_or_biogenic_amine vitamin +rel interacts_with nucleic_acid_nucleoside_or_nucleotide amino_acid_peptide_or_protein +rel interacts_with nucleic_acid_nucleoside_or_nucleotide antibiotic +rel interacts_with nucleic_acid_nucleoside_or_nucleotide biologically_active_substance +rel interacts_with nucleic_acid_nucleoside_or_nucleotide biomedical_or_dental_material +rel interacts_with nucleic_acid_nucleoside_or_nucleotide carbohydrate +rel interacts_with nucleic_acid_nucleoside_or_nucleotide chemical +rel interacts_with nucleic_acid_nucleoside_or_nucleotide chemical_viewed_functionally +rel interacts_with nucleic_acid_nucleoside_or_nucleotide eicosanoid +rel interacts_with nucleic_acid_nucleoside_or_nucleotide element_ion_or_isotope +rel interacts_with nucleic_acid_nucleoside_or_nucleotide enzyme +rel interacts_with nucleic_acid_nucleoside_or_nucleotide hazardous_or_poisonous_substance +rel interacts_with nucleic_acid_nucleoside_or_nucleotide hormone +rel interacts_with nucleic_acid_nucleoside_or_nucleotide immunologic_factor +rel interacts_with nucleic_acid_nucleoside_or_nucleotide indicator_reagent_or_diagnostic_aid +rel interacts_with nucleic_acid_nucleoside_or_nucleotide inorganic_chemical +rel interacts_with nucleic_acid_nucleoside_or_nucleotide lipid +rel interacts_with nucleic_acid_nucleoside_or_nucleotide neuroreactive_substance_or_biogenic_amine +rel interacts_with nucleic_acid_nucleoside_or_nucleotide organophosphorus_compound +rel interacts_with nucleic_acid_nucleoside_or_nucleotide pharmacologic_substance +rel interacts_with nucleic_acid_nucleoside_or_nucleotide receptor +rel interacts_with nucleic_acid_nucleoside_or_nucleotide steroid +rel interacts_with nucleic_acid_nucleoside_or_nucleotide vitamin +rel interacts_with organic_chemical amino_acid_peptide_or_protein +rel interacts_with organic_chemical antibiotic +rel interacts_with organic_chemical biologically_active_substance +rel interacts_with organic_chemical biomedical_or_dental_material +rel interacts_with organic_chemical carbohydrate +rel interacts_with organic_chemical chemical +rel interacts_with organic_chemical chemical_viewed_functionally +rel interacts_with organic_chemical eicosanoid +rel interacts_with organic_chemical element_ion_or_isotope +rel interacts_with organic_chemical enzyme +rel interacts_with organic_chemical hazardous_or_poisonous_substance +rel interacts_with organic_chemical hormone +rel interacts_with organic_chemical immunologic_factor +rel interacts_with organic_chemical indicator_reagent_or_diagnostic_aid +rel interacts_with organic_chemical inorganic_chemical +rel interacts_with organic_chemical lipid +rel interacts_with organic_chemical neuroreactive_substance_or_biogenic_amine +rel interacts_with organic_chemical nucleic_acid_nucleoside_or_nucleotide +rel interacts_with organic_chemical organophosphorus_compound +rel interacts_with organic_chemical pharmacologic_substance +rel interacts_with organic_chemical receptor +rel interacts_with organic_chemical steroid +rel interacts_with organic_chemical vitamin +rel interacts_with organophosphorus_compound amino_acid_peptide_or_protein +rel interacts_with organophosphorus_compound antibiotic +rel interacts_with organophosphorus_compound biologically_active_substance +rel interacts_with organophosphorus_compound biomedical_or_dental_material +rel interacts_with organophosphorus_compound carbohydrate +rel interacts_with organophosphorus_compound chemical +rel interacts_with organophosphorus_compound chemical_viewed_functionally +rel interacts_with organophosphorus_compound eicosanoid +rel interacts_with organophosphorus_compound element_ion_or_isotope +rel interacts_with organophosphorus_compound enzyme +rel interacts_with organophosphorus_compound hazardous_or_poisonous_substance +rel interacts_with organophosphorus_compound hormone +rel interacts_with organophosphorus_compound immunologic_factor +rel interacts_with organophosphorus_compound indicator_reagent_or_diagnostic_aid +rel interacts_with organophosphorus_compound inorganic_chemical +rel interacts_with organophosphorus_compound lipid +rel interacts_with organophosphorus_compound neuroreactive_substance_or_biogenic_amine +rel interacts_with organophosphorus_compound pharmacologic_substance +rel interacts_with organophosphorus_compound receptor +rel interacts_with organophosphorus_compound steroid +rel interacts_with organophosphorus_compound vitamin +rel interacts_with patient_or_disabled_group group +rel interacts_with pharmacologic_substance antibiotic +rel interacts_with pharmacologic_substance biologically_active_substance +rel interacts_with pharmacologic_substance biomedical_or_dental_material +rel interacts_with pharmacologic_substance chemical +rel interacts_with pharmacologic_substance enzyme +rel interacts_with pharmacologic_substance hazardous_or_poisonous_substance +rel interacts_with pharmacologic_substance hormone +rel interacts_with pharmacologic_substance immunologic_factor +rel interacts_with pharmacologic_substance indicator_reagent_or_diagnostic_aid +rel interacts_with pharmacologic_substance neuroreactive_substance_or_biogenic_amine +rel interacts_with pharmacologic_substance receptor +rel interacts_with pharmacologic_substance vitamin +rel interacts_with plant alga +rel interacts_with plant amphibian +rel interacts_with plant animal +rel interacts_with plant archaeon +rel interacts_with plant bacterium +rel interacts_with plant bird +rel interacts_with plant fish +rel interacts_with plant fungus +rel interacts_with plant human +rel interacts_with plant invertebrate +rel interacts_with plant mammal +rel interacts_with plant organism +rel interacts_with plant reptile +rel interacts_with plant rickettsia_or_chlamydia +rel interacts_with plant vertebrate +rel interacts_with plant virus +rel interacts_with population_group age_group +rel interacts_with population_group family_group +rel interacts_with population_group group +rel interacts_with population_group patient_or_disabled_group +rel interacts_with professional_or_occupational_group age_group +rel interacts_with professional_or_occupational_group family_group +rel interacts_with professional_or_occupational_group group +rel interacts_with professional_or_occupational_group patient_or_disabled_group +rel interacts_with professional_or_occupational_group population_group +rel interacts_with receptor chemical +rel interacts_with receptor hazardous_or_poisonous_substance +rel interacts_with receptor indicator_reagent_or_diagnostic_aid +rel interacts_with reptile archaeon +rel interacts_with reptile human +rel interacts_with reptile mammal +rel interacts_with reptile organism +rel interacts_with rickettsia_or_chlamydia amphibian +rel interacts_with rickettsia_or_chlamydia animal +rel interacts_with rickettsia_or_chlamydia archaeon +rel interacts_with rickettsia_or_chlamydia bacterium +rel interacts_with rickettsia_or_chlamydia bird +rel interacts_with rickettsia_or_chlamydia fish +rel interacts_with rickettsia_or_chlamydia human +rel interacts_with rickettsia_or_chlamydia invertebrate +rel interacts_with rickettsia_or_chlamydia mammal +rel interacts_with rickettsia_or_chlamydia organism +rel interacts_with rickettsia_or_chlamydia reptile +rel interacts_with rickettsia_or_chlamydia vertebrate +rel interacts_with steroid antibiotic +rel interacts_with steroid biologically_active_substance +rel interacts_with steroid biomedical_or_dental_material +rel interacts_with steroid chemical +rel interacts_with steroid chemical_viewed_functionally +rel interacts_with steroid eicosanoid +rel interacts_with steroid element_ion_or_isotope +rel interacts_with steroid enzyme +rel interacts_with steroid hazardous_or_poisonous_substance +rel interacts_with steroid hormone +rel interacts_with steroid immunologic_factor +rel interacts_with steroid indicator_reagent_or_diagnostic_aid +rel interacts_with steroid inorganic_chemical +rel interacts_with steroid neuroreactive_substance_or_biogenic_amine +rel interacts_with steroid pharmacologic_substance +rel interacts_with steroid receptor +rel interacts_with steroid vitamin +rel interacts_with vertebrate amphibian +rel interacts_with vertebrate archaeon +rel interacts_with vertebrate bird +rel interacts_with vertebrate fish +rel interacts_with vertebrate human +rel interacts_with vertebrate mammal +rel interacts_with vertebrate organism +rel interacts_with vertebrate reptile +rel interacts_with virus amphibian +rel interacts_with virus animal +rel interacts_with virus archaeon +rel interacts_with virus bacterium +rel interacts_with virus bird +rel interacts_with virus fish +rel interacts_with virus human +rel interacts_with virus invertebrate +rel interacts_with virus mammal +rel interacts_with virus organism +rel interacts_with virus reptile +rel interacts_with virus rickettsia_or_chlamydia +rel interacts_with virus vertebrate +rel interacts_with vitamin chemical +rel interacts_with vitamin hazardous_or_poisonous_substance +rel interacts_with vitamin immunologic_factor +rel interacts_with vitamin indicator_reagent_or_diagnostic_aid +rel interacts_with vitamin receptor +rel interconnects body_part_organ_or_organ_component body_space_or_junction +rel interconnects body_space_or_junction cell +rel isa acquired_abnormality anatomical_abnormality +rel isa acquired_abnormality anatomical_structure +rel isa acquired_abnormality entity +rel isa acquired_abnormality physical_object +rel isa activity event +rel isa age_group conceptual_entity +rel isa age_group entity +rel isa age_group group +rel isa alga entity +rel isa alga organism +rel isa alga physical_object +rel isa alga plant +rel isa amino_acid_peptide_or_protein chemical +rel isa amino_acid_peptide_or_protein chemical_viewed_structurally +rel isa amino_acid_peptide_or_protein entity +rel isa amino_acid_peptide_or_protein organic_chemical +rel isa amino_acid_peptide_or_protein physical_object +rel isa amino_acid_peptide_or_protein substance +rel isa amino_acid_sequence conceptual_entity +rel isa amino_acid_sequence entity +rel isa amino_acid_sequence idea_or_concept +rel isa amino_acid_sequence molecular_sequence +rel isa amino_acid_sequence spatial_concept +rel isa amphibian animal +rel isa amphibian entity +rel isa amphibian organism +rel isa amphibian physical_object +rel isa amphibian vertebrate +rel isa anatomical_abnormality anatomical_structure +rel isa anatomical_abnormality entity +rel isa anatomical_abnormality physical_object +rel isa anatomical_structure entity +rel isa anatomical_structure physical_object +rel isa animal entity +rel isa animal organism +rel isa animal physical_object +rel isa antibiotic chemical +rel isa antibiotic chemical_viewed_functionally +rel isa antibiotic entity +rel isa antibiotic pharmacologic_substance +rel isa antibiotic physical_object +rel isa antibiotic substance +rel isa archaeon entity +rel isa archaeon organism +rel isa archaeon physical_object +rel isa bacterium entity +rel isa bacterium organism +rel isa bacterium physical_object +rel isa behavior activity +rel isa behavior event +rel isa biologically_active_substance chemical +rel isa biologically_active_substance chemical_viewed_functionally +rel isa biologically_active_substance entity +rel isa biologically_active_substance physical_object +rel isa biologically_active_substance substance +rel isa biologic_function event +rel isa biologic_function natural_phenomenon_or_process +rel isa biologic_function phenomenon_or_process +rel isa biomedical_occupation_or_discipline conceptual_entity +rel isa biomedical_occupation_or_discipline entity +rel isa biomedical_occupation_or_discipline occupation_or_discipline +rel isa biomedical_or_dental_material chemical +rel isa biomedical_or_dental_material chemical_viewed_functionally +rel isa biomedical_or_dental_material entity +rel isa biomedical_or_dental_material physical_object +rel isa biomedical_or_dental_material substance +rel isa bird animal +rel isa bird entity +rel isa bird organism +rel isa bird physical_object +rel isa bird vertebrate +rel isa body_location_or_region conceptual_entity +rel isa body_location_or_region entity +rel isa body_location_or_region idea_or_concept +rel isa body_location_or_region spatial_concept +rel isa body_part_organ_or_organ_component anatomical_structure +rel isa body_part_organ_or_organ_component entity +rel isa body_part_organ_or_organ_component fully_formed_anatomical_structure +rel isa body_part_organ_or_organ_component physical_object +rel isa body_space_or_junction conceptual_entity +rel isa body_space_or_junction entity +rel isa body_space_or_junction idea_or_concept +rel isa body_space_or_junction spatial_concept +rel isa body_substance entity +rel isa body_substance physical_object +rel isa body_substance substance +rel isa body_system conceptual_entity +rel isa body_system entity +rel isa body_system functional_concept +rel isa body_system idea_or_concept +rel isa carbohydrate chemical +rel isa carbohydrate chemical_viewed_structurally +rel isa carbohydrate entity +rel isa carbohydrate organic_chemical +rel isa carbohydrate physical_object +rel isa carbohydrate_sequence conceptual_entity +rel isa carbohydrate_sequence entity +rel isa carbohydrate_sequence idea_or_concept +rel isa carbohydrate_sequence molecular_sequence +rel isa carbohydrate_sequence spatial_concept +rel isa carbohydrate substance +rel isa cell anatomical_structure +rel isa cell_component anatomical_structure +rel isa cell_component entity +rel isa cell_component fully_formed_anatomical_structure +rel isa cell_component physical_object +rel isa cell entity +rel isa cell fully_formed_anatomical_structure +rel isa cell_function biologic_function +rel isa cell_function event +rel isa cell_function natural_phenomenon_or_process +rel isa cell_function phenomenon_or_process +rel isa cell_function physiologic_function +rel isa cell_or_molecular_dysfunction biologic_function +rel isa cell_or_molecular_dysfunction event +rel isa cell_or_molecular_dysfunction natural_phenomenon_or_process +rel isa cell_or_molecular_dysfunction pathologic_function +rel isa cell_or_molecular_dysfunction phenomenon_or_process +rel isa cell physical_object +rel isa chemical entity +rel isa chemical physical_object +rel isa chemical substance +rel isa chemical_viewed_functionally chemical +rel isa chemical_viewed_functionally entity +rel isa chemical_viewed_functionally physical_object +rel isa chemical_viewed_functionally substance +rel isa chemical_viewed_structurally chemical +rel isa chemical_viewed_structurally entity +rel isa chemical_viewed_structurally physical_object +rel isa chemical_viewed_structurally substance +rel isa classification conceptual_entity +rel isa classification entity +rel isa classification intellectual_product +rel isa clinical_attribute conceptual_entity +rel isa clinical_attribute entity +rel isa clinical_attribute organism_attribute +rel isa clinical_drug entity +rel isa clinical_drug manufactured_object +rel isa clinical_drug physical_object +rel isa conceptual_entity entity +rel isa congenital_abnormality anatomical_abnormality +rel isa congenital_abnormality anatomical_structure +rel isa congenital_abnormality entity +rel isa congenital_abnormality physical_object +rel isa daily_or_recreational_activity activity +rel isa daily_or_recreational_activity event +rel isa diagnostic_procedure activity +rel isa diagnostic_procedure event +rel isa diagnostic_procedure health_care_activity +rel isa diagnostic_procedure occupational_activity +rel isa disease_or_syndrome biologic_function +rel isa disease_or_syndrome event +rel isa disease_or_syndrome natural_phenomenon_or_process +rel isa disease_or_syndrome pathologic_function +rel isa disease_or_syndrome phenomenon_or_process +rel isa drug_delivery_device entity +rel isa drug_delivery_device manufactured_object +rel isa drug_delivery_device medical_device +rel isa drug_delivery_device physical_object +rel isa educational_activity activity +rel isa educational_activity event +rel isa educational_activity occupational_activity +rel isa eicosanoid chemical +rel isa eicosanoid chemical_viewed_structurally +rel isa eicosanoid entity +rel isa eicosanoid lipid +rel isa eicosanoid organic_chemical +rel isa eicosanoid physical_object +rel isa eicosanoid substance +rel isa element_ion_or_isotope chemical +rel isa element_ion_or_isotope chemical_viewed_structurally +rel isa element_ion_or_isotope entity +rel isa element_ion_or_isotope physical_object +rel isa element_ion_or_isotope substance +rel isa embryonic_structure anatomical_structure +rel isa embryonic_structure entity +rel isa embryonic_structure physical_object +rel isa environmental_effect_of_humans event +rel isa environmental_effect_of_humans human_caused_phenomenon_or_process +rel isa environmental_effect_of_humans phenomenon_or_process +rel isa enzyme biologically_active_substance +rel isa enzyme chemical +rel isa enzyme chemical_viewed_functionally +rel isa enzyme entity +rel isa enzyme physical_object +rel isa enzyme substance +rel isa experimental_model_of_disease biologic_function +rel isa experimental_model_of_disease event +rel isa experimental_model_of_disease natural_phenomenon_or_process +rel isa experimental_model_of_disease pathologic_function +rel isa experimental_model_of_disease phenomenon_or_process +rel isa family_group conceptual_entity +rel isa family_group entity +rel isa family_group group +rel isa finding conceptual_entity +rel isa finding entity +rel isa fish animal +rel isa fish entity +rel isa fish organism +rel isa fish physical_object +rel isa fish vertebrate +rel isa food entity +rel isa food physical_object +rel isa food substance +rel isa fully_formed_anatomical_structure anatomical_structure +rel isa fully_formed_anatomical_structure entity +rel isa fully_formed_anatomical_structure physical_object +rel isa functional_concept conceptual_entity +rel isa functional_concept entity +rel isa functional_concept idea_or_concept +rel isa fungus entity +rel isa fungus organism +rel isa fungus physical_object +rel isa gene_or_genome anatomical_structure +rel isa gene_or_genome entity +rel isa gene_or_genome fully_formed_anatomical_structure +rel isa gene_or_genome physical_object +rel isa genetic_function biologic_function +rel isa genetic_function event +rel isa genetic_function molecular_function +rel isa genetic_function natural_phenomenon_or_process +rel isa genetic_function phenomenon_or_process +rel isa genetic_function physiologic_function +rel isa geographic_area conceptual_entity +rel isa geographic_area entity +rel isa geographic_area idea_or_concept +rel isa geographic_area spatial_concept +rel isa governmental_or_regulatory_activity activity +rel isa governmental_or_regulatory_activity event +rel isa governmental_or_regulatory_activity occupational_activity +rel isa group_attribute conceptual_entity +rel isa group_attribute entity +rel isa group conceptual_entity +rel isa group entity +rel isa hazardous_or_poisonous_substance chemical +rel isa hazardous_or_poisonous_substance chemical_viewed_functionally +rel isa hazardous_or_poisonous_substance entity +rel isa hazardous_or_poisonous_substance physical_object +rel isa hazardous_or_poisonous_substance substance +rel isa health_care_activity activity +rel isa health_care_activity event +rel isa health_care_activity occupational_activity +rel isa health_care_related_organization conceptual_entity +rel isa health_care_related_organization entity +rel isa health_care_related_organization organization +rel isa hormone biologically_active_substance +rel isa hormone chemical +rel isa hormone chemical_viewed_functionally +rel isa hormone entity +rel isa hormone physical_object +rel isa hormone substance +rel isa human animal +rel isa human_caused_phenomenon_or_process event +rel isa human_caused_phenomenon_or_process phenomenon_or_process +rel isa human entity +rel isa human mammal +rel isa human organism +rel isa human physical_object +rel isa human vertebrate +rel isa idea_or_concept conceptual_entity +rel isa idea_or_concept entity +rel isa immunologic_factor biologically_active_substance +rel isa immunologic_factor chemical +rel isa immunologic_factor chemical_viewed_functionally +rel isa immunologic_factor entity +rel isa immunologic_factor physical_object +rel isa immunologic_factor substance +rel isa indicator_reagent_or_diagnostic_aid chemical +rel isa indicator_reagent_or_diagnostic_aid chemical_viewed_functionally +rel isa indicator_reagent_or_diagnostic_aid entity +rel isa indicator_reagent_or_diagnostic_aid physical_object +rel isa indicator_reagent_or_diagnostic_aid substance +rel isa individual_behavior activity +rel isa individual_behavior behavior +rel isa individual_behavior event +rel isa injury_or_poisoning event +rel isa injury_or_poisoning phenomenon_or_process +rel isa inorganic_chemical chemical +rel isa inorganic_chemical chemical_viewed_structurally +rel isa inorganic_chemical entity +rel isa inorganic_chemical physical_object +rel isa inorganic_chemical substance +rel isa intellectual_product conceptual_entity +rel isa intellectual_product entity +rel isa invertebrate animal +rel isa invertebrate entity +rel isa invertebrate organism +rel isa invertebrate physical_object +rel isa laboratory_or_test_result conceptual_entity +rel isa laboratory_or_test_result entity +rel isa laboratory_or_test_result finding +rel isa laboratory_procedure activity +rel isa laboratory_procedure event +rel isa laboratory_procedure health_care_activity +rel isa laboratory_procedure occupational_activity +rel isa language conceptual_entity +rel isa language entity +rel isa lipid chemical +rel isa lipid chemical_viewed_structurally +rel isa lipid entity +rel isa lipid organic_chemical +rel isa lipid physical_object +rel isa lipid substance +rel isa machine_activity activity +rel isa machine_activity event +rel isa mammal animal +rel isa mammal entity +rel isa mammal organism +rel isa mammal physical_object +rel isa mammal vertebrate +rel isa manufactured_object entity +rel isa manufactured_object physical_object +rel isa medical_device entity +rel isa medical_device manufactured_object +rel isa medical_device physical_object +rel isa mental_or_behavioral_dysfunction biologic_function +rel isa mental_or_behavioral_dysfunction disease_or_syndrome +rel isa mental_or_behavioral_dysfunction event +rel isa mental_or_behavioral_dysfunction natural_phenomenon_or_process +rel isa mental_or_behavioral_dysfunction pathologic_function +rel isa mental_or_behavioral_dysfunction phenomenon_or_process +rel isa mental_process biologic_function +rel isa mental_process event +rel isa mental_process natural_phenomenon_or_process +rel isa mental_process organism_function +rel isa mental_process phenomenon_or_process +rel isa mental_process physiologic_function +rel isa molecular_biology_research_technique activity +rel isa molecular_biology_research_technique event +rel isa molecular_biology_research_technique occupational_activity +rel isa molecular_biology_research_technique research_activity +rel isa molecular_function biologic_function +rel isa molecular_function event +rel isa molecular_function natural_phenomenon_or_process +rel isa molecular_function phenomenon_or_process +rel isa molecular_function physiologic_function +rel isa molecular_sequence conceptual_entity +rel isa molecular_sequence entity +rel isa molecular_sequence idea_or_concept +rel isa molecular_sequence spatial_concept +rel isa natural_phenomenon_or_process event +rel isa natural_phenomenon_or_process phenomenon_or_process +rel isa neoplastic_process biologic_function +rel isa neoplastic_process disease_or_syndrome +rel isa neoplastic_process event +rel isa neoplastic_process natural_phenomenon_or_process +rel isa neoplastic_process pathologic_function +rel isa neoplastic_process phenomenon_or_process +rel isa neuroreactive_substance_or_biogenic_amine biologically_active_substance +rel isa neuroreactive_substance_or_biogenic_amine chemical +rel isa neuroreactive_substance_or_biogenic_amine chemical_viewed_functionally +rel isa neuroreactive_substance_or_biogenic_amine entity +rel isa neuroreactive_substance_or_biogenic_amine physical_object +rel isa neuroreactive_substance_or_biogenic_amine substance +rel isa nucleic_acid_nucleoside_or_nucleotide chemical +rel isa nucleic_acid_nucleoside_or_nucleotide chemical_viewed_structurally +rel isa nucleic_acid_nucleoside_or_nucleotide entity +rel isa nucleic_acid_nucleoside_or_nucleotide organic_chemical +rel isa nucleic_acid_nucleoside_or_nucleotide physical_object +rel isa nucleic_acid_nucleoside_or_nucleotide substance +rel isa nucleotide_sequence conceptual_entity +rel isa nucleotide_sequence entity +rel isa nucleotide_sequence idea_or_concept +rel isa nucleotide_sequence molecular_sequence +rel isa nucleotide_sequence spatial_concept +rel isa occupational_activity activity +rel isa occupational_activity event +rel isa occupation_or_discipline conceptual_entity +rel isa occupation_or_discipline entity +rel isa organic_chemical chemical +rel isa organic_chemical chemical_viewed_structurally +rel isa organic_chemical entity +rel isa organic_chemical physical_object +rel isa organic_chemical substance +rel isa organism_attribute conceptual_entity +rel isa organism_attribute entity +rel isa organism entity +rel isa organism_function biologic_function +rel isa organism_function event +rel isa organism_function natural_phenomenon_or_process +rel isa organism_function phenomenon_or_process +rel isa organism_function physiologic_function +rel isa organism physical_object +rel isa organization conceptual_entity +rel isa organization entity +rel isa organophosphorus_compound chemical +rel isa organophosphorus_compound chemical_viewed_structurally +rel isa organophosphorus_compound entity +rel isa organophosphorus_compound organic_chemical +rel isa organophosphorus_compound physical_object +rel isa organophosphorus_compound substance +rel isa organ_or_tissue_function biologic_function +rel isa organ_or_tissue_function event +rel isa organ_or_tissue_function natural_phenomenon_or_process +rel isa organ_or_tissue_function phenomenon_or_process +rel isa organ_or_tissue_function physiologic_function +rel isa pathologic_function biologic_function +rel isa pathologic_function event +rel isa pathologic_function natural_phenomenon_or_process +rel isa pathologic_function phenomenon_or_process +rel isa patient_or_disabled_group conceptual_entity +rel isa patient_or_disabled_group entity +rel isa patient_or_disabled_group group +rel isa pharmacologic_substance chemical +rel isa pharmacologic_substance chemical_viewed_functionally +rel isa pharmacologic_substance entity +rel isa pharmacologic_substance physical_object +rel isa pharmacologic_substance substance +rel isa phenomenon_or_process event +rel isa physical_object entity +rel isa physiologic_function biologic_function +rel isa physiologic_function event +rel isa physiologic_function natural_phenomenon_or_process +rel isa physiologic_function phenomenon_or_process +rel isa plant entity +rel isa plant organism +rel isa plant physical_object +rel isa population_group conceptual_entity +rel isa population_group entity +rel isa population_group group +rel isa professional_or_occupational_group conceptual_entity +rel isa professional_or_occupational_group entity +rel isa professional_or_occupational_group group +rel isa professional_society conceptual_entity +rel isa professional_society entity +rel isa professional_society organization +rel isa qualitative_concept conceptual_entity +rel isa qualitative_concept entity +rel isa qualitative_concept idea_or_concept +rel isa quantitative_concept conceptual_entity +rel isa quantitative_concept entity +rel isa quantitative_concept idea_or_concept +rel isa receptor biologically_active_substance +rel isa receptor chemical +rel isa receptor chemical_viewed_functionally +rel isa receptor entity +rel isa receptor physical_object +rel isa receptor substance +rel isa regulation_or_law conceptual_entity +rel isa regulation_or_law entity +rel isa regulation_or_law intellectual_product +rel isa reptile animal +rel isa reptile entity +rel isa reptile organism +rel isa reptile physical_object +rel isa reptile vertebrate +rel isa research_activity activity +rel isa research_activity event +rel isa research_activity occupational_activity +rel isa research_device entity +rel isa research_device manufactured_object +rel isa research_device physical_object +rel isa rickettsia_or_chlamydia entity +rel isa rickettsia_or_chlamydia organism +rel isa rickettsia_or_chlamydia physical_object +rel isa self_help_or_relief_organization conceptual_entity +rel isa self_help_or_relief_organization entity +rel isa self_help_or_relief_organization organization +rel isa sign_or_symptom conceptual_entity +rel isa sign_or_symptom entity +rel isa sign_or_symptom finding +rel isa social_behavior activity +rel isa social_behavior behavior +rel isa social_behavior event +rel isa spatial_concept conceptual_entity +rel isa spatial_concept entity +rel isa spatial_concept idea_or_concept +rel isa steroid chemical +rel isa steroid chemical_viewed_structurally +rel isa steroid entity +rel isa steroid lipid +rel isa steroid organic_chemical +rel isa steroid physical_object +rel isa steroid substance +rel isa substance entity +rel isa substance physical_object +rel isa temporal_concept conceptual_entity +rel isa temporal_concept entity +rel isa temporal_concept idea_or_concept +rel isa therapeutic_or_preventive_procedure activity +rel isa therapeutic_or_preventive_procedure event +rel isa therapeutic_or_preventive_procedure health_care_activity +rel isa therapeutic_or_preventive_procedure occupational_activity +rel isa tissue anatomical_structure +rel isa tissue entity +rel isa tissue fully_formed_anatomical_structure +rel isa tissue physical_object +rel isa vertebrate animal +rel isa vertebrate entity +rel isa vertebrate organism +rel isa vertebrate physical_object +rel isa virus entity +rel isa virus organism +rel isa virus physical_object +rel isa vitamin biologically_active_substance +rel isa vitamin chemical +rel isa vitamin chemical_viewed_functionally +rel isa vitamin entity +rel isa vitamin physical_object +rel isa vitamin substance +rel issue_in acquired_abnormality biomedical_occupation_or_discipline +rel issue_in acquired_abnormality occupation_or_discipline +rel issue_in activity biomedical_occupation_or_discipline +rel issue_in activity occupation_or_discipline +rel issue_in age_group biomedical_occupation_or_discipline +rel issue_in age_group occupation_or_discipline +rel issue_in alga biomedical_occupation_or_discipline +rel issue_in alga occupation_or_discipline +rel issue_in amino_acid_peptide_or_protein biomedical_occupation_or_discipline +rel issue_in amino_acid_peptide_or_protein occupation_or_discipline +rel issue_in amino_acid_sequence biomedical_occupation_or_discipline +rel issue_in amino_acid_sequence occupation_or_discipline +rel issue_in amphibian biomedical_occupation_or_discipline +rel issue_in amphibian occupation_or_discipline +rel issue_in anatomical_abnormality biomedical_occupation_or_discipline +rel issue_in anatomical_abnormality occupation_or_discipline +rel issue_in anatomical_structure biomedical_occupation_or_discipline +rel issue_in anatomical_structure occupation_or_discipline +rel issue_in animal biomedical_occupation_or_discipline +rel issue_in animal occupation_or_discipline +rel issue_in antibiotic biomedical_occupation_or_discipline +rel issue_in antibiotic occupation_or_discipline +rel issue_in archaeon biomedical_occupation_or_discipline +rel issue_in archaeon occupation_or_discipline +rel issue_in bacterium biomedical_occupation_or_discipline +rel issue_in bacterium occupation_or_discipline +rel issue_in behavior biomedical_occupation_or_discipline +rel issue_in behavior occupation_or_discipline +rel issue_in biologically_active_substance biomedical_occupation_or_discipline +rel issue_in biologically_active_substance occupation_or_discipline +rel issue_in biologic_function biomedical_occupation_or_discipline +rel issue_in biologic_function occupation_or_discipline +rel issue_in biomedical_occupation_or_discipline occupation_or_discipline +rel issue_in biomedical_or_dental_material biomedical_occupation_or_discipline +rel issue_in biomedical_or_dental_material occupation_or_discipline +rel issue_in bird biomedical_occupation_or_discipline +rel issue_in bird occupation_or_discipline +rel issue_in body_location_or_region biomedical_occupation_or_discipline +rel issue_in body_location_or_region occupation_or_discipline +rel issue_in body_part_organ_or_organ_component biomedical_occupation_or_discipline +rel issue_in body_part_organ_or_organ_component occupation_or_discipline +rel issue_in body_space_or_junction biomedical_occupation_or_discipline +rel issue_in body_space_or_junction occupation_or_discipline +rel issue_in body_substance biomedical_occupation_or_discipline +rel issue_in body_substance occupation_or_discipline +rel issue_in body_system biomedical_occupation_or_discipline +rel issue_in body_system occupation_or_discipline +rel issue_in carbohydrate biomedical_occupation_or_discipline +rel issue_in carbohydrate occupation_or_discipline +rel issue_in carbohydrate_sequence biomedical_occupation_or_discipline +rel issue_in carbohydrate_sequence occupation_or_discipline +rel issue_in cell biomedical_occupation_or_discipline +rel issue_in cell_component biomedical_occupation_or_discipline +rel issue_in cell_component occupation_or_discipline +rel issue_in cell_function biomedical_occupation_or_discipline +rel issue_in cell_function occupation_or_discipline +rel issue_in cell occupation_or_discipline +rel issue_in cell_or_molecular_dysfunction biomedical_occupation_or_discipline +rel issue_in cell_or_molecular_dysfunction occupation_or_discipline +rel issue_in chemical biomedical_occupation_or_discipline +rel issue_in chemical occupation_or_discipline +rel issue_in chemical_viewed_functionally biomedical_occupation_or_discipline +rel issue_in chemical_viewed_functionally occupation_or_discipline +rel issue_in chemical_viewed_structurally biomedical_occupation_or_discipline +rel issue_in chemical_viewed_structurally occupation_or_discipline +rel issue_in classification biomedical_occupation_or_discipline +rel issue_in classification occupation_or_discipline +rel issue_in clinical_attribute biomedical_occupation_or_discipline +rel issue_in clinical_attribute occupation_or_discipline +rel issue_in clinical_drug biomedical_occupation_or_discipline +rel issue_in clinical_drug occupation_or_discipline +rel issue_in conceptual_entity biomedical_occupation_or_discipline +rel issue_in conceptual_entity occupation_or_discipline +rel issue_in congenital_abnormality biomedical_occupation_or_discipline +rel issue_in congenital_abnormality occupation_or_discipline +rel issue_in daily_or_recreational_activity biomedical_occupation_or_discipline +rel issue_in daily_or_recreational_activity occupation_or_discipline +rel issue_in diagnostic_procedure biomedical_occupation_or_discipline +rel issue_in diagnostic_procedure occupation_or_discipline +rel issue_in disease_or_syndrome biomedical_occupation_or_discipline +rel issue_in disease_or_syndrome occupation_or_discipline +rel issue_in drug_delivery_device biomedical_occupation_or_discipline +rel issue_in drug_delivery_device occupation_or_discipline +rel issue_in educational_activity biomedical_occupation_or_discipline +rel issue_in educational_activity occupation_or_discipline +rel issue_in eicosanoid biomedical_occupation_or_discipline +rel issue_in eicosanoid occupation_or_discipline +rel issue_in element_ion_or_isotope biomedical_occupation_or_discipline +rel issue_in element_ion_or_isotope occupation_or_discipline +rel issue_in embryonic_structure biomedical_occupation_or_discipline +rel issue_in embryonic_structure occupation_or_discipline +rel issue_in entity biomedical_occupation_or_discipline +rel issue_in entity occupation_or_discipline +rel issue_in environmental_effect_of_humans biomedical_occupation_or_discipline +rel issue_in environmental_effect_of_humans occupation_or_discipline +rel issue_in enzyme biomedical_occupation_or_discipline +rel issue_in enzyme occupation_or_discipline +rel issue_in event biomedical_occupation_or_discipline +rel issue_in event occupation_or_discipline +rel issue_in experimental_model_of_disease biomedical_occupation_or_discipline +rel issue_in experimental_model_of_disease occupation_or_discipline +rel issue_in family_group biomedical_occupation_or_discipline +rel issue_in family_group occupation_or_discipline +rel issue_in finding biomedical_occupation_or_discipline +rel issue_in finding occupation_or_discipline +rel issue_in fish biomedical_occupation_or_discipline +rel issue_in fish occupation_or_discipline +rel issue_in food biomedical_occupation_or_discipline +rel issue_in food occupation_or_discipline +rel issue_in fully_formed_anatomical_structure biomedical_occupation_or_discipline +rel issue_in fully_formed_anatomical_structure occupation_or_discipline +rel issue_in functional_concept biomedical_occupation_or_discipline +rel issue_in functional_concept occupation_or_discipline +rel issue_in fungus biomedical_occupation_or_discipline +rel issue_in fungus occupation_or_discipline +rel issue_in gene_or_genome biomedical_occupation_or_discipline +rel issue_in gene_or_genome occupation_or_discipline +rel issue_in genetic_function biomedical_occupation_or_discipline +rel issue_in genetic_function occupation_or_discipline +rel issue_in geographic_area biomedical_occupation_or_discipline +rel issue_in geographic_area occupation_or_discipline +rel issue_in governmental_or_regulatory_activity biomedical_occupation_or_discipline +rel issue_in governmental_or_regulatory_activity occupation_or_discipline +rel issue_in group_attribute biomedical_occupation_or_discipline +rel issue_in group_attribute occupation_or_discipline +rel issue_in group biomedical_occupation_or_discipline +rel issue_in group occupation_or_discipline +rel issue_in hazardous_or_poisonous_substance biomedical_occupation_or_discipline +rel issue_in hazardous_or_poisonous_substance occupation_or_discipline +rel issue_in health_care_activity biomedical_occupation_or_discipline +rel issue_in health_care_activity occupation_or_discipline +rel issue_in health_care_related_organization biomedical_occupation_or_discipline +rel issue_in health_care_related_organization occupation_or_discipline +rel issue_in hormone biomedical_occupation_or_discipline +rel issue_in hormone occupation_or_discipline +rel issue_in human biomedical_occupation_or_discipline +rel issue_in human_caused_phenomenon_or_process biomedical_occupation_or_discipline +rel issue_in human_caused_phenomenon_or_process occupation_or_discipline +rel issue_in human occupation_or_discipline +rel issue_in idea_or_concept biomedical_occupation_or_discipline +rel issue_in idea_or_concept occupation_or_discipline +rel issue_in immunologic_factor biomedical_occupation_or_discipline +rel issue_in immunologic_factor occupation_or_discipline +rel issue_in indicator_reagent_or_diagnostic_aid biomedical_occupation_or_discipline +rel issue_in indicator_reagent_or_diagnostic_aid occupation_or_discipline +rel issue_in individual_behavior biomedical_occupation_or_discipline +rel issue_in individual_behavior occupation_or_discipline +rel issue_in injury_or_poisoning biomedical_occupation_or_discipline +rel issue_in injury_or_poisoning occupation_or_discipline +rel issue_in inorganic_chemical biomedical_occupation_or_discipline +rel issue_in inorganic_chemical occupation_or_discipline +rel issue_in intellectual_product biomedical_occupation_or_discipline +rel issue_in intellectual_product occupation_or_discipline +rel issue_in invertebrate biomedical_occupation_or_discipline +rel issue_in invertebrate occupation_or_discipline +rel issue_in laboratory_or_test_result biomedical_occupation_or_discipline +rel issue_in laboratory_or_test_result occupation_or_discipline +rel issue_in laboratory_procedure biomedical_occupation_or_discipline +rel issue_in laboratory_procedure occupation_or_discipline +rel issue_in language biomedical_occupation_or_discipline +rel issue_in language occupation_or_discipline +rel issue_in lipid biomedical_occupation_or_discipline +rel issue_in lipid occupation_or_discipline +rel issue_in machine_activity biomedical_occupation_or_discipline +rel issue_in machine_activity occupation_or_discipline +rel issue_in mammal biomedical_occupation_or_discipline +rel issue_in mammal occupation_or_discipline +rel issue_in manufactured_object biomedical_occupation_or_discipline +rel issue_in manufactured_object occupation_or_discipline +rel issue_in medical_device biomedical_occupation_or_discipline +rel issue_in medical_device occupation_or_discipline +rel issue_in mental_or_behavioral_dysfunction biomedical_occupation_or_discipline +rel issue_in mental_or_behavioral_dysfunction occupation_or_discipline +rel issue_in mental_process biomedical_occupation_or_discipline +rel issue_in mental_process occupation_or_discipline +rel issue_in molecular_biology_research_technique biomedical_occupation_or_discipline +rel issue_in molecular_biology_research_technique occupation_or_discipline +rel issue_in molecular_function biomedical_occupation_or_discipline +rel issue_in molecular_function occupation_or_discipline +rel issue_in molecular_sequence biomedical_occupation_or_discipline +rel issue_in molecular_sequence occupation_or_discipline +rel issue_in natural_phenomenon_or_process biomedical_occupation_or_discipline +rel issue_in natural_phenomenon_or_process occupation_or_discipline +rel issue_in neoplastic_process biomedical_occupation_or_discipline +rel issue_in neoplastic_process occupation_or_discipline +rel issue_in neuroreactive_substance_or_biogenic_amine biomedical_occupation_or_discipline +rel issue_in neuroreactive_substance_or_biogenic_amine occupation_or_discipline +rel issue_in nucleic_acid_nucleoside_or_nucleotide biomedical_occupation_or_discipline +rel issue_in nucleic_acid_nucleoside_or_nucleotide occupation_or_discipline +rel issue_in nucleotide_sequence biomedical_occupation_or_discipline +rel issue_in nucleotide_sequence occupation_or_discipline +rel issue_in occupational_activity biomedical_occupation_or_discipline +rel issue_in occupational_activity occupation_or_discipline +rel issue_in occupation_or_discipline biomedical_occupation_or_discipline +rel issue_in organic_chemical biomedical_occupation_or_discipline +rel issue_in organic_chemical occupation_or_discipline +rel issue_in organism_attribute biomedical_occupation_or_discipline +rel issue_in organism_attribute occupation_or_discipline +rel issue_in organism biomedical_occupation_or_discipline +rel issue_in organism_function biomedical_occupation_or_discipline +rel issue_in organism_function occupation_or_discipline +rel issue_in organism occupation_or_discipline +rel issue_in organization biomedical_occupation_or_discipline +rel issue_in organization occupation_or_discipline +rel issue_in organophosphorus_compound biomedical_occupation_or_discipline +rel issue_in organophosphorus_compound occupation_or_discipline +rel issue_in organ_or_tissue_function biomedical_occupation_or_discipline +rel issue_in organ_or_tissue_function occupation_or_discipline +rel issue_in pathologic_function biomedical_occupation_or_discipline +rel issue_in pathologic_function occupation_or_discipline +rel issue_in patient_or_disabled_group biomedical_occupation_or_discipline +rel issue_in patient_or_disabled_group occupation_or_discipline +rel issue_in pharmacologic_substance biomedical_occupation_or_discipline +rel issue_in pharmacologic_substance occupation_or_discipline +rel issue_in phenomenon_or_process biomedical_occupation_or_discipline +rel issue_in phenomenon_or_process occupation_or_discipline +rel issue_in physical_object biomedical_occupation_or_discipline +rel issue_in physical_object occupation_or_discipline +rel issue_in physiologic_function biomedical_occupation_or_discipline +rel issue_in physiologic_function occupation_or_discipline +rel issue_in plant biomedical_occupation_or_discipline +rel issue_in plant occupation_or_discipline +rel issue_in population_group biomedical_occupation_or_discipline +rel issue_in population_group occupation_or_discipline +rel issue_in professional_or_occupational_group biomedical_occupation_or_discipline +rel issue_in professional_or_occupational_group occupation_or_discipline +rel issue_in professional_society biomedical_occupation_or_discipline +rel issue_in professional_society occupation_or_discipline +rel issue_in qualitative_concept biomedical_occupation_or_discipline +rel issue_in qualitative_concept occupation_or_discipline +rel issue_in quantitative_concept biomedical_occupation_or_discipline +rel issue_in quantitative_concept occupation_or_discipline +rel issue_in receptor biomedical_occupation_or_discipline +rel issue_in receptor occupation_or_discipline +rel issue_in regulation_or_law biomedical_occupation_or_discipline +rel issue_in regulation_or_law occupation_or_discipline +rel issue_in reptile biomedical_occupation_or_discipline +rel issue_in reptile occupation_or_discipline +rel issue_in research_activity biomedical_occupation_or_discipline +rel issue_in research_activity occupation_or_discipline +rel issue_in research_device biomedical_occupation_or_discipline +rel issue_in research_device occupation_or_discipline +rel issue_in rickettsia_or_chlamydia biomedical_occupation_or_discipline +rel issue_in rickettsia_or_chlamydia occupation_or_discipline +rel issue_in self_help_or_relief_organization biomedical_occupation_or_discipline +rel issue_in self_help_or_relief_organization occupation_or_discipline +rel issue_in sign_or_symptom biomedical_occupation_or_discipline +rel issue_in sign_or_symptom occupation_or_discipline +rel issue_in social_behavior biomedical_occupation_or_discipline +rel issue_in social_behavior occupation_or_discipline +rel issue_in spatial_concept biomedical_occupation_or_discipline +rel issue_in spatial_concept occupation_or_discipline +rel issue_in steroid biomedical_occupation_or_discipline +rel issue_in steroid occupation_or_discipline +rel issue_in substance biomedical_occupation_or_discipline +rel issue_in substance occupation_or_discipline +rel issue_in temporal_concept biomedical_occupation_or_discipline +rel issue_in temporal_concept occupation_or_discipline +rel issue_in therapeutic_or_preventive_procedure biomedical_occupation_or_discipline +rel issue_in therapeutic_or_preventive_procedure occupation_or_discipline +rel issue_in tissue biomedical_occupation_or_discipline +rel issue_in tissue occupation_or_discipline +rel issue_in vertebrate biomedical_occupation_or_discipline +rel issue_in vertebrate occupation_or_discipline +rel issue_in virus biomedical_occupation_or_discipline +rel issue_in virus occupation_or_discipline +rel issue_in vitamin biomedical_occupation_or_discipline +rel issue_in vitamin occupation_or_discipline +rel location_of acquired_abnormality bacterium +rel location_of acquired_abnormality cell_or_molecular_dysfunction +rel location_of acquired_abnormality disease_or_syndrome +rel location_of acquired_abnormality experimental_model_of_disease +rel location_of acquired_abnormality fungus +rel location_of acquired_abnormality mental_or_behavioral_dysfunction +rel location_of acquired_abnormality neoplastic_process +rel location_of acquired_abnormality pathologic_function +rel location_of acquired_abnormality rickettsia_or_chlamydia +rel location_of acquired_abnormality virus +rel location_of alga biologically_active_substance +rel location_of alga enzyme +rel location_of alga hormone +rel location_of alga immunologic_factor +rel location_of alga neuroreactive_substance_or_biogenic_amine +rel location_of alga receptor +rel location_of alga vitamin +rel location_of anatomical_abnormality bacterium +rel location_of anatomical_abnormality cell_or_molecular_dysfunction +rel location_of anatomical_abnormality disease_or_syndrome +rel location_of anatomical_abnormality experimental_model_of_disease +rel location_of anatomical_abnormality fungus +rel location_of anatomical_abnormality mental_or_behavioral_dysfunction +rel location_of anatomical_abnormality neoplastic_process +rel location_of anatomical_abnormality pathologic_function +rel location_of anatomical_abnormality rickettsia_or_chlamydia +rel location_of anatomical_abnormality virus +rel location_of anatomical_structure bacterium +rel location_of anatomical_structure fungus +rel location_of anatomical_structure rickettsia_or_chlamydia +rel location_of anatomical_structure virus +rel location_of bacterium biologically_active_substance +rel location_of bacterium enzyme +rel location_of bacterium hormone +rel location_of bacterium immunologic_factor +rel location_of bacterium neuroreactive_substance_or_biogenic_amine +rel location_of bacterium receptor +rel location_of bacterium vitamin +rel location_of body_location_or_region acquired_abnormality +rel location_of body_location_or_region anatomical_abnormality +rel location_of body_location_or_region biologic_function +rel location_of body_location_or_region body_part_organ_or_organ_component +rel location_of body_location_or_region cell_function +rel location_of body_location_or_region cell_or_molecular_dysfunction +rel location_of body_location_or_region congenital_abnormality +rel location_of body_location_or_region diagnostic_procedure +rel location_of body_location_or_region disease_or_syndrome +rel location_of body_location_or_region experimental_model_of_disease +rel location_of body_location_or_region genetic_function +rel location_of body_location_or_region injury_or_poisoning +rel location_of body_location_or_region mental_or_behavioral_dysfunction +rel location_of body_location_or_region mental_process +rel location_of body_location_or_region molecular_function +rel location_of body_location_or_region neoplastic_process +rel location_of body_location_or_region organism_function +rel location_of body_location_or_region organ_or_tissue_function +rel location_of body_location_or_region pathologic_function +rel location_of body_location_or_region physiologic_function +rel location_of body_location_or_region therapeutic_or_preventive_procedure +rel location_of body_location_or_region tissue +rel location_of body_part_organ_or_organ_component acquired_abnormality +rel location_of body_part_organ_or_organ_component anatomical_abnormality +rel location_of body_part_organ_or_organ_component bacterium +rel location_of body_part_organ_or_organ_component biologic_function +rel location_of body_part_organ_or_organ_component body_location_or_region +rel location_of body_part_organ_or_organ_component body_space_or_junction +rel location_of body_part_organ_or_organ_component cell_function +rel location_of body_part_organ_or_organ_component cell_or_molecular_dysfunction +rel location_of body_part_organ_or_organ_component congenital_abnormality +rel location_of body_part_organ_or_organ_component diagnostic_procedure +rel location_of body_part_organ_or_organ_component disease_or_syndrome +rel location_of body_part_organ_or_organ_component experimental_model_of_disease +rel location_of body_part_organ_or_organ_component fungus +rel location_of body_part_organ_or_organ_component genetic_function +rel location_of body_part_organ_or_organ_component injury_or_poisoning +rel location_of body_part_organ_or_organ_component mental_or_behavioral_dysfunction +rel location_of body_part_organ_or_organ_component mental_process +rel location_of body_part_organ_or_organ_component molecular_function +rel location_of body_part_organ_or_organ_component neoplastic_process +rel location_of body_part_organ_or_organ_component organism_function +rel location_of body_part_organ_or_organ_component organ_or_tissue_function +rel location_of body_part_organ_or_organ_component pathologic_function +rel location_of body_part_organ_or_organ_component physiologic_function +rel location_of body_part_organ_or_organ_component rickettsia_or_chlamydia +rel location_of body_part_organ_or_organ_component therapeutic_or_preventive_procedure +rel location_of body_part_organ_or_organ_component virus +rel location_of body_space_or_junction acquired_abnormality +rel location_of body_space_or_junction anatomical_abnormality +rel location_of body_space_or_junction biologic_function +rel location_of body_space_or_junction body_substance +rel location_of body_space_or_junction cell_component +rel location_of body_space_or_junction cell_function +rel location_of body_space_or_junction cell_or_molecular_dysfunction +rel location_of body_space_or_junction congenital_abnormality +rel location_of body_space_or_junction diagnostic_procedure +rel location_of body_space_or_junction disease_or_syndrome +rel location_of body_space_or_junction experimental_model_of_disease +rel location_of body_space_or_junction genetic_function +rel location_of body_space_or_junction injury_or_poisoning +rel location_of body_space_or_junction mental_or_behavioral_dysfunction +rel location_of body_space_or_junction mental_process +rel location_of body_space_or_junction molecular_function +rel location_of body_space_or_junction neoplastic_process +rel location_of body_space_or_junction organism_function +rel location_of body_space_or_junction organ_or_tissue_function +rel location_of body_space_or_junction pathologic_function +rel location_of body_space_or_junction physiologic_function +rel location_of body_space_or_junction therapeutic_or_preventive_procedure +rel location_of cell acquired_abnormality +rel location_of cell anatomical_abnormality +rel location_of cell bacterium +rel location_of cell biologic_function +rel location_of cell body_space_or_junction +rel location_of cell cell_function +rel location_of cell cell_or_molecular_dysfunction +rel location_of cell_component acquired_abnormality +rel location_of cell_component anatomical_abnormality +rel location_of cell_component bacterium +rel location_of cell_component biologic_function +rel location_of cell_component body_space_or_junction +rel location_of cell_component cell_function +rel location_of cell_component cell_or_molecular_dysfunction +rel location_of cell_component congenital_abnormality +rel location_of cell_component diagnostic_procedure +rel location_of cell_component disease_or_syndrome +rel location_of cell_component experimental_model_of_disease +rel location_of cell_component fungus +rel location_of cell_component genetic_function +rel location_of cell_component injury_or_poisoning +rel location_of cell_component mental_or_behavioral_dysfunction +rel location_of cell_component mental_process +rel location_of cell_component molecular_function +rel location_of cell_component neoplastic_process +rel location_of cell_component organism_function +rel location_of cell_component organ_or_tissue_function +rel location_of cell_component pathologic_function +rel location_of cell_component physiologic_function +rel location_of cell_component rickettsia_or_chlamydia +rel location_of cell_component therapeutic_or_preventive_procedure +rel location_of cell_component virus +rel location_of cell congenital_abnormality +rel location_of cell diagnostic_procedure +rel location_of cell disease_or_syndrome +rel location_of cell experimental_model_of_disease +rel location_of cell fungus +rel location_of cell genetic_function +rel location_of cell injury_or_poisoning +rel location_of cell mental_or_behavioral_dysfunction +rel location_of cell mental_process +rel location_of cell molecular_function +rel location_of cell neoplastic_process +rel location_of cell organism_function +rel location_of cell organ_or_tissue_function +rel location_of cell pathologic_function +rel location_of cell physiologic_function +rel location_of cell rickettsia_or_chlamydia +rel location_of cell therapeutic_or_preventive_procedure +rel location_of cell virus +rel location_of congenital_abnormality bacterium +rel location_of congenital_abnormality cell_or_molecular_dysfunction +rel location_of congenital_abnormality disease_or_syndrome +rel location_of congenital_abnormality experimental_model_of_disease +rel location_of congenital_abnormality fungus +rel location_of congenital_abnormality mental_or_behavioral_dysfunction +rel location_of congenital_abnormality neoplastic_process +rel location_of congenital_abnormality pathologic_function +rel location_of congenital_abnormality rickettsia_or_chlamydia +rel location_of congenital_abnormality virus +rel location_of embryonic_structure bacterium +rel location_of embryonic_structure biologic_function +rel location_of embryonic_structure cell_function +rel location_of embryonic_structure cell_or_molecular_dysfunction +rel location_of embryonic_structure disease_or_syndrome +rel location_of embryonic_structure experimental_model_of_disease +rel location_of embryonic_structure fungus +rel location_of embryonic_structure genetic_function +rel location_of embryonic_structure mental_or_behavioral_dysfunction +rel location_of embryonic_structure mental_process +rel location_of embryonic_structure molecular_function +rel location_of embryonic_structure neoplastic_process +rel location_of embryonic_structure organism_function +rel location_of embryonic_structure organ_or_tissue_function +rel location_of embryonic_structure pathologic_function +rel location_of embryonic_structure physiologic_function +rel location_of embryonic_structure rickettsia_or_chlamydia +rel location_of embryonic_structure virus +rel location_of fully_formed_anatomical_structure acquired_abnormality +rel location_of fully_formed_anatomical_structure anatomical_abnormality +rel location_of fully_formed_anatomical_structure bacterium +rel location_of fully_formed_anatomical_structure biologic_function +rel location_of fully_formed_anatomical_structure cell_function +rel location_of fully_formed_anatomical_structure cell_or_molecular_dysfunction +rel location_of fully_formed_anatomical_structure congenital_abnormality +rel location_of fully_formed_anatomical_structure disease_or_syndrome +rel location_of fully_formed_anatomical_structure experimental_model_of_disease +rel location_of fully_formed_anatomical_structure fungus +rel location_of fully_formed_anatomical_structure genetic_function +rel location_of fully_formed_anatomical_structure injury_or_poisoning +rel location_of fully_formed_anatomical_structure mental_or_behavioral_dysfunction +rel location_of fully_formed_anatomical_structure mental_process +rel location_of fully_formed_anatomical_structure molecular_function +rel location_of fully_formed_anatomical_structure neoplastic_process +rel location_of fully_formed_anatomical_structure organism_function +rel location_of fully_formed_anatomical_structure organ_or_tissue_function +rel location_of fully_formed_anatomical_structure pathologic_function +rel location_of fully_formed_anatomical_structure physiologic_function +rel location_of fully_formed_anatomical_structure rickettsia_or_chlamydia +rel location_of fully_formed_anatomical_structure virus +rel location_of fungus biologically_active_substance +rel location_of fungus enzyme +rel location_of fungus hormone +rel location_of fungus immunologic_factor +rel location_of fungus neuroreactive_substance_or_biogenic_amine +rel location_of fungus receptor +rel location_of fungus vitamin +rel location_of gene_or_genome acquired_abnormality +rel location_of gene_or_genome anatomical_abnormality +rel location_of gene_or_genome bacterium +rel location_of gene_or_genome biologic_function +rel location_of gene_or_genome cell_function +rel location_of gene_or_genome cell_or_molecular_dysfunction +rel location_of gene_or_genome congenital_abnormality +rel location_of gene_or_genome disease_or_syndrome +rel location_of gene_or_genome experimental_model_of_disease +rel location_of gene_or_genome fungus +rel location_of gene_or_genome genetic_function +rel location_of gene_or_genome injury_or_poisoning +rel location_of gene_or_genome mental_or_behavioral_dysfunction +rel location_of gene_or_genome mental_process +rel location_of gene_or_genome molecular_function +rel location_of gene_or_genome neoplastic_process +rel location_of gene_or_genome organism_function +rel location_of gene_or_genome organ_or_tissue_function +rel location_of gene_or_genome pathologic_function +rel location_of gene_or_genome physiologic_function +rel location_of gene_or_genome rickettsia_or_chlamydia +rel location_of gene_or_genome virus +rel location_of health_care_related_organization diagnostic_procedure +rel location_of health_care_related_organization educational_activity +rel location_of health_care_related_organization governmental_or_regulatory_activity +rel location_of health_care_related_organization health_care_activity +rel location_of health_care_related_organization laboratory_procedure +rel location_of health_care_related_organization molecular_biology_research_technique +rel location_of health_care_related_organization occupational_activity +rel location_of health_care_related_organization research_activity +rel location_of health_care_related_organization therapeutic_or_preventive_procedure +rel location_of organization diagnostic_procedure +rel location_of organization educational_activity +rel location_of organization governmental_or_regulatory_activity +rel location_of organization health_care_activity +rel location_of organization laboratory_procedure +rel location_of organization molecular_biology_research_technique +rel location_of organization occupational_activity +rel location_of organization research_activity +rel location_of organization therapeutic_or_preventive_procedure +rel location_of plant biologically_active_substance +rel location_of plant enzyme +rel location_of plant hormone +rel location_of plant immunologic_factor +rel location_of plant neuroreactive_substance_or_biogenic_amine +rel location_of plant receptor +rel location_of plant vitamin +rel location_of professional_society diagnostic_procedure +rel location_of professional_society educational_activity +rel location_of professional_society governmental_or_regulatory_activity +rel location_of professional_society health_care_activity +rel location_of professional_society laboratory_procedure +rel location_of professional_society molecular_biology_research_technique +rel location_of professional_society occupational_activity +rel location_of professional_society research_activity +rel location_of professional_society therapeutic_or_preventive_procedure +rel location_of rickettsia_or_chlamydia biologically_active_substance +rel location_of rickettsia_or_chlamydia enzyme +rel location_of rickettsia_or_chlamydia hormone +rel location_of rickettsia_or_chlamydia immunologic_factor +rel location_of rickettsia_or_chlamydia neuroreactive_substance_or_biogenic_amine +rel location_of rickettsia_or_chlamydia receptor +rel location_of rickettsia_or_chlamydia vitamin +rel location_of self_help_or_relief_organization diagnostic_procedure +rel location_of self_help_or_relief_organization educational_activity +rel location_of self_help_or_relief_organization governmental_or_regulatory_activity +rel location_of self_help_or_relief_organization health_care_activity +rel location_of self_help_or_relief_organization laboratory_procedure +rel location_of self_help_or_relief_organization molecular_biology_research_technique +rel location_of self_help_or_relief_organization occupational_activity +rel location_of self_help_or_relief_organization research_activity +rel location_of self_help_or_relief_organization therapeutic_or_preventive_procedure +rel location_of tissue acquired_abnormality +rel location_of tissue anatomical_abnormality +rel location_of tissue bacterium +rel location_of tissue biologic_function +rel location_of tissue body_space_or_junction +rel location_of tissue cell_function +rel location_of tissue cell_or_molecular_dysfunction +rel location_of tissue congenital_abnormality +rel location_of tissue diagnostic_procedure +rel location_of tissue disease_or_syndrome +rel location_of tissue experimental_model_of_disease +rel location_of tissue fungus +rel location_of tissue genetic_function +rel location_of tissue injury_or_poisoning +rel location_of tissue mental_or_behavioral_dysfunction +rel location_of tissue mental_process +rel location_of tissue molecular_function +rel location_of tissue neoplastic_process +rel location_of tissue organism_function +rel location_of tissue organ_or_tissue_function +rel location_of tissue pathologic_function +rel location_of tissue physiologic_function +rel location_of tissue rickettsia_or_chlamydia +rel location_of tissue therapeutic_or_preventive_procedure +rel location_of tissue virus +rel location_of virus biologically_active_substance +rel location_of virus enzyme +rel location_of virus hormone +rel location_of virus immunologic_factor +rel location_of virus neuroreactive_substance_or_biogenic_amine +rel location_of virus receptor +rel location_of virus vitamin +rel manages health_care_related_organization patient_or_disabled_group +rel manages professional_or_occupational_group health_care_related_organization +rel manages professional_or_occupational_group organization +rel manages professional_or_occupational_group professional_society +rel manages professional_or_occupational_group self_help_or_relief_organization +rel manages self_help_or_relief_organization patient_or_disabled_group +rel manifestation_of acquired_abnormality biologic_function +rel manifestation_of acquired_abnormality cell_function +rel manifestation_of acquired_abnormality cell_or_molecular_dysfunction +rel manifestation_of acquired_abnormality disease_or_syndrome +rel manifestation_of acquired_abnormality experimental_model_of_disease +rel manifestation_of acquired_abnormality genetic_function +rel manifestation_of acquired_abnormality mental_or_behavioral_dysfunction +rel manifestation_of acquired_abnormality mental_process +rel manifestation_of acquired_abnormality molecular_function +rel manifestation_of acquired_abnormality neoplastic_process +rel manifestation_of acquired_abnormality organism_function +rel manifestation_of acquired_abnormality organ_or_tissue_function +rel manifestation_of acquired_abnormality pathologic_function +rel manifestation_of acquired_abnormality physiologic_function +rel manifestation_of anatomical_abnormality biologic_function +rel manifestation_of anatomical_abnormality cell_function +rel manifestation_of anatomical_abnormality cell_or_molecular_dysfunction +rel manifestation_of anatomical_abnormality disease_or_syndrome +rel manifestation_of anatomical_abnormality experimental_model_of_disease +rel manifestation_of anatomical_abnormality genetic_function +rel manifestation_of anatomical_abnormality mental_or_behavioral_dysfunction +rel manifestation_of anatomical_abnormality mental_process +rel manifestation_of anatomical_abnormality molecular_function +rel manifestation_of anatomical_abnormality neoplastic_process +rel manifestation_of anatomical_abnormality organism_function +rel manifestation_of anatomical_abnormality organ_or_tissue_function +rel manifestation_of anatomical_abnormality pathologic_function +rel manifestation_of anatomical_abnormality physiologic_function +rel manifestation_of behavior mental_or_behavioral_dysfunction +rel manifestation_of behavior mental_process +rel manifestation_of cell_or_molecular_dysfunction cell_function +rel manifestation_of cell_or_molecular_dysfunction disease_or_syndrome +rel manifestation_of cell_or_molecular_dysfunction experimental_model_of_disease +rel manifestation_of cell_or_molecular_dysfunction genetic_function +rel manifestation_of cell_or_molecular_dysfunction injury_or_poisoning +rel manifestation_of cell_or_molecular_dysfunction mental_or_behavioral_dysfunction +rel manifestation_of cell_or_molecular_dysfunction mental_process +rel manifestation_of cell_or_molecular_dysfunction molecular_function +rel manifestation_of cell_or_molecular_dysfunction neoplastic_process +rel manifestation_of cell_or_molecular_dysfunction organism_function +rel manifestation_of cell_or_molecular_dysfunction organ_or_tissue_function +rel manifestation_of cell_or_molecular_dysfunction pathologic_function +rel manifestation_of cell_or_molecular_dysfunction physiologic_function +rel manifestation_of clinical_attribute cell_function +rel manifestation_of clinical_attribute genetic_function +rel manifestation_of clinical_attribute mental_process +rel manifestation_of clinical_attribute molecular_function +rel manifestation_of clinical_attribute organism_function +rel manifestation_of clinical_attribute organ_or_tissue_function +rel manifestation_of clinical_attribute physiologic_function +rel manifestation_of congenital_abnormality biologic_function +rel manifestation_of congenital_abnormality cell_function +rel manifestation_of congenital_abnormality cell_or_molecular_dysfunction +rel manifestation_of congenital_abnormality disease_or_syndrome +rel manifestation_of congenital_abnormality experimental_model_of_disease +rel manifestation_of congenital_abnormality genetic_function +rel manifestation_of congenital_abnormality mental_or_behavioral_dysfunction +rel manifestation_of congenital_abnormality mental_process +rel manifestation_of congenital_abnormality molecular_function +rel manifestation_of congenital_abnormality neoplastic_process +rel manifestation_of congenital_abnormality organism_function +rel manifestation_of congenital_abnormality organ_or_tissue_function +rel manifestation_of congenital_abnormality pathologic_function +rel manifestation_of congenital_abnormality physiologic_function +rel manifestation_of disease_or_syndrome cell_function +rel manifestation_of disease_or_syndrome cell_or_molecular_dysfunction +rel manifestation_of disease_or_syndrome experimental_model_of_disease +rel manifestation_of disease_or_syndrome genetic_function +rel manifestation_of disease_or_syndrome injury_or_poisoning +rel manifestation_of disease_or_syndrome mental_or_behavioral_dysfunction +rel manifestation_of disease_or_syndrome mental_process +rel manifestation_of disease_or_syndrome molecular_function +rel manifestation_of disease_or_syndrome neoplastic_process +rel manifestation_of disease_or_syndrome organism_function +rel manifestation_of disease_or_syndrome organ_or_tissue_function +rel manifestation_of disease_or_syndrome pathologic_function +rel manifestation_of disease_or_syndrome physiologic_function +rel manifestation_of experimental_model_of_disease cell_function +rel manifestation_of experimental_model_of_disease cell_or_molecular_dysfunction +rel manifestation_of experimental_model_of_disease disease_or_syndrome +rel manifestation_of experimental_model_of_disease genetic_function +rel manifestation_of experimental_model_of_disease injury_or_poisoning +rel manifestation_of experimental_model_of_disease mental_or_behavioral_dysfunction +rel manifestation_of experimental_model_of_disease mental_process +rel manifestation_of experimental_model_of_disease molecular_function +rel manifestation_of experimental_model_of_disease neoplastic_process +rel manifestation_of experimental_model_of_disease organism_function +rel manifestation_of experimental_model_of_disease organ_or_tissue_function +rel manifestation_of experimental_model_of_disease pathologic_function +rel manifestation_of experimental_model_of_disease physiologic_function +rel manifestation_of finding acquired_abnormality +rel manifestation_of finding anatomical_abnormality +rel manifestation_of finding biologic_function +rel manifestation_of finding cell_function +rel manifestation_of finding cell_or_molecular_dysfunction +rel manifestation_of finding congenital_abnormality +rel manifestation_of finding disease_or_syndrome +rel manifestation_of finding experimental_model_of_disease +rel manifestation_of finding genetic_function +rel manifestation_of finding injury_or_poisoning +rel manifestation_of finding mental_or_behavioral_dysfunction +rel manifestation_of finding mental_process +rel manifestation_of finding molecular_function +rel manifestation_of finding neoplastic_process +rel manifestation_of finding organism_function +rel manifestation_of finding organ_or_tissue_function +rel manifestation_of finding pathologic_function +rel manifestation_of finding physiologic_function +rel manifestation_of individual_behavior mental_or_behavioral_dysfunction +rel manifestation_of individual_behavior mental_process +rel manifestation_of laboratory_or_test_result acquired_abnormality +rel manifestation_of laboratory_or_test_result anatomical_abnormality +rel manifestation_of laboratory_or_test_result biologic_function +rel manifestation_of laboratory_or_test_result cell_function +rel manifestation_of laboratory_or_test_result cell_or_molecular_dysfunction +rel manifestation_of laboratory_or_test_result congenital_abnormality +rel manifestation_of laboratory_or_test_result disease_or_syndrome +rel manifestation_of laboratory_or_test_result experimental_model_of_disease +rel manifestation_of laboratory_or_test_result genetic_function +rel manifestation_of laboratory_or_test_result injury_or_poisoning +rel manifestation_of laboratory_or_test_result mental_or_behavioral_dysfunction +rel manifestation_of laboratory_or_test_result mental_process +rel manifestation_of laboratory_or_test_result molecular_function +rel manifestation_of laboratory_or_test_result neoplastic_process +rel manifestation_of laboratory_or_test_result organism_function +rel manifestation_of laboratory_or_test_result organ_or_tissue_function +rel manifestation_of laboratory_or_test_result pathologic_function +rel manifestation_of laboratory_or_test_result physiologic_function +rel manifestation_of mental_or_behavioral_dysfunction cell_function +rel manifestation_of mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel manifestation_of mental_or_behavioral_dysfunction disease_or_syndrome +rel manifestation_of mental_or_behavioral_dysfunction experimental_model_of_disease +rel manifestation_of mental_or_behavioral_dysfunction genetic_function +rel manifestation_of mental_or_behavioral_dysfunction injury_or_poisoning +rel manifestation_of mental_or_behavioral_dysfunction mental_process +rel manifestation_of mental_or_behavioral_dysfunction molecular_function +rel manifestation_of mental_or_behavioral_dysfunction neoplastic_process +rel manifestation_of mental_or_behavioral_dysfunction organism_function +rel manifestation_of mental_or_behavioral_dysfunction organ_or_tissue_function +rel manifestation_of mental_or_behavioral_dysfunction pathologic_function +rel manifestation_of mental_or_behavioral_dysfunction physiologic_function +rel manifestation_of neoplastic_process cell_function +rel manifestation_of neoplastic_process cell_or_molecular_dysfunction +rel manifestation_of neoplastic_process disease_or_syndrome +rel manifestation_of neoplastic_process experimental_model_of_disease +rel manifestation_of neoplastic_process genetic_function +rel manifestation_of neoplastic_process injury_or_poisoning +rel manifestation_of neoplastic_process mental_or_behavioral_dysfunction +rel manifestation_of neoplastic_process mental_process +rel manifestation_of neoplastic_process molecular_function +rel manifestation_of neoplastic_process organism_function +rel manifestation_of neoplastic_process organ_or_tissue_function +rel manifestation_of neoplastic_process pathologic_function +rel manifestation_of neoplastic_process physiologic_function +rel manifestation_of organism_attribute cell_function +rel manifestation_of organism_attribute genetic_function +rel manifestation_of organism_attribute mental_process +rel manifestation_of organism_attribute molecular_function +rel manifestation_of organism_attribute organism_function +rel manifestation_of organism_attribute organ_or_tissue_function +rel manifestation_of organism_attribute physiologic_function +rel manifestation_of pathologic_function cell_function +rel manifestation_of pathologic_function cell_or_molecular_dysfunction +rel manifestation_of pathologic_function disease_or_syndrome +rel manifestation_of pathologic_function experimental_model_of_disease +rel manifestation_of pathologic_function genetic_function +rel manifestation_of pathologic_function injury_or_poisoning +rel manifestation_of pathologic_function mental_or_behavioral_dysfunction +rel manifestation_of pathologic_function mental_process +rel manifestation_of pathologic_function molecular_function +rel manifestation_of pathologic_function neoplastic_process +rel manifestation_of pathologic_function organism_function +rel manifestation_of pathologic_function organ_or_tissue_function +rel manifestation_of pathologic_function physiologic_function +rel manifestation_of sign_or_symptom acquired_abnormality +rel manifestation_of sign_or_symptom anatomical_abnormality +rel manifestation_of sign_or_symptom biologic_function +rel manifestation_of sign_or_symptom cell_function +rel manifestation_of sign_or_symptom cell_or_molecular_dysfunction +rel manifestation_of sign_or_symptom congenital_abnormality +rel manifestation_of sign_or_symptom disease_or_syndrome +rel manifestation_of sign_or_symptom experimental_model_of_disease +rel manifestation_of sign_or_symptom genetic_function +rel manifestation_of sign_or_symptom injury_or_poisoning +rel manifestation_of sign_or_symptom mental_or_behavioral_dysfunction +rel manifestation_of sign_or_symptom mental_process +rel manifestation_of sign_or_symptom molecular_function +rel manifestation_of sign_or_symptom neoplastic_process +rel manifestation_of sign_or_symptom organism_function +rel manifestation_of sign_or_symptom organ_or_tissue_function +rel manifestation_of sign_or_symptom pathologic_function +rel manifestation_of sign_or_symptom physiologic_function +rel manifestation_of social_behavior mental_or_behavioral_dysfunction +rel manifestation_of social_behavior mental_process +rel measurement_of clinical_attribute cell_function +rel measurement_of clinical_attribute genetic_function +rel measurement_of clinical_attribute mental_process +rel measurement_of clinical_attribute molecular_function +rel measurement_of clinical_attribute organism_function +rel measurement_of clinical_attribute organ_or_tissue_function +rel measurement_of clinical_attribute physiologic_function +rel measurement_of laboratory_or_test_result amino_acid_peptide_or_protein +rel measurement_of laboratory_or_test_result antibiotic +rel measurement_of laboratory_or_test_result biologically_active_substance +rel measurement_of laboratory_or_test_result biomedical_or_dental_material +rel measurement_of laboratory_or_test_result body_substance +rel measurement_of laboratory_or_test_result carbohydrate +rel measurement_of laboratory_or_test_result cell_function +rel measurement_of laboratory_or_test_result chemical +rel measurement_of laboratory_or_test_result chemical_viewed_functionally +rel measurement_of laboratory_or_test_result chemical_viewed_structurally +rel measurement_of laboratory_or_test_result eicosanoid +rel measurement_of laboratory_or_test_result element_ion_or_isotope +rel measurement_of laboratory_or_test_result enzyme +rel measurement_of laboratory_or_test_result food +rel measurement_of laboratory_or_test_result genetic_function +rel measurement_of laboratory_or_test_result hazardous_or_poisonous_substance +rel measurement_of laboratory_or_test_result hormone +rel measurement_of laboratory_or_test_result immunologic_factor +rel measurement_of laboratory_or_test_result indicator_reagent_or_diagnostic_aid +rel measurement_of laboratory_or_test_result inorganic_chemical +rel measurement_of laboratory_or_test_result lipid +rel measurement_of laboratory_or_test_result mental_process +rel measurement_of laboratory_or_test_result molecular_function +rel measurement_of laboratory_or_test_result neuroreactive_substance_or_biogenic_amine +rel measurement_of laboratory_or_test_result nucleic_acid_nucleoside_or_nucleotide +rel measurement_of laboratory_or_test_result organic_chemical +rel measurement_of laboratory_or_test_result organism_function +rel measurement_of laboratory_or_test_result organophosphorus_compound +rel measurement_of laboratory_or_test_result organ_or_tissue_function +rel measurement_of laboratory_or_test_result pharmacologic_substance +rel measurement_of laboratory_or_test_result physiologic_function +rel measurement_of laboratory_or_test_result receptor +rel measurement_of laboratory_or_test_result steroid +rel measurement_of laboratory_or_test_result substance +rel measurement_of laboratory_or_test_result vitamin +rel measurement_of organism_attribute cell_function +rel measurement_of organism_attribute genetic_function +rel measurement_of organism_attribute mental_process +rel measurement_of organism_attribute molecular_function +rel measurement_of organism_attribute organism_function +rel measurement_of organism_attribute organ_or_tissue_function +rel measurement_of organism_attribute physiologic_function +rel measurement_of quantitative_concept amino_acid_sequence +rel measurement_of quantitative_concept body_location_or_region +rel measurement_of quantitative_concept body_space_or_junction +rel measurement_of quantitative_concept carbohydrate_sequence +rel measurement_of quantitative_concept cell_function +rel measurement_of quantitative_concept genetic_function +rel measurement_of quantitative_concept geographic_area +rel measurement_of quantitative_concept mental_process +rel measurement_of quantitative_concept molecular_function +rel measurement_of quantitative_concept molecular_sequence +rel measurement_of quantitative_concept nucleotide_sequence +rel measurement_of quantitative_concept organism_function +rel measurement_of quantitative_concept organ_or_tissue_function +rel measurement_of quantitative_concept physiologic_function +rel measurement_of quantitative_concept spatial_concept +rel measures diagnostic_procedure amino_acid_peptide_or_protein +rel measures diagnostic_procedure antibiotic +rel measures diagnostic_procedure biologically_active_substance +rel measures diagnostic_procedure biologic_function +rel measures diagnostic_procedure biomedical_or_dental_material +rel measures diagnostic_procedure body_substance +rel measures diagnostic_procedure carbohydrate +rel measures diagnostic_procedure cell_function +rel measures diagnostic_procedure cell_or_molecular_dysfunction +rel measures diagnostic_procedure chemical +rel measures diagnostic_procedure chemical_viewed_functionally +rel measures diagnostic_procedure chemical_viewed_structurally +rel measures diagnostic_procedure clinical_attribute +rel measures diagnostic_procedure disease_or_syndrome +rel measures diagnostic_procedure eicosanoid +rel measures diagnostic_procedure element_ion_or_isotope +rel measures diagnostic_procedure enzyme +rel measures diagnostic_procedure experimental_model_of_disease +rel measures diagnostic_procedure genetic_function +rel measures diagnostic_procedure hazardous_or_poisonous_substance +rel measures diagnostic_procedure hormone +rel measures diagnostic_procedure immunologic_factor +rel measures diagnostic_procedure indicator_reagent_or_diagnostic_aid +rel measures diagnostic_procedure inorganic_chemical +rel measures diagnostic_procedure lipid +rel measures diagnostic_procedure mental_or_behavioral_dysfunction +rel measures diagnostic_procedure mental_process +rel measures diagnostic_procedure molecular_function +rel measures diagnostic_procedure natural_phenomenon_or_process +rel measures diagnostic_procedure neoplastic_process +rel measures diagnostic_procedure neuroreactive_substance_or_biogenic_amine +rel measures diagnostic_procedure nucleic_acid_nucleoside_or_nucleotide +rel measures diagnostic_procedure organic_chemical +rel measures diagnostic_procedure organism_attribute +rel measures diagnostic_procedure organism_function +rel measures diagnostic_procedure organophosphorus_compound +rel measures diagnostic_procedure organ_or_tissue_function +rel measures diagnostic_procedure pathologic_function +rel measures diagnostic_procedure pharmacologic_substance +rel measures diagnostic_procedure physiologic_function +rel measures diagnostic_procedure quantitative_concept +rel measures diagnostic_procedure receptor +rel measures diagnostic_procedure steroid +rel measures diagnostic_procedure temporal_concept +rel measures diagnostic_procedure vitamin +rel measures laboratory_procedure amino_acid_peptide_or_protein +rel measures laboratory_procedure antibiotic +rel measures laboratory_procedure biologically_active_substance +rel measures laboratory_procedure biologic_function +rel measures laboratory_procedure biomedical_or_dental_material +rel measures laboratory_procedure body_substance +rel measures laboratory_procedure carbohydrate +rel measures laboratory_procedure cell_function +rel measures laboratory_procedure cell_or_molecular_dysfunction +rel measures laboratory_procedure chemical +rel measures laboratory_procedure chemical_viewed_functionally +rel measures laboratory_procedure chemical_viewed_structurally +rel measures laboratory_procedure clinical_attribute +rel measures laboratory_procedure disease_or_syndrome +rel measures laboratory_procedure eicosanoid +rel measures laboratory_procedure element_ion_or_isotope +rel measures laboratory_procedure enzyme +rel measures laboratory_procedure experimental_model_of_disease +rel measures laboratory_procedure genetic_function +rel measures laboratory_procedure hazardous_or_poisonous_substance +rel measures laboratory_procedure hormone +rel measures laboratory_procedure immunologic_factor +rel measures laboratory_procedure indicator_reagent_or_diagnostic_aid +rel measures laboratory_procedure inorganic_chemical +rel measures laboratory_procedure lipid +rel measures laboratory_procedure mental_or_behavioral_dysfunction +rel measures laboratory_procedure mental_process +rel measures laboratory_procedure molecular_function +rel measures laboratory_procedure natural_phenomenon_or_process +rel measures laboratory_procedure neoplastic_process +rel measures laboratory_procedure neuroreactive_substance_or_biogenic_amine +rel measures laboratory_procedure nucleic_acid_nucleoside_or_nucleotide +rel measures laboratory_procedure organic_chemical +rel measures laboratory_procedure organism_attribute +rel measures laboratory_procedure organism_function +rel measures laboratory_procedure organophosphorus_compound +rel measures laboratory_procedure organ_or_tissue_function +rel measures laboratory_procedure pathologic_function +rel measures laboratory_procedure pharmacologic_substance +rel measures laboratory_procedure physiologic_function +rel measures laboratory_procedure quantitative_concept +rel measures laboratory_procedure receptor +rel measures laboratory_procedure steroid +rel measures laboratory_procedure temporal_concept +rel measures laboratory_procedure vitamin +rel measures molecular_biology_research_technique amino_acid_peptide_or_protein +rel measures molecular_biology_research_technique antibiotic +rel measures molecular_biology_research_technique biologically_active_substance +rel measures molecular_biology_research_technique biologic_function +rel measures molecular_biology_research_technique biomedical_or_dental_material +rel measures molecular_biology_research_technique body_substance +rel measures molecular_biology_research_technique carbohydrate +rel measures molecular_biology_research_technique cell_function +rel measures molecular_biology_research_technique cell_or_molecular_dysfunction +rel measures molecular_biology_research_technique chemical +rel measures molecular_biology_research_technique chemical_viewed_functionally +rel measures molecular_biology_research_technique chemical_viewed_structurally +rel measures molecular_biology_research_technique clinical_attribute +rel measures molecular_biology_research_technique disease_or_syndrome +rel measures molecular_biology_research_technique eicosanoid +rel measures molecular_biology_research_technique element_ion_or_isotope +rel measures molecular_biology_research_technique enzyme +rel measures molecular_biology_research_technique experimental_model_of_disease +rel measures molecular_biology_research_technique genetic_function +rel measures molecular_biology_research_technique hazardous_or_poisonous_substance +rel measures molecular_biology_research_technique hormone +rel measures molecular_biology_research_technique immunologic_factor +rel measures molecular_biology_research_technique indicator_reagent_or_diagnostic_aid +rel measures molecular_biology_research_technique inorganic_chemical +rel measures molecular_biology_research_technique lipid +rel measures molecular_biology_research_technique mental_or_behavioral_dysfunction +rel measures molecular_biology_research_technique mental_process +rel measures molecular_biology_research_technique molecular_function +rel measures molecular_biology_research_technique natural_phenomenon_or_process +rel measures molecular_biology_research_technique neoplastic_process +rel measures molecular_biology_research_technique neuroreactive_substance_or_biogenic_amine +rel measures molecular_biology_research_technique nucleic_acid_nucleoside_or_nucleotide +rel measures molecular_biology_research_technique organic_chemical +rel measures molecular_biology_research_technique organism_attribute +rel measures molecular_biology_research_technique organism_function +rel measures molecular_biology_research_technique organophosphorus_compound +rel measures molecular_biology_research_technique organ_or_tissue_function +rel measures molecular_biology_research_technique pathologic_function +rel measures molecular_biology_research_technique pharmacologic_substance +rel measures molecular_biology_research_technique physiologic_function +rel measures molecular_biology_research_technique quantitative_concept +rel measures molecular_biology_research_technique receptor +rel measures molecular_biology_research_technique steroid +rel measures molecular_biology_research_technique temporal_concept +rel measures molecular_biology_research_technique vitamin +rel measures research_activity amino_acid_peptide_or_protein +rel measures research_activity antibiotic +rel measures research_activity biologically_active_substance +rel measures research_activity biologic_function +rel measures research_activity biomedical_or_dental_material +rel measures research_activity body_substance +rel measures research_activity carbohydrate +rel measures research_activity cell_function +rel measures research_activity cell_or_molecular_dysfunction +rel measures research_activity chemical +rel measures research_activity chemical_viewed_functionally +rel measures research_activity chemical_viewed_structurally +rel measures research_activity clinical_attribute +rel measures research_activity disease_or_syndrome +rel measures research_activity eicosanoid +rel measures research_activity element_ion_or_isotope +rel measures research_activity enzyme +rel measures research_activity experimental_model_of_disease +rel measures research_activity genetic_function +rel measures research_activity hazardous_or_poisonous_substance +rel measures research_activity hormone +rel measures research_activity immunologic_factor +rel measures research_activity indicator_reagent_or_diagnostic_aid +rel measures research_activity inorganic_chemical +rel measures research_activity lipid +rel measures research_activity mental_or_behavioral_dysfunction +rel measures research_activity mental_process +rel measures research_activity molecular_function +rel measures research_activity natural_phenomenon_or_process +rel measures research_activity neoplastic_process +rel measures research_activity neuroreactive_substance_or_biogenic_amine +rel measures research_activity nucleic_acid_nucleoside_or_nucleotide +rel measures research_activity organic_chemical +rel measures research_activity organism_attribute +rel measures research_activity organism_function +rel measures research_activity organophosphorus_compound +rel measures research_activity organ_or_tissue_function +rel measures research_activity pathologic_function +rel measures research_activity pharmacologic_substance +rel measures research_activity physiologic_function +rel measures research_activity quantitative_concept +rel measures research_activity receptor +rel measures research_activity steroid +rel measures research_activity temporal_concept +rel measures research_activity vitamin +rel method_of diagnostic_procedure biomedical_occupation_or_discipline +rel method_of diagnostic_procedure occupation_or_discipline +rel method_of educational_activity biomedical_occupation_or_discipline +rel method_of educational_activity occupation_or_discipline +rel method_of governmental_or_regulatory_activity biomedical_occupation_or_discipline +rel method_of governmental_or_regulatory_activity occupation_or_discipline +rel method_of health_care_activity biomedical_occupation_or_discipline +rel method_of health_care_activity occupation_or_discipline +rel method_of laboratory_procedure biomedical_occupation_or_discipline +rel method_of laboratory_procedure diagnostic_procedure +rel method_of laboratory_procedure occupation_or_discipline +rel method_of laboratory_procedure therapeutic_or_preventive_procedure +rel method_of machine_activity diagnostic_procedure +rel method_of machine_activity laboratory_procedure +rel method_of machine_activity therapeutic_or_preventive_procedure +rel method_of molecular_biology_research_technique biomedical_occupation_or_discipline +rel method_of molecular_biology_research_technique diagnostic_procedure +rel method_of molecular_biology_research_technique occupation_or_discipline +rel method_of molecular_biology_research_technique therapeutic_or_preventive_procedure +rel method_of occupational_activity biomedical_occupation_or_discipline +rel method_of occupational_activity occupation_or_discipline +rel method_of research_activity biomedical_occupation_or_discipline +rel method_of research_activity occupation_or_discipline +rel method_of therapeutic_or_preventive_procedure biomedical_occupation_or_discipline +rel method_of therapeutic_or_preventive_procedure occupation_or_discipline +rel occurs_in acquired_abnormality age_group +rel occurs_in acquired_abnormality family_group +rel occurs_in acquired_abnormality group +rel occurs_in acquired_abnormality patient_or_disabled_group +rel occurs_in acquired_abnormality population_group +rel occurs_in acquired_abnormality professional_or_occupational_group +rel occurs_in anatomical_abnormality age_group +rel occurs_in anatomical_abnormality family_group +rel occurs_in anatomical_abnormality group +rel occurs_in anatomical_abnormality patient_or_disabled_group +rel occurs_in anatomical_abnormality population_group +rel occurs_in anatomical_abnormality professional_or_occupational_group +rel occurs_in cell_function temporal_concept +rel occurs_in cell_or_molecular_dysfunction age_group +rel occurs_in cell_or_molecular_dysfunction disease_or_syndrome +rel occurs_in cell_or_molecular_dysfunction family_group +rel occurs_in cell_or_molecular_dysfunction group +rel occurs_in cell_or_molecular_dysfunction injury_or_poisoning +rel occurs_in cell_or_molecular_dysfunction mental_or_behavioral_dysfunction +rel occurs_in cell_or_molecular_dysfunction neoplastic_process +rel occurs_in cell_or_molecular_dysfunction patient_or_disabled_group +rel occurs_in cell_or_molecular_dysfunction population_group +rel occurs_in cell_or_molecular_dysfunction professional_or_occupational_group +rel occurs_in congenital_abnormality age_group +rel occurs_in congenital_abnormality family_group +rel occurs_in congenital_abnormality group +rel occurs_in congenital_abnormality patient_or_disabled_group +rel occurs_in congenital_abnormality population_group +rel occurs_in congenital_abnormality professional_or_occupational_group +rel occurs_in disease_or_syndrome age_group +rel occurs_in disease_or_syndrome family_group +rel occurs_in disease_or_syndrome group +rel occurs_in disease_or_syndrome injury_or_poisoning +rel occurs_in disease_or_syndrome mental_or_behavioral_dysfunction +rel occurs_in disease_or_syndrome neoplastic_process +rel occurs_in disease_or_syndrome patient_or_disabled_group +rel occurs_in disease_or_syndrome population_group +rel occurs_in disease_or_syndrome professional_or_occupational_group +rel occurs_in experimental_model_of_disease age_group +rel occurs_in experimental_model_of_disease disease_or_syndrome +rel occurs_in experimental_model_of_disease family_group +rel occurs_in experimental_model_of_disease group +rel occurs_in experimental_model_of_disease injury_or_poisoning +rel occurs_in experimental_model_of_disease mental_or_behavioral_dysfunction +rel occurs_in experimental_model_of_disease neoplastic_process +rel occurs_in experimental_model_of_disease patient_or_disabled_group +rel occurs_in experimental_model_of_disease population_group +rel occurs_in experimental_model_of_disease professional_or_occupational_group +rel occurs_in genetic_function temporal_concept +rel occurs_in injury_or_poisoning age_group +rel occurs_in injury_or_poisoning family_group +rel occurs_in injury_or_poisoning group +rel occurs_in injury_or_poisoning patient_or_disabled_group +rel occurs_in injury_or_poisoning population_group +rel occurs_in injury_or_poisoning professional_or_occupational_group +rel occurs_in mental_or_behavioral_dysfunction age_group +rel occurs_in mental_or_behavioral_dysfunction disease_or_syndrome +rel occurs_in mental_or_behavioral_dysfunction family_group +rel occurs_in mental_or_behavioral_dysfunction group +rel occurs_in mental_or_behavioral_dysfunction injury_or_poisoning +rel occurs_in mental_or_behavioral_dysfunction neoplastic_process +rel occurs_in mental_or_behavioral_dysfunction patient_or_disabled_group +rel occurs_in mental_or_behavioral_dysfunction population_group +rel occurs_in mental_or_behavioral_dysfunction professional_or_occupational_group +rel occurs_in mental_process temporal_concept +rel occurs_in molecular_function temporal_concept +rel occurs_in neoplastic_process age_group +rel occurs_in neoplastic_process disease_or_syndrome +rel occurs_in neoplastic_process family_group +rel occurs_in neoplastic_process group +rel occurs_in neoplastic_process injury_or_poisoning +rel occurs_in neoplastic_process mental_or_behavioral_dysfunction +rel occurs_in neoplastic_process patient_or_disabled_group +rel occurs_in neoplastic_process population_group +rel occurs_in neoplastic_process professional_or_occupational_group +rel occurs_in organism_function temporal_concept +rel occurs_in organ_or_tissue_function mental_process +rel occurs_in organ_or_tissue_function organism_function +rel occurs_in organ_or_tissue_function temporal_concept +rel occurs_in pathologic_function age_group +rel occurs_in pathologic_function disease_or_syndrome +rel occurs_in pathologic_function family_group +rel occurs_in pathologic_function group +rel occurs_in pathologic_function injury_or_poisoning +rel occurs_in pathologic_function mental_or_behavioral_dysfunction +rel occurs_in pathologic_function neoplastic_process +rel occurs_in pathologic_function patient_or_disabled_group +rel occurs_in pathologic_function population_group +rel occurs_in pathologic_function professional_or_occupational_group +rel occurs_in physiologic_function temporal_concept +rel part_of acquired_abnormality alga +rel part_of acquired_abnormality amphibian +rel part_of acquired_abnormality animal +rel part_of acquired_abnormality archaeon +rel part_of acquired_abnormality bacterium +rel part_of acquired_abnormality bird +rel part_of acquired_abnormality fish +rel part_of acquired_abnormality fungus +rel part_of acquired_abnormality human +rel part_of acquired_abnormality invertebrate +rel part_of acquired_abnormality mammal +rel part_of acquired_abnormality organism +rel part_of acquired_abnormality plant +rel part_of acquired_abnormality reptile +rel part_of acquired_abnormality rickettsia_or_chlamydia +rel part_of acquired_abnormality vertebrate +rel part_of acquired_abnormality virus +rel part_of anatomical_abnormality alga +rel part_of anatomical_abnormality amphibian +rel part_of anatomical_abnormality animal +rel part_of anatomical_abnormality archaeon +rel part_of anatomical_abnormality bacterium +rel part_of anatomical_abnormality bird +rel part_of anatomical_abnormality fish +rel part_of anatomical_abnormality fungus +rel part_of anatomical_abnormality human +rel part_of anatomical_abnormality invertebrate +rel part_of anatomical_abnormality mammal +rel part_of anatomical_abnormality organism +rel part_of anatomical_abnormality plant +rel part_of anatomical_abnormality reptile +rel part_of anatomical_abnormality rickettsia_or_chlamydia +rel part_of anatomical_abnormality vertebrate +rel part_of anatomical_abnormality virus +rel part_of anatomical_structure alga +rel part_of anatomical_structure amphibian +rel part_of anatomical_structure animal +rel part_of anatomical_structure archaeon +rel part_of anatomical_structure bacterium +rel part_of anatomical_structure bird +rel part_of anatomical_structure fish +rel part_of anatomical_structure fungus +rel part_of anatomical_structure human +rel part_of anatomical_structure invertebrate +rel part_of anatomical_structure mammal +rel part_of anatomical_structure organism +rel part_of anatomical_structure plant +rel part_of anatomical_structure reptile +rel part_of anatomical_structure rickettsia_or_chlamydia +rel part_of anatomical_structure vertebrate +rel part_of anatomical_structure virus +rel part_of body_part_organ_or_organ_component alga +rel part_of body_part_organ_or_organ_component amphibian +rel part_of body_part_organ_or_organ_component animal +rel part_of body_part_organ_or_organ_component archaeon +rel part_of body_part_organ_or_organ_component bacterium +rel part_of body_part_organ_or_organ_component bird +rel part_of body_part_organ_or_organ_component fish +rel part_of body_part_organ_or_organ_component fungus +rel part_of body_part_organ_or_organ_component human +rel part_of body_part_organ_or_organ_component invertebrate +rel part_of body_part_organ_or_organ_component mammal +rel part_of body_part_organ_or_organ_component organism +rel part_of body_part_organ_or_organ_component plant +rel part_of body_part_organ_or_organ_component reptile +rel part_of body_part_organ_or_organ_component rickettsia_or_chlamydia +rel part_of body_part_organ_or_organ_component vertebrate +rel part_of body_part_organ_or_organ_component virus +rel part_of body_space_or_junction body_part_organ_or_organ_component +rel part_of body_substance body_part_organ_or_organ_component +rel part_of cell alga +rel part_of cell amphibian +rel part_of cell animal +rel part_of cell archaeon +rel part_of cell bacterium +rel part_of cell bird +rel part_of cell body_part_organ_or_organ_component +rel part_of cell_component alga +rel part_of cell_component amphibian +rel part_of cell_component animal +rel part_of cell_component archaeon +rel part_of cell_component bacterium +rel part_of cell_component bird +rel part_of cell_component body_part_organ_or_organ_component +rel part_of cell_component cell +rel part_of cell_component fish +rel part_of cell_component fungus +rel part_of cell_component human +rel part_of cell_component invertebrate +rel part_of cell_component mammal +rel part_of cell_component organism +rel part_of cell_component plant +rel part_of cell_component reptile +rel part_of cell_component rickettsia_or_chlamydia +rel part_of cell_component tissue +rel part_of cell_component vertebrate +rel part_of cell_component virus +rel part_of cell fish +rel part_of cell fungus +rel part_of cell human +rel part_of cell invertebrate +rel part_of cell mammal +rel part_of cell organism +rel part_of cell plant +rel part_of cell reptile +rel part_of cell rickettsia_or_chlamydia +rel part_of cell tissue +rel part_of cell vertebrate +rel part_of cell virus +rel part_of congenital_abnormality alga +rel part_of congenital_abnormality amphibian +rel part_of congenital_abnormality animal +rel part_of congenital_abnormality archaeon +rel part_of congenital_abnormality bacterium +rel part_of congenital_abnormality bird +rel part_of congenital_abnormality fish +rel part_of congenital_abnormality fungus +rel part_of congenital_abnormality human +rel part_of congenital_abnormality invertebrate +rel part_of congenital_abnormality mammal +rel part_of congenital_abnormality organism +rel part_of congenital_abnormality plant +rel part_of congenital_abnormality reptile +rel part_of congenital_abnormality rickettsia_or_chlamydia +rel part_of congenital_abnormality vertebrate +rel part_of congenital_abnormality virus +rel part_of embryonic_structure alga +rel part_of embryonic_structure amphibian +rel part_of embryonic_structure animal +rel part_of embryonic_structure archaeon +rel part_of embryonic_structure bacterium +rel part_of embryonic_structure bird +rel part_of embryonic_structure cell +rel part_of embryonic_structure fish +rel part_of embryonic_structure fungus +rel part_of embryonic_structure human +rel part_of embryonic_structure invertebrate +rel part_of embryonic_structure mammal +rel part_of embryonic_structure organism +rel part_of embryonic_structure plant +rel part_of embryonic_structure reptile +rel part_of embryonic_structure rickettsia_or_chlamydia +rel part_of embryonic_structure vertebrate +rel part_of embryonic_structure virus +rel part_of fully_formed_anatomical_structure alga +rel part_of fully_formed_anatomical_structure amphibian +rel part_of fully_formed_anatomical_structure animal +rel part_of fully_formed_anatomical_structure archaeon +rel part_of fully_formed_anatomical_structure bacterium +rel part_of fully_formed_anatomical_structure bird +rel part_of fully_formed_anatomical_structure fish +rel part_of fully_formed_anatomical_structure fungus +rel part_of fully_formed_anatomical_structure human +rel part_of fully_formed_anatomical_structure invertebrate +rel part_of fully_formed_anatomical_structure mammal +rel part_of fully_formed_anatomical_structure organism +rel part_of fully_formed_anatomical_structure plant +rel part_of fully_formed_anatomical_structure reptile +rel part_of fully_formed_anatomical_structure rickettsia_or_chlamydia +rel part_of fully_formed_anatomical_structure vertebrate +rel part_of fully_formed_anatomical_structure virus +rel part_of gene_or_genome alga +rel part_of gene_or_genome amphibian +rel part_of gene_or_genome animal +rel part_of gene_or_genome archaeon +rel part_of gene_or_genome bacterium +rel part_of gene_or_genome bird +rel part_of gene_or_genome body_part_organ_or_organ_component +rel part_of gene_or_genome cell +rel part_of gene_or_genome cell_component +rel part_of gene_or_genome fish +rel part_of gene_or_genome fungus +rel part_of gene_or_genome human +rel part_of gene_or_genome invertebrate +rel part_of gene_or_genome mammal +rel part_of gene_or_genome organism +rel part_of gene_or_genome plant +rel part_of gene_or_genome reptile +rel part_of gene_or_genome rickettsia_or_chlamydia +rel part_of gene_or_genome tissue +rel part_of gene_or_genome vertebrate +rel part_of gene_or_genome virus +rel part_of tissue alga +rel part_of tissue amphibian +rel part_of tissue animal +rel part_of tissue archaeon +rel part_of tissue bacterium +rel part_of tissue bird +rel part_of tissue body_part_organ_or_organ_component +rel part_of tissue fish +rel part_of tissue fungus +rel part_of tissue human +rel part_of tissue invertebrate +rel part_of tissue mammal +rel part_of tissue organism +rel part_of tissue plant +rel part_of tissue reptile +rel part_of tissue rickettsia_or_chlamydia +rel part_of tissue vertebrate +rel part_of tissue virus +rel performs age_group activity +rel performs age_group behavior +rel performs age_group daily_or_recreational_activity +rel performs age_group diagnostic_procedure +rel performs age_group educational_activity +rel performs age_group governmental_or_regulatory_activity +rel performs age_group health_care_activity +rel performs age_group individual_behavior +rel performs age_group laboratory_procedure +rel performs age_group machine_activity +rel performs age_group molecular_biology_research_technique +rel performs age_group occupational_activity +rel performs age_group research_activity +rel performs age_group social_behavior +rel performs age_group therapeutic_or_preventive_procedure +rel performs family_group activity +rel performs family_group behavior +rel performs family_group daily_or_recreational_activity +rel performs family_group diagnostic_procedure +rel performs family_group educational_activity +rel performs family_group governmental_or_regulatory_activity +rel performs family_group health_care_activity +rel performs family_group individual_behavior +rel performs family_group laboratory_procedure +rel performs family_group machine_activity +rel performs family_group molecular_biology_research_technique +rel performs family_group occupational_activity +rel performs family_group research_activity +rel performs family_group social_behavior +rel performs family_group therapeutic_or_preventive_procedure +rel performs group activity +rel performs group behavior +rel performs group daily_or_recreational_activity +rel performs group diagnostic_procedure +rel performs group educational_activity +rel performs group governmental_or_regulatory_activity +rel performs group health_care_activity +rel performs group individual_behavior +rel performs group laboratory_procedure +rel performs group machine_activity +rel performs group molecular_biology_research_technique +rel performs group occupational_activity +rel performs group research_activity +rel performs group social_behavior +rel performs group therapeutic_or_preventive_procedure +rel performs patient_or_disabled_group activity +rel performs patient_or_disabled_group behavior +rel performs patient_or_disabled_group daily_or_recreational_activity +rel performs patient_or_disabled_group diagnostic_procedure +rel performs patient_or_disabled_group educational_activity +rel performs patient_or_disabled_group governmental_or_regulatory_activity +rel performs patient_or_disabled_group health_care_activity +rel performs patient_or_disabled_group individual_behavior +rel performs patient_or_disabled_group laboratory_procedure +rel performs patient_or_disabled_group machine_activity +rel performs patient_or_disabled_group molecular_biology_research_technique +rel performs patient_or_disabled_group occupational_activity +rel performs patient_or_disabled_group research_activity +rel performs patient_or_disabled_group social_behavior +rel performs patient_or_disabled_group therapeutic_or_preventive_procedure +rel performs population_group activity +rel performs population_group behavior +rel performs population_group daily_or_recreational_activity +rel performs population_group diagnostic_procedure +rel performs population_group educational_activity +rel performs population_group governmental_or_regulatory_activity +rel performs population_group health_care_activity +rel performs population_group individual_behavior +rel performs population_group laboratory_procedure +rel performs population_group machine_activity +rel performs population_group molecular_biology_research_technique +rel performs population_group occupational_activity +rel performs population_group research_activity +rel performs population_group social_behavior +rel performs population_group therapeutic_or_preventive_procedure +rel performs professional_or_occupational_group activity +rel performs professional_or_occupational_group behavior +rel performs professional_or_occupational_group daily_or_recreational_activity +rel performs professional_or_occupational_group diagnostic_procedure +rel performs professional_or_occupational_group educational_activity +rel performs professional_or_occupational_group governmental_or_regulatory_activity +rel performs professional_or_occupational_group health_care_activity +rel performs professional_or_occupational_group individual_behavior +rel performs professional_or_occupational_group laboratory_procedure +rel performs professional_or_occupational_group machine_activity +rel performs professional_or_occupational_group molecular_biology_research_technique +rel performs professional_or_occupational_group occupational_activity +rel performs professional_or_occupational_group research_activity +rel performs professional_or_occupational_group social_behavior +rel performs professional_or_occupational_group therapeutic_or_preventive_procedure +rel practices professional_or_occupational_group biomedical_occupation_or_discipline +rel practices professional_or_occupational_group occupation_or_discipline +rel precedes cell_function genetic_function +rel precedes cell_function mental_process +rel precedes cell_function molecular_function +rel precedes cell_function organism_function +rel precedes cell_function organ_or_tissue_function +rel precedes cell_function physiologic_function +rel precedes cell_or_molecular_dysfunction disease_or_syndrome +rel precedes cell_or_molecular_dysfunction experimental_model_of_disease +rel precedes cell_or_molecular_dysfunction mental_or_behavioral_dysfunction +rel precedes cell_or_molecular_dysfunction neoplastic_process +rel precedes cell_or_molecular_dysfunction pathologic_function +rel precedes diagnostic_procedure therapeutic_or_preventive_procedure +rel precedes disease_or_syndrome cell_or_molecular_dysfunction +rel precedes disease_or_syndrome experimental_model_of_disease +rel precedes disease_or_syndrome mental_or_behavioral_dysfunction +rel precedes disease_or_syndrome neoplastic_process +rel precedes disease_or_syndrome pathologic_function +rel precedes experimental_model_of_disease cell_or_molecular_dysfunction +rel precedes experimental_model_of_disease disease_or_syndrome +rel precedes experimental_model_of_disease mental_or_behavioral_dysfunction +rel precedes experimental_model_of_disease neoplastic_process +rel precedes experimental_model_of_disease pathologic_function +rel precedes genetic_function cell_function +rel precedes genetic_function mental_process +rel precedes genetic_function molecular_function +rel precedes genetic_function organism_function +rel precedes genetic_function organ_or_tissue_function +rel precedes genetic_function physiologic_function +rel precedes mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel precedes mental_or_behavioral_dysfunction disease_or_syndrome +rel precedes mental_or_behavioral_dysfunction experimental_model_of_disease +rel precedes mental_or_behavioral_dysfunction neoplastic_process +rel precedes mental_or_behavioral_dysfunction pathologic_function +rel precedes mental_process cell_function +rel precedes mental_process genetic_function +rel precedes mental_process molecular_function +rel precedes mental_process organism_function +rel precedes mental_process organ_or_tissue_function +rel precedes mental_process physiologic_function +rel precedes molecular_function cell_function +rel precedes molecular_function genetic_function +rel precedes molecular_function mental_process +rel precedes molecular_function organism_function +rel precedes molecular_function organ_or_tissue_function +rel precedes molecular_function physiologic_function +rel precedes neoplastic_process cell_or_molecular_dysfunction +rel precedes neoplastic_process disease_or_syndrome +rel precedes neoplastic_process experimental_model_of_disease +rel precedes neoplastic_process mental_or_behavioral_dysfunction +rel precedes neoplastic_process pathologic_function +rel precedes organism_function cell_function +rel precedes organism_function genetic_function +rel precedes organism_function mental_process +rel precedes organism_function molecular_function +rel precedes organism_function organ_or_tissue_function +rel precedes organism_function physiologic_function +rel precedes organ_or_tissue_function cell_function +rel precedes organ_or_tissue_function genetic_function +rel precedes organ_or_tissue_function mental_process +rel precedes organ_or_tissue_function molecular_function +rel precedes organ_or_tissue_function organism_function +rel precedes organ_or_tissue_function physiologic_function +rel precedes pathologic_function cell_or_molecular_dysfunction +rel precedes pathologic_function disease_or_syndrome +rel precedes pathologic_function experimental_model_of_disease +rel precedes pathologic_function mental_or_behavioral_dysfunction +rel precedes pathologic_function neoplastic_process +rel precedes physiologic_function cell_function +rel precedes physiologic_function genetic_function +rel precedes physiologic_function mental_process +rel precedes physiologic_function molecular_function +rel precedes physiologic_function organism_function +rel precedes physiologic_function organ_or_tissue_function +rel prevents antibiotic cell_or_molecular_dysfunction +rel prevents antibiotic disease_or_syndrome +rel prevents antibiotic experimental_model_of_disease +rel prevents antibiotic mental_or_behavioral_dysfunction +rel prevents antibiotic neoplastic_process +rel prevents antibiotic pathologic_function +rel prevents drug_delivery_device cell_or_molecular_dysfunction +rel prevents drug_delivery_device disease_or_syndrome +rel prevents drug_delivery_device experimental_model_of_disease +rel prevents drug_delivery_device injury_or_poisoning +rel prevents drug_delivery_device mental_or_behavioral_dysfunction +rel prevents drug_delivery_device neoplastic_process +rel prevents drug_delivery_device pathologic_function +rel prevents medical_device cell_or_molecular_dysfunction +rel prevents medical_device disease_or_syndrome +rel prevents medical_device experimental_model_of_disease +rel prevents medical_device injury_or_poisoning +rel prevents medical_device mental_or_behavioral_dysfunction +rel prevents medical_device neoplastic_process +rel prevents medical_device pathologic_function +rel prevents pharmacologic_substance cell_or_molecular_dysfunction +rel prevents pharmacologic_substance disease_or_syndrome +rel prevents pharmacologic_substance experimental_model_of_disease +rel prevents pharmacologic_substance mental_or_behavioral_dysfunction +rel prevents pharmacologic_substance neoplastic_process +rel prevents pharmacologic_substance pathologic_function +rel prevents therapeutic_or_preventive_procedure cell_or_molecular_dysfunction +rel prevents therapeutic_or_preventive_procedure disease_or_syndrome +rel prevents therapeutic_or_preventive_procedure experimental_model_of_disease +rel prevents therapeutic_or_preventive_procedure mental_or_behavioral_dysfunction +rel prevents therapeutic_or_preventive_procedure neoplastic_process +rel prevents therapeutic_or_preventive_procedure pathologic_function +rel process_of biologic_function alga +rel process_of biologic_function amphibian +rel process_of biologic_function animal +rel process_of biologic_function archaeon +rel process_of biologic_function bacterium +rel process_of biologic_function bird +rel process_of biologic_function cell_function +rel process_of biologic_function cell_or_molecular_dysfunction +rel process_of biologic_function disease_or_syndrome +rel process_of biologic_function experimental_model_of_disease +rel process_of biologic_function fish +rel process_of biologic_function fungus +rel process_of biologic_function genetic_function +rel process_of biologic_function human +rel process_of biologic_function invertebrate +rel process_of biologic_function mammal +rel process_of biologic_function mental_or_behavioral_dysfunction +rel process_of biologic_function mental_process +rel process_of biologic_function molecular_function +rel process_of biologic_function natural_phenomenon_or_process +rel process_of biologic_function neoplastic_process +rel process_of biologic_function organism +rel process_of biologic_function organism_function +rel process_of biologic_function organ_or_tissue_function +rel process_of biologic_function pathologic_function +rel process_of biologic_function physiologic_function +rel process_of biologic_function plant +rel process_of biologic_function reptile +rel process_of biologic_function rickettsia_or_chlamydia +rel process_of biologic_function vertebrate +rel process_of biologic_function virus +rel process_of cell_function alga +rel process_of cell_function amphibian +rel process_of cell_function animal +rel process_of cell_function archaeon +rel process_of cell_function bacterium +rel process_of cell_function biologic_function +rel process_of cell_function bird +rel process_of cell_function cell_or_molecular_dysfunction +rel process_of cell_function disease_or_syndrome +rel process_of cell_function experimental_model_of_disease +rel process_of cell_function fish +rel process_of cell_function fungus +rel process_of cell_function genetic_function +rel process_of cell_function human +rel process_of cell_function invertebrate +rel process_of cell_function mammal +rel process_of cell_function mental_or_behavioral_dysfunction +rel process_of cell_function mental_process +rel process_of cell_function molecular_function +rel process_of cell_function natural_phenomenon_or_process +rel process_of cell_function neoplastic_process +rel process_of cell_function organism +rel process_of cell_function organism_function +rel process_of cell_function organ_or_tissue_function +rel process_of cell_function pathologic_function +rel process_of cell_function physiologic_function +rel process_of cell_function plant +rel process_of cell_function reptile +rel process_of cell_function rickettsia_or_chlamydia +rel process_of cell_function vertebrate +rel process_of cell_function virus +rel process_of cell_or_molecular_dysfunction alga +rel process_of cell_or_molecular_dysfunction amphibian +rel process_of cell_or_molecular_dysfunction animal +rel process_of cell_or_molecular_dysfunction archaeon +rel process_of cell_or_molecular_dysfunction bacterium +rel process_of cell_or_molecular_dysfunction biologic_function +rel process_of cell_or_molecular_dysfunction bird +rel process_of cell_or_molecular_dysfunction cell_function +rel process_of cell_or_molecular_dysfunction disease_or_syndrome +rel process_of cell_or_molecular_dysfunction experimental_model_of_disease +rel process_of cell_or_molecular_dysfunction fish +rel process_of cell_or_molecular_dysfunction fungus +rel process_of cell_or_molecular_dysfunction genetic_function +rel process_of cell_or_molecular_dysfunction human +rel process_of cell_or_molecular_dysfunction invertebrate +rel process_of cell_or_molecular_dysfunction mammal +rel process_of cell_or_molecular_dysfunction mental_or_behavioral_dysfunction +rel process_of cell_or_molecular_dysfunction mental_process +rel process_of cell_or_molecular_dysfunction molecular_function +rel process_of cell_or_molecular_dysfunction natural_phenomenon_or_process +rel process_of cell_or_molecular_dysfunction neoplastic_process +rel process_of cell_or_molecular_dysfunction organism +rel process_of cell_or_molecular_dysfunction organism_function +rel process_of cell_or_molecular_dysfunction organ_or_tissue_function +rel process_of cell_or_molecular_dysfunction pathologic_function +rel process_of cell_or_molecular_dysfunction physiologic_function +rel process_of cell_or_molecular_dysfunction plant +rel process_of cell_or_molecular_dysfunction reptile +rel process_of cell_or_molecular_dysfunction rickettsia_or_chlamydia +rel process_of cell_or_molecular_dysfunction vertebrate +rel process_of cell_or_molecular_dysfunction virus +rel process_of disease_or_syndrome alga +rel process_of disease_or_syndrome amphibian +rel process_of disease_or_syndrome animal +rel process_of disease_or_syndrome archaeon +rel process_of disease_or_syndrome bacterium +rel process_of disease_or_syndrome biologic_function +rel process_of disease_or_syndrome bird +rel process_of disease_or_syndrome cell_function +rel process_of disease_or_syndrome cell_or_molecular_dysfunction +rel process_of disease_or_syndrome experimental_model_of_disease +rel process_of disease_or_syndrome fish +rel process_of disease_or_syndrome fungus +rel process_of disease_or_syndrome genetic_function +rel process_of disease_or_syndrome human +rel process_of disease_or_syndrome invertebrate +rel process_of disease_or_syndrome mammal +rel process_of disease_or_syndrome mental_or_behavioral_dysfunction +rel process_of disease_or_syndrome mental_process +rel process_of disease_or_syndrome molecular_function +rel process_of disease_or_syndrome natural_phenomenon_or_process +rel process_of disease_or_syndrome neoplastic_process +rel process_of disease_or_syndrome organism +rel process_of disease_or_syndrome organism_function +rel process_of disease_or_syndrome organ_or_tissue_function +rel process_of disease_or_syndrome pathologic_function +rel process_of disease_or_syndrome physiologic_function +rel process_of disease_or_syndrome plant +rel process_of disease_or_syndrome reptile +rel process_of disease_or_syndrome rickettsia_or_chlamydia +rel process_of disease_or_syndrome vertebrate +rel process_of disease_or_syndrome virus +rel process_of experimental_model_of_disease alga +rel process_of experimental_model_of_disease amphibian +rel process_of experimental_model_of_disease animal +rel process_of experimental_model_of_disease archaeon +rel process_of experimental_model_of_disease bacterium +rel process_of experimental_model_of_disease biologic_function +rel process_of experimental_model_of_disease bird +rel process_of experimental_model_of_disease cell_function +rel process_of experimental_model_of_disease cell_or_molecular_dysfunction +rel process_of experimental_model_of_disease disease_or_syndrome +rel process_of experimental_model_of_disease fish +rel process_of experimental_model_of_disease fungus +rel process_of experimental_model_of_disease genetic_function +rel process_of experimental_model_of_disease human +rel process_of experimental_model_of_disease invertebrate +rel process_of experimental_model_of_disease mammal +rel process_of experimental_model_of_disease mental_or_behavioral_dysfunction +rel process_of experimental_model_of_disease mental_process +rel process_of experimental_model_of_disease molecular_function +rel process_of experimental_model_of_disease natural_phenomenon_or_process +rel process_of experimental_model_of_disease neoplastic_process +rel process_of experimental_model_of_disease organism +rel process_of experimental_model_of_disease organism_function +rel process_of experimental_model_of_disease organ_or_tissue_function +rel process_of experimental_model_of_disease pathologic_function +rel process_of experimental_model_of_disease physiologic_function +rel process_of experimental_model_of_disease plant +rel process_of experimental_model_of_disease reptile +rel process_of experimental_model_of_disease rickettsia_or_chlamydia +rel process_of experimental_model_of_disease vertebrate +rel process_of experimental_model_of_disease virus +rel process_of genetic_function alga +rel process_of genetic_function amphibian +rel process_of genetic_function animal +rel process_of genetic_function archaeon +rel process_of genetic_function bacterium +rel process_of genetic_function biologic_function +rel process_of genetic_function bird +rel process_of genetic_function cell_function +rel process_of genetic_function cell_or_molecular_dysfunction +rel process_of genetic_function disease_or_syndrome +rel process_of genetic_function experimental_model_of_disease +rel process_of genetic_function fish +rel process_of genetic_function fungus +rel process_of genetic_function human +rel process_of genetic_function invertebrate +rel process_of genetic_function mammal +rel process_of genetic_function mental_or_behavioral_dysfunction +rel process_of genetic_function mental_process +rel process_of genetic_function molecular_function +rel process_of genetic_function natural_phenomenon_or_process +rel process_of genetic_function neoplastic_process +rel process_of genetic_function organism +rel process_of genetic_function organism_function +rel process_of genetic_function organ_or_tissue_function +rel process_of genetic_function pathologic_function +rel process_of genetic_function physiologic_function +rel process_of genetic_function plant +rel process_of genetic_function reptile +rel process_of genetic_function rickettsia_or_chlamydia +rel process_of genetic_function vertebrate +rel process_of genetic_function virus +rel process_of individual_behavior social_behavior +rel process_of mental_or_behavioral_dysfunction amphibian +rel process_of mental_or_behavioral_dysfunction animal +rel process_of mental_or_behavioral_dysfunction archaeon +rel process_of mental_or_behavioral_dysfunction biologic_function +rel process_of mental_or_behavioral_dysfunction bird +rel process_of mental_or_behavioral_dysfunction cell_function +rel process_of mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel process_of mental_or_behavioral_dysfunction disease_or_syndrome +rel process_of mental_or_behavioral_dysfunction experimental_model_of_disease +rel process_of mental_or_behavioral_dysfunction fish +rel process_of mental_or_behavioral_dysfunction genetic_function +rel process_of mental_or_behavioral_dysfunction human +rel process_of mental_or_behavioral_dysfunction invertebrate +rel process_of mental_or_behavioral_dysfunction mammal +rel process_of mental_or_behavioral_dysfunction mental_process +rel process_of mental_or_behavioral_dysfunction molecular_function +rel process_of mental_or_behavioral_dysfunction natural_phenomenon_or_process +rel process_of mental_or_behavioral_dysfunction neoplastic_process +rel process_of mental_or_behavioral_dysfunction organism +rel process_of mental_or_behavioral_dysfunction organism_function +rel process_of mental_or_behavioral_dysfunction organ_or_tissue_function +rel process_of mental_or_behavioral_dysfunction pathologic_function +rel process_of mental_or_behavioral_dysfunction physiologic_function +rel process_of mental_or_behavioral_dysfunction reptile +rel process_of mental_or_behavioral_dysfunction vertebrate +rel process_of mental_process amphibian +rel process_of mental_process animal +rel process_of mental_process archaeon +rel process_of mental_process biologic_function +rel process_of mental_process bird +rel process_of mental_process cell_function +rel process_of mental_process cell_or_molecular_dysfunction +rel process_of mental_process disease_or_syndrome +rel process_of mental_process experimental_model_of_disease +rel process_of mental_process fish +rel process_of mental_process genetic_function +rel process_of mental_process human +rel process_of mental_process invertebrate +rel process_of mental_process mammal +rel process_of mental_process mental_or_behavioral_dysfunction +rel process_of mental_process molecular_function +rel process_of mental_process natural_phenomenon_or_process +rel process_of mental_process neoplastic_process +rel process_of mental_process organism +rel process_of mental_process organism_function +rel process_of mental_process organ_or_tissue_function +rel process_of mental_process pathologic_function +rel process_of mental_process physiologic_function +rel process_of mental_process reptile +rel process_of mental_process vertebrate +rel process_of molecular_function alga +rel process_of molecular_function amphibian +rel process_of molecular_function animal +rel process_of molecular_function archaeon +rel process_of molecular_function bacterium +rel process_of molecular_function biologic_function +rel process_of molecular_function bird +rel process_of molecular_function cell_function +rel process_of molecular_function cell_or_molecular_dysfunction +rel process_of molecular_function disease_or_syndrome +rel process_of molecular_function experimental_model_of_disease +rel process_of molecular_function fish +rel process_of molecular_function fungus +rel process_of molecular_function genetic_function +rel process_of molecular_function human +rel process_of molecular_function invertebrate +rel process_of molecular_function mammal +rel process_of molecular_function mental_or_behavioral_dysfunction +rel process_of molecular_function mental_process +rel process_of molecular_function natural_phenomenon_or_process +rel process_of molecular_function neoplastic_process +rel process_of molecular_function organism +rel process_of molecular_function organism_function +rel process_of molecular_function organ_or_tissue_function +rel process_of molecular_function pathologic_function +rel process_of molecular_function physiologic_function +rel process_of molecular_function plant +rel process_of molecular_function reptile +rel process_of molecular_function rickettsia_or_chlamydia +rel process_of molecular_function vertebrate +rel process_of molecular_function virus +rel process_of natural_phenomenon_or_process biologic_function +rel process_of natural_phenomenon_or_process cell_function +rel process_of natural_phenomenon_or_process cell_or_molecular_dysfunction +rel process_of natural_phenomenon_or_process disease_or_syndrome +rel process_of natural_phenomenon_or_process experimental_model_of_disease +rel process_of natural_phenomenon_or_process genetic_function +rel process_of natural_phenomenon_or_process mental_or_behavioral_dysfunction +rel process_of natural_phenomenon_or_process mental_process +rel process_of natural_phenomenon_or_process molecular_function +rel process_of natural_phenomenon_or_process neoplastic_process +rel process_of natural_phenomenon_or_process organism_function +rel process_of natural_phenomenon_or_process organ_or_tissue_function +rel process_of natural_phenomenon_or_process pathologic_function +rel process_of natural_phenomenon_or_process physiologic_function +rel process_of neoplastic_process alga +rel process_of neoplastic_process amphibian +rel process_of neoplastic_process animal +rel process_of neoplastic_process archaeon +rel process_of neoplastic_process bacterium +rel process_of neoplastic_process biologic_function +rel process_of neoplastic_process bird +rel process_of neoplastic_process cell_function +rel process_of neoplastic_process cell_or_molecular_dysfunction +rel process_of neoplastic_process disease_or_syndrome +rel process_of neoplastic_process experimental_model_of_disease +rel process_of neoplastic_process fish +rel process_of neoplastic_process fungus +rel process_of neoplastic_process genetic_function +rel process_of neoplastic_process human +rel process_of neoplastic_process invertebrate +rel process_of neoplastic_process mammal +rel process_of neoplastic_process mental_or_behavioral_dysfunction +rel process_of neoplastic_process mental_process +rel process_of neoplastic_process molecular_function +rel process_of neoplastic_process natural_phenomenon_or_process +rel process_of neoplastic_process organism +rel process_of neoplastic_process organism_function +rel process_of neoplastic_process organ_or_tissue_function +rel process_of neoplastic_process pathologic_function +rel process_of neoplastic_process physiologic_function +rel process_of neoplastic_process plant +rel process_of neoplastic_process reptile +rel process_of neoplastic_process rickettsia_or_chlamydia +rel process_of neoplastic_process vertebrate +rel process_of neoplastic_process virus +rel process_of organism_function alga +rel process_of organism_function amphibian +rel process_of organism_function animal +rel process_of organism_function archaeon +rel process_of organism_function bacterium +rel process_of organism_function biologic_function +rel process_of organism_function bird +rel process_of organism_function cell_function +rel process_of organism_function cell_or_molecular_dysfunction +rel process_of organism_function disease_or_syndrome +rel process_of organism_function experimental_model_of_disease +rel process_of organism_function fish +rel process_of organism_function fungus +rel process_of organism_function genetic_function +rel process_of organism_function human +rel process_of organism_function invertebrate +rel process_of organism_function mammal +rel process_of organism_function mental_or_behavioral_dysfunction +rel process_of organism_function mental_process +rel process_of organism_function molecular_function +rel process_of organism_function natural_phenomenon_or_process +rel process_of organism_function neoplastic_process +rel process_of organism_function organism +rel process_of organism_function organ_or_tissue_function +rel process_of organism_function pathologic_function +rel process_of organism_function physiologic_function +rel process_of organism_function plant +rel process_of organism_function reptile +rel process_of organism_function rickettsia_or_chlamydia +rel process_of organism_function vertebrate +rel process_of organism_function virus +rel process_of organ_or_tissue_function alga +rel process_of organ_or_tissue_function amphibian +rel process_of organ_or_tissue_function animal +rel process_of organ_or_tissue_function archaeon +rel process_of organ_or_tissue_function bacterium +rel process_of organ_or_tissue_function biologic_function +rel process_of organ_or_tissue_function bird +rel process_of organ_or_tissue_function cell_function +rel process_of organ_or_tissue_function cell_or_molecular_dysfunction +rel process_of organ_or_tissue_function disease_or_syndrome +rel process_of organ_or_tissue_function experimental_model_of_disease +rel process_of organ_or_tissue_function fish +rel process_of organ_or_tissue_function fungus +rel process_of organ_or_tissue_function genetic_function +rel process_of organ_or_tissue_function human +rel process_of organ_or_tissue_function invertebrate +rel process_of organ_or_tissue_function mammal +rel process_of organ_or_tissue_function mental_or_behavioral_dysfunction +rel process_of organ_or_tissue_function mental_process +rel process_of organ_or_tissue_function molecular_function +rel process_of organ_or_tissue_function natural_phenomenon_or_process +rel process_of organ_or_tissue_function neoplastic_process +rel process_of organ_or_tissue_function organism +rel process_of organ_or_tissue_function organism_function +rel process_of organ_or_tissue_function pathologic_function +rel process_of organ_or_tissue_function physiologic_function +rel process_of organ_or_tissue_function plant +rel process_of organ_or_tissue_function reptile +rel process_of organ_or_tissue_function rickettsia_or_chlamydia +rel process_of organ_or_tissue_function vertebrate +rel process_of organ_or_tissue_function virus +rel process_of pathologic_function alga +rel process_of pathologic_function amphibian +rel process_of pathologic_function animal +rel process_of pathologic_function archaeon +rel process_of pathologic_function bacterium +rel process_of pathologic_function biologic_function +rel process_of pathologic_function bird +rel process_of pathologic_function cell_function +rel process_of pathologic_function cell_or_molecular_dysfunction +rel process_of pathologic_function disease_or_syndrome +rel process_of pathologic_function experimental_model_of_disease +rel process_of pathologic_function fish +rel process_of pathologic_function fungus +rel process_of pathologic_function genetic_function +rel process_of pathologic_function human +rel process_of pathologic_function invertebrate +rel process_of pathologic_function mammal +rel process_of pathologic_function mental_or_behavioral_dysfunction +rel process_of pathologic_function mental_process +rel process_of pathologic_function molecular_function +rel process_of pathologic_function natural_phenomenon_or_process +rel process_of pathologic_function neoplastic_process +rel process_of pathologic_function organism +rel process_of pathologic_function organism_function +rel process_of pathologic_function organ_or_tissue_function +rel process_of pathologic_function physiologic_function +rel process_of pathologic_function plant +rel process_of pathologic_function reptile +rel process_of pathologic_function rickettsia_or_chlamydia +rel process_of pathologic_function vertebrate +rel process_of pathologic_function virus +rel process_of physiologic_function alga +rel process_of physiologic_function amphibian +rel process_of physiologic_function animal +rel process_of physiologic_function archaeon +rel process_of physiologic_function bacterium +rel process_of physiologic_function biologic_function +rel process_of physiologic_function bird +rel process_of physiologic_function cell_function +rel process_of physiologic_function cell_or_molecular_dysfunction +rel process_of physiologic_function disease_or_syndrome +rel process_of physiologic_function experimental_model_of_disease +rel process_of physiologic_function fish +rel process_of physiologic_function fungus +rel process_of physiologic_function genetic_function +rel process_of physiologic_function human +rel process_of physiologic_function invertebrate +rel process_of physiologic_function mammal +rel process_of physiologic_function mental_or_behavioral_dysfunction +rel process_of physiologic_function mental_process +rel process_of physiologic_function molecular_function +rel process_of physiologic_function natural_phenomenon_or_process +rel process_of physiologic_function neoplastic_process +rel process_of physiologic_function organism +rel process_of physiologic_function organism_function +rel process_of physiologic_function organ_or_tissue_function +rel process_of physiologic_function pathologic_function +rel process_of physiologic_function plant +rel process_of physiologic_function reptile +rel process_of physiologic_function rickettsia_or_chlamydia +rel process_of physiologic_function vertebrate +rel process_of physiologic_function virus +rel produces age_group classification +rel produces age_group clinical_drug +rel produces age_group drug_delivery_device +rel produces age_group intellectual_product +rel produces age_group manufactured_object +rel produces age_group medical_device +rel produces age_group regulation_or_law +rel produces age_group research_device +rel produces biologic_function biologically_active_substance +rel produces biologic_function body_substance +rel produces biologic_function enzyme +rel produces biologic_function hormone +rel produces biologic_function immunologic_factor +rel produces biologic_function neuroreactive_substance_or_biogenic_amine +rel produces biologic_function receptor +rel produces biologic_function vitamin +rel produces body_part_organ_or_organ_component amino_acid_peptide_or_protein +rel produces body_part_organ_or_organ_component biologically_active_substance +rel produces body_part_organ_or_organ_component body_substance +rel produces body_part_organ_or_organ_component carbohydrate +rel produces body_part_organ_or_organ_component eicosanoid +rel produces body_part_organ_or_organ_component enzyme +rel produces body_part_organ_or_organ_component hormone +rel produces body_part_organ_or_organ_component immunologic_factor +rel produces body_part_organ_or_organ_component lipid +rel produces body_part_organ_or_organ_component neuroreactive_substance_or_biogenic_amine +rel produces body_part_organ_or_organ_component nucleic_acid_nucleoside_or_nucleotide +rel produces body_part_organ_or_organ_component organic_chemical +rel produces body_part_organ_or_organ_component organophosphorus_compound +rel produces body_part_organ_or_organ_component receptor +rel produces body_part_organ_or_organ_component steroid +rel produces body_part_organ_or_organ_component vitamin +rel produces cell amino_acid_peptide_or_protein +rel produces cell biologically_active_substance +rel produces cell body_substance +rel produces cell carbohydrate +rel produces cell_component amino_acid_peptide_or_protein +rel produces cell_component biologically_active_substance +rel produces cell_component body_substance +rel produces cell_component carbohydrate +rel produces cell_component eicosanoid +rel produces cell_component enzyme +rel produces cell_component hormone +rel produces cell_component immunologic_factor +rel produces cell_component lipid +rel produces cell_component neuroreactive_substance_or_biogenic_amine +rel produces cell_component nucleic_acid_nucleoside_or_nucleotide +rel produces cell_component organic_chemical +rel produces cell_component organophosphorus_compound +rel produces cell_component receptor +rel produces cell_component steroid +rel produces cell_component vitamin +rel produces cell eicosanoid +rel produces cell enzyme +rel produces cell_function biologically_active_substance +rel produces cell_function body_substance +rel produces cell_function enzyme +rel produces cell_function hormone +rel produces cell_function immunologic_factor +rel produces cell_function neuroreactive_substance_or_biogenic_amine +rel produces cell_function receptor +rel produces cell_function vitamin +rel produces cell hormone +rel produces cell immunologic_factor +rel produces cell lipid +rel produces cell neuroreactive_substance_or_biogenic_amine +rel produces cell nucleic_acid_nucleoside_or_nucleotide +rel produces cell organic_chemical +rel produces cell organophosphorus_compound +rel produces cell_or_molecular_dysfunction biologically_active_substance +rel produces cell_or_molecular_dysfunction body_substance +rel produces cell_or_molecular_dysfunction enzyme +rel produces cell_or_molecular_dysfunction hormone +rel produces cell_or_molecular_dysfunction immunologic_factor +rel produces cell_or_molecular_dysfunction neuroreactive_substance_or_biogenic_amine +rel produces cell_or_molecular_dysfunction receptor +rel produces cell_or_molecular_dysfunction vitamin +rel produces cell receptor +rel produces cell steroid +rel produces cell vitamin +rel produces disease_or_syndrome biologically_active_substance +rel produces disease_or_syndrome body_substance +rel produces disease_or_syndrome enzyme +rel produces disease_or_syndrome hormone +rel produces disease_or_syndrome immunologic_factor +rel produces disease_or_syndrome neuroreactive_substance_or_biogenic_amine +rel produces disease_or_syndrome receptor +rel produces disease_or_syndrome tissue +rel produces disease_or_syndrome vitamin +rel produces experimental_model_of_disease biologically_active_substance +rel produces experimental_model_of_disease body_substance +rel produces experimental_model_of_disease enzyme +rel produces experimental_model_of_disease hormone +rel produces experimental_model_of_disease immunologic_factor +rel produces experimental_model_of_disease neuroreactive_substance_or_biogenic_amine +rel produces experimental_model_of_disease receptor +rel produces experimental_model_of_disease vitamin +rel produces family_group classification +rel produces family_group clinical_drug +rel produces family_group drug_delivery_device +rel produces family_group intellectual_product +rel produces family_group manufactured_object +rel produces family_group medical_device +rel produces family_group regulation_or_law +rel produces family_group research_device +rel produces fully_formed_anatomical_structure amino_acid_peptide_or_protein +rel produces fully_formed_anatomical_structure biologically_active_substance +rel produces fully_formed_anatomical_structure body_substance +rel produces fully_formed_anatomical_structure carbohydrate +rel produces fully_formed_anatomical_structure eicosanoid +rel produces fully_formed_anatomical_structure enzyme +rel produces fully_formed_anatomical_structure hormone +rel produces fully_formed_anatomical_structure immunologic_factor +rel produces fully_formed_anatomical_structure lipid +rel produces fully_formed_anatomical_structure neuroreactive_substance_or_biogenic_amine +rel produces fully_formed_anatomical_structure nucleic_acid_nucleoside_or_nucleotide +rel produces fully_formed_anatomical_structure organic_chemical +rel produces fully_formed_anatomical_structure organophosphorus_compound +rel produces fully_formed_anatomical_structure receptor +rel produces fully_formed_anatomical_structure steroid +rel produces fully_formed_anatomical_structure vitamin +rel produces gene_or_genome amino_acid_peptide_or_protein +rel produces gene_or_genome biologically_active_substance +rel produces gene_or_genome body_substance +rel produces gene_or_genome carbohydrate +rel produces gene_or_genome eicosanoid +rel produces gene_or_genome enzyme +rel produces gene_or_genome hormone +rel produces gene_or_genome immunologic_factor +rel produces gene_or_genome lipid +rel produces gene_or_genome neuroreactive_substance_or_biogenic_amine +rel produces gene_or_genome nucleic_acid_nucleoside_or_nucleotide +rel produces gene_or_genome organic_chemical +rel produces gene_or_genome organophosphorus_compound +rel produces gene_or_genome receptor +rel produces gene_or_genome steroid +rel produces gene_or_genome vitamin +rel produces genetic_function biologically_active_substance +rel produces genetic_function body_substance +rel produces genetic_function cell_component +rel produces genetic_function enzyme +rel produces genetic_function hormone +rel produces genetic_function immunologic_factor +rel produces genetic_function neuroreactive_substance_or_biogenic_amine +rel produces genetic_function receptor +rel produces genetic_function vitamin +rel produces group classification +rel produces group clinical_drug +rel produces group drug_delivery_device +rel produces group intellectual_product +rel produces group manufactured_object +rel produces group medical_device +rel produces group regulation_or_law +rel produces group research_device +rel produces health_care_related_organization classification +rel produces health_care_related_organization intellectual_product +rel produces health_care_related_organization regulation_or_law +rel produces mental_or_behavioral_dysfunction biologically_active_substance +rel produces mental_or_behavioral_dysfunction body_substance +rel produces mental_or_behavioral_dysfunction enzyme +rel produces mental_or_behavioral_dysfunction hormone +rel produces mental_or_behavioral_dysfunction immunologic_factor +rel produces mental_or_behavioral_dysfunction neuroreactive_substance_or_biogenic_amine +rel produces mental_or_behavioral_dysfunction receptor +rel produces mental_or_behavioral_dysfunction tissue +rel produces mental_or_behavioral_dysfunction vitamin +rel produces mental_process age_group +rel produces mental_process biologically_active_substance +rel produces mental_process body_substance +rel produces mental_process enzyme +rel produces mental_process family_group +rel produces mental_process hormone +rel produces mental_process immunologic_factor +rel produces mental_process neuroreactive_substance_or_biogenic_amine +rel produces mental_process receptor +rel produces mental_process vitamin +rel produces molecular_function biologically_active_substance +rel produces molecular_function body_substance +rel produces molecular_function enzyme +rel produces molecular_function hormone +rel produces molecular_function immunologic_factor +rel produces molecular_function neuroreactive_substance_or_biogenic_amine +rel produces molecular_function receptor +rel produces molecular_function vitamin +rel produces neoplastic_process biologically_active_substance +rel produces neoplastic_process body_substance +rel produces neoplastic_process enzyme +rel produces neoplastic_process hormone +rel produces neoplastic_process immunologic_factor +rel produces neoplastic_process neuroreactive_substance_or_biogenic_amine +rel produces neoplastic_process receptor +rel produces neoplastic_process tissue +rel produces neoplastic_process vitamin +rel produces organism_function age_group +rel produces organism_function biologically_active_substance +rel produces organism_function body_substance +rel produces organism_function enzyme +rel produces organism_function family_group +rel produces organism_function hormone +rel produces organism_function immunologic_factor +rel produces organism_function neuroreactive_substance_or_biogenic_amine +rel produces organism_function receptor +rel produces organism_function vitamin +rel produces organization classification +rel produces organization intellectual_product +rel produces organization regulation_or_law +rel produces organ_or_tissue_function biologically_active_substance +rel produces organ_or_tissue_function body_substance +rel produces organ_or_tissue_function enzyme +rel produces organ_or_tissue_function hormone +rel produces organ_or_tissue_function immunologic_factor +rel produces organ_or_tissue_function neuroreactive_substance_or_biogenic_amine +rel produces organ_or_tissue_function receptor +rel produces organ_or_tissue_function vitamin +rel produces pathologic_function biologically_active_substance +rel produces pathologic_function body_substance +rel produces pathologic_function enzyme +rel produces pathologic_function hormone +rel produces pathologic_function immunologic_factor +rel produces pathologic_function neuroreactive_substance_or_biogenic_amine +rel produces pathologic_function receptor +rel produces pathologic_function vitamin +rel produces patient_or_disabled_group classification +rel produces patient_or_disabled_group clinical_drug +rel produces patient_or_disabled_group drug_delivery_device +rel produces patient_or_disabled_group intellectual_product +rel produces patient_or_disabled_group manufactured_object +rel produces patient_or_disabled_group medical_device +rel produces patient_or_disabled_group regulation_or_law +rel produces patient_or_disabled_group research_device +rel produces physiologic_function biologically_active_substance +rel produces physiologic_function body_substance +rel produces physiologic_function enzyme +rel produces physiologic_function hormone +rel produces physiologic_function immunologic_factor +rel produces physiologic_function neuroreactive_substance_or_biogenic_amine +rel produces physiologic_function receptor +rel produces physiologic_function vitamin +rel produces population_group classification +rel produces population_group clinical_drug +rel produces population_group drug_delivery_device +rel produces population_group intellectual_product +rel produces population_group manufactured_object +rel produces population_group medical_device +rel produces population_group regulation_or_law +rel produces population_group research_device +rel produces professional_or_occupational_group classification +rel produces professional_or_occupational_group clinical_drug +rel produces professional_or_occupational_group drug_delivery_device +rel produces professional_or_occupational_group intellectual_product +rel produces professional_or_occupational_group manufactured_object +rel produces professional_or_occupational_group medical_device +rel produces professional_or_occupational_group regulation_or_law +rel produces professional_or_occupational_group research_device +rel produces professional_society classification +rel produces professional_society intellectual_product +rel produces professional_society regulation_or_law +rel produces self_help_or_relief_organization classification +rel produces self_help_or_relief_organization intellectual_product +rel produces self_help_or_relief_organization regulation_or_law +rel produces tissue amino_acid_peptide_or_protein +rel produces tissue biologically_active_substance +rel produces tissue body_substance +rel produces tissue carbohydrate +rel produces tissue eicosanoid +rel produces tissue enzyme +rel produces tissue hormone +rel produces tissue immunologic_factor +rel produces tissue lipid +rel produces tissue neuroreactive_substance_or_biogenic_amine +rel produces tissue nucleic_acid_nucleoside_or_nucleotide +rel produces tissue organic_chemical +rel produces tissue organophosphorus_compound +rel produces tissue receptor +rel produces tissue steroid +rel produces tissue vitamin +rel property_of amino_acid_sequence amino_acid_peptide_or_protein +rel property_of amino_acid_sequence gene_or_genome +rel property_of clinical_attribute alga +rel property_of clinical_attribute amphibian +rel property_of clinical_attribute animal +rel property_of clinical_attribute archaeon +rel property_of clinical_attribute bacterium +rel property_of clinical_attribute bird +rel property_of clinical_attribute fish +rel property_of clinical_attribute fungus +rel property_of clinical_attribute human +rel property_of clinical_attribute invertebrate +rel property_of clinical_attribute mammal +rel property_of clinical_attribute organism +rel property_of clinical_attribute plant +rel property_of clinical_attribute reptile +rel property_of clinical_attribute rickettsia_or_chlamydia +rel property_of clinical_attribute vertebrate +rel property_of clinical_attribute virus +rel property_of group_attribute age_group +rel property_of group_attribute family_group +rel property_of group_attribute group +rel property_of group_attribute patient_or_disabled_group +rel property_of group_attribute population_group +rel property_of group_attribute professional_or_occupational_group +rel property_of nucleotide_sequence gene_or_genome +rel property_of nucleotide_sequence nucleic_acid_nucleoside_or_nucleotide +rel property_of organism_attribute alga +rel property_of organism_attribute amphibian +rel property_of organism_attribute animal +rel property_of organism_attribute archaeon +rel property_of organism_attribute bacterium +rel property_of organism_attribute bird +rel property_of organism_attribute fish +rel property_of organism_attribute fungus +rel property_of organism_attribute human +rel property_of organism_attribute invertebrate +rel property_of organism_attribute mammal +rel property_of organism_attribute organism +rel property_of organism_attribute plant +rel property_of organism_attribute reptile +rel property_of organism_attribute rickettsia_or_chlamydia +rel property_of organism_attribute vertebrate +rel property_of organism_attribute virus +rel result_of acquired_abnormality anatomical_abnormality +rel result_of acquired_abnormality behavior +rel result_of acquired_abnormality biologic_function +rel result_of acquired_abnormality cell_function +rel result_of acquired_abnormality cell_or_molecular_dysfunction +rel result_of acquired_abnormality congenital_abnormality +rel result_of acquired_abnormality diagnostic_procedure +rel result_of acquired_abnormality disease_or_syndrome +rel result_of acquired_abnormality environmental_effect_of_humans +rel result_of acquired_abnormality experimental_model_of_disease +rel result_of acquired_abnormality genetic_function +rel result_of acquired_abnormality health_care_activity +rel result_of acquired_abnormality human_caused_phenomenon_or_process +rel result_of acquired_abnormality individual_behavior +rel result_of acquired_abnormality injury_or_poisoning +rel result_of acquired_abnormality laboratory_procedure +rel result_of acquired_abnormality mental_or_behavioral_dysfunction +rel result_of acquired_abnormality mental_process +rel result_of acquired_abnormality molecular_function +rel result_of acquired_abnormality natural_phenomenon_or_process +rel result_of acquired_abnormality neoplastic_process +rel result_of acquired_abnormality organism_function +rel result_of acquired_abnormality organ_or_tissue_function +rel result_of acquired_abnormality pathologic_function +rel result_of acquired_abnormality phenomenon_or_process +rel result_of acquired_abnormality physiologic_function +rel result_of acquired_abnormality social_behavior +rel result_of acquired_abnormality therapeutic_or_preventive_procedure +rel result_of amino_acid_sequence mental_process +rel result_of anatomical_abnormality acquired_abnormality +rel result_of anatomical_abnormality biologic_function +rel result_of anatomical_abnormality cell_function +rel result_of anatomical_abnormality cell_or_molecular_dysfunction +rel result_of anatomical_abnormality congenital_abnormality +rel result_of anatomical_abnormality diagnostic_procedure +rel result_of anatomical_abnormality disease_or_syndrome +rel result_of anatomical_abnormality environmental_effect_of_humans +rel result_of anatomical_abnormality experimental_model_of_disease +rel result_of anatomical_abnormality genetic_function +rel result_of anatomical_abnormality health_care_activity +rel result_of anatomical_abnormality human_caused_phenomenon_or_process +rel result_of anatomical_abnormality injury_or_poisoning +rel result_of anatomical_abnormality laboratory_procedure +rel result_of anatomical_abnormality mental_or_behavioral_dysfunction +rel result_of anatomical_abnormality mental_process +rel result_of anatomical_abnormality molecular_function +rel result_of anatomical_abnormality natural_phenomenon_or_process +rel result_of anatomical_abnormality neoplastic_process +rel result_of anatomical_abnormality organism_function +rel result_of anatomical_abnormality organ_or_tissue_function +rel result_of anatomical_abnormality pathologic_function +rel result_of anatomical_abnormality phenomenon_or_process +rel result_of anatomical_abnormality physiologic_function +rel result_of anatomical_abnormality therapeutic_or_preventive_procedure +rel result_of behavior mental_process +rel result_of biologic_function acquired_abnormality +rel result_of biologic_function anatomical_abnormality +rel result_of biologic_function cell_function +rel result_of biologic_function cell_or_molecular_dysfunction +rel result_of biologic_function congenital_abnormality +rel result_of biologic_function disease_or_syndrome +rel result_of biologic_function environmental_effect_of_humans +rel result_of biologic_function experimental_model_of_disease +rel result_of biologic_function genetic_function +rel result_of biologic_function human_caused_phenomenon_or_process +rel result_of biologic_function injury_or_poisoning +rel result_of biologic_function mental_or_behavioral_dysfunction +rel result_of biologic_function mental_process +rel result_of biologic_function molecular_function +rel result_of biologic_function natural_phenomenon_or_process +rel result_of biologic_function neoplastic_process +rel result_of biologic_function organism_function +rel result_of biologic_function organ_or_tissue_function +rel result_of biologic_function pathologic_function +rel result_of biologic_function phenomenon_or_process +rel result_of biologic_function physiologic_function +rel result_of body_location_or_region mental_process +rel result_of body_space_or_junction mental_process +rel result_of body_system mental_process +rel result_of carbohydrate_sequence mental_process +rel result_of cell_function acquired_abnormality +rel result_of cell_function anatomical_abnormality +rel result_of cell_function biologic_function +rel result_of cell_function cell_or_molecular_dysfunction +rel result_of cell_function congenital_abnormality +rel result_of cell_function disease_or_syndrome +rel result_of cell_function environmental_effect_of_humans +rel result_of cell_function experimental_model_of_disease +rel result_of cell_function genetic_function +rel result_of cell_function human_caused_phenomenon_or_process +rel result_of cell_function injury_or_poisoning +rel result_of cell_function mental_or_behavioral_dysfunction +rel result_of cell_function mental_process +rel result_of cell_function molecular_function +rel result_of cell_function natural_phenomenon_or_process +rel result_of cell_function neoplastic_process +rel result_of cell_function organism_function +rel result_of cell_function organ_or_tissue_function +rel result_of cell_function pathologic_function +rel result_of cell_function phenomenon_or_process +rel result_of cell_function physiologic_function +rel result_of cell_or_molecular_dysfunction acquired_abnormality +rel result_of cell_or_molecular_dysfunction anatomical_abnormality +rel result_of cell_or_molecular_dysfunction behavior +rel result_of cell_or_molecular_dysfunction biologic_function +rel result_of cell_or_molecular_dysfunction cell_function +rel result_of cell_or_molecular_dysfunction congenital_abnormality +rel result_of cell_or_molecular_dysfunction diagnostic_procedure +rel result_of cell_or_molecular_dysfunction disease_or_syndrome +rel result_of cell_or_molecular_dysfunction environmental_effect_of_humans +rel result_of cell_or_molecular_dysfunction experimental_model_of_disease +rel result_of cell_or_molecular_dysfunction genetic_function +rel result_of cell_or_molecular_dysfunction health_care_activity +rel result_of cell_or_molecular_dysfunction human_caused_phenomenon_or_process +rel result_of cell_or_molecular_dysfunction individual_behavior +rel result_of cell_or_molecular_dysfunction injury_or_poisoning +rel result_of cell_or_molecular_dysfunction laboratory_procedure +rel result_of cell_or_molecular_dysfunction mental_or_behavioral_dysfunction +rel result_of cell_or_molecular_dysfunction mental_process +rel result_of cell_or_molecular_dysfunction molecular_function +rel result_of cell_or_molecular_dysfunction natural_phenomenon_or_process +rel result_of cell_or_molecular_dysfunction neoplastic_process +rel result_of cell_or_molecular_dysfunction organism_function +rel result_of cell_or_molecular_dysfunction organ_or_tissue_function +rel result_of cell_or_molecular_dysfunction pathologic_function +rel result_of cell_or_molecular_dysfunction phenomenon_or_process +rel result_of cell_or_molecular_dysfunction physiologic_function +rel result_of cell_or_molecular_dysfunction social_behavior +rel result_of cell_or_molecular_dysfunction therapeutic_or_preventive_procedure +rel result_of clinical_attribute biologic_function +rel result_of clinical_attribute cell_function +rel result_of clinical_attribute cell_or_molecular_dysfunction +rel result_of clinical_attribute disease_or_syndrome +rel result_of clinical_attribute environmental_effect_of_humans +rel result_of clinical_attribute experimental_model_of_disease +rel result_of clinical_attribute genetic_function +rel result_of clinical_attribute human_caused_phenomenon_or_process +rel result_of clinical_attribute injury_or_poisoning +rel result_of clinical_attribute mental_or_behavioral_dysfunction +rel result_of clinical_attribute mental_process +rel result_of clinical_attribute molecular_function +rel result_of clinical_attribute natural_phenomenon_or_process +rel result_of clinical_attribute neoplastic_process +rel result_of clinical_attribute organism_function +rel result_of clinical_attribute organ_or_tissue_function +rel result_of clinical_attribute pathologic_function +rel result_of clinical_attribute phenomenon_or_process +rel result_of clinical_attribute physiologic_function +rel result_of congenital_abnormality acquired_abnormality +rel result_of congenital_abnormality anatomical_abnormality +rel result_of congenital_abnormality biologic_function +rel result_of congenital_abnormality cell_function +rel result_of congenital_abnormality cell_or_molecular_dysfunction +rel result_of congenital_abnormality diagnostic_procedure +rel result_of congenital_abnormality disease_or_syndrome +rel result_of congenital_abnormality environmental_effect_of_humans +rel result_of congenital_abnormality experimental_model_of_disease +rel result_of congenital_abnormality genetic_function +rel result_of congenital_abnormality health_care_activity +rel result_of congenital_abnormality human_caused_phenomenon_or_process +rel result_of congenital_abnormality injury_or_poisoning +rel result_of congenital_abnormality laboratory_procedure +rel result_of congenital_abnormality mental_or_behavioral_dysfunction +rel result_of congenital_abnormality mental_process +rel result_of congenital_abnormality molecular_function +rel result_of congenital_abnormality natural_phenomenon_or_process +rel result_of congenital_abnormality neoplastic_process +rel result_of congenital_abnormality organism_function +rel result_of congenital_abnormality organ_or_tissue_function +rel result_of congenital_abnormality pathologic_function +rel result_of congenital_abnormality phenomenon_or_process +rel result_of congenital_abnormality physiologic_function +rel result_of congenital_abnormality therapeutic_or_preventive_procedure +rel result_of disease_or_syndrome acquired_abnormality +rel result_of disease_or_syndrome anatomical_abnormality +rel result_of disease_or_syndrome behavior +rel result_of disease_or_syndrome biologic_function +rel result_of disease_or_syndrome cell_function +rel result_of disease_or_syndrome cell_or_molecular_dysfunction +rel result_of disease_or_syndrome congenital_abnormality +rel result_of disease_or_syndrome diagnostic_procedure +rel result_of disease_or_syndrome environmental_effect_of_humans +rel result_of disease_or_syndrome experimental_model_of_disease +rel result_of disease_or_syndrome genetic_function +rel result_of disease_or_syndrome health_care_activity +rel result_of disease_or_syndrome human_caused_phenomenon_or_process +rel result_of disease_or_syndrome individual_behavior +rel result_of disease_or_syndrome injury_or_poisoning +rel result_of disease_or_syndrome laboratory_procedure +rel result_of disease_or_syndrome mental_or_behavioral_dysfunction +rel result_of disease_or_syndrome mental_process +rel result_of disease_or_syndrome molecular_function +rel result_of disease_or_syndrome natural_phenomenon_or_process +rel result_of disease_or_syndrome neoplastic_process +rel result_of disease_or_syndrome organism_function +rel result_of disease_or_syndrome organ_or_tissue_function +rel result_of disease_or_syndrome pathologic_function +rel result_of disease_or_syndrome phenomenon_or_process +rel result_of disease_or_syndrome physiologic_function +rel result_of disease_or_syndrome social_behavior +rel result_of disease_or_syndrome therapeutic_or_preventive_procedure +rel result_of environmental_effect_of_humans acquired_abnormality +rel result_of environmental_effect_of_humans anatomical_abnormality +rel result_of environmental_effect_of_humans biologic_function +rel result_of environmental_effect_of_humans cell_function +rel result_of environmental_effect_of_humans cell_or_molecular_dysfunction +rel result_of environmental_effect_of_humans congenital_abnormality +rel result_of environmental_effect_of_humans disease_or_syndrome +rel result_of environmental_effect_of_humans experimental_model_of_disease +rel result_of environmental_effect_of_humans genetic_function +rel result_of environmental_effect_of_humans human_caused_phenomenon_or_process +rel result_of environmental_effect_of_humans injury_or_poisoning +rel result_of environmental_effect_of_humans mental_or_behavioral_dysfunction +rel result_of environmental_effect_of_humans mental_process +rel result_of environmental_effect_of_humans molecular_function +rel result_of environmental_effect_of_humans natural_phenomenon_or_process +rel result_of environmental_effect_of_humans neoplastic_process +rel result_of environmental_effect_of_humans organism_function +rel result_of environmental_effect_of_humans organ_or_tissue_function +rel result_of environmental_effect_of_humans pathologic_function +rel result_of environmental_effect_of_humans phenomenon_or_process +rel result_of environmental_effect_of_humans physiologic_function +rel result_of experimental_model_of_disease acquired_abnormality +rel result_of experimental_model_of_disease anatomical_abnormality +rel result_of experimental_model_of_disease behavior +rel result_of experimental_model_of_disease biologic_function +rel result_of experimental_model_of_disease cell_function +rel result_of experimental_model_of_disease cell_or_molecular_dysfunction +rel result_of experimental_model_of_disease congenital_abnormality +rel result_of experimental_model_of_disease diagnostic_procedure +rel result_of experimental_model_of_disease disease_or_syndrome +rel result_of experimental_model_of_disease environmental_effect_of_humans +rel result_of experimental_model_of_disease genetic_function +rel result_of experimental_model_of_disease health_care_activity +rel result_of experimental_model_of_disease human_caused_phenomenon_or_process +rel result_of experimental_model_of_disease individual_behavior +rel result_of experimental_model_of_disease injury_or_poisoning +rel result_of experimental_model_of_disease laboratory_procedure +rel result_of experimental_model_of_disease mental_or_behavioral_dysfunction +rel result_of experimental_model_of_disease mental_process +rel result_of experimental_model_of_disease molecular_function +rel result_of experimental_model_of_disease natural_phenomenon_or_process +rel result_of experimental_model_of_disease neoplastic_process +rel result_of experimental_model_of_disease organism_function +rel result_of experimental_model_of_disease organ_or_tissue_function +rel result_of experimental_model_of_disease pathologic_function +rel result_of experimental_model_of_disease phenomenon_or_process +rel result_of experimental_model_of_disease physiologic_function +rel result_of experimental_model_of_disease social_behavior +rel result_of experimental_model_of_disease therapeutic_or_preventive_procedure +rel result_of functional_concept mental_process +rel result_of genetic_function acquired_abnormality +rel result_of genetic_function anatomical_abnormality +rel result_of genetic_function biologic_function +rel result_of genetic_function cell_function +rel result_of genetic_function cell_or_molecular_dysfunction +rel result_of genetic_function congenital_abnormality +rel result_of genetic_function disease_or_syndrome +rel result_of genetic_function environmental_effect_of_humans +rel result_of genetic_function experimental_model_of_disease +rel result_of genetic_function human_caused_phenomenon_or_process +rel result_of genetic_function injury_or_poisoning +rel result_of genetic_function mental_or_behavioral_dysfunction +rel result_of genetic_function mental_process +rel result_of genetic_function molecular_function +rel result_of genetic_function natural_phenomenon_or_process +rel result_of genetic_function neoplastic_process +rel result_of genetic_function organism_function +rel result_of genetic_function organ_or_tissue_function +rel result_of genetic_function pathologic_function +rel result_of genetic_function phenomenon_or_process +rel result_of genetic_function physiologic_function +rel result_of geographic_area mental_process +rel result_of human_caused_phenomenon_or_process acquired_abnormality +rel result_of human_caused_phenomenon_or_process anatomical_abnormality +rel result_of human_caused_phenomenon_or_process biologic_function +rel result_of human_caused_phenomenon_or_process cell_function +rel result_of human_caused_phenomenon_or_process cell_or_molecular_dysfunction +rel result_of human_caused_phenomenon_or_process congenital_abnormality +rel result_of human_caused_phenomenon_or_process disease_or_syndrome +rel result_of human_caused_phenomenon_or_process environmental_effect_of_humans +rel result_of human_caused_phenomenon_or_process experimental_model_of_disease +rel result_of human_caused_phenomenon_or_process genetic_function +rel result_of human_caused_phenomenon_or_process injury_or_poisoning +rel result_of human_caused_phenomenon_or_process mental_or_behavioral_dysfunction +rel result_of human_caused_phenomenon_or_process mental_process +rel result_of human_caused_phenomenon_or_process molecular_function +rel result_of human_caused_phenomenon_or_process natural_phenomenon_or_process +rel result_of human_caused_phenomenon_or_process neoplastic_process +rel result_of human_caused_phenomenon_or_process organism_function +rel result_of human_caused_phenomenon_or_process organ_or_tissue_function +rel result_of human_caused_phenomenon_or_process pathologic_function +rel result_of human_caused_phenomenon_or_process phenomenon_or_process +rel result_of human_caused_phenomenon_or_process physiologic_function +rel result_of idea_or_concept mental_process +rel result_of individual_behavior mental_process +rel result_of injury_or_poisoning acquired_abnormality +rel result_of injury_or_poisoning anatomical_abnormality +rel result_of injury_or_poisoning behavior +rel result_of injury_or_poisoning biologic_function +rel result_of injury_or_poisoning cell_function +rel result_of injury_or_poisoning cell_or_molecular_dysfunction +rel result_of injury_or_poisoning congenital_abnormality +rel result_of injury_or_poisoning diagnostic_procedure +rel result_of injury_or_poisoning disease_or_syndrome +rel result_of injury_or_poisoning environmental_effect_of_humans +rel result_of injury_or_poisoning experimental_model_of_disease +rel result_of injury_or_poisoning genetic_function +rel result_of injury_or_poisoning health_care_activity +rel result_of injury_or_poisoning human_caused_phenomenon_or_process +rel result_of injury_or_poisoning individual_behavior +rel result_of injury_or_poisoning laboratory_procedure +rel result_of injury_or_poisoning mental_or_behavioral_dysfunction +rel result_of injury_or_poisoning mental_process +rel result_of injury_or_poisoning molecular_function +rel result_of injury_or_poisoning natural_phenomenon_or_process +rel result_of injury_or_poisoning neoplastic_process +rel result_of injury_or_poisoning organism_function +rel result_of injury_or_poisoning organ_or_tissue_function +rel result_of injury_or_poisoning pathologic_function +rel result_of injury_or_poisoning phenomenon_or_process +rel result_of injury_or_poisoning physiologic_function +rel result_of injury_or_poisoning social_behavior +rel result_of injury_or_poisoning therapeutic_or_preventive_procedure +rel result_of laboratory_or_test_result diagnostic_procedure +rel result_of laboratory_or_test_result laboratory_procedure +rel result_of mental_or_behavioral_dysfunction acquired_abnormality +rel result_of mental_or_behavioral_dysfunction anatomical_abnormality +rel result_of mental_or_behavioral_dysfunction behavior +rel result_of mental_or_behavioral_dysfunction biologic_function +rel result_of mental_or_behavioral_dysfunction cell_function +rel result_of mental_or_behavioral_dysfunction cell_or_molecular_dysfunction +rel result_of mental_or_behavioral_dysfunction congenital_abnormality +rel result_of mental_or_behavioral_dysfunction diagnostic_procedure +rel result_of mental_or_behavioral_dysfunction disease_or_syndrome +rel result_of mental_or_behavioral_dysfunction environmental_effect_of_humans +rel result_of mental_or_behavioral_dysfunction experimental_model_of_disease +rel result_of mental_or_behavioral_dysfunction genetic_function +rel result_of mental_or_behavioral_dysfunction health_care_activity +rel result_of mental_or_behavioral_dysfunction human_caused_phenomenon_or_process +rel result_of mental_or_behavioral_dysfunction individual_behavior +rel result_of mental_or_behavioral_dysfunction injury_or_poisoning +rel result_of mental_or_behavioral_dysfunction laboratory_procedure +rel result_of mental_or_behavioral_dysfunction mental_process +rel result_of mental_or_behavioral_dysfunction molecular_function +rel result_of mental_or_behavioral_dysfunction natural_phenomenon_or_process +rel result_of mental_or_behavioral_dysfunction neoplastic_process +rel result_of mental_or_behavioral_dysfunction organism_function +rel result_of mental_or_behavioral_dysfunction organ_or_tissue_function +rel result_of mental_or_behavioral_dysfunction pathologic_function +rel result_of mental_or_behavioral_dysfunction phenomenon_or_process +rel result_of mental_or_behavioral_dysfunction physiologic_function +rel result_of mental_or_behavioral_dysfunction social_behavior +rel result_of mental_or_behavioral_dysfunction therapeutic_or_preventive_procedure +rel result_of mental_process acquired_abnormality +rel result_of mental_process anatomical_abnormality +rel result_of mental_process behavior +rel result_of mental_process biologic_function +rel result_of mental_process cell_function +rel result_of mental_process cell_or_molecular_dysfunction +rel result_of mental_process congenital_abnormality +rel result_of mental_process disease_or_syndrome +rel result_of mental_process environmental_effect_of_humans +rel result_of mental_process experimental_model_of_disease +rel result_of mental_process genetic_function +rel result_of mental_process human_caused_phenomenon_or_process +rel result_of mental_process individual_behavior +rel result_of mental_process injury_or_poisoning +rel result_of mental_process mental_or_behavioral_dysfunction +rel result_of mental_process molecular_function +rel result_of mental_process natural_phenomenon_or_process +rel result_of mental_process neoplastic_process +rel result_of mental_process organism_function +rel result_of mental_process organ_or_tissue_function +rel result_of mental_process pathologic_function +rel result_of mental_process phenomenon_or_process +rel result_of mental_process physiologic_function +rel result_of mental_process social_behavior +rel result_of molecular_function acquired_abnormality +rel result_of molecular_function anatomical_abnormality +rel result_of molecular_function biologic_function +rel result_of molecular_function cell_function +rel result_of molecular_function cell_or_molecular_dysfunction +rel result_of molecular_function congenital_abnormality +rel result_of molecular_function disease_or_syndrome +rel result_of molecular_function environmental_effect_of_humans +rel result_of molecular_function experimental_model_of_disease +rel result_of molecular_function genetic_function +rel result_of molecular_function human_caused_phenomenon_or_process +rel result_of molecular_function injury_or_poisoning +rel result_of molecular_function mental_or_behavioral_dysfunction +rel result_of molecular_function mental_process +rel result_of molecular_function natural_phenomenon_or_process +rel result_of molecular_function neoplastic_process +rel result_of molecular_function organism_function +rel result_of molecular_function organ_or_tissue_function +rel result_of molecular_function pathologic_function +rel result_of molecular_function phenomenon_or_process +rel result_of molecular_function physiologic_function +rel result_of molecular_sequence mental_process +rel result_of natural_phenomenon_or_process acquired_abnormality +rel result_of natural_phenomenon_or_process anatomical_abnormality +rel result_of natural_phenomenon_or_process biologic_function +rel result_of natural_phenomenon_or_process cell_function +rel result_of natural_phenomenon_or_process cell_or_molecular_dysfunction +rel result_of natural_phenomenon_or_process congenital_abnormality +rel result_of natural_phenomenon_or_process disease_or_syndrome +rel result_of natural_phenomenon_or_process environmental_effect_of_humans +rel result_of natural_phenomenon_or_process experimental_model_of_disease +rel result_of natural_phenomenon_or_process genetic_function +rel result_of natural_phenomenon_or_process human_caused_phenomenon_or_process +rel result_of natural_phenomenon_or_process injury_or_poisoning +rel result_of natural_phenomenon_or_process mental_or_behavioral_dysfunction +rel result_of natural_phenomenon_or_process mental_process +rel result_of natural_phenomenon_or_process molecular_function +rel result_of natural_phenomenon_or_process neoplastic_process +rel result_of natural_phenomenon_or_process organism_function +rel result_of natural_phenomenon_or_process organ_or_tissue_function +rel result_of natural_phenomenon_or_process pathologic_function +rel result_of natural_phenomenon_or_process phenomenon_or_process +rel result_of natural_phenomenon_or_process physiologic_function +rel result_of neoplastic_process acquired_abnormality +rel result_of neoplastic_process anatomical_abnormality +rel result_of neoplastic_process behavior +rel result_of neoplastic_process biologic_function +rel result_of neoplastic_process cell_function +rel result_of neoplastic_process cell_or_molecular_dysfunction +rel result_of neoplastic_process congenital_abnormality +rel result_of neoplastic_process diagnostic_procedure +rel result_of neoplastic_process disease_or_syndrome +rel result_of neoplastic_process environmental_effect_of_humans +rel result_of neoplastic_process experimental_model_of_disease +rel result_of neoplastic_process genetic_function +rel result_of neoplastic_process health_care_activity +rel result_of neoplastic_process human_caused_phenomenon_or_process +rel result_of neoplastic_process individual_behavior +rel result_of neoplastic_process injury_or_poisoning +rel result_of neoplastic_process laboratory_procedure +rel result_of neoplastic_process mental_or_behavioral_dysfunction +rel result_of neoplastic_process mental_process +rel result_of neoplastic_process molecular_function +rel result_of neoplastic_process natural_phenomenon_or_process +rel result_of neoplastic_process organism_function +rel result_of neoplastic_process organ_or_tissue_function +rel result_of neoplastic_process pathologic_function +rel result_of neoplastic_process phenomenon_or_process +rel result_of neoplastic_process physiologic_function +rel result_of neoplastic_process social_behavior +rel result_of neoplastic_process therapeutic_or_preventive_procedure +rel result_of nucleotide_sequence mental_process +rel result_of organism_attribute biologic_function +rel result_of organism_attribute cell_function +rel result_of organism_attribute cell_or_molecular_dysfunction +rel result_of organism_attribute disease_or_syndrome +rel result_of organism_attribute environmental_effect_of_humans +rel result_of organism_attribute experimental_model_of_disease +rel result_of organism_attribute genetic_function +rel result_of organism_attribute human_caused_phenomenon_or_process +rel result_of organism_attribute injury_or_poisoning +rel result_of organism_attribute mental_or_behavioral_dysfunction +rel result_of organism_attribute mental_process +rel result_of organism_attribute molecular_function +rel result_of organism_attribute natural_phenomenon_or_process +rel result_of organism_attribute neoplastic_process +rel result_of organism_attribute organism_function +rel result_of organism_attribute organ_or_tissue_function +rel result_of organism_attribute pathologic_function +rel result_of organism_attribute phenomenon_or_process +rel result_of organism_attribute physiologic_function +rel result_of organism_function acquired_abnormality +rel result_of organism_function anatomical_abnormality +rel result_of organism_function biologic_function +rel result_of organism_function cell_function +rel result_of organism_function cell_or_molecular_dysfunction +rel result_of organism_function congenital_abnormality +rel result_of organism_function disease_or_syndrome +rel result_of organism_function environmental_effect_of_humans +rel result_of organism_function experimental_model_of_disease +rel result_of organism_function genetic_function +rel result_of organism_function human_caused_phenomenon_or_process +rel result_of organism_function injury_or_poisoning +rel result_of organism_function mental_or_behavioral_dysfunction +rel result_of organism_function mental_process +rel result_of organism_function molecular_function +rel result_of organism_function natural_phenomenon_or_process +rel result_of organism_function neoplastic_process +rel result_of organism_function organ_or_tissue_function +rel result_of organism_function pathologic_function +rel result_of organism_function phenomenon_or_process +rel result_of organism_function physiologic_function +rel result_of organ_or_tissue_function acquired_abnormality +rel result_of organ_or_tissue_function anatomical_abnormality +rel result_of organ_or_tissue_function biologic_function +rel result_of organ_or_tissue_function cell_function +rel result_of organ_or_tissue_function cell_or_molecular_dysfunction +rel result_of organ_or_tissue_function congenital_abnormality +rel result_of organ_or_tissue_function disease_or_syndrome +rel result_of organ_or_tissue_function environmental_effect_of_humans +rel result_of organ_or_tissue_function experimental_model_of_disease +rel result_of organ_or_tissue_function genetic_function +rel result_of organ_or_tissue_function human_caused_phenomenon_or_process +rel result_of organ_or_tissue_function injury_or_poisoning +rel result_of organ_or_tissue_function mental_or_behavioral_dysfunction +rel result_of organ_or_tissue_function mental_process +rel result_of organ_or_tissue_function molecular_function +rel result_of organ_or_tissue_function natural_phenomenon_or_process +rel result_of organ_or_tissue_function neoplastic_process +rel result_of organ_or_tissue_function organism_function +rel result_of organ_or_tissue_function pathologic_function +rel result_of organ_or_tissue_function phenomenon_or_process +rel result_of organ_or_tissue_function physiologic_function +rel result_of pathologic_function acquired_abnormality +rel result_of pathologic_function anatomical_abnormality +rel result_of pathologic_function behavior +rel result_of pathologic_function biologic_function +rel result_of pathologic_function cell_function +rel result_of pathologic_function cell_or_molecular_dysfunction +rel result_of pathologic_function congenital_abnormality +rel result_of pathologic_function diagnostic_procedure +rel result_of pathologic_function disease_or_syndrome +rel result_of pathologic_function environmental_effect_of_humans +rel result_of pathologic_function experimental_model_of_disease +rel result_of pathologic_function genetic_function +rel result_of pathologic_function health_care_activity +rel result_of pathologic_function human_caused_phenomenon_or_process +rel result_of pathologic_function individual_behavior +rel result_of pathologic_function injury_or_poisoning +rel result_of pathologic_function laboratory_procedure +rel result_of pathologic_function mental_or_behavioral_dysfunction +rel result_of pathologic_function mental_process +rel result_of pathologic_function molecular_function +rel result_of pathologic_function natural_phenomenon_or_process +rel result_of pathologic_function neoplastic_process +rel result_of pathologic_function organism_function +rel result_of pathologic_function organ_or_tissue_function +rel result_of pathologic_function phenomenon_or_process +rel result_of pathologic_function physiologic_function +rel result_of pathologic_function social_behavior +rel result_of pathologic_function therapeutic_or_preventive_procedure +rel result_of phenomenon_or_process acquired_abnormality +rel result_of phenomenon_or_process anatomical_abnormality +rel result_of phenomenon_or_process biologic_function +rel result_of phenomenon_or_process cell_function +rel result_of phenomenon_or_process cell_or_molecular_dysfunction +rel result_of phenomenon_or_process congenital_abnormality +rel result_of phenomenon_or_process disease_or_syndrome +rel result_of phenomenon_or_process environmental_effect_of_humans +rel result_of phenomenon_or_process experimental_model_of_disease +rel result_of phenomenon_or_process genetic_function +rel result_of phenomenon_or_process human_caused_phenomenon_or_process +rel result_of phenomenon_or_process injury_or_poisoning +rel result_of phenomenon_or_process mental_or_behavioral_dysfunction +rel result_of phenomenon_or_process mental_process +rel result_of phenomenon_or_process molecular_function +rel result_of phenomenon_or_process natural_phenomenon_or_process +rel result_of phenomenon_or_process neoplastic_process +rel result_of phenomenon_or_process organism_function +rel result_of phenomenon_or_process organ_or_tissue_function +rel result_of phenomenon_or_process pathologic_function +rel result_of phenomenon_or_process physiologic_function +rel result_of physiologic_function acquired_abnormality +rel result_of physiologic_function anatomical_abnormality +rel result_of physiologic_function biologic_function +rel result_of physiologic_function cell_function +rel result_of physiologic_function cell_or_molecular_dysfunction +rel result_of physiologic_function congenital_abnormality +rel result_of physiologic_function disease_or_syndrome +rel result_of physiologic_function environmental_effect_of_humans +rel result_of physiologic_function experimental_model_of_disease +rel result_of physiologic_function genetic_function +rel result_of physiologic_function human_caused_phenomenon_or_process +rel result_of physiologic_function injury_or_poisoning +rel result_of physiologic_function mental_or_behavioral_dysfunction +rel result_of physiologic_function mental_process +rel result_of physiologic_function molecular_function +rel result_of physiologic_function natural_phenomenon_or_process +rel result_of physiologic_function neoplastic_process +rel result_of physiologic_function organism_function +rel result_of physiologic_function organ_or_tissue_function +rel result_of physiologic_function pathologic_function +rel result_of physiologic_function phenomenon_or_process +rel result_of qualitative_concept mental_process +rel result_of quantitative_concept mental_process +rel result_of social_behavior mental_process +rel result_of spatial_concept mental_process +rel result_of temporal_concept mental_process +rel surrounds body_part_organ_or_organ_component tissue +rel surrounds body_space_or_junction cell +rel surrounds body_substance embryonic_structure +rel surrounds embryonic_structure cell +rel surrounds tissue body_space_or_junction +rel surrounds tissue body_substance +rel surrounds tissue cell +rel surrounds tissue cell_component +rel treats antibiotic acquired_abnormality +rel treats antibiotic anatomical_abnormality +rel treats antibiotic cell_or_molecular_dysfunction +rel treats antibiotic congenital_abnormality +rel treats antibiotic disease_or_syndrome +rel treats antibiotic experimental_model_of_disease +rel treats antibiotic injury_or_poisoning +rel treats antibiotic mental_or_behavioral_dysfunction +rel treats antibiotic neoplastic_process +rel treats antibiotic pathologic_function +rel treats antibiotic sign_or_symptom +rel treats drug_delivery_device acquired_abnormality +rel treats drug_delivery_device anatomical_abnormality +rel treats drug_delivery_device cell_or_molecular_dysfunction +rel treats drug_delivery_device congenital_abnormality +rel treats drug_delivery_device disease_or_syndrome +rel treats drug_delivery_device experimental_model_of_disease +rel treats drug_delivery_device injury_or_poisoning +rel treats drug_delivery_device mental_or_behavioral_dysfunction +rel treats drug_delivery_device neoplastic_process +rel treats drug_delivery_device pathologic_function +rel treats drug_delivery_device sign_or_symptom +rel treats medical_device acquired_abnormality +rel treats medical_device anatomical_abnormality +rel treats medical_device cell_or_molecular_dysfunction +rel treats medical_device congenital_abnormality +rel treats medical_device disease_or_syndrome +rel treats medical_device experimental_model_of_disease +rel treats medical_device injury_or_poisoning +rel treats medical_device mental_or_behavioral_dysfunction +rel treats medical_device neoplastic_process +rel treats medical_device pathologic_function +rel treats medical_device sign_or_symptom +rel treats pharmacologic_substance acquired_abnormality +rel treats pharmacologic_substance anatomical_abnormality +rel treats pharmacologic_substance cell_or_molecular_dysfunction +rel treats pharmacologic_substance congenital_abnormality +rel treats pharmacologic_substance disease_or_syndrome +rel treats pharmacologic_substance experimental_model_of_disease +rel treats pharmacologic_substance injury_or_poisoning +rel treats pharmacologic_substance mental_or_behavioral_dysfunction +rel treats pharmacologic_substance neoplastic_process +rel treats pharmacologic_substance pathologic_function +rel treats pharmacologic_substance sign_or_symptom +rel treats professional_or_occupational_group patient_or_disabled_group +rel treats therapeutic_or_preventive_procedure acquired_abnormality +rel treats therapeutic_or_preventive_procedure anatomical_abnormality +rel treats therapeutic_or_preventive_procedure cell_or_molecular_dysfunction +rel treats therapeutic_or_preventive_procedure congenital_abnormality +rel treats therapeutic_or_preventive_procedure disease_or_syndrome +rel treats therapeutic_or_preventive_procedure experimental_model_of_disease +rel treats therapeutic_or_preventive_procedure injury_or_poisoning +rel treats therapeutic_or_preventive_procedure mental_or_behavioral_dysfunction +rel treats therapeutic_or_preventive_procedure neoplastic_process +rel treats therapeutic_or_preventive_procedure pathologic_function +rel treats therapeutic_or_preventive_procedure sign_or_symptom +rel uses age_group classification +rel uses age_group clinical_drug +rel uses age_group drug_delivery_device +rel uses age_group intellectual_product +rel uses age_group manufactured_object +rel uses age_group medical_device +rel uses age_group regulation_or_law +rel uses age_group research_device +rel uses diagnostic_procedure antibiotic +rel uses diagnostic_procedure clinical_drug +rel uses diagnostic_procedure drug_delivery_device +rel uses diagnostic_procedure manufactured_object +rel uses diagnostic_procedure medical_device +rel uses diagnostic_procedure pharmacologic_substance +rel uses diagnostic_procedure research_device +rel uses family_group classification +rel uses family_group clinical_drug +rel uses family_group drug_delivery_device +rel uses family_group intellectual_product +rel uses family_group manufactured_object +rel uses family_group medical_device +rel uses family_group regulation_or_law +rel uses family_group research_device +rel uses group classification +rel uses group clinical_drug +rel uses group drug_delivery_device +rel uses group intellectual_product +rel uses group manufactured_object +rel uses group medical_device +rel uses group regulation_or_law +rel uses group research_device +rel uses molecular_biology_research_technique research_device +rel uses patient_or_disabled_group classification +rel uses patient_or_disabled_group clinical_drug +rel uses patient_or_disabled_group drug_delivery_device +rel uses patient_or_disabled_group intellectual_product +rel uses patient_or_disabled_group manufactured_object +rel uses patient_or_disabled_group medical_device +rel uses patient_or_disabled_group regulation_or_law +rel uses patient_or_disabled_group research_device +rel uses population_group classification +rel uses population_group clinical_drug +rel uses population_group drug_delivery_device +rel uses population_group intellectual_product +rel uses population_group manufactured_object +rel uses population_group medical_device +rel uses population_group regulation_or_law +rel uses population_group research_device +rel uses professional_or_occupational_group classification +rel uses professional_or_occupational_group clinical_drug +rel uses professional_or_occupational_group drug_delivery_device +rel uses professional_or_occupational_group intellectual_product +rel uses professional_or_occupational_group manufactured_object +rel uses professional_or_occupational_group medical_device +rel uses professional_or_occupational_group regulation_or_law +rel uses professional_or_occupational_group research_device +rel uses research_activity research_device +rel uses therapeutic_or_preventive_procedure antibiotic +rel uses therapeutic_or_preventive_procedure clinical_drug +rel uses therapeutic_or_preventive_procedure drug_delivery_device +rel uses therapeutic_or_preventive_procedure food +rel uses therapeutic_or_preventive_procedure manufactured_object +rel uses therapeutic_or_preventive_procedure medical_device +rel uses therapeutic_or_preventive_procedure pharmacologic_substance +rel uses therapeutic_or_preventive_procedure research_device