git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPrimers/trunk@213 60f365c0-8329-0410-b2a4-ec073aeeaa1d
22 lines
781 B
C
22 lines
781 B
C
/*
|
|
* hashencoder.h
|
|
*
|
|
* Created on: 12 mai 2009
|
|
* Author: coissac
|
|
*/
|
|
|
|
#ifndef HASHENCODER_H_
|
|
#define HASHENCODER_H_
|
|
|
|
static int8_t encoder[] = {0, // A
|
|
-1, // b
|
|
1, // C
|
|
-1,-1,-1, // d, e, f
|
|
2, // G
|
|
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, // h,i,j,k,l,m,n,o,p,q,r,s
|
|
3,3, // T,U
|
|
-1,-1,-1,-1,-1}; // v,w,x,y,z
|
|
|
|
|
|
#endif /* HASHENCODER_H_ */
|