Mercurial > repos > tyty > structurefold
view reactivity_cal/read_file.py @ 66:d2817a631a7b draft
Uploaded
author | tyty |
---|---|
date | Tue, 18 Nov 2014 16:24:04 -0500 |
parents | 7a8ddf1819b1 |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys def read_t_file(in_file): f = open(in_file); result = []; for aline in f.readlines(): temp = []; tline = aline.strip(); tl = tline.split('\t'); for i in range(0, len(tl)): temp.append(tl[i].strip()); result.append(temp); f.close(); return result;