comparison Iterative_mapping/remove_map.py @ 56:9d26c2e4953e draft

Uploaded
author tyty
date Tue, 18 Nov 2014 01:00:33 -0500
parents d56631911cc1
children
comparison
equal deleted inserted replaced
55:20b8f6ab0e05 56:9d26c2e4953e
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()