本文整理汇总了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
示例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