5 Commits

Author SHA1 Message Date
c40d884cc4 Actualiser libsse/_sse.h 2025-06-12 14:53:57 +00:00
84d9d96f94 Téléverser les fichiers vers "libsse" 2025-06-12 14:38:00 +00:00
Celine Mercier
9f08b85eaf Optimised sequence parsing (from previous commit) 2020-04-13 13:48:09 +02:00
Celine Mercier
d7cd7e2677 Made sequence parsing more robust (issue with arm64 systems) 2020-04-13 11:59:09 +02:00
Celine Mercier
b11748eac8 Cleaner installation 2019-03-27 16:07:12 +01:00
4 changed files with 8874 additions and 6 deletions

View File

@@ -1,3 +1,4 @@
PREFIX=/usr/local
SOURCES = libfasta/fasta_header_parser.c \ SOURCES = libfasta/fasta_header_parser.c \
libfasta/fasta_seq_writer.c \ libfasta/fasta_seq_writer.c \
@@ -44,3 +45,12 @@ $(LIBFILE): $(OBJECTS)
ar -cr $@ $? ar -cr $@ $?
$(RANLIB) $@ $(RANLIB) $@
install: all
install -d $(DESTDIR)$(PREFIX)/lib/
install -m 644 $(LIBFILE) $(DESTDIR)$(PREFIX)/lib/
install -d $(DESTDIR)$(PREFIX)/include/
for lib in libfasta liblcs libsse libutils libfile ; do \
install -d $(DESTDIR)$(PREFIX)/include/$$lib ; \
cp $$lib/*.h $(DESTDIR)$(PREFIX)/include/$$lib ; \
done

View File

@@ -162,19 +162,24 @@ void seq_fillSeqOnlyATGC(char *seq, fastaSeqPtr seqElem, int seqLen)
{ {
char* seqTemp; char* seqTemp;
char c; char c;
int32_t index = 0, seqIndex = 0, len = strlen(seq); int32_t index = 1, seqIndex = 0, len = strlen(seq);
char* seqAlphabets = "acgtACGT"; char* seqAlphabets = "acgtACGT";
int notAllATGC = 0; int notAllATGC = 0;
int goOnParsing = 1;
seqTemp = (char*) util_malloc(seqLen*sizeof(char), __FILE__, __LINE__); seqTemp = (char*) util_malloc(seqLen*sizeof(char), __FILE__, __LINE__);
while (index < len) while (goOnParsing)
{ {
c = seq[index++]; c = seq[index++];
if (strchr(seqAlphabets, c) != NULL) if (strchr(seqAlphabets, c) != NULL)
seqTemp[seqIndex++] = tolower(c); seqTemp[seqIndex++] = tolower(c);
else if (seq[index+1]=='\0')
goOnParsing = 0; // end of the sequence has been reached.
else if (c != '\n') else if (c != '\n')
notAllATGC = 1; notAllATGC = 1;
if (index == len)
goOnParsing = 0;
} }
if (notAllATGC) if (notAllATGC)

View File

@@ -4,11 +4,16 @@
#include <string.h> #include <string.h>
#include <inttypes.h> #include <inttypes.h>
#ifdef __SSE2__
#include <xmmintrin.h> #if defined(__SSE2__)
#define USE_SSE2
#elif defined(__ARM_NEON)
#define USE_SSE2
#include "sse2neon.h"
#else #else
// no SSE2 support, use emulation
typedef long long __m128i __attribute__ ((__vector_size__ (16), __may_alias__)); typedef long long __m128i __attribute__ ((__vector_size__ (16), __may_alias__));
#endif /* __SSE2__ */ #endif
#ifndef MAX #ifndef MAX
#define MAX(x,y) (((x)>(y)) ? (x):(y)) #define MAX(x,y) (((x)>(y)) ? (x):(y))
@@ -55,7 +60,7 @@ typedef union
} uint64_v; } uint64_v;
#ifdef __SSE2__ #ifdef USE_SSE2
static inline int8_t _s2_extract_epi8(__m128i r, const int p) static inline int8_t _s2_extract_epi8(__m128i r, const int p)
{ {

8848
libsse/sse2neon.h Normal file

File diff suppressed because it is too large Load Diff