We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b225c1e commit 50fe8e1Copy full SHA for 50fe8e1
bowtie
@@ -85,14 +85,16 @@ def main():
85
if tot_size > small_index_max_size:
86
bin_spec = os.path.join(ex_path, bin_l)
87
else:
88
- if os.path.exists(args.index + idx_ext_l):
+ if not os.path.exists(arg + idx_ext_s)\
89
+ and os.path.exists(args.index + idx_ext_l):
90
91
bowtie_args.insert(0, args.index)
92
93
for arg in bowtie_args:
94
if arg[0] == '-':
95
continue
- if os.path.exists(arg + idx_ext_l):
96
97
+ and os.path.exists(arg + idx_ext_l):
98
99
100
if args.debug:
0 commit comments