I would like to write code to find eversion.
To find inversion, the code for this if statement is as follows:
elif read.is_reverse == read.mate_is_reverse:
But I cannot figure out what the code is for finding eversion.
Does somebode know this code?
I tried:
elif read.is_reverse == True and read.mate_is_reverse == False:
and
elif read.is_reverse == False and read.mate_is_reverse == True:
But both won't work. How can that be?
Can somebody help me?
To find inversion, the code for this if statement is as follows:
elif read.is_reverse == read.mate_is_reverse:
But I cannot figure out what the code is for finding eversion.
Does somebode know this code?
I tried:
elif read.is_reverse == True and read.mate_is_reverse == False:
and
elif read.is_reverse == False and read.mate_is_reverse == True:
But both won't work. How can that be?
Can somebody help me?
Comment