Skip to content

Commit

Permalink
Merge branch 'trs/add-annotations-schema'
Browse files Browse the repository at this point in the history
  • Loading branch information
tsibley committed Aug 21, 2023
2 parents 221c67e + 47de0bc commit 0b33f29
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,14 +418,15 @@ app.route("/cli")
* to programmatic clients, though we're not this fancy yet.
*/
const schemaRoutes = [
["/schemas/augur/frequencies", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-frequencies.json"],
["/schemas/auspice/config/v2", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-auspice-config-v2.json"],
["/schemas/dataset/v1/meta", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-export-v1-meta.json"],
["/schemas/dataset/v1/tree", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-export-v1-tree.json"],
["/schemas/dataset/v2", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-export-v2.json"],
["/schemas/dataset/root-sequence", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-export-root-sequence.json"],
["/schemas/dataset/tip-frequencies", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-tip-frequencies.json"],
["/schemas/dataset/measurements", "https://raw.githubusercontent.com/nextstrain/augur/master/augur/data/schema-measurements.json"],
["/schemas/augur/annotations", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-annotations.json"],
["/schemas/augur/frequencies", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-frequencies.json"],
["/schemas/auspice/config/v2", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-auspice-config-v2.json"],
["/schemas/dataset/v1/meta", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-export-v1-meta.json"],
["/schemas/dataset/v1/tree", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-export-v1-tree.json"],
["/schemas/dataset/v2", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-export-v2.json"],
["/schemas/dataset/root-sequence", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-export-root-sequence.json"],
["/schemas/dataset/tip-frequencies", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-tip-frequencies.json"],
["/schemas/dataset/measurements", "https://raw.githubusercontent.com/nextstrain/augur/HEAD/augur/data/schema-measurements.json"],
];

for (const [schemaRoute, url] of schemaRoutes) {
Expand Down

0 comments on commit 0b33f29

Please sign in to comment.