We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Newer versions of python3 (>=3.6) treats a '\d' string as an escape sequence, leading to the following error:
ApoplastP-1.0.2/Scripts/functions.py:333: SyntaxWarning: invalid escape sequence '\d' molecular_weight = float(re.findall("\d+.\d+", str(mwline))[0])
Adding another escape \ in the python code seems to have fixed this for me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Newer versions of python3 (>=3.6) treats a '\d' string as an escape sequence, leading to the following error:
Adding another escape \ in the python code seems to have fixed this for me.
The text was updated successfully, but these errors were encountered: