NVlabs / nvbio

NVBIO is a library of reusable components designed to accelerate bioinformatics applications using CUDA.
BSD 3-Clause "New" or "Revised" License
206 stars 50 forks source link

Use nvbio to develop program #16

Closed nevergonefan closed 4 years ago

nevergonefan commented 7 years ago

I want to use nvbio to implement an algorithm for alignment, but I don't know how to include nvbio in my project? Should I cmake it first and include it as a header file?

nevergonefan commented 7 years ago

I have compiled nvbio and run the examples, but I don't know how to use nvbio as a lib in my project? I am not famaliar to cmake and makefile...

r-barnes commented 5 years ago

@nevergonefan : If you're not familiar with cmake and makefile, this isn't really the appropriate place to get help with them. Once you've built nvbio, you can find a libnvbio.a file under your build directory. This is the library. The header files are included in the nvbio directory (not under build). Once you've located these you'll need to use StackOverflow or some other site to find out how to build a project using them.