comparison reactivity_cal/Iterative_mapping/Iterative_mapping/remove_map.py @ 15:f3639b8430d7 draft

Deleted selected files
author tyty
date Mon, 20 Oct 2014 02:00:25 -0400
parents
children
comparison
equal deleted inserted replaced
14:866df523a791 15:f3639b8430d7
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()