Mercurial > repos > tyty > structurefold
diff get_reads/read_file.py @ 39:c5f80e82efb7 draft
Uploaded
author | tyty |
---|---|
date | Mon, 20 Oct 2014 14:57:26 -0400 |
parents | 297cdb01d656 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/get_reads/read_file.py Mon Oct 20 14:57:26 2014 -0400 @@ -0,0 +1,21 @@ +#!/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; + +