Skip to content

Harmless typo in parameter checking code #93

Description

@egaffo

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions