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:
I pushed a change to the bug_fixes branch that addresses this issue. The changeset will be part of the next release.
P.S. what issues are you having with v2.5.4?
Sorry, something went wrong.
Thank you!
For v2.5.4 when running bowtie2-build (without any arguments) I get the error:
OSError: [WinError 193] %1 is not a valid Win32 application`
When running bowtie2 (without any arguments) I get the error:
(ERR): Expected bowtie2 to be in same directory with bowtie2-align: C:/Users/user/Desktop/bowtie2-2.5.4-mingw-aarch64/ Exiting now ...
Which is a similar error as #489. Perhaps it is related to #480?
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: