comparison Iterative_mapping/remove_map.py @ 66:d2817a631a7b draft

Uploaded
author tyty
date Tue, 18 Nov 2014 16:24:04 -0500
parents d56631911cc1
children
comparison
equal deleted inserted replaced
65:36d912d5b1ac 66:d2817a631a7b
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 import sys
5 from read_file import *
6
7
8 unmap_file = sys.argv[1]
9 map_file = sys.argv[2]
10 result_file = sys.argv[3]
11
12
13 unmap = read_t_file(unmap_file)
14 mapped = read_t_file(map_file)
15 h = file(result_file, 'w')
16
17 maps = set()
18 for i in range(len(mapped)):
19 maps.add(mapped[i][0])
20
21
22 for i in range(len(unmap)):
23 name = unmap[i][0]
24 if name not in maps:
25 h.write(name)
26 h.write('\n')
27
28
29 h.close()