annotate test-data/lastz_d_ctrl_file.txt @ 5:bd84ff27bc16 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
author devteam
date Mon, 26 Feb 2018 15:37:53 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
1 # base the inference on alignments in the middle half by identity
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
2 min_identity = 25.0% # 25th percentile
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
3 max_identity = 75.0% # 75th percentile
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
4
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
5 # scale scores so max substitution score will be 100, and only use
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
6 # alignments scoring at least as well as 20 ideal matches
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
7 inference_scale = 100 # max substitution score
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
8 hsp_threshold = 20*inference_scale
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
9 gapped_threshold = hsp_threshold
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
10
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
11 # allow substitution score inference to iterate at most 20 times;
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
12 # don't perform gap penalty inference -- instead hardwire gap penalties
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
13 # relative to max substitution
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
14 max_sub_iterations = 20
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
15 max_gap_iterations = 0
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
16 gap_open_penalty = 4*inference_scale
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
17 gap_extend_penalty = 0.3*inference_scale
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
18
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
19 # use all seedword positions (don't sample)
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
20 step = 1
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
21
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
22 # adjust for entropy when qualifying HSPs
bd84ff27bc16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit a0a0480a8df511d23ed6101a489ca06337f5ed56
devteam
parents:
diff changeset
23 entropy = on