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 149 of main.py if (options.mate1 and not options.mate1) or (options.mate2 and not options.mate1) and options.pairedendindependent:
should be if (options.mate1 and not options.mate2) or (options.mate2 and not options.mate1) and options.pairedendindependent:
?
Anyhow, the code eventually works as intended and this issue seems to be harmless.
Enrico
Edit: similar at line 204 if (not options.mate1 or not options.mate1) and options.pairedendindependent:
... perhaps I am missing some logic?
The text was updated successfully, but these errors were encountered:
line 149 of main.py
if (options.mate1 and not options.mate1) or (options.mate2 and not options.mate1) and options.pairedendindependent:
should be
if (options.mate1 and not options.mate2) or (options.mate2 and not options.mate1) and options.pairedendindependent:
?
Anyhow, the code eventually works as intended and this issue seems to be harmless.
Enrico
Edit: similar at line 204
if (not options.mate1 or not options.mate1) and options.pairedendindependent:
... perhaps I am missing some logic?
The text was updated successfully, but these errors were encountered: