Changeset 245
- Timestamp:
- 07/09/12 15:02:17 (11 months ago)
- Files:
-
- 1 modified
-
scripts/last-map-probs.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
scripts/last-map-probs.py
r244 r245 32 32 elif line[0] == "s": 33 33 sLineCount += 1 34 if sLineCount == 2: queryNames.append(line.split()[1]) 35 # maxsplit doesn't seem to make it faster 34 if sLineCount == 2: queryNames.append(line.split(None, 2)[1]) 36 35 elif line[0].isdigit(): # we have an alignment in tabular format 37 w = line.split( )36 w = line.split(None, 7) 38 37 scores.append(float(w[0])) 39 38 queryNames.append(w[6])
