File: common.c

package info (click to toggle)
miniasm 0.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604 kB
  • ctags: 426
  • sloc: ansic: 2,487; perl: 85; sh: 66; makefile: 29
file content (24 lines) | stat: -rw-r--r-- 449 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "miniasm.h"

int ma_verbose = 3;

void ma_opt_init(ma_opt_t *opt)
{
	opt->min_span = 2000;
	opt->min_match = 100;
	opt->min_dp = 3;
	opt->min_iden = .05;
	opt->cov_ratio = 0.;

	opt->max_hang = 1000;
	opt->min_ovlp = opt->min_span;
	opt->int_frac = .8;

	opt->gap_fuzz = 1000;
	opt->n_rounds = 2;
	opt->bub_dist = 50000;
	opt->max_ext = 4;
	opt->min_ovlp_drop_ratio = .5;
	opt->max_ovlp_drop_ratio = .7;
	opt->final_ovlp_drop_ratio = .8;
}