Skip to content

Commit 4ab4a5c

Browse files
committed
update fusion_total_index.zip
1 parent f088bbd commit 4ab4a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_graph.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ def Get_geneCoordinate(gtf, od):
114114
strand = '1'
115115
else:
116116
strand = '-1'
117-
gene_coordinates = '\t'.join([chrn, strand, start, end, gene, '\n'])
118117
if gene in synonyms_dict:
119118
gene = synonyms_dict[gene]
119+
gene_coordinates = '\t'.join([chrn, strand, start, end, gene, '\n'])
120120
if gene not in GeneCoordinate_dict:
121121
GeneCoordinate_dict[gene] = [chrn, strand, start, end, gene]
122122
Out.write(gene_coordinates)

0 commit comments

Comments
 (0)