Mercurial > repos > tyty > structurefold
view Iterative_mapping/read_file.py @ 32:001b4562ac14 draft
Uploaded
author | tyty |
---|---|
date | Mon, 20 Oct 2014 14:44:43 -0400 |
parents | d56631911cc1 |
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;