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
First of all: thank you for making wonderful software!
When I run bowtie2-build (v2.5.3) on Windows 11 I get the error:
bowtie2-build-s does not exist, try running `[g]make bowtie2-build-s
The problem seems to be in line 118 of the bowtie2-build python script:
if not os.path.exists(build_bin_spec):
In my case it searches for bowtie2-build-s, but in the folder there is only bowtie2-build-s.exe.
bowtie2-build-s
bowtie2-build-s.exe
Changing line 118 to
if not (os.path.exists(build_bin_spec) | os.path.exists(build_bin_spec + '.exe')):
fixes the issue for me.
Note that I did not use v2.5.4, as the Windows binaries for that version produced other errors.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First of all: thank you for making wonderful software!
When I run bowtie2-build (v2.5.3) on Windows 11 I get the error:
The problem seems to be in line 118 of the bowtie2-build python script:
In my case it searches for
bowtie2-build-s
, but in the folder there is onlybowtie2-build-s.exe
.Changing line 118 to
fixes the issue for me.
Note that I did not use v2.5.4, as the Windows binaries for that version produced other errors.
The text was updated successfully, but these errors were encountered: