Compare commits
7 Commits
sumatra_v1
...
master
Author | SHA1 | Date | |
---|---|---|---|
89fa626950 | |||
1c27cff112 | |||
c81ac1ec53 | |||
a2b7a11b84 | |||
89eafb3772 | |||
29081ddbb3 | |||
c4822c4874 |
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -1,3 +1,3 @@
|
|||||||
[submodule "sumalibs"]
|
[submodule "sumalibs"]
|
||||||
path = sumalibs
|
path = sumalibs
|
||||||
url = https://git.metabarcoding.org/obitools/sumalibs.git
|
url = https://forge.metabarcoding.org/obitools/sumalibs.git
|
||||||
|
16
Makefile
16
Makefile
@ -1,8 +1,12 @@
|
|||||||
|
PREFIX=/usr/local
|
||||||
|
|
||||||
|
CFLAGS=-I$(PREFIX)/include
|
||||||
|
|
||||||
EXEC = sumatra
|
EXEC = sumatra
|
||||||
|
|
||||||
SUMATRA_SRC = sumatra.c \
|
SUMATRA_SRC = sumatra.c \
|
||||||
mtcompare_sumatra.c
|
mtcompare_sumatra.c
|
||||||
|
|
||||||
SUMATRA_OBJ = $(patsubst %.c,%.o,$(SUMATRA_SRC))
|
SUMATRA_OBJ = $(patsubst %.c,%.o,$(SUMATRA_SRC))
|
||||||
|
|
||||||
SRCS = $(SUMATRA_SRC)
|
SRCS = $(SUMATRA_SRC)
|
||||||
@ -22,9 +26,9 @@ all: $(EXEC)
|
|||||||
|
|
||||||
# executable compilation and link
|
# executable compilation and link
|
||||||
|
|
||||||
sumatra: $(SUMATRA_OBJ) $(LIBSUMA)
|
sumatra: $(SUMATRA_OBJ) ./sumalibs/libsuma.a
|
||||||
$(CC) $(LDFLAGS) -o $@ -pthread $(SUMATRA_OBJ) $(LIBSUMAPATH) $(LIB)
|
$(CC) $(LDFLAGS) -o $@ -pthread $(SUMATRA_OBJ) $(LIBSUMAPATH) $(LIB)
|
||||||
|
|
||||||
########
|
########
|
||||||
#
|
#
|
||||||
# project management
|
# project management
|
||||||
@ -32,8 +36,10 @@ sumatra: $(SUMATRA_OBJ) $(LIBSUMA)
|
|||||||
########
|
########
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(SUMATRA_OBJ)
|
rm -f $(SUMATRA_OBJ)
|
||||||
rm -f $(EXEC)
|
rm -f $(EXEC)
|
||||||
$(MAKE) -C ./sumalibs clean
|
$(MAKE) -C ./sumalibs clean
|
||||||
|
|
||||||
|
install: all
|
||||||
|
install -d $(DESTDIR)$(PREFIX)/bin/
|
||||||
|
install -m 755 $(EXEC) $(DESTDIR)$(PREFIX)/bin/
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
LIBSUMAPATH = -L./sumalibs
|
LIBSUMAPATH = -L./sumalibs
|
||||||
|
|
||||||
LIBSUMA = ./sumalibs/libsuma.a
|
LIBSUMA = ./sumalibs/libsuma.a
|
||||||
@ -8,9 +7,9 @@ LDFLAGS=
|
|||||||
|
|
||||||
|
|
||||||
ifeq ($(CC),gcc)
|
ifeq ($(CC),gcc)
|
||||||
CFLAGS = -O3 -s -DOMP_SUPPORT -w
|
CFLAGS = -I sumalibs -O3 -s -DOMP_SUPPORT -w
|
||||||
else
|
else
|
||||||
CFLAGS = -O3 -w
|
CFLAGS = -I sumalibs -O3 -w
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,10 +10,10 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "sumatra.h"
|
#include "sumatra.h"
|
||||||
#include "./sumalibs/libfasta/sequence.h"
|
#include "libfasta/sequence.h"
|
||||||
#include "./sumalibs/libutils/utilities.h"
|
#include "libutils/utilities.h"
|
||||||
#include "./sumalibs/liblcs/upperband.h"
|
#include "liblcs/upperband.h"
|
||||||
#include "./sumalibs/liblcs/sse_banded_LCS_alignment.h"
|
#include "liblcs/sse_banded_LCS_alignment.h"
|
||||||
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
2
sumalibs
2
sumalibs
Submodule sumalibs updated: ed56cb1d6b...9f08b85eaf
10
sumatra.c
10
sumatra.c
@ -14,13 +14,13 @@
|
|||||||
|
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
|
||||||
#include "./sumalibs/libfasta/sequence.h"
|
#include "libfasta/sequence.h"
|
||||||
#include "./sumalibs/liblcs/upperband.h"
|
#include "liblcs/upperband.h"
|
||||||
#include "./sumalibs/liblcs/sse_banded_LCS_alignment.h"
|
#include "liblcs/sse_banded_LCS_alignment.h"
|
||||||
#include "./sumalibs/libutils/utilities.h"
|
#include "libutils/utilities.h"
|
||||||
#include "mtcompare_sumatra.h"
|
#include "mtcompare_sumatra.h"
|
||||||
|
|
||||||
#define VERSION "1.0.32"
|
#define VERSION "1.0.36"
|
||||||
|
|
||||||
|
|
||||||
/* ----------------------------------------------- */
|
/* ----------------------------------------------- */
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#ifndef SUMATRA_H_
|
#ifndef SUMATRA_H_
|
||||||
#define SUMATRA_H_
|
#define SUMATRA_H_
|
||||||
|
|
||||||
#include "./sumalibs/libfasta/sequence.h"
|
#include "libfasta/sequence.h"
|
||||||
|
|
||||||
void printResults(fastaSeqPtr seq1, fastaSeqPtr seq2, double score, BOOL extradata, int64_t pairs, BOOL print);
|
void printResults(fastaSeqPtr seq1, fastaSeqPtr seq2, double score, BOOL extradata, int64_t pairs, BOOL print);
|
||||||
|
|
||||||
|
@ -29,7 +29,8 @@ Untar the archive, go into the newly created directory and compile:
|
|||||||
```
|
```
|
||||||
tar –zxvf sumatra_v[x.x.xx].tar.gz
|
tar –zxvf sumatra_v[x.x.xx].tar.gz
|
||||||
cd sumatra_v[x.x.xx]
|
cd sumatra_v[x.x.xx]
|
||||||
make
|
make -C sumalibs install
|
||||||
|
make install
|
||||||
```
|
```
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
Binary file not shown.
Reference in New Issue
Block a user