Mercurial > repos > tyty > structurefold
view get_reads/read_file.py @ 95:6255de2a6c77 draft
Uploaded
author | tyty |
---|---|
date | Mon, 16 Feb 2015 15:19:32 -0500 |
parents | 297cdb01d656 |
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;