rna_algos/
compiled_align_scores.rs1use utils::*;
2pub const MATCH_SCORES: MatchScores = [
3 [0.5256508867, -0.40906402, -0.2502759109, -0.3252306723],
4 [-0.40906402, 0.6665219366, -0.3289391181, -0.1326088918],
5 [-0.2502759109, -0.3289391181, 0.6684676551, -0.3565888168],
6 [-0.3252306723, -0.1326088918, -0.3565888168, 0.459052045],
7];
8pub const INSERT_SCORES: InsertScores = [
9 -0.002521927159,
10 -0.08313891561,
11 -0.07443970653,
12 -0.01290054598,
13];
14pub const INIT_MATCH_SCORE: Prob = 0.3959924457;
15pub const INIT_INSERT_SCORE: Prob = -0.3488104904;
16pub const MATCH2MATCH_SCORE: Prob = 2.50575671;
17pub const MATCH2INSERT_SCORE: Prob = 0.1970448791;
18pub const INSERT_EXTEND_SCORE: Prob = 1.014026583;
19pub const INSERT_SWITCH_SCORE: Prob = -7.346968782;