资源简介
Python RWR 可重启随机游走代码。
Python RWR,可重启的随机游走源代码,可重启的随机游走源代码
随机游走
代码片段和文件信息
“““
Main script for running tissue-specific graph walk experiments to convergence.
“““
import sys
import argparse
from walker import Walker
def generate_seed_list(seed_file):
“““ Read seed file into a list. “““
seed_list = []
try:
fp = open(seed_file “r“)
except IOError:
sys.exit(“Error opening file {}“.format(seed_file))
for line in fp.readlines():
info = line.rstrip().split()
if len(info) > 1:
seed_list.append(info[1])
else:
seed_list.append(info[0])
fp.close()
return seed_list
def get_node_list(node_file):
node_list = []
try:
fp = open(node_file ‘r‘)
except IOError:
sys.exit(‘Could not open file: {}‘.format(node_file))
# read the first (i.e. largest) connected component
cur_line = fp.readline()
while cur_line and not cur_line.isspace():
if cur_line:
node_list.append(cur_line.rstrip())
cur_line = fp.readline()
fp.close()
return node_list
def main(argv):
# set up argument parsing
parser = argparse.ArgumentParser()
parser.add_argument(‘input_graph‘ help=‘Original graph input file in\
edge list format‘)
parser.add_argument(‘seed‘ help=‘Seed file to pull start nodes from‘)
parser.add_argument(‘-e‘ ‘--restart_prob‘ type=float default=0.7
help=‘Restart probability for random walk‘)
parser.add_argument(‘-l‘ ‘--low_list‘ nargs=‘?‘ default=None
help=‘ List of genes expressed and\
unexpressed in the current tissue if applicable‘)
parser.add_argument(‘-n‘ ‘--node_list‘ nargs=‘?‘ default=None
help=‘ Order of output probs‘)
parser.add_argument(‘-o‘ ‘--original_graph_prob‘ type=float default=0.1
help=‘Probability of walking on the original (non-\
tissue specific) graph if applicable‘)
parser.add_argument(‘-r‘ ‘--remove‘ nargs=‘+‘
help=‘ Nodes to remove from the graph if any‘)
opts = parser.parse_args()
seed_list = generate_seed_list(opts.seed)
node_list = get_node_list(opts.node_list) if opts.node_list else []
# filter nodes we want to remove out of the starting seed if any
remove_list = opts.remove if opts.remove else []
if remove_list:
seed_list = [s for s in seed_list if s not in remove_list]
# run the experiments and write a rank list to stdout
wk = Walker(opts.input_graph opts.low_list remove_list)
wk.run_exp(seed_list opts.restart_prob
opts.original_graph_prob node_list)
if __name__ == ‘__main__‘:
main(sys.argv)
# main(testdata/test_network.ppitestdata/test_seed.txt)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 0 2019-03-26 12:53 Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?
文件 110229 2018-07-29 19:30 Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?WechatIMG2.jpeg
目录 0 2019-03-26 12:53 __MACOSX\
文件 0 2019-03-26 12:53 __MACOSX\Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?
文件 266 2018-07-29 19:30 __MACOSX\Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?._WechatIMG2.jpeg
文件 6148 2019-03-26 12:53 Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?.DS_Store
文件 120 2019-03-26 12:53 __MACOSX\Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?._.DS_Store
文件 2880 2019-03-26 11:08 Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?run_walker.py
文件 708 2019-03-26 11:08 __MACOSX\Python RWR 鍙噸鍚殢鏈烘父璧颁唬鐮?._run_walker.py
相关资源
- 基于SVM的手写字体识别Python版本
- Python→Transorflow猫狗识别完整代码,附
- RPi.GPIO-0.6.3.tar
- python+rabird.winio实现驱动级模拟按键
- 基于wxPython和PySerial实现的串口助手
- Python Keras库 安装包
- python实现网络爬虫 爬取北上广深的天
- 正确可用的基于python实现的贝塞尔曲
- python3抓取头条新闻源码
- python.txt
- python版本selenium webdriver api
- _bz2.cpython-37m-x86_64-linux-gnu.so
- 树莓派与PC端在局域网内运用python实现
- Violent-Python-Source.zip
- python将矩形jpg图形批量裁剪为圆形图
- 彼岸网4K高清图片爬虫源代码
- gmpy2-2.0.8-cp38-cp38-win_amd64.whl
- 天天酷跑Python.docx
- python图像处理.rar
- cplex教程python
- python画图小程序
- Python袖珍指南Python Pocket Reference 第五
- LSSVM_python_example.zip
- python学生成绩管理系统.rar
- L1制导求加速度算法部分.py
- [计算方法作业]利用python中matplotlib实
- [计算方法作业]利用python中matplotlib实
- 利用python中matplotlib库实现绘制(随机
- 全景图像拼接python+opencv
- 复旦大学人工智能N-Queens答案
评论
共有 条评论