当前位置: 首页>>代码示例>>Python>>正文


Python GraphUtils.addOWLVersionInfo方法代码示例

本文整理汇总了Python中dipper.utils.GraphUtils.GraphUtils.addOWLVersionInfo方法的典型用法代码示例。如果您正苦于以下问题:Python GraphUtils.addOWLVersionInfo方法的具体用法?Python GraphUtils.addOWLVersionInfo怎么用?Python GraphUtils.addOWLVersionInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在dipper.utils.GraphUtils.GraphUtils的用法示例。


在下文中一共展示了GraphUtils.addOWLVersionInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: declareAsOntology

# 需要导入模块: from dipper.utils.GraphUtils import GraphUtils [as 别名]
# 或者: from dipper.utils.GraphUtils.GraphUtils import addOWLVersionInfo [as 别名]
    def declareAsOntology(self, graph):
        """
        The file we output needs to be declared as an ontology, including it's version information.
        Further information will be augmented in the dataset object.
        :param version:
        :return:
        """
        # <http://data.monarchinitiative.org/ttl/biogrid.ttl> a owl:Ontology ;
        # owl:versionInfo <http://archive.monarchinitiative.org/ttl/biogrid-YYYY-MM-DD.ttl>

        gu = GraphUtils(curie_map.get())

        ontology_file_id = 'MonarchData:'+self.name+".ttl"
        gu.addOntologyDeclaration(graph, ontology_file_id)

        # add timestamp as version info

        t = datetime.now()
        t_string = t.strftime("%Y-%m-%d-%H-%M")
        ontology_version = self.name+'-'+t_string
        archive_url = 'MonarchArchive:'+ontology_version+'.ttl'
        gu.addOWLVersionIRI(graph, ontology_file_id, archive_url)
        gu.addOWLVersionInfo(graph, ontology_file_id, ontology_version)

        # TODO make sure this is synced with the Dataset class

        return
开发者ID:d3borah,项目名称:dipper,代码行数:29,代码来源:Source.py


注:本文中的dipper.utils.GraphUtils.GraphUtils.addOWLVersionInfo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。