Mercurial > repos > tyty > structurefold
view predict/read_file.py @ 40:d5e10cdd486d draft
Uploaded
author | tyty |
---|---|
date | Mon, 20 Oct 2014 14:57:57 -0400 |
parents | a292aaf51735 |
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;