-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
503: SyntaxWarning: invalid escape sequence '\.' #884
Comments
@Georicl I encountered this issue before. In my experience, Python 3.12 caused the problem, so you should try downgrading to Python 3.11 or lower. I set my Python version to 3.11.9, and the error disappeared. |
thank u gays!I'm going to try this way, I searched before for a possible error reporting bug in python 3.12.*, but this was supposedly waring in the previous version, just changed to error in this same one, I thought it was all stopping the process itself because of the error. @xo2003 |
Now I'm having a classic problem with my GeneMark reporting an error
|
When I use braker an error has been encountered.
open errors/GeneMark-ET.stderr\
so I open prothint.py
line 503
systemCall('sed \"s/\.//\" ' + args.proteins + ' | sed \"s/|/_/g\" > ' +
But when I rewrote it as
systemCall('sed \"s/\\.//\" ' + args.proteins + ' | sed \"s/|/_/g\" > ' +
or
systemCall(r'sed \"s/\.//\" ' + args.proteins + ' | sed \"s/|/_/g\" > ' +
It fails to run them all and shows no display at error and shows termination at the same place in GeneMark-ET.stdout\
The species I'm studying is oryzias curvinotus.Can you answer my current difficulties, thank you very much!
env:
Python 3.12.7
braker2 3.0.8
geneMark-ETP
The text was updated successfully, but these errors were encountered: