Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
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
{{ message }}
molgen
/
bsmap
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
1
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
e940e8b
gzstream
samtools
GPL_3.0.txt
LICENSE
Makefile
README.md
README.txt
RELEASE.txt
align.cpp
align.h
bsp2sam.py
dbseq.cpp
dbseq.h
main.cpp
methdiff.py
methratio.py
pairs.cpp
pairs.h
param.cpp
param.h
reads.cpp
reads.h
sam2bam.sh
utilities.cpp
utilities.h
Breadcrumbs
bsmap
/
Makefile
Blame
Blame
Latest commit
History
History
29 lines (25 loc) · 793 Bytes
Breadcrumbs
bsmap
/
Makefile
Top
File metadata and controls
Code
Blame
29 lines (25 loc) · 793 Bytes
Raw
BIN = $(DESTDIR)/usr/bin # With pthreads override CXXFLAGS+= -DMAXHITS=1000 -DTHREAD -funroll-loops -Lsamtools -Isamtools -Lgzstream -Igzstream -O3 -m64 -march=native -g # Without pthreads #override CXXFLAGS+= -DMAXHITS=1000 -funroll-loops -Lsamtools -Isamtools -Lgzstream -Igzstream -O3 -m64 -march=native THREAD= -lpthread SOURCE = align dbseq main pairs param reads utilities OBJS1= $(patsubst %,%.o,$(SOURCE)) all: bsmap %.o:%.cpp $(CXX) $(CXXFLAGS) -c $< -o $@ bsmap: $(OBJS1) (cd samtools; make) (cd gzstream; make) $(CXX) $(CXXFLAGS) $^ -o $@ $(THREAD) -lbam -lz -lgzstream rm -f *.o clean: rm -f *.o *~ bsmap (cd samtools; make clean) (cd gzstream; make clean) install: install -d $(BIN) install ./bsmap $(BIN) install ./sam2bam.sh $(BIN) install ./methratio.py $(BIN)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
You can’t perform that action at this time.