注释信息合并处理脚本

将所有的注释信息合并到一块,先写python脚本,再用shell进行批处理
test.py

import sys
import os
import os.path
filename = sys.argv[1]
#filename="xaa"
def readfile(file):
    f = open(file)
    h = f.readlines()
    return h
def readfile2(dir):
    hh = []
    for parent,dirnames,filenames in os.walk(dir):
        for file in filenames:
            f = open(os.path.join(dir,file),'rb')
            h = f.readlines()
            f.close()
            hh.extend(h)
    return hh
def makejson(pro,h,j):
    find = 0
    str = "{"
    i=j
    while (i<=len(h)-1) and (pro in h[i]):
        if find == 0:
            find = 1
            str+="[" + h[i][:-1].replace("\t", ",") + "]"
        else:
            str += ",[" + h[i][:-1].replace("\t", ",") + "]"
        i = i+1
    if find==1:
        return [str+"}", i]
    else:
        return ["null", i]

dir = "fungi_data"
dir1 = "fungi_mw_ip_res"
dir2 = "fungi-cazyme"
dir3 = "fungi-pdb"
dir4 = "fungi-swiss"
dir5 = "fungi-lipop"
dir6 = "fungi-targetp"

dir_w = "fungi_z"

file = os.path.join(dir,filename)
file1 = os.path.join(dir1,filename)
file2 = os.path.join(dir2,"diamond.out."+filename)
file3 = os.path.join(dir3,"pdb.out."+filename)
file4 = os.path.join(dir4,"swiss.out."+filename)
file5 = os.path.join(dir5,filename)
newdir6 = os.path.join(dir6,filename)
fw = open(os.path.join(dir_w,filename),"w")

h_data = readfile(file)
h_mp = readfile(file1)
h_cazy = readfile(file2)
h_pdb = readfile(file3)
h_swiss = readfile(file4)
h_lipop = readfile(file5)
h_targetp = readfile2(newdir6)
#print (h_targetp)
mi=0
ci=0
pi=0
si=0

pro="xx"
seq="xx"

for i in range(len(h_data)):
    if h_data[i][0] == ">":
        pro = h_data[i][1:-1]
    else:
        seq = h_data[i][:-1]
        pro_name = pro.split("|")[-1]
        pro_id = pro.split("|")[2]
        mw="null"
        ip="null"
        for mi in range(len(h_mp)):
            if pro_name in h_mp[mi]:
                mw = h_mp[mi+2].split()[3]
                ip = h_mp[mi+4].split(" = ")[1][:-1]
                #print (mw+ip)
                break
        [str_cazy, ci]=makejson(pro, h_cazy, ci)
        [str_pdb, pi] = makejson(pro, h_pdb, pi)
        [str_swiss, si] = makejson(pro, h_swiss, si)
        mytype="null"
        score="null"
        margin = "null"
        cleavage="null"
        for li in range(len(h_lipop)):
            if h_lipop[li][0]=="#" and (pro in h_lipop[li]):
                line = h_lipop[li][:-1].split(" ")
                mytype = line[2]
                score  = line[3].split("=")[1]
                if len(line)>=6:
                    margin = line[4].split("=")[1]
                    cleavage = line[5].split("=")[1]
                break
        mylen = "null"
        mTP = "null"
        SP = "null"
        other = "null"
        Loc = "null"
        RC = "null"
        for ti in range(len(h_targetp)):
            if h_targetp[ti].decode()[0]=='j':
                line = h_targetp[ti][:-1].decode().split()
                if len(pro)>20:
                    tmp_pro = pro[0:20]
                else:
                    tmp_pro = pro
                if line[0] == tmp_pro:
                   # print (line)
                    mylen = line[1]
                    mTP = line[2]
                    SP = line[3]
                    other = line[4]
                    Loc = line[5]
                    RC = line[6]
                    break
        wstr = pro + "\t" + seq + "\t" + mw + "\t" + ip + "\t" + str_cazy + "\t" + str_pdb + "\t" + str_swiss + "\t" + mytype + "\t" + score + "\t" + margin + "\t" + cleavage +"\t"+ mylen + "\t" + mTP + "\t" + SP + "\t" + other + "\t" + Loc + "\t" + RC + "\n"
        fw.write(wstr)
        #print(wstr)

2.批处理,约50个进程

#!/bin/bash
start=`date +%s` #定义脚本运行的开始时间

for file in ~/huangle/fungi_annotation/fungi_data/*
do
{
   python test.py ${file##*/}

        echo 'success annotation '$file' !';
 }&
done
wait
end=`date +%s`

echo "TIME:`expr $end - $start`"

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • 官网 中文版本 好的网站 Content-type: text/htmlBASH Section: User ...
    不排版阅读 4,362评论 0 5
  • [TOC] 简介: Shell 是一个用C语言编写的程序,它是用户使用Linux的桥梁。Shell既是一种命令语言...
    黄海滨_x阅读 817评论 0 2
  • 我自己的心路历程来说,破除鸡汤思维就是从认知“自私的基因”开始的。你不需要也不可能拥有和记忆非常多知识,也没啥用。...
    v孩子爸阅读 172评论 0 0
  • 窗外 小雨淅淅沥沥 叹一场秋雨寒意袭 猛然想起 那久违的花草 爱怜起心底 修枝浇水施肥 毫不迟疑精心打理 花草报以...
    富华杰阅读 4,647评论 70 241
  • 如果你也在失眠,不妨想一想过去的岁月。 时光荏苒,白驹过隙,感动却依然热烈。 如果你也在失眠,请想一想曾经的梦想。...
    春春春春节阅读 153评论 0 0