FastqPuri
Lmer.h
Go to the documentation of this file.
1 /****************************************************************************
2  * Copyright (C) 2017 by Paula Perez Rubio *
3  * *
4  * This file is part of FastqPuri. *
5  * *
6  * FastqPuri is free software: you can redistribute it and/or modify *
7  * it under the terms of the GNU General Public License as *
8  * published by the Free Software Foundation, either version 3 of the *
9  * License, or (at your option) any later version. *
10  * *
11  * FastqPuri is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14  * GNU General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU General Public License *
17  * along with FastqPuri. *
18  * If not, see <http://www.gnu.org/licenses/>. *
19  ****************************************************************************/
20 
35 #ifndef LMER_H_
36 #define LMER_H_
37 
38 void init_map();
39 void Lmer_sLmer(char* Lmer, int L);
40 void rev_comp(char *sLmer, int L);
41 
42 #endif // endif LMER_H_
void init_map()
Initialize lookup table fw_1B.
Definition: Lmer.c:44
void Lmer_sLmer(char *Lmer, int L)
Transforms an Lmer to the convention stored in the lookup table fw_1B.
Definition: Lmer.c:62
void rev_comp(char *sLmer, int L)
Obtains the reverse complement, for {&#39;\000&#39;,&#39;\001&#39;,&#39;\002&#39;,&#39;\003&#39;}.
Definition: Lmer.c:72