File: internal.h

package info (click to toggle)
fermi-lite 0.1%2Bgit20190320.b499514-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 748 kB
  • sloc: ansic: 5,196; makefile: 72; sh: 17
file content (21 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef FML_INTERNAL_H
#define FML_INTERNAL_H

#include "fml.h"

extern unsigned char seq_nt6_table[256];

#ifdef __cplusplus
extern "C" {
#endif

void kt_for(int n_threads, void (*func)(void*,long,int), void *data, long n);
void seq_reverse(int l, unsigned char *s);
void seq_revcomp6(int l, unsigned char *s);
struct bfc_ch_s *fml_count(int n, const fml_seq1_t *seq, int k, int q, int l_pre, int n_threads);

#ifdef __cplusplus
}
#endif

#endif