-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparameters.hpp
More file actions
40 lines (33 loc) · 1.38 KB
/
parameters.hpp
File metadata and controls
40 lines (33 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
MODER is a program to learn DNA binding motifs from SELEX datasets.
Copyright (C) 2016, 2017 Jarkko Toivonen,
Department of Computer Science, University of Helsinki
MODER is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
MODER is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef PARAMETERS_HPP
#define PARAMETERS_HPP
extern bool use_markov_background;
extern bool use_positional_background;
extern bool use_two_strands;
extern bool use_pseudo_counts;
extern bool use_submotif;
extern bool use_em;
extern bool reestimate_error_rate;
extern bool use_logodds_score;
extern bool use_permutation_test;
extern bool use_bernoulli_read_method;
extern bool print_alignment;
extern bool count_palindromes_twice;
const int min_matrix_len=3;
const int max_matrix_len=20;
#endif // PARAMETERS_HPP