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


Python Network.read_netmatrix_file方法代码示例

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


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

示例1: read_output

# 需要导入模块: import Network [as 别名]
# 或者: from Network import read_netmatrix_file [as 别名]
    def read_output(self, settings):
        # Code to write for collecting the output files from the algorithm, writes to the
        # output list in the object
        # What we want to do here is get the prediction rate on the last time
        # point and the network so we can compare it against a gold std.
        output_file = self.output_dir + "/output/" + "/nir_output.txt"

        net = Network()
        net.read_netmatrix_file(output_file, self.gene_list)
        self.network = net
开发者ID:remtcs,项目名称:Network-Inference-Workspace,代码行数:12,代码来源:nir.py

示例2: read_output

# 需要导入模块: import Network [as 别名]
# 或者: from Network import read_netmatrix_file [as 别名]
    def read_output(self,settings):
        # Code to write for collecting the output files from the algorithm, writes to the
      # output list in the object
      # What we want to do here is get the prediction rate on the last time
      # point and the network so we can compare it against a gold std.
      # This file is a bunch of zscores, so we have to load the cutoff we want
      output_file = self.output_dir + "/output/inferelator_output.csv"

      net = Network()
      net.read_netmatrix_file(output_file, self.gene_list)
      self.network = net

      return self.network
开发者ID:remtcs,项目名称:Network-Inference-Workspace,代码行数:15,代码来源:inferelator_pipeline.py


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