@prefix : . @prefix rdfs: . # # Specify the SearchIndexExcluders, DocumentModifiers and IndexingUriFinders for VIVO. # These are in addition to the ones specified for VIVO. # :vivoSearchExcluder_namespaceExcluder a , ; :excludes "http://purl.obolibrary.org/obo/" . # ------------------------------------ :extension_forContextNodes a , , . # ------------------------------------ :vivodocumentModifier_calculateParameters a , . # ------------------------------------ :vivoUriFinder_VCard a , ; rdfs:label "Preferred title" ; :hasPredicateRestriction "http://www.w3.org/2006/vcard/ns#title" ; :hasPredicateRestriction "http://www.w3.org/2006/vcard/ns#email" ; :hasSelectQuery """ PREFIX vcard: PREFIX obo: SELECT ?uri WHERE { ?uri obo:ARG_2000028 ?card . ?card a vcard:Individual . ?card vcard:hasTitle ?subject . } """ ; :hasSelectQuery """ PREFIX vcard: PREFIX obo: SELECT ?uri WHERE { ?uri obo:ARG_2000028 ?card . ?card a vcard:Individual . ?card vcard:hasEmail ?subject . } """ . :vivodocumentModifier_PreferredTitle a , ; rdfs:label "Preferred title" ; :hasTargetField "ALLTEXT" ; :hasTargetField "ALLTEXTUNSTEMMED" ; :hasTargetField "PREFERRED_TITLE" ; :hasSelectQuery """ PREFIX vcard: PREFIX obo: SELECT ?title WHERE { ?uri obo:ARG_2000028 ?card . ?card a vcard:Individual . ?card vcard:hasTitle ?titleHolder . ?titleHolder vcard:title ?title . } """ . :vivodocumentModifier_EmailAddress a , ; rdfs:label "Email address" ; :hasSelectQuery """ PREFIX vcard: PREFIX obo: SELECT ?email WHERE { ?uri obo:ARG_2000028 ?card . ?card a vcard:Individual . ?card vcard:hasEmail ?emailHolder . ?emailHolder vcard:email ?email . } """ .