-
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
cannot configure with bamtools #117
Comments
Hi Ariel, The Thanks for the report, |
Hi Jared, It was just the vanilla “bamtools library must be installed” error message. In the configure file that I got, line 5879 just says, “for ac_header in api/BamReader.h”, and if I echo a pwd on the line above, it is still in the sga/src directory – not where api/BamReader.h resides – so I had to edit it to point to the $with_bamtools location. Do I need to specify the bamtools path to autogen.sh in order for it to get into the configure file? Or what else was missing? I am following the instructions on github: git clone https://github.com/jts/sga.git Thanks, From: Jared Simpson [mailto:[email protected]] Hi Ariel, The configure script is automatically generated by autoconf from the input file configure.ac - you should not have to edit it directly. What error messages does ./configure --with-bamtools=/path/to/lib give? Thanks for the report, — |
Hi Ariel, I'm just back from a trip, sorry for the slow response. Can you show the contents of your bamtools directory?
|
In reply to OP:
|
I was just running into the very same problem. In the end I used one of the many bamtools installations coming with another tool (in my case bedtools or WHAM). There the bamtools folder contain the folders bin include and src and the SGA configuration works. Using any new bamtools installation did not work, whatever folder inside the install I was specifying. The folder structure is totally different and I assume thatswhy the config breaks. However, even tho the configuration worked, I never was able to compile sga. As of now I am giving up on this. |
I occurred this problem, too. |
Cloned today and found two issues with 'configure':
File 'configure' line 5879 does not specify a path for the bamtools file 'api/BamReader.h', so it will never be able to figure out that bamtools is installed. I had to prefix it with "$with_bamtools/include/"
Also, line 2314 change 'thne' to 'then'
Thanks,
Ariel
The text was updated successfully, but these errors were encountered: