CAVA ported to python3 #8
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.