Mercurial > repos > tyty > structurefold
annotate Iterative_mapping/read_s_file.py @ 112:87ec0ecdc2af draft
Uploaded
author | tyty |
---|---|
date | Sun, 12 Apr 2015 14:28:30 -0400 |
parents | d56631911cc1 |
children |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 import sys | |
5 | |
6 | |
7 | |
8 def read_sp_file(in_file): | |
9 f = open(in_file); | |
10 result = []; | |
11 for aline in f.readlines(): | |
12 temp = []; | |
13 tline = aline.strip(); | |
14 tl = tline.split(' '); | |
15 for i in range(0, len(tl)): | |
16 if len(tl[i].strip())>0: | |
17 temp.append(tl[i].strip()); | |
18 result.append(temp); | |
19 f.close(); | |
20 return result; | |
21 | |
22 |