Skip to content

Commit d8f72c9

Browse files
committed
fix return statement
1 parent 23f07ca commit d8f72c9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyjacker/breakpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def find_enhancers_orientation(breakpoints,TADs,df_enhancers,sample,gene):
165165
minpos_right=1e10
166166
maxpos_left=0
167167
if not chr in breakpoints:
168-
return "", 0
168+
return "", "", 0
169169
for bp in breakpoints[chr]:
170170
if bp.pos1>=left_boundary and bp.pos1<=right_boundary and bp.sample==sample:
171171
if bp.pos1>start:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages = ["pyjacker"]
77

88
[project]
99
name = 'pyjacker'
10-
version = "1.1.6"
10+
version = "1.1.7"
1111
description = 'Enhancer hijacking detection from WGS and RNAseq.'
1212
readme = 'README.md'
1313
authors = [

0 commit comments

Comments
 (0)