You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ uname
Darwin
$ g++ --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin14.5.0
Thread model: posix
Attempting to build the latest code for chopBAI, specifically commit 6dfdaa5 as follows:
$ git clone https://github.com/seqan/seqan.git
$ git clone https://github.com/DecodeGenetics/chopBAI.git
$ cd chopBAI
$ emacs Makefile
...
$ git diff
diff --git a/Makefile b/Makefile
index 24ec4fb..04eb225 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ CC=$(CXX)
# Set this to include SeqAn libraries, either system wide
# or download into current folder and set to .
-SEQAN_LIB=.
+SEQAN_LIB=../seqan/include/
CXXFLAGS+=-I$(SEQAN_LIB) -DSEQAN_HAS_ZLIB=1
LDLIBS=-lz -lpthread
Thanks for reporting this. The CSI format is not a part of SeqAn so we implemented something basic instead and kept the same API. The function jumpToOrphans, to find the unaligned readpairs in a BAM file is not used in the code and not implemented, but is just a stub. So even if clang complains about unused options the binary is still fine.
Its good to hear this is a harmless warning, but can you not silence the warning in these cases? e.g. using a pragma or a void statement line inside the function (with an explanatory comment).
Having chopBAI compile without warnings would be a big improvement.
Using Mac OS X 10.10.5,
Attempting to build the latest code for chopBAI, specifically commit 6dfdaa5 as follows:
Then compiling gives:
Compilation gives three warnings as shown above, but seems to work:
The text was updated successfully, but these errors were encountered: