Skip to content
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

SyntaxError when running srst2 #139

Open
cpavloud opened this issue Oct 12, 2022 · 1 comment
Open

SyntaxError when running srst2 #139

cpavloud opened this issue Oct 12, 2022 · 1 comment

Comments

@cpavloud
Copy link

Hello!
I am trying to run srst2 in an HPC cluster to identify resistance genes and I get the error below:

Traceback (most recent call last):
File "/CCAS/home/cpavloudi/miniconda3/bin/srst2", line 5, in
from srst2.srst2 import main
File "/CCAS/home/cpavloudi/miniconda3/lib/python3.9/site-packages/srst2/srst2.py", line 308
print "Warning! MLST delimiter is " + delimiter + " but these genes may violate the pattern and cause problems:"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Warning! MLST delimiter is " + delimiter + " but these genes may violate the pattern and cause problems:")?

Do you have any idea why this might be happening?

I checked if I have installed srst2 properly, but maybe something was wrong with my installation?

(base) srst2 --version
Traceback (most recent call last):
File "/CCAS/home/cpavloudi/miniconda3/bin/srst2", line 5, in
from srst2.srst2 import main
File "/CCAS/home/cpavloudi/miniconda3/lib/python3.9/site-packages/srst2/srst2.py", line 308
print "Warning! MLST delimiter is " + delimiter + " but these genes may violate the pattern and cause problems:"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Warning! MLST delimiter is " + delimiter + " but these genes may violate the pattern and cause problems:")?

(base) getmlst.py -h
File "/CCAS/home/cpavloudi/miniconda3/bin/getmlst.py", line 128
print "No species matched your query."
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("No species matched your query.")?

(base) slurm_srst2.py -h
File "/CCAS/home/cpavloudi/miniconda3/bin/slurm_srst2.py", line 105
print "Could not determine forward/reverse read status for input file " + fastq
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Could not determine forward/reverse read status for input file " + fastq)?

@dannagifford
Copy link

I had this issue too. I solved it by running the scripts with python2, i.e. instead of
getmlst.py -h
run
python2.7 /usr/local/bin/getmlst.py -h
or wherever your scripts were actually installed to.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants