Mercurial > repos > rnateam > graphclust_preprocessing
view splitSHAPE.py @ 13:2a5defc09381 draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust commit 4406735e44aba20859c252be39f4e99df28c7a92
author | rnateam |
---|---|
date | Sat, 27 Oct 2018 13:27:57 -0400 |
parents | c0c9d19bc7b2 |
children |
line wrap: on
line source
import os import re import sys shape_file = sys.argv[1] pattern = re.compile("^>.*$") toWrite = "" count_for_id = 1 seq_counter = 0 new_id = "" seq_id = [] seq_string = [] orig_id = [] name_file = "FASTA/data.names" array_all_chunks = [] with open(name_file, 'r') as f: for line in f: if len(line.strip()) == 0: continue seq_id.append(int(line.split()[0])) seq_string.append(line.split()[1]) orig_id_srt = line.split()[3] orig_id_srt = orig_id_srt.rsplit('_',1)[0] orig_id.append(orig_id_srt) react_dict = {} react_arr = [] with open(shape_file, 'r') as shape: content = shape.read() lines = content.split('\n') for line in lines: if pattern.match(line): line = line.replace('>','').split()[0] react_arr=[] react_dict[line] = react_arr continue else: react_arr.append(line) toWrite = "" chunks = [] for i in range(len(orig_id)): if not orig_id[i] in react_dict: raise RuntimeError('Error key {} {} not found'.format(i, orig_id[i])) react_val = react_dict[orig_id[i]] toWrite += '>' + str(seq_id[i]) + " " + seq_string[i] + "\n" chunks = re.findall(r'\d+', seq_string[i]) for j in react_val[int(chunks[1])-1:int(chunks[2])]: id_s = int(j.split()[0]) id_s = id_s - int(chunks[1]) + 1 toWrite += str(id_s) + '\t' + j.split()[1] + "\n" with open("shape_data_split.react", 'w') as out: out.write(toWrite)