You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 660 is if not os.exists(os.path.join(dir_in, seq1_name)):
which does not work, but this does: if not os.path.exists(os.path.join(dir_in, seq1_name)):
With these changes made, the output for --match1 and --match2 end up with the right filename in the right place.
Thanks,
Jason
The text was updated successfully, but these errors were encountered:
Hello Thomas,
There appear to be 3 bugs in put_output within demultiplex.py
Line 656
Should be
With the a similar change required on line 658.
Line 660 is
if not os.exists(os.path.join(dir_in, seq1_name)):
which does not work, but this does:
if not os.path.exists(os.path.join(dir_in, seq1_name)):
With these changes made, the output for --match1 and --match2 end up with the right filename in the right place.
Thanks,
Jason
The text was updated successfully, but these errors were encountered: