Skip to content

Commit

Permalink
flake
Browse files Browse the repository at this point in the history
  • Loading branch information
yhoogstrate committed Jan 9, 2018
1 parent 2ea68fb commit 6bd7747
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drdisco/DetectOutput.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def insert_in_index(index, entries, score, i):
if score not in index:
index[score] = {}

key = entries[0].chrA + ':' + str(entries[0].posA) + '(' + entries[0].strandA + ')-' + entries[0].chrB + ':' + str(entries[0].posB) + '(' + entries[0].strandB + ')_'+str(i)
key = entries[0].chrA + ':' + str(entries[0].posA) + '(' + entries[0].strandA + ')-' + entries[0].chrB + ':' + str(entries[0].posB) + '(' + entries[0].strandB + ')_' + str(i)
index[score][key] = entries

with open(output_table, 'w') as fh_out:
Expand Down Expand Up @@ -580,7 +580,7 @@ def insert(pos, e):

for e in remainder:
insert_in_index(idx2, [e], e.score, q)
q +=1
q += 1

log.info("Determining fusion gene names and generate output")
# Generate output
Expand Down

0 comments on commit 6bd7747

Please sign in to comment.