File: example3.dawg

package info (click to toggle)
dawg 1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 908 kB
  • sloc: cpp: 2,598; ansic: 520; perl: 467; sh: 101; makefile: 18
file content (25 lines) | stat: -rwxr-xr-x 443 bytes parent folder | download | duplicates (5)
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
#example3.dawg

Tree   = ((A:0.1,B:0.1)C:0.1, (D:0.1)E:0.1);
Length = 300

Model = "K2P"
Params = {10,1}

#use G+I model
Gamma = 1
Iota = 0.1

# rate of insertion and deletion formation
# 1 indel on average for every 10 substitutions
# deletions more common than insertions
Lambda = { 0.04, 0.06 } 

# Use the user defined gap model for each
GapModel = {"NB", "NB"}

GapParams =
{
    {1, 0.5}, #insertion model
    {2, 0.5}  #deletion model
}