Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 809 Bytes

ancestral.rst

File metadata and controls

39 lines (33 loc) · 809 Bytes

augur ancestral

Example Node Data JSON

Here's an example of the output node-data JSON where NODE_1 has no mutations compared to it's parent and NODE_2 has multiple mutations.

{
    "nodes": {
        "NODE_1": {
            "muts": [],
            "sequence": "TCCAAACAAAGT..."
        },
        "NODE_2": {
            "muts": [
              "A4461G",
              "A6591G",
              "A9184C",
              "A10385T",
              "T15098C"
            ],
            "sequence": "TCCAAACAAAGT..."
        }
    }
}