匹配和合并两个文本表?

时间:2014-02-11 12:09:09

标签: python python-2.7 csv genetics

我有以下格式的2个(相当大的,~15k行)csv表:

Disease/Trait                Mapped_gene    p-Value 
Wegener's granulomatosis    HLA-DPB1        2.00E-50    
Wegener's granulomatosis    TENM3 - DCTD    2.00E-06    
Brugada syndrome            SCN5A           1.00E-14    
Brugada syndrome            SCN10A          1.00E-68    
Brugada syndrome            HEY2 - NCOA7    5.00E-17    
Major depressive disorder   IRF8 - FENDRR   3.00E-07    


Identifier  Homologues  Symbol
CG11621     5286    HEY2
CG11621     5287    IRF8
CG11621     5287    PIK3C2B
CG11621     5288    PIK3C2G
CG11621     5288    PIK3C2G
CG11949     2035    DCTD
CG11949     2035    EPB41
CG11949     2036    EPB41L1
CG11949     2037    EPB41L2

我想使用Python来比较表,这样如果表2中的任何“符号”列与表1中的“Mapped_gene”匹配,则每个表中的匹配行可以合并在一起并放入输出中文件。

我尝试过使用Pandas插件,但无法使其正常工作。有没有人有更好的想法?

感谢。

1 个答案:

答案 0 :(得分:0)

这应该可以按你的意愿运作:

import csv

diseases = {}

# Load the disease file in memory
with csv.reader(open('table1.csv', 'rb')) as dfile:
    # Skip the header
    dfile.next()
    for disease, gene, pvalue in dfile:
        diseases[gene] = (disease, pvalue)

with csv.reader(open('table2.csv', 'rb')) as idfile, csv.writer(open('output.csv', 'wb')) as output:
    # Skip the header
    idfile.next()
    for ident, homologue, symbol in idfile:
        if symbol in diseases:
            output.writerow((ident, homologue, symbol) + diseases[symbol])

它假设Mapped_gene下的每个基因名称都是唯一的。它可以很容易地扩展到应对重复,否则。