Skip to content

Commit dafc340

Browse files
authored
Update util.py
1 parent 5632ffc commit dafc340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lsaBGC/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ def addLocusTagsToGBKs(inputs):
900900
with open(bgc_gbk) as ogbf:
901901
for line in ogbf:
902902
line = line.strip()
903-
if line.startswith('Orig. start') and '::' in line:
903+
if line.startswith('Orig. start') and '::' in line:
904904
bgc_starts.append(int(line.split()[-1].replace('>', '').replace('<', '')))
905905
assert(len(bgc_starts) == 1)
906906
bgc_start = bgc_starts[0]

0 commit comments

Comments
 (0)