File: diffusion.t

package info (click to toggle)
augur 24.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,312 kB
  • sloc: python: 14,253; sh: 227; makefile: 35
file content (114 lines) | stat: -rw-r--r-- 1,724 bytes parent folder | download | duplicates (2)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Setup

  $ source "$TESTDIR"/_setup.sh

Calculate diffusion-based tip frequencies from a refined tree.

  $ ${AUGUR} frequencies \
  >  --method diffusion \
  >  --tree "$TESTDIR/../data/tree.nwk" \
  >  --metadata "$TESTDIR/../data/metadata.tsv" \
  >  --pivot-interval 3 \
  >  --output tip-frequencies.json > /dev/null

  $ cat tip-frequencies.json
  {
    "BRA/2016/FC_6706": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "COL/FLR_00008/2015": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "Colombia/2016/ZC204Se": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "DOM/2016/BB_0183": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "EcEs062_16": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "HND/2016/HU_ME59": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "PAN/CDC_259359_V1_V3/2015": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "PRVABC59": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "VEN/UF_1/2016": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "ZKC2/2016": {
      "global": [
        0.1,
        0.1,
        0.1,
        0.1
      ]
    },
    "counts": {
      "global": [
        0,
        5,
        5,
        0
      ]
    },
    "generated_by": {
      "program": "augur",
      "version": ".*" (re)
    },
    "pivots": [
      2015.7521,
      2016.0041,
      2016.2527,
      2016.5014
    ]
  } (no-eol)