I'm having some difficulty with an error I keep getting when I try to convert some python2.7 code to python3. I know this code works in python2.7. However when I try to convert it to python3 using 2to3.py I receive this error:
RefactoringTool: Can't parse ProAnalysis.py: ParseError: bad input: type=5, value='\t', context=('', (1562,0))
After searching the internet I saw that some people said that added -p would solve the problem however when I added that I only get the new error:
RefactoringTool: Can't parse ProAnalysis.py: ParseError: bad input: type=3, value="'Only using alignments greater than %.2f id and %.2f coverage'", context=('', (52,10))
I don't know if seeing the original file would help however it is a few thousand lines long. Any help would be very must appreciated. Thank you!
-Rachel