is weakly interacting with (transitive)


URI

http://semanticscience.org/resource/isWeaklyInteractingWithtransitive

Label

is weakly interacting with (transitive)

Description

is weakly interacting with is a symmetric relation between two molecular entities (or any part thereof) that are interacting through some weak force (van der waals, hydrogen bonds, electrostatic interactions)

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) , Blank node (see implementation) is weakly interacting with (transitive) owl:Thing (inferred)

Implementation

@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sio: <http://semanticscience.org/resource/> .

sio:isWeaklyInteractingWithtransitive a owl:ObjectProperty,
        owl:SymmetricProperty,
        owl:TransitiveProperty ;
    rdfs:label "is weakly interacting with (transitive)"@en ;
    dct:description "is weakly interacting with is a symmetric relation between two molecular entities (or any part thereof) that are interacting through some weak force (van der waals, hydrogen bonds, electrostatic interactions)"@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( sio:Molecule [ a owl:Restriction ;
                        owl:onProperty sio:isPartOf ;
                        owl:someValuesFrom sio:Molecule ] ) ] ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( sio:Molecule [ a owl:Restriction ;
                        owl:onProperty sio:isPartOf ;
                        owl:someValuesFrom sio:Molecule ] ) ] ;
    rdfs:subPropertyOf sio:isConnectedTo .