Source code edited to be compatible with python3. The compatibility with python2 has not been tested and it is probably lost. Known differences in output between this version and the original python2 version:
Transcripts lengths are occasionally different due to the different rounding strategies used by py2 and py3. Differences are minor and sporadic. Python3 rounding is generally preferable.
In transcript selection mode, the selected transcript may be different when ties occur. This is because ties are resolved by the order transcripts are returned by the dict.items() method which is not guaranteed to be preserved. These differences are sporadic and there is no reason to prefer one or the other.
Source code edited to be compatible with python3. The compatibility with python2 has not been tested and it is probably lost. Known differences in output between this version and the original python2 version:
Transcripts lengths are occasionally different due to the different rounding strategies used by py2 and py3. Differences are minor and sporadic. Python3 rounding is generally preferable.
In transcript selection mode, the selected transcript may be different when ties occur. This is because ties are resolved by the order transcripts are returned by the
dict.items()
method which is not guaranteed to be preserved. These differences are sporadic and there is no reason to prefer one or the other.