-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6e6d0a
commit 7088b79
Showing
14 changed files
with
821 additions
and
852 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
CC= gcc | ||
LIBS= -pthread -lm lib/zlib/libz.a -lm lib/jemalloc/lib/libjemalloc.a -lm lib/hdf5/lib/libhdf5-static.a -lm lib/hdf5/lib/libhdf5_hl-static.a -ldl -lm lib/libdivsufsort/lib/libdivsufsort64.a | ||
CFLAGS= -fgnu89-inline -O2 -D DEBUG -w -lrt | ||
CC= gcc | ||
|
||
LIBS= -pthread \ | ||
-lm lib/zlib/libz.a \ | ||
-lm lib/hdf5/lib/libhdf5-static.a \ | ||
-lm lib/hdf5/lib/libhdf5_hl-static.a -ldl \ | ||
-lm lib/libdivsufsort/lib/libdivsufsort64.a | ||
|
||
CFLAG= -fgnu89-inline -O2 -w -lrt | ||
|
||
SRC= src/ssw.c \ | ||
src/xxhash.c \ | ||
src/bgzf.c \ | ||
src/hash_align.c \ | ||
src/EM.c \ | ||
src/bam_write.c \ | ||
src/fmindex.c \ | ||
src/genome_map.c \ | ||
src/main.c \ | ||
src/argument.c \ | ||
src/get_buffer.c \ | ||
src/read.c \ | ||
src/usage.c \ | ||
src/log.c | ||
|
||
Hera: | ||
mkdir -p build/ | ||
$(CC) $(CFLAGS) src/ssw.c src/xxhash.c src/bgzf.c src/hash_align.c src/EM.c src/bam_write.c src/fusion.c src/fmindex.c src/genome_map.c src/assembly.c src/main.c $(LIBS) -o build/hera | ||
$(CC) $(CFLAG) $(SRC) $(LIBS) -o build/hera | ||
cp src/hera_build build/hera_build | ||
chmod +x build/hera_build | ||
|
||
clean: | ||
rm -f *.o | ||
rm -rf build | ||
rm -rf lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
CC= gcc | ||
LIBS= -pthread -lm lib/zlib/libz.a -lm lib/jemalloc/lib/libjemalloc.a -lm lib/hdf5/lib/libhdf5-static.a -lm lib/hdf5/lib/libhdf5_hl-static.a -ldl -lm lib/libdivsufsort/lib/libdivsufsort64.a | ||
CFLAGS= -fgnu89-inline -O2 -D DEBUG -w | ||
CC= gcc | ||
|
||
LIBS= -pthread \ | ||
-lm lib/zlib/libz.a \ | ||
-lm lib/hdf5/lib/libhdf5-static.a \ | ||
-lm lib/hdf5/lib/libhdf5_hl-static.a -ldl \ | ||
-lm lib/libdivsufsort/lib/libdivsufsort64.a | ||
|
||
CFLAG= -fgnu89-inline -O2 -w | ||
|
||
SRC= src/ssw.c \ | ||
src/xxhash.c \ | ||
src/bgzf.c \ | ||
src/hash_align.c \ | ||
src/EM.c \ | ||
src/bam_write.c \ | ||
src/fmindex.c \ | ||
src/genome_map.c \ | ||
src/main.c \ | ||
src/argument.c \ | ||
src/get_buffer.c \ | ||
src/read.c \ | ||
src/usage.c \ | ||
src/log.c | ||
|
||
Hera: | ||
mkdir -p build/ | ||
$(CC) $(CFLAGS) src/ssw.c src/xxhash.c src/bgzf.c src/hash_align.c src/EM.c src/bam_write.c src/fusion.c src/fmindex.c src/genome_map.c src/assembly.c src/main.c $(LIBS) -o build/hera | ||
$(CC) $(CFLAG) $(SRC) $(LIBS) -o build/hera | ||
cp src/hera_build build/hera_build | ||
chmod +x build/hera_build | ||
|
||
clean: | ||
rm -f *.o | ||
rm -rf build | ||
rm -rf lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
7088b79
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this commit was incomplete? It lacks several of the files referenced in the Makefiles (e.g. get_buffer.c, read.c, usage.c, log.c) and assembly.c still exists but isn't referenced in the Makefiles anymore.
7088b79
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you very much for informing us! We have committed the missing files.
7088b79
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thanks!