annotate PsiCLASS-1.0.2/defs.h @ 0:903fc43d6227 draft default tip

Uploaded
author lsong10
date Fri, 26 Mar 2021 16:52:45 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
1 #ifndef _LSONG_CLASSES_DEFS_HEADER
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
2 #define _LSONG_CLASSES_DEFS_HEADER
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
3
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
4 #include <stdint.h>
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
5
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
6 #define MAX_SEG_COUNT 127
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
7
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
8 struct _pair
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
9 {
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
10 int64_t a, b ;
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
11 } ;
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
12
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
13 struct _pair32
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
14 {
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
15 int a, b ;
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
16 } ;
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
17
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
18 /*char nucToNum[26] = { 0, -1, 1, -1, -1, -1, 2,
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
19 -1, -1, -1, -1, -1, -1, -1,
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
20 -1, -1, -1, -1, -1, 3,
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
21 -1, -1, -1, -1, -1, -1 } ;
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
22
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
23 char numToNuc[26] = {'A', 'C', 'G', 'T'} ;*/
903fc43d6227 Uploaded
lsong10
parents:
diff changeset
24 #endif