Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rchikhi committed Feb 8, 2017
1 parent 1503358 commit b7dd9ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gatb
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ def bloocoo(output_file_prefix, threshold=2, kmer_size=31):
elif nInputBanks > 1: # several input banks
l_corrected = []
bloocoo_output = sorted(glob.glob(prefix+'*'+keyword+'*_*_*'))
if len(bloocoo_output) != nInputBanks:
print("Error: Bloocoo returned fewer error-corrected files (%d) than original input files (%d)" % (len(bloocoo_output), nInputBanks))
exit(1)
with open(list_reads_with_bloocoo_corrections,"w") as f:
for ii in range(nInputBanks):
l_corrected.append( bloocoo_output[ii] )
Expand Down

0 comments on commit b7dd9ef

Please sign in to comment.