跳至内容
售后
用户工具
登录
站点工具
搜索
工具
显示页面
修订记录
反向链接
最近更改
媒体管理器
网站地图
登录
>
最近更改
媒体管理器
网站地图
您的足迹:
个性化条目:ipath分析
编辑本页后请点击“保存”。请参阅
syntax
了解维基语法。只有在您能
改进
该页面的前提下才编辑它。如果您想尝试一些东西,请先到
playground
热身。
媒体文件
======iPath====== =====简介===== iPath(Interactive Pathways Explorer),是一款网页版的通路图 (pathways maps)可视化分析软件。\\ =====脚本说明===== 脚本路径:/TJPROJ6/RNA_SH/personal_dir/zhanghailei/script/ipath/ipath.py python /TJPROJ6/RNA_SH/personal_dir/zhanghailei/script/ipath/ipath.py --help usage: prepare_ipath_info [opthions] [value] This program is used to prepare ipath info! optional arguments: -h, --help show this help message and exit -I , --input the kegg Enrichment result -O , --outfile the output file 效果展示\\ 脚本\\ <code> #!/usr/bin/python #00FF00 green import re import os import argparse parser=argparse.ArgumentParser(prog='prepare_ipath_info',usage='%(prog)s [opthions] [value]',description='This program is used to prepare ipath info!') parser.add_argument('-I','--input',help='the kegg Enrichment result',metavar='') parser.add_argument('-O','--outfile',help='the output file',metavar='') argv=vars(parser.parse_args()) if argv['input'] == None: raise Exception('You should provide the kegg Enrichment result !') else: in_file=argv['input'] if argv['outfile'] == None: raise Exception('You should provide the outfile!') else: out=argv['outfile'] output = open(out,"w") output.write("path_id\twidth\tcolour/green\tpath_id\twidth\tcolour/yellow\tpath_id\twidth\tcolour/red\n") for line in open(in_file,"r"): if re.search(r'^[A-z]+\d+\t',line): data = line.strip().split("\t")[0] path_id = re.findall(r'[A-z]+(\d+)',data)[0] output.write("map"+path_id+"\tW5.0\t#00FF00\t"+"map"+path_id+"\tW5.0\t#FFFF00\t"+"map"+path_id+"\tW5.0\t#FF0000\n") cp_dir = os.path.dirname(out) if len(cp_dir) == 0: cp_dir = os.getcwd() os.system("cp /TJPROJ6/RNA_SH/personal_dir/zhanghailei/script/ipath/readme.pdf "+cp_dir) </code> 参考文献 \\
保存
预览
取消
编辑摘要
当您选择开始编辑本页,即寓示你同意将你贡献的内容按下列许可协议发布:
CC Attribution-Share Alike 4.0 International
个性化条目/ipath分析.txt
· 最后更改: 2023/03/15 07:17 由
fengjie
页面工具
显示页面
修订记录
反向链接
回到顶部